Repository: jacomyal/sigma.js Branch: main Commit: 13062dc5be4f Files: 379 Total size: 23.5 MB Directory structure: gitextract_qrh9r3c_/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── stale.yml │ └── workflows/ │ ├── build.yml │ ├── tests.yml │ └── website.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── babel.config.js ├── bin/ │ └── create-package.ts ├── eslint.config.mjs ├── lerna.json ├── package.json ├── packages/ │ ├── demo/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.html │ │ ├── package.json │ │ ├── public/ │ │ │ └── dataset.json │ │ ├── src/ │ │ │ ├── canvas-utils.ts │ │ │ ├── index.tsx │ │ │ ├── styles.css │ │ │ ├── types.ts │ │ │ ├── use-debounce.ts │ │ │ └── views/ │ │ │ ├── ClustersPanel.tsx │ │ │ ├── DescriptionPanel.tsx │ │ │ ├── GraphDataController.tsx │ │ │ ├── GraphEventsController.tsx │ │ │ ├── GraphSettingsController.tsx │ │ │ ├── GraphTitle.tsx │ │ │ ├── Panel.tsx │ │ │ ├── Root.tsx │ │ │ ├── SearchField.tsx │ │ │ └── TagsPanel.tsx │ │ ├── tsconfig.json │ │ ├── vite-env.d.ts │ │ └── vite.config.mts │ ├── edge-curve/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── edge-labels.ts │ │ │ ├── factory.ts │ │ │ ├── index.ts │ │ │ ├── shader-frag.ts │ │ │ ├── shader-vert.ts │ │ │ └── utils.ts │ │ └── tsconfig.json │ ├── export-image/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── downloadAsImage.ts │ │ │ ├── drawOnCanvas.ts │ │ │ ├── index.ts │ │ │ ├── options.ts │ │ │ └── toImage.ts │ │ └── tsconfig.json │ ├── layer-leaflet/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ └── tsconfig.json │ ├── layer-maplibre/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ └── tsconfig.json │ ├── layer-webgl/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── bind-webgl-layer.ts │ │ │ ├── contours/ │ │ │ │ ├── index.ts │ │ │ │ ├── shader-frag.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ └── webgl-layer-program/ │ │ │ ├── index.ts │ │ │ └── shader-vert.ts │ │ └── tsconfig.json │ ├── node-border/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── factory.ts │ │ │ ├── index.ts │ │ │ ├── shader-frag.ts │ │ │ ├── shader-vert.ts │ │ │ └── utils.ts │ │ └── tsconfig.json │ ├── node-image/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── factory.ts │ │ │ ├── index.ts │ │ │ ├── shader-frag.ts │ │ │ ├── shader-vert.ts │ │ │ └── texture.ts │ │ └── tsconfig.json │ ├── node-piechart/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── factory.ts │ │ │ ├── index.ts │ │ │ ├── shader-frag.ts │ │ │ ├── shader-vert.ts │ │ │ └── utils.ts │ │ └── tsconfig.json │ ├── node-square/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── index.ts │ │ │ ├── program.ts │ │ │ ├── shader-frag.ts │ │ │ ├── shader-vert.ts │ │ │ └── utils.ts │ │ └── tsconfig.json │ ├── sigma/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── package.json │ │ ├── rendering/ │ │ │ └── package.json │ │ ├── settings/ │ │ │ └── package.json │ │ ├── src/ │ │ │ ├── core/ │ │ │ │ ├── camera.ts │ │ │ │ ├── captors/ │ │ │ │ │ ├── captor.ts │ │ │ │ │ ├── mouse.ts │ │ │ │ │ └── touch.ts │ │ │ │ └── labels.ts │ │ │ ├── index-bundle.ts │ │ │ ├── index.ts │ │ │ ├── rendering/ │ │ │ │ ├── edge-labels.ts │ │ │ │ ├── edge.ts │ │ │ │ ├── index.ts │ │ │ │ ├── node-hover.ts │ │ │ │ ├── node-labels.ts │ │ │ │ ├── node.ts │ │ │ │ ├── program.ts │ │ │ │ ├── programs/ │ │ │ │ │ ├── edge-arrow/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── edge-arrow-head/ │ │ │ │ │ │ ├── frag.glsl.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── vert.glsl.ts │ │ │ │ │ ├── edge-clamped/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── vert.glsl.ts │ │ │ │ │ ├── edge-double-arrow/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── edge-double-clamped/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── vert.glsl.ts │ │ │ │ │ ├── edge-line/ │ │ │ │ │ │ ├── frag.glsl.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── vert.glsl.ts │ │ │ │ │ ├── edge-rectangle/ │ │ │ │ │ │ ├── frag.glsl.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── vert.glsl.ts │ │ │ │ │ ├── edge-triangle/ │ │ │ │ │ │ ├── frag.glsl.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── vert.glsl.ts │ │ │ │ │ ├── node-circle/ │ │ │ │ │ │ ├── frag.glsl.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── vert.glsl.ts │ │ │ │ │ └── node-point/ │ │ │ │ │ ├── frag.glsl.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── vert.glsl.ts │ │ │ │ └── utils.ts │ │ │ ├── settings.ts │ │ │ ├── sigma.ts │ │ │ ├── types.ts │ │ │ └── utils/ │ │ │ ├── animate.ts │ │ │ ├── colors.ts │ │ │ ├── coordinates.ts │ │ │ ├── data.ts │ │ │ ├── easings.ts │ │ │ ├── graph.ts │ │ │ ├── index.ts │ │ │ ├── matrices.ts │ │ │ ├── misc.ts │ │ │ └── normalization.ts │ │ ├── tsconfig.json │ │ ├── types/ │ │ │ └── package.json │ │ ├── utils/ │ │ │ └── package.json │ │ └── vite.config.mts │ ├── storybook/ │ │ ├── .gitignore │ │ ├── .storybook/ │ │ │ ├── main.ts │ │ │ ├── manager.tsx │ │ │ ├── preview.tsx │ │ │ └── theme.ts │ │ ├── package.json │ │ ├── public/ │ │ │ ├── arctic.gexf │ │ │ ├── data.csv │ │ │ └── pina-colada.jsonld │ │ ├── stories/ │ │ │ ├── 0-docs/ │ │ │ │ └── introduction.mdx │ │ │ ├── 1-core-features/ │ │ │ │ ├── 1-load-gexf-file/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts │ │ │ │ │ └── stories.ts │ │ │ │ ├── 2-events/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts │ │ │ │ │ └── stories.ts │ │ │ │ ├── 3-layouts/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts │ │ │ │ │ └── stories.ts │ │ │ │ ├── 4-use-reducers/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts │ │ │ │ │ └── stories.ts │ │ │ │ ├── 5-custom-rendering/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── node-gradient-frag.glsl.ts │ │ │ │ │ ├── node-gradient-vert.glsl.ts │ │ │ │ │ ├── node-gradient.ts │ │ │ │ │ └── stories.ts │ │ │ │ ├── 6-csv-to-network-map/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts │ │ │ │ │ └── stories.ts │ │ │ │ └── 7-camera-control/ │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── stories.ts │ │ │ ├── 2-advanced-usecases/ │ │ │ │ ├── cluster-label/ │ │ │ │ │ ├── euroSIS.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts │ │ │ │ │ └── stories.ts │ │ │ │ ├── events-shadowdom/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts │ │ │ │ │ └── stories.ts │ │ │ │ ├── fit-sizes-to-positions/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts │ │ │ │ │ └── stories.ts │ │ │ │ ├── large-graphs/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts │ │ │ │ │ └── stories.ts │ │ │ │ ├── load-rdf-file/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts │ │ │ │ │ └── stories.ts │ │ │ │ └── mouse-manipulations/ │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── stories.ts │ │ │ ├── 3-additional-packages/ │ │ │ │ ├── edge-curve/ │ │ │ │ │ ├── arrow-heads.ts │ │ │ │ │ ├── basic.ts │ │ │ │ │ ├── data/ │ │ │ │ │ │ ├── arctic.json │ │ │ │ │ │ └── les-miserables.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interactions.ts │ │ │ │ │ ├── labels.ts │ │ │ │ │ ├── parallel-edges.ts │ │ │ │ │ └── stories.ts │ │ │ │ ├── export-image/ │ │ │ │ │ ├── available-options.ts │ │ │ │ │ ├── custom-layers-and-renderers.ts │ │ │ │ │ ├── index.html │ │ │ │ │ └── stories.ts │ │ │ │ ├── layer-leaflet/ │ │ │ │ │ ├── basic.ts │ │ │ │ │ ├── data/ │ │ │ │ │ │ ├── airports.json │ │ │ │ │ │ └── sample-geojson.json │ │ │ │ │ ├── geojson.ts │ │ │ │ │ ├── index.html │ │ │ │ │ ├── resize.ts │ │ │ │ │ ├── stories.ts │ │ │ │ │ └── tilelayer.ts │ │ │ │ ├── layer-maplibre/ │ │ │ │ │ ├── basic.ts │ │ │ │ │ ├── data/ │ │ │ │ │ │ ├── airports.json │ │ │ │ │ │ └── sample-geojson.json │ │ │ │ │ ├── geojson.ts │ │ │ │ │ ├── index.html │ │ │ │ │ ├── resize.ts │ │ │ │ │ └── stories.ts │ │ │ │ ├── layer-webgl/ │ │ │ │ │ ├── contours-highlight-group.ts │ │ │ │ │ ├── contours-metaballs.ts │ │ │ │ │ ├── contours-multi-levels.ts │ │ │ │ │ ├── index.html │ │ │ │ │ └── stories.ts │ │ │ │ ├── node-border/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── node-border.ts │ │ │ │ │ ├── pixels-border.ts │ │ │ │ │ ├── stories.ts │ │ │ │ │ ├── variable-sizes.ts │ │ │ │ │ └── with-images.ts │ │ │ │ ├── node-image/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── local-images.ts │ │ │ │ │ ├── node-images.ts │ │ │ │ │ ├── node-pictograms-background.ts │ │ │ │ │ ├── node-pictograms.ts │ │ │ │ │ ├── options-showcase.ts │ │ │ │ │ └── stories.ts │ │ │ │ ├── node-piechart/ │ │ │ │ │ ├── fixed-colors.ts │ │ │ │ │ ├── fixed-values.ts │ │ │ │ │ ├── index.html │ │ │ │ │ ├── offsets.ts │ │ │ │ │ └── stories.ts │ │ │ │ ├── node-square/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mixed-programs.ts │ │ │ │ │ └── stories.ts │ │ │ │ └── utils/ │ │ │ │ ├── fit-viewport-to-nodes.ts │ │ │ │ ├── get-nodes-in-viewport.ts │ │ │ │ ├── index.html │ │ │ │ └── stories.ts │ │ │ ├── _data/ │ │ │ │ └── data.json │ │ │ └── utils.ts │ │ ├── tsconfig.json │ │ └── types/ │ │ ├── images.d.ts │ │ └── raw.d.ts │ ├── template/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── test/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app/ │ │ │ ├── index.html │ │ │ └── index.ts │ │ ├── benchmarks/ │ │ │ └── suite.bench.ts │ │ ├── datasets/ │ │ │ ├── arctic.json │ │ │ ├── large-graph.json │ │ │ └── les-miserables.json │ │ ├── e2e/ │ │ │ └── basics.spec.ts │ │ ├── helpers.ts │ │ ├── package.json │ │ ├── playwright.config.ts │ │ ├── tsconfig.json │ │ ├── unit/ │ │ │ ├── _helpers.ts │ │ │ ├── layer-leaflet/ │ │ │ │ └── lifecycle.ts │ │ │ ├── layer-maplibre/ │ │ │ │ └── lifecycle.ts │ │ │ ├── sigma/ │ │ │ │ ├── camera.ts │ │ │ │ ├── events.ts │ │ │ │ ├── lifecycle.ts │ │ │ │ ├── mouse.ts │ │ │ │ ├── rendering.ts │ │ │ │ ├── settings.ts │ │ │ │ ├── touch.ts │ │ │ │ └── utils.ts │ │ │ └── utils/ │ │ │ └── fitViewportToNodes.ts │ │ ├── vite.config.mts │ │ └── vitest.config.mts │ ├── utils/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── fitViewportToNodes.ts │ │ │ ├── getNodesInViewport.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ └── website/ │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── docs/ │ │ ├── advanced/ │ │ │ ├── _category_.json │ │ │ ├── coordinate-systems.md │ │ │ ├── customization.md │ │ │ ├── data.md │ │ │ ├── events.md │ │ │ ├── layers.md │ │ │ ├── lifecycle.md │ │ │ ├── migration-v2-v3.md │ │ │ ├── new-packages.md │ │ │ ├── publish.md │ │ │ ├── renderers.md │ │ │ └── sizes.md │ │ ├── index.mdx │ │ ├── quickstart.md │ │ └── resources.md │ ├── docusaurus.config.js │ ├── package.json │ ├── sidebars.js │ ├── src/ │ │ ├── css/ │ │ │ └── custom.css │ │ └── theme/ │ │ ├── Footer/ │ │ │ └── index.js │ │ ├── Navbar/ │ │ │ └── Logo/ │ │ │ └── index.js │ │ └── NotFound.js │ └── static/ │ ├── fonts/ │ │ └── cascadia/ │ │ └── CascadiaCode-Regular.otf │ ├── homepage.html │ └── styles.css ├── tsconfig.base.json └── tsconfig.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Create a report to help us improve title: "" labels: bug assignees: "" --- ## Guidelines Please note that GitHub issues are only meant for bug reports/feature requests. If you have questions on how to use Sigma.js, please ask on [StackOverflow](https://stackoverflow.com/questions/tagged/sigma.js) instead of creating an issue here. To help us understand your issue, please specify important details, primarily: - Sigma.js version : X.Y.Z - Graphology version : X.Y.Z - Operating system: (for example Windows 95/Ubuntu 16.04) - Web browser: (for example Firefox 82.0.2) - **Steps to reproduce** - Expected behavior - Actual behavior Additionally, include (as appropriate) console logs, stacktraces, and other debug info. We recommend you to create a live example of your issue on [CodeSandbox](https://codesandbox.io/) so we can reproduce it. You can start with this template: https://codesandbox.io/p/sandbox/sigma-template-82mpns ## Example bug report Modification of the node default color in the settings has no effect **Sigma.js version:** 2.0.0 **Graphology version:** 0.19.2 **Operating System:** Ubuntu 15.10 **Web browser:** Firefox 82.0.2 ### Steps to reproduce Check the live example https://codesandbox.io/s/sigmajs-issue-example-om8c0 ### Expected behavior Nodes should be displayed in red ### Actual behavior Nodes are displayed in black ## Note If the issue has an inactivity of **30 days**, it becomes stale. With an additional inactivity of **14 days**, the issue is closed ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project title: "" labels: enhancement assignees: "" --- ## Guidelines Please note that GitHub issues are only meant for bug reports/feature requests. If you have questions on how to use Sigma.js, please ask on [StackOverflow](https://stackoverflow.com/questions/tagged/sigma.js) instead of creating an issue here. ## Feature request template **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .github/PULL_REQUEST_TEMPLATE.md ================================================ ## Pull request type Check the type of change your PR introduces: - [ ] Bugfix - [ ] Feature - [ ] Code style update (formatting, renaming) - [ ] Refactoring (no functional changes, no api changes) - [ ] Build related changes - [ ] Documentation content changes - [ ] Other (please describe): > **_NOTE:_** Before to create a PR, read our [contributing guide](https://github.com/jacomyal/sigma.js/blob/main/CONTRIBUTING.md) > **_NOTE:_** Try to limit your pull request to one type, submit multiple pull requests if needed. ## What is the current behavior? Issue Number: N/A > **_NOTE:_** Describe the current behavior that you are modifying, or link to a relevant issue. ## What is the new behavior? > **_NOTE:_** Describe the behavior or changes that are being added by this PR. ## Other information > **_NOTE:_** Any other information that is important to this PR such as screenshots of how the component looks before and after the change. ================================================ FILE: .github/stale.yml ================================================ # Number of days of inactivity before an issue becomes stale daysUntilStale: 40 # Number of days of inactivity before a stale issue is closed daysUntilClose: 15 # Issues with these labels will never be considered stale exemptLabels: - pinned - security - enhancement # Label to use when marking an issue as stale staleLabel: wontfix # Comment to post when marking an issue as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. # Comment to post when closing a stale issue. Set to `false` to disable closeComment: false # Limit to only `issues` or `pulls` only: issues ================================================ FILE: .github/workflows/build.yml ================================================ name: Build on: push: tags: "*" jobs: build: timeout-minutes: 60 runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: 20 - name: Build sources run: npm install && npm run build - name: Uploading files uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: ./packages/sigma/dist/sigma.min.js tag: ${{ github.ref }} overwrite: true file_glob: true ================================================ FILE: .github/workflows/tests.yml ================================================ name: Tests on: [push, pull_request] jobs: tests: timeout-minutes: 60 runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: 20 - name: Cache node_modules uses: actions/cache@v4 with: path: "node_modules" key: ${{ runner.os }}-modules-${{ hashFiles('package-lock.json') }} - name: Playwright version id: playwright-version run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./package-lock.json').packages['node_modules/playwright'].version)")" >> $GITHUB_ENV - name: Cache Playwright binaries uses: actions/cache@v4 id: playwright-cache with: path: "~/.cache/ms-playwright" key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }} - name: Install dependencies run: npm ci - name: Compile all packages run: npm run build - name: Install Playwright Browsers run: npx playwright install --with-deps if: steps.playwright-cache.outputs.cache-hit != 'true' - name: Check for linting errors continue-on-error: true run: npm run lint - name: Run all tests run: npm run test - uses: actions/upload-artifact@v4 if: always() with: name: playwright-report path: playwright-report/ retention-days: 30 ================================================ FILE: .github/workflows/website.yml ================================================ name: Website on: push: branches: - main jobs: publish: timeout-minutes: 60 runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: 20 - name: Install dependencies run: npm install - name: Build website run: npm run website:build - name: Deploy to GitHub Pages uses: crazy-max/ghaction-github-pages@v4 with: target_branch: gh-pages build_dir: packages/website/build fqdn: www.sigmajs.org jekyll: false env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ================================================ FILE: .gitignore ================================================ node_modules *.tgz *.log *.swp .DS_Store .idea .vscode *storybook.log ================================================ FILE: .prettierignore ================================================ **/dist/* **/build/* **/node_modules/* # Tests **/coverage/** **/playwright-report/** **/test-results/** # Doc and examples **/storybook-static/* **/typedoc/** **/.docusaurus/** ================================================ FILE: .prettierrc.json ================================================ { "trailingComma": "all", "printWidth": 120, "importOrder": ["", "^[./]"], "importOrderSeparation": true, "importOrderSortSpecifiers": true, "importOrderGroupNamespaceSpecifiers": true, "plugins": ["@trivago/prettier-plugin-sort-imports"] } ================================================ FILE: CHANGELOG.md ================================================ # sigma.js - changelog: ## 3.0.2 ### Bug fixes - [#1517](https://github.com/jacomyal/sigma.js/issues/1517) - Fixing calling `setGraph` with highlighted nodes (thanks to @AeternusSamurai) - Fixing an issue, with sigma not properly cleaning WebGL contexts in its `kill()` method ([commit](https://github.com/jacomyal/sigma.js/commit/c292888d69cf5d9b111194d554df0cb3a86f4a60)) ## 3.0.1 ### Bug fix - [#1500](https://github.com/jacomyal/sigma.js/issues/1500) - Fixing lag on stop dragging (thanks @ouzhou for the report and the research) ## 3.0.0 ### Breaking changes - **Completely rewrites programs API** - **Renames all existing programs** - **Restructures sources as a multi-package repository (using [Lerna](https://lerna.js.org/))** - **Replaces the default node program by `NodeCircleProgram`** - **Moves the `node.image` renderer as a new package [`@sigma/node-image`](https://www.npmjs.com/package/@sigma/node-image)** - **Moves `labelRenderer`, `hoverRenderer` and `edgeLabelRenderer` from settings to each renderer** ### Features - [#1386](https://github.com/jacomyal/sigma.js/issues/1386) Improves `Sigma.kill` method - [#1382](https://github.com/jacomyal/sigma.js/issues/1382) Handles click/hover nodes and edges with [picking](https://webglfundamentals.org/webgl/lessons/webgl-picking.html) rather than with custom computations - [#1372](https://github.com/jacomyal/sigma.js/issues/1372) Improves render/refresh lifecycle and APIs - [#1322](https://github.com/jacomyal/sigma.js/issues/1322) Implements [WebGL instancing](https://developer.mozilla.org/en-US/docs/Web/API/WebGL2RenderingContext/drawArraysInstanced) in programs - [#1346](https://github.com/jacomyal/sigma.js/issues/1346) Adds documentation in the website - [#1034](https://github.com/jacomyal/sigma.js/issues/1034) Adds new `Sigma.setCamera` method - [#1185](https://github.com/jacomyal/sigma.js/issues/1185) Adds new `zoomToSizeRatioFunction` and `itemSizesReference` setting - [#1231](https://github.com/jacomyal/sigma.js/issues/1231) Adds new [`@sigma/edge-curve`](https://www.npmjs.com/package/@sigma/edge-curve) renderer, as a new package - Adds new [`@sigma/node-border`](https://www.npmjs.com/package/@sigma/node-border) renderer, as a new package ## 2.4.0 ### Features - [#1289](https://github.com/jacomyal/sigma.js/issues/1289) - Adding `Camera.updateState` - Program classes given in settings (`nodeProgramClasses`, `edgeProgramClasses`) are now merged with default ones for convenience - [#1287](https://github.com/jacomyal/sigma.js/pull/1287) - Adding the `hoverNodeProgramClasses` setting so that it is possible to have different programs rendering nodes and their hover - [#1273](https://github.com/jacomyal/sigma.js/issues/1273) - Adding the `Sigma.setGraph` method to renderers - Adding renderer generic type to specify graph type (thanks to @lf-) ### Bug fixes - [#1285](https://github.com/jacomyal/sigma.js/issues/1285) - Fixing label selection when camera is rotated - [#1206](https://github.com/jacomyal/sigma.js/pull/1206), [#1257](https://github.com/jacomyal/sigma.js/issues/1257) - Fixing `node.image` program (thanks to @kaij and @boogheta) - [#1286](https://github.com/jacomyal/sigma.js/issues/1286) - Fixing right-click erroneously triggering camera drag events - [#1242](https://github.com/jacomyal/sigma.js/pull/1242), [#1282](https://github.com/jacomyal/sigma.js/pull/1282) - Fixing multiple issues related to touch captor (thanks to @kaij and @boogheta) - [#1272](https://github.com/jacomyal/sigma.js/issues/1272) - Fixing quadtree-related stack overflows - Fixing graph event leak on `Sigma.kill` - [#1253](https://github.com/jacomyal/sigma.js/issues/1253) - Fixing `edge.fast` program not respecting `hidden` - Fixing `edge.fast` vert shader not unpacking color correctly - [#1251](https://github.com/jacomyal/sigma.js/pull/1251) - Fixing alpha value parsing of hex colors (thanks to @kaij) ## 2.3.1 ### Feature - [#1239](https://github.com/jacomyal/sigma.js/pull/1239) - Adds `getContainer` method to public API (thanks to @stefanprobst) ### Bug fixes - [#1230](https://github.com/jacomyal/sigma.js/pull/1230) - Updates broken link to graphology in README.md (thanks to @alexduhem) - [#1236](https://github.com/jacomyal/sigma.js/issues/1236) - Fixes `#.preventSigmaDefault` scoping - [#1237](https://github.com/jacomyal/sigma.js/issues/1237) - Updates `pixelRatio` on resize - [#1240](https://github.com/jacomyal/sigma.js/issues/1240) - Fixes click events for touch devices - [#1244](https://github.com/jacomyal/sigma.js/issues/1244) - Stops relying on graphology for types (issue only partially fixed yet) - [#1249](https://github.com/jacomyal/sigma.js/issues/1249) - Fixes hovered nodes layer not being cleared ## 2.3.0 ### Features - _undocumented_ - Publishes examples to the website - [#1142](https://github.com/jacomyal/sigma.js/issues/1142) - Improves TypeScript typings for events - [#1170](https://github.com/jacomyal/sigma.js/issues/1170) - Simplifies and optimizes `multiplyVec` internal function - [#1196](https://github.com/jacomyal/sigma.js/issues/1196) - Adds new `allowInvalidContainer` to prevent sigma.js from throwing errors when it does not find valid width and/or height - [#1205](https://github.com/jacomyal/sigma.js/issues/1205) - Adds a new example showcasing sigma's scalability and performances - [#1215](https://github.com/jacomyal/sigma.js/issues/1215) - (ticket still opened) Improves `animateNodes` - [#1224](https://github.com/jacomyal/sigma.js/issues/1224) - Adds new internal function `floatArrayColor` - [#1225](https://github.com/jacomyal/sigma.js/issues/1225) - Adds new `beforeRender` and `resize` events - [#1227](https://github.com/jacomyal/sigma.js/issues/1227) - Implements `#preventSigmaDefault` for mouse move events ### Bug fixes - [#1214](https://github.com/jacomyal/sigma.js/issues/1214) - Cleans graph lifecycle events handling - [#1216](https://github.com/jacomyal/sigma.js/issues/1216) - Fixes CodeSandbox configuration for multiple examples (and the template) - [#1219](https://github.com/jacomyal/sigma.js/issues/1219) - Fixes hidden / excess renderings from `node.ts` program - [#1223](https://github.com/jacomyal/sigma.js/issues/1223) - Fixes dynamic constant color in various fragment shaders - [#1226](https://github.com/jacomyal/sigma.js/issues/1226) - Fixes broken `node.ts` program ## 2.2.0 ### Features - [#1161](https://github.com/jacomyal/sigma.js/issues/1161) - Adds `minZoom` and `maxZoom` settings - [#1166](https://github.com/jacomyal/sigma.js/issues/1166) - Adds HTML colors support - [#1167](https://github.com/jacomyal/sigma.js/issues/1167) - Adds events TypeScript types - [#1176](https://github.com/jacomyal/sigma.js/issues/1176) - Cleans and improves event payloads - [#1177](https://github.com/jacomyal/sigma.js/issues/1177) - Allows overriding arguments with `#graphToViewport` and `#viewportToGraph` - [#1182](https://github.com/jacomyal/sigma.js/issues/1182) - Adds cached data (from custom reducers) to custom renderers - [#1187](https://github.com/jacomyal/sigma.js/issues/1187) - Adds `forceLabel` for nodes and edges - [#1188](https://github.com/jacomyal/sigma.js/issues/1188) - Drops `graphology-metrics` dependency ### Bug fixes - _undocumented_ - Updates dependencies - _undocumented_ - Fixes various bugs with the `node.image` program - _undocumented_ - Fixes the `build/sigma.js` and `build/sigma.min.js` expositions of sigma - [#1172](https://github.com/jacomyal/sigma.js/issues/1172) - Fixes labels grid display (changes which node labels are displayed by default) - [#1192](https://github.com/jacomyal/sigma.js/issues/1192) - Fixes alpha blending for most recent WebGL layers - [#1193](https://github.com/jacomyal/sigma.js/issues/1193) - Fixes dragging with mouse out of stage - [#1194](https://github.com/jacomyal/sigma.js/issues/1194) - Fixes camera transitions to `angle: 0` - [#1195](https://github.com/jacomyal/sigma.js/issues/1195) - Improves edge events handling (thanks to @avenzi) - [#1199](https://github.com/jacomyal/sigma.js/issues/1199) - Fixes issue with hidden nodes and labels rendering (thanks to @avenzi) - [#1200](https://github.com/jacomyal/sigma.js/issues/1200) - Fixes issue with node labels `""` - [#1203](https://github.com/jacomyal/sigma.js/issues/1203) - Fixes examples build process ## 2.1.3 ### Bug fixes - [#1178](https://github.com/jacomyal/sigma.js/issues/1178) - Fixes uncaught error in Firefox when using node.image with images with no size - [#1180](https://github.com/jacomyal/sigma.js/issues/1180) - Fixes edge events not being fired when edge size not set in the graph - [#1183](https://github.com/jacomyal/sigma.js/issues/1183) - Moves edge labels layer behind nodes layer - [#1186](https://github.com/jacomyal/sigma.js/issues/1186) - Fixes hovered nodes when mouse not hover sigma container ## 2.1.2 ### Bug fixes - [#1168](https://github.com/jacomyal/sigma.js/issues/1168) - Fixes hover and click events when mouse is hovering a hidden node - [#1169](https://github.com/jacomyal/sigma.js/issues/1169) - Fixes x / y values in sigma events when mouse is not hovering the sigma container - [#1173](https://github.com/jacomyal/sigma.js/issues/1173) - Fixes issue where unused program no longer deallocate back to zero - [#1175](https://github.com/jacomyal/sigma.js/issues/1175) - Fixes zoom scrolling in a scrolled webpage ## 2.1.1 ### Bug fix - [#1165](https://github.com/jacomyal/sigma.js/issues/1165) - Fixes "ghost hovered nodes" issue ## 2.1.0 ### Features - _undocumented_ - Adds edge events - _undocumented_ - Cleans and fixes all nodes and edges programs - [#1153](https://github.com/jacomyal/sigma.js/issues/1153) - Adds double-click and wheel events for nodes and edges, with a new `#preventSigmaDefault()` method - [#1149](https://github.com/jacomyal/sigma.js/issues/1149) - Graphology (and related libs) update to 0.22.1 - [#1102](https://github.com/jacomyal/sigma.js/issues/1102) - Allows custom node and edge label colors - [#1150](https://github.com/jacomyal/sigma.js/issues/1150) - Adds public methods to enable implementing a proper PNG export, adds related [`png-export` example](https://codesandbox.io/s/github/jacomyal/sigma.js/tree/main/examples/png-snapshot) ### Bug fixes - _undocumented_ - Edges thickness rendering is now pixel perfect at camera ratio 1, and no more twice bigger on Retina displays - _undocumented_ - Cleans some browser warnings - [#1157](https://github.com/jacomyal/sigma.js/issues/1157) - Fixes unexpected node interaction with zIndex - [#1148](https://github.com/jacomyal/sigma.js/issues/1148) - Fixes `mousemove` unexpected behaviors - [#1163](https://github.com/jacomyal/sigma.js/issues/1163) - Implements edge labels ellipsis ## 2.0.0 - Complete rewrite of the library. ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. ## Our Standards Examples of behavior that contributes to a positive environment for our community include: - Demonstrating empathy and kindness toward other people - Being respectful of differing opinions, viewpoints, and experiences - Giving and gracefully accepting constructive feedback - Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience - Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: - The use of sexualized language or imagery, and sexual attention or advances of any kind - Trolling, insulting or derogatory comments, and personal or political attacks - Public or private harassment - Publishing others' private information, such as a physical or email address, without their explicit permission - Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. ## Scope This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at alexis@ouestware.com. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident. ## Enforcement Guidelines Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: ### 1. Correction **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. ### 2. Warning **Community Impact**: A violation through a single incident or series of actions. **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. ### 3. Temporary Ban **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the community. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. ================================================ FILE: CONTRIBUTING.md ================================================ # Contributor Guide Thank you for investing your time in contributing to our project! In this guide you will get an overview of the contribution workflow from opening an issue, creating a PR, reviewing, and merging the PR. ## Development Workflow 1. If you are a first-time contributor: - Go to https://github.com/jacomyal/sigma.js and click on the **fork** button to create your own copy of the project. - Clone the project to your local computer: `git clone git@github.com:your-username/sigma.js.git` - Navigate to the folder sigma.js and add the upstream repository: `git remote add upstream git@github.com:jacomyal/sigma.js.git` - Now, you have remote repositories named: - `upstream`, which refers to the `sigma.js` repository - `origin`, which refers to your personal fork - Next, you need to set up your build environment: `npm install` 2. Develop your contribution: - Pull the latest changes from upstream ``` git checkout main git pull upstream main ``` - Create a branch for the feature you want to work on. Since the branch name will appear in the merge message, use a sensible name such as 'bugfix-for-issue-1480': `git checkout -b bugfix-for-issue-1480` - Commit locally as you progress (`git add` and `git commit`) 3. Test your contribution: - Run the test suite locally: `npm run test` 4. Submit your contribution: - Push your changes back to your fork on GitHub: `git push origin bugfix-for-issue-1480` - Go to GitHub. The new branch will show up with a green Pull Request button, just click it. 5. Review process: - Every Pull Request (PR) update triggers a set of [continuous integration](https://en.wikipedia.org/wiki/Continuous_integration) services that check that the code is up to standards and passes all our tests. These checks must pass before your PR can be merged. If one of the checks fails, you can find out why by clicking on the "failed" icon (red cross) and inspecting the build and test log. - Reviewers (the other developers and interested community members) will write inline and/or general comments on your PR to help you improve its implementation, documentation, and style. It's a friendly conversation from which we all learn and the overall code quality benefits.Don't let the review discourage you from contributing, its only aim is to improve the quality of project, not to criticize. We are, after all, very grateful for the time you're donating!. - To update your PR, make your changes on your local repository and commit. As soon as those changes are pushed up (to the same branch as before) the PR will update automatically. > **_NOTE:_** If the PR closes an issue, make sure that GitHub knows to automatically close the issue when the PR is merged. > For example, if the PR closes issue number 1480, you could use the phrase "Fixes #1480" in the PR description or commit message. ## Divergence from `upstream main` If GitHub indicates that the branch of your Pull Request can no longer be merged automatically, merge the main branch into yours : ``` git fetch upstream main git rebase upstream/main ``` If any conflicts occur, they need to be fixed before continuing. > **_NOTE:_** Please use **rebase** and not **merge**, ## Bugs Please report bugs on [GitHub](https://github.com/jacomyal/sigma.js/issues). ================================================ FILE: LICENSE.txt ================================================ Copyright (C) 2013-2025, Alexis Jacomy, Guillaume Plique, Benoît Simard https://www.sigmajs.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ [![Build Status](https://github.com/jacomyal/sigma.js/workflows/Tests/badge.svg)](https://github.com/jacomyal/sigma.js/actions)
![Sigma.js](packages/website/static/img/logo-sigma-text.svg) **[Website](https://www.sigmajs.org/)** | **[Documentation](https://www.sigmajs.org/docs)** | **[Storybook](https://www.sigmajs.org/storybook)** | Mastodon --- [Sigma.js](https://www.sigmajs.org) is an open-source JavaScript library aimed at visualizing graphs of thousands of nodes and edges using WebGL, mainly developed by [@jacomyal](https://github.com/jacomyal) and [@Yomguithereal](https://github.com/Yomguithereal), and built on top of [graphology](https://graphology.github.io/). ## How to use in your project To integrate sigma into your project, follow these simple steps: 1. **Installation:** Add `sigma` and `graphology` to your project by running the following command: ```bash npm install sigma graphology ``` 2. **Usage:** Import sigma into your JavaScript or TypeScript file: ```javascript import Graph from "graphology"; import Sigma from "sigma"; ``` Then, create a new `Sigma` instance with your graph data and target container: ```javascript const graph = new Graph(); graph.addNode("1", { label: "Node 1", x: 0, y: 0, size: 10, color: "blue" }); graph.addNode("2", { label: "Node 2", x: 1, y: 1, size: 20, color: "red" }); graph.addEdge("1", "2", { size: 5, color: "purple" }); const sigmaInstance = new Sigma(graph, document.getElementById("container")); ``` ## How to develop locally To run the [Storybook](https://storybook.js.org/) locally: ```bash git clone git@github.com:jacomyal/sigma.js.git cd sigma.js npm install npm run start ``` This will open the Storybook in your web browser, which live reloads when you modify the stories or the package sources. ## Resources - **GitHub Project:** The source code and collaborative development efforts for Sigma.js are hosted on [GitHub](https://github.com/jacomyal/sigma.js). - **Website:** The official website, [sigmajs.org](https://sigmajs.org), kindly designed by [Robin de Mourat](https://github.com/robindemourat/) from the [Sciences-Po médialab](https://medialab.sciencespo.fr/en/) team, showcases the library's capabilities. - **Documentation:** A detailed documentation, built with [Docusaurus](https://docusaurus.io/), is available at [sigmajs.org/docs](https://sigmajs.org/docs). It provides extensive guides and API references for users. - **Storybook:** Interactive examples can be found at [sigmajs.org/storybook](https://sigmajs.org/storybook). - **Demo:** A comprehensive demo, available at [sigmajs.org/demo](https://sigmajs.org/demo), features a full-featured React-based web application utilizing Sigma.js. ## How to contribute You can contribute by submitting [issues tickets](http://github.com/jacomyal/sigma.js/issues) and proposing [pull requests](http://github.com/jacomyal/sigma.js/pulls). Make sure that tests and linting pass before submitting any pull request. You can also browse the related documentation [here](https://github.com/jacomyal/sigma.js/tree/main/CONTRIBUTING.md). ## How to start a new package Run `npm run createPackage` from the project root. It will: - Ask you the new package name - Copy the `packages/template` folder - Update the new package `package.json` entries (name, description, exports) - Update various other files (buildable packages list in `tsconfig.json`, Preconstruct compatible packages list in `package.json`...) ================================================ FILE: babel.config.js ================================================ module.exports = { presets: ["@babel/preset-env", "@babel/preset-typescript"], }; ================================================ FILE: bin/create-package.ts ================================================ /* global __dirname */ import * as process from "node:process"; import * as path from "path"; import * as readline from "readline"; import { spawn } from "child_process"; import { promises as fs } from "fs"; async function readJSONFile(filePath: string): Promise { const fileContent = await fs.readFile(filePath, "utf8"); return JSON.parse(fileContent); } async function writeJSONFile(filePath: string, data: unknown) { await fs.writeFile(filePath, JSON.stringify(data, null, 2), "utf8"); } function prompt(question: string): Promise { const rl = readline.createInterface({ input: process.stdin, output: process.stdout, }); return new Promise((resolve) => rl.question(question, (answer) => { rl.close(); resolve(answer); }), ); } async function copyFolder(src: string, dest: string) { await fs.mkdir(dest, { recursive: true }); const entries = await fs.readdir(src, { withFileTypes: true }); const copyPromises = entries.map(async (entry) => { const srcPath = path.join(src, entry.name); const destPath = path.join(dest, entry.name); if (entry.isDirectory()) { return copyFolder(srcPath, destPath); } else { return fs.copyFile(srcPath, destPath); } }); await Promise.all(copyPromises); } function runCommand(command: string, args: string[]): Promise { return new Promise((resolve, reject) => { const child = spawn(command, args, { stdio: "inherit" }); child.on("close", (code) => { if (code === 0) { resolve(); } else { reject(new Error(`Command failed with exit code ${code}`)); } }); }); } async function createPackage() { // 1. Ask for a new package name const packageName = await prompt("Enter a new package name (lowercase letters, digits, and dashes only): "); // Validate the package name if (!/^[a-z0-9-]+$/.test(packageName)) { throw new Error("Package name can only contain lowercase letters, digits, and dashes."); } // 2. Copy the template folder const srcDir = path.resolve(__dirname, "../packages/template"); const destDir = path.resolve(__dirname, `../packages/${packageName}`); await copyFolder(srcDir, destDir); // 3. Update the package.json const packageJsonPath = path.join(destDir, "package.json"); const packageJson = await readJSONFile>(packageJsonPath); packageJson.name = `@sigma/${packageName}`; packageJson.description = "TODO"; (packageJson.repository as Record).directory = `packages/${packageName}`; delete packageJson.private; await writeJSONFile(packageJsonPath, packageJson); // 4. Update the references in tsconfig.json const tsconfigPath = path.resolve(__dirname, "../tsconfig.json"); const tsconfig = await readJSONFile>(tsconfigPath); (tsconfig.references as { path: string }[]).push({ path: `./packages/${packageName}` }); await writeJSONFile(tsconfigPath, tsconfig); // 5. Add the package to the Preconstruct packages array in package.json const rootPackageJsonPath = path.resolve(__dirname, "../package.json"); const rootPackageJson = await readJSONFile & { preconstruct: { packages: string[] } }>( rootPackageJsonPath, ); rootPackageJson.preconstruct = { ...(rootPackageJson.preconstruct || {}), packages: (rootPackageJson.preconstruct.packages || []).concat(`packages/${packageName}`), }; await writeJSONFile(rootPackageJsonPath, rootPackageJson); // 7. Run npm run prettify and npm install using spawn with stdio inheritance await runCommand("npm", ["run", "prettify"]); await runCommand("npx", ["preconstruct", "fix"]); await runCommand("npm", ["install"]); // eslint-disable-next-line no-console console.log(`Package ${packageName} has been successfully created.`); } // Run the script createPackage().catch((e: Error) => { // eslint-disable-next-line no-console console.error(e); process.exit(1); }); ================================================ FILE: eslint.config.mjs ================================================ import { fixupPluginRules } from "@eslint/compat"; import { FlatCompat } from "@eslint/eslintrc"; import js from "@eslint/js"; import typescriptEslint from "@typescript-eslint/eslint-plugin"; import tsParser from "@typescript-eslint/parser"; import _import from "eslint-plugin-import"; import globals from "globals"; import path from "node:path"; import { fileURLToPath } from "node:url"; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); const compat = new FlatCompat({ baseDirectory: __dirname, recommendedConfig: js.configs.recommended, allConfig: js.configs.all, }); export default [ { ignores: [ "**/*.js", // Built files "**/dist/*", "**/build/*", "**/node_modules/*", // Doc and examples "**/storybook-static/*", "**/typedoc", "**/.docusaurus", ], }, ...compat.extends( "eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/eslint-recommended", "prettier", "plugin:storybook/recommended", ), { plugins: { import: fixupPluginRules(_import), "@typescript-eslint": typescriptEslint, }, languageOptions: { globals: { ...globals.jest, ...globals.browser, }, parser: tsParser, }, rules: { "no-undef": "error", "no-prototype-builtins": "off", "no-console": "warn", "import/extensions": [ "warn", "never", { json: "always", glsl: "always", }, ], "@typescript-eslint/no-unused-vars": [ "warn", { argsIgnorePattern: "^_", varsIgnorePattern: "^_", caughtErrorsIgnorePattern: "^_", }, ], }, }, { files: ["**/dist/*.d.ts", "**/dist/**/*.d.ts", "**/dist/*.d.mts", "**/dist/**/*.d.mts"], rules: { "import/extensions": "off", "@typescript-eslint/no-explicit-any": "off", }, }, ]; ================================================ FILE: lerna.json ================================================ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", "version": "independent", "private": false, "push": false, "includeMergedTags": true } ================================================ FILE: package.json ================================================ { "name": "@sigma/root", "description": "A JavaScript library aimed at visualizing graphs of thousands of nodes and edges.", "homepage": "https://www.sigmajs.org", "bugs": "http://github.com/jacomyal/sigma.js/issues", "workspaces": [ "packages/*" ], "scripts": { "clean": "npm exec --workspaces -- npx rimraf node_modules && npx rimraf node_modules", "build": "preconstruct build && npm run build-bundle --workspace=sigma", "prettify": "prettier --write .", "lint": "eslint .", "test": "npm run test --workspace=@sigma/test", "start": "preconstruct dev && npm run start --workspace=@sigma/storybook", "createPackage": "ts-node bin/create-package.ts", "postinstall": "preconstruct dev", "postpublish": "preconstruct dev", "website:build": "npm run build --workspace=@sigma/website && npm run build --workspace=@sigma/demo && cp -R packages/demo/build packages/website/build/demo && npm run build --workspace=@sigma/storybook && cp -R packages/storybook/storybook-static packages/website/build/storybook", "prepublishOnly": "npm run test && npm run build && npm run lint" }, "devDependencies": { "@babel/core": "^7.26.0", "@babel/preset-typescript": "^7.26.0", "@eslint/compat": "^1.2.5", "@eslint/eslintrc": "^3.2.0", "@eslint/js": "^9.18.0", "@preconstruct/cli": "^2.8.10", "@trivago/prettier-plugin-sort-imports": "^5.2.1", "@typescript-eslint/eslint-plugin": "^8.20.0", "@typescript-eslint/parser": "^8.20.0", "eslint": "^9.18.0", "eslint-config-prettier": "^10.0.1", "eslint-plugin-import": "^2.31.0", "eslint-plugin-prettier": "^5.2.2", "eslint-plugin-storybook": "^0.11.2", "globals": "^15.14.0", "lerna": "^8.1.9", "prettier": "^3.4.2", "rimraf": "^6.0.1", "ts-node": "^10.9.2", "typescript": "^5.7.3", "typescript-eslint": "^8.20.0" }, "preconstruct": { "packages": [ "packages/sigma", "packages/node-border", "packages/node-image", "packages/node-piechart", "packages/node-square", "packages/edge-curve", "packages/layer-leaflet", "packages/layer-maplibre", "packages/layer-webgl", "packages/export-image", "packages/utils" ], "exports": { "importConditionDefaultExport": "default" } } } ================================================ FILE: packages/demo/.gitignore ================================================ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies /node_modules /.pnp .pnp.js # testing /coverage # production /build # misc .DS_Store .env.local .env.development.local .env.test.local .env.production.local npm-debug.log* yarn-debug.log* yarn-error.log* tsconfig.tsbuildinfo ================================================ FILE: packages/demo/README.md ================================================ # Sigma.js full-featured demo This project aims to provide a full-features "real life" application using sigma.js. It is built using [Vite](https://vitejs.dev/), and uses [react-sigma](https://sim51.github.io/react-sigma/), to interface sigma.js with React. ## Dataset The dataset has been kindly crafted by the [Sciences-Po médialab](https://medialab.sciencespo.fr/) and [OuestWare](https://www.ouestware.com/en/) teams using [Seealsology](https://densitydesign.github.io/strumentalia-seealsology/). It represents a network of Wikipedia pages, connected by ["See also"](https://en.wikipedia.org/wiki/See_also) links. It then was tagged by hand. ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [localhost:5173](http://localhost:5173) to view it in the browser. The page will reload if you make edits.\ You will also see any lint errors in the console. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. ================================================ FILE: packages/demo/index.html ================================================ A cartography of Wikipedia pages around data visualization
================================================ FILE: packages/demo/package.json ================================================ { "name": "@sigma/demo", "private": true, "homepage": "/demo", "scripts": { "start": "vite", "build": "tsc && vite build", "preview": "vite preview" }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] }, "dependencies": { "@react-sigma/core": "^5.0.1", "@sigma/node-image": ">=3.0.0", "graphology": "^0.25.4", "graphology-layout-forceatlas2": "^0.10.1", "graphology-types": "^0.24.8", "lodash": "^4.17.21", "react": "^19.0.0", "react-animate-height": "^3.2.3", "react-dom": "^19.0.0", "react-icons": "^5.4.0" }, "peerDependencies": { "sigma": ">=3.0.0-beta.33" }, "devDependencies": { "@types/lodash": "^4.17.14", "@types/node": "^22.10.7", "@types/react": "^19.0.7", "@types/react-dom": "^19.0.3", "@vitejs/plugin-react": "^4.3.4", "typescript": "^5.7.3", "vite": "^6.0.7", "vite-plugin-checker": "^0.8.0", "vite-tsconfig-paths": "^5.1.4" } } ================================================ FILE: packages/demo/public/dataset.json ================================================ { "nodes": [ { "key": "cytoscape", "label": "Cytoscape", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Cytoscape", "cluster": "0", "x": 643.82275390625, "y": -770.3126220703125, "score": 0.00006909602204225056 }, { "key": "microsoft excel", "label": "Microsoft Excel", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Microsoft%20Excel", "cluster": "1", "x": -857.2847900390625, "y": 602.7734375, "score": 0.0018317394731443256 }, { "key": "gephi", "label": "Gephi", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Gephi", "cluster": "0", "x": 343.4423828125, "y": -749.0428466796875, "score": 0.0010242079745792347 }, { "key": "microsoft power bi", "label": "Microsoft Power BI", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Microsoft%20Power%20BI", "cluster": "1", "x": -900.3515014648438, "y": 633.4600830078125, "score": 0.0000049571249591405295 }, { "key": "qlik", "label": "Qlik", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Qlik", "cluster": "1", "x": -627.0659790039062, "y": 459.9796447753906, "score": 0 }, { "key": "venn diagram", "label": "Venn diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Venn%20diagram", "cluster": "3", "x": -237.4854736328125, "y": -1150.8712158203125, "score": 0.007071322614031072 }, { "key": "radar chart", "label": "Radar chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Radar%20chart", "cluster": "4", "x": 330.8612365722656, "y": 203.5203857421875, "score": 0 }, { "key": "flowchart", "label": "Flowchart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Flowchart", "cluster": "5", "x": -476.044677734375, "y": 692.1626586914062, "score": 0.01584614746684067 }, { "key": "box plot", "label": "Box plot", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Box%20plot", "cluster": "6", "x": 600.8757934570312, "y": 1116.4998779296875, "score": 0.004182562905931715 }, { "key": "treemap", "label": "Treemap", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Treemap", "cluster": "7", "x": -47.31597137451172, "y": 626.2732543945312, "score": 0.00013330980758652467 }, { "key": "line chart", "label": "Line chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Line%20chart", "cluster": "8", "x": 427.3127136230469, "y": 564.1660766601562, "score": 0.0008676497465946685 }, { "key": "network chart", "label": "Network chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Network%20chart", "cluster": "8", "x": 128.4100341796875, "y": 1197.5357666015625, "score": 0 }, { "key": "pareto chart", "label": "Pareto chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Pareto%20chart", "cluster": "6", "x": 777.5546875, "y": 850.110107421875, "score": 0.006791135145885246 }, { "key": "control chart", "label": "Control chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Control%20chart", "cluster": "10", "x": 458.7308044433594, "y": 1091.70458984375, "score": 0.004527940052048223 }, { "key": "run chart", "label": "Run chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Run%20chart", "cluster": "8", "x": 231.94883728027344, "y": 866.6333618164062, "score": 0 }, { "key": "scatter plot", "label": "Scatter plot", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Scatter%20plot", "cluster": "8", "x": 583.4140625, "y": 789.25634765625, "score": 0 }, { "key": "histogram", "label": "Histogram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Histogram", "cluster": "6", "x": 848.766357421875, "y": 836.5435791015625, "score": 0.00818393070072517 }, { "key": "bar chart", "label": "Bar chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Bar%20chart", "cluster": "8", "x": 534.9988403320312, "y": 1043.3865966796875, "score": 0.002130763205627607 }, { "key": "table (information)", "label": "Table (information)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Table%20%28information%29", "cluster": "7", "x": 26.95672035217285, "y": 233.09812927246094, "score": 0.00401487359118649 }, { "key": "mosaic plot", "label": "Mosaic plot", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Mosaic%20plot", "cluster": "7", "x": -216.06298828125, "y": 647.0496826171875, "score": 0 }, { "key": "tree structure", "label": "Tree structure", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Tree%20structure", "cluster": "4", "x": 396.307861328125, "y": -480.81427001953125, "score": 0.01282269554695697 }, { "key": "topic maps", "label": "Topic maps", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Topic%20maps", "cluster": "11", "x": -910.932861328125, "y": 449.8558044433594, "score": 0.0014923384377384381 }, { "key": "semantic network", "label": "Semantic network", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Semantic%20network", "cluster": "11", "x": -675.4869384765625, "y": -406.92138671875, "score": 0.02294857488492768 }, { "key": "sociogram", "label": "Sociogram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Sociogram", "cluster": "12", "x": 484.12945556640625, "y": -15.758939743041992, "score": 0.004432159081664743 }, { "key": "organizational chart", "label": "Organizational chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Organizational%20chart", "cluster": "12", "x": 33.159915924072266, "y": 330.671875, "score": 0 }, { "key": "object-role modeling", "label": "Object-role modeling", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Object-role%20modeling", "cluster": "11", "x": -807.170654296875, "y": -45.31650161743164, "score": 0.009309705456285613 }, { "key": "mind map", "label": "Mind map", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Mind%20map", "cluster": "13", "x": -48.011146545410156, "y": -285.1162109375, "score": 0.007887202121152629 }, { "key": "issue tree", "label": "Issue tree", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Issue%20tree", "cluster": "14", "x": 265.8011779785156, "y": 398.28131103515625, "score": 0.001831348650231925 }, { "key": "issue-based information system", "label": "Issue-based information system", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Issue-based%20information%20system", "cluster": "14", "x": -26.45574188232422, "y": -66.8399658203125, "score": 0.010124206482050582 }, { "key": "dendrogram", "label": "Dendrogram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Dendrogram", "cluster": "15", "x": 536.2782592773438, "y": -755.9024047851562, "score": 0.001728198449690851 }, { "key": "graph drawing", "label": "Graph drawing", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Graph%20drawing", "cluster": "0", "x": 338.7585144042969, "y": -795.7013549804688, "score": 0 }, { "key": "hyperbolic tree", "label": "Hyperbolic tree", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Hyperbolic%20tree", "cluster": "4", "x": 804.0816650390625, "y": -315.2249755859375, "score": 0.0016892239172192722 }, { "key": "decision tree", "label": "Decision tree", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Decision%20tree", "cluster": "16", "x": 77.14590454101562, "y": -23.381113052368164, "score": 0.024013165654432657 }, { "key": "conceptual graph", "label": "Conceptual graph", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Conceptual%20graph", "cluster": "3", "x": -475.8210754394531, "y": -624.5569458007812, "score": 0.016546673196177822 }, { "key": "concept map", "label": "Concept map", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Concept%20map", "cluster": "11", "x": -703.615478515625, "y": -224.4598846435547, "score": 0 }, { "key": "cognitive map", "label": "Cognitive map", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Cognitive%20map", "cluster": "17", "x": 679.1165161132812, "y": 94.37969970703125, "score": 0.004329984537894845 }, { "key": "cladistics", "label": "Cladistics", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Cladistics", "cluster": "15", "x": 635.1257934570312, "y": -818.5034790039062, "score": 0.014021129902730895 }, { "key": "argument map", "label": "Argument map", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Argument%20map", "cluster": "14", "x": -77.0009536743164, "y": -261.25689697265625, "score": 0.018709398747628874 }, { "key": "argument technology", "label": "Argument technology", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Argument%20technology", "cluster": "14", "x": -126.40925598144531, "y": -357.4993591308594, "score": 0 }, { "key": "argumentation framework", "label": "Argumentation framework", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Argumentation%20framework", "cluster": "14", "x": -161.99148559570312, "y": -519.1444702148438, "score": 0.0029248393536956767 }, { "key": "argumentation scheme", "label": "Argumentation scheme", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Argumentation%20scheme", "cluster": "14", "x": 252.83218383789062, "y": 435.0225830078125, "score": 0.0008077899689775658 }, { "key": "bayesian network", "label": "Bayesian network", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Bayesian%20network", "cluster": "18", "x": 352.8931884765625, "y": -30.181875228881836, "score": 0.03415176824171303 }, { "key": "dialogue mapping", "label": "Dialogue mapping", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Dialogue%20mapping", "cluster": "14", "x": 41.850669860839844, "y": -110.37294006347656, "score": 0.011078995724305082 }, { "key": "flow (policy debate)", "label": "Flow (policy debate)", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Flow%20%28policy%20debate%29", "cluster": "14", "x": -94.31243133544922, "y": -289.2084045410156, "score": 0 }, { "key": "informal fallacy", "label": "Informal fallacy", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Informal%20fallacy", "cluster": "14", "x": 37.87177276611328, "y": -339.2242736816406, "score": 0.00018498260920536065 }, { "key": "logic and dialectic", "label": "Logic and dialectic", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Logic%20and%20dialectic", "cluster": "14", "x": -70.99295043945312, "y": -503.11273193359375, "score": 0.0002646249575517496 }, { "key": "logic of argumentation", "label": "Logic of argumentation", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Logic%20of%20argumentation", "cluster": "14", "x": -86.10369110107422, "y": -496.8826599121094, "score": 0.00020819317444045873 }, { "key": "natural deduction", "label": "Natural deduction", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Natural%20deduction", "cluster": "14", "x": -277.50994873046875, "y": -616.25146484375, "score": 0.0015530343269026423 }, { "key": "practical arguments", "label": "Practical arguments", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Practical%20arguments", "cluster": "14", "x": -102.90691375732422, "y": -510.39715576171875, "score": 0.0006441744391927475 }, { "key": "rhetorical structure theory", "label": "Rhetorical structure theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Rhetorical%20structure%20theory", "cluster": "14", "x": -254.94761657714844, "y": -263.9010009765625, "score": 0.0007035242527660784 }, { "key": "semantic tableau", "label": "Semantic tableau", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Semantic%20tableau", "cluster": "14", "x": -224.5263214111328, "y": -553.0567016601562, "score": 0.00009424027510621452 }, { "key": "bioinformatics", "label": "Bioinformatics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Bioinformatics", "cluster": "15", "x": 658.8048706054688, "y": -643.3179931640625, "score": 0.01821204533179773 }, { "key": "biomathematics", "label": "Biomathematics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Biomathematics", "cluster": "15", "x": 828.9928588867188, "y": -452.6299133300781, "score": 0.005368314648936528 }, { "key": "coalescent theory", "label": "Coalescent theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Coalescent%20theory", "cluster": "15", "x": 767.1087036132812, "y": -743.3150634765625, "score": 0 }, { "key": "common descent", "label": "Common descent", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Common%20descent", "cluster": "15", "x": 660.1932373046875, "y": -949.0615234375, "score": 0.0001598866394411984 }, { "key": "glossary of scientific naming", "label": "Glossary of scientific naming", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Glossary%20of%20scientific%20naming", "cluster": "15", "x": 610.0006103515625, "y": -932.854248046875, "score": 0.0018040231794235473 }, { "key": "language family", "label": "Language family", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Language%20family", "cluster": "19", "x": 496.6799621582031, "y": -1091.396240234375, "score": 0.008996244358047963 }, { "key": "phylogenetic network", "label": "Phylogenetic network", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Phylogenetic%20network", "cluster": "15", "x": 725.3146362304688, "y": -850.9909057617188, "score": 0 }, { "key": "scientific classification", "label": "Scientific classification", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Scientific%20classification", "cluster": "15", "x": 519.0574340820312, "y": -829.2457275390625, "score": 0.003850595544769641 }, { "key": "subclade", "label": "Subclade", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Subclade", "cluster": "15", "x": 723.3982543945312, "y": -907.066162109375, "score": 0.00023239220950615761 }, { "key": "systematics", "label": "Systematics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Systematics", "cluster": "15", "x": 551.040771484375, "y": -684.6061401367188, "score": 0.007052832035228139 }, { "key": "three-taxon analysis", "label": "Three-taxon analysis", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Three-taxon%20analysis", "cluster": "15", "x": 677.3460083007812, "y": -861.2525024414062, "score": 0 }, { "key": "tree model", "label": "Tree model", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Tree%20model", "cluster": "19", "x": 489.556884765625, "y": -1068.211181640625, "score": 0.0010120088005887815 }, { "key": "cognitive geography", "label": "Cognitive geography", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Cognitive%20geography", "cluster": "18", "x": 426.025390625, "y": 328.4589538574219, "score": 0.0006151236604467582 }, { "key": "fuzzy cognitive map", "label": "Fuzzy cognitive map", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Fuzzy%20cognitive%20map", "cluster": "17", "x": 629.9107666015625, "y": 129.70657348632812, "score": 0.0007484619024323138 }, { "key": "motion perception", "label": "Motion perception", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Motion%20perception", "cluster": "17", "x": 1172.5955810546875, "y": 275.5877380371094, "score": 0.0032502597718893607 }, { "key": "repertory grid", "label": "Repertory grid", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Repertory%20grid", "cluster": "20", "x": -83.24153900146484, "y": -338.01910400390625, "score": 0.006250994475848417 }, { "key": "alphabet of human thought", "label": "Alphabet of human thought", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Alphabet%20of%20human%20thought", "cluster": "11", "x": -623.0442504882812, "y": -486.6029968261719, "score": 0.0015020515862330388 }, { "key": "chunking (psychology)", "label": "Chunking (psychology)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Chunking%20%28psychology%29", "cluster": "21", "x": -471.457763671875, "y": -568.8685302734375, "score": 0.004866983827236221 }, { "key": "resource description framework", "label": "Resource Description Framework", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Resource%20Description%20Framework", "cluster": "11", "x": -842.5576782226562, "y": -229.8006591796875, "score": 0.025971659653706878 }, { "key": "sparql", "label": "SPARQL", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/SPARQL", "cluster": "11", "x": -790.0882568359375, "y": -583.29541015625, "score": 0.0006707967423604117 }, { "key": "abstract semantic graph", "label": "Abstract semantic graph", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Abstract%20semantic%20graph", "cluster": "5", "x": -709.9312744140625, "y": -198.11097717285156, "score": 0.003233840402677494 }, { "key": "cmaptools", "label": "CmapTools", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/CmapTools", "cluster": "11", "x": -707.029052734375, "y": -473.86700439453125, "score": 0 }, { "key": "network diagram", "label": "Network diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Network%20diagram", "cluster": "11", "x": -697.0083618164062, "y": -471.2865295410156, "score": 0 }, { "key": "ontology (information science)", "label": "Ontology (information science)", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Ontology%20%28information%20science%29", "cluster": "11", "x": -747.0429077148438, "y": -196.23089599609375, "score": 0.013788094782959398 }, { "key": "semantic lexicon", "label": "Semantic lexicon", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Semantic%20lexicon", "cluster": "11", "x": -617.2353515625, "y": -375.40704345703125, "score": 0.00026242067012252217 }, { "key": "semantic similarity network", "label": "Semantic similarity network", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Semantic%20similarity%20network", "cluster": "11", "x": -562.7909545898438, "y": -468.2868347167969, "score": 0 }, { "key": "semantic neural network", "label": "Semantic neural network", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Semantic%20neural%20network", "cluster": "11", "x": -717.395751953125, "y": -470.8447570800781, "score": 0 }, { "key": "semeval", "label": "SemEval", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/SemEval", "cluster": "11", "x": -865.1612548828125, "y": -296.4136047363281, "score": 0.0005222645900929032 }, { "key": "semantic analysis (computational)", "label": "Semantic analysis (computational)", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Semantic%20analysis%20%28computational%29", "cluster": "11", "x": -791.0706787109375, "y": -238.4806365966797, "score": 0.0009648148717646707 }, { "key": "sparse distributed memory", "label": "Sparse distributed memory", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Sparse%20distributed%20memory", "cluster": "18", "x": -55.231285095214844, "y": -355.26177978515625, "score": 0 }, { "key": "taxonomy (general)", "label": "Taxonomy (general)", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Taxonomy%20%28general%29", "cluster": "11", "x": -286.0745849609375, "y": -460.0727233886719, "score": 0.01849228078475779 }, { "key": "unified medical language system", "label": "Unified Medical Language System", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Unified%20Medical%20Language%20System", "cluster": "22", "x": -565.118408203125, "y": -576.4724731445312, "score": 0.00034029327622420733 }, { "key": "cognition network technology", "label": "Cognition Network Technology", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Cognition%20Network%20Technology", "cluster": "11", "x": -701.9165649414062, "y": -460.1814880371094, "score": 0 }, { "key": "lexipedia", "label": "Lexipedia", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Lexipedia", "cluster": "11", "x": -711.7052001953125, "y": -460.4881591796875, "score": 0 }, { "key": "opencog", "label": "OpenCog", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/OpenCog", "cluster": "11", "x": -715.8640747070312, "y": -493.5049133300781, "score": 0.0008456220201094614 }, { "key": "open mind common sense", "label": "Open Mind Common Sense", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Open%20Mind%20Common%20Sense", "cluster": "11", "x": -924.6856689453125, "y": -355.55181884765625, "score": 0.0023321444317702077 }, { "key": "schema.org", "label": "Schema.org", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Schema.org", "cluster": "11", "x": -846.623046875, "y": -197.66310119628906, "score": 0 }, { "key": "snomed ct", "label": "SNOMED CT", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/SNOMED%20CT", "cluster": "22", "x": -515.9702758789062, "y": -649.560546875, "score": 0.003600203402059478 }, { "key": "universal networking language", "label": "Universal Networking Language", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Universal%20Networking%20Language", "cluster": "11", "x": -829.3536987304688, "y": -278.9306335449219, "score": 0.002090073039330873 }, { "key": "wikidata", "label": "Wikidata", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Wikidata", "cluster": "11", "x": -855.0623168945312, "y": -398.7132263183594, "score": 0.0017145817111678021 }, { "key": "freebase (database)", "label": "Freebase (database)", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Freebase%20%28database%29", "cluster": "11", "x": -929.4356689453125, "y": -396.67376708984375, "score": 0.0038487242945481562 }, { "key": "sparql query results xml format", "label": "SPARQL Query Results XML Format", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/SPARQL%20Query%20Results%20XML%20Format", "cluster": "11", "x": -840.5682373046875, "y": -626.5060424804688, "score": 0 }, { "key": "rdfa", "label": "RDFa", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/RDFa", "cluster": "21", "x": -842.9970092773438, "y": 133.79840087890625, "score": 0.0003232369320399352 }, { "key": "json-ld", "label": "JSON-LD", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/JSON-LD", "cluster": "11", "x": -924.232666015625, "y": -262.08056640625, "score": 0 }, { "key": "notation3", "label": "Notation3", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Notation3", "cluster": "11", "x": -918.1101684570312, "y": -268.0645751953125, "score": 0 }, { "key": "entity–attribute–value model", "label": "Entity–attribute–value model", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Entity%E2%80%93attribute%E2%80%93value%20model", "cluster": "11", "x": -1004.7867431640625, "y": -56.98497009277344, "score": 0.0004002538527626173 }, { "key": "graph theory", "label": "Graph theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Graph%20theory", "cluster": "0", "x": 144.78919982910156, "y": -839.4916381835938, "score": 0.026377687709942383 }, { "key": "tag (metadata)", "label": "Tag (metadata)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Tag%20%28metadata%29", "cluster": "11", "x": -632.1871948242188, "y": -86.4168930053711, "score": 0.004148488943511288 }, { "key": "scicrunch", "label": "SciCrunch", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/SciCrunch", "cluster": "11", "x": -871.8386840820312, "y": -213.283203125, "score": 0.000095803398040257 }, { "key": "semantic technology", "label": "Semantic technology", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Semantic%20technology", "cluster": "11", "x": -894.3898315429688, "y": -162.6959991455078, "score": 0.0061972116669557825 }, { "key": "associative model of data", "label": "Associative model of data", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Associative%20model%20of%20data", "cluster": "11", "x": -972.6192016601562, "y": 155.2799072265625, "score": 0.0009083069994413123 }, { "key": "business intelligence 2.0", "label": "Business Intelligence 2.0", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Business%20Intelligence%202.0", "cluster": "11", "x": -725.814453125, "y": 78.32054901123047, "score": 0.0023852623482935394 }, { "key": "data portability", "label": "Data portability", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Data%20portability", "cluster": "11", "x": -932.8716430664062, "y": -266.43719482421875, "score": 0 }, { "key": "folksonomy", "label": "Folksonomy", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Folksonomy", "cluster": "11", "x": -430.01275634765625, "y": -253.80511474609375, "score": 0.00903214155183702 }, { "key": "lsid", "label": "LSID", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/LSID", "cluster": "11", "x": -893.6924438476562, "y": -213.79568481445312, "score": 0.0004353327368013828 }, { "key": "swoogle", "label": "Swoogle", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Swoogle", "cluster": "11", "x": -951.0037231445312, "y": -201.06761169433594, "score": 0.0002597811302235445 }, { "key": "void", "label": "VoID", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/VoID", "cluster": "11", "x": -971.4874267578125, "y": -182.17935180664062, "score": 0 }, { "key": "language acquisition", "label": "Language acquisition", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Language%20acquisition", "cluster": "19", "x": -0.9998851418495178, "y": -882.901123046875, "score": 0.0004615138730214264 }, { "key": "flow (psychology)", "label": "Flow (psychology)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Flow%20%28psychology%29", "cluster": "21", "x": -38.28602600097656, "y": -17.09149169921875, "score": 0.00029537892476822977 }, { "key": "forgetting curve", "label": "Forgetting curve", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Forgetting%20curve", "cluster": "21", "x": -427.970703125, "y": -414.4608459472656, "score": 0 }, { "key": "generalization (learning)", "label": "Generalization (learning)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Generalization%20%28learning%29", "cluster": "21", "x": -500.75921630859375, "y": -610.4454956054688, "score": 0 }, { "key": "knowledge representation and reasoning", "label": "Knowledge representation and reasoning", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Knowledge%20representation%20and%20reasoning", "cluster": "21", "x": -476.34344482421875, "y": -422.58416748046875, "score": 0.00818075440257721 }, { "key": "memory", "label": "Memory", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Memory", "cluster": "21", "x": -550.5669555664062, "y": -611.5762939453125, "score": 0.0000922964714159353 }, { "key": "merge (linguistics)", "label": "Merge (linguistics)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Merge%20%28linguistics%29", "cluster": "21", "x": -504.92333984375, "y": -601.8806762695312, "score": 0 }, { "key": "method of loci", "label": "Method of loci", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Method%20of%20loci", "cluster": "21", "x": -573.13427734375, "y": -661.1122436523438, "score": 0 }, { "key": "mnemonic", "label": "Mnemonic", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Mnemonic", "cluster": "21", "x": -589.94140625, "y": -681.6317749023438, "score": 0.00007913403771406845 }, { "key": "algebraic logic", "label": "Algebraic logic", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Algebraic%20logic", "cluster": "3", "x": -700.435546875, "y": -795.292724609375, "score": 0.00016231446702861122 }, { "key": "language of thought hypothesis", "label": "Language of thought hypothesis", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Language%20of%20thought%20hypothesis", "cluster": "19", "x": -295.2800598144531, "y": -771.2247314453125, "score": 0.0002577585913602634 }, { "key": "natural semantic metalanguage", "label": "Natural semantic metalanguage", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Natural%20semantic%20metalanguage", "cluster": "11", "x": -647.8865356445312, "y": -346.5642395019531, "score": 0.0015117620751910312 }, { "key": "philosophical language", "label": "Philosophical language", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Philosophical%20language", "cluster": "11", "x": -574.2839965820312, "y": -493.2090148925781, "score": 0.0004692635330238385 }, { "key": "upper ontology", "label": "Upper ontology", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Upper%20ontology", "cluster": "11", "x": -674.0167846679688, "y": -239.4491424560547, "score": 0.0027976343609007206 }, { "key": "authority control", "label": "Authority control", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Authority%20control", "cluster": "11", "x": -822.5309448242188, "y": -127.29187774658203, "score": 0 }, { "key": "formal ontology", "label": "Formal ontology", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Formal%20ontology", "cluster": "11", "x": -726.9469604492188, "y": -293.3465881347656, "score": 0.0001625247713546905 }, { "key": "library classification", "label": "Library classification", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Library%20classification", "cluster": "15", "x": -308.6916198730469, "y": -442.2139587402344, "score": 0 }, { "key": "process ontology", "label": "Process ontology", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Process%20ontology", "cluster": "11", "x": -402.7458801269531, "y": 171.14451599121094, "score": 0 }, { "key": "semantic interoperability", "label": "Semantic interoperability", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Semantic%20interoperability", "cluster": "11", "x": -914.43359375, "y": 77.43998718261719, "score": 0.002211746710645076 }, { "key": "metalanguage", "label": "Metalanguage", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Metalanguage", "cluster": "11", "x": -498.27093505859375, "y": -361.5093994140625, "score": 0.0004533172352591103 }, { "key": "universal grammar", "label": "Universal grammar", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Universal%20grammar", "cluster": "19", "x": 7.053833484649658, "y": -930.2678833007812, "score": 0 }, { "key": "world view", "label": "World view", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/World%20view", "cluster": "19", "x": -218.56655883789062, "y": -771.2120971679688, "score": 0 }, { "key": "boolean algebra", "label": "Boolean algebra", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Boolean%20algebra", "cluster": "3", "x": -649.5697631835938, "y": -993.843994140625, "score": 0 }, { "key": "codd's theorem", "label": "Codd's theorem", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Codd%27s%20theorem", "cluster": "3", "x": -752.46630859375, "y": -735.5181274414062, "score": 0 }, { "key": "mnemonic major system", "label": "Mnemonic major system", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Mnemonic%20major%20system", "cluster": "21", "x": -613.9334106445312, "y": -693.0994262695312, "score": 0 }, { "key": "belief revision", "label": "Belief revision", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Belief%20revision", "cluster": "21", "x": -320.6951904296875, "y": -377.97650146484375, "score": 0 }, { "key": "commonsense knowledge base", "label": "Commonsense knowledge base", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Commonsense%20knowledge%20base", "cluster": "21", "x": -493.8531188964844, "y": -445.00018310546875, "score": 0 }, { "key": "datr", "label": "DATR", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/DATR", "cluster": "21", "x": -495.4014587402344, "y": -456.7448425292969, "score": 0 }, { "key": "logico-linguistic modeling", "label": "Logico-linguistic modeling", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Logico-linguistic%20modeling", "cluster": "21", "x": -484.49884033203125, "y": -453.5343322753906, "score": 0 }, { "key": "personal knowledge base", "label": "Personal knowledge base", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Personal%20knowledge%20base", "cluster": "14", "x": -284.18359375, "y": -120.49275970458984, "score": 0.015741458409185748 }, { "key": "knowledge graph", "label": "Knowledge graph", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Knowledge%20graph", "cluster": "11", "x": -759.041259765625, "y": -285.4691162109375, "score": 0.00037975842884294196 }, { "key": "knowledge management", "label": "Knowledge management", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Knowledge%20management", "cluster": "21", "x": -388.5101623535156, "y": 30.686166763305664, "score": 0.008861628698140528 }, { "key": "valuation-based system", "label": "Valuation-based system", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Valuation-based%20system", "cluster": "21", "x": -503.8725280761719, "y": -448.6062927246094, "score": 0 }, { "key": "imagination", "label": "Imagination", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Imagination", "cluster": "21", "x": 71.3614273071289, "y": -137.79916381835938, "score": 0 }, { "key": "ovsiankina effect", "label": "Ovsiankina effect", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Ovsiankina%20effect", "cluster": "21", "x": 74.63014221191406, "y": 505.1304931640625, "score": 0 }, { "key": "wu wei", "label": "Wu wei", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Wu%20wei", "cluster": "21", "x": 170.06521606445312, "y": 127.3057632446289, "score": 0 }, { "key": "evolutionary linguistics", "label": "Evolutionary linguistics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Evolutionary%20linguistics", "cluster": "19", "x": 302.83514404296875, "y": -1021.9174194335938, "score": 0.00011517517628958691 }, { "key": "evolutionary psychology of language", "label": "Evolutionary psychology of language", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Evolutionary%20psychology%20of%20language", "cluster": "19", "x": 204.8646240234375, "y": -1000.9155883789062, "score": 0 }, { "key": "foxp2", "label": "FOXP2", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/FOXP2", "cluster": "19", "x": 178.49044799804688, "y": -941.7884521484375, "score": 0 }, { "key": "origin of language", "label": "Origin of language", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Origin%20of%20language", "cluster": "19", "x": 288.3348083496094, "y": -943.5899658203125, "score": 0.0007183779982126437 }, { "key": "semantic translation", "label": "Semantic translation", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Semantic%20translation", "cluster": "11", "x": -1023.00537109375, "y": -21.59303092956543, "score": 0.000517135176520443 }, { "key": "semantic unification", "label": "Semantic unification", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Semantic%20unification", "cluster": "11", "x": -1086.5980224609375, "y": -89.59039306640625, "score": 0.0007015673678323802 }, { "key": "ontology (computer science)", "label": "Ontology (computer science)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Ontology%20%28computer%20science%29", "cluster": "11", "x": -773.9939575195312, "y": -175.59030151367188, "score": 0.006193785807766692 }, { "key": "darpa agent markup language", "label": "DARPA Agent Markup Language", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/DARPA%20Agent%20Markup%20Language", "cluster": "11", "x": -1019.974365234375, "y": -350.868408203125, "score": 0 }, { "key": "web ontology language", "label": "Web Ontology Language", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Web%20Ontology%20Language", "cluster": "11", "x": -911.4971923828125, "y": -28.525930404663086, "score": 0.004396283897128895 }, { "key": "semantic web", "label": "Semantic Web", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Semantic%20Web", "cluster": "11", "x": -925.17236328125, "y": -117.87979888916016, "score": 0.015146260330629708 }, { "key": "collective intelligence", "label": "Collective intelligence", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Collective%20intelligence", "cluster": "20", "x": -165.6166534423828, "y": -142.6343536376953, "score": 0 }, { "key": "enterprise bookmarking", "label": "Enterprise bookmarking", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Enterprise%20bookmarking", "cluster": "23", "x": -432.62164306640625, "y": -111.2158432006836, "score": 0.005025707901539079 }, { "key": "faceted classification", "label": "Faceted classification", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Faceted%20classification", "cluster": "11", "x": -331.2969055175781, "y": 48.29027557373047, "score": 0 }, { "key": "hierarchical clustering", "label": "Hierarchical clustering", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Hierarchical%20clustering", "cluster": "4", "x": 580.143310546875, "y": -513.3453979492188, "score": 0.02034966284199348 }, { "key": "semantic similarity", "label": "Semantic similarity", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Semantic%20similarity", "cluster": "11", "x": -568.1552124023438, "y": -92.3887710571289, "score": 0 }, { "key": "thesaurus", "label": "Thesaurus", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Thesaurus", "cluster": "11", "x": -460.56292724609375, "y": -234.09898376464844, "score": 0 }, { "key": "weak ontology", "label": "Weak ontology", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Weak%20ontology", "cluster": "11", "x": -659.6484375, "y": -230.6053009033203, "score": 0 }, { "key": "linked data", "label": "Linked Data", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Linked%20Data", "cluster": "11", "x": -950.0712280273438, "y": -90.6455078125, "score": 0.0004654952256748535 }, { "key": "ontology alignment", "label": "Ontology alignment", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Ontology%20alignment", "cluster": "11", "x": -1023.9115600585938, "y": -82.35829162597656, "score": 0.0013050311543932555 }, { "key": "relationship extraction", "label": "Relationship extraction", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Relationship%20extraction", "cluster": "11", "x": -647.7926635742188, "y": 108.23262786865234, "score": 0 }, { "key": "semantic grid", "label": "Semantic grid", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Semantic%20grid", "cluster": "11", "x": -768.1111450195312, "y": -74.05943298339844, "score": 0.0002438726619144268 }, { "key": "semantic web rule language", "label": "Semantic Web Rule Language", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Semantic%20Web%20Rule%20Language", "cluster": "11", "x": -653.3441772460938, "y": -174.26751708984375, "score": 0 }, { "key": "spreadmart", "label": "Spreadmart", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Spreadmart", "cluster": "11", "x": -846.5366821289062, "y": 372.75830078125, "score": 0 }, { "key": "triplestore", "label": "Triplestore", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Triplestore", "cluster": "11", "x": -1059.2547607421875, "y": 58.725223541259766, "score": 0 }, { "key": "attribute-value system", "label": "Attribute-value system", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Attribute-value%20system", "cluster": "11", "x": -941.8338623046875, "y": 250.4564666748047, "score": 0 }, { "key": "metadata", "label": "Metadata", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Metadata", "cluster": "11", "x": -877.3441772460938, "y": 118.20881652832031, "score": 0 }, { "key": "semantic heterogeneity", "label": "Semantic heterogeneity", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Semantic%20heterogeneity", "cluster": "11", "x": -1062.4501953125, "y": -47.555110931396484, "score": 0 }, { "key": "semantic integration", "label": "Semantic integration", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Semantic%20integration", "cluster": "11", "x": -1055.708984375, "y": -21.736474990844727, "score": 0.003061842742018204 }, { "key": "semantic matching", "label": "Semantic matching", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Semantic%20matching", "cluster": "11", "x": -1014.1257934570312, "y": -146.5421600341797, "score": 0 }, { "key": "expert system", "label": "Expert system", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Expert%20system", "cluster": "21", "x": -619.6608276367188, "y": -162.21267700195312, "score": 0 }, { "key": "human–computer interaction", "label": "Human–computer interaction", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Human%E2%80%93computer%20interaction", "cluster": "11", "x": -593.35302734375, "y": -0.813096284866333, "score": 0 }, { "key": "knowledge transfer", "label": "Knowledge transfer", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Knowledge%20transfer", "cluster": "21", "x": -545.2042236328125, "y": -27.003341674804688, "score": 0 }, { "key": "management information system", "label": "Management information system", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Management%20information%20system", "cluster": "7", "x": -412.3898010253906, "y": 380.8659973144531, "score": 0.0070447599877772145 }, { "key": "subject indexing", "label": "Subject indexing", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Subject%20indexing", "cluster": "11", "x": -654.24462890625, "y": -141.134521484375, "score": 0 }, { "key": "gallery of named graphs", "label": "Gallery of named graphs", "tag": "List", "URL": "https://en.wikipedia.org/wiki/Gallery%20of%20named%20graphs", "cluster": "0", "x": 218.6732635498047, "y": -734.7560424804688, "score": 0 }, { "key": "glossary of graph theory", "label": "Glossary of graph theory", "tag": "List", "URL": "https://en.wikipedia.org/wiki/Glossary%20of%20graph%20theory", "cluster": "0", "x": 388.5685729980469, "y": -655.8279418945312, "score": 0.0003438702405837157 }, { "key": "algebraic graph theory", "label": "Algebraic graph theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Algebraic%20graph%20theory", "cluster": "0", "x": 228.02835083007812, "y": -988.830810546875, "score": 0.00008165350056458872 }, { "key": "citation graph", "label": "Citation graph", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Citation%20graph", "cluster": "0", "x": -84.32083892822266, "y": -137.9530029296875, "score": 0.00008819636926134623 }, { "key": "data structure", "label": "Data structure", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Data%20structure", "cluster": "4", "x": 95.36343383789062, "y": -340.4019470214844, "score": 0.0015348531672156373 }, { "key": "dual-phase evolution", "label": "Dual-phase evolution", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Dual-phase%20evolution", "cluster": "23", "x": 557.9822387695312, "y": -229.10963439941406, "score": 0 }, { "key": "entitative graph", "label": "Entitative graph", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Entitative%20graph", "cluster": "3", "x": -356.9773864746094, "y": -963.9048461914062, "score": 0.0005571481305572723 }, { "key": "existential graph", "label": "Existential graph", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Existential%20graph", "cluster": "3", "x": -330.99444580078125, "y": -996.155517578125, "score": 0.0027082286245061838 }, { "key": "graph algebra", "label": "Graph algebra", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Graph%20algebra", "cluster": "0", "x": 148.67645263671875, "y": -901.763671875, "score": 0 }, { "key": "graph automorphism", "label": "Graph automorphism", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Graph%20automorphism", "cluster": "0", "x": 193.9133758544922, "y": -970.962158203125, "score": 0 }, { "key": "graph coloring", "label": "Graph coloring", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Graph%20coloring", "cluster": "0", "x": 122.90592193603516, "y": -920.8076171875, "score": 0 }, { "key": "graph database", "label": "Graph database", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Graph%20database", "cluster": "7", "x": -246.09805297851562, "y": -663.9519653320312, "score": 0.00028836496421552214 }, { "key": "graph (data structure)", "label": "Graph (data structure)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Graph%20%28data%20structure%29", "cluster": "0", "x": 8.46218204498291, "y": -760.5272216796875, "score": 0.00012777254849138906 }, { "key": "graph rewriting", "label": "Graph rewriting", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Graph%20rewriting", "cluster": "5", "x": -142.51065063476562, "y": -547.5338745117188, "score": 0.004048981217291292 }, { "key": "graph property", "label": "Graph property", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Graph%20property", "cluster": "0", "x": 199.94528198242188, "y": -964.14501953125, "score": 0 }, { "key": "intersection graph", "label": "Intersection graph", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Intersection%20graph", "cluster": "0", "x": 141.39031982421875, "y": -908.7203979492188, "score": 0 }, { "key": "knight's tour", "label": "Knight's Tour", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Knight%27s%20Tour", "cluster": "0", "x": 147.06390380859375, "y": -916.5116577148438, "score": 0 }, { "key": "logical graph", "label": "Logical graph", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Logical%20graph", "cluster": "3", "x": -333.1943664550781, "y": -1014.9374389648438, "score": 0.008395215526123193 }, { "key": "loop (graph theory)", "label": "Loop (graph theory)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Loop%20%28graph%20theory%29", "cluster": "0", "x": 230.75820922851562, "y": -801.9268188476562, "score": 0.00007999418160411841 }, { "key": "network theory", "label": "Network theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Network%20theory", "cluster": "23", "x": 565.5464477539062, "y": -313.09527587890625, "score": 0.005150786057953524 }, { "key": "null graph", "label": "Null graph", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Null%20graph", "cluster": "0", "x": 277.75640869140625, "y": -790.2318115234375, "score": 0 }, { "key": "percolation", "label": "Percolation", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Percolation", "cluster": "23", "x": 555.105224609375, "y": -269.66583251953125, "score": 0.0002635149024042669 }, { "key": "quantum graph", "label": "Quantum graph", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Quantum%20graph", "cluster": "0", "x": 143.5575408935547, "y": -929.2946166992188, "score": 0 }, { "key": "semantic networks", "label": "Semantic networks", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Semantic%20networks", "cluster": "11", "x": -645.2720336914062, "y": -433.6141662597656, "score": 0.0031743495756569487 }, { "key": "spectral graph theory", "label": "Spectral graph theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Spectral%20graph%20theory", "cluster": "0", "x": 247.72479248046875, "y": -955.4554443359375, "score": 0.00011326443053580646 }, { "key": "strongly regular graph", "label": "Strongly regular graph", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Strongly%20regular%20graph", "cluster": "0", "x": 211.5841522216797, "y": -944.821533203125, "score": 0 }, { "key": "symmetric graph", "label": "Symmetric graph", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Symmetric%20graph", "cluster": "0", "x": 215.30694580078125, "y": -899.9691772460938, "score": 0 }, { "key": "transitive reduction", "label": "Transitive reduction", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Transitive%20reduction", "cluster": "4", "x": 223.14500427246094, "y": -848.6118774414062, "score": 0 }, { "key": "tree (data structure)", "label": "Tree (data structure)", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Tree%20%28data%20structure%29", "cluster": "4", "x": 375.03179931640625, "y": -554.2734375, "score": 0.007480545127913062 }, { "key": "bellman–ford algorithm", "label": "Bellman–Ford algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Bellman%E2%80%93Ford%20algorithm", "cluster": "0", "x": 136.70851135253906, "y": -980.599853515625, "score": 0 }, { "key": "borůvka's algorithm", "label": "Borůvka's algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Bor%C5%AFvka%27s%20algorithm", "cluster": "0", "x": 149.03213500976562, "y": -973.4923706054688, "score": 0 }, { "key": "breadth-first search", "label": "Breadth-first search", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Breadth-first%20search", "cluster": "0", "x": 151.68226623535156, "y": -1090.56982421875, "score": 0.00007913403771406845 }, { "key": "depth-first search", "label": "Depth-first search", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Depth-first%20search", "cluster": "0", "x": 142.94589233398438, "y": -1087.94091796875, "score": 0.00007913403771406845 }, { "key": "dijkstra's algorithm", "label": "Dijkstra's algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Dijkstra%27s%20algorithm", "cluster": "0", "x": 144.21620178222656, "y": -1013.4470825195312, "score": 9.161683092800978e-7 }, { "key": "edmonds–karp algorithm", "label": "Edmonds–Karp algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Edmonds%E2%80%93Karp%20algorithm", "cluster": "0", "x": 197.15943908691406, "y": -885.60693359375, "score": 0 }, { "key": "floyd–warshall algorithm", "label": "Floyd–Warshall algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Floyd%E2%80%93Warshall%20algorithm", "cluster": "0", "x": 138.6576385498047, "y": -989.224853515625, "score": 0 }, { "key": "ford–fulkerson algorithm", "label": "Ford–Fulkerson algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Ford%E2%80%93Fulkerson%20algorithm", "cluster": "0", "x": 296.34466552734375, "y": -775.94775390625, "score": 0 }, { "key": "hopcroft–karp algorithm", "label": "Hopcroft–Karp algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Hopcroft%E2%80%93Karp%20algorithm", "cluster": "0", "x": 208.3922576904297, "y": -836.5798950195312, "score": 0.0000621063952801626 }, { "key": "hungarian algorithm", "label": "Hungarian algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Hungarian%20algorithm", "cluster": "0", "x": 189.7929229736328, "y": -892.115478515625, "score": 0 }, { "key": "kruskal's algorithm", "label": "Kruskal's algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Kruskal%27s%20algorithm", "cluster": "0", "x": 152.76881408691406, "y": -1001.6660766601562, "score": 0 }, { "key": "prim's algorithm", "label": "Prim's algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Prim%27s%20algorithm", "cluster": "0", "x": 170.48452758789062, "y": -975.9755249023438, "score": 0.00011980710267787669 }, { "key": "tarjan's strongly connected components algorithm", "label": "Tarjan's strongly connected components algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Tarjan%27s%20strongly%20connected%20components%20algorithm", "cluster": "0", "x": 125.54205322265625, "y": -954.9275512695312, "score": 0 }, { "key": "topological sorting", "label": "Topological sorting", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Topological%20sorting", "cluster": "0", "x": 117.33892059326172, "y": -954.7590942382812, "score": 0 }, { "key": "geometric graph theory", "label": "Geometric graph theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Geometric%20graph%20theory", "cluster": "0", "x": 296.9145812988281, "y": -852.4370727539062, "score": 0.00006717518939355758 }, { "key": "extremal graph theory", "label": "Extremal graph theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Extremal%20graph%20theory", "cluster": "0", "x": 119.41769409179688, "y": -1018.818603515625, "score": 0 }, { "key": "random graph", "label": "Random graph", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Random%20graph", "cluster": "23", "x": 568.1471557617188, "y": -360.8318786621094, "score": 0.005327292784487605 }, { "key": "topological graph theory", "label": "Topological graph theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Topological%20graph%20theory", "cluster": "0", "x": 218.49147033691406, "y": -1016.6495361328125, "score": 0.00008247693968146494 }, { "key": "combinatorics", "label": "Combinatorics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Combinatorics", "cluster": "15", "x": 435.55230712890625, "y": -850.6735229492188, "score": 0.0008953729515199642 }, { "key": "group theory", "label": "Group theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Group%20theory", "cluster": "0", "x": 163.24407958984375, "y": -918.5950927734375, "score": 0 }, { "key": "knot theory", "label": "Knot theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Knot%20theory", "cluster": "0", "x": 61.89107894897461, "y": -1084.978759765625, "score": 0 }, { "key": "ramsey theory", "label": "Ramsey theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Ramsey%20theory", "cluster": "0", "x": 114.66838073730469, "y": -1012.0784912109375, "score": 0 }, { "key": "hypergraph", "label": "Hypergraph", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Hypergraph", "cluster": "3", "x": -34.0966796875, "y": -700.4102172851562, "score": 0.0023015537747276466 }, { "key": "abstract simplicial complex", "label": "Abstract simplicial complex", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Abstract%20simplicial%20complex", "cluster": "0", "x": 139.17201232910156, "y": -922.0830688476562, "score": 0 }, { "key": "noga alon", "label": "Noga Alon", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/Noga%20Alon", "cluster": "0", "x": 155.56820678710938, "y": -910.853515625, "score": 0 }, { "key": "john adrian bondy", "label": "John Adrian Bondy", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/John%20Adrian%20Bondy", "cluster": "0", "x": 160.35073852539062, "y": -903.3408813476562, "score": 0 }, { "key": "gabriel andrew dirac", "label": "Gabriel Andrew Dirac", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/Gabriel%20Andrew%20Dirac", "cluster": "0", "x": 126.69784545898438, "y": -906.927734375, "score": 0 }, { "key": "paul erdős", "label": "Paul Erdős", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/Paul%20Erd%C5%91s", "cluster": "0", "x": 128.62188720703125, "y": -928.2205810546875, "score": 0 }, { "key": "percy john heawood", "label": "Percy John Heawood", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/Percy%20John%20Heawood", "cluster": "0", "x": 132.42514038085938, "y": -915.6151733398438, "score": 0 }, { "key": "anton kotzig", "label": "Anton Kotzig", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/Anton%20Kotzig", "cluster": "0", "x": 134.90591430664062, "y": -901.9312133789062, "score": 0 }, { "key": "dénes kőnig", "label": "Dénes Kőnig", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/D%C3%A9nes%20K%C5%91nig", "cluster": "0", "x": 153.53500366210938, "y": -923.6826171875, "score": 0 }, { "key": "lászló lovász", "label": "László Lovász", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/L%C3%A1szl%C3%B3%20Lov%C3%A1sz", "cluster": "0", "x": 122.37181854248047, "y": -987.25, "score": 0.000124302219858327 }, { "key": "paul seymour (mathematician)", "label": "Paul Seymour (mathematician)", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/Paul%20Seymour%20%28mathematician%29", "cluster": "0", "x": 119.23326110839844, "y": -912.132568359375, "score": 0 }, { "key": "w. t. tutte", "label": "W. T. Tutte", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/W.%20T.%20Tutte", "cluster": "4", "x": 604.9615478515625, "y": -694.9256591796875, "score": 0.00010984090169089748 }, { "key": "hassler whitney", "label": "Hassler Whitney", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/Hassler%20Whitney", "cluster": "0", "x": 169.03988647460938, "y": -909.9524536132812, "score": 0 }, { "key": "slowly changing dimension", "label": "Slowly changing dimension", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Slowly%20changing%20dimension", "cluster": "11", "x": -1162.8721923828125, "y": 46.6432991027832, "score": 0 }, { "key": "microformat", "label": "Microformat", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Microformat", "cluster": "21", "x": -786.9326782226562, "y": 236.78131103515625, "score": 0 }, { "key": "microdata (html)", "label": "Microdata (HTML)", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Microdata%20%28HTML%29", "cluster": "21", "x": -788.9451293945312, "y": 227.4476776123047, "score": 0 }, { "key": "xml", "label": "XML", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/XML", "cluster": "5", "x": -812.0134887695312, "y": 514.8312377929688, "score": 0 }, { "key": "babelnet", "label": "BabelNet", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/BabelNet", "cluster": "11", "x": -944.9154052734375, "y": -368.1926574707031, "score": 0.002164478246721345 }, { "key": "dbpedia", "label": "DBpedia", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/DBpedia", "cluster": "11", "x": -968.5007934570312, "y": -368.9994812011719, "score": 0.00021646377368071811 }, { "key": "semantic mediawiki", "label": "Semantic MediaWiki", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Semantic%20MediaWiki", "cluster": "11", "x": -912.4962768554688, "y": -328.338623046875, "score": 0.0006947545325407717 }, { "key": "cyc", "label": "Cyc", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Cyc", "cluster": "11", "x": -954.6949462890625, "y": -454.6947021484375, "score": 0.003306565356892153 }, { "key": "entity–relationship model", "label": "Entity–relationship model", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Entity%E2%80%93relationship%20model", "cluster": "11", "x": -944.5690307617188, "y": 23.748191833496094, "score": 0.0028532348742788646 }, { "key": "true knowledge", "label": "True Knowledge", "tag": "Company", "URL": "https://en.wikipedia.org/wiki/True%20Knowledge", "cluster": "11", "x": -995.8724975585938, "y": -471.5167541503906, "score": 0.000028272045598960805 }, { "key": "yago (database)", "label": "YAGO (database)", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/YAGO%20%28database%29", "cluster": "11", "x": -893.7944946289062, "y": -382.844482421875, "score": 0.0005575594191295055 }, { "key": "knowledge vault", "label": "Knowledge Vault", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Knowledge%20Vault", "cluster": "11", "x": -936.792236328125, "y": -298.59075927734375, "score": 0.00031094409765345505 }, { "key": "clinical data interchange standards consortium", "label": "Clinical Data Interchange Standards Consortium", "tag": "Organization", "URL": "https://en.wikipedia.org/wiki/Clinical%20Data%20Interchange%20Standards%20Consortium", "cluster": "22", "x": -516.7845458984375, "y": -416.3999938964844, "score": 0.0004273748036375761 }, { "key": "clinical care classification system", "label": "Clinical Care Classification System", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Clinical%20Care%20Classification%20System", "cluster": "22", "x": -412.52435302734375, "y": -790.51025390625, "score": 0 }, { "key": "docle", "label": "DOCLE", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/DOCLE", "cluster": "22", "x": -469.29522705078125, "y": -732.8194580078125, "score": 0.000041170313398274394 }, { "key": "en 13606", "label": "EN 13606", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/EN%2013606", "cluster": "22", "x": -527.2703857421875, "y": -620.049072265625, "score": 0.00026394686829500326 }, { "key": "medcin", "label": "MEDCIN", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/MEDCIN", "cluster": "22", "x": -352.59442138671875, "y": -791.632080078125, "score": 0.0010589604938370035 }, { "key": "meddra", "label": "MedDRA", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/MedDRA", "cluster": "22", "x": -444.18988037109375, "y": -569.1815185546875, "score": 0.00020010930469793362 }, { "key": "omaha system", "label": "Omaha System", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Omaha%20System", "cluster": "22", "x": -306.0516662597656, "y": -796.6760864257812, "score": 0.0010640522752898786 }, { "key": "foundational model of anatomy", "label": "Foundational Model of Anatomy", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Foundational%20Model%20of%20Anatomy", "cluster": "22", "x": -571.9398803710938, "y": -710.5590209960938, "score": 0 }, { "key": "attempto controlled english", "label": "Attempto controlled English", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Attempto%20controlled%20English", "cluster": "11", "x": -693.1058959960938, "y": 26.525123596191406, "score": 0.0013385494892133177 }, { "key": "never-ending language learning", "label": "Never-Ending Language Learning", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Never-Ending%20Language%20Learning", "cluster": "11", "x": -836.1973266601562, "y": -429.274169921875, "score": 0.00007786245225895359 }, { "key": "mindpixel", "label": "Mindpixel", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Mindpixel", "cluster": "11", "x": -964.6343383789062, "y": -469.32183837890625, "score": 0.0000033791551411659985 }, { "key": "thoughttreasure", "label": "ThoughtTreasure", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/ThoughtTreasure", "cluster": "11", "x": -971.9043579101562, "y": -425.3985900878906, "score": 0.00001478393462905329 }, { "key": "soar (cognitive architecture)", "label": "Soar (cognitive architecture)", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Soar%20%28cognitive%20architecture%29", "cluster": "11", "x": -489.733154296875, "y": -402.2613220214844, "score": 0.000011574614936723598 }, { "key": "openai", "label": "OpenAI", "tag": "Organization", "URL": "https://en.wikipedia.org/wiki/OpenAI", "cluster": "11", "x": -647.9365844726562, "y": -502.41143798828125, "score": 2.2904207732002446e-7 }, { "key": "medical classification", "label": "Medical classification", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Medical%20classification", "cluster": "22", "x": -268.8819580078125, "y": -778.7237548828125, "score": 0.0012169888168756826 }, { "key": "categorization", "label": "Categorization", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Categorization", "cluster": "15", "x": -118.73316192626953, "y": -440.3768310546875, "score": 0.000832430514242821 }, { "key": "classification (general theory)", "label": "Classification (general theory)", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Classification%20%28general%20theory%29", "cluster": "15", "x": -42.45366668701172, "y": -591.6888427734375, "score": 0.0015474837583148715 }, { "key": "celestial emporium of benevolent recognition", "label": "Celestial Emporium of Benevolent Recognition", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Celestial%20Emporium%20of%20Benevolent%20Recognition", "cluster": "11", "x": -327.3880310058594, "y": -506.41253662109375, "score": 0 }, { "key": "conflation", "label": "Conflation", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Conflation", "cluster": "11", "x": -310.910400390625, "y": -510.711181640625, "score": 0 }, { "key": "hypernym", "label": "Hypernym", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Hypernym", "cluster": "11", "x": -538.8417358398438, "y": -463.9079895019531, "score": 0.00006680450549889743 }, { "key": "knowledge representation", "label": "Knowledge representation", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Knowledge%20representation", "cluster": "21", "x": -457.52752685546875, "y": -388.3069152832031, "score": 0.01376680905074288 }, { "key": "lexicon", "label": "Lexicon", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Lexicon", "cluster": "11", "x": -383.3857116699219, "y": -241.419189453125, "score": 0.0001956223005320509 }, { "key": "protégé (software)", "label": "Protégé (software)", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Prot%C3%A9g%C3%A9%20%28software%29", "cluster": "11", "x": -766.2107543945312, "y": -254.3942413330078, "score": 0.0013839791736388841 }, { "key": "structuralism", "label": "Structuralism", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Structuralism", "cluster": "11", "x": 5.247107982635498, "y": -18.6092472076416, "score": 0.00011671418764303403 }, { "key": "taxon", "label": "Taxon", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Taxon", "cluster": "15", "x": 364.98291015625, "y": -795.843017578125, "score": 0.0010798203727240168 }, { "key": "taxonomy for search engines", "label": "Taxonomy for search engines", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Taxonomy%20for%20search%20engines", "cluster": "11", "x": -319.3077697753906, "y": -503.34661865234375, "score": 0 }, { "key": "thesaurus (information retrieval)", "label": "Thesaurus (information retrieval)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Thesaurus%20%28information%20retrieval%29", "cluster": "11", "x": -510.4674377441406, "y": -266.0479736328125, "score": 0.00007575394051360483 }, { "key": "computational semantics", "label": "Computational semantics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Computational%20semantics", "cluster": "11", "x": -965.2175903320312, "y": -236.58160400390625, "score": 0.0015080942907774104 }, { "key": "natural language processing", "label": "Natural language processing", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Natural%20language%20processing", "cluster": "11", "x": -653.91259765625, "y": -112.69408416748047, "score": 0.0006426418621691633 }, { "key": "semantic analytics", "label": "Semantic analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Semantic%20analytics", "cluster": "11", "x": -491.98004150390625, "y": 96.77739715576172, "score": 0.00014142895902837045 }, { "key": "semantic analysis (machine learning)", "label": "Semantic analysis (machine learning)", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Semantic%20analysis%20%28machine%20learning%29", "cluster": "11", "x": -710.1082153320312, "y": -107.33619689941406, "score": 0.000020306177099575617 }, { "key": "word sense", "label": "Word sense", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Word%20sense", "cluster": "11", "x": -1096.0675048828125, "y": -262.6681823730469, "score": 0.00009654725479997093 }, { "key": "gellish", "label": "Gellish", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Gellish", "cluster": "11", "x": -683.6392822265625, "y": -173.24795532226562, "score": 0 }, { "key": "graph (abstract data type)", "label": "Graph (abstract data type)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Graph%20%28abstract%20data%20type%29", "cluster": "0", "x": -77.38995361328125, "y": -655.3379516601562, "score": 0.0018856381979477153 }, { "key": "idea networking", "label": "Idea networking", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Idea%20networking", "cluster": "20", "x": 82.23460388183594, "y": -167.45657348632812, "score": 0.0027231880132923816 }, { "key": "implicit relational assessment procedure", "label": "Implicit Relational Assessment Procedure", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Implicit%20Relational%20Assessment%20Procedure", "cluster": "20", "x": -93.10240936279297, "y": -371.5769958496094, "score": 0 }, { "key": "q methodology", "label": "Q methodology", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Q%20methodology", "cluster": "20", "x": -47.5731086730957, "y": -114.64006805419922, "score": 0.00007896924894366487 }, { "key": "commonsense knowledge bases", "label": "Commonsense knowledge bases", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Commonsense%20knowledge%20bases", "cluster": "11", "x": -755.6460571289062, "y": -233.0300750732422, "score": 0.0005671759716945092 }, { "key": "controlled vocabulary", "label": "Controlled vocabulary", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Controlled%20vocabulary", "cluster": "11", "x": -712.2034301757812, "y": -46.502952575683594, "score": 0.002332019554736243 }, { "key": "classification scheme (information science)", "label": "Classification scheme (information science)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Classification%20scheme%20%28information%20science%29", "cluster": "11", "x": -930.228759765625, "y": -63.278953552246094, "score": 0.00020000396450949232 }, { "key": "formal concept analysis", "label": "Formal concept analysis", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Formal%20concept%20analysis", "cluster": "4", "x": -233.8119659423828, "y": -231.75582885742188, "score": 0.0009658016332339617 }, { "key": "lattice (order)", "label": "Lattice (order)", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Lattice%20%28order%29", "cluster": "11", "x": -557.2487182617188, "y": -293.2978820800781, "score": 0.0019138917062398119 }, { "key": "ontology", "label": "Ontology", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Ontology", "cluster": "11", "x": -802.4988403320312, "y": 104.12451171875, "score": 0 }, { "key": "ontology chart", "label": "Ontology chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Ontology%20chart", "cluster": "11", "x": -812.9419555664062, "y": -191.93759155273438, "score": 0 }, { "key": "open semantic framework", "label": "Open Semantic Framework", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Open%20Semantic%20Framework", "cluster": "11", "x": -967.7907104492188, "y": -35.30357360839844, "score": 0.003212947743168521 }, { "key": "soft ontology", "label": "Soft ontology", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Soft%20ontology", "cluster": "11", "x": -802.4599609375, "y": -210.4902801513672, "score": 0 }, { "key": "terminology extraction", "label": "Terminology extraction", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Terminology%20extraction", "cluster": "11", "x": -631.9566040039062, "y": -185.26966857910156, "score": 0.001905128877444444 }, { "key": "characteristica universalis", "label": "Characteristica universalis", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Characteristica%20universalis", "cluster": "11", "x": -806.2623901367188, "y": -200.8917694091797, "score": 0 }, { "key": "interoperability", "label": "Interoperability", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Interoperability", "cluster": "11", "x": -627.125244140625, "y": -20.90610122680664, "score": 0.0021424713354572383 }, { "key": "abstract syntax tree", "label": "Abstract syntax tree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Abstract%20syntax%20tree", "cluster": "5", "x": -459.3824462890625, "y": -16.06570816040039, "score": 0.0048607617062511165 }, { "key": "exquisite corpse", "label": "Exquisite corpse", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Exquisite%20corpse", "cluster": "13", "x": -178.0074005126953, "y": -407.5213623046875, "score": 0.0009569882372060549 }, { "key": "graph (discrete mathematics)", "label": "Graph (discrete mathematics)", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Graph%20%28discrete%20mathematics%29", "cluster": "0", "x": 77.01103973388672, "y": -580.4057006835938, "score": 0.0013833863016234334 }, { "key": "idea", "label": "Idea", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Idea", "cluster": "13", "x": -71.74822235107422, "y": -448.6311340332031, "score": 0.0034297437843280303 }, { "key": "mental literacy", "label": "Mental literacy", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Mental%20literacy", "cluster": "13", "x": -121.71910095214844, "y": -328.4855651855469, "score": 0 }, { "key": "nodal organizational structure", "label": "Nodal organizational structure", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Nodal%20organizational%20structure", "cluster": "10", "x": 122.17115783691406, "y": 217.4998321533203, "score": 0.005763290814021886 }, { "key": "personal wiki", "label": "Personal wiki", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Personal%20wiki", "cluster": "14", "x": -311.3005676269531, "y": -114.6126708984375, "score": 0.0014959448800083313 }, { "key": "rhizome (philosophy)", "label": "Rhizome (philosophy)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Rhizome%20%28philosophy%29", "cluster": "13", "x": -68.34617614746094, "y": -678.7107543945312, "score": 0.004682216382571588 }, { "key": "social map", "label": "Social map", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Social%20map", "cluster": "13", "x": 94.21646881103516, "y": -225.3516082763672, "score": 0.003222587871337692 }, { "key": "spider mapping", "label": "Spider mapping", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Spider%20mapping", "cluster": "13", "x": -256.9673767089844, "y": -302.2412109375, "score": 0.00003330984889842856 }, { "key": "biological motion", "label": "Biological motion", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Biological%20motion", "cluster": "17", "x": 1245.595947265625, "y": 278.42144775390625, "score": 0.0000011833840661534595 }, { "key": "eye movement (sensory)", "label": "Eye movement (sensory)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Eye%20movement%20%28sensory%29", "cluster": "17", "x": 1221.6109619140625, "y": 297.4622802734375, "score": 0 }, { "key": "illusory motion", "label": "Illusory motion", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Illusory%20motion", "cluster": "17", "x": 1214.0107421875, "y": 267.8876647949219, "score": 0 }, { "key": "induced movement", "label": "Induced movement", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Induced%20movement", "cluster": "17", "x": 1228.5450439453125, "y": 259.1819763183594, "score": 3.817367955333741e-8 }, { "key": "jerkiness", "label": "Jerkiness", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Jerkiness", "cluster": "17", "x": 1264.9259033203125, "y": 299.31048583984375, "score": 0.0004619778699544894 }, { "key": "lilac chaser", "label": "Lilac chaser", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Lilac%20chaser", "cluster": "17", "x": 1229.3953857421875, "y": 289.3548278808594, "score": 0 }, { "key": "max wertheimer", "label": "Max Wertheimer", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/Max%20Wertheimer", "cluster": "17", "x": 1220.01318359375, "y": 312.4950866699219, "score": 0 }, { "key": "motion aftereffect", "label": "Motion aftereffect", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Motion%20aftereffect", "cluster": "17", "x": 1250.07763671875, "y": 260.91070556640625, "score": 9.54341988833435e-7 }, { "key": "motion (physics)", "label": "Motion (physics)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Motion%20%28physics%29", "cluster": "17", "x": 1263.8114013671875, "y": 278.351318359375, "score": 0.0000011452103866001223 }, { "key": "motion sensing in vision", "label": "Motion sensing in vision", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Motion%20sensing%20in%20vision", "cluster": "17", "x": 1195.0745849609375, "y": 298.7527160644531, "score": 0 }, { "key": "optical flow", "label": "Optical flow", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Optical%20flow", "cluster": "17", "x": 1217.9952392578125, "y": 283.680908203125, "score": 0 }, { "key": "peripheral drift illusion", "label": "Peripheral drift illusion", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Peripheral%20drift%20illusion", "cluster": "17", "x": 1223.55859375, "y": 275.3535461425781, "score": 0 }, { "key": "persistence of vision", "label": "Persistence of vision", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Persistence%20of%20vision", "cluster": "17", "x": 1273.7554931640625, "y": 287.45947265625, "score": 0.0009262079870026258 }, { "key": "pulfrich effect", "label": "Pulfrich effect", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Pulfrich%20effect", "cluster": "17", "x": 1229.0216064453125, "y": 304.6051940917969, "score": 0 }, { "key": "strobe light", "label": "Strobe light", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Strobe%20light", "cluster": "17", "x": 1273.398681640625, "y": 321.86798095703125, "score": 0.0000017559892594535206 }, { "key": "stroboscopic effect", "label": "Stroboscopic effect", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Stroboscopic%20effect", "cluster": "17", "x": 1262.1036376953125, "y": 333.6462707519531, "score": 0.000002214073414093569 }, { "key": "visual modularity", "label": "Visual modularity", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Visual%20modularity", "cluster": "17", "x": 1092.1937255859375, "y": 324.96038818359375, "score": 0.000002366768132306919 }, { "key": "visual perception", "label": "Visual perception", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Visual%20perception", "cluster": "17", "x": 895.0927734375, "y": 317.5968322753906, "score": 0.000006298657126300673 }, { "key": "wagon-wheel effect", "label": "Wagon-wheel effect", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Wagon-wheel%20effect", "cluster": "17", "x": 1196.847412109375, "y": 354.10638427734375, "score": 0.0000027485049278402937 }, { "key": "causal diagram", "label": "Causal diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Causal%20diagram", "cluster": "6", "x": 438.1298828125, "y": 154.97250366210938, "score": 0.0020381224013600865 }, { "key": "causal loop diagram", "label": "Causal loop diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Causal%20loop%20diagram", "cluster": "23", "x": 494.7638854980469, "y": 185.18702697753906, "score": 0.006216810233775465 }, { "key": "system dynamics", "label": "System dynamics", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/System%20dynamics", "cluster": "23", "x": 622.8671875, "y": 163.65269470214844, "score": 0.0035755672016735958 }, { "key": "ecosystem model", "label": "Ecosystem model", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Ecosystem%20model", "cluster": "23", "x": 816.7540283203125, "y": -44.04935073852539, "score": 0 }, { "key": "system dynamics society", "label": "System Dynamics Society", "tag": "Organization", "URL": "https://en.wikipedia.org/wiki/System%20Dynamics%20Society", "cluster": "23", "x": 756.5075073242188, "y": 209.07211303710938, "score": 0 }, { "key": "wicked problem", "label": "Wicked problem", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Wicked%20problem", "cluster": "20", "x": 347.049072265625, "y": 60.60059356689453, "score": 0 }, { "key": "population dynamics", "label": "Population dynamics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Population%20dynamics", "cluster": "23", "x": 772.3981323242188, "y": -59.25724411010742, "score": 0 }, { "key": "dynamical systems theory", "label": "Dynamical systems theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Dynamical%20systems%20theory", "cluster": "23", "x": 748.3113403320312, "y": -34.59257888793945, "score": 0 }, { "key": "grey box model", "label": "Grey box model", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Grey%20box%20model", "cluster": "23", "x": 726.7197265625, "y": 295.0785827636719, "score": 0 }, { "key": "operations research", "label": "Operations research", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Operations%20research", "cluster": "7", "x": 83.52240753173828, "y": 723.7681274414062, "score": 0.0037512941393699627 }, { "key": "system identification", "label": "System identification", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/System%20identification", "cluster": "23", "x": 755.0643920898438, "y": 196.7957763671875, "score": 0 }, { "key": "systems theory", "label": "Systems theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Systems%20theory", "cluster": "23", "x": 719.5684204101562, "y": 213.43527221679688, "score": 0.004583050377830994 }, { "key": "systems thinking", "label": "Systems thinking", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Systems%20thinking", "cluster": "23", "x": 705.0557861328125, "y": 262.6366882324219, "score": 0.002830704567740447 }, { "key": "triz", "label": "TRIZ", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/TRIZ", "cluster": "20", "x": 236.83993530273438, "y": 65.4411392211914, "score": 0.0017072601698925449 }, { "key": "directed acyclic graph", "label": "Directed acyclic graph", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Directed%20acyclic%20graph", "cluster": "5", "x": -230.62423706054688, "y": 345.4334411621094, "score": 0 }, { "key": "path analysis (statistics)", "label": "Path analysis (statistics)", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Path%20analysis%20%28statistics%29", "cluster": "23", "x": 507.91180419921875, "y": 191.16986083984375, "score": 0 }, { "key": "positive feedback", "label": "Positive feedback", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Positive%20feedback", "cluster": "23", "x": 720.36474609375, "y": 331.7070617675781, "score": 0 }, { "key": "structural equation modeling", "label": "Structural equation modeling", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Structural%20equation%20modeling", "cluster": "6", "x": 402.60589599609375, "y": 196.0709228515625, "score": 0.0028791650213429673 }, { "key": "causal map", "label": "Causal map", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Causal%20map", "cluster": "6", "x": 453.74176025390625, "y": 190.30531311035156, "score": 0 }, { "key": "aliasing", "label": "Aliasing", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Aliasing", "cluster": "17", "x": 957.2798461914062, "y": 460.7005615234375, "score": 0 }, { "key": "computer vision", "label": "Computer vision", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Computer%20vision", "cluster": "8", "x": 710.0435791015625, "y": 490.1965026855469, "score": 0 }, { "key": "multisensory integration", "label": "Multisensory integration", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Multisensory%20integration", "cluster": "17", "x": 295.4568176269531, "y": 322.5936584472656, "score": 0 }, { "key": "cognitive science", "label": "Cognitive science", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Cognitive%20science", "cluster": "18", "x": 543.527587890625, "y": 196.1392822265625, "score": 0 }, { "key": "modularity", "label": "Modularity", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Modularity", "cluster": "17", "x": 820.330810546875, "y": 384.6979675292969, "score": 0 }, { "key": "flicker (light)", "label": "Flicker (light)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Flicker%20%28light%29", "cluster": "17", "x": 1306.2479248046875, "y": 340.5159606933594, "score": 0 }, { "key": "flicker fusion threshold", "label": "Flicker fusion threshold", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Flicker%20fusion%20threshold", "cluster": "17", "x": 1306.7171630859375, "y": 318.5633544921875, "score": 0 }, { "key": "afterimage", "label": "Afterimage", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Afterimage", "cluster": "17", "x": 1304.3720703125, "y": 265.7323303222656, "score": 0 }, { "key": "motion capture", "label": "Motion capture", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Motion%20capture", "cluster": "17", "x": 1295.796875, "y": 275.5779113769531, "score": 0 }, { "key": "signage", "label": "Signage", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Signage", "cluster": "17", "x": 604.0667114257812, "y": 474.4591369628906, "score": 0 }, { "key": "tree (graph theory)", "label": "Tree (graph theory)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Tree%20%28graph%20theory%29", "cluster": "4", "x": 486.3802795410156, "y": -459.5943298339844, "score": 0.0013233762903584359 }, { "key": "tree (set theory)", "label": "Tree (set theory)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Tree%20%28set%20theory%29", "cluster": "4", "x": 445.56549072265625, "y": -643.8995971679688, "score": 0.00047218950625679736 }, { "key": "cardinal tree", "label": "Cardinal tree", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Cardinal%20tree", "cluster": "4", "x": 449.58154296875, "y": -610.8460693359375, "score": 0 }, { "key": "ordinal tree", "label": "Ordinal tree", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Ordinal%20tree", "cluster": "4", "x": 442.8125915527344, "y": -614.7493896484375, "score": 0 }, { "key": "hierarchy (mathematics)", "label": "Hierarchy (mathematics)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Hierarchy%20%28mathematics%29", "cluster": "4", "x": 363.5637512207031, "y": -608.8851318359375, "score": 0.00012095185761164601 }, { "key": "dialog tree", "label": "Dialog tree", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Dialog%20tree", "cluster": "4", "x": 424.689453125, "y": -592.5746459960938, "score": 0 }, { "key": "single inheritance", "label": "Single inheritance", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Single%20inheritance", "cluster": "4", "x": 412.7212829589844, "y": -596.4953002929688, "score": 0 }, { "key": "generative grammar", "label": "Generative grammar", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Generative%20grammar", "cluster": "19", "x": -43.279937744140625, "y": -392.4776611328125, "score": 0.0005879925664638194 }, { "key": "genetic programming", "label": "Genetic programming", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Genetic%20programming", "cluster": "0", "x": 466.38800048828125, "y": -489.4223327636719, "score": 0.00019959249871609436 }, { "key": "binary space partition tree", "label": "Binary space partition tree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Binary%20space%20partition%20tree", "cluster": "4", "x": 783.2446899414062, "y": -617.8587646484375, "score": 0.0003173754007882676 }, { "key": "recursion", "label": "Recursion", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Recursion", "cluster": "19", "x": 121.84003448486328, "y": -595.9076538085938, "score": 0.000186782896744112 }, { "key": "fenwick tree", "label": "Fenwick tree", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Fenwick%20tree", "cluster": "4", "x": 421.2061462402344, "y": -601.9625244140625, "score": 0 }, { "key": "trie", "label": "Trie", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Trie", "cluster": "4", "x": 211.989013671875, "y": -801.8059692382812, "score": 0.00008592036875552178 }, { "key": "enfilade (xanadu)", "label": "Enfilade (Xanadu)", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Enfilade%20%28Xanadu%29", "cluster": "4", "x": 419.8973388671875, "y": -521.6289672851562, "score": 0.00017782551553353906 }, { "key": "hierarchical temporal memory", "label": "Hierarchical temporal memory", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Hierarchical%20temporal%20memory", "cluster": "18", "x": 35.96812057495117, "y": -253.84210205078125, "score": 0.0006406357836220079 }, { "key": "card sorting", "label": "Card sorting", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Card%20sorting", "cluster": "20", "x": -119.89045715332031, "y": 121.5815658569336, "score": 0 }, { "key": "group concept mapping", "label": "Group concept mapping", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Group%20concept%20mapping", "cluster": "20", "x": 71.61437225341797, "y": -99.77106475830078, "score": 0 }, { "key": "brainstorming", "label": "Brainstorming", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Brainstorming", "cluster": "20", "x": 113.1626968383789, "y": -202.05372619628906, "score": 0.000615542262997186 }, { "key": "concept driven strategy", "label": "Concept driven strategy", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Concept%20driven%20strategy", "cluster": "20", "x": 108.79314422607422, "y": -39.69621658325195, "score": 0 }, { "key": "concept mapping", "label": "Concept mapping", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Concept%20mapping", "cluster": "20", "x": -373.0652160644531, "y": -145.80311584472656, "score": 0 }, { "key": "pathfinder network", "label": "Pathfinder network", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Pathfinder%20network", "cluster": "20", "x": 356.67791748046875, "y": -264.4546203613281, "score": 0 }, { "key": "social network analysis", "label": "Social network analysis", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Social%20network%20analysis", "cluster": "23", "x": 457.07025146484375, "y": -79.12741088867188, "score": 0.01030046997784691 }, { "key": "graph traversal", "label": "Graph traversal", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Graph%20traversal", "cluster": "0", "x": -36.188255310058594, "y": -768.4710083007812, "score": 0 }, { "key": "graph drawing software", "label": "Graph drawing software", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Graph%20drawing%20software", "cluster": "0", "x": -31.414161682128906, "y": -760.2022094726562, "score": 0 }, { "key": "contextualism", "label": "Contextualism", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Contextualism", "cluster": "13", "x": -213.95245361328125, "y": -883.2734985351562, "score": 0.0004509384299439154 }, { "key": "deleuze and guattari", "label": "Deleuze and Guattari", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/Deleuze%20and%20Guattari", "cluster": "13", "x": -67.2768783569336, "y": -737.4854736328125, "score": 0 }, { "key": "heterarchy", "label": "Heterarchy", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Heterarchy", "cluster": "11", "x": -259.7275695800781, "y": -504.8309020996094, "score": 0.0016056226327426182 }, { "key": "minority (philosophy)", "label": "Minority (philosophy)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Minority%20%28philosophy%29", "cluster": "13", "x": -71.92227172851562, "y": -760.505126953125, "score": 0 }, { "key": "multiplicity (philosophy)", "label": "Multiplicity (philosophy)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Multiplicity%20%28philosophy%29", "cluster": "13", "x": -151.02752685546875, "y": -776.9718017578125, "score": 0 }, { "key": "mutualism (biology)", "label": "Mutualism (biology)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Mutualism%20%28biology%29", "cluster": "13", "x": -64.20784759521484, "y": -754.9276123046875, "score": 0 }, { "key": "perspectivism", "label": "Perspectivism", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Perspectivism", "cluster": "13", "x": -224.75930786132812, "y": -681.7512817382812, "score": 0.0003200640410137074 }, { "key": "plane of immanence", "label": "Plane of immanence", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Plane%20of%20immanence", "cluster": "13", "x": 323.0514831542969, "y": -403.70184326171875, "score": 0.000003187502242703674 }, { "key": "digital infinity", "label": "Digital infinity", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Digital%20infinity", "cluster": "19", "x": 164.18714904785156, "y": -658.8633422851562, "score": 0.00024712393407932807 }, { "key": "commonplace book", "label": "Commonplace book", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Commonplace%20book", "cluster": "14", "x": -361.00982666015625, "y": -132.0633087158203, "score": 0.0006791098946793512 }, { "key": "comparison of wiki software", "label": "Comparison of wiki software", "tag": "List", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20wiki%20software", "cluster": "14", "x": -465.9567565917969, "y": 38.939231872558594, "score": 0.00005694152122469968 }, { "key": "notetaking", "label": "Notetaking", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Notetaking", "cluster": "14", "x": -358.01434326171875, "y": -191.48202514648438, "score": 0.00011647202265579341 }, { "key": "outliner", "label": "Outliner", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Outliner", "cluster": "14", "x": -335.67010498046875, "y": -93.59388732910156, "score": 0.005505165170131647 }, { "key": "personal information manager", "label": "Personal information manager", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Personal%20information%20manager", "cluster": "14", "x": -274.0675354003906, "y": 81.69979858398438, "score": 0.0006449911111076553 }, { "key": "personal knowledge management", "label": "Personal knowledge management", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Personal%20knowledge%20management", "cluster": "14", "x": -350.107666015625, "y": -19.07309341430664, "score": 0.0022485017480281277 }, { "key": "zettelkasten", "label": "Zettelkasten", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Zettelkasten", "cluster": "14", "x": -282.62139892578125, "y": -149.15438842773438, "score": 0.0038569606030890444 }, { "key": "antifragility", "label": "Antifragility", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Antifragility", "cluster": "10", "x": 187.0358428955078, "y": 407.0599670410156, "score": 0.002368967331847648 }, { "key": "complexity theory and organizations", "label": "Complexity theory and organizations", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Complexity%20theory%20and%20organizations", "cluster": "10", "x": 456.2109680175781, "y": 215.65074157714844, "score": 0.000036150406005194665 }, { "key": "engineering of systems", "label": "Engineering of systems", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Engineering%20of%20systems", "cluster": "10", "x": 51.48921203613281, "y": 843.0659790039062, "score": 0.0005063911187800877 }, { "key": "enterprise modelling", "label": "Enterprise modelling", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Enterprise%20modelling", "cluster": "11", "x": -586.4564208984375, "y": 387.7236022949219, "score": 0.0005902892117593951 }, { "key": "flat organization", "label": "Flat organization", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Flat%20organization", "cluster": "10", "x": 252.04855346679688, "y": 134.1737823486328, "score": 0 }, { "key": "information management", "label": "Information management", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Information%20management", "cluster": "21", "x": -342.910400390625, "y": 350.9992370605469, "score": 0.012950638349086252 }, { "key": "hierarchical organization", "label": "Hierarchical organization", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Hierarchical%20organization", "cluster": "10", "x": 292.79083251953125, "y": 76.03492736816406, "score": 0.00007729357059752553 }, { "key": "organizational architecture", "label": "Organizational architecture", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Organizational%20architecture", "cluster": "11", "x": -512.9902954101562, "y": 294.671630859375, "score": 0.0001667750827767636 }, { "key": "organizational culture", "label": "Organizational culture", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Organizational%20culture", "cluster": "12", "x": 419.12542724609375, "y": 261.25958251953125, "score": 0.0008365501132273357 }, { "key": "organizational structure", "label": "Organizational structure", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Organizational%20structure", "cluster": "11", "x": -210.84027099609375, "y": 261.264404296875, "score": 0 }, { "key": "industrial and organizational psychology", "label": "Industrial and organizational psychology", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Industrial%20and%20organizational%20psychology", "cluster": "12", "x": 475.9872131347656, "y": 441.9350891113281, "score": 0.0008528352050131092 }, { "key": "social group", "label": "Social group", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Social%20group", "cluster": "12", "x": 534.3731689453125, "y": -307.8911437988281, "score": 0.000855642598364784 }, { "key": "spontaneous order", "label": "Spontaneous order", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Spontaneous%20order", "cluster": "23", "x": 342.17333984375, "y": 252.11541748046875, "score": 0.000053371085777238835 }, { "key": "clandestine cell system", "label": "Clandestine cell system", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Clandestine%20cell%20system", "cluster": "10", "x": 72.9683609008789, "y": 179.9698944091797, "score": 0.00005215585678808029 }, { "key": "unorganisation", "label": "Unorganisation", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Unorganisation", "cluster": "20", "x": -57.295021057128906, "y": 78.55626678466797, "score": 0.00011310373631295159 }, { "key": "idealism", "label": "Idealism", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Idealism", "cluster": "14", "x": -6.959212303161621, "y": -600.156982421875, "score": 0.000041064402412063116 }, { "key": "creativity techniques", "label": "Creativity techniques", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Creativity%20techniques", "cluster": "20", "x": 156.88656616210938, "y": -232.79005432128906, "score": 0.002513126304581234 }, { "key": "diffusion of innovations", "label": "Diffusion of innovations", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Diffusion%20of%20innovations", "cluster": "20", "x": 297.0165710449219, "y": -256.9774169921875, "score": 0.0037566751717212003 }, { "key": "ideology", "label": "Ideology", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Ideology", "cluster": "13", "x": -127.68160247802734, "y": -669.994873046875, "score": 0.00003664979465538784 }, { "key": "notion (philosophy)", "label": "Notion (philosophy)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Notion%20%28philosophy%29", "cluster": "13", "x": -253.23367309570312, "y": -544.9735717773438, "score": 0 }, { "key": "object of the mind", "label": "Object of the mind", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Object%20of%20the%20mind", "cluster": "13", "x": -223.0965576171875, "y": -586.4507446289062, "score": 0.000024846858112765485 }, { "key": "think tank", "label": "Think tank", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Think%20tank", "cluster": "20", "x": -119.1697998046875, "y": -230.24562072753906, "score": 0.00005902675912702533 }, { "key": "thought experiment", "label": "Thought experiment", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Thought%20experiment", "cluster": "6", "x": 68.5882339477539, "y": 340.8675231933594, "score": 0.00004642504782506759 }, { "key": "history of ideas", "label": "History of ideas", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/History%20of%20ideas", "cluster": "13", "x": -99.1052017211914, "y": -807.9873657226562, "score": 0.00023740211314220535 }, { "key": "intellectual history", "label": "Intellectual history", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Intellectual%20history", "cluster": "13", "x": -87.77902221679688, "y": -807.7369384765625, "score": 0.00023740211314220535 }, { "key": "concept", "label": "Concept", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Concept", "cluster": "13", "x": -320.0277404785156, "y": -534.294921875, "score": 0.000865834372851787 }, { "key": "philosophical analysis", "label": "Philosophical analysis", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Philosophical%20analysis", "cluster": "13", "x": 4.303709983825684, "y": -511.58221435546875, "score": 0.000025711553261879532 }, { "key": "photoshop tennis", "label": "Photoshop tennis", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Photoshop%20tennis", "cluster": "13", "x": -198.376953125, "y": -455.125732421875, "score": 0 }, { "key": "comic jam", "label": "Comic jam", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Comic%20jam", "cluster": "13", "x": -193.90914916992188, "y": -435.8758239746094, "score": 0 }, { "key": "round-robin story", "label": "Round-robin story", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Round-robin%20story", "cluster": "13", "x": -203.40130615234375, "y": -446.73858642578125, "score": 0 }, { "key": "mindmap", "label": "Mindmap", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Mindmap", "cluster": "13", "x": -162.69125366210938, "y": -324.9837341308594, "score": 0.006504778576802172 }, { "key": "behavioral geography", "label": "Behavioral geography", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Behavioral%20geography", "cluster": "18", "x": 460.13970947265625, "y": 353.3959655761719, "score": 0 }, { "key": "cognitive psychology", "label": "Cognitive psychology", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Cognitive%20psychology", "cluster": "18", "x": 289.9866638183594, "y": 37.24297332763672, "score": 0.000027675917676169614 }, { "key": "spatial cognition", "label": "Spatial cognition", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Spatial%20cognition", "cluster": "18", "x": 364.1803894042969, "y": 300.1258239746094, "score": 0.00000515344673970055 }, { "key": "geovisualization", "label": "Geovisualization", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Geovisualization", "cluster": "8", "x": 434.0361633300781, "y": 604.18115234375, "score": 0.001593587269742069 }, { "key": "wayfinding", "label": "Wayfinding", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Wayfinding", "cluster": "7", "x": 123.08663940429688, "y": 417.60968017578125, "score": 0 }, { "key": "b-tree", "label": "B-tree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/B-tree", "cluster": "4", "x": 1021.5797729492188, "y": -549.2489013671875, "score": 0.0030606271745285364 }, { "key": "data drilling", "label": "Data drilling", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Data%20drilling", "cluster": "7", "x": 39.929752349853516, "y": -159.58120727539062, "score": 0 }, { "key": "hierarchical model", "label": "Hierarchical model", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Hierarchical%20model", "cluster": "4", "x": 409.6672058105469, "y": -557.8333129882812, "score": 0.0001067593023406819 }, { "key": "hierarchical query", "label": "Hierarchical query", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Hierarchical%20query", "cluster": "4", "x": 262.63189697265625, "y": -593.9261474609375, "score": 0.0004929280640588892 }, { "key": "tree testing", "label": "Tree testing", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Tree%20testing", "cluster": "4", "x": 119.97872161865234, "y": -82.75764465332031, "score": 0 }, { "key": "comparative method", "label": "Comparative method", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Comparative%20method", "cluster": "19", "x": 381.8501281738281, "y": -961.7783203125, "score": 0.0002493014885889067 }, { "key": "genetic relationship (linguistics)", "label": "Genetic relationship (linguistics)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Genetic%20relationship%20%28linguistics%29", "cluster": "19", "x": 512.11865234375, "y": -1140.35888671875, "score": 0.00004896738724590808 }, { "key": "indo-european studies", "label": "Indo-European studies", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Indo-European%20studies", "cluster": "19", "x": 438.0217590332031, "y": -1109.485107421875, "score": 0.0000031086794381373326 }, { "key": "linkage (linguistics)", "label": "Linkage (linguistics)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Linkage%20%28linguistics%29", "cluster": "19", "x": 541.4375610351562, "y": -1190.5421142578125, "score": 0.000045720538791417714 }, { "key": "wave model (linguistics)", "label": "Wave model (linguistics)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Wave%20model%20%28linguistics%29", "cluster": "19", "x": 459.50140380859375, "y": -896.134521484375, "score": 0.00005619611319968458 }, { "key": "father tongue hypothesis", "label": "Father Tongue hypothesis", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Father%20Tongue%20hypothesis", "cluster": "19", "x": 511.541259765625, "y": -1122.0006103515625, "score": 0 }, { "key": "memetics", "label": "Memetics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Memetics", "cluster": "19", "x": 404.36859130859375, "y": -611.43408203125, "score": 0 }, { "key": "language contact", "label": "Language contact", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Language%20contact", "cluster": "19", "x": 568.429443359375, "y": -1246.2664794921875, "score": 0 }, { "key": "constructed language", "label": "Constructed language", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Constructed%20language", "cluster": "19", "x": 20.201797485351562, "y": -836.646484375, "score": 0.00584311681704871 }, { "key": "endangered language", "label": "Endangered language", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Endangered%20language", "cluster": "19", "x": 610.4201049804688, "y": -1265.57958984375, "score": 0.0004226208063350024 }, { "key": "extinct language", "label": "Extinct language", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Extinct%20language", "cluster": "19", "x": 601.51708984375, "y": -1171.1044921875, "score": 0.0001429067306321368 }, { "key": "language death", "label": "Language death", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Language%20death", "cluster": "19", "x": 590.4929809570312, "y": -1263.2750244140625, "score": 0.0006952687550184118 }, { "key": "global language system", "label": "Global language system", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Global%20language%20system", "cluster": "19", "x": 496.7047424316406, "y": -1227.6268310546875, "score": 0.00026370377835445403 }, { "key": "proto-language (historical linguistics)", "label": "Proto-language (historical linguistics)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Proto-language%20%28historical%20linguistics%29", "cluster": "19", "x": 394.06378173828125, "y": -1013.0359497070312, "score": 0.00017890670193173032 }, { "key": "proto-human language", "label": "Proto-Human language", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Proto-Human%20language", "cluster": "19", "x": 316.417724609375, "y": -1031.5992431640625, "score": 0.00006060823186822491 }, { "key": "unclassified language", "label": "Unclassified language", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Unclassified%20language", "cluster": "19", "x": 559.8035278320312, "y": -1097.541015625, "score": 0.0001218511058851773 }, { "key": "historical linguistics", "label": "Historical linguistics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Historical%20linguistics", "cluster": "19", "x": 373.7210998535156, "y": -1054.150634765625, "score": 0 }, { "key": "comparative linguistics", "label": "Comparative linguistics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Comparative%20linguistics", "cluster": "19", "x": 454.6783142089844, "y": -1097.08056640625, "score": 0 }, { "key": "language isolate", "label": "Language isolate", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Language%20isolate", "cluster": "19", "x": 555.1766357421875, "y": -1153.306640625, "score": 0 }, { "key": "biolinguistics", "label": "Biolinguistics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Biolinguistics", "cluster": "19", "x": 307.0653991699219, "y": -1047.6795654296875, "score": 0 }, { "key": "phylogenetic tree", "label": "Phylogenetic tree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Phylogenetic%20tree", "cluster": "15", "x": 517.79833984375, "y": -929.38720703125, "score": 0 }, { "key": "lexicostatistics", "label": "Lexicostatistics", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Lexicostatistics", "cluster": "19", "x": -163.01705932617188, "y": -629.4994506835938, "score": 0 }, { "key": "proto-language", "label": "Proto-language", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Proto-language", "cluster": "19", "x": 346.8216857910156, "y": -1024.6937255859375, "score": 0 }, { "key": "datalog", "label": "Datalog", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Datalog", "cluster": "7", "x": -420.7032775878906, "y": -508.77197265625, "score": 0.00026436425577523493 }, { "key": "reachability", "label": "Reachability", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Reachability", "cluster": "4", "x": 287.5516662597656, "y": -637.5847778320312, "score": 0 }, { "key": "transitive closure", "label": "Transitive closure", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Transitive%20closure", "cluster": "4", "x": 256.5393981933594, "y": -758.6903686523438, "score": 0.00002030403481614083 }, { "key": "binary space partitioning", "label": "Binary space partitioning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Binary%20space%20partitioning", "cluster": "4", "x": 849.1033325195312, "y": -596.1015625, "score": 0.0009446979960149815 }, { "key": "bounding volume hierarchy", "label": "Bounding volume hierarchy", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Bounding%20volume%20hierarchy", "cluster": "4", "x": 818.5838012695312, "y": -589.8177490234375, "score": 0.002922237544113654 }, { "key": "brown clustering", "label": "Brown clustering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Brown%20clustering", "cluster": "4", "x": 644.9867553710938, "y": -527.6826171875, "score": 0 }, { "key": "cluster analysis", "label": "Cluster analysis", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Cluster%20analysis", "cluster": "4", "x": 391.1073303222656, "y": -361.32684326171875, "score": 0.0024147660870920255 }, { "key": "computational phylogenetics", "label": "Computational phylogenetics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Computational%20phylogenetics", "cluster": "15", "x": 591.9526977539062, "y": -610.32470703125, "score": 0.01735774593089035 }, { "key": "cure data clustering algorithm", "label": "CURE data clustering algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/CURE%20data%20clustering%20algorithm", "cluster": "4", "x": 642.5660400390625, "y": -538.1322021484375, "score": 0 }, { "key": "determining the number of clusters in a data set", "label": "Determining the number of clusters in a data set", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Determining%20the%20number%20of%20clusters%20in%20a%20data%20set", "cluster": "4", "x": 527.0065307617188, "y": -459.62725830078125, "score": 0 }, { "key": "hierarchical clustering of networks", "label": "Hierarchical clustering of networks", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Hierarchical%20clustering%20of%20networks", "cluster": "4", "x": 500.212158203125, "y": -521.3433837890625, "score": 0.001175909508255498 }, { "key": "locality-sensitive hashing", "label": "Locality-sensitive hashing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Locality-sensitive%20hashing", "cluster": "4", "x": 376.1282043457031, "y": -330.9991149902344, "score": 0.001581099563837878 }, { "key": "nearest neighbor search", "label": "Nearest neighbor search", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Nearest%20neighbor%20search", "cluster": "4", "x": 465.8026428222656, "y": -288.708740234375, "score": 0.0036493991814555288 }, { "key": "numerical taxonomy", "label": "Numerical taxonomy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Numerical%20taxonomy", "cluster": "4", "x": 564.6903076171875, "y": -639.3377685546875, "score": 0.001179008867470926 }, { "key": "optics algorithm", "label": "OPTICS algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/OPTICS%20algorithm", "cluster": "6", "x": 890.155029296875, "y": 12.731932640075684, "score": 0 }, { "key": "statistical distance", "label": "Statistical distance", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Statistical%20distance", "cluster": "4", "x": 568.5665283203125, "y": -425.816650390625, "score": 0 }, { "key": "persistent homology", "label": "Persistent homology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Persistent%20homology", "cluster": "4", "x": 633.4055786132812, "y": -539.4898071289062, "score": 0 }, { "key": "kurepa tree", "label": "Kurepa tree", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Kurepa%20tree", "cluster": "4", "x": 485.78662109375, "y": -686.5958251953125, "score": 0 }, { "key": "laver tree", "label": "Laver tree", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Laver%20tree", "cluster": "4", "x": 466.20281982421875, "y": -695.1686401367188, "score": 0 }, { "key": "tree (descriptive set theory)", "label": "Tree (descriptive set theory)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Tree%20%28descriptive%20set%20theory%29", "cluster": "4", "x": 431.8933410644531, "y": -677.61962890625, "score": 0.0005109787842997658 }, { "key": "hypertree", "label": "Hypertree", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Hypertree", "cluster": "4", "x": 535.9276733398438, "y": -489.7192077636719, "score": 0 }, { "key": "unrooted binary tree", "label": "Unrooted binary tree", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Unrooted%20binary%20tree", "cluster": "4", "x": 810.7046508789062, "y": -481.6220397949219, "score": 0 }, { "key": "behavior tree (artificial intelligence, robotics and control)", "label": "Behavior tree (artificial intelligence, robotics and control)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Behavior%20tree%20%28artificial%20intelligence%2C%20robotics%20and%20control%29", "cluster": "16", "x": 51.23191833496094, "y": -53.347206115722656, "score": 0.00035325105877509553 }, { "key": "boosting (machine learning)", "label": "Boosting (machine learning)", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Boosting%20%28machine%20learning%29", "cluster": "16", "x": 538.5542602539062, "y": 277.4903564453125, "score": 0.005156831255749363 }, { "key": "decision cycle", "label": "Decision cycle", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Decision%20cycle", "cluster": "10", "x": 239.43130493164062, "y": 666.6565551757812, "score": 0.006254154777741675 }, { "key": "decision list", "label": "Decision list", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Decision%20list", "cluster": "16", "x": 335.5602111816406, "y": -76.60675048828125, "score": 0.00015620669673225667 }, { "key": "decision table", "label": "Decision table", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Decision%20table", "cluster": "16", "x": -192.65985107421875, "y": -39.99335861206055, "score": 0.004316264310985871 }, { "key": "decision tree model", "label": "Decision tree model", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Decision%20tree%20model", "cluster": "16", "x": -92.10061645507812, "y": -410.23541259765625, "score": 0.0020719254540220483 }, { "key": "design rationale", "label": "Design rationale", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Design%20rationale", "cluster": "20", "x": 3.90860915184021, "y": 336.4949951171875, "score": 0.001219067108741879 }, { "key": "drakon", "label": "DRAKON", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/DRAKON", "cluster": "5", "x": -402.64569091796875, "y": 655.1260986328125, "score": 0 }, { "key": "markov chain", "label": "Markov chain", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Markov%20chain", "cluster": "18", "x": 577.88037109375, "y": 597.88134765625, "score": 0.002246213475275396 }, { "key": "random forest", "label": "Random forest", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Random%20forest", "cluster": "16", "x": 492.03924560546875, "y": 226.9278564453125, "score": 0.002415303619937981 }, { "key": "odds algorithm", "label": "Odds algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Odds%20algorithm", "cluster": "16", "x": 173.30101013183594, "y": -92.74720764160156, "score": 0.0019615139762334294 }, { "key": "topological combinatorics", "label": "Topological combinatorics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Topological%20combinatorics", "cluster": "0", "x": 188.41099548339844, "y": -1026.896728515625, "score": 0.0007135539694672632 }, { "key": "truth table", "label": "Truth table", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Truth%20table", "cluster": "3", "x": -426.31585693359375, "y": -1028.725341796875, "score": 0.011613604786483994 }, { "key": "b+ tree", "label": "B+ tree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/B%2B%20tree", "cluster": "4", "x": 1083.7540283203125, "y": -568.489013671875, "score": 0 }, { "key": "r-tree", "label": "R-tree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/R-tree", "cluster": "4", "x": 893.6261596679688, "y": -592.5349731445312, "score": 0.0023330799300503606 }, { "key": "red–black tree", "label": "Red–black tree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Red%E2%80%93black%20tree", "cluster": "4", "x": 1101.5341796875, "y": -541.6307373046875, "score": 0.0003922345574105419 }, { "key": "2–3 tree", "label": "2–3 tree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/2%E2%80%933%20tree", "cluster": "4", "x": 1081.713134765625, "y": -538.3057861328125, "score": 0.00007821786940478836 }, { "key": "2–3–4 tree", "label": "2–3–4 tree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/2%E2%80%933%E2%80%934%20tree", "cluster": "4", "x": 1039.65087890625, "y": -529.50439453125, "score": 0.00003765531263750464 }, { "key": "cartography", "label": "Cartography", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Cartography", "cluster": "7", "x": 205.96640014648438, "y": 502.0666198730469, "score": 0 }, { "key": "computer-aided design", "label": "Computer-aided design", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Computer-aided%20design", "cluster": "10", "x": 470.032958984375, "y": 854.808837890625, "score": 0 }, { "key": "computer graphics", "label": "Computer graphics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Computer%20graphics", "cluster": "8", "x": 671.0115966796875, "y": 874.7772827148438, "score": 0 }, { "key": "exploratory data analysis", "label": "Exploratory data analysis", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Exploratory%20data%20analysis", "cluster": "6", "x": 340.9304504394531, "y": 554.6495971679688, "score": 0.008884064405635958 }, { "key": "geoinformatics", "label": "Geoinformatics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Geoinformatics", "cluster": "8", "x": -24.319034576416016, "y": 355.34039306640625, "score": 0 }, { "key": "image processing", "label": "Image processing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Image%20processing", "cluster": "8", "x": 633.4656982421875, "y": 795.6337280273438, "score": 0 }, { "key": "signal processing", "label": "Signal processing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Signal%20processing", "cluster": "6", "x": 526.5436401367188, "y": 460.2947998046875, "score": 0 }, { "key": "space mapping", "label": "Space mapping", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Space%20mapping", "cluster": "18", "x": 30.30461311340332, "y": 404.57867431640625, "score": 0 }, { "key": "cognition", "label": "Cognition", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cognition", "cluster": "18", "x": 353.043701171875, "y": 187.64523315429688, "score": 0 }, { "key": "cognitive robotics", "label": "Cognitive robotics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cognitive%20robotics", "cluster": "18", "x": 223.8614501953125, "y": 53.35688781738281, "score": 0 }, { "key": "artificial intelligence", "label": "Artificial intelligence", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Artificial%20intelligence", "cluster": "18", "x": 365.1165771484375, "y": 411.4618835449219, "score": 0 }, { "key": "formal fallacy", "label": "Formal fallacy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Formal%20fallacy", "cluster": "14", "x": 183.59153747558594, "y": -162.52694702148438, "score": 0 }, { "key": "personal information management", "label": "Personal information management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Personal%20information%20management", "cluster": "18", "x": 209.70448303222656, "y": 92.68804931640625, "score": 0 }, { "key": "taxonomy (biology)", "label": "Taxonomy (biology)", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Taxonomy%20%28biology%29", "cluster": "15", "x": 492.7709655761719, "y": -807.5087280273438, "score": 0.00881550159019847 }, { "key": "methodology", "label": "methodology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/methodology", "cluster": "7", "x": 188.7590789794922, "y": -397.94281005859375, "score": 0.00004012190055625593 }, { "key": "global biodiversity", "label": "Global biodiversity", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Global%20biodiversity", "cluster": "15", "x": 597.5812377929688, "y": -725.9423217773438, "score": 0 }, { "key": "phenetics", "label": "Phenetics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Phenetics", "cluster": "15", "x": 520.6441650390625, "y": -783.23486328125, "score": 0.00018449452060005452 }, { "key": "phylogeny", "label": "Phylogeny", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Phylogeny", "cluster": "15", "x": 678.8300170898438, "y": -757.751220703125, "score": 0.0003209197557893916 }, { "key": "phylogenetic comparative methods", "label": "Phylogenetic comparative methods", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Phylogenetic%20comparative%20methods", "cluster": "15", "x": 674.5009765625, "y": -586.5753784179688, "score": 0.0055269797434169664 }, { "key": "biodiversity", "label": "biodiversity", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/biodiversity", "cluster": "15", "x": 770.2447509765625, "y": -345.40496826171875, "score": 0.00011130041760411372 }, { "key": "clade", "label": "Clade", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Clade", "cluster": "15", "x": 730.08837890625, "y": -884.9166870117188, "score": 0.00003136855288618033 }, { "key": "haplotype", "label": "Haplotype", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Haplotype", "cluster": "15", "x": 768.4527587890625, "y": -957.6187133789062, "score": 0 }, { "key": "automated species identification", "label": "Automated species identification", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Automated%20species%20identification", "cluster": "15", "x": 526.0171508789062, "y": -892.4882202148438, "score": 0 }, { "key": "bacterial taxonomy", "label": "Bacterial taxonomy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bacterial%20taxonomy", "cluster": "15", "x": 591.2159423828125, "y": -873.7532348632812, "score": 0.00012692561104268824 }, { "key": "cladogram", "label": "Cladogram", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cladogram", "cluster": "15", "x": 576.83154296875, "y": -824.0825805664062, "score": 0.000053233364188603886 }, { "key": "consortium for the barcode of life", "label": "Consortium for the Barcode of Life", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Consortium%20for%20the%20Barcode%20of%20Life", "cluster": "15", "x": 538.1236572265625, "y": -872.3402099609375, "score": 0 }, { "key": "consortium of european taxonomic facilities", "label": "Consortium of European Taxonomic Facilities", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Consortium%20of%20European%20Taxonomic%20Facilities", "cluster": "15", "x": 528.541748046875, "y": -870.3175048828125, "score": 0 }, { "key": "genetypes", "label": "Genetypes", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Genetypes", "cluster": "15", "x": 538.6987915039062, "y": -917.0570068359375, "score": 0.00007901951667540844 }, { "key": "identification (biology)", "label": "Identification (biology)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Identification%20%28biology%29", "cluster": "15", "x": 535.9554443359375, "y": -902.5750122070312, "score": 0.00007940125347094181 }, { "key": "incertae sedis", "label": "Incertae sedis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Incertae%20sedis", "cluster": "15", "x": 555.837646484375, "y": -950.2114868164062, "score": 0.000053709194565033576 }, { "key": "open tree of life", "label": "Open Tree of Life", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Open%20Tree%20of%20Life", "cluster": "15", "x": 520.12060546875, "y": -876.22314453125, "score": 0 }, { "key": "parataxonomy", "label": "Parataxonomy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Parataxonomy", "cluster": "15", "x": 416.4772644042969, "y": -745.3355102539062, "score": 0.00009493350966479956 }, { "key": "phenogram", "label": "Phenogram", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Phenogram", "cluster": "15", "x": 510.5155334472656, "y": -882.3505249023438, "score": 0 }, { "key": "set theory", "label": "Set theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Set%20theory", "cluster": "15", "x": 364.0361022949219, "y": -634.1840209960938, "score": 0.0025084199487137287 }, { "key": "virus classification", "label": "Virus classification", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Virus%20classification", "cluster": "15", "x": 570.2596435546875, "y": -903.5493774414062, "score": 0.0003066551512307124 }, { "key": "binomial nomenclature", "label": "Binomial nomenclature", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Binomial%20nomenclature", "cluster": "15", "x": 688.4509887695312, "y": -965.3206176757812, "score": 0 }, { "key": "biological classification", "label": "Biological classification", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Biological%20classification", "cluster": "15", "x": 686.81005859375, "y": -935.7020874023438, "score": 0 }, { "key": "folk taxonomy", "label": "Folk taxonomy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Folk%20taxonomy", "cluster": "15", "x": 323.7737121582031, "y": -764.6181030273438, "score": 0 }, { "key": "citizen science", "label": "Citizen science", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Citizen%20science", "cluster": "20", "x": 175.77133178710938, "y": -318.6661682128906, "score": 0 }, { "key": "relational model", "label": "Relational model", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Relational%20model", "cluster": "3", "x": -643.3650512695312, "y": -623.777587890625, "score": 0.004319698151777869 }, { "key": "alpha taxonomy", "label": "Alpha taxonomy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Alpha%20taxonomy", "cluster": "15", "x": 490.3638916015625, "y": -848.5904541015625, "score": 0.0017195418271236415 }, { "key": "glossary of botanical terms", "label": "Glossary of botanical terms", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Glossary%20of%20botanical%20terms", "cluster": "15", "x": 640.9251098632812, "y": -980.8865966796875, "score": 0 }, { "key": "species description", "label": "Species description", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Species%20description", "cluster": "15", "x": 666.1949462890625, "y": -985.9443969726562, "score": 0.000004730328392382459 }, { "key": "distance matrices in phylogeny", "label": "Distance matrices in phylogeny", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Distance%20matrices%20in%20phylogeny", "cluster": "15", "x": 566.8358764648438, "y": -801.6034545898438, "score": 0 }, { "key": "freeware", "label": "freeware", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/freeware", "cluster": "20", "x": 290.8801574707031, "y": -560.873779296875, "score": 0.0004141479623956757 }, { "key": "yed", "label": "yEd", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/yEd", "cluster": "0", "x": 439.9559020996094, "y": -800.1146850585938, "score": 0 }, { "key": "dna barcoding", "label": "DNA barcoding", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/DNA%20barcoding", "cluster": "15", "x": 565.4705200195312, "y": -968.763427734375, "score": 0 }, { "key": "conceptual clustering", "label": "Conceptual clustering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Conceptual%20clustering", "cluster": "4", "x": 89.94078826904297, "y": -316.7793273925781, "score": 0 }, { "key": "community structure", "label": "Community structure", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Community%20structure", "cluster": "4", "x": 557.5174560546875, "y": -249.46018981933594, "score": 0 }, { "key": "spectral clustering", "label": "Spectral clustering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Spectral%20clustering", "cluster": "0", "x": 340.4964904785156, "y": -697.524658203125, "score": 0 }, { "key": "artificial neural network", "label": "Artificial neural network", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Artificial%20neural%20network", "cluster": "23", "x": 308.72265625, "y": -7.784684658050537, "score": 0 }, { "key": "dimension reduction", "label": "Dimension reduction", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dimension%20reduction", "cluster": "4", "x": 583.6928100585938, "y": -281.04327392578125, "score": 0 }, { "key": "principal component analysis", "label": "Principal component analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Principal%20component%20analysis", "cluster": "4", "x": 407.6689147949219, "y": -194.89930725097656, "score": 0 }, { "key": "curse of dimensionality", "label": "Curse of dimensionality", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Curse%20of%20dimensionality", "cluster": "4", "x": 443.0003662109375, "y": -354.7385559082031, "score": 0 }, { "key": "parallel coordinates", "label": "Parallel coordinates", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Parallel%20coordinates", "cluster": "4", "x": 395.06768798828125, "y": -103.57239532470703, "score": 0 }, { "key": "structured data analysis (statistics)", "label": "Structured data analysis (statistics)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Structured%20data%20analysis%20%28statistics%29", "cluster": "6", "x": 289.2072448730469, "y": 137.8653564453125, "score": 0 }, { "key": "phylogenetics", "label": "Phylogenetics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Phylogenetics", "cluster": "15", "x": 704.1220092773438, "y": -758.5117797851562, "score": 0.016653369235882464 }, { "key": "phylogenetic nomenclature", "label": "Phylogenetic nomenclature", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Phylogenetic%20nomenclature", "cluster": "15", "x": 760.02783203125, "y": -856.0792846679688, "score": 0 }, { "key": "megadiverse countries", "label": "Megadiverse countries", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Megadiverse%20countries", "cluster": "6", "x": 951.4722290039062, "y": 105.14795684814453, "score": 0 }, { "key": "allometry", "label": "Allometry", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Allometry", "cluster": "15", "x": 774.301513671875, "y": -581.3988647460938, "score": 0 }, { "key": "disk-covering method", "label": "Disk-covering method", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Disk-covering%20method", "cluster": "15", "x": 683.8517456054688, "y": -621.7410278320312, "score": 0 }, { "key": "generalized linear model", "label": "Generalized linear model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Generalized%20linear%20model", "cluster": "6", "x": 860.841064453125, "y": 141.349365234375, "score": 0 }, { "key": "joe felsenstein", "label": "Joe Felsenstein", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/Joe%20Felsenstein", "cluster": "15", "x": 727.32275390625, "y": -708.2125244140625, "score": 0 }, { "key": "maximum parsimony", "label": "Maximum parsimony", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Maximum%20parsimony", "cluster": "15", "x": 736.79248046875, "y": -713.0599975585938, "score": 0 }, { "key": "statistics", "label": "Statistics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Statistics", "cluster": "7", "x": 180.92086791992188, "y": 324.9852600097656, "score": 0.00013806658136950563 }, { "key": "evolutionary taxonomy", "label": "Evolutionary taxonomy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Evolutionary%20taxonomy", "cluster": "15", "x": 737.4171752929688, "y": -799.55517578125, "score": 0 }, { "key": "scientific method", "label": "Scientific method", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Scientific%20method", "cluster": "7", "x": -54.00397491455078, "y": -233.5497589111328, "score": 0 }, { "key": "microbial ecology", "label": "Microbial ecology", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Microbial%20ecology", "cluster": "15", "x": 801.3639526367188, "y": -896.9773559570312, "score": 0 }, { "key": "the ancestor's tale", "label": "The Ancestor's Tale", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/The%20Ancestor%27s%20Tale", "cluster": "15", "x": 617.1939697265625, "y": -989.9387817382812, "score": 0.0000018476060903815305 }, { "key": "biological applications of bifurcation theory", "label": "Biological applications of bifurcation theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Biological%20applications%20of%20bifurcation%20theory", "cluster": "15", "x": 902.84375, "y": -398.8270568847656, "score": 0.000057141092192283125 }, { "key": "biostatistics", "label": "Biostatistics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Biostatistics", "cluster": "15", "x": 781.0975952148438, "y": -421.0331726074219, "score": 0.00020736809484551099 }, { "key": "entropy and life", "label": "Entropy and life", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Entropy%20and%20life", "cluster": "23", "x": 723.7268676757812, "y": -157.11529541015625, "score": 0.00020395434572990155 }, { "key": "ewens's sampling formula", "label": "Ewens's sampling formula", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Ewens%27s%20sampling%20formula", "cluster": "15", "x": 848.542236328125, "y": -548.9024658203125, "score": 2.2904207732002446e-7 }, { "key": "logistic function", "label": "Logistic function", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Logistic%20function", "cluster": "16", "x": 662.0360717773438, "y": -195.98373413085938, "score": 0.0032015134897607116 }, { "key": "mathematical modelling of infectious disease", "label": "Mathematical modelling of infectious disease", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Mathematical%20modelling%20of%20infectious%20disease", "cluster": "15", "x": 793.9319458007812, "y": -161.28985595703125, "score": 0.0000343748772520122 }, { "key": "metabolic network modelling", "label": "Metabolic network modelling", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Metabolic%20network%20modelling", "cluster": "15", "x": 977.7194213867188, "y": -752.108154296875, "score": 0.000730385783048051 }, { "key": "molecular modelling", "label": "Molecular modelling", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Molecular%20modelling", "cluster": "15", "x": 700.1041259765625, "y": -253.11936950683594, "score": 0.0021128145766025988 }, { "key": "morphometrics", "label": "Morphometrics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Morphometrics", "cluster": "15", "x": 796.4400024414062, "y": -548.1397094726562, "score": 0.0004711785177832894 }, { "key": "population genetics", "label": "Population genetics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Population%20genetics", "cluster": "15", "x": 754.2099609375, "y": -543.8721313476562, "score": 0 }, { "key": "theoretical ecology", "label": "Theoretical ecology", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Theoretical%20ecology", "cluster": "23", "x": 861.5679931640625, "y": -123.92837524414062, "score": 0.000539545454778364 }, { "key": "turing pattern", "label": "Turing pattern", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Turing%20pattern", "cluster": "15", "x": 907.0065307617188, "y": -460.0262145996094, "score": 0.000040883732243908115 }, { "key": "biodiversity informatics", "label": "Biodiversity informatics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Biodiversity%20informatics", "cluster": "15", "x": 740.265380859375, "y": -692.8155517578125, "score": 0 }, { "key": "bioinformatics companies", "label": "Bioinformatics companies", "tag": "List", "URL": "https://en.wikipedia.org/wiki/Bioinformatics%20companies", "cluster": "15", "x": 749.4697265625, "y": -695.6878662109375, "score": 0 }, { "key": "computational biology", "label": "Computational biology", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Computational%20biology", "cluster": "15", "x": 852.2936401367188, "y": -571.698486328125, "score": 0.0009091592066108445 }, { "key": "computational biomodeling", "label": "Computational biomodeling", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Computational%20biomodeling", "cluster": "15", "x": 933.4630737304688, "y": -766.150634765625, "score": 0.0005462271807287052 }, { "key": "computational genomics", "label": "Computational genomics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Computational%20genomics", "cluster": "15", "x": 789.8463745117188, "y": -686.1704711914062, "score": 0.001318911368599122 }, { "key": "functional genomics", "label": "Functional genomics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Functional%20genomics", "cluster": "15", "x": 843.95166015625, "y": -703.1119384765625, "score": 0.0011083475462321667 }, { "key": "health informatics", "label": "Health informatics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Health%20informatics", "cluster": "22", "x": -111.04933166503906, "y": -745.8187255859375, "score": 0.0051008769742019976 }, { "key": "international society for computational biology", "label": "International Society for Computational Biology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/International%20Society%20for%20Computational%20Biology", "cluster": "15", "x": 789.572509765625, "y": -649.5950927734375, "score": 0 }, { "key": "jumping library", "label": "Jumping library", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Jumping%20library", "cluster": "15", "x": 717.154052734375, "y": -677.08056640625, "score": 1.4724133542001573e-7 }, { "key": "metabolomics", "label": "Metabolomics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Metabolomics", "cluster": "15", "x": 873.7582397460938, "y": -773.04638671875, "score": 0.0003605087803607738 }, { "key": "nucleic acid sequence", "label": "Nucleic acid sequence", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Nucleic%20acid%20sequence", "cluster": "15", "x": 704.2080078125, "y": -685.6676635742188, "score": 0 }, { "key": "proteomics", "label": "Proteomics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Proteomics", "cluster": "15", "x": 898.0567626953125, "y": -734.421875, "score": 0.0004356182448465077 }, { "key": "gene disease database", "label": "Gene Disease Database", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Gene%20Disease%20Database", "cluster": "15", "x": 740.2750244140625, "y": -668.4918212890625, "score": 0.0002785068406924954 }, { "key": "microbial phylogenetics", "label": "Microbial phylogenetics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Microbial%20phylogenetics", "cluster": "15", "x": 683.5718994140625, "y": -714.9083862304688, "score": 0 }, { "key": "systems biology", "label": "Systems biology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Systems%20biology", "cluster": "15", "x": 940.996337890625, "y": -630.31689453125, "score": 0 }, { "key": "glycomics", "label": "glycomics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/glycomics", "cluster": "15", "x": 944.8905639648438, "y": -792.42041015625, "score": 0 }, { "key": "european bioinformatics institute", "label": "European Bioinformatics Institute", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/European%20Bioinformatics%20Institute", "cluster": "15", "x": 854.264404296875, "y": -734.8873291015625, "score": 0 }, { "key": "pathology", "label": "Pathology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Pathology", "cluster": "6", "x": 639.252685546875, "y": -312.18572998046875, "score": 0 }, { "key": "structural bioinformatics", "label": "Structural bioinformatics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Structural%20bioinformatics", "cluster": "15", "x": 764.255859375, "y": -473.5837097167969, "score": 0 }, { "key": "genomics", "label": "Genomics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Genomics", "cluster": "15", "x": 912.3447875976562, "y": -780.4529418945312, "score": 0.0005722111044398456 }, { "key": "epigenomics", "label": "Epigenomics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Epigenomics", "cluster": "15", "x": 925.14453125, "y": -813.447509765625, "score": 0 }, { "key": "microarray", "label": "Microarray", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Microarray", "cluster": "15", "x": 835.5786743164062, "y": -735.1314086914062, "score": 0 }, { "key": "blast", "label": "BLAST", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/BLAST", "cluster": "7", "x": 606.4055786132812, "y": -359.1663513183594, "score": 0.000022101403683214075 }, { "key": "biosimulation", "label": "Biosimulation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Biosimulation", "cluster": "15", "x": 974.9490966796875, "y": -728.095703125, "score": 0 }, { "key": "mathematical biology", "label": "Mathematical biology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Mathematical%20biology", "cluster": "15", "x": 925.4811401367188, "y": -459.7235107421875, "score": 0 }, { "key": "monte carlo method", "label": "Monte Carlo method", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Monte%20Carlo%20method", "cluster": "6", "x": 757.4790649414062, "y": -210.3600616455078, "score": 0 }, { "key": "structural genomics", "label": "Structural genomics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Structural%20genomics", "cluster": "15", "x": 889.501953125, "y": -662.9107666015625, "score": 0 }, { "key": "butterfly effect", "label": "Butterfly effect", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Butterfly%20effect", "cluster": "23", "x": 827.8235473632812, "y": -111.43374633789062, "score": 0 }, { "key": "theoretical biology", "label": "Theoretical biology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Theoretical%20biology", "cluster": "15", "x": 933.205322265625, "y": -271.78375244140625, "score": 0 }, { "key": "continuity of care record", "label": "Continuity of care record", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Continuity%20of%20care%20record", "cluster": "22", "x": -336.0017395019531, "y": -723.6437377929688, "score": 0 }, { "key": "health information management", "label": "Health information management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Health%20information%20management", "cluster": "22", "x": -189.3554229736328, "y": -816.4843139648438, "score": 0 }, { "key": "hrhis", "label": "HRHIS", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/HRHIS", "cluster": "22", "x": -200.73338317871094, "y": -818.5892944335938, "score": 0 }, { "key": "international classification of diseases", "label": "International Classification of Diseases", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/International%20Classification%20of%20Diseases", "cluster": "22", "x": -292.80517578125, "y": -704.674072265625, "score": 0 }, { "key": "nosology", "label": "Nosology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Nosology", "cluster": "22", "x": -197.40353393554688, "y": -807.5816650390625, "score": 0 }, { "key": "hl7", "label": "HL7", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/HL7", "cluster": "22", "x": -239.537353515625, "y": -816.885498046875, "score": 0 }, { "key": "openehr", "label": "openEHR", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/openEHR", "cluster": "22", "x": -341.097900390625, "y": -732.2918090820312, "score": 0 }, { "key": "snomed", "label": "SNOMED", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/SNOMED", "cluster": "22", "x": -244.77008056640625, "y": -824.7925415039062, "score": 0 }, { "key": "biological data visualization", "label": "Biological data visualization", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Biological%20data%20visualization", "cluster": "15", "x": 1008.4359741210938, "y": -814.4299926757812, "score": 0 }, { "key": "gillespie algorithm", "label": "Gillespie algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Gillespie%20algorithm", "cluster": "15", "x": 1018.277587890625, "y": -815.54638671875, "score": 0 }, { "key": "stochastic simulation", "label": "Stochastic simulation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Stochastic%20simulation", "cluster": "15", "x": 1013.4443969726562, "y": -804.0144653320312, "score": 0 }, { "key": "cheminformatics", "label": "Cheminformatics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cheminformatics", "cluster": "15", "x": 124.05215454101562, "y": -110.8077163696289, "score": 0 }, { "key": "comparison of nucleic acid simulation software", "label": "Comparison of nucleic acid simulation software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20nucleic%20acid%20simulation%20software", "cluster": "15", "x": 876.71337890625, "y": -381.1754455566406, "score": 0 }, { "key": "molecular design software", "label": "Molecular design software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Molecular%20design%20software", "cluster": "15", "x": 883.5234985351562, "y": -374.2041320800781, "score": 0 }, { "key": "molecular graphics", "label": "Molecular graphics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Molecular%20graphics", "cluster": "15", "x": 394.64349365234375, "y": 155.79066467285156, "score": 0 }, { "key": "simulated reality", "label": "Simulated reality", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Simulated%20reality", "cluster": "18", "x": 550.474365234375, "y": -36.053497314453125, "score": 0.0030385257290850625 }, { "key": "computational systems biology", "label": "Computational systems biology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Computational%20systems%20biology", "cluster": "15", "x": 1030.4630126953125, "y": -800.9876098632812, "score": 0.00001003967772252774 }, { "key": "computer simulation", "label": "Computer simulation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Computer%20simulation", "cluster": "15", "x": 1034.4058837890625, "y": -780.207275390625, "score": 0 }, { "key": "metabolic network", "label": "Metabolic network", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Metabolic%20network", "cluster": "15", "x": 1019.65478515625, "y": -757.5348510742188, "score": 0 }, { "key": "metabolic pathway", "label": "Metabolic pathway", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Metabolic%20pathway", "cluster": "15", "x": 1020.8961181640625, "y": -747.5509643554688, "score": 0 }, { "key": "metagenomics", "label": "Metagenomics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Metagenomics", "cluster": "15", "x": 936.999755859375, "y": -847.5296630859375, "score": 0.00004466037802001893 }, { "key": "mathematical and theoretical biology", "label": "Mathematical and theoretical biology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Mathematical%20and%20theoretical%20biology", "cluster": "15", "x": 891.2202758789062, "y": -448.5843811035156, "score": 0 }, { "key": "disease surveillance", "label": "Disease surveillance", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Disease%20surveillance", "cluster": "15", "x": 561.2984008789062, "y": 50.879512786865234, "score": 0 }, { "key": "epidemiology", "label": "Epidemiology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Epidemiology", "cluster": "15", "x": 481.33270263671875, "y": 55.995330810546875, "score": 0 }, { "key": "logistic regression", "label": "Logistic regression", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Logistic%20regression", "cluster": "16", "x": 575.3246459960938, "y": -72.04829406738281, "score": 0.0024061019688811575 }, { "key": "abiogenesis", "label": "Abiogenesis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Abiogenesis", "cluster": "23", "x": 537.3475341796875, "y": -578.6400146484375, "score": 0 }, { "key": "complex systems", "label": "Complex systems", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Complex%20systems", "cluster": "23", "x": 671.925537109375, "y": -60.39138412475586, "score": 0 }, { "key": "dissipative system", "label": "Dissipative system", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dissipative%20system", "cluster": "23", "x": 702.6688232421875, "y": -12.276329040527344, "score": 0 }, { "key": "ecology", "label": "ecology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/ecology", "cluster": "23", "x": 552.3323364257812, "y": 298.3916015625, "score": 0 }, { "key": "dynamical system", "label": "dynamical system", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/dynamical%20system", "cluster": "23", "x": 696.9672241210938, "y": -5.091707706451416, "score": 0 }, { "key": "self-organization", "label": "Self-organization", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Self-organization", "cluster": "23", "x": 618.3063354492188, "y": -17.26692771911621, "score": 0 }, { "key": "origin of speech", "label": "Origin of speech", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Origin%20of%20speech", "cluster": "19", "x": 270.757568359375, "y": -917.5457153320312, "score": 0 }, { "key": "japhetic theory", "label": "Japhetic theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Japhetic%20theory", "cluster": "12", "x": 477.8534851074219, "y": -661.9022216796875, "score": 0 }, { "key": "universal language", "label": "Universal language", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Universal%20language", "cluster": "19", "x": 315.9971008300781, "y": -1077.70263671875, "score": 0 }, { "key": "linguistic imperialism", "label": "Linguistic imperialism", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Linguistic%20imperialism", "cluster": "19", "x": 542.6414184570312, "y": -1269.9814453125, "score": 0 }, { "key": "minority language", "label": "Minority language", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Minority%20language", "cluster": "19", "x": 566.3609619140625, "y": -1280.9312744140625, "score": 0 }, { "key": "international auxiliary language", "label": "International auxiliary language", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/International%20auxiliary%20language", "cluster": "19", "x": 540.827392578125, "y": -1279.53759765625, "score": 0 }, { "key": "lists of endangered languages", "label": "Lists of endangered languages", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Lists%20of%20endangered%20languages", "cluster": "19", "x": 622.9773559570312, "y": -1245.3829345703125, "score": 0 }, { "key": "lists of extinct languages", "label": "Lists of extinct languages", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Lists%20of%20extinct%20languages", "cluster": "19", "x": 613.1612548828125, "y": -1292.3101806640625, "score": 0 }, { "key": "language policy", "label": "Language policy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Language%20policy", "cluster": "19", "x": 626.2431640625, "y": -1288.9267578125, "score": 0 }, { "key": "language revitalization", "label": "Language revitalization", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Language%20revitalization", "cluster": "19", "x": 619.8220825195312, "y": -1300.0145263671875, "score": 0 }, { "key": "the linguists", "label": "The Linguists", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/The%20Linguists", "cluster": "19", "x": 605.2398071289062, "y": -1300.2275390625, "score": 0 }, { "key": "globalization", "label": "Globalization", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Globalization", "cluster": "12", "x": 602.1511840820312, "y": -769.8546142578125, "score": 0 }, { "key": "resolution (logic)", "label": "Resolution (logic)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Resolution%20%28logic%29", "cluster": "14", "x": -337.93231201171875, "y": -758.0574951171875, "score": 0.0000764409784275412 }, { "key": "argument mining", "label": "Argument mining", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Argument%20mining", "cluster": "14", "x": -145.35183715820312, "y": -398.347900390625, "score": 0.00018729599327955157 }, { "key": "parse tree", "label": "Parse tree", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Parse%20tree", "cluster": "5", "x": -486.0906982421875, "y": -71.14140319824219, "score": 0.0009042922022266227 }, { "key": "logical argument", "label": "Logical argument", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Logical%20argument", "cluster": "14", "x": -95.88973236083984, "y": -592.0445556640625, "score": 0.0002231234156484104 }, { "key": "toulmin model of argument", "label": "Toulmin model of argument", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Toulmin%20model%20of%20argument", "cluster": "14", "x": -53.1623649597168, "y": -545.2316284179688, "score": 0.0000011528451225107897 }, { "key": "argumentation theory", "label": "Argumentation theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Argumentation%20theory", "cluster": "14", "x": -22.51511001586914, "y": -500.5155944824219, "score": 0.003750943547871681 }, { "key": "defeater", "label": "Defeater", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Defeater", "cluster": "14", "x": -180.4046173095703, "y": -562.790771484375, "score": 0 }, { "key": "diagrammatic reasoning", "label": "Diagrammatic reasoning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Diagrammatic%20reasoning", "cluster": "14", "x": -236.0788116455078, "y": -448.9923095703125, "score": 0.0014198418419558772 }, { "key": "dialogical logic", "label": "Dialogical logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dialogical%20logic", "cluster": "14", "x": -139.41812133789062, "y": -580.8900756835938, "score": 0 }, { "key": "paraconsistent logic", "label": "Paraconsistent logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Paraconsistent%20logic", "cluster": "14", "x": -277.3832702636719, "y": -756.1531372070312, "score": 0.000021199319877194694 }, { "key": "abductive reasoning", "label": "Abductive reasoning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Abductive%20reasoning", "cluster": "14", "x": -68.20063781738281, "y": -408.2941589355469, "score": 0 }, { "key": "bayes' theorem", "label": "Bayes' theorem", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bayes%27%20theorem", "cluster": "14", "x": 60.028526306152344, "y": -488.1028747558594, "score": 0 }, { "key": "belief bias", "label": "Belief bias", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Belief%20bias", "cluster": "14", "x": -127.09866333007812, "y": -650.9790649414062, "score": 0 }, { "key": "boolean logic", "label": "Boolean logic", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Boolean%20logic", "cluster": "3", "x": -427.1640930175781, "y": -989.2059326171875, "score": 0.001988519727801631 }, { "key": "critical thinking", "label": "Critical thinking", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Critical%20thinking", "cluster": "14", "x": 0.45263978838920593, "y": -421.96478271484375, "score": 0.008307317964460853 }, { "key": "dialectic", "label": "Dialectic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dialectic", "cluster": "14", "x": -49.390357971191406, "y": -568.673828125, "score": 0 }, { "key": "evidence", "label": "Evidence", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Evidence", "cluster": "14", "x": -115.53167724609375, "y": -653.8389282226562, "score": 0 }, { "key": "evidence-based policy", "label": "Evidence-based policy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Evidence-based%20policy", "cluster": "14", "x": -107.79261779785156, "y": -645.9684448242188, "score": 0 }, { "key": "inquiry", "label": "Inquiry", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Inquiry", "cluster": "3", "x": -131.12313842773438, "y": -489.36376953125, "score": 0.0006522670314822457 }, { "key": "logical reasoning", "label": "Logical reasoning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Logical%20reasoning", "cluster": "14", "x": -73.11178588867188, "y": -556.2900390625, "score": 0.00156894601897123 }, { "key": "soundness theorem", "label": "Soundness theorem", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Soundness%20theorem", "cluster": "14", "x": -127.84171295166016, "y": -640.7935791015625, "score": 0 }, { "key": "syllogism", "label": "Syllogism", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Syllogism", "cluster": "14", "x": -116.98643493652344, "y": -640.3785400390625, "score": 0 }, { "key": "computational linguistics", "label": "Computational linguistics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Computational%20linguistics", "cluster": "11", "x": -674.1693725585938, "y": -190.04258728027344, "score": 0.0027392779638337477 }, { "key": "parsing", "label": "Parsing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Parsing", "cluster": "5", "x": -374.325439453125, "y": -46.34864807128906, "score": 0 }, { "key": "dynamic syntax tree", "label": "Dynamic syntax tree", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dynamic%20syntax%20tree", "cluster": "5", "x": -510.5407409667969, "y": -44.71272659301758, "score": 0 }, { "key": "mathematical logic", "label": "Mathematical logic", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Mathematical%20logic", "cluster": "14", "x": -366.3573303222656, "y": -709.2393188476562, "score": 0.005820410893708605 }, { "key": "sequent calculus", "label": "Sequent calculus", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Sequent%20calculus", "cluster": "14", "x": -319.8312072753906, "y": -729.2869262695312, "score": 0.000005038925701040538 }, { "key": "gerhard gentzen", "label": "Gerhard Gentzen", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Gerhard%20Gentzen", "cluster": "3", "x": -378.999267578125, "y": -865.9609375, "score": 0.000029926337441666092 }, { "key": "system l", "label": "System L", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/System%20L", "cluster": "14", "x": -309.0660095214844, "y": -692.2109375, "score": 0 }, { "key": "thesis, antithesis, synthesis", "label": "Thesis, antithesis, synthesis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Thesis%2C%20antithesis%2C%20synthesis", "cluster": "13", "x": 49.24876022338867, "y": -494.8551025390625, "score": 0 }, { "key": "argument", "label": "Argument", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Argument", "cluster": "14", "x": -117.21973419189453, "y": -592.73974609375, "score": 0.008127251757787106 }, { "key": "public sphere", "label": "Public sphere", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Public%20sphere", "cluster": "14", "x": -135.2249755859375, "y": -282.1449890136719, "score": 0 }, { "key": "rationality", "label": "Rationality", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Rationality", "cluster": "14", "x": 0.8895027041435242, "y": -609.8260498046875, "score": 0 }, { "key": "rogerian argument", "label": "Rogerian argument", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Rogerian%20argument", "cluster": "14", "x": 160.4908905029297, "y": -361.36029052734375, "score": 0.0023438427254708367 }, { "key": "social engineering (political science)", "label": "Social engineering (political science)", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Social%20engineering%20%28political%20science%29", "cluster": "14", "x": 20.07168960571289, "y": -588.5023803710938, "score": 0 }, { "key": "social psychology", "label": "Social psychology", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Social%20psychology", "cluster": "12", "x": 265.4263916015625, "y": -362.3341979980469, "score": 0 }, { "key": "source criticism", "label": "Source criticism", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Source%20criticism", "cluster": "14", "x": 61.457820892333984, "y": -365.16473388671875, "score": 0.00010735160433756001 }, { "key": "straight and crooked thinking", "label": "Straight and Crooked Thinking", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Straight%20and%20Crooked%20Thinking", "cluster": "14", "x": -3.4582531452178955, "y": -570.5200805664062, "score": 0 }, { "key": "inductive logic programming", "label": "Inductive logic programming", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Inductive%20logic%20programming", "cluster": "14", "x": -302.5952453613281, "y": -544.181884765625, "score": 0 }, { "key": "method of analytic tableaux", "label": "Method of analytic tableaux", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Method%20of%20analytic%20tableaux", "cluster": "14", "x": -381.75341796875, "y": -884.3775634765625, "score": 0.00013428464266182299 }, { "key": "informal logic", "label": "Informal logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Informal%20logic", "cluster": "14", "x": -241.07286071777344, "y": -688.646728515625, "score": 0 }, { "key": "logic", "label": "Logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Logic", "cluster": "14", "x": -166.49928283691406, "y": -706.8087768554688, "score": 0.0010656096038574449 }, { "key": "mereology", "label": "Mereology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Mereology", "cluster": "14", "x": -583.0104370117188, "y": -542.95703125, "score": 0 }, { "key": "propositional calculus", "label": "Propositional calculus", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Propositional%20calculus", "cluster": "3", "x": -463.2345886230469, "y": -1010.595703125, "score": 0.012869458379337066 }, { "key": "well-formed formula", "label": "Well-formed formula", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Well-formed%20formula", "cluster": "14", "x": -382.1535339355469, "y": -493.10302734375, "score": 0 }, { "key": "fallacy", "label": "Fallacy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Fallacy", "cluster": "14", "x": -5.104236602783203, "y": -534.6674194335938, "score": 0.000008406381542620749 }, { "key": "bertrand russell", "label": "Bertrand Russell", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bertrand%20Russell", "cluster": "3", "x": -447.95806884765625, "y": -1041.29736328125, "score": 0 }, { "key": "collaborative software", "label": "Collaborative software", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Collaborative%20software", "cluster": "20", "x": -235.62278747558594, "y": 85.8759765625, "score": 0.011710637802212166 }, { "key": "computational sociology", "label": "Computational sociology", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Computational%20sociology", "cluster": "18", "x": 432.0911865234375, "y": 54.72831344604492, "score": 0.005600102821528992 }, { "key": "creative problem solving", "label": "Creative problem solving", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Creative%20problem%20solving", "cluster": "20", "x": 211.01083374023438, "y": -49.97298812866211, "score": 0.002584804904219392 }, { "key": "deliberation", "label": "Deliberation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Deliberation", "cluster": "14", "x": -6.341649532318115, "y": -136.2949981689453, "score": 0.0011582050520460828 }, { "key": "dialogue", "label": "Dialogue", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Dialogue", "cluster": "14", "x": 130.06240844726562, "y": -359.70440673828125, "score": 0.002866542896189877 }, { "key": "knowledge base", "label": "Knowledge base", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Knowledge%20base", "cluster": "21", "x": -504.7402648925781, "y": -129.24459838867188, "score": 0.009740123806042634 }, { "key": "socratic questioning", "label": "Socratic questioning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Socratic%20questioning", "cluster": "14", "x": -13.577463150024414, "y": -229.32594299316406, "score": 0.0016639766073307924 }, { "key": "why–because analysis", "label": "Why–because analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Why%E2%80%93because%20analysis", "cluster": "14", "x": 231.4344024658203, "y": 345.70611572265625, "score": 0.0016949333112667951 }, { "key": "accident", "label": "Accident", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Accident", "cluster": "14", "x": 386.9727783203125, "y": 622.6305541992188, "score": 0.0002802154347054614 }, { "key": "cause–effect graph", "label": "Cause–effect graph", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Cause%E2%80%93effect%20graph", "cluster": "16", "x": 110.84503173828125, "y": 192.39144897460938, "score": 0.00226704050885837 }, { "key": "fault tree analysis", "label": "Fault tree analysis", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Fault%20tree%20analysis", "cluster": "14", "x": 333.5303039550781, "y": 679.9235229492188, "score": 0.0022962332522536515 }, { "key": "five whys", "label": "Five whys", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Five%20whys", "cluster": "14", "x": 297.92596435546875, "y": 456.2310485839844, "score": 0.001737250729169896 }, { "key": "ishikawa diagram", "label": "Ishikawa diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Ishikawa%20diagram", "cluster": "14", "x": 361.7636413574219, "y": 589.5752563476562, "score": 0.011993322893231618 }, { "key": "issue map", "label": "Issue map", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Issue%20map", "cluster": "14", "x": 84.79060363769531, "y": 70.12776947021484, "score": 0.017185537688074022 }, { "key": "root cause analysis", "label": "Root cause analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Root%20cause%20analysis", "cluster": "14", "x": 311.1863098144531, "y": 534.0302124023438, "score": 0 }, { "key": "intellectual virtue", "label": "Intellectual virtue", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Intellectual%20virtue", "cluster": "14", "x": -101.61311340332031, "y": -385.1226501464844, "score": 0.00006117950383443399 }, { "key": "interrogation", "label": "Interrogation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Interrogation", "cluster": "14", "x": 0.3727656900882721, "y": -269.9084777832031, "score": 0 }, { "key": "lifelog", "label": "Lifelog", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Lifelog", "cluster": "14", "x": -306.21539306640625, "y": -150.31387329101562, "score": 0 }, { "key": "comparison of notetaking software", "label": "Comparison of notetaking software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20notetaking%20software", "cluster": "14", "x": -405.4622497558594, "y": -9.981081008911133, "score": 0.0011070327824860475 }, { "key": "content management", "label": "Content management", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Content%20management", "cluster": "21", "x": -368.0027160644531, "y": 301.4231872558594, "score": 0.0035327649375338404 }, { "key": "database", "label": "Database", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Database", "cluster": "7", "x": -685.114013671875, "y": -285.8712158203125, "score": 0.0002738975152192368 }, { "key": "information repository", "label": "Information repository", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Information%20repository", "cluster": "21", "x": -513.26611328125, "y": 39.43077850341797, "score": 0 }, { "key": "knowledge-based system", "label": "Knowledge-based system", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Knowledge-based%20system", "cluster": "21", "x": -571.2977294921875, "y": -221.47784423828125, "score": 0.0006686851815983485 }, { "key": "microsoft knowledge base", "label": "Microsoft Knowledge Base", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Microsoft%20Knowledge%20Base", "cluster": "21", "x": -563.4867553710938, "y": -154.01278686523438, "score": 0 }, { "key": "diffbot", "label": "Diffbot", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Diffbot", "cluster": "21", "x": -563.9791870117188, "y": -161.53009033203125, "score": 0 }, { "key": "text mining", "label": "Text mining", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Text%20mining", "cluster": "11", "x": -536.8505249023438, "y": 24.87169647216797, "score": 0.0012726752884075205 }, { "key": "horizon scanning", "label": "Horizon scanning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Horizon%20scanning", "cluster": "8", "x": 557.8566284179688, "y": 834.1770629882812, "score": 0.001162987602287685 }, { "key": "collaborative leadership", "label": "Collaborative leadership", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Collaborative%20leadership", "cluster": "20", "x": -101.74002075195312, "y": -140.69728088378906, "score": 0.00010469882032001854 }, { "key": "dialogical self", "label": "Dialogical self", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dialogical%20self", "cluster": "14", "x": 189.9735107421875, "y": -432.2958984375, "score": 0.00004906079239866572 }, { "key": "dialogue among civilizations", "label": "Dialogue Among Civilizations", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dialogue%20Among%20Civilizations", "cluster": "14", "x": 233.14990234375, "y": -645.4938354492188, "score": 0.0003165361508562738 }, { "key": "intercultural dialogue", "label": "Intercultural dialogue", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Intercultural%20dialogue", "cluster": "14", "x": 216.96737670898438, "y": -484.1136474609375, "score": 0 }, { "key": "interfaith dialogue", "label": "Interfaith dialogue", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Interfaith%20dialogue", "cluster": "14", "x": 232.06463623046875, "y": -623.8633422851562, "score": 0.00031676519293359385 }, { "key": "intergroup dialogue", "label": "Intergroup dialogue", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Intergroup%20dialogue", "cluster": "14", "x": 225.93429565429688, "y": -371.3324890136719, "score": 0.00014689164282802878 }, { "key": "speech", "label": "Speech", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Speech", "cluster": "19", "x": 209.96961975097656, "y": -779.60595703125, "score": 0.00034104265884556193 }, { "key": "low-information rationality", "label": "Low-information rationality", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Low-information%20rationality", "cluster": "14", "x": -15.725920677185059, "y": -157.8210906982422, "score": 0 }, { "key": "age of enlightenment", "label": "Age of Enlightenment", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Age%20of%20Enlightenment", "cluster": "14", "x": 27.253028869628906, "y": -464.47528076171875, "score": 0 }, { "key": "cognitive bias mitigation", "label": "Cognitive bias mitigation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cognitive%20bias%20mitigation", "cluster": "14", "x": 24.58072280883789, "y": -544.0581665039062, "score": 0.00023478679666419605 }, { "key": "critic", "label": "Critic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Critic", "cluster": "14", "x": 5.457807540893555, "y": -469.3576965332031, "score": 0.00028578806362755535 }, { "key": "demarcation problem", "label": "Demarcation problem", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Demarcation%20problem", "cluster": "14", "x": -32.29482650756836, "y": -660.6504516601562, "score": 0.00021572280824132386 }, { "key": "disinformation", "label": "Disinformation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Disinformation", "cluster": "14", "x": 26.53870964050293, "y": -562.29443359375, "score": 0.00004029726739032824 }, { "key": "freedom of thought", "label": "Freedom of thought", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Freedom%20of%20thought", "cluster": "14", "x": 133.66036987304688, "y": -460.4498291015625, "score": 0.0001765787034447329 }, { "key": "freethought", "label": "Freethought", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Freethought", "cluster": "14", "x": 92.4478988647461, "y": -509.85723876953125, "score": 0 }, { "key": "indoctrination", "label": "Indoctrination", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Indoctrination", "cluster": "18", "x": -25.606271743774414, "y": -310.0511779785156, "score": 0.00011323895154326144 }, { "key": "philosophy education", "label": "Philosophy education", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Philosophy%20education", "cluster": "14", "x": 92.08395385742188, "y": -241.26129150390625, "score": 0.00007039140889435777 }, { "key": "sapere aude", "label": "Sapere aude", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Sapere%20aude", "cluster": "14", "x": 24.455753326416016, "y": -473.2673645019531, "score": 0 }, { "key": "world philosophy day", "label": "World Philosophy Day", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/World%20Philosophy%20Day", "cluster": "14", "x": 50.73008728027344, "y": -355.0745544433594, "score": 0 }, { "key": "creativity", "label": "Creativity", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Creativity", "cluster": "20", "x": 209.5571746826172, "y": -186.0853271484375, "score": 0.0003577617935645706 }, { "key": "collective problem solving", "label": "Collective problem solving", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Collective%20problem%20solving", "cluster": "20", "x": 130.26785278320312, "y": -6.3630051612854, "score": 0.00022317775040967577 }, { "key": "frugal innovation", "label": "Frugal innovation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Frugal%20innovation", "cluster": "20", "x": 277.55877685546875, "y": -174.20150756835938, "score": 0 }, { "key": "invention", "label": "Invention", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Invention", "cluster": "20", "x": 234.4007568359375, "y": -221.7591552734375, "score": 0.0003854007484207904 }, { "key": "lateral thinking", "label": "Lateral thinking", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Lateral%20thinking", "cluster": "20", "x": 136.78683471679688, "y": -241.49459838867188, "score": 0.0034535887468056534 }, { "key": "problem structuring methods", "label": "Problem structuring methods", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Problem%20structuring%20methods", "cluster": "20", "x": 92.70003509521484, "y": 112.60986328125, "score": 0.0004932015714248971 }, { "key": "journal of artificial societies and social simulation", "label": "Journal of Artificial Societies and Social Simulation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Journal%20of%20Artificial%20Societies%20and%20Social%20Simulation", "cluster": "18", "x": 573.185546875, "y": 27.195194244384766, "score": 0 }, { "key": "artificial society", "label": "Artificial society", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Artificial%20society", "cluster": "18", "x": 576.6781616210938, "y": 61.846805572509766, "score": 0.004145208683963925 }, { "key": "social simulation", "label": "Social simulation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20simulation", "cluster": "18", "x": 538.781982421875, "y": 23.6232967376709, "score": 0.0014083239626850653 }, { "key": "agent-based social simulation", "label": "Agent-based social simulation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Agent-based%20social%20simulation", "cluster": "18", "x": 592.5197143554688, "y": 10.842021942138672, "score": 0.000049145939120862806 }, { "key": "social complexity", "label": "Social complexity", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20complexity", "cluster": "23", "x": 570.97900390625, "y": 137.78146362304688, "score": 0.0009555997736074202 }, { "key": "computational economics", "label": "Computational economics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Computational%20economics", "cluster": "18", "x": 308.4212951660156, "y": 67.62569427490234, "score": 0 }, { "key": "cliodynamics", "label": "Cliodynamics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cliodynamics", "cluster": "18", "x": 525.1804809570312, "y": 47.71537399291992, "score": 0 }, { "key": "predictive analytics", "label": "Predictive analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Predictive%20analytics", "cluster": "7", "x": 226.76535034179688, "y": 261.2556457519531, "score": 0.021920791611170512 }, { "key": "collaboration technologies", "label": "Collaboration technologies", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Collaboration%20technologies", "cluster": "20", "x": -127.46965789794922, "y": -11.511759757995605, "score": 0.0005352123339560613 }, { "key": "telecommuting", "label": "Telecommuting", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Telecommuting", "cluster": "20", "x": -356.6900939941406, "y": 154.3782958984375, "score": 0.0006195222024107791 }, { "key": "computer supported cooperative work", "label": "Computer supported cooperative work", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Computer%20supported%20cooperative%20work", "cluster": "20", "x": -159.83172607421875, "y": 32.132022857666016, "score": 0.0002106661402672048 }, { "key": "integrated collaboration environment", "label": "Integrated collaboration environment", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Integrated%20collaboration%20environment", "cluster": "20", "x": -181.16734313964844, "y": 104.65419006347656, "score": 0 }, { "key": "content management system", "label": "Content management system", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Content%20management%20system", "cluster": "21", "x": -465.2863464355469, "y": 258.9842529296875, "score": 0.0026223964143201658 }, { "key": "customer relationship management", "label": "Customer relationship management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Customer%20relationship%20management", "cluster": "13", "x": -241.19418334960938, "y": 290.16607666015625, "score": 0.0002105726486310893 }, { "key": "document management system", "label": "Document management system", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Document%20management%20system", "cluster": "21", "x": -451.30029296875, "y": 186.3416748046875, "score": 0.0019712154845872155 }, { "key": "enterprise content management", "label": "Enterprise content management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20content%20management", "cluster": "21", "x": -463.0508117675781, "y": 327.02740478515625, "score": 0.0007767067305591066 }, { "key": "intranet", "label": "Intranet", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Intranet", "cluster": "20", "x": -320.2187805175781, "y": 140.029296875, "score": 0.00007928673243228179 }, { "key": "massively distributed collaboration", "label": "Massively distributed collaboration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Massively%20distributed%20collaboration", "cluster": "20", "x": -193.7103729248047, "y": -87.39185333251953, "score": 0.00023973198150906798 }, { "key": "online consultation", "label": "Online consultation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Online%20consultation", "cluster": "20", "x": -287.18548583984375, "y": 132.9029083251953, "score": 0.00007860549760348694 }, { "key": "online deliberation", "label": "Online deliberation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Online%20deliberation", "cluster": "20", "x": -211.2723846435547, "y": -27.282617568969727, "score": 0.00023377617961615007 }, { "key": "collaborative innovation network", "label": "Collaborative innovation network", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Collaborative%20innovation%20network", "cluster": "20", "x": 154.4546356201172, "y": -24.791973114013672, "score": 0.004754265377972539 }, { "key": "commons-based peer production", "label": "Commons-based peer production", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Commons-based%20peer%20production", "cluster": "20", "x": -105.77965545654297, "y": -54.648223876953125, "score": 0.0005665199178899334 }, { "key": "electronic business", "label": "Electronic business", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Electronic%20business", "cluster": "20", "x": -265.8646240234375, "y": 114.04771423339844, "score": 0 }, { "key": "information technology management", "label": "Information technology management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Information%20technology%20management", "cluster": "21", "x": -304.2309265136719, "y": 206.63229370117188, "score": 0.00003242445074346513 }, { "key": "management information systems", "label": "Management information systems", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Management%20information%20systems", "cluster": "7", "x": -382.8332824707031, "y": 399.9629821777344, "score": 0.0033043987691922408 }, { "key": "management", "label": "Management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Management", "cluster": "12", "x": -88.21586608886719, "y": 402.3782958984375, "score": 0.00004860983380811084 }, { "key": "office of the future", "label": "Office of the future", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Office%20of%20the%20future", "cluster": "14", "x": -304.4315490722656, "y": -21.792253494262695, "score": 0.000027209443701847524 }, { "key": "operational transformation", "label": "Operational transformation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Operational%20transformation", "cluster": "20", "x": -256.1534423828125, "y": 120.77513885498047, "score": 0 }, { "key": "organizational memory system", "label": "Organizational Memory System", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Organizational%20Memory%20System", "cluster": "23", "x": -345.477294921875, "y": 10.097655296325684, "score": 0.000018599504388588705 }, { "key": "cloud collaboration", "label": "Cloud collaboration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cloud%20collaboration", "cluster": "20", "x": -293.8195495605469, "y": 113.9211196899414, "score": 0 }, { "key": "document collaboration", "label": "Document collaboration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Document%20collaboration", "cluster": "20", "x": -299.2990417480469, "y": 107.21072387695312, "score": 0 }, { "key": "mediawiki", "label": "MediaWiki", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/MediaWiki", "cluster": "20", "x": -597.6998291015625, "y": -128.4211883544922, "score": 0.00004452581709679876 }, { "key": "wikipedia", "label": "Wikipedia", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Wikipedia", "cluster": "1", "x": -21.802650451660156, "y": -253.0443878173828, "score": 0.0013202483713412802 }, { "key": "bayesian epistemology", "label": "Bayesian epistemology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bayesian%20epistemology", "cluster": "18", "x": 327.71612548828125, "y": -241.4223175048828, "score": 0.00009429393871468213 }, { "key": "bayesian programming", "label": "Bayesian programming", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bayesian%20programming", "cluster": "18", "x": 381.6052551269531, "y": -57.0751838684082, "score": 0.0006078684433642984 }, { "key": "causal inference", "label": "Causal inference", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Causal%20inference", "cluster": "6", "x": 425.824951171875, "y": 109.59223175048828, "score": 0.0015482297944126985 }, { "key": "chow–liu tree", "label": "Chow–Liu tree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Chow%E2%80%93Liu%20tree", "cluster": "18", "x": 100.2029037475586, "y": -158.07421875, "score": 0.002301782951179216 }, { "key": "computational intelligence", "label": "Computational intelligence", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Computational%20intelligence", "cluster": "18", "x": 135.79075622558594, "y": 69.8171157836914, "score": 0.003653285580027964 }, { "key": "deep belief network", "label": "Deep belief network", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Deep%20belief%20network", "cluster": "18", "x": 257.7744445800781, "y": -65.85388946533203, "score": 0.00003089340994801338 }, { "key": "dempster–shafer theory", "label": "Dempster–Shafer theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Dempster%E2%80%93Shafer%20theory", "cluster": "18", "x": 327.7948303222656, "y": -180.631103515625, "score": 0.00015492915019414322 }, { "key": "expectation–maximization algorithm", "label": "Expectation–maximization algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Expectation%E2%80%93maximization%20algorithm", "cluster": "6", "x": 771.6318969726562, "y": 399.8673400878906, "score": 0.006575131524531589 }, { "key": "factor graph", "label": "Factor graph", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Factor%20graph", "cluster": "18", "x": 343.65283203125, "y": -146.9622802734375, "score": 0.002807190008471968 }, { "key": "kalman filter", "label": "Kalman filter", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Kalman%20filter", "cluster": "18", "x": 221.3415985107422, "y": 167.55430603027344, "score": 0.0003548627996970502 }, { "key": "memory-prediction framework", "label": "Memory-prediction framework", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Memory-prediction%20framework", "cluster": "18", "x": 181.96286010742188, "y": -201.2032470703125, "score": 0.0001481001718898081 }, { "key": "mixture distribution", "label": "Mixture distribution", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Mixture%20distribution", "cluster": "6", "x": 751.3353271484375, "y": 399.6007080078125, "score": 0.00047065922096902 }, { "key": "mixture model", "label": "Mixture model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Mixture%20model", "cluster": "6", "x": 656.6648559570312, "y": 301.4402160644531, "score": 0.00016459100823727356 }, { "key": "naive bayes classifier", "label": "Naive Bayes classifier", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Naive%20Bayes%20classifier", "cluster": "18", "x": 465.3830261230469, "y": -53.123348236083984, "score": 0.00047654988522424384 }, { "key": "polytree", "label": "Polytree", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Polytree", "cluster": "18", "x": 407.5200500488281, "y": -382.1473083496094, "score": 0.0001663918666399193 }, { "key": "sensor fusion", "label": "Sensor fusion", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Sensor%20fusion", "cluster": "11", "x": -357.7998046875, "y": 278.97784423828125, "score": 0.007318452920150052 }, { "key": "sequence alignment", "label": "Sequence alignment", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Sequence%20alignment", "cluster": "7", "x": 438.61724853515625, "y": -154.03631591796875, "score": 0.0001489148701176384 }, { "key": "subjective logic", "label": "Subjective logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Subjective%20logic", "cluster": "18", "x": 378.7928771972656, "y": -109.89579010009766, "score": 0 }, { "key": "variable-order bayesian network", "label": "Variable-order Bayesian network", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Variable-order%20Bayesian%20network", "cluster": "18", "x": 591.4418334960938, "y": 513.4057006835938, "score": 0.0009447663715393342 }, { "key": "decisional balance", "label": "Decisional balance", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Decisional%20balance", "cluster": "14", "x": 340.3025207519531, "y": 382.5154113769531, "score": 0.00003520160780282655 }, { "key": "design pattern", "label": "Design pattern", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Design%20pattern", "cluster": "20", "x": 48.692527770996094, "y": 710.21826171875, "score": 0.0002929933329313997 }, { "key": "heuristic", "label": "Heuristic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Heuristic", "cluster": "14", "x": 256.56134033203125, "y": 651.5057373046875, "score": 0.00021343040281216057 }, { "key": "pattern language", "label": "Pattern language", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Pattern%20language", "cluster": "23", "x": 437.9053955078125, "y": 397.3950500488281, "score": 0.0011408411247830644 }, { "key": "pedagogical pattern", "label": "Pedagogical pattern", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Pedagogical%20pattern", "cluster": "14", "x": 293.35308837890625, "y": 487.6390686035156, "score": 0 }, { "key": "rule of thumb", "label": "Rule of thumb", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Rule%20of%20thumb", "cluster": "14", "x": 351.0797119140625, "y": 525.4091186523438, "score": 0.00020407490653175637 }, { "key": "method engineering", "label": "Method engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Method%20engineering", "cluster": "20", "x": -128.46534729003906, "y": 474.6383972167969, "score": 0.0014320775192154362 }, { "key": "algorithm", "label": "Algorithm", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Algorithm", "cluster": "14", "x": -22.79885482788086, "y": 777.622314453125, "score": 0 }, { "key": "failure mode and effects analysis", "label": "Failure mode and effects analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Failure%20mode%20and%20effects%20analysis", "cluster": "14", "x": 355.8829650878906, "y": 758.8260498046875, "score": 0 }, { "key": "heuristics in judgment and decision-making", "label": "Heuristics in judgment and decision-making", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Heuristics%20in%20judgment%20and%20decision-making", "cluster": "7", "x": 207.9443817138672, "y": 585.9384765625, "score": 0 }, { "key": "style guide", "label": "Style guide", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Style%20guide", "cluster": "20", "x": 33.00246810913086, "y": 762.7662353515625, "score": 0 }, { "key": "anti-pattern", "label": "Anti-pattern", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Anti-pattern", "cluster": "8", "x": 16.24884033203125, "y": 988.4890747070312, "score": 0 }, { "key": "immunity to change", "label": "Immunity to change", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Immunity%20to%20change", "cluster": "14", "x": 297.96185302734375, "y": 180.1795196533203, "score": 0 }, { "key": "issue mapping", "label": "Issue mapping", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Issue%20mapping", "cluster": "14", "x": 381.096435546875, "y": 461.2628479003906, "score": 0 }, { "key": "examples of markov chains", "label": "Examples of Markov chains", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Examples%20of%20Markov%20chains", "cluster": "18", "x": 660.1629028320312, "y": 594.8531494140625, "score": 0 }, { "key": "markov process", "label": "Markov process", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Markov%20process", "cluster": "18", "x": 667.8251342773438, "y": 617.4719848632812, "score": 0 }, { "key": "markov chain monte carlo", "label": "Markov chain Monte Carlo", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Markov%20chain%20Monte%20Carlo", "cluster": "18", "x": 651.0984497070312, "y": 592.0747680664062, "score": 0 }, { "key": "semi-markov process", "label": "Semi-Markov process", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Semi-Markov%20process", "cluster": "18", "x": 653.264892578125, "y": 625.0723266601562, "score": 0.00003383361482948821 }, { "key": "causal model", "label": "Causal model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Causal%20model", "cluster": "20", "x": 266.3928527832031, "y": 170.914306640625, "score": 0 }, { "key": "graphical model", "label": "Graphical model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Graphical%20model", "cluster": "6", "x": 499.71539306640625, "y": 247.81369018554688, "score": 0 }, { "key": "multivariate statistics", "label": "Multivariate statistics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Multivariate%20statistics", "cluster": "6", "x": 293.7435607910156, "y": 287.1728820800781, "score": 0.004563378042130552 }, { "key": "partial least squares path modeling", "label": "Partial least squares path modeling", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Partial%20least%20squares%20path%20modeling", "cluster": "6", "x": 422.01824951171875, "y": 179.7864990234375, "score": 0 }, { "key": "partial least squares regression", "label": "Partial least squares regression", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Partial%20least%20squares%20regression", "cluster": "6", "x": 388.4581604003906, "y": 202.79307556152344, "score": 0 }, { "key": "sequence mining", "label": "Sequence mining", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Sequence%20mining", "cluster": "7", "x": 79.73486328125, "y": 201.91078186035156, "score": 0 }, { "key": "adaptive resonance theory", "label": "Adaptive resonance theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Adaptive%20resonance%20theory", "cluster": "18", "x": 319.6479797363281, "y": -106.43157958984375, "score": 0 }, { "key": "data (computing)", "label": "Data (computing)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20%28computing%29", "cluster": "11", "x": -584.1917724609375, "y": 270.1884765625, "score": 0 }, { "key": "data mining", "label": "Data mining", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Data%20mining", "cluster": "7", "x": -68.62580871582031, "y": 211.20904541015625, "score": 0.04188893851294152 }, { "key": "image fusion", "label": "Image fusion", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Image%20fusion", "cluster": "11", "x": -709.7338256835938, "y": 293.21630859375, "score": 0 }, { "key": "bayesian spam filtering", "label": "Bayesian spam filtering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bayesian%20spam%20filtering", "cluster": "18", "x": 480.0356140136719, "y": -68.32733917236328, "score": 0 }, { "key": "deep learning", "label": "Deep learning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Deep%20learning", "cluster": "18", "x": 12.359847068786621, "y": -109.24603271484375, "score": 0 }, { "key": "artificial general intelligence", "label": "Artificial general intelligence", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Artificial%20general%20intelligence", "cluster": "18", "x": -380.2313537597656, "y": -272.23785400390625, "score": 0 }, { "key": "artificial consciousness", "label": "Artificial consciousness", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Artificial%20consciousness", "cluster": "18", "x": 302.99078369140625, "y": -129.1732635498047, "score": 0 }, { "key": "cognitive architecture", "label": "Cognitive architecture", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cognitive%20architecture", "cluster": "11", "x": -200.19349670410156, "y": -267.54254150390625, "score": 0 }, { "key": "belief propagation", "label": "Belief propagation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Belief%20propagation", "cluster": "18", "x": 271.719970703125, "y": -163.1560516357422, "score": 0 }, { "key": "neural networks", "label": "Neural networks", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Neural%20networks", "cluster": "18", "x": -290.5908508300781, "y": -260.1701965332031, "score": 0 }, { "key": "bayesian inference", "label": "Bayesian inference", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bayesian%20inference", "cluster": "18", "x": 379.45880126953125, "y": -171.2779998779297, "score": 0 }, { "key": "hammersley–clifford theorem", "label": "Hammersley–Clifford theorem", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Hammersley%E2%80%93Clifford%20theorem", "cluster": "18", "x": 493.32427978515625, "y": 164.3092041015625, "score": 0 }, { "key": "mixture (probability)", "label": "Mixture (probability)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Mixture%20%28probability%29", "cluster": "6", "x": 763.8941650390625, "y": 376.1531066894531, "score": 0 }, { "key": "hierarchical bayes model", "label": "Hierarchical Bayes model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Hierarchical%20Bayes%20model", "cluster": "6", "x": 752.8665771484375, "y": 377.31170654296875, "score": 0 }, { "key": "compound distribution", "label": "Compound distribution", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Compound%20distribution", "cluster": "6", "x": 812.9390258789062, "y": 425.7609558105469, "score": 0 }, { "key": "expectation-maximization algorithm", "label": "Expectation-maximization algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Expectation-maximization%20algorithm", "cluster": "6", "x": 629.8825073242188, "y": 266.6551208496094, "score": 0 }, { "key": "product distribution", "label": "Product distribution", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Product%20distribution", "cluster": "6", "x": 880.0425415039062, "y": 554.5598754882812, "score": 0 }, { "key": "statistical classification", "label": "Statistical classification", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Statistical%20classification", "cluster": "15", "x": 105.9872817993164, "y": -390.65203857421875, "score": 0 }, { "key": "data assimilation", "label": "Data assimilation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20assimilation", "cluster": "18", "x": -320.54656982421875, "y": 238.465087890625, "score": 0 }, { "key": "sliding mode control", "label": "Sliding mode control", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Sliding%20mode%20control", "cluster": "16", "x": 195.89402770996094, "y": 110.38926696777344, "score": 0 }, { "key": "stochastic differential equation", "label": "Stochastic differential equation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Stochastic%20differential%20equation", "cluster": "18", "x": 422.2933044433594, "y": 517.9449462890625, "score": 0 }, { "key": "density estimation", "label": "density estimation", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/density%20estimation", "cluster": "6", "x": 967.5888061523438, "y": 698.899169921875, "score": 0.01108537823838863 }, { "key": "probabilistic logic", "label": "Probabilistic logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Probabilistic%20logic", "cluster": "18", "x": 387.7467956542969, "y": -142.0709686279297, "score": 0 }, { "key": "bayesian probability", "label": "Bayesian probability", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bayesian%20probability", "cluster": "18", "x": 162.5539093017578, "y": -460.8059387207031, "score": 0 }, { "key": "hidden markov model", "label": "Hidden Markov model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Hidden%20Markov%20model", "cluster": "18", "x": 115.76100158691406, "y": 170.06942749023438, "score": 0 }, { "key": "concept mining", "label": "Concept mining", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Concept%20mining", "cluster": "18", "x": -212.7456512451172, "y": 44.3326530456543, "score": 0 }, { "key": "regression analysis", "label": "Regression analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Regression%20analysis", "cluster": "6", "x": 307.978759765625, "y": 350.6305847167969, "score": 0 }, { "key": "spatial-temporal reasoning", "label": "Spatial-temporal reasoning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Spatial-temporal%20reasoning", "cluster": "14", "x": -457.3359375, "y": -679.1116943359375, "score": 0 }, { "key": "visual reasoning", "label": "Visual reasoning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Visual%20reasoning", "cluster": "14", "x": -109.87518310546875, "y": -87.02415466308594, "score": 0 }, { "key": "hyperbolic geometry", "label": "Hyperbolic geometry", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Hyperbolic%20geometry", "cluster": "4", "x": 1163.6336669921875, "y": -424.310546875, "score": 0.000010077851402081077 }, { "key": "binary tiling", "label": "Binary tiling", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Binary%20tiling", "cluster": "4", "x": 1011.8906860351562, "y": -381.7427673339844, "score": 0.0009246810398204922 }, { "key": "information visualization", "label": "Information visualization", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Information%20visualization", "cluster": "7", "x": 103.71183013916016, "y": 492.7437438964844, "score": 0.0048598107416966425 }, { "key": "intuitionistic logic", "label": "Intuitionistic logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Intuitionistic%20logic", "cluster": "14", "x": -363.3356018066406, "y": -910.2158813476562, "score": 0 }, { "key": "color coding technology for visualization", "label": "Color coding technology for visualization", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Color%20coding%20technology%20for%20visualization", "cluster": "7", "x": -56.48971939086914, "y": 647.91357421875, "score": 0.0006331311982467157 }, { "key": "computational visualistics", "label": "Computational visualistics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Computational%20visualistics", "cluster": "7", "x": 74.58203887939453, "y": 427.7582092285156, "score": 0 }, { "key": "data art", "label": "Data art", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20art", "cluster": "7", "x": 114.05414581298828, "y": 542.006591796875, "score": 0.000524837899655657 }, { "key": "data presentation architecture", "label": "Data Presentation Architecture", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Data%20Presentation%20Architecture", "cluster": "7", "x": -34.98188781738281, "y": 556.4271240234375, "score": 0.010372758198459169 }, { "key": "data visualization", "label": "Data visualization", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Data%20visualization", "cluster": "7", "x": -69.61167907714844, "y": 533.5786743164062, "score": 0.009664900398557389 }, { "key": "infographics", "label": "Infographics", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Infographics", "cluster": "7", "x": 79.82351684570312, "y": 632.0535278320312, "score": 0.0027546993608400256 }, { "key": "software visualization", "label": "Software visualization", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Software%20visualization", "cluster": "7", "x": -10.68284797668457, "y": 604.3425903320312, "score": 0.0001544742999994702 }, { "key": "visual analytics", "label": "Visual analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Visual%20analytics", "cluster": "7", "x": 23.58696174621582, "y": 302.4921875, "score": 0.004410900061502943 }, { "key": "baumslag–solitar group", "label": "Baumslag–Solitar group", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Baumslag%E2%80%93Solitar%20group", "cluster": "4", "x": 1054.100341796875, "y": -381.0033874511719, "score": 0 }, { "key": "binary tree", "label": "Binary tree", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Binary%20tree", "cluster": "4", "x": 1042.4732666015625, "y": -473.8753967285156, "score": 0.00014841884279883735 }, { "key": "einstein problem", "label": "Einstein problem", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Einstein%20problem", "cluster": "4", "x": 1054.0953369140625, "y": -390.4862976074219, "score": 0 }, { "key": "decision-making", "label": "Decision-making", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Decision-making", "cluster": "20", "x": 113.49565124511719, "y": 107.8265380859375, "score": 0.005004384827401128 }, { "key": "interaction design", "label": "Interaction design", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Interaction%20design", "cluster": "7", "x": -66.79898071289062, "y": 449.0784606933594, "score": 0 }, { "key": "social network analysis software", "label": "Social network analysis software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20network%20analysis%20software", "cluster": "23", "x": 325.25054931640625, "y": -298.9791564941406, "score": 0.0017158294204647972 }, { "key": "text analytics", "label": "Text analytics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Text%20analytics", "cluster": "11", "x": -146.9415283203125, "y": 230.23275756835938, "score": 0 }, { "key": "software maintenance", "label": "Software maintenance", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Software%20maintenance", "cluster": "7", "x": -57.98828125, "y": 737.07763671875, "score": 0 }, { "key": "software archaeology", "label": "Software archaeology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Software%20archaeology", "cluster": "7", "x": -66.68563079833984, "y": 742.0770263671875, "score": 0 }, { "key": "a picture is worth a thousand words", "label": "A picture is worth a thousand words", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/A%20picture%20is%20worth%20a%20thousand%20words", "cluster": "7", "x": 119.46255493164062, "y": 677.8859252929688, "score": 0 }, { "key": "charts", "label": "Charts", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Charts", "cluster": "7", "x": 146.03013610839844, "y": 560.601806640625, "score": 0.00033406724056424806 }, { "key": "dashboards (management information systems)", "label": "Dashboards (management information systems)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dashboards%20%28management%20information%20systems%29", "cluster": "7", "x": -73.25431060791016, "y": 660.0479125976562, "score": 0.0003228902084968991 }, { "key": "edugraphic", "label": "Edugraphic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Edugraphic", "cluster": "7", "x": 99.85425567626953, "y": 681.4953002929688, "score": 0 }, { "key": "graphic design", "label": "Graphic design", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Graphic%20design", "cluster": "7", "x": 5.571784973144531, "y": 702.4937133789062, "score": 0.0001022252964758822 }, { "key": "graphic image development", "label": "Graphic image development", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Graphic%20image%20development", "cluster": "7", "x": 110.68470001220703, "y": 720.4443969726562, "score": 0.00007901951667540844 }, { "key": "graphic organizer", "label": "Graphic organizer", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Graphic%20organizer", "cluster": "7", "x": 142.9185028076172, "y": 594.9310302734375, "score": 0.000028975701734191537 }, { "key": "information design", "label": "Information design", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Information%20design", "cluster": "7", "x": 92.91651153564453, "y": 521.9702758789062, "score": 0.000980827684957635 }, { "key": "scientific visualization", "label": "Scientific visualization", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Scientific%20visualization", "cluster": "7", "x": 31.291765213012695, "y": 533.1456909179688, "score": 0.000409916185401734 }, { "key": "statistical graphics", "label": "Statistical graphics", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Statistical%20graphics", "cluster": "7", "x": 31.662752151489258, "y": 603.8508911132812, "score": 0.0036133141801905706 }, { "key": "technical illustration", "label": "Technical illustration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Technical%20illustration", "cluster": "7", "x": 82.7949447631836, "y": 664.0674438476562, "score": 0.000766472965342816 }, { "key": "isotype (picture language)", "label": "Isotype (picture language)", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Isotype%20%28picture%20language%29", "cluster": "7", "x": 55.25484848022461, "y": 621.23779296875, "score": 6.871262319600734e-7 }, { "key": "timeline", "label": "Timeline", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Timeline", "cluster": "7", "x": 111.18877410888672, "y": 684.5283813476562, "score": 0 }, { "key": "visualization (graphic)", "label": "Visualization (graphic)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Visualization%20%28graphic%29", "cluster": "7", "x": 133.8409881591797, "y": 655.77099609375, "score": 0 }, { "key": "news illustrated", "label": "News Illustrated", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/News%20Illustrated", "cluster": "7", "x": 106.509765625, "y": 673.3134765625, "score": 0 }, { "key": "maestro concept", "label": "Maestro Concept", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Maestro%20Concept", "cluster": "7", "x": 176.93894958496094, "y": 826.7308959960938, "score": 0 }, { "key": "family tree", "label": "Family tree", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Family%20tree", "cluster": "7", "x": 115.97740936279297, "y": 667.4318237304688, "score": 0 }, { "key": "analytics", "label": "Analytics", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Analytics", "cluster": "7", "x": -144.46363830566406, "y": 422.9861755371094, "score": 0.015476115764880895 }, { "key": "balanced scorecard", "label": "Balanced scorecard", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Balanced%20scorecard", "cluster": "7", "x": -162.80694580078125, "y": 511.9626770019531, "score": 0 }, { "key": "big data", "label": "Big Data", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Big%20Data", "cluster": "7", "x": -23.16063117980957, "y": 475.2693786621094, "score": 0 }, { "key": "business analysis", "label": "Business analysis", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Business%20analysis", "cluster": "5", "x": -246.4901580810547, "y": 617.086181640625, "score": 0 }, { "key": "business intelligence", "label": "Business intelligence", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Business%20intelligence", "cluster": "7", "x": -262.165771484375, "y": 493.0898742675781, "score": 0.014038858934107262 }, { "key": "climate change art", "label": "Climate change art", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Climate%20change%20art", "cluster": "7", "x": 9.563399314880371, "y": 586.7542724609375, "score": 0 }, { "key": "dashboard (business)", "label": "Dashboard (business)", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Dashboard%20%28business%29", "cluster": "7", "x": -90.87578582763672, "y": 648.6262817382812, "score": 0.0007081793910557428 }, { "key": "data analysis", "label": "Data analysis", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Data%20analysis", "cluster": "7", "x": -51.565513610839844, "y": 447.5834045410156, "score": 0 }, { "key": "data profiling", "label": "Data profiling", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Data%20profiling", "cluster": "7", "x": -43.33156967163086, "y": 601.4072875976562, "score": 0 }, { "key": "data science", "label": "Data science", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Data%20science", "cluster": "7", "x": -101.13431549072266, "y": 576.3497314453125, "score": 0 }, { "key": "data warehouse", "label": "Data warehouse", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Data%20warehouse", "cluster": "7", "x": -439.03729248046875, "y": 87.8280258178711, "score": 0 }, { "key": "infographic", "label": "Infographic", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Infographic", "cluster": "7", "x": -45.65260696411133, "y": 673.7320556640625, "score": 0 }, { "key": "information architecture", "label": "Information architecture", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Information%20architecture", "cluster": "7", "x": -184.94403076171875, "y": 342.2877502441406, "score": 0.008512483254887177 }, { "key": "interaction techniques", "label": "Interaction techniques", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Interaction%20techniques", "cluster": "7", "x": -65.11248779296875, "y": 592.3021850585938, "score": 0 }, { "key": "statistical analysis", "label": "Statistical analysis", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Statistical%20analysis", "cluster": "7", "x": -50.50758361816406, "y": 593.1066284179688, "score": 0 }, { "key": "visual journalism", "label": "Visual journalism", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Visual%20journalism", "cluster": "7", "x": -57.442161560058594, "y": 600.9075927734375, "score": 0 }, { "key": "warming stripes", "label": "Warming stripes", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Warming%20stripes", "cluster": "7", "x": 13.883872032165527, "y": 576.572509765625, "score": 0 }, { "key": "knowledge visualization", "label": "Knowledge visualization", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Knowledge%20visualization", "cluster": "7", "x": 126.55850982666016, "y": 577.099853515625, "score": 0 }, { "key": "false color", "label": "False color", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/False%20color", "cluster": "7", "x": -256.2609558105469, "y": 820.2175903320312, "score": 0.0013890464007619027 }, { "key": "hypertext", "label": "Hypertext", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Hypertext", "cluster": "4", "x": 81.91999053955078, "y": -363.0287170410156, "score": 0 }, { "key": "gist", "label": "GiST", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/GiST", "cluster": "4", "x": 707.6932983398438, "y": -570.134033203125, "score": 0 }, { "key": "aa tree", "label": "AA tree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/AA%20tree", "cluster": "4", "x": 1119.235107421875, "y": -528.4462890625, "score": 0 }, { "key": "avl tree", "label": "AVL tree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/AVL%20tree", "cluster": "4", "x": 1111.732177734375, "y": -508.8968505859375, "score": 0 }, { "key": "recursion (computer science)", "label": "Recursion (computer science)", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Recursion%20%28computer%20science%29", "cluster": "23", "x": 875.9895629882812, "y": -3.2258458137512207, "score": 0 }, { "key": "splay tree", "label": "Splay tree", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Splay%20tree", "cluster": "4", "x": 1121.1444091796875, "y": -512.4366455078125, "score": 0 }, { "key": "radix tree", "label": "Radix tree", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Radix%20tree", "cluster": "4", "x": 21.237791061401367, "y": -969.508544921875, "score": 0 }, { "key": "self-reference", "label": "Self-reference", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Self-reference", "cluster": "19", "x": -206.9017333984375, "y": -518.1452026367188, "score": 0 }, { "key": "strange loop", "label": "Strange loop", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Strange%20loop", "cluster": "19", "x": 183.6454620361328, "y": -735.4981079101562, "score": 0 }, { "key": "k-d tree", "label": "k-d tree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/k-d%20tree", "cluster": "4", "x": 880.1898193359375, "y": -615.317138671875, "score": 0 }, { "key": "octree", "label": "Octree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Octree", "cluster": "4", "x": 854.453857421875, "y": -621.580078125, "score": 0 }, { "key": "quadtree", "label": "Quadtree", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Quadtree", "cluster": "4", "x": 866.4984130859375, "y": -631.5037841796875, "score": 0 }, { "key": "3d model", "label": "3D model", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/3D%20model", "cluster": "4", "x": 863.1124877929688, "y": -641.2591552734375, "score": 0 }, { "key": "guillotine cutting", "label": "Guillotine cutting", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Guillotine%20cutting", "cluster": "4", "x": 853.1141357421875, "y": -637.3753051757812, "score": 0 }, { "key": "fitness approximation", "label": "Fitness approximation", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Fitness%20approximation", "cluster": "6", "x": 703.66064453125, "y": -196.74636840820312, "score": 0 }, { "key": "gene expression programming", "label": "Gene expression programming", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Gene%20expression%20programming", "cluster": "18", "x": 473.7808532714844, "y": -259.0616760253906, "score": 0 }, { "key": "formal grammar", "label": "Formal grammar", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Formal%20grammar", "cluster": "5", "x": -342.8219909667969, "y": -219.8636474609375, "score": 0.00160914380215577 }, { "key": "order theory", "label": "Order theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Order%20theory", "cluster": "4", "x": -66.05796813964844, "y": -713.7879028320312, "score": 0 }, { "key": "hyperbolic 3-manifold", "label": "Hyperbolic 3-manifold", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Hyperbolic%203-manifold", "cluster": "4", "x": 1233.9964599609375, "y": -452.1788330078125, "score": 0 }, { "key": "hyperbolic manifold", "label": "Hyperbolic manifold", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Hyperbolic%20manifold", "cluster": "4", "x": 1227.22021484375, "y": -448.6808166503906, "score": 0 }, { "key": "hjelmslev transformation", "label": "Hjelmslev transformation", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Hjelmslev%20transformation", "cluster": "4", "x": 1202.2847900390625, "y": -430.25299072265625, "score": 0 }, { "key": "kleinian group", "label": "Kleinian group", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Kleinian%20group", "cluster": "4", "x": 1240.9705810546875, "y": -430.9536437988281, "score": 0 }, { "key": "lambert quadrilateral", "label": "Lambert quadrilateral", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Lambert%20quadrilateral", "cluster": "4", "x": 1229.596923828125, "y": -417.14190673828125, "score": 0 }, { "key": "open universe", "label": "Open universe", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Open%20universe", "cluster": "4", "x": 1209.39111328125, "y": -436.46002197265625, "score": 0 }, { "key": "poincaré metric", "label": "Poincaré metric", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Poincar%C3%A9%20metric", "cluster": "4", "x": 1241.623779296875, "y": -438.6902160644531, "score": 0 }, { "key": "saccheri quadrilateral", "label": "Saccheri quadrilateral", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Saccheri%20quadrilateral", "cluster": "4", "x": 1225.7374267578125, "y": -424.07867431640625, "score": 0 }, { "key": "systolic geometry", "label": "Systolic geometry", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Systolic%20geometry", "cluster": "4", "x": 993.8631591796875, "y": -483.465087890625, "score": 0 }, { "key": "δ-hyperbolic space", "label": "δ-hyperbolic space", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/%CE%B4-hyperbolic%20space", "cluster": "4", "x": 1206.4478759765625, "y": -420.8291015625, "score": 0 }, { "key": "band model", "label": "Band model", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Band%20model", "cluster": "4", "x": 1202.483154296875, "y": -444.7414855957031, "score": 0 }, { "key": "boolean domain", "label": "Boolean domain", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Boolean%20domain", "cluster": "3", "x": -443.8832702636719, "y": -1167.0303955078125, "score": 0.0001449813908280115 }, { "key": "boolean-valued function", "label": "Boolean-valued function", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Boolean-valued%20function", "cluster": "3", "x": -441.5832824707031, "y": -1131.588134765625, "score": 0.00190921701993964 }, { "key": "first-order logic", "label": "First-order logic", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/First-order%20logic", "cluster": "3", "x": -579.2627563476562, "y": -840.0526123046875, "score": 0.00434213177436549 }, { "key": "functional completeness", "label": "Functional completeness", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Functional%20completeness", "cluster": "3", "x": -517.1748657226562, "y": -1115.6123046875, "score": 0.00020850802720748032 }, { "key": "karnaugh maps", "label": "Karnaugh maps", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Karnaugh%20maps", "cluster": "3", "x": -280.972412109375, "y": -1201.46337890625, "score": 0.0011990065245854325 }, { "key": "logic gate", "label": "Logic gate", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Logic%20gate", "cluster": "3", "x": -376.89666748046875, "y": -1081.46484375, "score": 0.0017712309784049891 }, { "key": "logical connective", "label": "Logical connective", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Logical%20connective", "cluster": "3", "x": -465.97174072265625, "y": -1133.53466796875, "score": 0.0009744978444760049 }, { "key": "truth function", "label": "Truth function", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Truth%20function", "cluster": "3", "x": -463.0542297363281, "y": -1109.3363037109375, "score": 0.000831881611351343 }, { "key": "principia mathematica", "label": "Principia Mathematica", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Principia%20Mathematica", "cluster": "3", "x": -486.99603271484375, "y": -1085.4124755859375, "score": 0 }, { "key": "bitwise operation", "label": "Bitwise operation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bitwise%20operation", "cluster": "3", "x": -479.75433349609375, "y": -1191.9014892578125, "score": 0 }, { "key": "boolean function", "label": "Boolean function", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Boolean%20function", "cluster": "3", "x": -403.3463439941406, "y": -1101.307861328125, "score": 0.0021448468566241208 }, { "key": "logical constant", "label": "Logical constant", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Logical%20constant", "cluster": "3", "x": -467.4382629394531, "y": -1161.1881103515625, "score": 0.000002258753619595067 }, { "key": "modal operator", "label": "Modal operator", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Modal%20operator", "cluster": "3", "x": -481.1302490234375, "y": -1176.9393310546875, "score": 0 }, { "key": "truth value", "label": "Truth value", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Truth%20value", "cluster": "3", "x": -283.4222412109375, "y": -982.96484375, "score": 0.00005975485085702427 }, { "key": "second-order logic", "label": "Second-order logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Second-order%20logic", "cluster": "3", "x": -553.8993530273438, "y": -975.0463256835938, "score": 0 }, { "key": "higher-order logic", "label": "Higher-order logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Higher-order%20logic", "cluster": "3", "x": -564.7781982421875, "y": -977.9586791992188, "score": 0 }, { "key": "boolean algebra (logic)", "label": "Boolean algebra (logic)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Boolean%20algebra%20%28logic%29", "cluster": "3", "x": -496.0425109863281, "y": -1115.560302734375, "score": 0 }, { "key": "boolean algebra (structure)", "label": "Boolean algebra (structure)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Boolean%20algebra%20%28structure%29", "cluster": "3", "x": -497.2567138671875, "y": -1050.382568359375, "score": 0 }, { "key": "boolean algebra topics", "label": "Boolean algebra topics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Boolean%20algebra%20topics", "cluster": "3", "x": -432.6454772949219, "y": -1083.139404296875, "score": 0 }, { "key": "categorical logic", "label": "Categorical logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Categorical%20logic", "cluster": "3", "x": -761.6570434570312, "y": -776.7379760742188, "score": 0 }, { "key": "combinational logic", "label": "Combinational logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Combinational%20logic", "cluster": "3", "x": -442.89923095703125, "y": -1080.9619140625, "score": 0 }, { "key": "laws of form", "label": "Laws of Form", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Laws%20of%20Form", "cluster": "3", "x": -492.02227783203125, "y": -1029.936767578125, "score": 0.001665690581483221 }, { "key": "logical value", "label": "Logical value", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Logical%20value", "cluster": "13", "x": -385.3974304199219, "y": -1053.3192138671875, "score": 0 }, { "key": "charles sanders peirce bibliography", "label": "Charles Sanders Peirce bibliography", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Charles%20Sanders%20Peirce%20bibliography", "cluster": "3", "x": -272.1409606933594, "y": -815.9918212890625, "score": 0 }, { "key": "four-valued logic", "label": "Four-valued logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Four-valued%20logic", "cluster": "3", "x": -460.7790222167969, "y": -1197.1439208984375, "score": 0 }, { "key": "espresso heuristic logic minimizer", "label": "Espresso heuristic logic minimizer", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Espresso%20heuristic%20logic%20minimizer", "cluster": "3", "x": -287.4657897949219, "y": -1185.614501953125, "score": 0 }, { "key": "karnaugh map", "label": "Karnaugh map", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Karnaugh%20map", "cluster": "3", "x": -255.76171875, "y": -1200.22119140625, "score": 0.0018736941762354604 }, { "key": "algebraic normal form", "label": "Algebraic normal form", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Algebraic%20normal%20form", "cluster": "3", "x": -300.92449951171875, "y": -1226.555908203125, "score": 0.0022521503977327136 }, { "key": "binary decision diagram", "label": "Binary decision diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Binary%20decision%20diagram", "cluster": "3", "x": -154.4127197265625, "y": -1021.1196899414062, "score": 0.000855073701743122 }, { "key": "logic optimization", "label": "Logic optimization", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Logic%20optimization", "cluster": "3", "x": -218.59596252441406, "y": -1185.7467041015625, "score": 0 }, { "key": "punnett square", "label": "Punnett square", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Punnett%20square", "cluster": "3", "x": -249.5532989501953, "y": -1239.576416015625, "score": 0.0000019978867181212814 }, { "key": "quine–mccluskey algorithm", "label": "Quine–McCluskey algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Quine%E2%80%93McCluskey%20algorithm", "cluster": "3", "x": -232.63946533203125, "y": -1235.6689453125, "score": 0 }, { "key": "reed–muller expansion", "label": "Reed–Muller expansion", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Reed%E2%80%93Muller%20expansion", "cluster": "3", "x": -276.5133361816406, "y": -1258.8717041015625, "score": 0.0001596933569529581 }, { "key": "zhegalkin polynomial", "label": "Zhegalkin polynomial", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Zhegalkin%20polynomial", "cluster": "3", "x": -326.3992614746094, "y": -1230.099853515625, "score": 0.000313047072953743 }, { "key": "algebra of sets", "label": "Algebra of sets", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Algebra%20of%20sets", "cluster": "3", "x": -505.7400207519531, "y": -1157.2999267578125, "score": 0 }, { "key": "extension (predicate logic)", "label": "Extension (predicate logic)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Extension%20%28predicate%20logic%29", "cluster": "3", "x": -653.5935668945312, "y": -873.4159545898438, "score": 0 }, { "key": "relational algebra", "label": "Relational algebra", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Relational%20algebra", "cluster": "3", "x": -692.465087890625, "y": -603.4961547851562, "score": 0.009287127822527228 }, { "key": "type (model theory)", "label": "Type (model theory)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Type%20%28model%20theory%29", "cluster": "10", "x": -557.6884765625, "y": -715.8527221679688, "score": 0 }, { "key": "indicator function", "label": "Indicator function", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Indicator%20function", "cluster": "3", "x": -429.2229309082031, "y": -1183.33837890625, "score": 0 }, { "key": "sperner's lemma", "label": "Sperner's lemma", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Sperner%27s%20lemma", "cluster": "0", "x": 200.2740020751953, "y": -1094.1673583984375, "score": 0 }, { "key": "discrete exterior calculus", "label": "Discrete exterior calculus", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Discrete%20exterior%20calculus", "cluster": "0", "x": 189.28173828125, "y": -1094.2159423828125, "score": 0 }, { "key": "combinatorial topology", "label": "Combinatorial topology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Combinatorial%20topology", "cluster": "0", "x": 209.96083068847656, "y": -1076.891845703125, "score": 0 }, { "key": "finite topological space", "label": "Finite topological space", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Finite%20topological%20space", "cluster": "0", "x": 192.51107788085938, "y": -1084.4625244140625, "score": 0 }, { "key": "odds", "label": "Odds", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Odds", "cluster": "16", "x": 324.7985534667969, "y": -133.6429901123047, "score": 0.0016456195067525046 }, { "key": "clinical trial", "label": "Clinical trial", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Clinical%20trial", "cluster": "16", "x": -65.75888061523438, "y": -205.7943878173828, "score": 0.00009774925328152946 }, { "key": "expanded access", "label": "Expanded access", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Expanded%20access", "cluster": "16", "x": 209.59280395507812, "y": -109.41020202636719, "score": 0 }, { "key": "secretary problem", "label": "Secretary problem", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Secretary%20problem", "cluster": "16", "x": 244.0108184814453, "y": -272.4886474609375, "score": 0.00017483763370740253 }, { "key": "assignment problem", "label": "Assignment problem", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Assignment%20problem", "cluster": "0", "x": 235.43226623535156, "y": -584.9972534179688, "score": 0 }, { "key": "optimal stopping", "label": "Optimal stopping", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Optimal%20stopping", "cluster": "16", "x": 314.08685302734375, "y": -224.8326416015625, "score": 0 }, { "key": "decision tree learning", "label": "Decision tree learning", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Decision%20tree%20learning", "cluster": "16", "x": 425.67071533203125, "y": -51.93675231933594, "score": 0.002854123332247833 }, { "key": "ensemble learning", "label": "Ensemble learning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Ensemble%20learning", "cluster": "16", "x": 234.75930786132812, "y": 227.74111938476562, "score": 0 }, { "key": "gradient boosting", "label": "Gradient boosting", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Gradient%20boosting", "cluster": "16", "x": 551.77490234375, "y": 212.88143920898438, "score": 0.0002973502563060668 }, { "key": "non-parametric statistics", "label": "Non-parametric statistics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Non-parametric%20statistics", "cluster": "16", "x": 620.9581909179688, "y": 358.37738037109375, "score": 0.0000785614325207684 }, { "key": "randomized algorithm", "label": "Randomized algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Randomized%20algorithm", "cluster": "16", "x": 535.880615234375, "y": 256.1315612792969, "score": 0 }, { "key": "markov chain approximation method", "label": "Markov chain approximation method", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Markov%20chain%20approximation%20method", "cluster": "18", "x": 547.4061889648438, "y": 792.8975830078125, "score": 0.0003616266068653944 }, { "key": "markov chain mixing time", "label": "Markov chain mixing time", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Markov%20chain%20mixing%20time", "cluster": "18", "x": 622.83349609375, "y": 654.2657470703125, "score": 0 }, { "key": "markov decision process", "label": "Markov decision process", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Markov%20decision%20process", "cluster": "18", "x": 400.4329528808594, "y": 739.449951171875, "score": 0.00023519579014183968 }, { "key": "markov information source", "label": "Markov information source", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Markov%20information%20source", "cluster": "18", "x": 618.5818481445312, "y": 663.3070068359375, "score": 0 }, { "key": "markov odometer", "label": "Markov odometer", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Markov%20odometer", "cluster": "18", "x": 634.0711669921875, "y": 655.715087890625, "score": 0 }, { "key": "markov random field", "label": "Markov random field", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Markov%20random%20field", "cluster": "18", "x": 583.6089477539062, "y": 462.5253601074219, "score": 0.00003736757868676942 }, { "key": "quantum markov chain", "label": "Quantum Markov chain", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Quantum%20Markov%20chain", "cluster": "18", "x": 629.6575317382812, "y": 664.6085815429688, "score": 0 }, { "key": "stochastic cellular automaton", "label": "Stochastic cellular automaton", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Stochastic%20cellular%20automaton", "cluster": "18", "x": 618.3446655273438, "y": 567.5659790039062, "score": 0 }, { "key": "variable-order markov model", "label": "Variable-order Markov model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Variable-order%20Markov%20model", "cluster": "18", "x": 631.7869873046875, "y": 609.744384765625, "score": 0.00010907646074689152 }, { "key": "goal structuring notation", "label": "Goal structuring notation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Goal%20structuring%20notation", "cluster": "20", "x": 8.983790397644043, "y": 363.6100158691406, "score": 0 }, { "key": "theory of justification", "label": "Theory of justification", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Theory%20of%20justification", "cluster": "20", "x": 17.5346736907959, "y": 372.6811828613281, "score": 0 }, { "key": "computer-aided software engineering", "label": "Computer-aided software engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Computer-aided%20software%20engineering", "cluster": "7", "x": -355.8903503417969, "y": 794.7182006835938, "score": 0 }, { "key": "configuration management", "label": "Configuration management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Configuration%20management", "cluster": "20", "x": -610.92431640625, "y": 354.8103332519531, "score": 0 }, { "key": "metadata modeling", "label": "Metadata modeling", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Metadata%20modeling", "cluster": "20", "x": -477.5196533203125, "y": 374.5307922363281, "score": 0 }, { "key": "technical documentation", "label": "Technical documentation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Technical%20documentation", "cluster": "20", "x": -308.4790344238281, "y": 346.4901123046875, "score": 0 }, { "key": "decision conferencing", "label": "Decision conferencing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Decision%20conferencing", "cluster": "20", "x": 41.91312789916992, "y": 205.82528686523438, "score": 0 }, { "key": "research question", "label": "Research question", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Research%20question", "cluster": "20", "x": -26.41319465637207, "y": -198.5110321044922, "score": 0 }, { "key": "quantum finite automata", "label": "Quantum finite automata", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Quantum%20finite%20automata", "cluster": "18", "x": 144.58795166015625, "y": 619.8198852539062, "score": 0 }, { "key": "dynamic programming", "label": "Dynamic programming", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dynamic%20programming", "cluster": "18", "x": 269.86407470703125, "y": 778.9680786132812, "score": 0 }, { "key": "optimal control", "label": "Optimal control", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Optimal%20control", "cluster": "18", "x": 503.1914367675781, "y": 807.7259521484375, "score": 0 }, { "key": "control theory", "label": "Control theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Control%20theory", "cluster": "18", "x": 550.429443359375, "y": 947.1693115234375, "score": 0 }, { "key": "stochastic process", "label": "Stochastic process", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Stochastic%20process", "cluster": "18", "x": 558.8255004882812, "y": 952.3118896484375, "score": 0 }, { "key": "adaboost", "label": "AdaBoost", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/AdaBoost", "cluster": "16", "x": 585.5272827148438, "y": 244.0316925048828, "score": 0.0001095585113002919 }, { "key": "alternating decision tree", "label": "Alternating decision tree", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Alternating%20decision%20tree", "cluster": "16", "x": 560.6752319335938, "y": 179.6621551513672, "score": 0 }, { "key": "bootstrap aggregating", "label": "Bootstrap aggregating", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bootstrap%20aggregating", "cluster": "16", "x": 595.6761474609375, "y": 375.2509765625, "score": 0.0018109806353374066 }, { "key": "cascading classifiers", "label": "Cascading classifiers", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cascading%20classifiers", "cluster": "16", "x": 636.1878662109375, "y": 381.13800048828125, "score": 0.00007840873780255505 }, { "key": "brownboost", "label": "BrownBoost", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/BrownBoost", "cluster": "16", "x": 593.8751220703125, "y": 264.76080322265625, "score": 0.00002046109224058885 }, { "key": "coboosting", "label": "CoBoosting", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/CoBoosting", "cluster": "16", "x": 599.3590698242188, "y": 294.072265625, "score": 0 }, { "key": "principle of maximum entropy", "label": "Principle of maximum entropy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Principle%20of%20maximum%20entropy", "cluster": "16", "x": 681.4171142578125, "y": 552.7273559570312, "score": 0.00019306088773405613 }, { "key": "neural network", "label": "Neural network", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Neural%20network", "cluster": "18", "x": 421.8914794921875, "y": 12.161861419677734, "score": 0.0034797251897562683 }, { "key": "support vector machine", "label": "Support vector machine", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Support%20vector%20machine", "cluster": "18", "x": 347.34234619140625, "y": 236.2924346923828, "score": 0.0005668067876965696 }, { "key": "cross-validation (statistics)", "label": "cross-validation (statistics)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/cross-validation%20%28statistics%29", "cluster": "16", "x": 617.9456176757812, "y": 422.6002197265625, "score": 0.00029879264070207314 }, { "key": "machine learning", "label": "Machine learning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Machine%20learning", "cluster": "7", "x": 168.1231231689453, "y": 373.0307922363281, "score": 0 }, { "key": "resampling (statistics)", "label": "Resampling (statistics)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Resampling%20%28statistics%29", "cluster": "16", "x": 672.8583374023438, "y": 429.2836608886719, "score": 0 }, { "key": "decision stump", "label": "Decision stump", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Decision%20stump", "cluster": "16", "x": 393.8480529785156, "y": -86.60065460205078, "score": 0 }, { "key": "logistic model tree", "label": "Logistic model tree", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Logistic%20model%20tree", "cluster": "16", "x": 550.3928833007812, "y": -76.62189483642578, "score": 0 }, { "key": "case based reasoning", "label": "Case based reasoning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Case%20based%20reasoning", "cluster": "16", "x": -185.33969116210938, "y": -107.97189331054688, "score": 0.00035491282738719113 }, { "key": "dominance-based rough set approach", "label": "Dominance-based rough set approach", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dominance-based%20rough%20set%20approach", "cluster": "16", "x": -220.52377319335938, "y": -60.50132751464844, "score": 0 }, { "key": "karnaugh-veitch diagram", "label": "Karnaugh-Veitch diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Karnaugh-Veitch%20diagram", "cluster": "3", "x": -245.71334838867188, "y": -1102.304931640625, "score": 0.0016399883016564888 }, { "key": "many-valued logic", "label": "Many-valued logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Many-valued%20logic", "cluster": "13", "x": -240.95465087890625, "y": -749.8652954101562, "score": 0.000384562106082442 }, { "key": "semantic decision table", "label": "Semantic decision table", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Semantic%20decision%20table", "cluster": "16", "x": -575.0802001953125, "y": -53.49186706542969, "score": 0 }, { "key": "degrees of truth", "label": "Degrees of truth", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Degrees%20of%20truth", "cluster": "13", "x": -246.65206909179688, "y": -865.3426513671875, "score": 0 }, { "key": "fuzzy logic", "label": "Fuzzy logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Fuzzy%20logic", "cluster": "13", "x": -241.13504028320312, "y": -874.3200073242188, "score": 0 }, { "key": "principle of bivalence", "label": "Principle of bivalence", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Principle%20of%20bivalence", "cluster": "13", "x": -234.82818603515625, "y": -864.6414794921875, "score": 0 }, { "key": "false dilemma", "label": "False dilemma", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/False%20dilemma", "cluster": "13", "x": -251.9696044921875, "y": -916.141357421875, "score": 0 }, { "key": "adaptive management", "label": "Adaptive management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Adaptive%20management", "cluster": "10", "x": 300.9371032714844, "y": 673.139892578125, "score": 0.0013149024148819298 }, { "key": "decisional balance sheet", "label": "Decisional balance sheet", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Decisional%20balance%20sheet", "cluster": "14", "x": 337.746337890625, "y": 468.6882019042969, "score": 0.0002300377942056163 }, { "key": "learning cycle", "label": "Learning cycle", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Learning%20cycle", "cluster": "10", "x": 268.1815490722656, "y": 815.74951171875, "score": 0 }, { "key": "systems development lifecycle", "label": "Systems development lifecycle", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Systems%20development%20lifecycle", "cluster": "10", "x": 100.65453338623047, "y": 873.29345703125, "score": 0.00019261100272137808 }, { "key": "virtuous circle and vicious circle", "label": "Virtuous circle and vicious circle", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Virtuous%20circle%20and%20vicious%20circle", "cluster": "23", "x": 635.8499755859375, "y": 324.0223083496094, "score": 0.0034951071788278483 }, { "key": "intelligence cycle", "label": "Intelligence cycle", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Intelligence%20cycle", "cluster": "10", "x": 231.47691345214844, "y": 818.89501953125, "score": 0.000053799348160790296 }, { "key": "commonsense reasoning", "label": "Commonsense reasoning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Commonsense%20reasoning", "cluster": "16", "x": -415.0297546386719, "y": -208.23736572265625, "score": 0 }, { "key": "genetic algorithm", "label": "Genetic algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Genetic%20algorithm", "cluster": "16", "x": 134.91751098632812, "y": -60.34726333618164, "score": 0 }, { "key": "pattern matching", "label": "Pattern matching", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Pattern%20matching", "cluster": "16", "x": -240.89195251464844, "y": 258.0422058105469, "score": 0 }, { "key": "analogy", "label": "Analogy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Analogy", "cluster": "13", "x": -275.5140686035156, "y": -503.6994934082031, "score": 0 }, { "key": "ripple down rules", "label": "Ripple down rules", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Ripple%20down%20rules", "cluster": "5", "x": -413.95416259765625, "y": 237.8429412841797, "score": 0 }, { "key": "ooda loop", "label": "OODA loop", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/OODA%20loop", "cluster": "10", "x": 107.69998168945312, "y": 806.8778076171875, "score": 0 }, { "key": "application lifecycle management", "label": "Application lifecycle management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Application%20lifecycle%20management", "cluster": "10", "x": -202.1505889892578, "y": 893.8014526367188, "score": 0 }, { "key": "ipo model", "label": "IPO Model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/IPO%20Model", "cluster": "10", "x": 68.93091583251953, "y": 957.5196533203125, "score": 0 }, { "key": "software development methodologies", "label": "Software development methodologies", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Software%20development%20methodologies", "cluster": "10", "x": 64.39173889160156, "y": 965.5321044921875, "score": 0 }, { "key": "hybrid system", "label": "Hybrid system", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Hybrid%20system", "cluster": "16", "x": 140.09068298339844, "y": 33.069183349609375, "score": 0.00003107055757530676 }, { "key": "subsumption architecture", "label": "Subsumption architecture", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Subsumption%20architecture", "cluster": "11", "x": -84.09113311767578, "y": -180.04685974121094, "score": 0.000006560518652795123 }, { "key": "evolutionary algorithm", "label": "Evolutionary algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Evolutionary%20algorithm", "cluster": "18", "x": 548.12548828125, "y": 43.96696853637695, "score": 0 }, { "key": "in situ adaptive tabulation", "label": "In situ adaptive tabulation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/In%20situ%20adaptive%20tabulation", "cluster": "18", "x": 415.4924621582031, "y": 137.76998901367188, "score": 0 }, { "key": "multilinear subspace learning", "label": "Multilinear subspace learning", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Multilinear%20subspace%20learning", "cluster": "24", "x": 749.9002075195312, "y": -121.58396911621094, "score": 0.005714621942973761 }, { "key": "radial basis function network", "label": "Radial basis function network", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Radial%20basis%20function%20network", "cluster": "6", "x": 667.9395141601562, "y": 59.252647399902344, "score": 0 }, { "key": "out-of-bag error", "label": "Out-of-bag error", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Out-of-bag%20error", "cluster": "16", "x": 648.6436157226562, "y": 437.09002685546875, "score": 0 }, { "key": "bootstrapping (statistics)", "label": "Bootstrapping (statistics)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bootstrapping%20%28statistics%29", "cluster": "16", "x": 655.8148193359375, "y": 442.99920654296875, "score": 0 }, { "key": "model selection", "label": "Model selection", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Model%20selection", "cluster": "16", "x": 466.2861633300781, "y": 553.7709350585938, "score": 0 }, { "key": "maximum entropy probability distribution", "label": "Maximum entropy probability distribution", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Maximum%20entropy%20probability%20distribution", "cluster": "16", "x": 681.5626220703125, "y": 794.7159423828125, "score": 0 }, { "key": "maximum entropy spectral estimation", "label": "Maximum entropy spectral estimation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Maximum%20entropy%20spectral%20estimation", "cluster": "16", "x": 711.3594360351562, "y": 506.447021484375, "score": 0 }, { "key": "boosting (meta-algorithm)", "label": "Boosting (meta-algorithm)", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Boosting%20%28meta-algorithm%29", "cluster": "16", "x": 666.7259521484375, "y": 413.8230895996094, "score": 0 }, { "key": "seven basic tools of quality", "label": "Seven Basic Tools of Quality", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Seven%20Basic%20Tools%20of%20Quality", "cluster": "6", "x": 580.1302490234375, "y": 872.12060546875, "score": 0 }, { "key": "resource management", "label": "Resource management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Resource%20management", "cluster": "14", "x": 410.0865783691406, "y": 652.2511596679688, "score": 0 }, { "key": "futurology", "label": "Futurology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Futurology", "cluster": "8", "x": 615.5186767578125, "y": 898.1698608398438, "score": 0 }, { "key": "risk analysis", "label": "Risk analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Risk%20analysis", "cluster": "8", "x": 280.83331298828125, "y": 1032.546142578125, "score": 0.0003477151717728835 }, { "key": "scientific lacuna", "label": "Scientific lacuna", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Scientific%20lacuna", "cluster": "8", "x": 631.7705688476562, "y": 850.6373901367188, "score": 0 }, { "key": "technology assessment", "label": "Technology assessment", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Technology%20assessment", "cluster": "8", "x": 635.192138671875, "y": 750.4653930664062, "score": 0.000024161095451435653 }, { "key": "technology scouting", "label": "Technology scouting", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Technology%20scouting", "cluster": "8", "x": 615.1151123046875, "y": 882.3003540039062, "score": 0 }, { "key": "technology dynamics", "label": "Technology dynamics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Technology%20dynamics", "cluster": "23", "x": 681.5536499023438, "y": 368.1822509765625, "score": 0 }, { "key": "eight disciplines problem solving", "label": "Eight disciplines problem solving", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Eight%20disciplines%20problem%20solving", "cluster": "10", "x": 402.4273986816406, "y": 812.0249633789062, "score": 0.002150202767515016 }, { "key": "five ws", "label": "Five Ws", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Five%20Ws", "cluster": "14", "x": 331.0305480957031, "y": 493.830810546875, "score": 0 }, { "key": "four causes", "label": "Four causes", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Four%20causes", "cluster": "14", "x": 350.8077392578125, "y": 503.5820007324219, "score": 0 }, { "key": "socratic method", "label": "Socratic method", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Socratic%20method", "cluster": "14", "x": 214.39463806152344, "y": 120.49696350097656, "score": 0 }, { "key": "risk assessment", "label": "Risk assessment", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Risk%20assessment", "cluster": "8", "x": 214.082275390625, "y": 1087.9197998046875, "score": 0 }, { "key": "optimism bias", "label": "Optimism bias", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Optimism%20bias", "cluster": "8", "x": 141.02308654785156, "y": 1170.5357666015625, "score": 0 }, { "key": "precautionary principle", "label": "Precautionary principle", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Precautionary%20principle", "cluster": "23", "x": 331.3694152832031, "y": 782.6793823242188, "score": 0 }, { "key": "risk management tools", "label": "Risk management tools", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Risk%20management%20tools", "cluster": "8", "x": 207.9002685546875, "y": 1096.2398681640625, "score": 0 }, { "key": "reference class forecasting", "label": "Reference class forecasting", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Reference%20class%20forecasting", "cluster": "8", "x": 159.86814880371094, "y": 1046.0631103515625, "score": 0 }, { "key": "reliability engineering", "label": "Reliability engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Reliability%20engineering", "cluster": "10", "x": 357.2490234375, "y": 928.32861328125, "score": 0 }, { "key": "safety engineering", "label": "Safety engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Safety%20engineering", "cluster": "14", "x": 393.8555908203125, "y": 695.249267578125, "score": 0 }, { "key": "system safety", "label": "System safety", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/System%20safety", "cluster": "14", "x": 233.80726623535156, "y": 752.2103881835938, "score": 0 }, { "key": "why-because analysis", "label": "Why-because analysis", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Why-because%20analysis", "cluster": "14", "x": 224.341552734375, "y": 517.3326416015625, "score": 0.005822981436308246 }, { "key": "poka-yoke", "label": "Poka-yoke", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Poka-yoke", "cluster": "14", "x": 310.6664733886719, "y": 851.8613891601562, "score": 0 }, { "key": "risk management", "label": "Risk management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Risk%20management", "cluster": "23", "x": 568.410888671875, "y": 573.9239501953125, "score": 0 }, { "key": "occupational safety and health", "label": "Occupational safety and health", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Occupational%20safety%20and%20health", "cluster": "14", "x": 472.04766845703125, "y": 575.7568969726562, "score": 0 }, { "key": "corrective and preventive action", "label": "Corrective and preventive action", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Corrective%20and%20preventive%20action", "cluster": "10", "x": 455.7677307128906, "y": 981.1588745117188, "score": 0.0005020792220151301 }, { "key": "quality management system", "label": "Quality management system", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Quality%20management%20system", "cluster": "10", "x": 401.3555603027344, "y": 964.8679809570312, "score": 0 }, { "key": "problem solving", "label": "Problem solving", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Problem%20solving", "cluster": "23", "x": 314.3737487792969, "y": 252.4244384765625, "score": 0 }, { "key": "a3 problem solving", "label": "A3 problem solving", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/A3%20problem%20solving", "cluster": "10", "x": 313.046875, "y": 940.4827880859375, "score": 0 }, { "key": "c. west churchman", "label": "C. West Churchman", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/C.%20West%20Churchman", "cluster": "3", "x": -19.126558303833008, "y": 121.10488891601562, "score": 0 }, { "key": "information theory", "label": "Information theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Information%20theory", "cluster": "3", "x": 109.00093078613281, "y": -263.8129577636719, "score": 0 }, { "key": "logic of information", "label": "Logic of information", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Logic%20of%20information", "cluster": "3", "x": -217.09017944335938, "y": -613.68212890625, "score": 0.0002761529737776396 }, { "key": "pragmatic theory of truth", "label": "Pragmatic theory of truth", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Pragmatic%20theory%20of%20truth", "cluster": "3", "x": -188.61508178710938, "y": -594.3980102539062, "score": 0 }, { "key": "pragmaticism", "label": "Pragmaticism", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Pragmaticism", "cluster": "3", "x": -184.67446899414062, "y": -603.6549072265625, "score": 0 }, { "key": "epistemic virtue", "label": "Epistemic virtue", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Epistemic%20virtue", "cluster": "14", "x": 44.684383392333984, "y": -404.6828918457031, "score": 0 }, { "key": "news analytics", "label": "News analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/News%20analytics", "cluster": "11", "x": -542.4479370117188, "y": 48.36499786376953, "score": 0.0006346029491900542 }, { "key": "ontology learning", "label": "Ontology learning", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Ontology%20learning", "cluster": "11", "x": -786.142822265625, "y": -86.86901092529297, "score": 0.001956354874534539 }, { "key": "record linkage", "label": "Record linkage", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Record%20linkage", "cluster": "11", "x": -756.7416381835938, "y": 146.83956909179688, "score": 0 }, { "key": "web mining", "label": "Web mining", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Web%20mining", "cluster": "7", "x": -254.12969970703125, "y": 200.82958984375, "score": 0 }, { "key": "enterprise 2.0", "label": "Enterprise 2.0", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%202.0", "cluster": "23", "x": -95.56352996826172, "y": -174.73526000976562, "score": 0 }, { "key": "knowledge tagging", "label": "Knowledge tagging", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Knowledge%20tagging", "cluster": "23", "x": -411.6810302734375, "y": -64.73606872558594, "score": 0 }, { "key": "web 2.0", "label": "Web 2.0", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Web%202.0", "cluster": "11", "x": -874.3722534179688, "y": 73.07710266113281, "score": 0 }, { "key": "social networking", "label": "Social networking", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Social%20networking", "cluster": "23", "x": 1.3100290298461914, "y": -201.29800415039062, "score": 0.0015321427156095393 }, { "key": "social software", "label": "Social software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20software", "cluster": "23", "x": 13.1345796585083, "y": -143.640869140625, "score": 0 }, { "key": "inference engine", "label": "Inference engine", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Inference%20engine", "cluster": "5", "x": -617.1329956054688, "y": 185.39199829101562, "score": 0 }, { "key": "information governance", "label": "Information governance", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Information%20governance", "cluster": "21", "x": -471.6830139160156, "y": 200.21786499023438, "score": 0 }, { "key": "content management interoperability services", "label": "Content Management Interoperability Services", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Content%20Management%20Interoperability%20Services", "cluster": "21", "x": -469.9632263183594, "y": 342.3787841796875, "score": 0 }, { "key": "snippet management", "label": "Snippet management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Snippet%20management", "cluster": "21", "x": -439.8541564941406, "y": 258.59478759765625, "score": 0 }, { "key": "comparison of object–relational database management systems", "label": "Comparison of object–relational database management systems", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20object%E2%80%93relational%20database%20management%20systems", "cluster": "7", "x": -775.8088989257812, "y": -363.36993408203125, "score": 0 }, { "key": "comparison of relational database management systems", "label": "Comparison of relational database management systems", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20relational%20database%20management%20systems", "cluster": "7", "x": -740.40869140625, "y": -382.76824951171875, "score": 0 }, { "key": "data store", "label": "Data store", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20store", "cluster": "7", "x": -786.3226928710938, "y": -149.11573791503906, "score": 0 }, { "key": "florilegium", "label": "Florilegium", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Florilegium", "cluster": "14", "x": -387.4280700683594, "y": -182.59524536132812, "score": 0 }, { "key": "comparison of text editors", "label": "Comparison of text editors", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20text%20editors", "cluster": "14", "x": -552.5994262695312, "y": 132.49139404296875, "score": 0 }, { "key": "web annotation", "label": "Web annotation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Web%20annotation", "cluster": "20", "x": -325.63250732421875, "y": -26.33247184753418, "score": 0 }, { "key": "comparison of word processors", "label": "Comparison of word processors", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20word%20processors", "cluster": "1", "x": -675.498291015625, "y": 331.906005859375, "score": 0.00039981953654967393 }, { "key": "memex", "label": "Memex", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Memex", "cluster": "14", "x": -340.1301574707031, "y": -112.54015350341797, "score": 0 }, { "key": "reference management software", "label": "Reference management software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Reference%20management%20software", "cluster": "14", "x": -344.8854675292969, "y": -166.7065887451172, "score": 0 }, { "key": "group dynamics", "label": "Group dynamics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Group%20dynamics", "cluster": "14", "x": 325.93133544921875, "y": -376.65887451171875, "score": 0 }, { "key": "intergroup relations", "label": "Intergroup relations", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Intergroup%20relations", "cluster": "12", "x": 420.23394775390625, "y": -371.6629943847656, "score": 0 }, { "key": "centre for dialogue", "label": "Centre for Dialogue", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Centre%20for%20Dialogue", "cluster": "14", "x": 237.70266723632812, "y": -681.1958618164062, "score": 0 }, { "key": "fethullah gülen", "label": "Fethullah Gülen", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Fethullah%20G%C3%BClen", "cluster": "14", "x": 243.15850830078125, "y": -671.3125610351562, "score": 0 }, { "key": "kaiciid dialogue centre", "label": "KAICIID Dialogue Centre", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/KAICIID%20Dialogue%20Centre", "cluster": "14", "x": 250.79702758789062, "y": -683.8463745117188, "score": 0 }, { "key": "parliament of the world's religions", "label": "Parliament of the World's Religions", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Parliament%20of%20the%20World%27s%20Religions", "cluster": "14", "x": 254.54226684570312, "y": -673.081787109375, "score": 0 }, { "key": "cognitive bias modification", "label": "Cognitive bias modification", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cognitive%20bias%20modification", "cluster": "14", "x": 114.55970001220703, "y": -494.6712341308594, "score": 0 }, { "key": "philosophy of dialogue", "label": "Philosophy of dialogue", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Philosophy%20of%20dialogue", "cluster": "14", "x": 204.40835571289062, "y": -432.2507629394531, "score": 0 }, { "key": "collaboration", "label": "Collaboration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Collaboration", "cluster": "20", "x": -243.65296936035156, "y": -42.79132843017578, "score": 0 }, { "key": "wikinomics", "label": "Wikinomics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Wikinomics", "cluster": "20", "x": -124.19180297851562, "y": -91.51177978515625, "score": 0 }, { "key": "glossary of systems theory", "label": "Glossary of systems theory", "tag": "List", "URL": "https://en.wikipedia.org/wiki/Glossary%20of%20systems%20theory", "cluster": "23", "x": 799.3721313476562, "y": 216.71142578125, "score": 0 }, { "key": "autonomous agency theory", "label": "Autonomous agency theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Autonomous%20agency%20theory", "cluster": "23", "x": 782.643798828125, "y": 274.7938537597656, "score": 0 }, { "key": "bibliography of sociology", "label": "Bibliography of sociology", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Bibliography%20of%20sociology", "cluster": "23", "x": 704.5028076171875, "y": 79.64413452148438, "score": 0 }, { "key": "cellular automata", "label": "Cellular automata", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cellular%20automata", "cluster": "23", "x": 803.3942260742188, "y": 248.0496826171875, "score": 0 }, { "key": "chaos theory", "label": "Chaos theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Chaos%20theory", "cluster": "23", "x": 710.7120361328125, "y": 125.45310974121094, "score": 0 }, { "key": "emergence", "label": "Emergence", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Emergence", "cluster": "23", "x": 613.2858276367188, "y": 199.93603515625, "score": 0 }, { "key": "engaged theory", "label": "Engaged theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Engaged%20theory", "cluster": "23", "x": 534.5355224609375, "y": 87.00159454345703, "score": 0 }, { "key": "fractal", "label": "Fractal", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Fractal", "cluster": "23", "x": 679.574462890625, "y": 205.0756072998047, "score": 0 }, { "key": "irreducible complexity", "label": "Irreducible complexity", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Irreducible%20complexity", "cluster": "23", "x": 776.6024169921875, "y": 235.53677368164062, "score": 0 }, { "key": "meta-systems", "label": "Meta-systems", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Meta-systems", "cluster": "23", "x": 779.9122924804688, "y": 257.33056640625, "score": 0 }, { "key": "multidimensional systems", "label": "Multidimensional systems", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Multidimensional%20systems", "cluster": "23", "x": 790.505615234375, "y": 238.2471923828125, "score": 0 }, { "key": "open and closed systems in social science", "label": "Open and closed systems in social science", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Open%20and%20closed%20systems%20in%20social%20science", "cluster": "23", "x": 776.3021240234375, "y": 285.6587219238281, "score": 0 }, { "key": "reductionism", "label": "Reductionism", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Reductionism", "cluster": "23", "x": 789.74462890625, "y": 263.8290710449219, "score": 0 }, { "key": "reversal theory", "label": "Reversal theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Reversal%20theory", "cluster": "23", "x": 795.6857299804688, "y": 276.5443420410156, "score": 0 }, { "key": "social rule system theory", "label": "Social rule system theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Social%20rule%20system%20theory", "cluster": "23", "x": 782.3451538085938, "y": 245.93243408203125, "score": 0 }, { "key": "sociotechnical system", "label": "Sociotechnical system", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Sociotechnical%20system", "cluster": "23", "x": 794.9346923828125, "y": 227.4105987548828, "score": 0 }, { "key": "sociology and complexity science", "label": "Sociology and complexity science", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Sociology%20and%20complexity%20science", "cluster": "23", "x": 681.16455078125, "y": 215.8805694580078, "score": 0 }, { "key": "structure–organization–process", "label": "Structure–organization–process", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Structure%E2%80%93organization%E2%80%93process", "cluster": "23", "x": 787.557861328125, "y": 218.17196655273438, "score": 0 }, { "key": "systemantics", "label": "Systemantics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Systemantics", "cluster": "23", "x": 770.9681396484375, "y": 244.7533721923828, "score": 0 }, { "key": "systematics – study of multi-term systems", "label": "Systematics – study of multi-term systems", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Systematics%20%E2%80%93%20study%20of%20multi-term%20systems", "cluster": "23", "x": 788.2822265625, "y": 283.9204406738281, "score": 0 }, { "key": "systemics", "label": "Systemics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Systemics", "cluster": "23", "x": 813.1351318359375, "y": 234.36663818359375, "score": 0 }, { "key": "systemography", "label": "Systemography", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Systemography", "cluster": "23", "x": 720.2383422851562, "y": 179.50250244140625, "score": 0 }, { "key": "systems science", "label": "Systems science", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Systems%20science", "cluster": "23", "x": 766.0296630859375, "y": 268.3774108886719, "score": 0 }, { "key": "tektology", "label": "Tektology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Tektology", "cluster": "23", "x": 693.71630859375, "y": 187.8115997314453, "score": 0 }, { "key": "user-in-the-loop", "label": "User-in-the-loop", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/User-in-the-loop", "cluster": "23", "x": 807.2599487304688, "y": 224.4430694580078, "score": 0 }, { "key": "viable system theory", "label": "Viable system theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Viable%20system%20theory", "cluster": "23", "x": 791.86474609375, "y": 250.38868713378906, "score": 0 }, { "key": "viable systems approach", "label": "Viable systems approach", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Viable%20systems%20approach", "cluster": "23", "x": 799.8434448242188, "y": 258.19757080078125, "score": 0 }, { "key": "world-systems theory", "label": "World-systems theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/World-systems%20theory", "cluster": "23", "x": 768.7913208007812, "y": 256.0548400878906, "score": 0 }, { "key": "structuralist economics", "label": "Structuralist economics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Structuralist%20economics", "cluster": "23", "x": 801.3040771484375, "y": 236.62762451171875, "score": 0 }, { "key": "dependency theory", "label": "Dependency theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Dependency%20theory", "cluster": "23", "x": 803.2288208007812, "y": 270.1204833984375, "score": 0 }, { "key": "hierarchy theory", "label": "Hierarchy theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Hierarchy%20theory", "cluster": "23", "x": 686.1244506835938, "y": 196.65811157226562, "score": 0 }, { "key": "american society for cybernetics", "label": "American Society for Cybernetics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/American%20Society%20for%20Cybernetics", "cluster": "23", "x": 813.001708984375, "y": 245.6367950439453, "score": 0 }, { "key": "cybernetics society", "label": "Cybernetics Society", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cybernetics%20Society", "cluster": "23", "x": 775.8084716796875, "y": 267.3588562011719, "score": 0 }, { "key": "ieee systems, man, and cybernetics society", "label": "IEEE Systems, Man, and Cybernetics Society", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/IEEE%20Systems%2C%20Man%2C%20and%20Cybernetics%20Society", "cluster": "23", "x": 811.1828002929688, "y": 259.7303466796875, "score": 0 }, { "key": "international federation for systems research", "label": "International Federation for Systems Research", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/International%20Federation%20for%20Systems%20Research", "cluster": "23", "x": 769.1428833007812, "y": 279.4805603027344, "score": 0 }, { "key": "international society for the systems sciences", "label": "International Society for the Systems Sciences", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/International%20Society%20for%20the%20Systems%20Sciences", "cluster": "23", "x": 782.3709106445312, "y": 227.92027282714844, "score": 0 }, { "key": "new england complex systems institute", "label": "New England Complex Systems Institute", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/New%20England%20Complex%20Systems%20Institute", "cluster": "23", "x": 655.0430297851562, "y": 244.87277221679688, "score": 0 }, { "key": "divergent thinking", "label": "Divergent thinking", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Divergent%20thinking", "cluster": "20", "x": 151.5404052734375, "y": -137.52108764648438, "score": 0 }, { "key": "oblique strategies", "label": "Oblique Strategies", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Oblique%20Strategies", "cluster": "20", "x": 174.4430694580078, "y": -270.1620788574219, "score": 0 }, { "key": "thinking outside the box", "label": "Thinking outside the box", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Thinking%20outside%20the%20box", "cluster": "20", "x": 144.6943817138672, "y": -262.98638916015625, "score": 0 }, { "key": "reason", "label": "Reason", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Reason", "cluster": "14", "x": 34.284481048583984, "y": -502.66119384765625, "score": 0 }, { "key": "speed thinking", "label": "Speed thinking", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Speed%20thinking", "cluster": "20", "x": 155.90696716308594, "y": -255.78016662597656, "score": 0 }, { "key": "heroic theory of invention and scientific development", "label": "Heroic theory of invention and scientific development", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Heroic%20theory%20of%20invention%20and%20scientific%20development", "cluster": "20", "x": 249.1324920654297, "y": -234.42628479003906, "score": 0 }, { "key": "multiple discovery", "label": "Multiple discovery", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Multiple%20discovery", "cluster": "20", "x": 252.6305389404297, "y": -224.39089965820312, "score": 0 }, { "key": "technological revolution", "label": "Technological revolution", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Technological%20revolution", "cluster": "20", "x": 293.70709228515625, "y": -273.4181823730469, "score": 0 }, { "key": "deception", "label": "Deception", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Deception", "cluster": "6", "x": 313.7501525878906, "y": 140.81365966796875, "score": 0 }, { "key": "actuarial science", "label": "Actuarial science", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Actuarial%20science", "cluster": "20", "x": 195.8046112060547, "y": 141.0813751220703, "score": 0 }, { "key": "community of practice", "label": "Community of practice", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Community%20of%20practice", "cluster": "20", "x": 168.75057983398438, "y": -11.197261810302734, "score": 0 }, { "key": "coworking", "label": "Coworking", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Coworking", "cluster": "20", "x": -115.52164459228516, "y": 44.66433334350586, "score": 0 }, { "key": "innovation", "label": "Innovation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Innovation", "cluster": "20", "x": 194.0778350830078, "y": -111.13510131835938, "score": 0 }, { "key": "adaptive performance", "label": "Adaptive performance", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Adaptive%20performance", "cluster": "20", "x": 182.2831268310547, "y": -45.64921569824219, "score": 0 }, { "key": "groupthink", "label": "Groupthink", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Groupthink", "cluster": "18", "x": -71.1435775756836, "y": -139.9256591796875, "score": 0 }, { "key": "free will", "label": "Free will", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Free%20will", "cluster": "14", "x": 144.06362915039062, "y": -186.79132080078125, "score": 0 }, { "key": "public opinion", "label": "Public opinion", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Public%20opinion", "cluster": "14", "x": 360.2325439453125, "y": -414.89263916015625, "score": 0 }, { "key": "relativism", "label": "Relativism", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Relativism", "cluster": "14", "x": -129.4796142578125, "y": -829.4330444335938, "score": 0 }, { "key": "analysis", "label": "Analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Analysis", "cluster": "7", "x": 0.6905773282051086, "y": -178.94813537597656, "score": 0.0001059398433774581 }, { "key": "critical theory", "label": "Critical theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Critical%20theory", "cluster": "14", "x": 39.65499496459961, "y": -559.6734619140625, "score": 0 }, { "key": "social criticism", "label": "Social criticism", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Social%20criticism", "cluster": "13", "x": -50.691959381103516, "y": -623.1763916015625, "score": 0 }, { "key": "internet", "label": "Internet", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Internet", "cluster": "1", "x": 2.237752914428711, "y": -253.05718994140625, "score": 0 }, { "key": "network effect", "label": "Network effect", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Network%20effect", "cluster": "1", "x": -412.73065185546875, "y": 78.75634002685547, "score": 0 }, { "key": "engineering management", "label": "Engineering management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Engineering%20management", "cluster": "10", "x": 11.753220558166504, "y": 758.073974609375, "score": 0 }, { "key": "bachelor of computer information systems", "label": "Bachelor of Computer Information Systems", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bachelor%20of%20Computer%20Information%20Systems", "cluster": "7", "x": -452.01824951171875, "y": 428.64141845703125, "score": 0 }, { "key": "business performance management", "label": "Business performance management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Business%20performance%20management", "cluster": "7", "x": -429.5545349121094, "y": 435.1399230957031, "score": 0 }, { "key": "business rule", "label": "Business rule", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Business%20rule", "cluster": "7", "x": -438.84332275390625, "y": 416.0230407714844, "score": 0 }, { "key": "corporate governance of information technology", "label": "Corporate governance of information technology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Corporate%20governance%20of%20information%20technology", "cluster": "7", "x": -440.3472595214844, "y": 429.1716003417969, "score": 0 }, { "key": "purchase order request", "label": "Purchase order request", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Purchase%20order%20request", "cluster": "7", "x": -450.82501220703125, "y": 439.369873046875, "score": 0 }, { "key": "enterprise architecture", "label": "Enterprise architecture", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20architecture", "cluster": "7", "x": -489.65399169921875, "y": 487.8082580566406, "score": 0 }, { "key": "enterprise information system", "label": "Enterprise information system", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20information%20system", "cluster": "7", "x": -453.9538879394531, "y": 365.0236511230469, "score": 0 }, { "key": "enterprise planning system", "label": "Enterprise planning system", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20planning%20system", "cluster": "7", "x": -450.09716796875, "y": 414.71343994140625, "score": 0 }, { "key": "management by objectives", "label": "Management by objectives", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Management%20by%20objectives", "cluster": "7", "x": -438.7142333984375, "y": 442.0871887207031, "score": 0 }, { "key": "online analytical processing", "label": "Online analytical processing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Online%20analytical%20processing", "cluster": "7", "x": -444.53955078125, "y": 164.07179260253906, "score": 0.00015872615958277696 }, { "key": "online office suite", "label": "Online office suite", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Online%20office%20suite", "cluster": "7", "x": -538.2669067382812, "y": 399.9041442871094, "score": 0 }, { "key": "real-time computing", "label": "Real-time computing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Real-time%20computing", "cluster": "7", "x": -384.1195983886719, "y": 492.6356201171875, "score": 0 }, { "key": "real-time marketing", "label": "Real-time marketing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Real-time%20marketing", "cluster": "7", "x": -429.52606201171875, "y": 422.31646728515625, "score": 0 }, { "key": "polytely", "label": "Polytely", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Polytely", "cluster": "23", "x": 341.6327819824219, "y": 135.98179626464844, "score": 0.006171541706448234 }, { "key": "swarm intelligence", "label": "Swarm intelligence", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Swarm%20intelligence", "cluster": "6", "x": 580.7586059570312, "y": 282.7987365722656, "score": 0 }, { "key": "symbolic interactionism", "label": "Symbolic interactionism", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Symbolic%20interactionism", "cluster": "12", "x": 350.02880859375, "y": -110.67308807373047, "score": 0 }, { "key": "information resources management journal", "label": "Information Resources Management Journal", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Information%20Resources%20Management%20Journal", "cluster": "21", "x": -342.9036865234375, "y": 294.3623352050781, "score": 0 }, { "key": "crowdsourcing", "label": "Crowdsourcing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Crowdsourcing", "cluster": "20", "x": -121.91868591308594, "y": -40.6980094909668, "score": 0 }, { "key": "gift economy", "label": "Gift economy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Gift%20economy", "cluster": "20", "x": 52.80337142944336, "y": -284.0574951171875, "score": 0 }, { "key": "mass collaboration", "label": "Mass collaboration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Mass%20collaboration", "cluster": "20", "x": -67.7496109008789, "y": -90.85675811767578, "score": 0 }, { "key": "open collaboration", "label": "Open collaboration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Open%20collaboration", "cluster": "20", "x": -157.15113830566406, "y": -86.28544616699219, "score": 0 }, { "key": "social peer-to-peer processes", "label": "Social peer-to-peer processes", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20peer-to-peer%20processes", "cluster": "20", "x": -143.45423889160156, "y": -20.704137802124023, "score": 0 }, { "key": "usability", "label": "Usability", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Usability", "cluster": "5", "x": -402.2178039550781, "y": 438.111083984375, "score": 0 }, { "key": "digital collaboration", "label": "Digital collaboration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Digital%20collaboration", "cluster": "20", "x": -169.5521240234375, "y": -62.50581359863281, "score": 0 }, { "key": "mass communication", "label": "Mass communication", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Mass%20communication", "cluster": "20", "x": -169.507568359375, "y": -178.17160034179688, "score": 0 }, { "key": "information science", "label": "Information science", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Information%20science", "cluster": "21", "x": -506.2203369140625, "y": 205.5825958251953, "score": 0 }, { "key": "construction collaboration technology", "label": "Construction collaboration technology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Construction%20collaboration%20technology", "cluster": "21", "x": -314.3658752441406, "y": 670.6245727539062, "score": 0 }, { "key": "document automation", "label": "Document automation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Document%20automation", "cluster": "21", "x": -500.8171691894531, "y": 422.5332946777344, "score": 0 }, { "key": "library science", "label": "Library science", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Library%20science", "cluster": "21", "x": -510.8734436035156, "y": 136.44485473632812, "score": 0 }, { "key": "revision control", "label": "Revision control", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Revision%20control", "cluster": "21", "x": -506.4508361816406, "y": 237.21881103515625, "score": 0 }, { "key": "comparison of crm systems", "label": "Comparison of CRM systems", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20CRM%20systems", "cluster": "13", "x": -177.7274627685547, "y": 746.0554809570312, "score": 0 }, { "key": "intersubjectivity", "label": "Intersubjectivity", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Intersubjectivity", "cluster": "13", "x": -253.98963928222656, "y": -209.65701293945312, "score": 0 }, { "key": "dynamic web page", "label": "Dynamic web page", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dynamic%20web%20page", "cluster": "21", "x": -601.9423828125, "y": 293.5072937011719, "score": 0 }, { "key": "html", "label": "HTML", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/HTML", "cluster": "21", "x": -644.8848266601562, "y": 280.6809387207031, "score": 0.00011988498597553548 }, { "key": "virtual workplace", "label": "Virtual workplace", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Virtual%20workplace", "cluster": "20", "x": -371.3490295410156, "y": 159.7445068359375, "score": 0 }, { "key": "learning analytics", "label": "Learning analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Learning%20analytics", "cluster": "7", "x": 66.01988220214844, "y": 256.9392395019531, "score": 0.01893204058134111 }, { "key": "pattern recognition", "label": "Pattern recognition", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Pattern%20recognition", "cluster": "7", "x": 135.40234375, "y": 96.7069320678711, "score": 0 }, { "key": "social media analytics", "label": "Social media analytics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20media%20analytics", "cluster": "23", "x": 365.0437927246094, "y": 98.80877685546875, "score": 0 }, { "key": "facilitation (business)", "label": "Facilitation (business)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Facilitation%20%28business%29", "cluster": "20", "x": -20.18571662902832, "y": 293.2770690917969, "score": 0.0030822484648990256 }, { "key": "outsourcing", "label": "Outsourcing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Outsourcing", "cluster": "20", "x": -268.55291748046875, "y": 64.98936462402344, "score": 0 }, { "key": "collaborative information seeking", "label": "Collaborative information seeking", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Collaborative%20information%20seeking", "cluster": "20", "x": -146.46221923828125, "y": 106.34315490722656, "score": 0 }, { "key": "computer-supported collaboration", "label": "Computer-supported collaboration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Computer-supported%20collaboration", "cluster": "20", "x": -117.69619750976562, "y": 155.15545654296875, "score": 0.00031118646778076413 }, { "key": "comparison of office suites", "label": "Comparison of office suites", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20office%20suites", "cluster": "1", "x": -640.4705810546875, "y": 354.6521911621094, "score": 0.00003428559940111676 }, { "key": "comparison of file hosting services", "label": "Comparison of file hosting services", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20file%20hosting%20services", "cluster": "1", "x": -599.7660522460938, "y": 322.6890563964844, "score": 0 }, { "key": "comparison of cross-platform instant messaging clients", "label": "Comparison of cross-platform instant messaging clients", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20cross-platform%20instant%20messaging%20clients", "cluster": "20", "x": -141.7207489013672, "y": -129.5204620361328, "score": 0 }, { "key": "smart city", "label": "Smart city", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Smart%20city", "cluster": "20", "x": -329.0040283203125, "y": 270.0509033203125, "score": 0 }, { "key": "artificial life", "label": "Artificial life", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Artificial%20life", "cluster": "18", "x": 635.7991333007812, "y": -12.429183959960938, "score": 0 }, { "key": "philosophy of information", "label": "Philosophy of information", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Philosophy%20of%20information", "cluster": "3", "x": 196.19268798828125, "y": -353.4324951171875, "score": 0 }, { "key": "complexity economics", "label": "Complexity economics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Complexity%20economics", "cluster": "23", "x": 608.6790161132812, "y": 135.6022186279297, "score": 0 }, { "key": "econophysics", "label": "Econophysics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Econophysics", "cluster": "6", "x": 841.505615234375, "y": 309.1836242675781, "score": 0 }, { "key": "aggregate data", "label": "Aggregate data", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Aggregate%20data", "cluster": "23", "x": 805.674560546875, "y": 342.29949951171875, "score": 0 }, { "key": "game theory", "label": "Game theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Game%20theory", "cluster": "23", "x": 329.1922912597656, "y": 434.7519836425781, "score": 0.0005116076014868789 }, { "key": "multi-agent system", "label": "Multi-agent system", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Multi-agent%20system", "cluster": "23", "x": 509.9932861328125, "y": 144.24827575683594, "score": 0 }, { "key": "gratis versus libre", "label": "Gratis versus Libre", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Gratis%20versus%20Libre", "cluster": "20", "x": 197.1158447265625, "y": -460.4593505859375, "score": 0.00003328463098940034 }, { "key": "comparison of user features of messaging platforms", "label": "Comparison of user features of messaging platforms", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20user%20features%20of%20messaging%20platforms", "cluster": "20", "x": 87.74143981933594, "y": -380.4021301269531, "score": 0.00006478526470464186 }, { "key": "agent-based computational economics", "label": "Agent-based computational economics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Agent-based%20computational%20economics", "cluster": "18", "x": 229.64540100097656, "y": 38.52220153808594, "score": 0 }, { "key": "complex system", "label": "Complex system", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Complex%20system", "cluster": "23", "x": 543.8450317382812, "y": 147.0841827392578, "score": 0.00800319275908474 }, { "key": "digital signal processing", "label": "Digital signal processing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Digital%20signal%20processing", "cluster": "6", "x": 565.1092529296875, "y": -25.96892547607422, "score": 0 }, { "key": "singular value decomposition", "label": "Singular value decomposition", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Singular%20value%20decomposition", "cluster": "4", "x": 456.74169921875, "y": -337.4017639160156, "score": 0 }, { "key": "time series", "label": "Time series", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Time%20series", "cluster": "6", "x": 541.7145385742188, "y": 241.78982543945312, "score": 0.00639564643608507 }, { "key": "bloom filter", "label": "Bloom filter", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bloom%20filter", "cluster": "4", "x": -105.7248306274414, "y": -337.0135498046875, "score": 0 }, { "key": "network topology", "label": "Network topology", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Network%20topology", "cluster": "23", "x": 340.7329406738281, "y": -353.7868347167969, "score": 0.005575323072470626 }, { "key": "conceptual schema", "label": "Conceptual schema", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Conceptual%20schema", "cluster": "11", "x": -766.68017578125, "y": -107.61307525634766, "score": 0.009637202627847345 }, { "key": "information flow diagram", "label": "Information flow diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Information%20flow%20diagram", "cluster": "11", "x": -493.92413330078125, "y": 264.4044494628906, "score": 0.00538408586878123 }, { "key": "ontology double articulation", "label": "Ontology double articulation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Ontology%20double%20articulation", "cluster": "11", "x": -915.2867431640625, "y": 16.0206356048584, "score": 0.00006616918544932066 }, { "key": "ontology engineering", "label": "Ontology engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Ontology%20engineering", "cluster": "11", "x": -898.3510131835938, "y": -65.22189331054688, "score": 0.0009456223851615202 }, { "key": "three schema approach", "label": "Three schema approach", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Three%20schema%20approach", "cluster": "11", "x": -813.4497680664062, "y": 88.54154968261719, "score": 0.00601363731248895 }, { "key": "corporate interlocks", "label": "Corporate interlocks", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Corporate%20interlocks", "cluster": "12", "x": 1000.7335815429688, "y": -51.28310775756836, "score": 0.0009852289784252832 }, { "key": "diagram", "label": "Diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Diagram", "cluster": "7", "x": 121.15203094482422, "y": 355.6393737792969, "score": 0.003092928424355995 }, { "key": "network science", "label": "Network science", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Network%20science", "cluster": "23", "x": 584.8515625, "y": -184.48040771484375, "score": 0.015370294923733475 }, { "key": "social balance theory", "label": "Social balance theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Social%20balance%20theory", "cluster": "12", "x": 659.2833862304688, "y": -25.806032180786133, "score": 0.0006136037251403456 }, { "key": "sociomapping", "label": "Sociomapping", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Sociomapping", "cluster": "12", "x": 401.5265197753906, "y": 72.98868560791016, "score": 0.0027582599989017355 }, { "key": "sociometry", "label": "Sociometry", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Sociometry", "cluster": "12", "x": 644.1904296875, "y": -101.5832748413086, "score": 0.0008886706466340687 }, { "key": "psychodrama", "label": "Psychodrama", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Psychodrama", "cluster": "12", "x": 711.7054443359375, "y": -108.05734252929688, "score": 0 }, { "key": "social interaction", "label": "Social interaction", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20interaction", "cluster": "12", "x": 498.3294372558594, "y": -161.6749725341797, "score": 0.00006588639877795106 }, { "key": "social status", "label": "Social status", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20status", "cluster": "12", "x": 885.9220581054688, "y": -89.99811553955078, "score": 0.00022592177523854458 }, { "key": "socionics", "label": "Socionics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Socionics", "cluster": "12", "x": 497.3974914550781, "y": -245.2963409423828, "score": 0.00004530878911720917 }, { "key": "participatory rural appraisal", "label": "Participatory rural appraisal", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Participatory%20rural%20appraisal", "cluster": "12", "x": 263.2967529296875, "y": 103.8451156616211, "score": 0.00010624012442690744 }, { "key": "high-performance teams", "label": "High-performance teams", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/High-performance%20teams", "cluster": "12", "x": 456.6033630371094, "y": 85.7701187133789, "score": 0 }, { "key": "human resources", "label": "Human resources", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Human%20resources", "cluster": "12", "x": 504.3099060058594, "y": 337.7937316894531, "score": 0.00040289280154205974 }, { "key": "marketing research", "label": "Marketing research", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Marketing%20research", "cluster": "12", "x": -37.09001159667969, "y": 109.46442413330078, "score": 0.0009748383348749431 }, { "key": "team management", "label": "Team management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Team%20management", "cluster": "12", "x": 283.8828125, "y": 89.04645538330078, "score": 0.00010362978756076193 }, { "key": "balance theory", "label": "Balance theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Balance%20theory", "cluster": "12", "x": 723.817138671875, "y": -32.77190017700195, "score": 0 }, { "key": "cascading failure", "label": "Cascading failure", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cascading%20failure", "cluster": "23", "x": 674.1914672851562, "y": -81.17791748046875, "score": 0.0009222791125371322 }, { "key": "climate as complex networks", "label": "Climate as complex networks", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Climate%20as%20complex%20networks", "cluster": "23", "x": 618.2377319335938, "y": -257.0235900878906, "score": 0.00003549487981969545 }, { "key": "complex network", "label": "Complex network", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Complex%20network", "cluster": "23", "x": 622.0606689453125, "y": -226.56399536132812, "score": 0.005205055343000133 }, { "key": "core-periphery structure", "label": "Core-periphery structure", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Core-periphery%20structure", "cluster": "23", "x": 682.6489868164062, "y": -215.35052490234375, "score": 0 }, { "key": "erdős–rényi model", "label": "Erdős–Rényi model", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Erd%C5%91s%E2%80%93R%C3%A9nyi%20model", "cluster": "23", "x": 663.3567504882812, "y": -307.45404052734375, "score": 0 }, { "key": "higher category theory", "label": "Higher category theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Higher%20category%20theory", "cluster": "23", "x": 681.09521484375, "y": -204.5697784423828, "score": 0 }, { "key": "irregular warfare", "label": "Irregular warfare", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Irregular%20warfare", "cluster": "23", "x": 672.2198486328125, "y": -213.0634307861328, "score": 0 }, { "key": "interdependent networks", "label": "Interdependent networks", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Interdependent%20networks", "cluster": "23", "x": 665.0828857421875, "y": -146.79051208496094, "score": 0.00010076650649281758 }, { "key": "network management", "label": "Network management", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Network%20management", "cluster": "23", "x": 315.0943603515625, "y": 12.461662292480469, "score": 0.0023011087073808063 }, { "key": "network dynamics", "label": "Network dynamics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Network%20dynamics", "cluster": "23", "x": 625.439208984375, "y": -79.98066711425781, "score": 0.0016733492251719414 }, { "key": "network theory in risk assessment", "label": "Network theory in risk assessment", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Network%20theory%20in%20risk%20assessment", "cluster": "23", "x": 638.6533813476562, "y": -279.5897521972656, "score": 0 }, { "key": "percolation theory", "label": "Percolation theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Percolation%20theory", "cluster": "23", "x": 647.63427734375, "y": -170.54754638671875, "score": 0 }, { "key": "policy network analysis", "label": "Policy network analysis", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Policy%20network%20analysis", "cluster": "23", "x": 549.2850341796875, "y": -127.74978637695312, "score": 0.00007997110690691256 }, { "key": "quantum complex network", "label": "Quantum complex network", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Quantum%20complex%20network", "cluster": "23", "x": 663.628173828125, "y": -291.71551513671875, "score": 0.0000022741515145334646 }, { "key": "random networks", "label": "Random networks", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Random%20networks", "cluster": "0", "x": 423.2777404785156, "y": -637.0188598632812, "score": 0.00013766980896276628 }, { "key": "scale-free networks", "label": "Scale-free networks", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Scale-free%20networks", "cluster": "23", "x": 648.6868896484375, "y": -263.5137023925781, "score": 0 }, { "key": "sequential dynamical system", "label": "Sequential dynamical system", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Sequential%20dynamical%20system", "cluster": "23", "x": 508.7074279785156, "y": -31.29094696044922, "score": 0.0024182456586462073 }, { "key": "service network", "label": "Service network", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Service%20network", "cluster": "23", "x": 271.47418212890625, "y": -199.75201416015625, "score": 0.00004000632893944017 }, { "key": "small-world networks", "label": "Small-world networks", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Small-world%20networks", "cluster": "23", "x": 629.307861328125, "y": -279.2549133300781, "score": 0 }, { "key": "structural cut-off", "label": "Structural cut-off", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Structural%20cut-off", "cluster": "23", "x": 670.6571044921875, "y": -230.15090942382812, "score": 0 }, { "key": "gene regulatory network", "label": "Gene regulatory network", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Gene%20regulatory%20network", "cluster": "23", "x": 620.1283569335938, "y": -58.57662582397461, "score": 0 }, { "key": "dynamic bayesian network", "label": "Dynamic Bayesian network", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dynamic%20Bayesian%20network", "cluster": "23", "x": 630.6878662109375, "y": -56.81711959838867, "score": 0 }, { "key": "petri net", "label": "Petri net", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Petri%20net", "cluster": "5", "x": -64.0406494140625, "y": 489.8507385253906, "score": 0.0033095344164586864 }, { "key": "shortest path problem", "label": "Shortest path problem", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Shortest%20path%20problem", "cluster": "0", "x": 315.1103515625, "y": -860.375, "score": 0 }, { "key": "organizational studies", "label": "Organizational studies", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Organizational%20studies", "cluster": "23", "x": 139.52305603027344, "y": 422.25390625, "score": 0 }, { "key": "rational choice theory", "label": "Rational Choice Theory", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Rational%20Choice%20Theory", "cluster": "20", "x": 354.78277587890625, "y": 2.198561191558838, "score": 0 }, { "key": "computer network diagram", "label": "Computer network diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Computer%20network%20diagram", "cluster": "23", "x": -40.43094253540039, "y": 192.0843963623047, "score": 0 }, { "key": "dynamic network analysis", "label": "Dynamic network analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dynamic%20network%20analysis", "cluster": "23", "x": 614.1229858398438, "y": -132.9290771484375, "score": 0 }, { "key": "integrated business planning", "label": "Integrated business planning", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Integrated%20business%20planning", "cluster": "7", "x": -258.2174072265625, "y": 532.8021850585938, "score": 0.003125477575434664 }, { "key": "complex networks", "label": "Complex networks", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Complex%20networks", "cluster": "23", "x": 642.2870483398438, "y": -127.69355773925781, "score": 0 }, { "key": "graph algorithms", "label": "Graph algorithms", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Graph%20algorithms", "cluster": "0", "x": 284.11273193359375, "y": -672.4290161132812, "score": 0 }, { "key": "glossary of areas of mathematics", "label": "Glossary of areas of mathematics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Glossary%20of%20areas%20of%20mathematics", "cluster": "0", "x": 251.03172302246094, "y": -564.221923828125, "score": 0 }, { "key": "complex adaptive system", "label": "Complex adaptive system", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Complex%20adaptive%20system", "cluster": "23", "x": 357.5931091308594, "y": 218.02845764160156, "score": 0 }, { "key": "random graph theory of gelation", "label": "Random graph theory of gelation", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Random%20graph%20theory%20of%20gelation", "cluster": "23", "x": 655.7583618164062, "y": -328.0903625488281, "score": 0 }, { "key": "spatial network", "label": "Spatial network", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Spatial%20network", "cluster": "0", "x": 493.0230407714844, "y": -570.6432495117188, "score": 0 }, { "key": "a/b testing", "label": "A/B testing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/A%2FB%20testing", "cluster": "12", "x": -125.84085845947266, "y": 214.81069946289062, "score": 0 }, { "key": "human resource management", "label": "Human resource management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Human%20resource%20management", "cluster": "12", "x": 530.963623046875, "y": 424.569580078125, "score": 0 }, { "key": "chart", "label": "Chart", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Chart", "cluster": "7", "x": 147.73841857910156, "y": 513.7246704101562, "score": 0.00523556153992032 }, { "key": "experience model", "label": "Experience model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Experience%20model", "cluster": "7", "x": -64.29508209228516, "y": 623.9515380859375, "score": 0.00002159294183934529 }, { "key": "mathematical diagram", "label": "Mathematical diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Mathematical%20diagram", "cluster": "7", "x": 51.55959701538086, "y": 327.205322265625, "score": 0.00001950673943650351 }, { "key": "plot (graphics)", "label": "Plot (graphics)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Plot%20%28graphics%29", "cluster": "7", "x": 226.29275512695312, "y": 471.95458984375, "score": 0.0011170661942914353 }, { "key": "cartel", "label": "Cartel", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cartel", "cluster": "12", "x": 957.802978515625, "y": -163.83326721191406, "score": 0.0000011452103866001223 }, { "key": "insider trading", "label": "Insider trading", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Insider%20trading", "cluster": "12", "x": 1062.0511474609375, "y": -49.87458801269531, "score": 0 }, { "key": "oligarchy", "label": "Oligarchy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Oligarchy", "cluster": "12", "x": 1136.657958984375, "y": 100.82609558105469, "score": 0.00011234962175867031 }, { "key": "price fixing", "label": "Price fixing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Price%20fixing", "cluster": "12", "x": 1124.384033203125, "y": -3.7776777744293213, "score": 0.00007924855875272846 }, { "key": "revolving door (politics)", "label": "Revolving door (politics)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Revolving%20door%20%28politics%29", "cluster": "12", "x": 1060.7637939453125, "y": -58.899436950683594, "score": 0 }, { "key": "social class", "label": "Social class", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20class", "cluster": "12", "x": 910.8060302734375, "y": -148.99717712402344, "score": 0.00017300588519875157 }, { "key": "power (social and political)", "label": "Power (social and political)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Power%20%28social%20and%20political%29", "cluster": "12", "x": 720.8451538085938, "y": 70.49031829833984, "score": 0 }, { "key": "ranked society", "label": "Ranked society", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Ranked%20society", "cluster": "12", "x": 953.0074462890625, "y": -130.83358764648438, "score": 0 }, { "key": "social stratification", "label": "Social stratification", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20stratification", "cluster": "12", "x": 952.7125854492188, "y": -121.07569122314453, "score": 0 }, { "key": "social isolation", "label": "Social isolation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20isolation", "cluster": "12", "x": 544.5579223632812, "y": -257.4725341796875, "score": 0 }, { "key": "graph of a function", "label": "Graph of a function", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Graph%20of%20a%20function", "cluster": "7", "x": 214.8261260986328, "y": 536.7099609375, "score": 0 }, { "key": "oligopoly", "label": "Oligopoly", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Oligopoly", "cluster": "12", "x": 1167.8734130859375, "y": 45.90201187133789, "score": 0 }, { "key": "netocracy", "label": "Netocracy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Netocracy", "cluster": "12", "x": 1137.358154296875, "y": 317.7695617675781, "score": 0 }, { "key": "category theory", "label": "Category theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Category%20theory", "cluster": "11", "x": -267.40625, "y": -344.05755615234375, "score": 0 }, { "key": "mathematical visualization", "label": "Mathematical visualization", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Mathematical%20visualization", "cluster": "7", "x": 52.964813232421875, "y": 453.08551025390625, "score": 0 }, { "key": "corporate group", "label": "Corporate group", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Corporate%20group", "cluster": "12", "x": 807.8970947265625, "y": -250.41978454589844, "score": 0 }, { "key": "abstract data type", "label": "Abstract data type", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Abstract%20data%20type", "cluster": "10", "x": -139.67372131347656, "y": 66.47737121582031, "score": 0.0018596623655920232 }, { "key": "column (database)", "label": "Column (database)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Column%20%28database%29", "cluster": "7", "x": -456.0294494628906, "y": -69.3131103515625, "score": 0.000549181050963571 }, { "key": "information graphics", "label": "Information graphics", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Information%20graphics", "cluster": "7", "x": 86.16809844970703, "y": 605.8361206054688, "score": 0.004058668342332721 }, { "key": "row (database)", "label": "Row (database)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Row%20%28database%29", "cluster": "7", "x": -302.9822998046875, "y": 24.919052124023438, "score": 0 }, { "key": "table (database)", "label": "Table (database)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Table%20%28database%29", "cluster": "7", "x": -256.8033447265625, "y": 17.183134078979492, "score": 0.0000126519501491966 }, { "key": "html element", "label": "HTML element", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/HTML%20element", "cluster": "21", "x": -407.0863037109375, "y": 292.2245178222656, "score": 0.00017410824375879426 }, { "key": "tensor", "label": "Tensor", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Tensor", "cluster": "24", "x": 1142.591552734375, "y": -136.7915496826172, "score": 0.005610980346491715 }, { "key": "dependent and independent variables", "label": "Dependent and independent variables", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dependent%20and%20independent%20variables", "cluster": "6", "x": 257.4844665527344, "y": 17.17376708984375, "score": 0.0015573279679385922 }, { "key": "comparison of adobe flex charts", "label": "Comparison of Adobe Flex charts", "tag": "List", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20Adobe%20Flex%20charts", "cluster": "7", "x": 179.5890350341797, "y": 583.4415893554688, "score": 0 }, { "key": "official statistics", "label": "Official statistics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Official%20statistics", "cluster": "7", "x": 179.6500701904297, "y": 489.5248718261719, "score": 0 }, { "key": "edward tufte", "label": "Edward Tufte", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Edward%20Tufte", "cluster": "7", "x": 179.41012573242188, "y": 592.7823486328125, "score": 0 }, { "key": "misleading graph", "label": "Misleading graph", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Misleading%20graph", "cluster": "6", "x": 455.7414855957031, "y": 736.5419921875, "score": 0.0005465460987493687 }, { "key": "comparison of research networking tools and research profiling systems", "label": "Comparison of research networking tools and research profiling systems", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20research%20networking%20tools%20and%20research%20profiling%20systems", "cluster": "23", "x": 277.4710693359375, "y": -254.60671997070312, "score": 0.000025801588477201413 }, { "key": "social network", "label": "Social network", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20network", "cluster": "23", "x": 520.1463012695312, "y": -199.14596557617188, "score": 0.0014692640330654376 }, { "key": "data model", "label": "Data model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20model", "cluster": "11", "x": -573.428466796875, "y": 170.02952575683594, "score": 0.0002624059366750728 }, { "key": "data modeling", "label": "Data modeling", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20modeling", "cluster": "11", "x": -715.9280395507812, "y": 221.92384338378906, "score": 0.0007274261953099082 }, { "key": "entity-relationship model", "label": "Entity-relationship model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Entity-relationship%20model", "cluster": "11", "x": -919.983154296875, "y": 55.86155319213867, "score": 0.0007975446319854238 }, { "key": "information systems", "label": "Information systems", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Information%20systems", "cluster": "11", "x": -483.2300720214844, "y": 58.82343292236328, "score": 0.003452945884039904 }, { "key": "view model", "label": "View model", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/View%20model", "cluster": "11", "x": -753.7047729492188, "y": 284.38140869140625, "score": 0.0037239095285391947 }, { "key": "customer experience", "label": "Customer experience", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Customer%20experience", "cluster": "7", "x": -173.6382293701172, "y": 617.78515625, "score": 0 }, { "key": "user experience", "label": "User experience", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/User%20experience", "cluster": "7", "x": -95.32095336914062, "y": 750.9523315429688, "score": 0 }, { "key": "user experience design", "label": "User experience design", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/User%20experience%20design", "cluster": "7", "x": -92.37443542480469, "y": 597.5679321289062, "score": 0 }, { "key": "architectural pattern (computer science)", "label": "Architectural pattern (computer science)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Architectural%20pattern%20%28computer%20science%29", "cluster": "10", "x": -641.6134643554688, "y": 458.5372619628906, "score": 0 }, { "key": "comparison of data modeling tools", "label": "Comparison of data modeling tools", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20data%20modeling%20tools", "cluster": "11", "x": -895.63427734375, "y": 132.4441680908203, "score": 0 }, { "key": "data dictionary", "label": "Data dictionary", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20dictionary", "cluster": "11", "x": -682.8588256835938, "y": 218.9964599609375, "score": 0 }, { "key": "enterprise data modeling", "label": "Enterprise data modeling", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20data%20modeling", "cluster": "11", "x": -703.8192138671875, "y": 337.9732360839844, "score": 0 }, { "key": "entity data model", "label": "Entity Data Model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Entity%20Data%20Model", "cluster": "11", "x": -898.88134765625, "y": 121.73360443115234, "score": 0 }, { "key": "zachman framework", "label": "Zachman Framework", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Zachman%20Framework", "cluster": "11", "x": -784.284423828125, "y": 283.3746643066406, "score": 0 }, { "key": "core architecture data model", "label": "Core Architecture Data Model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Core%20Architecture%20Data%20Model", "cluster": "11", "x": -797.61767578125, "y": 168.5767364501953, "score": 0 }, { "key": "conceptual framework", "label": "Conceptual framework", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Conceptual%20framework", "cluster": "13", "x": -366.82568359375, "y": -509.0871887207031, "score": 0.00041917255682421417 }, { "key": "conceptual graphs", "label": "Conceptual graphs", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Conceptual%20graphs", "cluster": "11", "x": -731.0021362304688, "y": -455.65643310546875, "score": 0.0004166869018230204 }, { "key": "conceptual model (computer science)", "label": "Conceptual model (computer science)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Conceptual%20model%20%28computer%20science%29", "cluster": "11", "x": -833.1911010742188, "y": -107.02725982666016, "score": 0 }, { "key": "object-relationship modelling", "label": "Object-relationship modelling", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Object-relationship%20modelling", "cluster": "7", "x": -1069.1944580078125, "y": -483.10089111328125, "score": 0.00032716378746877085 }, { "key": "logical data model", "label": "Logical data model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Logical%20data%20model", "cluster": "11", "x": -935.5654296875, "y": 114.59930419921875, "score": 0.0005867395217666215 }, { "key": "physical data model", "label": "Physical data model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Physical%20data%20model", "cluster": "11", "x": -951.82568359375, "y": 56.18503189086914, "score": 0.00007890499563674842 }, { "key": "enterprise architecture framework", "label": "Enterprise Architecture framework", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20Architecture%20framework", "cluster": "11", "x": -778.4954833984375, "y": 341.3522644042969, "score": 0.00022808929374767503 }, { "key": "knowledge acquisition", "label": "Knowledge Acquisition", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Knowledge%20Acquisition", "cluster": "11", "x": -881.674560546875, "y": -28.308027267456055, "score": 0 }, { "key": "informatics", "label": "Informatics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Informatics", "cluster": "11", "x": -361.875732421875, "y": 215.1428680419922, "score": 0 }, { "key": "web science", "label": "Web science", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Web%20science", "cluster": "11", "x": -742.9218139648438, "y": -8.073659896850586, "score": 0 }, { "key": "internet think tanks", "label": "Internet think tanks", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Internet%20think%20tanks", "cluster": "20", "x": -73.83841705322266, "y": -223.26953125, "score": 0 }, { "key": "lateral diffusion", "label": "Lateral diffusion", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Lateral%20diffusion", "cluster": "20", "x": 180.13414001464844, "y": -255.76687622070312, "score": 0 }, { "key": "social web", "label": "Social web", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20web", "cluster": "23", "x": 354.60345458984375, "y": -184.33514404296875, "score": 0 }, { "key": "attention inequality", "label": "Attention inequality", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Attention%20inequality", "cluster": "6", "x": 747.5056762695312, "y": 135.09909057617188, "score": 0 }, { "key": "blockmodeling", "label": "Blockmodeling", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Blockmodeling", "cluster": "23", "x": 457.1258850097656, "y": -168.662353515625, "score": 0 }, { "key": "digital humanities", "label": "Digital humanities", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Digital%20humanities", "cluster": "23", "x": 153.31393432617188, "y": 145.1756591796875, "score": 0 }, { "key": "metcalfe's law", "label": "Metcalfe's law", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Metcalfe%27s%20law", "cluster": "6", "x": 737.8284301757812, "y": 135.54153442382812, "score": 0 }, { "key": "social media mining", "label": "Social media mining", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20media%20mining", "cluster": "23", "x": 206.0052947998047, "y": 69.44414520263672, "score": 0 }, { "key": "social networking service", "label": "Social networking service", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Social%20networking%20service", "cluster": "23", "x": 446.2694396972656, "y": -199.38815307617188, "score": 0 }, { "key": "cartesian product", "label": "Cartesian product", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cartesian%20product", "cluster": "3", "x": -732.6336059570312, "y": -795.23828125, "score": 0.000029312769162928427 }, { "key": "d (data language specification)", "label": "D (data language specification)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/D%20%28data%20language%20specification%29", "cluster": "7", "x": -773.3846435546875, "y": -533.365234375, "score": 0 }, { "key": "logic of relatives", "label": "Logic of relatives", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Logic%20of%20relatives", "cluster": "3", "x": -544.8338623046875, "y": -883.40576171875, "score": 0.008211840919134246 }, { "key": "projection (mathematics)", "label": "Projection (mathematics)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Projection%20%28mathematics%29", "cluster": "3", "x": -736.1635131835938, "y": -732.5634765625, "score": 0 }, { "key": "projection (relational algebra)", "label": "Projection (relational algebra)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Projection%20%28relational%20algebra%29", "cluster": "3", "x": -755.01513671875, "y": -748.3932495117188, "score": 0 }, { "key": "projection (set theory)", "label": "Projection (set theory)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Projection%20%28set%20theory%29", "cluster": "3", "x": -711.3181762695312, "y": -760.417724609375, "score": 0.0004562136443419354 }, { "key": "relation (mathematics)", "label": "Relation (mathematics)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Relation%20%28mathematics%29", "cluster": "3", "x": -495.427001953125, "y": -699.4347534179688, "score": 0.006513154683580855 }, { "key": "relation (database)", "label": "Relation (database)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Relation%20%28database%29", "cluster": "7", "x": -499.13330078125, "y": -315.5602722167969, "score": 0 }, { "key": "relation algebra", "label": "Relation algebra", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Relation%20algebra", "cluster": "3", "x": -636.9330444335938, "y": -818.1524658203125, "score": 0.0053980158657584605 }, { "key": "relation composition", "label": "Relation composition", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Relation%20composition", "cluster": "3", "x": -733.6384887695312, "y": -709.36279296875, "score": 0 }, { "key": "relation construction", "label": "Relation construction", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Relation%20construction", "cluster": "3", "x": -688.7135009765625, "y": -742.553955078125, "score": 0.00002883800341487175 }, { "key": "relational calculus", "label": "Relational calculus", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Relational%20calculus", "cluster": "3", "x": -737.7984008789062, "y": -744.6466064453125, "score": 0 }, { "key": "relational database", "label": "Relational database", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Relational%20database", "cluster": "7", "x": -677.534423828125, "y": -371.0596008300781, "score": 0.0004907135033422022 }, { "key": "theory of relations", "label": "Theory of relations", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Theory%20of%20relations", "cluster": "3", "x": -584.7903442382812, "y": -775.6015625, "score": 0.0010679387250639913 }, { "key": "triadic relation", "label": "Triadic relation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Triadic%20relation", "cluster": "3", "x": -544.1224365234375, "y": -722.4166870117188, "score": 0 }, { "key": "tuple relational calculus", "label": "Tuple relational calculus", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Tuple%20relational%20calculus", "cluster": "3", "x": -763.7758178710938, "y": -692.2890014648438, "score": 0.0000068916381407649166 }, { "key": "sql", "label": "SQL", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/SQL", "cluster": "7", "x": -753.0342407226562, "y": -372.5081481933594, "score": 0.0005310399676752576 }, { "key": "ontology modularization", "label": "Ontology modularization", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Ontology%20modularization", "cluster": "11", "x": -964.8475341796875, "y": -2.406156063079834, "score": 0 }, { "key": "access control matrix", "label": "Access Control Matrix", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Access%20Control%20Matrix", "cluster": "11", "x": -561.0482788085938, "y": 293.1657409667969, "score": 0 }, { "key": "business process model and notation", "label": "Business Process Model and Notation", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Business%20Process%20Model%20and%20Notation", "cluster": "5", "x": -608.1087646484375, "y": 771.8181762695312, "score": 0.006564753881560358 }, { "key": "information cascade", "label": "Information cascade", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Information%20cascade", "cluster": "18", "x": -107.58844757080078, "y": 61.160240173339844, "score": 0.0000846109660278661 }, { "key": "niam", "label": "NIAM", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/NIAM", "cluster": "11", "x": -751.4327392578125, "y": -30.974014282226562, "score": 0.0005174036217250015 }, { "key": "system context diagram", "label": "System context diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/System%20context%20diagram", "cluster": "5", "x": -440.8547668457031, "y": 734.8453979492188, "score": 0.0029765916940064524 }, { "key": "associative entity", "label": "Associative entity", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Associative%20entity", "cluster": "11", "x": -1004.1546020507812, "y": 46.394004821777344, "score": 0 }, { "key": "database design", "label": "Database design", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Database%20design", "cluster": "11", "x": -1034.5821533203125, "y": 105.30268859863281, "score": 0 }, { "key": "data structure diagram", "label": "Data structure diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Data%20structure%20diagram", "cluster": "11", "x": -989.298095703125, "y": 59.3989372253418, "score": 0 }, { "key": "enhanced entity–relationship model", "label": "Enhanced entity–relationship model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enhanced%20entity%E2%80%93relationship%20model", "cluster": "11", "x": -999.5321655273438, "y": 55.46980285644531, "score": 0 }, { "key": "fundamental modeling concepts", "label": "Fundamental modeling concepts", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Fundamental%20modeling%20concepts", "cluster": "11", "x": -982.1033325195312, "y": 51.99740219116211, "score": 0 }, { "key": "structured entity relationship model", "label": "Structured entity relationship model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Structured%20entity%20relationship%20model", "cluster": "11", "x": -989.3411254882812, "y": 44.046695709228516, "score": 0 }, { "key": "schema-agnostic databases", "label": "Schema-agnostic databases", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Schema-agnostic%20databases", "cluster": "11", "x": -997.8306884765625, "y": 38.852272033691406, "score": 0 }, { "key": "data flow diagram", "label": "Data flow diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Data%20flow%20diagram", "cluster": "5", "x": -501.22442626953125, "y": 834.7671508789062, "score": 0.003081592692552697 }, { "key": "event partitioning", "label": "Event partitioning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Event%20partitioning", "cluster": "5", "x": -569.48388671875, "y": 939.919677734375, "score": 0 }, { "key": "requirements analysis", "label": "Requirements analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Requirements%20analysis", "cluster": "5", "x": -487.88787841796875, "y": 738.0288696289062, "score": 0 }, { "key": "software development process", "label": "Software development process", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Software%20development%20process", "cluster": "7", "x": -99.95191192626953, "y": 915.2825927734375, "score": 0.004506163025821539 }, { "key": "systems analysis", "label": "Systems analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Systems%20analysis", "cluster": "5", "x": -416.60333251953125, "y": 860.3099975585938, "score": 0 }, { "key": "hyperdata", "label": "Hyperdata", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Hyperdata", "cluster": "11", "x": -1007.5444946289062, "y": -117.02448272705078, "score": 0 }, { "key": "bpel", "label": "BPEL", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/BPEL", "cluster": "5", "x": -642.6632080078125, "y": 732.9591064453125, "score": 0 }, { "key": "business process management", "label": "Business process management", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Business%20process%20management", "cluster": "5", "x": -340.5478515625, "y": 692.3075561523438, "score": 0.012659040925941008 }, { "key": "business process modeling", "label": "Business process modeling", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Business%20process%20modeling", "cluster": "5", "x": -436.25616455078125, "y": 621.6294555664062, "score": 0.0033546819581055922 }, { "key": "comparison of business process model and notation modeling tools", "label": "Comparison of Business Process Model and Notation modeling tools", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20Business%20Process%20Model%20and%20Notation%20modeling%20tools", "cluster": "5", "x": -635.0695190429688, "y": 834.9656372070312, "score": 0 }, { "key": "decision model and notation", "label": "Decision Model and Notation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Decision%20Model%20and%20Notation", "cluster": "5", "x": -657.2335205078125, "y": 845.9136962890625, "score": 0 }, { "key": "cmmn", "label": "CMMN", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/CMMN", "cluster": "5", "x": -646.7543334960938, "y": 851.3272705078125, "score": 0 }, { "key": "process driven messaging service", "label": "Process Driven Messaging Service", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Process%20Driven%20Messaging%20Service", "cluster": "5", "x": -661.1928100585938, "y": 835.28271484375, "score": 0 }, { "key": "event-driven process chain", "label": "Event-driven process chain", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Event-driven%20process%20chain", "cluster": "5", "x": -366.55780029296875, "y": 767.5836181640625, "score": 0.0049557038154235886 }, { "key": "function model", "label": "Function model", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Function%20model", "cluster": "5", "x": -623.1881103515625, "y": 750.3380737304688, "score": 0.0032428807156994316 }, { "key": "functional software architecture", "label": "Functional software architecture", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Functional%20software%20architecture", "cluster": "5", "x": -658.6253662109375, "y": 808.2847900390625, "score": 0 }, { "key": "workflow", "label": "Workflow", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Workflow", "cluster": "5", "x": -430.2569580078125, "y": 699.4789428710938, "score": 0.003674055541577292 }, { "key": "workflow patterns", "label": "Workflow patterns", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Workflow%20patterns", "cluster": "5", "x": -636.9915161132812, "y": 846.81494140625, "score": 0 }, { "key": "service component architecture", "label": "Service Component Architecture", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Service%20Component%20Architecture", "cluster": "5", "x": -654.9743041992188, "y": 827.1778564453125, "score": 0 }, { "key": "xpdl", "label": "XPDL", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/XPDL", "cluster": "5", "x": -644.1870727539062, "y": 827.5801391601562, "score": 0 }, { "key": "yawl", "label": "YAWL", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/YAWL", "cluster": "5", "x": -647.29296875, "y": 839.1651611328125, "score": 0 }, { "key": "business semantics management", "label": "Business semantics management", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Business%20semantics%20management", "cluster": "11", "x": -924.2916259765625, "y": 181.90249633789062, "score": 0.010259462472094494 }, { "key": "internet of things", "label": "Internet of things", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Internet%20of%20things", "cluster": "7", "x": -718.9330444335938, "y": 127.6351089477539, "score": 0 }, { "key": "semantic computing", "label": "Semantic computing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Semantic%20computing", "cluster": "11", "x": -1012.7081298828125, "y": -129.7097625732422, "score": 0.0001694232231370085 }, { "key": "information extraction", "label": "Information extraction", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Information%20extraction", "cluster": "11", "x": -580.7855224609375, "y": -18.739316940307617, "score": 0 }, { "key": "natural language understanding", "label": "Natural language understanding", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Natural%20language%20understanding", "cluster": "11", "x": -946.0328369140625, "y": -183.04129028320312, "score": 0 }, { "key": "data integration", "label": "Data integration", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Data%20integration", "cluster": "11", "x": -1047.5982666015625, "y": 186.505126953125, "score": 0.019929313964968016 }, { "key": "dataspaces", "label": "Dataspaces", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dataspaces", "cluster": "11", "x": -1098.6026611328125, "y": 121.02457427978516, "score": 0.00012053570313871945 }, { "key": "enterprise integration", "label": "Enterprise integration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20integration", "cluster": "11", "x": -1002.1580200195312, "y": 174.21722412109375, "score": 0.0012203615018184847 }, { "key": "ontology-based data integration", "label": "Ontology-based data integration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Ontology-based%20data%20integration", "cluster": "11", "x": -1093.3931884765625, "y": -33.122947692871094, "score": 0 }, { "key": "domain relational calculus", "label": "Domain relational calculus", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Domain%20relational%20calculus", "cluster": "3", "x": -749.2637329101562, "y": -693.8828125, "score": 0 }, { "key": "query language", "label": "Query language", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Query%20language", "cluster": "7", "x": -574.495361328125, "y": -374.2474060058594, "score": 0 }, { "key": "object database", "label": "Object database", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Object%20database", "cluster": "7", "x": -810.4156494140625, "y": -498.0569152832031, "score": 0 }, { "key": "hierarchical database model", "label": "Hierarchical database model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Hierarchical%20database%20model", "cluster": "7", "x": -532.62939453125, "y": -554.4160766601562, "score": 0 }, { "key": "star schema", "label": "Star schema", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Star%20schema", "cluster": "7", "x": -765.3233642578125, "y": -420.094970703125, "score": 0 }, { "key": "snowflake schema", "label": "Snowflake schema", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Snowflake%20schema", "cluster": "7", "x": -772.0069580078125, "y": -414.1158142089844, "score": 0 }, { "key": "incidence structure", "label": "Incidence structure", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Incidence%20structure", "cluster": "3", "x": -391.26263427734375, "y": -769.423095703125, "score": 0 }, { "key": "logical matrix", "label": "Logical matrix", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Logical%20matrix", "cluster": "3", "x": -605.3846435546875, "y": -886.6253051757812, "score": 0 }, { "key": "binary relation", "label": "Binary relation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Binary%20relation", "cluster": "3", "x": -729.7572631835938, "y": -848.2777709960938, "score": 0 }, { "key": "charles sanders peirce's type–token distinction", "label": "Charles Sanders Peirce's type–token distinction", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Charles%20Sanders%20Peirce%27s%20type%E2%80%93token%20distinction", "cluster": "3", "x": -510.0713806152344, "y": -791.0380249023438, "score": 0.00020723699883984004 }, { "key": "continuous predicate", "label": "Continuous predicate", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Continuous%20predicate", "cluster": "3", "x": -504.08575439453125, "y": -869.7339477539062, "score": 0 }, { "key": "howland will forgery trial", "label": "Howland will forgery trial", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Howland%20will%20forgery%20trial", "cluster": "3", "x": -581.4688110351562, "y": -953.5287475585938, "score": 0 }, { "key": "hypostatic abstraction", "label": "Hypostatic abstraction", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Hypostatic%20abstraction", "cluster": "3", "x": -411.2108154296875, "y": -707.8389282226562, "score": 0.00016242594098243377 }, { "key": "logical machine", "label": "Logical machine", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Logical%20machine", "cluster": "3", "x": -570.4732666015625, "y": -946.6503295898438, "score": 0 }, { "key": "mathematical psychology", "label": "Mathematical psychology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Mathematical%20psychology", "cluster": "3", "x": -560.1385498046875, "y": -938.8958740234375, "score": 0 }, { "key": "peirce triangle", "label": "Peirce triangle", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Peirce%20triangle", "cluster": "3", "x": -580.8923950195312, "y": -941.865478515625, "score": 0 }, { "key": "peircean realism", "label": "Peircean realism", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Peircean%20realism", "cluster": "3", "x": -380.69329833984375, "y": -682.9061279296875, "score": 0.000031688265452179944 }, { "key": "phaneron", "label": "Phaneron", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Phaneron", "cluster": "3", "x": -570.9852294921875, "y": -934.90234375, "score": 0 }, { "key": "pragmatics", "label": "Pragmatics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Pragmatics", "cluster": "3", "x": -572.0177001953125, "y": -958.8780517578125, "score": 0 }, { "key": "oliver wendell holmes jr.", "label": "Oliver Wendell Holmes Jr.", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/Oliver%20Wendell%20Holmes%20Jr.", "cluster": "3", "x": -553.4148559570312, "y": -947.9420776367188, "score": 0 }, { "key": "george herbert mead", "label": "George Herbert Mead", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/George%20Herbert%20Mead", "cluster": "3", "x": -561.02783203125, "y": -954.70166015625, "score": 0 }, { "key": "database schema", "label": "Database schema", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Database%20schema", "cluster": "11", "x": -1002.7421875, "y": 110.32290649414062, "score": 0 }, { "key": "dodaf", "label": "DODAF", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/DODAF", "cluster": "5", "x": -927.440673828125, "y": 410.40557861328125, "score": 0.00003721827160823464 }, { "key": "comparison of object–relational mapping software", "label": "Comparison of object–relational mapping software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20object%E2%80%93relational%20mapping%20software", "cluster": "7", "x": -1118.1097412109375, "y": -481.06243896484375, "score": 0 }, { "key": "autofetch", "label": "AutoFetch", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/AutoFetch", "cluster": "7", "x": -1149.3358154296875, "y": -471.4416809082031, "score": 0 }, { "key": "common object request broker architecture", "label": "Common Object Request Broker Architecture", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Common%20Object%20Request%20Broker%20Architecture", "cluster": "7", "x": -1130.7840576171875, "y": -497.6950378417969, "score": 0 }, { "key": "object persistence", "label": "Object persistence", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Object%20persistence", "cluster": "7", "x": -1144.1522216796875, "y": -461.0632629394531, "score": 0 }, { "key": "object–relational database", "label": "Object–relational database", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Object%E2%80%93relational%20database", "cluster": "7", "x": -1127.542236328125, "y": -475.984130859375, "score": 0 }, { "key": "object–relational impedance mismatch", "label": "Object–relational impedance mismatch", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Object%E2%80%93relational%20impedance%20mismatch", "cluster": "7", "x": -1146.9840087890625, "y": -481.76080322265625, "score": 0 }, { "key": "java data objects", "label": "Java Data Objects", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Java%20Data%20Objects", "cluster": "7", "x": -1123.0543212890625, "y": -466.6082458496094, "score": 0 }, { "key": "service data objects", "label": "Service Data Objects", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Service%20Data%20Objects", "cluster": "7", "x": -1137.9752197265625, "y": -471.70635986328125, "score": 0 }, { "key": "entity framework", "label": "Entity Framework", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Entity%20Framework", "cluster": "7", "x": -1133.20263671875, "y": -485.5256652832031, "score": 0 }, { "key": "active record pattern", "label": "Active record pattern", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Active%20record%20pattern", "cluster": "7", "x": -1120.7591552734375, "y": -492.5535888671875, "score": 0 }, { "key": "data mapper pattern", "label": "Data mapper pattern", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20mapper%20pattern", "cluster": "7", "x": -1132.878173828125, "y": -459.45928955078125, "score": 0 }, { "key": "single table inheritance", "label": "Single Table Inheritance", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Single%20Table%20Inheritance", "cluster": "7", "x": -1141.990478515625, "y": -491.9122009277344, "score": 0 }, { "key": "conceptual model", "label": "Conceptual model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Conceptual%20model", "cluster": "13", "x": -365.6423034667969, "y": -567.5831909179688, "score": 0 }, { "key": "cambridge school (intellectual history)", "label": "Cambridge School (intellectual history)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cambridge%20School%20%28intellectual%20history%29", "cluster": "13", "x": -92.84095764160156, "y": -858.52783203125, "score": 0 }, { "key": "global intellectual history", "label": "Global intellectual history", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Global%20intellectual%20history", "cluster": "13", "x": -103.6487045288086, "y": -862.6043090820312, "score": 0 }, { "key": "great conversation", "label": "Great Conversation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Great%20Conversation", "cluster": "13", "x": -94.95337677001953, "y": -869.438232421875, "score": 0 }, { "key": "abstraction", "label": "Abstraction", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Abstraction", "cluster": "13", "x": -335.81695556640625, "y": -646.9320068359375, "score": 0 }, { "key": "class (philosophy)", "label": "Class (philosophy)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Class%20%28philosophy%29", "cluster": "13", "x": -439.55914306640625, "y": -710.6078491210938, "score": 0 }, { "key": "black box", "label": "Black box", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Black%20box", "cluster": "6", "x": -117.63872528076172, "y": 711.2628173828125, "score": 0 }, { "key": "futures studies", "label": "Futures studies", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Futures%20studies", "cluster": "6", "x": 172.4053192138672, "y": 465.404052734375, "score": 0 }, { "key": "leaderless resistance", "label": "Leaderless resistance", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Leaderless%20resistance", "cluster": "10", "x": 12.362760543823242, "y": 134.29586791992188, "score": 0 }, { "key": "tragedy of the commons", "label": "Tragedy of the commons", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Tragedy%20of%20the%20commons", "cluster": "23", "x": 370.53094482421875, "y": 371.2268981933594, "score": 0 }, { "key": "industrial revolution", "label": "Industrial Revolution", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Industrial%20Revolution", "cluster": "10", "x": 357.2461853027344, "y": 737.0595703125, "score": 0 }, { "key": "kick the cat", "label": "Kick the cat", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Kick%20the%20cat", "cluster": "12", "x": 476.8334655761719, "y": 373.9898681640625, "score": 0 }, { "key": "kiss up kick down", "label": "Kiss up kick down", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Kiss%20up%20kick%20down", "cluster": "12", "x": 498.35601806640625, "y": 377.97930908203125, "score": 0 }, { "key": "machiavellianism in the workplace", "label": "Machiavellianism in the workplace", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Machiavellianism%20in%20the%20workplace", "cluster": "12", "x": 485.711181640625, "y": 394.36767578125, "score": 0 }, { "key": "narcissism in the workplace", "label": "Narcissism in the workplace", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Narcissism%20in%20the%20workplace", "cluster": "12", "x": 474.716064453125, "y": 388.0680236816406, "score": 0 }, { "key": "organizational behavior", "label": "Organizational behavior", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Organizational%20behavior", "cluster": "12", "x": 494.2652282714844, "y": 388.01318359375, "score": 0 }, { "key": "organizational learning", "label": "Organizational learning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Organizational%20learning", "cluster": "12", "x": 488.94842529296875, "y": 371.861572265625, "score": 0 }, { "key": "psychopathy in the workplace", "label": "Psychopathy in the workplace", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Psychopathy%20in%20the%20workplace", "cluster": "12", "x": 483.9680480957031, "y": 382.0085754394531, "score": 0 }, { "key": "information technology", "label": "Information technology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Information%20technology", "cluster": "21", "x": -188.85440063476562, "y": 571.6356201171875, "score": 0 }, { "key": "project management", "label": "Project management", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Project%20management", "cluster": "8", "x": -26.35259437561035, "y": 1029.10595703125, "score": 0.02252252337496163 }, { "key": "business process", "label": "Business process", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Business%20process", "cluster": "5", "x": -438.5159912109375, "y": 673.76318359375, "score": 0.0026778800446167184 }, { "key": "strategic management", "label": "Strategic management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Strategic%20management", "cluster": "21", "x": -149.6686553955078, "y": 575.9491577148438, "score": 0 }, { "key": "data management", "label": "Data management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20management", "cluster": "21", "x": -541.0967407226562, "y": 234.17434692382812, "score": 0 }, { "key": "three circles model", "label": "Three circles model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Three%20circles%20model", "cluster": "3", "x": -12.67875862121582, "y": -725.1358642578125, "score": 0.000713080137471508 }, { "key": "biological organisation", "label": "Biological organisation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Biological%20organisation", "cluster": "10", "x": 460.66839599609375, "y": 121.83565521240234, "score": 0 }, { "key": "systems engineering", "label": "Systems engineering", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Systems%20engineering", "cluster": "10", "x": 1.6583561897277832, "y": 868.6165161132812, "score": 0.0026838698703915915 }, { "key": "system accident", "label": "System accident", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/System%20accident", "cluster": "10", "x": 223.26748657226562, "y": 607.5626831054688, "score": 0 }, { "key": "arcadia (engineering)", "label": "Arcadia (engineering)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Arcadia%20%28engineering%29", "cluster": "10", "x": -86.5046157836914, "y": 860.94873046875, "score": 0 }, { "key": "control engineering", "label": "Control engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Control%20engineering", "cluster": "10", "x": 44.80585479736328, "y": 905.6578369140625, "score": 0 }, { "key": "design review (u.s. government)", "label": "Design review (U.S. government)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Design%20review%20%28U.S.%20government%29", "cluster": "10", "x": 28.054973602294922, "y": 920.3680419921875, "score": 0 }, { "key": "enterprise systems engineering", "label": "Enterprise systems engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20systems%20engineering", "cluster": "10", "x": 136.9336700439453, "y": 680.3936157226562, "score": 0 }, { "key": "industrial engineering", "label": "Industrial engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Industrial%20engineering", "cluster": "10", "x": 180.4156951904297, "y": 939.9520874023438, "score": 0.00013442082276400916 }, { "key": "interdisciplinarity", "label": "Interdisciplinarity", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Interdisciplinarity", "cluster": "10", "x": 47.41103744506836, "y": 916.5247802734375, "score": 0 }, { "key": "management cybernetics", "label": "Management cybernetics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Management%20cybernetics", "cluster": "10", "x": 37.02629089355469, "y": 916.193603515625, "score": 0 }, { "key": "model-based systems engineering", "label": "Model-based systems engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Model-based%20systems%20engineering", "cluster": "10", "x": -207.24610900878906, "y": 829.3639526367188, "score": 0 }, { "key": "operations management", "label": "Operations management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Operations%20management", "cluster": "10", "x": 91.228515625, "y": 946.3366088867188, "score": 0 }, { "key": "structured systems analysis and design method", "label": "Structured systems analysis and design method", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Structured%20systems%20analysis%20and%20design%20method", "cluster": "10", "x": -158.71266174316406, "y": 933.1503295898438, "score": 0 }, { "key": "system of systems engineering", "label": "System of systems engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/System%20of%20systems%20engineering", "cluster": "10", "x": 32.97751235961914, "y": 904.760498046875, "score": 0 }, { "key": "systems architecture", "label": "Systems architecture", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Systems%20architecture", "cluster": "10", "x": -283.61669921875, "y": 730.843017578125, "score": 0.00145250634342438 }, { "key": "systems development life cycle", "label": "Systems development life cycle", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Systems%20development%20life%20cycle", "cluster": "10", "x": 10.629467964172363, "y": 937.2325439453125, "score": 0.0018111183530317423 }, { "key": "theory of constraints", "label": "theory of constraints", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/theory%20of%20constraints", "cluster": "10", "x": 113.94560241699219, "y": 1000.0180053710938, "score": 0 }, { "key": "value-stream mapping", "label": "value-stream mapping", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/value-stream%20mapping", "cluster": "5", "x": -235.3752899169922, "y": 956.4769287109375, "score": 0.0012436022167745951 }, { "key": "system information modelling", "label": "System information modelling", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/System%20information%20modelling", "cluster": "10", "x": 21.69603157043457, "y": 910.6030883789062, "score": 0 }, { "key": "calendaring software", "label": "Calendaring software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Calendaring%20software", "cluster": "8", "x": -228.03311157226562, "y": 628.3843383789062, "score": 0 }, { "key": "anekantavada", "label": "Anekantavada", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Anekantavada", "cluster": "13", "x": -225.52940368652344, "y": -834.5426635742188, "score": 0 }, { "key": "metaphilosophy", "label": "Metaphilosophy", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Metaphilosophy", "cluster": "11", "x": -384.94793701171875, "y": -566.1893920898438, "score": 0 }, { "key": "biological network", "label": "Biological network", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Biological%20network", "cluster": "15", "x": 880.0720825195312, "y": -549.2908935546875, "score": 0 }, { "key": "network medicine", "label": "Network medicine", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Network%20medicine", "cluster": "15", "x": 793.74609375, "y": -503.0152282714844, "score": 0 }, { "key": "propositional logic", "label": "Propositional logic", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Propositional%20logic", "cluster": "3", "x": -320.9803771972656, "y": -1063.607177734375, "score": 0 }, { "key": "topincs", "label": "Topincs", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Topincs", "cluster": "11", "x": -826.185791015625, "y": 642.3563232421875, "score": 0.0004460826566728731 }, { "key": "unified modeling language", "label": "Unified Modeling Language", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Unified%20Modeling%20Language", "cluster": "5", "x": -806.2557373046875, "y": 612.8755493164062, "score": 0.00506010245073819 }, { "key": "applications of uml", "label": "Applications of UML", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Applications%20of%20UML", "cluster": "5", "x": -856.5845336914062, "y": 650.8152465820312, "score": 0 }, { "key": "c4 model (software)", "label": "C4 model (software)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/C4%20model%20%28software%29", "cluster": "5", "x": -652.7296142578125, "y": 704.5010375976562, "score": 0.00006031294958848542 }, { "key": "model-based testing", "label": "Model-based testing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Model-based%20testing", "cluster": "5", "x": -779.7738037109375, "y": 741.5535888671875, "score": 0.000311328383628664 }, { "key": "model-driven engineering", "label": "Model-driven engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Model-driven%20engineering", "cluster": "5", "x": -674.1777954101562, "y": 720.8949584960938, "score": 0.0014377440445298365 }, { "key": "object oriented role analysis and modeling", "label": "Object Oriented Role Analysis and Modeling", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Object%20Oriented%20Role%20Analysis%20and%20Modeling", "cluster": "5", "x": -832.5379028320312, "y": 532.28759765625, "score": 0.0003287646739345337 }, { "key": "systems modeling language", "label": "Systems Modeling Language", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Systems%20Modeling%20Language", "cluster": "5", "x": -849.6801147460938, "y": 690.001953125, "score": 0.0001549919772065176 }, { "key": "modaf meta-model", "label": "MODAF Meta-Model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/MODAF%20Meta-Model", "cluster": "5", "x": -835.2803955078125, "y": 573.7604370117188, "score": 0 }, { "key": "rapid application development", "label": "Rapid application development", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Rapid%20application%20development", "cluster": "5", "x": -680.2047119140625, "y": 916.832275390625, "score": 0.00006906654136797995 }, { "key": "metamodeling", "label": "Metamodeling", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Metamodeling", "cluster": "5", "x": -644.9735717773438, "y": 621.4142456054688, "score": 0.0001438687177928435 }, { "key": "udef", "label": "UDEF", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/UDEF", "cluster": "11", "x": -1035.24267578125, "y": 74.9811019897461, "score": 0.0003922047906371644 }, { "key": "semantic relatedness", "label": "Semantic relatedness", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Semantic%20relatedness", "cluster": "11", "x": -858.95458984375, "y": -317.902099609375, "score": 0 }, { "key": "word sense induction", "label": "Word sense induction", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Word%20sense%20induction", "cluster": "11", "x": -1081.2760009765625, "y": -333.9969482421875, "score": 0 }, { "key": "wolfram alpha", "label": "Wolfram Alpha", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Wolfram%20Alpha", "cluster": "11", "x": -1021.5953369140625, "y": -506.3144226074219, "score": 0 }, { "key": "architecture of interoperable information systems", "label": "Architecture of Interoperable Information Systems", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Architecture%20of%20Interoperable%20Information%20Systems", "cluster": "11", "x": -850.0198974609375, "y": 97.63417053222656, "score": 0 }, { "key": "universal data element framework", "label": "Universal Data Element Framework", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Universal%20Data%20Element%20Framework", "cluster": "11", "x": -703.877197265625, "y": -16.17984390258789, "score": 0 }, { "key": "change data capture", "label": "Change data capture", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Change%20data%20capture", "cluster": "11", "x": -1170.836181640625, "y": 149.74725341796875, "score": 0.000053458706503825904 }, { "key": "core data integration", "label": "Core data integration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Core%20data%20integration", "cluster": "11", "x": -1153.622802734375, "y": 202.41580200195312, "score": 0.00045558759599726074 }, { "key": "customer data integration", "label": "Customer data integration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Customer%20data%20integration", "cluster": "11", "x": -1095.4864501953125, "y": 195.82301330566406, "score": 0.00002049449007884742 }, { "key": "cyberinfrastructure", "label": "Cyberinfrastructure", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cyberinfrastructure", "cluster": "11", "x": -1132.417724609375, "y": 237.9572296142578, "score": 0 }, { "key": "data blending", "label": "Data blending", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20blending", "cluster": "11", "x": -1096.10400390625, "y": 316.1708068847656, "score": 0.00038964385249651225 }, { "key": "data curation", "label": "Data curation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20curation", "cluster": "11", "x": -1149.4471435546875, "y": 269.6952819824219, "score": 0 }, { "key": "data fusion", "label": "Data fusion", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20fusion", "cluster": "11", "x": -823.5881958007812, "y": 277.9811096191406, "score": 0.000990922556629204 }, { "key": "data mapping", "label": "Data mapping", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Data%20mapping", "cluster": "11", "x": -1114.010498046875, "y": 59.82855987548828, "score": 0.0004587244833347047 }, { "key": "data wrangling", "label": "Data wrangling", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20wrangling", "cluster": "11", "x": -1167.3707275390625, "y": 248.2338409423828, "score": 0.00008332803716933807 }, { "key": "database model", "label": "Database model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Database%20model", "cluster": "11", "x": -1127.4195556640625, "y": 167.2911376953125, "score": 0.0000719772199257256 }, { "key": "edge data integration", "label": "Edge data integration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Edge%20data%20integration", "cluster": "11", "x": -1127.294921875, "y": 185.39830017089844, "score": 0.000012684712963349396 }, { "key": "enterprise application integration", "label": "Enterprise application integration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20application%20integration", "cluster": "11", "x": -1010.3392333984375, "y": 194.34793090820312, "score": 0.0002237821751449695 }, { "key": "enterprise information integration", "label": "Enterprise information integration", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Enterprise%20information%20integration", "cluster": "11", "x": -975.3754272460938, "y": 92.78787231445312, "score": 0.0024187108470406925 }, { "key": "geodi", "label": "Geodi", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Geodi", "cluster": "11", "x": -1144.8828125, "y": 229.98580932617188, "score": 0 }, { "key": "information integration", "label": "Information integration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Information%20integration", "cluster": "11", "x": -822.8197021484375, "y": 246.27622985839844, "score": 0.001173233009324741 }, { "key": "information server", "label": "Information server", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Information%20server", "cluster": "11", "x": -1139.673583984375, "y": 217.13792419433594, "score": 0 }, { "key": "information silo", "label": "Information silo", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Information%20silo", "cluster": "11", "x": -1133.6015625, "y": 227.45944213867188, "score": 0 }, { "key": "integration competency center", "label": "Integration Competency Center", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Integration%20Competency%20Center", "cluster": "11", "x": -1102.43408203125, "y": 239.16384887695312, "score": 0 }, { "key": "integration consortium", "label": "Integration Consortium", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Integration%20Consortium", "cluster": "11", "x": -1103.1834716796875, "y": 226.72579956054688, "score": 0 }, { "key": "jxta", "label": "JXTA", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/JXTA", "cluster": "11", "x": -1112.251953125, "y": 158.1708984375, "score": 0.00015326732340664972 }, { "key": "master data management", "label": "Master data management", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Master%20data%20management", "cluster": "11", "x": -890.7499389648438, "y": 222.48309326171875, "score": 0.0071291143068048365 }, { "key": "object-relational mapping", "label": "Object-relational mapping", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Object-relational%20mapping", "cluster": "7", "x": -1094.7249755859375, "y": -416.93377685546875, "score": 0.0022757252350669313 }, { "key": "open text", "label": "Open Text", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Open%20Text", "cluster": "11", "x": -1150.910400390625, "y": 219.50848388671875, "score": 0 }, { "key": "schema matching", "label": "Schema matching", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Schema%20matching", "cluster": "11", "x": -1145.8248291015625, "y": 79.96190643310547, "score": 0.00024669725564189685 }, { "key": "web data integration", "label": "Web data integration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Web%20data%20integration", "cluster": "11", "x": -1052.8865966796875, "y": 250.81930541992188, "score": 0 }, { "key": "web service", "label": "Web service", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Web%20service", "cluster": "11", "x": -1160.383544921875, "y": 157.2559356689453, "score": 0.00004556447573641762 }, { "key": "business reference model", "label": "Business reference model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Business%20reference%20model", "cluster": "5", "x": -494.63751220703125, "y": 648.5836181640625, "score": 0 }, { "key": "data governance", "label": "Data governance", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20governance", "cluster": "5", "x": -819.7632446289062, "y": 448.8302307128906, "score": 0 }, { "key": "model-driven architecture", "label": "Model-driven architecture", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Model-driven%20architecture", "cluster": "5", "x": -763.87890625, "y": 714.233642578125, "score": 0 }, { "key": "domain-specific modeling", "label": "Domain-Specific Modeling", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Domain-Specific%20Modeling", "cluster": "5", "x": -744.5696411132812, "y": 725.6090087890625, "score": 0 }, { "key": "qvt", "label": "QVT", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/QVT", "cluster": "5", "x": -715.343017578125, "y": 700.347900390625, "score": 0 }, { "key": "object process methodology", "label": "Object Process Methodology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Object%20Process%20Methodology", "cluster": "5", "x": -796.229248046875, "y": 691.3248901367188, "score": 0 }, { "key": "semantic compression", "label": "Semantic compression", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Semantic%20compression", "cluster": "11", "x": -1059.4935302734375, "y": -205.32431030273438, "score": 0 }, { "key": "iso/iec 11179", "label": "ISO/IEC 11179", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/ISO%2FIEC%2011179", "cluster": "11", "x": -1087.4056396484375, "y": 14.56688117980957, "score": 0 }, { "key": "national information exchange model", "label": "National Information Exchange Model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/National%20Information%20Exchange%20Model", "cluster": "11", "x": -1102.31103515625, "y": 26.754131317138672, "score": 0 }, { "key": "representation term", "label": "Representation term", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Representation%20term", "cluster": "11", "x": -1050.427490234375, "y": 16.63019561767578, "score": 0 }, { "key": "flow-based programming", "label": "Flow-based programming", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Flow-based%20programming", "cluster": "5", "x": -673.1243286132812, "y": 939.42138671875, "score": 0 }, { "key": "lean software development", "label": "Lean software development", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Lean%20software%20development", "cluster": "5", "x": -416.1135559082031, "y": 1040.3466796875, "score": 0 }, { "key": "business-driven development", "label": "Business-driven development", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Business-driven%20development", "cluster": "5", "x": -652.1865234375, "y": 776.78564453125, "score": 0 }, { "key": "domain-specific language", "label": "Domain-specific language", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Domain-specific%20language", "cluster": "5", "x": -776.7293090820312, "y": 772.6539306640625, "score": 0 }, { "key": "language-oriented programming", "label": "Language-oriented programming", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Language-oriented%20programming", "cluster": "11", "x": -629.0416259765625, "y": 204.16583251953125, "score": 0 }, { "key": "ideas group", "label": "IDEAS Group", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/IDEAS%20Group", "cluster": "5", "x": -964.416259765625, "y": 236.43943786621094, "score": 0 }, { "key": "semantic mapper", "label": "Semantic mapper", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Semantic%20mapper", "cluster": "11", "x": -1139.271484375, "y": -21.8785457611084, "score": 0 }, { "key": "semantic parsing", "label": "Semantic parsing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Semantic%20parsing", "cluster": "11", "x": -1095.381103515625, "y": -182.37051391601562, "score": 0 }, { "key": "vocabulary-based transformation", "label": "Vocabulary-based transformation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Vocabulary-based%20transformation", "cluster": "11", "x": -903.56640625, "y": -13.332491874694824, "score": 0 }, { "key": "software architecture", "label": "Software architecture", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Software%20architecture", "cluster": "10", "x": -391.4075927734375, "y": 754.2655639648438, "score": 0 }, { "key": "nanda", "label": "NANDA", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/NANDA", "cluster": "22", "x": -304.7855224609375, "y": -840.2897338867188, "score": 0 }, { "key": "wordnet", "label": "WordNet", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/WordNet", "cluster": "11", "x": -870.647705078125, "y": -422.0613098144531, "score": 0 }, { "key": "computational models of language acquisition", "label": "Computational models of language acquisition", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Computational%20models%20of%20language%20acquisition", "cluster": "11", "x": -803.2941284179688, "y": -348.209716796875, "score": 0 }, { "key": "natural language programming", "label": "Natural language programming", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Natural%20language%20programming", "cluster": "11", "x": -662.0896606445312, "y": 91.25933837890625, "score": 0 }, { "key": "structured english", "label": "Structured English", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Structured%20English", "cluster": "11", "x": -530.8583374023438, "y": 312.8065185546875, "score": 0.002649853274647291 }, { "key": "systematized nomenclature of medicine", "label": "Systematized Nomenclature of Medicine", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Systematized%20Nomenclature%20of%20Medicine", "cluster": "22", "x": -511.3339538574219, "y": -527.9675903320312, "score": 0 }, { "key": "clinical trials", "label": "Clinical trials", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Clinical%20trials", "cluster": "22", "x": -331.22418212890625, "y": -164.74916076660156, "score": 0 }, { "key": "loinc", "label": "LOINC", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/LOINC", "cluster": "22", "x": -487.9393005371094, "y": -678.2496337890625, "score": 0 }, { "key": "health informatics service architecture", "label": "Health Informatics Service Architecture", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Health%20Informatics%20Service%20Architecture", "cluster": "22", "x": -557.365966796875, "y": -556.7268676757812, "score": 0 }, { "key": "health level 7", "label": "Health Level 7", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Health%20Level%207", "cluster": "22", "x": -716.8685913085938, "y": -313.8482360839844, "score": 0 }, { "key": "glossary", "label": "Glossary", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Glossary", "cluster": "11", "x": -533.8482666015625, "y": -231.15052795410156, "score": 0 }, { "key": "lexicography", "label": "Lexicography", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Lexicography", "cluster": "11", "x": -26.08281135559082, "y": 176.64797973632812, "score": 0 }, { "key": "semantics", "label": "semantics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/semantics", "cluster": "11", "x": -1171.52392578125, "y": -110.90154266357422, "score": 0 }, { "key": "computer-assisted reviewing", "label": "Computer-assisted reviewing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Computer-assisted%20reviewing", "cluster": "11", "x": -699.3311157226562, "y": -146.86825561523438, "score": 0 }, { "key": "controlled natural language", "label": "Controlled natural language", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Controlled%20natural%20language", "cluster": "11", "x": -714.6903686523438, "y": -76.96321105957031, "score": 0 }, { "key": "natural language user interface", "label": "Natural language user interface", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Natural%20language%20user%20interface", "cluster": "11", "x": -692.5289916992188, "y": -153.11483764648438, "score": 0 }, { "key": "text simplification", "label": "Text simplification", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Text%20simplification", "cluster": "11", "x": -669.4263305664062, "y": -150.54637145996094, "score": 0 }, { "key": "holism", "label": "Holism", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Holism", "cluster": "11", "x": -235.97117614746094, "y": 312.03350830078125, "score": 0 }, { "key": "queap", "label": "Queap", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Queap", "cluster": "4", "x": 617.1954345703125, "y": -453.2879333496094, "score": 0 }, { "key": "control-flow graph", "label": "Control-flow graph", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Control-flow%20graph", "cluster": "5", "x": -479.71209716796875, "y": 423.7371826171875, "score": 0.005338850650279913 }, { "key": "extended backus–naur form", "label": "Extended Backus–Naur Form", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Extended%20Backus%E2%80%93Naur%20Form", "cluster": "5", "x": -461.6506042480469, "y": -54.40998458862305, "score": 0 }, { "key": "lisp (programming language)", "label": "Lisp (programming language)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Lisp%20%28programming%20language%29", "cluster": "0", "x": 82.65007019042969, "y": -481.9649658203125, "score": 0 }, { "key": "symbol table", "label": "Symbol table", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Symbol%20table", "cluster": "5", "x": -470.9280700683594, "y": -35.6182746887207, "score": 0 }, { "key": "semantic reasoner", "label": "Semantic reasoner", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Semantic%20reasoner", "cluster": "11", "x": -797.4376831054688, "y": 297.67352294921875, "score": 0 }, { "key": "terminology", "label": "Terminology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Terminology", "cluster": "11", "x": -698.1754760742188, "y": -111.72300720214844, "score": 0 }, { "key": "middleware", "label": "Middleware", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Middleware", "cluster": "11", "x": -1141.2412109375, "y": 57.37939453125, "score": 0 }, { "key": "minimal mappings", "label": "Minimal mappings", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Minimal%20mappings", "cluster": "11", "x": -1158.0455322265625, "y": -3.1111812591552734, "score": 0 }, { "key": "abstract interpretation", "label": "Abstract interpretation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Abstract%20interpretation", "cluster": "5", "x": -546.3469848632812, "y": 171.97337341308594, "score": 0 }, { "key": "domain theory", "label": "Domain theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Domain%20theory", "cluster": "10", "x": -544.5960083007812, "y": -429.9254150390625, "score": 0 }, { "key": "association rule learning", "label": "Association rule learning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Association%20rule%20learning", "cluster": "4", "x": -162.2212677001953, "y": -18.39625358581543, "score": 0 }, { "key": "factor analysis", "label": "Factor analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Factor%20analysis", "cluster": "4", "x": -163.23678588867188, "y": -7.318342685699463, "score": 0 }, { "key": "named-entity recognition", "label": "Named-entity recognition", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Named-entity%20recognition", "cluster": "11", "x": -415.14447021484375, "y": 97.23014831542969, "score": 0 }, { "key": "heat map", "label": "Heat map", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Heat%20map", "cluster": "7", "x": -250.1640167236328, "y": 796.0203857421875, "score": 0.000001679641900346846 }, { "key": "contingency table", "label": "Contingency table", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Contingency%20table", "cluster": "7", "x": -304.5082702636719, "y": 373.2913818359375, "score": 0.000334999607587419 }, { "key": "abscissa and ordinate", "label": "Abscissa and ordinate", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Abscissa%20and%20ordinate", "cluster": "6", "x": 123.6472396850586, "y": -30.880020141601562, "score": 0.0008511613078809533 }, { "key": "blocking (statistics)", "label": "Blocking (statistics)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Blocking%20%28statistics%29", "cluster": "6", "x": 302.5689697265625, "y": -169.93141174316406, "score": 0.00001154844696201679 }, { "key": "latent variable", "label": "Latent variable", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Latent%20variable", "cluster": "6", "x": 372.61114501953125, "y": 132.61329650878906, "score": 0.00043923629688379524 }, { "key": "observable variable", "label": "observable variable", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/observable%20variable", "cluster": "6", "x": 342.0210266113281, "y": 74.96704864501953, "score": 0.00007901951667540844 }, { "key": "array data type", "label": "Array data type", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Array%20data%20type", "cluster": "24", "x": 1195.9915771484375, "y": -148.90518188476562, "score": 0 }, { "key": "cartesian tensor", "label": "Cartesian tensor", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cartesian%20tensor", "cluster": "24", "x": 1246.58642578125, "y": -168.318359375, "score": 0.00007970664290736851 }, { "key": "fibre bundle", "label": "Fibre bundle", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Fibre%20bundle", "cluster": "24", "x": 1279.3240966796875, "y": -75.29293823242188, "score": 0.00015941328581473702 }, { "key": "one-form", "label": "One-form", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/One-form", "cluster": "24", "x": 1177.8511962890625, "y": -148.4342803955078, "score": 0 }, { "key": "tensor product of modules", "label": "Tensor product of modules", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Tensor%20product%20of%20modules", "cluster": "24", "x": 1192.093017578125, "y": -157.6294708251953, "score": 0 }, { "key": "application of tensor theory in engineering", "label": "Application of tensor theory in engineering", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Application%20of%20tensor%20theory%20in%20engineering", "cluster": "24", "x": 1197.59716796875, "y": -139.85189819335938, "score": 0 }, { "key": "continuum mechanics", "label": "Continuum mechanics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Continuum%20mechanics", "cluster": "24", "x": 1300.882568359375, "y": -165.3971710205078, "score": 0.00021255104775298473 }, { "key": "covariant derivative", "label": "Covariant derivative", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Covariant%20derivative", "cluster": "24", "x": 1410.42724609375, "y": -155.46884155273438, "score": 0.000956479714888422 }, { "key": "curvature", "label": "Curvature", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Curvature", "cluster": "24", "x": 1294.6910400390625, "y": -18.232526779174805, "score": 0.0003475303792504138 }, { "key": "diffusion mri", "label": "Diffusion MRI", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Diffusion%20MRI", "cluster": "24", "x": 1149.4405517578125, "y": -320.486572265625, "score": 0.0001573519071188568 }, { "key": "einstein field equations", "label": "Einstein field equations", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Einstein%20field%20equations", "cluster": "24", "x": 1282.0521240234375, "y": -139.6530303955078, "score": 0.00005313776193824618 }, { "key": "fluid mechanics", "label": "Fluid mechanics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Fluid%20mechanics", "cluster": "24", "x": 1248.6937255859375, "y": -148.11358642578125, "score": 0.00007970664290736851 }, { "key": "gravity", "label": "Gravity", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Gravity", "cluster": "24", "x": 1194.5703125, "y": -130.3752899169922, "score": 0 }, { "key": "riemannian geometry", "label": "Riemannian geometry", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Riemannian%20geometry", "cluster": "4", "x": 1106.274169921875, "y": -314.27520751953125, "score": 0.00004842717373723945 }, { "key": "structure tensor", "label": "Structure tensor", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Structure%20tensor", "cluster": "24", "x": 1179.4195556640625, "y": -135.88206481933594, "score": 0 }, { "key": "tensor decomposition", "label": "Tensor decomposition", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Tensor%20decomposition", "cluster": "24", "x": 997.575439453125, "y": -142.04388427734375, "score": 0 }, { "key": "tensor derivative", "label": "Tensor derivative", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Tensor%20derivative", "cluster": "24", "x": 1412.341552734375, "y": -135.81396484375, "score": 0.000956479714888422 }, { "key": "tensor software", "label": "Tensor software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Tensor%20software", "cluster": "24", "x": 998.0311889648438, "y": -132.224609375, "score": 0 }, { "key": "html attribute", "label": "HTML attribute", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/HTML%20attribute", "cluster": "21", "x": -445.5633544921875, "y": 305.4554748535156, "score": 0 }, { "key": "column-oriented dbms", "label": "Column-oriented DBMS", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Column-oriented%20DBMS", "cluster": "7", "x": -484.31134033203125, "y": 8.481884956359863, "score": 6.298657126300673e-7 }, { "key": "column (data store)", "label": "Column (data store)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Column%20%28data%20store%29", "cluster": "7", "x": -507.47222900390625, "y": -78.82872772216797, "score": 0 }, { "key": "distributed data store", "label": "distributed data store", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/distributed%20data%20store", "cluster": "7", "x": -787.9363403320312, "y": -22.57788848876953, "score": 0.00001137575650689455 }, { "key": "affine connection", "label": "Affine connection", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Affine%20connection", "cluster": "24", "x": 1448.125244140625, "y": -150.87950134277344, "score": 0 }, { "key": "christoffel symbols", "label": "Christoffel symbols", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Christoffel%20symbols", "cluster": "24", "x": 1432.383056640625, "y": -124.35124969482422, "score": 0 }, { "key": "connection (algebraic framework)", "label": "Connection (algebraic framework)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Connection%20%28algebraic%20framework%29", "cluster": "24", "x": 1447.2928466796875, "y": -139.92172241210938, "score": 0 }, { "key": "connection (mathematics)", "label": "Connection (mathematics)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Connection%20%28mathematics%29", "cluster": "24", "x": 1385.286865234375, "y": -94.44439697265625, "score": 0 }, { "key": "connection (vector bundle)", "label": "Connection (vector bundle)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Connection%20%28vector%20bundle%29", "cluster": "24", "x": 1442.62841796875, "y": -129.22499084472656, "score": 0 }, { "key": "connection form", "label": "Connection form", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Connection%20form", "cluster": "24", "x": 1444.532958984375, "y": -160.967529296875, "score": 0 }, { "key": "exterior covariant derivative", "label": "Exterior covariant derivative", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Exterior%20covariant%20derivative", "cluster": "24", "x": 1436.9990234375, "y": -169.44671630859375, "score": 0 }, { "key": "gauge covariant derivative", "label": "Gauge covariant derivative", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Gauge%20covariant%20derivative", "cluster": "24", "x": 1432.2857666015625, "y": -158.86233520507812, "score": 0 }, { "key": "introduction to the mathematics of general relativity", "label": "Introduction to the mathematics of general relativity", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Introduction%20to%20the%20mathematics%20of%20general%20relativity", "cluster": "24", "x": 1436.0533447265625, "y": -148.6434326171875, "score": 0 }, { "key": "levi-civita connection", "label": "Levi-Civita connection", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Levi-Civita%20connection", "cluster": "24", "x": 1434.6619873046875, "y": -137.6271209716797, "score": 0 }, { "key": "parallel transport", "label": "Parallel transport", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Parallel%20transport", "cluster": "24", "x": 1426.427734375, "y": -171.94924926757812, "score": 0 }, { "key": "ricci calculus", "label": "Ricci calculus", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Ricci%20calculus", "cluster": "24", "x": 1372.9300537109375, "y": -143.58163452148438, "score": 0 }, { "key": "tensor derivative (continuum mechanics)", "label": "Tensor derivative (continuum mechanics)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Tensor%20derivative%20%28continuum%20mechanics%29", "cluster": "24", "x": 1379.5672607421875, "y": -163.53329467773438, "score": 0 }, { "key": "bernoulli's principle", "label": "Bernoulli's principle", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bernoulli%27s%20principle", "cluster": "24", "x": 1299.293701171875, "y": -154.2738800048828, "score": 0 }, { "key": "connectome", "label": "Connectome", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Connectome", "cluster": "24", "x": 1082.1380615234375, "y": -496.1798400878906, "score": 0 }, { "key": "vector bundle", "label": "vector bundle", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/vector%20bundle", "cluster": "24", "x": 1316.1710205078125, "y": -41.958919525146484, "score": 0 }, { "key": "principal bundle", "label": "principal bundle", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/principal%20bundle", "cluster": "24", "x": 1310.2650146484375, "y": -49.39692306518555, "score": 0 }, { "key": "principle of least action", "label": "Principle of Least Action", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Principle%20of%20Least%20Action", "cluster": "24", "x": 1217.7593994140625, "y": 215.32852172851562, "score": 0 }, { "key": "tensor calculus", "label": "Tensor calculus", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Tensor%20calculus", "cluster": "24", "x": 1296.6107177734375, "y": -180.68202209472656, "score": 0 }, { "key": "latent variable model", "label": "Latent variable model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Latent%20variable%20model", "cluster": "6", "x": 384.7264404296875, "y": 113.43653869628906, "score": 0 }, { "key": "concept (generic programming)", "label": "Concept (generic programming)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Concept%20%28generic%20programming%29", "cluster": "10", "x": -148.71861267089844, "y": 85.89022827148438, "score": 0 }, { "key": "formal methods", "label": "Formal methods", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Formal%20methods", "cluster": "10", "x": -343.39019775390625, "y": 67.37626647949219, "score": 0.00006114954971336797 }, { "key": "functional specification", "label": "Functional specification", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Functional%20specification", "cluster": "10", "x": 52.917213439941406, "y": 779.7470092773438, "score": 0.001197751457640792 }, { "key": "generalized algebraic data type", "label": "Generalized algebraic data type", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Generalized%20algebraic%20data%20type", "cluster": "10", "x": -136.88449096679688, "y": 85.45894622802734, "score": 0 }, { "key": "initial algebra", "label": "Initial algebra", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Initial%20algebra", "cluster": "10", "x": -158.97088623046875, "y": 82.10282897949219, "score": 0 }, { "key": "liskov substitution principle", "label": "Liskov substitution principle", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Liskov%20substitution%20principle", "cluster": "10", "x": -159.09999084472656, "y": 71.90088653564453, "score": 0 }, { "key": "type theory", "label": "Type theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Type%20theory", "cluster": "10", "x": -459.5346984863281, "y": -498.67041015625, "score": 0.0000414871717817657 }, { "key": "benchmarking", "label": "Benchmarking", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Benchmarking", "cluster": "10", "x": 150.06227111816406, "y": 995.0723876953125, "score": 0 }, { "key": "specification (technical standard)", "label": "Specification (technical standard)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Specification%20%28technical%20standard%29", "cluster": "10", "x": 270.79742431640625, "y": 959.5311279296875, "score": 0 }, { "key": "model checking", "label": "Model checking", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Model%20checking", "cluster": "10", "x": -265.1148681640625, "y": -521.4918212890625, "score": 0 }, { "key": "software engineering", "label": "Software engineering", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Software%20engineering", "cluster": "10", "x": -327.823486328125, "y": 512.8851318359375, "score": 0 }, { "key": "combinatorial design", "label": "Combinatorial design", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Combinatorial%20design", "cluster": "6", "x": 156.95611572265625, "y": -478.2304992675781, "score": 0 }, { "key": "peer-to-peer", "label": "Peer-to-peer", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Peer-to-peer", "cluster": "7", "x": -1011.65185546875, "y": 85.44131469726562, "score": 0 }, { "key": "chief experience officer", "label": "Chief experience officer", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Chief%20experience%20officer", "cluster": "7", "x": -35.617340087890625, "y": 444.5126953125, "score": 0 }, { "key": "illustration", "label": "Illustration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Illustration", "cluster": "7", "x": 77.96944427490234, "y": 768.3310546875, "score": 0 }, { "key": "business activity monitoring", "label": "Business activity monitoring", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Business%20activity%20monitoring", "cluster": "7", "x": -160.31253051757812, "y": 651.0310668945312, "score": 0 }, { "key": "complex event processing", "label": "Complex event processing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Complex%20event%20processing", "cluster": "7", "x": -261.98187255859375, "y": 605.7769775390625, "score": 0.0002843713624923448 }, { "key": "corporate performance management", "label": "Corporate performance management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Corporate%20performance%20management", "cluster": "7", "x": -79.80230712890625, "y": 713.6984252929688, "score": 0 }, { "key": "enterprise manufacturing intelligence", "label": "Enterprise manufacturing intelligence", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20manufacturing%20intelligence", "cluster": "7", "x": -93.34983825683594, "y": 713.8473510742188, "score": 0 }, { "key": "event stream processing", "label": "Event stream processing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Event%20stream%20processing", "cluster": "7", "x": -151.7928924560547, "y": 697.8701782226562, "score": 0 }, { "key": "control panel (software)", "label": "Control panel (software)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Control%20panel%20%28software%29", "cluster": "7", "x": -86.59019470214844, "y": 722.3992309570312, "score": 0 }, { "key": "confusion matrix", "label": "Confusion matrix", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Confusion%20matrix", "cluster": "7", "x": -338.1525573730469, "y": 419.63134765625, "score": 0 }, { "key": "pivot table", "label": "Pivot table", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Pivot%20table", "cluster": "7", "x": -329.8733825683594, "y": 194.80801391601562, "score": 0.0004222219884428502 }, { "key": "iterative proportional fitting", "label": "iterative proportional fitting", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/iterative%20proportional%20fitting", "cluster": "11", "x": -818.6549682617188, "y": 416.6702880859375, "score": 0.0000013742524639201469 }, { "key": "olap cube", "label": "OLAP cube", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/OLAP%20cube", "cluster": "7", "x": -283.99896240234375, "y": 311.2664489746094, "score": 0.0003136401559710937 }, { "key": "comparison of olap servers", "label": "Comparison of OLAP servers", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20OLAP%20servers", "cluster": "7", "x": -378.9499816894531, "y": 236.50927734375, "score": 0 }, { "key": "data cleansing", "label": "Data cleansing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20cleansing", "cluster": "11", "x": -1006.65673828125, "y": 403.9126281738281, "score": 0 }, { "key": "data editing", "label": "Data editing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20editing", "cluster": "11", "x": -1003.2455444335938, "y": 395.39300537109375, "score": 0 }, { "key": "design of experiments", "label": "Design of experiments", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Design%20of%20experiments", "cluster": "6", "x": 72.51067352294922, "y": 312.478759765625, "score": 0 }, { "key": "statistical interference", "label": "Statistical interference", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Statistical%20interference", "cluster": "10", "x": 447.508544921875, "y": 932.5548706054688, "score": 0.0027946052627007808 }, { "key": "chartjunk", "label": "Chartjunk", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Chartjunk", "cluster": "6", "x": 318.64739990234375, "y": 593.7466430664062, "score": 0.000029142772774830424 }, { "key": "impression management", "label": "Impression management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Impression%20management", "cluster": "6", "x": 494.0979309082031, "y": 792.1463012695312, "score": 0 }, { "key": "misuse of statistics", "label": "Misuse of statistics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Misuse%20of%20statistics", "cluster": "6", "x": 527.5564575195312, "y": 615.2661743164062, "score": 0.0003193132188377667 }, { "key": "simpson's paradox", "label": "Simpson's paradox", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Simpson%27s%20paradox", "cluster": "6", "x": 548.7076416015625, "y": 698.4572143554688, "score": 0 }, { "key": "how to lie with statistics", "label": "How to Lie with Statistics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/How%20to%20Lie%20with%20Statistics", "cluster": "6", "x": 497.07568359375, "y": 783.9055786132812, "score": 0 }, { "key": "anscombe's quartet", "label": "Anscombe's quartet", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Anscombe%27s%20quartet", "cluster": "6", "x": 569.81787109375, "y": 632.2289428710938, "score": 0.0004521059664595202 }, { "key": "data dredging", "label": "Data dredging", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Data%20dredging", "cluster": "6", "x": 630.2744140625, "y": 546.6505737304688, "score": 0.004481392235999471 }, { "key": "descriptive statistics", "label": "Descriptive statistics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Descriptive%20statistics", "cluster": "6", "x": 701.4397583007812, "y": 744.4210815429688, "score": 0 }, { "key": "business reporting", "label": "Business reporting", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Business%20reporting", "cluster": "7", "x": -311.23486328125, "y": 306.05523681640625, "score": 0 }, { "key": "curve fitting", "label": "Curve fitting", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Curve%20fitting", "cluster": "6", "x": 824.67724609375, "y": 564.0504150390625, "score": 0.00509694369888813 }, { "key": "estimation theory", "label": "Estimation theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Estimation%20theory", "cluster": "6", "x": 655.7800903320312, "y": 391.5791320800781, "score": 0.011024755336180234 }, { "key": "function approximation", "label": "Function approximation", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Function%20approximation", "cluster": "6", "x": 797.0309448242188, "y": 130.61624145507812, "score": 0.00004652302830057539 }, { "key": "goodness of fit", "label": "Goodness of fit", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Goodness%20of%20fit", "cluster": "6", "x": 776.6207885742188, "y": 535.43505859375, "score": 0.00006804809840546998 }, { "key": "levenberg–marquardt algorithm", "label": "Levenberg–Marquardt algorithm", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Levenberg%E2%80%93Marquardt%20algorithm", "cluster": "6", "x": 878.2496948242188, "y": 599.0661010742188, "score": 0 }, { "key": "line fitting", "label": "Line fitting", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Line%20fitting", "cluster": "6", "x": 780.0828857421875, "y": 622.1385498046875, "score": 0.00014249393338939634 }, { "key": "nonlinear regression", "label": "Nonlinear regression", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Nonlinear%20regression", "cluster": "6", "x": 941.743896484375, "y": 489.9792175292969, "score": 0.00004478395220998784 }, { "key": "overfitting", "label": "Overfitting", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Overfitting", "cluster": "6", "x": 760.8704223632812, "y": 573.8510131835938, "score": 0.0033987706021507322 }, { "key": "plane curve", "label": "Plane curve", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Plane%20curve", "cluster": "6", "x": 867.7039184570312, "y": 596.8638305664062, "score": 0 }, { "key": "distribution fitting", "label": "Distribution fitting", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Distribution%20fitting", "cluster": "6", "x": 867.3314208984375, "y": 616.7603759765625, "score": 0.0011231179198596447 }, { "key": "smoothing", "label": "Smoothing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Smoothing", "cluster": "6", "x": 895.6614379882812, "y": 718.9881591796875, "score": 0.0002104958489718596 }, { "key": "interpolating spline", "label": "Interpolating spline", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Interpolating%20spline", "cluster": "6", "x": 886.7010498046875, "y": 646.3364868164062, "score": 0 }, { "key": "smoothing spline", "label": "Smoothing spline", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Smoothing%20spline", "cluster": "6", "x": 893.7577514648438, "y": 669.8509521484375, "score": 0 }, { "key": "total least squares", "label": "Total least squares", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Total%20least%20squares", "cluster": "6", "x": 876.4219970703125, "y": 588.942138671875, "score": 0 }, { "key": "trend estimation", "label": "Trend estimation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Trend%20estimation", "cluster": "6", "x": 537.4821166992188, "y": 495.27239990234375, "score": 0.00028199194034819725 }, { "key": "nasa world wind", "label": "NASA World Wind", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/NASA%20World%20Wind", "cluster": "7", "x": -292.2556457519531, "y": 900.1100463867188, "score": 0 }, { "key": "imaginary colors", "label": "Imaginary colors", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Imaginary%20colors", "cluster": "7", "x": -283.6231994628906, "y": 899.8329467773438, "score": 0 }, { "key": "hyperspectral imaging", "label": "Hyperspectral imaging", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Hyperspectral%20imaging", "cluster": "7", "x": -333.3438720703125, "y": 589.8882446289062, "score": 0.001370493992498981 }, { "key": "mw:extension:easytimeline", "label": "mw:Extension:EasyTimeline", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/mw%3AExtension%3AEasyTimeline", "cluster": "8", "x": 629.423583984375, "y": 1023.135009765625, "score": 0 }, { "key": "enhanced metafile format", "label": "Enhanced Metafile Format", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enhanced%20Metafile%20Format", "cluster": "8", "x": 706.870849609375, "y": 1051.63818359375, "score": 0.0004802783319323594 }, { "key": "ms powerpoint", "label": "MS PowerPoint", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/MS%20PowerPoint", "cluster": "8", "x": 676.4730834960938, "y": 1078.423828125, "score": 0.0003165361508562738 }, { "key": "data binning", "label": "Data binning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20binning", "cluster": "6", "x": 923.696533203125, "y": 635.6834716796875, "score": 0.0017451927106755091 }, { "key": "kernel density estimation", "label": "Kernel density estimation", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Kernel%20density%20estimation", "cluster": "6", "x": 1082.851318359375, "y": 715.6605224609375, "score": 0.002290293964422937 }, { "key": "image histogram", "label": "Image histogram", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Image%20histogram", "cluster": "8", "x": 922.9246215820312, "y": 997.2999877929688, "score": 0.0007143761041055141 }, { "key": "cumulative distribution function", "label": "Cumulative distribution function", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cumulative%20distribution%20function", "cluster": "6", "x": 806.4401245117188, "y": 765.5103759765625, "score": 0.00011613442195942008 }, { "key": "pareto analysis", "label": "Pareto analysis", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Pareto%20analysis", "cluster": "6", "x": 819.7274169921875, "y": 727.9727783203125, "score": 0.005823015042309631 }, { "key": "pareto principle", "label": "Pareto principle", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Pareto%20principle", "cluster": "6", "x": 1020.0573120117188, "y": 559.2614135742188, "score": 0.016538832376253015 }, { "key": "statistical quality control", "label": "Statistical quality control", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Statistical%20quality%20control", "cluster": "10", "x": 432.17584228515625, "y": 1070.741455078125, "score": 0.00035917504980959974 }, { "key": "curve (tonality)", "label": "Curve (tonality)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Curve%20%28tonality%29", "cluster": "8", "x": 939.5225219726562, "y": 1014.953369140625, "score": 0 }, { "key": "histogram equalization", "label": "Histogram equalization", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Histogram%20equalization", "cluster": "8", "x": 963.243408203125, "y": 1038.34521484375, "score": 0 }, { "key": "histogram matching", "label": "Histogram matching", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Histogram%20matching", "cluster": "8", "x": 955.181884765625, "y": 1030.3477783203125, "score": 0.0000011452103866001223 }, { "key": "image editing", "label": "Image editing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Image%20editing", "cluster": "8", "x": 766.7471313476562, "y": 916.892822265625, "score": 0.00008015859200636608 }, { "key": "kernel (statistics)", "label": "Kernel (statistics)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Kernel%20%28statistics%29", "cluster": "6", "x": 1105.2989501953125, "y": 697.1298217773438, "score": 0.00030600021529955267 }, { "key": "kernel smoothing", "label": "Kernel smoothing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Kernel%20smoothing", "cluster": "6", "x": 1134.7532958984375, "y": 712.1363525390625, "score": 0.00005857167153623826 }, { "key": "kernel regression", "label": "Kernel regression", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Kernel%20regression", "cluster": "6", "x": 1153.6961669921875, "y": 711.1356811523438, "score": 0.00013759118821164655 }, { "key": "mean-shift", "label": "Mean-shift", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Mean-shift", "cluster": "6", "x": 1075.410400390625, "y": 541.1865234375, "score": 0.00001696765522317914 }, { "key": "scale space", "label": "Scale space", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Scale%20space", "cluster": "6", "x": 1020.6410522460938, "y": 746.7993774414062, "score": 0 }, { "key": "multivariate kernel density estimation", "label": "Multivariate kernel density estimation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Multivariate%20kernel%20density%20estimation", "cluster": "6", "x": 1096.46337890625, "y": 740.6649169921875, "score": 0.00007139114304466649 }, { "key": "variable kernel density estimation", "label": "Variable kernel density estimation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Variable%20kernel%20density%20estimation", "cluster": "6", "x": 1121.2557373046875, "y": 754.53955078125, "score": 0 }, { "key": "mean integrated squared error", "label": "Mean integrated squared error", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Mean%20integrated%20squared%20error", "cluster": "6", "x": 1005.7232666015625, "y": 737.9956665039062, "score": 0 }, { "key": "spectral density estimation", "label": "Spectral density estimation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Spectral%20density%20estimation", "cluster": "6", "x": 1010.7506103515625, "y": 729.1723022460938, "score": 0 }, { "key": "generative model", "label": "Generative model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Generative%20model", "cluster": "6", "x": 774.8804321289062, "y": 495.3075866699219, "score": 0.000004197811731598469 }, { "key": "order statistic", "label": "Order statistic", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Order%20statistic", "cluster": "6", "x": 868.3927612304688, "y": 821.883544921875, "score": 0.0034570119773213942 }, { "key": "probability distribution fitting", "label": "Probability distribution fitting", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Probability%20distribution%20fitting", "cluster": "6", "x": 908.3596801757812, "y": 601.0011596679688, "score": 0.0009156666417783776 }, { "key": "grouped data", "label": "Grouped data", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Grouped%20data", "cluster": "6", "x": 915.5011596679688, "y": 492.1287536621094, "score": 0.000006955442719446923 }, { "key": "level of measurement", "label": "Level of measurement", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Level%20of%20measurement", "cluster": "6", "x": 801.396484375, "y": 156.82992553710938, "score": 0.00041928143932689856 }, { "key": "quantization (signal processing)", "label": "Quantization (signal processing)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Quantization%20%28signal%20processing%29", "cluster": "6", "x": 948.472412109375, "y": 736.0635375976562, "score": 0.0000725866936766254 }, { "key": "discretization of continuous features", "label": "Discretization of continuous features", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Discretization%20of%20continuous%20features", "cluster": "6", "x": 965.9354248046875, "y": 636.9376831054688, "score": 0.0001366451009862347 }, { "key": "discretization", "label": "Discretization", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Discretization", "cluster": "6", "x": 952.1259765625, "y": 762.1145629882812, "score": 0 }, { "key": "quantile", "label": "Quantile", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Quantile", "cluster": "6", "x": 937.2022094726562, "y": 809.919921875, "score": 0 }, { "key": "regression dilution", "label": "Regression dilution", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Regression%20dilution", "cluster": "6", "x": 887.8490600585938, "y": 705.3001708984375, "score": 0 }, { "key": "rank-size distribution", "label": "Rank-size distribution", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Rank-size%20distribution", "cluster": "6", "x": 1001.0654907226562, "y": 632.1338500976562, "score": 0.0006129882070172593 }, { "key": "kernel smoother", "label": "Kernel smoother", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Kernel%20smoother", "cluster": "6", "x": 1166.2249755859375, "y": 722.46142578125, "score": 0 }, { "key": "local regression", "label": "Local regression", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Local%20regression", "cluster": "6", "x": 1108.9730224609375, "y": 649.6951293945312, "score": 0 }, { "key": "distribution-free control chart", "label": "Distribution-free control chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Distribution-free%20control%20chart", "cluster": "10", "x": 450.9268493652344, "y": 1126.1005859375, "score": 0 }, { "key": "process capability index", "label": "Process capability index", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Process%20capability%20index", "cluster": "10", "x": 482.19525146484375, "y": 1128.7694091796875, "score": 0.000966350616289787 }, { "key": "quality assurance", "label": "Quality assurance", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Quality%20assurance", "cluster": "10", "x": 356.7095031738281, "y": 1049.674560546875, "score": 0.00015385675862278063 }, { "key": "anova gauge r&r", "label": "ANOVA Gauge R&R", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/ANOVA%20Gauge%20R%26amp%3BR", "cluster": "10", "x": 429.88446044921875, "y": 1133.9830322265625, "score": 0 }, { "key": "stochastic control", "label": "Stochastic control", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Stochastic%20control", "cluster": "18", "x": 507.6620178222656, "y": 1040.65478515625, "score": 0.00006751908109211458 }, { "key": "electronic design automation", "label": "Electronic design automation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Electronic%20design%20automation", "cluster": "10", "x": 447.8653259277344, "y": 1027.3529052734375, "score": 0.000046944893446619256 }, { "key": "process window index", "label": "Process Window Index", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Process%20Window%20Index", "cluster": "10", "x": 431.379638671875, "y": 1124.849853515625, "score": 0 }, { "key": "six sigma", "label": "Six sigma", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Six%20sigma", "cluster": "10", "x": 338.33758544921875, "y": 1070.5697021484375, "score": 0 }, { "key": "total quality management", "label": "Total quality management", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Total%20quality%20management", "cluster": "10", "x": 262.0204772949219, "y": 1137.7135009765625, "score": 0.00479663305013885 }, { "key": "1% rule (internet culture)", "label": "1% rule (Internet culture)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/1%25%20rule%20%28Internet%20culture%29", "cluster": "6", "x": 1089.3785400390625, "y": 513.6953125, "score": 0.00012531970714040841 }, { "key": "10/90 gap", "label": "10/90 gap", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/10%2F90%20gap", "cluster": "6", "x": 1094.37744140625, "y": 567.9723510742188, "score": 0.00007875230091853508 }, { "key": "benford's law", "label": "Benford's law", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Benford%27s%20law", "cluster": "6", "x": 848.8641357421875, "y": 506.2978210449219, "score": 0.0043711672047744374 }, { "key": "diminishing returns", "label": "Diminishing returns", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Diminishing%20returns", "cluster": "6", "x": 695.3765869140625, "y": 875.792724609375, "score": 0.00019880660127339175 }, { "key": "elephant flow", "label": "Elephant flow", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Elephant%20flow", "cluster": "6", "x": 1064.6136474609375, "y": 575.2036743164062, "score": 0 }, { "key": "keystone species", "label": "Keystone species", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Keystone%20species", "cluster": "6", "x": 1078.0294189453125, "y": 583.3698120117188, "score": 0 }, { "key": "long tail", "label": "Long tail", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Long%20tail", "cluster": "6", "x": 933.7609252929688, "y": 526.1702270507812, "score": 0.00002168118176785129 }, { "key": "matthew effect", "label": "Matthew effect", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Matthew%20effect", "cluster": "6", "x": 889.0164794921875, "y": 378.8565368652344, "score": 0.006403869093931046 }, { "key": "mathematical economics", "label": "Mathematical economics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Mathematical%20economics", "cluster": "6", "x": 975.092041015625, "y": 440.7195739746094, "score": 0.000020451710896762557 }, { "key": "ninety-ninety rule", "label": "Ninety-ninety rule", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Ninety-ninety%20rule", "cluster": "6", "x": 1096.34033203125, "y": 549.424072265625, "score": 0.00015754277551662354 }, { "key": "pareto distribution", "label": "Pareto distribution", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Pareto%20distribution", "cluster": "6", "x": 970.1830444335938, "y": 616.2816772460938, "score": 0.0037334256180430675 }, { "key": "parkinson's law", "label": "Parkinson's law", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Parkinson%27s%20law", "cluster": "6", "x": 1130.2525634765625, "y": 584.3934326171875, "score": 0.00007901951667540844 }, { "key": "derek j. de solla price", "label": "Derek J. de Solla Price", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Derek%20J.%20de%20Solla%20Price", "cluster": "6", "x": 1085.96728515625, "y": 588.9398803710938, "score": 0 }, { "key": "principle of least effort", "label": "Principle of least effort", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Principle%20of%20least%20effort", "cluster": "6", "x": 1072.690185546875, "y": 483.08966064453125, "score": 0.00013542690497645463 }, { "key": "profit risk", "label": "Profit risk", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Profit%20risk", "cluster": "6", "x": 904.5185546875, "y": 577.2046508789062, "score": 0.000020506900656052854 }, { "key": "sturgeon's law", "label": "Sturgeon's law", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Sturgeon%27s%20law", "cluster": "6", "x": 1048.3765869140625, "y": 593.765625, "score": 0.00045942023342441564 }, { "key": "vitality curve", "label": "Vitality curve", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Vitality%20curve", "cluster": "6", "x": 1077.9837646484375, "y": 595.2886962890625, "score": 0 }, { "key": "wealth concentration", "label": "Wealth concentration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Wealth%20concentration", "cluster": "6", "x": 1042.6817626953125, "y": 495.6387634277344, "score": 0.0000792867324322818 }, { "key": "zipf's law", "label": "Zipf's law", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Zipf%27s%20law", "cluster": "6", "x": 999.9540405273438, "y": 574.2938842773438, "score": 0.00022862584367628672 }, { "key": "pareto interpolation", "label": "Pareto interpolation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Pareto%20interpolation", "cluster": "6", "x": 924.9445190429688, "y": 701.9566040039062, "score": 0 }, { "key": "analytic and enumerative statistical studies", "label": "Analytic and enumerative statistical studies", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Analytic%20and%20enumerative%20statistical%20studies", "cluster": "10", "x": 395.7647705078125, "y": 1147.8787841796875, "score": 0 }, { "key": "common cause and special cause", "label": "Common cause and special cause", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Common%20cause%20and%20special%20cause", "cluster": "10", "x": 363.92388916015625, "y": 1124.20166015625, "score": 0.0011586154147189944 }, { "key": "w. edwards deming", "label": "W. Edwards Deming", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/W.%20Edwards%20Deming", "cluster": "10", "x": 302.1761474609375, "y": 1107.380615234375, "score": 0.003192819600142288 }, { "key": "process capability", "label": "Process capability", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Process%20capability", "cluster": "10", "x": 497.8259582519531, "y": 1076.9952392578125, "score": 0.0041840318574335586 }, { "key": "statistical process control", "label": "Statistical process control", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Statistical%20process%20control", "cluster": "10", "x": 394.47857666015625, "y": 1090.58447265625, "score": 0.002722993647093392 }, { "key": "powerpoint karaoke", "label": "PowerPoint Karaoke", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/PowerPoint%20Karaoke", "cluster": "8", "x": 712.7842407226562, "y": 1113.77978515625, "score": 0 }, { "key": "web-based slideshow", "label": "Web-based slideshow", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Web-based%20slideshow", "cluster": "8", "x": 705.6965942382812, "y": 1119.06640625, "score": 0 }, { "key": "post hoc analysis", "label": "Post hoc analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Post%20hoc%20analysis", "cluster": "6", "x": 611.8914794921875, "y": 625.9007568359375, "score": 0 }, { "key": "postscript", "label": "PostScript", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/PostScript", "cluster": "8", "x": 741.7005004882812, "y": 1088.087158203125, "score": 0 }, { "key": "vector markup language", "label": "Vector Markup Language", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Vector%20Markup%20Language", "cluster": "8", "x": 747.353515625, "y": 1059.7469482421875, "score": 0 }, { "key": "scalable vector graphics", "label": "Scalable Vector Graphics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Scalable%20Vector%20Graphics", "cluster": "8", "x": 733.2890014648438, "y": 1017.5509033203125, "score": 0.000005932189802588634 }, { "key": "forecasting", "label": "Forecasting", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Forecasting", "cluster": "6", "x": 360.9694519042969, "y": 465.1962890625, "score": 0 }, { "key": "occam's razor", "label": "Occam's razor", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Occam%27s%20razor", "cluster": "6", "x": 953.810546875, "y": 544.6653442382812, "score": 0 }, { "key": "convolution", "label": "Convolution", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Convolution", "cluster": "6", "x": 792.4420166015625, "y": 942.2943115234375, "score": 0 }, { "key": "statistical signal processing", "label": "Statistical signal processing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Statistical%20signal%20processing", "cluster": "6", "x": 808.9617309570312, "y": 594.2463989257812, "score": 0 }, { "key": "statistical model validation", "label": "Statistical model validation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Statistical%20model%20validation", "cluster": "6", "x": 712.4666748046875, "y": 622.0415649414062, "score": 0 }, { "key": "bar graph", "label": "bar graph", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/bar%20graph", "cluster": "8", "x": 672.97412109375, "y": 944.4161376953125, "score": 0.0002734732086565238 }, { "key": "float (project management)", "label": "Float (project management)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Float%20%28project%20management%29", "cluster": "8", "x": 94.55501556396484, "y": 1263.72021484375, "score": 3.708300299467063e-7 }, { "key": "gantt chart", "label": "Gantt chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Gantt%20chart", "cluster": "8", "x": 39.609832763671875, "y": 1237.0831298828125, "score": 0.0018440676928712227 }, { "key": "project planning", "label": "Project planning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Project%20planning", "cluster": "8", "x": -12.065790176391602, "y": 1186.09716796875, "score": 0.0015691097644563027 }, { "key": "program evaluation and review technique", "label": "Program evaluation and review technique", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Program%20evaluation%20and%20review%20technique", "cluster": "8", "x": 58.635902404785156, "y": 1242.46484375, "score": 0.008513001657614419 }, { "key": "activity diagram", "label": "Activity diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Activity%20diagram", "cluster": "5", "x": -452.3753662109375, "y": 810.008544921875, "score": 0.003978813618638149 }, { "key": "arrow diagramming method", "label": "Arrow diagramming method", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Arrow%20diagramming%20method", "cluster": "8", "x": 63.9141845703125, "y": 1309.2825927734375, "score": 0 }, { "key": "critical chain project management", "label": "Critical chain project management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Critical%20chain%20project%20management", "cluster": "8", "x": 54.112701416015625, "y": 1191.5885009765625, "score": 0.0005670041569060053 }, { "key": "critical path method", "label": "Critical path method", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Critical%20path%20method", "cluster": "8", "x": 68.09840393066406, "y": 1217.556884765625, "score": 0.0008759454762927156 }, { "key": "precedence diagram method", "label": "Precedence diagram method", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Precedence%20diagram%20method", "cluster": "8", "x": 65.3018798828125, "y": 1324.17529296875, "score": 0 }, { "key": "project network", "label": "Project network", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Project%20network", "cluster": "8", "x": 117.39305114746094, "y": 1214.2060546875, "score": 0.002210107545612669 }, { "key": "triangular distribution", "label": "Triangular distribution", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Triangular%20distribution", "cluster": "6", "x": 403.7112731933594, "y": 1278.9166259765625, "score": 0.0005229380080273688 }, { "key": "prince2", "label": "PRINCE2", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/PRINCE2", "cluster": "8", "x": -42.5653190612793, "y": 1258.3680419921875, "score": 0.00015770900618273604 }, { "key": "cost overrun", "label": "Cost overrun", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cost%20overrun", "cluster": "8", "x": -51.37446975708008, "y": 1226.4024658203125, "score": 0 }, { "key": "enterprise resource planning", "label": "Enterprise resource planning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20resource%20planning", "cluster": "8", "x": -194.00209045410156, "y": 995.112060546875, "score": 0.0004602975228350614 }, { "key": "megaproject", "label": "Megaproject", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Megaproject", "cluster": "8", "x": 103.93112182617188, "y": 1166.906005859375, "score": 0.000008466845853842221 }, { "key": "project management institute", "label": "Project Management Institute", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Project%20Management%20Institute", "cluster": "8", "x": -50.1616096496582, "y": 1195.97021484375, "score": 0 }, { "key": "project plan", "label": "Project plan", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Project%20plan", "cluster": "8", "x": -21.676698684692383, "y": 1239.7061767578125, "score": 0 }, { "key": "project stakeholders", "label": "Project stakeholders", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Project%20stakeholders", "cluster": "8", "x": -15.686434745788574, "y": 1260.005859375, "score": 0 }, { "key": "scope creep", "label": "Scope creep", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Scope%20creep", "cluster": "8", "x": -27.17253875732422, "y": 1164.363525390625, "score": 0.000015003365808792268 }, { "key": "agile construction", "label": "Agile construction", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Agile%20construction", "cluster": "8", "x": -30.002187728881836, "y": 1097.8743896484375, "score": 0 }, { "key": "architectural engineering", "label": "Architectural engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Architectural%20engineering", "cluster": "8", "x": -93.81684112548828, "y": 1316.1690673828125, "score": 0.0003156199825469937 }, { "key": "construction management", "label": "Construction management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Construction%20management", "cluster": "8", "x": -74.1944808959961, "y": 1293.9735107421875, "score": 0.0005280955754928869 }, { "key": "cost engineering", "label": "Cost engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cost%20engineering", "cluster": "8", "x": 2.251063108444214, "y": 1207.0843505859375, "score": 0.0007417529695874074 }, { "key": "project production management", "label": "Project Production Management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Project%20Production%20Management", "cluster": "8", "x": 38.51070022583008, "y": 939.77880859375, "score": 0 }, { "key": "project management software", "label": "Project management software", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Project%20management%20software", "cluster": "8", "x": -152.77044677734375, "y": 1073.7823486328125, "score": 0.00363202746866727 }, { "key": "project portfolio management", "label": "Project portfolio management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Project%20portfolio%20management", "cluster": "8", "x": -113.87397003173828, "y": 1132.8336181640625, "score": 0.0001347029240648652 }, { "key": "collaborative project management", "label": "Collaborative project management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Collaborative%20project%20management", "cluster": "8", "x": 57.367347717285156, "y": 1045.2208251953125, "score": 0.00017808351829002255 }, { "key": "earned value management", "label": "Earned value management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Earned%20value%20management", "cluster": "8", "x": 17.581249237060547, "y": 1147.3529052734375, "score": 0.00023903444368522753 }, { "key": "kanban (development)", "label": "Kanban (development)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Kanban%20%28development%29", "cluster": "8", "x": -110.45938110351562, "y": 1058.9912109375, "score": 0.00013761805000137868 }, { "key": "process architecture", "label": "Process architecture", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Process%20architecture", "cluster": "5", "x": -139.80853271484375, "y": 619.0975952148438, "score": 0.021871950884291037 }, { "key": "program management", "label": "Program management", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Program%20management", "cluster": "8", "x": -49.649227142333984, "y": 1119.1243896484375, "score": 0.00017859165414311448 }, { "key": "project accounting", "label": "Project accounting", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Project%20accounting", "cluster": "8", "x": -114.13468933105469, "y": 1112.2706298828125, "score": 0.00014110994238607973 }, { "key": "project governance", "label": "Project governance", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Project%20governance", "cluster": "8", "x": -56.581661224365234, "y": 1170.2353515625, "score": 0.000035916196517622325 }, { "key": "project management simulation", "label": "Project management simulation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Project%20management%20simulation", "cluster": "8", "x": -97.06077575683594, "y": 1129.49267578125, "score": 0.00014133898446339976 }, { "key": "comparison of project management software", "label": "Comparison of project management software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20project%20management%20software", "cluster": "8", "x": -89.66873168945312, "y": 1081.186767578125, "score": 0.0008382676163445142 }, { "key": "event chain methodology", "label": "Event chain methodology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Event%20chain%20methodology", "cluster": "8", "x": -8.225173950195312, "y": 1226.4134521484375, "score": 0.001248099783979696 }, { "key": "event chain diagram", "label": "Event chain diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Event%20chain%20diagram", "cluster": "8", "x": -13.43691635131836, "y": 1074.17138671875, "score": 0.0009559893031089162 }, { "key": "work breakdown structure", "label": "Work breakdown structure", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Work%20breakdown%20structure", "cluster": "8", "x": -127.66885375976562, "y": 1223.6544189453125, "score": 0 }, { "key": "liebig's law of the minimum", "label": "Liebig's law of the minimum", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Liebig%27s%20law%20of%20the%20minimum", "cluster": "6", "x": 396.56768798828125, "y": 1069.8067626953125, "score": 0 }, { "key": "software development", "label": "Software development", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Software%20development", "cluster": "7", "x": -124.12614440917969, "y": 883.1694946289062, "score": 0 }, { "key": "comparison of development estimation software", "label": "Comparison of development estimation software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20development%20estimation%20software", "cluster": "8", "x": -149.40826416015625, "y": 1129.787109375, "score": 0 }, { "key": "enterprise information security architecture", "label": "Enterprise information security architecture", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20information%20security%20architecture", "cluster": "10", "x": -369.4305114746094, "y": 562.4429321289062, "score": 0.00008004019576084232 }, { "key": "process calculus", "label": "Process calculus", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Process%20calculus", "cluster": "5", "x": -126.63936614990234, "y": 655.6812133789062, "score": 0 }, { "key": "process engineering", "label": "Process engineering", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Process%20engineering", "cluster": "10", "x": 17.226964950561523, "y": 824.5567626953125, "score": 0.00003224948610134735 }, { "key": "process management", "label": "Process management", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Process%20management", "cluster": "5", "x": -161.2989044189453, "y": 707.5072631835938, "score": 0 }, { "key": "process modeling", "label": "Process modeling", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Process%20modeling", "cluster": "5", "x": -85.1982650756836, "y": 564.410888671875, "score": 0.00015770854690087843 }, { "key": "process theory", "label": "Process theory", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Process%20theory", "cluster": "5", "x": -148.3819580078125, "y": 681.0198364257812, "score": 0 }, { "key": "system of systems", "label": "System of systems", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/System%20of%20systems", "cluster": "10", "x": -170.56527709960938, "y": 679.349853515625, "score": 0.00023026280604908673 }, { "key": "project manager", "label": "Project manager", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Project%20manager", "cluster": "8", "x": -127.73561096191406, "y": 1170.9034423828125, "score": 0 }, { "key": "decision quality", "label": "Decision quality", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Decision%20quality", "cluster": "20", "x": 112.72098541259766, "y": 282.5699462890625, "score": 0 }, { "key": "learning agenda", "label": "Learning agenda", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Learning%20agenda", "cluster": "8", "x": -145.88592529296875, "y": 962.3294677734375, "score": 0 }, { "key": "teamwork", "label": "Teamwork", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Teamwork", "cluster": "6", "x": 396.1827392578125, "y": 993.49951171875, "score": 0 }, { "key": "applied ethics", "label": "Applied ethics", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Applied%20ethics", "cluster": "23", "x": -34.99174499511719, "y": -138.0040740966797, "score": 0 }, { "key": "comparison of project-management software", "label": "Comparison of project-management software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20project-management%20software", "cluster": "8", "x": -120.3290023803711, "y": 1196.081298828125, "score": 0 }, { "key": "workflow management system", "label": "Workflow management system", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Workflow%20management%20system", "cluster": "5", "x": -410.4610900878906, "y": 788.4273071289062, "score": 0 }, { "key": "construction estimating software", "label": "Construction Estimating Software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Construction%20Estimating%20Software", "cluster": "8", "x": -38.68735122680664, "y": 1299.489990234375, "score": 0 }, { "key": "building officials", "label": "Building officials", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Building%20officials", "cluster": "8", "x": -85.01069641113281, "y": 1348.3443603515625, "score": 0 }, { "key": "civil engineering", "label": "Civil engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Civil%20engineering", "cluster": "8", "x": -94.12588500976562, "y": 1341.4453125, "score": 0 }, { "key": "construction engineering", "label": "Construction engineering", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Construction%20engineering", "cluster": "8", "x": -97.12606048583984, "y": 1352.0477294921875, "score": 0 }, { "key": "international building code", "label": "International Building Code", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/International%20Building%20Code", "cluster": "8", "x": -105.94657135009766, "y": 1343.2684326171875, "score": 0 }, { "key": "three-point estimation", "label": "Three-point estimation", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Three-point%20estimation", "cluster": "6", "x": 414.6502380371094, "y": 1292.01953125, "score": 0.002569317340184649 }, { "key": "five-number summary", "label": "Five-number summary", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Five-number%20summary", "cluster": "6", "x": 499.5010681152344, "y": 1250.922607421875, "score": 0.0009422593618547876 }, { "key": "seven-number summary", "label": "Seven-number summary", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Seven-number%20summary", "cluster": "6", "x": 483.3454284667969, "y": 1281.8575439453125, "score": 0.0008859479500363229 }, { "key": "bates distribution", "label": "Bates distribution", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bates%20distribution", "cluster": "6", "x": 538.359130859375, "y": 1219.283203125, "score": 0 }, { "key": "business process modeling notation", "label": "Business Process Modeling Notation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Business%20Process%20Modeling%20Notation", "cluster": "5", "x": -581.2959594726562, "y": 808.5728149414062, "score": 0.0009071804802351548 }, { "key": "pseudocode", "label": "Pseudocode", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Pseudocode", "cluster": "5", "x": -543.3110961914062, "y": 660.5116577148438, "score": 0.0025462455053100494 }, { "key": "state diagram", "label": "State diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/State%20diagram", "cluster": "5", "x": -373.250732421875, "y": 662.739990234375, "score": 0.00047342997382049054 }, { "key": "capability maturity model integration", "label": "Capability Maturity Model Integration", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Capability%20Maturity%20Model%20Integration", "cluster": "10", "x": 301.9402160644531, "y": 1321.83935546875, "score": 0.0001582680754281369 }, { "key": "lean manufacturing", "label": "Lean manufacturing", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Lean%20manufacturing", "cluster": "10", "x": 181.2095489501953, "y": 989.1815795898438, "score": 0.005769578684017048 }, { "key": "malcolm baldrige national quality award", "label": "Malcolm Baldrige National Quality Award", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Malcolm%20Baldrige%20National%20Quality%20Award", "cluster": "10", "x": 274.0092468261719, "y": 1189.36572265625, "score": 0 }, { "key": "people capability maturity model", "label": "People Capability Maturity Model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/People%20Capability%20Maturity%20Model", "cluster": "10", "x": 291.64288330078125, "y": 1323.7218017578125, "score": 0.0001582680754281369 }, { "key": "zero defects", "label": "Zero Defects", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Zero%20Defects", "cluster": "10", "x": 301.99395751953125, "y": 1154.85107421875, "score": 0.000028146829465812138 }, { "key": "process (engineering)", "label": "Process (engineering)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Process%20%28engineering%29", "cluster": "10", "x": 514.9669799804688, "y": 1139.0418701171875, "score": 0 }, { "key": "software testing", "label": "Software testing", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Software%20testing", "cluster": "10", "x": 67.65959167480469, "y": 908.8485717773438, "score": 0 }, { "key": "verification and validation", "label": "Verification and validation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Verification%20and%20validation", "cluster": "10", "x": 422.4881896972656, "y": 1098.6083984375, "score": 0 }, { "key": "economic inequality", "label": "Economic inequality", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Economic%20inequality", "cluster": "6", "x": 1117.5673828125, "y": 538.725830078125, "score": 0 }, { "key": "bradford's law", "label": "Bradford's law", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bradford%27s%20law", "cluster": "6", "x": 1028.221923828125, "y": 623.0943603515625, "score": 0 }, { "key": "pareto efficiency", "label": "Pareto efficiency", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Pareto%20efficiency", "cluster": "6", "x": 861.7317504882812, "y": 775.062744140625, "score": 0 }, { "key": "preferential attachment", "label": "Preferential attachment", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Preferential%20attachment", "cluster": "6", "x": 1023.4658813476562, "y": 435.6925964355469, "score": 0 }, { "key": "hofstadter's law", "label": "Hofstadter's law", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Hofstadter%27s%20law", "cluster": "6", "x": 1154.76904296875, "y": 578.900390625, "score": 0 }, { "key": "lindy effect", "label": "Lindy effect", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Lindy%20effect", "cluster": "6", "x": 1031.431884765625, "y": 469.0764465332031, "score": 0 }, { "key": "capability maturity model", "label": "Capability Maturity Model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Capability%20Maturity%20Model", "cluster": "10", "x": 308.13568115234375, "y": 1354.500244140625, "score": 0 }, { "key": "capability immaturity model", "label": "Capability Immaturity Model", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Capability%20Immaturity%20Model", "cluster": "10", "x": 298.085693359375, "y": 1356.4559326171875, "score": 0 }, { "key": "production flow analysis", "label": "Production flow analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Production%20flow%20analysis", "cluster": "10", "x": 238.92103576660156, "y": 1124.8336181640625, "score": 0 }, { "key": "total productive maintenance", "label": "Total productive maintenance", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Total%20productive%20maintenance", "cluster": "10", "x": 186.51251220703125, "y": 1016.1594848632812, "score": 0 }, { "key": "corrective and preventative action", "label": "Corrective and Preventative Action", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Corrective%20and%20Preventative%20Action", "cluster": "10", "x": 500.665283203125, "y": 999.0230712890625, "score": 0.0005582311710398937 }, { "key": "kurtosis", "label": "Kurtosis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Kurtosis", "cluster": "16", "x": 616.7974243164062, "y": 968.565673828125, "score": 0.00002165044070582537 }, { "key": "normal distribution", "label": "Normal distribution", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Normal%20distribution", "cluster": "6", "x": 633.6036987304688, "y": 1103.5816650390625, "score": 0.0001526554407216616 }, { "key": "tolerance (engineering)", "label": "Tolerance (engineering)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Tolerance%20%28engineering%29", "cluster": "10", "x": 445.94537353515625, "y": 1056.262451171875, "score": 0.0003836324849607642 }, { "key": "continual improvement process", "label": "Continual improvement process", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Continual%20improvement%20process", "cluster": "10", "x": 232.50767517089844, "y": 1103.8302001953125, "score": 0.0002198523514231813 }, { "key": "epistemology", "label": "Epistemology", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Epistemology", "cluster": "10", "x": 321.9123229980469, "y": 1174.5279541015625, "score": 0 }, { "key": "joseph m. juran", "label": "Joseph M. Juran", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Joseph%20M.%20Juran", "cluster": "10", "x": 325.752197265625, "y": 1166.150634765625, "score": 0 }, { "key": "kaizen", "label": "Kaizen", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Kaizen", "cluster": "10", "x": 152.36337280273438, "y": 929.4298095703125, "score": 0.0025326209906904357 }, { "key": "shewhart cycle", "label": "Shewhart cycle", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Shewhart%20cycle", "cluster": "10", "x": 209.26394653320312, "y": 941.5364379882812, "score": 0.002184882412485975 }, { "key": "toyota production system", "label": "Toyota Production System", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Toyota%20Production%20System", "cluster": "10", "x": 287.459716796875, "y": 1172.2589111328125, "score": 0.00008381713018784381 }, { "key": "nuclear safety", "label": "Nuclear safety", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Nuclear%20safety", "cluster": "10", "x": 382.4031982421875, "y": 1184.47314453125, "score": 0 }, { "key": "probabilistic risk assessment", "label": "Probabilistic risk assessment", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Probabilistic%20risk%20assessment", "cluster": "8", "x": 128.81971740722656, "y": 1068.116455078125, "score": 0.0008304555554512126 }, { "key": "good documentation practice", "label": "Good documentation practice", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Good%20documentation%20practice", "cluster": "10", "x": 512.6539916992188, "y": 1016.36376953125, "score": 0 }, { "key": "good automated manufacturing practice", "label": "Good automated manufacturing practice", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Good%20automated%20manufacturing%20practice", "cluster": "10", "x": 502.7091979980469, "y": 1017.5064697265625, "score": 0 }, { "key": "training within industry", "label": "Training Within Industry", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Training%20Within%20Industry", "cluster": "10", "x": 263.1532897949219, "y": 1188.606201171875, "score": 0 }, { "key": "comparison of risk analysis microsoft excel add-ins", "label": "Comparison of risk analysis Microsoft Excel add-ins", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20risk%20analysis%20Microsoft%20Excel%20add-ins", "cluster": "8", "x": -333.3983459472656, "y": 781.460693359375, "score": 0.0033520842812764956 }, { "key": "probabilistic design", "label": "Probabilistic design", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Probabilistic%20design", "cluster": "10", "x": 469.98602294921875, "y": 1020.184326171875, "score": 0 }, { "key": "bagplot", "label": "Bagplot", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Bagplot", "cluster": "6", "x": 644.1790161132812, "y": 1171.4830322265625, "score": 0 }, { "key": "fan chart (statistics)", "label": "Fan chart (statistics)", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Fan%20chart%20%28statistics%29", "cluster": "6", "x": 622.1781616210938, "y": 1146.2523193359375, "score": 0 }, { "key": "functional boxplot", "label": "Functional boxplot", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Functional%20boxplot", "cluster": "6", "x": 634.5318603515625, "y": 1160.9537353515625, "score": 0 }, { "key": "control-flow diagram", "label": "Control-flow diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Control-flow%20diagram", "cluster": "5", "x": -537.344482421875, "y": 697.4069213867188, "score": 0.0009185499013253501 }, { "key": "deployment flowchart", "label": "Deployment flowchart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Deployment%20flowchart", "cluster": "5", "x": -501.1988525390625, "y": 724.1233520507812, "score": 0.000012845330034250812 }, { "key": "flow map", "label": "Flow map", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Flow%20map", "cluster": "5", "x": -663.7676391601562, "y": 886.9624633789062, "score": 0.00022575722456735117 }, { "key": "functional flow block diagram", "label": "Functional flow block diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Functional%20flow%20block%20diagram", "cluster": "5", "x": -554.7855834960938, "y": 892.6002807617188, "score": 0.002190521762149941 }, { "key": "nassi–shneiderman diagram", "label": "Nassi–Shneiderman diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Nassi%E2%80%93Shneiderman%20diagram", "cluster": "5", "x": -527.9801025390625, "y": 719.7039794921875, "score": 0.0004597143344220195 }, { "key": "warnier/orr diagram", "label": "Warnier/Orr diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Warnier%2FOrr%20diagram", "cluster": "5", "x": -554.2061157226562, "y": 919.4043579101562, "score": 0.00041598429963734325 }, { "key": "augmented transition network", "label": "Augmented transition network", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Augmented%20transition%20network", "cluster": "5", "x": -419.5921325683594, "y": 187.4227294921875, "score": 0.00038065749267819025 }, { "key": "business process mapping", "label": "Business process mapping", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Business%20process%20mapping", "cluster": "5", "x": -393.801513671875, "y": 807.482177734375, "score": 0.006227130192124564 }, { "key": "recursive transition network", "label": "Recursive transition network", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Recursive%20transition%20network", "cluster": "5", "x": -470.0567932128906, "y": 122.6323013305664, "score": 0.0015617303854672676 }, { "key": "charles sanders peirce", "label": "Charles Sanders Peirce", "tag": "Person", "URL": "https://en.wikipedia.org/wiki/Charles%20Sanders%20Peirce", "cluster": "3", "x": -508.45550537109375, "y": -927.19775390625, "score": 0.0019154664335682345 }, { "key": "logical connectives", "label": "Logical connectives", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Logical%20connectives", "cluster": "3", "x": -412.56488037109375, "y": -1136.6292724609375, "score": 0.0006016925761360814 }, { "key": "marquand diagram", "label": "Marquand diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Marquand%20diagram", "cluster": "3", "x": -250.1806640625, "y": -1222.9227294921875, "score": 0.00005510496869924519 }, { "key": "veitch chart", "label": "Veitch chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Veitch%20chart", "cluster": "3", "x": -231.67381286621094, "y": -1216.7755126953125, "score": 0.00005510496869924519 }, { "key": "octahedron", "label": "Octahedron", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Octahedron", "cluster": "3", "x": -254.6842498779297, "y": -1381.578857421875, "score": 0.0006330723017125476 }, { "key": "triquetra", "label": "Triquetra", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Triquetra", "cluster": "25", "x": -162.45716857910156, "y": -1454.6900634765625, "score": 0.0007934017558365648 }, { "key": "vesica piscis", "label": "Vesica piscis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Vesica%20piscis", "cluster": "0", "x": -105.0466537475586, "y": -1276.5692138671875, "score": 0.00032909107966959167 }, { "key": "flower of life (geometry)", "label": "Flower of Life (geometry)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Flower%20of%20Life%20%28geometry%29", "cluster": "0", "x": -15.678250312805176, "y": -1219.8017578125, "score": 0.000012554928813317935 }, { "key": "villarceau circles", "label": "Villarceau circles", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Villarceau%20circles", "cluster": "0", "x": -97.23126220703125, "y": -1310.8026123046875, "score": 0 }, { "key": "borromean rings", "label": "Borromean rings", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Borromean%20rings", "cluster": "25", "x": -141.40252685546875, "y": -1497.025634765625, "score": 0 }, { "key": "celtic knot", "label": "Celtic knot", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Celtic%20knot", "cluster": "25", "x": -164.53338623046875, "y": -1480.0662841796875, "score": 0 }, { "key": "three hares", "label": "Three hares", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Three%20hares", "cluster": "25", "x": -150.81739807128906, "y": -1503.137451171875, "score": 0 }, { "key": "trefoil knot", "label": "Trefoil knot", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Trefoil%20knot", "cluster": "25", "x": -150.71078491210938, "y": -1468.2459716796875, "score": 0 }, { "key": "triskelion", "label": "Triskelion", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Triskelion", "cluster": "25", "x": -154.80691528320312, "y": -1490.02978515625, "score": 0 }, { "key": "disdyakis dodecahedron", "label": "Disdyakis dodecahedron", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Disdyakis%20dodecahedron", "cluster": "3", "x": -267.4638671875, "y": -1415.0596923828125, "score": 0 }, { "key": "octahedral molecular geometry", "label": "Octahedral molecular geometry", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Octahedral%20molecular%20geometry", "cluster": "3", "x": -257.69171142578125, "y": -1420.8101806640625, "score": 0 }, { "key": "octahedral symmetry", "label": "Octahedral symmetry", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Octahedral%20symmetry", "cluster": "3", "x": -258.0747985839844, "y": -1409.9915771484375, "score": 0 }, { "key": "octahedral sphere", "label": "Octahedral sphere", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Octahedral%20sphere", "cluster": "3", "x": -248.1960906982422, "y": -1414.4342041015625, "score": 0 }, { "key": "ring sum normal form", "label": "Ring sum normal form", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Ring%20sum%20normal%20form", "cluster": "3", "x": -314.47320556640625, "y": -1288.212890625, "score": 0 }, { "key": "zhegalkin normal form", "label": "Zhegalkin normal form", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Zhegalkin%20normal%20form", "cluster": "3", "x": -294.6446533203125, "y": -1289.814697265625, "score": 0 }, { "key": "ampheck", "label": "Ampheck", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Ampheck", "cluster": "3", "x": -430.7632141113281, "y": -1153.0762939453125, "score": 0.00021528246755946574 }, { "key": "boolean algebras canonically defined", "label": "Boolean algebras canonically defined", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Boolean%20algebras%20canonically%20defined", "cluster": "3", "x": -508.8694152832031, "y": -1054.794921875, "score": 0 }, { "key": "business process automation", "label": "Business process automation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Business%20process%20automation", "cluster": "5", "x": -500.5722351074219, "y": 752.9152221679688, "score": 0.0014642020947286593 }, { "key": "process-driven application", "label": "Process-driven application", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Process-driven%20application", "cluster": "5", "x": -420.617431640625, "y": 591.4993286132812, "score": 0.00011704295966413995 }, { "key": "workflow engine", "label": "Workflow engine", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Workflow%20engine", "cluster": "5", "x": -577.9135131835938, "y": 551.3309326171875, "score": 0.00026435405972833996 }, { "key": "business process reengineering", "label": "Business process reengineering", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Business%20process%20reengineering", "cluster": "5", "x": -317.7056884765625, "y": 765.9397583007812, "score": 0.0033820750643419463 }, { "key": "comparison of business integration software", "label": "Comparison of business integration software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20business%20integration%20software", "cluster": "5", "x": -444.1346130371094, "y": 779.1053466796875, "score": 0 }, { "key": "enterprise planning systems", "label": "Enterprise planning systems", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20planning%20systems", "cluster": "7", "x": -373.4446716308594, "y": 542.2985229492188, "score": 0.0005602771935028787 }, { "key": "business rules engine", "label": "Business rules engine", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Business%20rules%20engine", "cluster": "5", "x": -592.3363037109375, "y": 682.5166625976562, "score": 0 }, { "key": "syntax diagram", "label": "Syntax diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Syntax%20diagram", "cluster": "5", "x": -502.46826171875, "y": 74.24303436279297, "score": 0.000008019662108864837 }, { "key": "context free language", "label": "Context free language", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Context%20free%20language", "cluster": "5", "x": -490.2189025878906, "y": 170.5166778564453, "score": 0 }, { "key": "finite state machine", "label": "Finite state machine", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Finite%20state%20machine", "cluster": "5", "x": -179.53469848632812, "y": 387.6807556152344, "score": 0.000979215166208021 }, { "key": "literate programming", "label": "Literate programming", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Literate%20programming", "cluster": "11", "x": -647.0657958984375, "y": 598.3199462890625, "score": 0.00003432562392573936 }, { "key": "program design language", "label": "Program Design Language", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Program%20Design%20Language", "cluster": "5", "x": -599.4225463867188, "y": 744.0890502929688, "score": 0.0000496515498144652 }, { "key": "short code", "label": "Short Code", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Short%20Code", "cluster": "14", "x": -294.53173828125, "y": 788.0514526367188, "score": 0.00005595446185535373 }, { "key": "self-documenting code", "label": "Self-documenting code", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Self-documenting%20code", "cluster": "11", "x": -640.4028930664062, "y": 492.8586730957031, "score": 0 }, { "key": "flow chart", "label": "FLOW CHART", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/FLOW%20CHART", "cluster": "5", "x": -610.8168334960938, "y": 854.5322265625, "score": 0 }, { "key": "structured programming", "label": "Structured programming", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Structured%20programming", "cluster": "5", "x": -541.2838134765625, "y": 742.413330078125, "score": 0.00033302913144536006 }, { "key": "shape grammar", "label": "Shape grammar", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Shape%20grammar", "cluster": "5", "x": -260.9905700683594, "y": -406.5790710449219, "score": 0 }, { "key": "business model canvas", "label": "Business Model Canvas", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Business%20Model%20Canvas", "cluster": "5", "x": -469.2712097167969, "y": 742.2107543945312, "score": 0.000004321260525437796 }, { "key": "business process discovery", "label": "Business process discovery", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Business%20process%20discovery", "cluster": "7", "x": -236.7830352783203, "y": 567.2149047851562, "score": 0.005449247439062686 }, { "key": "ethnography", "label": "Ethnography", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Ethnography", "cluster": "11", "x": -654.031005859375, "y": 491.0347900390625, "score": 0.000015837168970121025 }, { "key": "n2 chart", "label": "N2 chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/N2%20chart", "cluster": "5", "x": -530.2280883789062, "y": 855.6331787109375, "score": 0.00025400389308355344 }, { "key": "process-centered design", "label": "Process-centered design", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Process-centered%20design", "cluster": "5", "x": -453.4983825683594, "y": 661.7344360351562, "score": 0.00008038787773616332 }, { "key": "structured analysis and design technique", "label": "Structured Analysis and Design Technique", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Structured%20Analysis%20and%20Design%20Technique", "cluster": "5", "x": -480.22412109375, "y": 943.4354858398438, "score": 0.00035627933627501265 }, { "key": "value stream mapping", "label": "Value stream mapping", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Value%20stream%20mapping", "cluster": "5", "x": -252.99949645996094, "y": 992.487548828125, "score": 0.000327470018936493 }, { "key": "control system", "label": "Control system", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Control%20system", "cluster": "7", "x": -327.9766845703125, "y": 390.2037048339844, "score": 0 }, { "key": "scxml", "label": "SCXML", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/SCXML", "cluster": "5", "x": -310.6828918457031, "y": 563.4260864257812, "score": 0 }, { "key": "uml state machine", "label": "UML state machine", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/UML%20state%20machine", "cluster": "5", "x": -303.6513366699219, "y": 571.4246215820312, "score": 0 }, { "key": "value-stream-mapping software", "label": "Value-stream-mapping software", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Value-stream-mapping%20software", "cluster": "5", "x": -273.2532958984375, "y": 1026.7098388671875, "score": 0 }, { "key": "value chain", "label": "Value chain", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Value%20chain", "cluster": "5", "x": -261.7157897949219, "y": 1030.7386474609375, "score": 0 }, { "key": "value stream", "label": "Value stream", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Value%20stream", "cluster": "5", "x": -270.6842041015625, "y": 1037.1104736328125, "score": 0 }, { "key": "process analysis", "label": "Process analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Process%20analysis", "cluster": "7", "x": -210.2657928466797, "y": 590.4659423828125, "score": 0 }, { "key": "process mining", "label": "Process mining", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Process%20mining", "cluster": "7", "x": -148.78109741210938, "y": 524.6329956054688, "score": 0.00500145692793287 }, { "key": "idef0", "label": "IDEF0", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/IDEF0", "cluster": "5", "x": -578.6484985351562, "y": 902.3214721679688, "score": 0.0002233422442282158 }, { "key": "jackson structured programming", "label": "Jackson structured programming", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Jackson%20structured%20programming", "cluster": "5", "x": -574.736083984375, "y": 1029.7259521484375, "score": 0 }, { "key": "structure chart", "label": "Structure chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Structure%20chart", "cluster": "5", "x": -499.7956848144531, "y": 931.2293090820312, "score": 0.0010614241058653948 }, { "key": "department of defense architecture framework", "label": "Department of Defense Architecture Framework", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Department%20of%20Defense%20Architecture%20Framework", "cluster": "10", "x": -236.58062744140625, "y": 765.2691650390625, "score": 0 }, { "key": "web graph", "label": "Web graph", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Web%20graph", "cluster": "0", "x": -142.76585388183594, "y": 118.70824432373047, "score": 0 }, { "key": "enterprise architecture planning", "label": "Enterprise architecture planning", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Enterprise%20architecture%20planning", "cluster": "10", "x": -620.6119995117188, "y": 486.73736572265625, "score": 0 }, { "key": "decision engineering", "label": "Decision engineering", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Decision%20engineering", "cluster": "7", "x": 74.17289733886719, "y": 414.4566650390625, "score": 0.0028601250260362155 }, { "key": "structured design", "label": "Structured Design", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Structured%20Design", "cluster": "5", "x": -620.3675537109375, "y": 1009.4822998046875, "score": 0.0000944978162743678 }, { "key": "david harel", "label": "David Harel", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/David%20Harel", "cluster": "5", "x": -402.5850524902344, "y": 737.1544189453125, "score": 0 }, { "key": "block diagram", "label": "Block diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Block%20diagram", "cluster": "5", "x": -464.1194152832031, "y": 906.7166137695312, "score": 0.00003144063758015166 }, { "key": "dataflow", "label": "Dataflow", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Dataflow", "cluster": "5", "x": -567.7676391601562, "y": 831.9502563476562, "score": 0.0002559012026435062 }, { "key": "flow diagram", "label": "Flow diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Flow%20diagram", "cluster": "5", "x": -652.7420654296875, "y": 892.2146606445312, "score": 0.00045556469178952865 }, { "key": "flow process chart", "label": "Flow process chart", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Flow%20process%20chart", "cluster": "5", "x": -525.3919677734375, "y": 829.8629150390625, "score": 0.0005428182902794262 }, { "key": "functional block diagram", "label": "Functional block diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Functional%20block%20diagram", "cluster": "5", "x": -620.1526489257812, "y": 895.3052368164062, "score": 0 }, { "key": "signal flow", "label": "Signal flow", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Signal%20flow", "cluster": "5", "x": -606.0197143554688, "y": 966.6506958007812, "score": 0 }, { "key": "signal-flow graph", "label": "Signal-flow graph", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Signal-flow%20graph", "cluster": "5", "x": -539.0392456054688, "y": 964.7048950195312, "score": 0 }, { "key": "thematic map", "label": "Thematic map", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Thematic%20map", "cluster": "5", "x": -720.6314086914062, "y": 943.06689453125, "score": 0 }, { "key": "hipo", "label": "HIPO", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/HIPO", "cluster": "5", "x": -590.2791137695312, "y": 1022.4765625, "score": 0 }, { "key": "data island", "label": "Data island", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data%20island", "cluster": "5", "x": -528.0003662109375, "y": 884.1240234375, "score": 0 }, { "key": "pipeline (software)", "label": "Pipeline (software)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Pipeline%20%28software%29", "cluster": "5", "x": -688.5916748046875, "y": 827.86279296875, "score": 0.000126350022544248 }, { "key": "control-flow analysis", "label": "Control-flow analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Control-flow%20analysis", "cluster": "5", "x": -579.833740234375, "y": 579.70166015625, "score": 0 }, { "key": "data-flow analysis", "label": "Data-flow analysis", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Data-flow%20analysis", "cluster": "5", "x": -586.8435668945312, "y": 525.6884765625, "score": 0.000019607770036651322 }, { "key": "interval (graph theory)", "label": "Interval (graph theory)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Interval%20%28graph%20theory%29", "cluster": "0", "x": 83.34117126464844, "y": -418.7466125488281, "score": 0.00006539386730911719 }, { "key": "cyclomatic complexity", "label": "Cyclomatic complexity", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Cyclomatic%20complexity", "cluster": "10", "x": -261.3030090332031, "y": 658.782470703125, "score": 0.0001595211719043318 }, { "key": "compiler construction", "label": "Compiler construction", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Compiler%20construction", "cluster": "5", "x": -563.9224243164062, "y": 326.802734375, "score": 0.00001538194371009687 }, { "key": "intermediate representation", "label": "Intermediate representation", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Intermediate%20representation", "cluster": "5", "x": -407.01470947265625, "y": -50.21286392211914, "score": 0.0011410189178788453 }, { "key": "pipeline (computing)", "label": "Pipeline (computing)", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Pipeline%20%28computing%29", "cluster": "5", "x": -684.8992919921875, "y": 877.03271484375, "score": 0 }, { "key": "data-flow diagram", "label": "Data-flow diagram", "tag": "Chart type", "URL": "https://en.wikipedia.org/wiki/Data-flow%20diagram", "cluster": "5", "x": -516.2733764648438, "y": 809.5458374023438, "score": 0.00042156007710739704 }, { "key": "stanine", "label": "Stanine", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Stanine", "cluster": "6", "x": 501.37432861328125, "y": 1318.307373046875, "score": 0 }, { "key": "power pivot", "label": "Power Pivot", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Power%20Pivot", "cluster": "1", "x": -962.5458984375, "y": 671.6908569335938, "score": 4.580841546400489e-7 }, { "key": "sql server reporting services", "label": "SQL Server Reporting Services", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/SQL%20Server%20Reporting%20Services", "cluster": "1", "x": -986.6868286132812, "y": 690.6287231445312, "score": 0 }, { "key": "dot language", "label": "Dot language", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Dot%20language", "cluster": "0", "x": 314.6363220214844, "y": -658.5114135742188, "score": 0.000002863025966500306 }, { "key": "graphml", "label": "GraphML", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/GraphML", "cluster": "0", "x": 398.3376770019531, "y": -794.3638305664062, "score": 0.0000020613786958802203 }, { "key": "graph modelling language", "label": "Graph Modelling Language", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Graph%20Modelling%20Language", "cluster": "0", "x": 406.50634765625, "y": -917.166259765625, "score": 9.161683092800978e-7 }, { "key": "graphviz", "label": "Graphviz", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Graphviz", "cluster": "0", "x": 337.43341064453125, "y": -855.3829345703125, "score": 0.0006227587257003393 }, { "key": "tulip (software)", "label": "Tulip (software)", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Tulip%20%28software%29", "cluster": "0", "x": 427.88726806640625, "y": -820.2510375976562, "score": 0 }, { "key": "networkx", "label": "NetworkX", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/NetworkX", "cluster": "0", "x": 346.928955078125, "y": -542.831298828125, "score": 0.000016175014296869265 }, { "key": "nodexl", "label": "NodeXL", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/NodeXL", "cluster": "0", "x": 424.1848449707031, "y": -728.8676147460938, "score": 6.871262319600734e-7 }, { "key": "netminer", "label": "NetMiner", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/NetMiner", "cluster": "11", "x": 13.391841888427734, "y": -523.8058471679688, "score": 0.00021590043833104623 }, { "key": "geographic data files", "label": "Geographic Data Files", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/Geographic%20Data%20Files", "cluster": "0", "x": 449.1875915527344, "y": -771.95458984375, "score": 0 }, { "key": "jgraph", "label": "JGraph", "tag": "unknown", "URL": "https://en.wikipedia.org/wiki/JGraph", "cluster": "0", "x": 345.4468994140625, "y": -513.389404296875, "score": 0.00031299045782454176 }, { "key": "protein–protein interaction prediction", "label": "Protein–protein interaction prediction", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Protein%E2%80%93protein%20interaction%20prediction", "cluster": "15", "x": 1004.7494506835938, "y": -691.8551635742188, "score": 0.0009310674964097654 }, { "key": "microsoft automatic graph layout", "label": "Microsoft Automatic Graph Layout", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Microsoft%20Automatic%20Graph%20Layout", "cluster": "0", "x": 331.71417236328125, "y": -835.1574096679688, "score": 0.0000022140734140935696 }, { "key": "dot (graph description language)", "label": "DOT (graph description language)", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/DOT%20%28graph%20description%20language%29", "cluster": "0", "x": 330.7899169921875, "y": -672.3536376953125, "score": 0.00000190868397766687 }, { "key": "boost (c++ libraries)", "label": "Boost (C++ libraries)", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Boost%20%28C%2B%2B%20libraries%29", "cluster": "0", "x": 415.9084777832031, "y": -867.0408325195312, "score": 0 }, { "key": "graph query language", "label": "Graph Query Language", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Graph%20Query%20Language", "cluster": "0", "x": 434.9285583496094, "y": -983.8629150390625, "score": 0 }, { "key": "interactome", "label": "Interactome", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Interactome", "cluster": "15", "x": 931.6098022460938, "y": -664.4171752929688, "score": 0.0013715001416243512 }, { "key": "protein–protein interaction", "label": "Protein–protein interaction", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Protein%E2%80%93protein%20interaction", "cluster": "15", "x": 996.8489990234375, "y": -659.071044921875, "score": 0.000003450900631621702 }, { "key": "macromolecular docking", "label": "Macromolecular docking", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Macromolecular%20docking", "cluster": "15", "x": 1062.772216796875, "y": -719.6677856445312, "score": 0 }, { "key": "protein–dna interaction site predictor", "label": "Protein–DNA interaction site predictor", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Protein%E2%80%93DNA%20interaction%20site%20predictor", "cluster": "15", "x": 1047.36083984375, "y": -708.6412353515625, "score": 0 }, { "key": "two-hybrid screening", "label": "Two-hybrid screening", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Two-hybrid%20screening", "cluster": "15", "x": 1066.3094482421875, "y": -710.1304321289062, "score": 0 }, { "key": "protein structure prediction software", "label": "Protein structure prediction software", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Protein%20structure%20prediction%20software", "cluster": "15", "x": 959.542724609375, "y": -490.18841552734375, "score": 0.000004122757391760441 }, { "key": "lisp2dot", "label": "lisp2dot", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/lisp2dot", "cluster": "0", "x": 303.3143005371094, "y": -797.5460205078125, "score": 0.0009117783361314639 }, { "key": "greedoid", "label": "Greedoid", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Greedoid", "cluster": "0", "x": 76.61669921875, "y": -939.4685668945312, "score": 0 }, { "key": "algebraic connectivity", "label": "Algebraic connectivity", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Algebraic%20connectivity", "cluster": "0", "x": 253.59130859375, "y": -1034.6275634765625, "score": 0 }, { "key": "iterative deepening depth-first search", "label": "Iterative deepening depth-first search", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Iterative%20deepening%20depth-first%20search", "cluster": "0", "x": 149.87374877929688, "y": -1143.59765625, "score": 0 }, { "key": "comparison of spreadsheet software", "label": "Comparison of spreadsheet software", "tag": "List", "URL": "https://en.wikipedia.org/wiki/Comparison%20of%20spreadsheet%20software", "cluster": "1", "x": -776.5743408203125, "y": 477.5683288574219, "score": 0.000014774031994560578 }, { "key": "numbers (spreadsheet)", "label": "Numbers (spreadsheet)", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Numbers%20%28spreadsheet%29", "cluster": "1", "x": -880.4827270507812, "y": 554.8485717773438, "score": 0.0000022904207732002445 }, { "key": "iwork", "label": "iWork", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/iWork", "cluster": "1", "x": -813.2083129882812, "y": 483.4127197265625, "score": 0.000008474556860840905 }, { "key": "office open xml software", "label": "Office Open XML software", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Office%20Open%20XML%20software", "cluster": "1", "x": -753.2775268554688, "y": 392.71966552734375, "score": 0.0000029393733256069803 }, { "key": "icloud", "label": "iCloud", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/iCloud", "cluster": "1", "x": -752.9429931640625, "y": 437.57586669921875, "score": 0.0000018323366185601957 }, { "key": "keynote (presentation software)", "label": "Keynote (presentation software)", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Keynote%20%28presentation%20software%29", "cluster": "1", "x": -864.8671264648438, "y": 502.1781921386719, "score": 9.352551490567665e-7 }, { "key": "pages (word processor)", "label": "Pages (word processor)", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Pages%20%28word%20processor%29", "cluster": "1", "x": -834.1121215820312, "y": 470.9835510253906, "score": 4.771709944167175e-7 }, { "key": "spreadsheet", "label": "Spreadsheet", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Spreadsheet", "cluster": "11", "x": -725.0173950195312, "y": 532.7301635742188, "score": 0.000027215296872260552 }, { "key": "probability", "label": "Probability", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Probability", "cluster": "7", "x": 203.45880126953125, "y": 559.2757568359375, "score": 0.003306316576141313 }, { "key": "plug-in (computing)", "label": "Plug-in (computing)", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Plug-in%20%28computing%29", "cluster": "8", "x": -356.11712646484375, "y": 872.12451171875, "score": 0 }, { "key": "power bi", "label": "Power BI", "tag": "Tool", "URL": "https://en.wikipedia.org/wiki/Power%20BI", "cluster": "1", "x": -978.4342651367188, "y": 681.9530639648438, "score": 2.2904207732002446e-7 }, { "key": "federated database system", "label": "Federated database system", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Federated%20database%20system", "cluster": "11", "x": -1130.8909912109375, "y": 98.13650512695312, "score": 0 }, { "key": "enterprise integration patterns", "label": "Enterprise Integration Patterns", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Enterprise%20Integration%20Patterns", "cluster": "11", "x": -1059.231689453125, "y": 234.06405639648438, "score": 0 }, { "key": "generalised enterprise reference architecture and methodology", "label": "Generalised Enterprise Reference Architecture and Methodology", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Generalised%20Enterprise%20Reference%20Architecture%20and%20Methodology", "cluster": "11", "x": -1047.5244140625, "y": 234.57705688476562, "score": 0 }, { "key": "data preparation", "label": "Data preparation", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Data%20preparation", "cluster": "11", "x": -1182.1700439453125, "y": 313.6742858886719, "score": 0 }, { "key": "analytic applications", "label": "Analytic applications", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Analytic%20applications", "cluster": "7", "x": -223.69854736328125, "y": 482.7732849121094, "score": 0 }, { "key": "artificial intelligence marketing", "label": "Artificial intelligence marketing", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Artificial%20intelligence%20marketing", "cluster": "7", "x": -305.7287902832031, "y": 541.1768798828125, "score": 0 }, { "key": "customer dynamics", "label": "Customer dynamics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Customer%20dynamics", "cluster": "7", "x": -227.7859344482422, "y": 517.0107421875, "score": 0.0004055187841816287 }, { "key": "mobile business intelligence", "label": "Mobile business intelligence", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Mobile%20business%20intelligence", "cluster": "7", "x": -185.3873748779297, "y": 422.1286926269531, "score": 0.0009668267060289941 }, { "key": "operational intelligence", "label": "Operational intelligence", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Operational%20intelligence", "cluster": "7", "x": -253.9409637451172, "y": 578.9827880859375, "score": 0 }, { "key": "real-time business intelligence", "label": "Real-time business intelligence", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Real-time%20business%20intelligence", "cluster": "7", "x": -267.79443359375, "y": 559.9518432617188, "score": 0.0005858828044936158 }, { "key": "sales intelligence", "label": "Sales intelligence", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Sales%20intelligence", "cluster": "7", "x": -183.25, "y": 517.6284790039062, "score": 0.0008053434882142492 }, { "key": "test and learn", "label": "Test and learn", "tag": "Method", "URL": "https://en.wikipedia.org/wiki/Test%20and%20learn", "cluster": "7", "x": -182.7711181640625, "y": 294.87750244140625, "score": 0.0010864519659334508 }, { "key": "intention mining", "label": "Intention mining", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Intention%20mining", "cluster": "7", "x": -103.37336730957031, "y": 378.8362121582031, "score": 0 }, { "key": "speech analytics", "label": "Speech analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Speech%20analytics", "cluster": "7", "x": -232.82574462890625, "y": 505.62066650390625, "score": 0.000051130688824353656 }, { "key": "architectural analytics", "label": "Architectural analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Architectural%20analytics", "cluster": "7", "x": -158.94908142089844, "y": 471.169921875, "score": 0 }, { "key": "behavioral analytics", "label": "Behavioral analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Behavioral%20analytics", "cluster": "7", "x": -178.71360778808594, "y": 454.0947570800781, "score": 0.0005306821544842584 }, { "key": "business analytics", "label": "Business analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Business%20analytics", "cluster": "7", "x": -197.9529571533203, "y": 489.3025207519531, "score": 0.0005534106612606332 }, { "key": "customer analytics", "label": "Customer analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Customer%20analytics", "cluster": "7", "x": -250.89083862304688, "y": 364.01043701171875, "score": 0.00029561859621850083 }, { "key": "mobile location analytics", "label": "Mobile Location Analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Mobile%20Location%20Analytics", "cluster": "7", "x": -251.82257080078125, "y": 463.0585021972656, "score": 0.00002264931865413765 }, { "key": "online video analytics", "label": "Online video analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Online%20video%20analytics", "cluster": "7", "x": -127.01669311523438, "y": 381.9880676269531, "score": 0 }, { "key": "operational reporting", "label": "Operational reporting", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Operational%20reporting", "cluster": "7", "x": -251.61904907226562, "y": 390.6012268066406, "score": 0.00015758094919617684 }, { "key": "prediction", "label": "Prediction", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Prediction", "cluster": "6", "x": 236.26939392089844, "y": 547.5390625, "score": 0.0003643392260161943 }, { "key": "predictive engineering analytics", "label": "Predictive engineering analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Predictive%20engineering%20analytics", "cluster": "7", "x": -428.2120666503906, "y": 328.26483154296875, "score": 0.0001643528559594672 }, { "key": "prescriptive analytics", "label": "Prescriptive analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Prescriptive%20analytics", "cluster": "7", "x": -2.6841912269592285, "y": 456.704833984375, "score": 0.00009045126775112305 }, { "key": "smart grid", "label": "Smart grid", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Smart%20grid", "cluster": "20", "x": -265.4909973144531, "y": 364.54156494140625, "score": 0.0000961171410105334 }, { "key": "software analytics", "label": "Software analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Software%20analytics", "cluster": "7", "x": -115.29798889160156, "y": 744.939697265625, "score": 0.0013532371277546768 }, { "key": "user behavior analytics", "label": "User behavior analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/User%20behavior%20analytics", "cluster": "7", "x": -177.03407287597656, "y": 475.64337158203125, "score": 0 }, { "key": "web analytics", "label": "Web analytics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Web%20analytics", "cluster": "7", "x": -115.55245971679688, "y": 326.0172424316406, "score": 0.00003701098082708872 }, { "key": "customer intelligence", "label": "Customer intelligence", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Customer%20intelligence", "cluster": "7", "x": -272.8135681152344, "y": 453.6710205078125, "score": 0 }, { "key": "customer data management", "label": "Customer data management", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Customer%20data%20management", "cluster": "7", "x": -278.2200012207031, "y": 436.0100402832031, "score": 0 }, { "key": "educational data mining", "label": "Educational data mining", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Educational%20data%20mining", "cluster": "7", "x": -1.9823756217956543, "y": 250.4990692138672, "score": 0 }, { "key": "pathogenomics", "label": "Pathogenomics", "tag": "Field", "URL": "https://en.wikipedia.org/wiki/Pathogenomics", "cluster": "15", "x": 959.1505737304688, "y": -845.7308349609375, "score": 0 }, { "key": "office suite", "label": "Office suite", "tag": "Technology", "URL": "https://en.wikipedia.org/wiki/Office%20suite", "cluster": "1", "x": -768.05224609375, "y": 397.08294677734375, "score": 0 }, { "key": "human interactome", "label": "Human interactome", "tag": "Concept", "URL": "https://en.wikipedia.org/wiki/Human%20interactome", "cluster": "15", "x": 1014.8722534179688, "y": -673.8775634765625, "score": 0 } ], "edges": [ ["cytoscape", "computational genomics"], ["cytoscape", "metabolic network modelling"], ["cytoscape", "protein–protein interaction prediction"], ["cytoscape", "graph drawing"], ["microsoft excel", "comparison of spreadsheet software"], ["microsoft excel", "comparison of risk analysis microsoft excel add-ins"], ["microsoft excel", "numbers (spreadsheet)"], ["microsoft excel", "iwork"], ["microsoft excel", "spreadmart"], ["gephi", "graph (discrete mathematics)"], ["gephi", "graph drawing"], ["gephi", "graph theory"], ["gephi", "graph (data structure)"], ["gephi", "social network analysis software"], ["gephi", "dot language"], ["gephi", "graphml"], ["gephi", "graph modelling language"], ["gephi", "cytoscape"], ["gephi", "graphviz"], ["gephi", "tulip (software)"], ["gephi", "yed"], ["gephi", "networkx"], ["gephi", "nodexl"], ["gephi", "netminer"], ["microsoft power bi", "power pivot"], ["microsoft power bi", "microsoft excel"], ["microsoft power bi", "sql server reporting services"], ["qlik", "analytics"], ["qlik", "business intelligence"], ["qlik", "data integration"], ["qlik", "microsoft power bi"], ["venn diagram", "existential graph"], ["venn diagram", "charles sanders peirce"], ["venn diagram", "logical connectives"], ["venn diagram", "marquand diagram"], ["venn diagram", "veitch chart"], ["venn diagram", "karnaugh map"], ["venn diagram", "octahedron"], ["venn diagram", "three circles model"], ["venn diagram", "triquetra"], ["venn diagram", "vesica piscis"], ["radar chart", "plot (graphics)"], ["radar chart", "parallel coordinates"], ["flowchart", "activity diagram"], ["flowchart", "control-flow diagram"], ["flowchart", "control-flow graph"], ["flowchart", "data flow diagram"], ["flowchart", "deployment flowchart"], ["flowchart", "drakon"], ["flowchart", "flow map"], ["flowchart", "functional flow block diagram"], ["flowchart", "nassi–shneiderman diagram"], ["flowchart", "state diagram"], ["flowchart", "warnier/orr diagram"], ["flowchart", "why-because analysis"], ["flowchart", "augmented transition network"], ["flowchart", "business process mapping"], ["flowchart", "process architecture"], ["flowchart", "pseudocode"], ["flowchart", "recursive transition network"], ["flowchart", "unified modeling language"], ["flowchart", "workflow"], ["box plot", "bagplot"], ["box plot", "exploratory data analysis"], ["box plot", "fan chart (statistics)"], ["box plot", "five-number summary"], ["box plot", "functional boxplot"], ["box plot", "seven-number summary"], ["treemap", "information visualization"], ["line chart", "run chart"], ["line chart", "curve fitting"], ["network chart", "bar chart"], ["network chart", "float (project management)"], ["network chart", "gantt chart"], ["network chart", "project management"], ["network chart", "project planning"], ["network chart", "program evaluation and review technique"], ["pareto chart", "control chart"], ["pareto chart", "histogram"], ["pareto chart", "cumulative distribution function"], ["pareto chart", "pareto analysis"], ["pareto chart", "pareto principle"], ["pareto chart", "statistical quality control"], ["control chart", "analytic and enumerative statistical studies"], ["control chart", "common cause and special cause"], ["control chart", "distribution-free control chart"], ["control chart", "w. edwards deming"], ["control chart", "process capability"], ["control chart", "seven basic tools of quality"], ["control chart", "six sigma"], ["control chart", "statistical process control"], ["control chart", "total quality management"], ["scatter plot", "bar graph"], ["scatter plot", "line chart"], ["histogram", "data binning"], ["histogram", "density estimation"], ["histogram", "kernel density estimation"], ["histogram", "image histogram"], ["histogram", "pareto chart"], ["histogram", "seven basic tools of quality"], ["bar chart", "mw:extension:easytimeline"], ["bar chart", "enhanced metafile format"], ["bar chart", "ms powerpoint"], ["bar chart", "histogram"], ["bar chart", "misleading graph"], ["table (information)", "chart"], ["table (information)", "diagram"], ["table (information)", "abstract data type"], ["table (information)", "column (database)"], ["table (information)", "information graphics"], ["table (information)", "row (database)"], ["table (information)", "table (database)"], ["table (information)", "html element"], ["table (information)", "tensor"], ["table (information)", "dependent and independent variables"], ["mosaic plot", "heat map"], ["mosaic plot", "treemap"], ["mosaic plot", "contingency table"], ["tree structure", "b-tree"], ["tree structure", "decision tree"], ["tree structure", "tree (data structure)"], ["tree structure", "tree (graph theory)"], ["tree structure", "tree (set theory)"], ["tree structure", "data drilling"], ["tree structure", "hierarchical model"], ["tree structure", "hierarchical clustering"], ["tree structure", "hierarchical query"], ["tree structure", "tree testing"], ["topic maps", "semantic interoperability"], ["topic maps", "topincs"], ["topic maps", "unified modeling language"], ["semantic network", "abstract semantic graph"], ["semantic network", "chunking (psychology)"], ["semantic network", "cmaptools"], ["semantic network", "concept map"], ["semantic network", "network diagram"], ["semantic network", "ontology (information science)"], ["semantic network", "repertory grid"], ["semantic network", "semantic lexicon"], ["semantic network", "semantic similarity network"], ["semantic network", "semantic neural network"], ["semantic network", "semeval"], ["semantic network", "semantic analysis (computational)"], ["semantic network", "sparse distributed memory"], ["semantic network", "taxonomy (general)"], ["semantic network", "unified medical language system"], ["semantic network", "resource description framework"], ["semantic network", "cognition network technology"], ["semantic network", "lexipedia"], ["semantic network", "opencog"], ["semantic network", "open mind common sense"], ["semantic network", "schema.org"], ["semantic network", "snomed ct"], ["semantic network", "universal networking language"], ["semantic network", "wikidata"], ["semantic network", "freebase (database)"], ["sociogram", "social network analysis software"], ["sociogram", "corporate interlocks"], ["sociogram", "diagram"], ["sociogram", "network science"], ["sociogram", "organizational chart"], ["sociogram", "social balance theory"], ["sociogram", "sociomapping"], ["sociogram", "sociometry"], ["object-role modeling", "concept map"], ["object-role modeling", "conceptual schema"], ["object-role modeling", "information flow diagram"], ["object-role modeling", "ontology double articulation"], ["object-role modeling", "ontology engineering"], ["object-role modeling", "relational algebra"], ["object-role modeling", "three schema approach"], ["mind map", "exquisite corpse"], ["mind map", "graph (discrete mathematics)"], ["mind map", "idea"], ["mind map", "mental literacy"], ["mind map", "nodal organizational structure"], ["mind map", "personal wiki"], ["mind map", "rhizome (philosophy)"], ["mind map", "social map"], ["mind map", "spider mapping"], ["issue tree", "five whys"], ["issue tree", "horizon scanning"], ["issue tree", "ishikawa diagram"], ["issue tree", "root cause analysis"], ["issue tree", "why–because analysis"], ["issue-based information system", "collaborative software"], ["issue-based information system", "computational sociology"], ["issue-based information system", "creative problem solving"], ["issue-based information system", "critical thinking"], ["issue-based information system", "deliberation"], ["issue-based information system", "dialogue"], ["issue-based information system", "issue tree"], ["issue-based information system", "knowledge base"], ["issue-based information system", "personal knowledge base"], ["issue-based information system", "socratic questioning"], ["issue-based information system", "why–because analysis"], ["dendrogram", "cladogram"], ["dendrogram", "distance matrices in phylogeny"], ["dendrogram", "hierarchical clustering"], ["dendrogram", "freeware"], ["dendrogram", "yed"], ["hyperbolic tree", "hyperbolic geometry"], ["hyperbolic tree", "binary tiling"], ["hyperbolic tree", "information visualization"], ["hyperbolic tree", "tree (data structure)"], ["hyperbolic tree", "tree (graph theory)"], ["decision tree", "behavior tree (artificial intelligence, robotics and control)"], ["decision tree", "boosting (machine learning)"], ["decision tree", "decision cycle"], ["decision tree", "decision list"], ["decision tree", "decision table"], ["decision tree", "decision tree model"], ["decision tree", "design rationale"], ["decision tree", "drakon"], ["decision tree", "markov chain"], ["decision tree", "random forest"], ["decision tree", "odds algorithm"], ["decision tree", "topological combinatorics"], ["decision tree", "truth table"], ["conceptual graph", "alphabet of human thought"], ["conceptual graph", "chunking (psychology)"], ["conceptual graph", "resource description framework"], ["conceptual graph", "sparql"], ["conceptual graph", "semantic network"], ["cognitive map", "cognitive geography"], ["cognitive map", "fuzzy cognitive map"], ["cognitive map", "motion perception"], ["cognitive map", "repertory grid"], ["cognitive map", "mind map"], ["cladistics", "bioinformatics"], ["cladistics", "biomathematics"], ["cladistics", "coalescent theory"], ["cladistics", "common descent"], ["cladistics", "glossary of scientific naming"], ["cladistics", "language family"], ["cladistics", "phylogenetic network"], ["cladistics", "scientific classification"], ["cladistics", "subclade"], ["cladistics", "systematics"], ["cladistics", "three-taxon analysis"], ["cladistics", "tree model"], ["cladistics", "tree structure"], ["argument map", "argument technology"], ["argument map", "argumentation framework"], ["argument map", "argumentation scheme"], ["argument map", "bayesian network"], ["argument map", "dialogue mapping"], ["argument map", "flow (policy debate)"], ["argument map", "informal fallacy"], ["argument map", "logic and dialectic"], ["argument map", "logic of argumentation"], ["argument map", "natural deduction"], ["argument map", "practical arguments"], ["argument map", "rhetorical structure theory"], ["argument map", "semantic tableau"], ["argumentation framework", "argument map"], ["argumentation framework", "argumentation theory"], ["argumentation framework", "defeater"], ["argumentation framework", "diagrammatic reasoning"], ["argumentation framework", "dialogical logic"], ["argumentation framework", "logic and dialectic"], ["argumentation framework", "logic of argumentation"], ["argumentation framework", "knowledge representation and reasoning"], ["argumentation framework", "paraconsistent logic"], ["argumentation scheme", "decisional balance"], ["argumentation scheme", "design pattern"], ["argumentation scheme", "heuristic"], ["argumentation scheme", "pattern language"], ["argumentation scheme", "pedagogical pattern"], ["argumentation scheme", "rule of thumb"], ["bayesian network", "bayesian epistemology"], ["bayesian network", "bayesian programming"], ["bayesian network", "causal inference"], ["bayesian network", "causal loop diagram"], ["bayesian network", "chow–liu tree"], ["bayesian network", "computational intelligence"], ["bayesian network", "computational phylogenetics"], ["bayesian network", "deep belief network"], ["bayesian network", "dempster–shafer theory"], ["bayesian network", "expectation–maximization algorithm"], ["bayesian network", "factor graph"], ["bayesian network", "hierarchical temporal memory"], ["bayesian network", "kalman filter"], ["bayesian network", "memory-prediction framework"], ["bayesian network", "mixture distribution"], ["bayesian network", "mixture model"], ["bayesian network", "naive bayes classifier"], ["bayesian network", "polytree"], ["bayesian network", "sensor fusion"], ["bayesian network", "sequence alignment"], ["bayesian network", "structural equation modeling"], ["bayesian network", "subjective logic"], ["bayesian network", "variable-order bayesian network"], ["dialogue mapping", "collaborative software"], ["dialogue mapping", "computational sociology"], ["dialogue mapping", "creative problem solving"], ["dialogue mapping", "critical thinking"], ["dialogue mapping", "deliberation"], ["dialogue mapping", "dialogue"], ["dialogue mapping", "issue tree"], ["dialogue mapping", "knowledge base"], ["dialogue mapping", "personal knowledge base"], ["dialogue mapping", "socratic questioning"], ["dialogue mapping", "why–because analysis"], ["flow (policy debate)", "argument map"], ["informal fallacy", "fallacy"], ["informal fallacy", "formal fallacy"], ["logic and dialectic", "argumentation framework"], ["logic and dialectic", "argumentation theory"], ["logic and dialectic", "logic of argumentation"], ["logic and dialectic", "thesis, antithesis, synthesis"], ["logic of argumentation", "argumentation framework"], ["logic of argumentation", "argumentation theory"], ["logic of argumentation", "logic and dialectic"], ["natural deduction", "mathematical logic"], ["natural deduction", "sequent calculus"], ["natural deduction", "gerhard gentzen"], ["natural deduction", "system l"], ["natural deduction", "argument map"], ["practical arguments", "argument map"], ["practical arguments", "argumentation framework"], ["practical arguments", "logical argument"], ["practical arguments", "toulmin model of argument"], ["rhetorical structure theory", "argument mining"], ["rhetorical structure theory", "parse tree"], ["semantic tableau", "resolution (logic)"], ["bioinformatics", "biodiversity informatics"], ["bioinformatics", "bioinformatics companies"], ["bioinformatics", "computational biology"], ["bioinformatics", "computational biomodeling"], ["bioinformatics", "computational genomics"], ["bioinformatics", "functional genomics"], ["bioinformatics", "health informatics"], ["bioinformatics", "international society for computational biology"], ["bioinformatics", "jumping library"], ["bioinformatics", "metabolomics"], ["bioinformatics", "nucleic acid sequence"], ["bioinformatics", "phylogenetics"], ["bioinformatics", "proteomics"], ["bioinformatics", "gene disease database"], ["biomathematics", "biological applications of bifurcation theory"], ["biomathematics", "biostatistics"], ["biomathematics", "entropy and life"], ["biomathematics", "ewens's sampling formula"], ["biomathematics", "logistic function"], ["biomathematics", "mathematical modelling of infectious disease"], ["biomathematics", "metabolic network modelling"], ["biomathematics", "molecular modelling"], ["biomathematics", "morphometrics"], ["biomathematics", "population genetics"], ["biomathematics", "theoretical ecology"], ["biomathematics", "turing pattern"], ["common descent", "the ancestor's tale"], ["glossary of scientific naming", "alpha taxonomy"], ["glossary of scientific naming", "cladistics"], ["glossary of scientific naming", "glossary of botanical terms"], ["glossary of scientific naming", "species description"], ["language family", "constructed language"], ["language family", "endangered language"], ["language family", "extinct language"], ["language family", "language death"], ["language family", "global language system"], ["language family", "origin of language"], ["language family", "proto-language (historical linguistics)"], ["language family", "proto-human language"], ["language family", "tree model"], ["language family", "unclassified language"], ["language family", "father tongue hypothesis"], ["scientific classification", "automated species identification"], ["scientific classification", "bacterial taxonomy"], ["scientific classification", "cladogram"], ["scientific classification", "cladistics"], ["scientific classification", "cluster analysis"], ["scientific classification", "consortium for the barcode of life"], ["scientific classification", "consortium of european taxonomic facilities"], ["scientific classification", "dendrogram"], ["scientific classification", "genetypes"], ["scientific classification", "glossary of scientific naming"], ["scientific classification", "identification (biology)"], ["scientific classification", "incertae sedis"], ["scientific classification", "open tree of life"], ["scientific classification", "parataxonomy"], ["scientific classification", "phenogram"], ["scientific classification", "set theory"], ["scientific classification", "taxonomy (general)"], ["scientific classification", "virus classification"], ["subclade", "clade"], ["subclade", "cladistics"], ["subclade", "haplotype"], ["systematics", "taxonomy (biology)"], ["systematics", "cladistics"], ["systematics", "methodology"], ["systematics", "global biodiversity"], ["systematics", "phenetics"], ["systematics", "phylogeny"], ["systematics", "phylogenetic comparative methods"], ["systematics", "biodiversity"], ["systematics", "scientific classification"], ["three-taxon analysis", "cladistics"], ["tree model", "comparative method"], ["tree model", "evolutionary linguistics"], ["tree model", "genetic relationship (linguistics)"], ["tree model", "indo-european studies"], ["tree model", "language family"], ["tree model", "linkage (linguistics)"], ["tree model", "wave model (linguistics)"], ["tree model", "father tongue hypothesis"], ["cognitive geography", "behavioral geography"], ["cognitive geography", "cognitive psychology"], ["cognitive geography", "spatial cognition"], ["cognitive geography", "geovisualization"], ["cognitive geography", "wayfinding"], ["fuzzy cognitive map", "causal diagram"], ["fuzzy cognitive map", "causal loop diagram"], ["fuzzy cognitive map", "system dynamics"], ["fuzzy cognitive map", "cognitive map"], ["motion perception", "biological motion"], ["motion perception", "cognitive map"], ["motion perception", "eye movement (sensory)"], ["motion perception", "illusory motion"], ["motion perception", "induced movement"], ["motion perception", "jerkiness"], ["motion perception", "lilac chaser"], ["motion perception", "max wertheimer"], ["motion perception", "motion aftereffect"], ["motion perception", "motion (physics)"], ["motion perception", "motion sensing in vision"], ["motion perception", "optical flow"], ["motion perception", "peripheral drift illusion"], ["motion perception", "persistence of vision"], ["motion perception", "pulfrich effect"], ["motion perception", "strobe light"], ["motion perception", "stroboscopic effect"], ["motion perception", "visual modularity"], ["motion perception", "visual perception"], ["motion perception", "wagon-wheel effect"], ["repertory grid", "graph (abstract data type)"], ["repertory grid", "idea networking"], ["repertory grid", "implicit relational assessment procedure"], ["repertory grid", "knowledge representation and reasoning"], ["repertory grid", "q methodology"], ["repertory grid", "tree (data structure)"], ["alphabet of human thought", "algebraic logic"], ["alphabet of human thought", "language of thought hypothesis"], ["alphabet of human thought", "natural semantic metalanguage"], ["alphabet of human thought", "philosophical language"], ["alphabet of human thought", "upper ontology"], ["chunking (psychology)", "language acquisition"], ["chunking (psychology)", "conceptual graph"], ["chunking (psychology)", "flow (psychology)"], ["chunking (psychology)", "forgetting curve"], ["chunking (psychology)", "generalization (learning)"], ["chunking (psychology)", "knowledge representation and reasoning"], ["chunking (psychology)", "memory"], ["chunking (psychology)", "merge (linguistics)"], ["chunking (psychology)", "method of loci"], ["chunking (psychology)", "mnemonic"], ["resource description framework", "rdfa"], ["resource description framework", "json-ld"], ["resource description framework", "notation3"], ["resource description framework", "entity–attribute–value model"], ["resource description framework", "graph theory"], ["resource description framework", "tag (metadata)"], ["resource description framework", "scicrunch"], ["resource description framework", "semantic network"], ["resource description framework", "semantic technology"], ["resource description framework", "associative model of data"], ["resource description framework", "business intelligence 2.0"], ["resource description framework", "data portability"], ["resource description framework", "folksonomy"], ["resource description framework", "lsid"], ["resource description framework", "swoogle"], ["resource description framework", "universal networking language"], ["resource description framework", "void"], ["sparql", "sparql query results xml format"], ["sparql", "wikidata"], ["abstract semantic graph", "abstract syntax tree"], ["abstract semantic graph", "ontology (computer science)"], ["abstract semantic graph", "semantic web"], ["abstract semantic graph", "semantic grid"], ["ontology (information science)", "commonsense knowledge bases"], ["ontology (information science)", "concept map"], ["ontology (information science)", "controlled vocabulary"], ["ontology (information science)", "classification scheme (information science)"], ["ontology (information science)", "folksonomy"], ["ontology (information science)", "formal concept analysis"], ["ontology (information science)", "formal ontology"], ["ontology (information science)", "knowledge graph"], ["ontology (information science)", "lattice (order)"], ["ontology (information science)", "ontology"], ["ontology (information science)", "ontology alignment"], ["ontology (information science)", "ontology chart"], ["ontology (information science)", "open semantic framework"], ["ontology (information science)", "semantic technology"], ["ontology (information science)", "soft ontology"], ["ontology (information science)", "terminology extraction"], ["ontology (information science)", "weak ontology"], ["ontology (information science)", "web ontology language"], ["ontology (information science)", "alphabet of human thought"], ["ontology (information science)", "characteristica universalis"], ["ontology (information science)", "interoperability"], ["ontology (information science)", "metalanguage"], ["ontology (information science)", "natural semantic metalanguage"], ["semantic lexicon", "gellish"], ["semantic lexicon", "lexicon"], ["semantic lexicon", "semantic network"], ["semeval", "computational semantics"], ["semeval", "natural language processing"], ["semeval", "word sense"], ["semeval", "semantic analysis (computational)"], ["semantic analysis (computational)", "computational semantics"], ["semantic analysis (computational)", "natural language processing"], ["semantic analysis (computational)", "semantic analytics"], ["semantic analysis (computational)", "semantic analysis (machine learning)"], ["semantic analysis (computational)", "semantic web"], ["semantic analysis (computational)", "semeval"], ["taxonomy (general)", "categorization"], ["taxonomy (general)", "classification (general theory)"], ["taxonomy (general)", "celestial emporium of benevolent recognition"], ["taxonomy (general)", "conflation"], ["taxonomy (general)", "folksonomy"], ["taxonomy (general)", "hypernym"], ["taxonomy (general)", "knowledge representation"], ["taxonomy (general)", "lexicon"], ["taxonomy (general)", "ontology (information science)"], ["taxonomy (general)", "philosophical language"], ["taxonomy (general)", "protégé (software)"], ["taxonomy (general)", "semantic network"], ["taxonomy (general)", "semantic similarity network"], ["taxonomy (general)", "structuralism"], ["taxonomy (general)", "systematics"], ["taxonomy (general)", "taxon"], ["taxonomy (general)", "taxonomy for search engines"], ["taxonomy (general)", "thesaurus (information retrieval)"], ["unified medical language system", "medical classification"], ["opencog", "soar (cognitive architecture)"], ["opencog", "cyc"], ["opencog", "openai"], ["open mind common sense", "attempto controlled english"], ["open mind common sense", "never-ending language learning"], ["open mind common sense", "mindpixel"], ["open mind common sense", "thoughttreasure"], ["open mind common sense", "semantic web"], ["open mind common sense", "dbpedia"], ["open mind common sense", "freebase (database)"], ["open mind common sense", "yago (database)"], ["snomed ct", "clinical data interchange standards consortium"], ["snomed ct", "clinical care classification system"], ["snomed ct", "docle"], ["snomed ct", "en 13606"], ["snomed ct", "medcin"], ["snomed ct", "meddra"], ["snomed ct", "omaha system"], ["snomed ct", "foundational model of anatomy"], ["universal networking language", "semantic network"], ["universal networking language", "abstract semantic graph"], ["universal networking language", "semantic translation"], ["universal networking language", "semantic unification"], ["wikidata", "babelnet"], ["wikidata", "dbpedia"], ["wikidata", "freebase (database)"], ["wikidata", "semantic mediawiki"], ["freebase (database)", "babelnet"], ["freebase (database)", "cyc"], ["freebase (database)", "dbpedia"], ["freebase (database)", "entity–relationship model"], ["freebase (database)", "true knowledge"], ["freebase (database)", "yago (database)"], ["freebase (database)", "knowledge vault"], ["freebase (database)", "wikidata"], ["sparql query results xml format", "sparql"], ["rdfa", "microformat"], ["rdfa", "microdata (html)"], ["rdfa", "xml"], ["rdfa", "schema.org"], ["entity–attribute–value model", "attribute-value system"], ["entity–attribute–value model", "linked data"], ["entity–attribute–value model", "resource description framework"], ["entity–attribute–value model", "semantic web"], ["entity–attribute–value model", "triplestore"], ["entity–attribute–value model", "slowly changing dimension"], ["graph theory", "gallery of named graphs"], ["graph theory", "glossary of graph theory"], ["graph theory", "algebraic graph theory"], ["graph theory", "citation graph"], ["graph theory", "conceptual graph"], ["graph theory", "data structure"], ["graph theory", "dual-phase evolution"], ["graph theory", "entitative graph"], ["graph theory", "existential graph"], ["graph theory", "graph algebra"], ["graph theory", "graph automorphism"], ["graph theory", "graph coloring"], ["graph theory", "graph database"], ["graph theory", "graph (data structure)"], ["graph theory", "graph drawing"], ["graph theory", "graph rewriting"], ["graph theory", "graph property"], ["graph theory", "intersection graph"], ["graph theory", "knight's tour"], ["graph theory", "logical graph"], ["graph theory", "loop (graph theory)"], ["graph theory", "network theory"], ["graph theory", "null graph"], ["graph theory", "percolation"], ["graph theory", "quantum graph"], ["graph theory", "semantic networks"], ["graph theory", "spectral graph theory"], ["graph theory", "strongly regular graph"], ["graph theory", "symmetric graph"], ["graph theory", "transitive reduction"], ["graph theory", "tree (data structure)"], ["graph theory", "bellman–ford algorithm"], ["graph theory", "borůvka's algorithm"], ["graph theory", "breadth-first search"], ["graph theory", "depth-first search"], ["graph theory", "dijkstra's algorithm"], ["graph theory", "edmonds–karp algorithm"], ["graph theory", "floyd–warshall algorithm"], ["graph theory", "ford–fulkerson algorithm"], ["graph theory", "hopcroft–karp algorithm"], ["graph theory", "hungarian algorithm"], ["graph theory", "kruskal's algorithm"], ["graph theory", "prim's algorithm"], ["graph theory", "tarjan's strongly connected components algorithm"], ["graph theory", "topological sorting"], ["graph theory", "geometric graph theory"], ["graph theory", "extremal graph theory"], ["graph theory", "random graph"], ["graph theory", "topological graph theory"], ["graph theory", "combinatorics"], ["graph theory", "group theory"], ["graph theory", "knot theory"], ["graph theory", "ramsey theory"], ["graph theory", "hypergraph"], ["graph theory", "abstract simplicial complex"], ["graph theory", "noga alon"], ["graph theory", "john adrian bondy"], ["graph theory", "gabriel andrew dirac"], ["graph theory", "paul erdős"], ["graph theory", "percy john heawood"], ["graph theory", "anton kotzig"], ["graph theory", "dénes kőnig"], ["graph theory", "lászló lovász"], ["graph theory", "paul seymour (mathematician)"], ["graph theory", "w. t. tutte"], ["graph theory", "hassler whitney"], ["tag (metadata)", "collective intelligence"], ["tag (metadata)", "concept map"], ["tag (metadata)", "enterprise bookmarking"], ["tag (metadata)", "expert system"], ["tag (metadata)", "human–computer interaction"], ["tag (metadata)", "knowledge transfer"], ["tag (metadata)", "management information system"], ["tag (metadata)", "semantic web"], ["tag (metadata)", "subject indexing"], ["scicrunch", "lsid"], ["scicrunch", "resource description framework"], ["scicrunch", "tag (metadata)"], ["semantic technology", "knowledge graph"], ["semantic technology", "metadata"], ["semantic technology", "ontology (information science)"], ["semantic technology", "resource description framework"], ["semantic technology", "schema.org"], ["semantic technology", "semantic heterogeneity"], ["semantic technology", "semantic integration"], ["semantic technology", "semantic matching"], ["semantic technology", "semantic web"], ["semantic technology", "web ontology language"], ["associative model of data", "topic maps"], ["associative model of data", "triplestore"], ["associative model of data", "attribute-value system"], ["business intelligence 2.0", "enterprise bookmarking"], ["business intelligence 2.0", "linked data"], ["business intelligence 2.0", "ontology alignment"], ["business intelligence 2.0", "relationship extraction"], ["business intelligence 2.0", "semantic grid"], ["business intelligence 2.0", "semantic web rule language"], ["business intelligence 2.0", "spreadmart"], ["folksonomy", "collective intelligence"], ["folksonomy", "enterprise bookmarking"], ["folksonomy", "faceted classification"], ["folksonomy", "hierarchical clustering"], ["folksonomy", "semantic similarity"], ["folksonomy", "thesaurus"], ["folksonomy", "weak ontology"], ["lsid", "resource description framework"], ["lsid", "scicrunch"], ["swoogle", "ontology (computer science)"], ["swoogle", "darpa agent markup language"], ["swoogle", "web ontology language"], ["swoogle", "semantic web"], ["language acquisition", "chunking (psychology)"], ["language acquisition", "evolutionary linguistics"], ["language acquisition", "evolutionary psychology of language"], ["language acquisition", "foxp2"], ["language acquisition", "origin of language"], ["flow (psychology)", "imagination"], ["flow (psychology)", "ovsiankina effect"], ["flow (psychology)", "wu wei"], ["generalization (learning)", "chunking (psychology)"], ["knowledge representation and reasoning", "alphabet of human thought"], ["knowledge representation and reasoning", "belief revision"], ["knowledge representation and reasoning", "chunking (psychology)"], ["knowledge representation and reasoning", "commonsense knowledge base"], ["knowledge representation and reasoning", "conceptual graph"], ["knowledge representation and reasoning", "datr"], ["knowledge representation and reasoning", "logico-linguistic modeling"], ["knowledge representation and reasoning", "personal knowledge base"], ["knowledge representation and reasoning", "knowledge graph"], ["knowledge representation and reasoning", "knowledge management"], ["knowledge representation and reasoning", "semantic technology"], ["knowledge representation and reasoning", "valuation-based system"], ["memory", "method of loci"], ["memory", "mnemonic major system"], ["merge (linguistics)", "chunking (psychology)"], ["mnemonic", "method of loci"], ["mnemonic", "mnemonic major system"], ["algebraic logic", "boolean algebra"], ["algebraic logic", "codd's theorem"], ["language of thought hypothesis", "universal grammar"], ["language of thought hypothesis", "world view"], ["natural semantic metalanguage", "metalanguage"], ["natural semantic metalanguage", "upper ontology"], ["philosophical language", "natural semantic metalanguage"], ["upper ontology", "authority control"], ["upper ontology", "formal ontology"], ["upper ontology", "library classification"], ["upper ontology", "ontology (information science)"], ["upper ontology", "process ontology"], ["upper ontology", "semantic interoperability"], ["formal ontology", "mereology"], ["formal ontology", "ontology (information science)"], ["formal ontology", "upper ontology"], ["semantic interoperability", "data integration"], ["semantic interoperability", "interoperability"], ["semantic interoperability", "semantic computing"], ["semantic interoperability", "udef"], ["metalanguage", "category theory"], ["metalanguage", "language-oriented programming"], ["metalanguage", "metaphilosophy"], ["metalanguage", "natural semantic metalanguage"], ["metalanguage", "self-reference"], ["personal knowledge base", "commonplace book"], ["personal knowledge base", "issue-based information system"], ["personal knowledge base", "lifelog"], ["personal knowledge base", "notetaking"], ["personal knowledge base", "comparison of notetaking software"], ["personal knowledge base", "outliner"], ["personal knowledge base", "personal knowledge management"], ["personal knowledge base", "personal wiki"], ["knowledge graph", "concept map"], ["knowledge graph", "semantic technology"], ["knowledge graph", "yago (database)"], ["knowledge management", "information governance"], ["knowledge management", "information management"], ["knowledge management", "knowledge transfer"], ["knowledge management", "personal knowledge management"], ["evolutionary linguistics", "biolinguistics"], ["evolutionary linguistics", "evolutionary psychology of language"], ["evolutionary linguistics", "foxp2"], ["evolutionary linguistics", "origin of language"], ["evolutionary linguistics", "historical linguistics"], ["evolutionary linguistics", "phylogenetic tree"], ["origin of language", "abiogenesis"], ["origin of language", "biolinguistics"], ["origin of language", "digital infinity"], ["origin of language", "evolutionary psychology of language"], ["origin of language", "historical linguistics"], ["origin of language", "origin of speech"], ["origin of language", "proto-language"], ["semantic translation", "data mapping"], ["semantic translation", "iso/iec 11179"], ["semantic translation", "national information exchange model"], ["semantic translation", "semantic heterogeneity"], ["semantic translation", "semantic mapper"], ["semantic translation", "semantic web"], ["semantic translation", "vocabulary-based transformation"], ["semantic translation", "web ontology language"], ["semantic unification", "ontology alignment"], ["semantic unification", "schema matching"], ["semantic unification", "semantic mapper"], ["semantic unification", "semantic integration"], ["semantic unification", "semantic parsing"], ["semantic unification", "open mind common sense"], ["ontology (computer science)", "commonsense knowledge bases"], ["ontology (computer science)", "concept map"], ["ontology (computer science)", "controlled vocabulary"], ["ontology (computer science)", "classification scheme (information science)"], ["ontology (computer science)", "folksonomy"], ["ontology (computer science)", "formal concept analysis"], ["ontology (computer science)", "formal ontology"], ["ontology (computer science)", "knowledge graph"], ["ontology (computer science)", "lattice (order)"], ["ontology (computer science)", "ontology"], ["ontology (computer science)", "ontology alignment"], ["ontology (computer science)", "ontology chart"], ["ontology (computer science)", "open semantic framework"], ["ontology (computer science)", "semantic technology"], ["ontology (computer science)", "soft ontology"], ["ontology (computer science)", "terminology extraction"], ["ontology (computer science)", "weak ontology"], ["ontology (computer science)", "web ontology language"], ["ontology (computer science)", "alphabet of human thought"], ["ontology (computer science)", "characteristica universalis"], ["ontology (computer science)", "interoperability"], ["ontology (computer science)", "metalanguage"], ["ontology (computer science)", "natural semantic metalanguage"], ["web ontology language", "resource description framework"], ["web ontology language", "semantic technology"], ["web ontology language", "ideas group"], ["web ontology language", "unified modeling language"], ["web ontology language", "semantic reasoner"], ["semantic web", "business semantics management"], ["semantic web", "computational semantics"], ["semantic web", "dbpedia"], ["semantic web", "entity–attribute–value model"], ["semantic web", "hyperdata"], ["semantic web", "internet of things"], ["semantic web", "linked data"], ["semantic web", "ontology alignment"], ["semantic web", "ontology learning"], ["semantic web", "resource description framework"], ["semantic web", "web ontology language"], ["semantic web", "semantic computing"], ["semantic web", "semantic heterogeneity"], ["semantic web", "semantic integration"], ["semantic web", "semantic matching"], ["semantic web", "semantic mediawiki"], ["semantic web", "semantic technology"], ["semantic web", "web science"], ["enterprise bookmarking", "enterprise 2.0"], ["enterprise bookmarking", "knowledge management"], ["enterprise bookmarking", "knowledge tagging"], ["enterprise bookmarking", "web 2.0"], ["enterprise bookmarking", "semantic web"], ["enterprise bookmarking", "social networking"], ["enterprise bookmarking", "social software"], ["hierarchical clustering", "binary space partitioning"], ["hierarchical clustering", "bounding volume hierarchy"], ["hierarchical clustering", "brown clustering"], ["hierarchical clustering", "cladistics"], ["hierarchical clustering", "cluster analysis"], ["hierarchical clustering", "computational phylogenetics"], ["hierarchical clustering", "cure data clustering algorithm"], ["hierarchical clustering", "dendrogram"], ["hierarchical clustering", "determining the number of clusters in a data set"], ["hierarchical clustering", "hierarchical clustering of networks"], ["hierarchical clustering", "locality-sensitive hashing"], ["hierarchical clustering", "nearest neighbor search"], ["hierarchical clustering", "numerical taxonomy"], ["hierarchical clustering", "optics algorithm"], ["hierarchical clustering", "statistical distance"], ["hierarchical clustering", "persistent homology"], ["linked data", "authority control"], ["linked data", "hyperdata"], ["linked data", "schema.org"], ["linked data", "void"], ["linked data", "web ontology language"], ["ontology alignment", "ontology (computer science)"], ["ontology alignment", "semantic integration"], ["ontology alignment", "semantic matching"], ["ontology alignment", "minimal mappings"], ["ontology alignment", "semantic unification"], ["ontology alignment", "semantic heterogeneity"], ["semantic grid", "business intelligence 2.0"], ["semantic grid", "lsid"], ["semantic grid", "semantic web rule language"], ["semantic integration", "data integration"], ["semantic integration", "dataspaces"], ["semantic integration", "enterprise integration"], ["semantic integration", "ontology-based data integration"], ["semantic integration", "ontology alignment"], ["semantic integration", "ontology engineering"], ["semantic integration", "semantic heterogeneity"], ["semantic integration", "semantic technology"], ["semantic integration", "semantic translation"], ["semantic integration", "semantic unification"], ["management information system", "bachelor of computer information systems"], ["management information system", "business intelligence"], ["management information system", "business performance management"], ["management information system", "business rule"], ["management information system", "corporate governance of information technology"], ["management information system", "data mining"], ["management information system", "predictive analytics"], ["management information system", "purchase order request"], ["management information system", "enterprise architecture"], ["management information system", "enterprise information system"], ["management information system", "enterprise planning system"], ["management information system", "management by objectives"], ["management information system", "online analytical processing"], ["management information system", "online office suite"], ["management information system", "real-time computing"], ["management information system", "real-time marketing"], ["glossary of graph theory", "gallery of named graphs"], ["glossary of graph theory", "graph algorithms"], ["glossary of graph theory", "glossary of areas of mathematics"], ["algebraic graph theory", "spectral graph theory"], ["algebraic graph theory", "algebraic connectivity"], ["algebraic graph theory", "graph property"], ["citation graph", "web graph"], ["citation graph", "directed acyclic graph"], ["data structure", "abstract data type"], ["data structure", "data model"], ["data structure", "queap"], ["data structure", "tree (data structure)"], ["entitative graph", "charles sanders peirce bibliography"], ["entitative graph", "logical graph"], ["existential graph", "ampheck"], ["existential graph", "conceptual graph"], ["existential graph", "entitative graph"], ["existential graph", "logical graph"], ["graph automorphism", "algebraic graph theory"], ["graph database", "hierarchical database model"], ["graph database", "datalog"], ["graph database", "object database"], ["graph (data structure)", "graph traversal"], ["graph (data structure)", "graph database"], ["graph (data structure)", "graph rewriting"], ["graph (data structure)", "graph drawing software"], ["graph rewriting", "category theory"], ["graph rewriting", "graph theory"], ["graph rewriting", "shape grammar"], ["graph rewriting", "formal grammar"], ["logical graph", "charles sanders peirce bibliography"], ["logical graph", "conceptual graph"], ["logical graph", "propositional calculus"], ["logical graph", "truth table"], ["logical graph", "venn diagram"], ["loop (graph theory)", "graph theory"], ["loop (graph theory)", "glossary of graph theory"], ["loop (graph theory)", "strange loop"], ["network theory", "complex network"], ["network theory", "quantum complex network"], ["network theory", "dual-phase evolution"], ["network theory", "network science"], ["network theory", "network theory in risk assessment"], ["network theory", "network topology"], ["network theory", "network management"], ["network theory", "small-world networks"], ["network theory", "social network"], ["network theory", "scale-free networks"], ["network theory", "network dynamics"], ["network theory", "sequential dynamical system"], ["network theory", "pathfinder network"], ["network theory", "biological network"], ["network theory", "network medicine"], ["null graph", "glossary of graph theory"], ["percolation", "network theory"], ["percolation", "percolation theory"], ["percolation", "self-organization"], ["semantic networks", "abstract semantic graph"], ["semantic networks", "chunking (psychology)"], ["semantic networks", "cmaptools"], ["semantic networks", "concept map"], ["semantic networks", "network diagram"], ["semantic networks", "ontology (information science)"], ["semantic networks", "repertory grid"], ["semantic networks", "semantic lexicon"], ["semantic networks", "semantic similarity network"], ["semantic networks", "semantic neural network"], ["semantic networks", "semeval"], ["semantic networks", "semantic analysis (computational)"], ["semantic networks", "sparse distributed memory"], ["semantic networks", "taxonomy (general)"], ["semantic networks", "unified medical language system"], ["semantic networks", "resource description framework"], ["semantic networks", "cognition network technology"], ["semantic networks", "lexipedia"], ["semantic networks", "opencog"], ["semantic networks", "open mind common sense"], ["semantic networks", "schema.org"], ["semantic networks", "snomed ct"], ["semantic networks", "universal networking language"], ["semantic networks", "wikidata"], ["semantic networks", "freebase (database)"], ["spectral graph theory", "strongly regular graph"], ["spectral graph theory", "algebraic connectivity"], ["spectral graph theory", "algebraic graph theory"], ["spectral graph theory", "spectral clustering"], ["symmetric graph", "algebraic graph theory"], ["symmetric graph", "gallery of named graphs"], ["tree (data structure)", "tree structure"], ["tree (data structure)", "tree (graph theory)"], ["tree (data structure)", "tree (set theory)"], ["tree (data structure)", "cardinal tree"], ["tree (data structure)", "ordinal tree"], ["tree (data structure)", "hierarchy (mathematics)"], ["tree (data structure)", "dialog tree"], ["tree (data structure)", "single inheritance"], ["tree (data structure)", "generative grammar"], ["tree (data structure)", "genetic programming"], ["tree (data structure)", "hierarchical clustering"], ["tree (data structure)", "binary space partition tree"], ["tree (data structure)", "recursion"], ["tree (data structure)", "fenwick tree"], ["tree (data structure)", "trie"], ["tree (data structure)", "enfilade (xanadu)"], ["tree (data structure)", "hierarchical temporal memory"], ["breadth-first search", "depth-first search"], ["breadth-first search", "iterative deepening depth-first search"], ["depth-first search", "breadth-first search"], ["depth-first search", "iterative deepening depth-first search"], ["dijkstra's algorithm", "bellman–ford algorithm"], ["dijkstra's algorithm", "floyd–warshall algorithm"], ["hopcroft–karp algorithm", "assignment problem"], ["hopcroft–karp algorithm", "hungarian algorithm"], ["hopcroft–karp algorithm", "edmonds–karp algorithm"], ["kruskal's algorithm", "prim's algorithm"], ["kruskal's algorithm", "dijkstra's algorithm"], ["kruskal's algorithm", "borůvka's algorithm"], ["prim's algorithm", "dijkstra's algorithm"], ["prim's algorithm", "shortest path problem"], ["prim's algorithm", "greedoid"], ["topological sorting", "tarjan's strongly connected components algorithm"], ["geometric graph theory", "topological graph theory"], ["geometric graph theory", "spatial network"], ["extremal graph theory", "ramsey theory"], ["random graph", "complex networks"], ["random graph", "dual-phase evolution"], ["random graph", "erdős–rényi model"], ["random graph", "graph theory"], ["random graph", "interdependent networks"], ["random graph", "network science"], ["random graph", "percolation"], ["random graph", "percolation theory"], ["random graph", "random graph theory of gelation"], ["topological graph theory", "topological combinatorics"], ["combinatorics", "phylogenetics"], ["ramsey theory", "extremal graph theory"], ["hypergraph", "combinatorial design"], ["hypergraph", "factor graph"], ["hypergraph", "greedoid"], ["hypergraph", "incidence structure"], ["lászló lovász", "topological combinatorics"], ["lászló lovász", "greedoid"], ["w. t. tutte", "systolic geometry"], ["babelnet", "knowledge acquisition"], ["babelnet", "semantic network"], ["babelnet", "semantic relatedness"], ["babelnet", "wikidata"], ["babelnet", "word sense induction"], ["dbpedia", "babelnet"], ["dbpedia", "semantic mediawiki"], ["dbpedia", "wikidata"], ["semantic mediawiki", "dbpedia"], ["semantic mediawiki", "freebase (database)"], ["semantic mediawiki", "wikidata"], ["cyc", "babelnet"], ["cyc", "categorical logic"], ["cyc", "darpa agent markup language"], ["cyc", "dbpedia"], ["cyc", "freebase (database)"], ["cyc", "mindpixel"], ["cyc", "never-ending language learning"], ["cyc", "open mind common sense"], ["cyc", "semantic web"], ["cyc", "true knowledge"], ["cyc", "wolfram alpha"], ["cyc", "yago (database)"], ["entity–relationship model", "associative entity"], ["entity–relationship model", "concept map"], ["entity–relationship model", "database design"], ["entity–relationship model", "data structure diagram"], ["entity–relationship model", "enhanced entity–relationship model"], ["entity–relationship model", "enterprise architecture framework"], ["entity–relationship model", "entity data model"], ["entity–relationship model", "fundamental modeling concepts"], ["entity–relationship model", "comparison of data modeling tools"], ["entity–relationship model", "ontology (information science)"], ["entity–relationship model", "object-role modeling"], ["entity–relationship model", "three schema approach"], ["entity–relationship model", "structured entity relationship model"], ["entity–relationship model", "schema-agnostic databases"], ["true knowledge", "cyc"], ["true knowledge", "wolfram alpha"], ["true knowledge", "yago (database)"], ["yago (database)", "commonsense knowledge bases"], ["yago (database)", "cyc"], ["yago (database)", "wikidata"], ["yago (database)", "dbpedia"], ["knowledge vault", "dbpedia"], ["knowledge vault", "linked data"], ["knowledge vault", "knowledge graph"], ["knowledge vault", "semantic integration"], ["knowledge vault", "semantic network"], ["knowledge vault", "wikidata"], ["clinical data interchange standards consortium", "clinical trial"], ["clinical data interchange standards consortium", "data model"], ["clinical data interchange standards consortium", "data warehouse"], ["clinical data interchange standards consortium", "health informatics service architecture"], ["clinical data interchange standards consortium", "health level 7"], ["clinical data interchange standards consortium", "loinc"], ["clinical data interchange standards consortium", "systematized nomenclature of medicine"], ["clinical data interchange standards consortium", "snomed ct"], ["docle", "loinc"], ["docle", "medical classification"], ["docle", "snomed ct"], ["en 13606", "clinical data interchange standards consortium"], ["en 13606", "continuity of care record"], ["en 13606", "health informatics service architecture"], ["en 13606", "health level 7"], ["en 13606", "openehr"], ["en 13606", "snomed ct"], ["en 13606", "loinc"], ["medcin", "clinical care classification system"], ["medcin", "loinc"], ["medcin", "snomed"], ["medcin", "hl7"], ["medcin", "health informatics"], ["meddra", "systematized nomenclature of medicine"], ["meddra", "snomed ct"], ["meddra", "international classification of diseases"], ["meddra", "clinical trials"], ["omaha system", "clinical care classification system"], ["omaha system", "health informatics"], ["omaha system", "nanda"], ["attempto controlled english", "gellish"], ["attempto controlled english", "natural language processing"], ["attempto controlled english", "natural language programming"], ["attempto controlled english", "structured english"], ["never-ending language learning", "cognitive architecture"], ["never-ending language learning", "computational models of language acquisition"], ["never-ending language learning", "cyc"], ["mindpixel", "never-ending language learning"], ["mindpixel", "cyc"], ["thoughttreasure", "cyc"], ["thoughttreasure", "open mind common sense"], ["thoughttreasure", "wordnet"], ["soar (cognitive architecture)", "cognitive architecture"], ["openai", "opencog"], ["medical classification", "health information management"], ["medical classification", "health informatics"], ["medical classification", "hrhis"], ["medical classification", "nanda"], ["medical classification", "nosology"], ["categorization", "classification (general theory)"], ["categorization", "library classification"], ["categorization", "pattern recognition"], ["categorization", "statistical classification"], ["classification (general theory)", "taxonomy (biology)"], ["classification (general theory)", "categorization"], ["classification (general theory)", "folk taxonomy"], ["classification (general theory)", "library classification"], ["classification (general theory)", "medical classification"], ["classification (general theory)", "statistical classification"], ["classification (general theory)", "taxonomy (general)"], ["hypernym", "taxonomy (general)"], ["hypernym", "wordnet"], ["hypernym", "semantic lexicon"], ["knowledge representation", "alphabet of human thought"], ["knowledge representation", "belief revision"], ["knowledge representation", "chunking (psychology)"], ["knowledge representation", "commonsense knowledge base"], ["knowledge representation", "conceptual graph"], ["knowledge representation", "datr"], ["knowledge representation", "logico-linguistic modeling"], ["knowledge representation", "personal knowledge base"], ["knowledge representation", "knowledge graph"], ["knowledge representation", "knowledge management"], ["knowledge representation", "semantic technology"], ["knowledge representation", "valuation-based system"], ["lexicon", "glossary"], ["lexicon", "lexicography"], ["protégé (software)", "web ontology language"], ["protégé (software)", "resource description framework"], ["protégé (software)", "semantic technology"], ["structuralism", "engaged theory"], ["structuralism", "holism"], ["taxon", "alpha taxonomy"], ["taxon", "cladistics"], ["taxon", "folk taxonomy"], ["taxon", "virus classification"], ["thesaurus (information retrieval)", "controlled vocabulary"], ["thesaurus (information retrieval)", "thesaurus"], ["computational semantics", "natural language understanding"], ["computational semantics", "semantic compression"], ["computational semantics", "semantic parsing"], ["computational semantics", "semantic web"], ["computational semantics", "semeval"], ["computational semantics", "wordnet"], ["natural language processing", "computational linguistics"], ["natural language processing", "computer-assisted reviewing"], ["natural language processing", "controlled natural language"], ["natural language processing", "deep learning"], ["natural language processing", "information extraction"], ["natural language processing", "natural language programming"], ["natural language processing", "natural language user interface"], ["natural language processing", "text simplification"], ["semantic analytics", "relationship extraction"], ["semantic analytics", "semantic similarity"], ["semantic analytics", "text analytics"], ["semantic analysis (machine learning)", "information extraction"], ["semantic analysis (machine learning)", "semantic similarity"], ["semantic analysis (machine learning)", "ontology learning"], ["word sense", "semantics"], ["word sense", "word sense induction"], ["graph (abstract data type)", "graph traversal"], ["graph (abstract data type)", "graph database"], ["graph (abstract data type)", "graph rewriting"], ["graph (abstract data type)", "graph drawing software"], ["idea networking", "brainstorming"], ["idea networking", "concept driven strategy"], ["idea networking", "concept mapping"], ["idea networking", "group concept mapping"], ["idea networking", "pathfinder network"], ["idea networking", "repertory grid"], ["idea networking", "social network analysis"], ["q methodology", "card sorting"], ["q methodology", "group concept mapping"], ["commonsense knowledge bases", "commonsense reasoning"], ["commonsense knowledge bases", "linked data"], ["commonsense knowledge bases", "semantic web"], ["commonsense knowledge bases", "ontology (information science)"], ["commonsense knowledge bases", "artificial general intelligence"], ["controlled vocabulary", "authority control"], ["controlled vocabulary", "controlled natural language"], ["controlled vocabulary", "named-entity recognition"], ["controlled vocabulary", "ontology (computer science)"], ["controlled vocabulary", "terminology"], ["controlled vocabulary", "universal data element framework"], ["controlled vocabulary", "vocabulary-based transformation"], ["classification scheme (information science)", "iso/iec 11179"], ["classification scheme (information science)", "metadata"], ["classification scheme (information science)", "ontology (computer science)"], ["classification scheme (information science)", "representation term"], ["formal concept analysis", "association rule learning"], ["formal concept analysis", "cluster analysis"], ["formal concept analysis", "commonsense reasoning"], ["formal concept analysis", "conceptual clustering"], ["formal concept analysis", "factor analysis"], ["formal concept analysis", "graphical model"], ["formal concept analysis", "inductive logic programming"], ["lattice (order)", "abstract interpretation"], ["lattice (order)", "first-order logic"], ["lattice (order)", "domain theory"], ["lattice (order)", "ontology (computer science)"], ["lattice (order)", "formal concept analysis"], ["lattice (order)", "bloom filter"], ["open semantic framework", "data integration"], ["open semantic framework", "data management"], ["open semantic framework", "enterprise information integration"], ["open semantic framework", "linked data"], ["open semantic framework", "middleware"], ["open semantic framework", "ontology-based data integration"], ["open semantic framework", "resource description framework"], ["open semantic framework", "semantic computing"], ["open semantic framework", "semantic integration"], ["open semantic framework", "semantic technology"], ["open semantic framework", "web ontology language"], ["terminology extraction", "computational linguistics"], ["terminology extraction", "glossary"], ["terminology extraction", "natural language processing"], ["terminology extraction", "subject indexing"], ["terminology extraction", "taxonomy (general)"], ["terminology extraction", "terminology"], ["terminology extraction", "text mining"], ["terminology extraction", "text simplification"], ["interoperability", "architecture of interoperable information systems"], ["interoperability", "semantic web"], ["interoperability", "collaboration"], ["interoperability", "polytely"], ["interoperability", "universal data element framework"], ["abstract syntax tree", "abstract semantic graph"], ["abstract syntax tree", "control-flow graph"], ["abstract syntax tree", "directed acyclic graph"], ["abstract syntax tree", "extended backus–naur form"], ["abstract syntax tree", "lisp (programming language)"], ["abstract syntax tree", "parse tree"], ["abstract syntax tree", "symbol table"], ["abstract syntax tree", "dynamic syntax tree"], ["exquisite corpse", "photoshop tennis"], ["exquisite corpse", "comic jam"], ["exquisite corpse", "round-robin story"], ["exquisite corpse", "mindmap"], ["graph (discrete mathematics)", "conceptual graph"], ["graph (discrete mathematics)", "graph (abstract data type)"], ["graph (discrete mathematics)", "graph database"], ["graph (discrete mathematics)", "graph drawing"], ["graph (discrete mathematics)", "network theory"], ["idea", "idealism"], ["idea", "brainstorming"], ["idea", "creativity techniques"], ["idea", "diffusion of innovations"], ["idea", "ideology"], ["idea", "notion (philosophy)"], ["idea", "object of the mind"], ["idea", "think tank"], ["idea", "thought experiment"], ["idea", "history of ideas"], ["idea", "intellectual history"], ["idea", "concept"], ["idea", "philosophical analysis"], ["nodal organizational structure", "antifragility"], ["nodal organizational structure", "complexity theory and organizations"], ["nodal organizational structure", "engineering of systems"], ["nodal organizational structure", "enterprise modelling"], ["nodal organizational structure", "flat organization"], ["nodal organizational structure", "information management"], ["nodal organizational structure", "hierarchical organization"], ["nodal organizational structure", "organizational architecture"], ["nodal organizational structure", "organizational culture"], ["nodal organizational structure", "organizational structure"], ["nodal organizational structure", "industrial and organizational psychology"], ["nodal organizational structure", "social group"], ["nodal organizational structure", "spontaneous order"], ["nodal organizational structure", "systems theory"], ["nodal organizational structure", "clandestine cell system"], ["nodal organizational structure", "unorganisation"], ["personal wiki", "commonplace book"], ["personal wiki", "comparison of wiki software"], ["personal wiki", "notetaking"], ["personal wiki", "outliner"], ["personal wiki", "personal information manager"], ["personal wiki", "personal knowledge base"], ["personal wiki", "personal knowledge management"], ["personal wiki", "zettelkasten"], ["rhizome (philosophy)", "contextualism"], ["rhizome (philosophy)", "deleuze and guattari"], ["rhizome (philosophy)", "heterarchy"], ["rhizome (philosophy)", "minority (philosophy)"], ["rhizome (philosophy)", "multiplicity (philosophy)"], ["rhizome (philosophy)", "mutualism (biology)"], ["rhizome (philosophy)", "perspectivism"], ["rhizome (philosophy)", "plane of immanence"], ["rhizome (philosophy)", "graph (abstract data type)"], ["rhizome (philosophy)", "digital infinity"], ["social map", "sociogram"], ["spider mapping", "mind map"], ["spider mapping", "concept map"], ["biological motion", "motion perception"], ["biological motion", "motion capture"], ["induced movement", "motion aftereffect"], ["induced movement", "motion perception"], ["jerkiness", "persistence of vision"], ["motion aftereffect", "afterimage"], ["motion aftereffect", "motion perception"], ["motion (physics)", "motion capture"], ["motion sensing in vision", "biological motion"], ["motion sensing in vision", "cognitive map"], ["motion sensing in vision", "eye movement (sensory)"], ["motion sensing in vision", "illusory motion"], ["motion sensing in vision", "induced movement"], ["motion sensing in vision", "jerkiness"], ["motion sensing in vision", "lilac chaser"], ["motion sensing in vision", "max wertheimer"], ["motion sensing in vision", "motion aftereffect"], ["motion sensing in vision", "motion (physics)"], ["motion sensing in vision", "optical flow"], ["motion sensing in vision", "peripheral drift illusion"], ["motion sensing in vision", "persistence of vision"], ["motion sensing in vision", "pulfrich effect"], ["motion sensing in vision", "strobe light"], ["motion sensing in vision", "stroboscopic effect"], ["motion sensing in vision", "visual modularity"], ["motion sensing in vision", "visual perception"], ["motion sensing in vision", "wagon-wheel effect"], ["persistence of vision", "afterimage"], ["persistence of vision", "flicker fusion threshold"], ["persistence of vision", "motion perception"], ["strobe light", "flicker (light)"], ["strobe light", "flicker fusion threshold"], ["strobe light", "jerkiness"], ["strobe light", "wagon-wheel effect"], ["stroboscopic effect", "flicker (light)"], ["stroboscopic effect", "flicker fusion threshold"], ["visual modularity", "modularity"], ["visual perception", "computer vision"], ["visual perception", "motion perception"], ["visual perception", "multisensory integration"], ["visual perception", "cognitive science"], ["wagon-wheel effect", "aliasing"], ["wagon-wheel effect", "stroboscopic effect"], ["causal diagram", "bayesian network"], ["causal diagram", "structural equation modeling"], ["causal diagram", "path analysis (statistics)"], ["causal diagram", "causal map"], ["causal loop diagram", "bayesian network"], ["causal loop diagram", "directed acyclic graph"], ["causal loop diagram", "path analysis (statistics)"], ["causal loop diagram", "positive feedback"], ["causal loop diagram", "system dynamics"], ["system dynamics", "causal loop diagram"], ["system dynamics", "ecosystem model"], ["system dynamics", "system dynamics society"], ["system dynamics", "wicked problem"], ["system dynamics", "population dynamics"], ["system dynamics", "dynamical systems theory"], ["system dynamics", "grey box model"], ["system dynamics", "operations research"], ["system dynamics", "system identification"], ["system dynamics", "systems theory"], ["system dynamics", "systems thinking"], ["system dynamics", "triz"], ["operations research", "black box"], ["operations research", "dynamic programming"], ["operations research", "c. west churchman"], ["operations research", "big data"], ["operations research", "business process management"], ["operations research", "engineering management"], ["operations research", "industrial engineering"], ["operations research", "project production management"], ["operations research", "reliability engineering"], ["operations research", "strategic management"], ["operations research", "system safety"], ["systems theory", "glossary of systems theory"], ["systems theory", "autonomous agency theory"], ["systems theory", "bibliography of sociology"], ["systems theory", "cellular automata"], ["systems theory", "chaos theory"], ["systems theory", "complex systems"], ["systems theory", "emergence"], ["systems theory", "engaged theory"], ["systems theory", "fractal"], ["systems theory", "grey box model"], ["systems theory", "irreducible complexity"], ["systems theory", "meta-systems"], ["systems theory", "multidimensional systems"], ["systems theory", "open and closed systems in social science"], ["systems theory", "pattern language"], ["systems theory", "recursion (computer science)"], ["systems theory", "reductionism"], ["systems theory", "reversal theory"], ["systems theory", "social rule system theory"], ["systems theory", "sociotechnical system"], ["systems theory", "sociology and complexity science"], ["systems theory", "structure–organization–process"], ["systems theory", "systemantics"], ["systems theory", "system identification"], ["systems theory", "systematics – study of multi-term systems"], ["systems theory", "systemics"], ["systems theory", "systemography"], ["systems theory", "systems science"], ["systems theory", "theoretical ecology"], ["systems theory", "tektology"], ["systems theory", "user-in-the-loop"], ["systems theory", "viable system theory"], ["systems theory", "viable systems approach"], ["systems theory", "world-systems theory"], ["systems theory", "structuralist economics"], ["systems theory", "dependency theory"], ["systems theory", "hierarchy theory"], ["systems theory", "american society for cybernetics"], ["systems theory", "cybernetics society"], ["systems theory", "ieee systems, man, and cybernetics society"], ["systems theory", "international federation for systems research"], ["systems theory", "international society for the systems sciences"], ["systems theory", "new england complex systems institute"], ["systems theory", "system dynamics society"], ["systems thinking", "glossary of systems theory"], ["systems thinking", "autonomous agency theory"], ["systems thinking", "bibliography of sociology"], ["systems thinking", "cellular automata"], ["systems thinking", "chaos theory"], ["systems thinking", "complex systems"], ["systems thinking", "emergence"], ["systems thinking", "engaged theory"], ["systems thinking", "fractal"], ["systems thinking", "grey box model"], ["systems thinking", "irreducible complexity"], ["systems thinking", "meta-systems"], ["systems thinking", "multidimensional systems"], ["systems thinking", "open and closed systems in social science"], ["systems thinking", "pattern language"], ["systems thinking", "recursion (computer science)"], ["systems thinking", "reductionism"], ["systems thinking", "reversal theory"], ["systems thinking", "social rule system theory"], ["systems thinking", "sociotechnical system"], ["systems thinking", "sociology and complexity science"], ["systems thinking", "structure–organization–process"], ["systems thinking", "systemantics"], ["systems thinking", "system identification"], ["systems thinking", "systematics – study of multi-term systems"], ["systems thinking", "systemics"], ["systems thinking", "systemography"], ["systems thinking", "systems science"], ["systems thinking", "theoretical ecology"], ["systems thinking", "tektology"], ["systems thinking", "user-in-the-loop"], ["systems thinking", "viable system theory"], ["systems thinking", "viable systems approach"], ["systems thinking", "world-systems theory"], ["systems thinking", "structuralist economics"], ["systems thinking", "dependency theory"], ["systems thinking", "hierarchy theory"], ["systems thinking", "american society for cybernetics"], ["systems thinking", "cybernetics society"], ["systems thinking", "ieee systems, man, and cybernetics society"], ["systems thinking", "international federation for systems research"], ["systems thinking", "international society for the systems sciences"], ["systems thinking", "new england complex systems institute"], ["systems thinking", "system dynamics society"], ["triz", "brainstorming"], ["triz", "lateral thinking"], ["triz", "systems theory"], ["structural equation modeling", "causal model"], ["structural equation modeling", "graphical model"], ["structural equation modeling", "multivariate statistics"], ["structural equation modeling", "partial least squares path modeling"], ["structural equation modeling", "partial least squares regression"], ["structural equation modeling", "causal map"], ["tree (graph theory)", "hypertree"], ["tree (graph theory)", "tree structure"], ["tree (graph theory)", "tree (data structure)"], ["tree (graph theory)", "decision tree"], ["tree (graph theory)", "unrooted binary tree"], ["tree (set theory)", "kurepa tree"], ["tree (set theory)", "laver tree"], ["tree (set theory)", "tree (descriptive set theory)"], ["ordinal tree", "cardinal tree"], ["hierarchy (mathematics)", "order theory"], ["hierarchy (mathematics)", "tree structure"], ["hierarchy (mathematics)", "tree (data structure)"], ["hierarchy (mathematics)", "tree (graph theory)"], ["hierarchy (mathematics)", "tree (descriptive set theory)"], ["hierarchy (mathematics)", "tree (set theory)"], ["generative grammar", "digital infinity"], ["generative grammar", "formal grammar"], ["generative grammar", "parsing"], ["genetic programming", "fitness approximation"], ["genetic programming", "gene expression programming"], ["binary space partition tree", "k-d tree"], ["binary space partition tree", "octree"], ["binary space partition tree", "quadtree"], ["binary space partition tree", "hierarchical clustering"], ["binary space partition tree", "3d model"], ["binary space partition tree", "guillotine cutting"], ["recursion", "digital infinity"], ["recursion", "self-reference"], ["recursion", "strange loop"], ["trie", "radix tree"], ["enfilade (xanadu)", "hypertext"], ["enfilade (xanadu)", "gist"], ["hierarchical temporal memory", "deep learning"], ["hierarchical temporal memory", "artificial general intelligence"], ["hierarchical temporal memory", "artificial consciousness"], ["hierarchical temporal memory", "cognitive architecture"], ["hierarchical temporal memory", "memory-prediction framework"], ["hierarchical temporal memory", "belief revision"], ["hierarchical temporal memory", "belief propagation"], ["hierarchical temporal memory", "neural networks"], ["brainstorming", "group concept mapping"], ["brainstorming", "lateral thinking"], ["brainstorming", "mass collaboration"], ["brainstorming", "speed thinking"], ["brainstorming", "thinking outside the box"], ["social network analysis", "attention inequality"], ["social network analysis", "blockmodeling"], ["social network analysis", "community structure"], ["social network analysis", "complex network"], ["social network analysis", "digital humanities"], ["social network analysis", "dynamic network analysis"], ["social network analysis", "metcalfe's law"], ["social network analysis", "network science"], ["social network analysis", "social media analytics"], ["social network analysis", "social media mining"], ["social network analysis", "social network"], ["social network analysis", "social network analysis software"], ["social network analysis", "social networking service"], ["social network analysis", "social software"], ["social network analysis", "social web"], ["social network analysis", "sociomapping"], ["contextualism", "anekantavada"], ["contextualism", "degrees of truth"], ["contextualism", "false dilemma"], ["contextualism", "fuzzy logic"], ["contextualism", "logical value"], ["contextualism", "perspectivism"], ["contextualism", "principle of bivalence"], ["contextualism", "propositional logic"], ["contextualism", "relativism"], ["contextualism", "rhizome (philosophy)"], ["deleuze and guattari", "rhizome (philosophy)"], ["heterarchy", "folksonomy"], ["multiplicity (philosophy)", "contextualism"], ["multiplicity (philosophy)", "perspectivism"], ["multiplicity (philosophy)", "rhizome (philosophy)"], ["perspectivism", "anekantavada"], ["perspectivism", "conceptual framework"], ["perspectivism", "intersubjectivity"], ["perspectivism", "metaphilosophy"], ["perspectivism", "rhizome (philosophy)"], ["plane of immanence", "complex systems"], ["digital infinity", "origin of language"], ["digital infinity", "origin of speech"], ["digital infinity", "recursion"], ["commonplace book", "florilegium"], ["commonplace book", "memex"], ["commonplace book", "notetaking"], ["commonplace book", "comparison of notetaking software"], ["commonplace book", "personal knowledge base"], ["commonplace book", "personal knowledge management"], ["commonplace book", "personal wiki"], ["commonplace book", "reference management software"], ["commonplace book", "thesaurus"], ["commonplace book", "zettelkasten"], ["comparison of wiki software", "comparison of notetaking software"], ["comparison of wiki software", "comparison of text editors"], ["comparison of wiki software", "comparison of word processors"], ["comparison of wiki software", "outliner"], ["notetaking", "florilegium"], ["notetaking", "forgetting curve"], ["outliner", "personal information manager"], ["outliner", "personal knowledge base"], ["outliner", "concept mapping"], ["outliner", "mind map"], ["outliner", "notetaking"], ["outliner", "comparison of notetaking software"], ["personal information manager", "calendaring software"], ["personal information manager", "information management"], ["personal information manager", "personal information management"], ["personal information manager", "personal knowledge base"], ["personal information manager", "personal wiki"], ["personal knowledge management", "commonplace book"], ["personal knowledge management", "drakon"], ["personal knowledge management", "zettelkasten"], ["zettelkasten", "argument map"], ["zettelkasten", "commonplace book"], ["zettelkasten", "hypertext"], ["zettelkasten", "issue-based information system"], ["zettelkasten", "memex"], ["zettelkasten", "notetaking"], ["zettelkasten", "comparison of notetaking software"], ["zettelkasten", "outliner"], ["zettelkasten", "personal knowledge base"], ["zettelkasten", "personal knowledge management"], ["zettelkasten", "personal wiki"], ["zettelkasten", "reference management software"], ["antifragility", "complexity theory and organizations"], ["antifragility", "information management"], ["antifragility", "nodal organizational structure"], ["antifragility", "systems theory"], ["antifragility", "systems engineering"], ["antifragility", "system accident"], ["complexity theory and organizations", "self-organization"], ["complexity theory and organizations", "new england complex systems institute"], ["engineering of systems", "arcadia (engineering)"], ["engineering of systems", "control engineering"], ["engineering of systems", "design review (u.s. government)"], ["engineering of systems", "engineering management"], ["engineering of systems", "enterprise systems engineering"], ["engineering of systems", "industrial engineering"], ["engineering of systems", "interdisciplinarity"], ["engineering of systems", "management cybernetics"], ["engineering of systems", "model-based systems engineering"], ["engineering of systems", "operations management"], ["engineering of systems", "structured systems analysis and design method"], ["engineering of systems", "system of systems engineering"], ["engineering of systems", "system accident"], ["engineering of systems", "systems architecture"], ["engineering of systems", "systems development life cycle"], ["engineering of systems", "systems thinking"], ["engineering of systems", "theory of constraints"], ["engineering of systems", "value-stream mapping"], ["engineering of systems", "system information modelling"], ["enterprise modelling", "business process modeling"], ["enterprise modelling", "enterprise architecture"], ["enterprise modelling", "enterprise architecture framework"], ["enterprise modelling", "enterprise integration"], ["enterprise modelling", "enterprise data modeling"], ["flat organization", "hierarchical organization"], ["information management", "knowledge management"], ["information management", "information technology"], ["information management", "project management"], ["information management", "business process"], ["information management", "balanced scorecard"], ["information management", "strategic management"], ["information management", "data management"], ["information management", "content management"], ["information management", "information resources management journal"], ["hierarchical organization", "biological organisation"], ["hierarchical organization", "flat organization"], ["organizational architecture", "organizational structure"], ["organizational architecture", "enterprise architecture framework"], ["organizational architecture", "view model"], ["organizational culture", "kick the cat"], ["organizational culture", "kiss up kick down"], ["organizational culture", "machiavellianism in the workplace"], ["organizational culture", "narcissism in the workplace"], ["organizational culture", "organizational behavior"], ["organizational culture", "organizational studies"], ["organizational culture", "power (social and political)"], ["organizational culture", "psychopathy in the workplace"], ["organizational culture", "three circles model"], ["organizational culture", "organizational learning"], ["industrial and organizational psychology", "human resource management"], ["industrial and organizational psychology", "industrial revolution"], ["industrial and organizational psychology", "kick the cat"], ["industrial and organizational psychology", "kiss up kick down"], ["industrial and organizational psychology", "machiavellianism in the workplace"], ["industrial and organizational psychology", "narcissism in the workplace"], ["industrial and organizational psychology", "occupational safety and health"], ["industrial and organizational psychology", "organizational behavior"], ["industrial and organizational psychology", "organizational learning"], ["industrial and organizational psychology", "psychopathy in the workplace"], ["social group", "corporate group"], ["social group", "globalization"], ["social group", "group dynamics"], ["social group", "intergroup relations"], ["social group", "public opinion"], ["social group", "social class"], ["social group", "social isolation"], ["social group", "social network"], ["spontaneous order", "emergence"], ["spontaneous order", "tragedy of the commons"], ["spontaneous order", "wu wei"], ["clandestine cell system", "leaderless resistance"], ["unorganisation", "collaboration"], ["unorganisation", "leaderless resistance"], ["idealism", "rationality"], ["idealism", "reason"], ["creativity techniques", "decision tree"], ["creativity techniques", "imagination"], ["creativity techniques", "invention"], ["creativity techniques", "lateral thinking"], ["creativity techniques", "oblique strategies"], ["diffusion of innovations", "collaborative innovation network"], ["diffusion of innovations", "frugal innovation"], ["diffusion of innovations", "hierarchical organization"], ["diffusion of innovations", "lateral diffusion"], ["diffusion of innovations", "memetics"], ["diffusion of innovations", "technological revolution"], ["ideology", "social criticism"], ["ideology", "world view"], ["notion (philosophy)", "concept"], ["object of the mind", "abstraction"], ["think tank", "collective intelligence"], ["think tank", "internet think tanks"], ["think tank", "mass collaboration"], ["think tank", "mass communication"], ["thought experiment", "black box"], ["thought experiment", "futures studies"], ["history of ideas", "cambridge school (intellectual history)"], ["history of ideas", "global intellectual history"], ["history of ideas", "great conversation"], ["intellectual history", "cambridge school (intellectual history)"], ["intellectual history", "global intellectual history"], ["intellectual history", "great conversation"], ["concept", "abstraction"], ["concept", "categorization"], ["concept", "class (philosophy)"], ["concept", "concept map"], ["concept", "conceptual framework"], ["concept", "conceptual model"], ["concept", "formal concept analysis"], ["concept", "hypostatic abstraction"], ["concept", "idea"], ["concept", "notion (philosophy)"], ["philosophical analysis", "thesis, antithesis, synthesis"], ["comic jam", "exquisite corpse"], ["mindmap", "exquisite corpse"], ["mindmap", "graph (discrete mathematics)"], ["mindmap", "idea"], ["mindmap", "mental literacy"], ["mindmap", "nodal organizational structure"], ["mindmap", "personal wiki"], ["mindmap", "rhizome (philosophy)"], ["mindmap", "social map"], ["mindmap", "spider mapping"], ["behavioral geography", "cognitive geography"], ["cognitive psychology", "cognition"], ["cognitive psychology", "cognitive robotics"], ["cognitive psychology", "digital infinity"], ["cognitive psychology", "artificial intelligence"], ["cognitive psychology", "formal fallacy"], ["cognitive psychology", "personal information management"], ["spatial cognition", "space mapping"], ["spatial cognition", "cognitive science"], ["spatial cognition", "cognition"], ["geovisualization", "cartography"], ["geovisualization", "computer-aided design"], ["geovisualization", "computer graphics"], ["geovisualization", "computer vision"], ["geovisualization", "exploratory data analysis"], ["geovisualization", "geoinformatics"], ["geovisualization", "image processing"], ["geovisualization", "signal processing"], ["b-tree", "b+ tree"], ["b-tree", "r-tree"], ["b-tree", "red–black tree"], ["b-tree", "2–3 tree"], ["b-tree", "2–3–4 tree"], ["hierarchical model", "tree structure"], ["hierarchical model", "hierarchical query"], ["hierarchical model", "hierarchical clustering"], ["hierarchical query", "datalog"], ["hierarchical query", "hierarchical model"], ["hierarchical query", "reachability"], ["hierarchical query", "transitive closure"], ["hierarchical query", "tree structure"], ["comparative method", "comparative linguistics"], ["comparative method", "historical linguistics"], ["comparative method", "lexicostatistics"], ["comparative method", "proto-language"], ["genetic relationship (linguistics)", "language family"], ["genetic relationship (linguistics)", "comparative linguistics"], ["genetic relationship (linguistics)", "language isolate"], ["indo-european studies", "historical linguistics"], ["linkage (linguistics)", "language contact"], ["wave model (linguistics)", "memetics"], ["father tongue hypothesis", "language family"], ["constructed language", "knowledge representation"], ["constructed language", "metalanguage"], ["constructed language", "universal grammar"], ["constructed language", "origin of language"], ["constructed language", "universal language"], ["endangered language", "language death"], ["endangered language", "language policy"], ["endangered language", "language revitalization"], ["endangered language", "lists of endangered languages"], ["endangered language", "lists of extinct languages"], ["endangered language", "minority language"], ["endangered language", "the linguists"], ["extinct language", "endangered language"], ["extinct language", "globalization"], ["extinct language", "language death"], ["extinct language", "lists of endangered languages"], ["language death", "endangered language"], ["language death", "lists of endangered languages"], ["language death", "extinct language"], ["language death", "lists of extinct languages"], ["language death", "international auxiliary language"], ["language death", "language contact"], ["language death", "language policy"], ["language death", "language revitalization"], ["language death", "linguistic imperialism"], ["language death", "minority language"], ["language death", "the linguists"], ["global language system", "linguistic imperialism"], ["global language system", "universal language"], ["global language system", "minority language"], ["global language system", "international auxiliary language"], ["proto-language (historical linguistics)", "comparative method"], ["proto-language (historical linguistics)", "japhetic theory"], ["proto-language (historical linguistics)", "historical linguistics"], ["proto-language (historical linguistics)", "origin of language"], ["proto-language (historical linguistics)", "proto-human language"], ["proto-language (historical linguistics)", "universal language"], ["proto-human language", "origin of language"], ["proto-human language", "origin of speech"], ["proto-human language", "proto-language"], ["proto-human language", "universal grammar"], ["unclassified language", "language isolate"], ["datalog", "semantic web rule language"], ["datalog", "relational database"], ["transitive closure", "transitive reduction"], ["binary space partitioning", "k-d tree"], ["binary space partitioning", "octree"], ["binary space partitioning", "quadtree"], ["binary space partitioning", "hierarchical clustering"], ["binary space partitioning", "3d model"], ["binary space partitioning", "guillotine cutting"], ["bounding volume hierarchy", "binary space partitioning"], ["bounding volume hierarchy", "octree"], ["bounding volume hierarchy", "k-d tree"], ["bounding volume hierarchy", "r-tree"], ["bounding volume hierarchy", "hierarchical clustering"], ["cluster analysis", "conceptual clustering"], ["cluster analysis", "community structure"], ["cluster analysis", "spectral clustering"], ["cluster analysis", "artificial neural network"], ["cluster analysis", "nearest neighbor search"], ["cluster analysis", "dimension reduction"], ["cluster analysis", "principal component analysis"], ["cluster analysis", "curse of dimensionality"], ["cluster analysis", "determining the number of clusters in a data set"], ["cluster analysis", "parallel coordinates"], ["cluster analysis", "structured data analysis (statistics)"], ["computational phylogenetics", "bayesian network"], ["computational phylogenetics", "bioinformatics"], ["computational phylogenetics", "cladistics"], ["computational phylogenetics", "disk-covering method"], ["computational phylogenetics", "microbial phylogenetics"], ["computational phylogenetics", "phylogenetic comparative methods"], ["computational phylogenetics", "phylogenetic tree"], ["computational phylogenetics", "phylogenetics"], ["computational phylogenetics", "population genetics"], ["computational phylogenetics", "statistical classification"], ["computational phylogenetics", "systematics"], ["computational phylogenetics", "taxonomy (biology)"], ["hierarchical clustering of networks", "network topology"], ["hierarchical clustering of networks", "numerical taxonomy"], ["hierarchical clustering of networks", "tree structure"], ["locality-sensitive hashing", "bloom filter"], ["locality-sensitive hashing", "curse of dimensionality"], ["locality-sensitive hashing", "multilinear subspace learning"], ["locality-sensitive hashing", "principal component analysis"], ["locality-sensitive hashing", "singular value decomposition"], ["locality-sensitive hashing", "sparse distributed memory"], ["nearest neighbor search", "cluster analysis"], ["nearest neighbor search", "curse of dimensionality"], ["nearest neighbor search", "digital signal processing"], ["nearest neighbor search", "dimension reduction"], ["nearest neighbor search", "principal component analysis"], ["nearest neighbor search", "singular value decomposition"], ["nearest neighbor search", "sparse distributed memory"], ["nearest neighbor search", "statistical distance"], ["nearest neighbor search", "time series"], ["numerical taxonomy", "computational phylogenetics"], ["numerical taxonomy", "taxonomy (biology)"], ["tree (descriptive set theory)", "laver tree"], ["tree (descriptive set theory)", "set theory"], ["behavior tree (artificial intelligence, robotics and control)", "decision tree"], ["behavior tree (artificial intelligence, robotics and control)", "hybrid system"], ["behavior tree (artificial intelligence, robotics and control)", "subsumption architecture"], ["boosting (machine learning)", "adaboost"], ["boosting (machine learning)", "random forest"], ["boosting (machine learning)", "alternating decision tree"], ["boosting (machine learning)", "bootstrap aggregating"], ["boosting (machine learning)", "cascading classifiers"], ["boosting (machine learning)", "brownboost"], ["boosting (machine learning)", "coboosting"], ["boosting (machine learning)", "logistic regression"], ["boosting (machine learning)", "principle of maximum entropy"], ["boosting (machine learning)", "neural network"], ["boosting (machine learning)", "support vector machine"], ["boosting (machine learning)", "gradient boosting"], ["boosting (machine learning)", "cross-validation (statistics)"], ["boosting (machine learning)", "machine learning"], ["decision cycle", "adaptive management"], ["decision cycle", "decision tree"], ["decision cycle", "decisional balance sheet"], ["decision cycle", "learning cycle"], ["decision cycle", "systems development lifecycle"], ["decision cycle", "virtuous circle and vicious circle"], ["decision cycle", "intelligence cycle"], ["decision list", "decision stump"], ["decision table", "decision tree"], ["decision table", "case based reasoning"], ["decision table", "cause–effect graph"], ["decision table", "dominance-based rough set approach"], ["decision table", "drakon"], ["decision table", "karnaugh-veitch diagram"], ["decision table", "many-valued logic"], ["decision table", "semantic decision table"], ["decision tree model", "decision tree"], ["design rationale", "goal structuring notation"], ["design rationale", "method engineering"], ["design rationale", "problem structuring methods"], ["design rationale", "theory of justification"], ["markov chain", "markov chain approximation method"], ["markov chain", "markov chain mixing time"], ["markov chain", "markov decision process"], ["markov chain", "markov information source"], ["markov chain", "markov odometer"], ["markov chain", "markov random field"], ["markov chain", "quantum markov chain"], ["markov chain", "semi-markov process"], ["markov chain", "stochastic cellular automaton"], ["markov chain", "variable-order markov model"], ["random forest", "boosting (machine learning)"], ["random forest", "decision tree learning"], ["random forest", "ensemble learning"], ["random forest", "gradient boosting"], ["random forest", "non-parametric statistics"], ["random forest", "randomized algorithm"], ["odds algorithm", "odds"], ["odds algorithm", "clinical trial"], ["odds algorithm", "expanded access"], ["odds algorithm", "secretary problem"], ["topological combinatorics", "sperner's lemma"], ["topological combinatorics", "discrete exterior calculus"], ["topological combinatorics", "topological graph theory"], ["topological combinatorics", "combinatorial topology"], ["topological combinatorics", "finite topological space"], ["truth table", "boolean domain"], ["truth table", "boolean-valued function"], ["truth table", "first-order logic"], ["truth table", "functional completeness"], ["truth table", "karnaugh maps"], ["truth table", "logic gate"], ["truth table", "logical connective"], ["truth table", "logical graph"], ["truth table", "method of analytic tableaux"], ["truth table", "propositional calculus"], ["truth table", "truth function"], ["b+ tree", "b-tree"], ["r-tree", "k-d tree"], ["r-tree", "bounding volume hierarchy"], ["r-tree", "gist"], ["red–black tree", "aa tree"], ["red–black tree", "avl tree"], ["red–black tree", "b-tree"], ["red–black tree", "2–3 tree"], ["red–black tree", "2–3–4 tree"], ["red–black tree", "b+ tree"], ["red–black tree", "splay tree"], ["2–3 tree", "2–3–4 tree"], ["2–3 tree", "aa tree"], ["2–3 tree", "b-tree"], ["2–3–4 tree", "2–3 tree"], ["2–3–4 tree", "red–black tree"], ["2–3–4 tree", "b-tree"], ["2–3–4 tree", "queap"], ["exploratory data analysis", "anscombe's quartet"], ["exploratory data analysis", "data dredging"], ["exploratory data analysis", "predictive analytics"], ["exploratory data analysis", "structured data analysis (statistics)"], ["exploratory data analysis", "descriptive statistics"], ["taxonomy (biology)", "automated species identification"], ["taxonomy (biology)", "bacterial taxonomy"], ["taxonomy (biology)", "cladogram"], ["taxonomy (biology)", "cladistics"], ["taxonomy (biology)", "cluster analysis"], ["taxonomy (biology)", "consortium for the barcode of life"], ["taxonomy (biology)", "consortium of european taxonomic facilities"], ["taxonomy (biology)", "dendrogram"], ["taxonomy (biology)", "genetypes"], ["taxonomy (biology)", "glossary of scientific naming"], ["taxonomy (biology)", "identification (biology)"], ["taxonomy (biology)", "incertae sedis"], ["taxonomy (biology)", "open tree of life"], ["taxonomy (biology)", "parataxonomy"], ["taxonomy (biology)", "phenogram"], ["taxonomy (biology)", "set theory"], ["taxonomy (biology)", "taxonomy (general)"], ["taxonomy (biology)", "virus classification"], ["methodology", "scientific method"], ["phenetics", "distance matrices in phylogeny"], ["phenetics", "folk taxonomy"], ["phenetics", "taxonomy (biology)"], ["phenetics", "dendrogram"], ["phylogeny", "clade"], ["phylogeny", "cladistics"], ["phylogeny", "computational phylogenetics"], ["phylogeny", "evolutionary taxonomy"], ["phylogeny", "phylogenetic comparative methods"], ["phylogenetic comparative methods", "allometry"], ["phylogenetic comparative methods", "biodiversity"], ["phylogenetic comparative methods", "bioinformatics"], ["phylogenetic comparative methods", "cladistics"], ["phylogenetic comparative methods", "comparative method"], ["phylogenetic comparative methods", "computational phylogenetics"], ["phylogenetic comparative methods", "disk-covering method"], ["phylogenetic comparative methods", "generalized linear model"], ["phylogenetic comparative methods", "joe felsenstein"], ["phylogenetic comparative methods", "maximum parsimony"], ["phylogenetic comparative methods", "phylogenetics"], ["phylogenetic comparative methods", "statistics"], ["phylogenetic comparative methods", "systematics"], ["biodiversity", "megadiverse countries"], ["clade", "binomial nomenclature"], ["clade", "biological classification"], ["clade", "cladistics"], ["clade", "phylogenetic network"], ["clade", "phylogenetic nomenclature"], ["clade", "phylogenetics"], ["bacterial taxonomy", "taxonomy (biology)"], ["bacterial taxonomy", "microbial ecology"], ["cladogram", "phylogenetics"], ["cladogram", "dendrogram"], ["genetypes", "dna barcoding"], ["identification (biology)", "automated species identification"], ["identification (biology)", "dna barcoding"], ["identification (biology)", "taxonomy (biology)"], ["incertae sedis", "glossary of scientific naming"], ["incertae sedis", "unclassified language"], ["parataxonomy", "folk taxonomy"], ["parataxonomy", "citizen science"], ["set theory", "relational model"], ["virus classification", "glossary of scientific naming"], ["virus classification", "binomial nomenclature"], ["virus classification", "biological classification"], ["virus classification", "taxonomy (biology)"], ["relational model", "domain relational calculus"], ["relational model", "query language"], ["relational model", "relation (mathematics)"], ["relational model", "relational database"], ["alpha taxonomy", "automated species identification"], ["alpha taxonomy", "bacterial taxonomy"], ["alpha taxonomy", "cladogram"], ["alpha taxonomy", "cladistics"], ["alpha taxonomy", "cluster analysis"], ["alpha taxonomy", "consortium for the barcode of life"], ["alpha taxonomy", "consortium of european taxonomic facilities"], ["alpha taxonomy", "dendrogram"], ["alpha taxonomy", "genetypes"], ["alpha taxonomy", "glossary of scientific naming"], ["alpha taxonomy", "identification (biology)"], ["alpha taxonomy", "incertae sedis"], ["alpha taxonomy", "open tree of life"], ["alpha taxonomy", "parataxonomy"], ["alpha taxonomy", "phenogram"], ["alpha taxonomy", "set theory"], ["alpha taxonomy", "taxonomy (general)"], ["alpha taxonomy", "virus classification"], ["glossary of botanical terms", "glossary of scientific naming"], ["species description", "binomial nomenclature"], ["species description", "glossary of scientific naming"], ["freeware", "gratis versus libre"], ["freeware", "comparison of user features of messaging platforms"], ["phylogenetics", "bioinformatics"], ["phylogenetics", "biomathematics"], ["phylogenetics", "coalescent theory"], ["phylogenetics", "evolutionary taxonomy"], ["phylogenetics", "joe felsenstein"], ["phylogenetics", "language family"], ["phylogenetics", "maximum parsimony"], ["phylogenetics", "microbial phylogenetics"], ["phylogenetics", "phylogenetic comparative methods"], ["phylogenetics", "phylogenetic network"], ["phylogenetics", "phylogenetic nomenclature"], ["phylogenetics", "systematics"], ["statistics", "official statistics"], ["the ancestor's tale", "phylogenetic tree"], ["biological applications of bifurcation theory", "dynamical systems theory"], ["biological applications of bifurcation theory", "theoretical biology"], ["biological applications of bifurcation theory", "computational biology"], ["biological applications of bifurcation theory", "systems biology"], ["biostatistics", "bioinformatics"], ["biostatistics", "epidemiology"], ["biostatistics", "mathematical and theoretical biology"], ["entropy and life", "abiogenesis"], ["entropy and life", "complex systems"], ["entropy and life", "dissipative system"], ["entropy and life", "biodiversity"], ["entropy and life", "ecology"], ["entropy and life", "dynamical system"], ["entropy and life", "self-organization"], ["ewens's sampling formula", "coalescent theory"], ["ewens's sampling formula", "biomathematics"], ["logistic function", "diffusion of innovations"], ["logistic function", "logistic regression"], ["logistic function", "population dynamics"], ["mathematical modelling of infectious disease", "disease surveillance"], ["mathematical modelling of infectious disease", "ecosystem model"], ["metabolic network modelling", "computational systems biology"], ["metabolic network modelling", "computer simulation"], ["metabolic network modelling", "metabolic network"], ["metabolic network modelling", "metabolic pathway"], ["metabolic network modelling", "metagenomics"], ["molecular modelling", "cheminformatics"], ["molecular modelling", "comparison of nucleic acid simulation software"], ["molecular modelling", "molecular design software"], ["molecular modelling", "molecular graphics"], ["molecular modelling", "monte carlo method"], ["molecular modelling", "simulated reality"], ["molecular modelling", "structural bioinformatics"], ["morphometrics", "allometry"], ["morphometrics", "phylogenetic comparative methods"], ["theoretical ecology", "butterfly effect"], ["theoretical ecology", "ecosystem model"], ["theoretical ecology", "mathematical biology"], ["theoretical ecology", "population dynamics"], ["theoretical ecology", "theoretical biology"], ["turing pattern", "mathematical and theoretical biology"], ["computational biology", "international society for computational biology"], ["computational biology", "bioinformatics"], ["computational biology", "biosimulation"], ["computational biology", "biostatistics"], ["computational biology", "mathematical biology"], ["computational biology", "monte carlo method"], ["computational biology", "structural genomics"], ["computational biology", "systems biology"], ["computational biomodeling", "biological data visualization"], ["computational biomodeling", "biosimulation"], ["computational biomodeling", "gillespie algorithm"], ["computational biomodeling", "stochastic simulation"], ["computational genomics", "bioinformatics"], ["computational genomics", "computational biology"], ["computational genomics", "genomics"], ["computational genomics", "microarray"], ["computational genomics", "blast"], ["functional genomics", "systems biology"], ["functional genomics", "structural genomics"], ["functional genomics", "bioinformatics"], ["health informatics", "bioinformatics"], ["health informatics", "continuity of care record"], ["health informatics", "health information management"], ["health informatics", "hrhis"], ["health informatics", "international classification of diseases"], ["health informatics", "nosology"], ["health informatics", "hl7"], ["health informatics", "omaha system"], ["health informatics", "openehr"], ["health informatics", "snomed"], ["jumping library", "bioinformatics"], ["metabolomics", "genomics"], ["metabolomics", "epigenomics"], ["metabolomics", "proteomics"], ["proteomics", "functional genomics"], ["proteomics", "systems biology"], ["proteomics", "glycomics"], ["proteomics", "european bioinformatics institute"], ["gene disease database", "biodiversity informatics"], ["gene disease database", "bioinformatics companies"], ["gene disease database", "computational biology"], ["gene disease database", "computational biomodeling"], ["gene disease database", "computational genomics"], ["gene disease database", "european bioinformatics institute"], ["gene disease database", "functional genomics"], ["gene disease database", "health informatics"], ["gene disease database", "international society for computational biology"], ["gene disease database", "jumping library"], ["gene disease database", "pathology"], ["gene disease database", "phylogenetics"], ["gene disease database", "structural bioinformatics"], ["genomics", "computational genomics"], ["genomics", "epigenomics"], ["genomics", "functional genomics"], ["genomics", "glycomics"], ["genomics", "metagenomics"], ["genomics", "pathogenomics"], ["genomics", "proteomics"], ["blast", "sequence alignment"], ["simulated reality", "artificial life"], ["simulated reality", "artificial society"], ["simulated reality", "computational sociology"], ["simulated reality", "philosophy of information"], ["simulated reality", "social simulation"], ["computational systems biology", "biological data visualization"], ["computational systems biology", "biosimulation"], ["computational systems biology", "gillespie algorithm"], ["computational systems biology", "stochastic simulation"], ["metabolic network", "metabolic network modelling"], ["metabolic network", "metabolic pathway"], ["metabolic pathway", "metabolic network"], ["metabolic pathway", "metabolic network modelling"], ["metagenomics", "microbial ecology"], ["metagenomics", "pathogenomics"], ["logistic regression", "logistic function"], ["logistic regression", "logistic model tree"], ["resolution (logic)", "inductive logic programming"], ["resolution (logic)", "method of analytic tableaux"], ["argument mining", "argument technology"], ["argument mining", "argumentation theory"], ["parse tree", "abstract syntax tree"], ["parse tree", "computational linguistics"], ["parse tree", "parsing"], ["parse tree", "dynamic syntax tree"], ["logical argument", "abductive reasoning"], ["logical argument", "argument map"], ["logical argument", "argumentation theory"], ["logical argument", "bayes' theorem"], ["logical argument", "belief bias"], ["logical argument", "boolean logic"], ["logical argument", "critical thinking"], ["logical argument", "dialectic"], ["logical argument", "evidence"], ["logical argument", "evidence-based policy"], ["logical argument", "inquiry"], ["logical argument", "logical reasoning"], ["logical argument", "practical arguments"], ["logical argument", "soundness theorem"], ["logical argument", "syllogism"], ["toulmin model of argument", "argumentation theory"], ["argumentation theory", "argument"], ["argumentation theory", "critical thinking"], ["argumentation theory", "dialectic"], ["argumentation theory", "logic and dialectic"], ["argumentation theory", "logic of argumentation"], ["argumentation theory", "logical reasoning"], ["argumentation theory", "public sphere"], ["argumentation theory", "rationality"], ["argumentation theory", "rogerian argument"], ["argumentation theory", "social engineering (political science)"], ["argumentation theory", "social psychology"], ["argumentation theory", "source criticism"], ["argumentation theory", "straight and crooked thinking"], ["defeater", "argumentation framework"], ["diagrammatic reasoning", "natural deduction"], ["diagrammatic reasoning", "propositional calculus"], ["diagrammatic reasoning", "spatial-temporal reasoning"], ["diagrammatic reasoning", "visual reasoning"], ["paraconsistent logic", "intuitionistic logic"], ["boolean logic", "boolean algebra (structure)"], ["boolean logic", "boolean algebras canonically defined"], ["boolean logic", "intuitionistic logic"], ["boolean logic", "principia mathematica"], ["boolean logic", "propositional calculus"], ["boolean logic", "relation algebra"], ["critical thinking", "age of enlightenment"], ["critical thinking", "argument"], ["critical thinking", "argumentation theory"], ["critical thinking", "cognitive bias mitigation"], ["critical thinking", "critic"], ["critical thinking", "demarcation problem"], ["critical thinking", "dialectic"], ["critical thinking", "disinformation"], ["critical thinking", "freedom of thought"], ["critical thinking", "freethought"], ["critical thinking", "indoctrination"], ["critical thinking", "logic"], ["critical thinking", "logical reasoning"], ["critical thinking", "philosophy education"], ["critical thinking", "sapere aude"], ["critical thinking", "source criticism"], ["critical thinking", "world philosophy day"], ["inquiry", "charles sanders peirce bibliography"], ["inquiry", "c. west churchman"], ["inquiry", "information theory"], ["inquiry", "logic of information"], ["inquiry", "pragmatic theory of truth"], ["inquiry", "pragmaticism"], ["inquiry", "research question"], ["logical reasoning", "analogy"], ["logical reasoning", "argument"], ["logical reasoning", "argumentation theory"], ["logical reasoning", "critical thinking"], ["logical reasoning", "dialogical logic"], ["logical reasoning", "fallacy"], ["logical reasoning", "informal logic"], ["logical reasoning", "logic"], ["logical reasoning", "reason"], ["computational linguistics", "computational models of language acquisition"], ["computational linguistics", "computational semantics"], ["computational linguistics", "computer-assisted reviewing"], ["computational linguistics", "lexicostatistics"], ["computational linguistics", "natural language processing"], ["computational linguistics", "natural language user interface"], ["computational linguistics", "semantic relatedness"], ["computational linguistics", "universal networking language"], ["mathematical logic", "argument"], ["mathematical logic", "informal logic"], ["mathematical logic", "knowledge representation and reasoning"], ["mathematical logic", "logic"], ["mathematical logic", "mereology"], ["mathematical logic", "propositional calculus"], ["mathematical logic", "well-formed formula"], ["sequent calculus", "resolution (logic)"], ["gerhard gentzen", "bertrand russell"], ["system l", "natural deduction"], ["system l", "sequent calculus"], ["argument", "abductive reasoning"], ["argument", "argument map"], ["argument", "argumentation theory"], ["argument", "bayes' theorem"], ["argument", "belief bias"], ["argument", "boolean logic"], ["argument", "critical thinking"], ["argument", "dialectic"], ["argument", "evidence"], ["argument", "evidence-based policy"], ["argument", "inquiry"], ["argument", "logical reasoning"], ["argument", "practical arguments"], ["argument", "soundness theorem"], ["argument", "syllogism"], ["rogerian argument", "cognitive bias modification"], ["rogerian argument", "dialogue"], ["rogerian argument", "dialogue mapping"], ["rogerian argument", "epistemic virtue"], ["rogerian argument", "group dynamics"], ["rogerian argument", "immunity to change"], ["rogerian argument", "intergroup dialogue"], ["rogerian argument", "philosophy of dialogue"], ["rogerian argument", "thesis, antithesis, synthesis"], ["source criticism", "argumentation theory"], ["source criticism", "critical thinking"], ["source criticism", "deception"], ["method of analytic tableaux", "resolution (logic)"], ["logic", "logic gate"], ["propositional calculus", "first-order logic"], ["propositional calculus", "second-order logic"], ["propositional calculus", "higher-order logic"], ["propositional calculus", "boolean algebra (logic)"], ["propositional calculus", "boolean algebra (structure)"], ["propositional calculus", "boolean algebra topics"], ["propositional calculus", "boolean domain"], ["propositional calculus", "boolean function"], ["propositional calculus", "boolean-valued function"], ["propositional calculus", "categorical logic"], ["propositional calculus", "combinational logic"], ["propositional calculus", "conceptual graph"], ["propositional calculus", "entitative graph"], ["propositional calculus", "existential graph"], ["propositional calculus", "laws of form"], ["propositional calculus", "logical graph"], ["propositional calculus", "logical value"], ["propositional calculus", "mathematical logic"], ["propositional calculus", "truth function"], ["propositional calculus", "truth table"], ["fallacy", "straight and crooked thinking"], ["collaborative software", "collaboration technologies"], ["collaborative software", "telecommuting"], ["collaborative software", "computer supported cooperative work"], ["collaborative software", "integrated collaboration environment"], ["collaborative software", "content management system"], ["collaborative software", "customer relationship management"], ["collaborative software", "document management system"], ["collaborative software", "enterprise content management"], ["collaborative software", "intranet"], ["collaborative software", "massively distributed collaboration"], ["collaborative software", "online consultation"], ["collaborative software", "online deliberation"], ["collaborative software", "collaborative innovation network"], ["collaborative software", "commons-based peer production"], ["collaborative software", "electronic business"], ["collaborative software", "information technology management"], ["collaborative software", "management information systems"], ["collaborative software", "management"], ["collaborative software", "office of the future"], ["collaborative software", "operational transformation"], ["collaborative software", "organizational memory system"], ["collaborative software", "cloud collaboration"], ["collaborative software", "document collaboration"], ["collaborative software", "mediawiki"], ["collaborative software", "wikipedia"], ["computational sociology", "journal of artificial societies and social simulation"], ["computational sociology", "artificial society"], ["computational sociology", "simulated reality"], ["computational sociology", "social simulation"], ["computational sociology", "agent-based social simulation"], ["computational sociology", "social complexity"], ["computational sociology", "computational economics"], ["computational sociology", "cliodynamics"], ["computational sociology", "predictive analytics"], ["creative problem solving", "creativity"], ["creative problem solving", "collective problem solving"], ["creative problem solving", "frugal innovation"], ["creative problem solving", "invention"], ["creative problem solving", "lateral thinking"], ["creative problem solving", "problem structuring methods"], ["creative problem solving", "systems thinking"], ["creative problem solving", "triz"], ["deliberation", "argument map"], ["deliberation", "dialogue mapping"], ["deliberation", "low-information rationality"], ["dialogue", "argumentation theory"], ["dialogue", "collaborative leadership"], ["dialogue", "deliberation"], ["dialogue", "dialogical self"], ["dialogue", "dialogue among civilizations"], ["dialogue", "dialogue mapping"], ["dialogue", "intercultural dialogue"], ["dialogue", "interfaith dialogue"], ["dialogue", "intergroup dialogue"], ["dialogue", "rogerian argument"], ["dialogue", "speech"], ["knowledge base", "content management"], ["knowledge base", "database"], ["knowledge base", "enterprise bookmarking"], ["knowledge base", "information repository"], ["knowledge base", "knowledge-based system"], ["knowledge base", "knowledge graph"], ["knowledge base", "knowledge management"], ["knowledge base", "microsoft knowledge base"], ["knowledge base", "diffbot"], ["knowledge base", "semantic network"], ["knowledge base", "text mining"], ["knowledge base", "wikidata"], ["knowledge base", "yago (database)"], ["socratic questioning", "argument map"], ["socratic questioning", "argumentation theory"], ["socratic questioning", "inquiry"], ["socratic questioning", "intellectual virtue"], ["socratic questioning", "interrogation"], ["socratic questioning", "issue map"], ["why–because analysis", "accident"], ["why–because analysis", "cause–effect graph"], ["why–because analysis", "fault tree analysis"], ["why–because analysis", "five whys"], ["why–because analysis", "ishikawa diagram"], ["why–because analysis", "issue map"], ["why–because analysis", "issue tree"], ["why–because analysis", "root cause analysis"], ["accident", "root cause analysis"], ["accident", "safety engineering"], ["accident", "poka-yoke"], ["accident", "risk management"], ["accident", "occupational safety and health"], ["cause–effect graph", "causal diagram"], ["cause–effect graph", "decision table"], ["fault tree analysis", "failure mode and effects analysis"], ["fault tree analysis", "ishikawa diagram"], ["fault tree analysis", "reliability engineering"], ["fault tree analysis", "root cause analysis"], ["fault tree analysis", "safety engineering"], ["fault tree analysis", "system safety"], ["fault tree analysis", "why-because analysis"], ["five whys", "eight disciplines problem solving"], ["five whys", "five ws"], ["five whys", "four causes"], ["five whys", "issue map"], ["five whys", "issue tree"], ["five whys", "root cause analysis"], ["five whys", "socratic method"], ["five whys", "why–because analysis"], ["ishikawa diagram", "seven basic tools of quality"], ["ishikawa diagram", "five whys"], ["ishikawa diagram", "issue map"], ["ishikawa diagram", "issue tree"], ["ishikawa diagram", "resource management"], ["issue map", "collaborative software"], ["issue map", "computational sociology"], ["issue map", "creative problem solving"], ["issue map", "critical thinking"], ["issue map", "deliberation"], ["issue map", "dialogue"], ["issue map", "issue tree"], ["issue map", "knowledge base"], ["issue map", "personal knowledge base"], ["issue map", "socratic questioning"], ["issue map", "why–because analysis"], ["intellectual virtue", "critical thinking"], ["intellectual virtue", "epistemic virtue"], ["lifelog", "personal knowledge base"], ["comparison of notetaking software", "comparison of text editors"], ["comparison of notetaking software", "web annotation"], ["comparison of notetaking software", "comparison of wiki software"], ["comparison of notetaking software", "comparison of word processors"], ["comparison of notetaking software", "outliner"], ["comparison of notetaking software", "personal information manager"], ["comparison of notetaking software", "personal knowledge base"], ["content management", "content management interoperability services"], ["content management", "content management system"], ["content management", "enterprise content management"], ["content management", "information architecture"], ["content management", "snippet management"], ["database", "comparison of object–relational database management systems"], ["database", "comparison of relational database management systems"], ["database", "data store"], ["knowledge-based system", "knowledge representation and reasoning"], ["knowledge-based system", "knowledge base"], ["knowledge-based system", "inference engine"], ["knowledge-based system", "expert system"], ["knowledge-based system", "conceptual graph"], ["knowledge-based system", "semantic web"], ["knowledge-based system", "neural networks"], ["microsoft knowledge base", "diffbot"], ["text mining", "concept mining"], ["text mining", "news analytics"], ["text mining", "ontology learning"], ["text mining", "record linkage"], ["text mining", "web mining"], ["horizon scanning", "futurology"], ["horizon scanning", "risk analysis"], ["horizon scanning", "scientific lacuna"], ["horizon scanning", "technology assessment"], ["horizon scanning", "technology scouting"], ["collaborative leadership", "collaboration"], ["collaborative leadership", "wikinomics"], ["dialogical self", "philosophy of dialogue"], ["dialogue among civilizations", "centre for dialogue"], ["dialogue among civilizations", "fethullah gülen"], ["dialogue among civilizations", "interfaith dialogue"], ["dialogue among civilizations", "kaiciid dialogue centre"], ["dialogue among civilizations", "parliament of the world's religions"], ["interfaith dialogue", "centre for dialogue"], ["interfaith dialogue", "fethullah gülen"], ["interfaith dialogue", "intercultural dialogue"], ["interfaith dialogue", "kaiciid dialogue centre"], ["interfaith dialogue", "parliament of the world's religions"], ["intergroup dialogue", "dialogue"], ["intergroup dialogue", "dialogue mapping"], ["intergroup dialogue", "group dynamics"], ["intergroup dialogue", "intercultural dialogue"], ["intergroup dialogue", "intergroup relations"], ["speech", "foxp2"], ["speech", "origin of language"], ["cognitive bias mitigation", "cognitive bias modification"], ["cognitive bias mitigation", "critical theory"], ["cognitive bias mitigation", "critical thinking"], ["cognitive bias mitigation", "freedom of thought"], ["cognitive bias mitigation", "freethought"], ["cognitive bias mitigation", "inquiry"], ["cognitive bias mitigation", "logic"], ["critic", "analysis"], ["critic", "critical theory"], ["critic", "critical thinking"], ["critic", "social criticism"], ["demarcation problem", "idealism"], ["demarcation problem", "relativism"], ["disinformation", "social engineering (political science)"], ["freedom of thought", "freethought"], ["freedom of thought", "free will"], ["freedom of thought", "public opinion"], ["freethought", "freedom of thought"], ["indoctrination", "groupthink"], ["philosophy education", "socratic method"], ["philosophy education", "world philosophy day"], ["creativity", "adaptive performance"], ["creativity", "brainstorming"], ["creativity", "creativity techniques"], ["creativity", "heroic theory of invention and scientific development"], ["creativity", "innovation"], ["creativity", "invention"], ["creativity", "lateral thinking"], ["creativity", "multiple discovery"], ["collective problem solving", "actuarial science"], ["collective problem solving", "collective intelligence"], ["collective problem solving", "community of practice"], ["collective problem solving", "coworking"], ["collective problem solving", "divergent thinking"], ["collective problem solving", "innovation"], ["collective problem solving", "problem structuring methods"], ["collective problem solving", "wicked problem"], ["invention", "creativity techniques"], ["invention", "heroic theory of invention and scientific development"], ["invention", "multiple discovery"], ["invention", "technological revolution"], ["lateral thinking", "creativity techniques"], ["lateral thinking", "brainstorming"], ["lateral thinking", "divergent thinking"], ["lateral thinking", "critical thinking"], ["lateral thinking", "problem solving"], ["lateral thinking", "oblique strategies"], ["lateral thinking", "thinking outside the box"], ["lateral thinking", "reason"], ["lateral thinking", "logical reasoning"], ["lateral thinking", "abductive reasoning"], ["lateral thinking", "speed thinking"], ["problem structuring methods", "causal model"], ["problem structuring methods", "decision conferencing"], ["problem structuring methods", "group concept mapping"], ["problem structuring methods", "method engineering"], ["problem structuring methods", "research question"], ["artificial society", "complex system"], ["artificial society", "computational sociology"], ["artificial society", "emergence"], ["artificial society", "evolutionary algorithm"], ["artificial society", "simulated reality"], ["artificial society", "social complexity"], ["artificial society", "social simulation"], ["social simulation", "agent-based computational economics"], ["social simulation", "agent-based social simulation"], ["social simulation", "artificial consciousness"], ["social simulation", "artificial society"], ["social simulation", "computational sociology"], ["social simulation", "cliodynamics"], ["social simulation", "journal of artificial societies and social simulation"], ["social simulation", "simulated reality"], ["social simulation", "system dynamics"], ["agent-based social simulation", "artificial life"], ["agent-based social simulation", "simulated reality"], ["agent-based social simulation", "social simulation"], ["agent-based social simulation", "journal of artificial societies and social simulation"], ["social complexity", "complexity economics"], ["social complexity", "complexity theory and organizations"], ["social complexity", "econophysics"], ["social complexity", "engaged theory"], ["social complexity", "personal information management"], ["social complexity", "aggregate data"], ["social complexity", "artificial neural network"], ["social complexity", "dual-phase evolution"], ["social complexity", "game theory"], ["social complexity", "multi-agent system"], ["social complexity", "systemography"], ["predictive analytics", "actuarial science"], ["predictive analytics", "computational sociology"], ["predictive analytics", "disease surveillance"], ["predictive analytics", "learning analytics"], ["predictive analytics", "odds algorithm"], ["predictive analytics", "pattern recognition"], ["predictive analytics", "social media analytics"], ["collaboration technologies", "collaborative innovation network"], ["collaboration technologies", "collaborative leadership"], ["collaboration technologies", "collaborative software"], ["collaboration technologies", "commons-based peer production"], ["collaboration technologies", "critical thinking"], ["collaboration technologies", "crowdsourcing"], ["collaboration technologies", "digital collaboration"], ["collaboration technologies", "facilitation (business)"], ["collaboration technologies", "knowledge management"], ["collaboration technologies", "unorganisation"], ["collaboration technologies", "wikinomics"], ["collaboration technologies", "outsourcing"], ["collaboration technologies", "coworking"], ["telecommuting", "comparison of office suites"], ["telecommuting", "comparison of file hosting services"], ["telecommuting", "comparison of cross-platform instant messaging clients"], ["telecommuting", "coworking"], ["telecommuting", "outsourcing"], ["telecommuting", "smart city"], ["telecommuting", "virtual workplace"], ["computer supported cooperative work", "collaborative software"], ["computer supported cooperative work", "collaborative innovation network"], ["computer supported cooperative work", "collaborative information seeking"], ["computer supported cooperative work", "computer-supported collaboration"], ["computer supported cooperative work", "commons-based peer production"], ["computer supported cooperative work", "integrated collaboration environment"], ["computer supported cooperative work", "knowledge management"], ["computer supported cooperative work", "mass collaboration"], ["computer supported cooperative work", "social peer-to-peer processes"], ["content management system", "content management"], ["content management system", "document management system"], ["content management system", "dynamic web page"], ["content management system", "enterprise content management"], ["content management system", "html"], ["content management system", "information management"], ["content management system", "knowledge management"], ["content management system", "revision control"], ["customer relationship management", "comparison of crm systems"], ["customer relationship management", "intersubjectivity"], ["document management system", "construction collaboration technology"], ["document management system", "document automation"], ["document management system", "enterprise content management"], ["document management system", "information repository"], ["document management system", "information science"], ["document management system", "knowledge base"], ["document management system", "knowledge management"], ["document management system", "library science"], ["document management system", "revision control"], ["document management system", "snippet management"], ["document management system", "taxonomy (general)"], ["document management system", "technical documentation"], ["enterprise content management", "content management interoperability services"], ["enterprise content management", "information governance"], ["enterprise content management", "information science"], ["enterprise content management", "content management system"], ["intranet", "virtual workplace"], ["massively distributed collaboration", "collective intelligence"], ["massively distributed collaboration", "digital collaboration"], ["massively distributed collaboration", "mass communication"], ["massively distributed collaboration", "open collaboration"], ["online consultation", "collaborative software"], ["online consultation", "intranet"], ["online consultation", "online deliberation"], ["online consultation", "usability"], ["online deliberation", "argument map"], ["online deliberation", "collaborative software"], ["online deliberation", "computer supported cooperative work"], ["online deliberation", "deliberation"], ["online deliberation", "online consultation"], ["online deliberation", "public sphere"], ["online deliberation", "web annotation"], ["collaborative innovation network", "collective intelligence"], ["collaborative innovation network", "polytely"], ["collaborative innovation network", "swarm intelligence"], ["collaborative innovation network", "symbolic interactionism"], ["collaborative innovation network", "commons-based peer production"], ["collaborative innovation network", "community of practice"], ["commons-based peer production", "collaboration"], ["commons-based peer production", "crowdsourcing"], ["commons-based peer production", "gift economy"], ["commons-based peer production", "mass collaboration"], ["commons-based peer production", "open collaboration"], ["commons-based peer production", "social peer-to-peer processes"], ["information technology management", "information resources management journal"], ["management information systems", "bachelor of computer information systems"], ["management information systems", "business intelligence"], ["management information systems", "business performance management"], ["management information systems", "business rule"], ["management information systems", "corporate governance of information technology"], ["management information systems", "data mining"], ["management information systems", "predictive analytics"], ["management information systems", "purchase order request"], ["management information systems", "enterprise architecture"], ["management information systems", "enterprise information system"], ["management information systems", "enterprise planning system"], ["management information systems", "management by objectives"], ["management information systems", "online analytical processing"], ["management information systems", "online office suite"], ["management information systems", "real-time computing"], ["management information systems", "real-time marketing"], ["management", "engineering management"], ["office of the future", "memex"], ["organizational memory system", "knowledge tagging"], ["cloud collaboration", "document collaboration"], ["mediawiki", "semantic mediawiki"], ["wikipedia", "internet"], ["wikipedia", "network effect"], ["wikipedia", "tree structure"], ["wikipedia", "recursion"], ["bayesian epistemology", "bayesian probability"], ["bayesian epistemology", "bayesian inference"], ["bayesian programming", "bayesian inference"], ["bayesian programming", "bayesian probability"], ["bayesian programming", "bayesian spam filtering"], ["bayesian programming", "belief propagation"], ["bayesian programming", "expectation-maximization algorithm"], ["bayesian programming", "factor graph"], ["bayesian programming", "graphical model"], ["bayesian programming", "hidden markov model"], ["bayesian programming", "kalman filter"], ["bayesian programming", "naive bayes classifier"], ["bayesian programming", "probabilistic logic"], ["bayesian programming", "subjective logic"], ["causal inference", "multivariate statistics"], ["causal inference", "partial least squares regression"], ["causal inference", "pathology"], ["causal inference", "regression analysis"], ["chow–liu tree", "bayesian network"], ["chow–liu tree", "knowledge representation"], ["computational intelligence", "cognitive robotics"], ["computational intelligence", "computational economics"], ["computational intelligence", "concept mining"], ["computational intelligence", "data mining"], ["deep belief network", "bayesian network"], ["deep belief network", "deep learning"], ["dempster–shafer theory", "probabilistic logic"], ["dempster–shafer theory", "bayes' theorem"], ["dempster–shafer theory", "bayesian network"], ["dempster–shafer theory", "subjective logic"], ["expectation–maximization algorithm", "mixture distribution"], ["expectation–maximization algorithm", "compound distribution"], ["expectation–maximization algorithm", "density estimation"], ["factor graph", "belief propagation"], ["factor graph", "bayesian inference"], ["factor graph", "bayesian programming"], ["factor graph", "bayesian network"], ["factor graph", "hammersley–clifford theorem"], ["kalman filter", "data assimilation"], ["kalman filter", "sliding mode control"], ["kalman filter", "stochastic differential equation"], ["memory-prediction framework", "adaptive resonance theory"], ["memory-prediction framework", "sparse distributed memory"], ["mixture distribution", "compound distribution"], ["mixture distribution", "expectation-maximization algorithm"], ["mixture distribution", "product distribution"], ["mixture distribution", "mixture (probability)"], ["mixture distribution", "mixture model"], ["mixture distribution", "graphical model"], ["mixture distribution", "hierarchical bayes model"], ["mixture model", "mixture (probability)"], ["mixture model", "graphical model"], ["mixture model", "hierarchical bayes model"], ["naive bayes classifier", "bayesian spam filtering"], ["naive bayes classifier", "bayesian network"], ["naive bayes classifier", "logistic regression"], ["polytree", "glossary of graph theory"], ["sensor fusion", "data (computing)"], ["sensor fusion", "data mining"], ["sensor fusion", "image fusion"], ["sensor fusion", "multisensory integration"], ["sequence alignment", "sequence mining"], ["sequence alignment", "blast"], ["variable-order bayesian network", "markov chain"], ["variable-order bayesian network", "examples of markov chains"], ["variable-order bayesian network", "markov process"], ["variable-order bayesian network", "markov chain monte carlo"], ["variable-order bayesian network", "semi-markov process"], ["variable-order bayesian network", "artificial intelligence"], ["decisional balance", "immunity to change"], ["decisional balance", "issue mapping"], ["design pattern", "style guide"], ["design pattern", "anti-pattern"], ["heuristic", "algorithm"], ["heuristic", "failure mode and effects analysis"], ["heuristic", "heuristics in judgment and decision-making"], ["pattern language", "method engineering"], ["pattern language", "modularity"], ["pattern language", "rule of thumb"], ["pattern language", "systems theory"], ["rule of thumb", "heuristic"], ["method engineering", "computer-aided software engineering"], ["method engineering", "configuration management"], ["method engineering", "design pattern"], ["method engineering", "design rationale"], ["method engineering", "metadata modeling"], ["method engineering", "pattern language"], ["method engineering", "technical documentation"], ["semi-markov process", "markov process"], ["semi-markov process", "variable-order markov model"], ["multivariate statistics", "structured data analysis (statistics)"], ["multivariate statistics", "structural equation modeling"], ["multivariate statistics", "design of experiments"], ["multivariate statistics", "exploratory data analysis"], ["multivariate statistics", "partial least squares regression"], ["multivariate statistics", "pattern recognition"], ["multivariate statistics", "principal component analysis"], ["multivariate statistics", "regression analysis"], ["multivariate statistics", "statistical interference"], ["data mining", "association rule learning"], ["data mining", "bayesian network"], ["data mining", "statistical classification"], ["data mining", "cluster analysis"], ["data mining", "decision tree"], ["data mining", "ensemble learning"], ["data mining", "factor analysis"], ["data mining", "intention mining"], ["data mining", "multilinear subspace learning"], ["data mining", "artificial neural network"], ["data mining", "regression analysis"], ["data mining", "sequence mining"], ["data mining", "structured data analysis (statistics)"], ["data mining", "text mining"], ["data mining", "time series"], ["data mining", "analytics"], ["data mining", "big data"], ["data mining", "bioinformatics"], ["data mining", "business intelligence"], ["data mining", "data analysis"], ["data mining", "data warehouse"], ["data mining", "exploratory data analysis"], ["data mining", "predictive analytics"], ["data mining", "web mining"], ["data mining", "customer analytics"], ["data mining", "educational data mining"], ["data mining", "data integration"], ["data mining", "information extraction"], ["data mining", "information integration"], ["data mining", "named-entity recognition"], ["data mining", "social media mining"], ["density estimation", "kernel density estimation"], ["density estimation", "mean integrated squared error"], ["density estimation", "histogram"], ["density estimation", "multivariate kernel density estimation"], ["density estimation", "spectral density estimation"], ["density estimation", "generative model"], ["density estimation", "order statistic"], ["density estimation", "probability distribution fitting"], ["hyperbolic geometry", "hyperbolic 3-manifold"], ["hyperbolic geometry", "hyperbolic manifold"], ["hyperbolic geometry", "hjelmslev transformation"], ["hyperbolic geometry", "hyperbolic tree"], ["hyperbolic geometry", "kleinian group"], ["hyperbolic geometry", "lambert quadrilateral"], ["hyperbolic geometry", "open universe"], ["hyperbolic geometry", "poincaré metric"], ["hyperbolic geometry", "saccheri quadrilateral"], ["hyperbolic geometry", "systolic geometry"], ["hyperbolic geometry", "δ-hyperbolic space"], ["hyperbolic geometry", "band model"], ["binary tiling", "baumslag–solitar group"], ["binary tiling", "binary tree"], ["binary tiling", "einstein problem"], ["binary tiling", "hyperbolic tree"], ["information visualization", "color coding technology for visualization"], ["information visualization", "computational visualistics"], ["information visualization", "data art"], ["information visualization", "data presentation architecture"], ["information visualization", "data visualization"], ["information visualization", "geovisualization"], ["information visualization", "infographics"], ["information visualization", "software visualization"], ["information visualization", "visual analytics"], ["color coding technology for visualization", "false color"], ["data art", "warming stripes"], ["data art", "climate change art"], ["data art", "data visualization"], ["data art", "knowledge visualization"], ["data art", "systems thinking"], ["data presentation architecture", "analytics"], ["data presentation architecture", "balanced scorecard"], ["data presentation architecture", "big data"], ["data presentation architecture", "business analysis"], ["data presentation architecture", "business intelligence"], ["data presentation architecture", "climate change art"], ["data presentation architecture", "color coding technology for visualization"], ["data presentation architecture", "dashboard (business)"], ["data presentation architecture", "data analysis"], ["data presentation architecture", "data art"], ["data presentation architecture", "data profiling"], ["data presentation architecture", "data science"], ["data presentation architecture", "data warehouse"], ["data presentation architecture", "exploratory data analysis"], ["data presentation architecture", "infographic"], ["data presentation architecture", "information architecture"], ["data presentation architecture", "information design"], ["data presentation architecture", "information visualization"], ["data presentation architecture", "interaction design"], ["data presentation architecture", "interaction techniques"], ["data presentation architecture", "scientific visualization"], ["data presentation architecture", "software visualization"], ["data presentation architecture", "statistical analysis"], ["data presentation architecture", "statistical graphics"], ["data presentation architecture", "visual analytics"], ["data presentation architecture", "visual journalism"], ["data presentation architecture", "warming stripes"], ["data visualization", "analytics"], ["data visualization", "balanced scorecard"], ["data visualization", "big data"], ["data visualization", "business analysis"], ["data visualization", "business intelligence"], ["data visualization", "climate change art"], ["data visualization", "color coding technology for visualization"], ["data visualization", "dashboard (business)"], ["data visualization", "data analysis"], ["data visualization", "data art"], ["data visualization", "data profiling"], ["data visualization", "data science"], ["data visualization", "data warehouse"], ["data visualization", "exploratory data analysis"], ["data visualization", "infographic"], ["data visualization", "information architecture"], ["data visualization", "information design"], ["data visualization", "information visualization"], ["data visualization", "interaction design"], ["data visualization", "interaction techniques"], ["data visualization", "scientific visualization"], ["data visualization", "software visualization"], ["data visualization", "statistical analysis"], ["data visualization", "statistical graphics"], ["data visualization", "visual analytics"], ["data visualization", "visual journalism"], ["data visualization", "warming stripes"], ["infographics", "a picture is worth a thousand words"], ["infographics", "argument map"], ["infographics", "charts"], ["infographics", "dashboards (management information systems)"], ["infographics", "data presentation architecture"], ["infographics", "data visualization"], ["infographics", "edugraphic"], ["infographics", "graphic design"], ["infographics", "graphic image development"], ["infographics", "graphic organizer"], ["infographics", "information design"], ["infographics", "scientific visualization"], ["infographics", "statistical graphics"], ["infographics", "technical illustration"], ["infographics", "isotype (picture language)"], ["infographics", "timeline"], ["infographics", "visualization (graphic)"], ["infographics", "news illustrated"], ["infographics", "maestro concept"], ["infographics", "family tree"], ["software visualization", "software maintenance"], ["software visualization", "software archaeology"], ["visual analytics", "cartography"], ["visual analytics", "computational visualistics"], ["visual analytics", "critical thinking"], ["visual analytics", "decision-making"], ["visual analytics", "interaction design"], ["visual analytics", "social network analysis software"], ["visual analytics", "software visualization"], ["visual analytics", "text analytics"], ["visual analytics", "visual reasoning"], ["baumslag–solitar group", "binary tiling"], ["binary tree", "2–3 tree"], ["binary tree", "2–3–4 tree"], ["binary tree", "aa tree"], ["binary tree", "avl tree"], ["binary tree", "b-tree"], ["binary tree", "binary space partitioning"], ["binary tree", "recursion (computer science)"], ["binary tree", "red–black tree"], ["binary tree", "splay tree"], ["binary tree", "unrooted binary tree"], ["einstein problem", "binary tiling"], ["decision-making", "adaptive performance"], ["decision-making", "argument map"], ["decision-making", "concept driven strategy"], ["decision-making", "decision quality"], ["decision-making", "free will"], ["decision-making", "idea networking"], ["decision-making", "rational choice theory"], ["social network analysis software", "comparison of research networking tools and research profiling systems"], ["social network analysis software", "social network"], ["social network analysis software", "social network analysis"], ["social network analysis software", "social networking"], ["charts", "comparison of adobe flex charts"], ["charts", "diagram"], ["charts", "table (information)"], ["charts", "drakon"], ["charts", "exploratory data analysis"], ["charts", "graphic organizer"], ["charts", "information graphics"], ["charts", "mathematical diagram"], ["charts", "official statistics"], ["charts", "plot (graphics)"], ["charts", "edward tufte"], ["charts", "misleading graph"], ["dashboards (management information systems)", "business activity monitoring"], ["dashboards (management information systems)", "complex event processing"], ["dashboards (management information systems)", "corporate performance management"], ["dashboards (management information systems)", "data presentation architecture"], ["dashboards (management information systems)", "enterprise manufacturing intelligence"], ["dashboards (management information systems)", "event stream processing"], ["dashboards (management information systems)", "infographic"], ["dashboards (management information systems)", "information design"], ["dashboards (management information systems)", "scientific visualization"], ["dashboards (management information systems)", "control panel (software)"], ["graphic design", "illustration"], ["graphic design", "information technology"], ["graphic design", "technical illustration"], ["graphic design", "user experience design"], ["graphic design", "infographic"], ["graphic design", "style guide"], ["graphic image development", "illustration"], ["graphic organizer", "diagram"], ["graphic organizer", "visualization (graphic)"], ["information design", "cartography"], ["information design", "chief experience officer"], ["information design", "content management"], ["information design", "epidemiology"], ["information design", "knowledge visualization"], ["information design", "signage"], ["information design", "statistics"], ["information design", "technical illustration"], ["information design", "wayfinding"], ["scientific visualization", "data presentation architecture"], ["scientific visualization", "data visualization"], ["scientific visualization", "mathematical visualization"], ["scientific visualization", "molecular graphics"], ["scientific visualization", "visual analytics"], ["statistical graphics", "data presentation architecture"], ["statistical graphics", "chart"], ["technical illustration", "information graphics"], ["isotype (picture language)", "data visualization"], ["isotype (picture language)", "information design"], ["isotype (picture language)", "information graphics"], ["analytics", "analysis"], ["analytics", "analytic applications"], ["analytics", "architectural analytics"], ["analytics", "behavioral analytics"], ["analytics", "business analytics"], ["analytics", "business intelligence"], ["analytics", "complex event processing"], ["analytics", "customer analytics"], ["analytics", "dashboard (business)"], ["analytics", "data mining"], ["analytics", "data presentation architecture"], ["analytics", "learning analytics"], ["analytics", "mobile location analytics"], ["analytics", "news analytics"], ["analytics", "online analytical processing"], ["analytics", "online video analytics"], ["analytics", "operational reporting"], ["analytics", "operations research"], ["analytics", "prediction"], ["analytics", "predictive analytics"], ["analytics", "predictive engineering analytics"], ["analytics", "prescriptive analytics"], ["analytics", "semantic analytics"], ["analytics", "smart grid"], ["analytics", "software analytics"], ["analytics", "speech analytics"], ["analytics", "statistics"], ["analytics", "user behavior analytics"], ["analytics", "visual analytics"], ["analytics", "web analytics"], ["business intelligence", "analytic applications"], ["business intelligence", "artificial intelligence marketing"], ["business intelligence", "business activity monitoring"], ["business intelligence", "business intelligence 2.0"], ["business intelligence", "business process discovery"], ["business intelligence", "business process management"], ["business intelligence", "customer dynamics"], ["business intelligence", "decision engineering"], ["business intelligence", "enterprise planning systems"], ["business intelligence", "integrated business planning"], ["business intelligence", "management information system"], ["business intelligence", "mobile business intelligence"], ["business intelligence", "operational intelligence"], ["business intelligence", "process mining"], ["business intelligence", "real-time business intelligence"], ["business intelligence", "sales intelligence"], ["business intelligence", "test and learn"], ["dashboard (business)", "business activity monitoring"], ["dashboard (business)", "complex event processing"], ["dashboard (business)", "corporate performance management"], ["dashboard (business)", "data presentation architecture"], ["dashboard (business)", "enterprise manufacturing intelligence"], ["dashboard (business)", "event stream processing"], ["dashboard (business)", "infographic"], ["dashboard (business)", "information design"], ["dashboard (business)", "scientific visualization"], ["dashboard (business)", "control panel (software)"], ["information architecture", "card sorting"], ["information architecture", "chief experience officer"], ["information architecture", "content management"], ["information architecture", "controlled vocabulary"], ["information architecture", "data management"], ["information architecture", "data presentation architecture"], ["information architecture", "digital humanities"], ["information architecture", "enterprise information security architecture"], ["information architecture", "faceted classification"], ["information architecture", "informatics"], ["information architecture", "interaction design"], ["information architecture", "process architecture"], ["information architecture", "tree testing"], ["information architecture", "user experience design"], ["information architecture", "wayfinding"], ["information architecture", "web graph"], ["false color", "nasa world wind"], ["false color", "imaginary colors"], ["false color", "hyperspectral imaging"], ["formal grammar", "abstract syntax tree"], ["formal grammar", "extended backus–naur form"], ["formal grammar", "shape grammar"], ["formal grammar", "well-formed formula"], ["hyperbolic manifold", "hyperbolic 3-manifold"], ["poincaré metric", "kleinian group"], ["saccheri quadrilateral", "lambert quadrilateral"], ["boolean domain", "boolean-valued function"], ["boolean-valued function", "boolean algebra (logic)"], ["boolean-valued function", "boolean domain"], ["boolean-valued function", "boolean logic"], ["boolean-valued function", "propositional calculus"], ["boolean-valued function", "truth table"], ["boolean-valued function", "indicator function"], ["boolean-valued function", "boolean function"], ["first-order logic", "extension (predicate logic)"], ["first-order logic", "higher-order logic"], ["first-order logic", "relational algebra"], ["first-order logic", "relational model"], ["first-order logic", "second-order logic"], ["first-order logic", "truth table"], ["first-order logic", "type (model theory)"], ["functional completeness", "algebra of sets"], ["functional completeness", "boolean algebra"], ["karnaugh maps", "algebraic normal form"], ["karnaugh maps", "binary decision diagram"], ["karnaugh maps", "espresso heuristic logic minimizer"], ["karnaugh maps", "logic optimization"], ["karnaugh maps", "punnett square"], ["karnaugh maps", "quine–mccluskey algorithm"], ["karnaugh maps", "reed–muller expansion"], ["karnaugh maps", "venn diagram"], ["karnaugh maps", "zhegalkin polynomial"], ["logic gate", "boolean algebra topics"], ["logic gate", "boolean function"], ["logic gate", "espresso heuristic logic minimizer"], ["logic gate", "functional completeness"], ["logic gate", "karnaugh map"], ["logic gate", "combinational logic"], ["logic gate", "logical graph"], ["logic gate", "propositional calculus"], ["logic gate", "truth table"], ["logical connective", "boolean domain"], ["logical connective", "boolean function"], ["logical connective", "boolean logic"], ["logical connective", "boolean-valued function"], ["logical connective", "four-valued logic"], ["logical connective", "logical constant"], ["logical connective", "modal operator"], ["logical connective", "propositional calculus"], ["logical connective", "truth function"], ["logical connective", "truth table"], ["logical connective", "truth value"], ["truth function", "bertrand russell"], ["truth function", "principia mathematica"], ["truth function", "bitwise operation"], ["truth function", "boolean domain"], ["truth function", "boolean function"], ["truth function", "boolean logic"], ["truth function", "boolean-valued function"], ["truth function", "logical connective"], ["truth function", "logical constant"], ["truth function", "modal operator"], ["truth function", "propositional calculus"], ["truth function", "truth table"], ["truth function", "truth value"], ["boolean function", "boolean-valued function"], ["boolean function", "algebra of sets"], ["boolean function", "decision tree model"], ["boolean function", "indicator function"], ["logical constant", "logical value"], ["logical constant", "logical connective"], ["truth value", "bayesian probability"], ["truth value", "false dilemma"], ["laws of form", "boolean algebra (logic)"], ["laws of form", "boolean algebra (structure)"], ["laws of form", "boolean algebras canonically defined"], ["laws of form", "boolean logic"], ["laws of form", "entitative graph"], ["laws of form", "existential graph"], ["laws of form", "propositional calculus"], ["karnaugh map", "algebraic normal form"], ["karnaugh map", "binary decision diagram"], ["karnaugh map", "espresso heuristic logic minimizer"], ["karnaugh map", "logic optimization"], ["karnaugh map", "punnett square"], ["karnaugh map", "quine–mccluskey algorithm"], ["karnaugh map", "reed–muller expansion"], ["karnaugh map", "venn diagram"], ["karnaugh map", "zhegalkin polynomial"], ["algebraic normal form", "reed–muller expansion"], ["algebraic normal form", "zhegalkin normal form"], ["algebraic normal form", "boolean function"], ["algebraic normal form", "logical graph"], ["algebraic normal form", "zhegalkin polynomial"], ["algebraic normal form", "karnaugh map"], ["binary decision diagram", "model checking"], ["binary decision diagram", "radix tree"], ["binary decision diagram", "karnaugh map"], ["logic optimization", "binary decision diagram"], ["punnett square", "karnaugh map"], ["reed–muller expansion", "algebraic normal form"], ["reed–muller expansion", "ring sum normal form"], ["reed–muller expansion", "zhegalkin normal form"], ["reed–muller expansion", "karnaugh map"], ["zhegalkin polynomial", "algebraic normal form"], ["zhegalkin polynomial", "ring sum normal form"], ["zhegalkin polynomial", "boolean domain"], ["zhegalkin polynomial", "boolean-valued function"], ["relational algebra", "cartesian product"], ["relational algebra", "d (data language specification)"], ["relational algebra", "database"], ["relational algebra", "logic of relatives"], ["relational algebra", "object-role modeling"], ["relational algebra", "projection (mathematics)"], ["relational algebra", "projection (relational algebra)"], ["relational algebra", "projection (set theory)"], ["relational algebra", "relation (mathematics)"], ["relational algebra", "relation (database)"], ["relational algebra", "relation algebra"], ["relational algebra", "relation composition"], ["relational algebra", "relation construction"], ["relational algebra", "relational calculus"], ["relational algebra", "relational database"], ["relational algebra", "relational model"], ["relational algebra", "theory of relations"], ["relational algebra", "triadic relation"], ["relational algebra", "tuple relational calculus"], ["relational algebra", "sql"], ["relational algebra", "datalog"], ["relational algebra", "codd's theorem"], ["sperner's lemma", "topological combinatorics"], ["discrete exterior calculus", "topological combinatorics"], ["combinatorial topology", "topological combinatorics"], ["combinatorial topology", "topological graph theory"], ["finite topological space", "topological combinatorics"], ["odds", "odds algorithm"], ["odds", "logistic regression"], ["odds", "optimal stopping"], ["clinical trial", "odds algorithm"], ["secretary problem", "assignment problem"], ["secretary problem", "odds algorithm"], ["secretary problem", "optimal stopping"], ["decision tree learning", "binary decision diagram"], ["decision tree learning", "predictive analytics"], ["decision tree learning", "decision stump"], ["decision tree learning", "adaboost"], ["decision tree learning", "decision list"], ["decision tree learning", "alternating decision tree"], ["decision tree learning", "structured data analysis (statistics)"], ["decision tree learning", "logistic model tree"], ["decision tree learning", "hierarchical clustering"], ["gradient boosting", "adaboost"], ["gradient boosting", "random forest"], ["gradient boosting", "decision tree learning"], ["non-parametric statistics", "resampling (statistics)"], ["markov chain approximation method", "control theory"], ["markov chain approximation method", "optimal control"], ["markov chain approximation method", "stochastic differential equation"], ["markov chain approximation method", "stochastic process"], ["markov decision process", "quantum finite automata"], ["markov decision process", "dynamic programming"], ["markov decision process", "optimal control"], ["markov random field", "graphical model"], ["markov random field", "hammersley–clifford theorem"], ["markov random field", "markov chain"], ["markov random field", "stochastic cellular automaton"], ["variable-order markov model", "examples of markov chains"], ["variable-order markov model", "markov process"], ["variable-order markov model", "markov chain monte carlo"], ["variable-order markov model", "semi-markov process"], ["variable-order markov model", "artificial intelligence"], ["goal structuring notation", "design rationale"], ["adaboost", "bootstrap aggregating"], ["adaboost", "coboosting"], ["adaboost", "brownboost"], ["adaboost", "gradient boosting"], ["bootstrap aggregating", "boosting (meta-algorithm)"], ["bootstrap aggregating", "bootstrapping (statistics)"], ["bootstrap aggregating", "cross-validation (statistics)"], ["bootstrap aggregating", "out-of-bag error"], ["bootstrap aggregating", "random forest"], ["bootstrap aggregating", "predictive analytics"], ["cascading classifiers", "boosting (meta-algorithm)"], ["cascading classifiers", "bootstrap aggregating"], ["brownboost", "boosting (machine learning)"], ["brownboost", "adaboost"], ["brownboost", "alternating decision tree"], ["principle of maximum entropy", "maximum entropy probability distribution"], ["principle of maximum entropy", "maximum entropy spectral estimation"], ["neural network", "adaptive resonance theory"], ["neural network", "cognitive architecture"], ["neural network", "cognitive science"], ["neural network", "deep learning"], ["neural network", "evolutionary algorithm"], ["neural network", "genetic algorithm"], ["neural network", "gene expression programming"], ["neural network", "in situ adaptive tabulation"], ["neural network", "multilinear subspace learning"], ["neural network", "predictive analytics"], ["neural network", "radial basis function network"], ["neural network", "simulated reality"], ["neural network", "support vector machine"], ["support vector machine", "in situ adaptive tabulation"], ["support vector machine", "predictive analytics"], ["support vector machine", "space mapping"], ["cross-validation (statistics)", "boosting (machine learning)"], ["cross-validation (statistics)", "bootstrap aggregating"], ["cross-validation (statistics)", "out-of-bag error"], ["cross-validation (statistics)", "bootstrapping (statistics)"], ["cross-validation (statistics)", "model selection"], ["cross-validation (statistics)", "resampling (statistics)"], ["decision stump", "decision list"], ["case based reasoning", "abductive reasoning"], ["case based reasoning", "commonsense reasoning"], ["case based reasoning", "decision tree"], ["case based reasoning", "genetic algorithm"], ["case based reasoning", "pattern matching"], ["case based reasoning", "analogy"], ["case based reasoning", "ripple down rules"], ["karnaugh-veitch diagram", "algebraic normal form"], ["karnaugh-veitch diagram", "binary decision diagram"], ["karnaugh-veitch diagram", "espresso heuristic logic minimizer"], ["karnaugh-veitch diagram", "logic optimization"], ["karnaugh-veitch diagram", "punnett square"], ["karnaugh-veitch diagram", "quine–mccluskey algorithm"], ["karnaugh-veitch diagram", "reed–muller expansion"], ["karnaugh-veitch diagram", "venn diagram"], ["karnaugh-veitch diagram", "zhegalkin polynomial"], ["many-valued logic", "degrees of truth"], ["many-valued logic", "fuzzy logic"], ["many-valued logic", "principle of bivalence"], ["many-valued logic", "false dilemma"], ["adaptive management", "decision cycle"], ["adaptive management", "ecology"], ["adaptive management", "learning cycle"], ["adaptive management", "operations research"], ["decisional balance sheet", "immunity to change"], ["decisional balance sheet", "issue mapping"], ["systems development lifecycle", "application lifecycle management"], ["systems development lifecycle", "decision cycle"], ["systems development lifecycle", "ipo model"], ["systems development lifecycle", "software development methodologies"], ["virtuous circle and vicious circle", "causal loop diagram"], ["virtuous circle and vicious circle", "positive feedback"], ["intelligence cycle", "decision cycle"], ["intelligence cycle", "learning cycle"], ["intelligence cycle", "ooda loop"], ["hybrid system", "sliding mode control"], ["subsumption architecture", "cognitive architecture"], ["multilinear subspace learning", "dimension reduction"], ["multilinear subspace learning", "tensor"], ["multilinear subspace learning", "tensor decomposition"], ["multilinear subspace learning", "tensor software"], ["risk analysis", "risk assessment"], ["risk analysis", "optimism bias"], ["risk analysis", "precautionary principle"], ["risk analysis", "risk management tools"], ["risk analysis", "reference class forecasting"], ["technology assessment", "horizon scanning"], ["technology assessment", "scientific lacuna"], ["technology assessment", "technology dynamics"], ["technology scouting", "futurology"], ["technology scouting", "horizon scanning"], ["technology scouting", "scientific lacuna"], ["eight disciplines problem solving", "corrective and preventive action"], ["eight disciplines problem solving", "failure mode and effects analysis"], ["eight disciplines problem solving", "fault tree analysis"], ["eight disciplines problem solving", "quality management system"], ["eight disciplines problem solving", "problem solving"], ["eight disciplines problem solving", "a3 problem solving"], ["five ws", "five whys"], ["why-because analysis", "accident"], ["why-because analysis", "cause–effect graph"], ["why-because analysis", "fault tree analysis"], ["why-because analysis", "five whys"], ["why-because analysis", "ishikawa diagram"], ["why-because analysis", "issue map"], ["why-because analysis", "issue tree"], ["why-because analysis", "root cause analysis"], ["corrective and preventive action", "eight disciplines problem solving"], ["corrective and preventive action", "good documentation practice"], ["corrective and preventive action", "good automated manufacturing practice"], ["logic of information", "charles sanders peirce bibliography"], ["logic of information", "information theory"], ["logic of information", "inquiry"], ["logic of information", "philosophy of information"], ["logic of information", "pragmatic theory of truth"], ["logic of information", "pragmaticism"], ["logic of information", "scientific method"], ["logic of information", "triadic relation"], ["news analytics", "computational linguistics"], ["news analytics", "text mining"], ["news analytics", "natural language processing"], ["ontology learning", "computational linguistics"], ["ontology learning", "ontology (computer science)"], ["ontology learning", "information extraction"], ["ontology learning", "natural language understanding"], ["ontology learning", "semantic web"], ["ontology learning", "text mining"], ["social networking", "collective intelligence"], ["social networking", "comparison of research networking tools and research profiling systems"], ["social networking", "enterprise bookmarking"], ["social networking", "internet"], ["social networking", "internet think tanks"], ["social networking", "lateral diffusion"], ["social networking", "mass collaboration"], ["social networking", "social software"], ["social networking", "social web"], ["comparison of word processors", "comparison of spreadsheet software"], ["comparison of word processors", "comparison of text editors"], ["comparison of word processors", "comparison of office suites"], ["comparison of word processors", "office suite"], ["comparison of word processors", "online office suite"], ["analysis", "methodology"], ["analysis", "scientific method"], ["online analytical processing", "comparison of olap servers"], ["polytely", "cognitive science"], ["polytely", "game theory"], ["polytely", "multi-agent system"], ["polytely", "network science"], ["polytely", "organizational studies"], ["polytely", "problem solving"], ["polytely", "systems theory"], ["html", "dynamic web page"], ["html", "microdata (html)"], ["html", "microformat"], ["learning analytics", "analytics"], ["learning analytics", "big data"], ["learning analytics", "data mining"], ["learning analytics", "educational data mining"], ["learning analytics", "machine learning"], ["learning analytics", "odds algorithm"], ["learning analytics", "pattern recognition"], ["learning analytics", "predictive analytics"], ["learning analytics", "social network analysis"], ["learning analytics", "text analytics"], ["learning analytics", "web analytics"], ["facilitation (business)", "decision conferencing"], ["facilitation (business)", "dialogue mapping"], ["computer-supported collaboration", "citizen science"], ["computer-supported collaboration", "collaborative information seeking"], ["computer-supported collaboration", "integrated collaboration environment"], ["computer-supported collaboration", "mass collaboration"], ["computer-supported collaboration", "wicked problem"], ["comparison of office suites", "comparison of word processors"], ["comparison of office suites", "comparison of spreadsheet software"], ["game theory", "applied ethics"], ["game theory", "precautionary principle"], ["game theory", "risk management"], ["game theory", "tragedy of the commons"], ["gratis versus libre", "gift economy"], ["comparison of user features of messaging platforms", "comparison of cross-platform instant messaging clients"], ["complex system", "biological organisation"], ["complex system", "chaos theory"], ["complex system", "cognitive science"], ["complex system", "complex adaptive system"], ["complex system", "complex networks"], ["complex system", "complexity economics"], ["complex system", "decision engineering"], ["complex system", "dissipative system"], ["complex system", "dual-phase evolution"], ["complex system", "dynamical system"], ["complex system", "dynamical systems theory"], ["complex system", "emergence"], ["complex system", "enterprise systems engineering"], ["complex system", "fractal"], ["complex system", "hierarchy theory"], ["complex system", "interdependent networks"], ["complex system", "multi-agent system"], ["complex system", "network science"], ["complex system", "percolation"], ["complex system", "percolation theory"], ["complex system", "process architecture"], ["complex system", "self-organization"], ["complex system", "sociology and complexity science"], ["complex system", "system accident"], ["complex system", "system dynamics"], ["complex system", "systems theory"], ["complex system", "tektology"], ["time series", "digital signal processing"], ["time series", "estimation theory"], ["time series", "forecasting"], ["time series", "monte carlo method"], ["time series", "signal processing"], ["time series", "trend estimation"], ["network topology", "computer network diagram"], ["network topology", "rhizome (philosophy)"], ["network topology", "tree structure"], ["conceptual schema", "concept mapping"], ["conceptual schema", "conceptual framework"], ["conceptual schema", "conceptual graphs"], ["conceptual schema", "conceptual model (computer science)"], ["conceptual schema", "data modeling"], ["conceptual schema", "entity-relationship model"], ["conceptual schema", "object-relationship modelling"], ["conceptual schema", "object-role modeling"], ["conceptual schema", "knowledge representation"], ["conceptual schema", "logical data model"], ["conceptual schema", "mindmap"], ["conceptual schema", "ontology (computer science)"], ["conceptual schema", "physical data model"], ["conceptual schema", "semantic web"], ["conceptual schema", "three schema approach"], ["information flow diagram", "access control matrix"], ["information flow diagram", "business process model and notation"], ["information flow diagram", "information cascade"], ["information flow diagram", "information systems"], ["information flow diagram", "niam"], ["information flow diagram", "object-role modeling"], ["information flow diagram", "system context diagram"], ["information flow diagram", "systems thinking"], ["ontology double articulation", "ontology modularization"], ["ontology engineering", "ontology (information science)"], ["ontology engineering", "ontology double articulation"], ["ontology engineering", "ontology learning"], ["ontology engineering", "ontology modularization"], ["ontology engineering", "semantic decision table"], ["ontology engineering", "semantic integration"], ["ontology engineering", "semantic technology"], ["ontology engineering", "semantic web"], ["ontology engineering", "linked data"], ["three schema approach", "conceptual schema"], ["three schema approach", "data model"], ["three schema approach", "data modeling"], ["three schema approach", "entity-relationship model"], ["three schema approach", "information systems"], ["three schema approach", "object-role modeling"], ["three schema approach", "view model"], ["corporate interlocks", "cartel"], ["corporate interlocks", "insider trading"], ["corporate interlocks", "oligarchy"], ["corporate interlocks", "price fixing"], ["corporate interlocks", "revolving door (politics)"], ["corporate interlocks", "social class"], ["diagram", "chart"], ["diagram", "table (information)"], ["diagram", "diagrammatic reasoning"], ["diagram", "experience model"], ["diagram", "mathematical diagram"], ["diagram", "plot (graphics)"], ["network science", "cascading failure"], ["network science", "climate as complex networks"], ["network science", "collaborative innovation network"], ["network science", "complex network"], ["network science", "core-periphery structure"], ["network science", "dual-phase evolution"], ["network science", "erdős–rényi model"], ["network science", "glossary of graph theory"], ["network science", "higher category theory"], ["network science", "irregular warfare"], ["network science", "interdependent networks"], ["network science", "network management"], ["network science", "network dynamics"], ["network science", "network theory in risk assessment"], ["network science", "network topology"], ["network science", "percolation"], ["network science", "percolation theory"], ["network science", "policy network analysis"], ["network science", "polytely"], ["network science", "quantum complex network"], ["network science", "random networks"], ["network science", "scale-free networks"], ["network science", "sequential dynamical system"], ["network science", "service network"], ["network science", "small-world networks"], ["network science", "structural cut-off"], ["network science", "systems theory"], ["social balance theory", "balance theory"], ["social balance theory", "sociogram"], ["sociomapping", "participatory rural appraisal"], ["sociomapping", "high-performance teams"], ["sociomapping", "human resources"], ["sociomapping", "marketing research"], ["sociomapping", "sociometry"], ["sociomapping", "team management"], ["sociometry", "psychodrama"], ["sociometry", "social interaction"], ["sociometry", "social status"], ["sociometry", "socionics"], ["psychodrama", "sociometry"], ["social interaction", "social isolation"], ["social interaction", "symbolic interactionism"], ["social interaction", "engaged theory"], ["social interaction", "social psychology"], ["social status", "power (social and political)"], ["social status", "ranked society"], ["social status", "social class"], ["social status", "social stratification"], ["socionics", "japhetic theory"], ["participatory rural appraisal", "problem structuring methods"], ["human resources", "human resource management"], ["human resources", "industrial and organizational psychology"], ["marketing research", "a/b testing"], ["marketing research", "knowledge management"], ["team management", "management"], ["team management", "socionics"], ["balance theory", "social balance theory"], ["cascading failure", "butterfly effect"], ["cascading failure", "chaos theory"], ["cascading failure", "network science"], ["cascading failure", "network theory"], ["cascading failure", "interdependent networks"], ["cascading failure", "percolation theory"], ["cascading failure", "virtuous circle and vicious circle"], ["cascading failure", "wicked problem"], ["climate as complex networks", "community structure"], ["climate as complex networks", "network theory"], ["climate as complex networks", "network science"], ["complex network", "community structure"], ["complex network", "complex adaptive system"], ["complex network", "complex systems"], ["complex network", "dual-phase evolution"], ["complex network", "dynamic network analysis"], ["complex network", "interdependent networks"], ["complex network", "network theory"], ["complex network", "network science"], ["complex network", "percolation theory"], ["complex network", "random graph"], ["complex network", "random graph theory of gelation"], ["complex network", "scale-free networks"], ["complex network", "spatial network"], ["interdependent networks", "cascading failure"], ["interdependent networks", "complex networks"], ["interdependent networks", "network science"], ["interdependent networks", "percolation theory"], ["network management", "integrated business planning"], ["network dynamics", "dynamic network analysis"], ["network dynamics", "neural network"], ["network dynamics", "gene regulatory network"], ["network dynamics", "dynamic bayesian network"], ["network dynamics", "dual-phase evolution"], ["network dynamics", "technology dynamics"], ["policy network analysis", "rational choice theory"], ["policy network analysis", "network science"], ["quantum complex network", "erdős–rényi model"], ["random networks", "ford–fulkerson algorithm"], ["random networks", "shortest path problem"], ["sequential dynamical system", "gene regulatory network"], ["sequential dynamical system", "dynamic bayesian network"], ["sequential dynamical system", "petri net"], ["service network", "enterprise 2.0"], ["structural cut-off", "complex network"], ["petri net", "process architecture"], ["integrated business planning", "business process modeling"], ["integrated business planning", "business reference model"], ["integrated business planning", "business intelligence"], ["chart", "comparison of adobe flex charts"], ["chart", "diagram"], ["chart", "table (information)"], ["chart", "drakon"], ["chart", "exploratory data analysis"], ["chart", "graphic organizer"], ["chart", "information graphics"], ["chart", "mathematical diagram"], ["chart", "official statistics"], ["chart", "plot (graphics)"], ["chart", "edward tufte"], ["chart", "misleading graph"], ["experience model", "customer experience"], ["experience model", "user experience"], ["experience model", "user experience design"], ["mathematical diagram", "category theory"], ["mathematical diagram", "mathematical visualization"], ["plot (graphics)", "chart"], ["plot (graphics)", "diagram"], ["plot (graphics)", "graph of a function"], ["plot (graphics)", "line chart"], ["cartel", "corporate group"], ["oligarchy", "netocracy"], ["oligarchy", "oligopoly"], ["price fixing", "oligopoly"], ["social class", "ranked society"], ["social class", "social stratification"], ["graph of a function", "chart"], ["abstract data type", "concept (generic programming)"], ["abstract data type", "formal methods"], ["abstract data type", "functional specification"], ["abstract data type", "generalized algebraic data type"], ["abstract data type", "initial algebra"], ["abstract data type", "liskov substitution principle"], ["abstract data type", "type theory"], ["column (database)", "column-oriented dbms"], ["column (database)", "column (data store)"], ["column (database)", "distributed data store"], ["column (database)", "row (database)"], ["column (database)", "sql"], ["column (database)", "query language"], ["information graphics", "a picture is worth a thousand words"], ["information graphics", "argument map"], ["information graphics", "charts"], ["information graphics", "dashboards (management information systems)"], ["information graphics", "data presentation architecture"], ["information graphics", "data visualization"], ["information graphics", "edugraphic"], ["information graphics", "graphic design"], ["information graphics", "graphic image development"], ["information graphics", "graphic organizer"], ["information graphics", "information design"], ["information graphics", "scientific visualization"], ["information graphics", "statistical graphics"], ["information graphics", "technical illustration"], ["information graphics", "isotype (picture language)"], ["information graphics", "timeline"], ["information graphics", "visualization (graphic)"], ["information graphics", "news illustrated"], ["information graphics", "maestro concept"], ["information graphics", "family tree"], ["row (database)", "column (database)"], ["table (database)", "relation (database)"], ["table (database)", "row (database)"], ["table (database)", "column (database)"], ["table (database)", "table (information)"], ["html element", "html attribute"], ["html element", "html"], ["tensor", "array data type"], ["tensor", "cartesian tensor"], ["tensor", "fibre bundle"], ["tensor", "multilinear subspace learning"], ["tensor", "one-form"], ["tensor", "tensor product of modules"], ["tensor", "application of tensor theory in engineering"], ["tensor", "continuum mechanics"], ["tensor", "covariant derivative"], ["tensor", "curvature"], ["tensor", "diffusion mri"], ["tensor", "einstein field equations"], ["tensor", "fluid mechanics"], ["tensor", "gravity"], ["tensor", "riemannian geometry"], ["tensor", "structure tensor"], ["tensor", "tensor decomposition"], ["tensor", "tensor derivative"], ["tensor", "tensor software"], ["dependent and independent variables", "abscissa and ordinate"], ["dependent and independent variables", "blocking (statistics)"], ["dependent and independent variables", "latent variable"], ["dependent and independent variables", "observable variable"], ["misleading graph", "chartjunk"], ["misleading graph", "impression management"], ["misleading graph", "misuse of statistics"], ["misleading graph", "simpson's paradox"], ["misleading graph", "how to lie with statistics"], ["comparison of research networking tools and research profiling systems", "social networking service"], ["social network", "bibliography of sociology"], ["social network", "blockmodeling"], ["social network", "network theory"], ["social network", "network science"], ["social network", "social network analysis"], ["social network", "social networking service"], ["social network", "social web"], ["data model", "core architecture data model"], ["data model", "data dictionary"], ["data modeling", "architectural pattern (computer science)"], ["data modeling", "comparison of data modeling tools"], ["data modeling", "data (computing)"], ["data modeling", "data dictionary"], ["data modeling", "enterprise data modeling"], ["data modeling", "entity data model"], ["data modeling", "information management"], ["data modeling", "metadata modeling"], ["data modeling", "three schema approach"], ["data modeling", "zachman framework"], ["entity-relationship model", "associative entity"], ["entity-relationship model", "concept map"], ["entity-relationship model", "database design"], ["entity-relationship model", "data structure diagram"], ["entity-relationship model", "enhanced entity–relationship model"], ["entity-relationship model", "enterprise architecture framework"], ["entity-relationship model", "entity data model"], ["entity-relationship model", "fundamental modeling concepts"], ["entity-relationship model", "comparison of data modeling tools"], ["entity-relationship model", "ontology (information science)"], ["entity-relationship model", "object-role modeling"], ["entity-relationship model", "three schema approach"], ["entity-relationship model", "structured entity relationship model"], ["entity-relationship model", "schema-agnostic databases"], ["information systems", "information management"], ["information systems", "human–computer interaction"], ["information systems", "informatics"], ["information systems", "bioinformatics"], ["information systems", "health informatics"], ["information systems", "cheminformatics"], ["information systems", "geoinformatics"], ["information systems", "information science"], ["information systems", "web science"], ["information systems", "management information system"], ["information systems", "library science"], ["information systems", "data modeling"], ["information systems", "database"], ["information systems", "metadata"], ["information systems", "semantic translation"], ["information systems", "three schema approach"], ["information systems", "enterprise information system"], ["view model", "enterprise architecture framework"], ["view model", "organizational architecture"], ["view model", "zachman framework"], ["view model", "ontology (information science)"], ["view model", "knowledge acquisition"], ["conceptual framework", "analogy"], ["conceptual framework", "inquiry"], ["conceptual framework", "conceptual model"], ["conceptual graphs", "alphabet of human thought"], ["conceptual graphs", "chunking (psychology)"], ["conceptual graphs", "resource description framework"], ["conceptual graphs", "sparql"], ["conceptual graphs", "semantic network"], ["object-relationship modelling", "comparison of object–relational mapping software"], ["object-relationship modelling", "autofetch"], ["object-relationship modelling", "common object request broker architecture"], ["object-relationship modelling", "object database"], ["object-relationship modelling", "object persistence"], ["object-relationship modelling", "object–relational database"], ["object-relationship modelling", "object–relational impedance mismatch"], ["object-relationship modelling", "relational model"], ["object-relationship modelling", "sql"], ["object-relationship modelling", "java data objects"], ["object-relationship modelling", "service data objects"], ["object-relationship modelling", "entity framework"], ["object-relationship modelling", "active record pattern"], ["object-relationship modelling", "data mapper pattern"], ["object-relationship modelling", "single table inheritance"], ["logical data model", "dodaf"], ["logical data model", "core architecture data model"], ["logical data model", "database design"], ["logical data model", "entity-relationship model"], ["logical data model", "database schema"], ["logical data model", "object-role modeling"], ["physical data model", "database schema"], ["physical data model", "logical data model"], ["enterprise architecture framework", "architectural pattern (computer science)"], ["enterprise architecture framework", "enterprise architecture"], ["enterprise architecture framework", "enterprise architecture planning"], ["cartesian product", "binary relation"], ["logic of relatives", "charles sanders peirce's type–token distinction"], ["logic of relatives", "continuous predicate"], ["logic of relatives", "entitative graph"], ["logic of relatives", "howland will forgery trial"], ["logic of relatives", "hypostatic abstraction"], ["logic of relatives", "laws of form"], ["logic of relatives", "logic of information"], ["logic of relatives", "logical machine"], ["logic of relatives", "logical matrix"], ["logic of relatives", "mathematical psychology"], ["logic of relatives", "peirce triangle"], ["logic of relatives", "peircean realism"], ["logic of relatives", "phaneron"], ["logic of relatives", "pragmatics"], ["logic of relatives", "relation algebra"], ["logic of relatives", "truth table"], ["logic of relatives", "oliver wendell holmes jr."], ["logic of relatives", "george herbert mead"], ["projection (relational algebra)", "projection (set theory)"], ["projection (set theory)", "cartesian product"], ["projection (set theory)", "projection (relational algebra)"], ["projection (set theory)", "projection (mathematics)"], ["projection (set theory)", "relation (mathematics)"], ["relation (mathematics)", "incidence structure"], ["relation (mathematics)", "logic of relatives"], ["relation (mathematics)", "order theory"], ["relation algebra", "algebraic logic"], ["relation algebra", "binary relation"], ["relation algebra", "cartesian product"], ["relation algebra", "extension (predicate logic)"], ["relation algebra", "logic of relatives"], ["relation algebra", "logical matrix"], ["relation algebra", "relation (mathematics)"], ["relation algebra", "relation construction"], ["relation algebra", "relational calculus"], ["relation algebra", "relational algebra"], ["relation algebra", "spatial-temporal reasoning"], ["relation algebra", "theory of relations"], ["relation algebra", "triadic relation"], ["relation construction", "projection (mathematics)"], ["relation construction", "relation (mathematics)"], ["relation construction", "relation composition"], ["relational database", "sql"], ["relational database", "object database"], ["relational database", "online analytical processing"], ["relational database", "data warehouse"], ["relational database", "star schema"], ["relational database", "snowflake schema"], ["relational database", "comparison of relational database management systems"], ["theory of relations", "incidence structure"], ["theory of relations", "hypergraph"], ["theory of relations", "logic of relatives"], ["theory of relations", "logical matrix"], ["theory of relations", "projection (set theory)"], ["theory of relations", "relation algebra"], ["theory of relations", "relational algebra"], ["theory of relations", "relational model"], ["tuple relational calculus", "relational algebra"], ["tuple relational calculus", "relational calculus"], ["tuple relational calculus", "domain relational calculus"], ["sql", "object database"], ["sql", "comparison of relational database management systems"], ["sql", "comparison of object–relational database management systems"], ["sql", "d (data language specification)"], ["sql", "online analytical processing"], ["sql", "data warehouse"], ["sql", "hierarchical database model"], ["sql", "star schema"], ["sql", "snowflake schema"], ["ontology modularization", "ontology double articulation"], ["business process model and notation", "drakon"], ["business process model and notation", "bpel"], ["business process model and notation", "business process management"], ["business process model and notation", "business process modeling"], ["business process model and notation", "comparison of business process model and notation modeling tools"], ["business process model and notation", "decision model and notation"], ["business process model and notation", "cmmn"], ["business process model and notation", "process driven messaging service"], ["business process model and notation", "event-driven process chain"], ["business process model and notation", "function model"], ["business process model and notation", "functional software architecture"], ["business process model and notation", "workflow"], ["business process model and notation", "workflow patterns"], ["business process model and notation", "service component architecture"], ["business process model and notation", "xpdl"], ["business process model and notation", "yawl"], ["information cascade", "groupthink"], ["information cascade", "agent-based computational economics"], ["niam", "concept map"], ["niam", "conceptual schema"], ["niam", "information flow diagram"], ["niam", "ontology double articulation"], ["niam", "ontology engineering"], ["niam", "relational algebra"], ["niam", "three schema approach"], ["system context diagram", "data flow diagram"], ["system context diagram", "information flow diagram"], ["system context diagram", "event partitioning"], ["system context diagram", "computer network diagram"], ["system context diagram", "requirements analysis"], ["system context diagram", "software development process"], ["system context diagram", "systems analysis"], ["data flow diagram", "activity diagram"], ["data flow diagram", "business process model and notation"], ["data flow diagram", "control-flow diagram"], ["data flow diagram", "data island"], ["data flow diagram", "dataflow"], ["data flow diagram", "directed acyclic graph"], ["data flow diagram", "drakon"], ["data flow diagram", "functional flow block diagram"], ["data flow diagram", "function model"], ["data flow diagram", "idef0"], ["data flow diagram", "pipeline (software)"], ["data flow diagram", "structured analysis and design technique"], ["data flow diagram", "structure chart"], ["data flow diagram", "system context diagram"], ["data flow diagram", "value-stream mapping"], ["data flow diagram", "workflow"], ["software development process", "systems development life cycle"], ["software development process", "computer-aided software engineering"], ["software development process", "project management"], ["software development process", "software development"], ["business process management", "business intelligence"], ["business process management", "business process automation"], ["business process management", "comparison of business integration software"], ["business process management", "enterprise planning systems"], ["business process management", "integrated business planning"], ["business process management", "process architecture"], ["business process management", "total quality management"], ["business process modeling", "business reference model"], ["business process modeling", "function model"], ["business process modeling", "organizational chart"], ["business process modeling", "data model"], ["business process modeling", "business analysis"], ["business process modeling", "business process reengineering"], ["business process modeling", "business process"], ["business process modeling", "business process management"], ["business process modeling", "management"], ["business process modeling", "holism"], ["event-driven process chain", "drakon"], ["event-driven process chain", "flowchart"], ["event-driven process chain", "petri net"], ["event-driven process chain", "process mining"], ["event-driven process chain", "workflow"], ["event-driven process chain", "event chain diagram"], ["function model", "business process modeling"], ["function model", "data model"], ["function model", "functional software architecture"], ["function model", "unified modeling language"], ["function model", "view model"], ["workflow", "business process automation"], ["workflow", "business process management"], ["workflow", "business process modeling"], ["workflow", "computer-supported collaboration"], ["workflow", "drakon"], ["workflow", "enterprise content management"], ["workflow", "process architecture"], ["workflow", "process-driven application"], ["workflow", "workflow engine"], ["workflow", "business process reengineering"], ["business semantics management", "business process management"], ["business semantics management", "conceptual schema"], ["business semantics management", "data integration"], ["business semantics management", "enterprise information integration"], ["business semantics management", "master data management"], ["business semantics management", "ontology"], ["business semantics management", "ontology double articulation"], ["semantic computing", "computational semantics"], ["semantic computing", "semantic compression"], ["semantic computing", "semantic technology"], ["data integration", "business semantics management"], ["data integration", "change data capture"], ["data integration", "core data integration"], ["data integration", "customer data integration"], ["data integration", "cyberinfrastructure"], ["data integration", "data blending"], ["data integration", "data curation"], ["data integration", "data fusion"], ["data integration", "data mapping"], ["data integration", "data wrangling"], ["data integration", "database model"], ["data integration", "dataspaces"], ["data integration", "edge data integration"], ["data integration", "enterprise application integration"], ["data integration", "enterprise architecture framework"], ["data integration", "enterprise information integration"], ["data integration", "enterprise integration"], ["data integration", "geodi"], ["data integration", "information integration"], ["data integration", "information server"], ["data integration", "information silo"], ["data integration", "integration competency center"], ["data integration", "integration consortium"], ["data integration", "jxta"], ["data integration", "master data management"], ["data integration", "object-relational mapping"], ["data integration", "open text"], ["data integration", "schema matching"], ["data integration", "three schema approach"], ["data integration", "udef"], ["data integration", "web data integration"], ["data integration", "web service"], ["dataspaces", "data mapping"], ["dataspaces", "data integration"], ["dataspaces", "semantic integration"], ["dataspaces", "information integration"], ["enterprise integration", "architecture of interoperable information systems"], ["enterprise integration", "integration consortium"], ["enterprise integration", "configuration management"], ["enterprise integration", "data integration"], ["enterprise integration", "enterprise application integration"], ["enterprise integration", "enterprise information integration"], ["enterprise integration", "enterprise integration patterns"], ["enterprise integration", "generalised enterprise reference architecture and methodology"], ["enterprise integration", "semantic integration"], ["enterprise integration", "semantic unification"], ["charles sanders peirce's type–token distinction", "class (philosophy)"], ["charles sanders peirce's type–token distinction", "type theory"], ["hypostatic abstraction", "abstraction"], ["hypostatic abstraction", "analogy"], ["hypostatic abstraction", "category theory"], ["hypostatic abstraction", "continuous predicate"], ["peircean realism", "applied ethics"], ["dodaf", "ideas group"], ["dodaf", "modaf meta-model"], ["project management", "agile construction"], ["project management", "architectural engineering"], ["project management", "construction management"], ["project management", "cost engineering"], ["project management", "facilitation (business)"], ["project management", "industrial engineering"], ["project management", "project production management"], ["project management", "project management software"], ["project management", "project portfolio management"], ["project management", "systems engineering"], ["project management", "collaborative project management"], ["project management", "decision-making"], ["project management", "game theory"], ["project management", "earned value management"], ["project management", "kanban (development)"], ["project management", "operations research"], ["project management", "process architecture"], ["project management", "program management"], ["project management", "project accounting"], ["project management", "project governance"], ["project management", "project management simulation"], ["project management", "software development process"], ["project management", "systems development life cycle"], ["project management", "comparison of project management software"], ["business process", "business analysis"], ["business process", "business process automation"], ["business process", "business process mapping"], ["three circles model", "venn diagram"], ["systems engineering", "arcadia (engineering)"], ["systems engineering", "control engineering"], ["systems engineering", "design review (u.s. government)"], ["systems engineering", "engineering management"], ["systems engineering", "enterprise systems engineering"], ["systems engineering", "industrial engineering"], ["systems engineering", "interdisciplinarity"], ["systems engineering", "management cybernetics"], ["systems engineering", "model-based systems engineering"], ["systems engineering", "operations management"], ["systems engineering", "structured systems analysis and design method"], ["systems engineering", "system of systems engineering"], ["systems engineering", "system accident"], ["systems engineering", "systems architecture"], ["systems engineering", "systems development life cycle"], ["systems engineering", "systems thinking"], ["systems engineering", "theory of constraints"], ["systems engineering", "value-stream mapping"], ["systems engineering", "system information modelling"], ["industrial engineering", "industrial revolution"], ["systems architecture", "arcadia (engineering)"], ["systems architecture", "architectural pattern (computer science)"], ["systems architecture", "department of defense architecture framework"], ["systems architecture", "enterprise architecture framework"], ["systems architecture", "enterprise information security architecture"], ["systems architecture", "process architecture"], ["systems architecture", "requirements analysis"], ["systems architecture", "software architecture"], ["systems architecture", "software engineering"], ["systems architecture", "systems analysis"], ["systems architecture", "systems engineering"], ["systems development life cycle", "application lifecycle management"], ["systems development life cycle", "decision cycle"], ["systems development life cycle", "ipo model"], ["systems development life cycle", "software development methodologies"], ["value-stream mapping", "business process mapping"], ["value-stream mapping", "lean manufacturing"], ["value-stream mapping", "value-stream-mapping software"], ["value-stream mapping", "value chain"], ["value-stream mapping", "value stream"], ["topincs", "topic maps"], ["topincs", "rapid application development"], ["topincs", "metamodeling"], ["unified modeling language", "applications of uml"], ["unified modeling language", "business process model and notation"], ["unified modeling language", "c4 model (software)"], ["unified modeling language", "model-based testing"], ["unified modeling language", "model-driven engineering"], ["unified modeling language", "object oriented role analysis and modeling"], ["unified modeling language", "systems modeling language"], ["unified modeling language", "dodaf"], ["unified modeling language", "modaf meta-model"], ["applications of uml", "unified modeling language"], ["c4 model (software)", "software architecture"], ["model-based testing", "domain-specific language"], ["model-based testing", "domain-specific modeling"], ["model-based testing", "model-driven architecture"], ["model-based testing", "model-driven engineering"], ["model-driven engineering", "application lifecycle management"], ["model-driven engineering", "business process model and notation"], ["model-driven engineering", "business-driven development"], ["model-driven engineering", "domain-specific language"], ["model-driven engineering", "domain-specific modeling"], ["model-driven engineering", "language-oriented programming"], ["model-driven engineering", "qvt"], ["model-driven engineering", "model-based testing"], ["model-driven engineering", "model-based systems engineering"], ["object oriented role analysis and modeling", "view model"], ["object oriented role analysis and modeling", "unified modeling language"], ["systems modeling language", "object process methodology"], ["rapid application development", "flow-based programming"], ["rapid application development", "lean software development"], ["metamodeling", "business reference model"], ["metamodeling", "data governance"], ["metamodeling", "model-driven engineering"], ["metamodeling", "model-driven architecture"], ["metamodeling", "domain-specific modeling"], ["metamodeling", "metadata"], ["metamodeling", "computer-aided software engineering"], ["metamodeling", "method engineering"], ["metamodeling", "modaf meta-model"], ["metamodeling", "qvt"], ["metamodeling", "object process methodology"], ["metamodeling", "requirements analysis"], ["metamodeling", "space mapping"], ["udef", "data integration"], ["udef", "iso/iec 11179"], ["udef", "national information exchange model"], ["udef", "metadata"], ["udef", "semantic web"], ["udef", "representation term"], ["udef", "controlled vocabulary"], ["change data capture", "slowly changing dimension"], ["core data integration", "data integration"], ["core data integration", "edge data integration"], ["customer data integration", "business semantics management"], ["customer data integration", "change data capture"], ["customer data integration", "core data integration"], ["customer data integration", "cyberinfrastructure"], ["customer data integration", "data blending"], ["customer data integration", "data curation"], ["customer data integration", "data fusion"], ["customer data integration", "data mapping"], ["customer data integration", "data wrangling"], ["customer data integration", "database model"], ["customer data integration", "dataspaces"], ["customer data integration", "edge data integration"], ["customer data integration", "enterprise application integration"], ["customer data integration", "enterprise architecture framework"], ["customer data integration", "enterprise information integration"], ["customer data integration", "enterprise integration"], ["customer data integration", "geodi"], ["customer data integration", "information integration"], ["customer data integration", "information server"], ["customer data integration", "information silo"], ["customer data integration", "integration competency center"], ["customer data integration", "integration consortium"], ["customer data integration", "jxta"], ["customer data integration", "master data management"], ["customer data integration", "object-relational mapping"], ["customer data integration", "open text"], ["customer data integration", "schema matching"], ["customer data integration", "three schema approach"], ["customer data integration", "udef"], ["customer data integration", "web data integration"], ["customer data integration", "web service"], ["data blending", "data preparation"], ["data blending", "data fusion"], ["data blending", "data wrangling"], ["data blending", "data cleansing"], ["data blending", "data editing"], ["data blending", "data curation"], ["data curation", "data wrangling"], ["data fusion", "data assimilation"], ["data fusion", "image fusion"], ["data fusion", "information integration"], ["data fusion", "sensor fusion"], ["data mapping", "data integration"], ["data mapping", "data wrangling"], ["data mapping", "iso/iec 11179"], ["data mapping", "metadata"], ["data mapping", "schema matching"], ["data mapping", "semantic heterogeneity"], ["data mapping", "semantic mapper"], ["data mapping", "semantic translation"], ["data mapping", "semantic web"], ["data mapping", "semantics"], ["data wrangling", "data preparation"], ["database model", "database design"], ["edge data integration", "core data integration"], ["edge data integration", "web 2.0"], ["enterprise application integration", "enterprise architecture framework"], ["enterprise application integration", "business semantics management"], ["enterprise application integration", "data integration"], ["enterprise application integration", "enterprise information integration"], ["enterprise application integration", "enterprise integration"], ["enterprise application integration", "enterprise integration patterns"], ["enterprise application integration", "generalised enterprise reference architecture and methodology"], ["enterprise application integration", "integration competency center"], ["enterprise application integration", "health level 7"], ["enterprise information integration", "business intelligence 2.0"], ["enterprise information integration", "data warehouse"], ["enterprise information integration", "enterprise integration"], ["enterprise information integration", "federated database system"], ["enterprise information integration", "resource description framework"], ["enterprise information integration", "semantic heterogeneity"], ["enterprise information integration", "semantic integration"], ["enterprise information integration", "semantic web"], ["enterprise information integration", "web 2.0"], ["information integration", "data fusion"], ["information integration", "sensor fusion"], ["information integration", "data integration"], ["information integration", "image fusion"], ["jxta", "peer-to-peer"], ["master data management", "business semantics management"], ["master data management", "customer data integration"], ["master data management", "data governance"], ["master data management", "data integration"], ["master data management", "data visualization"], ["master data management", "enterprise information integration"], ["master data management", "information management"], ["master data management", "linked data"], ["master data management", "record linkage"], ["master data management", "semantic web"], ["master data management", "web data integration"], ["object-relational mapping", "comparison of object–relational mapping software"], ["object-relational mapping", "autofetch"], ["object-relational mapping", "common object request broker architecture"], ["object-relational mapping", "object database"], ["object-relational mapping", "object persistence"], ["object-relational mapping", "object–relational database"], ["object-relational mapping", "object–relational impedance mismatch"], ["object-relational mapping", "relational model"], ["object-relational mapping", "sql"], ["object-relational mapping", "java data objects"], ["object-relational mapping", "service data objects"], ["object-relational mapping", "entity framework"], ["object-relational mapping", "active record pattern"], ["object-relational mapping", "data mapper pattern"], ["object-relational mapping", "single table inheritance"], ["schema matching", "data integration"], ["schema matching", "dataspaces"], ["schema matching", "federated database system"], ["schema matching", "minimal mappings"], ["schema matching", "ontology alignment"], ["web service", "middleware"], ["structured english", "natural language programming"], ["structured english", "self-documenting code"], ["structured english", "structured programming"], ["structured english", "pseudocode"], ["structured english", "decision tree"], ["structured english", "decision table"], ["structured english", "attempto controlled english"], ["control-flow graph", "abstract syntax tree"], ["control-flow graph", "flowchart"], ["control-flow graph", "control-flow diagram"], ["control-flow graph", "control-flow analysis"], ["control-flow graph", "data-flow analysis"], ["control-flow graph", "interval (graph theory)"], ["control-flow graph", "cyclomatic complexity"], ["control-flow graph", "compiler construction"], ["control-flow graph", "intermediate representation"], ["heat map", "false color"], ["contingency table", "confusion matrix"], ["contingency table", "pivot table"], ["contingency table", "iterative proportional fitting"], ["contingency table", "multivariate statistics"], ["contingency table", "olap cube"], ["abscissa and ordinate", "dependent and independent variables"], ["abscissa and ordinate", "relation (mathematics)"], ["abscissa and ordinate", "line chart"], ["blocking (statistics)", "combinatorial design"], ["blocking (statistics)", "dependent and independent variables"], ["blocking (statistics)", "blockmodeling"], ["latent variable", "dependent and independent variables"], ["latent variable", "latent variable model"], ["latent variable", "partial least squares path modeling"], ["latent variable", "partial least squares regression"], ["latent variable", "structural equation modeling"], ["observable variable", "latent variable model"], ["cartesian tensor", "tensor calculus"], ["fibre bundle", "principal bundle"], ["fibre bundle", "vector bundle"], ["one-form", "tensor"], ["continuum mechanics", "bernoulli's principle"], ["continuum mechanics", "tensor calculus"], ["continuum mechanics", "tensor derivative (continuum mechanics)"], ["covariant derivative", "affine connection"], ["covariant derivative", "christoffel symbols"], ["covariant derivative", "connection (algebraic framework)"], ["covariant derivative", "connection (mathematics)"], ["covariant derivative", "connection (vector bundle)"], ["covariant derivative", "connection form"], ["covariant derivative", "exterior covariant derivative"], ["covariant derivative", "gauge covariant derivative"], ["covariant derivative", "introduction to the mathematics of general relativity"], ["covariant derivative", "levi-civita connection"], ["covariant derivative", "parallel transport"], ["covariant derivative", "ricci calculus"], ["covariant derivative", "tensor derivative (continuum mechanics)"], ["curvature", "vector bundle"], ["curvature", "principal bundle"], ["curvature", "connection (mathematics)"], ["curvature", "principle of least action"], ["diffusion mri", "connectome"], ["einstein field equations", "ricci calculus"], ["fluid mechanics", "bernoulli's principle"], ["riemannian geometry", "systolic geometry"], ["structure tensor", "tensor"], ["tensor derivative", "affine connection"], ["tensor derivative", "christoffel symbols"], ["tensor derivative", "connection (algebraic framework)"], ["tensor derivative", "connection (mathematics)"], ["tensor derivative", "connection (vector bundle)"], ["tensor derivative", "connection form"], ["tensor derivative", "exterior covariant derivative"], ["tensor derivative", "gauge covariant derivative"], ["tensor derivative", "introduction to the mathematics of general relativity"], ["tensor derivative", "levi-civita connection"], ["tensor derivative", "parallel transport"], ["tensor derivative", "ricci calculus"], ["tensor derivative", "tensor derivative (continuum mechanics)"], ["html attribute", "html element"], ["column-oriented dbms", "data warehouse"], ["distributed data store", "data store"], ["distributed data store", "peer-to-peer"], ["formal methods", "abstract interpretation"], ["formal methods", "model checking"], ["formal methods", "software engineering"], ["functional specification", "benchmarking"], ["functional specification", "software development process"], ["functional specification", "specification (technical standard)"], ["type theory", "domain theory"], ["type theory", "type (model theory)"], ["complex event processing", "event stream processing"], ["complex event processing", "operational intelligence"], ["complex event processing", "pattern matching"], ["complex event processing", "real-time business intelligence"], ["complex event processing", "real-time computing"], ["pivot table", "business reporting"], ["pivot table", "comparison of office suites"], ["pivot table", "comparison of olap servers"], ["pivot table", "contingency table"], ["pivot table", "data drilling"], ["pivot table", "data mining"], ["pivot table", "data visualization"], ["pivot table", "data warehouse"], ["pivot table", "olap cube"], ["pivot table", "relational algebra"], ["iterative proportional fitting", "data cleansing"], ["iterative proportional fitting", "data editing"], ["olap cube", "business intelligence"], ["olap cube", "comparison of olap servers"], ["olap cube", "data mining"], ["statistical interference", "probabilistic design"], ["statistical interference", "process capability"], ["statistical interference", "reliability engineering"], ["statistical interference", "tolerance (engineering)"], ["chartjunk", "misleading graph"], ["chartjunk", "lexicography"], ["misuse of statistics", "deception"], ["misuse of statistics", "misleading graph"], ["misuse of statistics", "post hoc analysis"], ["misuse of statistics", "simpson's paradox"], ["anscombe's quartet", "exploratory data analysis"], ["anscombe's quartet", "goodness of fit"], ["anscombe's quartet", "simpson's paradox"], ["anscombe's quartet", "statistical model validation"], ["data dredging", "aliasing"], ["data dredging", "misuse of statistics"], ["data dredging", "overfitting"], ["data dredging", "post hoc analysis"], ["data dredging", "predictive analytics"], ["curve fitting", "estimation theory"], ["curve fitting", "function approximation"], ["curve fitting", "goodness of fit"], ["curve fitting", "levenberg–marquardt algorithm"], ["curve fitting", "line fitting"], ["curve fitting", "nonlinear regression"], ["curve fitting", "overfitting"], ["curve fitting", "plane curve"], ["curve fitting", "distribution fitting"], ["curve fitting", "smoothing"], ["curve fitting", "interpolating spline"], ["curve fitting", "smoothing spline"], ["curve fitting", "time series"], ["curve fitting", "total least squares"], ["curve fitting", "trend estimation"], ["estimation theory", "expectation-maximization algorithm"], ["estimation theory", "grey box model"], ["estimation theory", "information theory"], ["estimation theory", "maximum entropy spectral estimation"], ["estimation theory", "pareto principle"], ["estimation theory", "statistical signal processing"], ["function approximation", "fitness approximation"], ["function approximation", "radial basis function network"], ["goodness of fit", "generalized linear model"], ["goodness of fit", "overfitting"], ["goodness of fit", "statistical model validation"], ["line fitting", "regression dilution"], ["nonlinear regression", "curve fitting"], ["nonlinear regression", "generalized linear model"], ["nonlinear regression", "local regression"], ["overfitting", "curve fitting"], ["overfitting", "data dredging"], ["overfitting", "goodness of fit"], ["overfitting", "model selection"], ["overfitting", "occam's razor"], ["distribution fitting", "curve fitting"], ["distribution fitting", "density estimation"], ["distribution fitting", "mixture distribution"], ["distribution fitting", "product distribution"], ["smoothing", "convolution"], ["smoothing", "curve fitting"], ["smoothing", "discretization"], ["smoothing", "scale space"], ["smoothing", "smoothing spline"], ["smoothing", "statistical signal processing"], ["interpolating spline", "smoothing spline"], ["trend estimation", "forecasting"], ["trend estimation", "line fitting"], ["trend estimation", "regression analysis"], ["hyperspectral imaging", "sensor fusion"], ["enhanced metafile format", "postscript"], ["enhanced metafile format", "vector markup language"], ["enhanced metafile format", "scalable vector graphics"], ["ms powerpoint", "powerpoint karaoke"], ["ms powerpoint", "web-based slideshow"], ["data binning", "histogram"], ["data binning", "grouped data"], ["data binning", "level of measurement"], ["data binning", "quantization (signal processing)"], ["data binning", "discretization of continuous features"], ["kernel density estimation", "kernel (statistics)"], ["kernel density estimation", "kernel smoothing"], ["kernel density estimation", "kernel regression"], ["kernel density estimation", "density estimation"], ["kernel density estimation", "mean-shift"], ["kernel density estimation", "scale space"], ["kernel density estimation", "multivariate kernel density estimation"], ["kernel density estimation", "variable kernel density estimation"], ["image histogram", "curve (tonality)"], ["image histogram", "histogram equalization"], ["image histogram", "histogram matching"], ["image histogram", "image editing"], ["cumulative distribution function", "descriptive statistics"], ["cumulative distribution function", "distribution fitting"], ["pareto analysis", "pareto distribution"], ["pareto analysis", "pareto chart"], ["pareto analysis", "pareto interpolation"], ["pareto analysis", "ishikawa diagram"], ["pareto principle", "1% rule (internet culture)"], ["pareto principle", "10/90 gap"], ["pareto principle", "benford's law"], ["pareto principle", "diminishing returns"], ["pareto principle", "elephant flow"], ["pareto principle", "keystone species"], ["pareto principle", "long tail"], ["pareto principle", "matthew effect"], ["pareto principle", "mathematical economics"], ["pareto principle", "megadiverse countries"], ["pareto principle", "ninety-ninety rule"], ["pareto principle", "pareto distribution"], ["pareto principle", "parkinson's law"], ["pareto principle", "derek j. de solla price"], ["pareto principle", "principle of least effort"], ["pareto principle", "profit risk"], ["pareto principle", "rank-size distribution"], ["pareto principle", "sturgeon's law"], ["pareto principle", "vitality curve"], ["pareto principle", "wealth concentration"], ["pareto principle", "zipf's law"], ["statistical quality control", "distribution-free control chart"], ["statistical quality control", "process capability index"], ["statistical quality control", "quality assurance"], ["statistical quality control", "industrial engineering"], ["statistical quality control", "anova gauge r&r"], ["statistical quality control", "stochastic control"], ["statistical quality control", "electronic design automation"], ["statistical quality control", "process window index"], ["statistical quality control", "reliability engineering"], ["statistical quality control", "six sigma"], ["statistical quality control", "total quality management"], ["curve (tonality)", "image histogram"], ["histogram equalization", "histogram matching"], ["histogram matching", "histogram equalization"], ["histogram matching", "image histogram"], ["image editing", "computer graphics"], ["image editing", "image processing"], ["kernel (statistics)", "kernel density estimation"], ["kernel (statistics)", "kernel smoother"], ["kernel (statistics)", "density estimation"], ["kernel (statistics)", "multivariate kernel density estimation"], ["kernel smoothing", "kernel density estimation"], ["kernel smoothing", "local regression"], ["kernel smoothing", "kernel regression"], ["kernel regression", "kernel smoother"], ["kernel regression", "local regression"], ["mean-shift", "optics algorithm"], ["mean-shift", "kernel density estimation"], ["mean-shift", "kernel (statistics)"], ["multivariate kernel density estimation", "kernel density estimation"], ["multivariate kernel density estimation", "variable kernel density estimation"], ["generative model", "graphical model"], ["order statistic", "box plot"], ["order statistic", "rank-size distribution"], ["order statistic", "quantile"], ["order statistic", "descriptive statistics"], ["probability distribution fitting", "curve fitting"], ["probability distribution fitting", "density estimation"], ["probability distribution fitting", "mixture distribution"], ["probability distribution fitting", "product distribution"], ["grouped data", "aggregate data"], ["grouped data", "data binning"], ["grouped data", "level of measurement"], ["grouped data", "discretization of continuous features"], ["level of measurement", "set theory"], ["quantization (signal processing)", "data binning"], ["quantization (signal processing)", "discretization"], ["quantization (signal processing)", "quantile"], ["quantization (signal processing)", "regression dilution"], ["discretization of continuous features", "density estimation"], ["rank-size distribution", "pareto principle"], ["rank-size distribution", "long tail"], ["process capability index", "process (engineering)"], ["process capability index", "process capability"], ["quality assurance", "quality management system"], ["quality assurance", "software testing"], ["quality assurance", "verification and validation"], ["stochastic control", "stochastic process"], ["stochastic control", "control theory"], ["electronic design automation", "computer-aided design"], ["total quality management", "capability maturity model integration"], ["total quality management", "lean manufacturing"], ["total quality management", "malcolm baldrige national quality award"], ["total quality management", "people capability maturity model"], ["total quality management", "zero defects"], ["1% rule (internet culture)", "netocracy"], ["1% rule (internet culture)", "sturgeon's law"], ["10/90 gap", "pareto principle"], ["10/90 gap", "economic inequality"], ["benford's law", "predictive analytics"], ["benford's law", "zipf's law"], ["diminishing returns", "liebig's law of the minimum"], ["diminishing returns", "pareto efficiency"], ["diminishing returns", "teamwork"], ["elephant flow", "pareto principle"], ["long tail", "swarm intelligence"], ["matthew effect", "attention inequality"], ["matthew effect", "lindy effect"], ["matthew effect", "metcalfe's law"], ["matthew effect", "pareto distribution"], ["matthew effect", "positive feedback"], ["matthew effect", "preferential attachment"], ["matthew effect", "social network analysis"], ["matthew effect", "virtuous circle and vicious circle"], ["matthew effect", "wealth concentration"], ["mathematical economics", "econophysics"], ["ninety-ninety rule", "hofstadter's law"], ["ninety-ninety rule", "lindy effect"], ["ninety-ninety rule", "pareto principle"], ["pareto distribution", "bradford's law"], ["pareto distribution", "matthew effect"], ["pareto distribution", "pareto analysis"], ["pareto distribution", "pareto efficiency"], ["pareto distribution", "pareto interpolation"], ["pareto distribution", "sturgeon's law"], ["pareto distribution", "zipf's law"], ["parkinson's law", "hofstadter's law"], ["principle of least effort", "principle of least action"], ["principle of least effort", "pareto principle"], ["principle of least effort", "occam's razor"], ["principle of least effort", "preferential attachment"], ["profit risk", "pareto principle"], ["profit risk", "risk management"], ["sturgeon's law", "pareto distribution"], ["sturgeon's law", "pareto principle"], ["wealth concentration", "economic inequality"], ["zipf's law", "1% rule (internet culture)"], ["zipf's law", "benford's law"], ["zipf's law", "bradford's law"], ["zipf's law", "pareto distribution"], ["zipf's law", "pareto principle"], ["zipf's law", "principle of least effort"], ["zipf's law", "rank-size distribution"], ["zipf's law", "long tail"], ["common cause and special cause", "corrective and preventive action"], ["common cause and special cause", "nuclear safety"], ["common cause and special cause", "probabilistic risk assessment"], ["common cause and special cause", "statistical process control"], ["w. edwards deming", "analytic and enumerative statistical studies"], ["w. edwards deming", "common cause and special cause"], ["w. edwards deming", "continual improvement process"], ["w. edwards deming", "epistemology"], ["w. edwards deming", "joseph m. juran"], ["w. edwards deming", "kaizen"], ["w. edwards deming", "maestro concept"], ["w. edwards deming", "shewhart cycle"], ["w. edwards deming", "toyota production system"], ["process capability", "process (engineering)"], ["process capability", "control chart"], ["process capability", "corrective and preventative action"], ["process capability", "kurtosis"], ["process capability", "normal distribution"], ["process capability", "six sigma"], ["process capability", "statistical interference"], ["process capability", "statistical process control"], ["process capability", "tolerance (engineering)"], ["statistical process control", "distribution-free control chart"], ["statistical process control", "process capability index"], ["statistical process control", "quality assurance"], ["statistical process control", "industrial engineering"], ["statistical process control", "anova gauge r&r"], ["statistical process control", "stochastic control"], ["statistical process control", "electronic design automation"], ["statistical process control", "process window index"], ["statistical process control", "reliability engineering"], ["statistical process control", "six sigma"], ["statistical process control", "total quality management"], ["vector markup language", "scalable vector graphics"], ["scalable vector graphics", "computer graphics"], ["bar graph", "mw:extension:easytimeline"], ["bar graph", "enhanced metafile format"], ["bar graph", "ms powerpoint"], ["bar graph", "histogram"], ["bar graph", "misleading graph"], ["float (project management)", "critical path method"], ["gantt chart", "critical path method"], ["gantt chart", "event chain methodology"], ["gantt chart", "float (project management)"], ["gantt chart", "program evaluation and review technique"], ["gantt chart", "event chain diagram"], ["project planning", "cost overrun"], ["project planning", "enterprise resource planning"], ["project planning", "megaproject"], ["project planning", "operations research"], ["project planning", "prince2"], ["project planning", "project management institute"], ["project planning", "project plan"], ["project planning", "project stakeholders"], ["project planning", "scope creep"], ["program evaluation and review technique", "activity diagram"], ["program evaluation and review technique", "arrow diagramming method"], ["program evaluation and review technique", "critical chain project management"], ["program evaluation and review technique", "critical path method"], ["program evaluation and review technique", "float (project management)"], ["program evaluation and review technique", "gantt chart"], ["program evaluation and review technique", "precedence diagram method"], ["program evaluation and review technique", "project network"], ["program evaluation and review technique", "project management"], ["program evaluation and review technique", "project planning"], ["program evaluation and review technique", "triangular distribution"], ["program evaluation and review technique", "prince2"], ["activity diagram", "business process modeling notation"], ["activity diagram", "control-flow graph"], ["activity diagram", "data flow diagram"], ["activity diagram", "drakon"], ["activity diagram", "event-driven process chain"], ["activity diagram", "pseudocode"], ["activity diagram", "state diagram"], ["activity diagram", "flowchart"], ["arrow diagramming method", "precedence diagram method"], ["arrow diagramming method", "program evaluation and review technique"], ["critical chain project management", "theory of constraints"], ["critical chain project management", "event chain methodology"], ["critical path method", "gantt chart"], ["critical path method", "program evaluation and review technique"], ["critical path method", "critical chain project management"], ["critical path method", "liebig's law of the minimum"], ["critical path method", "project management"], ["critical path method", "project planning"], ["critical path method", "work breakdown structure"], ["project network", "bar chart"], ["project network", "float (project management)"], ["project network", "gantt chart"], ["project network", "project management"], ["project network", "project planning"], ["project network", "program evaluation and review technique"], ["triangular distribution", "three-point estimation"], ["triangular distribution", "five-number summary"], ["triangular distribution", "seven-number summary"], ["triangular distribution", "bates distribution"], ["prince2", "comparison of project-management software"], ["prince2", "gantt chart"], ["prince2", "work breakdown structure"], ["enterprise resource planning", "business process management"], ["megaproject", "reference class forecasting"], ["megaproject", "optimism bias"], ["project plan", "project planning"], ["scope creep", "anti-pattern"], ["scope creep", "cost overrun"], ["architectural engineering", "building officials"], ["architectural engineering", "civil engineering"], ["architectural engineering", "construction engineering"], ["architectural engineering", "international building code"], ["construction management", "architectural engineering"], ["construction management", "building officials"], ["construction management", "civil engineering"], ["construction management", "construction engineering"], ["construction management", "construction estimating software"], ["construction management", "cost overrun"], ["construction management", "cost engineering"], ["construction management", "international building code"], ["construction management", "work breakdown structure"], ["cost engineering", "construction management"], ["cost engineering", "construction estimating software"], ["cost engineering", "cost overrun"], ["cost engineering", "optimism bias"], ["cost engineering", "project management"], ["cost engineering", "reference class forecasting"], ["project management software", "calendaring software"], ["project management software", "comparison of project-management software"], ["project management software", "comparison of development estimation software"], ["project management software", "construction collaboration technology"], ["project management software", "program evaluation and review technique"], ["project management software", "project accounting"], ["project management software", "project management simulation"], ["project management software", "project planning"], ["project management software", "project portfolio management"], ["project management software", "workflow management system"], ["project portfolio management", "comparison of project-management software"], ["project portfolio management", "project management"], ["project portfolio management", "project management software"], ["project portfolio management", "project management simulation"], ["collaborative project management", "project management"], ["collaborative project management", "learning agenda"], ["collaborative project management", "teamwork"], ["earned value management", "critical chain project management"], ["kanban (development)", "lean software development"], ["process architecture", "complex system"], ["process architecture", "enterprise information security architecture"], ["process architecture", "flowchart"], ["process architecture", "information architecture"], ["process architecture", "method engineering"], ["process architecture", "petri net"], ["process architecture", "process calculus"], ["process architecture", "process engineering"], ["process architecture", "process management"], ["process architecture", "process modeling"], ["process architecture", "process theory"], ["process architecture", "system of systems"], ["process architecture", "systems architecture"], ["process architecture", "systems theory"], ["process architecture", "workflow"], ["program management", "cost overrun"], ["program management", "project management institute"], ["program management", "systems engineering"], ["program management", "comparison of project management software"], ["project accounting", "project management"], ["project accounting", "project management software"], ["project accounting", "project manager"], ["project governance", "cost overrun"], ["project management simulation", "project management"], ["project management simulation", "project manager"], ["comparison of project management software", "kanban (development)"], ["comparison of project management software", "project management"], ["comparison of project management software", "project planning"], ["comparison of project management software", "comparison of development estimation software"], ["comparison of project management software", "comparison of crm systems"], ["event chain methodology", "program evaluation and review technique"], ["event chain methodology", "project management"], ["event chain methodology", "project planning"], ["event chain methodology", "work breakdown structure"], ["event chain diagram", "gantt chart"], ["event chain diagram", "run chart"], ["enterprise information security architecture", "enterprise architecture"], ["enterprise information security architecture", "enterprise architecture planning"], ["process engineering", "industrial engineering"], ["process modeling", "model selection"], ["process modeling", "process architecture"], ["process modeling", "process calculus"], ["process modeling", "process ontology"], ["process theory", "process architecture"], ["system of systems", "model-based systems engineering"], ["system of systems", "enterprise systems engineering"], ["system of systems", "complex adaptive system"], ["system of systems", "systems architecture"], ["system of systems", "process architecture"], ["system of systems", "software architecture"], ["system of systems", "enterprise architecture"], ["system of systems", "department of defense architecture framework"], ["three-point estimation", "five-number summary"], ["three-point estimation", "seven-number summary"], ["three-point estimation", "program evaluation and review technique"], ["five-number summary", "seven-number summary"], ["five-number summary", "three-point estimation"], ["five-number summary", "box plot"], ["seven-number summary", "three-point estimation"], ["seven-number summary", "stanine"], ["business process modeling notation", "drakon"], ["business process modeling notation", "bpel"], ["business process modeling notation", "business process management"], ["business process modeling notation", "business process modeling"], ["business process modeling notation", "comparison of business process model and notation modeling tools"], ["business process modeling notation", "decision model and notation"], ["business process modeling notation", "cmmn"], ["business process modeling notation", "process driven messaging service"], ["business process modeling notation", "event-driven process chain"], ["business process modeling notation", "function model"], ["business process modeling notation", "functional software architecture"], ["business process modeling notation", "workflow"], ["business process modeling notation", "workflow patterns"], ["business process modeling notation", "service component architecture"], ["business process modeling notation", "xpdl"], ["business process modeling notation", "yawl"], ["pseudocode", "drakon"], ["pseudocode", "flowchart"], ["pseudocode", "literate programming"], ["pseudocode", "program design language"], ["pseudocode", "short code"], ["pseudocode", "structured english"], ["state diagram", "david harel"], ["state diagram", "drakon"], ["state diagram", "scxml"], ["state diagram", "uml state machine"], ["capability maturity model integration", "capability immaturity model"], ["capability maturity model integration", "capability maturity model"], ["capability maturity model integration", "people capability maturity model"], ["lean manufacturing", "a3 problem solving"], ["lean manufacturing", "industrial engineering"], ["lean manufacturing", "ishikawa diagram"], ["lean manufacturing", "operations management"], ["lean manufacturing", "ovsiankina effect"], ["lean manufacturing", "poka-yoke"], ["lean manufacturing", "production flow analysis"], ["lean manufacturing", "six sigma"], ["lean manufacturing", "theory of constraints"], ["lean manufacturing", "total productive maintenance"], ["lean manufacturing", "total quality management"], ["malcolm baldrige national quality award", "total quality management"], ["people capability maturity model", "capability maturity model"], ["people capability maturity model", "capability immaturity model"], ["people capability maturity model", "capability maturity model integration"], ["zero defects", "six sigma"], ["zero defects", "total quality management"], ["corrective and preventative action", "eight disciplines problem solving"], ["corrective and preventative action", "good documentation practice"], ["corrective and preventative action", "good automated manufacturing practice"], ["kurtosis", "maximum entropy probability distribution"], ["normal distribution", "bates distribution"], ["normal distribution", "convolution"], ["tolerance (engineering)", "probabilistic design"], ["tolerance (engineering)", "process capability"], ["tolerance (engineering)", "specification (technical standard)"], ["tolerance (engineering)", "statistical process control"], ["tolerance (engineering)", "verification and validation"], ["continual improvement process", "benchmarking"], ["continual improvement process", "lean manufacturing"], ["continual improvement process", "training within industry"], ["kaizen", "kanban (development)"], ["kaizen", "six sigma"], ["kaizen", "statistical process control"], ["kaizen", "theory of constraints"], ["kaizen", "total productive maintenance"], ["kaizen", "triz"], ["shewhart cycle", "decision cycle"], ["shewhart cycle", "lean manufacturing"], ["shewhart cycle", "learning cycle"], ["shewhart cycle", "ooda loop"], ["shewhart cycle", "six sigma"], ["shewhart cycle", "theory of constraints"], ["shewhart cycle", "software development process"], ["shewhart cycle", "intelligence cycle"], ["toyota production system", "w. edwards deming"], ["toyota production system", "training within industry"], ["toyota production system", "production flow analysis"], ["probabilistic risk assessment", "comparison of risk analysis microsoft excel add-ins"], ["probabilistic risk assessment", "reference class forecasting"], ["probabilistic risk assessment", "risk assessment"], ["probabilistic risk assessment", "risk management tools"], ["comparison of risk analysis microsoft excel add-ins", "spreadsheet"], ["comparison of risk analysis microsoft excel add-ins", "probability"], ["comparison of risk analysis microsoft excel add-ins", "plug-in (computing)"], ["fan chart (statistics)", "box plot"], ["functional boxplot", "box plot"], ["functional boxplot", "bagplot"], ["control-flow diagram", "data-flow diagram"], ["control-flow diagram", "control-flow graph"], ["control-flow diagram", "drakon"], ["control-flow diagram", "flow process chart"], ["deployment flowchart", "business process"], ["flow map", "flow diagram"], ["flow map", "thematic map"], ["functional flow block diagram", "activity diagram"], ["functional flow block diagram", "block diagram"], ["functional flow block diagram", "business process mapping"], ["functional flow block diagram", "dataflow"], ["functional flow block diagram", "drakon"], ["functional flow block diagram", "flow diagram"], ["functional flow block diagram", "flow process chart"], ["functional flow block diagram", "function model"], ["functional flow block diagram", "functional block diagram"], ["functional flow block diagram", "idef0"], ["functional flow block diagram", "n2 chart"], ["functional flow block diagram", "structured analysis and design technique"], ["functional flow block diagram", "signal flow"], ["functional flow block diagram", "signal-flow graph"], ["nassi–shneiderman diagram", "drakon"], ["nassi–shneiderman diagram", "flowchart"], ["nassi–shneiderman diagram", "pseudocode"], ["warnier/orr diagram", "structure chart"], ["warnier/orr diagram", "structured design"], ["warnier/orr diagram", "structured programming"], ["augmented transition network", "context free language"], ["augmented transition network", "finite state machine"], ["augmented transition network", "formal grammar"], ["augmented transition network", "parsing"], ["augmented transition network", "recursive transition network"], ["business process mapping", "business model canvas"], ["business process mapping", "business process discovery"], ["business process mapping", "business process modeling"], ["business process mapping", "drakon"], ["business process mapping", "ethnography"], ["business process mapping", "n2 chart"], ["business process mapping", "organizational studies"], ["business process mapping", "process-centered design"], ["business process mapping", "structured analysis and design technique"], ["business process mapping", "systems engineering"], ["business process mapping", "value stream mapping"], ["business process mapping", "workflow"], ["recursive transition network", "syntax diagram"], ["recursive transition network", "computational linguistics"], ["recursive transition network", "context free language"], ["recursive transition network", "finite state machine"], ["recursive transition network", "formal grammar"], ["recursive transition network", "parse tree"], ["recursive transition network", "parsing"], ["recursive transition network", "augmented transition network"], ["charles sanders peirce", "charles sanders peirce's type–token distinction"], ["charles sanders peirce", "continuous predicate"], ["charles sanders peirce", "entitative graph"], ["charles sanders peirce", "howland will forgery trial"], ["charles sanders peirce", "hypostatic abstraction"], ["charles sanders peirce", "laws of form"], ["charles sanders peirce", "logic of information"], ["charles sanders peirce", "logical machine"], ["charles sanders peirce", "logical matrix"], ["charles sanders peirce", "mathematical psychology"], ["charles sanders peirce", "peirce triangle"], ["charles sanders peirce", "peircean realism"], ["charles sanders peirce", "phaneron"], ["charles sanders peirce", "pragmatics"], ["charles sanders peirce", "relation algebra"], ["charles sanders peirce", "truth table"], ["charles sanders peirce", "oliver wendell holmes jr."], ["charles sanders peirce", "george herbert mead"], ["logical connectives", "boolean domain"], ["logical connectives", "boolean function"], ["logical connectives", "boolean logic"], ["logical connectives", "boolean-valued function"], ["logical connectives", "four-valued logic"], ["logical connectives", "logical constant"], ["logical connectives", "modal operator"], ["logical connectives", "propositional calculus"], ["logical connectives", "truth function"], ["logical connectives", "truth table"], ["logical connectives", "truth value"], ["marquand diagram", "algebraic normal form"], ["marquand diagram", "binary decision diagram"], ["marquand diagram", "espresso heuristic logic minimizer"], ["marquand diagram", "logic optimization"], ["marquand diagram", "punnett square"], ["marquand diagram", "quine–mccluskey algorithm"], ["marquand diagram", "reed–muller expansion"], ["marquand diagram", "venn diagram"], ["marquand diagram", "zhegalkin polynomial"], ["veitch chart", "algebraic normal form"], ["veitch chart", "binary decision diagram"], ["veitch chart", "espresso heuristic logic minimizer"], ["veitch chart", "logic optimization"], ["veitch chart", "punnett square"], ["veitch chart", "quine–mccluskey algorithm"], ["veitch chart", "reed–muller expansion"], ["veitch chart", "venn diagram"], ["veitch chart", "zhegalkin polynomial"], ["octahedron", "disdyakis dodecahedron"], ["octahedron", "octahedral molecular geometry"], ["octahedron", "octahedral symmetry"], ["octahedron", "octahedral sphere"], ["triquetra", "borromean rings"], ["triquetra", "celtic knot"], ["triquetra", "three hares"], ["triquetra", "trefoil knot"], ["triquetra", "triskelion"], ["vesica piscis", "flower of life (geometry)"], ["vesica piscis", "villarceau circles"], ["flower of life (geometry)", "knot theory"], ["villarceau circles", "vesica piscis"], ["celtic knot", "triquetra"], ["three hares", "borromean rings"], ["trefoil knot", "triquetra"], ["triskelion", "borromean rings"], ["triskelion", "celtic knot"], ["triskelion", "three hares"], ["triskelion", "triquetra"], ["ampheck", "bitwise operation"], ["ampheck", "boolean algebra (logic)"], ["ampheck", "boolean domain"], ["ampheck", "boolean function"], ["ampheck", "functional completeness"], ["ampheck", "propositional logic"], ["business process automation", "business-driven development"], ["business process automation", "business process model and notation"], ["business process automation", "business process reengineering"], ["business process automation", "business rules engine"], ["business process automation", "comparison of business integration software"], ["process-driven application", "business process automation"], ["process-driven application", "business process management"], ["process-driven application", "business process modeling"], ["process-driven application", "computer-supported collaboration"], ["process-driven application", "document automation"], ["process-driven application", "enterprise content management"], ["process-driven application", "process architecture"], ["process-driven application", "workflow"], ["process-driven application", "workflow engine"], ["process-driven application", "workflow management system"], ["workflow engine", "business rules engine"], ["workflow engine", "inference engine"], ["workflow engine", "ripple down rules"], ["workflow engine", "semantic reasoner"], ["workflow engine", "bpel"], ["workflow engine", "workflow management system"], ["business process reengineering", "business process management"], ["business process reengineering", "business process modeling notation"], ["business process reengineering", "kaizen"], ["business process reengineering", "learning agenda"], ["enterprise planning systems", "business intelligence"], ["enterprise planning systems", "business process management"], ["enterprise planning systems", "enterprise information system"], ["enterprise planning systems", "management information system"], ["syntax diagram", "recursive transition network"], ["syntax diagram", "extended backus–naur form"], ["finite state machine", "artificial intelligence"], ["finite state machine", "control system"], ["finite state machine", "decision table"], ["finite state machine", "hidden markov model"], ["finite state machine", "petri net"], ["finite state machine", "quantum finite automata"], ["finite state machine", "scxml"], ["finite state machine", "state diagram"], ["finite state machine", "uml state machine"], ["literate programming", "self-documenting code"], ["program design language", "pseudocode"], ["program design language", "flow chart"], ["short code", "algorithm"], ["structured programming", "drakon"], ["structured programming", "nassi–shneiderman diagram"], ["structured programming", "structure chart"], ["business model canvas", "business process modeling"], ["business model canvas", "business reference model"], ["business process discovery", "business process management"], ["business process discovery", "data mining"], ["business process discovery", "process analysis"], ["business process discovery", "process mining"], ["ethnography", "ontology"], ["n2 chart", "business process mapping"], ["n2 chart", "drakon"], ["n2 chart", "flow chart"], ["n2 chart", "function model"], ["n2 chart", "functional flow block diagram"], ["process-centered design", "business process"], ["process-centered design", "usability"], ["structured analysis and design technique", "idef0"], ["structured analysis and design technique", "jackson structured programming"], ["structured analysis and design technique", "structure chart"], ["structured analysis and design technique", "structured systems analysis and design method"], ["structured analysis and design technique", "systems analysis"], ["value stream mapping", "business process mapping"], ["value stream mapping", "lean manufacturing"], ["value stream mapping", "value-stream-mapping software"], ["value stream mapping", "value chain"], ["value stream mapping", "value stream"], ["process mining", "business process management"], ["process mining", "machine learning"], ["process mining", "data science"], ["process mining", "sequence mining"], ["process mining", "data mining"], ["process mining", "intention mining"], ["process mining", "data visualization"], ["process mining", "process analysis"], ["idef0", "function model"], ["idef0", "functional flow block diagram"], ["structure chart", "computer-aided software engineering"], ["structure chart", "system context diagram"], ["structure chart", "function model"], ["structure chart", "hipo"], ["structure chart", "structured analysis and design technique"], ["structure chart", "warnier/orr diagram"], ["structure chart", "work breakdown structure"], ["decision engineering", "antifragility"], ["decision engineering", "business intelligence"], ["decision engineering", "decision quality"], ["decision engineering", "design rationale"], ["decision engineering", "heuristics in judgment and decision-making"], ["structured design", "event partitioning"], ["structured design", "flow-based programming"], ["structured design", "hipo"], ["structured design", "jackson structured programming"], ["block diagram", "black box"], ["block diagram", "data flow diagram"], ["block diagram", "functional flow block diagram"], ["block diagram", "signal-flow graph"], ["dataflow", "complex event processing"], ["dataflow", "data flow diagram"], ["dataflow", "data-flow analysis"], ["dataflow", "flow-based programming"], ["dataflow", "pipeline (computing)"], ["flow diagram", "function model"], ["flow process chart", "business process mapping"], ["flow process chart", "data flow diagram"], ["flow process chart", "flowchart"], ["flow process chart", "functional flow block diagram"], ["flow process chart", "workflow"], ["functional block diagram", "function model"], ["functional block diagram", "functional flow block diagram"], ["pipeline (software)", "flow-based programming"], ["pipeline (software)", "pipeline (computing)"], ["pipeline (software)", "xml"], ["control-flow analysis", "control-flow diagram"], ["control-flow analysis", "data-flow analysis"], ["data-flow analysis", "abstract interpretation"], ["interval (graph theory)", "gallery of named graphs"], ["interval (graph theory)", "graph algorithms"], ["interval (graph theory)", "glossary of areas of mathematics"], ["cyclomatic complexity", "software engineering"], ["cyclomatic complexity", "software testing"], ["compiler construction", "abstract interpretation"], ["intermediate representation", "abstract syntax tree"], ["intermediate representation", "symbol table"], ["intermediate representation", "graph rewriting"], ["data-flow diagram", "activity diagram"], ["data-flow diagram", "business process model and notation"], ["data-flow diagram", "control-flow diagram"], ["data-flow diagram", "data island"], ["data-flow diagram", "dataflow"], ["data-flow diagram", "directed acyclic graph"], ["data-flow diagram", "drakon"], ["data-flow diagram", "functional flow block diagram"], ["data-flow diagram", "function model"], ["data-flow diagram", "idef0"], ["data-flow diagram", "pipeline (software)"], ["data-flow diagram", "structured analysis and design technique"], ["data-flow diagram", "structure chart"], ["data-flow diagram", "system context diagram"], ["data-flow diagram", "value-stream mapping"], ["data-flow diagram", "workflow"], ["power pivot", "microsoft excel"], ["power pivot", "power bi"], ["dot language", "lisp2dot"], ["dot language", "lisp (programming language)"], ["dot language", "genetic programming"], ["graphml", "yed"], ["graphml", "gephi"], ["graphml", "dot (graph description language)"], ["graphml", "boost (c++ libraries)"], ["graph modelling language", "graph query language"], ["graphviz", "graph drawing"], ["graphviz", "graph theory"], ["graphviz", "microsoft automatic graph layout"], ["tulip (software)", "graphviz"], ["tulip (software)", "cytoscape"], ["tulip (software)", "gephi"], ["networkx", "social network analysis software"], ["networkx", "jgraph"], ["nodexl", "graph drawing"], ["nodexl", "social network analysis software"], ["nodexl", "graphml"], ["nodexl", "geographic data files"], ["nodexl", "cytoscape"], ["nodexl", "gephi"], ["netminer", "social network analysis software"], ["netminer", "semantic network"], ["jgraph", "networkx"], ["jgraph", "graph (discrete mathematics)"], ["jgraph", "network theory"], ["protein–protein interaction prediction", "interactome"], ["protein–protein interaction prediction", "protein–protein interaction"], ["protein–protein interaction prediction", "macromolecular docking"], ["protein–protein interaction prediction", "protein–dna interaction site predictor"], ["protein–protein interaction prediction", "two-hybrid screening"], ["protein–protein interaction prediction", "protein structure prediction software"], ["microsoft automatic graph layout", "graph algorithms"], ["microsoft automatic graph layout", "graphviz"], ["dot (graph description language)", "lisp2dot"], ["dot (graph description language)", "lisp (programming language)"], ["dot (graph description language)", "genetic programming"], ["interactome", "bioinformatics"], ["interactome", "proteomics"], ["interactome", "genomics"], ["interactome", "biological network"], ["interactome", "connectome"], ["interactome", "glossary of graph theory"], ["interactome", "human interactome"], ["interactome", "mathematical biology"], ["interactome", "metabolic network"], ["interactome", "metabolic network modelling"], ["interactome", "metabolic pathway"], ["interactome", "network medicine"], ["interactome", "protein–protein interaction"], ["interactome", "systems biology"], ["protein–protein interaction", "biological network"], ["protein–protein interaction", "human interactome"], ["protein–protein interaction", "protein–protein interaction prediction"], ["protein–protein interaction", "systems biology"], ["protein–dna interaction site predictor", "protein–protein interaction prediction"], ["protein structure prediction software", "comparison of nucleic acid simulation software"], ["protein structure prediction software", "molecular design software"], ["lisp2dot", "graph drawing"], ["lisp2dot", "graph theory"], ["lisp2dot", "microsoft automatic graph layout"], ["comparison of spreadsheet software", "comparison of word processors"], ["numbers (spreadsheet)", "comparison of spreadsheet software"], ["numbers (spreadsheet)", "microsoft excel"], ["numbers (spreadsheet)", "keynote (presentation software)"], ["numbers (spreadsheet)", "pages (word processor)"], ["iwork", "comparison of office suites"], ["iwork", "office open xml software"], ["iwork", "icloud"], ["office open xml software", "network effect"], ["office open xml software", "office suite"], ["icloud", "comparison of file hosting services"], ["keynote (presentation software)", "iwork"], ["keynote (presentation software)", "office open xml software"], ["pages (word processor)", "comparison of word processors"], ["spreadsheet", "attribute-value system"], ["spreadsheet", "comparison of spreadsheet software"], ["probability", "heuristics in judgment and decision-making"], ["probability", "statistics"], ["probability", "estimation theory"], ["power bi", "power pivot"], ["power bi", "microsoft excel"], ["power bi", "sql server reporting services"], ["customer dynamics", "customer experience"], ["customer dynamics", "customer relationship management"], ["customer dynamics", "speech analytics"], ["mobile business intelligence", "business intelligence"], ["mobile business intelligence", "real-time business intelligence"], ["mobile business intelligence", "data mining"], ["mobile business intelligence", "online analytical processing"], ["mobile business intelligence", "predictive analytics"], ["mobile business intelligence", "dashboards (management information systems)"], ["real-time business intelligence", "business intelligence"], ["real-time business intelligence", "complex event processing"], ["sales intelligence", "analytics"], ["sales intelligence", "business intelligence 2.0"], ["sales intelligence", "dashboards (management information systems)"], ["sales intelligence", "integrated business planning"], ["sales intelligence", "operational intelligence"], ["sales intelligence", "ooda loop"], ["sales intelligence", "predictive analytics"], ["sales intelligence", "process mining"], ["test and learn", "clinical trials"], ["test and learn", "scientific method"], ["test and learn", "design of experiments"], ["test and learn", "business process reengineering"], ["test and learn", "a/b testing"], ["speech analytics", "customer intelligence"], ["speech analytics", "customer dynamics"], ["behavioral analytics", "analytics"], ["behavioral analytics", "big data"], ["behavioral analytics", "business intelligence"], ["behavioral analytics", "business process discovery"], ["behavioral analytics", "customer dynamics"], ["behavioral analytics", "data mining"], ["behavioral analytics", "test and learn"], ["business analytics", "business analysis"], ["business analytics", "business process discovery"], ["business analytics", "customer dynamics"], ["business analytics", "test and learn"], ["customer analytics", "business analytics"], ["customer analytics", "customer intelligence"], ["customer analytics", "data warehouse"], ["customer analytics", "customer data management"], ["mobile location analytics", "business intelligence"], ["mobile location analytics", "customer data management"], ["operational reporting", "business reporting"], ["prediction", "forecasting"], ["prediction", "futures studies"], ["prediction", "reference class forecasting"], ["prediction", "regression analysis"], ["prediction", "thought experiment"], ["prediction", "trend estimation"], ["predictive engineering analytics", "control system"], ["predictive engineering analytics", "internet of things"], ["prescriptive analytics", "analytics"], ["prescriptive analytics", "big data"], ["prescriptive analytics", "business analytics"], ["prescriptive analytics", "business intelligence"], ["prescriptive analytics", "data mining"], ["prescriptive analytics", "decision engineering"], ["prescriptive analytics", "forecasting"], ["prescriptive analytics", "operations research"], ["prescriptive analytics", "statistics"], ["smart grid", "smart city"], ["software analytics", "software maintenance"], ["software analytics", "software archaeology"], ["software analytics", "software development"], ["software analytics", "software development process"], ["software analytics", "user experience"], ["software analytics", "analytics"], ["user behavior analytics", "behavioral analytics"], ["web analytics", "online video analytics"], ["web analytics", "web mining"] ], "clusters": [ { "key": "0", "color": "#6c3e81", "clusterLabel": "Graph theory" }, { "key": "1", "color": "#666666", "clusterLabel": "Spreadsheets" }, { "key": "3", "color": "#57a835", "clusterLabel": "Logic of information" }, { "key": "4", "color": "#7145cd", "clusterLabel": "Trees and data structures" }, { "key": "5", "color": "#579f5f", "clusterLabel": "Business intelligence" }, { "key": "6", "color": "#d043c4", "clusterLabel": "Exploratory data analysis" }, { "key": "7", "color": "#477028", "clusterLabel": "Softwares and data mining" }, { "key": "8", "color": "#b174cb", "clusterLabel": "Project management" }, { "key": "10", "color": "#a4923a", "clusterLabel": "Engineering" }, { "key": "11", "color": "#5f83cc", "clusterLabel": "Semantic networks" }, { "key": "12", "color": "#666666", "clusterLabel": "Sociometry" }, { "key": "13", "color": "#666666", "clusterLabel": "Ideas and concepts" }, { "key": "14", "color": "#db4139", "clusterLabel": "Arguments / Logic" }, { "key": "15", "color": "#379982", "clusterLabel": "Scientific classification" }, { "key": "16", "color": "#666666", "clusterLabel": "Decision trees" }, { "key": "17", "color": "#666666", "clusterLabel": "Motion perception" }, { "key": "18", "color": "#c94c83", "clusterLabel": "Artificial intelligence" }, { "key": "19", "color": "#666666", "clusterLabel": "Linguistics" }, { "key": "20", "color": "#7c5d28", "clusterLabel": "Collaborative problem solving" }, { "key": "21", "color": "#a54a49", "clusterLabel": "Knowledge management" }, { "key": "22", "color": "#666666", "clusterLabel": "Clinical terms and technologies" }, { "key": "23", "color": "#cf7435", "clusterLabel": "Network Science" }, { "key": "25", "color": "#666666", "clusterLabel": "Knots" }, { "key": "24", "color": "#666666", "clusterLabel": "Tensors (mathematics)" } ], "tags": [ { "key": "Chart type", "image": "charttype.svg" }, { "key": "Company", "image": "company.svg" }, { "key": "Concept", "image": "concept.svg" }, { "key": "Field", "image": "field.svg" }, { "key": "List", "image": "list.svg" }, { "key": "Method", "image": "method.svg" }, { "key": "Organization", "image": "organization.svg" }, { "key": "Person", "image": "person.svg" }, { "key": "Technology", "image": "technology.svg" }, { "key": "Tool", "image": "tool.svg" }, { "key": "unknown", "image": "unknown.svg" } ] } ================================================ FILE: packages/demo/src/canvas-utils.ts ================================================ import { Settings } from "sigma/settings"; import { NodeDisplayData, PartialButFor, PlainObject } from "sigma/types"; const TEXT_COLOR = "#000000"; /** * This function draw in the input canvas 2D context a rectangle. * It only deals with tracing the path, and does not fill or stroke. */ export function drawRoundRect( ctx: CanvasRenderingContext2D, x: number, y: number, width: number, height: number, radius: number, ): void { ctx.beginPath(); ctx.moveTo(x + radius, y); ctx.lineTo(x + width - radius, y); ctx.quadraticCurveTo(x + width, y, x + width, y + radius); ctx.lineTo(x + width, y + height - radius); ctx.quadraticCurveTo(x + width, y + height, x + width - radius, y + height); ctx.lineTo(x + radius, y + height); ctx.quadraticCurveTo(x, y + height, x, y + height - radius); ctx.lineTo(x, y + radius); ctx.quadraticCurveTo(x, y, x + radius, y); ctx.closePath(); } /** * Custom hover renderer */ export function drawHover(context: CanvasRenderingContext2D, data: PlainObject, settings: PlainObject) { const size = settings.labelSize; const font = settings.labelFont; const weight = settings.labelWeight; const subLabelSize = size - 2; const label = data.label; const subLabel = data.tag !== "unknown" ? data.tag : ""; const clusterLabel = data.clusterLabel; // Then we draw the label background context.beginPath(); context.fillStyle = "#fff"; context.shadowOffsetX = 0; context.shadowOffsetY = 2; context.shadowBlur = 8; context.shadowColor = "#000"; context.font = `${weight} ${size}px ${font}`; const labelWidth = context.measureText(label).width; context.font = `${weight} ${subLabelSize}px ${font}`; const subLabelWidth = subLabel ? context.measureText(subLabel).width : 0; context.font = `${weight} ${subLabelSize}px ${font}`; const clusterLabelWidth = clusterLabel ? context.measureText(clusterLabel).width : 0; const textWidth = Math.max(labelWidth, subLabelWidth, clusterLabelWidth); const x = Math.round(data.x); const y = Math.round(data.y); const w = Math.round(textWidth + size / 2 + data.size + 3); const hLabel = Math.round(size / 2 + 4); const hSubLabel = subLabel ? Math.round(subLabelSize / 2 + 9) : 0; const hClusterLabel = Math.round(subLabelSize / 2 + 9); drawRoundRect(context, x, y - hSubLabel - 12, w, hClusterLabel + hLabel + hSubLabel + 12, 5); context.closePath(); context.fill(); context.shadowOffsetX = 0; context.shadowOffsetY = 0; context.shadowBlur = 0; // And finally we draw the labels context.fillStyle = TEXT_COLOR; context.font = `${weight} ${size}px ${font}`; context.fillText(label, data.x + data.size + 3, data.y + size / 3); if (subLabel) { context.fillStyle = TEXT_COLOR; context.font = `${weight} ${subLabelSize}px ${font}`; context.fillText(subLabel, data.x + data.size + 3, data.y - (2 * size) / 3 - 2); } context.fillStyle = data.color; context.font = `${weight} ${subLabelSize}px ${font}`; context.fillText(clusterLabel, data.x + data.size + 3, data.y + size / 3 + 3 + subLabelSize); } /** * Custom label renderer */ export function drawLabel( context: CanvasRenderingContext2D, data: PartialButFor, settings: Settings, ): void { if (!data.label) return; const size = settings.labelSize, font = settings.labelFont, weight = settings.labelWeight; context.font = `${weight} ${size}px ${font}`; const width = context.measureText(data.label).width + 8; context.fillStyle = "#ffffffcc"; context.fillRect(data.x + data.size, data.y + size / 3 - 15, width, 20); context.fillStyle = "#000"; context.fillText(data.label, data.x + data.size + 3, data.y + size / 3); } ================================================ FILE: packages/demo/src/index.tsx ================================================ import React from "react"; import ReactDOM from "react-dom/client"; import "./styles.css"; import Root from "./views/Root"; const root = ReactDOM.createRoot(document.getElementById("root") as HTMLElement); root.render( , ); ================================================ FILE: packages/demo/src/styles.css ================================================ @import url("https://fonts.googleapis.com/css2?family=Lora&family=Public+Sans:ital@0;1&display=swap"); /** * VARIABLES: * ********** */ :root { --ruby: #e22653; --grey: #999; --dark-grey: #666; --light-grey: #ccc; --cream: #f9f7ed; --transparent-white: #ffffffcc; --transition: all ease-out 300ms; --shadow: 0 1px 5px var(--dark-grey); --hover-opacity: 0.7; --stage-padding: 8px; --panels-width: 350px; --border-radius: 3px; } /** * BASE STYLES: * ************ */ body { font-family: "Public Sans", sans-serif; font-size: 0.9em; overflow: hidden; } h1, h2 { font-family: Lora, serif; } h2 { font-size: 1.3em; margin: 0; } h2 > * { vertical-align: text-top; } a { color: black !important; } a:hover { opacity: var(--hover-opacity); } /** * LAYOUT: * ******* */ body { margin: 0; padding: 0; } #root { width: 100vw; height: 100vh; position: relative; } #app-root, .sigma-container { background: white; position: absolute; inset: 0; } .controls { position: absolute; bottom: var(--stage-padding); left: var(--stage-padding); } .graph-title { z-index: 1; position: absolute; top: 0; left: 0; display: flex; flex-direction: column; align-items: flex-start; max-width: calc(100vw - var(--panels-width) - 3 * var(--stage-padding)); padding: var(--stage-padding); } .graph-title h1 { font-size: 1.8em; } .graph-title h1, .graph-title h2 { margin: 0; background: var(--transparent-white); } .panels { position: absolute; bottom: 0; right: 0; width: 350px; max-height: calc(100vh - 2 * var(--stage-padding)); overflow-y: auto; padding: var(--stage-padding); scrollbar-width: thin; } ::-webkit-scrollbar { width: 5px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background-color: var(--grey); border: transparent; } /** * USEFUL CLASSES: * *************** */ div.ico { --sigma-controls-size: 2rem; } div.ico > button { display: block; position: relative; font-size: 1.8em; width: 2em; height: 2em; border-radius: var(--border-radius); box-shadow: var(--shadow); color: black; background: white; border: none; outline: none; margin-top: 0.2em; cursor: pointer; } div.ico > button:hover { color: var(--dark-grey); } div.ico > button > * { position: absolute; inset: 0; left: 50%; top: 50%; transform: translate(-50%, -50%); } button.btn { background: white; color: black; border: 1px solid black; outline: none; border-radius: var(--border-radius); padding: 0.3em 0.5em; font-size: 1em; font-family: Lato, sans-serif; cursor: pointer; } button.btn:hover { opacity: var(--hover-opacity); } button.btn > * { vertical-align: baseline; } .buttons { display: flex; justify-content: space-between; } ul { list-style: none; padding: 0; } ul > li { margin-top: 0.2em; } .text-muted { color: var(--dark-grey); } .text-small { font-size: 0.7em; vertical-align: baseline; } .mouse-pointer { cursor: pointer; } /** * CAPTIONS PANELS: * **************** */ .panel { background: white; padding: 1em; border-radius: var(--border-radius); box-shadow: var(--shadow); } .panel:not(:last-child) { margin-bottom: 0.5em; } .panel h2 button { float: right; background: white; border: 1px solid black; border-radius: var(--border-radius); font-size: 1.2em; height: 1em; width: 1em; text-align: center; padding: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; } .panel h2 button:hover { opacity: var(--hover-opacity); } .caption-row input[type="checkbox"] { display: none; } .caption-row input[type="checkbox"]:not(:checked) + label { color: var(--dark-grey); } .caption-row input[type="checkbox"]:not(:checked) + label .circle { background-color: white !important; } .caption-row label { display: flex; flex-direction: row; cursor: pointer; } .caption-row label:hover { opacity: var(--hover-opacity); } .caption-row label .circle { flex-shrink: 0; display: inline-block; width: 1.2em; height: 1.2em; border-radius: 1.2em; vertical-align: middle; box-sizing: border-box; background-color: var(--dark-grey); background-position: center; background-size: cover; background-repeat: no-repeat; margin-right: 0.2em; transition: var(--transition); border: 3px solid var(--dark-grey); } .caption-row label .node-label { flex-grow: 1; } .caption-row label .bar { position: relative; background: var(--light-grey); height: 3px; margin-bottom: 0.2em; } .caption-row label .bar .inside-bar { position: absolute; top: 0; left: 0; height: 100%; background: var(--dark-grey); transition: var(--transition); } /** * SEARCH FIELD: * ************* */ .search-wrapper { position: relative; } .search-wrapper > input[type="search"] { width: calc(100%); height: 3em; box-shadow: var(--shadow); border: none; outline: none; border-radius: var(--border-radius); margin-bottom: 0.5em; padding: 1em 1em 1em 3em; font-family: Lato, sans-serif; font-size: 1em; } .search-wrapper > .icon { position: absolute; width: 1em; height: 1em; top: 1em; left: 1em; } /** * RESPONSIVENESS: * *************** */ @media (max-width: 767.98px) { #app-root:not(.show-contents) .contents, #app-root.show-contents .controls { display: none; } #app-root.show-contents .contents { position: absolute; inset: 0; overflow-y: auto; scrollbar-width: thin; background: var(--transparent-white); } #app-root.show-contents .graph-title, #app-root.show-contents .panels { height: auto; max-height: unset; max-width: unset; position: static; overflow-y: visible; width: auto; } #app-root.show-contents .graph-title { background: white; padding-right: calc(3em + 2 * var(--stage-padding)); min-height: 3em; } #app-root.show-contents .contents .hide-contents { position: absolute; top: var(--stage-padding); right: var(--stage-padding); } } @media (min-width: 768px) { button.show-contents, button.hide-contents { display: none !important; } } ================================================ FILE: packages/demo/src/types.ts ================================================ export interface NodeData { key: string; label: string; tag: string; URL: string; cluster: string; x: number; y: number; } export interface Cluster { key: string; color: string; clusterLabel: string; } export interface Tag { key: string; image: string; } export interface Dataset { nodes: NodeData[]; edges: [string, string][]; clusters: Cluster[]; tags: Tag[]; } export interface FiltersState { clusters: Record; tags: Record; } ================================================ FILE: packages/demo/src/use-debounce.ts ================================================ import { useEffect, useState } from "react"; function useDebounce(value: T, delay: number): T { // State and setters for debounced value const [debouncedValue, setDebouncedValue] = useState(value); useEffect( () => { // Update debounced value after delay const handler = setTimeout(() => { if (value !== debouncedValue) setDebouncedValue(value); }, delay); // Cancel the timeout if value changes (also on delay change or unmount) // This is how we prevent debounced value from updating if value is changed ... // .. within the delay period. Timeout gets cleared and restarted. return () => { clearTimeout(handler); }; }, [value, delay], // Only re-call effect if value or delay changes ); return debouncedValue; } export default useDebounce; ================================================ FILE: packages/demo/src/views/ClustersPanel.tsx ================================================ import { useSigma } from "@react-sigma/core"; import { keyBy, mapValues, sortBy, values } from "lodash"; import { FC, useEffect, useMemo, useState } from "react"; import { AiOutlineCheckCircle, AiOutlineCloseCircle } from "react-icons/ai"; import { MdGroupWork } from "react-icons/md"; import { Cluster, FiltersState } from "../types"; import Panel from "./Panel"; const ClustersPanel: FC<{ clusters: Cluster[]; filters: FiltersState; toggleCluster: (cluster: string) => void; setClusters: (clusters: Record) => void; }> = ({ clusters, filters, toggleCluster, setClusters }) => { const sigma = useSigma(); const graph = sigma.getGraph(); const nodesPerCluster = useMemo(() => { const index: Record = {}; graph.forEachNode((_, { cluster }) => (index[cluster] = (index[cluster] || 0) + 1)); return index; }, []); const maxNodesPerCluster = useMemo(() => Math.max(...values(nodesPerCluster)), [nodesPerCluster]); const visibleClustersCount = useMemo(() => Object.keys(filters.clusters).length, [filters]); const [visibleNodesPerCluster, setVisibleNodesPerCluster] = useState>(nodesPerCluster); useEffect(() => { // To ensure the graphology instance has up to data "hidden" values for // nodes, we wait for next frame before reindexing. This won't matter in the // UX, because of the visible nodes bar width transition. requestAnimationFrame(() => { const index: Record = {}; graph.forEachNode((_, { cluster, hidden }) => !hidden && (index[cluster] = (index[cluster] || 0) + 1)); setVisibleNodesPerCluster(index); }); }, [filters]); const sortedClusters = useMemo( () => sortBy(clusters, (cluster) => -nodesPerCluster[cluster.key]), [clusters, nodesPerCluster], ); return ( Clusters {visibleClustersCount < clusters.length ? ( {" "} ({visibleClustersCount} / {clusters.length}) ) : ( "" )} } >

Click a cluster to show/hide related pages from the network.

{" "}

    {sortedClusters.map((cluster) => { const nodesCount = nodesPerCluster[cluster.key]; const visibleNodesCount = visibleNodesPerCluster[cluster.key] || 0; return (
  • 1 ? "s" : ""}${ visibleNodesCount !== nodesCount ? visibleNodesCount > 0 ? ` (only ${visibleNodesCount > 1 ? `${visibleNodesCount} are` : "one is"} visible)` : " (all hidden)" : "" }`} > toggleCluster(cluster.key)} id={`cluster-${cluster.key}`} />
  • ); })}
); }; export default ClustersPanel; ================================================ FILE: packages/demo/src/views/DescriptionPanel.tsx ================================================ import { FC } from "react"; import { BsInfoCircle } from "react-icons/bs"; import Panel from "./Panel"; const DescriptionPanel: FC = () => { return ( Description } >

This map represents a network of Wikipedia articles around the topic of "Data visualisation". Each{" "} node represents an article, and each edge a{" "} "See also" link .

The seed articles were selected by hand by the{" "} Sciences-Po médialab {" "} team, and the network was crawled using{" "} Seealsology , and then cleaned and enriched manually. This makes the dataset creditable to both the médialab team and{" "} Wikipedia editors .

This web application has been developed by{" "} OuestWare , using{" "} react {" "} and{" "} sigma.js . You can read the source code{" "} on GitHub .

Nodes sizes are related to their{" "} betweenness centrality . More central nodes (ie. bigger nodes) are important crossing points in the network. Finally, You can click a node to open the related Wikipedia article.

); }; export default DescriptionPanel; ================================================ FILE: packages/demo/src/views/GraphDataController.tsx ================================================ import { useSigma } from "@react-sigma/core"; import { FC, PropsWithChildren, useEffect } from "react"; import { FiltersState } from "../types"; const GraphDataController: FC> = ({ filters, children }) => { const sigma = useSigma(); const graph = sigma.getGraph(); /** * Apply filters to graphology: */ useEffect(() => { const { clusters, tags } = filters; graph.forEachNode((node, { cluster, tag }) => graph.setNodeAttribute(node, "hidden", !clusters[cluster] || !tags[tag]), ); }, [graph, filters]); return <>{children}; }; export default GraphDataController; ================================================ FILE: packages/demo/src/views/GraphEventsController.tsx ================================================ import { useRegisterEvents, useSigma } from "@react-sigma/core"; import { FC, PropsWithChildren, useEffect } from "react"; function getMouseLayer() { return document.querySelector(".sigma-mouse"); } const GraphEventsController: FC void }>> = ({ setHoveredNode, children, }) => { const sigma = useSigma(); const graph = sigma.getGraph(); const registerEvents = useRegisterEvents(); /** * Initialize here settings that require to know the graph and/or the sigma * instance: */ useEffect(() => { registerEvents({ clickNode({ node }) { if (!graph.getNodeAttribute(node, "hidden")) { window.open(graph.getNodeAttribute(node, "URL"), "_blank"); } }, enterNode({ node }) { setHoveredNode(node); // TODO: Find a better way to get the DOM mouse layer: const mouseLayer = getMouseLayer(); if (mouseLayer) mouseLayer.classList.add("mouse-pointer"); }, leaveNode() { setHoveredNode(null); // TODO: Find a better way to get the DOM mouse layer: const mouseLayer = getMouseLayer(); if (mouseLayer) mouseLayer.classList.remove("mouse-pointer"); }, }); }, []); return <>{children}; }; export default GraphEventsController; ================================================ FILE: packages/demo/src/views/GraphSettingsController.tsx ================================================ import { useSetSettings, useSigma } from "@react-sigma/core"; import { Attributes } from "graphology-types"; import { FC, PropsWithChildren, useEffect } from "react"; import { drawHover, drawLabel } from "../canvas-utils"; import useDebounce from "../use-debounce"; const NODE_FADE_COLOR = "#bbb"; const EDGE_FADE_COLOR = "#eee"; const GraphSettingsController: FC> = ({ children, hoveredNode }) => { const sigma = useSigma(); const setSettings = useSetSettings(); const graph = sigma.getGraph(); // Here we debounce the value to avoid having too much highlights refresh when // moving the mouse over the graph: const debouncedHoveredNode = useDebounce(hoveredNode, 40); /** * Initialize here settings that require to know the graph and/or the sigma * instance: */ useEffect(() => { const hoveredColor: string = (debouncedHoveredNode && sigma.getNodeDisplayData(debouncedHoveredNode)?.color) || ""; setSettings({ defaultDrawNodeLabel: drawLabel, defaultDrawNodeHover: drawHover, nodeReducer: (node: string, data: Attributes) => { if (debouncedHoveredNode) { return node === debouncedHoveredNode || graph.hasEdge(node, debouncedHoveredNode) || graph.hasEdge(debouncedHoveredNode, node) ? { ...data, zIndex: 1 } : { ...data, zIndex: 0, label: "", color: NODE_FADE_COLOR, image: null, highlighted: false }; } return data; }, edgeReducer: (edge: string, data: Attributes) => { if (debouncedHoveredNode) { return graph.hasExtremity(edge, debouncedHoveredNode) ? { ...data, color: hoveredColor, size: 4 } : { ...data, color: EDGE_FADE_COLOR, hidden: true }; } return data; }, }); }, [sigma, graph, debouncedHoveredNode]); /** * Update node and edge reducers when a node is hovered, to highlight its * neighborhood: */ useEffect(() => { const hoveredColor: string = (debouncedHoveredNode && sigma.getNodeDisplayData(debouncedHoveredNode)?.color) || ""; sigma.setSetting( "nodeReducer", debouncedHoveredNode ? (node, data) => node === debouncedHoveredNode || graph.hasEdge(node, debouncedHoveredNode) || graph.hasEdge(debouncedHoveredNode, node) ? { ...data, zIndex: 1 } : { ...data, zIndex: 0, label: "", color: NODE_FADE_COLOR, image: null, highlighted: false } : null, ); sigma.setSetting( "edgeReducer", debouncedHoveredNode ? (edge, data) => graph.hasExtremity(edge, debouncedHoveredNode) ? { ...data, color: hoveredColor, size: 4 } : { ...data, color: EDGE_FADE_COLOR, hidden: true } : null, ); }, [debouncedHoveredNode]); return <>{children}; }; export default GraphSettingsController; ================================================ FILE: packages/demo/src/views/GraphTitle.tsx ================================================ import { useSigma } from "@react-sigma/core"; import { FC, useEffect, useState } from "react"; import { FiltersState } from "../types"; function prettyPercentage(val: number): string { return (val * 100).toFixed(1) + "%"; } const GraphTitle: FC<{ filters: FiltersState }> = ({ filters }) => { const sigma = useSigma(); const graph = sigma.getGraph(); const [visibleItems, setVisibleItems] = useState<{ nodes: number; edges: number }>({ nodes: 0, edges: 0 }); useEffect(() => { // To ensure the graphology instance has up to data "hidden" values for // nodes, we wait for next frame before reindexing. This won't matter in the // UX, because of the visible nodes bar width transition. requestAnimationFrame(() => { const index = { nodes: 0, edges: 0 }; graph.forEachNode((_, { hidden }) => !hidden && index.nodes++); graph.forEachEdge((_, _2, _3, _4, source, target) => !source.hidden && !target.hidden && index.edges++); setVisibleItems(index); }); }, [filters]); return (

A cartography of Wikipedia pages around data visualization

{graph.order} node{graph.order > 1 ? "s" : ""}{" "} {visibleItems.nodes !== graph.order ? ` (only ${prettyPercentage(visibleItems.nodes / graph.order)} visible)` : ""} , {graph.size} edge {graph.size > 1 ? "s" : ""}{" "} {visibleItems.edges !== graph.size ? ` (only ${prettyPercentage(visibleItems.edges / graph.size)} visible)` : ""}

); }; export default GraphTitle; ================================================ FILE: packages/demo/src/views/Panel.tsx ================================================ import { FC, PropsWithChildren, ReactNode, useEffect, useRef, useState } from "react"; import AnimateHeight from "react-animate-height"; import { MdExpandLess, MdExpandMore } from "react-icons/md"; const DURATION = 300; const Panel: FC> = ({ title, initiallyDeployed, children, }) => { const [isDeployed, setIsDeployed] = useState(initiallyDeployed || false); const dom = useRef(null); useEffect(() => { if (isDeployed) setTimeout(() => { if (dom.current) dom.current.parentElement?.scrollTo({ top: dom.current.offsetTop - 5, behavior: "smooth" }); }, DURATION); }, [isDeployed]); return (

{title}{" "}

{children}
); }; export default Panel; ================================================ FILE: packages/demo/src/views/Root.tsx ================================================ import { FullScreenControl, SigmaContainer, ZoomControl } from "@react-sigma/core"; import { createNodeImageProgram } from "@sigma/node-image"; import { DirectedGraph } from "graphology"; import { constant, keyBy, mapValues, omit } from "lodash"; import { FC, useEffect, useMemo, useState } from "react"; import { BiBookContent, BiRadioCircleMarked } from "react-icons/bi"; import { BsArrowsFullscreen, BsFullscreenExit, BsZoomIn, BsZoomOut } from "react-icons/bs"; import { GrClose } from "react-icons/gr"; import { Settings } from "sigma/settings"; import { drawHover, drawLabel } from "../canvas-utils"; import { Dataset, FiltersState } from "../types"; import ClustersPanel from "./ClustersPanel"; import DescriptionPanel from "./DescriptionPanel"; import GraphDataController from "./GraphDataController"; import GraphEventsController from "./GraphEventsController"; import GraphSettingsController from "./GraphSettingsController"; import GraphTitle from "./GraphTitle"; import SearchField from "./SearchField"; import TagsPanel from "./TagsPanel"; const Root: FC = () => { const graph = useMemo(() => new DirectedGraph(), []); const [showContents, setShowContents] = useState(false); const [dataReady, setDataReady] = useState(false); const [dataset, setDataset] = useState(null); const [filtersState, setFiltersState] = useState({ clusters: {}, tags: {}, }); const [hoveredNode, setHoveredNode] = useState(null); const sigmaSettings: Partial = useMemo( () => ({ nodeProgramClasses: { image: createNodeImageProgram({ size: { mode: "force", value: 256 }, }), }, defaultDrawNodeLabel: drawLabel, defaultDrawNodeHover: drawHover, defaultNodeType: "image", defaultEdgeType: "arrow", labelDensity: 0.07, labelGridCellSize: 60, labelRenderedSizeThreshold: 15, labelFont: "Lato, sans-serif", zIndex: true, }), [], ); // Load data on mount: useEffect(() => { fetch(`./dataset.json`) .then((res) => res.json()) .then((dataset: Dataset) => { const clusters = keyBy(dataset.clusters, "key"); const tags = keyBy(dataset.tags, "key"); dataset.nodes.forEach((node) => graph.addNode(node.key, { ...node, ...omit(clusters[node.cluster], "key"), image: `./images/${tags[node.tag].image}`, }), ); dataset.edges.forEach(([source, target]) => graph.addEdge(source, target, { size: 1 })); // Use degrees as node sizes: const scores = graph.nodes().map((node) => graph.getNodeAttribute(node, "score")); const minDegree = Math.min(...scores); const maxDegree = Math.max(...scores); const MIN_NODE_SIZE = 3; const MAX_NODE_SIZE = 30; graph.forEachNode((node) => graph.setNodeAttribute( node, "size", ((graph.getNodeAttribute(node, "score") - minDegree) / (maxDegree - minDegree)) * (MAX_NODE_SIZE - MIN_NODE_SIZE) + MIN_NODE_SIZE, ), ); setFiltersState({ clusters: mapValues(keyBy(dataset.clusters, "key"), constant(true)), tags: mapValues(keyBy(dataset.tags, "key"), constant(true)), }); setDataset(dataset); requestAnimationFrame(() => setDataReady(true)); }); }, []); if (!dataset) return null; return (
{dataReady && ( <>
setFiltersState((filters) => ({ ...filters, clusters, })) } toggleCluster={(cluster) => { setFiltersState((filters) => ({ ...filters, clusters: filters.clusters[cluster] ? omit(filters.clusters, cluster) : { ...filters.clusters, [cluster]: true }, })); }} /> setFiltersState((filters) => ({ ...filters, tags, })) } toggleTag={(tag) => { setFiltersState((filters) => ({ ...filters, tags: filters.tags[tag] ? omit(filters.tags, tag) : { ...filters.tags, [tag]: true }, })); }} />
)}
); }; export default Root; ================================================ FILE: packages/demo/src/views/SearchField.tsx ================================================ import { useSigma } from "@react-sigma/core"; import { Attributes } from "graphology-types"; import { ChangeEvent, FC, KeyboardEvent, useEffect, useState } from "react"; import { BsSearch } from "react-icons/bs"; import { FiltersState } from "../types"; /** * This component is basically a fork from @react-sigma/core's SearchControl * component, to get some minor adjustments: * 1. We need to hide hidden nodes from results * 2. We need custom markup */ const SearchField: FC<{ filters: FiltersState }> = ({ filters }) => { const sigma = useSigma(); const [search, setSearch] = useState(""); const [values, setValues] = useState>([]); const [selected, setSelected] = useState(null); const refreshValues = () => { const newValues: Array<{ id: string; label: string }> = []; const lcSearch = search.toLowerCase(); if (!selected && search.length > 1) { sigma.getGraph().forEachNode((key: string, attributes: Attributes): void => { if (!attributes.hidden && attributes.label && attributes.label.toLowerCase().indexOf(lcSearch) === 0) newValues.push({ id: key, label: attributes.label }); }); } setValues(newValues); }; // Refresh values when search is updated: useEffect(() => refreshValues(), [search]); // Refresh values when filters are updated (but wait a frame first): useEffect(() => { requestAnimationFrame(refreshValues); }, [filters]); useEffect(() => { if (!selected) return; sigma.getGraph().setNodeAttribute(selected, "highlighted", true); const nodeDisplayData = sigma.getNodeDisplayData(selected); if (nodeDisplayData) sigma.getCamera().animate( { ...nodeDisplayData, ratio: 0.05 }, { duration: 600, }, ); return () => { sigma.getGraph().setNodeAttribute(selected, "highlighted", false); }; }, [selected]); const onInputChange = (e: ChangeEvent) => { const searchString = e.target.value; const valueItem = values.find((value) => value.label === searchString); if (valueItem) { setSearch(valueItem.label); setValues([]); setSelected(valueItem.id); } else { setSelected(null); setSearch(searchString); } }; const onKeyPress = (e: KeyboardEvent) => { if (e.key === "Enter" && values.length) { setSearch(values[0].label); setSelected(values[0].id); } }; return (
{values.map((value: { id: string; label: string }) => ( ))}
); }; export default SearchField; ================================================ FILE: packages/demo/src/views/TagsPanel.tsx ================================================ import { useSigma } from "@react-sigma/core"; import { keyBy, mapValues, sortBy, values } from "lodash"; import { FC, useEffect, useMemo, useState } from "react"; import { AiOutlineCheckCircle, AiOutlineCloseCircle } from "react-icons/ai"; import { MdCategory } from "react-icons/md"; import { FiltersState, Tag } from "../types"; import Panel from "./Panel"; const TagsPanel: FC<{ tags: Tag[]; filters: FiltersState; toggleTag: (tag: string) => void; setTags: (tags: Record) => void; }> = ({ tags, filters, toggleTag, setTags }) => { const sigma = useSigma(); const graph = sigma.getGraph(); const nodesPerTag = useMemo(() => { const index: Record = {}; graph.forEachNode((_, { tag }) => (index[tag] = (index[tag] || 0) + 1)); return index; }, []); const maxNodesPerTag = useMemo(() => Math.max(...values(nodesPerTag)), [nodesPerTag]); const visibleTagsCount = useMemo(() => Object.keys(filters.tags).length, [filters]); const [visibleNodesPerTag, setVisibleNodesPerTag] = useState>(nodesPerTag); useEffect(() => { // To ensure the graphology instance has up to date "hidden" values for // nodes, we wait for next frame before reindexing. This won't matter in the // UX, because of the visible nodes bar width transition. requestAnimationFrame(() => { const index: Record = {}; graph.forEachNode((_, { tag, hidden }) => !hidden && (index[tag] = (index[tag] || 0) + 1)); setVisibleNodesPerTag(index); }); }, [filters]); const sortedTags = useMemo( () => sortBy(tags, (tag) => (tag.key === "unknown" ? Infinity : -nodesPerTag[tag.key])), [tags, nodesPerTag], ); return ( Categories {visibleTagsCount < tags.length ? ( {" "} ({visibleTagsCount} / {tags.length}) ) : ( "" )} } >

Click a category to show/hide related pages from the network.

{" "}

    {sortedTags.map((tag) => { const nodesCount = nodesPerTag[tag.key]; const visibleNodesCount = visibleNodesPerTag[tag.key] || 0; return (
  • 1 ? "s" : ""}${ visibleNodesCount !== nodesCount ? visibleNodesCount > 0 ? ` (only ${visibleNodesCount > 1 ? `${visibleNodesCount} are` : "one is"} visible)` : " (all hidden)" : "" }`} > toggleTag(tag.key)} id={`tag-${tag.key}`} />
  • ); })}
); }; export default TagsPanel; ================================================ FILE: packages/demo/tsconfig.json ================================================ { "extends": "../../tsconfig.base.json", "compileOnSave": false, "include": ["src"], "compilerOptions": { "jsx": "react-jsx", "rootDir": "./src", "outDir": "build", "declarationDir": null, "declaration": false, "noImplicitAny": false } } ================================================ FILE: packages/demo/vite-env.d.ts ================================================ /// ================================================ FILE: packages/demo/vite.config.mts ================================================ import react from "@vitejs/plugin-react"; import { defineConfig } from "vite"; import checker from "vite-plugin-checker"; import viteTsconfigPaths from "vite-tsconfig-paths"; export default defineConfig({ base: "", plugins: [ react(), viteTsconfigPaths(), checker({ typescript: { buildMode: true, }, }), ], server: { open: false, port: 3000, }, build: { outDir: "build", }, resolve: { preserveSymlinks: false, }, }); ================================================ FILE: packages/edge-curve/.gitignore ================================================ node_modules dist ================================================ FILE: packages/edge-curve/.npmignore ================================================ .gitignore node_modules src tsconfig.json ================================================ FILE: packages/edge-curve/README.md ================================================ # Sigma.js - Edge curve renderer This package contains a curved edges renderer for [sigma.js](https://sigmajs.org). It handles various aspects, such as: - Varying curvatures - Arrow heads - Parallel curved edges The edges are rendered as [quadratic Bézier curves](https://en.wikipedia.org/wiki/B%C3%A9zier_curve#Quadratic_B%C3%A9zier_curves). This package exports by default `EdgeCurveProgram`, the renderer for sigma. Edges can have a `curvature` value, to make them more or less curved. It also exports: - `EdgeCurvedArrowProgram`, a program with defaults settings adapted to render edges as curved arrows - `createEdgeCurveProgram`, the factory to build a `CustomEdgeCurveProgram` with customized settings - `DEFAULT_EDGE_CURVATURE`, the default curvature value for edges - `indexParallelEdgesIndex`, a utility function to find parallel edges, and help adapt their `curvature` for display (see the [dedicated example](https://github.com/jacomyal/sigma.js/tree/main/packages/storybook/stories/3-additional-packages/edge-curve/parallel-edges.ts) to see how it works) ## How to use Within your application that uses sigma.js, you can use [`@sigma/edge-curve`](https://www.npmjs.com/package/@sigma/edge-curve) as following: ```typescript import EdgeCurveProgram from "@sigma/edge-curve"; const graph = new Graph(); graph.addNode("a", { x: 0, y: 0, size: 10, label: "Alex" }); graph.addNode("b", { x: 10, y: 10, size: 10, label: "Bill" }); graph.addEdge("a", "b", { type: "curved" }); const sigma = new Sigma(graph, container, { edgeProgramClasses: { curved: EdgeCurveProgram, }, }); ``` Please check the related [Storybook](https://github.com/jacomyal/sigma.js/tree/main/packages/storybook/stories/3-additional-packages/edge-curve) for more advanced examples. ================================================ FILE: packages/edge-curve/package.json ================================================ { "name": "@sigma/edge-curve", "version": "3.1.0", "description": "An edge program that renders edges as curves for sigma.js", "main": "dist/sigma-edge-curve.cjs.js", "module": "dist/sigma-edge-curve.esm.js", "types": "dist/sigma-edge-curve.cjs.d.ts", "files": [ "/dist" ], "sideEffects": false, "homepage": "https://www.sigmajs.org", "bugs": "http://github.com/jacomyal/sigma.js/issues", "repository": { "type": "git", "url": "http://github.com/jacomyal/sigma.js.git", "directory": "packages/edge-curve" }, "keywords": [ "graph", "graphology", "sigma" ], "contributors": [ { "name": "Guillaume Plique", "url": "http://github.com/Yomguithereal" }, { "name": "Alexis Jacomy", "url": "http://github.com/jacomyal" } ], "license": "MIT", "preconstruct": { "entrypoints": [ "index.ts" ] }, "peerDependencies": { "sigma": ">=3.0.0-beta.10" }, "exports": { ".": { "module": "./dist/sigma-edge-curve.esm.js", "import": "./dist/sigma-edge-curve.cjs.mjs", "default": "./dist/sigma-edge-curve.cjs.js" }, "./package.json": "./package.json" } } ================================================ FILE: packages/edge-curve/src/edge-labels.ts ================================================ import { Attributes } from "graphology-types"; import { EdgeLabelDrawingFunction } from "sigma/rendering"; import { Settings } from "sigma/settings"; import { CreateEdgeCurveProgramOptions } from "./utils"; interface Point { x: number; y: number; } function getCurvePoint(t: number, p0: Point, p1: Point, p2: Point): Point { const x = (1 - t) ** 2 * p0.x + 2 * (1 - t) * t * p1.x + t ** 2 * p2.x; const y = (1 - t) ** 2 * p0.y + 2 * (1 - t) * t * p1.y + t ** 2 * p2.y; return { x, y }; } function getCurveLength(p0: Point, p1: Point, p2: Point): number { const steps = 20; let length = 0; let lastPoint = p0; for (let i = 0; i < steps; i++) { const point = getCurvePoint((i + 1) / steps, p0, p1, p2); length += Math.sqrt((lastPoint.x - point.x) ** 2 + (lastPoint.y - point.y) ** 2); lastPoint = point; } return length; } export function createDrawCurvedEdgeLabel< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >({ curvatureAttribute, defaultCurvature, keepLabelUpright = true, }: CreateEdgeCurveProgramOptions & { keepLabelUpright?: boolean }): EdgeLabelDrawingFunction { return (context, edgeData, sourceData, targetData, settings: Settings): void => { const size = settings.edgeLabelSize, curvature = edgeData[curvatureAttribute] || defaultCurvature, font = settings.edgeLabelFont, weight = settings.edgeLabelWeight, color = settings.edgeLabelColor.attribute ? edgeData[settings.edgeLabelColor.attribute] || settings.edgeLabelColor.color || "#000" : settings.edgeLabelColor.color; let label = edgeData.label; if (!label) return; context.fillStyle = color; context.font = `${weight} ${size}px ${font}`; // Computing positions without considering nodes sizes: const ltr = !keepLabelUpright || sourceData.x < targetData.x; let sourceX = ltr ? sourceData.x : targetData.x; let sourceY = ltr ? sourceData.y : targetData.y; let targetX = ltr ? targetData.x : sourceData.x; let targetY = ltr ? targetData.y : sourceData.y; const centerX = (sourceX + targetX) / 2; const centerY = (sourceY + targetY) / 2; const diffX = targetX - sourceX; const diffY = targetY - sourceY; const diff = Math.sqrt(diffX ** 2 + diffY ** 2); // Anchor point: const orientation = ltr ? 1 : -1; let anchorX = centerX + diffY * curvature * orientation; let anchorY = centerY - diffX * curvature * orientation; // Adapt curve points to edge thickness: const offset = edgeData.size * 0.7 + 5; const sourceOffsetVector = { x: anchorY - sourceY, y: -(anchorX - sourceX), }; const sourceOffsetVectorLength = Math.sqrt(sourceOffsetVector.x ** 2 + sourceOffsetVector.y ** 2); const targetOffsetVector = { x: targetY - anchorY, y: -(targetX - anchorX), }; const targetOffsetVectorLength = Math.sqrt(targetOffsetVector.x ** 2 + targetOffsetVector.y ** 2); sourceX += (offset * sourceOffsetVector.x) / sourceOffsetVectorLength; sourceY += (offset * sourceOffsetVector.y) / sourceOffsetVectorLength; targetX += (offset * targetOffsetVector.x) / targetOffsetVectorLength; targetY += (offset * targetOffsetVector.y) / targetOffsetVectorLength; // For anchor, the vector is simpler, so it is inlined: anchorX += (offset * diffY) / diff; anchorY -= (offset * diffX) / diff; // Compute curve length: const anchorPoint = { x: anchorX, y: anchorY }; const sourcePoint = { x: sourceX, y: sourceY }; const targetPoint = { x: targetX, y: targetY }; const curveLength = getCurveLength(sourcePoint, anchorPoint, targetPoint); if (curveLength < sourceData.size + targetData.size) return; // Handling ellipsis let textLength = context.measureText(label).width; const availableTextLength = curveLength - sourceData.size - targetData.size; if (textLength > availableTextLength) { const ellipsis = "…"; label = label + ellipsis; textLength = context.measureText(label).width; while (textLength > availableTextLength && label.length > 1) { label = label.slice(0, -2) + ellipsis; textLength = context.measureText(label).width; } if (label.length < 4) return; } // Measure each character: const charactersLengthCache: Record = {}; for (let i = 0, length = label.length; i < length; i++) { const character = label[i]; if (!charactersLengthCache[character]) { charactersLengthCache[character] = context.measureText(character).width * (1 + curvature * 0.35); } } // Draw each character: let t = 0.5 - textLength / curveLength / 2; for (let i = 0, length = label.length; i < length; i++) { const character = label[i]; const point = getCurvePoint(t, sourcePoint, anchorPoint, targetPoint); const tangentX = 2 * (1 - t) * (anchorX - sourceX) + 2 * t * (targetX - anchorX); const tangentY = 2 * (1 - t) * (anchorY - sourceY) + 2 * t * (targetY - anchorY); const angle = Math.atan2(tangentY, tangentX); context.save(); context.translate(point.x, point.y); context.rotate(angle); // Dessiner le caractère context.fillText(character, 0, 0); context.restore(); t += charactersLengthCache[character] / curveLength; } }; } ================================================ FILE: packages/edge-curve/src/factory.ts ================================================ import { Attributes } from "graphology-types"; import { EdgeProgram, EdgeProgramType, ProgramInfo } from "sigma/rendering"; import { EdgeDisplayData, NodeDisplayData, RenderParams } from "sigma/types"; import { floatColor } from "sigma/utils"; import { createDrawCurvedEdgeLabel } from "./edge-labels"; import getFragmentShader from "./shader-frag"; import getVertexShader from "./shader-vert"; import { CreateEdgeCurveProgramOptions, DEFAULT_EDGE_CURVATURE, DEFAULT_EDGE_CURVE_PROGRAM_OPTIONS } from "./utils"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; export default function createEdgeCurveProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(inputOptions?: Partial>): EdgeProgramType { const options: CreateEdgeCurveProgramOptions = { ...DEFAULT_EDGE_CURVE_PROGRAM_OPTIONS, ...(inputOptions || {}), }; const { arrowHead, curvatureAttribute, drawLabel } = options as CreateEdgeCurveProgramOptions; const hasTargetArrowHead = arrowHead?.extremity === "target" || arrowHead?.extremity === "both"; const hasSourceArrowHead = arrowHead?.extremity === "source" || arrowHead?.extremity === "both"; const UNIFORMS = [ "u_matrix", "u_sizeRatio", "u_dimensions", "u_pixelRatio", "u_feather", "u_minEdgeThickness", ...(arrowHead ? ["u_lengthToThicknessRatio", "u_widenessToThicknessRatio"] : []), ] as const; return class EdgeCurveProgram extends EdgeProgram<(typeof UNIFORMS)[number], N, E, G> { drawLabel = drawLabel || createDrawCurvedEdgeLabel(options); getDefinition() { return { VERTICES: 6, VERTEX_SHADER_SOURCE: getVertexShader(options), FRAGMENT_SHADER_SOURCE: getFragmentShader(options), METHOD: WebGLRenderingContext.TRIANGLES, UNIFORMS, ATTRIBUTES: [ { name: "a_source", size: 2, type: FLOAT }, { name: "a_target", size: 2, type: FLOAT }, ...(hasTargetArrowHead ? [{ name: "a_targetSize", size: 1, type: FLOAT }] : []), ...(hasSourceArrowHead ? [{ name: "a_sourceSize", size: 1, type: FLOAT }] : []), { name: "a_thickness", size: 1, type: FLOAT }, { name: "a_curvature", size: 1, type: FLOAT }, { name: "a_color", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, ], CONSTANT_ATTRIBUTES: [ { name: "a_current", size: 1, type: FLOAT }, // TODO: could optimize to bool { name: "a_direction", size: 1, type: FLOAT }, // TODO: could optimize to byte ], CONSTANT_DATA: [ [0, 1], [0, -1], [1, 1], [0, -1], [1, 1], [1, -1], ], }; } processVisibleItem( edgeIndex: number, startIndex: number, sourceData: NodeDisplayData, targetData: NodeDisplayData, data: EdgeDisplayData, ) { const thickness = data.size || 1; const x1 = sourceData.x; const y1 = sourceData.y; const x2 = targetData.x; const y2 = targetData.y; const color = floatColor(data.color); const curvature = data[curvatureAttribute as "size"] ?? DEFAULT_EDGE_CURVATURE; const array = this.array; // First point array[startIndex++] = x1; array[startIndex++] = y1; array[startIndex++] = x2; array[startIndex++] = y2; if (hasTargetArrowHead) array[startIndex++] = targetData.size; if (hasSourceArrowHead) array[startIndex++] = sourceData.size; array[startIndex++] = thickness; array[startIndex++] = curvature; array[startIndex++] = color; array[startIndex++] = edgeIndex; } setUniforms(params: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_matrix, u_pixelRatio, u_feather, u_sizeRatio, u_dimensions, u_minEdgeThickness } = uniformLocations; gl.uniformMatrix3fv(u_matrix, false, params.matrix); gl.uniform1f(u_pixelRatio, params.pixelRatio); gl.uniform1f(u_sizeRatio, params.sizeRatio); gl.uniform1f(u_feather, params.antiAliasingFeather); gl.uniform2f(u_dimensions, params.width * params.pixelRatio, params.height * params.pixelRatio); gl.uniform1f(u_minEdgeThickness, params.minEdgeThickness); if (arrowHead) { const { u_lengthToThicknessRatio, u_widenessToThicknessRatio } = uniformLocations; gl.uniform1f(u_lengthToThicknessRatio, arrowHead.lengthToThicknessRatio); gl.uniform1f(u_widenessToThicknessRatio, arrowHead.widenessToThicknessRatio); } } }; } ================================================ FILE: packages/edge-curve/src/index.ts ================================================ import { DEFAULT_EDGE_ARROW_HEAD_PROGRAM_OPTIONS, EdgeProgramType } from "sigma/rendering"; import createEdgeCurveProgram from "./factory"; export { default as createEdgeCurveProgram } from "./factory"; export { type CreateEdgeCurveProgramOptions } from "./utils"; export { indexParallelEdgesIndex, DEFAULT_EDGE_CURVATURE, DEFAULT_EDGE_CURVE_PROGRAM_OPTIONS, DEFAULT_INDEX_PARALLEL_EDGES_OPTIONS, } from "./utils"; export { createDrawCurvedEdgeLabel } from "./edge-labels"; const EdgeCurveProgram: EdgeProgramType = createEdgeCurveProgram(); export default EdgeCurveProgram; export const EdgeCurvedArrowProgram: EdgeProgramType = createEdgeCurveProgram({ arrowHead: DEFAULT_EDGE_ARROW_HEAD_PROGRAM_OPTIONS, }); export const EdgeCurvedDoubleArrowProgram: EdgeProgramType = createEdgeCurveProgram({ arrowHead: { ...DEFAULT_EDGE_ARROW_HEAD_PROGRAM_OPTIONS, extremity: "both", }, }); ================================================ FILE: packages/edge-curve/src/shader-frag.ts ================================================ import { CreateEdgeCurveProgramOptions } from "./utils"; export default function getFragmentShader({ arrowHead }: CreateEdgeCurveProgramOptions) { const hasTargetArrowHead = arrowHead?.extremity === "target" || arrowHead?.extremity === "both"; const hasSourceArrowHead = arrowHead?.extremity === "source" || arrowHead?.extremity === "both"; // language=GLSL const SHADER = /*glsl*/ ` precision highp float; varying vec4 v_color; varying float v_thickness; varying float v_feather; varying vec2 v_cpA; varying vec2 v_cpB; varying vec2 v_cpC; ${ hasTargetArrowHead ? ` varying float v_targetSize; varying vec2 v_targetPoint;` : "" } ${ hasSourceArrowHead ? ` varying float v_sourceSize; varying vec2 v_sourcePoint;` : "" } ${ arrowHead ? ` uniform float u_lengthToThicknessRatio; uniform float u_widenessToThicknessRatio;` : "" } float det(vec2 a, vec2 b) { return a.x * b.y - b.x * a.y; } vec2 getDistanceVector(vec2 b0, vec2 b1, vec2 b2) { float a = det(b0, b2), b = 2.0 * det(b1, b0), d = 2.0 * det(b2, b1); float f = b * d - a * a; vec2 d21 = b2 - b1, d10 = b1 - b0, d20 = b2 - b0; vec2 gf = 2.0 * (b * d21 + d * d10 + a * d20); gf = vec2(gf.y, -gf.x); vec2 pp = -f * gf / dot(gf, gf); vec2 d0p = b0 - pp; float ap = det(d0p, d20), bp = 2.0 * det(d10, d0p); float t = clamp((ap + bp) / (2.0 * a + b + d), 0.0, 1.0); return mix(mix(b0, b1, t), mix(b1, b2, t), t); } float distToQuadraticBezierCurve(vec2 p, vec2 b0, vec2 b1, vec2 b2) { return length(getDistanceVector(b0 - p, b1 - p, b2 - p)); } const vec4 transparent = vec4(0.0, 0.0, 0.0, 0.0); void main(void) { float dist = distToQuadraticBezierCurve(gl_FragCoord.xy, v_cpA, v_cpB, v_cpC); float thickness = v_thickness; ${ hasTargetArrowHead ? ` float distToTarget = length(gl_FragCoord.xy - v_targetPoint); float targetArrowLength = v_targetSize + thickness * u_lengthToThicknessRatio; if (distToTarget < targetArrowLength) { thickness = (distToTarget - v_targetSize) / (targetArrowLength - v_targetSize) * u_widenessToThicknessRatio * thickness; }` : "" } ${ hasSourceArrowHead ? ` float distToSource = length(gl_FragCoord.xy - v_sourcePoint); float sourceArrowLength = v_sourceSize + thickness * u_lengthToThicknessRatio; if (distToSource < sourceArrowLength) { thickness = (distToSource - v_sourceSize) / (sourceArrowLength - v_sourceSize) * u_widenessToThicknessRatio * thickness; }` : "" } float halfThickness = thickness / 2.0; if (dist < halfThickness) { #ifdef PICKING_MODE gl_FragColor = v_color; #else float t = smoothstep( halfThickness - v_feather, halfThickness, dist ); gl_FragColor = mix(v_color, transparent, t); #endif } else { gl_FragColor = transparent; } } `; return SHADER; } ================================================ FILE: packages/edge-curve/src/shader-vert.ts ================================================ import { CreateEdgeCurveProgramOptions } from "./utils"; export default function getVertexShader({ arrowHead }: CreateEdgeCurveProgramOptions) { const hasTargetArrowHead = arrowHead?.extremity === "target" || arrowHead?.extremity === "both"; const hasSourceArrowHead = arrowHead?.extremity === "source" || arrowHead?.extremity === "both"; // language=GLSL const SHADER = /*glsl*/ ` attribute vec4 a_id; attribute vec4 a_color; attribute float a_direction; attribute float a_thickness; attribute vec2 a_source; attribute vec2 a_target; attribute float a_current; attribute float a_curvature; ${hasTargetArrowHead ? "attribute float a_targetSize;\n" : ""} ${hasSourceArrowHead ? "attribute float a_sourceSize;\n" : ""} uniform mat3 u_matrix; uniform float u_sizeRatio; uniform float u_pixelRatio; uniform vec2 u_dimensions; uniform float u_minEdgeThickness; uniform float u_feather; varying vec4 v_color; varying float v_thickness; varying float v_feather; varying vec2 v_cpA; varying vec2 v_cpB; varying vec2 v_cpC; ${ hasTargetArrowHead ? ` varying float v_targetSize; varying vec2 v_targetPoint;` : "" } ${ hasSourceArrowHead ? ` varying float v_sourceSize; varying vec2 v_sourcePoint;` : "" } ${ arrowHead ? ` uniform float u_widenessToThicknessRatio;` : "" } const float bias = 255.0 / 254.0; const float epsilon = 0.7; vec2 clipspaceToViewport(vec2 pos, vec2 dimensions) { return vec2( (pos.x + 1.0) * dimensions.x / 2.0, (pos.y + 1.0) * dimensions.y / 2.0 ); } vec2 viewportToClipspace(vec2 pos, vec2 dimensions) { return vec2( pos.x / dimensions.x * 2.0 - 1.0, pos.y / dimensions.y * 2.0 - 1.0 ); } void main() { float minThickness = u_minEdgeThickness; // Selecting the correct position // Branchless "position = a_source if a_current == 1.0 else a_target" vec2 position = a_source * max(0.0, a_current) + a_target * max(0.0, 1.0 - a_current); position = (u_matrix * vec3(position, 1)).xy; vec2 source = (u_matrix * vec3(a_source, 1)).xy; vec2 target = (u_matrix * vec3(a_target, 1)).xy; vec2 viewportPosition = clipspaceToViewport(position, u_dimensions); vec2 viewportSource = clipspaceToViewport(source, u_dimensions); vec2 viewportTarget = clipspaceToViewport(target, u_dimensions); vec2 delta = viewportTarget.xy - viewportSource.xy; float len = length(delta); vec2 normal = vec2(-delta.y, delta.x) * a_direction; vec2 unitNormal = normal / len; float boundingBoxThickness = len * a_curvature; float curveThickness = max(minThickness, a_thickness / u_sizeRatio); v_thickness = curveThickness * u_pixelRatio; v_feather = u_feather; v_cpA = viewportSource; v_cpB = 0.5 * (viewportSource + viewportTarget) + unitNormal * a_direction * boundingBoxThickness; v_cpC = viewportTarget; vec2 viewportOffsetPosition = ( viewportPosition + unitNormal * (boundingBoxThickness / 2.0 + sign(boundingBoxThickness) * (${arrowHead ? "curveThickness * u_widenessToThicknessRatio" : "curveThickness"} + epsilon)) * max(0.0, a_direction) // NOTE: cutting the bounding box in half to avoid overdraw ); position = viewportToClipspace(viewportOffsetPosition, u_dimensions); gl_Position = vec4(position, 0, 1); ${ hasTargetArrowHead ? ` v_targetSize = a_targetSize * u_pixelRatio / u_sizeRatio; v_targetPoint = viewportTarget; ` : "" } ${ hasSourceArrowHead ? ` v_sourceSize = a_sourceSize * u_pixelRatio / u_sizeRatio; v_sourcePoint = viewportSource; ` : "" } #ifdef PICKING_MODE // For picking mode, we use the ID as the color: v_color = a_id; #else // For normal mode, we use the color: v_color = a_color; #endif v_color.a *= bias; } `; return SHADER; } ================================================ FILE: packages/edge-curve/src/utils.ts ================================================ import Graph from "graphology"; import { Attributes } from "graphology-types"; import { EdgeLabelDrawingFunction } from "sigma/rendering"; export const DEFAULT_EDGE_CURVATURE = 0.25; export type CreateEdgeCurveProgramOptions< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > = { // If 0, then edges have no arrow head. Else, the head is as long as this ratio times the thickness. curvatureAttribute: string; defaultCurvature: number; arrowHead: null | { extremity: "target" | "source" | "both"; lengthToThicknessRatio: number; widenessToThicknessRatio: number; }; // Allows overriding drawLabel returned class method. drawLabel?: EdgeLabelDrawingFunction | undefined; }; export const DEFAULT_EDGE_CURVE_PROGRAM_OPTIONS: CreateEdgeCurveProgramOptions = { arrowHead: null, curvatureAttribute: "curvature", defaultCurvature: DEFAULT_EDGE_CURVATURE, }; /** * This function helps to identify parallel edges, to adjust their curvatures. */ export const DEFAULT_INDEX_PARALLEL_EDGES_OPTIONS = { edgeIndexAttribute: "parallelIndex", edgeMinIndexAttribute: "parallelMinIndex", edgeMaxIndexAttribute: "parallelMaxIndex", }; export function indexParallelEdgesIndex( graph: Graph, options?: Partial, ): void { const opts = { ...DEFAULT_INDEX_PARALLEL_EDGES_OPTIONS, ...(options || {}), }; const nodeIDsMapping: Record = {}; const edgeDirectedIDsMapping: Record = {}; const edgeUndirectedIDsMapping: Record = {}; // Normalize IDs: let incr = 0; graph.forEachNode((node) => { nodeIDsMapping[node] = ++incr + ""; }); graph.forEachEdge((edge, _attrs, source, target) => { const sourceId = nodeIDsMapping[source]; const targetId = nodeIDsMapping[target]; const directedId = [sourceId, targetId].join("-"); edgeDirectedIDsMapping[edge] = directedId; edgeUndirectedIDsMapping[directedId] = [sourceId, targetId].sort().join("-"); }); // Index edge unique IDs, only based on their extremities: const directedIndex: Record = {}; const undirectedIndex: Record = {}; graph.forEachEdge((edge) => { const directedId = edgeDirectedIDsMapping[edge]; const undirectedId = edgeUndirectedIDsMapping[directedId]; directedIndex[directedId] = directedIndex[directedId] || []; directedIndex[directedId].push(edge); undirectedIndex[undirectedId] = undirectedIndex[undirectedId] || []; undirectedIndex[undirectedId].push(edge); }); // Store index attributes: for (const directedId in directedIndex) { const edges = directedIndex[directedId]; const directedCount = edges.length; const undirectedCount = undirectedIndex[edgeUndirectedIDsMapping[directedId]].length; // If the edge is alone, in both side: if (directedCount === 1 && undirectedCount === 1) { const edge = edges[0]; graph.setEdgeAttribute(edge, opts.edgeIndexAttribute, null); graph.setEdgeAttribute(edge, opts.edgeMaxIndexAttribute, null); } // If the edge is alone, but there is at least one edge in the opposite direction: else if (directedCount === 1) { const edge = edges[0]; graph.setEdgeAttribute(edge, opts.edgeIndexAttribute, 1); graph.setEdgeAttribute(edge, opts.edgeMaxIndexAttribute, 1); } // If the edge is not alone, and all edges are in the same direction: else if (directedCount === undirectedCount) { const max = (directedCount - 1) / 2; const min = -max; for (let i = 0; i < directedCount; i++) { const edge = edges[i]; const edgeIndex = -(directedCount - 1) / 2 + i; graph.setEdgeAttribute(edge, opts.edgeIndexAttribute, edgeIndex); graph.setEdgeAttribute(edge, opts.edgeMinIndexAttribute, min); graph.setEdgeAttribute(edge, opts.edgeMaxIndexAttribute, max); } } // If the edge is not alone, and there are edges in both directions: else { for (let i = 0; i < directedCount; i++) { const edge = edges[i]; graph.setEdgeAttribute(edge, opts.edgeIndexAttribute, i + 1); graph.setEdgeAttribute(edge, opts.edgeMaxIndexAttribute, directedCount); } } } } ================================================ FILE: packages/edge-curve/tsconfig.json ================================================ { "compilerOptions": { "target": "ESNext", // Specifies the JavaScript version to target when transpiling code. "useDefineForClassFields": true, // Enables the use of 'define' for class fields. "lib": ["ES2020", "DOM", "DOM.Iterable"], // Specifies the libraries available for the code. "module": "ESNext", // Defines the module system to use for code generation. "skipLibCheck": true, // Skips type checking of declaration files. /* Bundler mode */ "moduleResolution": "node", // Specifies how modules are resolved when bundling. "allowSyntheticDefaultImports": true, "allowImportingTsExtensions": true, // Allows importing TypeScript files with extensions. "resolveJsonModule": true, // Enables importing JSON modules. "isolatedModules": true, // Ensures each file is treated as a separate module. "noEmit": true, // Prevents TypeScript from emitting output files. /* Linting */ "strict": true, // Enables strict type checking. "noUnusedLocals": true, // Flags unused local variables. "noUnusedParameters": true, // Flags unused function parameters. "noFallthroughCasesInSwitch": true, // Requires handling all cases in a switch statement. "declaration": true // Generates declaration files for TypeScript. }, "include": ["src"], // Specifies the directory to include when searching for TypeScript files. "exclude": ["src/**/__docs__", "src/**/__test__"] } ================================================ FILE: packages/export-image/.gitignore ================================================ node_modules dist ================================================ FILE: packages/export-image/.npmignore ================================================ .gitignore node_modules src tsconfig.json ================================================ FILE: packages/export-image/README.md ================================================ # Sigma.js - Export image This package provides various functions to capture snapshots of a [sigma.js](https://www.sigmajs.org/) instance as images, allowing easy export of your graph visualizations in different formats. ### Available Options The following options can be used to customize the image export: - `layers` (`null | string[]`, default: `null`): Specify the graph layers to render (from `sigma.getCanvases()`). If `null`, all layers are rendered. - `width` (`null | number`, default: `null`): Set the width of the output image. If `null`, the canvas will use the sigma container's width. - `height` (`null | number`, default: `null`): Set the height of the output image. If `null`, the canvas will use the sigma container's height. - `fileName` (`string`, default: `"graph"`): The name of the file to download. - `format` (`"png" | "jpeg"`, default: `"png"`): The image format, either PNG or JPEG. - `sigmaSettings` (`Partial`, default: `{}`): Custom settings for the sigma instance used during rendering. - `cameraState` (`null | CameraState`, default: `null`): The camera state to use for the rendering. If `null`, the current camera state is used. - `backgroundColor` (`string`, default: `"transparent"`): The background color of the image. - `withTempRenderer` (`null | ((tmpRenderer: Sigma) => void) | ((tmpRenderer: Sigma) => Promise)`, default: `null`): A callback function for custom operations using the temporary sigma renderer before rendering the image. ### Available Functions #### `drawOnCanvas` This function creates a new temporary sigma instance, renders it with the given options, and draws its layers (or the selected layers) on a new HTML canvas element. It then returns it as a `Promise`. This function is the core function, used by all other ones. #### `toBlob` This function returns a `Promise` that contains the image data, which can be further processed or stored, useful for integration with file storage services. #### `toFile` This function returns a `Promise` that contains the image data as a file, ideal for direct file manipulation or uploads. #### `downloadAsImage` This function downloads a snapshot of the sigma instance as an image file. #### `downloadAsPNG` / `downloadAsJPEG` These functions are simple sugar around `downloadAsImage`, without having to specify the `"format"` option. Please check the related [Storybook](https://github.com/jacomyal/sigma.js/tree/main/packages/storybook/stories/3-additional-packages/export-image) for more advanced examples. ================================================ FILE: packages/export-image/package.json ================================================ { "name": "@sigma/export-image", "version": "3.0.0", "description": "An helper to capture snapshots of sigma.js instances as images", "main": "dist/sigma-export-image.cjs.js", "module": "dist/sigma-export-image.esm.js", "files": [ "/dist" ], "sideEffects": false, "homepage": "https://www.sigmajs.org", "bugs": "http://github.com/jacomyal/sigma.js/issues", "repository": { "type": "git", "url": "http://github.com/jacomyal/sigma.js.git", "directory": "packages/export-image" }, "dependencies": { "file-saver": "^2.0.5" }, "devDependencies": { "@types/file-saver": "^2.0.7" }, "peerDependencies": { "sigma": ">=3.0.0-beta.10" }, "preconstruct": { "entrypoints": [ "index.ts" ] }, "license": "MIT", "exports": { ".": { "module": "./dist/sigma-export-image.esm.js", "import": "./dist/sigma-export-image.cjs.mjs", "default": "./dist/sigma-export-image.cjs.js" }, "./package.json": "./package.json" } } ================================================ FILE: packages/export-image/src/downloadAsImage.ts ================================================ import FileSaver from "file-saver"; import Sigma from "sigma"; import { DEFAULT_TO_IMAGE_OPTIONS, ToImageOptions } from "./options"; import { toBlob } from "./toImage"; /** * This function takes a Sigma instance, draws its layers on a canvas using `drawOnCanvas`, and then downloads a local * image file from the canvas. Accepted formats are "image/png" and "image/jpeg". */ export async function downloadAsImage(sigma: Sigma, opts: Partial = {}): Promise { const { fileName, format } = { ...DEFAULT_TO_IMAGE_OPTIONS, ...opts, }; const blob = await toBlob(sigma, opts); FileSaver.saveAs(blob, `${fileName}.${format}`); } /** * This function is just some sugar around `downloadAsImage`, with forced PNG format. */ export function downloadAsPNG(sigma: Sigma, opts: Partial> = {}): Promise { return downloadAsImage(sigma, { ...opts, format: "png" }); } /** * This function is just some sugar around `downloadAsImage`, with forced JPEG format. */ export function downloadAsJPEG(sigma: Sigma, opts: Partial> = {}): Promise { return downloadAsImage(sigma, { ...opts, format: "jpeg" }); } ================================================ FILE: packages/export-image/src/drawOnCanvas.ts ================================================ import Sigma from "sigma"; import { DEFAULT_TO_IMAGE_OPTIONS, ToImageOptions } from "./options"; /** * This function takes a Sigma instance and some options, and returns a HTMLCanvasElement, with all the sigma layers * drawn on it. This new canvas can then be used to generate PNG or JPEG images, for instance. */ export async function drawOnCanvas( sigma: Sigma, opts: Partial> = {}, ): Promise { const { layers, backgroundColor, width, height, cameraState, sigmaSettings, withTempRenderer } = { ...DEFAULT_TO_IMAGE_OPTIONS, ...opts, }; const dimensions = sigma.getDimensions(); const pixelRatio = window.devicePixelRatio || 1; const outputWidth = typeof width !== "number" ? dimensions.width : width; const outputHeight = typeof height !== "number" ? dimensions.height : height; const tmpRoot = document.createElement("DIV"); tmpRoot.style.width = `${outputWidth}px`; tmpRoot.style.height = `${outputHeight}px`; tmpRoot.style.position = "absolute"; tmpRoot.style.right = "101%"; tmpRoot.style.bottom = "101%"; document.body.appendChild(tmpRoot); // Instantiate sigma: const tempRenderer = new Sigma(sigma.getGraph(), tmpRoot, { ...sigma.getSettings(), ...sigmaSettings }); // Copy camera and force to render now, to avoid having to wait the schedule / // debounce frame: tempRenderer.getCamera().setState(cameraState || sigma.getCamera().getState()); tempRenderer.setCustomBBox(sigma.getCustomBBox()); tempRenderer.refresh(); // Create a new canvas, on which the different layers will be drawn: const canvas = document.createElement("CANVAS") as HTMLCanvasElement; canvas.setAttribute("width", outputWidth * pixelRatio + ""); canvas.setAttribute("height", outputHeight * pixelRatio + ""); const ctx = canvas.getContext("2d") as CanvasRenderingContext2D; // Draw the background first: ctx.fillStyle = backgroundColor; ctx.fillRect(0, 0, outputWidth * pixelRatio, outputHeight * pixelRatio); if (withTempRenderer) { await withTempRenderer(tempRenderer); } // For each layer, draw it on our canvas: const canvases = tempRenderer.getCanvases(); const canvasLayers = layers ? layers.filter((id) => !!canvases[id]) : Object.keys(canvases); canvasLayers.forEach((id) => { ctx.drawImage( canvases[id], 0, 0, outputWidth * pixelRatio, outputHeight * pixelRatio, 0, 0, outputWidth * pixelRatio, outputHeight * pixelRatio, ); }); // Cleanup: tempRenderer.kill(); tmpRoot.remove(); return canvas; } ================================================ FILE: packages/export-image/src/index.ts ================================================ export * from "./options"; export * from "./drawOnCanvas"; export * from "./toImage"; export * from "./downloadAsImage"; ================================================ FILE: packages/export-image/src/options.ts ================================================ import Sigma from "sigma"; import { Settings } from "sigma/settings"; import { CameraState } from "sigma/types"; export type ToImageOptions = { layers: null | string[]; width: null | number; height: null | number; fileName: string; format: "png" | "jpeg"; sigmaSettings: Partial; cameraState: null | CameraState; backgroundColor: string; withTempRenderer: null | ((tmpRenderer: Sigma) => void) | ((tmpRenderer: Sigma) => Promise); }; export const DEFAULT_TO_IMAGE_OPTIONS: ToImageOptions = { layers: null, width: null, height: null, fileName: "graph", format: "png", sigmaSettings: {}, cameraState: null, backgroundColor: "transparent", withTempRenderer: null, }; ================================================ FILE: packages/export-image/src/toImage.ts ================================================ import Sigma from "sigma"; import { drawOnCanvas } from "./drawOnCanvas"; import { DEFAULT_TO_IMAGE_OPTIONS, ToImageOptions } from "./options"; /** * This function takes a Sigma instance, draws its layers on a canvas using `drawOnCanvas`, and returns a promise that * resolves to a blob of the expected image. Accepted formats are "image/png" and "image/jpeg". */ export async function toBlob(sigma: Sigma, opts: Partial = {}): Promise { const { format, ...options } = { ...DEFAULT_TO_IMAGE_OPTIONS, ...opts, }; const canvas = await drawOnCanvas(sigma, options); // Save the canvas as a PNG image: return new Promise((resolve, reject) => { canvas.toBlob((blob) => { if (blob) { resolve(blob); } else { reject(new Error(`No actual blob was obtained by canvas.toBlob(..., "image/${format}")`)); } }, `image/${format}`); }); } /** * This function takes a Sigma instance, calls `toBlob`, and returns a File instance of the given blob. */ export async function toFile(sigma: Sigma, opts: Partial = {}): Promise { const { fileName, format } = { ...DEFAULT_TO_IMAGE_OPTIONS, ...opts, }; const blob = await toBlob(sigma, opts); return new File([blob], `${fileName}.${format}`); } ================================================ FILE: packages/export-image/tsconfig.json ================================================ { "extends": "../../tsconfig.base.json", "compilerOptions": { "target": "ESNext", "useDefineForClassFields": true, "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, "moduleResolution": "node", "allowSyntheticDefaultImports": true, "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "declaration": true }, "include": ["src"], "exclude": ["src/**/__docs__", "src/**/__test__"] } ================================================ FILE: packages/layer-leaflet/.gitignore ================================================ node_modules dist ================================================ FILE: packages/layer-leaflet/.npmignore ================================================ .gitignore node_modules src tsconfig.json ================================================ FILE: packages/layer-leaflet/README.md ================================================ # Sigma.js - Leaflet background layer This package contains a leaflet background layer for [sigma.js](https://sigmajs.org). It displays a map on the graph's background and handle the camera synchronisation. ## How to use First you need to install [leaflet](https://leafletjs.com/) in your application. You can check this [page](https://leafletjs.com/download.html) to see how to do it. Especially, don't forget to load `leaflet.css` in your application. Then, within your application that uses sigma.js, you can use [`@sigma/layer-leaflet`](https://www.npmjs.com/package/@sigma/layer-leaflet) as following: ```typescript import bindLeafletLayer from "@sigma/layer-leaflet"; const graph = new Graph(); graph.addNode("nantes", { x: 0, y: 0, lat: 47.2308, lng: 1.5566, size: 10, label: "Nantes" }); graph.addNode("paris", { x: 0, y: 0, lat: 48.8567, lng: 2.351, size: 10, label: "Paris" }); graph.addEdge("nantes", "paris"); const sigma = new Sigma(graph, container); bindLeafletLayer(sigma); ``` Please check the related [Storybook](https://github.com/jacomyal/sigma.js/tree/main/packages/storybook/stories/3-additional-packages/layer-leaflet) for more advanced examples. ================================================ FILE: packages/layer-leaflet/package.json ================================================ { "name": "@sigma/layer-leaflet", "version": "3.0.0", "description": "A plugin to set a geographical map in background", "main": "dist/sigma-layer-leaflet.cjs.js", "module": "dist/sigma-layer-leaflet.esm.js", "types": "dist/sigma-layer-leaflet.cjs.d.ts", "files": [ "/dist" ], "sideEffects": false, "homepage": "https://www.sigmajs.org", "bugs": "http://github.com/jacomyal/sigma.js/issues", "repository": { "type": "git", "url": "http://github.com/jacomyal/sigma.js.git", "directory": "packages/layer-leaflet" }, "keywords": [ "graph", "graphology", "sigma" ], "contributors": [ { "name": "Benoît Simard", "url": "http://github.com/sim51" } ], "license": "MIT", "preconstruct": { "entrypoints": [ "index.ts" ] }, "peerDependencies": { "leaflet": "^1.9.4", "sigma": ">=3.0.0-beta.10" }, "exports": { ".": { "module": "./dist/sigma-layer-leaflet.esm.js", "import": "./dist/sigma-layer-leaflet.cjs.mjs", "default": "./dist/sigma-layer-leaflet.cjs.js" }, "./package.json": "./package.json" }, "devDependencies": { "@types/leaflet": "^1.9.12" } } ================================================ FILE: packages/layer-leaflet/src/index.ts ================================================ import Graph from "graphology"; import { Attributes } from "graphology-types"; import L, { MapOptions } from "leaflet"; import { Sigma } from "sigma"; import { graphToLatlng, latlngToGraph, setSigmaRatioBounds, syncMapWithSigma, syncSigmaWithMap } from "./utils"; /** * On the graph, we store the 2D projection of the geographical lat/long. * * @param sigma The sigma instance * @param opts.mapOptions Options that will be provided to the map constructor. * @param opts.tileLayer Tile layer configuration for the map (default is openstreetmap) * @param opts.getNodeLatLng Function to retrieve lat/long values from a node's attributs (default is lat & lng) */ export default function bindLeafletLayer( sigma: Sigma, opts?: { mapOptions?: Omit; tileLayer?: { urlTemplate: string; attribution?: string }; getNodeLatLng?: (nodeAttributes: Attributes) => { lat: number; lng: number }; }, ) { // Keeping data for the cleanup let isKilled = false; const prevSigmaSettings = sigma.getSettings(); // Creating map container const mapLayerName = "layer-leaflet"; const mapContainer = sigma.createLayer(mapLayerName, "div", { style: { position: "absolute", inset: "0", zIndex: "0" }, // 'edges' is the first sigma layer beforeLayer: "edges", }); sigma.getContainer().prepend(mapContainer); // Initialize the map const map = L.map(mapContainer, { ...(opts?.mapOptions || {}), zoomControl: false, zoomSnap: 0, zoom: 0, // we force the maxZoom with a higher tile value so leaflet function are not stuck // in a restricted area. It avoids side effect maxZoom: 20, }).setView([0, 0], 0); let tileUrl = "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"; let tileAttribution: string | undefined = '© OpenStreetMap contributors'; if (opts?.tileLayer) { tileUrl = opts.tileLayer.urlTemplate; tileAttribution = opts.tileLayer.attribution; } L.tileLayer(tileUrl, { attribution: tileAttribution }).addTo(map); let mapIsMoving = false; map.on("move", () => { mapIsMoving = true; }); map.on("moveend", () => { mapIsMoving = false; }); // `stagePadding: 0` is mandatory, so the bbox of the map & Sigma is the same. sigma.setSetting("stagePadding", 0); // disable camera rotation sigma.setSetting("enableCameraRotation", false); // Function that change the given graph by generating the sigma x,y coords by taking the geo coordinates // and project them in the 2D space of the map function updateGraphCoordinates(graph: Graph) { graph.updateEachNodeAttributes((_node, attrs) => { const coords = latlngToGraph( map, opts?.getNodeLatLng ? opts.getNodeLatLng(attrs) : { lat: attrs.lat, lng: attrs.lng }, ); return { ...attrs, x: coords.x, y: coords.y, }; }); } // Function that sync the map with sigma function fnSyncMapWithSigma(firstIteration = false) { syncMapWithSigma(sigma, map, firstIteration); } // Function that sync sigma with map if it's needed function fnSyncSigmaWithMap() { if (!sigma.getCamera().isAnimated() && !mapIsMoving) { // Check that sigma & map are already in sync const southWest = graphToLatlng(map, sigma.viewportToGraph({ x: 0, y: sigma.getDimensions().height })); const northEast = graphToLatlng(map, sigma.viewportToGraph({ x: sigma.getDimensions().width, y: 0 })); const diff = Math.max( map.getBounds().getSouthWest().distanceTo(southWest), map.getBounds().getNorthEast().distanceTo(northEast), ); if (diff > 10000 / map.getZoom()) { syncSigmaWithMap(sigma, map); } } } // When sigma is resize, we need to update the graph coordinate (the ref has changed) // and recompute the zoom bounds function fnOnResize() { // Ask the map to resize // NB: resize can change the center of the map, and we want to keep it const center = map.getCenter(); map.invalidateSize({ pan: false, animate: false, duration: 0 }); map.setView(center); // Map ref has changed, we need to update the graph coordinates & bounds updateGraphCoordinates(sigma.getGraph()); setSigmaRatioBounds(sigma, map); // Do the sync fnSyncSigmaWithMap(); } // Clean up function to remove everything function clean() { if (!isKilled) { isKilled = true; map.remove(); sigma.killLayer(mapLayerName); sigma.off("afterRender", fnSyncMapWithSigma); sigma.off("resize", fnOnResize); // Reset settings sigma.setSetting("stagePadding", prevSigmaSettings.stagePadding); sigma.setSetting("enableCameraRotation", prevSigmaSettings.enableCameraRotation); sigma.setSetting("minCameraRatio", prevSigmaSettings.minCameraRatio); sigma.setSetting("maxCameraRatio", prevSigmaSettings.maxCameraRatio); } } // When the map is ready map.whenReady(() => { // Update the sigma graph for geospatial coords updateGraphCoordinates(sigma.getGraph()); // Do the first sync fnSyncMapWithSigma(true); // Compute sigma ratio bounds map.once("moveend", () => { setSigmaRatioBounds(sigma, map); fnSyncSigmaWithMap(); }); // At each render of sigma, we do the map sync sigma.on("afterRender", fnSyncMapWithSigma); // Listen on resize sigma.on("resize", fnOnResize); // Do the cleanup sigma.on("kill", clean); }); return { clean, map, updateGraphCoordinates, }; } export { graphToLatlng, latlngToGraph }; ================================================ FILE: packages/layer-leaflet/src/utils.ts ================================================ import { LatLngBounds, Map } from "leaflet"; import { Sigma } from "sigma"; export const LEAFLET_MAX_PIXEL = 256 * 2 ** 18; export const MAX_VALID_LATITUDE = 85.051129; /** * Get the world size in pixel */ function getWorldPixelSize(map: Map) { const southWest = map.project({ lat: -MAX_VALID_LATITUDE, lng: -180 }); const northEast = map.project({ lat: MAX_VALID_LATITUDE, lng: 180 }); return { y: Math.abs(southWest.y - northEast.y), x: Math.abs(northEast.x - southWest.x) }; } /** * Given a geo point returns its graph coords. */ export function latlngToGraph(map: Map, coord: { lat: number; lng: number }): { x: number; y: number } { const data = map.project({ lat: coord.lat, lng: coord.lng }, 0); return { x: data.x, // Y are reversed between geo / sigma y: map.getContainer().clientHeight - data.y, }; } /** * Given a graph coords returns its lat/lng coords. */ export function graphToLatlng(map: Map, coords: { x: number; y: number }): { lat: number; lng: number } { const data = map.unproject([coords.x, map.getContainer().clientHeight - coords.y], 0); return { lat: data.lat, lng: data.lng }; } /** * Synchronise sigma BBOX with the Map one. */ export function syncSigmaWithMap(sigma: Sigma, map: Map): void { const mapBound = map.getBounds(); // Compute sigma center const center = sigma.viewportToFramedGraph(sigma.graphToViewport(latlngToGraph(map, mapBound.getCenter()))); // Compute sigma ratio const northEast = sigma.graphToViewport(latlngToGraph(map, mapBound.getNorthEast())); const southWest = sigma.graphToViewport(latlngToGraph(map, mapBound.getSouthWest())); const viewportBoundDimension = { width: Math.abs(northEast.x - southWest.x), height: Math.abs(northEast.y - southWest.y), }; const viewportDim = sigma.getDimensions(); const ratio = Math.min(viewportBoundDimension.width / viewportDim.width, viewportBoundDimension.height / viewportDim.height) * sigma.getCamera().getState().ratio; sigma.getCamera().setState({ ...center, ratio: ratio }); } /** * Synchronise map BBOX with the Sigma one. */ export function syncMapWithSigma(sigma: Sigma, map: Map, firstIteration = false): void { const viewportDimensions = sigma.getDimensions(); // Graph BBox const graphBottomLeft = sigma.viewportToGraph({ x: 0, y: viewportDimensions.height }); const graphTopRight = sigma.viewportToGraph({ x: viewportDimensions.width, y: 0 }); // Geo BBox const geoSouthWest = graphToLatlng(map, graphBottomLeft); const geoNorthEast = graphToLatlng(map, graphTopRight); // Set map BBox const bounds = new LatLngBounds(geoSouthWest, geoNorthEast); map.flyToBounds(bounds, { animate: false }); if (!firstIteration) { // Handle side effects when bounds have some "void" area on top or bottom of the map // When it happens, flyToBound don't really do its job and there is a translation of the graph that match the void height. // So we have to do a pan in pixel... const worldSize = map.getPixelWorldBounds().getSize(); const mapBottomY = map.getPixelBounds().getBottomLeft().y; const mapTopY = map.getPixelBounds().getTopRight().y; if (mapTopY < 0 || mapBottomY > worldSize.y) syncSigmaWithMap(sigma, map); } } /** * Settings the min & max camera ratio of sigma to not be over the map's capabilities * - Max zoom is when whe can see the whole map * - Min zoom is when we are at zoom 18 on leaflet */ export function setSigmaRatioBounds(sigma: Sigma, map: Map): void { const worldPixelSize = getWorldPixelSize(map); // Max zoom const maxZoomRatio = worldPixelSize.y / sigma.getDimensions().width; sigma.setSetting("maxCameraRatio", maxZoomRatio); // Min zoom const minZoomRatio = worldPixelSize.y / LEAFLET_MAX_PIXEL; sigma.setSetting("minCameraRatio", minZoomRatio); const currentRatio = sigma.getCamera().ratio; if (currentRatio > maxZoomRatio) sigma.getCamera().setState({ ratio: maxZoomRatio }); if (currentRatio < minZoomRatio) sigma.getCamera().setState({ ratio: minZoomRatio }); } ================================================ FILE: packages/layer-leaflet/tsconfig.json ================================================ { "compilerOptions": { "target": "ESNext", // Specifies the JavaScript version to target when transpiling code. "useDefineForClassFields": true, // Enables the use of 'define' for class fields. "lib": ["ES2020", "DOM", "DOM.Iterable"], // Specifies the libraries available for the code. "module": "ESNext", // Defines the module system to use for code generation. "skipLibCheck": true, // Skips type checking of declaration files. /* Bundler mode */ "moduleResolution": "node", // Specifies how modules are resolved when bundling. "allowSyntheticDefaultImports": true, "allowImportingTsExtensions": true, // Allows importing TypeScript files with extensions. "resolveJsonModule": true, // Enables importing JSON modules. "isolatedModules": true, // Ensures each file is treated as a separate module. "noEmit": true, // Prevents TypeScript from emitting output files. /* Linting */ "strict": true, // Enables strict type checking. "noUnusedLocals": true, // Flags unused local variables. "noUnusedParameters": true, // Flags unused function parameters. "noFallthroughCasesInSwitch": true, // Requires handling all cases in a switch statement. "declaration": true // Generates declaration files for TypeScript. }, "include": ["src"], // Specifies the directory to include when searching for TypeScript files. "exclude": ["src/**/__docs__", "src/**/__test__"] } ================================================ FILE: packages/layer-maplibre/.gitignore ================================================ node_modules dist ================================================ FILE: packages/layer-maplibre/.npmignore ================================================ .gitignore node_modules src tsconfig.json ================================================ FILE: packages/layer-maplibre/README.md ================================================ # Sigma.js - Maplibre background layer This package contains a maplibre background layer for [sigma.js](https://sigmajs.org). It displays a map on the graph's background and handle the camera synchronisation. ## How to use First you need to install [maplibre](https://maplibre.org/) in your application. You can check this [page](https://maplibre.org/maplibre-gl-js/docs/) to see how to do it. Especially, don't forget to load `maplibre-gl.css` in your application. Then, within your application that uses sigma.js, you can use [`@sigma/layer-maplibre`](https://www.npmjs.com/package/@sigma/layer-maplibre) as following: ```typescript import bindLeafletLayer from "@sigma/layer-maplibre"; const graph = new Graph(); graph.addNode("nantes", { x: 0, y: 0, lat: 47.2308, lng: 1.5566, size: 10, label: "Nantes" }); graph.addNode("paris", { x: 0, y: 0, lat: 48.8567, lng: 2.351, size: 10, label: "Paris" }); graph.addEdge("nantes", "paris"); const sigma = new Sigma(graph, container); bindMaplibreLayer(sigma); ``` Please check the related [Storybook](https://github.com/jacomyal/sigma.js/tree/main/packages/storybook/stories/3-additional-packages/layer-maplibre) for more advanced examples. ================================================ FILE: packages/layer-maplibre/package.json ================================================ { "name": "@sigma/layer-maplibre", "version": "3.0.0", "description": "A plugin to set a geographical map in background", "main": "dist/sigma-layer-maplibre.cjs.js", "module": "dist/sigma-layer-maplibre.esm.js", "types": "dist/sigma-layer-maplibre.cjs.d.ts", "files": [ "/dist" ], "sideEffects": false, "homepage": "https://www.sigmajs.org", "bugs": "http://github.com/jacomyal/sigma.js/issues", "repository": { "type": "git", "url": "http://github.com/jacomyal/sigma.js.git", "directory": "packages/layer-maplibre" }, "keywords": [ "graph", "graphology", "sigma" ], "contributors": [ { "name": "Benoît Simard", "url": "http://github.com/sim51" } ], "license": "MIT", "preconstruct": { "entrypoints": [ "index.ts" ] }, "peerDependencies": { "maplibre-gl": "^4.5.0", "sigma": ">=3.0.0-beta.10" }, "exports": { ".": { "module": "./dist/sigma-layer-maplibre.esm.js", "import": "./dist/sigma-layer-maplibre.cjs.mjs", "default": "./dist/sigma-layer-maplibre.cjs.js" }, "./package.json": "./package.json" } } ================================================ FILE: packages/layer-maplibre/src/index.ts ================================================ import Graph from "graphology"; import { Attributes } from "graphology-types"; import { LngLat, Map, MapOptions } from "maplibre-gl"; import { Sigma } from "sigma"; import { graphToLatlng, latlngToGraph, syncMapWithSigma, syncSigmaWithMap } from "./utils"; /** * On the graph, we store the 2D projection of the geographical lat/long. * * @param sigma The sigma instance * @param opts.mapOptions Options that will be provided to map constructor. * @param opts.getNodeLatLng Function to retrieve lat/long values from a node's attributs (default is lat & lng) */ export default function bindMaplibreLayer( sigma: Sigma, opts?: { mapOptions?: Omit; getNodeLatLng?: (nodeAttributes: Attributes) => { lat: number; lng: number }; }, ) { // Keeping data for the cleanup let isKilled = false; const prevSigmaSettings = sigma.getSettings(); // Creating map container const mapLayerName = "layer-maplibre"; const mapContainer = sigma.createLayer(mapLayerName, "div", { style: { position: "absolute", inset: "0" }, // 'edges' is the first sigma layer beforeLayer: "edges", }); sigma.getContainer().prepend(mapContainer); // Initialize the map const map = new Map({ container: mapContainer, style: "https://demotiles.maplibre.org/style.json", center: [0, 0], zoom: 1, minPitch: 0, maxPitch: 0, ...(opts?.mapOptions || {}), }); // `stagePadding: 0` is mandatory, so the bbox of the map & Sigma is the same. sigma.setSetting("stagePadding", 0); // disable camera rotation sigma.setSetting("enableCameraRotation", false); // Function that change the given graph by generating the sigma x,y coords by taking the geo coordinates // and project them in the 2D space of the map function updateGraphCoordinates(graph: Graph) { graph.updateEachNodeAttributes((_node, attrs) => { const coords = latlngToGraph( map, opts?.getNodeLatLng ? opts.getNodeLatLng(attrs) : { lat: attrs.lat, lng: attrs.lng }, ); return { ...attrs, x: coords.x, y: coords.y, }; }); } // Function that sync the map with sigma function fnSyncMapWithSigma() { syncMapWithSigma(sigma, map); } // Function that sync sigma with map if it's needed function fnSyncSigmaWithMap() { if (!sigma.getCamera().isAnimated() && !map.isMoving()) { // Check that sigma & map are already in sync const southWest = graphToLatlng(map, sigma.viewportToGraph({ x: 0, y: sigma.getDimensions().height })); const northEast = graphToLatlng(map, sigma.viewportToGraph({ x: sigma.getDimensions().width, y: 0 })); const diff = Math.max( map.getBounds().getSouthWest().distanceTo(new LngLat(southWest.lng, southWest.lat)), map.getBounds().getNorthEast().distanceTo(new LngLat(northEast.lng, northEast.lat)), ); if (diff > 1) { syncSigmaWithMap(sigma, map); } } } // When sigma is resize, we need to update the graph coordinate (the ref has changed) // and recompute the zoom bounds function fnOnResize() { // Avoid sync map with sigma while we do the resize // otherwise there is a sideeffect... sigma.off("afterRender", fnSyncMapWithSigma); const center = map.getCenter(); // Ask the map to resize map.once("resize", () => { // NB: resize can change the center of the map, and we want to keep it map.setCenter(center); // Map ref has changed, we need to update the graph coordinates updateGraphCoordinates(sigma.getGraph()); // Do the sync fnSyncSigmaWithMap(); // Re-enable the map sync with sigma in the next frame setTimeout(() => { fnSyncMapWithSigma(); sigma.on("afterRender", fnSyncMapWithSigma); }, 0); }); map.resize(); } // Clean up function to remove everything function clean() { if (!isKilled) { isKilled = true; map.off("moveend", fnSyncSigmaWithMap); map.remove(); sigma.killLayer(mapLayerName); sigma.off("afterRender", fnSyncMapWithSigma); sigma.off("resize", fnOnResize); // Reset settings sigma.setSetting("stagePadding", prevSigmaSettings.stagePadding); sigma.setSetting("enableCameraRotation", prevSigmaSettings.enableCameraRotation); } } // Update the sigma graph for geospatial coords updateGraphCoordinates(sigma.getGraph()); // When the map is ready map.once("load", () => { // Compute sigma ratio bounds // /!\ must be done after the first map render map.once("moveend", () => { fnSyncSigmaWithMap(); }); // Do the first sync fnSyncMapWithSigma(); // At each render of sigma, we do the map sync sigma.on("afterRender", fnSyncMapWithSigma); // Listen on resize sigma.on("resize", fnOnResize); // Do the cleanup sigma.on("kill", clean); // Keep sigma camera on the map map.on("moveend", fnSyncSigmaWithMap); }); return { clean, map, updateGraphCoordinates, }; } export { graphToLatlng, latlngToGraph }; ================================================ FILE: packages/layer-maplibre/src/utils.ts ================================================ import { LngLatBounds, Map, MercatorCoordinate } from "maplibre-gl"; import { Sigma } from "sigma"; // See https://github.com/maplibre/maplibre-gl-js/blob/330ba249ec80e5ac05d1bc851c41b43bd575792e/src/geo/transform.ts#L16C14-L16C32 export const MAX_VALID_LATITUDE = 85.051129; /** * Given a geo point returns its graph coords. */ export function latlngToGraph(map: Map, coord: { lat: number; lng: number }): { x: number; y: number } { const data = MercatorCoordinate.fromLngLat(coord); return { x: data.x, // Y are reversed between geo / sigma y: map.getContainer().clientHeight - data.y, }; } /** * Given a graph coords returns its lat/lng coords. */ export function graphToLatlng(map: Map, coords: { x: number; y: number }): { lat: number; lng: number } { const mcoords = new MercatorCoordinate(coords.x, map.getContainer().clientHeight - coords.y, 0); const data = mcoords.toLngLat(); return { lat: data.lat, lng: data.lng }; } /** * BBOX sync : map to sigma */ export function syncSigmaWithMap(sigma: Sigma, map: Map): void { // Compute sigma center const center = sigma.viewportToFramedGraph(sigma.graphToViewport(latlngToGraph(map, map.getCenter()))); // Compute sigma ratio const mapBound = map.getBounds(); const northEast = sigma.graphToViewport(latlngToGraph(map, mapBound.getNorthEast())); const southWest = sigma.graphToViewport(latlngToGraph(map, mapBound.getSouthWest())); const viewportBoundDimension = { width: Math.abs(northEast.x - southWest.x), height: Math.abs(northEast.y - southWest.y), }; const viewportDim = sigma.getDimensions(); const ratio = Math.min(viewportBoundDimension.width / viewportDim.width, viewportBoundDimension.height / viewportDim.height) * sigma.getCamera().getState().ratio; sigma.getCamera().setState({ ...center, ratio: ratio }); } /** * BBOX sync : sigma to map */ export function syncMapWithSigma(sigma: Sigma, map: Map): void { const viewportDimensions = sigma.getDimensions(); // Graph BBox const graphBottomLeft = sigma.viewportToGraph({ x: 0, y: viewportDimensions.height }, { padding: 0 }); const graphTopRight = sigma.viewportToGraph({ x: viewportDimensions.width, y: 0 }, { padding: 0 }); // Geo BBox const geoSouthWest = graphToLatlng(map, graphBottomLeft); const geoNorthEast = graphToLatlng(map, graphTopRight); // Set map BBox const bounds = new LngLatBounds([geoSouthWest, geoNorthEast]); map.fitBounds(bounds, { duration: 0 }); } ================================================ FILE: packages/layer-maplibre/tsconfig.json ================================================ { "compilerOptions": { "target": "ESNext", // Specifies the JavaScript version to target when transpiling code. "useDefineForClassFields": true, // Enables the use of 'define' for class fields. "lib": ["ES2020", "DOM", "DOM.Iterable"], // Specifies the libraries available for the code. "module": "ESNext", // Defines the module system to use for code generation. "skipLibCheck": true, // Skips type checking of declaration files. /* Bundler mode */ "moduleResolution": "node", // Specifies how modules are resolved when bundling. "allowSyntheticDefaultImports": true, "allowImportingTsExtensions": true, // Allows importing TypeScript files with extensions. "resolveJsonModule": true, // Enables importing JSON modules. "isolatedModules": true, // Ensures each file is treated as a separate module. "noEmit": true, // Prevents TypeScript from emitting output files. /* Linting */ "strict": true, // Enables strict type checking. "noUnusedLocals": true, // Flags unused local variables. "noUnusedParameters": true, // Flags unused function parameters. "noFallthroughCasesInSwitch": true, // Requires handling all cases in a switch statement. "declaration": true // Generates declaration files for TypeScript. }, "include": ["src"], // Specifies the directory to include when searching for TypeScript files. "exclude": ["src/**/__docs__", "src/**/__test__"] } ================================================ FILE: packages/layer-webgl/.gitignore ================================================ node_modules dist ================================================ FILE: packages/layer-webgl/.npmignore ================================================ .gitignore node_modules src tsconfig.json ================================================ FILE: packages/layer-webgl/README.md ================================================ # Sigma.js - WebGL layers This package enables adding custom WebGL layers in [sigma.js](https://sigmajs.org): - `WebGLLayerProgram` is a tweaked version of the `Program` abstract class from sigma.js, and it facilitates writing custom programs; - `bindWebGLLayer` allows binding a `WebGLLayerProgram` to an existing sigma instance, and it returns a cleanup function. This package also exports some preexisting layers, that render various shapes: - `createContoursProgram` allows rendering contour lines as a background layer, around a set of given nodes, with one or multiple levels, and with of without fixed width levels separations. ## How to use Within your application that uses sigma.js, you can use [`@sigma/layer-webgl`](https://www.npmjs.com/package/@sigma/layer-webgl) as following: ```typescript import { createContoursProgram } from "@sigma/layer-webgl"; const graph = new Graph(); graph.addNode("john", { x: 0, y: 0, size: 4, label: "John", }); graph.addNode("jack", { x: 10, y: 20, size: 8, label: "Jack", }); graph.addEdge("jack", "john"); const renderer = new Sigma(graph, container); // Bind a custom layer to the renderer: bindWebGLLayer("metaballs", renderer, createContoursProgram(graph.nodes())); ``` Please check the related [Storybook](https://github.com/jacomyal/sigma.js/tree/main/packages/storybook/stories/3-additional-packages/layer-webgl) for more advanced examples. ================================================ FILE: packages/layer-webgl/package.json ================================================ { "name": "@sigma/layer-webgl", "version": "3.0.0", "description": "A package to help drawing custom WebGL layers with sigma.js", "main": "dist/sigma-layer-webgl.cjs.js", "module": "dist/sigma-layer-webgl.esm.js", "types": "dist/sigma-layer-webgl.cjs.d.ts", "files": [ "/dist" ], "sideEffects": false, "homepage": "https://www.sigmajs.org", "bugs": "http://github.com/jacomyal/sigma.js/issues", "repository": { "type": "git", "url": "http://github.com/jacomyal/sigma.js.git", "directory": "packages/layer-webgl" }, "keywords": [ "graph", "graphology", "sigma" ], "contributors": [ { "name": "Alexis Jacomy", "url": "http://github.com/jacomyal" } ], "license": "MIT", "preconstruct": { "entrypoints": [ "index.ts" ] }, "peerDependencies": { "sigma": ">=3.0.0-beta.24" }, "exports": { ".": { "module": "./dist/sigma-layer-webgl.esm.js", "import": "./dist/sigma-layer-webgl.cjs.mjs", "default": "./dist/sigma-layer-webgl.cjs.js" }, "./package.json": "./package.json" } } ================================================ FILE: packages/layer-webgl/src/bind-webgl-layer.ts ================================================ import Sigma from "sigma"; import { WebGLLayerProgramType } from "./webgl-layer-program"; /** * This function helps to bind a custom layer program to a Sigma instance. It returns a cleanup function. */ export default function bindWebGLLayer(id: string, renderer: Sigma, ProgramClass: WebGLLayerProgramType): () => void { let isCleaned = false; const canvas = renderer.createCanvas(id, { beforeLayer: "edges" }); const gl = renderer.createWebGLContext(id, { canvas }); const program = new ProgramClass(gl, null, renderer); // Bind lifecycle: const _afterProcess = () => { if (isCleaned) return; gl.useProgram(program.normalProgram.program); program.cacheDataUniforms(program.normalProgram); }; const _afterRender = () => { if (isCleaned) return; program.render(renderer.getRenderParams()); }; const _afterClear = () => { if (isCleaned) return; gl.clear(gl.COLOR_BUFFER_BIT); }; renderer.addListener("afterProcess", _afterProcess); renderer.addListener("afterRender", _afterRender); renderer.addListener("afterClear", _afterClear); // Cleaning: const _clean = () => { if (isCleaned) return; renderer.removeListener("afterProcess", _afterProcess); renderer.removeListener("afterRender", _afterRender); renderer.removeListener("afterClear", _afterClear); renderer.removeListener("kill", _clean); program.kill(); renderer.killLayer(id); isCleaned = true; }; renderer.addListener("kill", _clean); renderer.resize(true); renderer.refresh(); return _clean; } ================================================ FILE: packages/layer-webgl/src/contours/index.ts ================================================ import { Attributes } from "graphology-types"; import Sigma from "sigma"; import { ProgramInfo } from "sigma/rendering"; import { RenderParams } from "sigma/types"; import { colorToArray } from "sigma/utils"; import { WebGLLayerDefinition, WebGLLayerProgram, WebGLLayerProgramType } from "../webgl-layer-program"; import getFragmentShader from "./shader-frag"; import { ContoursOptions, DEFAULT_CONTOURS_OPTIONS } from "./types"; export * from "./types"; export { default as getContoursFragmentShader } from "./shader-frag"; export function createContoursProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(nodes: string[], options?: Partial): WebGLLayerProgramType { const { levels, radius, zoomToRadiusRatioFunction, border, feather } = { ...DEFAULT_CONTOURS_OPTIONS, ...(options || {}), }; return class ContoursProgramClass< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends WebGLLayerProgram { nodesTexture: WebGLTexture; constructor( gl: WebGLRenderingContext | WebGL2RenderingContext, pickingBuffer: WebGLFramebuffer | null, renderer: Sigma, ) { if (!(gl instanceof WebGL2RenderingContext)) throw new Error("createContoursProgram only works with WebGL2"); super(gl, pickingBuffer, renderer); this.nodesTexture = gl.createTexture() as WebGLTexture; gl.bindTexture(gl.TEXTURE_2D, this.nodesTexture); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.NEAREST); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.NEAREST); } private getNodesPositionArray(): Float32Array { const res = new Float32Array(nodes.length * 2); nodes.forEach((n, i) => { const nodePosition = this.renderer.getNodeDisplayData(n); if (!nodePosition) throw new Error(`createContoursProgram: Node ${n} not found`); res[2 * i] = nodePosition.x; res[2 * i + 1] = nodePosition.y; }); return res; } protected renderProgram(params: RenderParams, programInfo: ProgramInfo) { const gl = programInfo.gl; gl.activeTexture(gl.TEXTURE0); gl.bindTexture(gl.TEXTURE_2D, this.nodesTexture); super.renderProgram(params, programInfo); } getCustomLayerDefinition(): WebGLLayerDefinition { return { FRAGMENT_SHADER_SOURCE: getFragmentShader({ levels, border, feather, nodesCount: nodes.length }), DATA_UNIFORMS: [ "u_nodesPosition", "u_radius", ...levels.map((_, i) => `u_levelColor_${i + 1}`), ...(border ? ["u_borderColor"] : []), ], CAMERA_UNIFORMS: ["u_invMatrix", "u_width", "u_height", "u_correctionRatio", "u_zoomModifier"], }; } setCameraUniforms( { invMatrix, correctionRatio, zoomRatio }: RenderParams, { gl, uniformLocations: { u_invMatrix, u_width, u_height, u_correctionRatio, u_zoomModifier } }: ProgramInfo, ) { gl.uniform1f(u_width, gl.canvas.width); gl.uniform1f(u_height, gl.canvas.height); gl.uniform1f(u_correctionRatio, correctionRatio); gl.uniform1f(u_zoomModifier, 1 / zoomToRadiusRatioFunction(zoomRatio)); gl.uniformMatrix3fv(u_invMatrix, false, invMatrix); } cacheDataUniforms({ gl, uniformLocations }: ProgramInfo) { const { u_radius } = uniformLocations; gl.uniform1f(u_radius, radius); gl.bindTexture(gl.TEXTURE_2D, this.nodesTexture); gl.texImage2D( gl.TEXTURE_2D, 0, WebGL2RenderingContext.RG32F, nodes.length, 1, 0, WebGL2RenderingContext.RG, gl.FLOAT, this.getNodesPositionArray(), ); levels.forEach(({ color }, i) => { const location = uniformLocations[`u_levelColor_${i + 1}`]; const [r, g, b, a] = colorToArray(color || "#0000"); gl.uniform4f(location, r / 255, g / 255, b / 255, a / 255); }); if (border) { const [r, g, b, a] = colorToArray(border.color); gl.uniform4f(uniformLocations.u_borderColor, r / 255, g / 255, b / 255, a / 255); } } }; } ================================================ FILE: packages/layer-webgl/src/contours/shader-frag.ts ================================================ import { numberToGLSLFloat } from "sigma/rendering"; import { ContoursOptions } from "./types"; export default function getFragmentShader({ nodesCount, feather, border, levels, }: { nodesCount: number; feather: ContoursOptions["feather"]; levels: ContoursOptions["levels"]; border: ContoursOptions["border"]; }) { const levelsDesc = levels.map((o) => o.threshold).sort((a, b) => b - a); const levelsAsc = levelsDesc.slice(0).reverse(); const limits = levelsAsc.map((threshold, i, a) => (i < a.length - 1 ? (threshold + a[i + 1]) / 2 : threshold + 1)); // language=GLSL const SHADER = /*glsl*/ `#version 300 es #define NODES_COUNT ${nodesCount} #define LEVELS_COUNT ${levelsAsc.length} #define PI 3.141592653589793238 precision highp float; const vec4 u_levelColor_${levelsDesc.length + 1} = vec4(0.0, 0.0, 0.0, 0.0); const float incLevels[LEVELS_COUNT] = float[](${levelsAsc.map((o) => numberToGLSLFloat(o)).join(",")}); const float incLimits[LEVELS_COUNT] = float[](${limits.map((o) => numberToGLSLFloat(o)).join(",")}); // Data: uniform sampler2D u_nodesTexture; uniform float u_radius; // Camera: uniform mat3 u_invMatrix; uniform float u_width; uniform float u_height; uniform float u_correctionRatio; uniform float u_zoomModifier; // Levels uniforms: ${levelsDesc.map((_, i) => `uniform vec4 u_levelColor_${i + 1};`).join("\n")} // Border color: ${border ? `uniform vec4 u_borderColor;` : ""} // Output out vec4 fragColor; // Library: float linearstep(float edge0, float edge1, float x) { return clamp((x - edge0) / (edge1 - edge0), 0.0, 1.0); } float hypot(vec2 v) { float x = abs(v.x); float y = abs(v.y); float t = min(x, y); x = max(x, y); t = t / x; return x * sqrt(1.0 + t * t); } // The explanations on how to get fixed width contour lines in a GLSL fragment shader come // from @rreuser: // https://observablehq.com/@rreusser/locally-scaled-domain-coloring-part-1-contour-plots float contour(float score, float thickness, float feather) { float level = incLevels[0]; for (int i = 0; i < LEVELS_COUNT - 1; i++) { if (score >= incLimits[i]) { level = incLevels[i + 1]; } else { break; } } float gradient = (atan(score)) * 2.0 / PI; // This function is basically the same function as gradient, but drops to negative when it // reaches the middle of two consecutive levels, such that it is 0 for each level. This // allows having nice anti-aliased fixed width contour lines: float normalizedGradient = (atan(score) - atan(level)) * 2.0 / PI; float screenSpaceGradient = hypot(vec2(dFdx(gradient), dFdy(gradient))); return linearstep( 0.5 * (thickness + feather), 0.5 * (thickness - feather), (0.5 - abs(fract(normalizedGradient) - 0.5)) / screenSpaceGradient ); } // Actual shader code: void main() { vec2 position = (u_invMatrix * vec3(gl_FragCoord.xy * 2.0 / vec2(u_width, u_height) - vec2(1.0, 1.0), 1)).xy; float score = 0.0; float factor = 0.5 / u_correctionRatio; float radius = u_radius * u_zoomModifier; float correctedRadius = radius / factor; float correctedRadiusSquare = correctedRadius * correctedRadius; for (int i = 0; i < NODES_COUNT; i++) { vec2 nodePos = texelFetch(u_nodesTexture, ivec2(i, 0), 0).xy; vec2 diff = position - nodePos; // Early exit check with Manhattan distance: if (diff.x >= correctedRadius || diff.y >= correctedRadius) continue; float dSquare = dot(diff, diff); // Early exit check with squared distance: if (dSquare >= correctedRadiusSquare) continue; float d = sqrt(dSquare) * factor; score += smoothstep(radius, 0.0, d); } vec4 levelColor = u_levelColor_${levelsDesc.length + 1}; vec4 nextColor = u_levelColor_${levelsDesc.length + 1}; ${levelsDesc .map( (threshold, i) => `if (score > ${numberToGLSLFloat(threshold)}) { levelColor = u_levelColor_${i + 1}; ${!border ? `nextColor = score > ${numberToGLSLFloat(limits[i])} ? u_levelColor_${i + 1} : u_levelColor_${i + 2};` : ""} }`, ) .join(" else ")} float t = contour(score, ${numberToGLSLFloat(border ? border.thickness : 0)}, ${numberToGLSLFloat(feather)}); fragColor = mix(levelColor, ${border ? "u_borderColor" : "nextColor"}, t); } `; return SHADER; } ================================================ FILE: packages/layer-webgl/src/contours/types.ts ================================================ export type ContoursOptions = { radius: number; feather: number; zoomToRadiusRatioFunction: (ratio: number) => number; levels: { color?: string; threshold: number; }[]; border?: { color: string; thickness: number; }; }; export const DEFAULT_CONTOURS_OPTIONS: ContoursOptions = { radius: 100, feather: 1.5, zoomToRadiusRatioFunction: (ratio) => Math.sqrt(ratio), levels: [ { color: "#cccccc", threshold: 0.5, }, ], }; ================================================ FILE: packages/layer-webgl/src/index.ts ================================================ // Custom layer utils: export * from "./webgl-layer-program"; export { default as bindWebGLLayer } from "./bind-webgl-layer"; // Pre-existing custom layers: export * from "./contours"; ================================================ FILE: packages/layer-webgl/src/webgl-layer-program/index.ts ================================================ import { Attributes } from "graphology-types"; import Sigma from "sigma"; import { Program, ProgramDefinition, type ProgramInfo } from "sigma/rendering"; import { RenderParams } from "sigma/types"; import getVertexShader from "./shader-vert"; const QUAD_VERTICES = [-1, 1, 1, 1, -1, -1, 1, -1]; export type WebGLLayerDefinition = { FRAGMENT_SHADER_SOURCE: string; DATA_UNIFORMS: string[]; CAMERA_UNIFORMS: string[]; }; /** * This program is based on the base Program from Sigma, but instead of using `this.array` to iterate over the vertices, * it is bound to some uniform directly for the fragment shader. * * So, when extending this new CustomLayerProgram abstract class: * - Do not implement `getDefinition`, implement `getCustomLayerDefinition` instead * - Do not implement `setUniforms`, implement `setCameraUniforms` and `cacheDataUniforms` instead */ export abstract class WebGLLayerProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends Program { // Methods to implement: abstract cacheDataUniforms(programInfo: ProgramInfo): void; abstract setCameraUniforms(params: RenderParams, programInfo: ProgramInfo): void; abstract getCustomLayerDefinition(): WebGLLayerDefinition; constructor( gl: WebGLRenderingContext | WebGL2RenderingContext, pickingBuffer: WebGLFramebuffer | null, renderer: Sigma, ) { super(gl, pickingBuffer, renderer); this.verticesCount = QUAD_VERTICES.length / 2; } // Internal rendering management overrides: getDefinition(): ProgramDefinition { const { FRAGMENT_SHADER_SOURCE, CAMERA_UNIFORMS, DATA_UNIFORMS } = this.getCustomLayerDefinition(); return { UNIFORMS: [...CAMERA_UNIFORMS, ...DATA_UNIFORMS], FRAGMENT_SHADER_SOURCE, VERTEX_SHADER_SOURCE: getVertexShader(), VERTICES: 6, METHOD: WebGLRenderingContext.TRIANGLE_STRIP, ATTRIBUTES: [{ name: "a_position", size: 2, type: WebGLRenderingContext.FLOAT }], }; } hasNothingToRender() { return false; } setUniforms(params: RenderParams, programInfo: ProgramInfo) { this.setCameraUniforms(params, programInfo); } protected bindProgram(program: ProgramInfo): void { const { gl, buffer } = program; // Bind base quad data: gl.bindBuffer(gl.ARRAY_BUFFER, buffer); let offset = 0; this.ATTRIBUTES.forEach((attr) => (offset += this.bindAttribute(attr, program, offset))); gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(QUAD_VERTICES), gl.STATIC_DRAW); } } class _WebGLLayerProgramClass< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends WebGLLayerProgram { getCustomLayerDefinition(): WebGLLayerDefinition { return { FRAGMENT_SHADER_SOURCE: "", DATA_UNIFORMS: [], CAMERA_UNIFORMS: [], }; } setCameraUniforms(_params: RenderParams, _programInfo: ProgramInfo): void { return undefined; } cacheDataUniforms(_programInfo: ProgramInfo): void { return undefined; } } export type WebGLLayerProgramType< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > = typeof _WebGLLayerProgramClass; ================================================ FILE: packages/layer-webgl/src/webgl-layer-program/shader-vert.ts ================================================ export default function getVertexShader() { // language=GLSL const SHADER = /*glsl*/ `#version 300 es in vec2 a_position; void main() { gl_Position = vec4(a_position, 0.0, 1.0); } `; return SHADER; } ================================================ FILE: packages/layer-webgl/tsconfig.json ================================================ { "compilerOptions": { "target": "ESNext", "useDefineForClassFields": true, "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, /* Bundler mode */ "moduleResolution": "node", "allowSyntheticDefaultImports": true, "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, /* Linting */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "declaration": true }, "include": ["src"], "exclude": ["src/**/__docs__", "src/**/__test__"] } ================================================ FILE: packages/node-border/.gitignore ================================================ node_modules dist ================================================ FILE: packages/node-border/.npmignore ================================================ .gitignore node_modules src tsconfig.json ================================================ FILE: packages/node-border/README.md ================================================ # Sigma.js - Node border renderer This package contains a node border renderer for [sigma.js](https://sigmajs.org). It handles various aspects, such as: - Variable or fixed border thickness - Relative (ie percentage of the nodes radius) or "pixels" border thickness - Variable or fixed colors - Multiple borders The shaders are generated according to these varying options, so the main export is **`createNodeBorderProgram`**, a factory that creates a renderer class. It also exports one core class, built with the default settings, to help using it in an easier way: `NodeBorderProgram` is configured to render nodes with a 10% border of color `borderColor` (read in the nodes data), and filled with the nodes `color`. ## How to use Within your application that uses sigma.js, you can use [`@sigma/node-border`](https://www.npmjs.com/package/@sigma/node-border) as following: ```typescript import { NodeBorderProgram } from "@sigma/node-border"; const graph = new Graph(); graph.addNode("some-node", { x: 0, y: 0, size: 10, type: "border", label: "Some node", color: "blue", borderColor: "red", }); const sigma = new Sigma(graph, container, { nodeProgramClasses: { border: NodeBorderProgram, }, }); ``` Please check the related [Storybook](https://github.com/jacomyal/sigma.js/tree/main/packages/storybook/stories/3-additional-packages/node-border) for more advanced examples. ================================================ FILE: packages/node-border/package.json ================================================ { "name": "@sigma/node-border", "version": "3.0.0", "description": "A node program that renders concentric discs in nodes for sigma.js", "main": "dist/sigma-node-border.cjs.js", "module": "dist/sigma-node-border.esm.js", "types": "dist/sigma-node-border.cjs.d.ts", "files": [ "/dist" ], "sideEffects": false, "homepage": "https://www.sigmajs.org", "bugs": "http://github.com/jacomyal/sigma.js/issues", "repository": { "type": "git", "url": "http://github.com/jacomyal/sigma.js.git", "directory": "packages/node-border" }, "keywords": [ "graph", "graphology", "sigma" ], "contributors": [ { "name": "Alexis Jacomy", "url": "http://github.com/jacomyal" } ], "license": "MIT", "preconstruct": { "entrypoints": [ "index.ts" ] }, "peerDependencies": { "sigma": ">=3.0.0-beta.17" }, "exports": { ".": { "module": "./dist/sigma-node-border.esm.js", "import": "./dist/sigma-node-border.cjs.mjs", "default": "./dist/sigma-node-border.cjs.js" }, "./package.json": "./package.json" } } ================================================ FILE: packages/node-border/src/factory.ts ================================================ import { Attributes } from "graphology-types"; import { NodeProgram, NodeProgramType, ProgramInfo } from "sigma/rendering"; import { NodeDisplayData, RenderParams } from "sigma/types"; import { colorToArray, floatColor } from "sigma/utils"; import getFragmentShader from "./shader-frag"; import getVertexShader from "./shader-vert"; import { CreateNodeBorderProgramOptions, DEFAULT_COLOR, DEFAULT_CREATE_NODE_BORDER_OPTIONS } from "./utils"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; export default function createNodeBorderProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(inputOptions?: Partial>): NodeProgramType { const options: CreateNodeBorderProgramOptions = { ...(DEFAULT_CREATE_NODE_BORDER_OPTIONS as CreateNodeBorderProgramOptions), ...(inputOptions || {}), }; const { borders, drawLabel, drawHover } = options; const UNIFORMS = [ "u_sizeRatio", "u_correctionRatio", "u_matrix", ...borders.flatMap(({ color }, i) => ("value" in color ? [`u_borderColor_${i + 1}`] : [])), ]; return class NodeBorderProgram extends NodeProgram<(typeof UNIFORMS)[number], N, E, G> { static readonly ANGLE_1 = 0; static readonly ANGLE_2 = (2 * Math.PI) / 3; static readonly ANGLE_3 = (4 * Math.PI) / 3; drawLabel = drawLabel; drawHover = drawHover; getDefinition() { return { VERTICES: 3, VERTEX_SHADER_SOURCE: getVertexShader(options), FRAGMENT_SHADER_SOURCE: getFragmentShader(options), METHOD: WebGLRenderingContext.TRIANGLES, UNIFORMS, ATTRIBUTES: [ { name: "a_position", size: 2, type: FLOAT }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_size", size: 1, type: FLOAT }, ...borders.flatMap(({ color }, i) => "attribute" in color ? [{ name: `a_borderColor_${i + 1}`, size: 4, type: UNSIGNED_BYTE, normalized: true }] : [], ), ...borders.flatMap(({ size }, i) => "attribute" in size ? [{ name: `a_borderSize_${i + 1}`, size: 1, type: FLOAT }] : [], ), ], CONSTANT_ATTRIBUTES: [{ name: "a_angle", size: 1, type: FLOAT }], CONSTANT_DATA: [[NodeBorderProgram.ANGLE_1], [NodeBorderProgram.ANGLE_2], [NodeBorderProgram.ANGLE_3]], }; } processVisibleItem(nodeIndex: number, startIndex: number, data: NodeDisplayData) { const array = this.array; array[startIndex++] = data.x; array[startIndex++] = data.y; array[startIndex++] = nodeIndex; array[startIndex++] = data.size; borders.forEach(({ color }) => { if ("attribute" in color) array[startIndex++] = floatColor(data[color.attribute as "color"] || color.defaultValue || DEFAULT_COLOR); }); borders.forEach(({ size }) => { if ("attribute" in size) array[startIndex++] = data[size.attribute as "size"] || size.defaultValue; }); } setUniforms(params: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_sizeRatio, u_correctionRatio, u_matrix } = uniformLocations; gl.uniform1f(u_correctionRatio, params.correctionRatio); gl.uniform1f(u_sizeRatio, params.sizeRatio); gl.uniformMatrix3fv(u_matrix, false, params.matrix); borders.forEach(({ color }, i) => { if ("value" in color) { const location = uniformLocations[`u_borderColor_${i + 1}`]; const [r, g, b, a] = colorToArray(color.value); gl.uniform4f(location, r / 255, g / 255, b / 255, a / 255); } }); } }; } ================================================ FILE: packages/node-border/src/index.ts ================================================ import { NodeProgramType } from "sigma/rendering"; import createNodeBorderProgram from "./factory"; export { default as createNodeBorderProgram } from "./factory"; export const NodeBorderProgram: NodeProgramType = createNodeBorderProgram(); ================================================ FILE: packages/node-border/src/shader-frag.ts ================================================ import { numberToGLSLFloat } from "sigma/rendering"; import { CreateNodeBorderProgramOptions, DEFAULT_BORDER_SIZE_MODE, NodeBorderSize } from "./utils"; export default function getFragmentShader({ borders }: CreateNodeBorderProgramOptions) { const fillCounts = numberToGLSLFloat(borders.filter(({ size }) => "fill" in size).length); // language=GLSL const SHADER = /*glsl*/ ` precision highp float; varying vec2 v_diffVector; varying float v_radius; #ifdef PICKING_MODE varying vec4 v_color; #else // For normal mode, we use the border colors defined in the program: ${borders.flatMap(({ size }, i) => ("attribute" in size ? [`varying float v_borderSize_${i + 1};`] : [])).join("\n")} ${borders .flatMap(({ color }, i) => "attribute" in color ? [`varying vec4 v_borderColor_${i + 1};`] : "value" in color ? [`uniform vec4 u_borderColor_${i + 1};`] : [], ) .join("\n")} #endif uniform float u_correctionRatio; const float bias = 255.0 / 254.0; const vec4 transparent = vec4(0.0, 0.0, 0.0, 0.0); void main(void) { float dist = length(v_diffVector); float aaBorder = 2.0 * u_correctionRatio; float v_borderSize_0 = v_radius; vec4 v_borderColor_0 = transparent; // No antialiasing for picking mode: #ifdef PICKING_MODE if (dist > v_radius) gl_FragColor = transparent; else { gl_FragColor = v_color; gl_FragColor.a *= bias; } #else // Sizes: ${borders .flatMap(({ size }, i) => { if ("fill" in size) return []; size = size as Exclude; const value = "attribute" in size ? `v_borderSize_${i + 1}` : numberToGLSLFloat(size.value); const factor = (size.mode || DEFAULT_BORDER_SIZE_MODE) === "pixels" ? "u_correctionRatio" : "v_radius"; return [` float borderSize_${i + 1} = ${factor} * ${value};`]; }) .join("\n")} // Now, let's split the remaining space between "fill" borders: float fillBorderSize = (v_radius - (${borders .flatMap(({ size }, i) => (!("fill" in size) ? [`borderSize_${i + 1}`] : [])) .join(" + ")}) ) / ${fillCounts}; ${borders.flatMap(({ size }, i) => ("fill" in size ? [` float borderSize_${i + 1} = fillBorderSize;`] : [])).join("\n")} // Finally, normalize all border sizes, to start from the full size and to end with the smallest: float adjustedBorderSize_0 = v_radius; ${borders.map((_, i) => ` float adjustedBorderSize_${i + 1} = adjustedBorderSize_${i} - borderSize_${i + 1};`).join("\n")} // Colors: vec4 borderColor_0 = transparent; ${borders .map(({ color }, i) => { const res: string[] = []; if ("attribute" in color) { res.push(` vec4 borderColor_${i + 1} = v_borderColor_${i + 1};`); } else if ("transparent" in color) { res.push(` vec4 borderColor_${i + 1} = vec4(0.0, 0.0, 0.0, 0.0);`); } else { res.push(` vec4 borderColor_${i + 1} = u_borderColor_${i + 1};`); } res.push(` borderColor_${i + 1}.a *= bias;`); res.push(` if (borderSize_${i + 1} <= 1.0 * u_correctionRatio) { borderColor_${i + 1} = borderColor_${i}; }`); return res.join("\n"); }) .join("\n")} if (dist > adjustedBorderSize_0) { gl_FragColor = borderColor_0; } else ${borders .map( (_, i) => `if (dist > adjustedBorderSize_${i} - aaBorder) { gl_FragColor = mix(borderColor_${i + 1}, borderColor_${i}, (dist - adjustedBorderSize_${i} + aaBorder) / aaBorder); } else if (dist > adjustedBorderSize_${i + 1}) { gl_FragColor = borderColor_${i + 1}; } else `, ) .join("")} { /* Nothing to add here */ } #endif } `; return SHADER; } ================================================ FILE: packages/node-border/src/shader-vert.ts ================================================ import { CreateNodeBorderProgramOptions } from "./utils"; export default function getVertexShader({ borders }: CreateNodeBorderProgramOptions) { // language=GLSL const SHADER = /*glsl*/ ` attribute vec2 a_position; attribute float a_size; attribute float a_angle; uniform mat3 u_matrix; uniform float u_sizeRatio; uniform float u_correctionRatio; varying vec2 v_diffVector; varying float v_radius; #ifdef PICKING_MODE attribute vec4 a_id; varying vec4 v_color; #else ${borders .flatMap(({ size }, i) => "attribute" in size ? [`attribute float a_borderSize_${i + 1};`, `varying float v_borderSize_${i + 1};`] : [], ) .join("\n")} ${borders .flatMap(({ color }, i) => "attribute" in color ? [`attribute vec4 a_borderColor_${i + 1};`, `varying vec4 v_borderColor_${i + 1};`] : [], ) .join("\n")} #endif const float bias = 255.0 / 254.0; const vec4 transparent = vec4(0.0, 0.0, 0.0, 0.0); void main() { float size = a_size * u_correctionRatio / u_sizeRatio * 4.0; vec2 diffVector = size * vec2(cos(a_angle), sin(a_angle)); vec2 position = a_position + diffVector; gl_Position = vec4( (u_matrix * vec3(position, 1)).xy, 0, 1 ); v_radius = size / 2.0; v_diffVector = diffVector; #ifdef PICKING_MODE v_color = a_id; #else ${borders .flatMap(({ size }, i) => ("attribute" in size ? [` v_borderSize_${i + 1} = a_borderSize_${i + 1};`] : [])) .join("\n")} ${borders .flatMap(({ color }, i) => ("attribute" in color ? [` v_borderColor_${i + 1} = a_borderColor_${i + 1};`] : [])) .join("\n")} #endif } `; return SHADER; } ================================================ FILE: packages/node-border/src/utils.ts ================================================ import { Attributes } from "graphology-types"; import { NodeHoverDrawingFunction, NodeLabelDrawingFunction } from "sigma/rendering"; export type NodeBorderSizeMode = "relative" | "pixels"; export const DEFAULT_BORDER_SIZE_MODE: NodeBorderSizeMode = "relative"; export type NodeBorderColor = { value: string } | { attribute: string; defaultValue?: string } | { transparent: true }; export type NodeBorderSize = | { value: number; mode?: NodeBorderSizeMode } | { attribute: string; defaultValue: number; mode?: NodeBorderSizeMode } | { fill: true }; export interface CreateNodeBorderProgramOptions< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > { borders: { color: NodeBorderColor; size: NodeBorderSize; }[]; // Allows overriding drawLabel and drawHover returned class methods. drawLabel: NodeLabelDrawingFunction | undefined; drawHover: NodeHoverDrawingFunction | undefined; } export const DEFAULT_CREATE_NODE_BORDER_OPTIONS: CreateNodeBorderProgramOptions = { drawLabel: undefined, drawHover: undefined, borders: [ { size: { value: 0.1 }, color: { attribute: "borderColor" } }, { size: { fill: true }, color: { attribute: "color" } }, ], }; export const DEFAULT_COLOR = "#000000"; ================================================ FILE: packages/node-border/tsconfig.json ================================================ { "compilerOptions": { "target": "ESNext", // Specifies the JavaScript version to target when transpiling code. "useDefineForClassFields": true, // Enables the use of 'define' for class fields. "lib": ["ES2020", "DOM", "DOM.Iterable"], // Specifies the libraries available for the code. "module": "ESNext", // Defines the module system to use for code generation. "skipLibCheck": true, // Skips type checking of declaration files. /* Bundler mode */ "moduleResolution": "node", // Specifies how modules are resolved when bundling. "allowSyntheticDefaultImports": true, "allowImportingTsExtensions": true, // Allows importing TypeScript files with extensions. "resolveJsonModule": true, // Enables importing JSON modules. "isolatedModules": true, // Ensures each file is treated as a separate module. "noEmit": true, // Prevents TypeScript from emitting output files. /* Linting */ "strict": true, // Enables strict type checking. "noUnusedLocals": true, // Flags unused local variables. "noUnusedParameters": true, // Flags unused function parameters. "noFallthroughCasesInSwitch": true, // Requires handling all cases in a switch statement. "declaration": true // Generates declaration files for TypeScript. }, "include": ["src"], // Specifies the directory to include when searching for TypeScript files. "exclude": ["src/**/__docs__", "src/**/__test__"] } ================================================ FILE: packages/node-image/.gitignore ================================================ node_modules dist ================================================ FILE: packages/node-image/.npmignore ================================================ .gitignore node_modules src tsconfig.json ================================================ FILE: packages/node-image/README.md ================================================ # Sigma.js - Node image renderer This package contains a node image renderer for [sigma.js](https://sigmajs.org). Images are stored in a [textures atlas](https://webglfundamentals.org/webgl/lessons/webgl-3d-textures.html). The atlas is bound to the class and not the instance, so that it is preserved even when the sigma instance is respawned. For that reason, and to allow using different renderers (bound to different atlas), the main export is **`createNodeImageProgram`**, a factory that creates a renderer class. Also, since there is a [maximum texture size](https://www.khronos.org/opengl/wiki/Texture#:~:text=GL_MAX_TEXTURE_SIZE), the atlas can use multiple textures at once. It also exports two core classes, built with the proper settings, to help using it in an easier way: - `NodeImageProgram` is configured to render images, with the nodes `color` used as fallback background. It is good to render user avatars, or thumbnails, for instance; - `NodePictogramProgram` is configured to render pictograms, with the nodes `color` used to color the image pixels. It is good to render icons within the nodes. ## How to use Within your application that uses sigma.js, you can use [`@sigma/node-image`](https://www.npmjs.com/package/@sigma/node-image) as following: ```typescript import { NodeImageProgram } from "@sigma/node-image"; const graph = new Graph(); graph.addNode("cat", { x: 0, y: 0, size: 10, type: "image", label: "Cat", image: "https://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Sheba1.JPG/800px-Sheba1.JPG", }); const sigma = new Sigma(graph, container, { nodeProgramClasses: { image: NodeImageProgram, }, }); ``` Please check the related [Storybook](https://github.com/jacomyal/sigma.js/tree/main/packages/storybook/stories/3-additional-packages/node-image) for more advanced examples. ## Factory options - `drawingMode`(`"background" | "color"`, default: `"background"`): When `"background"`, the node color is used as fallback background. When `"color"`, the node color is used to color the image pixels. - `size` (`{ mode: "auto" } | { mode: "max"; value: number } | { mode: "force"; value: number }`, default: `{ mode: "max", value: 512 }`): If mode `"auto"`, images will always be displayed with their given size. If mode `"force"`, images will always be scaled to the given value. If mode `"max"`, images larger than the given value will be downscaled. - `objectFit` (`"contain" | "cover" | "fill"`, default: `"cover"`): Tries to mimic the [related CSS property](https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit). - `correctCentering` (`boolean`, default: `false`): If `true`, the images are centered on the barycenter of all its non-transparent pixels. - `keepWithinCircle`(`boolean`, default: `true`): If `true`, the images are always cropped to the circle. - `padding` (`number`, default: `0`): The padding should be expressed as a `[0, 1]` percentage. A padding of `0.05` will always be 5% of the diameter of a node. - `drawLabel`(`NodeLabelDrawingFunction | undefined`, default: `undefined`): Will override the `drawLabel` method from the returned class. - `drawHover` (`NodeHoverDrawingFunction | undefined`, default: `undefined`): Will override the `drawHover` method from the returned class. - `colorAttribute` (`string`, default: `"color"`): Allows using a different node attribute name than `"color"`. - `imageAttribute` (`string`, default: `"image"`): Allows using a different node attribute name than `"image"`. - `maxTextureSize` (`number`, default: `4096`): Allows specifying a custom maximum texture size. - `debounceTimeout` (`number`, default: `500`): Allows customizing the minimal time between two consecutive textures generations. ================================================ FILE: packages/node-image/package.json ================================================ { "name": "@sigma/node-image", "version": "3.0.0", "description": "A node program that renders images for sigma.js", "main": "dist/sigma-node-image.cjs.js", "module": "dist/sigma-node-image.esm.js", "types": "dist/sigma-node-image.cjs.d.ts", "files": [ "/dist" ], "sideEffects": false, "homepage": "https://www.sigmajs.org", "bugs": "http://github.com/jacomyal/sigma.js/issues", "repository": { "type": "git", "url": "http://github.com/jacomyal/sigma.js.git", "directory": "packages/node-image" }, "keywords": [ "graph", "graphology", "sigma" ], "contributors": [ { "name": "Alexis Jacomy", "url": "http://github.com/jacomyal" }, { "name": "Guillaume Plique", "url": "http://github.com/Yomguithereal" } ], "license": "MIT", "preconstruct": { "entrypoints": [ "index.ts" ] }, "peerDependencies": { "sigma": ">=3.0.0-beta.10" }, "exports": { ".": { "module": "./dist/sigma-node-image.esm.js", "import": "./dist/sigma-node-image.cjs.mjs", "default": "./dist/sigma-node-image.cjs.js" }, "./package.json": "./package.json" } } ================================================ FILE: packages/node-image/src/factory.ts ================================================ import { Attributes } from "graphology-types"; import Sigma from "sigma"; import { NodeHoverDrawingFunction, NodeLabelDrawingFunction, NodeProgram, NodeProgramType, ProgramInfo, } from "sigma/rendering"; import { NodeDisplayData, RenderParams } from "sigma/types"; import { floatColor } from "sigma/utils"; import getFragmentShader from "./shader-frag"; import VERTEX_SHADER_SOURCE from "./shader-vert"; import { Atlas, DEFAULT_TEXTURE_MANAGER_OPTIONS, TextureManager, TextureManagerOptions } from "./texture"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; interface CreateNodeImageProgramOptions< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends TextureManagerOptions { // - If "background", color will be used to color full node behind the image. // - If "color", color will be used to color image pixels (for pictograms) drawingMode: "background" | "color"; // If true, the images are always cropped to the circle keepWithinCircle: boolean; // Allows overriding drawLabel and drawHover returned class methods. drawLabel: NodeLabelDrawingFunction | undefined; drawHover: NodeHoverDrawingFunction | undefined; // The padding should be expressed as a [0, 1] percentage. // A padding of 0.05 will always be 5% of the diameter of a node. padding: number; // Allows using a different color attribute name. colorAttribute: string; // Allows using a different image attribute name. imageAttribute: string; } const DEFAULT_CREATE_NODE_IMAGE_OPTIONS: CreateNodeImageProgramOptions = { ...DEFAULT_TEXTURE_MANAGER_OPTIONS, drawingMode: "background", keepWithinCircle: true, drawLabel: undefined, drawHover: undefined, padding: 0, colorAttribute: "color", imageAttribute: "image", }; const UNIFORMS = [ "u_sizeRatio", "u_correctionRatio", "u_cameraAngle", "u_percentagePadding", "u_matrix", "u_colorizeImages", "u_keepWithinCircle", "u_atlas", ] as const; /** * To share the texture between the program instances of the graph and the * hovered nodes (to prevent some flickering, mostly), this program must be * "built" for each sigma instance: */ export default function createNodeImageProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(options?: Partial>): NodeProgramType { // Compute effective MAX_TEXTURE_SIZE from the current WebGL context: const gl = document.createElement("canvas").getContext("webgl") as WebGLRenderingContext; const defaultMaxTextureSize = Math.min( gl.getParameter(gl.MAX_TEXTURE_SIZE), DEFAULT_TEXTURE_MANAGER_OPTIONS.maxTextureSize, ); (gl.canvas as HTMLCanvasElement).remove(); const { drawHover, drawLabel, drawingMode, keepWithinCircle, padding, colorAttribute, imageAttribute, ...textureManagerOptions }: CreateNodeImageProgramOptions = { ...(DEFAULT_CREATE_NODE_IMAGE_OPTIONS as CreateNodeImageProgramOptions), ...{ maxTextureSize: defaultMaxTextureSize }, ...(options || {}), }; /** * This texture manager is shared between all instances of this exact class, * returned by this call to createNodeProgramImage. This means that * remounting the sigma instance will not reload the images and regenerate * the texture. */ const textureManager = new TextureManager(textureManagerOptions); return class NodeImageProgram extends NodeProgram<(typeof UNIFORMS)[number], N, E, G> { static readonly ANGLE_1 = 0; static readonly ANGLE_2 = (2 * Math.PI) / 3; static readonly ANGLE_3 = (4 * Math.PI) / 3; drawLabel = drawLabel; drawHover = drawHover; static textureManager = textureManager; getDefinition() { return { VERTICES: 3, VERTEX_SHADER_SOURCE, FRAGMENT_SHADER_SOURCE: getFragmentShader({ texturesCount: textureManager.getTextures().length }), METHOD: WebGLRenderingContext.TRIANGLES, UNIFORMS, ATTRIBUTES: [ { name: "a_position", size: 2, type: FLOAT }, { name: "a_size", size: 1, type: FLOAT }, { name: "a_color", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_texture", size: 4, type: FLOAT }, { name: "a_textureIndex", size: 1, type: FLOAT }, ], CONSTANT_ATTRIBUTES: [{ name: "a_angle", size: 1, type: FLOAT }], CONSTANT_DATA: [[NodeImageProgram.ANGLE_1], [NodeImageProgram.ANGLE_2], [NodeImageProgram.ANGLE_3]], }; } atlas: Atlas; textures: WebGLTexture[]; textureImages: ImageData[]; latestRenderParams?: RenderParams; textureManagerCallback: null | ((newAtlasData: { atlas: Atlas; textures: ImageData[] }) => void) = null; constructor(gl: WebGLRenderingContext, pickingBuffer: WebGLFramebuffer | null, renderer: Sigma) { super(gl, pickingBuffer, renderer); this.textureManagerCallback = ({ atlas, textures }: { atlas: Atlas; textures: ImageData[] }) => { const shouldUpgradeShaders = textures.length !== this.textures.length; this.atlas = atlas; this.textureImages = textures; if (shouldUpgradeShaders) this.upgradeShaders(); this.bindTextures(); if (this.latestRenderParams) this.render(this.latestRenderParams); if (this.renderer && this.renderer.refresh) this.renderer.refresh(); }; textureManager.on(TextureManager.NEW_TEXTURE_EVENT, this.textureManagerCallback); this.atlas = textureManager.getAtlas(); this.textureImages = textureManager.getTextures(); this.textures = this.textureImages.map(() => gl.createTexture() as WebGLTexture); this.bindTextures(); } private upgradeShaders() { const def = this.getDefinition(); const { program, buffer, vertexShader, fragmentShader, gl } = this.normalProgram; gl.deleteProgram(program); gl.deleteBuffer(buffer); gl.deleteShader(vertexShader); gl.deleteShader(fragmentShader); this.normalProgram = this.getProgramInfo( "normal", gl, def.VERTEX_SHADER_SOURCE, def.FRAGMENT_SHADER_SOURCE, null, ); } kill() { const gl = this.normalProgram?.gl; if (gl) { for (let i = 0; i < this.textures.length; i++) { gl.deleteTexture(this.textures[i]); } } if (this.textureManagerCallback) { textureManager.off(TextureManager.NEW_TEXTURE_EVENT, this.textureManagerCallback); this.textureManagerCallback = null; } super.kill(); } protected bindTextures() { const gl = this.normalProgram.gl; for (let i = 0; i < this.textureImages.length; i++) { if (i >= this.textures.length) { const texture = gl.createTexture(); if (texture) this.textures.push(texture); } gl.activeTexture(gl.TEXTURE0 + i); gl.bindTexture(gl.TEXTURE_2D, this.textures[i]); gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, this.textureImages[i]); gl.generateMipmap(gl.TEXTURE_2D); } } protected renderProgram(params: RenderParams, programInfo: ProgramInfo) { if (!programInfo.isPicking) { // Rebind texture (since it's been just unbound by picking): const gl = programInfo.gl; for (let i = 0; i < this.textureImages.length; i++) { gl.activeTexture(gl.TEXTURE0 + i); gl.bindTexture(gl.TEXTURE_2D, this.textures[i]); } } super.renderProgram(params, programInfo); } processVisibleItem(nodeIndex: number, startIndex: number, data: NodeDisplayData & { image?: string }): void { const array = this.array; const color = floatColor(data[colorAttribute as "color"]); const imageSource = data[imageAttribute as "image"]; const imagePosition = imageSource ? this.atlas[imageSource] : undefined; if (typeof imageSource === "string" && !imagePosition) textureManager.registerImage(imageSource); array[startIndex++] = data.x; array[startIndex++] = data.y; array[startIndex++] = data.size; array[startIndex++] = color; array[startIndex++] = nodeIndex; // Reference texture: if (imagePosition && typeof imagePosition.textureIndex === "number") { const { width, height } = this.textureImages[imagePosition.textureIndex]; array[startIndex++] = imagePosition.x / width; array[startIndex++] = imagePosition.y / height; array[startIndex++] = imagePosition.size / width; array[startIndex++] = imagePosition.size / height; array[startIndex++] = imagePosition.textureIndex; } else { array[startIndex++] = 0; array[startIndex++] = 0; array[startIndex++] = 0; array[startIndex++] = 0; array[startIndex++] = 0; } } setUniforms(params: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_sizeRatio, u_correctionRatio, u_matrix, u_atlas, u_colorizeImages, u_keepWithinCircle, u_cameraAngle, u_percentagePadding, } = uniformLocations; this.latestRenderParams = params; gl.uniform1f(u_correctionRatio, params.correctionRatio); gl.uniform1f(u_sizeRatio, keepWithinCircle ? params.sizeRatio : params.sizeRatio / Math.SQRT2); gl.uniform1f(u_cameraAngle, params.cameraAngle); gl.uniform1f(u_percentagePadding, padding); gl.uniformMatrix3fv(u_matrix, false, params.matrix); gl.uniform1iv( u_atlas, [...new Array(this.textureImages.length)].map((_, i) => i), ); gl.uniform1i(u_colorizeImages, drawingMode === "color" ? 1 : 0); gl.uniform1i(u_keepWithinCircle, keepWithinCircle ? 1 : 0); } }; } ================================================ FILE: packages/node-image/src/index.ts ================================================ import { NodeProgramType } from "sigma/rendering"; import createNodeImageProgram from "./factory"; export { default as createNodeImageProgram } from "./factory"; export const NodeImageProgram: NodeProgramType = createNodeImageProgram(); export const NodePictogramProgram: NodeProgramType = createNodeImageProgram({ keepWithinCircle: false, size: { mode: "force", value: 256 }, drawingMode: "color", correctCentering: true, }); ================================================ FILE: packages/node-image/src/shader-frag.ts ================================================ export default function getFragmentShader({ texturesCount }: { texturesCount: number }) { // language=GLSL const SHADER = /*glsl*/ ` precision highp float; varying vec4 v_color; varying vec2 v_diffVector; varying float v_radius; varying vec4 v_texture; varying float v_textureIndex; uniform sampler2D u_atlas[${texturesCount}]; uniform float u_correctionRatio; uniform float u_cameraAngle; uniform float u_percentagePadding; uniform bool u_colorizeImages; uniform bool u_keepWithinCircle; const vec4 transparent = vec4(0.0, 0.0, 0.0, 0.0); const float radius = 0.5; void main(void) { float border = 2.0 * u_correctionRatio; float dist = length(v_diffVector); vec4 color = gl_FragColor; float c = cos(-u_cameraAngle); float s = sin(-u_cameraAngle); vec2 diffVector = mat2(c, s, -s, c) * (v_diffVector); // No antialiasing for picking mode: #ifdef PICKING_MODE border = 0.0; color = v_color; #else // First case: No image to display if (v_texture.w <= 0.0) { if (!u_colorizeImages) { color = v_color; } } // Second case: Image loaded into the texture else { float paddingRatio = 1.0 + 2.0 * u_percentagePadding; float coef = u_keepWithinCircle ? 1.0 : ${Math.SQRT2}; vec2 coordinateInTexture = diffVector * vec2(paddingRatio, -paddingRatio) / v_radius / 2.0 * coef + vec2(0.5, 0.5); int index = int(v_textureIndex + 0.5); // +0.5 avoid rounding errors bool noTextureFound = false; vec4 texel; ${ [...new Array(texturesCount)].map( (_, i) => `if (index == ${i}) texel = texture2D(u_atlas[${i}], (v_texture.xy + coordinateInTexture * v_texture.zw), -1.0);`, ).join(` else `) + `else { texel = texture2D(u_atlas[0], (v_texture.xy + coordinateInTexture * v_texture.zw), -1.0); noTextureFound = true; }` } if (noTextureFound) { color = v_color; } else { // Colorize all visible image pixels: if (u_colorizeImages) { color = mix(gl_FragColor, v_color, texel.a); } // Colorize background pixels, keep image pixel colors: else { color = vec4(mix(v_color, texel, texel.a).rgb, max(texel.a, v_color.a)); } // Erase pixels "in the padding": if (abs(diffVector.x) > v_radius / paddingRatio || abs(diffVector.y) > v_radius / paddingRatio) { color = u_colorizeImages ? gl_FragColor : v_color; } } } #endif // Crop in a circle when u_keepWithinCircle is truthy: if (u_keepWithinCircle) { if (dist < v_radius - border) { gl_FragColor = color; } else if (dist < v_radius) { gl_FragColor = mix(transparent, color, (v_radius - dist) / border); } } // Crop in a square else: else { float squareHalfSize = v_radius * ${Math.SQRT1_2 * Math.cos(Math.PI / 12)}; if (abs(diffVector.x) > squareHalfSize || abs(diffVector.y) > squareHalfSize) { gl_FragColor = transparent; } else { gl_FragColor = color; } } } `; return SHADER; } ================================================ FILE: packages/node-image/src/shader-vert.ts ================================================ // language=GLSL const VERTEX_SHADER_SOURCE = /*glsl*/ ` attribute vec4 a_id; attribute vec4 a_color; attribute vec2 a_position; attribute float a_size; attribute float a_angle; attribute vec4 a_texture; attribute float a_textureIndex; uniform mat3 u_matrix; uniform float u_sizeRatio; uniform float u_correctionRatio; varying vec4 v_color; varying vec2 v_diffVector; varying float v_radius; varying vec4 v_texture; varying float v_textureIndex; const float bias = 255.0 / 254.0; const float marginRatio = 1.05; void main() { float size = a_size * u_correctionRatio / u_sizeRatio * 4.0; vec2 diffVector = size * vec2(cos(a_angle), sin(a_angle)); vec2 position = a_position + diffVector * marginRatio; gl_Position = vec4( (u_matrix * vec3(position, 1)).xy, 0, 1 ); v_diffVector = diffVector; v_radius = size / 2.0 / marginRatio; #ifdef PICKING_MODE // For picking mode, we use the ID as the color: v_color = a_id; #else // For normal mode, we use the color: v_color = a_color; // Pass the texture coordinates: v_textureIndex = a_textureIndex; v_texture = a_texture; #endif v_color.a *= bias; } `; export default VERTEX_SHADER_SOURCE; ================================================ FILE: packages/node-image/src/texture.ts ================================================ import { EventEmitter } from "events"; import { Coordinates } from "sigma/types"; /** * Useful types: * ************* */ export type TextureCursor = Coordinates & { rowHeight: number; maxRowWidth: number }; export type ImageLoading = { status: "loading" }; export type ImageError = { status: "error" }; export type ImageReady = { status: "ready"; image: HTMLImageElement; sourceX: number; sourceY: number; sourceSize: number; destinationSize: number; textureIndex?: number; }; export type ImageType = ImageLoading | ImageError | ImageReady; export type Atlas = Record; export type TextureManagerOptions = { // - If mode "auto", will always display images with their given size. // - If mode "force", will always scale images to the given value. // - If mode "max", will downscale images larger than the given value. size: { mode: "auto" } | { mode: "max"; value: number } | { mode: "force"; value: number }; // Tries to mimic the related CSS property. objectFit: "contain" | "cover" | "fill"; // If true, the image is centered on its alpha barycenter. correctCentering: boolean; // Max texture size (use gl.getParameter(gl.MAX_TEXTURE_SIZE)). maxTextureSize: number; // Minimal time (in ms) between two consecutive textures generations. // If null, then no timeout will be used (for debug purpose only!). debounceTimeout: number | null; // "crossOrigin" attribute used to request the image. // By default, this is set to "anonymous". // Setting this to `null` will cause the image to be fetched without CORS. crossOrigin: CrossOrigin | null; }; type CrossOrigin = "anonymous" | "use-credentials"; export const DEFAULT_TEXTURE_MANAGER_OPTIONS: TextureManagerOptions = { size: { mode: "max", value: 512 }, objectFit: "cover", correctCentering: false, maxTextureSize: 4096, debounceTimeout: 500, crossOrigin: "anonymous", }; // This margin helps to avoid images collisions in the texture: export const MARGIN_IN_TEXTURE = 1; /** * Helpers: * ******** */ /** * This helper loads an image at a given URL, and returns an HTMLImageElement * with it displayed once it's properly loaded, within a promise. */ export function loadRasterImage( imageSource: string, { crossOrigin }: { crossOrigin?: CrossOrigin } = {}, ): Promise { return new Promise((resolve, reject) => { const image = new Image(); image.addEventListener( "load", () => { resolve(image); }, { once: true }, ); image.addEventListener( "error", (e) => { reject(e.error); }, { once: true }, ); // Load image: if (crossOrigin) { image.setAttribute("crossOrigin", crossOrigin); } image.src = imageSource; }); } /** * This helper loads an SVG image at a given URL, adjusts its size to a given * size, and returns an HTMLImageElement with it displayed once it's properly * loaded, within a promise. */ export async function loadSVGImage( imageSource: string, { size, crossOrigin }: { size?: number; crossOrigin?: CrossOrigin } = {}, ): Promise { let resp: Response; if (crossOrigin === "use-credentials") { resp = await fetch(imageSource, { credentials: "include" }); } else { resp = await fetch(imageSource); } const svgString = await resp.text(); const svg = new DOMParser().parseFromString(svgString, "image/svg+xml"); const root = svg.documentElement; const originalWidth = root.getAttribute("width"); const originalHeight = root.getAttribute("height"); if (!originalWidth || !originalHeight) throw new Error("loadSVGImage: cannot use `size` if target SVG has no definite dimensions."); if (typeof size === "number") { root.setAttribute("width", "" + size); root.setAttribute("height", "" + size); } // NOTE: since Google Material last changes to their icon viewBox, this // code is no longer necessary (hopefully it does not break something else...) // root.setAttribute("viewBox", `0 0 ${originalWidth} ${originalHeight}`); const correctedSvgString = new XMLSerializer().serializeToString(svg); const blob = new Blob([correctedSvgString], { type: "image/svg+xml" }); const url = URL.createObjectURL(blob); const res = loadRasterImage(url); res.finally(() => URL.revokeObjectURL(url)); return res; } /** * This helper loads an image using the proper function. */ export async function loadImage( imageSource: string, { size, crossOrigin }: { size?: number; crossOrigin?: CrossOrigin } = {}, ): Promise { const isSVG = imageSource.split(/[#?]/)[0].split(".").pop()?.trim().toLowerCase() === "svg"; let image: HTMLImageElement; if (isSVG && size) { try { image = await loadSVGImage(imageSource, { size, crossOrigin }); } catch (_e) { image = await loadRasterImage(imageSource, { crossOrigin }); } } else { image = await loadRasterImage(imageSource, { crossOrigin }); } return image; } /** * This helper computes exact coordinates to draw an image onto a texture. */ export function refineImage( image: HTMLImageElement, corrector: PictogramCenteringCorrector, { objectFit, size, correctCentering }: TextureManagerOptions, ): Omit { const sourceSize = objectFit === "contain" ? Math.max(image.width, image.height) : Math.min(image.width, image.height); const destinationSize = size.mode === "auto" ? sourceSize : size.mode === "force" ? size.value : Math.min(size.value, sourceSize); let sourceX = (image.width - sourceSize) / 2; let sourceY = (image.height - sourceSize) / 2; if (correctCentering) { const correction = corrector.getCorrectionOffset(image, sourceSize); sourceX = correction.x; sourceY = correction.y; } return { sourceX, sourceY, sourceSize, destinationSize, }; } /** * This helper takes an array of ready-to-draw images, and draws as much as possible in a single texture. * It then returns the atlas of the draw images, as well as the texture itself. */ export function drawTexture( images: (Omit & { key: string })[], ctx: CanvasRenderingContext2D, cursor: TextureCursor, ): { atlas: Atlas; texture: ImageData; cursor: TextureCursor } { const { width, height } = ctx.canvas; // Refine images coordinates: const refinedImagesArray: ((typeof images)[number] & { key: string } & { destinationX: number; destinationY: number; })[] = []; let { x, y, rowHeight, maxRowWidth } = cursor; const atlas: Atlas = {}; for (let i = 0, l = images.length; i < l; i++) { const { key, image, sourceSize, sourceX, sourceY, destinationSize } = images[i]; const destinationSizeWithMargin = destinationSize + MARGIN_IN_TEXTURE; // If the image does not fit, just skip it: if ( y + destinationSizeWithMargin > height || (x + destinationSizeWithMargin > width && y + destinationSizeWithMargin + rowHeight > height) ) { continue; } if (x + destinationSizeWithMargin > width) { maxRowWidth = Math.max(maxRowWidth, x); x = 0; y += rowHeight; rowHeight = destinationSizeWithMargin; } refinedImagesArray.push({ key, image, sourceX, sourceY, sourceSize, destinationX: x, destinationY: y, destinationSize, }); atlas[key] = { x, y, size: destinationSize, }; x += destinationSizeWithMargin; rowHeight = Math.max(rowHeight, destinationSizeWithMargin); } // Crop texture to final best dimensions: maxRowWidth = Math.max(maxRowWidth, x); const effectiveWidth = maxRowWidth; const effectiveHeight = y + rowHeight; // Fill texture: for (let i = 0, l = refinedImagesArray.length; i < l; i++) { const { image, sourceSize, sourceX, sourceY, destinationSize, destinationX, destinationY } = refinedImagesArray[i]; ctx.drawImage( image, sourceX, sourceY, sourceSize, sourceSize, destinationX, destinationY, destinationSize, destinationSize, ); } return { atlas, texture: ctx.getImageData(0, 0, effectiveWidth, effectiveHeight), cursor: { x, y, rowHeight, maxRowWidth }, }; } /** * This helper takes a collection of image states and a context, draw all the * images in the context, and returns an atlas to get where each image is drawn * on the texture. */ export function drawTextures( { atlas: prevAtlas, textures: prevTextures, cursor: prevCursor, }: { atlas: Atlas; textures: ImageData[]; cursor: TextureCursor }, images: Record, ctx: CanvasRenderingContext2D, ): { atlas: Atlas; textures: ImageData[]; cursor: TextureCursor } { const res = { atlas: { ...prevAtlas }, textures: [...prevTextures.slice(0, -1)], cursor: { ...prevCursor }, }; // Extract images that are ready to draw, but not drawn yet: let imagesToDraw: (Omit & { key: string })[] = []; for (const key in images) { // Skip images that are not ready yet: const imageState = images[key]; if (imageState.status !== "ready") continue; // Skip all images that already exist in a texture: const textureIndex = prevAtlas[key]?.textureIndex; if (typeof textureIndex === "number") continue; // Keep all the rest: imagesToDraw.push({ key, ...imageState, }); } // Draw remaining images on new textures until there are none remaining: while (imagesToDraw.length) { const { atlas, texture, cursor } = drawTexture(imagesToDraw, ctx, res.cursor); res.cursor = cursor; const remainingImages: typeof imagesToDraw = []; imagesToDraw.forEach((image) => { if (atlas[image.key]) { res.atlas[image.key] = { ...atlas[image.key], textureIndex: res.textures.length, }; } else { remainingImages.push(image); } }); res.textures.push(texture); imagesToDraw = remainingImages; if (imagesToDraw.length) { res.cursor = { x: 0, y: 0, rowHeight: 0, maxRowWidth: 0 }; ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height); } } return res; } /** * This class helps to "correct" the centering of an SVG pictogram by finding * the "true" visually correct center through the barycenter of the pictogram's * alpha layer in x and y dimension. */ export class PictogramCenteringCorrector { canvas: HTMLCanvasElement; context: CanvasRenderingContext2D; constructor() { this.canvas = document.createElement("canvas"); this.context = this.canvas.getContext("2d", { willReadFrequently: true }) as CanvasRenderingContext2D; } getCorrectionOffset(image: HTMLImageElement, size: number): Coordinates { this.canvas.width = size; this.canvas.height = size; this.context.clearRect(0, 0, size, size); this.context.drawImage(image, 0, 0, size, size); const data = this.context.getImageData(0, 0, size, size).data; const alpha = new Uint8ClampedArray(data.length / 4); for (let i = 0; i < data.length; i++) { alpha[i] = data[i * 4 + 3]; } let sumX = 0; let sumY = 0; let total = 0; for (let y = 0; y < size; y++) { for (let x = 0; x < size; x++) { const a = alpha[y * size + x]; total += a; sumX += a * x; sumY += a * y; } } const barycenterX = sumX / total; const barycenterY = sumY / total; return { x: barycenterX - size / 2, y: barycenterY - size / 2, }; } } export class TextureManager extends EventEmitter { static NEW_TEXTURE_EVENT = "newTexture"; private options: TextureManagerOptions; private canvas: HTMLCanvasElement = document.createElement("canvas"); private ctx = this.canvas.getContext("2d", { willReadFrequently: true }) as CanvasRenderingContext2D; private frameId?: number; private corrector = new PictogramCenteringCorrector(); private imageStates: Record = {}; private textures: ImageData[] = [this.ctx.getImageData(0, 0, 1, 1)]; private lastTextureCursor: TextureCursor = { x: 0, y: 0, rowHeight: 0, maxRowWidth: 0 }; private atlas: Atlas = {}; constructor(options: Partial = {}) { super(); this.options = { ...DEFAULT_TEXTURE_MANAGER_OPTIONS, ...options }; this.canvas.width = this.options.maxTextureSize; this.canvas.height = this.options.maxTextureSize; } private scheduleGenerateTexture() { if (typeof this.frameId === "number") return; if (typeof this.options.debounceTimeout === "number") { this.frameId = window.setTimeout(() => { this.generateTextures(); this.frameId = undefined; }, this.options.debounceTimeout); } else { this.generateTextures(); } } private generateTextures() { const { atlas, textures, cursor } = drawTextures( { atlas: this.atlas, textures: this.textures, cursor: this.lastTextureCursor }, this.imageStates, this.ctx, ); this.atlas = atlas; this.textures = textures; this.lastTextureCursor = cursor; this.emit(TextureManager.NEW_TEXTURE_EVENT, { atlas, textures }); } // PUBLIC API: async registerImage(source: string) { if (this.imageStates[source]) return; this.imageStates[source] = { status: "loading" }; try { const { size } = this.options; const image = await loadImage(source, { size: size.mode === "force" ? size.value : undefined, crossOrigin: this.options.crossOrigin || undefined, }); this.imageStates[source] = { status: "ready", image, ...refineImage(image, this.corrector, this.options), }; this.scheduleGenerateTexture(); } catch (_e) { this.imageStates[source] = { status: "error", }; } } getAtlas(): Atlas { return this.atlas; } getTextures(): ImageData[] { return this.textures; } } ================================================ FILE: packages/node-image/tsconfig.json ================================================ { "compilerOptions": { "target": "ESNext", // Specifies the JavaScript version to target when transpiling code. "useDefineForClassFields": true, // Enables the use of 'define' for class fields. "lib": ["ES2020", "DOM", "DOM.Iterable"], // Specifies the libraries available for the code. "module": "ESNext", // Defines the module system to use for code generation. "skipLibCheck": true, // Skips type checking of declaration files. /* Bundler mode */ "moduleResolution": "node", // Specifies how modules are resolved when bundling. "allowSyntheticDefaultImports": true, "allowImportingTsExtensions": true, // Allows importing TypeScript files with extensions. "resolveJsonModule": true, // Enables importing JSON modules. "isolatedModules": true, // Ensures each file is treated as a separate module. "noEmit": true, // Prevents TypeScript from emitting output files. /* Linting */ "strict": true, // Enables strict type checking. "noUnusedLocals": true, // Flags unused local variables. "noUnusedParameters": true, // Flags unused function parameters. "noFallthroughCasesInSwitch": true, // Requires handling all cases in a switch statement. "declaration": true // Generates declaration files for TypeScript. }, "include": ["src"], // Specifies the directory to include when searching for TypeScript files. "exclude": ["src/**/__docs__", "src/**/__test__"] } ================================================ FILE: packages/node-piechart/.gitignore ================================================ node_modules dist ================================================ FILE: packages/node-piechart/.npmignore ================================================ .gitignore node_modules src tsconfig.json ================================================ FILE: packages/node-piechart/README.md ================================================ # Sigma.js - Node pie-chart renderer This package contains a node pie-chart renderer for [sigma.js](https://sigmajs.org). Its API is inspired by [@sigma/node-border](https://www.npmjs.com/package/@sigma/node-border). Because sigma render nodes [using WebGL](https://www.sigmajs.org/docs/advanced/renderers#brief-overview-of-webgl), the program cannot handle a dynamic number of pie slices. For this reason, instead of a program, this package exposes **`createNodePiechartProgram`**, a factory that creates a program to render nodes as pie-charts, with the description of what slices must represent given as input. ## How to use Within your application that uses sigma.js, you can use [`@sigma/node-piechart`](https://www.npmjs.com/package/@sigma/node-piechart) as following: ```typescript import { createNodePiechartProgram } from "@sigma/node-piechart"; const graph = new Graph(); graph.addNode("some-node", { x: 0, y: 0, size: 10, type: "piechart", label: "Some node", positive: 10, neutral: 17, negative: 14, }); const NodePiechartProgram = createNodePiechartProgram({ defaultColor: "#BCB7C4", slices: [ { color: { value: "#F05454" }, value: { attribute: "negative" } }, { color: { value: "#7798FA" }, value: { attribute: "neutral" } }, { color: { value: "#6DDB55" }, value: { attribute: "positive" } }, ], }); const sigma = new Sigma(graph, container, { nodeProgramClasses: { piechart: NodePiechartProgram, }, }); ``` Please check the related [Storybook](https://github.com/jacomyal/sigma.js/tree/main/packages/storybook/stories/3-additional-packages/node-piechart) for more advanced examples. ================================================ FILE: packages/node-piechart/package.json ================================================ { "name": "@sigma/node-piechart", "version": "3.0.0", "description": "A node program that renders nodes as piecharts for sigma.js", "main": "dist/sigma-node-piechart.cjs.js", "module": "dist/sigma-node-piechart.esm.js", "types": "dist/sigma-node-piechart.cjs.d.ts", "files": [ "/dist" ], "sideEffects": false, "homepage": "https://www.sigmajs.org", "bugs": "http://github.com/jacomyal/sigma.js/issues", "repository": { "type": "git", "url": "http://github.com/jacomyal/sigma.js.git", "directory": "packages/node-piechart" }, "keywords": [ "graph", "graphology", "sigma" ], "contributors": [ { "name": "Alexis Jacomy", "url": "http://github.com/jacomyal" } ], "license": "MIT", "preconstruct": { "entrypoints": [ "index.ts" ] }, "peerDependencies": { "sigma": ">=3.0.0-beta.17" }, "exports": { ".": { "module": "./dist/sigma-node-piechart.esm.js", "import": "./dist/sigma-node-piechart.cjs.mjs", "default": "./dist/sigma-node-piechart.cjs.js" }, "./package.json": "./package.json" } } ================================================ FILE: packages/node-piechart/src/factory.ts ================================================ import { Attributes } from "graphology-types"; import { NodeProgram, NodeProgramType, ProgramInfo } from "sigma/rendering"; import { NodeDisplayData, PartialButFor, RenderParams } from "sigma/types"; import { colorToArray, floatColor } from "sigma/utils"; import getFragmentShader from "./shader-frag"; import getVertexShader from "./shader-vert"; import { CreateNodePiechartProgramOptions, DEFAULT_COLOR, DEFAULT_CREATE_NODE_PIECHART_OPTIONS } from "./utils"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; export default function createNodePiechartProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(inputOptions: PartialButFor, "slices">): NodeProgramType { const options: CreateNodePiechartProgramOptions = { ...(DEFAULT_CREATE_NODE_PIECHART_OPTIONS as Omit, "slices">), ...inputOptions, }; const { slices, offset, drawHover, drawLabel } = options; const UNIFORMS = [ "u_sizeRatio", "u_correctionRatio", "u_cameraAngle", "u_matrix", "u_defaultColor", ...("value" in offset ? ["u_offset"] : []), ...slices.flatMap(({ color }, i) => ("value" in color ? [`u_sliceColor_${i + 1}`] : [])), ]; return class NodeBorderProgram extends NodeProgram<(typeof UNIFORMS)[number], N, E, G> { static readonly ANGLE_1 = 0; static readonly ANGLE_2 = (2 * Math.PI) / 3; static readonly ANGLE_3 = (4 * Math.PI) / 3; drawLabel = drawLabel; drawHover = drawHover; getDefinition() { return { VERTICES: 3, VERTEX_SHADER_SOURCE: getVertexShader(options), FRAGMENT_SHADER_SOURCE: getFragmentShader(options), METHOD: WebGLRenderingContext.TRIANGLES, UNIFORMS, ATTRIBUTES: [ { name: "a_position", size: 2, type: FLOAT }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_size", size: 1, type: FLOAT }, ...("attribute" in offset ? [{ name: "a_offset", size: 1, type: FLOAT }] : []), ...slices.flatMap(({ color }, i) => "attribute" in color ? [{ name: `a_sliceColor_${i + 1}`, size: 4, type: UNSIGNED_BYTE, normalized: true }] : [], ), ...slices.flatMap(({ value }, i) => "attribute" in value ? [{ name: `a_sliceValue_${i + 1}`, size: 1, type: FLOAT }] : [], ), ], CONSTANT_ATTRIBUTES: [{ name: "a_angle", size: 1, type: FLOAT }], CONSTANT_DATA: [[NodeBorderProgram.ANGLE_1], [NodeBorderProgram.ANGLE_2], [NodeBorderProgram.ANGLE_3]], }; } processVisibleItem(nodeIndex: number, startIndex: number, data: NodeDisplayData) { const array = this.array; array[startIndex++] = data.x; array[startIndex++] = data.y; array[startIndex++] = nodeIndex; array[startIndex++] = data.size; if ("attribute" in offset) { array[startIndex++] = data[offset.attribute as "size"] || 0; } slices.forEach(({ color }) => { if ("attribute" in color) array[startIndex++] = floatColor(data[color.attribute as "color"] || color.defaultValue || DEFAULT_COLOR); }); slices.forEach(({ value }) => { if ("attribute" in value) { array[startIndex++] = data[value.attribute as "size"] || 0; } }); } setUniforms(params: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_sizeRatio, u_correctionRatio, u_cameraAngle, u_matrix, u_defaultColor } = uniformLocations; gl.uniform1f(u_correctionRatio, params.correctionRatio); gl.uniform1f(u_sizeRatio, params.sizeRatio); gl.uniform1f(u_cameraAngle, params.cameraAngle); gl.uniformMatrix3fv(u_matrix, false, params.matrix); if ("value" in offset) gl.uniform1f(uniformLocations.u_offset, offset.value); const [r, g, b, a] = colorToArray(options.defaultColor || DEFAULT_COLOR); gl.uniform4f(u_defaultColor, r / 255, g / 255, b / 255, a / 255); slices.forEach(({ color }, i) => { if ("value" in color) { const location = uniformLocations[`u_sliceColor_${i + 1}`]; const [r, g, b, a] = colorToArray(color.value); gl.uniform4f(location, r / 255, g / 255, b / 255, a / 255); } }); } }; } ================================================ FILE: packages/node-piechart/src/index.ts ================================================ export { default as createNodePiechartProgram } from "./factory"; export * from "./utils"; ================================================ FILE: packages/node-piechart/src/shader-frag.ts ================================================ import { numberToGLSLFloat } from "sigma/rendering"; import { CreateNodePiechartProgramOptions } from "./utils"; export default function getFragmentShader({ slices, offset }: CreateNodePiechartProgramOptions) { // language=GLSL const SHADER = /*glsl*/ ` precision highp float; varying vec2 v_diffVector; varying float v_radius; #ifdef PICKING_MODE varying vec4 v_color; #else // For normal mode, we use the border colors defined in the program: ${slices.flatMap(({ value }, i) => ("attribute" in value ? [`varying float v_sliceValue_${i + 1};`] : [])).join("\n")} ${slices.map(({ color }, i) => ("attribute" in color ? `varying vec4 v_sliceColor_${i + 1};` : `uniform vec4 u_sliceColor_${i + 1};`)).join("\n")} #endif uniform vec4 u_defaultColor; uniform float u_cameraAngle; uniform float u_correctionRatio; ${"attribute" in offset ? "varying float v_offset;\n" : ""} ${"value" in offset ? "uniform float u_offset;\n" : ""} const float bias = 255.0 / 254.0; const vec4 transparent = vec4(0.0, 0.0, 0.0, 0.0); void main(void) { float aaBorder = u_correctionRatio * 2.0;; float dist = length(v_diffVector); float offset = ${"attribute" in offset ? "v_offset" : "u_offset"}; float angle = atan(v_diffVector.y / v_diffVector.x); if (v_diffVector.x < 0.0 && v_diffVector.y < 0.0) angle += ${Math.PI}; else if (v_diffVector.x < 0.0) angle += ${Math.PI}; else if (v_diffVector.y < 0.0) angle += ${2 * Math.PI}; angle = angle - u_cameraAngle + offset; angle = mod(angle, ${2 * Math.PI}); // No antialiasing for picking mode: #ifdef PICKING_MODE if (dist > v_radius) gl_FragColor = transparent; else { gl_FragColor = v_color; gl_FragColor.a *= bias; } #else // Colors: ${slices .map(({ color }, i) => { const res: string[] = []; if ("attribute" in color) { res.push(` vec4 sliceColor_${i + 1} = v_sliceColor_${i + 1};`); } else if ("transparent" in color) { res.push(` vec4 sliceColor_${i + 1} = vec4(0.0, 0.0, 0.0, 0.0);`); } else { res.push(` vec4 sliceColor_${i + 1} = u_sliceColor_${i + 1};`); } res.push(` sliceColor_${i + 1}.a *= bias;`); return res.join("\n"); }) .join("\n")} vec4 color = u_defaultColor; color.a *= bias; // Sizes: ${slices .map( ({ value }, i) => ` float sliceValue_${i + 1} = ${"attribute" in value ? `v_sliceValue_${i + 1}` : numberToGLSLFloat(value.value)};`, ) .join("\n")} // Angles and final color: float total = ${slices.map((_, i) => `sliceValue_${i + 1}`).join(" + ")}; float angle_0 = 0.0; if (total > 0.0) { ${slices.map((_, i) => ` float angle_${i + 1} = angle_${i} + sliceValue_${i + 1} * ${2 * Math.PI} / total;`).join("\n")} ${slices.map((_, i) => `if (angle < angle_${i + 1}) color = sliceColor_${i + 1};`).join("\n else ")} } if (dist < v_radius - aaBorder) { gl_FragColor = color; } else if (dist < v_radius) { gl_FragColor = mix(transparent, color, (v_radius - dist) / aaBorder); } #endif } `; return SHADER; } ================================================ FILE: packages/node-piechart/src/shader-vert.ts ================================================ import { CreateNodePiechartProgramOptions } from "./utils"; export default function getVertexShader({ slices, offset }: CreateNodePiechartProgramOptions) { // language=GLSL const SHADER = /*glsl*/ ` attribute vec4 a_id; attribute vec2 a_position; attribute float a_size; attribute float a_angle; uniform mat3 u_matrix; uniform float u_sizeRatio; uniform float u_correctionRatio; varying vec2 v_diffVector; varying float v_radius; ${"attribute" in offset ? "attribute float a_offset;\n" : ""} ${"attribute" in offset ? "varying float v_offset;\n" : ""} #ifdef PICKING_MODE varying vec4 v_color; #else ${slices .flatMap(({ value }, i) => "attribute" in value ? [`attribute float a_sliceValue_${i + 1};`, `varying float v_sliceValue_${i + 1};`] : [], ) .join("\n")} ${slices .flatMap(({ color }, i) => "attribute" in color ? [`attribute vec4 a_sliceColor_${i + 1};`, `varying vec4 v_sliceColor_${i + 1};`] : [], ) .join("\n")} #endif const vec4 transparent = vec4(0.0, 0.0, 0.0, 0.0); void main() { float size = a_size * u_correctionRatio / u_sizeRatio * 4.0; vec2 diffVector = size * vec2(cos(a_angle), sin(a_angle)); vec2 position = a_position + diffVector; gl_Position = vec4( (u_matrix * vec3(position, 1)).xy, 0, 1 ); v_radius = size / 2.0; v_diffVector = diffVector; ${"attribute" in offset ? "v_offset = a_offset;\n" : ""} #ifdef PICKING_MODE v_color = a_id; #else ${slices .flatMap(({ value }, i) => ("attribute" in value ? [` v_sliceValue_${i + 1} = a_sliceValue_${i + 1};`] : [])) .join("\n")} ${slices .flatMap(({ color }, i) => ("attribute" in color ? [` v_sliceColor_${i + 1} = a_sliceColor_${i + 1};`] : [])) .join("\n")} #endif } `; return SHADER; } ================================================ FILE: packages/node-piechart/src/utils.ts ================================================ import { Attributes } from "graphology-types"; import { NodeHoverDrawingFunction, NodeLabelDrawingFunction } from "sigma/rendering"; import { NonEmptyArray } from "sigma/types"; export type NodeSliceColor = { value: string } | { attribute: string; defaultValue?: string } | { transparent: true }; export type NodeSliceValue = { value: number } | { attribute: string }; export interface CreateNodePiechartProgramOptions< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > { defaultColor: string; offset: NodeSliceValue; slices: NonEmptyArray<{ color: NodeSliceColor; value: NodeSliceValue; }>; // Allows overriding drawLabel and drawHover returned class methods. drawLabel: NodeLabelDrawingFunction | undefined; drawHover: NodeHoverDrawingFunction | undefined; } export const DEFAULT_COLOR = "#000000"; export const DEFAULT_CREATE_NODE_PIECHART_OPTIONS: Omit = { drawLabel: undefined, drawHover: undefined, defaultColor: DEFAULT_COLOR, offset: { value: 0 }, }; ================================================ FILE: packages/node-piechart/tsconfig.json ================================================ { "compilerOptions": { "target": "ESNext", // Specifies the JavaScript version to target when transpiling code. "useDefineForClassFields": true, // Enables the use of 'define' for class fields. "lib": ["ES2020", "DOM", "DOM.Iterable"], // Specifies the libraries available for the code. "module": "ESNext", // Defines the module system to use for code generation. "skipLibCheck": true, // Skips type checking of declaration files. /* Bundler mode */ "moduleResolution": "node", // Specifies how modules are resolved when bundling. "allowSyntheticDefaultImports": true, "allowImportingTsExtensions": true, // Allows importing TypeScript files with extensions. "resolveJsonModule": true, // Enables importing JSON modules. "isolatedModules": true, // Ensures each file is treated as a separate module. "noEmit": true, // Prevents TypeScript from emitting output files. /* Linting */ "strict": true, // Enables strict type checking. "noUnusedLocals": true, // Flags unused local variables. "noUnusedParameters": true, // Flags unused function parameters. "noFallthroughCasesInSwitch": true, // Requires handling all cases in a switch statement. "declaration": true // Generates declaration files for TypeScript. }, "include": ["src"], // Specifies the directory to include when searching for TypeScript files. "exclude": ["src/**/__docs__", "src/**/__test__"] } ================================================ FILE: packages/node-square/.gitignore ================================================ node_modules dist ================================================ FILE: packages/node-square/.npmignore ================================================ .gitignore node_modules src tsconfig.json ================================================ FILE: packages/node-square/README.md ================================================ # Sigma.js - Node square renderer This package contains a node square renderer for [sigma.js](https://sigmajs.org), as well as a proper ## How to use Within your application that uses sigma.js, you can use [`@sigma/node-square`](https://www.npmjs.com/package/@sigma/node-square) as following: ```typescript import { NodeSquareProgram } from "@sigma/node-square"; const graph = new Graph(); graph.addNode("some-node", { x: 0, y: 0, size: 10, type: "square", label: "Some node", color: "blue", }); const sigma = new Sigma(graph, container, { nodeProgramClasses: { square: NodeSquareProgram, }, }); ``` Please check the related [Storybook](https://github.com/jacomyal/sigma.js/tree/main/packages/storybook/stories/3-additional-packages/node-square) for more advanced examples. ================================================ FILE: packages/node-square/package.json ================================================ { "name": "@sigma/node-square", "version": "3.0.0", "description": "A node program that renders nodes as squares for sigma.js", "main": "dist/sigma-node-square.cjs.js", "module": "dist/sigma-node-square.esm.js", "types": "dist/sigma-node-square.cjs.d.ts", "files": [ "/dist" ], "sideEffects": false, "homepage": "https://www.sigmajs.org", "bugs": "http://github.com/jacomyal/sigma.js/issues", "repository": { "type": "git", "url": "http://github.com/jacomyal/sigma.js.git", "directory": "packages/node-square" }, "keywords": [ "graph", "graphology", "sigma" ], "contributors": [ { "name": "Alexis Jacomy", "url": "http://github.com/jacomyal" } ], "license": "MIT", "preconstruct": { "entrypoints": [ "index.ts" ] }, "peerDependencies": { "sigma": ">=3.0.0-beta.17" }, "exports": { ".": { "module": "./dist/sigma-node-square.esm.js", "import": "./dist/sigma-node-square.cjs.mjs", "default": "./dist/sigma-node-square.cjs.js" }, "./package.json": "./package.json" } } ================================================ FILE: packages/node-square/src/index.ts ================================================ export * from "./utils"; export { NodeSquareProgram } from "./program"; ================================================ FILE: packages/node-square/src/program.ts ================================================ import { Attributes } from "graphology-types"; import { NodeProgram, ProgramInfo } from "sigma/rendering"; import { NodeDisplayData, RenderParams } from "sigma/types"; import { floatColor } from "sigma/utils"; import FRAGMENT_SHADER_SOURCE from "./shader-frag"; import VERTEX_SHADER_SOURCE from "./shader-vert"; import { drawSquareNodeHover, drawSquareNodeLabel } from "./utils"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; const UNIFORMS = ["u_sizeRatio", "u_correctionRatio", "u_cameraAngle", "u_matrix"] as const; const PI = Math.PI; export class NodeSquareProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends NodeProgram<(typeof UNIFORMS)[number], N, E, G> { drawHover = drawSquareNodeHover; drawLabel = drawSquareNodeLabel; getDefinition() { return { VERTICES: 6, VERTEX_SHADER_SOURCE: VERTEX_SHADER_SOURCE, FRAGMENT_SHADER_SOURCE: FRAGMENT_SHADER_SOURCE, METHOD: WebGLRenderingContext.TRIANGLES, UNIFORMS, ATTRIBUTES: [ { name: "a_position", size: 2, type: FLOAT }, { name: "a_size", size: 1, type: FLOAT }, { name: "a_color", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, ], CONSTANT_ATTRIBUTES: [{ name: "a_angle", size: 1, type: FLOAT }], CONSTANT_DATA: [[PI / 4], [(3 * PI) / 4], [-PI / 4], [(3 * PI) / 4], [-PI / 4], [(-3 * PI) / 4]], }; } processVisibleItem(nodeIndex: number, startIndex: number, data: NodeDisplayData) { const array = this.array; const color = floatColor(data.color); array[startIndex++] = data.x; array[startIndex++] = data.y; array[startIndex++] = data.size; array[startIndex++] = color; array[startIndex++] = nodeIndex; } setUniforms(params: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_sizeRatio, u_correctionRatio, u_cameraAngle, u_matrix } = uniformLocations; gl.uniform1f(u_sizeRatio, params.sizeRatio); gl.uniform1f(u_cameraAngle, params.cameraAngle); gl.uniform1f(u_correctionRatio, params.correctionRatio); gl.uniformMatrix3fv(u_matrix, false, params.matrix); } } ================================================ FILE: packages/node-square/src/shader-frag.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` precision mediump float; varying vec4 v_color; void main(void) { gl_FragColor = v_color; } `; export default SHADER_SOURCE; ================================================ FILE: packages/node-square/src/shader-vert.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` attribute vec4 a_id; attribute vec4 a_color; attribute vec2 a_position; attribute float a_size; attribute float a_angle; uniform mat3 u_matrix; uniform float u_sizeRatio; uniform float u_cameraAngle; uniform float u_correctionRatio; varying vec4 v_color; const float bias = 255.0 / 254.0; const float sqrt_8 = sqrt(8.0); void main() { float size = a_size * u_correctionRatio / u_sizeRatio * sqrt_8; float angle = a_angle + u_cameraAngle; vec2 diffVector = size * vec2(cos(angle), sin(angle)); vec2 position = a_position + diffVector; gl_Position = vec4( (u_matrix * vec3(position, 1)).xy, 0, 1 ); #ifdef PICKING_MODE v_color = a_id; #else v_color = a_color; #endif v_color.a *= bias; } `; export default SHADER_SOURCE; ================================================ FILE: packages/node-square/src/utils.ts ================================================ import { Attributes } from "graphology-types"; import { drawDiscNodeLabel } from "sigma/rendering"; import { Settings } from "sigma/settings"; import { NodeDisplayData, PartialButFor } from "sigma/types"; export function drawSquareNodeLabel< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >( context: CanvasRenderingContext2D, data: PartialButFor, settings: Settings, ): void { return drawDiscNodeLabel(context, data, settings); } export function drawSquareNodeHover< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >( context: CanvasRenderingContext2D, data: PartialButFor, settings: Settings, ): void { const size = settings.labelSize, font = settings.labelFont, weight = settings.labelWeight; context.font = `${weight} ${size}px ${font}`; // Then we draw the label background context.fillStyle = "#FFF"; context.shadowOffsetX = 0; context.shadowOffsetY = 0; context.shadowBlur = 8; context.shadowColor = "#000"; const PADDING = 2; if (typeof data.label === "string") { const textWidth = context.measureText(data.label).width, boxWidth = Math.round(textWidth + 5), boxHeight = Math.round(size + 2 * PADDING), radius = Math.max(data.size, size / 2) + PADDING; context.beginPath(); context.moveTo(data.x + radius, data.y + boxHeight / 2); context.lineTo(data.x + radius + boxWidth, data.y + boxHeight / 2); context.lineTo(data.x + radius + boxWidth, data.y - boxHeight / 2); context.lineTo(data.x + radius, data.y - boxHeight / 2); context.lineTo(data.x + radius, data.y - radius); context.lineTo(data.x - radius, data.y - radius); context.lineTo(data.x - radius, data.y + radius); context.lineTo(data.x + radius, data.y + radius); context.moveTo(data.x + radius, data.y + boxHeight / 2); context.closePath(); context.fill(); } else { const radius = data.size + PADDING; context.fillRect(data.x - radius, data.y - radius, radius * 2, radius * 2); } context.shadowOffsetX = 0; context.shadowOffsetY = 0; context.shadowBlur = 0; drawSquareNodeLabel(context, data, settings); } ================================================ FILE: packages/node-square/tsconfig.json ================================================ { "compilerOptions": { "target": "ESNext", // Specifies the JavaScript version to target when transpiling code. "useDefineForClassFields": true, // Enables the use of 'define' for class fields. "lib": ["ES2020", "DOM", "DOM.Iterable"], // Specifies the libraries available for the code. "module": "ESNext", // Defines the module system to use for code generation. "skipLibCheck": true, // Skips type checking of declaration files. /* Bundler mode */ "moduleResolution": "node", // Specifies how modules are resolved when bundling. "allowSyntheticDefaultImports": true, "allowImportingTsExtensions": true, // Allows importing TypeScript files with extensions. "resolveJsonModule": true, // Enables importing JSON modules. "isolatedModules": true, // Ensures each file is treated as a separate module. "noEmit": true, // Prevents TypeScript from emitting output files. /* Linting */ "strict": true, // Enables strict type checking. "noUnusedLocals": true, // Flags unused local variables. "noUnusedParameters": true, // Flags unused function parameters. "noFallthroughCasesInSwitch": true, // Requires handling all cases in a switch statement. "declaration": true // Generates declaration files for TypeScript. }, "include": ["src"], // Specifies the directory to include when searching for TypeScript files. "exclude": ["src/**/__docs__", "src/**/__test__"] } ================================================ FILE: packages/sigma/.gitignore ================================================ node_modules dist README.md ================================================ FILE: packages/sigma/.npmignore ================================================ .gitignore node_modules src tsconfig.json vite.config.mts ================================================ FILE: packages/sigma/package.json ================================================ { "name": "sigma", "version": "3.0.2", "description": "A JavaScript library aimed at visualizing graphs of thousands of nodes and edges.", "homepage": "https://www.sigmajs.org", "bugs": "http://github.com/jacomyal/sigma.js/issues", "main": "dist/sigma.cjs.js", "module": "dist/sigma.esm.js", "types": "dist/sigma.cjs.d.ts", "files": [ "/dist", "/types", "/settings", "/rendering", "/utils" ], "sideEffects": false, "scripts": { "build-bundle": "vite build", "prepublishOnly": "cp ../../README.md ." }, "repository": { "type": "git", "url": "http://github.com/jacomyal/sigma.js.git" }, "contributors": [ { "name": "Alexis Jacomy", "url": "http://github.com/jacomyal" }, { "name": "Guillaume Plique", "url": "http://github.com/Yomguithereal" }, { "name": "Benoît Simard", "url": "http://github.com/sim51" } ], "license": "MIT", "dependencies": { "events": "^3.3.0", "graphology-utils": "^2.5.2" }, "devDependencies": { "vite": "^6.0.7" }, "keywords": [ "graph", "graphology", "renderer", "sigma", "canvas", "webgl" ], "preconstruct": { "entrypoints": [ "index.ts", "types.ts", "settings.ts", "rendering/index.ts", "utils/index.ts" ] }, "exports": { ".": { "module": "./dist/sigma.esm.js", "import": "./dist/sigma.cjs.mjs", "default": "./dist/sigma.cjs.js" }, "./types": { "module": "./types/dist/sigma-types.esm.js", "import": "./types/dist/sigma-types.cjs.mjs", "default": "./types/dist/sigma-types.cjs.js" }, "./settings": { "module": "./settings/dist/sigma-settings.esm.js", "import": "./settings/dist/sigma-settings.cjs.mjs", "default": "./settings/dist/sigma-settings.cjs.js" }, "./utils": { "module": "./utils/dist/sigma-utils.esm.js", "import": "./utils/dist/sigma-utils.cjs.mjs", "default": "./utils/dist/sigma-utils.cjs.js" }, "./rendering": { "module": "./rendering/dist/sigma-rendering.esm.js", "import": "./rendering/dist/sigma-rendering.cjs.mjs", "default": "./rendering/dist/sigma-rendering.cjs.js" }, "./package.json": "./package.json" } } ================================================ FILE: packages/sigma/rendering/package.json ================================================ { "main": "dist/sigma-rendering.cjs.js", "module": "dist/sigma-rendering.esm.js" } ================================================ FILE: packages/sigma/settings/package.json ================================================ { "main": "dist/sigma-settings.cjs.js", "module": "dist/sigma-settings.esm.js" } ================================================ FILE: packages/sigma/src/core/camera.ts ================================================ /** * Sigma.js Camera Class * ====================== * * Class designed to store camera information & used to update it. * @module */ import { CameraState, TypedEventEmitter } from "../types"; import { ANIMATE_DEFAULTS, AnimateOptions, easings } from "../utils"; /** * Defaults. */ const DEFAULT_ZOOMING_RATIO = 1.5; /** * Event types. */ export type CameraEvents = { updated(state: CameraState): void; }; /** * Camera class */ export default class Camera extends TypedEventEmitter implements CameraState { x = 0.5; y = 0.5; angle = 0; ratio = 1; minRatio: number | null = null; maxRatio: number | null = null; enabledZooming = true; enabledPanning = true; enabledRotation = true; clean: ((state: CameraState) => CameraState) | null = null; private nextFrame: number | null = null; private previousState: CameraState | null = null; private enabled = true; animationCallback?: () => void; constructor() { super(); // State this.previousState = this.getState(); } /** * Static method used to create a Camera object with a given state. */ static from(state: CameraState): Camera { const camera = new Camera(); return camera.setState(state); } /** * Method used to enable the camera. */ enable(): this { this.enabled = true; return this; } /** * Method used to disable the camera. */ disable(): this { this.enabled = false; return this; } /** * Method used to retrieve the camera's current state. */ getState(): CameraState { return { x: this.x, y: this.y, angle: this.angle, ratio: this.ratio, }; } /** * Method used to check whether the camera has the given state. */ hasState(state: CameraState): boolean { return this.x === state.x && this.y === state.y && this.ratio === state.ratio && this.angle === state.angle; } /** * Method used to retrieve the camera's previous state. */ getPreviousState(): CameraState | null { const state = this.previousState; if (!state) return null; return { x: state.x, y: state.y, angle: state.angle, ratio: state.ratio, }; } /** * Method used to check minRatio and maxRatio values. */ getBoundedRatio(ratio: number): number { let r = ratio; if (typeof this.minRatio === "number") r = Math.max(r, this.minRatio); if (typeof this.maxRatio === "number") r = Math.min(r, this.maxRatio); return r; } /** * Method used to check various things to return a legit state candidate. */ validateState(state: Partial): Partial { const validatedState: Partial = {}; if (this.enabledPanning && typeof state.x === "number") validatedState.x = state.x; if (this.enabledPanning && typeof state.y === "number") validatedState.y = state.y; if (this.enabledZooming && typeof state.ratio === "number") validatedState.ratio = this.getBoundedRatio(state.ratio); if (this.enabledRotation && typeof state.angle === "number") validatedState.angle = state.angle; return this.clean ? this.clean({ ...this.getState(), ...validatedState }) : validatedState; } /** * Method used to check whether the camera is currently being animated. */ isAnimated(): boolean { return !!this.nextFrame; } /** * Method used to set the camera's state. */ setState(state: Partial): this { if (!this.enabled) return this; // Keeping track of last state this.previousState = this.getState(); const validState = this.validateState(state); if (typeof validState.x === "number") this.x = validState.x; if (typeof validState.y === "number") this.y = validState.y; if (typeof validState.ratio === "number") this.ratio = validState.ratio; if (typeof validState.angle === "number") this.angle = validState.angle; // Emitting if (!this.hasState(this.previousState)) this.emit("updated", this.getState()); return this; } /** * Method used to update the camera's state using a function. */ updateState(updater: (state: CameraState) => Partial): this { this.setState(updater(this.getState())); return this; } /** * Method used to animate the camera. */ animate(state: Partial, opts: Partial, callback: () => void): void; animate(state: Partial, opts?: Partial): Promise; animate( state: Partial, opts: Partial = {}, callback?: () => void, ): void | Promise { if (!callback) return new Promise((resolve) => this.animate(state, opts, resolve)); if (!this.enabled) return; const options: AnimateOptions = { ...ANIMATE_DEFAULTS, ...opts, }; const validState = this.validateState(state); const easing: (k: number) => number = typeof options.easing === "function" ? options.easing : easings[options.easing]; // State const start = Date.now(), initialState = this.getState(); // Function performing the animation const fn = () => { const t = (Date.now() - start) / options.duration; // The animation is over: if (t >= 1) { this.nextFrame = null; this.setState(validState); if (this.animationCallback) { this.animationCallback.call(null); this.animationCallback = undefined; } return; } const coefficient = easing(t); const newState: Partial = {}; if (typeof validState.x === "number") newState.x = initialState.x + (validState.x - initialState.x) * coefficient; if (typeof validState.y === "number") newState.y = initialState.y + (validState.y - initialState.y) * coefficient; if (this.enabledRotation && typeof validState.angle === "number") newState.angle = initialState.angle + (validState.angle - initialState.angle) * coefficient; if (typeof validState.ratio === "number") newState.ratio = initialState.ratio + (validState.ratio - initialState.ratio) * coefficient; this.setState(newState); this.nextFrame = requestAnimationFrame(fn); }; if (this.nextFrame) { cancelAnimationFrame(this.nextFrame); if (this.animationCallback) this.animationCallback.call(null); this.nextFrame = requestAnimationFrame(fn); } else { fn(); } this.animationCallback = callback; } /** * Method used to zoom the camera. */ animatedZoom(factorOrOptions?: number | (Partial & { factor?: number })): Promise { if (!factorOrOptions) return this.animate({ ratio: this.ratio / DEFAULT_ZOOMING_RATIO }); if (typeof factorOrOptions === "number") return this.animate({ ratio: this.ratio / factorOrOptions }); return this.animate( { ratio: this.ratio / (factorOrOptions.factor || DEFAULT_ZOOMING_RATIO), }, factorOrOptions, ); } /** * Method used to unzoom the camera. */ animatedUnzoom(factorOrOptions?: number | (Partial & { factor?: number })): Promise { if (!factorOrOptions) return this.animate({ ratio: this.ratio * DEFAULT_ZOOMING_RATIO }); if (typeof factorOrOptions === "number") return this.animate({ ratio: this.ratio * factorOrOptions }); return this.animate( { ratio: this.ratio * (factorOrOptions.factor || DEFAULT_ZOOMING_RATIO), }, factorOrOptions, ); } /** * Method used to reset the camera. */ animatedReset(options?: Partial): Promise { return this.animate( { x: 0.5, y: 0.5, ratio: 1, angle: 0, }, options, ); } /** * Returns a new Camera instance, with the same state as the current camera. */ copy(): Camera { return Camera.from(this.getState()); } } ================================================ FILE: packages/sigma/src/core/captors/captor.ts ================================================ /** * Sigma.js Captor Class * ====================== * @module */ import { Attributes } from "graphology-types"; import Sigma from "../../sigma"; import { Coordinates, EventsMapping, MouseCoords, TouchCoords, TypedEventEmitter, WheelCoords } from "../../types"; /** * Captor utils functions * ====================== */ /** * Extract the local X and Y coordinates from a mouse event or touch object. If * a DOM element is given, it uses this element's offset to compute the position * (this allows using events that are not bound to the container itself and * still have a proper position). * * @param {event} e - A mouse event or touch object. * @param {HTMLElement} dom - A DOM element to compute offset relatively to. * @return {number} The local Y value of the mouse. */ export function getPosition(e: MouseEvent | Touch, dom: HTMLElement): Coordinates { const bbox = dom.getBoundingClientRect(); return { x: e.clientX - bbox.left, y: e.clientY - bbox.top, }; } /** * Convert mouse coords to sigma coords. * * @param {event} e - A mouse event or touch object. * @param {HTMLElement} dom - A DOM element to compute offset relatively to. * @return {object} */ export function getMouseCoords(e: MouseEvent, dom: HTMLElement): MouseCoords { const res: MouseCoords = { ...getPosition(e, dom), sigmaDefaultPrevented: false, preventSigmaDefault(): void { res.sigmaDefaultPrevented = true; }, original: e, }; return res; } /** * Takes a touch coords or a mouse coords, and always returns a clean mouse coords object. */ export function cleanMouseCoords(e: MouseCoords | TouchCoords): MouseCoords { const res: MouseCoords = "x" in e ? e : { ...(e.touches[0] || e.previousTouches[0]), original: e.original, sigmaDefaultPrevented: e.sigmaDefaultPrevented, preventSigmaDefault: () => { e.sigmaDefaultPrevented = true; res.sigmaDefaultPrevented = true; }, }; return res; } /** * Convert mouse wheel event coords to sigma coords. * * @param {event} e - A wheel mouse event. * @param {HTMLElement} dom - A DOM element to compute offset relatively to. * @return {object} */ export function getWheelCoords(e: WheelEvent, dom: HTMLElement): WheelCoords { return { ...getMouseCoords(e, dom), delta: getWheelDelta(e), }; } const MAX_TOUCHES = 2; export function getTouchesArray(touches: TouchList): Touch[] { const arr: Touch[] = []; for (let i = 0, l = Math.min(touches.length, MAX_TOUCHES); i < l; i++) arr.push(touches[i]); return arr; } /** * Convert touch coords to sigma coords. * * @param {event} e - A touch event. * @param {Touch[]} previousTouches - An array of the previously stored touches. * @param {HTMLElement} dom - A DOM element to compute offset relatively to. * @return {object} */ export function getTouchCoords(e: TouchEvent, previousTouches: Touch[], dom: HTMLElement): TouchCoords { const res: TouchCoords = { touches: getTouchesArray(e.touches).map((touch) => getPosition(touch, dom)), previousTouches: previousTouches.map((touch) => getPosition(touch, dom)), sigmaDefaultPrevented: false, preventSigmaDefault(): void { res.sigmaDefaultPrevented = true; }, original: e, }; return res; } /** * Extract the wheel delta from a mouse event or touch object. * * @param {event} e - A mouse event or touch object. * @return {number} The wheel delta of the mouse. */ export function getWheelDelta(e: WheelEvent): number { // TODO: check those ratios again to ensure a clean Chrome/Firefox compat if (typeof e.deltaY !== "undefined") return (e.deltaY * -3) / 360; if (typeof e.detail !== "undefined") return e.detail / -9; throw new Error("Captor: could not extract delta from event."); } /** * Abstract class representing a captor like the user's mouse or touch controls. */ export default abstract class Captor< Events extends EventsMapping, N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends TypedEventEmitter { container: HTMLElement; renderer: Sigma; constructor(container: HTMLElement, renderer: Sigma) { super(); // Properties this.container = container; this.renderer = renderer; } abstract kill(): void; } ================================================ FILE: packages/sigma/src/core/captors/mouse.ts ================================================ /** * Sigma.js Mouse Captor * ====================== * * Sigma's captor dealing with the user's mouse. * @module */ import { Attributes } from "graphology-types"; import { DEFAULT_SETTINGS, Settings } from "../../settings"; import Sigma from "../../sigma"; import { CameraState, MouseCoords, WheelCoords } from "../../types"; import Captor, { getMouseCoords, getPosition, getWheelCoords, getWheelDelta } from "./captor"; export const MOUSE_SETTINGS_KEYS = [ "doubleClickTimeout", "doubleClickZoomingDuration", "doubleClickZoomingRatio", "dragTimeout", "draggedEventsTolerance", "inertiaDuration", "inertiaRatio", "zoomDuration", "zoomingRatio", ] as const; export type MouseSettingKey = (typeof MOUSE_SETTINGS_KEYS)[number]; export type MouseSettings = Pick; export const DEFAULT_MOUSE_SETTINGS = MOUSE_SETTINGS_KEYS.reduce( (iter, key) => ({ ...iter, [key]: DEFAULT_SETTINGS[key] }), {}, ) as MouseSettings; /** * Event types. */ export type MouseCaptorEvents = { click(coordinates: MouseCoords): void; rightClick(coordinates: MouseCoords): void; doubleClick(coordinates: MouseCoords): void; mouseup(coordinates: MouseCoords): void; mousedown(coordinates: MouseCoords): void; mousemove(coordinates: MouseCoords): void; mousemovebody(coordinates: MouseCoords): void; mouseleave(coordinates: MouseCoords): void; mouseenter(coordinates: MouseCoords): void; wheel(coordinates: WheelCoords): void; }; /** * Mouse captor class. * * @constructor */ export default class MouseCaptor< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends Captor { // State enabled = true; draggedEvents = 0; downStartTime: number | null = null; lastMouseX: number | null = null; lastMouseY: number | null = null; isMouseDown = false; isMoving = false; movingTimeout: number | null = null; startCameraState: CameraState | null = null; clicks = 0; doubleClickTimeout: number | null = null; currentWheelDirection: -1 | 0 | 1 = 0; lastWheelTriggerTime?: number; settings: MouseSettings = DEFAULT_MOUSE_SETTINGS; constructor(container: HTMLElement, renderer: Sigma) { super(container, renderer); // Binding methods this.handleClick = this.handleClick.bind(this); this.handleRightClick = this.handleRightClick.bind(this); this.handleDown = this.handleDown.bind(this); this.handleUp = this.handleUp.bind(this); this.handleMove = this.handleMove.bind(this); this.handleWheel = this.handleWheel.bind(this); this.handleLeave = this.handleLeave.bind(this); this.handleEnter = this.handleEnter.bind(this); // Binding events container.addEventListener("click", this.handleClick, { capture: false }); container.addEventListener("contextmenu", this.handleRightClick, { capture: false }); container.addEventListener("mousedown", this.handleDown, { capture: false }); container.addEventListener("wheel", this.handleWheel, { capture: false }); container.addEventListener("mouseleave", this.handleLeave, { capture: false }); container.addEventListener("mouseenter", this.handleEnter, { capture: false }); document.addEventListener("mousemove", this.handleMove, { capture: false }); document.addEventListener("mouseup", this.handleUp, { capture: false }); } kill(): void { const container = this.container; container.removeEventListener("click", this.handleClick); container.removeEventListener("contextmenu", this.handleRightClick); container.removeEventListener("mousedown", this.handleDown); container.removeEventListener("wheel", this.handleWheel); container.removeEventListener("mouseleave", this.handleLeave); container.removeEventListener("mouseenter", this.handleEnter); document.removeEventListener("mousemove", this.handleMove); document.removeEventListener("mouseup", this.handleUp); } handleClick(e: MouseEvent): void { if (!this.enabled) return; this.clicks++; if (this.clicks === 2) { this.clicks = 0; if (typeof this.doubleClickTimeout === "number") { clearTimeout(this.doubleClickTimeout); this.doubleClickTimeout = null; } return this.handleDoubleClick(e); } setTimeout(() => { this.clicks = 0; this.doubleClickTimeout = null; }, this.settings.doubleClickTimeout); // NOTE: this is here to prevent click events on drag if (this.draggedEvents < this.settings.draggedEventsTolerance) this.emit("click", getMouseCoords(e, this.container)); } handleRightClick(e: MouseEvent): void { if (!this.enabled) return; this.emit("rightClick", getMouseCoords(e, this.container)); } handleDoubleClick(e: MouseEvent): void { if (!this.enabled) return; e.preventDefault(); e.stopPropagation(); const mouseCoords = getMouseCoords(e, this.container); this.emit("doubleClick", mouseCoords); if (mouseCoords.sigmaDefaultPrevented) return; // default behavior const camera = this.renderer.getCamera(); const newRatio = camera.getBoundedRatio(camera.getState().ratio / this.settings.doubleClickZoomingRatio); camera.animate(this.renderer.getViewportZoomedState(getPosition(e, this.container), newRatio), { easing: "quadraticInOut", duration: this.settings.doubleClickZoomingDuration, }); } handleDown(e: MouseEvent): void { if (!this.enabled) return; // We only start dragging on left button if (e.button === 0) { this.startCameraState = this.renderer.getCamera().getState(); const { x, y } = getPosition(e, this.container); this.lastMouseX = x; this.lastMouseY = y; this.draggedEvents = 0; this.downStartTime = Date.now(); this.isMouseDown = true; } this.emit("mousedown", getMouseCoords(e, this.container)); } handleUp(e: MouseEvent): void { if (!this.enabled || !this.isMouseDown) return; const camera = this.renderer.getCamera(); this.isMouseDown = false; if (typeof this.movingTimeout === "number") { clearTimeout(this.movingTimeout); this.movingTimeout = null; } const { x, y } = getPosition(e, this.container); const cameraState = camera.getState(), previousCameraState = camera.getPreviousState() || { x: 0, y: 0 }; if (this.isMoving) { camera.animate( { x: cameraState.x + this.settings.inertiaRatio * (cameraState.x - previousCameraState.x), y: cameraState.y + this.settings.inertiaRatio * (cameraState.y - previousCameraState.y), }, { duration: this.settings.inertiaDuration, easing: "quadraticOut", }, ); } else if (this.lastMouseX !== x || this.lastMouseY !== y) { camera.setState({ x: cameraState.x, y: cameraState.y, }); } this.isMoving = false; setTimeout(() => { const shouldRefresh = this.draggedEvents > 0; this.draggedEvents = 0; // NOTE: this refresh is here to make sure `hideEdgesOnMove` can work // when someone releases camera pan drag after having stopped moving. // See commit: https://github.com/jacomyal/sigma.js/commit/cfd9197f70319109db6b675dd7c82be493ca95a2 // See also issue: https://github.com/jacomyal/sigma.js/issues/1290 // It could be possible to render instead of scheduling a refresh but for // now it seems good enough. if (shouldRefresh && this.renderer.getSetting("hideEdgesOnMove")) this.renderer.refresh(); }, 0); this.emit("mouseup", getMouseCoords(e, this.container)); } handleMove(e: MouseEvent): void { if (!this.enabled) return; const mouseCoords = getMouseCoords(e, this.container); // Always trigger a "mousemovebody" event, so that it is possible to develop // a drag-and-drop effect that works even when the mouse is out of the // container: this.emit("mousemovebody", mouseCoords); // Only trigger the "mousemove" event when the mouse is actually hovering // the container, to avoid weirdly hovering nodes and/or edges when the // mouse is not hover the container: if (e.target === this.container || e.composedPath()[0] === this.container) { this.emit("mousemove", mouseCoords); } if (mouseCoords.sigmaDefaultPrevented) return; // Handle the case when "isMouseDown" all the time, to allow dragging the // stage while the mouse is not hover the container: if (this.isMouseDown) { this.isMoving = true; this.draggedEvents++; if (typeof this.movingTimeout === "number") { clearTimeout(this.movingTimeout); } this.movingTimeout = window.setTimeout(() => { this.movingTimeout = null; this.isMoving = false; }, this.settings.dragTimeout); const camera = this.renderer.getCamera(); const { x: eX, y: eY } = getPosition(e, this.container); const lastMouse = this.renderer.viewportToFramedGraph({ x: this.lastMouseX as number, y: this.lastMouseY as number, }); const mouse = this.renderer.viewportToFramedGraph({ x: eX, y: eY }); const offsetX = lastMouse.x - mouse.x, offsetY = lastMouse.y - mouse.y; const cameraState = camera.getState(); const x = cameraState.x + offsetX, y = cameraState.y + offsetY; camera.setState({ x, y }); this.lastMouseX = eX; this.lastMouseY = eY; e.preventDefault(); e.stopPropagation(); } } handleLeave(e: MouseEvent): void { this.emit("mouseleave", getMouseCoords(e, this.container)); } handleEnter(e: MouseEvent): void { this.emit("mouseenter", getMouseCoords(e, this.container)); } handleWheel(e: WheelEvent): void { const camera = this.renderer.getCamera(); if (!this.enabled || !camera.enabledZooming) return; const delta = getWheelDelta(e); if (!delta) return; const wheelCoords = getWheelCoords(e, this.container); this.emit("wheel", wheelCoords); if (wheelCoords.sigmaDefaultPrevented) { e.preventDefault(); e.stopPropagation(); return; } // Default behavior const currentRatio = camera.getState().ratio; const ratioDiff = delta > 0 ? 1 / this.settings.zoomingRatio : this.settings.zoomingRatio; const newRatio = camera.getBoundedRatio(currentRatio * ratioDiff); const wheelDirection = delta > 0 ? 1 : -1; const now = Date.now(); // Exit early without preventing default behavior when ratio doesn't change: if (currentRatio === newRatio) return; e.preventDefault(); e.stopPropagation(); // Cancel events that are too close each other and in the same direction: if ( this.currentWheelDirection === wheelDirection && this.lastWheelTriggerTime && now - this.lastWheelTriggerTime < this.settings.zoomDuration / 5 ) { return; } camera.animate( this.renderer.getViewportZoomedState(getPosition(e, this.container), newRatio), { easing: "quadraticOut", duration: this.settings.zoomDuration, }, () => { this.currentWheelDirection = 0; }, ); this.currentWheelDirection = wheelDirection; this.lastWheelTriggerTime = now; } setSettings(settings: MouseSettings): void { this.settings = settings; } } ================================================ FILE: packages/sigma/src/core/captors/touch.ts ================================================ /** * Sigma.js Touch Captor * ====================== * * Sigma's captor dealing with touch. * @module */ import { Attributes } from "graphology-types"; import { DEFAULT_SETTINGS, Settings } from "../../settings"; import Sigma from "../../sigma"; import { CameraState, Coordinates, Dimensions, TouchCoords } from "../../types"; import Captor, { getPosition, getTouchCoords, getTouchesArray } from "./captor"; export const TOUCH_SETTINGS_KEYS = [ "dragTimeout", "inertiaDuration", "inertiaRatio", "doubleClickTimeout", "doubleClickZoomingRatio", "doubleClickZoomingDuration", "tapMoveTolerance", ] as const; export type TouchSettingKey = (typeof TOUCH_SETTINGS_KEYS)[number]; export type TouchSettings = Pick; export const DEFAULT_TOUCH_SETTINGS = TOUCH_SETTINGS_KEYS.reduce( (iter, key) => ({ ...iter, [key]: DEFAULT_SETTINGS[key] }), {}, ) as TouchSettings; /** * Event types. */ export type TouchCaptorEventType = "touchdown" | "touchup" | "touchmove" | "touchmovebody" | "tap" | "doubletap"; export type TouchCaptorEvents = Record void>; /** * Touch captor class. * * @constructor */ export default class TouchCaptor< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends Captor { enabled = true; isMoving = false; hasMoved = false; startCameraState?: CameraState; touchMode = 0; // number of touches down movingTimeout?: number; startTouchesAngle?: number; startTouchesDistance?: number; startTouchesPositions: Coordinates[] = []; lastTouchesPositions?: Coordinates[]; lastTouches: Touch[] = []; lastTap: null | { position: Coordinates; time: number } = null; settings: TouchSettings = DEFAULT_TOUCH_SETTINGS; constructor(container: HTMLElement, renderer: Sigma) { super(container, renderer); // Binding methods: this.handleStart = this.handleStart.bind(this); this.handleLeave = this.handleLeave.bind(this); this.handleMove = this.handleMove.bind(this); // Binding events container.addEventListener("touchstart", this.handleStart, { capture: false }); container.addEventListener("touchcancel", this.handleLeave, { capture: false }); document.addEventListener("touchend", this.handleLeave, { capture: false, passive: false }); document.addEventListener("touchmove", this.handleMove, { capture: false, passive: false }); } kill(): void { const container = this.container; container.removeEventListener("touchstart", this.handleStart); container.removeEventListener("touchcancel", this.handleLeave); document.removeEventListener("touchend", this.handleLeave); document.removeEventListener("touchmove", this.handleMove); } getDimensions(): Dimensions { return { width: this.container.offsetWidth, height: this.container.offsetHeight, }; } handleStart(e: TouchEvent): void { if (!this.enabled) return; e.preventDefault(); const touches = getTouchesArray(e.touches); this.touchMode = touches.length; this.startCameraState = this.renderer.getCamera().getState(); this.startTouchesPositions = touches.map((touch) => getPosition(touch, this.container)); // When there are two touches down, let's record distance and angle as well: if (this.touchMode === 2) { const [{ x: x0, y: y0 }, { x: x1, y: y1 }] = this.startTouchesPositions; this.startTouchesAngle = Math.atan2(y1 - y0, x1 - x0); this.startTouchesDistance = Math.sqrt(Math.pow(x1 - x0, 2) + Math.pow(y1 - y0, 2)); } this.emit("touchdown", getTouchCoords(e, this.lastTouches, this.container)); this.lastTouches = touches; this.lastTouchesPositions = this.startTouchesPositions; } handleLeave(e: TouchEvent): void { if (!this.enabled || !this.startTouchesPositions.length) return; if (e.cancelable) e.preventDefault(); if (this.movingTimeout) { this.isMoving = false; clearTimeout(this.movingTimeout); } switch (this.touchMode) { // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore case 2: if (e.touches.length === 1) { this.handleStart(e); e.preventDefault(); break; } /* falls through */ case 1: if (this.isMoving) { const camera = this.renderer.getCamera(); const cameraState = camera.getState(), previousCameraState = camera.getPreviousState() || { x: 0, y: 0 }; camera.animate( { x: cameraState.x + this.settings.inertiaRatio * (cameraState.x - previousCameraState.x), y: cameraState.y + this.settings.inertiaRatio * (cameraState.y - previousCameraState.y), }, { duration: this.settings.inertiaDuration, easing: "quadraticOut", }, ); } this.hasMoved = false; this.isMoving = false; this.touchMode = 0; break; } this.emit("touchup", getTouchCoords(e, this.lastTouches, this.container)); // When the last touch ends and there hasn't been too much movement, trigger a "tap" or "doubletap" event: if (!e.touches.length) { const position = getPosition(this.lastTouches[0], this.container); const downPosition = this.startTouchesPositions[0]; const dSquare = (position.x - downPosition.x) ** 2 + (position.y - downPosition.y) ** 2; if (!e.touches.length && dSquare < this.settings.tapMoveTolerance ** 2) { // Only trigger "doubletap" when the last tap is recent enough: if (this.lastTap && Date.now() - this.lastTap.time < this.settings.doubleClickTimeout) { const touchCoords = getTouchCoords(e, this.lastTouches, this.container); this.emit("doubletap", touchCoords); this.lastTap = null; if (!touchCoords.sigmaDefaultPrevented) { const camera = this.renderer.getCamera(); const newRatio = camera.getBoundedRatio(camera.getState().ratio / this.settings.doubleClickZoomingRatio); camera.animate(this.renderer.getViewportZoomedState(position, newRatio), { easing: "quadraticInOut", duration: this.settings.doubleClickZoomingDuration, }); } } // Else, trigger a normal "tap" event: else { const touchCoords = getTouchCoords(e, this.lastTouches, this.container); this.emit("tap", touchCoords); this.lastTap = { time: Date.now(), position: touchCoords.touches[0] || touchCoords.previousTouches[0] }; } } } this.lastTouches = getTouchesArray(e.touches); this.startTouchesPositions = []; } handleMove(e: TouchEvent): void { if (!this.enabled || !this.startTouchesPositions.length) return; e.preventDefault(); const touches = getTouchesArray(e.touches); const touchesPositions = touches.map((touch) => getPosition(touch, this.container)); const lastTouches = this.lastTouches; this.lastTouches = touches; this.lastTouchesPositions = touchesPositions; const touchCoords = getTouchCoords(e, lastTouches, this.container); this.emit("touchmove", touchCoords); if (touchCoords.sigmaDefaultPrevented) return; // If a move was initiated at some point, and we get back to start point, // we should still consider that we did move (which also happens after a // multiple touch when only one touch remains in which case handleStart // is recalled within handleLeave). // Now, some mobile browsers report zero-distance moves so we also check that // one of the touches did actually move from the origin position. this.hasMoved ||= touchesPositions.some((position, idx) => { const startPosition = this.startTouchesPositions[idx]; return startPosition && (position.x !== startPosition.x || position.y !== startPosition.y); }); // If there was no move, do not trigger touch moves behavior if (!this.hasMoved) { return; } this.isMoving = true; if (this.movingTimeout) clearTimeout(this.movingTimeout); this.movingTimeout = window.setTimeout(() => { this.isMoving = false; }, this.settings.dragTimeout); const camera = this.renderer.getCamera(); const startCameraState = this.startCameraState as CameraState; const padding = this.renderer.getSetting("stagePadding"); switch (this.touchMode) { case 1: { const { x: xStart, y: yStart } = this.renderer.viewportToFramedGraph( (this.startTouchesPositions || [])[0] as Coordinates, ); const { x, y } = this.renderer.viewportToFramedGraph(touchesPositions[0]); camera.setState({ x: startCameraState.x + xStart - x, y: startCameraState.y + yStart - y, }); break; } case 2: { /** * Here is the thinking here: * * 1. We can find the new angle and ratio, by comparing the vector from "touch one" to "touch two" at the start * of the d'n'd and now * * 2. We can use `Camera#viewportToGraph` inside formula to retrieve the new camera position, using the graph * position of a touch at the beginning of the d'n'd (using `startCamera.viewportToGraph`) and the viewport * position of this same touch now */ const newCameraState: CameraState = { x: 0.5, y: 0.5, angle: 0, ratio: 1, }; const { x: x0, y: y0 } = touchesPositions[0]; const { x: x1, y: y1 } = touchesPositions[1]; const angleDiff = Math.atan2(y1 - y0, x1 - x0) - (this.startTouchesAngle as number); const ratioDiff = Math.hypot(y1 - y0, x1 - x0) / (this.startTouchesDistance as number); // 1. const newRatio = camera.getBoundedRatio(startCameraState.ratio / ratioDiff); newCameraState.ratio = newRatio; newCameraState.angle = startCameraState.angle + angleDiff; // 2. const dimensions = this.getDimensions(); const touchGraphPosition = this.renderer.viewportToFramedGraph( (this.startTouchesPositions || [])[0] as Coordinates, { cameraState: startCameraState }, ); const smallestDimension = Math.min(dimensions.width, dimensions.height) - 2 * padding; const dx = smallestDimension / dimensions.width; const dy = smallestDimension / dimensions.height; const ratio = newRatio / smallestDimension; // Align with center of the graph: let x = x0 - smallestDimension / 2 / dx; let y = y0 - smallestDimension / 2 / dy; // Rotate: [x, y] = [ x * Math.cos(-newCameraState.angle) - y * Math.sin(-newCameraState.angle), y * Math.cos(-newCameraState.angle) + x * Math.sin(-newCameraState.angle), ]; newCameraState.x = touchGraphPosition.x - x * ratio; newCameraState.y = touchGraphPosition.y + y * ratio; camera.setState(newCameraState); break; } } } setSettings(settings: TouchSettings): void { this.settings = settings; } } ================================================ FILE: packages/sigma/src/core/labels.ts ================================================ /** * Sigma.js Labels Heuristics * =========================== * * Miscellaneous heuristics related to label display. * @module */ import Graph from "graphology-types"; import { Coordinates, Dimensions } from "../types"; /** * Class representing a single candidate for the label grid selection. * * It also describes a deterministic way to compare two candidates to assess * which one is better. */ class LabelCandidate { key: string; size: number; constructor(key: string, size: number) { this.key = key; this.size = size; } static compare(first: LabelCandidate, second: LabelCandidate): number { // First we compare by size if (first.size > second.size) return -1; if (first.size < second.size) return 1; // Then since no two nodes can have the same key, we use it to // deterministically tie-break by key if (first.key > second.key) return 1; // NOTE: this comparator cannot return 0 return -1; } } /** * Class representing a 2D spatial grid divided into constant-size cells. */ export class LabelGrid { width = 0; height = 0; cellSize = 0; columns = 0; rows = 0; cells: Record> = {}; resizeAndClear(dimensions: Dimensions, cellSize: number): void { this.width = dimensions.width; this.height = dimensions.height; this.cellSize = cellSize; this.columns = Math.ceil(dimensions.width / cellSize); this.rows = Math.ceil(dimensions.height / cellSize); this.cells = {}; } private getIndex(pos: Coordinates): number { const xIndex = Math.floor(pos.x / this.cellSize); const yIndex = Math.floor(pos.y / this.cellSize); return yIndex * this.columns + xIndex; } add(key: string, size: number, pos: Coordinates): void { const candidate = new LabelCandidate(key, size); const index = this.getIndex(pos); let cell = this.cells[index]; if (!cell) { cell = []; this.cells[index] = cell; } cell.push(candidate); } organize(): void { for (const k in this.cells) { const cell = this.cells[k]; cell.sort(LabelCandidate.compare); } } getLabelsToDisplay(ratio: number, density: number): Array { // TODO: work on visible nodes to optimize? ^ -> threshold outside so that memoization works? // TODO: adjust threshold lower, but increase cells a bit? // TODO: hunt for geom issue in disguise // TODO: memoize while ratio does not move. method to force recompute const cellArea = this.cellSize * this.cellSize; const scaledCellArea = cellArea / ratio / ratio; const scaledDensity = (scaledCellArea * density) / cellArea; const labelsToDisplayPerCell = Math.ceil(scaledDensity); const labels: string[] = []; for (const k in this.cells) { const cell = this.cells[k]; for (let i = 0; i < Math.min(labelsToDisplayPerCell, cell.length); i++) { labels.push(cell[i].key); } } return labels; } } /** * Label heuristic selecting edge labels to display, based on displayed node * labels * * @param {object} params - Parameters: * @param {Set} displayedNodeLabels - Currently displayed node labels. * @param {Set} highlightedNodes - Highlighted nodes. * @param {Graph} graph - The rendered graph. * @param {string} hoveredNode - Hovered node (optional) * @return {Array} - The selected labels. */ export function edgeLabelsToDisplayFromNodes(params: { displayedNodeLabels: Set; highlightedNodes: Set; graph: Graph; hoveredNode: string | null; }): Array { const { graph, hoveredNode, highlightedNodes, displayedNodeLabels } = params; const worthyEdges: Array = []; // TODO: the code below can be optimized using #.forEach and batching the code per adj // We should display an edge's label if: // - Any of its extremities is highlighted or hovered // - Both of its extremities has its label shown graph.forEachEdge((edge, _, source, target) => { if ( source === hoveredNode || target === hoveredNode || highlightedNodes.has(source) || highlightedNodes.has(target) || (displayedNodeLabels.has(source) && displayedNodeLabels.has(target)) ) { worthyEdges.push(edge); } }); return worthyEdges; } ================================================ FILE: packages/sigma/src/index-bundle.ts ================================================ /** * Sigma.js Bundle Endpoint * ======================== * * The library endpoint. * Will be built so that it exports a global `Sigma` class, that also exposes * useful classes as static properties. * @module */ import EdgeCurveProgram from "@sigma/edge-curve"; import { createNodeBorderProgram } from "@sigma/node-border"; import { createNodeImageProgram } from "@sigma/node-image"; import { createNodePiechartProgram } from "@sigma/node-piechart"; import * as rendering from "./rendering"; import * as utils from "./utils"; import Camera from "./core/camera"; import MouseCaptor from "./core/captors/mouse"; import SigmaClass from "./sigma"; class Sigma extends SigmaClass { static Camera = Camera; static MouseCaptor = MouseCaptor; static Sigma = SigmaClass; static rendering = { ...rendering, createNodeBorderProgram, createNodeImageProgram, createNodePiechartProgram, EdgeCurveProgram, }; static utils = utils; } export default Sigma; ================================================ FILE: packages/sigma/src/index.ts ================================================ /** * Sigma.js Library Endpoint * ========================= * * The library endpoint. * @module */ import Camera from "./core/camera"; import MouseCaptor from "./core/captors/mouse"; import TouchCaptor from "./core/captors/touch"; import Sigma from "./sigma"; export default Sigma; export { Sigma, Camera, MouseCaptor, TouchCaptor }; ================================================ FILE: packages/sigma/src/rendering/edge-labels.ts ================================================ import { Attributes } from "graphology-types"; import { Settings } from "../settings"; import { EdgeDisplayData, NodeDisplayData, PartialButFor } from "../types"; export type EdgeLabelDrawingFunction< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > = ( context: CanvasRenderingContext2D, edgeData: PartialButFor, sourceData: PartialButFor, targetData: PartialButFor, settings: Settings, ) => void; export function drawStraightEdgeLabel< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >( context: CanvasRenderingContext2D, edgeData: PartialButFor, sourceData: PartialButFor, targetData: PartialButFor, settings: Settings, ): void { const size = settings.edgeLabelSize, font = settings.edgeLabelFont, weight = settings.edgeLabelWeight, color = settings.edgeLabelColor.attribute ? edgeData[settings.edgeLabelColor.attribute] || settings.edgeLabelColor.color || "#000" : settings.edgeLabelColor.color; let label = edgeData.label; if (!label) return; context.fillStyle = color; context.font = `${weight} ${size}px ${font}`; // Computing positions without considering nodes sizes: const sSize = sourceData.size; const tSize = targetData.size; let sx = sourceData.x; let sy = sourceData.y; let tx = targetData.x; let ty = targetData.y; let cx = (sx + tx) / 2; let cy = (sy + ty) / 2; let dx = tx - sx; let dy = ty - sy; let d = Math.sqrt(dx * dx + dy * dy); if (d < sSize + tSize) return; // Adding nodes sizes: sx += (dx * sSize) / d; sy += (dy * sSize) / d; tx -= (dx * tSize) / d; ty -= (dy * tSize) / d; cx = (sx + tx) / 2; cy = (sy + ty) / 2; dx = tx - sx; dy = ty - sy; d = Math.sqrt(dx * dx + dy * dy); // Handling ellipsis let textLength = context.measureText(label).width; if (textLength > d) { const ellipsis = "…"; label = label + ellipsis; textLength = context.measureText(label).width; while (textLength > d && label.length > 1) { label = label.slice(0, -2) + ellipsis; textLength = context.measureText(label).width; } if (label.length < 4) return; } let angle; if (dx > 0) { if (dy > 0) angle = Math.acos(dx / d); else angle = Math.asin(dy / d); } else { if (dy > 0) angle = Math.acos(dx / d) + Math.PI; else angle = Math.asin(dx / d) + Math.PI / 2; } context.save(); context.translate(cx, cy); context.rotate(angle); context.fillText(label, -textLength / 2, edgeData.size / 2 + size); context.restore(); } ================================================ FILE: packages/sigma/src/rendering/edge.ts ================================================ /** * Sigma.js WebGL Abstract Edge Program * ===================================== * * @module */ import { Attributes } from "graphology-types"; import Sigma from "../sigma"; import { EdgeDisplayData, NodeDisplayData, RenderParams } from "../types"; import { indexToColor } from "../utils"; import { EdgeLabelDrawingFunction } from "./edge-labels"; import { AbstractProgram, Program } from "./program"; export abstract class AbstractEdgeProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends AbstractProgram { abstract drawLabel: EdgeLabelDrawingFunction | undefined; abstract process( edgeIndex: number, offset: number, sourceData: NodeDisplayData, targetData: NodeDisplayData, data: EdgeDisplayData, ): void; } export abstract class EdgeProgram< Uniform extends string = string, N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends Program implements AbstractEdgeProgram { drawLabel: EdgeLabelDrawingFunction | undefined = undefined; kill(): void { super.kill(); } process( edgeIndex: number, offset: number, sourceData: NodeDisplayData, targetData: NodeDisplayData, data: EdgeDisplayData, ): void { let i = offset * this.STRIDE; // NOTE: dealing with hidden items automatically if (data.hidden || sourceData.hidden || targetData.hidden) { for (let l = i + this.STRIDE; i < l; i++) { this.array[i] = 0; } return; } return this.processVisibleItem(indexToColor(edgeIndex), i, sourceData, targetData, data); } abstract processVisibleItem( edgeIndex: number, startIndex: number, sourceData: NodeDisplayData, targetData: NodeDisplayData, data: EdgeDisplayData, ): void; } class _EdgeProgramClass< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > implements AbstractEdgeProgram { constructor(_gl: WebGLRenderingContext, _pickingBuffer: WebGLFramebuffer | null, _renderer: Sigma) { return this; } drawLabel: EdgeLabelDrawingFunction | undefined = undefined; kill(): void { return undefined; } reallocate(_capacity: number): void { return undefined; } process( _edgeIndex: number, _offset: number, _sourceData: NodeDisplayData, _targetData: NodeDisplayData, _data: EdgeDisplayData, ): void { return undefined; } render(_params: RenderParams): void { return undefined; } } export type EdgeProgramType< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > = typeof _EdgeProgramClass; /** * Helper function combining two or more programs into a single compound one. * Note that this is more a quick & easy way to combine program than a really * performant option. More performant programs can be written entirely. * * @param {array} programClasses - Program classes to combine. * @param {function} drawLabel - An optional edge "draw label" function. * @return {function} */ export function createEdgeCompoundProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >( programClasses: Array>, drawLabel?: EdgeLabelDrawingFunction, ): EdgeProgramType { return class EdgeCompoundProgram implements AbstractEdgeProgram { programs: Array>; constructor(gl: WebGLRenderingContext, pickingBuffer: WebGLFramebuffer | null, renderer: Sigma) { this.programs = programClasses.map((Program) => { return new Program(gl, pickingBuffer, renderer); }); } drawLabel = drawLabel; reallocate(capacity: number): void { this.programs.forEach((program) => program.reallocate(capacity)); } process( edgeIndex: number, offset: number, sourceData: NodeDisplayData, targetData: NodeDisplayData, data: EdgeDisplayData, ): void { this.programs.forEach((program) => program.process(edgeIndex, offset, sourceData, targetData, data)); } render(params: RenderParams): void { this.programs.forEach((program) => program.render(params)); } kill(): void { this.programs.forEach((program) => program.kill()); } }; } ================================================ FILE: packages/sigma/src/rendering/index.ts ================================================ /** * Just some shortcuts to ease importing various rendering related things from * the codebase: */ export { NodeProgram, AbstractNodeProgram, createNodeCompoundProgram } from "./node"; export type { NodeProgramType } from "./node"; export { EdgeProgram, AbstractEdgeProgram, createEdgeCompoundProgram } from "./edge"; export type { EdgeProgramType } from "./edge"; export { Program, AbstractProgram } from "./program"; export type { ProgramType } from "./program"; // Canvas helpers export type { EdgeLabelDrawingFunction } from "./edge-labels"; export { drawStraightEdgeLabel } from "./edge-labels"; export type { NodeLabelDrawingFunction } from "./node-labels"; export { drawDiscNodeLabel } from "./node-labels"; export type { NodeHoverDrawingFunction } from "./node-hover"; export { drawDiscNodeHover } from "./node-hover"; // Other various program helpers export * from "./utils"; // Built-in node programs export { default as NodeCircleProgram } from "./programs/node-circle"; export { default as NodePointProgram } from "./programs/node-point"; // Built-in edge programs export { default as EdgeArrowHeadProgram, createEdgeArrowHeadProgram, DEFAULT_EDGE_ARROW_HEAD_PROGRAM_OPTIONS, type CreateEdgeArrowHeadProgramOptions, } from "./programs/edge-arrow-head"; export { default as EdgeClampedProgram, createEdgeClampedProgram, DEFAULT_EDGE_CLAMPED_PROGRAM_OPTIONS, type CreateEdgeClampedProgramOptions, } from "./programs/edge-clamped"; export { default as EdgeDoubleClampedProgram, createEdgeDoubleClampedProgram, DEFAULT_EDGE_DOUBLE_CLAMPED_PROGRAM_OPTIONS, type CreateEdgeDoubleClampedProgramOptions, } from "./programs/edge-double-clamped"; export { default as EdgeArrowProgram, createEdgeArrowProgram } from "./programs/edge-arrow"; export { default as EdgeDoubleArrowProgram, createEdgeDoubleArrowProgram } from "./programs/edge-double-arrow"; export { default as EdgeLineProgram } from "./programs/edge-line"; export { default as EdgeRectangleProgram } from "./programs/edge-rectangle"; export { default as EdgeTriangleProgram } from "./programs/edge-triangle"; ================================================ FILE: packages/sigma/src/rendering/node-hover.ts ================================================ import { Attributes } from "graphology-types"; import { Settings } from "../settings"; import { NodeDisplayData, PartialButFor } from "../types"; import { drawDiscNodeLabel } from "./node-labels"; export type NodeHoverDrawingFunction< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > = ( context: CanvasRenderingContext2D, data: PartialButFor, settings: Settings, ) => void; /** * Draw an hovered node. * - if there is no label => display a shadow on the node * - if the label box is bigger than node size => display a label box that contains the node with a shadow * - else node with shadow and the label box */ export function drawDiscNodeHover< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >( context: CanvasRenderingContext2D, data: PartialButFor, settings: Settings, ): void { const size = settings.labelSize, font = settings.labelFont, weight = settings.labelWeight; context.font = `${weight} ${size}px ${font}`; // Then we draw the label background context.fillStyle = "#FFF"; context.shadowOffsetX = 0; context.shadowOffsetY = 0; context.shadowBlur = 8; context.shadowColor = "#000"; const PADDING = 2; if (typeof data.label === "string") { const textWidth = context.measureText(data.label).width, boxWidth = Math.round(textWidth + 5), boxHeight = Math.round(size + 2 * PADDING), radius = Math.max(data.size, size / 2) + PADDING; const angleRadian = Math.asin(boxHeight / 2 / radius); const xDeltaCoord = Math.sqrt(Math.abs(Math.pow(radius, 2) - Math.pow(boxHeight / 2, 2))); context.beginPath(); context.moveTo(data.x + xDeltaCoord, data.y + boxHeight / 2); context.lineTo(data.x + radius + boxWidth, data.y + boxHeight / 2); context.lineTo(data.x + radius + boxWidth, data.y - boxHeight / 2); context.lineTo(data.x + xDeltaCoord, data.y - boxHeight / 2); context.arc(data.x, data.y, radius, angleRadian, -angleRadian); context.closePath(); context.fill(); } else { context.beginPath(); context.arc(data.x, data.y, data.size + PADDING, 0, Math.PI * 2); context.closePath(); context.fill(); } context.shadowOffsetX = 0; context.shadowOffsetY = 0; context.shadowBlur = 0; // And finally we draw the label drawDiscNodeLabel(context, data, settings); } ================================================ FILE: packages/sigma/src/rendering/node-labels.ts ================================================ import { Attributes } from "graphology-types"; import { Settings } from "../settings"; import { NodeDisplayData, PartialButFor } from "../types"; export type NodeLabelDrawingFunction< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > = ( context: CanvasRenderingContext2D, data: PartialButFor, settings: Settings, ) => void; export function drawDiscNodeLabel< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >( context: CanvasRenderingContext2D, data: PartialButFor, settings: Settings, ): void { if (!data.label) return; const size = settings.labelSize, font = settings.labelFont, weight = settings.labelWeight, color = settings.labelColor.attribute ? data[settings.labelColor.attribute] || settings.labelColor.color || "#000" : settings.labelColor.color; context.fillStyle = color; context.font = `${weight} ${size}px ${font}`; context.fillText(data.label, data.x + data.size + 3, data.y + size / 3); } ================================================ FILE: packages/sigma/src/rendering/node.ts ================================================ /** * Sigma.js WebGL Abstract Node Program * ===================================== * * @module */ import { Attributes } from "graphology-types"; import Sigma from "../sigma"; import { NodeDisplayData, NonEmptyArray, RenderParams } from "../types"; import { indexToColor } from "../utils"; import { NodeHoverDrawingFunction } from "./node-hover"; import { NodeLabelDrawingFunction } from "./node-labels"; import { AbstractProgram, Program } from "./program"; export abstract class AbstractNodeProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends AbstractProgram { abstract drawLabel: NodeLabelDrawingFunction | undefined; abstract drawHover: NodeHoverDrawingFunction | undefined; abstract process(nodeIndex: number, offset: number, data: NodeDisplayData): void; } export abstract class NodeProgram< Uniform extends string = string, N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends Program implements AbstractNodeProgram { drawLabel: NodeLabelDrawingFunction | undefined; drawHover: NodeHoverDrawingFunction | undefined; kill(): void { super.kill(); } process(nodeIndex: number, offset: number, data: NodeDisplayData): void { let i = offset * this.STRIDE; // NOTE: dealing with hidden items automatically if (data.hidden) { for (let l = i + this.STRIDE; i < l; i++) { this.array[i] = 0; } return; } return this.processVisibleItem(indexToColor(nodeIndex), i, data); } abstract processVisibleItem(nodeIndex: number, i: number, data: NodeDisplayData): void; } class _NodeProgramClass< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > implements AbstractNodeProgram { constructor(_gl: WebGLRenderingContext, _pickingBuffer: WebGLFramebuffer | null, _renderer: Sigma) { return this; } drawLabel: NodeLabelDrawingFunction | undefined; drawHover: NodeHoverDrawingFunction | undefined; kill(): void { return undefined; } reallocate(_capacity: number): void { return undefined; } process(_nodeIndex: number, _offset: number, _data: NodeDisplayData): void { return undefined; } render(_params: RenderParams): void { return undefined; } } export type NodeProgramType< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > = typeof _NodeProgramClass; /** * Helper function combining two or more programs into a single compound one. * Note that this is more a quick & easy way to combine program than a really * performant option. More performant programs can be written entirely. * * @param {array} programClasses - Program classes to combine. * @param {function} drawLabel - An optional node "draw label" function. * @param {function} drawHover - An optional node "draw hover" function. * @return {function} */ export function createNodeCompoundProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >( programClasses: NonEmptyArray>, drawLabel?: NodeLabelDrawingFunction, drawHover?: NodeLabelDrawingFunction, ): NodeProgramType { return class NodeCompoundProgram implements AbstractNodeProgram { programs: NonEmptyArray>; constructor(gl: WebGLRenderingContext, pickingBuffer: WebGLFramebuffer | null, renderer: Sigma) { this.programs = programClasses.map((Program) => { return new Program(gl, pickingBuffer, renderer); }) as unknown as NonEmptyArray>; } drawLabel = drawLabel; drawHover = drawHover; reallocate(capacity: number): void { this.programs.forEach((program) => program.reallocate(capacity)); } process(nodeIndex: number, offset: number, data: NodeDisplayData): void { this.programs.forEach((program) => program.process(nodeIndex, offset, data)); } render(params: RenderParams): void { this.programs.forEach((program) => program.render(params)); } kill(): void { this.programs.forEach((program) => program.kill()); } }; } ================================================ FILE: packages/sigma/src/rendering/program.ts ================================================ /** * Sigma.js WebGL Renderer Program * ================================ * * Class representing a single WebGL program used by sigma's WebGL renderer. * @module */ import { Attributes } from "graphology-types"; import type Sigma from "../sigma"; import type { RenderParams } from "../types"; import { InstancedProgramDefinition, ProgramAttributeSpecification, ProgramDefinition, ProgramInfo, getAttributesItemsCount, killProgram, loadFragmentShader, loadProgram, loadVertexShader, } from "./utils"; const PICKING_PREFIX = `#define PICKING_MODE\n`; const SIZE_FACTOR_PER_ATTRIBUTE_TYPE: Record = { [WebGL2RenderingContext.BOOL]: 1, [WebGL2RenderingContext.BYTE]: 1, [WebGL2RenderingContext.UNSIGNED_BYTE]: 1, [WebGL2RenderingContext.SHORT]: 2, [WebGL2RenderingContext.UNSIGNED_SHORT]: 2, [WebGL2RenderingContext.INT]: 4, [WebGL2RenderingContext.UNSIGNED_INT]: 4, [WebGL2RenderingContext.FLOAT]: 4, }; export abstract class AbstractProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > { constructor(_gl: WebGLRenderingContext, _pickGl: WebGLRenderingContext, _renderer: Sigma) {} abstract reallocate(capacity: number): void; abstract render(params: RenderParams): void; abstract kill(): void; } export abstract class Program< Uniform extends string = string, N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > implements AbstractProgram, InstancedProgramDefinition { VERTICES: number; VERTEX_SHADER_SOURCE: string; FRAGMENT_SHADER_SOURCE: string; UNIFORMS: ReadonlyArray; ATTRIBUTES: Array; METHOD: number; // GLenum CONSTANT_ATTRIBUTES: Array; CONSTANT_DATA: number[][]; ATTRIBUTES_ITEMS_COUNT: number; STRIDE: number; renderer: Sigma; array: Float32Array = new Float32Array(); constantArray: Float32Array = new Float32Array(); capacity = 0; verticesCount = 0; normalProgram: ProgramInfo; pickProgram: ProgramInfo | null; isInstanced: boolean; abstract getDefinition(): ProgramDefinition | InstancedProgramDefinition; constructor( gl: WebGLRenderingContext | WebGL2RenderingContext, pickingBuffer: WebGLFramebuffer | null, renderer: Sigma, ) { // Reading and caching program definition const def = this.getDefinition(); this.VERTICES = def.VERTICES; this.VERTEX_SHADER_SOURCE = def.VERTEX_SHADER_SOURCE; this.FRAGMENT_SHADER_SOURCE = def.FRAGMENT_SHADER_SOURCE; this.UNIFORMS = def.UNIFORMS; this.ATTRIBUTES = def.ATTRIBUTES; this.METHOD = def.METHOD; this.CONSTANT_ATTRIBUTES = "CONSTANT_ATTRIBUTES" in def ? def.CONSTANT_ATTRIBUTES : []; this.CONSTANT_DATA = "CONSTANT_DATA" in def ? def.CONSTANT_DATA : []; this.isInstanced = "CONSTANT_ATTRIBUTES" in def; // Computing stride this.ATTRIBUTES_ITEMS_COUNT = getAttributesItemsCount(this.ATTRIBUTES); this.STRIDE = this.VERTICES * this.ATTRIBUTES_ITEMS_COUNT; // Members this.renderer = renderer; this.normalProgram = this.getProgramInfo("normal", gl, def.VERTEX_SHADER_SOURCE, def.FRAGMENT_SHADER_SOURCE, null); this.pickProgram = pickingBuffer ? this.getProgramInfo( "pick", gl, PICKING_PREFIX + def.VERTEX_SHADER_SOURCE, PICKING_PREFIX + def.FRAGMENT_SHADER_SOURCE, pickingBuffer, ) : null; // For instanced programs: if (this.isInstanced) { const constantAttributesItemsCount = getAttributesItemsCount(this.CONSTANT_ATTRIBUTES); if (this.CONSTANT_DATA.length !== this.VERTICES) throw new Error( `Program: error while getting constant data (expected ${this.VERTICES} items, received ${this.CONSTANT_DATA.length} instead)`, ); this.constantArray = new Float32Array(this.CONSTANT_DATA.length * constantAttributesItemsCount); for (let i = 0; i < this.CONSTANT_DATA.length; i++) { const vector = this.CONSTANT_DATA[i]; if (vector.length !== constantAttributesItemsCount) throw new Error( `Program: error while getting constant data (one vector has ${vector.length} items instead of ${constantAttributesItemsCount})`, ); for (let j = 0; j < vector.length; j++) this.constantArray[i * constantAttributesItemsCount + j] = vector[j]; } this.STRIDE = this.ATTRIBUTES_ITEMS_COUNT; } } kill() { killProgram(this.normalProgram); if (this.pickProgram) { killProgram(this.pickProgram); this.pickProgram = null; } } protected getProgramInfo( name: "normal" | "pick", gl: WebGLRenderingContext | WebGL2RenderingContext, vertexShaderSource: string, fragmentShaderSource: string, frameBuffer: WebGLFramebuffer | null, ): ProgramInfo { const def = this.getDefinition(); // WebGL buffers const buffer = gl.createBuffer(); if (buffer === null) throw new Error("Program: error while creating the WebGL buffer."); // Shaders and program const vertexShader = loadVertexShader(gl, vertexShaderSource); const fragmentShader = loadFragmentShader(gl, fragmentShaderSource); const program = loadProgram(gl, [vertexShader, fragmentShader]); // Initializing locations const uniformLocations = {} as ProgramInfo["uniformLocations"]; def.UNIFORMS.forEach((uniformName) => { const location = gl.getUniformLocation(program, uniformName); if (location) uniformLocations[uniformName] = location; }); const attributeLocations = {} as ProgramInfo["attributeLocations"]; def.ATTRIBUTES.forEach((attr) => { attributeLocations[attr.name] = gl.getAttribLocation(program, attr.name); }); // For instanced programs: let constantBuffer; if ("CONSTANT_ATTRIBUTES" in def) { def.CONSTANT_ATTRIBUTES.forEach((attr) => { attributeLocations[attr.name] = gl.getAttribLocation(program, attr.name); }); constantBuffer = gl.createBuffer(); if (constantBuffer === null) throw new Error("Program: error while creating the WebGL constant buffer."); } return { name, program, gl, frameBuffer, buffer, constantBuffer: constantBuffer || ({} as WebGLBuffer), uniformLocations, attributeLocations, isPicking: name === "pick", vertexShader, fragmentShader, }; } protected bindProgram(program: ProgramInfo): void { let offset = 0; const { gl, buffer } = program; if (!this.isInstanced) { gl.bindBuffer(gl.ARRAY_BUFFER, buffer); offset = 0; this.ATTRIBUTES.forEach((attr) => (offset += this.bindAttribute(attr, program, offset))); gl.bufferData(gl.ARRAY_BUFFER, this.array, gl.DYNAMIC_DRAW); } else { // Handle constant data (things that remain unchanged for all items): gl.bindBuffer(gl.ARRAY_BUFFER, program.constantBuffer); offset = 0; this.CONSTANT_ATTRIBUTES.forEach((attr) => (offset += this.bindAttribute(attr, program, offset, false))); gl.bufferData(gl.ARRAY_BUFFER, this.constantArray, gl.STATIC_DRAW); // Handle "instance specific" data (things that vary for each item): gl.bindBuffer(gl.ARRAY_BUFFER, program.buffer); offset = 0; this.ATTRIBUTES.forEach((attr) => (offset += this.bindAttribute(attr, program, offset, true))); gl.bufferData(gl.ARRAY_BUFFER, this.array, gl.DYNAMIC_DRAW); } gl.bindBuffer(gl.ARRAY_BUFFER, null); } protected unbindProgram(program: ProgramInfo): void { if (!this.isInstanced) { this.ATTRIBUTES.forEach((attr) => this.unbindAttribute(attr, program)); } else { this.CONSTANT_ATTRIBUTES.forEach((attr) => this.unbindAttribute(attr, program, false)); this.ATTRIBUTES.forEach((attr) => this.unbindAttribute(attr, program, true)); } } protected bindAttribute( attr: ProgramAttributeSpecification, program: ProgramInfo, offset: number, setDivisor?: boolean, ): number { const sizeFactor = SIZE_FACTOR_PER_ATTRIBUTE_TYPE[attr.type]; if (typeof sizeFactor !== "number") throw new Error(`Program.bind: yet unsupported attribute type "${attr.type}"`); const location = program.attributeLocations[attr.name]; const gl = program.gl; if (location !== -1) { gl.enableVertexAttribArray(location); const stride = !this.isInstanced ? this.ATTRIBUTES_ITEMS_COUNT * Float32Array.BYTES_PER_ELEMENT : (setDivisor ? this.ATTRIBUTES_ITEMS_COUNT : getAttributesItemsCount(this.CONSTANT_ATTRIBUTES)) * Float32Array.BYTES_PER_ELEMENT; gl.vertexAttribPointer(location, attr.size, attr.type, attr.normalized || false, stride, offset); if (this.isInstanced && setDivisor) { if (gl instanceof WebGL2RenderingContext) { gl.vertexAttribDivisor(location, 1); } else { const ext = gl.getExtension("ANGLE_instanced_arrays"); if (ext) ext.vertexAttribDivisorANGLE(location, 1); } } } return attr.size * sizeFactor; } protected unbindAttribute(attr: ProgramAttributeSpecification, program: ProgramInfo, unsetDivisor?: boolean) { const location = program.attributeLocations[attr.name]; const gl = program.gl; if (location !== -1) { gl.disableVertexAttribArray(location); if (this.isInstanced && unsetDivisor) { if (gl instanceof WebGL2RenderingContext) { gl.vertexAttribDivisor(location, 0); } else { const ext = gl.getExtension("ANGLE_instanced_arrays"); if (ext) ext.vertexAttribDivisorANGLE(location, 0); } } } } reallocate(capacity: number): void { // If desired capacity has not changed we do nothing // NOTE: it's possible here to implement more subtle reallocation schemes // when the number of rendered items increase or decrease if (capacity === this.capacity) return; this.capacity = capacity; this.verticesCount = this.VERTICES * capacity; this.array = new Float32Array( !this.isInstanced ? this.verticesCount * this.ATTRIBUTES_ITEMS_COUNT : this.capacity * this.ATTRIBUTES_ITEMS_COUNT, ); } hasNothingToRender(): boolean { return this.verticesCount === 0; } abstract setUniforms(params: RenderParams, programInfo: ProgramInfo): void; protected renderProgram(params: RenderParams, programInfo: ProgramInfo): void { const { gl, program } = programInfo; // With the current fix for #1397, the alpha blending is enabled for the // picking layer: gl.enable(gl.BLEND); // Original code: // if (!isPicking) gl.enable(gl.BLEND); // else gl.disable(gl.BLEND); gl.useProgram(program); this.setUniforms(params, programInfo); this.drawWebGL(this.METHOD, programInfo); } render(params: RenderParams): void { if (this.hasNothingToRender()) return; if (this.pickProgram) { this.pickProgram.gl.viewport( 0, 0, (params.width * params.pixelRatio) / params.downSizingRatio, (params.height * params.pixelRatio) / params.downSizingRatio, ); this.bindProgram(this.pickProgram); this.renderProgram({ ...params, pixelRatio: params.pixelRatio / params.downSizingRatio }, this.pickProgram); this.unbindProgram(this.pickProgram); } this.normalProgram.gl.viewport(0, 0, params.width * params.pixelRatio, params.height * params.pixelRatio); this.bindProgram(this.normalProgram); this.renderProgram(params, this.normalProgram); this.unbindProgram(this.normalProgram); } drawWebGL(method: number /* GLenum */, { gl, frameBuffer }: ProgramInfo): void { gl.bindFramebuffer(gl.FRAMEBUFFER, frameBuffer); if (!this.isInstanced) { gl.drawArrays(method, 0, this.verticesCount); } else { if (gl instanceof WebGL2RenderingContext) { gl.drawArraysInstanced(method, 0, this.VERTICES, this.capacity); } else { const ext = gl.getExtension("ANGLE_instanced_arrays"); if (ext) ext.drawArraysInstancedANGLE(method, 0, this.VERTICES, this.capacity); } } } } class _ProgramClass< Uniform extends string = string, N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends Program { getDefinition(): ProgramDefinition | InstancedProgramDefinition { return {} as unknown as ProgramDefinition; } setUniforms(_params: RenderParams, _programInfo: ProgramInfo) { return undefined; } } export type ProgramType< Uniform extends string = string, N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > = typeof _ProgramClass; ================================================ FILE: packages/sigma/src/rendering/programs/edge-arrow/index.ts ================================================ import { Attributes } from "graphology-types"; import { EdgeProgramType, createEdgeCompoundProgram } from "../../edge"; import { CreateEdgeArrowHeadProgramOptions, createEdgeArrowHeadProgram } from "../edge-arrow-head"; import { createEdgeClampedProgram } from "../edge-clamped"; export function createEdgeArrowProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(inputOptions?: Partial>): EdgeProgramType { return createEdgeCompoundProgram([createEdgeClampedProgram(inputOptions), createEdgeArrowHeadProgram(inputOptions)]); } const EdgeArrowProgram = createEdgeArrowProgram(); export default EdgeArrowProgram; ================================================ FILE: packages/sigma/src/rendering/programs/edge-arrow-head/frag.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` precision mediump float; varying vec4 v_color; void main(void) { gl_FragColor = v_color; } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/programs/edge-arrow-head/index.ts ================================================ import { Attributes } from "graphology-types"; import { EdgeDisplayData, NodeDisplayData, RenderParams } from "../../../types"; import { floatColor } from "../../../utils"; import { EdgeProgram, EdgeProgramType } from "../../edge"; import { ProgramInfo } from "../../utils"; import FRAGMENT_SHADER_SOURCE from "./frag.glsl"; import VERTEX_SHADER_SOURCE from "./vert.glsl"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; const UNIFORMS = [ "u_matrix", "u_sizeRatio", "u_correctionRatio", "u_minEdgeThickness", "u_lengthToThicknessRatio", "u_widenessToThicknessRatio", ] as const; export type CreateEdgeArrowHeadProgramOptions = { extremity: "source" | "target"; lengthToThicknessRatio: number; widenessToThicknessRatio: number; }; export const DEFAULT_EDGE_ARROW_HEAD_PROGRAM_OPTIONS: CreateEdgeArrowHeadProgramOptions = { extremity: "target", lengthToThicknessRatio: 2.5, widenessToThicknessRatio: 2, }; export function createEdgeArrowHeadProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(inputOptions?: Partial): EdgeProgramType { const options = { ...DEFAULT_EDGE_ARROW_HEAD_PROGRAM_OPTIONS, ...(inputOptions || {}), }; return class EdgeArrowHeadProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends EdgeProgram<(typeof UNIFORMS)[number], N, E, G> { getDefinition() { return { VERTICES: 3, VERTEX_SHADER_SOURCE, FRAGMENT_SHADER_SOURCE, METHOD: WebGLRenderingContext.TRIANGLES, UNIFORMS, ATTRIBUTES: [ { name: "a_position", size: 2, type: FLOAT }, { name: "a_normal", size: 2, type: FLOAT }, { name: "a_radius", size: 1, type: FLOAT }, { name: "a_color", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, ], CONSTANT_ATTRIBUTES: [{ name: "a_barycentric", size: 3, type: FLOAT }], CONSTANT_DATA: [ [1, 0, 0], [0, 1, 0], [0, 0, 1], ], }; } processVisibleItem( edgeIndex: number, startIndex: number, sourceData: NodeDisplayData, targetData: NodeDisplayData, data: EdgeDisplayData, ) { if (options.extremity === "source") { [sourceData, targetData] = [targetData, sourceData]; } const thickness = data.size || 1; const radius = targetData.size || 1; const x1 = sourceData.x; const y1 = sourceData.y; const x2 = targetData.x; const y2 = targetData.y; const color = floatColor(data.color); // Computing normals const dx = x2 - x1; const dy = y2 - y1; let len = dx * dx + dy * dy; let n1 = 0; let n2 = 0; if (len) { len = 1 / Math.sqrt(len); n1 = -dy * len * thickness; n2 = dx * len * thickness; } const array = this.array; array[startIndex++] = x2; array[startIndex++] = y2; array[startIndex++] = -n1; array[startIndex++] = -n2; array[startIndex++] = radius; array[startIndex++] = color; array[startIndex++] = edgeIndex; } setUniforms(params: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_matrix, u_sizeRatio, u_correctionRatio, u_minEdgeThickness, u_lengthToThicknessRatio, u_widenessToThicknessRatio, } = uniformLocations; gl.uniformMatrix3fv(u_matrix, false, params.matrix); gl.uniform1f(u_sizeRatio, params.sizeRatio); gl.uniform1f(u_correctionRatio, params.correctionRatio); gl.uniform1f(u_minEdgeThickness, params.minEdgeThickness); gl.uniform1f(u_lengthToThicknessRatio, options.lengthToThicknessRatio); gl.uniform1f(u_widenessToThicknessRatio, options.widenessToThicknessRatio); } }; } const EdgeArrowHeadProgram = createEdgeArrowHeadProgram(); export default EdgeArrowHeadProgram; ================================================ FILE: packages/sigma/src/rendering/programs/edge-arrow-head/vert.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` attribute vec2 a_position; attribute vec2 a_normal; attribute float a_radius; attribute vec3 a_barycentric; #ifdef PICKING_MODE attribute vec4 a_id; #else attribute vec4 a_color; #endif uniform mat3 u_matrix; uniform float u_sizeRatio; uniform float u_correctionRatio; uniform float u_minEdgeThickness; uniform float u_lengthToThicknessRatio; uniform float u_widenessToThicknessRatio; varying vec4 v_color; const float bias = 255.0 / 254.0; void main() { float minThickness = u_minEdgeThickness; float normalLength = length(a_normal); vec2 unitNormal = a_normal / normalLength; // These first computations are taken from edge.vert.glsl and // edge.clamped.vert.glsl. Please read it to get better comments on what's // happening: float pixelsThickness = max(normalLength / u_sizeRatio, minThickness); float webGLThickness = pixelsThickness * u_correctionRatio; float webGLNodeRadius = a_radius * 2.0 * u_correctionRatio / u_sizeRatio; float webGLArrowHeadLength = webGLThickness * u_lengthToThicknessRatio * 2.0; float webGLArrowHeadThickness = webGLThickness * u_widenessToThicknessRatio; float da = a_barycentric.x; float db = a_barycentric.y; float dc = a_barycentric.z; vec2 delta = vec2( da * (webGLNodeRadius * unitNormal.y) + db * ((webGLNodeRadius + webGLArrowHeadLength) * unitNormal.y + webGLArrowHeadThickness * unitNormal.x) + dc * ((webGLNodeRadius + webGLArrowHeadLength) * unitNormal.y - webGLArrowHeadThickness * unitNormal.x), da * (-webGLNodeRadius * unitNormal.x) + db * (-(webGLNodeRadius + webGLArrowHeadLength) * unitNormal.x + webGLArrowHeadThickness * unitNormal.y) + dc * (-(webGLNodeRadius + webGLArrowHeadLength) * unitNormal.x - webGLArrowHeadThickness * unitNormal.y) ); vec2 position = (u_matrix * vec3(a_position + delta, 1)).xy; gl_Position = vec4(position, 0, 1); #ifdef PICKING_MODE // For picking mode, we use the ID as the color: v_color = a_id; #else // For normal mode, we use the color: v_color = a_color; #endif v_color.a *= bias; } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/programs/edge-clamped/index.ts ================================================ import { Attributes } from "graphology-types"; import { EdgeDisplayData, NodeDisplayData, RenderParams } from "../../../types"; import { floatColor } from "../../../utils"; import { EdgeProgram, EdgeProgramType } from "../../edge"; import { ProgramInfo } from "../../utils"; import { CreateEdgeArrowHeadProgramOptions, DEFAULT_EDGE_ARROW_HEAD_PROGRAM_OPTIONS } from "../edge-arrow-head"; import FRAGMENT_SHADER_SOURCE from "../edge-rectangle/frag.glsl"; import VERTEX_SHADER_SOURCE from "./vert.glsl"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; const UNIFORMS = [ "u_matrix", "u_zoomRatio", "u_sizeRatio", "u_correctionRatio", "u_pixelRatio", "u_feather", "u_minEdgeThickness", "u_lengthToThicknessRatio", ] as const; export type CreateEdgeClampedProgramOptions = Pick; export const DEFAULT_EDGE_CLAMPED_PROGRAM_OPTIONS: CreateEdgeClampedProgramOptions = { lengthToThicknessRatio: DEFAULT_EDGE_ARROW_HEAD_PROGRAM_OPTIONS.lengthToThicknessRatio, }; export function createEdgeClampedProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(inputOptions?: Partial): EdgeProgramType { const options = { ...DEFAULT_EDGE_CLAMPED_PROGRAM_OPTIONS, ...(inputOptions || {}), }; return class EdgeClampedProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends EdgeProgram<(typeof UNIFORMS)[number], N, E, G> { getDefinition() { return { VERTICES: 6, VERTEX_SHADER_SOURCE, FRAGMENT_SHADER_SOURCE, METHOD: WebGLRenderingContext.TRIANGLES, UNIFORMS, ATTRIBUTES: [ { name: "a_positionStart", size: 2, type: FLOAT }, { name: "a_positionEnd", size: 2, type: FLOAT }, { name: "a_normal", size: 2, type: FLOAT }, { name: "a_color", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_radius", size: 1, type: FLOAT }, ], CONSTANT_ATTRIBUTES: [ // If 0, then position will be a_positionStart // If 1, then position will be a_positionEnd { name: "a_positionCoef", size: 1, type: FLOAT }, { name: "a_normalCoef", size: 1, type: FLOAT }, { name: "a_radiusCoef", size: 1, type: FLOAT }, ], CONSTANT_DATA: [ [0, 1, 0], [0, -1, 0], [1, 1, 1], [1, 1, 1], [0, -1, 0], [1, -1, -1], ], }; } processVisibleItem( edgeIndex: number, startIndex: number, sourceData: NodeDisplayData, targetData: NodeDisplayData, data: EdgeDisplayData, ) { const thickness = data.size || 1; const x1 = sourceData.x; const y1 = sourceData.y; const x2 = targetData.x; const y2 = targetData.y; const color = floatColor(data.color); // Computing normals const dx = x2 - x1; const dy = y2 - y1; const radius = targetData.size || 1; let len = dx * dx + dy * dy; let n1 = 0; let n2 = 0; if (len) { len = 1 / Math.sqrt(len); n1 = -dy * len * thickness; n2 = dx * len * thickness; } const array = this.array; array[startIndex++] = x1; array[startIndex++] = y1; array[startIndex++] = x2; array[startIndex++] = y2; array[startIndex++] = n1; array[startIndex++] = n2; array[startIndex++] = color; array[startIndex++] = edgeIndex; array[startIndex++] = radius; } setUniforms(params: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_matrix, u_zoomRatio, u_feather, u_pixelRatio, u_correctionRatio, u_sizeRatio, u_minEdgeThickness, u_lengthToThicknessRatio, } = uniformLocations; gl.uniformMatrix3fv(u_matrix, false, params.matrix); gl.uniform1f(u_zoomRatio, params.zoomRatio); gl.uniform1f(u_sizeRatio, params.sizeRatio); gl.uniform1f(u_correctionRatio, params.correctionRatio); gl.uniform1f(u_pixelRatio, params.pixelRatio); gl.uniform1f(u_feather, params.antiAliasingFeather); gl.uniform1f(u_minEdgeThickness, params.minEdgeThickness); gl.uniform1f(u_lengthToThicknessRatio, options.lengthToThicknessRatio); } }; } const EdgeClampedProgram = createEdgeClampedProgram(); export default EdgeClampedProgram; ================================================ FILE: packages/sigma/src/rendering/programs/edge-clamped/vert.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` attribute vec4 a_id; attribute vec4 a_color; attribute vec2 a_normal; attribute float a_normalCoef; attribute vec2 a_positionStart; attribute vec2 a_positionEnd; attribute float a_positionCoef; attribute float a_radius; attribute float a_radiusCoef; uniform mat3 u_matrix; uniform float u_zoomRatio; uniform float u_sizeRatio; uniform float u_pixelRatio; uniform float u_correctionRatio; uniform float u_minEdgeThickness; uniform float u_lengthToThicknessRatio; uniform float u_feather; varying vec4 v_color; varying vec2 v_normal; varying float v_thickness; varying float v_feather; const float bias = 255.0 / 254.0; void main() { float minThickness = u_minEdgeThickness; float radius = a_radius * a_radiusCoef; vec2 normal = a_normal * a_normalCoef; vec2 position = a_positionStart * (1.0 - a_positionCoef) + a_positionEnd * a_positionCoef; float normalLength = length(normal); vec2 unitNormal = normal / normalLength; // These first computations are taken from edge.vert.glsl. Please read it to // get better comments on what's happening: float pixelsThickness = max(normalLength, minThickness * u_sizeRatio); float webGLThickness = pixelsThickness * u_correctionRatio / u_sizeRatio; // Here, we move the point to leave space for the arrow head: float direction = sign(radius); float webGLNodeRadius = direction * radius * 2.0 * u_correctionRatio / u_sizeRatio; float webGLArrowHeadLength = webGLThickness * u_lengthToThicknessRatio * 2.0; vec2 compensationVector = vec2(-direction * unitNormal.y, direction * unitNormal.x) * (webGLNodeRadius + webGLArrowHeadLength); // Here is the proper position of the vertex gl_Position = vec4((u_matrix * vec3(position + unitNormal * webGLThickness + compensationVector, 1)).xy, 0, 1); v_thickness = webGLThickness / u_zoomRatio; v_normal = unitNormal; v_feather = u_feather * u_correctionRatio / u_zoomRatio / u_pixelRatio * 2.0; #ifdef PICKING_MODE // For picking mode, we use the ID as the color: v_color = a_id; #else // For normal mode, we use the color: v_color = a_color; #endif v_color.a *= bias; } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/programs/edge-double-arrow/index.ts ================================================ import { Attributes } from "graphology-types"; import { EdgeProgramType, createEdgeCompoundProgram } from "../../edge"; import { CreateEdgeArrowHeadProgramOptions, createEdgeArrowHeadProgram } from "../edge-arrow-head"; import { createEdgeDoubleClampedProgram } from "../edge-double-clamped"; export function createEdgeDoubleArrowProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(inputOptions?: Partial>): EdgeProgramType { return createEdgeCompoundProgram([ createEdgeDoubleClampedProgram(inputOptions), createEdgeArrowHeadProgram(inputOptions), createEdgeArrowHeadProgram({ ...inputOptions, extremity: "source" }), ]); } const EdgeDoubleArrowProgram = createEdgeDoubleArrowProgram(); export default EdgeDoubleArrowProgram; ================================================ FILE: packages/sigma/src/rendering/programs/edge-double-clamped/index.ts ================================================ import { Attributes } from "graphology-types"; import { EdgeDisplayData, NodeDisplayData, RenderParams } from "../../../types"; import { floatColor } from "../../../utils"; import { EdgeProgram, EdgeProgramType } from "../../edge"; import { ProgramInfo } from "../../utils"; import { CreateEdgeArrowHeadProgramOptions, DEFAULT_EDGE_ARROW_HEAD_PROGRAM_OPTIONS } from "../edge-arrow-head"; import FRAGMENT_SHADER_SOURCE from "../edge-rectangle/frag.glsl"; import VERTEX_SHADER_SOURCE from "./vert.glsl"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; const UNIFORMS = [ "u_matrix", "u_zoomRatio", "u_sizeRatio", "u_correctionRatio", "u_pixelRatio", "u_feather", "u_minEdgeThickness", "u_lengthToThicknessRatio", ] as const; export type CreateEdgeDoubleClampedProgramOptions = Pick; export const DEFAULT_EDGE_DOUBLE_CLAMPED_PROGRAM_OPTIONS: CreateEdgeDoubleClampedProgramOptions = { lengthToThicknessRatio: DEFAULT_EDGE_ARROW_HEAD_PROGRAM_OPTIONS.lengthToThicknessRatio, }; export function createEdgeDoubleClampedProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(inputOptions?: Partial): EdgeProgramType { const options = { ...DEFAULT_EDGE_DOUBLE_CLAMPED_PROGRAM_OPTIONS, ...(inputOptions || {}), }; return class EdgeDoubleClampedProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends EdgeProgram<(typeof UNIFORMS)[number], N, E, G> { getDefinition() { return { VERTICES: 6, VERTEX_SHADER_SOURCE, FRAGMENT_SHADER_SOURCE, METHOD: WebGLRenderingContext.TRIANGLES, UNIFORMS, ATTRIBUTES: [ { name: "a_positionStart", size: 2, type: FLOAT }, { name: "a_positionEnd", size: 2, type: FLOAT }, { name: "a_normal", size: 2, type: FLOAT }, { name: "a_color", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_sourceRadius", size: 1, type: FLOAT }, { name: "a_targetRadius", size: 1, type: FLOAT }, ], CONSTANT_ATTRIBUTES: [ // If 0, then position will be a_positionStart // If 1, then position will be a_positionEnd { name: "a_positionCoef", size: 1, type: FLOAT }, { name: "a_normalCoef", size: 1, type: FLOAT }, { name: "a_sourceRadiusCoef", size: 1, type: FLOAT }, { name: "a_targetRadiusCoef", size: 1, type: FLOAT }, ], CONSTANT_DATA: [ [0, 1, -1, 0], [0, -1, 1, 0], [1, 1, 0, 1], [1, 1, 0, 1], [0, -1, 1, 0], [1, -1, 0, -1], ], }; } processVisibleItem( edgeIndex: number, startIndex: number, sourceData: NodeDisplayData, targetData: NodeDisplayData, data: EdgeDisplayData, ) { const thickness = data.size || 1; const x1 = sourceData.x; const y1 = sourceData.y; const x2 = targetData.x; const y2 = targetData.y; const color = floatColor(data.color); // Computing normals const dx = x2 - x1; const dy = y2 - y1; const sourceRadius = sourceData.size || 1; const targetRadius = targetData.size || 1; let len = dx * dx + dy * dy; let n1 = 0; let n2 = 0; if (len) { len = 1 / Math.sqrt(len); n1 = -dy * len * thickness; n2 = dx * len * thickness; } const array = this.array; array[startIndex++] = x1; array[startIndex++] = y1; array[startIndex++] = x2; array[startIndex++] = y2; array[startIndex++] = n1; array[startIndex++] = n2; array[startIndex++] = color; array[startIndex++] = edgeIndex; array[startIndex++] = sourceRadius; array[startIndex++] = targetRadius; } setUniforms(params: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_matrix, u_zoomRatio, u_feather, u_pixelRatio, u_correctionRatio, u_sizeRatio, u_minEdgeThickness, u_lengthToThicknessRatio, } = uniformLocations; gl.uniformMatrix3fv(u_matrix, false, params.matrix); gl.uniform1f(u_zoomRatio, params.zoomRatio); gl.uniform1f(u_sizeRatio, params.sizeRatio); gl.uniform1f(u_correctionRatio, params.correctionRatio); gl.uniform1f(u_pixelRatio, params.pixelRatio); gl.uniform1f(u_feather, params.antiAliasingFeather); gl.uniform1f(u_minEdgeThickness, params.minEdgeThickness); gl.uniform1f(u_lengthToThicknessRatio, options.lengthToThicknessRatio); } }; } const EdgeDoubleClampedProgram = createEdgeDoubleClampedProgram(); export default EdgeDoubleClampedProgram; ================================================ FILE: packages/sigma/src/rendering/programs/edge-double-clamped/vert.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` attribute vec4 a_id; attribute vec4 a_color; attribute vec2 a_normal; attribute float a_normalCoef; attribute vec2 a_positionStart; attribute vec2 a_positionEnd; attribute float a_positionCoef; attribute float a_sourceRadius; attribute float a_targetRadius; attribute float a_sourceRadiusCoef; attribute float a_targetRadiusCoef; uniform mat3 u_matrix; uniform float u_zoomRatio; uniform float u_sizeRatio; uniform float u_pixelRatio; uniform float u_correctionRatio; uniform float u_minEdgeThickness; uniform float u_lengthToThicknessRatio; uniform float u_feather; varying vec4 v_color; varying vec2 v_normal; varying float v_thickness; varying float v_feather; const float bias = 255.0 / 254.0; void main() { float minThickness = u_minEdgeThickness; vec2 normal = a_normal * a_normalCoef; vec2 position = a_positionStart * (1.0 - a_positionCoef) + a_positionEnd * a_positionCoef; float normalLength = length(normal); vec2 unitNormal = normal / normalLength; // These first computations are taken from edge.vert.glsl. Please read it to // get better comments on what's happening: float pixelsThickness = max(normalLength, minThickness * u_sizeRatio); float webGLThickness = pixelsThickness * u_correctionRatio / u_sizeRatio; // Here, we move the point to leave space for the arrow heads: // Source arrow head float sourceRadius = a_sourceRadius * a_sourceRadiusCoef; float sourceDirection = sign(sourceRadius); float webGLSourceRadius = sourceDirection * sourceRadius * 2.0 * u_correctionRatio / u_sizeRatio; float webGLSourceArrowHeadLength = webGLThickness * u_lengthToThicknessRatio * 2.0; vec2 sourceCompensationVector = vec2(-sourceDirection * unitNormal.y, sourceDirection * unitNormal.x) * (webGLSourceRadius + webGLSourceArrowHeadLength); // Target arrow head float targetRadius = a_targetRadius * a_targetRadiusCoef; float targetDirection = sign(targetRadius); float webGLTargetRadius = targetDirection * targetRadius * 2.0 * u_correctionRatio / u_sizeRatio; float webGLTargetArrowHeadLength = webGLThickness * u_lengthToThicknessRatio * 2.0; vec2 targetCompensationVector = vec2(-targetDirection * unitNormal.y, targetDirection * unitNormal.x) * (webGLTargetRadius + webGLTargetArrowHeadLength); // Here is the proper position of the vertex gl_Position = vec4((u_matrix * vec3(position + unitNormal * webGLThickness + sourceCompensationVector + targetCompensationVector, 1)).xy, 0, 1); v_thickness = webGLThickness / u_zoomRatio; v_normal = unitNormal; v_feather = u_feather * u_correctionRatio / u_zoomRatio / u_pixelRatio * 2.0; #ifdef PICKING_MODE // For picking mode, we use the ID as the color: v_color = a_id; #else // For normal mode, we use the color: v_color = a_color; #endif v_color.a *= bias; } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/programs/edge-line/frag.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` precision mediump float; varying vec4 v_color; void main(void) { gl_FragColor = v_color; } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/programs/edge-line/index.ts ================================================ /** * Sigma.js WebGL Renderer Fast Edge Program * ========================================== * * Program rendering edges using GL_LINES which is presumably very fast but * won't render thickness correctly on some GPUs and has some quirks. * @module */ import { Attributes } from "graphology-types"; import { EdgeDisplayData, NodeDisplayData, RenderParams } from "../../../types"; import { floatColor } from "../../../utils"; import { EdgeProgram } from "../../edge"; import { ProgramInfo } from "../../utils"; import FRAGMENT_SHADER_SOURCE from "./frag.glsl"; import VERTEX_SHADER_SOURCE from "./vert.glsl"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; const UNIFORMS = ["u_matrix"] as const; export default class EdgeLineProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends EdgeProgram<(typeof UNIFORMS)[number], N, E, G> { getDefinition() { return { VERTICES: 2, VERTEX_SHADER_SOURCE, FRAGMENT_SHADER_SOURCE, METHOD: WebGLRenderingContext.LINES, UNIFORMS, ATTRIBUTES: [ { name: "a_position", size: 2, type: FLOAT }, { name: "a_color", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, ], }; } processVisibleItem( edgeIndex: number, startIndex: number, sourceData: NodeDisplayData, targetData: NodeDisplayData, data: EdgeDisplayData, ) { const array = this.array; const x1 = sourceData.x; const y1 = sourceData.y; const x2 = targetData.x; const y2 = targetData.y; const color = floatColor(data.color); // First point array[startIndex++] = x1; array[startIndex++] = y1; array[startIndex++] = color; array[startIndex++] = edgeIndex; // Second point array[startIndex++] = x2; array[startIndex++] = y2; array[startIndex++] = color; array[startIndex++] = edgeIndex; } setUniforms(params: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_matrix } = uniformLocations; gl.uniformMatrix3fv(u_matrix, false, params.matrix); } } ================================================ FILE: packages/sigma/src/rendering/programs/edge-line/vert.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` attribute vec4 a_id; attribute vec4 a_color; attribute vec2 a_position; uniform mat3 u_matrix; varying vec4 v_color; const float bias = 255.0 / 254.0; void main() { // Scale from [[-1 1] [-1 1]] to the container: gl_Position = vec4( (u_matrix * vec3(a_position, 1)).xy, 0, 1 ); #ifdef PICKING_MODE // For picking mode, we use the ID as the color: v_color = a_id; #else // For normal mode, we use the color: v_color = a_color; #endif v_color.a *= bias; } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/programs/edge-rectangle/frag.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` precision mediump float; varying vec4 v_color; varying vec2 v_normal; varying float v_thickness; varying float v_feather; const vec4 transparent = vec4(0.0, 0.0, 0.0, 0.0); void main(void) { // We only handle antialiasing for normal mode: #ifdef PICKING_MODE gl_FragColor = v_color; #else float dist = length(v_normal) * v_thickness; float t = smoothstep( v_thickness - v_feather, v_thickness, dist ); gl_FragColor = mix(v_color, transparent, t); #endif } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/programs/edge-rectangle/index.ts ================================================ /** * Sigma.js WebGL Renderer Edge Program * ===================================== * * Program rendering edges as thick lines using four points translated * orthogonally from the source & target's centers by half thickness. * * Rendering two triangles by using only four points is made possible through * the use of indices. * * This method should be faster than the 6 points / 2 triangles approach and * should handle thickness better than with gl.LINES. * * This version of the shader balances geometry computation evenly between * the CPU & GPU (normals are computed on the CPU side). * @module */ import { Attributes } from "graphology-types"; import { EdgeDisplayData, NodeDisplayData, RenderParams } from "../../../types"; import { floatColor } from "../../../utils"; import { EdgeProgram } from "../../edge"; import { ProgramInfo } from "../../utils"; import FRAGMENT_SHADER_SOURCE from "./frag.glsl"; import VERTEX_SHADER_SOURCE from "./vert.glsl"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; const UNIFORMS = [ "u_matrix", "u_zoomRatio", "u_sizeRatio", "u_correctionRatio", "u_pixelRatio", "u_feather", "u_minEdgeThickness", ] as const; export default class EdgeRectangleProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends EdgeProgram<(typeof UNIFORMS)[number], N, E, G> { getDefinition() { return { VERTICES: 6, VERTEX_SHADER_SOURCE, FRAGMENT_SHADER_SOURCE, METHOD: WebGLRenderingContext.TRIANGLES, UNIFORMS, ATTRIBUTES: [ { name: "a_positionStart", size: 2, type: FLOAT }, { name: "a_positionEnd", size: 2, type: FLOAT }, { name: "a_normal", size: 2, type: FLOAT }, { name: "a_color", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, ], CONSTANT_ATTRIBUTES: [ // If 0, then position will be a_positionStart // If 2, then position will be a_positionEnd { name: "a_positionCoef", size: 1, type: FLOAT }, { name: "a_normalCoef", size: 1, type: FLOAT }, ], CONSTANT_DATA: [ [0, 1], [0, -1], [1, 1], [1, 1], [0, -1], [1, -1], ], }; } processVisibleItem( edgeIndex: number, startIndex: number, sourceData: NodeDisplayData, targetData: NodeDisplayData, data: EdgeDisplayData, ) { const thickness = data.size || 1; const x1 = sourceData.x; const y1 = sourceData.y; const x2 = targetData.x; const y2 = targetData.y; const color = floatColor(data.color); // Computing normals const dx = x2 - x1; const dy = y2 - y1; let len = dx * dx + dy * dy; let n1 = 0; let n2 = 0; if (len) { len = 1 / Math.sqrt(len); n1 = -dy * len * thickness; n2 = dx * len * thickness; } const array = this.array; array[startIndex++] = x1; array[startIndex++] = y1; array[startIndex++] = x2; array[startIndex++] = y2; array[startIndex++] = n1; array[startIndex++] = n2; array[startIndex++] = color; array[startIndex++] = edgeIndex; } setUniforms(params: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_matrix, u_zoomRatio, u_feather, u_pixelRatio, u_correctionRatio, u_sizeRatio, u_minEdgeThickness } = uniformLocations; gl.uniformMatrix3fv(u_matrix, false, params.matrix); gl.uniform1f(u_zoomRatio, params.zoomRatio); gl.uniform1f(u_sizeRatio, params.sizeRatio); gl.uniform1f(u_correctionRatio, params.correctionRatio); gl.uniform1f(u_pixelRatio, params.pixelRatio); gl.uniform1f(u_feather, params.antiAliasingFeather); gl.uniform1f(u_minEdgeThickness, params.minEdgeThickness); } } ================================================ FILE: packages/sigma/src/rendering/programs/edge-rectangle/vert.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` attribute vec4 a_id; attribute vec4 a_color; attribute vec2 a_normal; attribute float a_normalCoef; attribute vec2 a_positionStart; attribute vec2 a_positionEnd; attribute float a_positionCoef; uniform mat3 u_matrix; uniform float u_sizeRatio; uniform float u_zoomRatio; uniform float u_pixelRatio; uniform float u_correctionRatio; uniform float u_minEdgeThickness; uniform float u_feather; varying vec4 v_color; varying vec2 v_normal; varying float v_thickness; varying float v_feather; const float bias = 255.0 / 254.0; void main() { float minThickness = u_minEdgeThickness; vec2 normal = a_normal * a_normalCoef; vec2 position = a_positionStart * (1.0 - a_positionCoef) + a_positionEnd * a_positionCoef; float normalLength = length(normal); vec2 unitNormal = normal / normalLength; // We require edges to be at least "minThickness" pixels thick *on screen* // (so we need to compensate the size ratio): float pixelsThickness = max(normalLength, minThickness * u_sizeRatio); // Then, we need to retrieve the normalized thickness of the edge in the WebGL // referential (in a ([0, 1], [0, 1]) space), using our "magic" correction // ratio: float webGLThickness = pixelsThickness * u_correctionRatio / u_sizeRatio; // Here is the proper position of the vertex gl_Position = vec4((u_matrix * vec3(position + unitNormal * webGLThickness, 1)).xy, 0, 1); // For the fragment shader though, we need a thickness that takes the "magic" // correction ratio into account (as in webGLThickness), but so that the // antialiasing effect does not depend on the zoom level. So here's yet // another thickness version: v_thickness = webGLThickness / u_zoomRatio; v_normal = unitNormal; v_feather = u_feather * u_correctionRatio / u_zoomRatio / u_pixelRatio * 2.0; #ifdef PICKING_MODE // For picking mode, we use the ID as the color: v_color = a_id; #else // For normal mode, we use the color: v_color = a_color; #endif v_color.a *= bias; } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/programs/edge-triangle/frag.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` precision mediump float; varying vec4 v_color; void main(void) { gl_FragColor = v_color; } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/programs/edge-triangle/index.ts ================================================ /** * Sigma.js WebGL Renderer Triangle Edge Program * ============================================== * * Program rendering directed edges as a single triangle. * @module */ import { Attributes } from "graphology-types"; import { EdgeDisplayData, NodeDisplayData, RenderParams } from "../../../types"; import { floatColor } from "../../../utils"; import { EdgeProgram } from "../../edge"; import { ProgramInfo } from "../../utils"; import FRAGMENT_SHADER_SOURCE from "./frag.glsl"; import VERTEX_SHADER_SOURCE from "./vert.glsl"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; const UNIFORMS = ["u_matrix", "u_sizeRatio", "u_correctionRatio", "u_minEdgeThickness"] as const; export default class EdgeTriangleProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends EdgeProgram<(typeof UNIFORMS)[number], N, E, G> { getDefinition() { return { VERTICES: 3, VERTEX_SHADER_SOURCE, FRAGMENT_SHADER_SOURCE, METHOD: WebGLRenderingContext.TRIANGLES, UNIFORMS, ATTRIBUTES: [ { name: "a_positionStart", size: 2, type: FLOAT }, { name: "a_positionEnd", size: 2, type: FLOAT }, { name: "a_normal", size: 2, type: FLOAT }, { name: "a_color", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, ], CONSTANT_ATTRIBUTES: [ // If 0, then position will be a_positionStart // If 1, then position will be a_positionEnd { name: "a_positionCoef", size: 1, type: FLOAT }, { name: "a_normalCoef", size: 1, type: FLOAT }, ], CONSTANT_DATA: [ [0, 1], [0, -1], [1, 0], ], }; } processVisibleItem( edgeIndex: number, startIndex: number, sourceData: NodeDisplayData, targetData: NodeDisplayData, data: EdgeDisplayData, ) { const thickness = data.size || 1; const x1 = sourceData.x; const y1 = sourceData.y; const x2 = targetData.x; const y2 = targetData.y; const color = floatColor(data.color); // Computing normals const dx = x2 - x1; const dy = y2 - y1; let len = dx * dx + dy * dy; let n1 = 0; let n2 = 0; if (len) { len = 1 / Math.sqrt(len); n1 = -dy * len * thickness; n2 = dx * len * thickness; } const array = this.array; // First point array[startIndex++] = x1; array[startIndex++] = y1; array[startIndex++] = x2; array[startIndex++] = y2; array[startIndex++] = n1; array[startIndex++] = n2; array[startIndex++] = color; array[startIndex++] = edgeIndex; } setUniforms(params: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_matrix, u_sizeRatio, u_correctionRatio, u_minEdgeThickness } = uniformLocations; gl.uniformMatrix3fv(u_matrix, false, params.matrix); gl.uniform1f(u_sizeRatio, params.sizeRatio); gl.uniform1f(u_correctionRatio, params.correctionRatio); gl.uniform1f(u_minEdgeThickness, params.minEdgeThickness); } } ================================================ FILE: packages/sigma/src/rendering/programs/edge-triangle/vert.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` attribute vec4 a_id; attribute vec4 a_color; attribute vec2 a_normal; attribute float a_normalCoef; attribute vec2 a_positionStart; attribute vec2 a_positionEnd; attribute float a_positionCoef; uniform mat3 u_matrix; uniform float u_sizeRatio; uniform float u_correctionRatio; varying vec4 v_color; const float minThickness = 1.7; const float bias = 255.0 / 254.0; void main() { vec2 normal = a_normal * a_normalCoef; vec2 position = a_positionStart * (1.0 - a_positionCoef) + a_positionEnd * a_positionCoef; // The only different here with edge.vert.glsl is that we need to handle null // input normal vector. Apart from that, you can read edge.vert.glsl more info // on how it works: float normalLength = length(normal); vec2 unitNormal = normal / normalLength; if (normalLength <= 0.0) unitNormal = normal; float pixelsThickness = max(normalLength, minThickness * u_sizeRatio); float webGLThickness = pixelsThickness * u_correctionRatio / u_sizeRatio; gl_Position = vec4((u_matrix * vec3(position + unitNormal * webGLThickness, 1)).xy, 0, 1); #ifdef PICKING_MODE // For picking mode, we use the ID as the color: v_color = a_id; #else // For normal mode, we use the color: v_color = a_color; #endif v_color.a *= bias; } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/programs/node-circle/frag.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` precision highp float; varying vec4 v_color; varying vec2 v_diffVector; varying float v_radius; uniform float u_correctionRatio; const vec4 transparent = vec4(0.0, 0.0, 0.0, 0.0); void main(void) { float border = u_correctionRatio * 2.0; float dist = length(v_diffVector) - v_radius + border; // No antialiasing for picking mode: #ifdef PICKING_MODE if (dist > border) gl_FragColor = transparent; else gl_FragColor = v_color; #else float t = 0.0; if (dist > border) t = 1.0; else if (dist > 0.0) t = dist / border; gl_FragColor = mix(v_color, transparent, t); #endif } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/programs/node-circle/index.ts ================================================ /** * Sigma.js WebGL Renderer Node Program * ===================================== * * Simple program rendering nodes as discs, shaped by triangles using the * `gl.TRIANGLES` display mode. So, to draw one node, it will need to store * three times the center of the node, with the color, the size and an angle * indicating which "corner" of the triangle to draw. * @module */ import { Attributes } from "graphology-types"; import { NodeDisplayData, RenderParams } from "../../../types"; import { floatColor } from "../../../utils"; import { NodeProgram } from "../../node"; import { ProgramInfo } from "../../utils"; import FRAGMENT_SHADER_SOURCE from "./frag.glsl"; import VERTEX_SHADER_SOURCE from "./vert.glsl"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; const UNIFORMS = ["u_sizeRatio", "u_correctionRatio", "u_matrix"] as const; export default class NodeCircleProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends NodeProgram<(typeof UNIFORMS)[number], N, E, G> { static readonly ANGLE_1 = 0; static readonly ANGLE_2 = (2 * Math.PI) / 3; static readonly ANGLE_3 = (4 * Math.PI) / 3; getDefinition() { return { VERTICES: 3, VERTEX_SHADER_SOURCE, FRAGMENT_SHADER_SOURCE, METHOD: WebGLRenderingContext.TRIANGLES, UNIFORMS, ATTRIBUTES: [ { name: "a_position", size: 2, type: FLOAT }, { name: "a_size", size: 1, type: FLOAT }, { name: "a_color", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, ], CONSTANT_ATTRIBUTES: [{ name: "a_angle", size: 1, type: FLOAT }], CONSTANT_DATA: [[NodeCircleProgram.ANGLE_1], [NodeCircleProgram.ANGLE_2], [NodeCircleProgram.ANGLE_3]], }; } processVisibleItem(nodeIndex: number, startIndex: number, data: NodeDisplayData) { const array = this.array; const color = floatColor(data.color); array[startIndex++] = data.x; array[startIndex++] = data.y; array[startIndex++] = data.size; array[startIndex++] = color; array[startIndex++] = nodeIndex; } setUniforms(params: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_sizeRatio, u_correctionRatio, u_matrix } = uniformLocations; gl.uniform1f(u_correctionRatio, params.correctionRatio); gl.uniform1f(u_sizeRatio, params.sizeRatio); gl.uniformMatrix3fv(u_matrix, false, params.matrix); } } ================================================ FILE: packages/sigma/src/rendering/programs/node-circle/vert.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` attribute vec4 a_id; attribute vec4 a_color; attribute vec2 a_position; attribute float a_size; attribute float a_angle; uniform mat3 u_matrix; uniform float u_sizeRatio; uniform float u_correctionRatio; varying vec4 v_color; varying vec2 v_diffVector; varying float v_radius; varying float v_border; const float bias = 255.0 / 254.0; void main() { float size = a_size * u_correctionRatio / u_sizeRatio * 4.0; vec2 diffVector = size * vec2(cos(a_angle), sin(a_angle)); vec2 position = a_position + diffVector; gl_Position = vec4( (u_matrix * vec3(position, 1)).xy, 0, 1 ); v_diffVector = diffVector; v_radius = size / 2.0; #ifdef PICKING_MODE // For picking mode, we use the ID as the color: v_color = a_id; #else // For normal mode, we use the color: v_color = a_color; #endif v_color.a *= bias; } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/programs/node-point/frag.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` precision mediump float; varying vec4 v_color; varying float v_border; const float radius = 0.5; const vec4 transparent = vec4(0.0, 0.0, 0.0, 0.0); void main(void) { vec2 m = gl_PointCoord - vec2(0.5, 0.5); float dist = radius - length(m); // No antialiasing for picking mode: #ifdef PICKING_MODE if (dist > v_border) gl_FragColor = v_color; else gl_FragColor = transparent; #else float t = 0.0; if (dist > v_border) t = 1.0; else if (dist > 0.0) t = dist / v_border; gl_FragColor = mix(transparent, v_color, t); #endif } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/programs/node-point/index.ts ================================================ /** * Sigma.js WebGL Renderer Node Program * ===================================== * * Simple program rendering nodes using GL_POINTS. This is faster than the * three triangle option but has some quirks and is not supported equally by * every GPU. * @module */ import { Attributes } from "graphology-types"; import { NodeDisplayData, RenderParams } from "../../../types"; import { floatColor } from "../../../utils"; import { NodeProgram } from "../../node"; import { ProgramInfo } from "../../utils"; import FRAGMENT_SHADER_SOURCE from "./frag.glsl"; import VERTEX_SHADER_SOURCE from "./vert.glsl"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; const UNIFORMS = ["u_sizeRatio", "u_pixelRatio", "u_matrix"] as const; export default class NodePointProgram< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends NodeProgram<(typeof UNIFORMS)[number], N, E, G> { getDefinition() { return { VERTICES: 1, VERTEX_SHADER_SOURCE, FRAGMENT_SHADER_SOURCE, METHOD: WebGLRenderingContext.POINTS, UNIFORMS, ATTRIBUTES: [ { name: "a_position", size: 2, type: FLOAT }, { name: "a_size", size: 1, type: FLOAT }, { name: "a_color", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, ], }; } processVisibleItem(nodeIndex: number, startIndex: number, data: NodeDisplayData) { const array = this.array; array[startIndex++] = data.x; array[startIndex++] = data.y; array[startIndex++] = data.size; array[startIndex++] = floatColor(data.color); array[startIndex++] = nodeIndex; } setUniforms({ sizeRatio, pixelRatio, matrix }: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_sizeRatio, u_pixelRatio, u_matrix } = uniformLocations; gl.uniform1f(u_pixelRatio, pixelRatio); gl.uniform1f(u_sizeRatio, sizeRatio); gl.uniformMatrix3fv(u_matrix, false, matrix); } } ================================================ FILE: packages/sigma/src/rendering/programs/node-point/vert.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` attribute vec4 a_id; attribute vec4 a_color; attribute vec2 a_position; attribute float a_size; uniform float u_sizeRatio; uniform float u_pixelRatio; uniform mat3 u_matrix; varying vec4 v_color; varying float v_border; const float bias = 255.0 / 254.0; void main() { gl_Position = vec4( (u_matrix * vec3(a_position, 1)).xy, 0, 1 ); // Multiply the point size twice: // - x SCALING_RATIO to correct the canvas scaling // - x 2 to correct the formulae gl_PointSize = a_size / u_sizeRatio * u_pixelRatio * 2.0; v_border = (0.5 / a_size) * u_sizeRatio; #ifdef PICKING_MODE // For picking mode, we use the ID as the color: v_color = a_id; #else // For normal mode, we use the color: v_color = a_color; #endif v_color.a *= bias; } `; export default SHADER_SOURCE; ================================================ FILE: packages/sigma/src/rendering/utils.ts ================================================ export function getAttributeItemsCount(attr: ProgramAttributeSpecification): number { return attr.normalized ? 1 : attr.size; } export function getAttributesItemsCount(attrs: ProgramAttributeSpecification[]): number { let res = 0; attrs.forEach((attr) => (res += getAttributeItemsCount(attr))); return res; } export interface ProgramInfo { name: string; isPicking: boolean; program: WebGLProgram; gl: WebGLRenderingContext | WebGL2RenderingContext; frameBuffer: WebGLFramebuffer | null; buffer: WebGLBuffer; constantBuffer: WebGLBuffer; uniformLocations: Record; attributeLocations: Record; // Record vertexShader: WebGLShader; fragmentShader: WebGLShader; } export interface ProgramAttributeSpecification { name: string; size: number; type: number; normalized?: boolean; } export interface ProgramDefinition { VERTICES: number; VERTEX_SHADER_SOURCE: string; FRAGMENT_SHADER_SOURCE: string; UNIFORMS: ReadonlyArray; ATTRIBUTES: Array; METHOD: number; // GLenum } export interface InstancedProgramDefinition extends ProgramDefinition { CONSTANT_ATTRIBUTES: Array; CONSTANT_DATA: number[][]; } function loadShader(type: string, gl: WebGLRenderingContext, source: string): WebGLShader { const glType = type === "VERTEX" ? gl.VERTEX_SHADER : gl.FRAGMENT_SHADER; // Creating the shader const shader = gl.createShader(glType); if (shader === null) { throw new Error(`loadShader: error while creating the shader`); } // Loading source gl.shaderSource(shader, source); // Compiling the shader gl.compileShader(shader); // Retrieving compilation status const successfullyCompiled = gl.getShaderParameter(shader, gl.COMPILE_STATUS); // Throwing if something went awry if (!successfullyCompiled) { const infoLog = gl.getShaderInfoLog(shader); gl.deleteShader(shader); throw new Error(`loadShader: error while compiling the shader:\n${infoLog}\n${source}`); } return shader; } export function loadVertexShader(gl: WebGLRenderingContext, source: string): WebGLShader { return loadShader("VERTEX", gl, source); } export function loadFragmentShader(gl: WebGLRenderingContext, source: string): WebGLShader { return loadShader("FRAGMENT", gl, source); } /** * Function used to load a program. */ export function loadProgram(gl: WebGLRenderingContext, shaders: Array): WebGLProgram { const program = gl.createProgram(); if (program === null) { throw new Error("loadProgram: error while creating the program."); } let i, l; // Attaching the shaders for (i = 0, l = shaders.length; i < l; i++) gl.attachShader(program, shaders[i]); gl.linkProgram(program); // Checking status const successfullyLinked = gl.getProgramParameter(program, gl.LINK_STATUS); if (!successfullyLinked) { gl.deleteProgram(program); throw new Error("loadProgram: error while linking the program."); } return program; } export function killProgram({ gl, buffer, program, vertexShader, fragmentShader }: ProgramInfo): void { gl.deleteShader(vertexShader); gl.deleteShader(fragmentShader); gl.deleteProgram(program); gl.deleteBuffer(buffer); } /** * Function use to print a float for inserting in a GLSL program. */ export function numberToGLSLFloat(n: number): string { return n % 1 === 0 ? n.toFixed(1) : n.toString(); } ================================================ FILE: packages/sigma/src/settings.ts ================================================ /** * Sigma.js Settings * ================================= * * The list of settings and some handy functions. * @module */ import { Attributes } from "graphology-types"; import { EdgeArrowProgram, EdgeLabelDrawingFunction, EdgeProgramType, EdgeRectangleProgram, NodeCircleProgram, NodeHoverDrawingFunction, NodeLabelDrawingFunction, NodeProgramType, drawDiscNodeHover, drawDiscNodeLabel, drawStraightEdgeLabel, } from "./rendering"; import { AtLeastOne, EdgeDisplayData, NodeDisplayData } from "./types"; import { assign } from "./utils"; /** * Sigma.js settings * ================================= */ export interface Settings< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > { // Performance hideEdgesOnMove: boolean; hideLabelsOnMove: boolean; renderLabels: boolean; renderEdgeLabels: boolean; enableEdgeEvents: boolean; // Component rendering defaultNodeColor: string; defaultNodeType: string; defaultEdgeColor: string; defaultEdgeType: string; labelFont: string; labelSize: number; labelWeight: string; labelColor: { attribute: string; color?: string } | { color: string; attribute?: undefined }; edgeLabelFont: string; edgeLabelSize: number; edgeLabelWeight: string; edgeLabelColor: { attribute: string; color?: string } | { color: string; attribute?: undefined }; stagePadding: number; defaultDrawEdgeLabel: EdgeLabelDrawingFunction; defaultDrawNodeLabel: NodeLabelDrawingFunction; defaultDrawNodeHover: NodeHoverDrawingFunction; minEdgeThickness: number; antiAliasingFeather: number; // Mouse and touch settings dragTimeout: number; draggedEventsTolerance: number; inertiaDuration: number; inertiaRatio: number; zoomDuration: number; zoomingRatio: number; doubleClickTimeout: number; doubleClickZoomingRatio: number; doubleClickZoomingDuration: number; tapMoveTolerance: number; // Size and scaling zoomToSizeRatioFunction: (ratio: number) => number; itemSizesReference: "screen" | "positions"; autoRescale: boolean; autoCenter: boolean; // Labels labelDensity: number; labelGridCellSize: number; labelRenderedSizeThreshold: number; // Reducers nodeReducer: null | ((node: string, data: N) => Partial); edgeReducer: null | ((edge: string, data: E) => Partial); // Features zIndex: boolean; minCameraRatio: null | number; maxCameraRatio: null | number; enableCameraZooming: boolean; enableCameraPanning: boolean; enableCameraRotation: boolean; cameraPanBoundaries: | null | true | AtLeastOne<{ tolerance: number; boundaries: { x: [number, number]; y: [number, number] } }>; // Lifecycle allowInvalidContainer: boolean; // Program classes nodeProgramClasses: { [type: string]: NodeProgramType }; nodeHoverProgramClasses: { [type: string]: NodeProgramType }; edgeProgramClasses: { [type: string]: EdgeProgramType }; } export const DEFAULT_SETTINGS: Settings = { // Performance hideEdgesOnMove: false, hideLabelsOnMove: false, renderLabels: true, renderEdgeLabels: false, enableEdgeEvents: false, // Component rendering defaultNodeColor: "#999", defaultNodeType: "circle", defaultEdgeColor: "#ccc", defaultEdgeType: "line", labelFont: "Arial", labelSize: 14, labelWeight: "normal", labelColor: { color: "#000" }, edgeLabelFont: "Arial", edgeLabelSize: 14, edgeLabelWeight: "normal", edgeLabelColor: { attribute: "color" }, stagePadding: 30, defaultDrawEdgeLabel: drawStraightEdgeLabel, defaultDrawNodeLabel: drawDiscNodeLabel, defaultDrawNodeHover: drawDiscNodeHover, minEdgeThickness: 1.7, antiAliasingFeather: 1, // Mouse and touch settings dragTimeout: 100, draggedEventsTolerance: 3, inertiaDuration: 200, inertiaRatio: 3, zoomDuration: 250, zoomingRatio: 1.7, doubleClickTimeout: 300, doubleClickZoomingRatio: 2.2, doubleClickZoomingDuration: 200, tapMoveTolerance: 10, // Size and scaling zoomToSizeRatioFunction: Math.sqrt, itemSizesReference: "screen", autoRescale: true, autoCenter: true, // Labels labelDensity: 1, labelGridCellSize: 100, labelRenderedSizeThreshold: 6, // Reducers nodeReducer: null, edgeReducer: null, // Features zIndex: false, minCameraRatio: null, maxCameraRatio: null, enableCameraZooming: true, enableCameraPanning: true, enableCameraRotation: true, cameraPanBoundaries: null, // Lifecycle allowInvalidContainer: false, // Program classes nodeProgramClasses: {}, nodeHoverProgramClasses: {}, edgeProgramClasses: {}, }; export const DEFAULT_NODE_PROGRAM_CLASSES: Record = { circle: NodeCircleProgram, }; export const DEFAULT_EDGE_PROGRAM_CLASSES: Record = { arrow: EdgeArrowProgram, line: EdgeRectangleProgram, }; export function validateSettings< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(settings: Settings): void { if (typeof settings.labelDensity !== "number" || settings.labelDensity < 0) { throw new Error("Settings: invalid `labelDensity`. Expecting a positive number."); } const { minCameraRatio, maxCameraRatio } = settings; if (typeof minCameraRatio === "number" && typeof maxCameraRatio === "number" && maxCameraRatio < minCameraRatio) { throw new Error( "Settings: invalid camera ratio boundaries. Expecting `maxCameraRatio` to be greater than `minCameraRatio`.", ); } } export function resolveSettings< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(settings: Partial>): Settings { const resolvedSettings = assign({}, DEFAULT_SETTINGS as Settings, settings); resolvedSettings.nodeProgramClasses = assign({}, DEFAULT_NODE_PROGRAM_CLASSES, resolvedSettings.nodeProgramClasses); resolvedSettings.edgeProgramClasses = assign({}, DEFAULT_EDGE_PROGRAM_CLASSES, resolvedSettings.edgeProgramClasses); return resolvedSettings; } ================================================ FILE: packages/sigma/src/sigma.ts ================================================ /** * Sigma.js * ======== * @module */ import Graph, { Attributes } from "graphology-types"; import Camera from "./core/camera"; import { cleanMouseCoords } from "./core/captors/captor"; import MouseCaptor from "./core/captors/mouse"; import TouchCaptor from "./core/captors/touch"; import { LabelGrid, edgeLabelsToDisplayFromNodes } from "./core/labels"; import { AbstractEdgeProgram, AbstractNodeProgram, EdgeProgramType, NodeProgramType } from "./rendering"; import { Settings, resolveSettings, validateSettings } from "./settings"; import { CameraState, CoordinateConversionOverride, Coordinates, Dimensions, EdgeDisplayData, Extent, Listener, MouseCoords, MouseInteraction, NodeDisplayData, PlainObject, RenderParams, SigmaEvents, TouchCoords, TypedEventEmitter, } from "./types"; import { NormalizationFunction, colorToIndex, createElement, createNormalizationFunction, extend, getMatrixImpact, getPixelColor, getPixelRatio, graphExtent, identity, matrixFromCamera, multiplyVec2, validateGraph, zIndexOrdering, } from "./utils"; /** * Constants. */ const X_LABEL_MARGIN = 150; const Y_LABEL_MARGIN = 50; const hasOwnProperty = Object.prototype.hasOwnProperty; /** * Important functions. */ function applyNodeDefaults< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(settings: Settings, key: string, data: Partial): NodeDisplayData { if (!hasOwnProperty.call(data, "x") || !hasOwnProperty.call(data, "y")) throw new Error( `Sigma: could not find a valid position (x, y) for node "${key}". All your nodes must have a number "x" and "y". Maybe your forgot to apply a layout or your "nodeReducer" is not returning the correct data?`, ); if (!data.color) data.color = settings.defaultNodeColor; if (!data.label && data.label !== "") data.label = null; if (data.label !== undefined && data.label !== null) data.label = "" + data.label; else data.label = null; if (!data.size) data.size = 2; if (!hasOwnProperty.call(data, "hidden")) data.hidden = false; if (!hasOwnProperty.call(data, "highlighted")) data.highlighted = false; if (!hasOwnProperty.call(data, "forceLabel")) data.forceLabel = false; if (!data.type || data.type === "") data.type = settings.defaultNodeType; if (!data.zIndex) data.zIndex = 0; return data as NodeDisplayData; } function applyEdgeDefaults< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, >(settings: Settings, _key: string, data: Partial): EdgeDisplayData { if (!data.color) data.color = settings.defaultEdgeColor; if (!data.label) data.label = ""; if (!data.size) data.size = 0.5; if (!hasOwnProperty.call(data, "hidden")) data.hidden = false; if (!hasOwnProperty.call(data, "forceLabel")) data.forceLabel = false; if (!data.type || data.type === "") data.type = settings.defaultEdgeType; if (!data.zIndex) data.zIndex = 0; return data as EdgeDisplayData; } /** * Main class. * * @constructor * @param {Graph} graph - Graph to render. * @param {HTMLElement} container - DOM container in which to render. * @param {object} settings - Optional settings. */ export default class Sigma< N extends Attributes = Attributes, E extends Attributes = Attributes, G extends Attributes = Attributes, > extends TypedEventEmitter { private settings: Settings; private graph: Graph; private mouseCaptor: MouseCaptor; private touchCaptor: TouchCaptor; private container: HTMLElement; private elements: PlainObject = {}; private canvasContexts: PlainObject = {}; private webGLContexts: PlainObject = {}; private pickingLayers: Set = new Set(); private textures: PlainObject = {}; private frameBuffers: PlainObject = {}; private activeListeners: PlainObject = {}; private labelGrid: LabelGrid = new LabelGrid(); private nodeDataCache: Record = {}; private edgeDataCache: Record = {}; // Indices to keep track of the index of the item inside programs private nodeProgramIndex: Record = {}; private edgeProgramIndex: Record = {}; private nodesWithForcedLabels: Set = new Set(); private edgesWithForcedLabels: Set = new Set(); private nodeExtent: { x: Extent; y: Extent } = { x: [0, 1], y: [0, 1] }; private nodeZExtent: [number, number] = [Infinity, -Infinity]; private edgeZExtent: [number, number] = [Infinity, -Infinity]; private matrix: Float32Array = identity(); private invMatrix: Float32Array = identity(); private correctionRatio = 1; private customBBox: { x: Extent; y: Extent } | null = null; private normalizationFunction: NormalizationFunction = createNormalizationFunction({ x: [0, 1], y: [0, 1], }); // Cache: private graphToViewportRatio = 1; private itemIDsIndex: Record = {}; private nodeIndices: Record = {}; private edgeIndices: Record = {}; // Starting dimensions and pixel ratio private width = 0; private height = 0; private pixelRatio = getPixelRatio(); private pickingDownSizingRatio = 2 * this.pixelRatio; // Graph State private displayedNodeLabels: Set = new Set(); private displayedEdgeLabels: Set = new Set(); private highlightedNodes: Set = new Set(); private hoveredNode: string | null = null; private hoveredEdge: string | null = null; // Internal states private renderFrame: number | null = null; private renderHighlightedNodesFrame: number | null = null; private needToProcess = false; private checkEdgesEventsFrame: number | null = null; // Programs private nodePrograms: { [key: string]: AbstractNodeProgram } = {}; private nodeHoverPrograms: { [key: string]: AbstractNodeProgram } = {}; private edgePrograms: { [key: string]: AbstractEdgeProgram } = {}; private camera: Camera; constructor(graph: Graph, container: HTMLElement, settings: Partial> = {}) { super(); // Resolving settings this.settings = resolveSettings(settings); // Validating validateSettings(this.settings); validateGraph(graph); if (!(container instanceof HTMLElement)) throw new Error("Sigma: container should be an html element."); // Properties this.graph = graph; this.container = container; // Initializing contexts this.createWebGLContext("edges", { picking: settings.enableEdgeEvents }); this.createCanvasContext("edgeLabels"); this.createWebGLContext("nodes", { picking: true }); this.createCanvasContext("labels"); this.createCanvasContext("hovers"); this.createWebGLContext("hoverNodes"); this.createCanvasContext("mouse", { style: { touchAction: "none", userSelect: "none" } }); // Initial resize this.resize(); // Loading programs for (const type in this.settings.nodeProgramClasses) { this.registerNodeProgram( type, this.settings.nodeProgramClasses[type], this.settings.nodeHoverProgramClasses[type], ); } for (const type in this.settings.edgeProgramClasses) { this.registerEdgeProgram(type, this.settings.edgeProgramClasses[type]); } // Initializing the camera this.camera = new Camera(); // Binding camera events this.bindCameraHandlers(); // Initializing captors this.mouseCaptor = new MouseCaptor(this.elements.mouse, this); this.mouseCaptor.setSettings(this.settings); this.touchCaptor = new TouchCaptor(this.elements.mouse, this); this.touchCaptor.setSettings(this.settings); // Binding event handlers this.bindEventHandlers(); // Binding graph handlers this.bindGraphHandlers(); // Trigger eventual settings-related things this.handleSettingsUpdate(); // Processing data for the first time & render this.refresh(); } /**--------------------------------------------------------------------------- * Internal methods. **--------------------------------------------------------------------------- */ /** * Internal function used to register a node program * * @param {string} key - The program's key, matching the related nodes "type" values. * @param {NodeProgramType} NodeProgramClass - A nodes program class. * @param {NodeProgramType?} NodeHoverProgram - A nodes program class to render hovered nodes (optional). * @return {Sigma} */ private registerNodeProgram( key: string, NodeProgramClass: NodeProgramType, NodeHoverProgram?: NodeProgramType, ): this { if (this.nodePrograms[key]) this.nodePrograms[key].kill(); if (this.nodeHoverPrograms[key]) this.nodeHoverPrograms[key].kill(); this.nodePrograms[key] = new NodeProgramClass(this.webGLContexts.nodes, this.frameBuffers.nodes, this); this.nodeHoverPrograms[key] = new (NodeHoverProgram || NodeProgramClass)(this.webGLContexts.hoverNodes, null, this); return this; } /** * Internal function used to register an edge program * * @param {string} key - The program's key, matching the related edges "type" values. * @param {EdgeProgramType} EdgeProgramClass - An edges program class. * @return {Sigma} */ private registerEdgeProgram(key: string, EdgeProgramClass: EdgeProgramType): this { if (this.edgePrograms[key]) this.edgePrograms[key].kill(); this.edgePrograms[key] = new EdgeProgramClass(this.webGLContexts.edges, this.frameBuffers.edges, this); return this; } /** * Internal function used to unregister a node program * * @param {string} key - The program's key, matching the related nodes "type" values. * @return {Sigma} */ private unregisterNodeProgram(key: string): this { if (this.nodePrograms[key]) { const { [key]: program, ...programs } = this.nodePrograms; program.kill(); this.nodePrograms = programs; } if (this.nodeHoverPrograms[key]) { const { [key]: program, ...programs } = this.nodeHoverPrograms; program.kill(); this.nodePrograms = programs; } return this; } /** * Internal function used to unregister an edge program * * @param {string} key - The program's key, matching the related edges "type" values. * @return {Sigma} */ private unregisterEdgeProgram(key: string): this { if (this.edgePrograms[key]) { const { [key]: program, ...programs } = this.edgePrograms; program.kill(); this.edgePrograms = programs; } return this; } /** * Method (re)binding WebGL texture (for picking). * * @return {Sigma} */ private resetWebGLTexture(id: string): this { const gl = this.webGLContexts[id] as WebGLRenderingContext; const frameBuffer = this.frameBuffers[id]; const currentTexture = this.textures[id]; if (currentTexture) gl.deleteTexture(currentTexture); const pickingTexture = gl.createTexture(); gl.bindFramebuffer(gl.FRAMEBUFFER, frameBuffer); gl.bindTexture(gl.TEXTURE_2D, pickingTexture); gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, this.width, this.height, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); gl.framebufferTexture2D(gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, pickingTexture, 0); this.textures[id] = pickingTexture as WebGLTexture; return this; } /** * Method binding camera handlers. * * @return {Sigma} */ private bindCameraHandlers(): this { this.activeListeners.camera = () => { this.scheduleRender(); }; this.camera.on("updated", this.activeListeners.camera); return this; } /** * Method unbinding camera handlers. * * @return {Sigma} */ private unbindCameraHandlers(): this { this.camera.removeListener("updated", this.activeListeners.camera); return this; } /** * Method that returns the closest node to a given position. */ private getNodeAtPosition(position: Coordinates): string | null { const { x, y } = position; const color = getPixelColor( this.webGLContexts.nodes, this.frameBuffers.nodes, x, y, this.pixelRatio, this.pickingDownSizingRatio, ); const index = colorToIndex(...color); const itemAt = this.itemIDsIndex[index]; return itemAt && itemAt.type === "node" ? itemAt.id : null; } /** * Method binding event handlers. * * @return {Sigma} */ private bindEventHandlers(): this { // Handling window resize this.activeListeners.handleResize = () => { // need to call a refresh to rebuild the labelgrid this.scheduleRefresh(); }; window.addEventListener("resize", this.activeListeners.handleResize); // Handling mouse move this.activeListeners.handleMove = (e: MouseCoords | TouchCoords): void => { const event = cleanMouseCoords(e); const baseEvent = { event, preventSigmaDefault(): void { event.preventSigmaDefault(); }, }; const nodeToHover = this.getNodeAtPosition(event); if (nodeToHover && this.hoveredNode !== nodeToHover && !this.nodeDataCache[nodeToHover].hidden) { // Handling passing from one node to the other directly if (this.hoveredNode) this.emit("leaveNode", { ...baseEvent, node: this.hoveredNode }); this.hoveredNode = nodeToHover; this.emit("enterNode", { ...baseEvent, node: nodeToHover }); this.scheduleHighlightedNodesRender(); return; } // Checking if the hovered node is still hovered if (this.hoveredNode) { if (this.getNodeAtPosition(event) !== this.hoveredNode) { const node = this.hoveredNode; this.hoveredNode = null; this.emit("leaveNode", { ...baseEvent, node }); this.scheduleHighlightedNodesRender(); return; } } if (this.settings.enableEdgeEvents) { const edgeToHover = this.hoveredNode ? null : this.getEdgeAtPoint(baseEvent.event.x, baseEvent.event.y); if (edgeToHover !== this.hoveredEdge) { if (this.hoveredEdge) this.emit("leaveEdge", { ...baseEvent, edge: this.hoveredEdge }); if (edgeToHover) this.emit("enterEdge", { ...baseEvent, edge: edgeToHover }); this.hoveredEdge = edgeToHover; } } }; // Handling mouse move over body (only to dispatch the proper event): this.activeListeners.handleMoveBody = (e: MouseCoords | TouchCoords): void => { const event = cleanMouseCoords(e); this.emit("moveBody", { event, preventSigmaDefault(): void { event.preventSigmaDefault(); }, }); }; // Handling mouse leave stage: this.activeListeners.handleLeave = (e: MouseCoords | TouchCoords): void => { const event = cleanMouseCoords(e); const baseEvent = { event, preventSigmaDefault(): void { event.preventSigmaDefault(); }, }; if (this.hoveredNode) { this.emit("leaveNode", { ...baseEvent, node: this.hoveredNode }); this.scheduleHighlightedNodesRender(); } if (this.settings.enableEdgeEvents && this.hoveredEdge) { this.emit("leaveEdge", { ...baseEvent, edge: this.hoveredEdge }); this.scheduleHighlightedNodesRender(); } this.emit("leaveStage", { ...baseEvent }); }; // Handling mouse enter stage: this.activeListeners.handleEnter = (e: MouseCoords | TouchCoords): void => { const event = cleanMouseCoords(e); const baseEvent = { event, preventSigmaDefault(): void { event.preventSigmaDefault(); }, }; this.emit("enterStage", { ...baseEvent }); }; // Handling click const createInteractionListener = (eventType: MouseInteraction): ((e: MouseCoords | TouchCoords) => void) => { return (e) => { const event = cleanMouseCoords(e); const baseEvent = { event, preventSigmaDefault: () => { event.preventSigmaDefault(); }, }; const nodeAtPosition = this.getNodeAtPosition(event); if (nodeAtPosition) return this.emit(`${eventType}Node`, { ...baseEvent, node: nodeAtPosition, }); if (this.settings.enableEdgeEvents) { const edge = this.getEdgeAtPoint(event.x, event.y); if (edge) return this.emit(`${eventType}Edge`, { ...baseEvent, edge }); } return this.emit(`${eventType}Stage`, baseEvent); }; }; this.activeListeners.handleClick = createInteractionListener("click"); this.activeListeners.handleRightClick = createInteractionListener("rightClick"); this.activeListeners.handleDoubleClick = createInteractionListener("doubleClick"); this.activeListeners.handleWheel = createInteractionListener("wheel"); this.activeListeners.handleDown = createInteractionListener("down"); this.activeListeners.handleUp = createInteractionListener("up"); this.mouseCaptor.on("mousemove", this.activeListeners.handleMove); this.mouseCaptor.on("mousemovebody", this.activeListeners.handleMoveBody); this.mouseCaptor.on("click", this.activeListeners.handleClick); this.mouseCaptor.on("rightClick", this.activeListeners.handleRightClick); this.mouseCaptor.on("doubleClick", this.activeListeners.handleDoubleClick); this.mouseCaptor.on("wheel", this.activeListeners.handleWheel); this.mouseCaptor.on("mousedown", this.activeListeners.handleDown); this.mouseCaptor.on("mouseup", this.activeListeners.handleUp); this.mouseCaptor.on("mouseleave", this.activeListeners.handleLeave); this.mouseCaptor.on("mouseenter", this.activeListeners.handleEnter); this.touchCaptor.on("touchdown", this.activeListeners.handleDown); this.touchCaptor.on("touchdown", this.activeListeners.handleMove); this.touchCaptor.on("touchup", this.activeListeners.handleUp); this.touchCaptor.on("touchmove", this.activeListeners.handleMove); this.touchCaptor.on("tap", this.activeListeners.handleClick); this.touchCaptor.on("doubletap", this.activeListeners.handleDoubleClick); this.touchCaptor.on("touchmove", this.activeListeners.handleMoveBody); return this; } /** * Method binding graph handlers * * @return {Sigma} */ private bindGraphHandlers(): this { const graph = this.graph; const LAYOUT_IMPACTING_FIELDS = new Set(["x", "y", "zIndex", "type"]); this.activeListeners.eachNodeAttributesUpdatedGraphUpdate = (e: { hints?: { attributes?: string[] } }) => { const updatedFields = e.hints?.attributes; // we process all nodes this.graph.forEachNode((node) => this.updateNode(node)); // if coord, type or zIndex have changed, we need to schedule a render // (zIndex for the programIndex) const layoutChanged = !updatedFields || updatedFields.some((f) => LAYOUT_IMPACTING_FIELDS.has(f)); this.refresh({ partialGraph: { nodes: graph.nodes() }, skipIndexation: !layoutChanged, schedule: true }); }; this.activeListeners.eachEdgeAttributesUpdatedGraphUpdate = (e: { hints?: { attributes?: string[] } }) => { const updatedFields = e.hints?.attributes; // we process all edges this.graph.forEachEdge((edge) => this.updateEdge(edge)); const layoutChanged = updatedFields && ["zIndex", "type"].some((f) => updatedFields?.includes(f)); this.refresh({ partialGraph: { edges: graph.edges() }, skipIndexation: !layoutChanged, schedule: true }); }; // On add node, we add the node in indices and then call for a render this.activeListeners.addNodeGraphUpdate = (payload: { key: string }): void => { const node = payload.key; // we process the node this.addNode(node); // schedule a render for the node this.refresh({ partialGraph: { nodes: [node] }, skipIndexation: false, schedule: true }); }; // On update node, we update indices and then call for a render this.activeListeners.updateNodeGraphUpdate = (payload: { key: string }): void => { const node = payload.key; // schedule a render for the node this.refresh({ partialGraph: { nodes: [node] }, skipIndexation: false, schedule: true }); }; // On drop node, we remove the node from indices and then call for a refresh this.activeListeners.dropNodeGraphUpdate = (payload: { key: string }): void => { const node = payload.key; // we process the node this.removeNode(node); // schedule a render for everything this.refresh({ schedule: true }); }; // On add edge, we remove the edge from indices and then call for a refresh this.activeListeners.addEdgeGraphUpdate = (payload: { key: string }): void => { const edge = payload.key; // we process the edge this.addEdge(edge); // schedule a render for the edge this.refresh({ partialGraph: { edges: [edge] }, schedule: true }); }; // On update edge, we update indices and then call for a refresh this.activeListeners.updateEdgeGraphUpdate = (payload: { key: string }): void => { const edge = payload.key; // schedule a repaint for the edge this.refresh({ partialGraph: { edges: [edge] }, skipIndexation: false, schedule: true }); }; // On drop edge, we remove the edge from indices and then call for a refresh this.activeListeners.dropEdgeGraphUpdate = (payload: { key: string }): void => { const edge = payload.key; // we process the edge this.removeEdge(edge); // schedule a render for all edges this.refresh({ schedule: true }); }; // On clear edges, we clear the edge indices and then call for a refresh this.activeListeners.clearEdgesGraphUpdate = (): void => { // we clear the edge data structures this.clearEdgeState(); this.clearEdgeIndices(); // schedule a render for all edges this.refresh({ schedule: true }); }; // On graph clear, we clear indices and then call for a refresh this.activeListeners.clearGraphUpdate = (): void => { // clear graph state this.clearEdgeState(); this.clearNodeState(); // clear graph indices this.clearEdgeIndices(); this.clearNodeIndices(); // schedule a render for all this.refresh({ schedule: true }); }; graph.on("nodeAdded", this.activeListeners.addNodeGraphUpdate); graph.on("nodeDropped", this.activeListeners.dropNodeGraphUpdate); graph.on("nodeAttributesUpdated", this.activeListeners.updateNodeGraphUpdate); graph.on("eachNodeAttributesUpdated", this.activeListeners.eachNodeAttributesUpdatedGraphUpdate); graph.on("edgeAdded", this.activeListeners.addEdgeGraphUpdate); graph.on("edgeDropped", this.activeListeners.dropEdgeGraphUpdate); graph.on("edgeAttributesUpdated", this.activeListeners.updateEdgeGraphUpdate); graph.on("eachEdgeAttributesUpdated", this.activeListeners.eachEdgeAttributesUpdatedGraphUpdate); graph.on("edgesCleared", this.activeListeners.clearEdgesGraphUpdate); graph.on("cleared", this.activeListeners.clearGraphUpdate); return this; } /** * Method used to unbind handlers from the graph. * * @return {undefined} */ private unbindGraphHandlers() { const graph = this.graph; graph.removeListener("nodeAdded", this.activeListeners.addNodeGraphUpdate); graph.removeListener("nodeDropped", this.activeListeners.dropNodeGraphUpdate); graph.removeListener("nodeAttributesUpdated", this.activeListeners.updateNodeGraphUpdate); graph.removeListener("eachNodeAttributesUpdated", this.activeListeners.eachNodeAttributesUpdatedGraphUpdate); graph.removeListener("edgeAdded", this.activeListeners.addEdgeGraphUpdate); graph.removeListener("edgeDropped", this.activeListeners.dropEdgeGraphUpdate); graph.removeListener("edgeAttributesUpdated", this.activeListeners.updateEdgeGraphUpdate); graph.removeListener("eachEdgeAttributesUpdated", this.activeListeners.eachEdgeAttributesUpdatedGraphUpdate); graph.removeListener("edgesCleared", this.activeListeners.clearEdgesGraphUpdate); graph.removeListener("cleared", this.activeListeners.clearGraphUpdate); } /** * Method looking for an edge colliding with a given point at (x, y). Returns * the key of the edge if any, or null else. */ private getEdgeAtPoint(x: number, y: number): string | null { const color = getPixelColor( this.webGLContexts.edges, this.frameBuffers.edges, x, y, this.pixelRatio, this.pickingDownSizingRatio, ); const index = colorToIndex(...color); const itemAt = this.itemIDsIndex[index]; return itemAt && itemAt.type === "edge" ? itemAt.id : null; } /** * Method used to process the whole graph's data. * - extent * - normalizationFunction * - compute node's coordinate * - labelgrid * - program data allocation * @return {Sigma} */ private process(): this { this.emit("beforeProcess"); const graph = this.graph; const settings = this.settings; const dimensions = this.getDimensions(); // // NODES // this.nodeExtent = graphExtent(this.graph); if (!this.settings.autoRescale) { const { width, height } = dimensions; const { x, y } = this.nodeExtent; this.nodeExtent = { x: [(x[0] + x[1]) / 2 - width / 2, (x[0] + x[1]) / 2 + width / 2], y: [(y[0] + y[1]) / 2 - height / 2, (y[0] + y[1]) / 2 + height / 2], }; } this.normalizationFunction = createNormalizationFunction(this.customBBox || this.nodeExtent); // NOTE: it is important to compute this matrix after computing the node's extent // because #.getGraphDimensions relies on it const nullCamera = new Camera(); const nullCameraMatrix = matrixFromCamera( nullCamera.getState(), dimensions, this.getGraphDimensions(), this.getStagePadding(), ); // Resetting the label grid // TODO: it's probably better to do this explicitly or on resizes for layout and anims this.labelGrid.resizeAndClear(dimensions, settings.labelGridCellSize); const nodesPerPrograms: Record = {}; const nodeIndices: typeof this.nodeIndices = {}; const edgeIndices: typeof this.edgeIndices = {}; const itemIDsIndex: typeof this.itemIDsIndex = {}; let incrID = 1; let nodes = graph.nodes(); // Do some indexation on the whole graph for (let i = 0, l = nodes.length; i < l; i++) { const node = nodes[i]; const data = this.nodeDataCache[node]; // Get initial coordinates const attrs = graph.getNodeAttributes(node); data.x = attrs.x; data.y = attrs.y; this.normalizationFunction.applyTo(data); // labelgrid if (typeof data.label === "string" && !data.hidden) this.labelGrid.add(node, data.size, this.framedGraphToViewport(data, { matrix: nullCameraMatrix })); // update count per program nodesPerPrograms[data.type] = (nodesPerPrograms[data.type] || 0) + 1; } this.labelGrid.organize(); // Allocate memory to programs for (const type in this.nodePrograms) { if (!hasOwnProperty.call(this.nodePrograms, type)) { throw new Error(`Sigma: could not find a suitable program for node type "${type}"!`); } this.nodePrograms[type].reallocate(nodesPerPrograms[type] || 0); // We reset that count here, so that we can reuse it while calling the Program#process methods: nodesPerPrograms[type] = 0; } // Order nodes by zIndex before to add them to program if (this.settings.zIndex && this.nodeZExtent[0] !== this.nodeZExtent[1]) nodes = zIndexOrdering( this.nodeZExtent, (node: string): number => this.nodeDataCache[node].zIndex, nodes, ); // Add data to programs for (let i = 0, l = nodes.length; i < l; i++) { const node = nodes[i]; nodeIndices[node] = incrID; itemIDsIndex[nodeIndices[node]] = { type: "node", id: node }; incrID++; const data = this.nodeDataCache[node]; this.addNodeToProgram(node, nodeIndices[node], nodesPerPrograms[data.type]++); } // // EDGES // const edgesPerPrograms: Record = {}; let edges = graph.edges(); // Allocate memory to programs for (let i = 0, l = edges.length; i < l; i++) { const edge = edges[i]; const data = this.edgeDataCache[edge]; edgesPerPrograms[data.type] = (edgesPerPrograms[data.type] || 0) + 1; } // Order edges by zIndex before to add them to program if (this.settings.zIndex && this.edgeZExtent[0] !== this.edgeZExtent[1]) edges = zIndexOrdering( this.edgeZExtent, (edge: string): number => this.edgeDataCache[edge].zIndex, edges, ); for (const type in this.edgePrograms) { if (!hasOwnProperty.call(this.edgePrograms, type)) { throw new Error(`Sigma: could not find a suitable program for edge type "${type}"!`); } this.edgePrograms[type].reallocate(edgesPerPrograms[type] || 0); // We reset that count here, so that we can reuse it while calling the Program#process methods: edgesPerPrograms[type] = 0; } // Add data to programs for (let i = 0, l = edges.length; i < l; i++) { const edge = edges[i]; edgeIndices[edge] = incrID; itemIDsIndex[edgeIndices[edge]] = { type: "edge", id: edge }; incrID++; const data = this.edgeDataCache[edge]; this.addEdgeToProgram(edge, edgeIndices[edge], edgesPerPrograms[data.type]++); } this.itemIDsIndex = itemIDsIndex; this.nodeIndices = nodeIndices; this.edgeIndices = edgeIndices; this.emit("afterProcess"); return this; } /** * Method that backports potential settings updates where it's needed. * @private */ private handleSettingsUpdate(oldSettings?: Settings): this { const settings = this.settings; this.camera.minRatio = settings.minCameraRatio; this.camera.maxRatio = settings.maxCameraRatio; this.camera.enabledZooming = settings.enableCameraZooming; this.camera.enabledPanning = settings.enableCameraPanning; this.camera.enabledRotation = settings.enableCameraRotation; if (settings.cameraPanBoundaries) { this.camera.clean = (state) => this.cleanCameraState( state, settings.cameraPanBoundaries && typeof settings.cameraPanBoundaries === "object" ? settings.cameraPanBoundaries : {}, ); } else { this.camera.clean = null; } this.camera.setState(this.camera.validateState(this.camera.getState())); if (oldSettings) { // Check edge programs: if (oldSettings.edgeProgramClasses !== settings.edgeProgramClasses) { for (const type in settings.edgeProgramClasses) { if (settings.edgeProgramClasses[type] !== oldSettings.edgeProgramClasses[type]) { this.registerEdgeProgram(type, settings.edgeProgramClasses[type]); } } for (const type in oldSettings.edgeProgramClasses) { if (!settings.edgeProgramClasses[type]) this.unregisterEdgeProgram(type); } } // Check node programs: if ( oldSettings.nodeProgramClasses !== settings.nodeProgramClasses || oldSettings.nodeHoverProgramClasses !== settings.nodeHoverProgramClasses ) { for (const type in settings.nodeProgramClasses) { if ( settings.nodeProgramClasses[type] !== oldSettings.nodeProgramClasses[type] || settings.nodeHoverProgramClasses[type] !== oldSettings.nodeHoverProgramClasses[type] ) { this.registerNodeProgram(type, settings.nodeProgramClasses[type], settings.nodeHoverProgramClasses[type]); } } for (const type in oldSettings.nodeProgramClasses) { if (!settings.nodeProgramClasses[type]) this.unregisterNodeProgram(type); } } } // Update captors settings: this.mouseCaptor.setSettings(this.settings); this.touchCaptor.setSettings(this.settings); return this; } private cleanCameraState( state: CameraState, { tolerance = 0, boundaries }: { tolerance?: number; boundaries?: Record<"x" | "y", [number, number]> } = {}, ): CameraState { const newState = { ...state }; // Extract necessary properties const { x: [xMinGraph, xMaxGraph], y: [yMinGraph, yMaxGraph], } = boundaries || this.nodeExtent; // Transform the four corners of the graph rectangle using the provided camera state const corners = [ this.graphToViewport({ x: xMinGraph, y: yMinGraph }, { cameraState: state }), this.graphToViewport({ x: xMaxGraph, y: yMinGraph }, { cameraState: state }), this.graphToViewport({ x: xMinGraph, y: yMaxGraph }, { cameraState: state }), this.graphToViewport({ x: xMaxGraph, y: yMaxGraph }, { cameraState: state }), ]; // Look for new extents, based on these four corners let xMin = Infinity, xMax = -Infinity, yMin = Infinity, yMax = -Infinity; corners.forEach(({ x, y }) => { xMin = Math.min(xMin, x); xMax = Math.max(xMax, x); yMin = Math.min(yMin, y); yMax = Math.max(yMax, y); }); // For each dimension, constraint the smaller element (camera or graph) to fit in the larger one: const graphWidth = xMax - xMin; const graphHeight = yMax - yMin; const { width, height } = this.getDimensions(); let dx = 0; let dy = 0; if (graphWidth >= width) { if (xMax < width - tolerance) dx = xMax - (width - tolerance); else if (xMin > tolerance) dx = xMin - tolerance; } else { if (xMax > width + tolerance) dx = xMax - (width + tolerance); else if (xMin < -tolerance) dx = xMin + tolerance; } if (graphHeight >= height) { if (yMax < height - tolerance) dy = yMax - (height - tolerance); else if (yMin > tolerance) dy = yMin - tolerance; } else { if (yMax > height + tolerance) dy = yMax - (height + tolerance); else if (yMin < -tolerance) dy = yMin + tolerance; } if (dx || dy) { // Transform [dx, dy] from viewport to graph (using two different point to transform that vector): const origin = this.viewportToFramedGraph({ x: 0, y: 0 }, { cameraState: state }); const delta = this.viewportToFramedGraph({ x: dx, y: dy }, { cameraState: state }); dx = delta.x - origin.x; dy = delta.y - origin.y; newState.x += dx; newState.y += dy; } return newState; } /** * Method used to render labels. * * @return {Sigma} */ private renderLabels(): this { if (!this.settings.renderLabels) return this; const cameraState = this.camera.getState(); // Selecting labels to draw const labelsToDisplay = this.labelGrid.getLabelsToDisplay(cameraState.ratio, this.settings.labelDensity); extend(labelsToDisplay, this.nodesWithForcedLabels); this.displayedNodeLabels = new Set(); // Drawing labels const context = this.canvasContexts.labels; for (let i = 0, l = labelsToDisplay.length; i < l; i++) { const node = labelsToDisplay[i]; const data = this.nodeDataCache[node]; // If the node was already drawn (like if it is eligible AND has // `forceLabel`), we don't want to draw it again // NOTE: we can do better probably if (this.displayedNodeLabels.has(node)) continue; // If the node is hidden, we don't need to display its label obviously if (data.hidden) continue; const { x, y } = this.framedGraphToViewport(data); // NOTE: we can cache the labels we need to render until the camera's ratio changes const size = this.scaleSize(data.size); // Is node big enough? if (!data.forceLabel && size < this.settings.labelRenderedSizeThreshold) continue; // Is node actually on screen (with some margin) // NOTE: we used to rely on the quadtree for this, but the coordinates // conversion make it unreliable and at that point we already converted // to viewport coordinates and since the label grid already culls the // number of potential labels to display this looks like a good // performance compromise. // NOTE: labelGrid.getLabelsToDisplay could probably optimize by not // considering cells obviously outside of the range of the current // view rectangle. if ( x < -X_LABEL_MARGIN || x > this.width + X_LABEL_MARGIN || y < -Y_LABEL_MARGIN || y > this.height + Y_LABEL_MARGIN ) continue; // Because displayed edge labels depend directly on actually rendered node // labels, we need to only add to this.displayedNodeLabels nodes whose label // is rendered. // This makes this.displayedNodeLabels depend on viewport, which might become // an issue once we start memoizing getLabelsToDisplay. this.displayedNodeLabels.add(node); const { defaultDrawNodeLabel } = this.settings; const nodeProgram = this.nodePrograms[data.type]; const drawLabel = nodeProgram?.drawLabel || defaultDrawNodeLabel; drawLabel( context, { key: node, ...data, size, x, y, }, this.settings, ); } return this; } /** * Method used to render edge labels, based on which node labels were * rendered. * * @return {Sigma} */ private renderEdgeLabels(): this { if (!this.settings.renderEdgeLabels) return this; const context = this.canvasContexts.edgeLabels; // Clearing context.clearRect(0, 0, this.width, this.height); const edgeLabelsToDisplay = edgeLabelsToDisplayFromNodes({ graph: this.graph, hoveredNode: this.hoveredNode, displayedNodeLabels: this.displayedNodeLabels, highlightedNodes: this.highlightedNodes, }); extend(edgeLabelsToDisplay, this.edgesWithForcedLabels); const displayedLabels = new Set(); for (let i = 0, l = edgeLabelsToDisplay.length; i < l; i++) { const edge = edgeLabelsToDisplay[i], extremities = this.graph.extremities(edge), sourceData = this.nodeDataCache[extremities[0]], targetData = this.nodeDataCache[extremities[1]], edgeData = this.edgeDataCache[edge]; // If the edge was already drawn (like if it is eligible AND has // `forceLabel`), we don't want to draw it again if (displayedLabels.has(edge)) continue; // If the edge is hidden we don't need to display its label // NOTE: the test on sourceData & targetData is probably paranoid at this point? if (edgeData.hidden || sourceData.hidden || targetData.hidden) { continue; } const { defaultDrawEdgeLabel } = this.settings; const edgeProgram = this.edgePrograms[edgeData.type]; const drawLabel = edgeProgram?.drawLabel || defaultDrawEdgeLabel; drawLabel( context, { key: edge, ...edgeData, size: this.scaleSize(edgeData.size), }, { key: extremities[0], ...sourceData, ...this.framedGraphToViewport(sourceData), size: this.scaleSize(sourceData.size), }, { key: extremities[1], ...targetData, ...this.framedGraphToViewport(targetData), size: this.scaleSize(targetData.size), }, this.settings, ); displayedLabels.add(edge); } this.displayedEdgeLabels = displayedLabels; return this; } /** * Method used to render the highlighted nodes. * * @return {Sigma} */ private renderHighlightedNodes(): void { const context = this.canvasContexts.hovers; // Clearing context.clearRect(0, 0, this.width, this.height); // Rendering const render = (node: string): void => { const data = this.nodeDataCache[node]; const { x, y } = this.framedGraphToViewport(data); const size = this.scaleSize(data.size); const { defaultDrawNodeHover } = this.settings; const nodeProgram = this.nodePrograms[data.type]; const drawHover = nodeProgram?.drawHover || defaultDrawNodeHover; drawHover( context, { key: node, ...data, size, x, y, }, this.settings, ); }; const nodesToRender: string[] = []; if (this.hoveredNode && !this.nodeDataCache[this.hoveredNode].hidden) { nodesToRender.push(this.hoveredNode); } this.highlightedNodes.forEach((node) => { // The hovered node has already been highlighted if (node !== this.hoveredNode) nodesToRender.push(node); }); // Draw labels: nodesToRender.forEach((node) => render(node)); // Draw WebGL nodes on top of the labels: const nodesPerPrograms: Record = {}; // 1. Count nodes per type: nodesToRender.forEach((node) => { const type = this.nodeDataCache[node].type; nodesPerPrograms[type] = (nodesPerPrograms[type] || 0) + 1; }); // 2. Allocate for each type for the proper number of nodes for (const type in this.nodeHoverPrograms) { this.nodeHoverPrograms[type].reallocate(nodesPerPrograms[type] || 0); // Also reset count, to use when rendering: nodesPerPrograms[type] = 0; } // 3. Process all nodes to render: nodesToRender.forEach((node) => { const data = this.nodeDataCache[node]; this.nodeHoverPrograms[data.type].process(0, nodesPerPrograms[data.type]++, data); }); // 4. Clear hovered nodes layer: this.webGLContexts.hoverNodes.clear(this.webGLContexts.hoverNodes.COLOR_BUFFER_BIT); // 5. Render: const renderParams = this.getRenderParams(); for (const type in this.nodeHoverPrograms) { const program = this.nodeHoverPrograms[type]; program.render(renderParams); } } /** * Method used to schedule a hover render. * */ private scheduleHighlightedNodesRender(): void { if (this.renderHighlightedNodesFrame || this.renderFrame) return; this.renderHighlightedNodesFrame = requestAnimationFrame(() => { // Resetting state this.renderHighlightedNodesFrame = null; // Rendering this.renderHighlightedNodes(); this.renderEdgeLabels(); }); } /** * Method used to render. * * @return {Sigma} */ private render(): this { this.emit("beforeRender"); const exitRender = () => { this.emit("afterRender"); return this; }; // If a render was scheduled, we cancel it if (this.renderFrame) { cancelAnimationFrame(this.renderFrame); this.renderFrame = null; } // First we need to resize this.resize(); // Do we need to reprocess data? if (this.needToProcess) this.process(); this.needToProcess = false; // Clearing the canvases this.clear(); // Prepare the textures this.pickingLayers.forEach((layer) => this.resetWebGLTexture(layer)); // If we have no nodes we can stop right there if (!this.graph.order) return exitRender(); // TODO: improve this heuristic or move to the captor itself? // TODO: deal with the touch captor here as well const mouseCaptor = this.mouseCaptor; const moving = this.camera.isAnimated() || mouseCaptor.isMoving || mouseCaptor.draggedEvents || mouseCaptor.currentWheelDirection; // Then we need to extract a matrix from the camera const cameraState = this.camera.getState(); const viewportDimensions = this.getDimensions(); const graphDimensions = this.getGraphDimensions(); const padding = this.getStagePadding(); this.matrix = matrixFromCamera(cameraState, viewportDimensions, graphDimensions, padding); this.invMatrix = matrixFromCamera(cameraState, viewportDimensions, graphDimensions, padding, true); this.correctionRatio = getMatrixImpact(this.matrix, cameraState, viewportDimensions); this.graphToViewportRatio = this.getGraphToViewportRatio(); // [jacomyal] // This comment is related to the one above the `getMatrixImpact` definition: // - `this.correctionRatio` is somehow not completely explained // - `this.graphToViewportRatio` is the ratio of a distance in the viewport divided by the same distance in the // graph // - `this.normalizationFunction.ratio` is basically `Math.max(graphDX, graphDY)` // And now, I observe that if I multiply these three ratios, I have something constant, which value remains 2, even // when I change the graph, the viewport or the camera. It might be useful later, so I prefer to let this comment: // console.log(this.graphToViewportRatio * this.correctionRatio * this.normalizationFunction.ratio * 2); const params: RenderParams = this.getRenderParams(); // Drawing nodes for (const type in this.nodePrograms) { const program = this.nodePrograms[type]; program.render(params); } // Drawing edges if (!this.settings.hideEdgesOnMove || !moving) { for (const type in this.edgePrograms) { const program = this.edgePrograms[type]; program.render(params); } } // Do not display labels on move per setting if (this.settings.hideLabelsOnMove && moving) return exitRender(); this.renderLabels(); this.renderEdgeLabels(); this.renderHighlightedNodes(); return exitRender(); } /** * Add a node in the internal data structures. * @private * @param key The node's graphology ID */ private addNode(key: string): void { // Node display data resolution: // 1. First we get the node's attributes // 2. We optionally reduce them using the function provided by the user // Note that this function must return a total object and won't be merged // 3. We apply our defaults, while running some vital checks // 4. We apply the normalization function // We shallow copy node data to avoid dangerous behaviors from reducers let attr = Object.assign({}, this.graph.getNodeAttributes(key)) as Partial; if (this.settings.nodeReducer) attr = this.settings.nodeReducer(key, attr as N); const data = applyNodeDefaults(this.settings, key, attr); this.nodeDataCache[key] = data; // Label: // We delete and add if needed because this function is also used from // update this.nodesWithForcedLabels.delete(key); if (data.forceLabel && !data.hidden) this.nodesWithForcedLabels.add(key); // Highlighted: // We remove and re add if needed because this function is also used from // update this.highlightedNodes.delete(key); if (data.highlighted && !data.hidden) this.highlightedNodes.add(key); // zIndex if (this.settings.zIndex) { if (data.zIndex < this.nodeZExtent[0]) this.nodeZExtent[0] = data.zIndex; if (data.zIndex > this.nodeZExtent[1]) this.nodeZExtent[1] = data.zIndex; } } /** * Update a node the internal data structures. * @private * @param key The node's graphology ID */ private updateNode(key: string): void { this.addNode(key); // Re-apply normalization on the node const data = this.nodeDataCache[key]; this.normalizationFunction.applyTo(data); } /** * Remove a node from the internal data structures. * @private * @param key The node's graphology ID */ private removeNode(key: string): void { // Remove from node cache delete this.nodeDataCache[key]; // Remove from node program index delete this.nodeProgramIndex[key]; // Remove from higlighted nodes this.highlightedNodes.delete(key); // Remove from hovered if (this.hoveredNode === key) this.hoveredNode = null; // Remove from forced label this.nodesWithForcedLabels.delete(key); } /** * Add an edge into the internal data structures. * @private * @param key The edge's graphology ID */ private addEdge(key: string): void { // Edge display data resolution: // 1. First we get the edge's attributes // 2. We optionally reduce them using the function provided by the user // 3. Note that this function must return a total object and won't be merged // 4. We apply our defaults, while running some vital checks // We shallow copy edge data to avoid dangerous behaviors from reducers let attr = Object.assign({}, this.graph.getEdgeAttributes(key)) as Partial; if (this.settings.edgeReducer) attr = this.settings.edgeReducer(key, attr as E); const data = applyEdgeDefaults(this.settings, key, attr); this.edgeDataCache[key] = data; // Forced label // we filter and re push if needed because this function is also used from // update this.edgesWithForcedLabels.delete(key); if (data.forceLabel && !data.hidden) this.edgesWithForcedLabels.add(key); // Check zIndex if (this.settings.zIndex) { if (data.zIndex < this.edgeZExtent[0]) this.edgeZExtent[0] = data.zIndex; if (data.zIndex > this.edgeZExtent[1]) this.edgeZExtent[1] = data.zIndex; } } /** * Update an edge in the internal data structures. * @private * @param key The edge's graphology ID */ private updateEdge(key: string): void { this.addEdge(key); } /** * Remove an edge from the internal data structures. * @private * @param key The edge's graphology ID */ private removeEdge(key: string): void { // Remove from edge cache delete this.edgeDataCache[key]; // Remove from programId index delete this.edgeProgramIndex[key]; // Remove from hovered if (this.hoveredEdge === key) this.hoveredEdge = null; // Remove from forced label this.edgesWithForcedLabels.delete(key); } /** * Clear all indices related to nodes. * @private */ private clearNodeIndices(): void { // LabelGrid & nodeExtent are only manage/populated in the process function this.labelGrid = new LabelGrid(); this.nodeExtent = { x: [0, 1], y: [0, 1] }; this.nodeDataCache = {}; this.edgeProgramIndex = {}; this.nodesWithForcedLabels = new Set(); this.nodeZExtent = [Infinity, -Infinity]; this.highlightedNodes = new Set(); } /** * Clear all indices related to edges. * @private */ private clearEdgeIndices(): void { this.edgeDataCache = {}; this.edgeProgramIndex = {}; this.edgesWithForcedLabels = new Set(); this.edgeZExtent = [Infinity, -Infinity]; } /** * Clear all indices. * @private */ private clearIndices(): void { this.clearEdgeIndices(); this.clearNodeIndices(); } /** * Clear all graph state related to nodes. * @private */ private clearNodeState(): void { this.displayedNodeLabels = new Set(); this.highlightedNodes = new Set(); this.hoveredNode = null; } /** * Clear all graph state related to edges. * @private */ private clearEdgeState(): void { this.displayedEdgeLabels = new Set(); this.highlightedNodes = new Set(); this.hoveredEdge = null; } /** * Clear all graph state. * @private */ private clearState(): void { this.clearEdgeState(); this.clearNodeState(); } /** * Add the node data to its program. * @private * @param node The node's graphology ID * @param fingerprint A fingerprint used to identity the node with picking * @param position The index where to place the node in the program */ private addNodeToProgram(node: string, fingerprint: number, position: number): void { const data = this.nodeDataCache[node]; const nodeProgram = this.nodePrograms[data.type]; if (!nodeProgram) throw new Error(`Sigma: could not find a suitable program for node type "${data.type}"!`); nodeProgram.process(fingerprint, position, data); // Saving program index this.nodeProgramIndex[node] = position; } /** * Add the edge data to its program. * @private * @param edge The edge's graphology ID * @param fingerprint A fingerprint used to identity the edge with picking * @param position The index where to place the edge in the program */ private addEdgeToProgram(edge: string, fingerprint: number, position: number): void { const data = this.edgeDataCache[edge]; const edgeProgram = this.edgePrograms[data.type]; if (!edgeProgram) throw new Error(`Sigma: could not find a suitable program for edge type "${data.type}"!`); const extremities = this.graph.extremities(edge), sourceData = this.nodeDataCache[extremities[0]], targetData = this.nodeDataCache[extremities[1]]; edgeProgram.process(fingerprint, position, sourceData, targetData, data); // Saving program index this.edgeProgramIndex[edge] = position; } /**--------------------------------------------------------------------------- * Public API. **--------------------------------------------------------------------------- */ /** * Function used to get the render params. * * @return {RenderParams} */ getRenderParams(): RenderParams { return { matrix: this.matrix, invMatrix: this.invMatrix, width: this.width, height: this.height, pixelRatio: this.pixelRatio, zoomRatio: this.camera.ratio, cameraAngle: this.camera.angle, sizeRatio: 1 / this.scaleSize(), correctionRatio: this.correctionRatio, downSizingRatio: this.pickingDownSizingRatio, minEdgeThickness: this.settings.minEdgeThickness, antiAliasingFeather: this.settings.antiAliasingFeather, }; } /** * Function used to retrieve the actual stage padding value. * * @return {number} */ getStagePadding(): number { const { stagePadding, autoRescale } = this.settings; return autoRescale ? stagePadding || 0 : 0; } /** * Function used to create a layer element. * * @param {string} id - Context's id. * @param {string} tag - The HTML tag to use. * @param options * @return {Sigma} */ createLayer( id: string, tag: string, options: { style?: Partial } & ({ beforeLayer?: string } | { afterLayer?: string }) = {}, ): T { if (this.elements[id]) throw new Error(`Sigma: a layer named "${id}" already exists`); const element = createElement( tag, { position: "absolute", }, { class: `sigma-${id}`, }, ); if (options.style) Object.assign(element.style, options.style); this.elements[id] = element; if ("beforeLayer" in options && options.beforeLayer) { this.elements[options.beforeLayer].before(element); } else if ("afterLayer" in options && options.afterLayer) { this.elements[options.afterLayer].after(element); } else { this.container.appendChild(element); } return element; } /** * Function used to create a canvas element. * * @param {string} id - Context's id. * @param options * @return {Sigma} */ createCanvas( id: string, options: { style?: Partial } & ({ beforeLayer?: string } | { afterLayer?: string }) = {}, ): HTMLCanvasElement { return this.createLayer(id, "canvas", options); } /** * Function used to create a canvas context and add the relevant DOM elements. * * @param {string} id - Context's id. * @param options * @return {Sigma} */ createCanvasContext(id: string, options: { style?: Partial } = {}): this { const canvas = this.createCanvas(id, options); const contextOptions = { preserveDrawingBuffer: false, antialias: false, }; this.canvasContexts[id] = canvas.getContext("2d", contextOptions) as CanvasRenderingContext2D; return this; } /** * Function used to create a WebGL context and add the relevant DOM * elements. * * @param {string} id - Context's id. * @param {object?} options - #getContext params to override (optional) * @return {WebGLRenderingContext} */ createWebGLContext( id: string, options: { preserveDrawingBuffer?: boolean; antialias?: boolean; hidden?: boolean; picking?: boolean; } & ({ canvas?: HTMLCanvasElement; style?: undefined } | { style?: CSSStyleDeclaration; canvas?: undefined }) = {}, ): WebGLRenderingContext { const canvas = options?.canvas || this.createCanvas(id, options); if (options.hidden) canvas.remove(); const contextOptions = { preserveDrawingBuffer: false, antialias: false, ...options, }; let context; // First we try webgl2 for an easy performance boost context = canvas.getContext("webgl2", contextOptions); // Else we fall back to webgl if (!context) context = canvas.getContext("webgl", contextOptions); // Edge, I am looking right at you... if (!context) context = canvas.getContext("experimental-webgl", contextOptions); const gl = context as WebGLRenderingContext; this.webGLContexts[id] = gl; // Blending: gl.blendFunc(gl.ONE, gl.ONE_MINUS_SRC_ALPHA); // Prepare frame buffer for picking layers: if (options.picking) { this.pickingLayers.add(id); const newFrameBuffer = gl.createFramebuffer(); if (!newFrameBuffer) throw new Error(`Sigma: cannot create a new frame buffer for layer ${id}`); this.frameBuffers[id] = newFrameBuffer; } return gl; } /** * Function used to properly kill a layer. * * @param {string} id - Layer id. * @return {Sigma} */ killLayer(id: string): this { const element = this.elements[id]; if (!element) throw new Error(`Sigma: cannot kill layer ${id}, which does not exist`); if (this.webGLContexts[id]) { const gl = this.webGLContexts[id]; gl.getExtension("WEBGL_lose_context")?.loseContext(); delete this.webGLContexts[id]; } else if (this.canvasContexts[id]) { delete this.canvasContexts[id]; } // Delete layer element element.remove(); delete this.elements[id]; return this; } /** * Method returning the renderer's camera. * * @return {Camera} */ getCamera(): Camera { return this.camera; } /** * Method setting the renderer's camera. * * @param {Camera} camera - New camera. * @return {Sigma} */ setCamera(camera: Camera): void { this.unbindCameraHandlers(); this.camera = camera; this.bindCameraHandlers(); } /** * Method returning the container DOM element. * * @return {HTMLElement} */ getContainer(): HTMLElement { return this.container; } /** * Method returning the renderer's graph. * * @return {Graph} */ getGraph(): Graph { return this.graph; } /** * Method used to set the renderer's graph. * * @return {Graph} */ setGraph(graph: Graph): void { if (graph === this.graph) return; // Check hoveredNode and hoveredEdge if (this.hoveredNode && !graph.hasNode(this.hoveredNode)) this.hoveredNode = null; if (this.hoveredEdge && !graph.hasEdge(this.hoveredEdge)) this.hoveredEdge = null; // Unbinding handlers on the current graph this.unbindGraphHandlers(); if (this.checkEdgesEventsFrame !== null) { cancelAnimationFrame(this.checkEdgesEventsFrame); this.checkEdgesEventsFrame = null; } // Installing new graph this.graph = graph; // Binding new handlers this.bindGraphHandlers(); // Re-rendering now to avoid discrepancies from now to next frame this.refresh(); } /** * Method returning the mouse captor. * * @return {MouseCaptor} */ getMouseCaptor(): MouseCaptor { return this.mouseCaptor; } /** * Method returning the touch captor. * * @return {TouchCaptor} */ getTouchCaptor(): TouchCaptor { return this.touchCaptor; } /** * Method returning the current renderer's dimensions. * * @return {Dimensions} */ getDimensions(): Dimensions { return { width: this.width, height: this.height }; } /** * Method returning the current graph's dimensions. * * @return {Dimensions} */ getGraphDimensions(): Dimensions { const extent = this.customBBox || this.nodeExtent; return { width: extent.x[1] - extent.x[0] || 1, height: extent.y[1] - extent.y[0] || 1, }; } /** * Method used to get all the sigma node attributes. * It's useful for example to get the position of a node * and to get values that are set by the nodeReducer * * @param {string} key - The node's key. * @return {NodeDisplayData | undefined} A copy of the desired node's attribute or undefined if not found */ getNodeDisplayData(key: unknown): NodeDisplayData | undefined { const node = this.nodeDataCache[key as string]; return node ? Object.assign({}, node) : undefined; } /** * Method used to get all the sigma edge attributes. * It's useful for example to get values that are set by the edgeReducer. * * @param {string} key - The edge's key. * @return {EdgeDisplayData | undefined} A copy of the desired edge's attribute or undefined if not found */ getEdgeDisplayData(key: unknown): EdgeDisplayData | undefined { const edge = this.edgeDataCache[key as string]; return edge ? Object.assign({}, edge) : undefined; } /** * Method used to get the set of currently displayed node labels. * * @return {Set} A set of node keys whose label is displayed. */ getNodeDisplayedLabels(): Set { return new Set(this.displayedNodeLabels); } /** * Method used to get the set of currently displayed edge labels. * * @return {Set} A set of edge keys whose label is displayed. */ getEdgeDisplayedLabels(): Set { return new Set(this.displayedEdgeLabels); } /** * Method returning a copy of the settings collection. * * @return {Settings} A copy of the settings collection. */ getSettings(): Settings { return { ...this.settings }; } /** * Method returning the current value for a given setting key. * * @param {string} key - The setting key to get. * @return {any} The value attached to this setting key or undefined if not found */ getSetting>(key: K): Settings[K] { return this.settings[key]; } /** * Method setting the value of a given setting key. Note that this will schedule * a new render next frame. * * @param {string} key - The setting key to set. * @param {any} value - The value to set. * @return {Sigma} */ setSetting>(key: K, value: Settings[K]): this { const oldValues = { ...this.settings }; this.settings[key] = value; validateSettings(this.settings); this.handleSettingsUpdate(oldValues); this.scheduleRefresh(); return this; } /** * Method updating the value of a given setting key using the provided function. * Note that this will schedule a new render next frame. * * @param {string} key - The setting key to set. * @param {function} updater - The update function. * @return {Sigma} */ updateSetting>( key: K, updater: (value: Settings[K]) => Settings[K], ): this { this.setSetting(key, updater(this.settings[key])); return this; } /** * Method setting multiple settings at once. * * @param {Partial} settings - The settings to set. * @return {Sigma} */ setSettings(settings: Partial>): this { const oldValues = { ...this.settings }; this.settings = { ...this.settings, ...settings }; validateSettings(this.settings); this.handleSettingsUpdate(oldValues); this.scheduleRefresh(); return this; } /** * Method used to resize the renderer. * * @param {boolean} force - If true, then resize is processed even if size is unchanged (optional). * @return {Sigma} */ resize(force?: boolean): this { const previousWidth = this.width, previousHeight = this.height; this.width = this.container.offsetWidth; this.height = this.container.offsetHeight; this.pixelRatio = getPixelRatio(); if (this.width === 0) { if (this.settings.allowInvalidContainer) this.width = 1; else throw new Error( "Sigma: Container has no width. You can set the allowInvalidContainer setting to true to stop seeing this error.", ); } if (this.height === 0) { if (this.settings.allowInvalidContainer) this.height = 1; else throw new Error( "Sigma: Container has no height. You can set the allowInvalidContainer setting to true to stop seeing this error.", ); } // If nothing has changed, we can stop right here if (!force && previousWidth === this.width && previousHeight === this.height) return this; // Sizing dom elements for (const id in this.elements) { const element = this.elements[id]; element.style.width = this.width + "px"; element.style.height = this.height + "px"; } // Sizing canvas contexts for (const id in this.canvasContexts) { this.elements[id].setAttribute("width", this.width * this.pixelRatio + "px"); this.elements[id].setAttribute("height", this.height * this.pixelRatio + "px"); if (this.pixelRatio !== 1) this.canvasContexts[id].scale(this.pixelRatio, this.pixelRatio); } // Sizing WebGL contexts for (const id in this.webGLContexts) { this.elements[id].setAttribute("width", this.width * this.pixelRatio + "px"); this.elements[id].setAttribute("height", this.height * this.pixelRatio + "px"); const gl = this.webGLContexts[id]; gl.viewport(0, 0, this.width * this.pixelRatio, this.height * this.pixelRatio); // Clear picking texture if needed if (this.pickingLayers.has(id)) { const currentTexture = this.textures[id]; if (currentTexture) gl.deleteTexture(currentTexture); } } this.emit("resize"); return this; } /** * Method used to clear all the canvases. * * @return {Sigma} */ clear(): this { this.emit("beforeClear"); this.webGLContexts.nodes.bindFramebuffer(WebGLRenderingContext.FRAMEBUFFER, null); this.webGLContexts.nodes.clear(WebGLRenderingContext.COLOR_BUFFER_BIT); this.webGLContexts.edges.bindFramebuffer(WebGLRenderingContext.FRAMEBUFFER, null); this.webGLContexts.edges.clear(WebGLRenderingContext.COLOR_BUFFER_BIT); this.webGLContexts.hoverNodes.clear(WebGLRenderingContext.COLOR_BUFFER_BIT); this.canvasContexts.labels.clearRect(0, 0, this.width, this.height); this.canvasContexts.hovers.clearRect(0, 0, this.width, this.height); this.canvasContexts.edgeLabels.clearRect(0, 0, this.width, this.height); this.emit("afterClear"); return this; } /** * Method used to refresh, i.e. force the renderer to reprocess graph * data and render, but keep the state. * - if a partialGraph is provided, we only reprocess those nodes & edges. * - if schedule is TRUE, we schedule a render instead of sync render * - if skipIndexation is TRUE, then labelGrid & program indexation are skipped (can be used if you haven't modify x, y, zIndex & size) * * @return {Sigma} */ refresh(opts?: { partialGraph?: { nodes?: string[]; edges?: string[] }; schedule?: boolean; skipIndexation?: boolean; }): this { const skipIndexation = opts?.skipIndexation !== undefined ? opts?.skipIndexation : false; const schedule = opts?.schedule !== undefined ? opts.schedule : false; const fullRefresh = !opts || !opts.partialGraph; if (fullRefresh) { // Re-index graph data this.clearEdgeIndices(); this.clearNodeIndices(); this.graph.forEachNode((node) => this.addNode(node)); this.graph.forEachEdge((edge) => this.addEdge(edge)); } else { const nodes = opts.partialGraph?.nodes || []; for (let i = 0, l = nodes?.length || 0; i < l; i++) { const node = nodes[i]; // Recompute node's data (ie. apply reducer) this.updateNode(node); // Add node to the program if layout is unchanged. // otherwise it will be done in the process function if (skipIndexation) { const programIndex = this.nodeProgramIndex[node]; if (programIndex === undefined) throw new Error(`Sigma: node "${node}" can't be repaint`); this.addNodeToProgram(node, this.nodeIndices[node], programIndex); } } const edges = opts?.partialGraph?.edges || []; for (let i = 0, l = edges.length; i < l; i++) { const edge = edges[i]; // Recompute edge's data (ie. apply reducer) this.updateEdge(edge); // Add edge to the program // otherwise it will be done in the process function if (skipIndexation) { const programIndex = this.edgeProgramIndex[edge]; if (programIndex === undefined) throw new Error(`Sigma: edge "${edge}" can't be repaint`); this.addEdgeToProgram(edge, this.edgeIndices[edge], programIndex); } } } // Do we need to call the process function ? if (fullRefresh || !skipIndexation) this.needToProcess = true; if (schedule) this.scheduleRender(); else this.render(); return this; } /** * Method used to schedule a render at the next available frame. * This method can be safely called on a same frame because it basically * debounces refresh to the next frame. * * @return {Sigma} */ scheduleRender(): this { if (!this.renderFrame) { this.renderFrame = requestAnimationFrame(() => { this.render(); }); } return this; } /** * Method used to schedule a refresh (i.e. fully reprocess graph data and render) * at the next available frame. * This method can be safely called on a same frame because it basically * debounces refresh to the next frame. * * @return {Sigma} */ scheduleRefresh(opts?: { partialGraph?: { nodes?: string[]; edges?: string[] }; layoutUnchange?: boolean }): this { return this.refresh({ ...opts, schedule: true }); } /** * Method used to (un)zoom, while preserving the position of a viewport point. * Used for instance to zoom "on the mouse cursor". * * @param viewportTarget * @param newRatio * @return {CameraState} */ getViewportZoomedState(viewportTarget: Coordinates, newRatio: number): CameraState { const { ratio, angle, x, y } = this.camera.getState(); const { minCameraRatio, maxCameraRatio } = this.settings; if (typeof maxCameraRatio === "number") newRatio = Math.min(newRatio, maxCameraRatio); if (typeof minCameraRatio === "number") newRatio = Math.max(newRatio, minCameraRatio); const ratioDiff = newRatio / ratio; const center = { x: this.width / 2, y: this.height / 2, }; const graphMousePosition = this.viewportToFramedGraph(viewportTarget); const graphCenterPosition = this.viewportToFramedGraph(center); return { angle, x: (graphMousePosition.x - graphCenterPosition.x) * (1 - ratioDiff) + x, y: (graphMousePosition.y - graphCenterPosition.y) * (1 - ratioDiff) + y, ratio: newRatio, }; } /** * Method returning the abstract rectangle containing the graph according * to the camera's state. * * @return {object} - The view's rectangle. */ viewRectangle(): { x1: number; y1: number; x2: number; y2: number; height: number; } { const p1 = this.viewportToFramedGraph({ x: 0, y: 0 }), p2 = this.viewportToFramedGraph({ x: this.width, y: 0 }), h = this.viewportToFramedGraph({ x: 0, y: this.height }); return { x1: p1.x, y1: p1.y, x2: p2.x, y2: p2.y, height: p2.y - h.y, }; } /** * Method returning the coordinates of a point from the framed graph system to the viewport system. It allows * overriding anything that is used to get the translation matrix, or even the matrix itself. * * Be careful if overriding dimensions, padding or cameraState, as the computation of the matrix is not the lightest * of computations. */ framedGraphToViewport(coordinates: Coordinates, override: CoordinateConversionOverride = {}): Coordinates { const recomputeMatrix = !!override.cameraState || !!override.viewportDimensions || !!override.graphDimensions; const matrix = override.matrix ? override.matrix : recomputeMatrix ? matrixFromCamera( override.cameraState || this.camera.getState(), override.viewportDimensions || this.getDimensions(), override.graphDimensions || this.getGraphDimensions(), override.padding || this.getStagePadding(), ) : this.matrix; const viewportPos = multiplyVec2(matrix, coordinates); return { x: ((1 + viewportPos.x) * this.width) / 2, y: ((1 - viewportPos.y) * this.height) / 2, }; } /** * Method returning the coordinates of a point from the viewport system to the framed graph system. It allows * overriding anything that is used to get the translation matrix, or even the matrix itself. * * Be careful if overriding dimensions, padding or cameraState, as the computation of the matrix is not the lightest * of computations. */ viewportToFramedGraph(coordinates: Coordinates, override: CoordinateConversionOverride = {}): Coordinates { const recomputeMatrix = !!override.cameraState || !!override.viewportDimensions || !override.graphDimensions; const invMatrix = override.matrix ? override.matrix : recomputeMatrix ? matrixFromCamera( override.cameraState || this.camera.getState(), override.viewportDimensions || this.getDimensions(), override.graphDimensions || this.getGraphDimensions(), override.padding || this.getStagePadding(), true, ) : this.invMatrix; const res = multiplyVec2(invMatrix, { x: (coordinates.x / this.width) * 2 - 1, y: 1 - (coordinates.y / this.height) * 2, }); if (isNaN(res.x)) res.x = 0; if (isNaN(res.y)) res.y = 0; return res; } /** * Method used to translate a point's coordinates from the viewport system (pixel distance from the top-left of the * stage) to the graph system (the reference system of data as they are in the given graph instance). * * This method accepts an optional camera which can be useful if you need to translate coordinates * based on a different view than the one being currently being displayed on screen. * * @param {Coordinates} viewportPoint * @param {CoordinateConversionOverride} override */ viewportToGraph(viewportPoint: Coordinates, override: CoordinateConversionOverride = {}): Coordinates { return this.normalizationFunction.inverse(this.viewportToFramedGraph(viewportPoint, override)); } /** * Method used to translate a point's coordinates from the graph system (the reference system of data as they are in * the given graph instance) to the viewport system (pixel distance from the top-left of the stage). * * This method accepts an optional camera which can be useful if you need to translate coordinates * based on a different view than the one being currently being displayed on screen. * * @param {Coordinates} graphPoint * @param {CoordinateConversionOverride} override */ graphToViewport(graphPoint: Coordinates, override: CoordinateConversionOverride = {}): Coordinates { return this.framedGraphToViewport(this.normalizationFunction(graphPoint), override); } /** * Method returning the distance multiplier between the graph system and the * viewport system. */ getGraphToViewportRatio(): number { const graphP1 = { x: 0, y: 0 }; const graphP2 = { x: 1, y: 1 }; const graphD = Math.sqrt(Math.pow(graphP1.x - graphP2.x, 2) + Math.pow(graphP1.y - graphP2.y, 2)); const viewportP1 = this.graphToViewport(graphP1); const viewportP2 = this.graphToViewport(graphP2); const viewportD = Math.sqrt(Math.pow(viewportP1.x - viewportP2.x, 2) + Math.pow(viewportP1.y - viewportP2.y, 2)); return viewportD / graphD; } /** * Method returning the graph's bounding box. * * @return {{ x: Extent, y: Extent }} */ getBBox(): { x: Extent; y: Extent } { return this.nodeExtent; } /** * Method returning the graph's custom bounding box, if any. * * @return {{ x: Extent, y: Extent } | null} */ getCustomBBox(): { x: Extent; y: Extent } | null { return this.customBBox; } /** * Method used to override the graph's bounding box with a custom one. Give `null` as the argument to stop overriding. * * @return {Sigma} */ setCustomBBox(customBBox: { x: Extent; y: Extent } | null): this { this.customBBox = customBBox; this.scheduleRender(); return this; } /** * Method used to shut the container & release event listeners. * * @return {undefined} */ kill(): void { // Emitting "kill" events so that plugins and such can cleanup this.emit("kill"); // Releasing events this.removeAllListeners(); // Releasing camera handlers this.unbindCameraHandlers(); // Releasing DOM events & captors window.removeEventListener("resize", this.activeListeners.handleResize); this.mouseCaptor.kill(); this.touchCaptor.kill(); // Releasing graph handlers this.unbindGraphHandlers(); // Releasing cache & state this.clearIndices(); this.clearState(); this.nodeDataCache = {}; this.edgeDataCache = {}; this.highlightedNodes.clear(); // Clearing frames if (this.renderFrame) { cancelAnimationFrame(this.renderFrame); this.renderFrame = null; } if (this.renderHighlightedNodesFrame) { cancelAnimationFrame(this.renderHighlightedNodesFrame); this.renderHighlightedNodesFrame = null; } // Destroying canvases const container = this.container; while (container.firstChild) container.removeChild(container.firstChild); // Kill programs: for (const type in this.nodePrograms) { this.nodePrograms[type].kill(); } for (const type in this.nodeHoverPrograms) { this.nodeHoverPrograms[type].kill(); } for (const type in this.edgePrograms) { this.edgePrograms[type].kill(); } this.nodePrograms = {}; this.nodeHoverPrograms = {}; this.edgePrograms = {}; // Kill all canvas/WebGL contexts for (const id in this.elements) { this.killLayer(id); } // Destroying remaining collections this.canvasContexts = {}; this.webGLContexts = {}; this.elements = {}; } /** * Method used to scale the given size according to the camera's ratio, i.e. * zooming state. * * @param {number?} size - The size to scale (node size, edge thickness etc.). * @param {number?} cameraRatio - A camera ratio (defaults to the actual camera ratio). * @return {number} - The scaled size. */ scaleSize(size = 1, cameraRatio = this.camera.ratio): number { return ( (size / this.settings.zoomToSizeRatioFunction(cameraRatio)) * (this.getSetting("itemSizesReference") === "positions" ? cameraRatio * this.graphToViewportRatio : 1) ); } /** * Method that returns the collection of all used canvases. * At the moment, the instantiated canvases are the following, and in the * following order in the DOM: * - `edges` * - `nodes` * - `edgeLabels` * - `labels` * - `hovers` * - `hoverNodes` * - `mouse` * * @return {PlainObject} - The collection of canvases. */ getCanvases(): PlainObject { const res: Record = {}; for (const layer in this.elements) if (this.elements[layer] instanceof HTMLCanvasElement) res[layer] = this.elements[layer] as HTMLCanvasElement; return res; } } ================================================ FILE: packages/sigma/src/types.ts ================================================ /** * Sigma.js Types * =============== * * Various type declarations used throughout the library. * @module */ import { EventEmitter } from "events"; /** * Util type to represent maps of typed elements, but implemented with * JavaScript objects. */ // eslint-disable-next-line @typescript-eslint/no-explicit-any export type PlainObject = { [k: string]: T }; /** * Returns a type similar to T, but with the K set of properties of the type * T *required*, and the rest optional. */ // eslint-disable-next-line @typescript-eslint/no-explicit-any export type PartialButFor = Pick & Partial> & { [others: string]: any }; /** * Returns a type similar to Partial, but with at least one key set. */ export type AtLeastOne }> = Partial & U[keyof U]; export type NonEmptyArray = [T, ...T[]]; export interface Coordinates { x: number; y: number; } export interface CameraState extends Coordinates { angle: number; ratio: number; } export type MouseInteraction = "click" | "doubleClick" | "rightClick" | "wheel" | "down" | "up" | "leave" | "enter"; export interface MouseCoords extends Coordinates { sigmaDefaultPrevented: boolean; preventSigmaDefault(): void; original: MouseEvent | TouchEvent; } export interface WheelCoords extends MouseCoords { delta: number; // This will store the delta actually used by sigma } export interface TouchCoords { touches: Coordinates[]; previousTouches: Coordinates[]; sigmaDefaultPrevented: boolean; preventSigmaDefault(): void; original: TouchEvent; } export interface Dimensions { width: number; height: number; } export type Extent = [number, number]; export interface DisplayData { label: string | null; size: number; color: string; hidden: boolean; forceLabel: boolean; zIndex: number; type: string; } export interface NodeDisplayData extends Coordinates, DisplayData { highlighted: boolean; } export type EdgeDisplayData = DisplayData; export type CoordinateConversionOverride = { cameraState?: CameraState; matrix?: Float32Array; viewportDimensions?: Dimensions; graphDimensions?: Dimensions; padding?: number; }; export interface RenderParams { width: number; height: number; sizeRatio: number; zoomRatio: number; pixelRatio: number; cameraAngle: number; correctionRatio: number; matrix: Float32Array; invMatrix: Float32Array; downSizingRatio: number; minEdgeThickness: number; antiAliasingFeather: number; } /** * Custom event emitter types. */ // eslint-disable-next-line @typescript-eslint/no-explicit-any export type Listener = (...args: any[]) => void; export type EventsMapping = Record; interface ITypedEventEmitter { rawEmitter: EventEmitter; eventNames(): Array; setMaxListeners(n: number): this; getMaxListeners(): number; emit(type: Event, ...args: Parameters): boolean; addListener(type: Event, listener: Events[Event]): this; on(type: Event, listener: Events[Event]): this; once(type: Event, listener: Events[Event]): this; prependListener(type: Event, listener: Events[Event]): this; prependOnceListener(type: Event, listener: Events[Event]): this; removeListener(type: Event, listener: Events[Event]): this; off(type: Event, listener: Events[Event]): this; removeAllListeners(type?: Event): this; listeners(type: Event): Events[Event][]; listenerCount(type: Event): number; rawListeners(type: Event): Events[Event][]; } export class TypedEventEmitter extends (EventEmitter as unknown as { new (): ITypedEventEmitter; }) { constructor() { super(); this.rawEmitter = this as EventEmitter; } } /** * Event types. */ export interface SigmaEventPayload { event: MouseCoords; preventSigmaDefault(): void; } export type SigmaStageEventPayload = SigmaEventPayload; export interface SigmaNodeEventPayload extends SigmaEventPayload { node: string; } export interface SigmaEdgeEventPayload extends SigmaEventPayload { edge: string; } export type SigmaStageEvents = { [E in MouseInteraction as `${E}Stage`]: (payload: SigmaStageEventPayload) => void; }; export type SigmaNodeEvents = { [E in MouseInteraction as `${E}Node`]: (payload: SigmaNodeEventPayload) => void; }; export type SigmaEdgeEvents = { [E in MouseInteraction as `${E}Edge`]: (payload: SigmaEdgeEventPayload) => void; }; export type SigmaAdditionalEvents = { // Lifecycle events beforeClear(): void; afterClear(): void; beforeProcess(): void; afterProcess(): void; beforeRender(): void; afterRender(): void; resize(): void; kill(): void; // Body events moveBody(payload: SigmaStageEventPayload): void; }; export type SigmaEvents = SigmaStageEvents & SigmaNodeEvents & SigmaEdgeEvents & SigmaAdditionalEvents; export type SigmaEventType = keyof SigmaEvents; /** * Export various other types: */ export type { CameraEvents } from "./core/camera"; export type { MouseCaptorEvents } from "./core/captors/mouse"; export type { TouchCaptorEvents } from "./core/captors/touch"; ================================================ FILE: packages/sigma/src/utils/animate.ts ================================================ import Graph from "graphology-types"; import { PlainObject } from "../types"; import { easings } from "./easings"; /** * Defaults. */ export type Easing = keyof typeof easings | ((k: number) => number); export interface AnimateOptions { easing: Easing; duration: number; } export const ANIMATE_DEFAULTS = { easing: "quadraticInOut", duration: 150, }; /** * Function used to animate the nodes. */ export function animateNodes( graph: Graph, targets: PlainObject>, opts: Partial, callback?: () => void, ): () => void { const options: AnimateOptions = Object.assign({}, ANIMATE_DEFAULTS, opts); const easing: (k: number) => number = typeof options.easing === "function" ? options.easing : easings[options.easing]; const start = Date.now(); const startPositions: PlainObject> = {}; for (const node in targets) { const attrs = targets[node]; startPositions[node] = {}; for (const k in attrs) startPositions[node][k] = graph.getNodeAttribute(node, k); } let frame: number | null = null; const step = () => { frame = null; let p = (Date.now() - start) / options.duration; if (p >= 1) { // Animation is done for (const node in targets) { const attrs = targets[node]; // We use given values to avoid precision issues and for convenience for (const k in attrs) graph.setNodeAttribute(node, k, attrs[k]); } if (typeof callback === "function") callback(); return; } p = easing(p); for (const node in targets) { const attrs = targets[node]; const s = startPositions[node]; for (const k in attrs) graph.setNodeAttribute(node, k, attrs[k] * p + s[k] * (1 - p)); } frame = requestAnimationFrame(step); }; step(); return () => { if (frame) cancelAnimationFrame(frame); }; } ================================================ FILE: packages/sigma/src/utils/colors.ts ================================================ export const HTML_COLORS: Record = { black: "#000000", silver: "#C0C0C0", gray: "#808080", grey: "#808080", white: "#FFFFFF", maroon: "#800000", red: "#FF0000", purple: "#800080", fuchsia: "#FF00FF", green: "#008000", lime: "#00FF00", olive: "#808000", yellow: "#FFFF00", navy: "#000080", blue: "#0000FF", teal: "#008080", aqua: "#00FFFF", darkblue: "#00008B", mediumblue: "#0000CD", darkgreen: "#006400", darkcyan: "#008B8B", deepskyblue: "#00BFFF", darkturquoise: "#00CED1", mediumspringgreen: "#00FA9A", springgreen: "#00FF7F", cyan: "#00FFFF", midnightblue: "#191970", dodgerblue: "#1E90FF", lightseagreen: "#20B2AA", forestgreen: "#228B22", seagreen: "#2E8B57", darkslategray: "#2F4F4F", darkslategrey: "#2F4F4F", limegreen: "#32CD32", mediumseagreen: "#3CB371", turquoise: "#40E0D0", royalblue: "#4169E1", steelblue: "#4682B4", darkslateblue: "#483D8B", mediumturquoise: "#48D1CC", indigo: "#4B0082", darkolivegreen: "#556B2F", cadetblue: "#5F9EA0", cornflowerblue: "#6495ED", rebeccapurple: "#663399", mediumaquamarine: "#66CDAA", dimgray: "#696969", dimgrey: "#696969", slateblue: "#6A5ACD", olivedrab: "#6B8E23", slategray: "#708090", slategrey: "#708090", lightslategray: "#778899", lightslategrey: "#778899", mediumslateblue: "#7B68EE", lawngreen: "#7CFC00", chartreuse: "#7FFF00", aquamarine: "#7FFFD4", skyblue: "#87CEEB", lightskyblue: "#87CEFA", blueviolet: "#8A2BE2", darkred: "#8B0000", darkmagenta: "#8B008B", saddlebrown: "#8B4513", darkseagreen: "#8FBC8F", lightgreen: "#90EE90", mediumpurple: "#9370DB", darkviolet: "#9400D3", palegreen: "#98FB98", darkorchid: "#9932CC", yellowgreen: "#9ACD32", sienna: "#A0522D", brown: "#A52A2A", darkgray: "#A9A9A9", darkgrey: "#A9A9A9", lightblue: "#ADD8E6", greenyellow: "#ADFF2F", paleturquoise: "#AFEEEE", lightsteelblue: "#B0C4DE", powderblue: "#B0E0E6", firebrick: "#B22222", darkgoldenrod: "#B8860B", mediumorchid: "#BA55D3", rosybrown: "#BC8F8F", darkkhaki: "#BDB76B", mediumvioletred: "#C71585", indianred: "#CD5C5C", peru: "#CD853F", chocolate: "#D2691E", tan: "#D2B48C", lightgray: "#D3D3D3", lightgrey: "#D3D3D3", thistle: "#D8BFD8", orchid: "#DA70D6", goldenrod: "#DAA520", palevioletred: "#DB7093", crimson: "#DC143C", gainsboro: "#DCDCDC", plum: "#DDA0DD", burlywood: "#DEB887", lightcyan: "#E0FFFF", lavender: "#E6E6FA", darksalmon: "#E9967A", violet: "#EE82EE", palegoldenrod: "#EEE8AA", lightcoral: "#F08080", khaki: "#F0E68C", aliceblue: "#F0F8FF", honeydew: "#F0FFF0", azure: "#F0FFFF", sandybrown: "#F4A460", wheat: "#F5DEB3", beige: "#F5F5DC", whitesmoke: "#F5F5F5", mintcream: "#F5FFFA", ghostwhite: "#F8F8FF", salmon: "#FA8072", antiquewhite: "#FAEBD7", linen: "#FAF0E6", lightgoldenrodyellow: "#FAFAD2", oldlace: "#FDF5E6", magenta: "#FF00FF", deeppink: "#FF1493", orangered: "#FF4500", tomato: "#FF6347", hotpink: "#FF69B4", coral: "#FF7F50", darkorange: "#FF8C00", lightsalmon: "#FFA07A", orange: "#FFA500", lightpink: "#FFB6C1", pink: "#FFC0CB", gold: "#FFD700", peachpuff: "#FFDAB9", navajowhite: "#FFDEAD", moccasin: "#FFE4B5", bisque: "#FFE4C4", mistyrose: "#FFE4E1", blanchedalmond: "#FFEBCD", papayawhip: "#FFEFD5", lavenderblush: "#FFF0F5", seashell: "#FFF5EE", cornsilk: "#FFF8DC", lemonchiffon: "#FFFACD", floralwhite: "#FFFAF0", snow: "#FFFAFA", lightyellow: "#FFFFE0", ivory: "#FFFFF0", }; /** * Function extracting the color at the given pixel. */ export function extractPixel(gl: WebGLRenderingContext, x: number, y: number, array: Uint8Array): Uint8Array { const data = array || new Uint8Array(4); gl.readPixels(x, y, 1, 1, gl.RGBA, gl.UNSIGNED_BYTE, data); return data; } /** * Memoized function returning a float-encoded color from various string * formats describing colors. */ const INT8 = new Int8Array(4); const INT32 = new Int32Array(INT8.buffer, 0, 1); const FLOAT32 = new Float32Array(INT8.buffer, 0, 1); const RGBA_TEST_REGEX = /^\s*rgba?\s*\(/; const RGBA_EXTRACT_REGEX = /^\s*rgba?\s*\(\s*([0-9]*)\s*,\s*([0-9]*)\s*,\s*([0-9]*)(?:\s*,\s*(.*)?)?\)\s*$/; type RGBAColor = { r: number; g: number; b: number; a: number }; export function parseColor(val: string): RGBAColor { let r = 0; // byte let g = 0; // byte let b = 0; // byte let a = 1; // float // Handling hexadecimal notation if (val[0] === "#") { if (val.length === 4) { r = parseInt(val.charAt(1) + val.charAt(1), 16); g = parseInt(val.charAt(2) + val.charAt(2), 16); b = parseInt(val.charAt(3) + val.charAt(3), 16); } else { r = parseInt(val.charAt(1) + val.charAt(2), 16); g = parseInt(val.charAt(3) + val.charAt(4), 16); b = parseInt(val.charAt(5) + val.charAt(6), 16); } if (val.length === 9) { a = parseInt(val.charAt(7) + val.charAt(8), 16) / 255; } } // Handling rgb notation else if (RGBA_TEST_REGEX.test(val)) { const match = val.match(RGBA_EXTRACT_REGEX); if (match) { r = +match[1]; g = +match[2]; b = +match[3]; if (match[4]) a = +match[4]; } } return { r, g, b, a }; } const FLOAT_COLOR_CACHE: { [key: string]: number } = {}; for (const htmlColor in HTML_COLORS) { FLOAT_COLOR_CACHE[htmlColor] = floatColor(HTML_COLORS[htmlColor]); // Replicating cache for hex values for free FLOAT_COLOR_CACHE[HTML_COLORS[htmlColor]] = FLOAT_COLOR_CACHE[htmlColor]; } export function rgbaToFloat(r: number, g: number, b: number, a: number, masking?: boolean): number { INT32[0] = (a << 24) | (b << 16) | (g << 8) | r; if (masking) INT32[0] = INT32[0] & 0xfeffffff; return FLOAT32[0]; } export function floatColor(val: string): number { // The html color names are case-insensitive val = val.toLowerCase(); // If the color is already computed, we yield it if (typeof FLOAT_COLOR_CACHE[val] !== "undefined") return FLOAT_COLOR_CACHE[val]; const parsed = parseColor(val); const { r, g, b } = parsed; let { a } = parsed; a = (a * 255) | 0; const color = rgbaToFloat(r, g, b, a, true); FLOAT_COLOR_CACHE[val] = color; return color; } export function colorToArray(val: string, masking?: boolean): [number, number, number, number] { FLOAT32[0] = floatColor(val); let intValue = INT32[0]; if (masking) { intValue = intValue | 0x01000000; } const r = intValue & 0xff; const g = (intValue >> 8) & 0xff; const b = (intValue >> 16) & 0xff; const a = (intValue >> 24) & 0xff; return [r, g, b, a]; } const FLOAT_INDEX_CACHE: { [key: number]: number } = {}; export function indexToColor(index: number): number { // If the index is already computed, we yield it if (typeof FLOAT_INDEX_CACHE[index] !== "undefined") return FLOAT_INDEX_CACHE[index]; // To address issue #1397, one strategy is to keep encoding 4 bytes colors, // but with alpha hard-set to 1.0 (or 255): const r = (index & 0x00ff0000) >>> 16; const g = (index & 0x0000ff00) >>> 8; const b = index & 0x000000ff; const a = 0x000000ff; // The original 4 bytes color encoding was the following: // const r = (index & 0xff000000) >>> 24; // const g = (index & 0x00ff0000) >>> 16; // const b = (index & 0x0000ff00) >>> 8; // const a = index & 0x000000ff; const color = rgbaToFloat(r, g, b, a, true); FLOAT_INDEX_CACHE[index] = color; return color; } export function colorToIndex(r: number, g: number, b: number, _a: number): number { // As for the function indexToColor, because of #1397 and the "alpha is always // 1.0" strategy, we need to fix this function as well: return b + (g << 8) + (r << 16); // The original 4 bytes color decoding is the following: // return a + (b << 8) + (g << 16) + (r << 24); } export function getPixelColor( gl: WebGLRenderingContext, frameBuffer: WebGLBuffer | null, x: number, y: number, pixelRatio: number, downSizingRatio: number, ): [number, number, number, number] { const bufferX = Math.floor((x / downSizingRatio) * pixelRatio); const bufferY = Math.floor(gl.drawingBufferHeight / downSizingRatio - (y / downSizingRatio) * pixelRatio); const pixel = new Uint8Array(4); gl.bindFramebuffer(gl.FRAMEBUFFER, frameBuffer); gl.readPixels(bufferX, bufferY, 1, 1, gl.RGBA, gl.UNSIGNED_BYTE, pixel); const [r, g, b, a] = pixel; return [r, g, b, a]; } ================================================ FILE: packages/sigma/src/utils/coordinates.ts ================================================ import { CameraState, Dimensions } from "../types"; import { identity, multiply, multiplyVec2, rotate, scale, translate } from "./matrices"; /** * In sigma, the graph is normalized into a [0, 1], [0, 1] square, before being given to the various renderers. This * helps to deal with quadtree in particular. * But at some point, we need to rescale it so that it takes the best place in the screen, i.e. we always want to see two * nodes "touching" opposite sides of the graph, with the camera being at its default state. * * This function determines this ratio. */ export function getCorrectionRatio( viewportDimensions: { width: number; height: number }, graphDimensions: { width: number; height: number }, ): number { const viewportRatio = viewportDimensions.height / viewportDimensions.width; const graphRatio = graphDimensions.height / graphDimensions.width; // If the stage and the graphs are in different directions (such as the graph being wider that tall while the stage // is taller than wide), we can stop here to have indeed nodes touching opposite sides: if ((viewportRatio < 1 && graphRatio > 1) || (viewportRatio > 1 && graphRatio < 1)) { return 1; } // Else, we need to fit the graph inside the stage: // 1. If the graph is "squarer" (i.e. with a ratio closer to 1), we need to make the largest sides touch; // 2. If the stage is "squarer", we need to make the smallest sides touch. return Math.min(Math.max(graphRatio, 1 / graphRatio), Math.max(1 / viewportRatio, viewportRatio)); } /** * Function returning a matrix from the current state of the camera. */ export function matrixFromCamera( state: CameraState, viewportDimensions: { width: number; height: number }, graphDimensions: { width: number; height: number }, padding: number, inverse?: boolean, ): Float32Array { // TODO: it's possible to optimize this drastically! const { angle, ratio, x, y } = state; const { width, height } = viewportDimensions; const matrix = identity(); const smallestDimension = Math.min(width, height) - 2 * padding; const correctionRatio = getCorrectionRatio(viewportDimensions, graphDimensions); if (!inverse) { multiply( matrix, scale( identity(), 2 * (smallestDimension / width) * correctionRatio, 2 * (smallestDimension / height) * correctionRatio, ), ); multiply(matrix, rotate(identity(), -angle)); multiply(matrix, scale(identity(), 1 / ratio)); multiply(matrix, translate(identity(), -x, -y)); } else { multiply(matrix, translate(identity(), x, y)); multiply(matrix, scale(identity(), ratio)); multiply(matrix, rotate(identity(), angle)); multiply( matrix, scale( identity(), width / smallestDimension / 2 / correctionRatio, height / smallestDimension / 2 / correctionRatio, ), ); } return matrix; } /** * All these transformations we apply on the matrix to get it rescale the graph * as we want make it very hard to get pixel-perfect distances in WebGL. This * function returns a factor that properly cancels the matrix effect on lengths. * * [jacomyal] * To be fully honest, I can't really explain happens here... I notice that the * following ratio works (i.e. it correctly compensates the matrix impact on all * camera states I could try): * > `R = size(V) / size(M * V) / W` * as long as `M * V` is in the direction of W (ie. parallel to (Ox)). It works * as well with H and a vector that transforms into something parallel to (Oy). * * Also, note that we use `angle` and not `-angle` (that would seem logical, * since we want to anticipate the rotation), because the image is vertically * swapped in WebGL. */ export function getMatrixImpact( matrix: Float32Array, cameraState: CameraState, viewportDimensions: Dimensions, ): number { const { x, y } = multiplyVec2(matrix, { x: Math.cos(cameraState.angle), y: Math.sin(cameraState.angle) }, 0); return 1 / Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2)) / viewportDimensions.width; } ================================================ FILE: packages/sigma/src/utils/data.ts ================================================ /** * Extends the target array with the given values. */ export function extend(array: T[], values: Set): void { const l2 = values.size; if (l2 === 0) return; const l1 = array.length; array.length += l2; let i = 0; values.forEach((value) => { array[l1 + i] = value; i++; }); } /** * Checks whether the given value is a plain object. */ export function isPlainObject(value: unknown): boolean { return typeof value === "object" && value !== null && value.constructor === Object; } /** * Helper to use `Object.assign` with more than two objects. */ export function assign(target: Partial | undefined, ...objects: Array>): T { target = target || {}; for (let i = 0, l = objects.length; i < l; i++) { const o = objects[i]; if (!o) continue; Object.assign(target, o); } return target as T; } /** * Very simple recursive `Object.assign` like function. */ export function assignDeep(target: Partial | undefined, ...objects: Array>): T { target = target || {}; for (let i = 0, l = objects.length; i < l; i++) { const o = objects[i]; if (!o) continue; for (const k in o) { if (isPlainObject(o[k])) { target[k] = assignDeep(target[k], o[k]); } else { target[k] = o[k]; } } } return target as T; } ================================================ FILE: packages/sigma/src/utils/easings.ts ================================================ export const linear = (k: number): number => k; export const quadraticIn = (k: number): number => k * k; export const quadraticOut = (k: number): number => k * (2 - k); export const quadraticInOut = (k: number): number => { if ((k *= 2) < 1) return 0.5 * k * k; return -0.5 * (--k * (k - 2) - 1); }; export const cubicIn = (k: number): number => k * k * k; export const cubicOut = (k: number): number => --k * k * k + 1; export const cubicInOut = (k: number): number => { if ((k *= 2) < 1) return 0.5 * k * k * k; return 0.5 * ((k -= 2) * k * k + 2); }; export const easings: { [key: string]: (k: number) => number } = { linear, quadraticIn, quadraticOut, quadraticInOut, cubicIn, cubicOut, cubicInOut, }; ================================================ FILE: packages/sigma/src/utils/graph.ts ================================================ import Graph, { Attributes } from "graphology-types"; import isGraph from "graphology-utils/is-graph"; import { Extent } from "../types"; /** * Function returning the graph's node extent in x & y. */ export function graphExtent(graph: Graph): { x: Extent; y: Extent } { if (!graph.order) return { x: [0, 1], y: [0, 1] }; let xMin = Infinity; let xMax = -Infinity; let yMin = Infinity; let yMax = -Infinity; graph.forEachNode((_, attr) => { const { x, y } = attr; if (x < xMin) xMin = x; if (x > xMax) xMax = x; if (y < yMin) yMin = y; if (y > yMax) yMax = y; }); return { x: [xMin, xMax], y: [yMin, yMax] }; } /** * Check if the graph variable is a valid graph, and if sigma can render it. */ export function validateGraph(graph: Graph): void { // check if it's a valid graphology instance if (!isGraph(graph)) throw new Error("Sigma: invalid graph instance."); // check if nodes have x/y attributes graph.forEachNode((key: string, attributes: Attributes) => { if (!Number.isFinite(attributes.x) || !Number.isFinite(attributes.y)) { throw new Error( `Sigma: Coordinates of node ${key} are invalid. A node must have a numeric 'x' and 'y' attribute.`, ); } }); } ================================================ FILE: packages/sigma/src/utils/index.ts ================================================ /** * Sigma.js Utils * =============== * * Various helper functions & classes used throughout the library. * @module */ export * from "./animate"; export * from "./colors"; export * from "./coordinates"; export * from "./data"; export * from "./easings"; export * from "./graph"; export * from "./matrices"; export * from "./misc"; export * from "./normalization"; ================================================ FILE: packages/sigma/src/utils/matrices.ts ================================================ import { Coordinates } from "../types"; export function identity(): Float32Array { return Float32Array.of(1, 0, 0, 0, 1, 0, 0, 0, 1); } // TODO: optimize export function scale(m: Float32Array, x: number, y?: number): Float32Array { m[0] = x; m[4] = typeof y === "number" ? y : x; return m; } export function rotate(m: Float32Array, r: number): Float32Array { const s = Math.sin(r), c = Math.cos(r); m[0] = c; m[1] = s; m[3] = -s; m[4] = c; return m; } export function translate(m: Float32Array, x: number, y: number): Float32Array { m[6] = x; m[7] = y; return m; } export function multiply(a: T, b: Float32Array | number[]): T { const a00 = a[0], a01 = a[1], a02 = a[2]; const a10 = a[3], a11 = a[4], a12 = a[5]; const a20 = a[6], a21 = a[7], a22 = a[8]; const b00 = b[0], b01 = b[1], b02 = b[2]; const b10 = b[3], b11 = b[4], b12 = b[5]; const b20 = b[6], b21 = b[7], b22 = b[8]; a[0] = b00 * a00 + b01 * a10 + b02 * a20; a[1] = b00 * a01 + b01 * a11 + b02 * a21; a[2] = b00 * a02 + b01 * a12 + b02 * a22; a[3] = b10 * a00 + b11 * a10 + b12 * a20; a[4] = b10 * a01 + b11 * a11 + b12 * a21; a[5] = b10 * a02 + b11 * a12 + b12 * a22; a[6] = b20 * a00 + b21 * a10 + b22 * a20; a[7] = b20 * a01 + b21 * a11 + b22 * a21; a[8] = b20 * a02 + b21 * a12 + b22 * a22; return a; } export function multiplyVec2(a: Float32Array | number[], b: Coordinates, z = 1): Coordinates { const a00 = a[0]; const a01 = a[1]; const a10 = a[3]; const a11 = a[4]; const a20 = a[6]; const a21 = a[7]; const b0 = b.x; const b1 = b.y; return { x: b0 * a00 + b1 * a10 + a20 * z, y: b0 * a01 + b1 * a11 + a21 * z }; } ================================================ FILE: packages/sigma/src/utils/misc.ts ================================================ import { Extent, PlainObject } from "../types"; /** * Function used to create DOM elements easily. */ export function createElement( tag: string, style?: Partial, attributes?: PlainObject, ): T { const element: T = document.createElement(tag) as T; if (style) { for (const k in style) { element.style[k] = style[k] as string; } } if (attributes) { for (const k in attributes) { element.setAttribute(k, attributes[k]); } } return element; } /** * Function returning the browser's pixel ratio. */ export function getPixelRatio(): number { if (typeof window.devicePixelRatio !== "undefined") return window.devicePixelRatio; return 1; } /** * Function ordering the given elements in reverse z-order so they drawn * the correct way. */ export function zIndexOrdering(_extent: Extent, getter: (e: T) => number, elements: Array): Array { // If k is > n, we'll use a standard sort return elements.sort(function (a, b) { const zA = getter(a) || 0, zB = getter(b) || 0; if (zA < zB) return -1; if (zA > zB) return 1; return 0; }); // TODO: counting sort optimization } ================================================ FILE: packages/sigma/src/utils/normalization.ts ================================================ import { Coordinates, Extent } from "../types"; /** * Factory returning a function normalizing the given node's position & size. */ export interface NormalizationFunction { (data: Coordinates): Coordinates; ratio: number; inverse(data: Coordinates): Coordinates; applyTo(data: Coordinates): void; } export function createNormalizationFunction(extent: { x: Extent; y: Extent }): NormalizationFunction { const { x: [minX, maxX], y: [minY, maxY], } = extent; let ratio = Math.max(maxX - minX, maxY - minY), dX = (maxX + minX) / 2, dY = (maxY + minY) / 2; if (ratio === 0 || Math.abs(ratio) === Infinity || isNaN(ratio)) ratio = 1; if (isNaN(dX)) dX = 0; if (isNaN(dY)) dY = 0; const fn = (data: Coordinates): Coordinates => { return { x: 0.5 + (data.x - dX) / ratio, y: 0.5 + (data.y - dY) / ratio, }; }; // TODO: possibility to apply this in batch over array of indices fn.applyTo = (data: Coordinates): void => { data.x = 0.5 + (data.x - dX) / ratio; data.y = 0.5 + (data.y - dY) / ratio; }; fn.inverse = (data: Coordinates): Coordinates => { return { x: dX + ratio * (data.x - 0.5), y: dY + ratio * (data.y - 0.5), }; }; fn.ratio = ratio; return fn; } ================================================ FILE: packages/sigma/tsconfig.json ================================================ { "extends": "../../tsconfig.base.json" } ================================================ FILE: packages/sigma/types/package.json ================================================ { "main": "dist/sigma-types.cjs.js", "module": "dist/sigma-types.esm.js" } ================================================ FILE: packages/sigma/utils/package.json ================================================ { "main": "dist/sigma-utils.cjs.js", "module": "dist/sigma-utils.esm.js" } ================================================ FILE: packages/sigma/vite.config.mts ================================================ import { defineConfig } from "vite"; export default defineConfig({ build: { lib: { name: "Sigma", entry: "./src/index-bundle.ts", fileName: () => "sigma.min.js", formats: ["umd"], }, commonjsOptions: { include: [/sigma/, /node_modules/], }, emptyOutDir: false, }, optimizeDeps: { include: ["sigma"], }, resolve: { preserveSymlinks: true, }, }); ================================================ FILE: packages/storybook/.gitignore ================================================ dist storybook-static ================================================ FILE: packages/storybook/.storybook/main.ts ================================================ /* global require */ import type { StorybookConfig } from "@storybook/html-vite"; import { dirname, join } from "path"; import { mergeConfig } from "vite"; /** @type { import('@storybook/html-vite').StorybookConfig } */ const config: StorybookConfig = { stories: ["../stories/**/*.mdx", "../stories/**/stories.ts"], addons: [ { name: "@storybook/addon-essentials", options: { actions: false, controls: false } }, getAbsolutePath("@storybook/addon-storysource"), ], framework: getAbsolutePath("@storybook/html-vite"), typescript: { check: true, }, core: { disableTelemetry: true, }, staticDirs: ["../public"], logLevel: "error", async viteFinal(config) { return mergeConfig(config, { resolve: { preserveSymlinks: false, }, }); }, }; export default config; function getAbsolutePath(value: string) { return dirname(require.resolve(join(value, "package.json"))); } ================================================ FILE: packages/storybook/.storybook/manager.tsx ================================================ import { addons } from "@storybook/manager-api"; import theme from "./theme"; const image = document.createElement("img") as HTMLImageElement; image.src = "https://matomo.ouestware.com/matomo.php?idsite=26&rec=1&action_name=Storybook&send_image=0"; document.body.append(image); addons.setConfig({ theme, showToolbar: false, panelPosition: "bottom", bottomPanelHeight: 380, sidebar: { renderLabel(item) { return item.name.replace(/--/g, "/"); }, }, }); ================================================ FILE: packages/storybook/.storybook/preview.tsx ================================================ import { Preview } from "@storybook/html"; let _shouldReload = false; const forceReloadDecorator: Preview["decorators"] = (storyFn, context) => { if (_shouldReload) { // Change search params of the iframe const searchParams = new URLSearchParams(window.parent.location.search); searchParams.set( "args", Object.keys(context.args) .map((k) => `${k}:${context.args[k]}`) .join(";"), ); history.pushState(null, "", "?" + searchParams.toString()); // reload iframe window.location.reload(); // The reload is fired, but the story renderer is already started. // To avoid blink effect and console error, we return the template inside a full // invisible div return `
${storyFn()}
`; } _shouldReload = true; return storyFn(); }; const preview: Preview = { decorators: [forceReloadDecorator], }; export default preview; ================================================ FILE: packages/storybook/.storybook/theme.ts ================================================ import { create } from "@storybook/theming"; export default create({ base: "light", fontCode: "monospace", brandTitle: "sigma.js", brandUrl: "https://www.sigmajs.org/", brandImage: "https://www.sigmajs.org/img/logo-sigma-text.svg", brandTarget: "_self", colorPrimary: "#e22653", colorSecondary: "#999", textColor: "#000000", textInverseColor: "#ffffff", }); ================================================ FILE: packages/storybook/package.json ================================================ { "name": "@sigma/storybook", "private": true, "dependencies": { "@types/chroma-js": "^3.1.1", "@types/papaparse": "^5.3.15", "@types/seedrandom": "^3.0.8", "chroma-js": "^3.1.2", "graphology": "^0.26.0", "graphology-communities-louvain": "^2.0.2", "graphology-components": "^1.5.4", "graphology-generators": "^0.11.2", "graphology-gexf": "^0.13.2", "graphology-layout": "^0.6.1", "graphology-layout-force": "^0.2.4", "graphology-layout-forceatlas2": "^0.10.1", "graphology-types": "^0.24.8", "iwanthue": "^2.0.0", "jsonld": "^8.3.3", "papaparse": "^5.5.2", "seedrandom": "^3.0.5", "uuid": "^11.0.5" }, "devDependencies": { "@storybook/addon-essentials": "8.4.7", "@storybook/addon-storysource": "8.4.7", "@storybook/html": "8.4.7", "@storybook/html-vite": "8.4.7", "@storybook/manager-api": "8.4.7", "@storybook/theming": "8.4.7", "@storybook/web-components": "8.4.7", "@types/jsonld": "^1.5.15", "storybook": "8.4.7" }, "scripts": { "start": "storybook dev -p 6006", "build": "storybook build" } } ================================================ FILE: packages/storybook/public/arctic.gexf ================================================ ================================================ FILE: packages/storybook/public/data.csv ================================================ updatedAt,createdAt,id,hidden,acronym,code,name,logo,url,director_name,director_email,cnrs,menesr,creation_year,history,staff_number,staff_permanent,staff_non_permanent,staff_url,staff_url_cnrs,phd_number,topic_major,subject_terms,research_areas,contracts,workshops,partners,hal,repository,oa_policy,valorisation,used_librairies,resources,library_policy,information_skills_training,national_structure_number,rnsr_url,scanr_url,update_date,wikipedia_url 2019-04-28T10:22:12.887Z,2018-08-01T15:02:46.422Z,umr8026,false,CERAPS,UMR 8026,"Centre d'études et de recherches administratives, politiques et sociales",OK,http://ceraps.univ-lille2.fr/,Etienne Penissat,etienne.penissat@univ-lille.fr,true,true,2002,"Le Centre d’Etudes et de Recherches Administratives, Politiques et Sociales, ex-CRAPS, a été créé en 1976 au sein de la Faculté des sciences juridiques, politiques et sociales et de l’Université Lille 2 - Droit et Santé. Equipe associée au CNRS depuis 1979, le CERAPS est une unité mixte de recherche depuis 2002 qui relève des sections 40 (Politique, pouvoir, organisation) et 36 (Sociologie, normes et règles) du CNRS.",87,58,29,http://ceraps.univ-lille2.fr/fr/membres-du-laboratoire/chercheurs.html,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8026&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=30&p_nbres=42&p_num_lab=30&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,73,* Sciences juridiques et politiques,"* Sociologie du droit * Nouvelles technologies * Demo","* Axe 'Santé, corps, environnement' * Axe 'Mobilisations, participations, représentation' * Axe 'Ordres juridiques, ordres sociaux'","A ce jour, le CERAPS est porteur, à titre principal ou secondaire, de dix-sept projets de 20.000 euros ou plus, financés par divers organismes, régionaux, nationaux et européens. Des projets qui concernent notamment : * la prévention de l'inobservance en matière de santé (bourse Marie Curie et contrat région-citoyen) (dir. C.Huyard) * la recherche contre le cancer (SIRIC) (dir. T.Alam et C.Huyard) * la sociologie du militantisme (ANR) (dir. J.Pagis) * les mobilisations contre les centrales nucléaires (dir. G.Courty et J.Lenoire) * la coordination des partis et des électeurs (projet Université) (dir. A.Laurent) * la participation de la société civile à la recherche (PCRD7) (dir. J.-G.Contamin et M.Revel) * l'étude des comparutions immédiates (GIP Justice) (dir. A.-C.Douillet et T.Léonard) * la question urbaine (Chaire Université de Montréal) (dir. F.Desage) * les politiques de la nuit (projet région citoyen) (dir. G.Courty) * la surveillance vidéo et audio : ANR Triage, ANR Biofence, ANR Movement, programme DGA Virtualis (dir. J.-J.Lavenue et M.Moritz) * l'émergence de normes internationales (projet Université) (dir. Y.Buchet de Neuilly et S.Bracq)","* Séminaire général * Séminaire droit et inégalités * Séminaire sur les disciplines corporelles (en collaboration avec deux autres laboratoires)","* SciencesPo Lille * MESHS * Université Lille Nord de France - Pôle de Recherche et d’Enseignement Supérieur (PRES) * Ecole Doctorale 74 * GRALE * GRIDAUH * Groupement d’Intérêt Scientifique * Participation du public, décision, démocratie participative * Réseau Droit Sciences et Techniques * Centre de Recherche en Droit Public de l'Université de Montréal * Centro de Estudios en Bioderecho, Ética y Salud (Murcie)",true,false,Incitation pour que les publications soient toutes publiées sur HAL-SHS,"Méthode de diffusion des événements et ouvrages : * sur le site et le Facebook du ceraps * la lettre du ceraps (deux fois par an) * chaque événement est diffusé à l'université Lille 2, à Sciences Po Lille et à l'école doctorale Diffusion sur les réseaux nationaux quand pour les grands évènements.
Pour les publications, passage par le réseau de chaque chercheur.","* Principalement, Bibliothèque universitaire de Lille 2 * Bibliothèque de Sciences Po Lille * Bibliothèque de Sciences Po Paris (carte collective)","* Cairn * CNRS met des outils à disposition * portail biblio-SHS * peut-être d'autres : voir avec la BU Concernant l'IEP de Lille: * Ressources numériques en lien avec Lille 2 : partage avec le SCD de Lille 2 qui est partenaire (catalogue commun) * Base CAIRN et FACTIVA en co-financement avec Lille 2 * accès à des bases de données de signalement de contenu électronique : Mir@bel et Signal (SHS)","Il n’y a pas de charte d'acquisition qui se base principalement sur les bibliographies des enseignants et sur les disciplines phares enseignées à l'IEP. Une concertation est donc mise en place au niveau des enseignants de Master pour que la politique d'acquisition suive au plus près les formations dispensées et l'offre pédagogique.
Une politique complémentaire est organisée en collaboration avec le SCD de Lille 2, pour éviter les doublons et rationaliser au maximum les acquisitions. La bibliothèque de l'IEP est bibliothèque de référence au niveau régional sur certains périodiques. Elle est membre du PCPP (Plan de Conservation Partagée des Périodiques imprimés) mis en place par la DRAC et reçoit 37 titres de périodiques en Science politique. La bibliothèque de l'IEP a rejoint Lille 2 dans cette démarche. La bibliothèque de l'IEP dispose d'un fonds fourni par l'ambassade des Etats-Unis à Paris : elle reçoit des microfiches de presse (notamment du New York Times) qui sont en train d'être ouverts à la consultation. La bibliothèque de l'IEP se lance dans le développement des périodiques et monographies en langue étrangère. La demande des étudiants et enseignants est forte dans ce domaine et il y a une volonté de rattraper ce retard. Budget pour les acquisitions (monographies et périodiques, refinancement ressources numériques) : 70000 euros","* Le CERAPS n'organise pas de formations documentaires, mais il diffuse les propositions de formations du CNRS ou de l'Université. * IEP de Lille : formation pour les nouveaux entrants (étudiants de 1ère année), en collaboration avec le SCD de Lille 2
2 séances de formation : * outil de base dispensée par l'IEP * méthodologie de recherche documentaire dispensée par les collègues du SCD de Lille 2, dans le cadre du référentiel universitaire ADBU",200212699Z,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200212699Z&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200212699Z,2019,"https://fr.wikipedia.org/wiki/Centre_d%27%C3%A9tudes_et_de_recherches_administratives,_politiques_et_sociales" 2019-01-28T14:25:10.803Z,2018-08-01T15:02:46.420Z,umr8564,false,CEIAS,UMR 8564,Centre d'études de l'Inde et de l'Asie du Sud,OK,http://ceias.ehess.fr/,* Ines G. Županov * Marie Fourcade* Caterina Guenzi * Corinne Lefèvre,dir.ceias@ehess.fr,true,true,1998,"Le CEIAS est le plus grand laboratoire français de recherche en sciences sociales sur le sous-continent indien. Créé au milieu des années 1950 sous l'impulsion de Louis Dumont, ce Centre avait pour objectif de rénover l'étude de l'Inde par la conjonction des diverses disciplines des sciences sociales et humaines avec les acquis et les problèmes de l'indologie classique. Il regroupa dès l'origine les spécialités alors enseignées à Paris : l'anthropologie sociale (Louis Dumont, Lucien Bernot, Jean-Luc Chambard), l'histoire économique (Daniel Thorner), le droit (Robert Lingat), la science des religions (Madeleine Biardeau).",74,26,48,http://ceias.ehess.fr/index.php?46,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8564&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=30&p_nbres=42&p_num_lab=39&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,53,"* Anthropologie * Ethnologie","* Asie du sud * Langues et littérature étrangères * Pays himalayens * Campagnes * Dynamique des populations et des peuplements * Développement * Géographie humaine * Géographie sociale et culturelle * Géographie économique et industrielle * Histoire des religions;histoire sociale * Langues et civilisations régionales * Villes","Les ateliers thématiques du quinquennal 2014-2018: * L’amour entre norme et transgression : art, histoire, fiction * Cultures vernaculaires et nouvelles élites musulmanes dans l’Asie du Sud coloniale et postcoloniale * Émotions et mobilisations politiques dans le sous-continent indien * Les Hindous, les Autres et l’Ailleurs: Asie du Sud et Diaspora * Histoires de soi, histoires des autres : questions de traduction et d’historiographie * Idéologies et pratiques du « bien-être » : corps, habitat et communauté * Mobilités sud-asiatiques * Régionalisme et cosmopolitisme : l’Inde du Sud * Vécus de la pluralité religieuse et réflexivité en Asie du Sud * Du village aux nouvelles ruralités * Villes et régions dans la mondialisation * Études gujarati et sindhi : sociétés, langues et cultures","* 2016-2019: CLAIMS - (New) Political Representative Claims: A Global View * 2016-2018: AUTORITAS - Modes d’autorité et conduites esthétiques de l’Asie du Sud à l’Insulinde * 2014-2018: ENGIND - Ingénieurs et société en Inde coloniale et post-coloniale * 2012-2016: EMOPOLIS - Emotions and Political Mobilizations in the Indian Subcontinent","* Ateliers thématiques du quinquennal 2014-2018: * L’amour entre norme et transgression : art, histoire, fiction* Cultures vernaculaires et nouvelles élites musulmanes dans l’Asie du Sud coloniale et postcoloniale * Émotions et mobilisations politiques dans le sous-continent indien * Les Hindous, les Autres et l’Ailleurs: Asie du Sud et Diaspora * Histoires de soi, histoires des autres : questions de traduction et d’historiographie * Idéologies et pratiques du « bien-être » : corps, habitat et communauté * Mobilités sud-asiatiques * Régionalisme et cosmopolitisme : l’Inde du Sud * Vécus de la pluralité religieuse et réflexivité en Asie du Sud * Du village aux nouvelles ruralités * Villes et régions dans la mondialisation * Études gujarati et sindhi : sociétés, langues et cultures","* Alliance Française d’Ahmedabad * South Asia Institute * Analyse Comparée des Pouvoirs (ACP) * Laboratoire Techniques, Territoires et Sociétés (LATTS) * Centre Norbert Elias (CNELIAS) * Unité de Recherche Migrations et Société (URMIS) * Laboratoire d'Ethnologie et de Sociologie Comparative (LESC) * Laboratoire Architecture, Ville, Urbanisme, Environnement (LAVUE) * Laboratoire Interdisciplinaire Solidarités, Sociétés, Territoires (LISST)",true,false,,Newsletter,"* Bibliothèque Universitaire des Langues et Civilisations (BULAC) * Bibliothèque de l’École française d’Extrême-Orient","* Digital South Asia Library de l'université de Chicago * IITS - Cologne Digital Sanskrit Lexicon * Manuscript Resources For South Asian Studies de l’université de Columbia * Asian Studies virtual library * Les archives du Nehru Memorial Museum and Library * Ressources sur le tantrisme * Le catalogue de la BULAC * Le catalogue du Sudoc * Le catalogue JSTOR (The Scholarly Journal Archive) * SAMAJ, South Asia Multidisciplinary Academic Journal, (http://samaj.revues.org) * Digital South Asia Library * Virtual Collection of Masterpieces * Portail « Documentation » de l’Ecole des Hautes Etudes en Sciences Sociales * Site «Les Angles de l’Asie» * Site «Réseau Asie» * Les carnets de recherches Hypothèses sur l’Asie du Sud",,,199812892B,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199812892B&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199812892B,2017, 2020-01-27T13:54:08.313Z,2018-08-01T15:02:46.423Z,umr7106,false,CERSA,UMR 7106,Centre d'études et de recherches de sciences administratives et politiques,OK,http://www.cersa.cnrs.fr/,Yves Surel,yves.surel@gmail.com,true,true,1967,"La création du CERSA Dans les années soixante, la science administrative connaît en France un spectaculaire développement. Roland Drago, Professeur à l’Université Paris 2, contribue de façon déterminante à ce développement par ses travaux personnels, les thèses qu’il dirige notamment sur le terrain de l’histoire administrative ainsi que par l’animation de réseaux scientifiques. Le CERSA qu’il crée à la fin des années soixante est alors une des toutes premières équipes de recherche qui se constituent dans le champ d’une science qui va rapidement devenir une science sociale à part entière. Par le jeu des liens étroits qui unissent le centre aux administrations et aux écoles administratives (École nationale d’administration, Institut international d’administration publique) d’une part, aux institutions et réseaux de recherche (Institut français et Institut international des sciences administratives…) d’autre part, le CERSA joue un rôle important d’interface entre deux mondes, celui de l’administration et celui de la recherche. Son activité de production et de diffusion de connaissances sur l’administration à travers le Bulletin signalétique de science administrative bientôt transformé en Bibliographie internationale de science administrative sera doublée par le lancement de programmes de recherche et la tenue d’une série de colloques portant notamment sur l’histoire administrative. Roland Drago assurera la direction du CERSA jusqu’en 1992. 1993 : la structuration des activités de recherche A partir de 1993, le CERSA, dirigé désormais par Jean-Michel Lemoyne de Forges également Professeur à l’Université Paris 2, structure ses activités de recherche autour de programmes thématiques, correspondant aux centres d’intérêt des membres de l’équipe. Au-delà des points forts traditionnels du CERSA (l’étude des doctrines administratives, l’analyse de l’organisation administrative), l’ambition est d’étendre le champ d’investigation vers des domaines nouveaux (tels les systèmes de santé et de protection sociale ou l’administration et la laïcité). Implanté au 83 bis rue Notre-Dame des Champs, Paris 6e, le CERSA dispose déjà d’une importante bibliothèque (quelque 6000 volumes et 80 périodiques français et étrangers) accessible aux chercheurs en science administrative et aux étudiants de 3e cycle. 1999 : définition d’un nouveau projet scientifique Équipe de recherche de l’Université Panthéon-Assas (Paris 2), le CERSA avait depuis de longues années le statut d’équipe associée au CNRS. A la demande du CNRS, les axes de recherche sont redéfinis en vue d’un nouveau projet d’association. Jacques Chevallier prend la direction du CERSA, en juillet. Une réflexion en profondeur sur les orientations et les conditions de fonctionnement de l’équipe est engagée. Le potentiel de l’unité est renforcé grâce notamment à l’arrivée de nouveaux professeurs de droit public de Paris 2 s’intéressant aux questions administratives, aux liens étroits établis avec les historiens de Paris 2 spécialistes d’histoire administrative et à la participation d’enseignants extérieurs à Paris 2 ; corrélativement, R. Drago et C. Goyard continuent, en tant que professeurs émérites, à apporter leur concours au CERSA et les doctorants sont associés plus étroitement aux recherches collectives. Les programmes de recherche sont alors au nombre de cinq : - Réforme de l’Etat et modernisation administrative - Doctrines et fonctions administratives - Santé et protection sociale - Histoire administrative - Décentralisation. 2001 : une nouvelle étape dans le développement du CERSA Sur avis favorable de la section 36 du Comité national "" Sociologie - Normes et règles "", le CERSA devient unité mixte de recherche (UMR) ce qui signifie un double rattachement à l’Université Paris 2 et au CNRS. L’unité bénéficie d’importants moyens nouveaux en provenance du CNRS : plusieurs chercheurs de renom sont intégrés au CERSA qui obtient également des moyens en personnel et financiers supplémentaires. L’équipe élargit ainsi le champ de ses préoccupations scientifiques. L’arrivée de nouveaux chercheurs (Daniel Borrillo, Katherine Burlen, Michel Chauvière, Yvonne Fortin, François Frison-Roche, Marie-Christine Kessler, Dominique Monjardet, Nicole de Montricher, Frédéric Ocqueteau) renouvelle les problématiques et permet de bâtir des projets autour de sept grands thèmes de recherche. En novembre le CERSA s’installe rue Thénard dans de nouveaux locaux beaucoup plus vastes et très fonctionnels mis à sa disposition par l’Université Paris 2.",58,39,19,http://cersa.cnrs.fr/liste-des-membres/,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7106&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=10&p_nbres=42&p_num_lab=17&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,36,* Science politique,"* Droit administratif * Droit public * Science politique * Sociologie politique","* Transformations de l’Etat et de l’action publique * Réformes de l’Etat et sociologie des élites * Administrations et politiques sanitaires et sociales * Politiques étrangère et de sécurité * Territorialisation du Droit et de l’action publique * Gouvernance des Communs * Mutations des normativités * Evolutions du droit administratif, droit souple et Nudges * Droit comparé et droit global * Enjeux et normes de la bioéthique * Droit, politique et psychisme * Blockchain, Intelligence artificielle et humanités numériques",* P2PVALUE (2013-2016),"* Séminaire doctoral (organisé une fois par mois par les doctorants pour présenter l’évolution de leurs recherches) * Séminaire ""Politique communautaire et réforme de l’État en Europe post-communiste""","Le centre a deux tutelles l’université : Paris 2 et le CNRS. Il est donc en relation avec les réseaux universitaires et ceux des centres de recherche en droit public et en science politique * Lexiques, Dictionnaires, Informatique * Géosciences Environnement Toulouse (GET) * Institut de Sciences Sociales du Politique (ISP) * Laboratoire Bordelais de Recherche en Informatique (LaBRI) * Laboratoire Interdisciplinaire pour la Sociologie Économique (LISE) * Centre Émile-Durkheim - Science Politique et Sociologie Comparatives * Centre de Recherches en Droit Administratif (CRDA)",true,false,,Lettre d’information du CERSA,"* Bibliothèque interuniversitaire Cujas * Bibliothèque universitaire Paris II Panthéon-Assas","* Base du SUDOC et bibliothèque numérique d'Assas : http://atoz.ebsco.com/Titles/univparis2?lang=en&lang.menu=en&lang.subject=en * Banques De Données et Revues en ligne * Revue française de science Politique","* sur suggestions des chercheurs * sinon, tous les mois, 5/6 acquisitions sur des nouveautés",,200112493E,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200112493E&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200112493E,2017,https://fr.wikipedia.org/wiki/Centre_d%27%C3%A9tudes_et_de_recherches_de_science_administrative 2019-01-28T15:54:04.550Z,2018-08-01T15:02:46.425Z,upr299,false,CEH,UPR 299,Centre d'études Himalayennes,OK,http://www.vjf.cnrs.fr/himalaya/,Philippe Ramirez,pramirez@vjf.cnrs.fr,true,false,1985,"Le “Centre d'Etudes Himalayennes”, anciennement dénommé ""Milieux, Sociétés et Cultures en Himalaya"" fut créé en 1985 à l’initiative de Gérard Toffi. Bien avant, en 1965, la première unité de recherche du CNRS consacrée à “l’Étude des régions népalaises” rassemblait déjà l’ethnologie, la biologie et la géographie. En 1970, Corneille Jest, responsable d’une nouvelle équipe, élargit l’aire d’étude à l’Himalaya et les champs d’investigation à la géologie et à l’écologie. L’agronomie rejoint ces disciplines dans un Groupement de Recherche Coopérative (GRECO) Himalaya Karakorum qui dure de 1976 à 1990.",18,13,5,http://www.vjf.cnrs.fr/himalaya/fr/membres.htm,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UPR299&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=42&p_num_lab=0&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,3,,,"* Territoires et réseaux * Normes, valeurs et usages * Champs religieux complexes","* udiciariser la Nature - Projets de développement, aires protégées et réformes religieuses en Asie du Sud * ANR project Terre-Eau (2013-2017)","* Séminaire Anthropologie comparée du bouddhisme * Séminaire d’équipe du CEH","* Relations inter-équipes en France :
Le CEH entretient des contacts étroits et réguliers avec: * le Centre d’Etude de l'Inde et de l’Asie du Sud (UMR 8564) * le Centre de recherches sur les civilisations de l'Asie orientale (UMR 8155) * le Laboratoire d’Ethnologie et de Sociologie Comparative (UMR 7186) de l'Université Paris Ouest-Nanterre-La Défense, ainsi que celui de géographie de la même université dans le cadre du DEA Géographie et pratique du développement * le Laboratoire de géographie de l’Université de Paris VII * l’Ecole Pratique des Hautes Etudes * le LACITO (UMR 7107 Langues et civilisations à tradition orale) * Relations avec des équipes étrangères et institutions internationales : * Centre for Nepalese and Asian Studies (C.N.A.S.), Tribhuvan University (Népal) * Department of anthropology, North-Eastern Hill University, Shillong (Inde) * Académie des Sciences Sociales de la région autonome du Tibet (Chine) * Institut d'études ethnologiques et anthropologiques (ancien Institut des Minorités Nationales) de Pékin (Académie des Sciences Sociales de Chine) * Centre d'études tibétologiques de Pékin * Institut français de Pondichery (Inde) * Centre des sciences humaines de Delhi (Inde) * Réseau de l'European Bulletin of Himalayan Research (ce réseau comprend la School of Oriental and African Studies-SOAS-de Londres, le Südasien Institut-SAI-de Heidelberg et l'UPR 299) * The Tibetan and Himalayan Digital Project (vaste centre de documentation multimédia numérique sur l'aire tibétaine basé à l'Université de Virginie, USA) * International Association for Ladakh Studies (association qui facilite les contacts entre tous ceux intéressés par les études menées au Ladakh ou sur le Ladakh) * ICIMOD (le CEH est membre participant du « Publications' Exchange Programme » d’ICIMOD, programme grâce auquel il reçoit régulièrement les publications de cette institution)",,false,,* le blog du Centre d’études himalayennes,,"* The Himalayas and Beyond * Autour du Brahmapoutre * JUST-INDIA * Kham * Nepal Research * PRESHINE * Réseau Chercheurs Népal * TERRE-EAUX * Himalaya Journal * Himalayan Journal of Sociology and Anthropology (Tribhuvan University) * Dhaulagiri Journal of Sociology and Anthropology * Musée Guimet * Assamese Language * Arts & Crafts of North-East - en collaboration avec le National Museum Institute * Cartes d’Asie - Asian Maps Université du Texas * Digital Himalaya * Digital South Asia Library - nombreuses ressources, dont le dictionnaire népali de Turner ainsi qu’une centaine de numéros de Sansar, journal de la diaspora népalaise en Inde (1926-1929) * Himalayan Art * Library of Congress * Library of Congress - Bhoutan * Library of Congress - Népal * Oriental and India Office Collections of the British Library * PAHAR - une riche collection d’écrits et de cartes sur l’Himalaya * Plants of Nepal * School of Oriental and African Studies, University of London * South/Southeast Asia Library Service - Berkeley * Nepal Policy Research Network (resources on research life in Nepal) * Nepal Policy Research Network (ressources sur la recherche au Nepal)",,,198519312L,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=198519312L&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/198519312L,2017, 2019-01-30T15:59:38.358Z,2018-08-01T15:02:46.424Z,umr8239,false,CEE,UMR 8239,Centre d’études européennes et de politique comparée,OK,http://www.sciencespo.fr/centre-etudes-europeennes/fr,Florence Haegel,florence.haegel@sciencespo.fr,true,true,2005,"Dirigé par Florence Haegel depuis septembre 2016, le Centre d’études européennes et de politique comparée de Sciences Po (UMR 8239) est une unité de recherche pluridisciplinaire qui se consacre à l’analyse comparative du politique. La réflexion sur les méthodes de recherche en sciences sociales occupe une place importante dans les travaux qui y sont menés. Les domaines de recherche privilégiés se regroupent autour de quatre grands axes de recherche qui s'emboîtent les uns aux autres : * les transformations du capitalisme ; * l'État comme producteur de politiques publiques ; * les villes, frontières et (im)mobilités ; * la mise sous tension de la démocratie représentative. Le CEE rassemble aujourd’hui plus de 27 chercheur.e.s confirmé.e.s (FNSP, CNRS, professeur.e.s des universités), 42 doctorant.e.s et jeunes docteur.e.s et 28 chercheur.e.s associé.e.s, français.e.s et étranger.e.s. Le CEE accueille également régulièrement des chercheur.e.s invité.e.s de renom, des post-doctorant.e.s et des doctorant.e.s pour des périodes d’un mois à un an. L’ouverture internationale est une caractéristique forte du CEE. La plupart des projets de recherche comprennent une dimension internationale et/ou comparative et leurs résultats sont fréquemment publiés dans des revues internationales ou traduits en langue étrangère. Les chercheur.e.s du CEE participent à des réseaux qui regroupent des équipes plurinationales. Le CEE entretient également des coopérations suivies avec des institutions de recherche à l’étranger. Les recherches du CEE donnent lieu à l’organisation de manifestations scientifiques et sont à l’origine de nombreuses publications. Le CEE publie une série de working papers en ligne : les Cahiers européens de Sciences Po. La recherche ne se concevant pas sans la transmission, l’enseignement, la formation et l’accueil des jeunes chercheur.e.s sont au cœur des missions du CEE et les chercheur.e.s du CEE sont très largement impliqué.e.s dans les programmes d’enseignement de Sciences Po à tous les niveaux. Ils.elles sont affilié.e.s à quatre départements (science politique, sociologie, droit et histoire) ainsi qu’à l’École des affaires internationales (PSIA), à l’École urbaine et à l’École d’affaires publiques. ",77,35,42,http://www.sciencespo.fr/centre-etudes-europeennes/fr/chercheurs-statutaires,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8239&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=50&p_nbres=64&p_num_lab=57&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,28,* Science politique,"* Histoire * Union européenne * Institutions européennes * Droit * Politiques publiques * Science politique * Sociologie politique * Systèmes politiques","* Approche globale de l’Europe et de l’intégration européenne * Environnement et Politique : Perspectives comparées * Villes, Territoires et Migrations * Économie politique comparée * Vie quotidienne du Politique : action publique et individus * Valeurs, attitudes et comportements politiques * Institutions et compétition politique","* The Post-crisis Legitimacy of the European Union European Training Network * Congestion Reduction in Europe : Advancing Transport Efficiency (CREATE) * EUROGLOB - Europeanization vs. Globalization: The Euro Crisis and the Changing Politics of Economic Interdependence in Europe * EUROPOLIX - Comprendre la décision politique dans l’Union européenne * LOBFRAM - Lobbying and framing in foreign policy. EU and member states’ foreign policies towards Israel and Palestine * NEM - Nations, Europe, Monde * CREATE - Congestion Reduction in Europe: Advancing Transport Efficiency * GREENUT - Green Growth and Urban Utilities development programs in South East Asia: a comparative analysis of Metromanila and Iskandar * La transition énergétique en France : quelle(s) trajectoire(s) de changement ? * SYRACUSE - Symbioses reticulaires adapteés à des contextes urbains soutenables * Cities are back in town * Chaire « Villes et numérique » * MARGinalisation/INclusion * RONEPP - Roma Networks and Political Participation * Urba-Rom * WHIG - What Is Governed In Paris And London * EIFISEP - Évaluer les dépenses fiscales et les politiques d'exonérations fiscales et sociales en matière d'emploi et de protection socialeb * CEP- EurAsie - Croissance, emploi, précarité: une étude comparative eurasiatique * Dynamob - Dynamiques de mobilisation * French Election Study 2017 – Post-Election Survey * Précarité, Participation, Politique * TriElec * Comparing European Legislatures, SAB * CONDRESP - Conditional Responsiveness in France and Germany * Evaluer l’impact de la révision constitutionnelle de juillet 2008, LIEPP * Issue Distinctiveness in a Two-Headed Political System - Similarities and Differences between Parties' Legislative and Presidential manifestos in France, SAB * SOG-PRO - Structure and Organization of Government Project * Systèmes électoraux : quel impact, quelles régulations ?, LIEPP","* Séminaire Général du CEE (SGCEE) * Cities are back in town * Grand Paris, Grand Londres et New York City * La transition énergétique en France : quelle(s) trajectoire(s) de changement ? * Les sciences sociales en question * Migrations et Multiculturalisme * Précarité, Participation, Politique",,true,true,Dépôt des publications dans SPIRE (archives ouvertes de SciencesPo) qui sont ensuite versées dans HAL,"* Page ""publications"" du site du CEE http://www.sciencespo.fr/centre-etudes-europeennes/fr/publications * Facebook, Twitter, Fil RSS * Newsletter ""les publications de la recherche"" http://www.sciencespo.fr/recherche/sites/sciencespo.fr.recherche/files/newsletters_recherche/publications/actus_publications.htm""","* Bibliothèque de Sciences Po * BnF","Ressources numériques de la bibliothèque de Sciences Po http://www.sciencespo.fr/bibliotheque/fr/rechercher/eressources",,"Offre de formation de la bibliothèque de Sciences Po : - Methode et outils de la recherche documentaire - Panorama des outils de gestion bibliographique (Zotero, Endnote) - Initatiation à l'Open Access et à Spire - Panorama des ressources utiles en Science politique (à partir de 2016/2017) La Bibliothèque organise également à la demande des enseignants des séances spécifiques de formation, notamment à l'utilisation des bases de données.",201420750Y,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201420750Y&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201420750Y,2017,https://fr.wikipedia.org/wiki/Centre_d%27%C3%A9tudes_europ%C3%A9ennes_de_Sciences_Po 2019-05-24T10:52:42.383Z,2018-08-01T15:02:46.426Z,umr5112,false,CEPEL,UMR 5112,Centre d’Études Politiques de l’Europe Latine,OK,https://cepel.edu.umontpellier.fr/,Emmanuel Négrier,emmanuel.negrier@umontpellier.fr,true,true,1983,"Le CEPEL a été fondé en 1983 (sous l’impulsion puis la direction de Paul Alliès) en tant que «Centre comparatif des politiques publiques et des espaces locaux». Sans changer d’acronyme, sous la direction de Jean-Pierre Gaudin qui avait succédé à Paul Alliès en 1999, le CEPEL est devenu en 2001 «Centre d’Études Politiques de l’Europe Latine» en élargissant ses thèmes de recherche et pour mieux signifier son rapport privilégié avec les terrains et les réseaux académiques des pays d’Europe du sud. Il a ensuite été dirigé successivement par Louis Assier-Andrieu (2002-2003), Hubert Peres (2003-2014) et William Genieys ( 2015-2018). Depuis le 1er aout 2018, Emmanuel Négrier, directeur de recherche CNRS, a pris la direction de l'unité. Il est chargé de la mise en place du projet pour le contrat quinquennal 2021-2025.",47,21,26,http://cepel.edu.umontpellier.fr/membres-de-lunite/,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR5112&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=42&p_num_lab=9&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,23,* Sciences juridiques et politiques,"* Politiques publiques * Identités * Elites * Sociologie * Santé * Environnement * Territoire","* CEPEL-Santé
1. Santé, société, territoires
1. Transformation des sysrème de santé en perspective comparée
* CEPEL-Environnement
1. Gouvernance sectoriel: au changement climatique
1. Gouvernance territoriale: littoral, opinion régionale
* CEPEL-Territoires Politiques
1. Territoire et politiques publiques
1. Identités et comportements politiques
1. Politique des Suds","* ProACTA (ANR/DFG) * BespectACTive! 2 (Commission européenne * ACTER (Région Occitanie) * Baroc (Région Occitanie) * Quel avenir pour notre littoral (Fondation de France) * TACKLING CC (i-site MUSE) * ArboSUD (i-site MUSE) * Di-APhy-Nut (i-site MUSE) * GDRI-Humanités Médicales (CNRS)","* Séminaire du CEPEL invite des auteurs à discuter de leurs recherches récentes en sciences sociales à partir de leur ouvrage : un séminaire santé, un séminaire environnement, deux séminaires territoires politiques, un séminaire doctorant (par an) * Séminaire doctorale sur les politiques d'éducation et de la santé * Séminaire doctorale : l'open Access et moi * Forum Santé Société"," * Institut de Ciences Politiques i Socials de Barcelone (ICPS) * Consejo Superior de Investigaciones Cientificas de Madrid (CSIC) * Centro Interdipartimentale di Ricerca sul Cambiamento Politico de Sienne (CIRCaP)/Universita degli studi di Siena * Centre d’étude en sciences sociales de la Défense (C2SD) de Paris/Ministère de la Défense * Mailmal school of public health, Université de Columbia * London School of Economics * L'institut d'administration publique de Montreal * Technische universitat Braunschweig * CEE Sciences Po ",true,false,Mesure incitative de l'Université et du laboratoire pour plus de publication dans HAL.,"* Facebook du CEPEL * Service communication du CNRS et de l'université de Montpellier","* Bibliothèque de recherche/salle des doctorans du CEPEL * Bibliothèque interuniversitaire de Montpellier (bibliothèque d'économie et bibliothèque lettres et sciences humaines)","* Le laboratoire étant une UMR, accès par le CNRS, à Biblio-SHS * Convention avec la bibliothèque inter-universitaire et la Bibliothèque universitaire de Montpellier : accès à des bases de données telles que Factiva et Europress","Abonnement numérique avec la faculté de droit et de science politique. Le laboratoire est assez engagé dans la revue Pôle Sud et il y a une convention avec des revues étrangères (espagnoles, portugaises, italiennes: en lien avec leurs intérêts de recherche) Politique d'acquisition : * sur contrat de recherche * au conseil de laboratoire, orientation recherche * au conseil du département, orientation pédagogique Les ressources du centre de documentation et les emprunts sont accessibles aux masters recherches, aux doctorants et aux membre du CEPEL.",,198811797E,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=198811797E&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/198811797E,2017, 2019-01-28T14:25:10.840Z,2018-08-01T15:02:46.427Z,umr8036,false,CESPRA,UMR 8036,Centre d'études sociologiques et politiques Raymond Aron,OK,http://cespra.ehess.fr/,Vincent Duclert ; Stéphane Audoin-Rouzeau,d.cespra@ehess.fr,true,true,2010,"Le Centre d'Etudes Sociologiques et Politiques Raymond Aron, CESPRA, est issu, depuis le 1er janvier 2010, de la fusion de deux laboratoires, le Centre d'études sociologiques du travail et des arts (CESTA) et le Centre de recherches politiques Raymond Aron (CRPRA).",160,32,128,http://cespra.ehess.fr/index.php?2207,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8036&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=30&p_nbres=42&p_num_lab=31&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,108,* Science politique,"* Histoire politique et institutionnelle * Philosophie politique * Science politique * Sociologie politique","* Axe 1 - Formes et régimes politiques, démocratie représentative et théories de la justification * Axe 2 - Guerres, révolutions, violences * Axe 3 - Les frontières du politique : individus et espaces publics",,* Les Séminaires destinés aux Doctorants,,true,false,,"- Site internet du CESPRA : http://cespra.ehess.fr/index.php?1508 - La Lettre du CESPRA : http://cespra.ehess.fr/index.php?3444",La bibliothèque du CESPRA,,,,200212709K,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200212709K&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200212709K,2017,https://fr.wikipedia.org/wiki/Centre_d%27%C3%A9tudes_sociologiques_et_politiques_Raymond_Aron 2019-01-28T15:54:04.551Z,2018-08-01T15:02:46.428Z,ums828,false,CDSP,UMS 828,Centre de données socio-politiques,OK,http://cdsp.sciences-po.fr/,Nicolas Sauger,nicolas.sauger@sciencespo.fr,true,false,2006,"La création du Centre de Données Socio politiques (CDSP) a été décidée à la fin de l'année 2005 par la Fondation nationale des Sciences politiques (FNSP) et le Centre national de le Recherche Scientifique (CNRS), pour mettre à la disposition des chercheurs et de publics plus larges des données documentées et validées par la communauté scientifique. Le CDSP coordonne son action avec d'autres centres d'archives, français et internationaux, et participe à plusieurs projets européens.",27,13,14,https://cdsp.sciences-po.fr/index.php?idTexte=equipe&lang=FR,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMS828&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=60&p_nbres=64&p_num_lab=62&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,,,,"* Archivage et diffusion de données quantitatives en sciences sociales aux normes internationales * Constitution d'une banque de données électorales pour les résultats des élections en France * Archivage et diffusion d'enquêtes qualitatives * Soutien à la production de données * Informations sur les élections en Europe * Formation à la collecte et à l'analyse des données * Développement des méthodes en sciences sociales * Mise à disposition d'enquêtes et de données en sciences sociales",* Enquête sociale européenne (ESS),,"* Réseau Quetelet * CESSDA (Council of European Social Science Data Archives) * L'ICPSR (Inter-university Consortium for Political and Social Research)",,true,,"* Facebook, Twitter, linkedin, Youtube","* Bibliothèque de Sciences Po * BnF","Ressources numériques de la bibliothèque de Sciences Po http://www.sciencespo.fr/bibliotheque/fr/rechercher/eressources",,"Offre de formation de la bibliothèque de Sciences Po : - Methode et outils de la recherche documentaire - Panorama des outils de gestion bibliographique (Zotero, Endnote) - Initatiation à l'Open Access et à Spire - Panorama des ressources utiles en Science politique (à partir de 2017) La Bibliothèque organise également à la demande des enseignants des séances spécifiques de formation, notamment à l'utilisation des bases de données",200510839P,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200510839P&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200510839P,2017,https://fr.wikipedia.org/wiki/Centre_de_donn%C3%A9es_socio-politiques 2019-01-28T15:54:04.551Z,2018-08-01T15:02:46.428Z,umr7227,false,CREDA,UMR 7227,Centre de recherche et de documentation des Amériques,OK,http://www.iheal.univ-paris3.fr/fr/apropos/le-creda-umr7227,Olivier Compagnon,olivier.compagnon@sorbonne-nouvelle.fr,true,true,2010,"Le CREDA, Centre de recherche et de documentation des Amériques, UMR 7227 sous la double tutelle du CNRS et de l'Université Paris 3 Sorbonne Nouvelle, est issu du CREDAL, Centre de recherche et de documentation sur l'Amérique latine. Placé en FRE, Formation de recherche en évolution, il a été conduit, à la demande de l'InSHS, Institut des sciences humaines et sociales, à élargir son domaine d'étude à l'ensemble du continent américain.",130,38,92,http://www.iheal.univ-paris3.fr/fr/recherche/encadrement-doctoral,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=un&p_lab_sel=UMR7227&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=20&p_nbres=42&p_num_lab=23&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,77,* Sciences juridiques et politiques,"* Amérique centrale et Amérique du sud * Amérique du nord * Développement durable * Environnement * Systèmes politiques * Villes","* Thème 1 - Les Amériques en perspective connectée, hommes, pratiques et savoirs * Thème 2 - Etat et action publique : politiques publiques et développement, intégration régionale et insertion internationale * Thème 3 - Les grands espaces américains : entre réorganisation agricole, protection et exploitation des ressources naturelles * Thème 4 - Villes et territoires métropolitains dans les Amériques : enjeux sociaux et environnementaux","* ANR Projet mecaniques-amerindiennes * ANR Transcultur@ * Termos – trajectoires énergétiques dans les régions métropolitaines des suds * Duramaz 2 : vers un observatoire de la durabilité en amazonie * ANR jeunes chercheurs usart * Projet capes/cofecub ""Reconfigurations foncières et revendications identitaires en amazonie brésilienne"" * Conditions socio-environnementales pour la réhabilitation de la biodiversité ordinaire (CLEVERT) * Projet langas - langues générales d'amérique du sud (quechua, guarani) XVI et XIX siècles * Projet waipt ""atlas mondial des peuples autochtones"" * GDR international eaux, villes et territoires","* ERSIPAL - Société, identité et pouvoir * GADDAL - Aménagement et développement durable * POSOC - Politiques et sociétés comparées * SEMID - Economie * SEGED - Science politique Gouvernabilité et Démocratie (séminaire remplacé par le POSOC à partir de de la rentrée 2015) * GEMIG - Genre et mobilité * Siglo XX - Século XX - Histoire de l’Amérique latine contemporaine","L'Institut des Hautes Etudes de l'Amérique latine (IHEAL) et le CREDA comptabilisent plus de 50 accords de coopération universitaire avec l'Amérique latine, ainsi qu’une ouverture vers le reste du continent américain, l'Europe et le reste du monde. Ils réalisent également des partenariats spécifiques (universitaires et scientifiques, institutionnels, réseaux). * Partenariats universitaires et scientifiques : * Au Brésil, Programme Saint-Hilaire : soutien à la coopération franco-brésilienne dans le domaine des sciences humaines et sociales à travers la publication d'ouvrages en français et en portugais sur des questions d’intérêt relatif au Brésil contemporain * En Colombie, Partenariat avec Institut des Hautes Etudes pour le Développement - Université Externado et l’Ambassade de France * Au Costa Rica, Doctorat de sciences sociales en partenariat avec l’UCR et la coopération régionale * Au Cuba, Programme d’appui à la gestion macro-économique en partenariat avec l’Université de La Havane et l’Ambassade de France * Au Perou, Prix François Bourricaud de recherche en Sciences Humaines et Sociales * En Uruguay, Fondation Polo Mercosur – pôle de l’IdA * Au Venezuela, Prix Luis Castro Leiva et Fernand Braudel (Aide à la recherche en sciences sociales en partenariat avec l’Ambassade de France et l'Université Simon Boliva) * En Europe, Partenaires : l’Université de Salamanque (IIA), l’Université de Vienne (LAI) et l’Université de Varsovie (CESLA) * ETATS-UNIS University of California – Berkeley * Reseaux : * Participation active au CEISAL (Conseil européen des recherches en sciences sociales sur l’Amérique latine) * Développement du REDIAL (Réseau européen de documentation et information sur l’Amérique latine)",true,false,,"* Facebook, Twitter, Fil RSS, linkedin, Youtube",* Bibliothèque Pierre Monbeig,"Les liens : * SUDOC * Les sites francophones sur l’Amérique latine: * Réseau Amérique latine GIS * Archives ouvertes HAL AMERIQUES. Publications en ligne sur les Amériques * L’Amérique latine en France * MANIOC Caraïbe Amazonie Plateau des Guyanes Bibliothèque numérique * Autres Bresils * RISAL Réseau d’information et de solidarité avec l’Amérique latine * Médiathèque audiovisuel MSH * Les signets Amérique latine de la BNF * Canada : Carrefour Amérique latine * Observatoire des Amériques * Les sites européens sur l’Amérique latine: * REDIAL Red Europea de Documentación y Información sobre América Latina * Americanismo.es * Ibero-Amerikanische Institut * Les sites américains et anglais sur l’Amérique latine: * LANIC Latin America Networked Information Centre * CLASP Consortium of Latin American Studies Programs * SLAS Society for Latin American Studies * Border & Latin American Information * LACIC Latin American and Caribbean Information Center * LAPOP Latin American Opinion Project * LASA Centres d’études américains sur l’Amérique latine * Center of caribbean studies * Archivos documentos gubernamentales de 18 paises * Center for Latin American Studies * Les atlas et cartes en ligne: * Cartes Perry Collection * Cartes thématiques Sciences Po * Map Collection Université de Texas * Cartographie Nations Unies * Cartographie IRD (cartes thématiques Amérique latine) * Embassy world : cartes des pays et des villes * Cartographie du Le Monde Diplomatique * Cartothèque La Documentation française * Cartographie historique Amérique latine * David Rumsey Map Collection (South America) * Luso Hispanic Collection Maps NYLP Digital gallery * Atlas du MERCOSUR * World Mapper Cartes thématiques comparatives * Cartes thématiques (Arte) * Atlas Caraïbe (Université de Caen) * Actualités socio-politiques Amérique latine: * DIAL Actualités politiques et sociales * LATINBAROMETRO Opinion pública latinoamericana * INFOLATAM Noticias y analisis * Portal socio-político de Iberoamérica * Biografías de líderes políticos * Political resources on the Net * Union interparlementaire * Latin American Election Statistics * Sociedad argentina de analisis político * CEDINCI Centro de Documentación e Investigación de la Cultura de Izquierdas en Argentina * Etat des mouvements sociaux du Sud * Minga Informativa de Movimientos Sociales * MPI Migrations Policy Institut * SILAS The Society for Irish Latin American Studies * Latin American Studies * Red Mujer y hábitat de América Latina * Red de mujeres para el desarrollo * Red de información indígena * CLACSO Observatorio social de América Latina * OPALC Observatoire politique de l'Amérique latine et des Caraïbes (Sciences Po) * UNASUR (CLAES) * DEMOCRACIA SUR * Choike / Sociedad Civil del Sur : Portal de las ONG del Sur * RISALC Red de Instituciones Sociales en América Latina y el Caribe * Plataforma democrática * PIEB Periódico digital de investigación sobre Bolivia * Environnement écologie et développement durable: * Observatorio de conflictos ambientales * Cyber ambiental * Desarrollo sostenible * Medio Ambiente (CLAES) * RITIMO Réseau d’information sur la solidarité internationale et le développement durable * FUTUROS Revista de Desarrollo Sustentable * DELOS Desarrollo Local Sostenible * Agri2000 Sistema de Información y Documentación Agrícola de América Latina y el Caribe * Actualités économiques amérique latine: * CEPALSTAT Estadísticas de la CEPAL * UNPD United Nations Development Programme * OXFORD Latin American Economic History Database * MERCOSUR * CARICOM * Comunidad Andina * ALCA Aréa de libre comercio de América latina * Inter American Development Bank INTAL BID * SELA Sistema Economico Latinoamericano y del Caribe * ALADI asociación latinoamericana de integración * CECAL Cooperacion para América latina * Economia SUR * Integracion SUR * Remesas Centro de investigación y cooperación espacializado en remesas de emigrantes * Amérique latine-Europe: * Eurolatina consulting * Centre de management Europe Amérique latine * Development and Cooperation – EuropeAid * ALOP Observatorio social sobre las relaciones Unión europea-América latina * Observatorio de cooperación descentralizada OCD Europa-América latina * UE relations with Latin america * Presse latino-américaine: * HSAL Histoire et sociétés de l'Amérique latine * Carrefour Amérique latine * Latin american Newspaper * Presse Brésil * Presse Amérique centrale * ALPE América latina en la Prensa española * CLACSO * Revistas electronicas de la Universidad de Navarra * Revues francophones des sciences humaines en ligne: * PERSEE * Revues.org * ISIDORE * Erudit * CAIRN * La Criée: Revues de sciences humaines en ligne * EuroPress * Factiva * ProQuest * Jstor * Fiaf * Sommaires en ligne et bases bibliographiques des articles: * LATINDEX * DIALNET * CLASE-UNAM * Sommaires CEDOCAL * CIBERA-IAI Berlin * Periodicals Index Online * PAO Peridicals archives on line * HLAS Handbook of Latin America División Hispánica de la Biblioteca del Congreso * AL DIA Universidad de Chili * Articles et livres en ligne: * Revista boliviana de investigación = Bolivia Research Review * Biblioteca virtual americanista REDIAL-CEISAL * DESCO Libros digitalizados * FLACSO Memoria digital * MIRADAS Nuevo texto constitucional-Bolivia * Les classiques des sciences sociales en ligne Universite de Quebec * Libros y articulos en linea Biblioteca virtual L.A.Arango-Colombia * SOCIOLOGICA HUMANITATIS * Cybertesis * Los grandes problemas de México",,"Des formations à la recherche documentaire sont dispensées à la bibliothèque Pierre-Monbeig. Elles sont proposées sous différents formats : * présentation de la bibliothèque, de son fonctionnement et de ses différents services * module de formation à Virtuose +, intégré au cours de méthodologie (M1) * formations à l'utilisation de Zotero, HAL SHS * formations aux outils de recherches, catalogues, bases de données (facultatif, M2Pro).
Ces formations se font également de manière ponctuelle, lors des inscriptions à la bibliothèque ou lors d'une visite pour une recherche bibliographique.",200918540T,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200918540T&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200918540T,2017, 2019-01-28T14:27:45.201Z,2018-08-01T15:02:46.431Z,umr8155,false,CRCAO,UMR 8155,Centre de recherche sur les civilisations de l'Asie Orientale,OK,http://www.crcao.fr/,Rainier Lanselle,rainier.lanselle@ephe.sorbonne.fr,true,true,2006,"Le CRCAO était anciennement dénommé « Centre de recherche sur les civilisations chinoise, japonaise et tibétaine ». l’Unité a modifié son intitulé pour afficher plus ouvertement sa volonté d’intégrer l’ensemble des pays d’Asie dans son champ de recherche et de développer les problématiques transnationales.",139,63,76,http://www.crcao.fr/spip.php?article582,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8155&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=30&p_nbres=42&p_num_lab=35&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,66,"* Langues et littératures arabes, chinoises, japonaises, hébraiques","* Asie centrale * Chine * Japon * Tibet * Extrême orient * Langues et littérature étrangères * Histoire des religions * Philosophie (histoire de la)","* Axe I : Archéologie, histoire ancienne et médiévale * Individus, groupes humains et société dans le haut Moyen-Âge chinois * Le chien et son image dans la Chine ancienne * Économie du bouddhisme dans l’Asie intérieure médiévale * Les Mémoires sur les rites (Liji 禮記) écriture et réécriture d’un Classique sous la dynastie Han * Axe II : Religions, philosophie, rituels * La mort à Dunhuang et en Asie centrale : culture matérielle, discours et pratiques rituelles (IVe-XIe s.) * Le bouddhisme et les religions médiévales de la Chine, du Japon et du Tibet * Amulettes et talismans en Asie orientale * Le Bon et les traditions dites autochtones et archaïques * Savoir et pratique des milieux lettrés tibétains * Atelier : Rituel, modernité et politique au Tibet et dans les régions périphériques * Axe III : Histoire et société modernes et contemporaines * La gouvernance des situations de crise au Japon et son impact sur la société japonaise * Mutations paysagères de la ville japonaise * Histoire moderne des sociétés tibétaines * Bhoutan. Histoire, langue et traditions orales * Axe IV : Littérature classique et moderne * Traduction et transferts culturels en Asie orientale * Imaginaires du corps et des identités dans les littératures de l’Asie au 20e siècle * Littérature chinoise et contemporaine : pratiques du genre et canon littéraire * Récitation épique et image du guerrier dans le Japon médiéval et pré-moderne * Traduction de textes littéraires du Japon ancien et médiéval * Axe V : Arts, culture matérielle, savoirs et techniques * Identités et conduites lettrées dans la Chine des Song (960-1279) Activités * Les éditions impériales sous la dynastie mandchoue des Qing * Techniques de l’agriculture traditionnelle (céréaliculture et horticulture) : un glossaire français-anglais-chinois-japonais. Une base de données sur internet * Savoirs et techniques du Japon médiéval et pré-moderne * Modernité et dépendance dans la sphère asiatique : les industries culturelles coloniales du Japon en question (1901-1945) * Traduction du Compendium illustré des productions des monts et mers du Japon (Nihon sankai meisan due), 1799 (C. Von verschuer et A. Horiuchi) * Archéologie, arts et culture matérielle du monde tibétain * Axe VI : Activités de documentation et d’édition, bases de données, corpus et outils numériques pour la recherche","* Mission archéologique franco-indienne au Ladakh (Mafil) * Projet d'Histoire sociale des sociétés tibétaines",* Séminaire doctoral,"* Collaboration avec le Centre de recherche sur les cultures manuscrites de l’Université d’Hambourg, dans le cadre du projet international de publication d’une Encyclopédie des cultures manuscrites en Asie et en Afrique (Encyclopaedia of Manuscript Cultures in Asia and Africa) * Collaboration avec l’université de Bonn dans le cadre du projet ""Histoire sociale des sociétés tibétaines"" * Coopération avec le HIJAS (Hosei University Research Center for International Japanese Studies) et le Centre européen d’études japonaises d’Alsace * Centre d'Études Japonaises (CEJ) * Institut d'Asie Orientale (IAO) * Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique (PRODIG) * Savoirs et Pratiques, du Moyen Age à l'Époque Moderne (SAPRAT) * Archéologie et Philologie d'Orient et d'Occident (AOROC) * Orient et Méditerranée, Textes - Archéologie - Histoire * Chine, Corée, Japon (CCJ)",,false,,Fil RSS,"* La bibliothèque LCAO (Paris Diderot) * La bibliothèque de l’« Équipe Chine » * La bibliothèque du Collège de France","* Bases de données: * Base de données du projet ""Techniques agricoles : un glossaire français-anglais-chinois-japonais"" * Bases de données des collections d’estampages en Europe * Base de données du projet Ofuda * Bhutan Cultural Atlas * Sites et carnets de recherche tenus par les membres du CRCAO: * Ladakh archaeology * Mission archéologique franco-indienne au Ladakh (Mafil) * Social History of Tibetan Societies * TIBARMY * La Chine ancienne – Carnet du groupe de recherche sur la Chine ancienne du CRCAO * La circulation des objets émaillés entre France et Chine * Dunhuang et l’Asie centrale - Carnet du groupe de recherche sur Dunhuang et l’Asie centrale du CRCAO * Mission archéologique française dans le Nord-Est de la Chine (MAFNEC) - Hommes et environnement dans la vallée de la rivière Dongliao (Chine du Nord-Est) * Manuscrits japonais à peinture * Le Japon contemporain. Le Japon tel qu’il devient * Ressources audio/video des membres du CRCAO: * Drège Jean-Pierre, Stanislas Julien, savant éminent, était-il un « vilain homme » ?, Colloque Jean Pierre Abel –Rémusat et ses successeurs. Deux cents ans de sinologie française en France et en Chine, Collège de France, conférence prononcée le 12 juin 2014 : http://www.college-de-france.fr/site/pierre-etienne-will/symposium-2014-06-12-09h00.htm * Kalinowski Marc, Le calendrier en Chine : mesures du temps et gouvernement des hommes, Conférence prononcée le 06/02/2012 : http://bit.ly/1JsZqnY * Marsone Pierre, Les dynasties Liao, Jin et Yuan et la sinologie au Collège de France, Colloque Jean Pierre Abel –Rémusat et ses successeurs. Deux cents ans de sinologie française en France et en Chine, Collège de France, conférence prononcée le 12 juin 2014 : http://www.college-de-france.fr/site/pierre-etienne-will/symposium-2014-06-12-14h00.htm * Marsone Pierre, L’épopée des Nestoriens en Chine, Chrétiens d’Orient, France culture, émission du 20/04/2014 : http://www.franceculture.fr/player/reecouter?play=4884776 * Thote Alain, De la chinoiserie à l’histoire de l’art chinois : naissance d’une discipline en France, Colloque Jean Pierre Abel –Rémusat et ses successeurs. Deux cents ans de sinologie française en France et en Chine, Collège de France, conférence prononcée le 11 juin 2014 : http://www.college-de-france.fr/site/pierre-etienne-will/symposium-2014-06-11-17h30.htm * Wang-Toutain Françoise, 1935-1959 : un enfant tibétain pas comme les autres, Grande traversée, France culture, émission diffusée le 21/07/2014 : http://www.franceculture.fr/emission-grande-traversee-la-longue-marche-du-dalai-lama-1935-1959-un-enfant-tibetain-pas-comme-les- * Brisset Claire-Akiko, « Festin de mots : mérites du saké et du riz », On ne parle pas la bouche pleine, France culture, émission du 03/05/2015 : http://www.franceculture.fr/emission-on-ne-parle-pas-la-bouche-pleine-festin-de-mots-merites-du-sake-et-du-riz-2015-05-03 * Nogueira Ramos Martin, « Histoire du Japon », La Fabrique de l’Histoire, France culture, émission du 15/06/2015 : http://www.franceculture.fr/emission-la-fabrique-de-l-histoire-semaine-speciale-%C2%ABidees-savoirs-la-releve-%C2%BB-14-2015-06-15 * Robert Jean-Noël, La hiéroglossie japonaise, Leçon inaugurale prononcée le 2 février 2012 : http://www.college-de-france.fr/site/jean-noel-robert/inaugural-lecture-2012-02-02-18h00.htm * Les vidéos des cours de Jean-Noël Robert au Collège de France sont disponibles à cette adresse :http://www.college-de-france.fr/site/jean-noel-robert/_audiovideos.htm *",,,200612808A,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200612808A&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200612808A,2017,https://fr.wikipedia.org/wiki/Centre_de_recherche_sur_les_civilisations_de_l%27Asie_orientale 2019-01-28T15:54:04.552Z,2018-08-01T15:02:46.429Z,ea3968,false,CERAL,EA 3968,Centre de recherche sur l’action locale,OK,http://www.univ-paris13.fr/ceral/,Antoine Pecoud,antoine.pecoud@univ-paris13.fr,false,true,0,"Le Centre de Recherche sur l’Action Locale (CERAL – EA 3968) de la faculté de Droit, Sciences Politiques et Sociales de l’Université Paris 13-Sorbonne Paris Cité est un laboratoire pluridisciplinaire composé de sociologues, de politistes, de juristes et d’historiens du droit. Il rassemble des chercheur-e-s issu-e-s d’horizons et de disciplines différents, afin de confronter et d’échanger leurs expériences, avec la volonté de fournir des réflexions et des pistes de recherche autour de trois thèmes principaux: * Gouvernance internationale * Histoire de la Res publica * Inégalités et exclusion. Depuis 2008, il est pleinement rattaché à l’UFR Droit, sciences politiques et sociales.",29,14,15,http://www.univ-paris13.fr/ceral/?page_id=59,,13,"* Sociologie * Démographie","* Gouvernance * Environnement, collectivités territoriales * Droit administratif * Droit constitutionnel * Droit public * Développement durable * Histoire du droit et des institutions * Libertés publiques et droits de l'homme * Mutations sociales * Politiques publiques * Relations internationales * Science politique * Services publics * Systèmes politiques","* Gouvernance internationale * Histoire de la Res publica * Inégalités et exclusion","* Le projet LexDir-1795-1799 sélectionné par l’USPC * Le projet MobGlob sélectionné par l’ANR",,"* Collaboration avec le Dipartimento de Giurisprudenza de l’Université de Naples – Frédéric II * Coopération avec l’Université fédérale du Para (UFPA) à Belém au Brésil * Centre d'Études et de Recherches Administratives et Politiques (CERAP) * Fondation Institut de Recherche pour le Développement Durable et les Relations Internationales (IDDRI) * École des hautes études en sciences sociales (EHESS) * Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux Sciences Sociales, Politique, Santé (IRIS) * Institut des Sciences Juridique et Philosophique de la Sorbonne * Centre Européen de Sociologie et de Science Politique (CESSP) * Migrations Internationales, Espaces et Sociétés - Migrinter (MIGRINTER)",,false,,,,,,,200515226H,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200515226H&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200515226H,2016, 2019-01-28T15:54:04.552Z,2018-08-01T15:02:46.432Z,umr8053,false,LC2S,UMR 8053,Laboratoire caribéen de sciences sociales,OK,http://www2.univ-ag.fr/CRPLC/,Justin Daniel,justin.daniel@martinique.univ-ag.fr,true,true,1982,"Fondée en 1982 à l’initiative du Professeur Jean-Claude Fortier, l’unité, connue alors sous l’appellation de Centre de recherche sur les pouvoirs locaux dans la Caraïbe (CRPLC), est associée au CNRS depuis 1988 (UMR 8053). Au 1er janvier 2017, elle est devenue le Laboratoire caribéen de sciences sociales (LC2S).",69,30,39,http://www2.univ-ag.fr/CRPLC/spip.php?article94,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8053&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=40&p_nbres=64&p_num_lab=48&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,39,* Sciences juridiques et politiques,"* Droit administratif * Droit constitutionnel * Droit","* Relations internationales, Gouvernance, Développement dans l’espace Caraïbe-Amériques * Axe 1: Les nouvelles dynamiques de recomposition de l'état dans l'espace caraibe-ameriques (ECA) * Axe 2: Les nouveaux enjeux du développement dans l'espace caraibe-ameriques * Biodiversité, environnements, sociétés, terriroires * Axe 3: Écologisation de l’action publique * Frontières dans la Caraïbe et les Amériques. Appartenance, genre, histoire(s), représentations * Axe 4: Territoires, mobilités, citoyennetés : appartenance et frontières * Axe 5: Esclavages, post-esclavages et reconfiguration de l’espace social",,"* Gouvernance du développement durable et de la biodiversité : Regards croisés sur quelques expériences dans la caraïbe * Séminaire : Genre et société aux Antilles (CRPLC/axe 3) * Séminaire : Axe 3 - « Être Indien dans les Antilles françaises et en Malaisie * Séminaire : Axe 3 - ""Violence sexuelle au Mexique : le ""cliché"" de l’indigène macho et barbare ?""","* Le Groupement de recherches sur l’administration locale en Europe (GRALE) * La « Chaire UNESCO » * L’équipe de Droit public de l’Université de Lyon 3 * Le CEMAGREF (Martinique-Bordeaux), l’IFREMER et Impact-Mer (bureau d’études)",true,false,,"*myspace.com, Twitter.com, linkedin.com, Facebook.com","* KOLIBRIS * Bibliothèques de l'université des Antilles * BibCnrs","* ACS Publications * BMJ publishing group - archives de revues * Cairn * Caribbean Search * Dalloz * Bibliothèque numérique - LIVRES * De Gruyter - archives de revues * Ebooks Masson * Econlit * Elibrary - Ebooks * EM Premium * Encyclopaedia universalis * Eric * Francis * Grand corpus des dictionnaires * Institute of physics - archives de revues * JSTOR * JSTOR Plant Science * LamyLine Reflex - 2LR * Lextenso * Medline * New Pauly online * OpenEdition Revues.org * Political science complete * Recherche multibases EBSCO * Refworks * Saga web * ScienceDirect * SIAM * Société mathématique de France * Springer livres de mathématiques * Techniques de l'ingénieur * Trésor de la langue française * Wiley-Blackwell * Thot Cursus * Springer livres électroniques * Springer Link * SIAM LOCUS - archives de revues * Scopus * Sage - archives de revues * Royal society of chemistry- archives de revues * Recueils des cours de l’Académie de La Haye * PubMed * Oxford university press - archives de revues * Open editions books * Nature publishing group - archives de revues;Mathscinet * Livres électroniques Ebsco * Lexis Nexis academic : bouquet de presse * Juris-classeur/LexisNexis * JSTOR mathématiques * Journals @Ovid * HAL-UA * Gale Virtual Reference Library * European mathematical society * ENI - Ebooks * Emerald * Elibris;EEBO - Early english Books online * ECCO Eighteenth Century Collections Online * Ebooks Dawsonera * Dalloz- REVUES * Dalloz - bases documentaires * Caribbean Ebooks * Brill - archives de revues * Bibliothèque numérique Manioc * News&Business * revues.org",,,200212720X,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200212720X&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200212720X,2017, 2019-01-28T15:54:04.552Z,2018-08-01T15:02:46.433Z,umr7050,false,CERI,UMR 7050,Centre de recherches internationales,OK,http://www.sciencespo.fr/ceri/,Alain Dieckhoff,alain.dieckhoff@sciencespo.fr,true,true,1952,"Le CERI a été fondé au sein de Sciences Po en 1952, sous le nom de Centre d’études des relations internationales, par l’historien de la diplomatie Jean-Baptiste Duroselle et Jean Meyriat, théoricien et praticien des sciences de l’information, qui l’a dirigé jusqu’en 1976. A l’origine de cette création, peu après la fin de la Seconde Guerre mondiale, alors qu’il n’existait en France ni organisme de recherche spécialisé, ni enseignement universitaire dans le domaine des relations internationales, il y avait la volonté de les développer dans deux directions : la meilleure connaissance des États et des nations étrangères ; l’étude des relations entre ces acteurs, qu’il s’agisse de leurs conflits ou des formes de coopération. Le changement de nom en Centre d’études et de recherches internationales est intervenu au début du mandat de Guy Hermet (1976-1985), sociologue et politiste, auteur de travaux sur l’Amérique latine et sur la transition démocratique. La nouvelle dénomination était destinée à refléter la montée, dans les préoccupations scientifiques du centre, de l’analyse des systèmes politiques étrangers. Tandis que les recherches sur les relations internationales intégraient de plus en plus l’étude du « transnational » et du « régional », l’étude des « aires culturelles » et la politique comparée ont ainsi amorcé leur essor. Cette transition, synchronique des évolutions de l’espace mondial (fin du bloc soviétique, globalisation, multiplication des crises locales...), s’était poursuivie dans les années 1980 et 1990, alors que le laboratoire était successivement dirigé par Jean-Luc Domenach (politiste, historien et sinologue, 1985-1994) et Jean-François Bayart (spécialiste de sociologie historique comparée du politique, 1994-2000). C’est également pendant cette période que le CERI, tout en continuant à se définir comme un centre d’étude du politique à l’échelle internationale, a commencé à s’enrichir des apports des autres sciences sociales – histoire, sociologie, anthropologie, économie – tout en élargissant son champ de recherches de l’étude des systèmes politiques à celle des sociétés. La méthode empirique, l’importance des « terrains », confortée par les connaissances linguistiques des chercheurs, sont ainsi devenues une « marque de fabrique » de l’unité, maintenue et consolidée sous les mandats de Christophe Jaffrelot (politiste, spécialiste de l’Asie du Sud, 2000-2008) et de Christian Lequesne (politiste et européaniste, 2009-2013). Cette proximité du terrain reste toujours une caractéristique forte du laboratoire. Au fil du temps, la variété des approches et des objets étudiés s’est encore accrue, alors même que le laboratoire a augmenté en taille grâce à de nouveaux recrutements. Depuis la fin des années 2000, et encore davantage depuis le début en 2014 du mandat de son directeur actuel, Alain Dieckhoff (politiste travaillant sur les questions du nationalisme et les problématiques israéliennes et palestiniennes), la structuration du CERI en cinq grands axes thématiques de recherche a été affirmée, afin d’inclure dans un même ensemble les spécialistes des relations internationales et transnationales et ceux des études régionales. Durant la même période, tout en consolidant ses équipes travaillant sur le Maghreb et le Moyen-Orient, l’Amérique latine, l’Extrême-Orient et l’Asie du Sud, le centre a développé son potentiel de recherche dans le domaine des études africaines. Il a aussi engagé une dynamique de renouvellement de ses effectifs dans le domaine des relations internationales, qui se poursuit depuis 2012 et qui continuera au-delà de 2017. Associé au CNRS depuis 1967, le CERI est depuis 2002 une UMR sous la double tutelle de Sciences Po et du CNRS. Début 2015, il a de nouveau modifié son nom, devenant Centre de recherches internationales. Sans modifier l’acronyme, la nouvelle appellation est d’abord le reflet de la conviction que « l’international » largo sensu, ou « l’espace mondial » contemporain, doit être étudié par la double approche des relations internationales/transnationales et celle des études régionales. Elle vise aussi à affirmer encore plus clairement que, bien qu’ouvert sur la Cité et sensible à la demande sociale, le CERI est avant tout un centre de recherche fondamentale.",239,79,160,https://www.sciencespo.fr/ceri/fr/chercheurs,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7050&p_int=&p_lab=UMR7050&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=1&p_num_lab=0&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,82,* Science politique,"* Afrique du nord, Maghreb * Afrique subsaharienne * Amérique centrale et Amérique du sud * Amérique du nord * Asie centrale * Asie du sud * Asie du sud-est * Asie orientale * Proche et Moyen-Orient * Europe centrale et orientale * Europe du nord * Europe méditerranéenne * Europe occidentale * Balkans * Russie * Science politique * Sociologie * Histoire sociale du politique * Anthropologie sociale et politique * Relations internationales * Economie politique comparée * Sociologie politique * Politique comparée * Sociologie historique du politique * Philosophie politique * Histoire politique * Histoire économique * Géographie urbaine * Théorie politique ","* Acteurs et échelles de régulation dans l’espace mondial * Participations politiques et mobilisations * L’Etat et ses recompositions * Violences et gestion du danger * Identités et politiques","Page des axes et projets de recherche https://www.sciencespo.fr/ceri/fr/content/axes-et-projets-de-recherche Page des observatoires https://www.sciencespo.fr/ceri/fr/content/observatoires","Page des séminaires de recherche https://www.sciencespo.fr/ceri/fr/seminaire","Page des partenariats et collaborations scientifiques https://www.sciencespo.fr/ceri/fr/content/partenariats",true,true,,"* Page ""Production scientifiques des chercheurs du CERI"" du site du CERI https://www.sciencespo.fr/ceri/fr/content/spire_publi * Newsletter du CERI * Newsletter ""les publications de la recherche"" de Sciences Po http://www.sciencespo.fr/recherche/sites/sciencespo.fr.recherche/files/newsletters_recherche/publications/actus_publications.htm; * Facebook https://www.facebook.com/ceri.po * Twitter https://twitter.com/ceri_sciencespo * Vimeo pour les vidéos https://vimeo.com/user4881172/videos * Soundcloud pour les podcasts https://soundcloud.com/ceri-5 * Revue de presse https://www.sciencespo.fr/ceri/fr/media","* Bibliothèque de Sciences Po ","Ressources numériques de la bibliothèque de Sciences Po http://www.sciencespo.fr/bibliotheque/fr/rechercher/eressources BibCnrs https://bib.cnrs.fr/",,Formations auprès des chercheurs et doctorants sur l'utilisation des outils et ressources numériques et de l'archive ouverte Spire.,200112450H,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200112450H&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200112450H,2017,https://fr.wikipedia.org/wiki/Centre_de_recherches_internationales 2019-01-28T15:54:04.553Z,2018-08-01T15:02:46.435Z,ea4418,false,CRPM,EA 4418,Centre de recherches pluridisciplinaires multilingues,OK,http://crpm.u-paris10.fr,Pascale Cohen-Avenel,pascale.cohen-avenel@u-paris10.fr,false,true,2007,"Le CRPM s'attache à l'étude pluridisciplinaire (histoire, philosophie politique, sciences du langage, Droit, Economie) et multilingue (français, allemand, russe) de concepts de l'Etat et de la société (peuple, république, nation, élite, hiérarchie, famille, éducation, service public, solidarité, espace/territoire, État providence, fédéralisme, etc.). L'angle d'approche est l'analyse des « sens cachés » de ces concepts clés. L'originalité de la perspective repose sur un double croisement systématique, entre plusieurs disciplines des SHS et entre plusieurs aires linguistico-culturelles.",72,15,57,http://crpm.u-paris10.fr/sites-composantes/cdr-crpm/membres/,,16,* Science politique,"* Analyse comparative et interdisciplinaire des ins * Histoire comparative des concepts de la société * Droit comparé * Histoire politique et institutionnelle * Langues et civilisations allemandes * Langues et civilisations slaves * Lexicologie * Philosophie politique","* Langues, droit et textes (droit comparé / terminologie juridique / histoire des idées) * Espaces et mondialisation (Est/Ouest : rivalités et coopérations / mondialisation, conflits, nouvelles économies : approche critique, géopolitique et culturelle / espace, mobilités et cartographies narratives) * Traduction, médias et humanités numériques (enjeux culturels et politique de la traduction / médias, narration et transmédialité)",,"* Séminaire de recherche Langues, Espaces et Mondialisation * Séminaire doctoral","* UFR des Sciences politiques et juridiques UFR Etudes anglo-américaines, CREA (Centre de Recherches Etudes Anglophones) * Convention de collaboration avec le CRATIL, Centre de Recherche en traductologie spécialisée de l'Institut Supérieur d'Interprétation et de Traduction (ISIT) * Conventions de collaboration avec les universités de Postdam, Humboldt de Berlin, de Münster, de Mannheim, de Bielefeld et la Fachhochschule für Wirtschaft, Berlin en Allemagne, l'université de Vilnius en Lituanie, les universités de Moscou et Saint Pétersbourg * Centre de Philosophie du Droit Pénal * l'ISIT (Institut Supérieur D'Interprétation et de Traduction) * Université de Potsdam, Facuulté de Droit, Institut de Romanistique * Centre de Recherches Europes-Eurasie (CREE) * Mondes Iranien et Indien * Centre de Droit Social (CDS) * Centre de Recherche en Littérature Comparée (CRLC) * Centre des Sciences de la Littérature Francaise (CSLF) * Sorbonne-Identités, Relations Internationales et Civilisations de l'Europe (SIRICE) * Clinique, Psychanalyse, Développement (CLIPSYD)",,false,,"instagram, Facebook, Twitter, Youtube, linkedin",BU Nanterre,,,,200918474W,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200918474W&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200918474W,2016, 2019-01-28T15:54:04.553Z,2018-08-01T15:02:46.436Z,umr7217,false,CRESPPA,UMR 7217,Centre de recherches sociologiques et politiques de Paris,OK,http://www.cresppa.cnrs.fr/,Herve Serry,herve.serry@cnrs.fr,true,true,2009,"le CRESPPA fédère le CSU, « Cultures et Sociétés Urbaines », le GTM, « Genre, Travail, Mobilités » et le LabTop, « Laboratoire Théorie du politique ».",268,81,187,http://www.cresppa.cnrs.fr/spip.php?rubrique3,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7217&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=20&p_nbres=42&p_num_lab=21&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,123,Science politique,"* Démographie * Environnement urbain * Formes urbaines * Genre * Gouvernement urbain * Mondialisation * Mutations sociales * Opinion publique * Patrimoine urbain * Politiques culturelles * Industries culturelles * Politiques publiques * Rapports sociaux de sexe * Pouvoir * Cultures * Science politique * Sciences sociales de la ville * Services publics;services urbains * Sociologie politique * Systèmes politiques * Temps sociaux * Territoire * Travail et santé * Épistémologie et histoire de la sociologie","Axes du CRESPPA * Genre et rapports sociaux de sexe * Epistémologie et théorie féministes et du genre * Corps, genre, sexualité * Travail, profession, carrières * Culture, nation et colonialité du pouvoir * Au croisement du travail et des classes sociales-dominations, exploitations, résistances * Santé-travail * Secteur privé, secteur public * Syndicalisme, résistances collectives et engagement * Crises, permanences et temporalités * Frontières et dynamiques de la citoyenneté * La citoyenneté politique dans les démocraties représentatives à ses différents niveaux d’expression, ses formes et ses facteurs * Les crises structurelle et conjoncturelle de la citoyenneté et les expérimentations cherchant des voies de « sortie de crise » et/ou de transformation du système politique * Les conditions sociales d’accès à des citoyennetés dites post-nationales ou transnationales * La citoyenneté sociale envisagée à la fois sous l’angle de l’étude des mouvements sociaux et sous celui d’une mise à l’épreuve des théories politiques contemporaines, en particulier des théories de la justice * L’étude du corps et ses attributs sociaux comme lieux de production de nouvelles citoyennetés et de nouveaux assujettissements
Axes par équipes du CRESPPA: * Equipe CSU (Cultures et sociétés urbaines) * « Ville » : catégories et ségrégations urbaines * « Culture » * « Santé » * Equipe GTM (Genre, travail et mobilités) * Dynamiques sociodémographiques * Equipe LabTop, « Laboratoire Théorie du politique » * “Représenter” * Cirulations transnationales et asymétries de pouvoir * Genre et Biopouvoir * Sexe, genre et bio-pouvoir * Pouvoir sur les corps et propriété de soi * Dignité des corps, normes du care et emprise politique * Corps défunts, religion et politique",,"* Séminaire général Cresppa-CSU; * Séminaire public de GTM (Socialisations, désocialisations et rapports sociaux); * Séminaire interne LabToP-Cresppa; * Séminaire “20 ans de Sciences sociales” EHESS-LabToP; * Séminaire “Pour une iconographie politique des dominé-e-s Objets, méthodes, enjeux” * Séminaire « Corps et sciences sociales »","* Certains chercheurs du centre appartiennent à l'UMI (Unité mixte internationale) et à l'IFRE (Instituts français de recherche à l'étranger). * Centre d'Études et de Recherches Administratives, Politiques et Sociales (CERAPS) * Centre Franco-Allemand de Recherches en Sciences Sociales de Berlin (Centre Marc Bloch) * Laboratoire Architecture, Ville, Urbanisme, Environnement (LAVUE) * Laboratoire Techniques, Territoires et Sociétés (LATTS) * Triangle: Action, Discours, Pensée Politique et Économique * Centre de Recherche Médecine, Sciences, Santé, Santé Mentale, Société (CERMES) * Centre Européen de Sociologie et de Science Politique (CESSP)",true,false,"Il n'y a pas de position formalisée de l’UMR. Cependant, une sensibilisation aux problématiques de l’Open Access est réalisée via les formations HAL.
Les données sont organisées par la documentation (droits de diffusion scientifique, licences creative commons, modèle freemium d’Open Edition…)","* bulettin d'information * lettre d'information * working papers","* Bibliothèque de Sciences Po * BNF * BU Paris 8 * BU Paris 10 * BDIC",,"Une politique documentaire conçue en relation avec l’offre de ressources électroniques du CNRS et de l’Université Paris 8 ainsi qu’avec les possibilités d’accès aux bibliothèques universitaires et de recherche de la région parisienne. Elle associe des représentants de chercheurs et de doctorants aux décisions d’acquisitions. Sa participation à la politique d’IST se fait dans le cadre des réseaux documentaires ou de coopérations avec l’université.
Il existe un comité d'acquisition des ouvrages, composé de chercheurs et doctorants. Se déroulent trois réunions par an dans lesquelles sont examinées les demandes. Une arbitration sur les acquisitions est réalisée en fonction des contraintes budgétaires.","Formation à la recherche bibliographique,à l'utilisation de ZOTERO et HAL.
Des formations au dépôt dans HAL-SHS sont régulièrement proposées aux membres de l’unité par la documentaliste",200918478A,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200918478A&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200918478A,2017, 2019-01-28T15:54:04.553Z,2018-08-01T15:02:46.434Z,ea3225,false,CRJFC,EA 3225,Centre de recherches juridiques de l'université de Franche-Comté,OK,http://crjfc.univ-fcomte.fr/,Béatrice Lapérou-Scheneider,beatrice.laperou@univ-fcomte.fr,false,true,2004,"Le Centre de recherches juridiques de l’Université de Franche-Comté (CRJFC) (équipe d’accueil n° 3225), est né de la fusion en 2004 du Centre de Recherche sur la Protection Juridique de la Personne (CRPJP) et du Centre d’Études de Droit Public (CEDP). Il s’agit donc d’une unité de recherche pluridisciplinaire, qui rassemble des chercheurs en droit public, droit privé, histoire du droit et Science politique. Ainsi, par-delà les cloisonnements traditionnels des disciplines académiques du droit, ses membres travaillent ensemble autour de thématiques inscrites dans les enjeux du développement humain et social.",87,41,46,http://crjfc.univ-fcomte.fr/pages/fr/menu2378/membres-13330.html,,29,"* Droit privé * Sciences criminelles",,"Thèmes du CRJFC 2017-2021 : * Démocratie, territoires, marché * Encadrement des activités économiques et professionnelles * Nouveaux juges, nouvelle justice","* L’évaluation dans les systèmes français et étrangers d’enseignement supérieur et de recherche * PALENTE : Plateforme archivistique Lip. Edition numérique téléchargeable * La métropolisation, une ""nouvelle donne"" territoriale ? * L'identité par le droit : l'existence d'un droit pénal commun dans l'Union européenne, enjeux théoriques et pratiques * NUMARD. Numérique et modes alternatifs de règlement des différends",,"Equipes de recherche : * Université de Franche-Comté : * Maison des sciences de l'homme et de l'environnement Ledoux (MSHE) * Institut des sciences et techniques de l'Antiquité (ISTA) * Laboratoire des sciences historiques (LSH) * Laboratoire de recherches philosophiques sur les logiques de l'agir * Université de Bourgogne : * CREDESPO * CREDIMI * Centre Georges Chevrier Réseaux scientifiques : * Groupement de recherche ""Réseau Droit, Sciences et Techniques"" (RDST) * Groupement de recherche sur l'administration locale en Europe (GRALE), GIS CNRS * Association française de droit constitutionnel * Association française de droit administratif Coopérations inter-universités : * En France : * Université de Picardie (CEPRISCA) * A l'étranger : * Université de Lausanne * Institut de droit de la santé de l'Université de Neuchâtel * Université de Padova * Université de Campobasso * Université ""Federico II"" Napoli * Université de Dresden * Institut Max Plank (Fribourg-en-Brisgau) * Université de Craiova (Roumanie) * Université de Saint-Louis (Etats Unis) * Université d'Ottawa (Canada) * Université d'Osaka (Japon) Autres partenaires institutionnels : * Collectivités publiques et services de l'Etat: * Conseil Régional de Franche-Comté * Conseil Général du Doubs * Ville de Besançon * Centre Hospitalier Universitaire * Préfecture du Doubs * Cour d'Appel * Tribunal administratif de Besançon * Partenaires professionnels : * Institut Régional du Vieillissement (IRV) * Ecole d'avocats du Grand Est - ERAGE * Chambre régionale des notaires * CGPME * Caisse des dépôts et consignations",,false,,Lettre du CRJFC,,,,,199114523E,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199114523E&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199114523E,2016, 2021-09-30T13:28:16.839Z,2018-08-01T15:02:46.438Z,umr6051,false,ARENES,UMR 6051,Arènes,OK,http://www.arenes.eu/,Sylvie Ollitrault,sylvie.ollitrault.1@sciencespo-rennes.fr,true,true,2000,"Créé en 1973, le laboratoire Arènes (anciennement Centre de recherches sur l’action politique en Europe – Crape) est une unité mixte de recherche (UMR 6051) de sciences humaine et sociales, placée sous les tutelles de l’université Rennes 1, l’EHESP, du CNRS et de Sciences Po Rennes ; en partenariat avec Rennes 2.",121,66,55,http://www.crape.fr/les-membres-du-crape/?ct=1,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR6051&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=10&p_nbres=42&p_num_lab=14&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,60,* Science politique,"sociologie des problèmes publics, journalisme et e","* Equipe « Politiques sociales et de santé. Inégalités et Populations (POSSIP) » : * Les politiques du care dans les secteurs de l’enfance et de la perte d’autonomie (dépendance, soins de longue durée) * L’analyse des risques sanitaires et sociaux, de la vulnérabilité et des situations d’incertitude * Les politiques de santé publique et la lutte contre les inégalités de santé, domaines qui ont été complétés par les questions de promotion de la santé (ce groupe s’est constitué en pôle à part entière au cours des dernières années) * Equipe « Engagement, vie politique et médias » * Jeunesse et citoyenneté * Engagements et mobilisations * Vie(s) politique(s) et médiatique(s) * Journalismes et espace public * Equipe « Institutions et échelles d’action publique » * Les effets de standardisation et de différenciation dans le champ de l’action publique locale * L’analyse des processus de réformes décentralisatrice et territoriale * L’articulation, au sein de dynamiques d’action publique, entre différente échelles institutionnelles (gouvernance multi-niveaux) * La participation des publics à l’élaboration des politiques publiques"," * Horizon 2020 Commission européenne. European Network on Long Term Care Quality, Cost Effectiveness and Dependency Prevention, coordination Jose Luis Fernandez London Scool of Economics, coordination French team: Claude Martin (2016-2019) * Commission Européenne, European Social Policy Network (ESPN), coordination Eric Marlier (LISER Luxembourg); coordination French team: Claude Martin (2015-2018) * IReSP Général 2016. Projet CLoterreS : « Stratégies locales de prévention primaire et de promotion de la santé: les contrats locaux de santé comme dispositifs de territorialisation des politiques régionales » (2017-2020). Piloté par Eric Breton (pilotage Arènes-EHESP)","* Séminaire général du CRAPE * Séminaires associés aux axes de recherche"," * Sur le journalisme, revue internationale trilingue en collaboration avec d’autres chercheurs en poste dans des universités étrangères (Université Laval de Québec, Université libre de Bruxelles, Université de Brasilia) * Colloque MEJOR qui se déroule au Brésil tous les deux ans, en lien la Faculté de communication de l’Université de Brasília (UnB). Deux membres de l’équipe participent au comité d’organisation et au comité scientifique des colloques qui ont porté sur la thématique des Changements structurels dans le journalisme (Brasilia, 2011Natal, 2013). Le prochain sera consacré aux Silences dans le journalisme (Florianópolis, 2016) * GIS Journalisme qui regroupe les laboratoires de recherche de quatre écoles de journalisme publiques agréées par la profession : Elico (Lyon 2), Carism (IFP-Paris), GRIPIC (Celsa-Paris) et Crape-Arènes, et qui organise un colloque annuel * GIS M@arsouin, plateforme d’étude des usages du numérique, au conseil scientifique de laquelle participent des membres de l’équipe. Le GIS M@rsouin soutient des projets de recherche sur les systèmes d’acteurs bretons qui ont conduit à la mise en place du plan de Visioconférences sur le territoire breton et sur les politiques d’ouverture des données publiques en Bretagne * Réseau Thématique « Sociologie des médias » de l’AFS. Responsables scientifiques : Karim Souanef (Université Lille 2), Jérôme Berthaut (Université de Bourgogne, Cimeos) Le RT « Sociologie des médias » vise à fournir un espace de dialogue à l’ensemble des chercheurs travaillant sur les médias dans une perspective sociologique, quelle que soit leur discipline d’exercice * Groupe de projet « COMPOL – Une sociologie politique de la communication. Médiatisation, controverses et jeu politique » de l’ASFP. Responsables scientifiques : Nicolas Hubé (Université Paris 1, CESSP), Clément Desrumaux (Université Lyon 2, Triangle). Le groupe COMPOL de l’Association française de Science politique encourage la création de regroupements interinstitutionnels d’enseignants-chercheurs sur « un moment ou un aspect de la chaîne de production des biens symboliques associée au politique et à l’exercice du pouvoir » * Les membres de l’équipe sont régulièrement associés à l’organisation et à la réflexion des Assises du journalisme, notamment pour les tables-rondes en présence de chercheurs, de même qu’ils collaborent avec l’Alliance internationale de journalistes pour sa collection de livrets « Journalisme responsable, regard sur l’éthique journalistique ». * Les réseaux de l'équipe 3 : * Maison des Sciences de l’Homme de Bretagne (pôles « Gouvernance »« Mondes armoricains et atlantiques »« Arts et Création ») * Comités éditoriaux/de rédaction de Migrations Société et des Presses Universitaires de Rennes * GIS Institut des Amériques * Chaire Jeunesse (En savoir plus) * RT 15 (« Jeunesse, âges de la vie et générations ») de l’Association Française de Sociologie (AFS) * CR 28 (jeunesse) de l’Association Internationale des Sociologues de Langue Française (AISLF) * Association Française de Science politique (AFSP) * Association des sociologues enseignant-e-s du supérieur (ASES) * Centre Franco-Allemand de Recherches en Sciences Sociales de Berlin (Centre Marc Bloch) * Groupe de Recherche sur les Enjeux de la Communication (GRESEC) * Centre Maurice Halbwachs (CMH) * Centre Max Weber * Activité, Connaissance, Transmission, Éducation (ACTE) * Centre Émile-Durkheim - Science Politique et Sociologie Comparatives (CED) * Equipe de Recherche de Lyon en Sciences de l'Information et de la Communication (ELICO)",,false,,,"* Bibliothèque de l'IEP de Rennes * Centre de documentation Jacques Fauvet de l'IEP de Rennes * Bibliothèque universitaire de Rennes I",http://BibCnrs.inist.fr/,La responsable de la bibliothèque demande aux chercheurs ce qu'il faut commander et réalise une prospective pour savoir s'il faut garder certains abonnements. La politique d'acquisition est liée à l'intérêts des chercheurs.,"Ce type de formation est surtout dispensé par Rennes I. Le centre de documentation réalise des formations ponctuelles et à la carte, surtout pour les masters et les doctorants, par exemple sur la recherche bibliothèque et zotero.",200012142C,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200012142C&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200012142C,2017,https://fr.wikipedia.org/wiki/Centre_de_recherches_sur_l%27action_politique_en_Europe 2019-01-28T15:54:04.554Z,2018-08-01T15:02:46.437Z,umr8183,false,CESDIP,UMR 8183,Centre de recherches sociologiques sur le droit et les institutions pénales,OK,http://www.cesdip.fr/,Christian Mouhanna,mouhanna@cesdip.fr,true,true,2006,"Le CESDIP est créé par le décret n° 83-926 du 20 octobre 1983. Il est l’émanation du Service d’Études Pénales et Criminologiques du ministère de la Justice (SEPC) établi en 1969. C'est depuis 2006 que le CESDIP est une UMR dotée de trois tutelles : le CNRS, le ministère de la Justice, l’Université de Versailles-Saint-Quentin.",63,24,39,http://www.cesdip.fr/-Membres-du-Laboratoire-.html,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8183&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=30&p_nbres=42&p_num_lab=36&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,11,"* Sociologie * Démographie","* Criminologie * Politiques publiques * Profession * Risque * Science politique * Sociologie politique * Victime * Épistémologie et histoire de la sociologie","* Justice, pratiques et politiques pénales * Organisation et fonctionnement des juridictions * La justice des mineurs * Prison, exécution des peines et récidive * La justice financière et internationale * Territoire, partenariat, régulation * Territorialisation des politiques et sécurisation des espaces * Sécurité des transports publics et des espaces dédiés à la mobilité * Métiers et pratiques de la régulation des désordres à l’échelle locale * Partenariats et actions de prévention : école, transports, aide à la parentalité * La gouvernance locale de la prévention et de la sécurité * Surveillance et technologies * Les technologies de surveillance discrète * Les stratégies nationales de cybersécurité et cyberdéfense * Les usages controversés des fichiers * Les usages de la vidéosurveillance * Recomposition des organisations policières * Histoire de la police et de la gendarmerie * Sociologie de la police * Citoyens, victimes, auteurs, comportements * Nouveaux instruments de mesure de la délinquance * Évolution de la délinquance et sentiment d’insécurité * L’histoire de la délinquance des mineurs et expériences pénales en France et ailleurs * Les logiques de la violence politique * Minorités, discriminations * Généalogie du contrôle policier des populations des migrants colonisés et étrangers * Contrôle administratif et judiciaire de l’immigration * Production et traitement politique de la discrimination dans le gouvernement des minorités visibles",,"* Les séminaires du CESDIP * Séminaire « lecture » du CESDIP * Séminaire des doctorants","* Groupement européen de recherches sur les normativités (GERN) * Centre Franco-Allemand de Recherches en Sciences Sociales de Berlin (Centre Marc Bloch) * Institut de Sciences Sociales du Politique (ISP) * Politiques Publiques, Action Politique, Territoires (PACTE) * Observatoire Sociologique du Changement (OSC) * Centre Alexandre Koyre (CAK) * Centre de Recherches Internationales (CERI) * Cevipof - Centre de Recherches Politiques de Sciences Po (CEVIPOF)",,false,,"* Lettre d'information du CRD (CESDIP) * Questions Pénales * Penal Issues ( édition anglaise de Questions Pénales) * Flux RSS, Facebook, Twitter, linkedin",,Carnet de liens (propose une liste non exhaustive de liens vers d’autres sites traitant de sujets ayant un rapport avec les activités du CESDIP),,,200612830Z,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200612830Z&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200612830Z,2017,https://fr.wikipedia.org/wiki/Centre_de_recherche_sociologique_sur_le_droit_et_les_institutions_p%C3%A9nales 2019-01-28T15:54:04.554Z,2018-08-01T15:02:46.441Z,umr5116,false,CED,UMR 5116,Centre Émile Durkheim : Science politique et sociologie comparatives,OK,https://durkheim.u-bordeaux.fr/,Xabier Itçaina,x.itcaina@sciencespobordeaux.fr,true,true,1999,1958 : accord entre FNSP et IEP Bordeaux - 1969 : Centre d'Etudes et de recherche sur la Vie Locale (CERVL) devient SPIRIT en 2007 ou UMR 5116,124,67,57,https://durkheim.u-bordeaux.fr/Notre-equipe/Chercheurs-et-enseignants-chercheurs,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR5116&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=10&p_nbres=42&p_num_lab=11&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,62,* Sciences juridiques et politiques,"* Sociologie * Acteurs * Comparaison * International * Science politique","* Identifications : * les groupes sociaux « minorisés » et les identités racisées/ethnicisées * les identités religieuses * les espaces publics et territoires * la manière dont les identités collectives sont formulées en termes de citoyenneté, de participation à l’espace public et de production de la société civile * Vulnérabilité, inégalités, parcours * Légitimités, organisations et représentations * Savoirs : * Production des savoirs * analyse du travail scientifique et de la différenciation des usages de la science * analyse des modes de structuration et du statut des savoirs profanes * Circulation des savoirs : * relations science - industrie (transfert des savoirs fondamentaux vers les champs d’application, transfert des savoirs d’un champ d’application à l’autre) * médiatisation de la science * Confrontation des savoirs : * analyse des controverses scientifiques * relations entre connaissances savantes et savoirs profanes * Légitimation des savoirs : * légitimité sociale des discours scientifiques * usages légitimateurs des sciences * Sociologies de l’international","Axe 1 : * ALTERECOLE | Les dynamiques territoriales et scolaires dans la construction de l'altérité : élèves migrants, itinérants et autres 'outsiders' dans les espaces socio-scolaires segmentés * Citoyenneté, action locale et diversité linguistique : comparaisons Canada-France * Les régulations du culte à l’épreuve du genre * La production et l'expression des sentiments moraux dans un contexte de changement social radical. Une analyse des expériences rurales dans trois pays postcommnistes (Russie, Bièlorussie, Roumanie) * Jeunes et éducateurs dans la démocratie des identités ( JEDI) * EVASCOL Axe 3 : * Projet émergence 2014 – Canceropole GSO : « Des innovations biomédicales issues du domaine de l'aéronautique et spatial ? Contribution à une analyse des processus translationnels en cancérologie » * Projet de recherche multidisciplinaire Défi Nano 2014 (CNRS) : « Nanocargos magnétoactivables thermogènes et thermosensibles pour modifier le microenvironnement tumoral » * Projet de recherche financé par l’Institut national du Cancer : « La radiologie interventionnelle en oncologie : approche pluridisciplinaire d’une innovation médicale et de sa reconnaissance sociale » Axe 4 : * Les projets artistiques et culturels dans les établissements de santé. Quels changements dans les pratiques et les organisations ? * La contrainte pénale. Conditions de mise en œuvre et effets * MANAJUSTICE - Les transformations de la justice sous l’impulsion d’une logique gestionnaire : circulations internationales des professionnels et des instruments Axe 5 : * Imaginer et rencontrer l’ennemi. Enquête sur les représentations des militaires occidentaux contemporains","* Séminaire général : Le comparatisme, pour quoi faire ? Sens, usages et limites de la comparaison en sociologie et en Science politique * Séminaire doctoral * Séminaires d'axes : * Genre * Les médias, scène des arènes publiques * La ville, laboratoire politique * Prendre position ! * Méthodes de recherche * Écriture en sciences sociales * Règles, normes, pratiques économiques * Lectures en sociologie économique * Séminaires d'ateliers * Séminaires de programmes de recherche","* Le Centre associé du Céreq en région Aquitaine est intégré au Centre Emile Durkheim - Science politique et sociologie comparatives, de l'université de Bordeaux depuis la fusion du Spirit avec le Lapsac. * Le Centre Emile Durkheim – Science politique et sociologie comparatives anime avec l’Institut de sciences sociales de l'université de Stuttgart (ISSUS) un Laboratoire Européen Associé intitulé Comparing Democracies in Europe (LEA CODE). Mis en place en 2005 et renouvelé en 2009, ce dispositif est codirigé par Éric Kerrouche (Chargé de recherche CNRS au Centre Durkheim) et Oscar Gabriel (Professeur de Science politique à l’ISSUS). * Observatoire des Transformations du Monde Arabe (OTMA) * Standing groups de l’European Consortium for Political Research (ECPR) : Participation and Mobilisation, Political Sociology, Gender and Politics et Environmental Politics * International Political Studies Association (IPSA) * Society for French Studies (Grande-Bretagne) * CRESAL St Etienne * Politiques Publiques, Action Politique, Territoires (PACTE) * Groupe de Recherche en Économie Théorique et Appliquée (GRETHA) * Cevipof - Centre de Recherches Politiques de Sciences Po (CEVIPOF) * Centre d'Études et de Recherches Administratives, Politiques et Sociales (CERAPS) * Centre de Recherches sur l' Action Politique en Europe * Equipe de Recherche sur les Mutations de l'Europe et de ses Sociétés (ERMES) * Centre de Recherches Internationales (CERI)",true,false,,"* _Lettre du CED_ * _Facebook_ Twitter_","* Bibliothèque des Sciences de l'homme de l'Université de Bordeaux * Bibliothèques de Sciences Po Bordeaux","* Cairn (par la collaboration avec l'université de Bordeaux) * Factiva * Europress à partir de 2015 * IPSA * Portail Biblio-SHS * 80 abonnements en fonction des recherches en cours * Travail régulier avec SciencesPo Paris, au travers des chercheurs FNSP qui sont au centre Emile Durkheim et qui font la demande",,,197511801R,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=197511801R&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/197511801R,2017, 2019-04-24T16:47:15.194Z,2018-08-01T15:02:46.442Z,umr8209,false,CESSP,UMR 8209,Centre européen de sociologie et de Science politique de la Sorbonne,OK,http://www.cessp.cnrs.fr/,François Denord,denord@msh-paris.fr,true,true,2010,Le Centre européen de sociologie et de Science politique (CESSP-Paris) est né de la fusion du Centre de sociologie européenne (CSE-Paris) et du Centre de recherches politiques de la Sorbonne (CRPS-Paris).,244,62,182,http://www.cessp.cnrs.fr/spip.php?rubrique140,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8209&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=30&p_nbres=42&p_num_lab=37&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,152,* Science politique,"* Science politique * Sociologie des médias * Sociologie politique * Structure sociale * Sociologie de la culture","* « Going global ? » Processus d’internationalisation et d’européanisation * Un handbook des sciences sociales de l’international * Circulation internationale des savoirs et des biens symboliques * L’européanisation dans la recomposition des espaces sociaux et territoriaux * Institutions et structure des espaces internationaux * Stratégies d’internationalisation * Sociologie historique des sciences : modernisation, internationalisation, interdépendances * Sociologie historique comparée des SHS * Encyclopédie des sciences historiques et sociales du politique * Les enjeux de la modernisation de la médecine en France * Economie des biens symboliques : production, circulation, appropriatif * Division du travail et internationalisation des biens symboliques * La production du consentement, la mobilisation des opinions * Pouvoirs et rapports de domination * Sociologie des élites * Métiers et milieux de la politique * Structures sociales et travail de domination","* INTERCO-SSH (Comparative Socio-Historical Perspectives and Future Possibilities) * SOMBRERO (SOciologie du Militantisme, Biographies, REseaux, Organisations) * European Research Council 2016-2020 / Social Dynamics of Civil Wars","* Séminaire principal du CESSP * Séminaires d’axes * Séminaires EHESS : * Sociologie des pratiques vestimentaires * Pratiques de recherche : enquêtes, analyse des données, écriture sociologique * Regards croisés sur la globalisation du genre * L’enquête sociologique par entretien * Culture, école et légitimités * L’analyse des correspondances en sociologie * Les outils sociologiques de Pierre Bourdieu * Anthropologie politique du Brésil : contraintes de la mondialisation, mobilisations dans l’espace public et solidarité nationale * Groupe de réflexion sur le Brésil contemporain * Faire et défaire le lien social : perspectives sur la modernité amoureuse * Structuralisme des passions, institutions et pouvoirs * Sociologie et philosophie * Sociologie des « Studies » * Épistémologie des sciences sociales * Engagements et désengagements : les professions intellectuelles et artistiques entre responsabilité et désintéressement * Ateliers TEPSIS * Politique, liens personnels, jugements moraux : ethnographie et comparaison * Autres séminaires : * Séminaire Sociohistoire des idées économiques * Zones frontières. Pauvretés, politiques sociales, interventions * Sociologie politique de l’Europe","* Centre Franco-Allemand de Recherches en Sciences Sociales de Berlin (Centre Marc Bloch) * Equipe de Recherche sur les Mutations de l'Europe et de ses Sociétés (ERMES) * Centre d'Études et de Recherches Administratives, Politiques et Sociales (CERAPS) * Triangle: Action, Discours, Pensée Politique et Économique * Centre de Recherches Sociologiques et Politiques de Paris - Cresppa (CRESPPA) * Institut de Sciences Sociales du Politique (ISP) * Centre Émile-Durkheim - Science Politique et Sociologie Comparatives (CED)",true,false,"Les propositions de textes peuvent être rédigées en français, en anglais ou en toute autre langue. Elles comprendront un maximum de 100 000 signes, espaces compris. Elles seront accompagnées d’une courte biographie de l’auteur ainsi que d’un résumé (environ 700 signes, en français et en anglais) et d’une série de mots clés (elle aussi bilingue). Les sources seront citées au fil du texte (Granovetter 1973, p. 1367;Bourdieu 1979, p. 45) et feront l’objet d’une bibliographie en fin d’article adoptant le format suivant : Ouvrage : Bourdieu P. (1979), La distinction, Paris, Minuit. Article : Granovetter M. S. (1973), « The strength of weak ties », American Journal of Sociology, vol. 78, no. 6, pp. 1360-1380. Ouvrage collectif : Harvey E. B. (dir.) (1973), Perspectives on modernization, Toronto, University of Toronto Press. Chapitre d’ouvrage collectif : Tilly C. (1973), « The modernization of political conflict in France », in E. B. Harvey (dir.), Perspectives on modernization, Toronto, University of Toronto Press.",Working Papers du CESSP,"- BIU Cujas - BnF - Bibliothèque de Sciences Po - Bibliothèque Jacques Lagroye",,,,201019364J,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201019364J&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201019364J,2017, 2019-01-28T15:54:04.177Z,2018-08-01T15:02:46.439Z,umr7116,false,CSO,UMR 7116,Centre de sociologie des organisations,OK,http://www.cso.edu/home.asp,Olivier Borraz,o.borraz@cso.cnrs.fr,true,true,1961,"A l’origine de l’école française de sociologie des organisations, le CSO est un laboratoire de sciences sociales qui développe une réflexion originale sur les régulations privées et publiques, marchandes et non-marchandes à partir de recherches qui portent sur les organisations, les marchés et les groupes professionnels.
Unité mixte de recherche de Sciences Po et du CNRS depuis 2001, le CSO a été fondé par Michel Crozier au début des années soixante. Il est actuellement dirigé par Olivier Borraz, succédant à Christine Musselin (2007-2013), Erhard Friedberg (1993- 2007), et Catherine Grémion (1985 - 1993).
Si le CSO s’est d’abord fait connaître par ses travaux sur l’Etat et l’administration française, il a rapidement étendu son éventail de recherches à des objets publics et privés, français et internationaux.
Tout en conservant un attachement prioritaire à une sociologie des organisations qui part des acteurs et de leurs comportements pour comprendre comment s’agencent des formes de coopération, le CSO inscrit simultanément ses travaux dans la sociologie économique et la sociologie de l’action publique.",93,28,65,http://www.cso.edu/equipe.asp,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=un&p_lab_sel=UMR7116&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=10&p_nbres=42&p_num_lab=18&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,24,"* Sociologie * Démographie","* Criminologie * Gestion des ressources humaines * Politiques publiques * Professions * Relations professionnelles * Risque * Risques industriels * Science politique * Sociologie du développement durable * Sociologie politique * Territoire","* Droit, normes et régulations * Droit, travail et relations professionnelles * Droit et mouvements sociaux * Mobilisation (ou non) du droit dans les entreprises * Tribunaux internationaux et mondialisation * Judiciarisation, juridicisation * Professionnels, intermédiaires du droit et profanes * Formes de régulation et frontières de l’État * Travail, emploi et profession * Expériences et parcours des individus au travail ou au chômage * Négociations et régulations du temps de travail * Epreuves d’évaluation et de recrutement des candidats à un emploi * Le travail en actes * Transformations du travail et dynamique des groupes professionnels en lien avec les réformes managériales et les mutations technologiques * Inégalités – salariales, statutaires, de reconnaissance, etc. – entre travailleurs * Coopération et conflits entre professionnels * Gouvernance et organisations économiques * Construction des marchés (médicament, finance des particuliers, environnement, etc.) * Interactions entre monde économique et société civile * Régulation des activités économiques * Rôle social et politique des savoirs économiques * Analyse des pratiques économiques * Gouvernance des entreprises * Evolutions du capitalisme- Interactions public/privé * Savoirs, sciences et expertise * Production et circulation des instruments d’action publique * Fabrique des politiques scientifiques * Organisation de la recherche clinique * Bureaucratisation de l’évaluation des risques sanitaires et environnementaux * Usages militants et protestataires des savoirs scientifiques * Production de l’ignorance * Action publique et transformation de l’Etat * Nouveau Management public * Relations Etat/groupes professionnels * Relations Etat/firmes * Réformes de l’Etat et des instruments d’action publique * Agences",,,,true,true,,"* _La lettre du CSO_ * _Twitter_Newsletter_Fil RSS_","* Bibliothèque de Sciences Po * BnF","Ressources numériques de la bibliothèque de Sciences Po http://www.sciencespo.fr/bibliotheque/fr/rechercher/eressources",,,200112503R,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200112503R&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200112503R,2017,https://fr.wikipedia.org/wiki/Centre_de_sociologie_des_organisations 2019-04-24T17:52:05.706Z,2018-08-01T15:02:46.444Z,umr8097,false,CMH,UMR 8097,Centre Maurice Halbwachs,OK,http://www.cmh.ens.fr/,Serge Paugam,serge.paugam@ehess.fr,true,true,2000,"Le Centre Maurice Halbwachs a été créé au 1er janvier 2006. Il résulte de la réunion d’un laboratoire anciennement spécialisé sur la mise à disposition des enquêtes de l’INSEE et sur l’analyse longitudinale des données (LASMAS), et du Département de sciences sociales de l’École Normale Supérieure.
Le CMH est organisé en quatre équipes : * L’équipe ERIS (Équipe de recherche sur les inégalités sociales) * L’équipe ETT (Enquêtes, Terrains, Théorie) * L’équipe GRECO (Groupe de REcherche sur la COhésion et la justice sociale) * L’équipe PRO (Professions, réseaux, organisations)",151,47,104,http://www.cmh.ens.fr/?page=membre,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8097&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=30&p_nbres=42&p_num_lab=33&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,101,"* Sociologie * Démographie","* Apprentissage * Chômage * Cohésion sociale * Criminologie * Démographie * Fonction publique * Négociation collective * Organisation et structure * Profession * Relations professionnelles * Salariat * Sociologie politique * Sociologie religieuse","* Professions, réseaux, organisations (PRO) : * Les professions et leurs frontières * Mondes économiques, régulation, financiarisation et globalisation * Genre et discriminations au travail * Mobilisations, engagements et droit * Groupe de recherche sur la cohésion et la justice sociale (GRECO) : * la perception des inégalités * la justice sociale * les associations * l’immigration * la santé * les représentations de l’appartenance à des communautés * l’entraide en situation d’exclusion * Equipe de recherche sur les inégalités sociales (ERIS) : * Territoires, sociabilités et liens sociaux * Intégration professionnelle, conditions et organisations du travail * Parcours de vie et générations * Genre : représentations et rapports sociaux * Discriminations et stigmatisations * Citoyenneté et rapports aux institutions * Enquêtes, Terrains, Théorie (ETT)",,"* Le séminaire casse-croute * Le Séminaires EHESS-GRECO","* Réseau Quetelet * Réseau européen des archives de données à travers le CESSDA (Consortium of European Social Science Data Archives) * PRES HESAM * IDEX PSL * Labex Tepsis * Labex Transfers",true,false,,"* Etudes et documents (RQ: Cette rubrique ne contient aucun article) * Agenda du CMH",NC,"* Revues de presses 2014 * Revues de presses 2015",,,200012756V,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200012756V&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200012756V,2016,https://fr.wikipedia.org/wiki/Centre_Maurice-Halbwachs 2019-01-28T15:54:04.555Z,2018-08-01T15:02:46.443Z,umr7366,false,CGC,UMR 7366,Centre Georges Chevrier,OK,http://tristan.u-bourgogne.fr/CGC/accueil/CGCAccueil.htm,Jean-Louis Tornatore,Centre-Georges-Chevrier@u-bourgogne.fr,true,true,2014,"Rassemblant à l’origine les historiens du droit dijonnais, le Centre Georges Chevrier fondé à l’initiative du professeur Jean Bart s’est toujours placé dans une perspective pluridisciplinaire. Successivement unité de recherche associée (URA) puis équipe de recherche associée (ERA), il est devenu en 1995 une unité mixte de recherche (UMR) labellisée CNRS/Université de Bourgogne, associant notamment historiens du droit et historiens d’histoire moderne et contemporaine autour du thème : « Ordre et désordre dans l’histoire des sociétés (XVIe-XXe siècle) ».La présence d’historiens issus de diverses origines scientifiques, renforcée par des sociologues, des musicologues, et des historiens de l'art aux compétences et spécialités diversifiées, s’est révélée fructueuse, favorisant une approche pluridisciplinaire des phénomènes juridiques, sociaux et impliquant plusieurs champs historiques relevant de l’histoire du droit et des institutions, de l’histoire politique, de l'histoire de l'art, de l'histoire culturelle et de l’histoire économique et sociale.
L'association du Centre Gaston Bachelard et du Centre d’histoire de la philosophie moderne (FRE 2901) a fait suite à une collaboration déjà bien avancée entre enseignants-chercheurs dont les profils et les projets étaient complémentaires et les thématiques largement communes : depuis 1998, le travail sur l’histoire de la philosophie moderne s’est développé dans le cadre du Centre Bachelard, avec des colloques et séminaires, souvent communs avec le Centre Chevrier : un territoire épistémologique commun s’est ainsi dessiné entre historiens du droit et des idées politiques, historiens (modernistes et contemporanéistes) et philosophes, celui de l’histoire des idées philosophiques, politiques et juridiques du XVIIe siècle à l’époque contemporaine.
L'arrivée de nouveaux chercheurs a conduit à l'élargissement du champ des recherches et à l'adoption d'un nouveau thème fédérateur : « Savoirs : normes et sensibilités ».",198,66,132,http://tristan.u-bourgogne.fr/CGC/accueil/annuaire.htm,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7366&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=20&p_nbres=42&p_num_lab=28&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,118,"* Histoire et civilisations : histoire des mondes modernes, histoire du monde contemporain, de l'art","* Histoire * Science politique * Philosophie Cultures e","* Pouvoirs et hiérarchies, cultures et représentations * Axe : Créations, circulations et appropriations * Axe : Patrimoines et patrimonialisations * Mondes et pratiques populaires * Axe : Le travail et ses environnements * Axe : Dynamiques et formes collectives * Éthique et vulnérabilités * Axe : Vieillissement et sociétés * Axe : Care et populations","* Projet ICE - Cohorte prospective multicentrique d'aidants informels en Bourgogne - Franche-Comté * Histinéraires - La fabrique de l’histoire telle qu’elle se raconte",* Séminaire « Histoire des communismes. Entre histoire globale et histoire nationale »,"Partenaires nationaux : * Académie François Bourdon * Annales de Bourgogne * Association pour la Documentation, l'Information et l'Archivage des Mouvements Sociaux (ADIAMOS) * Archives départementales de Seine-Saint-Denis * Archives nationales * Association Corpus * Association française pour l’histoire des mondes du travail (AFHMT) * Bibliothèque nationale de France * Centre d'histoire de Sciences Po (CHSP) * Centre d'histoire sociale du XXe siècle - UMR 8058 (Université Paris 1 Panthéon-Sorbonne) * Centre de Recherche Sens, Ethique et Société (CERSES) (UMR 8137) - Réseau d’information scientifique : Philosophie et médecine * Comité d'histoire du Ministère de la Culture * Conseil général du Val-de-Marne * Conseil régional de Bourgogne * Conseil international des archives * École normale supérieure Lyon * École normale supérieure Paris * Education, Cultures, Politiques (ECP, Université de Lyon-2) * Fédération National des Déportés Internés Résistants Patriote (FNDIRP) * Fondation Gabriel Péri * Fondation Fyssen * Grand Dijon * Groupe de Recherche d’Histoire (GRHIS- EA 3831, Université de Rouen) * Identités, relations internationales et civilisations de l'Europe (UMR IRICE, université Paris-1 Panthéon-Sorbonne) * Institut d'Histoire Sociale * Institut national d’histoire de l’art (INHA) * International Institute of Social History (IISH) * Institut de Recherche et Coordination Acoustique/Musique (IRCAM-Paris) * Institutions et Dynamiques Historiques de l’Économie et de la Société (IDHES - UMR 8533) * Laboratoire de Recherche Historique Rhône-Alpes (LARHRA - UMR 5190, Lyon) * Musée Albert Kahn (Boulogne-Billancourt) * Musée de la Résistance en Morvan de Saint-Brisson * Musée de la Résistance nationale de Champigny * Musée des Beaux-Arts de Lyon * Office de coopération et d’information muséales (OCIM) * Société pour l'Histoire du Droit et des institutions des anciens pays bourguignons, comtois et romands (SHDB) * Société des études robespierristes * Triangle (UMR 5206, Lyon) * Temps, Espaces, Langages, Europe Méridionale - Méditerranée ( TELEMME - UMR 7303, Aix-en-Provence) * Ville de Paris

Partenaires internationaux: * Afrique: Université de N’Djamena, Tchad * Université d’Alger * Université Nationale du Bénin * Amérique du Nord : * Université du Québec à Montréal * Université de Sherbrooke * Université de Stanford * Penn State University * Université de Mexico * Amérique du Sud : * Université d’état de Rio de Janeiro * Université de Brasilia * Université de Porto Allegre * Université d’état de Rio de Janeiro * Université de Cali, Colombie * Asie, Océanie : * Université d’Hiroshima * Europe : * Université de Surrey * Maison Française d'Oxford * Université degli Studi di Pavia * Université degli Studi di Milano * Université l’Orientale de Naples * Université de Rome (Sapienza) * Centre Marc Bloch de Berlin * Universität Leipzig * Université de Mayence (faculté de droit et faculté d'histoire) * Université de Wuppertal * Université de Würzburg (faculté de Science politique) * Université de Lisbonne * Université libre de Bruxelles * Université de Louvain (KU Leuven) * Université de Lausanne * Haute Ecole de Santé de Vaud * Université d’Edimbourg * Université Szeged (Hongrie) * Université de Silesie (Pologne) * Nouvelle Université Bulgare * Fondation Fenosa (Barcelone) * International Association for the History of Crime and criminal Justice (Pays-Bas) * Institut d'histoire sociale de Rotterdam (Pays-Bas)",true,false,,_Lettre du CGC_,,"* Séminaires et colloques en ligne (format texte et/ou audio et/ou vidéo) depuis janvier 2004 * Site de l'insulte en politique * Base de données du site Académie/Académies * Base de données des poursuivis à la suite du coup d'Etat de décembre 1851 * Base de données des inculpés de l'insurrection de Juin 1848 * Annuaire rétrospectif de la magistrature - XXe-XXe siècles * CRIMINOCORPUS - Le portail sur l'histoire des crimes et des peines * Base de données ""Brochures du mouvement ouvrier"" * Base de données ""Archives de direction du PCF"" * Banque de données sur les ""Archives de l’Internationale communiste"" * INCOMKA * Léon Rosenthal * Le rock progressif",,,201220415T,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201220415T&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201220415T,2016, 2019-01-28T14:27:45.201Z,2018-08-01T15:02:46.447Z,umr7319,false,CURAPP-ESS,UMR 7319,Centre universitaire de recherches sur l'action publique et le politique-Epistémologie et sciences sociales,OK,http://www.u-picardie.fr/curapp/,Nathalie Le Bouteillec,nathalie.lebouteillec@wanadoo.fr,true,true,1971,"Le “Centre Universitaire de Recherches Administratives et Politiques de Picardie” a été créé en 1971 au sein de la Faculté de Droit et des Sciences Politiques et Sociales d’Amiens. Equipe associée au CNRS (UMR 7319) depuis 1982, le CURAPP relève aujourd’hui des sections 40 (Politique, pouvoir, organisation), 36 (Sociologie, normes et règles) et 35 (Philosophie, histoire de la pensée, sciences des textes, théorie et histoire des littératures et des arts).",168,74,94,https://www.u-picardie.fr/curapp/fr/node/217,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7319&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=20&p_nbres=42&p_num_lab=26&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,79,* Science politique,"* Social studies of science and technology * Communication * Droit public * Science politique * Sociologie des familles * Groupes d'âge * Sociologie des organisations * Relations professionnelles * Sociologie du travail, de l'emploi, des professions * Sociologie politique * Sociology * Social anthropology * Systèmes politiques","* Action publique, acteurs privés : interactions, régulations, espaces * États, marchés, sociétés * Gouverner à la frontière public / privé : modèles, savoirs, outils * Espaces, régulations et recompositions à l'international * Rapports sociaux, socialisations et politisations * Encastrement social des préférences et de l’action politiques * Travail, action collective et construction des mondes professionnels * Socialisations morales et politiques * Normes et réflexivités * Épistémologie et sociohistoire des sciences humaines et sociales * Connaissance, langage et valeurs * Discours et pouvoir * Genre (axe transversal)","* ""SATORI : SAvoirs TOxicologiques et Régulations en régime d'incertitude"" * ANR HOMOPARENTALITE : ""Homoparentalité, fonctionnement familial, développement et socialisation des enfants"" * ""Les enfants à besoins éducatifs particuliers de 0 à 2 ans : analyses secondaires de données longitudinales (issues de ELFE et de Génération 2011) "" * Convention d'étude et de recherche sur le statut social et la représentation du métier d'enseignants * Programme d'Investissements d'Avenir - Projets innovants en faveur de la jeunesse * ANR ALCoV ""Analyses Localisées Comparatives du Vote : défiance, abstention et radicalisation politique dans la France contemporaine"" * ANR ELUAR ""Les élus et l'argent. Analyses des conditions matérielles d'exercice des mandats électoraux"" * VOTHAN Quelle citoyenneté politique pour les personnes handicapées en France ?","* Séminaire général du CURAPP-ESS * Séminaire majeur (R.Pudal, A.Perrin-Heredia) * Cuisines de la recherche (G.Depoorter) * Séminaire Pôle social : Technologies et pratiques professionnelles * Séminaire MESHS * Séminaire CURAPP-ESS/ CESSP, Education, cultures et rapports sociaux (B.Geay) * Séminaire Centre George Simmel / Curapp-Ess, Ethnographie, pratiques, structures sociales (B.Ambroise, R.Caveng et R.Pudal) * Séminaire Sociologie : Le lien social (R.Caveng, M.Grégoire) * Séminaire La famille, construction juridique, sociale et politique (C.Husson-Rochcongar, G.Radica) * Séminaire Travail, crise et restructurations (P.Depoorter, N.Frigul) * Séminaire Le champ des pouvoirs territoriaux (JP Lebourhis, S.Vignon) * Séminaire Genre (L.Raïd, N.Le Bouteillec) * Atelier doctoral d’Ethique (Doctorants L.Raïd)","Partenaire de la Maison Européenne des Sciences de l’Homme et de la Société, depuis sa création en 2008.

* Collaborations universitaires et autres établissements publics de recherche : * AFSP, Paris * CEPRISCA, UPJV * CERAPS, CNRS, Université de Lille 2 * CEREQ * CESSP, Université de Paris 1 * CLERSE, CNRS, Université de Lille 1, Villeneuve d’Ascq * CNAM * CSE * EHESS, Paris * GRALE, Groupement d’Intérêt Scientifique basé à Paris * GSPE, IEP de Strasbourg, Université Robert Schuman, Strasbourg * IRISSO-CNRS * Maison Européenne des Sciences de l’Homme et de la Société, Lille * PACTE Grenoble * SACO, Université de Poitiers, Poitiers * Université de Paris 1 * Institutions et Dynamiques Historiques de l'Économie et de la Société (IDHES) * Groupe de Recherches et d'Études Sociologiques du Centre Ouest (GRESCO) * TRIANGLE, CNRS, ENS-LSH, IEP de Lyon, Université de Lyon 2, Lyon * UTC

* Collaborations internationales : * ARGENTINE : Université Mar del Plata * BRESIL : Université fédérale de Sao Carlos (UFSCar)Université de Rio de Janeiro (IETS) * DANEMARK : Université d’Aalborg * ETATS-UNIS : Université de Chicago (dpt de philosophie)New York University * INDE : Centre de sciences humaines de NewDelhiLoyola College de Chennai * MAROC : CERAM/EGE Rabat * NORVEGE : Université de Bergen, Bergen *vSUISSE : Institut d’études Politiques et Internationales (Lausanne)Université de Genève-CIG * TURQUIE : Université de Galatasaray (équipe Mediar)

* Collaborations institutionnelles : * Commission Européenne * Conseil Régional de Picardie, Amiens * Conseil Général de l’Oise * Conseil Général de la Somme * DRJCSC de Picardie * GIP Droit et Justice * OR2S",true,false,,* Lettre du CURAPP-ESS,"* Bibliothèques parisiennes (SciencesPo, BnF) * Fonds du CURAPP * Appel au PEB, en collaboration avec la bibliothèque universitaire","Portails, bases de données : * BibCnrs via le CNRS : très utilisé * CAIRN Accès réservé aux membres des laboratoires du CNRS * Bibliothèque Universitaire : catalogue en ligne de la bibliothèque de l’UPJV * Ressources numériques de la BU Pour faciliter les recherches : * CALAME : Répertoire de bases de données en SHS * Isidore : Plate forme d’accès à des des ressources numériques en SHS * Persée : Portail de revues scientifiques en sciences humaines et sociales. Site de numérisation rétrospective de revues françaises en sciences humaines et sociales * Revues.org : portail de revues en sciences humaines et sociales * Sudoc :catalogue du Système Universitaire de Documentation est le catalogue collectif français réalisé par les bibliothèques et centres de documentation de l’enseignement supérieur et de la recherche","Politique d'acquisition sur la base des suggestions des chercheurs et liste de 70 périodiques. Budget propre pour la documentation pour les périodiques et ouvrages Pour des besoins de recherche ou séminaires ou étudiants. Bibliographies de cours aussi pour master.","Pour les nouveaux arrivants (chercheurs, étudiants) : utilisation du catalogue et des outils du centre de documentation",201220282Y,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201220282Y&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201220282Y,2017, 2019-01-28T15:54:04.555Z,2018-08-01T15:02:46.446Z,umr6025,false,CENS,UMR 6025,Centre nantais de sociologie,OK,http://www.cens.univ-nantes.fr/,Marie Cartier,marie.cartier@univ-nantes.fr,true,true,1998,"Le CENS est depuis 2004 le seul laboratoire au sein de l'UFR de sociologie de l'Université de Nantes. Il est également le seul laboratoire de sociologie implanté sur le territoire de l'Académie de Nantes et sur celui des Pays de Loire. Ancienne Equipe d'Accueil (EA 3260), le centre est depuis 2015 une Unité Mixte de Recherche (UMR 6025). Il attire à lui des enseignants-chercheurs d'autres institutions que l'UFR de sociologie : UFR STAPS, Université catholique d'Angers, Ecole des mines, IUT et ESPE de Nantes ; il regroupe aujourd'hui plus d'une centaine d'EC et de doctorants : 7 professeurs (dont 1 émérite), 29 MCF (dont 5 HDR), 34 doctorants, 40 chercheurs associés ou jeunes docteurs. En augmentation depuis 2010, sa composition témoigne de son attractivité (comme en atteste encore l'arrivée d'une jeune chargée de recherche CNRS en octobre 2015). Depuis novembre 2009, 2 personnels IATOSS lui sont rattachés : une assistante de direction et une ingénieure d'études (à 80%) spécialisée dans le traitement des données statistiques. Le CENS dirige le Master sociologie RMDS (recherche et professionnel) et est le laboratoire d'adossement du Master spécialisé en sciences sociales de l'UFR STAPS. Depuis 2010, 18 thèses (3/4 par an) et 5 HDRs ont été soutenues (3 sont en cours). Deux de ses titulaires sont membres de l'IUF. Le CENS a été dirigé successivement par Charles Suaud (1998-2006), Stéphane Beaud (2006-2007) puis par Annie Collovald pendant 8 ans. C'est désormais Marie Cartier qui lui succède à la direction du laboratoire depuis le 1er décembre 2015, secondée par Baptiste Viaud.",110,38,72,http://www.cens.univ-nantes.fr/69644016/0/fiche___pagelibre/&RH=1207686781692,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=FRE3706&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=40&p_nbres=42&p_num_lab=41&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,27,* Sciences juridiques et politiques,"* Groupes populaires * Action publique * Corps et sport","* Axe 1 : Groupes populaires et dynamiques sociales : * Sous-axe 1.1 : Emploi, travail et recomposition du salariat d'exécution * Sous-axe 1.2 : Solidarités, conflictualités et mobilisations politiques * Sous-axe 1.3 : Rapports ""ordinaires"" aux normes morales * Axe 2 : Croyances, professions, et conduites économiques : * Sous-axe 2.1 : Les frontières de l'économie * Sous-axe 2.2 : Patronats, engagements et conflits * Sous-axe 2.3 : Groupes professionnels, marché du travail et emploi * Axe 3 : Sciences de gouvernement et catégories d'action : * Sous-axe 3.1 : Savoirs mobilisés et modes d'action * Sous-axe 3.2 : Catégories administratives et définition des populations * Sous-axe 3.3 : Réception et usages des catégories * Axe 4 : Santé, Corps et Sports : * Sous-axe 4.1 : Engagements corporels et encadrements sportifs * Sous-axe 4.2 : Santé et risques professionnels * Sous-axe 4.3 : Politiques de santé et accès aux soins","* RURELLES – _Les jeunes filles en milieu rural_ – Sophie Orange CENS, DRESS-INSEE * ETUFACT— _Les emplois salariés des étudiants_— Tristan Poullaouec CENS, DRESS-INSEE * _Les usages des guichets d’information dans des quartiers sensibles_ – Gérald Houdeville CENS, AFPA * _Les jeunes en situation de « décrochage »_ – Gérald Houdeville CENS, DRJSCS (Direction régionale de la jeunesse, des sports et de la cohésion sociale) * ANR ELUAR – _Les élus et l’argent_ – Rémy Le Saout, CENS. * ANR Classes Pop – _Enquête sur les classes populaires établies_ -, sous la direction d’Olivier Masclet et Olivier Schwartz (Paris V), et de Marie Cartier pour le CENS * ANR Sombrero – _Les conséquences biographiques des engagements militants_ – sous la direction d’Olivier Fillieule (PU Lausanne) et Annie Collovald pour le CENS * Projet franco-anglais – _les associations de soutien aux réfugiés_ – Estelle d’Halluin (CENS), Economic and Social Research Council (ESRC), Grande Bretagne * SABLE – _La balnéarisation des villes du littoral_ – Arnaud Sébileau CENS, Région Pays de la Loire * Nicolas Rafin - _Sanctionner les châtiments corporels à visée éducative ? Aspects sociaux et juridiques d'un intolérable en devenir_, Mission Droit et Justice et Caisse National des Allocations familiales * Annie Collovald, IUF membre senior * Annie Collovald, Fabienne Laurioux, Séverine Misset CENS, _Genèses d’archives militantes_, CHT (centre d’histoire du travail) et MSH Ange-Guépin","* Les Impromptus du CENS * Les Chantiers de recherche","* Avec le centre associé CEREQ Pays de la Loire * Avec le CESTAN, Université de Nantes * Avec le GDR Cadres * Avec l'Institut de recherche pour le développement (IRD) * Avec la Maison des Sciences de l'Homme Ange Guépin * Association Française de Sociologie * Association Française de Science politique * CHT - Centre d'histoire du travail- de Nantes",true,false,Fortes incitations.,* Newsletter _Lettre du CENS_,"* BU de Nantes * Bibliothèque Frédéric Mollé (bibliothèque de section de l'UFR * Bibliothèque de la FMSH * BNF * Bibliothèque du CHT (Centre d'Histoire du Travail) * Bibliothèque du centre Simone de Beauvoir","* Ressources numériques de la BU de Nantes * BibCnrs via le CNRS",,,200014558D,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200014558D&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200014558D,2016, 2019-01-28T15:54:04.555Z,2018-08-01T15:02:46.449Z,umr7324,false,CITERES,UMR 7324,"Cités, territoires, environnement et sociétés",OK,http://citeres.univ-tours.fr/,Nora Semmoud,citeres@univ-tours.fr,true,true,2004,"Créée en 2004 par le CNRS et l’université de Tours, à partir d’un projet scientifique élaboré par trois équipes de recherche. Deux de ces trois équipes avaient jusqu’alors le statut d’UMR : Le Centre d’Etudes et de Recherches sur l’URBAnisation du Monde arabe (UMR 6592) et le Laboratoire Archéologie et Territoires (UMR 6575). La troisième, le Centre de recherche Ville/Société/Territoire (EA 2111), était une équipe d’accueil du Ministère de l’Education Nationale.",220,136,84,http://citeres.univ-tours.fr/spip.php?rubrique85,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7324&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=20&p_nbres=42&p_num_lab=27&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,100,"* Aménagement de l'espace * Urbanisme","* Environnement * Interaction milieux naturels et société * Mutations sociales * Patrimoine urbain * Politiques publiques * Territoire * Villes","* Construction sociale et politique des espaces, des normes et des trajectoires (COST) * Axe 1 : Formes d’engagement dans l’espace public * Axe 2 : Normes, socialisation et trajectoires * Axe 3 : Nouvelles frontières du travail et politiques publiques * Axe 4 : pratiques et politiques de l’espace * Equipe Monde Arabe et Méditerranéen (EMAM) * Axe 1 : Identités, interculturalités, circulations * Axe 2 : Configurations et figurations de la ville et de l’urbain * Axe 3 : Dynamiques et recompositions politiques des territoires * Dynamique et Action Territoriales et Environnementales (DATE) * Axe 1 : Dynamiques environnementales, enjeux et paysages * Axe 2 : Risques, vulnérabilités et résilience des territoires * Axe 3 : Actions intentionnelles territorialisantes * Laboratoire Archéologie et Territoires (LAT): * Axe 1 : Villes et territoires * Axe 2 : Architecture et techniques de construction * Axe 3 : Flux, échanges et aires culturelles * Thématique transversale 1 : Relation Hommes/milieux * Thématique transversale 2 : Alimentation et territoires * Thématique transversale 3 : Archéomatique","* LIFE+ Conservation de la Grande Mulette en Europe * JPI-Climate-Trans Adapt * PLUPATRIMONIAL Le « PLU patrimonial » : quels nouveaux outils réglementaires pour concilier pérennité du patrimoine bâti et développement urbain durable ? * PATRIMONDI Les enjeux de la « patrimondialisation » ou la fabrique touristique du patrimoine culturel dans la mondialisation : Modèles globaux, recompositions identitaires, hybridations * SUD (Systèmes Urbains Dynamiques) * AQAPA : « A qui appartiennent les paysages ? » La mise en tourisme des hautes terres en Asie méridionale : dynamiques sociales et patrimonialisation des paysages dans les campagnes à minorités ethniques * MARG-IN. MARGinalisation/INclusion : les effets à moyen et à long terme des politiques de régulation de la pauvreté étrangère sur les populations-cibles : le cas des migrants dits « roms » dans les villes d’Europe occidentale (France, Italie, Espagne) * SEPage: Stratégies de transmission des Exploitations et Pratiques professionnelles en viticulture * Marmoutier (Tours) : archéologie d’un site monastique dans la longue durée * COEUR Croissance, Optimisation, Economie, Urbanisation, Réseau * COSTAUD: Contribution des OnguléS au foncTionnement de l’écosystème et AUx services rendus à ChamborD * ReViSMartin : Renaissance virtuelle de la collégiale Saint-Martin de Tours * DUE: Délaissés Urbains et Espèces envahissantes * MEMOVIV: La mémoire de l’industrie vierzonnaise * SICAVOR : Système d’information contextuel sur les caves d’Orléans * SOLiDAR: Région Centre / Domaine national de Chambord / DRAC du Centre * ALTHERCOL: ALTernatives aux HERbicides dans les jardins COLlectifs * La céramique médiévale dans la vallée de la Loire moyenne * MAPS (Modélisation multi-agents Appliquée aux Phénomènes Spatialisés) * GDRI MARGMED: Marges et villes : entre exclusion et intégration. Cas méditerranéens * NEFiScience * L’agglomération antique et médiévale de Mougon *","* Actions et territorialisations : Pratiques spatiales, collectifs et actions publiques * Séminaire méthodologique et de recherche 2015-2016 * Politiques de l’environnement * Temporalités et dynamiques territoriales * Droit et territoire * Productions artistiques, villes et territoires * Sociétés urbaines et déchets","* Travaux de Recherches Archéologiques sur les Cultures, les Espaces et les Sociétés (TRACES) * de la Préhistoire A l'Actuel : Culture, Environnement et Anthropologie (PACEA) * Espaces et Sociétés (ESO) * Archéologie et Philologie d'Orient et d'Occident (AOROC) * Sciences pour l'Action et le Développement : Activités, Produits, Territoires (SADAPT) * Laboratoire d'Informatique (LI) * Politiques Publiques, Action Politique, Territoires (PACTE) * CETU Elmis Ingénieries * CIST : Collège international des sciences du territoire * Consortium « Mémoires des archéologues et de leurs sites archéologiques » (MASA) * GdR 3359 Modélisation des Dynamiques Spatiales * GDRI-CNRS « Vieillissement en Afrique (VA) » * GIS Institutions patrimoniales et pratiques interculturelles * Groupement d’Intérêt Scientifique Participation du public, décision, démocratie participative * ICÉRAMM - Réseau Information sur la CÉRAmique Médiévale et Moderne * ISA : Réseau Information Spatiale et Archéologie * LABEX iPOPs * Pôle DREAM * REHAL : réseau « Recherche Habitat-Logement » * Réseau AttracVil * Réseau MAPS : Modélisation multi-agents Appliquée aux Phénomènes Spatialisés * RÉSEAU Terre Cuite Architecturale * Réseau thématique de recherche en Région Centre, MIDI : les rendez-vous des MIlieux et de la DIversité pour une gestion durable des ressources naturelles et de la biodiversité * Zone atelier Loire",true,false,,"* Les cahiers de CoST * Les cahiers d’EMAM * Les cahiers d’URBAMA",,,,,201220233V,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201220233V&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201220233V,2017, 2019-01-30T15:49:44.164Z,2018-08-01T15:02:46.445Z,umr5283,false,CENTRE MAX WEBER,UMR 5283,Centre Max Weber,OK,http://www.centre-max-weber.fr/,Bruno Milly,bruno.milly@ish-lyon.cnrs.fr,true,true,2011,"Le Centre Max Weber est né en janvier 2011 suite au regroupement de deux UMR, le GRS (Groupe de Recherche sur la Socialisation) et le MODYS (Mondes et Dynamiques des Sociétés), Cette dernière (MODYS) résultant de la réunion des deux laboratoires historiques qu’étaient l’UMR CRESAL à Saint-Etienne et la FRE Glysi à Lyon. Le Groupe de Recherche sur la Socialisation (GRS) a été créé en 1976, et le MODYS en 2007.",202,46,156,http://www.centre-max-weber.fr/Annuaire,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR5283&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=20&p_nbres=64&p_num_lab=28&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,102,* Lettres et langues,"* Espace public * Parcours bibliographiques * Sociali","* Travail, Institutions, Professions, Organisations * Dynamiques sociales et politiques de la vie privée * Politiques de la connaissance : savoirs situés et enjeux démocratiques * Cultures publiques * Dispositions, pouvoirs, cultures, socialisations * Modes, espaces et processus de socialisation",,"* Séminaire doctoral (s'adresse à tous les doctorants du laboratoire) * Séminaire image animée NB: Chaque équipe à son séminaire propre.",,,,,,NC,,,,201119420R,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201119420R&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201119420R,2016, 2019-01-28T14:27:45.196Z,2018-08-01T15:02:46.451Z,ea1198,false,ERMES,EA 1198,Equipe de recherche sur les mutations de l'Europe et de ses sociétés,OK,http://www.ermes-unice.fr/?q=node/10,Lucie Bargel,lucie.bargel@univ-cotedazur.fr,false,true,1987,"Créé en 1987 autour de Christian Bidégaray (Science politique), Maryse Carlin (Histoire du droit et des institutions) et Pierre Collomb (Droit privé, spécialiste de Droit du sport), le laboratoire ERMES a été dirigé jusqu’en 2005 par le Professeur Christian Bidégaray, professeur de Science politique à l’Université de Nice, puis par Mme Christine Pina, maître de conférences en Science politique.",51,13,38,http://www.ermes-unice.fr/?q=node/16,,15,* Science politique,"* Droit * Histoire * Sociologie * Droit privé et sciences criminelles * Droit public * Histoire du droit et des institutions * Science politique","* Axe 1 Territoires : évolution des configurations territoriales et gouvernance * Construction, reconfiguration et légitimation des territoires et de leurs institutions * Gouvernance des territoires * Axe 2 Représentations : « présenter », « représenter », « se représenter » * Mandats politiques, mandats professionnels * Evolutions des institutions représentatives et judiciaires * Constructions symboliques : valeurs, identités, idéologies","* PRIDAES * OsPo PACA * PROSEPS","* Séminaire des Études politiques de l'ERMES
JED'ERMES : Journée des études doctorales (présentation de leurs travaux) * Séminaire d'Histoire du droit","* Politiques Publiques, Action Politique, Territoires (PACTE) * Centre Émile-Durkheim - Science Politique et Sociologie Comparatives (CED) * Centre Européen de Sociologie et de Science Politique (CESSP) * Centre d'Études et de Recherches Administratives, Politiques et Sociales (CERAPS)",true,false,,,"3 types de bibliothèques : * La ""bibliothèque virtuelle""du laboratoire ERMES * La bibliothèque Maryse Carlin d'Histoire du droit * la bibliothèque d'histoire du droit et institutions * la bibliothèque historique du droit * Les bibliothèques de la salle des doctorants",Beaucoup de ressources au sein des bibliothèques universitaires de Nice,,,199213382K,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199213382K&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199213382K,2017, 2019-01-30T15:51:13.771Z,2018-08-01T15:02:46.452Z,ea4586,false,"FRANCOPHONIE, MONDIALISATION ET RELATIONS INTERNATIONALES",EA 4586,"Francophonie, mondialisation et relations internationales",,http://francophonie-international.univ-lyon3.fr/,François David,francois.david@univ-lyon3.fr,false,true,2002,"Le Centre de recherche de l'IFRAMOND, en expansion constante depuis sa création en 2002, constitue aujourd'hui l'un des plus importants centre de recherche de l'Université Jean Moulin Lyon 3. Il a été créé au sein de l'Université Jean Moulin Lyon 3 dans le cadre de la loi Savary.
Il est dirigé par le titulaire de la Chaire Senghor de la Francophonie de Lyon.
Puis, le Centre de Recherche a évolué vers une Unité de recherche intitulée ""Francophonie, Mondialisation et Relations internationales"".
En 2011, une Équipe d'Accueil n°4586 ""Francophonie, Mondialisation et Relations internationales"", regroupant quatre centres de l'Université Jean Moulin Lyon 3 (IFRAMOND, CLESID, CDED, CEPIA) et le Centre francophone de droit comparé et de droit musulman (Université de Perpignan Via Domitia), a été agréée par le Ministère français de l'Enseignement supérieur et de la Recherche.",0,0,0,,,,* Science politique,"* Histoire politique et institutionnelle * Modes de vie * Relations internationales * Science politique","* La Francophonie dans toute son acception * La sécurité et la défense * Le droit public international",,,"Le Réseau international de Chaires Senghor de la Francophonie a comme objectif de mettre en place progressivement au moins une Chaire Senghor par pays membre de la Francophonie.

La Chaire Senghor de la Francophonie de Lyon, avec le soutien de la Région Rhône-Alpes et de l'Organisation internationale de la Francophonie, a aidé à la création des différentes Chaires Senghor par l'envoi de missions d'enseignement et d'un fonds documentaire de base sur les thématiques de la Francophonie et de la Mondialisation.

Aujourd'hui, le Réseau international des Chaires Senghor de la Francophonie regroupe 17 Chaires : * Alexandrie * Aoste * Beyrouth * Bucarest * Cluj-Napoca * Dakar * Erevan * Hanoi * Libreville * Lyon * Montréal * Ouagadougou * Outaouais * Perpignan * Timisoara * Yaoundé * Wuha.",true,false,,,"* BU de Lyon 3 et Lyon 2 (accord d'emprunt entre les deux universités) * Bibliothèque de l'ENS * Bibliothèque municipale","Pas d'abonnement à des ressources numériques pour le centre de documentation mais accès aux ressources de la BU de Lyon 3 (CAIRN, par exemple)","La politique d’acquisition se fait en fonction : * des formations pédagogiques * des cours * des travaux que doivent faire les étudiants (master pro, master recherche, DU) * des thématiques de recherche des chercheurs * des publications des chercheurs du centre La responsable du centre de documentation se charge aussi d'acquérir de la documentation gratuite et utile sur la francophonie (par ex, délégation générale à la langue française)","Le centre de documentation n'en propose pas contrairement à la BU qui propose des formations à la recherche, aux outils de recherche (SUDOC), outils numériques, notamment pour les étudiants en DU.",201119457F,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201119457F&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201119457F,2016, 2019-01-28T15:54:04.556Z,2018-08-01T15:02:46.450Z,umr7318,false,DICE,UMR 7318,"Droits international, comparé et européen",OK,https://dice.univ-amu.fr/fr,Marthe Fatin-Rouge Stefanini,marthe.stefanini@univ-amu.fr,true,true,2004,"L’UMR 7318 a été créée, en 2004, par regroupement de cinq équipes: * Institut Louis Favoreu / Groupe d’Études et de Recherches Comparées sur la Justice Constitutionnelle (ILF-GERJC) * Centre d’Études et de Recherches Internationales et Communautaires (CERIC) * Droit humanitaire et gestion des crises (DHUGESCRI) * Centre de Droit et de Politique Comparés Jean-Claude Escarras (CDPC) * Institut d’Études Ibériques et Iberico-Américaines (IE2IA).",351,108,243,,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7318&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=20&p_nbres=42&p_num_lab=25&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,182,* Droit public,"* Justice constitutionnelle * Droits fondamentaux * Droit communautaire * Droit comparé * Droit constitutionnel * Droit international privé * Droit international public * Droit public * Développement durable * Environnement * Libertés publiques et droits de l'homme * Principe de précaution * Relations internationales","* « nouvelles configurations normatives et institutionnelles» * « Justice, justices » * « Démocratie, État de droit, droits fondamentaux » * « Droit, sciences et techniques ».","* Les contrats du Centre d'études et de recherches internationales et communautaires (CERIC) * Le procès environnemental. Du procès sur l’environnement au procès pour l’environnement (2016-2018) * European Migration Law (2016-2017) * Droit international et droits fondamentaux France-Cuba (2016-2017) * Les contrats de l'Institut Louis Favoreu (ILF) * Étude sur le renforcement de l'efficacité de l'activité du pouvoir judiciaire en France et en Biélorussie",* Le Séminaire de l’ UMR : organisé autour de chercheurs français ou étrangers invités,"* LabexMed : Les sciences humaines et sociales au cœur de l'interdisciplinarité pour la Méditerranée * Reseau Universitaire Européen : ""Espace de Liberté, Sécurité & Justice"" (ELSJ) * L’Ecole doctorale des juristes méditerranéens (EDJM) * Centre d'Études Fiscales et Financières (CEFF) * Institut de l' Ouest : Droit et Europe (IODE) * Centre d'excellence Jean Monnet ""L'Europe au Sud"" * Réseau européen Jean Monnet ""Solar"" * Partenariats à l’échelle régionale : LABEXMED, ECCOREV, Mediterranean Earth Institute * Partenariats à l'échelle nationale: GDR ""Nost"" et ""ELJS""",true,,,"* La lettre ibérique et ibérico-américaine * La Lettre de l’Est * La E-Letter du CERIC","* La Bibliothèque de l'IE2IA * La Bibliothèque RENÉ CASSIN * La Bibliothèque du CDPC JEAN-CLAUDE ESCARRAS",,,,201220257W,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201220257W&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201220257W,2017, 2019-01-28T14:27:45.207Z,2018-08-01T15:02:46.448Z,umr7048,false,CEVIPOF,UMR 7048,Centre de recherches politiques de Sciences Po,OK,https://www.sciencespo.fr/cevipof/,Martial Foucault,martial.foucault@sciencespo.fr,true,true,1960,"Créé en 1960, et associé au CNRS depuis 1968, le Centre de recherches politiques de Sciences Po (CEVIPOF) analyse les grands courants politiques qui façonnent les forces et les institutions politiques, ainsi que les facteurs qui contribuent à orienter les comportements et les attitudes politiques de nos concitoyens. Le CEVIPOF réunit plus de 80 chercheurs, enseignants-chercheurs, chercheurs associés et doctorants. Le CEVIPOF est l’un des laboratoires de Sciences Po, dont le dispositif de recherche rassemble dix centres, six chaires, le Medialab et l’Ecole doctorale. International et interdisciplinaire, il contribue, par ses travaux, empiriques et théoriques, à la compréhension du changement social et politique en France, en Europe et dans les grandes démocraties contemporaines. Le CEVIPOF est aujourd’hui le centre de référence pour l’étude de la pensée politique et des idées politiques, l’étude du vote et des comportements et attitudes politiques ainsi que l’analyse des forces politiques et sociales dans les démocraties contemporaines.",119,36,83,https://www.sciencespo.fr/cevipof/fr/equipe,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7048&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=30&p_nbres=64&p_num_lab=30&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,23,* Science politique,"* Attitudes politiques et comportements électoraux * Evolutions sociopolitiques et changement social * Cohésion sociale * Collectivités territoriales * Modes de vie * Opinion publique * Philosophie politique * Politiques publiques * Science politique * Sciences économiques générales et de gestion * Sociologie politique * Sociologie rurale * Systèmes politiques","* Attitudes, comportements et forces politiques * Pensée et histoire des idées politiques.","* Commission Européenne (FP7) * LIVEWHAT * EFESEIIS EUCELEX GREAT * H-2020 / TRANSSOL * FAB MOVE * PAWCER * ANR * PATHWAYS * Appels à projet USPC * DEMEPE * SOMI * ANTHROPOCENE * EVAR * Invitations longue durée : Daniel Rubenson * Chaire d’excellence * Appels à projet DS SciencesPo * REV * Patrimonial inequalities and voting patterns * The Politics of Common Values * Policy Priorities and Electoral Behavior * Appels à projet LIEPP SciencesPo * Maires bâtisseurs * Divers * CAP GEMINI * CSM * Ministère de l’Education nationale * WELCOM * India-France Cultural Exchange Programme * Fondation des Treilles * Bourse post-doctorale Fernand Braudel MSH * Ministère de la Défense * Ministère de l’Enseignement Supérieur * Institut Universitaire de Florence * Baromètre Confiance - CESE * DYNAPOL - SIG * DYNAPOL - LIEPP * DYNAPOL - France Stratégie * DYNAPOL - Fondation Jean Jaurès * CGET * Sciences Po - DSD/Alumni * Baromètre Confiance - DSD * Ministère de l’intérieur","* Séminaire ""Politiques de transports urbains durables dans les villes européennes"" * Le séminaire ""inattendu"" : les croyances et les opinions obéissent-elles à des lois ? * Séminaire général * Séminaire Seine-Saint-Denis * Séminaire ""Théorie politique""","* Universités : * Amsterdam * Anvers (UA) * Athènes * Autònoma de Barcelona (UAB) * Autònoma de Madrid * Bamberg * Baruch college * Bocconi * Bologne * Boston * Bournemouth * Bruxelles * Buffalo * Cardiff * Catane * Catholique de Louvain * College London * Columbia * Concordia * Copenhague * Crète * Delaware State * East Anglia * East China Normal * East China University of Political Science and Law (ECUPL) * École française de Rome * Essex * Floride du sud * Gakushuin * Genève * Glasgow * Greifswald * Guido Carli LUISS * Harvard * Herbie School of Governance * Hong Kong Baptist * Hong Kong Polytechnic University * Hosei * Humboldt * Institut für Politikenwissenchaft * Japan Institut of International Affairs * Karlsruhe Institut of Technologie-ITAS * Keio Law School * Kieskompas * Kyoto * La Sapienza * Lausanne * Leeds * Leicester * Leiden * Libre université internationale des études sociales (LUISS) * Limerick * London School of economics * Lucerne * Macquarie * Mannheimer Zentrum für Europäische Sozialforschung * Massachusetts Institute of Technology * McGill * Montréal * Münich * Nankai * Nanyang Technological * New Bulgarian * New York * Newcastle * Nottingham * Ottawa * Oxford * Padoue * Penn State * Plovdiv * Pompeu Fabra * Princeton * Queen Mary * Radboud de Nimègue (SKU) * Reading * Rio Grande do Sul * Salford * Sheffield * Siegen * Sofia * Stanford * Sun Yatsen * Sussex * Sydney * Tel Aviv * Texas * The Hong Kong Polytechnic * Todai * Tokyo * Trinity College Dublin * Twente * Uppsala * Varsovie * Vechta * Viadrina Universität Freie Universität Berlin * Vienne * Washington * Westminster * Williams College * Yale * Autres : * Centre de recherche sociologique et d’intervention sociale (CESIS) * Centre de recherche sur le changement global (Czech Globe) * Commission européenne (projet Livewhat) * École française de Rome * Institut for governance & Politicy Analysis * Institut universitaire européen * Social Science Research Center Berlin (WZB)",true,true,Ce sont les chercheurs qui saisissent et la responsable du centre de documentation qui valide. Nombreuses relances pour que les chercheurs saisissent.,"* Page ""publications"" du site du CEVIPOF http://www.cevipof.com/fr/les-publications/les-publications-recentes/ouvrages/ * Newsletter ""les publications de la recherche"" http://www.sciencespo.fr/recherche/sites/sciencespo.fr.recherche/files/newsletters_recherche/publications/actus_publications.htm * Facebook * Twitter","* Bibliothèque de Sciences Po * Bibliothèque de l'ENS * BnF","* Ressources numériques de la bibliothèque de Sciences Po
http://www.sciencespo.fr/bibliotheque/fr/rechercher/eressources * BibCnrs via le CNRS",,"Formations adaptées aux besoins pour tous les nouveaux arrivants par la responsable du centre de documentation : Ressources du centre de documentation, de la bibliothèque de SciencesPo, ressources à Paris, sites web spécifiques, SPIRE. Offre de formation de la bibliothèque de Sciences Po : * Methode et outils de la recherche documentaire * Panorama des outils de gestion bibliographique (Zotero, Endnote) * Initatiation à l'Open Access et à Spire * Panorama des ressources utiles en Science politique (à partir de 2016/2017) La Bibliothèque organise également à la demande des enseignants des séances spécifiques de formation, notamment à l'utilisation des bases de données.",200119305J,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200119305J&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200119305J,2017,https://fr.wikipedia.org/wiki/Centre_de_recherches_politiques_de_Sciences_Po 2019-01-28T15:54:04.557Z,2018-08-01T15:02:46.458Z,umr8529,false,IRHis,UMR 8529,Institut de recherches historiques du Septentrion,OK,https://irhis.univ-lille.fr/,Stéphane Michonneau,stephane.michonneau@univ-lille3.fr,true,true,1998,,161,74,87,https://irhis.univ-lille.fr/laboratoire/les-membres/,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8529&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=50&p_nbres=64&p_num_lab=58&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,62,"* Lettres * Langues","* Cultures visuelles * Histoire politique et sociale","* Axe 1 : Cultures visuelles et matérielles : * thématiques principales: * Les enjeux théoriques, conceptuels et méthodologiques liés à l’étude des cultures visuelles et matérielles * Les constructions culturelles, sociales et économiques des artefacts visuels * Les cultures des apparences corporelles et vestimentaires * Axe 2 : Arts et mémoires d'Europe: Identité, héritage, intégration, représentations * thématiques principales : * recherche sur les arts décoratifs * Les questions mémorielles et identitaires * L’héritage religieux * Axe 3 : Guerre, sécurité(s), (des)ordre(s) public(s) : * Les thématiques: * La construction des identités militaires et combattantes * L’exception, laboratoire de l’ordinaire * Frontières, mobilités et interculturalités * Axe 4 : Innovations : * Les thématiques : * Construction d’une culture de la nouveauté * Crises et renaissances : les temps de l’innovation * (Ré)-inventions de l’État","* Projets en cours : * Le gis CNRS (2013-2019) * Le projet Garzoni, apprentissage en Europe : Venise et les flandres * Le projet « VISUALL » (2013-2017) * Projets terminés : * ANR - ACTAPOL (acteurs et action politique en révolution : les conventionnels) * ANR.M-ART (marchés de l’art en europe -1300-1800-émergence, développement, réseaux) * ANR - CIRSAP (circulation et construction des savoirs policiers européens: 1650-1850) * ANR - EMEREN-O (efficacité entrepreneuriale et mutations économiques régionales en Europe du nord-ouest-milieu XVIIIe - fin XXe s.) * ANR - COMPTA (les grandes réformes de la comptabilité publique : racines, techniques, modèles) * ANR-ONE * Projets associés : * enquêtes historiques sur les comptabilités - XIVe-XXIe siècles * RIM-NOR * SCV","* Les séminaires de l'Axe 1 : * Le séminaire interdisciplinaire et international de la spécialité Études Visuelles de l’École Doctorale SHS Lille Nord de France * Le séminaire méthodologique Cultures visuelles de l’IRHiS consacré aux notions, concepts et auteurs des Visual Culture Studies * Seminaire Axe 3 : * Innovation, Politique et Autorité","* Axe 1 : * Sur le plan international : * Duke University (NC – Programme Face-PUF) * Jacobs University (Brême);le réseau franco-néerlandais (Leiden, Amsterdam, Utrecht) * avec la Belgique (Université catholique de Louvain, ULB, universités de Liège et Anvers) * Axe 2 : * Collaborations avec : * la Collection Wallace * l’École du Louvre * Partenaires : * la MESHS * l'université de Marne-la-Vallée * l'université de Rouen * la Ca’Foscari de Venise * la Sapienza de Rome * l’université d’Anvers * l’université de Warwick * l’École Polytechnique de Lausanne * Leyde * Daniel Chartier * Laboratoire international d'étude multidisciplinaire comparée des représentations du Nord * UQAM * Axe 3 : * Collaborations : * les universités de Hull et Leeds (britaniques) * l'université néerlandaises Leiden * les universités belges de Gand et CEGESOMA * Lille 2 * ULB Bruxelles * laboratoire CECILLE * Archéologie et Archeometrie (ARAR) * Centre d'Études Supérieures de la Renaissance (CESR) * Centre de Recherches Historiques : Histoire des Pouvoirs, Savoirs et Sociétés * Institutions et Dynamiques Historiques de l'Économie et de la Société (IDHES) *",true,false,,"* Carnets de recherche * Cahiers De L'IRHIS * Twitter",Bibliothèque numérique d'histoire régionale du Nord Pas-de-Calais,"* Liens : * www.decomputis.org * www.afc-cca.com * http://histoiremesure.revues.org * www.msh.univ-nantes.fr * http://journals.cambridge.org * www.sagepub.com/journals/Journal201764 * www.tandf.co.uk/journals/rabf * www.revuedutresor.com * www.castellanie.net * Les bases bibliographiques : * IRHiS-Biblio-Regionale * IRHiS-Société-Industrielle * IRHiS-Travaux-Maitrises-Masters-1995 * IRHiS-Biblio-Guerre * La base des périodiques : * IRHiS-Bull-Revues * Les bases Inventaires: * IRHiS-Inventaire-ALaurent * IRHiS-Inventaire-LeParisien * IRHiS-Inventaire-Robichez * IRHiS-Presse * Les bases de Recherche : * IRHiS-Hist-Universite * IRHiS-Statuaire * IRHiS-Théâtre-TPF * Images Pieuses",,,199812857N,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199812857N&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199812857N,2017,https://fr.wikipedia.org/wiki/Institut_de_recherches_historiques_du_Septentrion 2019-01-28T15:54:04.557Z,2018-08-01T15:02:46.456Z,umr7310,false,IREMAM,UMR 7310,Institut de recherches et d'études sur le monde arabe et musulman,OK,http://iremam.cnrs.fr/,Richard Jacquemond,direction.iremam@mmsh.univ-aix.fr,true,true,2012,"Historique complet ici : (http://iremam.cnrs.fr/spip.php?rubrique100) * Mai 1986 : Création de l’Institut Fédératif IREMAM. L’IREMAM regroupe : * Le Centre de Recherche sur les Sociétés Méditerranéennes (CRESM), URA 40150 * Le Centre de Recherche sur l’Orient Arabe Contemporain (CEROAC), ER 60322 // Le Groupe de Recherche et d’Etudes sur le Proche-Orient (GREPO), URA 41070 * L’équipe de Recherche « Anthropologie des zones berbères et sahariennes », du Laboratoire d’Anthropologie et de Préhistoire des Pays de la Méditerranée Occidentale (LAPMO), URA 40164 * L’équipe de Recherche « Espace et Aménagement dans le Monde Arabe » de l’Institut de Géographie de l’Université d’Aix-Marseille II * Janvier 2012 : L’IREMAM change de n° d’UMR et devient l’UMR 7310 (en remplacement de l’UMR 6568)",93,47,46,http://iremam.cnrs.fr/spip.php?rubrique510,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7310&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=20&p_nbres=42&p_num_lab=24&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,42,"* Histoire et civilisations : histoire des mondes modernes, histoire du monde contemporain, de l'art","* Afrique du nord * Afrique saharienne * Monde Méditerranéen * Proche, Moyen, Orient, XVIe au XXe siècle * Ethnologie * Anthropologie sociale * Géographie humaine;histoire des religions * Histoire politique et institutionnelle * Histoire sociale * Histoire économique * Langues : arabe * Linguistique * Moyen âge * Sciences juridiques et politiques * Sciences sociales de la ville","* Pôle disciplinaire Histoire et islamologie : objets et pratiques * Droit : sources, pratiques et usages * Islam : doctrines, institutions et pratiques d’hier à aujourd’hui * Sources persanes et ottomanes * Pôle disciplinaire Langues, Littérature, Linguistique * Littérature arabe, traduction, traductologie * Langues et épigraphie de l’Islam et de l’Orient ancien * Linguistique et sociolinguistique * Etudes berbères * Pôle disciplinaire Sciences sociales du contemporain * Mobilisations sociales, actions politiques et recompositions des scènes étatiques * Religiosités, ethnicités et enjeux socioéconomiques dans les collectivités musulmanes en contextes migratoire et de sédentarisation * Enjeux urbains dans les mondes arabes et musulmans * Axes Transversaux * Circulations, espaces, régulations * Conditions de production des Savoirs dans et sur les sociétés arabes et musulmanes * Recherche, Arts et Pratiques Numériques","* Horn & Crescent. Connections, Mobility and Exchange between the Horn of Africa and the Middle East in the Middle Ages (ERC Consolidator Grant project HornEast 2017-2022) * The Air Deportation of Illegalized Migrants : Routes, Practices, Contestation (2017-2021) * MONDISMAG Mondialisation Discrète au Maghreb (2016-2019) * DYSORU Dynamiques sociales et recompositions urbaines en Algérie (2016-2019)","* Séminaires « IREMAM accueille » * Les séminaires du Master MAMHS (AMU/DEMO) (M2 recherche) * Les séminaires du Master Histoire et humanités (AMU/Histoire) * Séminaire Iremam/AMU ""Histoire des écritures"" * Séminaire ""Appropriations d’espace(s) en contexte colonial"" * Séminaire de recherche CHERPA/IDEMEC/IREMAM * Séminaires inter-labos de la MMSH * Séminaires hors les murs","* Contrats de collaboration et de coopération signés : * Convention de coopération CREAD - IREMAM * Convention de coopération CEFAS - IFPO - IREMAM * Convention de coopération scientifique IFPO - IREMAM * Convention de coopération scientifique IRCAM-IREMAM

* Les partenaires de l’IREMAM : * En Algérie: * CNRPAH (Centre National de Recherches Préhistoriques, Anthropologiques et Historiques d’Alger) * CRASC (Centre de Recherches en Anthropologie Sociale et Culturelle d’Oran) * CREAD (Centre de Recherche en Economie Appliquée pour le Développement, Alger) * ENA (Ecole Nationale d’Administration d’Alger) * Institut d’architecture de Biskra (Université Mohamed Khider Biskra) * Université Mouloud Mammeri de Tizi-Ouzou * En Allemagne : CMB (Centre Marc Bloch, Berlin) * Au Canada : * Université du Québec à Montréal (UQAM) * Département de sociologie * Université Wilfrid Laurier (Ontario) * En Colombie : * Université Externado de Colombia à Bogota * En Egypte : * CEDEJ (Centre d’Etudes et de Documentation Economiques, Juridiques et Sociales) * CEAlex (Centre d’Etudes Alexandrines) * IFAO (Institut Français d’Archéologie Orientale du Caire) * En Espagne : * Universidad Autonoma de Madrid * CSIC (Consejo Superior de Investigaciones Cientificas) * IESA (Instituto de Estudios Sociales Avanzados) * Aux Etats-Unis : * Fares Center for Eastern Mediterranean Studies * Tufts University * Medford * MA * En Ethiopie : * CFEE (Centre Français d’Etudes Ethiopiennes d’Addis Abeba) * En France : * ANOM (Centre des Archives d’Outre-Mer, Aix-en-Provence) * CANTHEL (Centre d’anthropologie culturelle, Paris) * CARIM (Consortium pour la Recherche Appliquée aux Migrations Internationales) * CCL (Centre de Conservation du Livre, Arles) * CEMAf (Centre d’Étude des Mondes Africains) * Centre franco-allemand de Provence * Centre Maurice Halbwachs, Equipe PRO (professions, réseaux, organisations) * CERI-Sciences Po (Centre d’études et de recherches internationales, Paris) * CETOBAC( Centre d’études turques, ottomanes, balkaniques et centrasiatiques, -CNRS-EHESS-Collège de France- Paris) * CHDT (Centre d’Histoire du Domaine Turc, EHESS, Paris) * CITERES (UMR CItés, TERritoires, Environnement et Sociétés, Tours) * CRBC-EHESS (Centre de recherches sur le Brésil Contemporain) * EHESS (L’Ecole des Hautes Etudes en Sciences Sociales, Paris) * EMAM (Equipe Monde Arabe et Méditerranée), de l’UMR CITERES (Centre Interdisciplinaire CItés, TERritoires, Environnement et Sociétés, Tours) * DEMO (Département d’études moyen-orientales de l’Université d’Aix-Marseille) * EPHE (Ecole Pratique des Hautes Etudes, Paris) * GSRL (Groupe Sociétés, Religions, Laïcités (EPHE-CNRS), Paris) * GREMMO (Groupe de recherches et d’études sur la Méditerranée et le Moyen-Orient, Lyon) * IDEMEC (Institut d’ethnologie méditerranéenne, européenne et comparative, Aix-en-Provence) * IEP (Institut d’Etudes Politiques d’Aix-en-Provence) * IESR (Institut européen en sciences des religions) * IISMM (Institut d’études de l’Islam et des Sociétés du Monde Musulman) * IMéRA (Institut Méditerranéen de Recherches Avancées, Aix-en-Provence) * INALCO (Institut National des Langues et Civilisations Orientales) * INVISU (Information visuelle et textuelle en histoire de l’art : nouveaux terrains, corpus, outils) * IRD (Institut de recherche pour le Développement) * IRIS (Institut de recherche interdisciplinaire sur les enjeux sociaux-Sciences sociales, Politique, Santé) * IRSEA (Institut de recherche sur le sud-est asiatique);LACNAD-Centre de Recherche Berbère, Paris * LAMES (Laboratoire Méditerranéen de Sociologie, Aix-en-Provence) * LAS (Laboratoire d’Anthropologie Sociale, Paris) * MOM (Maison de l’Orient et de la Méditerranée, Lyon) * Orientalismes-séminaire de recherche-Paris * PACTE (Politiques Publiques, Actions Politiques, Territoires, Grenoble) * TELEMME (Temps, Espaces, Langages, Europe Méridionale, Méditerranée, Aix-en-Provence) * En Grande-Bretagne : * Faculty of Oriental Studies, University of Oxfor * MFO (Maison Française d’Oxford) * Middle East Centre, St Antony’s College de l’Université d’Oxford * School of Oriental and African Studies à Londres * Université d’Oxford * En Iran : * IFRI (Institut français de recherche en Iran) * En Israël : * CRFJ (Centre de Recherche Français de Jérusalem) * En Italie : * IsIAO (Istituto Italiano per l’Africa e l’Oriente) * Institut Français de Naples * En Jordanie : * IFPO (Amman, Institut Français du Proche-Orient) * Au Liban : * IFPO, Beyrouth (Institut Français du Proche-Orient) * Au Maroc : * Centre Jacques Berque de Rabat * GERM (Groupe d’Etudes et de Recherches sur la Méditerranée de Rabat) * Fondation du Roi Abdul Aziz Al Saoud de Casablanca * IRCAM (Institut Royal de la Culture Amazighe) * Université Hassan II de Casablanca * Université Mohamed V de Rabat * En Palestine : * Université Birzeit, Ramallah, Département d’Histoire * Au Pays-Bas : * University of Groningen, Fac. of Theology and Religious Studies * Au Soudan : * CEDEJ, Antenne de Khartoum * Université de Khartoum * En Syrie : * IFPO, Damas, Institut Français du Proche-Orient * En Tunisie : * IRMC (Institut de Recherche sur le Maghreb contemporain de Tunis) * ISSHT (Institut Supérieur des Sciences Humaines de Tunis) * Université de Tunis * En Turquie : * IFEA (Institut Français d’Etudes anatoliennes d’Istanbul) * Au Yemen : CEFAS (Centre Français d’Archéologie et de Sciences Sociales de Sanaa)",true,false,,"* La Lettre de l’IREMAM * Les Carnets de recherches à l’Iremam
https://Twitter.com/IREMAM7310 * Twitter","* Médiathèque de la MMSH * Bibliothèque de l’Université de Provence (Orient méditerranéen 1453-1900) * Centre des Archives d’Outre-mer (période coloniale) * Bibliothèque de la Méditerranée","* Portails de revues : * Persée * Anthropoweb * Portail de l’Anthropologue * Portail de Revues scientifiques algériennes * Revues.org * Ressources électroniques : * Annales islamologiques * CLEO * CN2SV * Crévilles * DOAJ * HAL-SHS * IRIS 2013 * MédiHAL * OAIster * Telma * Outils pour la recherche : * Bibenligne * Calenda * Guides de la recherche sur web * Histoire à la carte * Hypothèses * Karlsruher Virtueller Katalog * Blogs: Cultures et politiques arabe * Revue Averroès * Associations : * DIWAN * BRISMES * HALQA * IMA * MESA * WOCMES",,,201220307A,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201220307A&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201220307A,2017,https://fr.wikipedia.org/wiki/Institut_de_recherches_et_d%E2%80%99%C3%A9tudes_sur_le_monde_arabe_et_musulman 2019-12-13T17:02:02.752Z,2018-08-01T15:02:46.463Z,umr7220,false,ISP,UMR 7220,Institut des Sciences sociales du Politique,OK,http://www.isp.cnrs.fr/,Olivier Le Noe,olenoe@parisnanterre.fr,true,true,2009,"L’Institut des sciences sociales du politique (ISP) est une unité mixte de recherche du CNRS (UMR n° 7220) implantée sur les campus de l’Université Paris Nanterre et de l’École normale supérieure Paris-Saclay (anciennement ENS Cachan). Rattaché à l’Institut des sciences humaines et sociales du CNRS, l’ISP dépend des sections 40 (Politique, pouvoir, organisation) à titre principal, 36 (Sociologie et sciences du droit) et 33 (Mondes modernes et contemporains) du Comité national de la recherche scientifique. L’identité scientifique de l’ISP s’incarne dans la pluridisciplinarité, dans le souci réaffirmé de la « normalisation » de l’analyse des transformations politiques, des situations de fortes ruptures ou de la violence politique dans une attention particulière portée aux terrains, dans la conjugaison de la diachronie et de la synchronie et le maniement des jeux d’échelles (du local au global, en passant par le national et l’européen). L’approche bottom-up, l’enquête empirique et le comparatisme y demeurent largement partagés.",148,73,75,http://isp.cnrs.fr/?-Chercheur-e-s-82-,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7220&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=20&p_nbres=42&p_num_lab=22&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,75,* Science politique," * Policy transfer * Mémoire sociale * Criminologie * Histoire politique et institutionnelle * Politiques publiques * Sociologie politique * Systèmes politiques * Histoire et sociologie des systèmes autoritaires","* Genre, race et classe : du local au global * Production et circulation des savoirs, des normes et des techniques * Violences, conflits, mobilisations * Formations et transformations des États – Du jeu national à l’enjeu transnational ","* Programmes ANR : * UTIC : Liberté et protection des citoyens et des résidents * Autre programmes financée : * Appropriation sociale des expositions sur la Première Guerre mondiale : perspectives comparatives * Les ateliers Santé Ville , démarches localisées pour la réduction des inégalités sociales et territoriales de santé ? * Engagement politique et création graphique dans les années 1970/80 * Engagement, rébellion et religiosité * FUTSAL * Justirace * L’occupation allemande en Europe durant la Seconde Guerre mondiale * Osmose * MEMOLOI * Le labex : Les passés dans le présent : histoire, patrimoine, mémoire * Equipex Matrice * Programme 13 novembre","* Séminaire général * Séminaires thématiques : * Migrations: regards croisés * HiSoPo : « Saisir l’événement et le contexte. L’histoire sociale des idées politiques et ses méthodes » * Mémoire et usages publics du passé en Europe * Nouveaux champs d’étude en droit du patrimoine culturel * Les signes de la propriété * Construction de l'Etat et genèses du politique * La fin du Post-communsme ? Dynamiques politiques, socio-économiques et internationales en Pologne * L’actualité vue par la science politique * Analyse de données en sciences sociales * Sport et politique","* GIS Traduire en méditerrannée * Oxpo * ECPR * CONICET(Amérique latine) * Réseaux de memory et memorization - Chicago memory * ISPO Liban * CRJF Israël * Casa Velasquez * EUROM - European Observatory on Memories * MSA - Memory Studies Association * ULB * Université de Louvain (travail sur la mémoire en lien avec la Belgique et la Suisse) * Centre Franco-Allemand de Recherches en Sciences Sociales de Berlin (Centre Marc Bloch) * Politiques Publiques, Action Politique, Territoires (PACTE) * Centre de Recherches Sociologiques sur le Droit et les Institutions Pénales (CESDIP) * Centre Maurice Halbwachs (CMH) * Centre d'Études des Mondes Russe, Caucasien et Centre-Européen (CERCEC) * Centre Max Weber * Centre Émile-Durkheim - Science Politique et Sociologie Comparatives (CED) * GDR Mémoire * GDR NoST * GDR Connaissance de l'Europe Médiane * MSH Mondes * MSH Paris Saclay ",true,false,,* Twitter,"* Bibliothèque de Documentation Internationale Contemporaine * Bibliothèque de SciencesPo * Bibliothèque de l'université de Nanterre * Archives nationales et bibliothèques d'histoire (pour les historiens) * Bibliothèque Durkheim (droit, socio du droit) de l'ENS Cachan","* Accès aux revues en ligne, à distance par la bibliothèque de SciencesPo * Biblio-SHS * Cairn * Jstor * Ressources de l'ENS Cachan: portail de la bibliothèque centrale (300 revues électroniques)","* Pour l'ISP, à Nanterre : acquisition des ouvrages des membres de l'ISP * Pour la bibliothèque Durkheim : 80% des acquisitions suite à la demande des chercheurs et doctorants et 20 % par la veille, réalisée par la responsable","L'ISP ne propose aucune formation documentaire qui est mais proposée par l'ENS Cachan ou par l'Université Paris 10.
Pour la bibliothèque Durkheim, cela se fait au cas pas cas, à la demande des chercheurs. Elle se compose le plus souvent d'une formation à zotero et d'une démonstration des bases de données qu'ils pourraient utiliser (jstor, cairn) en fonction de leurs intérêts de recherche.",200612818L,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200612818L&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200612818L,2019, 2019-01-28T15:54:04.558Z,2018-08-01T15:02:46.455Z,umr5062,false,IAO,UMR 5062,Institut d'asie orientale,OK,http://iao.ish-lyon.cnrs.fr/,Béatrice Jaluzot,beatrice.jaluzot@ens-lyon.fr,true,true,1992,"Fondé en 1992 et installé sur le campus Descartes de l’Ecole Normale Supérieure de Lyon (ENS de Lyon) depuis 2002, l’IAO est une unité de recherche conjointe (UMR 5062) du Centre National de la recherche Scientifique (CNRS) et de trois établissements d’enseignement supérieur de l’Université de Lyon (PRES Lyon-Saint Etienne) : l’ENS de Lyon, qui est sa tutelle principale, ainsi que les Sciences Po Lyon et l’Université Lyon 2.",40,23,17,http://iao.cnrs.fr/spip.php?article5,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR5062&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=42&p_num_lab=8&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,8,* Lettres et langues,,"* Dynamiques juridiques et institutions de l’Extrême Orient * Espaces carrefours : flux, identités flottantes, gouvernance et mondes urbains * Création, représentations et marchés culturels","* Legalizing Space in China (LSC) : the shaping of the imperial territory through a layered legal system (http://lsc.chineselegalculture.org/) poursuite de l’ANR 2011-2014 * Unequal Treaties Corpus, Projet émergent de l’ENS de Lyon, 2018-2021",* Séminaires de l’IAO,"* Le centre est engagé dans des coopérations internationales avec d’autres équipes de recherche en Asie, en Amérique du Nord et en Europe (sans précision). * Laboratoire Aménagement, Économie, Transport (LAET) * Institut d'Études Transtextuelles et Transculturelles (IETT) * Réseau DocAsie",true,false,Certains membres de l’IAO déposent leurs productions sur HAL-SHS. Les documentalistes s’occupent de l’assistance pour le dépôt et de la gestion de la collection HAL-IAO.,"* Les publications et les communications scientifiques sont annoncées sur le site web et le blog du labo * Facebook, Twitter","* Bibliothèque de l’IAO * Bibliothèque Diderot de Lyon * Bibliothèque de Sciences Po Lyon","Les chercheurs de l’IAO utilisent toutes les ressources numériques fournis par la bibliothèque Diderot de Lyon et BibCnrs du CNRS. L’IAO met en disposition la plate forme « Numerica Sinica » des bases de données chinoises. * Le portail VCEA : Visual Culture in East Asia - Cultures Visuelles en Asie orientale est la plateforme générique de l’Institut d’Asie Orientale (IAO - UMR5062) pour les projets de recherche qui font appel aux matériaux visuels et cartographiques * Le portail Virtual Cities réunit les différents projets d’histoire numérique des villes d’Asie orientale que développement les chercheurs de l’IAO et leurs partenaires nationaux et internationaux * Le site Virtual Shanghai vise à écrire l’histoire de Shanghai en combinant photographies, cartes, SIG et technologies du numérique * Le site Virtual Beijing vise à écrire l’histoire de Beijing en combinant photographies, cartes, SIG et technologies du numérique * Le site Virtual Saigon vise à écrire l’histoire de Saigon en combinant photographies, cartes, SIG et technologies du numérique * Le Legalizing space in China consists of a translation of the Ming and Qing lüli, that is mainly the tiaoli that were codified from the 15th to the late 19th century * Le Supplice chinois est une base de données multilingue visant à examiner de manière critique le mythe du ""supplice chinois"". qui continue à déformer notre perception de la réalité chinoise * Le site Viêt-Nam Laos Cambodge, Sources et aides à la recherche a été créé en 2002 a été conçu dans un double souci d’offrir aux étudiants et aux chercheurs en sciences sociales sur le Vietnam, le Laos et le Cambodge un outil pour accéder aux principales données électroniques sur ces trois pays et valoriser les études sur cette région du monde * Le site Femmes & Guerres est dédié à la connais­sance des phé­no­mè­nes des guer­res et de leur rela­tion au genre au Vietnam * The Taiwan Bibliographical Resource provides a research instrument for scholars involved in the study of modern Taiwan * Le projet Common people and the artists in the 1930s explore une thématique d’histoire culturelle et sociale de la Chine. Il est actuellement en cours de redéploiement sous la forme de plateformes individuelles.","L’institut réserve toujours une certaine somme pour l’achat documentaire. La bibliothèque de l’IAO a été établie en 1993. Elle a acquis en 1998 les collections asiatiques de l’ex-IRCID du CNRS. Au fil du temps, elle s’est enrichie de milliers d’ouvrages sur les pays étudiés : Chine, Japon, Corée et Viêt-Nam. Son développement s’est appuyé sur : * les crédits du CNRS * la déconcentration de la recherche * la région Rhône-Alpes * le contrat Etat-Région (1994-1998). Depuis 2002, l’IAO a développé, avec le soutien de la Région, soucieuse de renforcer les liens de coopération avec la péninsule indochinoise, une politique d’acquisition documentaire sur l’Asie du Sud-Est en général et sur le Viêt-Nam en particulier. Cette politique a permis la constitution d’un fonds documentaire spécialisé qui compte à l’heure actuelle environ 7.000 volumes, dont plus de la moitié en langue vietnamienne.
Elle a également acquis des fonds importants sur l’Asie (Porée-Maspéro, Georges Boarel,Paul Mus) et des fonds particuliers de chercheurs ou d’institutions (Bibliothèque Nationale de Taïwan, Fondation de Corée). La bibliothèque de recherche de l’IAO mène une politique active d’identification et de préservation de fonds particuliers, principalement sur le Viêt-Nam et le Japon.",,199511753B,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199511753B&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199511753B,2017,https://fr.wikipedia.org/wiki/Institut_d%27Asie_orientale 2019-01-28T14:27:45.197Z,2018-08-01T15:02:46.466Z,umr7170,false,IRISSO,UMR 7170,Institut de Recherche Interdisciplinaire en Sciences Sociales,OK,http://irisso.dauphine.fr/fr.html,Dominique Meda,dominique.meda@dauphine.fr,true,true,2005,"Né de la fusion de l’Institut de recherche interdisciplinaire en sociologie, science politique et économie (IRISES) et du Centre d’études et de recherche en sociologie des organisations (CERSO), l’IRISSO a intégré au 1er janvier 2015 une nouvelle composante, l’équipe LCP (ex Unité propre de recherche du CNRS - Laboratoire de communication politique).",104,54,50,http://irisso.dauphine.fr/fr/membres.html,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7170&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=30&p_nbres=64&p_num_lab=36&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,32,"* Sociologie * Démographie","* Chômage * Cohésion sociale * Développement durable * Mutations sociales * Opinion publique * Organisation et structure * Politique publiques * Actions publiques * Politiques publiques * Relations professionnelles * Science politique * Sciences sociales de la ville * Sociologie du travail * Sociologie économique * Sociologie politique * Temps sociaux","* Capitalismes : finances, travail, entreprises * Sociologie politique de l'économie * Marchandisation et société * Frontières du salariat et politiques du travail et de l'emploi * Démocraties : gouvernement, savoirs, participations politiques et médias * Gouvernement des risques, normes, expertises * Politisations comparées et mobilisations * Education et formation * Langages, communication et politique - LCP * Themes de recherche transversaux : * Genre * International * Méthodes ","* ALCOV - « Analyse Localisée Comparée du Vote » * CAPLA - « Fragmentation du travail, marchandisation du « travail à-côté » : le capitalisme de plate-forme et ses impacts sociaux » * MEADOW - ""The MEAnings of DOWnsizing: Evidence from France 1996-2015"" * REGULRISK - ""Régulation des risques sanitaires, intérêts économiques et innovations industrielle"" * IRIS Etudes globales - ""Globalstates: Les états à l'épreuve de l'investissement financier global"" * POLTUR - « Espaces, réseaux et circulations. Les reconfigurations du politique en Turquie » * CARTAJE-MED-Coopération et action de recherche avec la Tunisie : associatif, journalisme et enseignement – Méditerranée et Démocratie * Resendem-Les grands réseaux techniques en démocratie : innovation, usages et groupes impliqués, dans la longue durée (France et Europe, de la fin du 19e s. au début du 21e s.) * Chimères nano-biotechnologiques et post-humanité : sociologie des controverses sur les mutations du genre humain annoncées par la nanosciences","* Séminaire du laboratoire * Séminaire Sociologie politique du syndicalisme * Séminaire interdisciplinaire: Algorithmes et Droit(s)","* Laboratoire d'Économie et de Sociologie du Travail (LEST) * Triangle: Action, Discours, Pensée Politique et Économique * Laboratoire de Recherche en Informatique (LRI) * Institutions et Dynamiques Historiques de l'Économie et de la Société (IDHES) * Centre Franco-Allemand de Recherches en Sciences Sociales de Berlin (Centre Marc Bloch) * Centre d'Économie de la Sorbonne * Groupe de Recherche en Droit, Économie et Gestion (GREDEG)",true,false,,"*Newsletter * Facebook, Twitter, Youtube, Linkedin, flux RSS",Bibliothèque de l'Université Paris Dauphine.,,"Nouvelle politique de répertoration des ouvrages, en cours",,200512552B,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200512552B&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200512552B,2017, 2019-01-28T15:54:04.558Z,2018-08-01T15:02:46.474Z,umr8238,false,LEGS,UMR 8238,Laboratoire d'études sur le genre et la sexualité,OK,http://www.legs.cnrs.fr/,Anne Emmanuelle Berger,anne.berger@legs.cnrs.fr,true,false,2014,"Première UMR interdisciplinaire dédiée aux études de genre et de sexualité, le LEGS a été créé en 2014 à l’initiative de l’INSHS, sur proposition de l’université Paris 8 Vincennes Saint-Denis, et avec l’université Paris Ouest Nanterre. L’unité a entamé sa carrière institutionnelle au 1er janvier 2015.",39,19,20,http://www.legs.cnrs.fr/spip.php?article5,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8238&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=50&p_nbres=64&p_num_lab=56&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,32,,,"* Théorie(s), Discours, Langues * Politique, Esthétique et Poétique des corps * Genre, Race, Nation * Care, Ethique, Education","Projets Lauréats * Genre et sexualité en migration : « laisser la parole » sans « parler à la place » * Genre et Transmission. Pour une autre archéologie du genre","* Séminaire LEGS / Sophiapol « Genre et transmission : pour une autre archéologie du genre » * Séminaire doctoral * Séminaire inter-universitaire","* Accords généraux de Paris 8 : * La MICEFA (avec les universités nord-américaines) * Le CREPUQ (Conférence des Recteurs et des Présidents d’université du Québec) * l’université de Brown (USA) * l’université de Cornell (USA) * Conventions entre le Centre EF/EG de Paris 8 et diverses institutions étrangères : * le Centre « Dona y Literatura » de l’université de Barcelone, Catalogne/Espagne * la faculté des Lettres de Cornell University (NY, Etats-Unis) * le CIRSDE de Turin * la Scuola dottorale di umanistica de l’Université de Trieste * l’université de Kinshasa (Centre d’études féminines), Congo * le réseau international francophone « Genre, Droit, Citoyenneté » (l’Agence Universitaire de la Francophonie) * l’Université Fédérale do Paranà (Curitiba, Brésil) * le NIELM de l’Université Fédérale de Rio de Janeiro (Brésil)",,false,,Newsletter en projet,"Bibliothèque de l'université de Paris 8, bien fourni en études de genre",,"Les UFR d'études de genre, dont beaucoup de membres du laboratoire font partie, collaborent avec la bibliothèque pour les ressources en études de genre.",,201521691S,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201521691S&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201521691S,2017, 2019-01-28T15:54:04.178Z,2018-08-01T15:02:46.464Z,umr8533,false,IDHES,UMR 8533,Institutions et dynamiques historiques de l'économie et de la société,OK,http://www.idhes.cnrs.fr/,Marie Buscatto,marie.buscatto@univ-paris1.fr,true,true,1997,"L’IDHE.S, Institutions et Dynamiques Historiques de l’Economie et de la Société, est une Unité Mixte de Recherche (UMR 8533) créée en 1997 entre le CNRS et des partenaires universitaires, en regroupant les apports de l’Institut d’Histoire Économique et Sociale (IHES) fondé par Ernest Labrousse, du Centre d’Étude des Croissances fondé Maurice Lévy-Leboyer et ceux du GDR « Institutions Emploi et Politiques Économiques » fondé par Robert Salais.
Depuis, l’IDHE.S a intégré des sociologues venant de différents horizons, ce qui en a fait un laboratoire véritablement interdisciplinaire. L’arrivée en Janvier 2011 du Laboratoire Georges Friedmann (LGF) de Paris Panthéon-Sorbonne et celle du Laboratoire d’Histoire Economique, Sociale et des Techniques (LHEST) de l’Université d’Évry-Val d’Essone en Janvier 2013 ont complété cette dynamique.
L’IDHE.S compte aujourd’hui 60 membres permanents et 100 doctorants.",167,65,101,http://www.idhes.cnrs.fr/equipe/chercheurs-et-enseignants-chercheurs-permanents/,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8533&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=50&p_nbres=64&p_num_lab=59&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,89,"* Histoire et civilisations : histoire des mondes modernes, histoire du monde contemporain, de l'art","* Europe occidentale * Institutions de l'économie, XIXe siècle, XXe siècle * Histoire du travail * Histoire sociale","* Travail : Entreprises, professions, professionnalisation * Savoirs : Capacités, formation, innovations * Capitaux : Monnaies, finances, financement","* Projet ISIS (Interactions entre Science, Innovation et Société) * Du genre de la critique d’art. Une recherche comparative de dimension internationale * Le prix du travail. France et espaces coloniaux. XIXe-XXIe siècles * Gouverner les migrations internationales * Marchés monétaires et politiques monétaires du XVIIIe-XXe siècles * RE-Invest : Rebuilding an Inclusive Value-based Europe of Solidarity and Trust through Social Investments","* Séminaire doctoral (Université Paris Ouest) * Séminaire Idées (Université Paris Ouest) * Migrations, regards croisés (Université Paris Ouest) * Assurance, enseignement et expertise (Université Paris 1 Panthéon Sorbonne) * Chiffres privés, chiffres (rendus) publics (Paris 1) * Histoire sociale et politique de l’économie au XIXe et XXe siècles (Paris 1) * L’emploi à tout prix ? (Université Paris Ouest) * Enquête sur les enquêtes ouvrières (EHESS) * Les populations noires en France (Université Paris 8) * État, travail et société (ENS Ulm) * Lignes d’effervescence en sociologie des groupes professionnels (Université Paris Ouest) * Histoire sociale et économique du politique (Bibliothèque du CHS du XXe siècle) * Valeur, prix et politique (IDHES – ENS Cachan) * Le travail artistique à l’épreuve du genre (EHESS) * Les signes de la propriété (IDHES – ENS Cachan)","* IDEX Paris Saclay * RE-Invest : Rebuilding an Inclusive Value-based Europe of Solidarity and Trust through Social Investments (Contrat européen)",true,false,,Compte Youtube et Twitter,"* Centre de documentation de l'ISST (Institut des Sciences Sociales du Travail, Paris 1) * Bibilothèque Durkheim (ENS Cachan) * Bibliothèque de IHES (Institut d'Histoire économique et sociale)",,,,199812861T,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199812861T&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199812861T,2017, 2019-01-28T15:54:04.558Z,2018-08-01T15:02:46.476Z,umr3320,false,LISE,UMR 3320,Laboratoire Interdisciplinaire pour la sociologie économique,OK,http://lise-cnrs.cnam.fr/lise-cnam-cnrs-laboratoire-interdisciplinaire-pour-la-sociologie-economique-accueil--458135.kjsp,Olivier Giraud,olivier.giraud@cnam.fr,true,true,2004,,78,41,37,http://lise-cnrs.cnam.fr/les-membres-du-lise/,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR3320&p_int=LISE&p_lab=UMR&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=3&p_num_lab=0&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,38,"* Lettres * Langues",,"* Axe PAS : Politiques & action sociale * Axe Travail : Travail * Axe G2D : Genre, droit & discriminations","* PICRI - Macro paramètres pour micro industrie: Une nouvelle figure du ""designer producteur"" sur le territoire * CNAF - Être parent face aux institutions * Dans le cadre du Pres HESAM : Croyre, Croyance et représentations économiques des acteurs des marchés du travail. Companormes, Comparer les normes d’emploi comme modes de mobilisation de la main d’œuvre * CFDT : Négociation de branche en EuropeTIPPE, Insertion professionnelles et expériences d’accompagnement du retour à l’emploi des personnes éloignées de l’emploi * DREES : Politiques de mode de garde et d’accueil des jeunes enfants. Transversalité dans les politiques sociales locales : acteurs, représentations, normes et gouvernance * LabEx Sciences, Innovation et techniques en société","* Le séminaire éphemere * Le séminaire de l'axe PAS * Le séminaire de l'axe Travail * Le séminaire de l'axe G2D * Le séminaire des doctorants","* Centre de SHS dans le CNAM * Centre d'étude de l'mploi (CEE) * CRPD (du CNAM) * LIRFA",true,false,Préconisation pour déposer les publications sur HAL-SHS,"* Newsletter dans les cartons * Site web actualisé * Happy hour du LISE : espace de valorisation des résultats de recherche ou sur une publication d'ouvrage","* CNAM * BnF * Bibliothèque de Sciences Po * CDFT au Cnam : archives ouvertes, centre de documentation et de formation sur le travail",BibCnrs,,Formation sur HAL et les archives,201119435G,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201119435G&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201119435G,2017,https://fr.wikipedia.org/wiki/Laboratoire_interdisciplinaire_pour_la_sociologie_%C3%A9conomique 2019-01-28T15:54:04.559Z,2018-08-01T15:02:46.480Z,umr5115,false,LAM,UMR 5115,Les Afriques dans le monde,OK,http://www.lam.sciencespobordeaux.fr/,Dominique Darbon,d.darbon@sciencespobordeaux.fr,true,true,2011,1958 : accord entre FNSP et IEP Bordeaux - Le Centre d'Etudes d'Afrique Noire (CEAN) et le Centre d'études et de recherches sur les pays d'Afrique orientale (CREPAO) deviennent LAM en 2011,130,52,78,http://www.lam.sciencespobordeaux.fr/fr/page/chercheurs-enseignants-chercheurs,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR5115&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=10&p_nbres=42&p_num_lab=10&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,74,* Science politique,"* Science politique * Afriques * Comparatisme * Histoire * Mondes émergents * Régimes politiques * Politiques publiques * Environnement * Littératures * Philologie * Normes et systèmes de droit * Territoires * Espaces * Economie du développement","* Axe 1: État, Institutions et Citoyennté * Régimes politiques, élections et systèmes partisans * L’état au quotidien * Négocier et contester l’État * Axe 2: Ressources, Inégalités, Conflits * Systèmes de production, économies globalisées et distribution des ressources * Pauvreté et inégalités * Protestations, violences, guerres * Axe 3: Imaginaires, Circulations, Médiations * Circulations, mobilités, migrations * Productions artistiques, pouvoirs et citoyenneté * Configuration identitaire et lectures du passé","* Conseil Régional Aquitaine : Ce que l’art fait à la citoyenneté. Processus de citoyenneté et configurations mémorielles dans les arts de la scène (théâtre et musique) * Conseil Régional Aquitaine : Faire des politiques publiques en Afrique * AFD : Faire des politiques publiques en Afrique * ANR - Création, patrimonialisation et marchandisation dans le monde des roses. * ESRC/SOAS : Resilience in West African Frontier Communities * Coopération entre LAM et l'USJPB pour le développement des sciences politiques à l'université ","* Séminaire d'Actualité * Séminaire Général * Séminaire des doctorants * Séminaire Santé, Sciences sociales * Séminaire d'économie du développement avec le GREThA * Atelier ""La fabrique filmique en sciences sociales"" * Séminaire du Réseau Aquitain des Jeunes Africanistes (RAJA) * Séminaire ANR Globafrica - LAM-UPPA, master HCP UPPA ","* Associations de recherche-action et formation appliquée : * L’Institut des Afriques * SO Coopération * Genre en Action * IFAID Aquitaine * Collectivités territoriales et Ministères : * Conseil général de Gironde * Conseil régional d'Aquitaine * Ville de Bordeaux * Ministère des Affaires Étrangères * Ministère de la Défense * Nationaux : * CEPEL (Centre d’Études Politiques de l’Europe latine de Montpellier) * CERI (Centre d'étude des relations internationales) * IEP de Toulouse * IPEALT (Institut pluridisciplinaire pour les Études sur l'Amérique latine de Toulouse) * IRD (Institut de Recherche pour le développement) * FNSP (Fondation nationale de Sciences politiques) * Internationaux : * AEGIS (Africa-Europe group for Interdisciplinary studies) * AISA (Africa Institute of South Africa, Pretoria, Afrique du Sud) * ASC (African Studies Centre, Boston, USA) * ASC (Afrika Studiecentrum, Leiden, The Netherlands) * AUF (Agence universitaire de la Francophonie) * CEDEJ (Centre d'Études et de Documentation Économiques, Juridiques et Sociales, CNRS/MAE, Khartoum, Soudan) * CEsA (Centro de Estudos sobre Africa e do Desenvolvimento, Lisbonne, Portugal) * CODESRIA (Conseil pour le développement de la recherche en sciences sociales en Afrique) * ECPR (European consortium for political research) * IAS (Institute for African Studies, University of Bayreuth, Allemagne) * IDS (Institute of Development Studies, Sussex, GB) * IFAN (Institut fondamental d'Afrique noire, Dakar, Sénégal) * IFRA (Institut français de recherche en Afrique, Nairobi, Kenya et Ibadan, Nigeria) * IFAS (Institut français d'Afrique du Sud, Johannesburg, Afrique du Sud) * IRIC (Institut des Relations internationales du Cameroun, Yaoundé, Cameroun) * ISEG (Instituto Superior de Economia e Gestão, Universidade Técnica de Lisboa, Portugal) * James Coleman African Studies Center (University of California, Los Angeles, USA) * SOAS (School of Oriental and African Studies, London, G.-B.) * University of Khartoum (Soudan) * Université des sciences Juridiques et Politiques de Bamako, Mali * Universités et Centres de Recherche : * Université Bordeaux * Université Bordeaux Montaigne * Université de Pau et des Pays de l’Adour (UPPA) * Passages (Territoire, Environnement, Dispositifs de normalisation de la réalité, Corps et sujets )/CNRS UB, UBM, UPPA et ENSAP) * CED (Centre Émile Durkheim - UMR CNRS / Sciences Po Bordeaux/UB) * COMPTRASEC (UMR CNRS / Univ. Bordeaux) * GREThA, Univ. Bordeaux * ISPED, Univ. Bordeaux * MSH-A (Maison des Sciences de l'Homme d'Aquitaine)",true,true,,"Diffusion au travers : * du site internet et de la fiche personnelle des chercheurs * de la lettre d'information qui paraît 3/4 fois par an : nouvelles de l'équipe, rencontres, publications, toutes les actions de valorisation * Canaux de diffusion du CNRS : lettre hebdomadaire avec toutes les rencontres et communications","* Bibliothèque du LAM (qui constitue, avec la bibliothèque du Centre Emile Durkheim, la bibliothèque de recherche de Sciences Po Bordeaux) * Bibliothèque universitaire de Lettres et Sciences humaines de l’Université Bordeaux Montaigne * Bibliothèque universitaire Droit, science politique, économie de l'Université de Bordeaux * Centre d'Information Scientifique et Technique Regards du CNRS","Les ressources numériques sont liées à l’appartenance administrative des enseignants et chercheurs, principalement : * Ressources numériques de la bibliothèque de Sciences Po Bordeaux http://www.sciencespobordeaux.fr/fr/vie-etudiante/documentation/les-ressources-en-ligne.html * Ressources numériques des bibliothèques de l’Université Bordeaux Montaigne http://scd.u-bordeaux-montaigne.fr/contenus/tout * Ressources numériques des bibliothèques de l’Université de Bordeaux http://busec2.u-bordeaux.fr/atrel/affiche.php?nocas * Ressources numériques des bibliothèques de l’Université de Pau et des pays de l'Adour https://bibliotheques.univ-pau.fr/fr/documentation/bases-de-donnees.html * Ressources numériques du CNRS https://bib.cnrs.fr/ ","La politique d'acquisition du LAM dépend des axes de recherche du laboratoire http://lam.sciencespobordeaux.fr/fr/page/axes-et-programmes-de-recherche , ainsi que des programmes de recherche ponctuels http://lam.sciencespobordeaux.fr/fr/page/programmes-de-recherche ","Des formations sont proposées par les personnels de la documentation pour tous les nouveaux arrivants : présentation des ressources de LAM, de la bibliothèque de Sciences Po Bordeaux, des ressources du réseau bordelais, etc. La bibliothèque organise également à la demande des présentations pour les doctorants et chercheurs invités, notamment à l'utilisation des bases de données.",199611800Y,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199611800Y&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199611800Y,2017,https://fr.wikipedia.org/wiki/Les_Afriques_dans_le_monde 2019-01-28T15:54:04.559Z,2018-08-01T15:02:46.478Z,umr8134,false,LATTS,UMR 8134,"Laboratoire techniques, territoires et sociétés",OK,https://latts.fr/,Valérie November,valerie.november@enpc.fr,true,true,1985,"Le laboratoire Techniques, territoires et Sociétés a été fondé en 1985 par Henri Coing, Gabriel Dupuy et Pierre Veltz (directeur de 1985 à 1997), en collaboration entre l’Ecole nationale des ponts et chaussées et l’Institut d’Urbanisme de Paris. C’est aujourd’hui une unité mixte de recherche (UMR 8134) qui associe le CNRS, l’Ecole des ponts ParisTech et l’Université Paris-Est Marne-la-Vallée (UPEM). Elle compte une quarantaine de chercheurs et enseignants-chercheurs statutaires issus de ces trois institutions, une trentaine de doctorants, une équipe administrative de sept personnes ainsi qu’une documentaliste.",86,35,51,https://latts.fr/chercheur/,,,"* Sociologie * Démographie","* Science technologie et société * Sociologie","* Risques urbains et environnementaux - RUE * Economie politique de la production urbaine - EPPUR, * Savoirs, Cultures techniques, Territoires - SCT * Infrastructures Numériques - InfraNum * Gouvernement technique des entreprises et des administrations - GTEA * Infrastructure, politiques et mondes urbains - IPMU","Projet de recherches en cours : * La refondation de l’urbanisme tunisien dans la période (post-)révolutionnaire : enjeux, espaces, acteurs, processus * Modélisation appliquée et droit de l’urbanisme : climat urbain et énergie (mapuce) * Evaluation multidisciplinaire et requalification environnementale des quartiers (eurequa) * Une approche longitudinale (1978-2013) du système national du logement au moyen du modèle asha * Chaire ville de l’ecole des ponts Paristech * Les politiques de la nuit : ordre public, ordre sanitaire, ordre social * Ouvrage sur l’union syndicale solidaires * Les grandes entreprises face au changement. Accompagner les évolutions des métiers et des fonctions dans les grandes organisations publiques : un regard sociologique * Villes et transitions énergétiques : enjeux, leviers, processus et évaluation prospective pluridisciplinaire. Application à la région Ile-de-France",,,true,false,,Newsletter,Bibliothèque de l'Ecole des ponts (La Source) et bibliothèques des laboratoires.
Fonds très riche en urbanisme,"* Ressources numériques proposées par l'Ecole des Ponts ParisTech * BibCnrs * Ressources numériques proposées par l'UPEM","L'acquisition d'ouvrages pour le fonds documentaire du laboratoire est historiquement basée sur les suggestions d'achat des chercheurs. Dans le fonds documentaires du LATTS : la thématique Sciences politiques regroupe un peu plus de 200 ouvrages.","Ressources électroniques, Zotero, Hal et open access, etc.",200212790Y,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200212790Y&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200212790Y,2017, 2019-01-28T15:54:04.560Z,2018-08-01T15:02:46.477Z,umr7305,false,LAMES,UMR 7305,Laboratoire méditerranéen de sociologie,OK,http://www.lames.cnrs.fr/,Pierre Fournier,pierre.fournier@univ-amu.fr,true,true,2012,,46,19,27,http://www.lames.cnrs.fr/spip.php?article86,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7305&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=30&p_nbres=64&p_num_lab=39&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,21,"* Sociologie * Démographie","* Économie * Sociologie * Formes urbaines * Gouvernement urbain * Nouvelles technologies * Sciences sociales de la ville * Sociologie de l'art * Littérature * Communications * Sociologie de la santé * Problèmes sociaux * Sociologie du droit * Justice * Criminologie * Police","* Questions environnementales et dynamiques sociales territorialisées. Urbanités, industries, énergies, risques, groupes sociaux * Recompositions migratoires en Méditerranée : mobilités, genre, frontières * Education et cultures à l’ère numérique * Déviance et action publique","* ATRI 2015 - L’Espace de liberté, de sécurité et de justice, une politique publique de l’Union européenne en quête de modèle ? * Projet 2015 THUMCARI - Tourism and Heritage Uses of the Mediterranean Coast Adjacent to Risk Industry * Projet 2016 Projet franco-italien Galilée * Projet MOVIDA - MObilités Voyages Innovations et Dynamiques dans les Afriques méditerranéenne et subsaharienne * Projet GIS ’Institut du genre * ANR SODEMOMED - Sociologie et démographie des transformations des modes de vie en Méditerranée * ATRI 2014 - RAPPORTS AU ET DE TRAVAIL DANS LA MONDIALISATION. Implantations et partenariats d’entreprise au Maghreb. RTM-IPEM * Cassis : un karst à explorer entre arts et sciences * DEMOFEMED – Dynamiques des populations en Méditerranée : la féminisation en question","* Séminaire du LAMES 2015-2016 : * Séquence 1 – Classes et inégalités sociales * Séquence 2 – Des problèmes sociaux aux problèmes sociologiques : migration, religion et genre * Séquence 3 – Généraliser en sciences sociales et épistémologie des sciences sociales","* Convention avec l’IRTS * Convention avec la FCSH - UNL (2014) * Convention de partenariat scientifique avec la Faculté des sciences de l’éducation (FSE), université Mohamed V, Rabat",true,false,,"""Carnet d'hypothèse"" (type blog) pour certains chercheurs ou blogs personnels de chercheurs",Médiathèque de la MMSH (Maison méditerranenne des Sciences de l'homme),,,,201220309C,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201220309C&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201220309C,2017, 2019-01-28T15:54:04.560Z,2018-08-01T15:02:46.482Z,usr3683,false,MSH-PARIS-SARCLAY,USR 3683,Maison des sciences de l'Homme - Paris-Saclay,OK,http://msh-paris-saclay.fr/,Stefano Bosi,contact@msh-paris-saclay.fr,true,false,2015,,6,4,2,http://msh-paris-saclay.fr/bureau-de-msh-paris-saclay/,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=USR3683&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=10&p_nbres=64&p_num_lab=19&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,,,,"* Numérique et humanités * Environnement et santé * Transition et innovation",,"* Séminaire IRS ACE-ICSEN (Initiatives de Recherche Statégiques-Adaptation aux Changements Environnementaux de l’Institut des Changements Socio-Environnementaux) * Séminaire IRS MOMENTOM (MOlecules and Materials for the ENergy of TOMorrow) * Séminaire MSH PARIS-SACLAY / NUTRIPERSO",* Réseau National des Maisons des Sciences de l’Homme - RNMSH,,false,,"* Twitter * Le CVT Athéna",,,?,?,201521827P,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201521827P&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201521827P,2016, 2019-04-24T16:57:42.810Z,2018-08-01T15:02:46.459Z,umr8171,false,IMAF,UMR 8171 UMR 243,Institut des mondes africains,OK,http://www.imaf.cnrs.fr/,Hervé Pennec et Fabienne Samson,herve.pennec@univ-amu.fr,true,true,2014,"L’Institut des mondes africains (IMAF), est créé au 1er janvier 2014 par la fusion de trois laboratoires : * le Centre d’études des mondes africains (CEMAf) * le Centre d’études africaines (CEAf) * le Centre d’histoire sociale de l’islam méditerranéen (CHSIM)",220,74,146,http://www.imaf.cnrs.fr/spip.php?article166,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8171&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=50&p_nbres=64&p_num_lab=51&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,151,"* Histoire et civilisations : histoire des mondes modernes, histoire du monde contemporain, de l'art","* Afrique australe * Afrique centrale * Afrique de l'est * Afrique de l'ouest * Afrique du nord * Afrique saharienne * Afrique subsaharienne, XIXe siècle, XVIIIe siècle, XVIIe siècle, XVIe siècle, XXe siècle * Antiquité * Antiquité gréco-romaine * Histoire de la santé et du corps * Histoire des arts * Histoire des techniques * Histoire du travail * Histoire politique et institutionnelle * Histoire sociale * Histoire économique * Moyen âge * Proche orient antique","* Axe 1: Fabrique et circulation des savoirs * Axe 2: Mondialisations africaines dans la longue durée et globalisation * Axe 3: Pouvoirs, espaces, mémoires * Axe 4: Dynamiques religieuses, représentations, expériences * Axe 5: L’art du politique, le politique de l’Art * Axe 6: Genre, corps, subjectivités","* Le site d’Aix-en-Provence participe au LabexMed (les sciences humaines et sociales au cœur de l’interdisciplinarité pour la Méditerranée) * L’IMAF est engagé dans le Laboratoire d’excellence HASTEC (Histoire et anthropologie des savoirs, des techniques et des croyances) * L'IMAF est engagé dans le Labex TEPSIS (Transformation de l’État, politisation des sociétés, institution du social, ressource pour mieux comprendre les sociétés contemporaines) * ANR EInSA : L’État et les institutions face à la sorcellerie dans l’Afrique contemporaine * Espaces privés religieux : individus, expériences ordinaires et dynamiques religieuses en Afrique de l’Ouest (programme ANR Priverel) * Mobilisations et identités en Afrique de l’Ouest (XIXe –XXIe siècles)","* Anthropologie comparative du sahel occidental musulman (Sénégal, Mauritanie, Mali…) * Nouvelles perspectives sur l’histoire du Maghreb (XVIIIe-XXIe siècle) * Anthropologie politique de la mémoire : acteurs, artefacts, archives * Actualité de la recherche en Afrique de l’Est : textes et terrains * Religion et développement * Séminaire de formation à la recherche en Afrique (SéFRA) * Dialogues et savoirs : construction et reconstruction des connaissances en études africaines * Dynamiques du genre en Afrique * L’adab : une éducation et un idéal d’accomplissement humain (VIIe-Xe siècles) * Islam(s) d’Afrique. Acteurs, cultures religieuses, espaces sacrés * Actualité du religieux en Afrique. Mobilisations, conflits, réconciliations * Les Afriques dans la longue durée : acteurs, savoirs, pratiques (XVe-XXe siècle) * Parcours anthropologiques dans le monde arabe (ethnographie, littérature, arts, archéologie, orientalisme) * Tourisme : recherches, institutions, pratiques * Histoire sociale de l’Afrique Orientale, de la Mer Rouge et de l’Océan indien, XIXe-XXe siècles : archives, corps, subjectivités * Anthropologie critique de l’État : variations autour du fétichisme d’État * Anthropologie historique des pratiques religieuses dans l’Islam méditerranéen * Supports et circulation des savoirs et des arts en Afrique et au-delà * Savoirs, institutions, économies. Histoires connectées et dynamiques globales. Knowledge, Institutions, Economies. Connected histories and global dynamics * Pour une anthropologie visuelle pluridisciplinaire et multimédia * Séminaire de l’IMAF-Aix, 2015-2016 * Royautés. Pouvoir et savoir en monarchie * Guerres électorales ou violences électorales ? * Guerres, conflits et sociétés au XXIe siècle * Doctorants dans le monde arabe","* Africa-Europe Group for Interdisciplinary Studies (AEGIS) * Travaux de Recherches Archéologiques sur les Cultures, les Espaces et les Sociétés (TRACES) * Centre Français d'Études Éthiopiennes à Addis Abeba (CFEE) * Centre de Recherches en Histoire Internationale et Atlantique (CRHIA) * Afrique au Sud du Sahara * les Afriques dans le Monde (LAM) * Langage, Langues et Cultures d'Afrique Noire (LLACAN) * Laboratoire d'Anthropologie Sociale (LAS)",,,,"* Le carnet de recherche du programme PRIVEREL * La Lettre d'informations de l'IMAF","* La Bibliothèque de recherches africaines (BRA) * La bibliothèque d’Ivry * La Médiathèque de la MMSH * La bibliothèque du CEAf * Bibliothèque universitaire des langues et civilisations (BULAC)",,,,200212721Y,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200212721Y&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200212721Y,2017,https://fr.wikipedia.org/wiki/Institut_des_mondes_africains 2019-01-28T15:54:04.561Z,2018-08-01T15:02:46.485Z,usr3124,false,MSH-E,USR 3124,Maison des sciences de l'Homme et de l'environnement Claude Nicolas Ledoux,OK,https://mshe.univ-fcomte.fr/,Philippe Barral,Philippe.Barral@univ-fcomte.fr,true,false,2008,"Reconnue en 2004 par le réseau national des MSH et par le CNRS, la MSHE Ledoux est devenue une unité mixte de service et de recherche, USR 3124 (CNRS et UFC - UTBM), depuis le 1er janvier 2008. Depuis 2012, elle est également une Fédération de recherche (FED 4209) reconnue par le Ministère.",38,15,23,https://mshe.univ-fcomte.fr/la-mshe/contacts,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=USR3124&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=42&p_num_lab=2&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,17,,,"* Dynamiques territoriales : * Construction des territoires dans la longue durée * Observation des territoires d'aujourd'hui * Environnement : ressources et paysages : * Ressources environnementales et innovations techniques * Ecosystèmes cultivés et pâturés * Aménagement de l'environnement et qualité de vie * Normes, Pratiques et Savoirs : * Sociétés en mutation * Action éthique et travail des normes * Pratiques savantes : concepts, réseaux, objets * Archive, bases, corpus : * Outils, méthodes et épistémologie de l'analyse du discours sur corpus numériques * Travaux en sciences humaines sur corpus numériques * Comportements, risques, santé : * Vulnérabilités individuelles et collectives * Théorie de la prise de décision et du changement * Axe transversal : « transmission, travail, pouvoir »","* TEPIK - Territoire et pouvoir : l’Istrie et le Kvarner (2016-2020) * ECCE GLOCUS. Espaces en Crise,crise de l'espace – Glocalisation Littérature Organisation spatiale Cinéma Urbanisme Sociologie (2016-2019) * Normes et pratiques foncières et agricoles dans le monde (2016-2026) * ORTEP Revitalisation - Observer, analyser et accompagner la revitalisation territoriale (2017-2022) * Écosystèmes Méditerranéens, Climat et Civilisation - EMC2 (2016-2020) * ROMAN SEA-Rétro-Observation Méditerranéen sur l'Anthropisation des milieux (2011-2020) * La sidérurgie en Bourgogne Franche-Comté avant le haut-fourneau - organisation et circulation des productions (2017-2020) * TEPFPEC - Télédétection pour l'Etude des Paysages Forestiers Passés et Contemporains (2015-2019) * Impacts environnementaux de l'urbanisation (2016-2019) * Responsabilité environnementale (2016-2018) * Art et politique (2017-2021) * Dialogue interculturel des arts de la scène sur les cinq continents (2017-2021) * Capture des juges (2016-2021) * Arts visuels contemporains et anthropologie : les arts du Grand Sud et la redéfinition des musées ethnographiques en Europe et aux Etats-Unis (2017-2021) * CITELA - Carrefour interdisciplinaire textométrie, linguistiques, analyse de discours (2017-2018) * Oculomotricité, cognition et processus thymique : aspects normaux et pathologiques (OCT) (2016-2021) * Psychologie et prestidigitation (2016-2021) * Prise de décision et processus attentionnels (2009-) * Attention et optimisation de l'apprentissage (2015-2021)",* Les jeudis de la MSHE,"* LMC-Laboratoire Métallurgies et Cultures (UMR 5060) * ThéMA-Théoriser et Modéliser pour Aménager (UMR 6049) * Laboratoire Chrono-Environnement (UMR 6249) * Centre Lucien Febvre (EA 2273) * Logiques de l'agir (EA 2274) * Laboratoire de Psychologie (EA 3188) * Laboratoire de Sociologie et Anthropologie (EA 3189) * CRESE-Centre de recherche sur les stratégies économiques (EA 3190) * CRIT- Centre de Recherches Interdisciplinaires et Transculturelles (EA 3224) * CRJFC-Centre de Recherches Juridiques de l'Université de Franche-Comté (EA 3225) * ISTA-Institut des Sciences et Techniques de l'Antiquité (EA 4011) * C3S-Culture, Sport, Santé, Société (EA 4660) * ELLIADD-Édition, Langages, Littératures, Informatique, Arts, Didactiques, Discours (EA 4661) * IRTES-RECITS-Institut de recherche sur les Transports, l'Énergie et la Société, laboratoire RECITS (EA 7274) * CREGO-Centre de Recherche en Gestion des Organisations - antenne bisontine (EA 7317)",,false,,"* Site internet * Cahiers de la MSHE * Lettre d'information",,,,,200810879V,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200810879V&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200810879V,2016, 2019-01-28T15:54:04.561Z,2018-08-01T15:02:46.484Z,usr3491,false,MSH-ANGE GUEPIN,USR 3491,Maison des sciences de l'Homme et de la société Ange Guépin,OK,http://www.msh.univ-nantes.fr/,Arnaud Leclerc,Arnauld.Leclerc@univ-nantes.fr,true,false,1993,"La Maison des Sciences de l'Homme Ange-Guépin est un Groupement d'intérêt public (GIP) créé en 1993.
C'est donc une institution jeune, construite sur des objectifs et des instruments originaux. L'une de ses originalités fortes est précisément d'être un GIP et de constituer ainsi un partenariat particulièrement fécond entre institutions de natures différentes mais toutes réellement intéressées à son projet. institut d'etude avancées de nantes depuis 8 ans, pol doc differente dabs un lieu commun, question msh du lien social, fond documentaire : effort financier sur l'achaht de revue internationale de shs. ressources electronique. suppression revue vers electronique, -> accueil fond de chercheur de don. moins science politisqu plus monographue de chercheur. socio des religion, droit du travail, fond lié a des projets. droit agroalimentaiure.",30,9,21,http://www.msh.univ-nantes.fr/33101887/0/fiche___pagelibre/&RH=1215434913207&RF=1158677500543,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=USR3491&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=10&p_nbres=64&p_num_lab=17&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,26,,,"* Identités, Territoires, Culture * Mer et littoral * Santé et société * Travail, Formation, Solidarités","Les programmes thématiques: * Thème 1-Identités - Territoires - Cultures: * Alliance Europa * Atlantys * Ecrire une histoire nouvelle de l'Europe - EHNE * Genre et discriminations sexistes et homophobes - GEDI * Institut du Pluralisme Religieux et de l'Athéisme - IPRA * LASCAUX * Thème 2-Mer et Littoral: * COSELMAR * GIS Valpena * Thème 3-Santé et Société: * Enfance et Jeunesse - EnJeu(x) * Intégration des Soins et Financement par cycles de soins * Thème 4-Travail - Formation - Solidarités: * Activités du Centre régional associé au Céreq (Centre d'études et de recherche sur l'emploi et la qualification) * Conception et instruments pour la formation et la professionnalisation - CIFORP * Histoire du droit du travail dans les colonies françaises de 1880 environ jusqu'aux années 1960 * Le contrat CPER (Contrat de plan État-Région) DI2L2S (Développement et internationalisation des lettres, langues, sciences humaines et sociale en Pays de la Loire) 2015-2020 * ACCMADIAL - Accompagnants des Malades DIagnostiqués Alzheimer * Constitution et institutionnalisation d’un réseau inter-académiques et inter-degrés d’acteurs éducatifs pour des pratiques de classe et de formation mettant en œuvre des démarches inclusives en éducation. * Genèse d’archives militantes * GENRaRe Généalogies religieuses & raciales * La presse PERiodique Francophone OutRe-Mer (hors d’Europe) XIXe-XXIe siècles – PERFORM * S3A : Scènes Artistiques , Ambiances, Atmosphères * Socio-histoire des contacts Est-Ouest en Europe (1945-1991) : Echanges et collaborations en matière de technologies de gouvernement et de politiques de la Jeunesse et des sports en Europe. * Structuration du Réseau Ligérien des Chercheurs (SHS) en Numérique, Culture et Territoire (RELIGN) * La presse PERiodique Francophone OutRe-Mer (hors d’Europe) XIXe-XXIe siècles – PERFORM * MATRIOChCA - MATRIce et Observation des Chemins Cachés des Arts * Réseaux Cisterciens au Moyen Âge *","* Séminaire ""Genre et discriminations"" * Séminaire ""Histoire du geste technique"" * Séminaire ""FAMAH"" * Séminaire ""Chaire Philosophie de l'Europe"" * Séminaire ""Les impromptus du Cens"" * Séminaire ""IPRA"" * Séminaire ""Human Sea""",* Réseau national des Maisons des Sciences de l'Homme,true,false,,"* Lettre d'information * Twitter",Bibliothèque Julien-Gracq,"* Interrogation en ligne : * OCDE * Urbadoc * World of Learning * Autres ressources en ligne : * Un accès à BibCnrs * Highwire Press * Open Humanities Press * Revues.org * Cairn * Persee * Erudit * Oaister * Pattrika, bulletin des Instituts franais de recherche en Inde",,"Formations dédiées à la connaissance, à la pratique et à l'usage des outils numériques de la recherche en SHS (autour d'humanum loire)",200810834W,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200810834W&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200810834W,2016, 2019-01-30T15:54:50.333Z,2018-08-01T15:02:46.487Z,umr7528,false,MONDES IRANIEN ET INDIEN,UMR 7528,Mondes iranien et indien,OK,http://www.iran-inde.cnrs.fr/?lang=fr,Pollet Samvelian,pollet.samvelian@univ-paris3.fr,true,true,1995,"* La composante iranienne :
* À sa création en 1995 Monde iranien a réuni deux équipes de recherche : * Sur l’Iran ancien et classique et regroupant principalement des spécialites de langues, littératures et histoire : Langues, littératures et culture iraniennes, fondée en 1972 au sein de l’Université Paris 3 par Gilbert Lazard, et dirigée par Charles-Henri de Fouchécour, puis par Clarisse Herrenschmidt. * Sur les sociétés contemporaines et regroupant notamment des ethnologues, géographes, sociologues et politologues : Sciences sociales du monde iranien contemporain créée par Jean-Pierre Digard en 1982 au sein du CNRS, puis devenu Monde iranien en 1994 et dirigé alors par Bernard Hourcade. * Deux autres équipes l’ont rejointe en 1997 et 1998 : * le Centre d’études islamiques et d’histoire comparée fondé par Jean Aubin et dirigé par Jean Calmard (équipe CNRS associée à l’EPHE) * le Centre d’études et de recherches irano-aryennes (CERIA) de l’INaLCO * La composante indienne :
* L’équipe LACMI Langues, textes, histoire et civilisation du monde indien, qui regroupe des chercheurs CNRS et des enseignants-chercheurs (Université Paris 3) travaillant principalement sur la linguistique, la philologie, les littératures, l’archéologie, l’histoire et l’histoire de l’art de l’Inde et des pays d’Asie particulièrement influencés par la civilisation indienne, s’est constituée sur ses bases actuelles en 1989.
* A cette date elle a repris en majeure partie les activités de la précédente équipe dirigée par André Bareau elle-même issue de l’équipe Philologie bouddhique et jaina (directeur Colette Caillat), associée au CNRS en 1968. De 1989 à 2004 le LACMI a été dirigé par Nalini Balbir et est devenue équipe d’accueil de l’École Doctorale Langues, littératures et sociétés orientales (INaLCO-Paris 3), puis Langues, civilisations et sociétés orientales et de l’option Études indiennes du DEA Moyen-Orient Méditerranée. * Deux équipes indianistes de l’EPHE ont rejoint Mondes iranien et indien en 2010 : * Le monde indien : textes, sociétés, représentations (EA 2723) * Inde médiévale et moderne : textes et contextes (EA 2719)",105,39,66,http://www.iran-inde.cnrs.fr/membres/membres-permanents/,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7528&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=20&p_nbres=42&p_num_lab=29&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,35,"* Histoire et civilisations : histoire et archéologie des mondes anciens et médiévaux, de l'art",,"Projets de recherche 2014-2018 abordent les thématiques : * Histoire et cultures iraniennes, indiennes et indo-persanes : * Élites et réseaux : * Réseaux marchands, politiques et religieux * Acteurs et lieux de la production matérielle, artistique et intellectuelle * Écritures de l’histoire, sources et matériaux : * Historiographie * Prosopographie du monde iranien * Territoires et techniques * Études indo-persanes : * Apprentissage et transmission des savoirs et savoir-faires en Asie du sud et dans les mondes persanophones * Poèmes lyriques en hommage à Amir Khosrov Dihlevi (1253-1325) * Perso-Indica * Littératures indiennes et iraniennes : * Ressources en ligne pour l’étude des littératures indiennes sanskrit et prākrit * Shivaïsme et territoire * Poétique, esthétique et théâtre * Littérature et société : * Étude des interactions entre poésie, musique et soufisme * Étude de la littérature persane depuis la Révolution islamique * Langues des mondes iranien et indien : * Typologie, linguistique théorique et descriptive: * Phénomènes de contacts de langues entre les langues iraniennes, caucasiennes et turciques * Étude de la prédication complexe en persan * Description grammaticale et typologique de l’ormuri de Kaniguram (Pakistan) * Documentation et élaboration de ressources : * Base de données épigraphiques tamoule * Base de données lexicales et morphosyntaxiques du persan * Linguistique historique et philologique : * Les grammairiens indiens du XVIe -XVIIe s * Une grammaire historique du tokharien * Linguistique historique de l’indo-aryen et de l’indo-iranien * Religions, philosophies et traditions savantes dans le monde indien : * Textes et traditions religieuses et philosophiques de l’Inde et de l’Asie du Sud-Est : * Études sivaïtes * Études bouddhiques * Études jaïna * Religions et constructions identitaires dans les mondes iranien et indien : * Communautés jaïna * Études sur le zoroastrisme * Chrétiens d’Orient * Islam : chiisme et soufisme: * Soufisme et chiisme à la période moderne * Chiisme et histoire : Nouvelles sources pour l’étude du chiisme * Sociétés contemporaines d’Iran et d’Asie centrale : * Territoires, pouvoirs et identités locales * L’Iran dans les relations internationales * Mobilités, migrations, transports","* Projet ANR-DFG DYNTRAN, ""Dynamiques de transmission : familles, autorité, savoir dans le Moyen-Orient médiéval et moderne (XVe-XVIIe siècles)"", (2015-2018) * Projet ANR-DFG PERSO-INDICA, ""An Analytical Survey of Persian Works on Indian Learned Traditions"" (2014-2017) * Projet DELI ""Dictionnaire Encyclopédique des Littératures de l’Inde"" * Projet Perspred (Labex EFL, suite du projet ANR-DFG PERGRAM) * GDRI ""New Horizons for the Social and Intellectual History of Shi’ism in Modern Times"" * GIS ""Moyen-Orient et Mondes musulmans"" * Projet ""CartOrient"" * Tamil Epigraphy - Lexical and Grammatical Database with Searchable Engine Collaboration entre Tamil Virtual Academy, Chennai (Inde) et UMR7528 Mondes iranien et indien (France) * Projet Manuscripts of the Jaffna Bishop’s House (1850-1930)","* Séminaire Sociétés, politiques et cultures du monde iranien (Séminaire pluridisciplinaire de ""Mondes iranien et indien"") * Séminaire Mondes indiens (Séminaire pluridisciplinaire de ""Mondes iranien et indien"") * Séminaire DELI (Littératures d’Asie du Sud) * Séminaires co-organisés par des membres de Mondes iranien et indien","Partenariat avec : * l’Université de Marbourg, Allemagne * l’Institut français d’archéologie orientale du Caire * l’Université de Bonn * l’Université de Vienne",true,false,,Cahiers de Studia Iranica,BULAC (Bibliothèque Universitaire de Langue et de Civilisation du Monde),"* Publications et ressources en ligne (ressources diverses, issues des projets de recherche portés par des membres de Mondes iranien et indien et mise en ligne en accès libre) : * Abstracta Iranica (revue de bibliographie sélective et critique pour le monde irano-aryen) * Ctesiphon (corpus de textes et de sources sur l’Iran : pour une histoire de l’Orient au VIe siècle) * DELI (Dictionnaire Encyclopédique des Littératures de l’Inde) * Irancarto (Un atlas numérique permanent de l’Iran et du Monde iranien * Un recensement des cartes d’Iran et du Monde iranien vues sur internet * Une publication numérique d’atlas imprimés-Iran, Téhéran, ethnographie) * PersPred (Base de données des prédicats complexes du persan) * Catalogues et ressources en lignes : * A Comprehensive Edition of Tokharian manuscrits * Achemenet * Afghanistan Digital Library * Ashmolean Museum - Oxford University * Yousef Jameel Online Centre * Avestan Digital Archive * ETANA * H-Buddhism, an H-Net discussion list * Huntington Archive of Buddhist and Related Art * Indology * Musée achéménide * Princeton Digital Library of Islamic manuscripts * Rasan Digital library * Shahnama Project * The Digital South Asia Library * Virtual Manuscript Room * Portails, Bibliothèques, Catalogues en ligne : * BibCnrs * Bibliothèque nationale de France (BnF) * Bibliothèque numérique mondiale (BNM)/ World Digital Library (WDL) * Bibliothèque de l’Institut Français de Recherche en Iran * Quelques publications concernant le domaine iranien: * Abstracta Iranica (Revue bibliographique sélective et critique pour le monde irano-aryen-annuelle) * Encyclopaedia Iranica * Irancarto (Études cartographiques sur l’Iran et le monde iranien actuel ou passé) * Paleorient (Revue d’archéologie préhistorique) * Transoxiana (Journal Libre de Estudios Orientales)","Pour ce qui est de la Bibliothèque Jules Bloch, les acquisitions récentes sont surtout formées par les publications reçues pour comptes rendus dans le Bulletin d’Etudes Indiennes. Une fois recensés, ces ouvrages sont versés au fonds de la Bibliothèque.",,199712589B,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199712589B&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199712589B,2017, 2019-01-28T15:54:04.562Z,2018-08-01T15:02:46.483Z,usr3549,false,MSHB,USR 3549,Maison des sciences de l'Homme en Bretagne,OK,http://www.mshb.fr/accueil,Nicolas Thély,nicolas.thely@mshb.fr,true,false,1999,"La décision de création de la Maison des Sciences de l’Homme en Bretagne a été prise en 1999, lors de la préparation du Contrat de Plan État Région, l’Université Rennes 2 étant alors désignée comme l’établissement support. Il a fallu attendre 2003 pour que le président François Mouret missionne la professeure Raymonde Séchet en tant que chef de projet. Sous son impulsion, le choix d’une construction en réseau mobilisant les quatre Universités de Bretagne – Rennes 1, Rennes 2, Bretagne Occidentale et Bretagne Sud - autour d’une plateforme scientifique commune est d’emblée affirmée. C’est finalement sous la forme d’un GIS associant comme fondateurs le CNRS et les quatre universités bretonnes que la MSHB est devenue en 2006 la 21ème MSH du réseau national des Maisons des Sciences de l’Homme.
Créée à l’initiative des 4 universités de Bretagne et du CNRS, la MSHB compte désormais 7 membres fondateurs avec l’école des hautes études en santé publique (EHESP) et Télécom Bretagne. La maison des sciences de l’homme en Bretagne est une unité de service et de recherche (USR 3549) depuis le 1er mai 2012. Elle était auparavant unité de mixte de service (UMS 3122) depuis le 1er janvier 2008.",17,9,8,http://www.mshb.fr/accueil/annuaire,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=USR3549&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=10&p_nbres=64&p_num_lab=18&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,,,,"* Pôle Armorique, Amériques, Atlantique : * Territoires et sociétés * l’aménagement social des territoires * campagnes et villes * le littoral : aires d’usages et espaces vécus * Contacts, échanges, approches comparées * l’appel du large : des échanges aux rapports culturels * mondes atlantiques européens, périphéries celtiques * d’un monde à l’autre : les Amériques, approches comparatives * Représentations et constructions identitaires * plurilinguisme, identité, culture * marqueurs culturels et construction patrimoniale * Pôle Arts et création : * Numériques * Publics, consommation culturelle et usages en régime numérique * Patrimoines et nouvelles formes d’expertise en régime numérique * Numérique, traitement et édition des documents * Esthétiques du numérique * Les nouveaux modèles économiques de la culture liés à la révolution numérique (droits d’auteurs, propriété intellectuelle) * Création et « révolution » numérique * Processus de création, pratiques, esthétiques * Interactions et dynamiques créatrices * La construction de la valeur sur les marchés artistiques * Le texte et l'image * Les relations inter-arts * Études des textes, théorie littéraire * Techniques, technologies : sciences et création artistique * Réceptions, critiques, diffusions * Cultures et population, valorisation de la culture * Arts et histoire culturelle * Circulation des savoirs et des idées * Appropriation et partage de la création * Critique de l'art, critique des arts * Territoires et sociétés * Culture et développement territorial, clusters créatifs * Attractivité d'un territoire, culture, aménagement et développement économique * Spécificités d'un territoire et formes du développement culturel : fabriques d'un Imaginaire urbain * Production et consommation de biens cultuels * Transmissions et héritages * Processus de patrimonialisation * Identités en mouvement, transferts, échanges, résonances * Echanges, transferts et médiations * Identités et pouvoirs * Laïcité et religions * Mémoires culturelles * Diversité et citoyenneté * Minorités et statuts * Pôle Gouvernance : * analyse des contraintes juridiques, budgétaires, économiques, politiques, sociales * observation des acteurs impliqués dans les processus de gouvernance * repérage des territorialités suscitées par les pratiques de gouvernance * repérage des représentations, des croyances, des idéologies qui encadrent et structurent les pratiques de gouvernance * Pôle Société numérique : * usages * cognition * innovation * territoire et réseau * stratégie * Pôle Sociétés et santé * Transversal aux pôles : Préservation et valorisation des matériaux d’enquête","* CIMATLANTIC : Monde des morts / monde des vivants en France atlantique. De l’anthropologie des populations aux identités préhistoriques * LITHO PAM : Étude et valorisation de l’imagerie populaire et industrielle au XXè siècle, l’exemple des Papeteries Armoricaines et Morlaisiennes * LATE : Littérature Arthurienne Tardive en Europe * FORMEEPS : La formation des enseignants d’Éducation Physique et Sportive en France depuis 1945 * NFG IPMS : Nouvelles formes de gouvernances et innovation dans les politiques médico-sociales régionales et locales * QARTS : Qualité, Activité de Reporting et Travail de Soin * JOCAP : Impact des jeux vidéos * ID îles 2 TIC : Place et rôle des TIC dans la dynamiqe de développement économique des îles du Ponant * Bartle : Le complexe de « Bartleby » * METICS - Médiation des Technologies de l'Information et de la Communication dans l'expression de la Souffrance sociale : le cas des associations d’écoute et de prévention contre le suicide * PROTECCORP - La réalité de deux principes de protection du corps humain dans le cadre de la biomédecine : la dignité et la non patrimonialité * EX2 « Exposer les écritures exposées » * MONADE - Méthodes et outils Numériques pour la recherche en Arts, Design et Esthétique * Le Kitsch * ARCREAS Acte II - Archiver le processus de création du spectacle vivant à l’ère du numérique * OCULUS","* Séminaire ""le genre à l'ouest"" * Séminaire Humanités numériques * Séminaire Quotidienneté, souffrance et politisation : de la vie ordinaire à la théorie * Séminaire FRESH (film et recherche en science humaine)","* Collectivités publiques partenaires : * L'Europe et le Feder * Conseil régional de Bretagne * Rennes métropole * Partenaires académiques : * Réseau National des Maisons des Sciences de l’Homme - RNMSH * Université Européenne de Bretagne - UEB * Maison de la recherche en sciences humaines et sociales de l’UBS * Institut des sciences de l’homme et de la société de l’UBO",,false,,Lettre d'information,,,,,201221755Z,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201221755Z&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201221755Z,2016, 2019-01-28T15:54:04.562Z,2018-08-01T15:02:46.490Z,umr8085,false,PRINTEMPS,UMR 8085,"Printemps - professions, institutions, temporalités",OK,http://www.printemps.uvsq.fr/,Laurent Willemez,laurent.willemez@uvsq.fr,true,true,1995,"*Créé en 1995, le laboratoire Printemps (Professions, Institutions, Temporalités) est devenu une unité associée au CNRS en 1998",65,29,36,http://www.printemps.uvsq.fr/laboratoire-professions-institutions-temporalites-/langue-fr/presentation/equipe/les-membres-permanents/les-membres-permanents-234492.kjsp?RH=1306397253216,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8085&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=40&p_nbres=64&p_num_lab=49&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,26,"* Sociologie * Démographie","* Travail * Professions * Droit et justice * Institution","2 grands programme de recherche : * Mondes professionnels : engagements, savoirs, expertise * les professions scientifiques et les professions juridiques * l’articulation entre professions et actions publiques dans le domaine du social et les processus conjoints de globalisation et de territorialisation * Carrières et temporalités : socialisation et trajectoires * les temporalités des carrières professionnelles * les trajectoires de vie et les processus de socialisation * l’articulation des temporalités et de la dimension spatiale des faits sociaux","* DIM GESTES (Groupe d’Etudes sur le Travail et la Souffrance au travail) * Projet ISIS * L’Idex Paris-Saclay","* Séminaire général du Printemps * Séminaire de suivi de thèse * Séminaire des doctorants","Printemps est un acteur de l’Idex Paris-Saclay, regroupant pour les sciences sociales une dizaine de laboratoires et 7 établissements sur le périmètre de Saclay : * UVSQ * ENS Cachan * LSQ – CREST / ENSAE * Université Paris Sud * Polytechnique * Télécom ParisTech * HEC",true,false,,"""Carnet de recherche"" du laboratoire : blog http://printemps.hypotheses.org/
Le Carnet de recherche montre ""la recherche en train de se faire"" au labo, questionnements des doctorants, hypothèses des chercheurs, projets communs en cours. Il vise à présenter nos travaux et à ouvrir le dialogue.",,,,,200212745Z,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200212745Z&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200212745Z,2016, 2020-06-15T13:56:29.570Z,2018-08-01T15:02:46.489Z,umr5194,false,PACTE,UMR 5194,"Politiques publiques, actions politiques, territoires",OK,http://www.pacte-grenoble.fr/,Anne-Laure Amilhat Szary,anne-laure.amilhat@univ-grenoble-alpes.fr,true,true,2003,"* 1966 : accord entre FNSP & IEP Grenoble et création du CERAT * 2003 : le CERAT avec le CIDSP deviennent UMR 5194 Pacte",447,146,301,https://www.pacte-grenoble.fr/membres/,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR5194&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=10&p_nbres=42&p_num_lab=12&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,144,* Science politique,"* Politiques Publiques * Action Politique * Territoir","* Environnements * Mot-cles: adaptation, biodiversité, énergie, risques, paysage * Concepts clés: temporalité, adaptation, transition, vulnérabilité, innovation * Justice sociale * Questionnement des principes et valeurs / articulation pensée critique / approche par les marges * Vulnérabilités, discriminations, capacités * Frontières, migrations, exils, ségrégations * Protection sociale, santé, âges, générations * Le développement territorial et des inégalités socio-spatiales * Inégalités, développement et équilibres politiques * Gouvernance * Action publique et européanisation * Comportements politiques et vie démocratique * Dynamiques des opinions et des valeurs * Organisations et gouvernance internationales * Régulations * Action publique * Marchés et organisations productives * Ecologies médiatiques et culturelles * Savoirs, Connaissance et Société * Villes & Territoires * Mot-clés: énergie, mobilités, patrimoine, créativité, alimentation, planification, renouvellement urbain, foncier","* MobiClimex: Dynamique des mobilités quotidiennes et résidentielles face aux extrêmes hydrométéorologiques en contexte de changement climatique * GDRI ENGAGE ""International Research Network ""Climate-Energy : Engaging Social Sciences"" (2017-2020) * Trajectories: Scénariser les socio-écosystèmes alpins en mutation (2017-2020) * RESSORT: Recherche-expérimentation en sciences humaines et sociales pour la rénovation thermique performante des maisons individuelles (2017-2020) * EMU-SCEUS: The Choice for Europe since Maastricht. Member States’ Preferences for Economic and Financial Integration (2015-2019) * Enquête post-électorale française (2016-2018) * Observatoire de l'Innovation urbaine (2017-2022) * Réinventer une politique et des actions concertées de soutien aux initiatives des jeunes de la métropole grenobloise (2016-2021) * L'imaginaire politique des métropoles (2015-2022) * The emergence of toxico-epigenetics: scientific challenges and regulatory controversies (2017-2020) * The marketization of everyday life (2016-2018) * RSJ-MéDIS: Responsabilité Sociale des Journalistes - Média Diversité & Sport (2016-2019) * CaNoE: Carrière et Notoriété: le rôle de l'événementiel (2017-2020) * PAMELA: PArtenariat Multi-acteurs pour un accès durable à l’ÉLectricité des Activités économiques (2016-2020) * Eroding democracies. A qualitative (re-) appraisal of how policies shape democratic linkages in Western democracies (2017-2022) * Tracéologie Numérique (2017-2020) * Les émotions en politique (2016-2020) * TRANSCONSENT Construire le consentement: éthique et savoirs interdisciplinaires dans la prise en charge des enfants et adolescents transgenres (France/Etats-Unis) (2017-2019) * TidEBook: Traçage Informationnel de la Diffusion des E-Book (2017-2019) * MATRACA: MArché du TRAvail CArrières (2017-2018) * Eco-SESA: Eco-district : Safe, Efficient, Sustainable and Accessible energy (2017-202) * Projet CAP-BIOTER-Capabilité territoriale, biomasse et transition énergétique : l’écologie territoriale appliquée aux réserves de biosphère (2016-2019) * Eco-SESA: Eco-district : Safe, Efficient, Sustainable and Accessible energy (2017-2020) * LOS_DAMA!:Landscape and Open Space Development in Alpine Metropolitan Areas (2016-2019) * MOBI’KIDS: Mobilité quotidienne des enfants en milieux urbains (2017-2019) * ASTUS (2016-2019) * Observatoire de l'Innovation urbaine (2017-2022) * PSDR SAGACITE (2015-2018)","* Séminaire Action Publique * Séminaires du département Pacte/Territoires * Séminaire International et Europe * Séminaires du département Pacte/Politique-Organisations * Séminaires multipartenaires * Séminaire doctoral Pacte - Sciences Po Grenoble * Séminaire de recherche du groupe ""Questions sociales et inégalités – Politiques, publics et territoires"" : séminaire inter-GTR sur la vulnérabilité. Conférence d’un grand témoin. Présentation des travaux des membres de la GTR * Séminaires « Transition Énergie Environnement – jeune recherche » * Séminaire Risques, Environnement et SOciété * Séminaire thématique « Frontières, Altérité, Marges, Mondialisation » * Séminaire transversal « Développement 2.0, la critique »","* L'axe Organisations & Marchés développe des partenariats de recherche privilégiés avec : * L’INP-Grenoble * Le Département Management et Technologie de GEM * La SFR Santé Société et la SFR Innovacs * L'axe Urban Act appartient à plusieurs réseaux : * APERAU – Association pour la Promotion de l’Enseignement et de la Recherche en Aménagement et Urbanisme * AESOP – Association of European Schools of Planning * OPC – Observatoire des politiques culturelles",true,false,,"* Lettre électronique tous les 15 jours * calenda.org * Pages personnelles des chercheurs * Prospectus, affiches, programme (en papier) en plus du site spécifique à l'événement * Diffusion aux tutelles","* Bibliothèque de l'IEP * BU Droits et Lettres","* Pas de ressources propres à Pacte * BibCnrs * Par l'intermédiaire de la BU Droits/Lettres, les chercheurs de l'UMR ont accès au catalogue des ressources électroniques du centre de documentation de l'IEP","* En fonction des besoins des chercheurs. Les commandes sont passées sur les contrats de recherche, sur leur budget de recherche. * Possibilité de commander en dehors des contrats (il faut que cela soit validé par la direction et concerne l'intérêt collectif, mais pas de montant alloué)","Les gestionnaires bibliographiques accordent une formation individuelle-réponse à un besoin. Pour les chercheurs, les doctorants et aussi les étudiants en Master.",200311865N,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200311865N&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200311865N,2017, 2019-01-28T15:54:04.563Z,2018-08-01T15:02:46.491Z,umr5206,false,TRIANGLE,UMR 5206,"Triangle: action, discours, pensée politique et économique",OK,http://triangle.ens-lyon.fr/,Gautier Claude,claude.gautier@ens-lyon.fr,true,true,2005,"Le laboratoire a été créé au 1er janvier 2005. Notre « Triangle » dessine le lien entre les trois établissements lyonnais d’appui du labo, il rappelle que la constitution du labo a découlé de la décision de travailler ensemble exprimée par trois équipes (la FRE « Discours du politique en Europe, ENS LSH;la FRE « Centre Walras » Lyon2, l’EA CERIEP, IEP) ; plus programmatiquement il désigne la volonté d’aborder ensemble trois aspects de la politique entendue au sens large du terme : l’action, le discours et la pensée politique et économique.",265,130,135,http://triangle.ens-lyon.fr/spip.php?rubrique94,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR5206&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=10&p_nbres=42&p_num_lab=13&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,126,* Science politique,"* Science politique * Politiques publiques * Action pub","* Action publique * Axe 1 : Savoirs, dispositifs et normes de gouvernement * Axe 2 : Santé et politiques * Axe 3 : Études urbaines * Politisation et participation * Axe 1 : Classes populaires, dynamiques de participation et de mobilisation * Axe 2 : Travail de représentation politique et syndicale * Axe 3 : Les langages du politique * Pensée politique et sciences sociales * Axe 1 : « Philosophie politique, histoire de la pensée politique » * Axe 2 : « Philosophie des sciences sociales » * Axe 3 : « Sciences sociales et circulation des savoirs » * Économie : histoire, institutions, société * Axe 1 : Histoire de la pensée économique * Axe 2 : Philosophie économique * Axe 3 : Économie des institutions et économie sociale * Chantiers transversaux : * PoliFormES (Politiques de la formation, de l’éducation et du savoir) * Humanités numériques * Genre et politique","* Projets européens * Programme H2020 : « Eroding Democracies. A qualitative (Re-)Appraisal of How Policies Shape Democratic Linkages in Western Democracies » * Programme Européen H2020-Euro-Society-2014, ISIGrowth (Innovation-fuelled, Sustainable, Inclusive Growth) * Programme européen H2020-EURHISFIRM « European Historical Firm » (Historical Firm Level Data for Europe) * Projets ANR * Projet ANR (2015-2018) : SAINT-SIMONISME 18-21 * Projet ANR (2017-2020) : FFL - Foucault Fiches de Lecture * Projet ANR (2016-2017) : « COOP-in-AND-out »","* Séminaire « Écrire les modernités arabes » * Le séminaire [transversal] de Triangle * Séminaire S’approprier le monde (CMW/Triangle) * Séminaire Analyser l’action publique * Séminaire Villes européennes et accueil des migrants * Séminaire Santé & Politiques * Séminaire Relire l’éthique en santé à l’aune d’une anthropologie spinoziste : philosophie de l’âge classique et médecine d’aujourd’hui * Séminaire pluridisciplinaire d’histoire économique (CIHAM / HiSoMA / LARHRA / EHESS / Triangle) * Séminaire Professions politiques * Séminaire Politisation et participation * Séminaire L’ethnicité dans les sciences sociales françaises * Séminaire SYMETT * Séminaire Action collective (CMW/Triangle) * Séminaire de philosophie politique * Foucault et le christianisme : La question du pastorat * Atelier Amérique du Nord : la fabrique de l’Amérique * Séminaire Littératures politiques à l’âge classique de l’Islam (VIIe-XVe) * Séminaire Pensée Politique Italienne : Lire les Cahiers de prison d’Antonio Gramsci * Séminaire Etudes italiennes * Séminaire Catégories du pragmatisme * Séminaire Les modernités britanniques : origines, continuités, ruptures * Séminaire d’histoire des idées (Triangle / IHRIM / COMOD) * Séminaire de l’axe Sciences Sociales et circulation des savoirs * Séminaire Entreprises, marchés et régulations (LARHRA - Triangle) * Séminaire Economie * Séminaire Rationalité et raisonnabilité * Ateliers du pôle Économie : histoire, institutions, sociétés * Ateliers pratiques numériques en SHS - ED 483 * Séminaire Genre et Politique * Séminaire L’ordinaire de la Guerre * Séminaire Triangle d’écriture du politique (STEP) *","* LABEX : * Labex COMOD (2012-...) * Labex IMU",true,false,"Le laboratoire recommande aux utilisateurs d’Academia (décision du conseil de labo du 15 oct. 2013) : * de préférer le dépôt de textes dans HAL plutôt que dans Academia * d’utiliser dans Academia la fonctionnalité « add a paper— add a link », pour permettre aux internautes d’avoir accès au texte via un lien pointant vers le texte publié sur le site des revues, ou vers la version qui aurait été déposée dans HAL.","* Facebook, linkedin, Twitter * Lettres d’info et points biblio","* BU Chevreul de l'Université Lyon 2 * BU Bron & Doc express de l'Université Lyon 2 * Bibliothèque Diderot de Lyon * Fonds Histoire de la pensée économique de l'ISH * Centres de documentation de l'IEP Lyon * Centre de documentation de l'IUL * Bibliothèque de l'Université Jean Monnet",,,"* Plateformes d’autoformation * Isidoc : formation à la recherche et au maniement de l’information scientifique * URFIST de Lyon * EXPRESSO DOC * Institut des sciences de l’Homme * Formations à distance de l’INIST * Séances de formation documentaire personnalisées",200511876S,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200511876S&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200511876S,2017,https://fr.wikipedia.org/wiki/Laboratoire_Triangle 2019-01-28T15:54:04.563Z,2018-08-01T15:02:46.475Z,ea4175,false,LASSP,EA 4175,Laboratoire des sciences sociales du politique,OK,http://lassp.sciencespo-toulouse.fr/,Eric Darras,eric.darras@sciencespo-toulouse.fr,false,true,2002,"

L'autonomie intellectuelle et académique de la science politique est désormais bien reconnue, mais ne saurait justifier un enfermement disciplinaire : au rebours, le Laboratoire des Sciences Sociales du Politique (ea 4175) entend, avec et après bien d'autres, contribuer au renouvellement des problématiques, des méthodes et des objets de la sociologie politique par la pratique d'une véritable interdisciplinarité. Aussi, le Laboratoire des Sciences Sociales du Politique, comme son nom l'indique, s'attache d'une part au caractère spécifique des phénomènes politiques, lesquels se rapportent aux processus de gouvernement, entendus comme l'ensemble des activités tendant à maintenir ou à modifier l'ordre social dans une ou des sociétés politiques, et ont toujours à voir, peu ou prou, avec l'usage de modalités de coercition et de persuasion reçues comme légitimes parce que légitimées ; et d'autre part souligne tout l'intérêt scientifique d'une pluralité d'approches du politique en ses formes différenciées.

C'est pourquoi le LaSSP accueille des politistes, des juristes, des historiens, des sociologues, des chercheurs en science de l'information et de la communication, des anthropologues et des économistes qui, tout en étudiant les phénomènes politiques chacun selon son cadre d'analyse propre, les appréhendent à partir d'une même perspective - que, par sténographie, l'on pourrait dire «au concret» et «par en bas» (bottom up). Qu'il s'agisse d'étudier les institutions politico-administratives gouvernantes comme univers de pratiques au concret ou d'étudier la réception et les usages dits «ordinaires» ou «semi-profanes» du discours des professionnels du champ politique, notamment dans leur dimension européenne, c'est toujours l'économie interactionnelle des pratiques concrètes-réelles des acteurs sociaux qui retient tout particulièrement l'intérêt des chercheurs du laboratoire.

",107,69,38,http://lassp.sciencespo-toulouse.fr/-Membres-pleins-6-,,22,* Science politique,"Gouvernements et Administrations * Gouvernance * Collectivités territoriales * Droit administratif * Droit comparé * Droit public * Déchets * Environnement * Fonction publique * Nouvelles technologies * Opinion publique * Politiques publiques * Politiques publiques touchant à l'énergie * Pollution * Principe de précaution * Relations internationales * Risque * Science politique * Sciences juridiques et politiques * Sciences sociales de la ville * Services publics * Sociologie du développement durable * Sociologie politique * Sociologie rurale * Ecologie","* Gouvernements, administrations et politiques publiques : * ""Gouvernements et administrations comparées en Europe"" * ""Action publique, interactions gouvernantes et institutions"" * Média, Culture et Politique : * Les transformations des économies internes des champs journalistique et politique * "" Socialisations, Engagements et mobilisations politiques pratiques (SEMOPP) - Political Culture & participation "" * Connexions, circulations, croisements","* Impact de la planification de l’action préventive sur les dynamiques professionnelles et sociales locales (Clos) * ANR JCJC ""MONDEX : Les Molex dans la mondialisation : une fermeture d’usine entre Villemur et Chicago ou des nouveaux répertoires de la mobilisation ouvrière."" * PUMIQAT : Projets urbains et mobilités intégrant les exigences locales climat-énergie pour la qualité de l’air dans Toulouse Métropole (Clos) * LONGIPO. Analyse longitudinale des rapports ordinaires au politique (2014-2017) * GAME - Gouvernance Académique et Monde économique * CORPO - Corps et Pouvoirs * TRANSFORMEDIA - Les Transformations des pratiques professionnelles des journalistes dans les MEDIAs locaux","* Séminaire Général du LaSSP * Séminaire SEMOPP * Cuisine du LASSP * Séminaire ""L’Etat et les administrations publiques au prisme de l’enquête de sciences sociales. Perspectives, méthodes, terrains"" de l’Axe 1","Partenariats scientifiques : * L’Equipe Sport Organisation et Identité (SOI) - EA 3690 * Le Centre d’Etude et de Recherche Travail, Organisation, Pouvoir (CERTOP) * L’Institut Fédératif d’Etudes et de Recherches Interdisciplinaires Santé Société (IFERISS) * Le Laboratoire Interdisciplinaire, Solidarités, Sociétés, Territoires (LISST) * Le Centre Emile Durkheim - Science politique et sociologie comparatives - est une Unité Mixte de Recherche (UMR 5116) * Le Centre de Recherches sur l’Action Politique en Europe (CRAPE) * L’Institut de Droit Privé (IDP) - EA 1920 - Université Toulouse 1 Capitole * Réseau d’excellence : LABEX SMS - Structurations des Mondes Sociaux

Partenariats institutionnels : * AFSP - Association Française de Science politique * ECPR - European Consortium for Political Research * GEAP / IISA - Groupement Européen pour l’Administration Publique/ Institut International des Sciences Administratives * IdA - Institut des Amériques * MSHS-T - Maison des Sciences de l’Homme et de la Société, Toulouse",true,true," 1. Publications versées dans HAL : ""Les Papiers du LaSSP"" 2. Publications en dépôt Insitutionnel : Toulouse Capitole Publications Toulouse 1 Capitole Publications utilise le logiciel *EPrints* developpé à la School of Electronics and Computer Science de l'université de Southampton. La base « Toulouse 1 Capitole Publications » est l’archive institutionnelle de l’université Toulouse 1. Elle a pour objectif la valorisation de la recherche de l’établissement en favorisant la diffusion libre et gratuite des travaux de ses chercheurs. Vous pouvez consulter la Charte de dépôt de cette archive ouverte ici. Elle contient tous types de publications : articles, livres, chapitres de livre, documents issus d’une conférence, working papers, pré-publications, thèses, notes de jurisprudence, etc. produits par les chercheurs et enseignants. Selon l’autorisation donnée par son auteur, vous trouverez sur l’archive les références bibliographiques accompagnées ou non d’un résumé du document ou le texte intégral du document.","Pour diffusion : * Site du laboratoire: Rubrique ""Publications"" dès la page d'accueil * Rubriques dédiées ""Publications"" et ""Recherche"" sur lea page d'accueil du site Sciences Po Toulouse * Circuits listes de diffusion internes et externes identifiable par l'objet du message ""ACTU PARU du LaSSP"" * Page Facebook du Laboratoire * La lettre du LASSP * Working papers du LASSP","* Bibliothèques SHS du site toulousain : IEP * Université Toulouse Capitole * Université Jean Jaurès","* Toutes les ressources numériques accessibles par Université Toulouse Capitole 1/ Université Fédérale de Toulouse et Sciences Po Toulouse ","Acquisition d’ouvrages : * lorsqu’un membre du laboratoire est (co)auteur ou a pris en charge la direction de la publication * achats des ouvrages des chercheurs invités de Séminaire sur l’année (dix à quinze par an) * dans le cadre des contrats de recherche","L'unité de recherche ne propose aucune formation documentaire. Cependant, formation à la documentation assurée implicitement par des jeunes chercheurs et chercheurs plus expérimentés ou selon le niveau de connaissance des logiciels.",200715415E,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200715415E&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200715415E,2017, 2019-01-28T15:54:04.563Z,2018-08-01T15:02:46.488Z,umr7049,false,OSC,UMR 7049,Observatoire sociologique du changement,OK,http://www.sciencespo.fr/osc/fr,Marco Oberti,marco.oberti@sciencespo.fr,true,true,0,"Fondé en 1988 par Henri Mendras,l’OSC étudie la dynamique d’ensemble des sociétés contemporaines.",60,26,34,http://www.sciencespo.fr/osc/fr/content/researchers-0,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7049&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=30&p_nbres=64&p_num_lab=32&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,17,"* Sociologie, démographie","* Cohésion sociale * Criminologie * Démographie * Environnement * Environnement urbain * Handicap * Modes de vie * Mutations sociales * Nouvelles technologies * Politiques publiques * Politiques publiques touchant à l'énergie * Sciences sociales de la ville * Sociologie religieuse * Temps sociaux","* Stratification sociale et transformations des inégalités * Ville et inégalités urbaines * Modes de vie : culture et normes, rythmes sociaux, environnement * Politiques et dynamiques éducatives","* Marchés locaux du logement locatif, inégalités et trajectoires résidentelles des classes moyennes dans la métropole parisienne * Life Course Dynamics of Educational Tracking (LIFETRACK) * Recherche / évaluation sur les jardins d'enfants « Paris Habitat » * Choosing higher education on the Internet: students's practices and social inequalities * Tracking the recent migration crisis in Europe: relating facts and representations using big data * Sélection et démocratisation dans l'accès à l'enseignement supérieur : analyse comparée de l'Université Paris Dauphine et de Sciences Po (SELDEMENSUP) * Insécurité et territoires : division sociale et participation politique (INSOCPOL) * Social origins and tracking in French upper secondary schools: a longitudinal, experimental study * Opening the black-box of cultural capital * Evaluation des dispositifs d’action pédagogique du programme « 10 mois d’école et d’Opéra » * Étude sur les Conventions d'éducation prioritaire","* Séminaire scientifique de l'OSC * Séminaire doctoral ""Actualités de la sociologie""","* University of Oxford * University of California * Los Angeles (UCLA) * Northwestern University * Institute for Policy Reasearch (IPR) * Universidade de São Paulo (USP) * Max Planck Institute * Université catholique de Louvain * Universidad Complutense de Madrid (UCM) * Centre national de Recherche sociale (EKKE) * Università degli Studi di Milano-Bicocca * King’s College, Londres * Harvard University * Princeton University * Brown University * Fudan University * Chinese Academy of Social Sciences * University of Pune * European Consortium for Sociological Research (ECSR)",true,true,,"* Facebook, linkedin, instagram, Twitter, Youtube * http://blogs.sciences-po.fr/osc/",* Bibliothèque de Sciences Po,,,,198821638B,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=198821638B&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/198821638B,2017,https://fr.wikipedia.org/wiki/Observatoire_sociologique_du_changement 2019-01-28T14:27:45.204Z,2018-08-01T15:02:46.494Z,umr8170,false,CASE,UMR 8170,Centre Asie du Sud-Est,OK,http://case.ehess.fr/index.php,"* Dana Rappoport-Chabanier * Samuel Jérôme * Madinier Remy",dir.case@ehess.fr,true,true,2006,"'Le Centre Asie du Sud-Est (CASE) constitue le pôle majeur des études sur l’Asie du Sud-Est en France. Cette unité mixte de recherche de l’École des Hautes Études en Sciences Sociales (EHESS), du Centre National de la Recherche Scientifique (CNRS) et de l'INaLCO, fondée en 2006, fédère des recherches interdisciplinaires sur les onze pays du sud-est asiatique (Birmanie, Brunei, Cambodge, Indonésie, Timor-Leste, Laos, Malaisie, Philippines, Singapour, Thaïlande et Vietnam), mais aussi des régions ou des États voisins, tels la Papouasie-Nouvelle-Guinée, Taïwan et la Chine méridionale.",92,31,61,http://case.ehess.fr/index.php?228,https://annuaire.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8170&p_int=CASE&p_lab=UMR&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=2&p_num_lab=1&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,21,"* Histoire et civilisations : histoire des mondes modernes, histoire du monde contemporain, histoire de l'art","* Asie du sud, est * Géographie humaine * Géographie sociale et culturelle * Histoire des religions * Histoire politique et institutionnelle * Histoire sociale * Langues et civilisations régionales * Rituels * Elites * Ethnomusicologie * Santé","* Dynamiques de fondation : éléments pour une épistémologie d’une aire culturelle * Sociétés en mouvement : radicalités et résiliences * Anciennes et nouvelles élites en Asie du Sud-Est","* 2016-2018: AUTORITAS - Modes d’autorité et conduites esthétiques de l’Asie du Sud à l’Insulinde * Le projet Manusastra","* Séminaire général du Centre Asie du Sud-Est : Anciennes et nouvelles élites en Asie du Sud-Est : statuts, pouvoirs, légitimités et concurrences "" * Histoire sociale de l’Asie du Sud - Est à l’époque moderne et jusque dans ses développements contemporains : Hommes et forêts en Asie du Sud-Est : pratiques et représentations d'une relation privilégiée * Anthropologie comparée à partir de l’Asie du Sud-Est * Langue, histoire et sources textuelles du Cambodge ancien et moderne * Modes d'autorité et conduites esthétiques de l'Asie du Sud à l'Insulinde * ASIE","* Ausser, Architecture, Urbanistique, sociétés * CEIAS, Centre d’Etude de l’Inde et de l’Asie du Sud (CNRS/EHESS) * Centre d’Etudes Himalayennes * IISMM :Institut d'études de l'Islam et des sociétés du monde musulman * IrAsia : Institut de recherches asiatiques UMR 7306 (CNRS/Université de Provence, Marseille) * IRD/MNHN : UMR PALOC « Patrimoines locaux et gouvernances » * EFEO : centres EFEO d’Asie du Sud-Est (Bangkok, Chiang Mai, Hanoi, Ho chi Minh ville, Jakarta, Kuala Lumpur, Siem Reap, Taipei, Vientiane) * IFI : Institut Français d’Indonésie * Gis Asie * IRASEC Institut de Recherche sur l'Asie du Sud-Est Contemporaine (UMIFRE, CNRS) * Euroseas : European Association for South-East Asian Studies * AFRASE * Pasar Malam, association franco-indonésienne * Université d’Heidelberg, Francfort (IZO, Interdisziplinäres Zentrum für Ostasienstudien) * The Asien-Afrika-Institut (AAI), Université d'Hambourg * Institute for European Studies (Université Libre de Bruxelles) * The Estonian Institute of Humanities (EIH), Université de Tallinn, (Estonie) * University of Helsinki (Finlande) * Dipartimento di Scienze umane per la formazione ""Riccardo Massa"", Université de Milano-Bicocca, (Italie) * Centre for History and Economics (CHE), Magdalene College, Université de Cambridge, (Royaume-Uni) * School for African and Asian Studies (SOAS), University of London (Royaume Uni) * School of Culture, History and Language, Anu College of Asia and the Pacific ANU, Australia National University * The Asia Pacific Research Unit (APRU), University Sains Malaysia, (USM), Malaysia * The Center for Southeast Asian Social Studies (CESASS), Université de Gadjah Mada (Indonésie) (Univ. Fribourg) * Université Royale des Beaux Arts, Institut Royal de Phnom Penh * LIPI (Lembaga Ilmu Pengetahuan Indonesia) * Pusat Penelitian Arkeologi Nasional * Universitas Hasanuddin (Makassar) * IKJ (Institut Kesenian Jakarta) * Universitas Indonesia (Fakultas Ilmu Pengetahuan Budaya, Asosiasi Tradisi Lisan) * Faculté des Sciences Sociales * Université Nationale du Laos * University of Malaya * (Myanmar) : Inya Institute * Ateneo de Manila University * National University of Singapore, Nalanda-Sriwijaya Centre (ISEAS, Institute of Southeast Asian Studies) * Academica Sinica * The Regional Center for Social Sciences and Sustainable Development (RCSD) * Chiang Mai University (CMU), Thaïlande * Académie des Sciences Sociales/Vietnam Academy of Social Sciences (VASS)",,,,,"* La bibliothèque de la Maison de l’Asie * Bibliothèque Archipel-CASE","* BULAC * SUDOC * http://www.iias.nl * http://coombs.anu.edu.au/asia-www-monitor.html * http://www.asianlii.org/ * http://www.h-net.org/ seasia/ * http://groups.yahoo.com/group/euroseas/ * http://www.selectbooks.com.sg/about.cfm * http://www.uidaho.edu/special-collections/asia.html * http://www.aasianst.org/wwwse.htm#GENERAL * http://www.nla.gov.au/asian/indo/indsites.html * http://www.nla.gov.au/asian/lang/tha_online.html * The Jakarta Post (Indonésie) * The Nation (Thaïlande) * The Bangkok Post (Thaïlande) * The Straits Times (Singapour) * The Manila Times (Philippines) * Filipinas (San Francisco) * The Phnom Penh Post (Cambodge) * The Star (Malaysia) * The New Straits Times (Malaysia) * Vietnamnews (Viêt Nam)",,,200612821P,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200612821P&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200612821P,2017, 2020-06-15T13:56:44.854Z,2018-08-01T15:02:46.481Z,usr3394,false,MSH-ALPES,USR 3394,Maison des sciences de l'Homme - Alpes,OK,https://www.msh-alpes.fr/,Laurent Begue,laurent.begue@msh-alpes.fr,true,false,2011,"Issue d’une convention entre l' Université Pierre Mendès-France et le CNRS, la MSH-Alpes est depuis le 1er janvier 2011 une unité de service et de recherche du CNRS (USR 3394).
La MSH-Alpes fait partie, depuis sa création du GIS Réseau des Maisons des Sciences de l'homme qui regroupe les Maisons des Sciences de l’Homme existant en France. Il y a actuellement 22 MSH.",10,7,3,http://www.msh-alpes.fr/fr/organigramme-msh-alpes,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=USR3394&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=42&p_num_lab=7&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,,,,"* Risques collectifs, vulnérabilités, résiliences * Alpes, cultures, sociétés, territoires * Images et Textes en Corpus * Réception des Politiques par les Publics",,"* Recherche en SHS : les méthodes évoluent, et vous ? * Séminaire sciences, société et communication * Séminaire société et souveraineté",* GIS Réseau des Maisons des Sciences de l'homme,,false,,,"* Les Bibliothèques Municipales de Grenoble * La Bibliothèque Kateb Yacine","* Base de données iconographique PREALP * Base de données des manuscrits de Stendhal",,,201120533A,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201120533A&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201120533A,2016,https://fr.wikipedia.org/wiki/Maison_des_sciences_de_l%27homme 2019-01-28T14:27:45.198Z,2018-08-01T15:02:46.493Z,ea3643,false,VIP,EA 3643,Versailles Saint Quentin institutions politiques,OK,http://www.vip.uvsq.fr/,Pascale Bertoni,pascale.bertoni@uvsq.fr,false,true,2008,"Le laboratoire VIP est issu d’une évolution en plusieurs étapes historiques : * 1995 : CERDIP (Centre de Recherche en Droit immobilier public). * 2003 : Laboratoire de Droit de la Ville et des Politiques Urbaines (DVPU) intégré au réseau du GRIDAUH. Le champ de recherches est élargi à l’étude du droit des marchés publics et du droit public des biens, et dans une moindre mesure du droit constitutionnel et du droit communautaire. * 2008 : Centre de recherche Versailles Saint-Quentin Institutions Publiques (VIP), équipe d’accueil (EA 3643) qui fédère au sein d’une même unité de recherche l’ensemble des enseignants-chercheurs en droit public rattachés à la Faculté de droit.",75,55,20,http://www.vip.uvsq.fr/centre-de-recherche-versailles-saint-quentin-institutions-publiques/langue-fr/l-equipe/,,25,* Droit public,"* Cedh * Contrats publics * Droit public de l'économie * Collectivités territoriales * Droit administratif * Droit communautaire * Droit comparé * Droit constitutionnel * Droit fiscal * Droit international public * Droit public * Environnement * Finances publiques * Gouvernance * Handicap * Histoire du droit et des institutions * Histoire politique et institutionnelle * Libertés publiques et droits de l'homme * Mobilité * Opinion publique * Philosophie politique * Politiques publiques * Principe de précaution * Relations internationales * Science politique * Sciences juridiques et politiques * Services urbains * Sociologie politique * Systèmes politiques * Transport * Énergie et droit * Énergie nucléaire * Énergie renouvelable","* Droit de l'action publique * Interactions entre les systèmes juridiques","Programmes en cours : * Exécution des décisions internationales en matière de droits de l'homme * Lutte contre le terrorisme dans le droit et la jurisprudence de l'UEa * Handicap Medical Excellence Le V.I.P. est l'un des partenaires d'un projet de grande échelle, principalement porté par des médecins de l'Hôpital Raymond Poincaré de Garches, visant à créer un IHU (Institut Hospitalo Universitaire). Les aspects juridiques intéressent les différents partenaires du projets, en vue notamment de faire évoluer la loi de 2005.","* Séminaire doctoral - VIP : * séminaires de présentation de travaux * séminaires de culture théorique * La culture à la fac : ""L'arbre des libertés"" - Droit, libertés et littérature","* Partenariat avec le Conseil de l'Europe (projet sur les Droits de l'Homme) * Partenariat avec les juridictions administratives versaillaises",,,,"""Actu VIP"": Lettres d'information du VIP","* Bibliothèque du VIP * BU de Saint-Quentin-en-Yvelines","* Revues électroniques en ligne via la bibliothèque numérique de l'UVSQ : * Lextenso (revues en droit) : Petites Affiches, RDP... * Plateforme Dalloz * Doctrinal * ICPSR (Inter-university consortium for political and social research) * Lamyline Ref'lex;Lexbase * Navis intégral * Revues en sciences humaines : * CAIRN * Droit et société * Revue internationale de droit économique * Revue internationale de droit pénal * Revue sur le droit et la politique de la concurrence * Persée * Revue française de Science politique de 1951 à 2002 * In extenso (archives ouvertes et sites académiques en sciences sociales et humaines) * www.revues.org",,,200214917K,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200214917K&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200214917K,2017,https://fr.wikipedia.org/wiki/Universit%C3%A9_de_Versailles-Saint-Quentin-en-Yvelines 2019-07-15T10:41:45.811Z,2018-08-01T15:02:46.497Z,ea162,false,CECP,EA 162,Centre d'études constitutionnelles et politiques,OK,https://www.u-paris2.fr/fr/recherche/centres-de-recherche/centre-detudes-constitutionnelles-et-politiques-cecp,Armel Le Divellec,vanessa.tang@u-paris2.fr,false,true,1992,"Le Centre d’Études Constitutionnelles et Politiques (CECP, Équipe d’Accueil 162) a été créé dans les années 1990 par le professeur Pierre AVRIL. Il est le résultat d’un regroupement de chercheurs individuels, de la fusion d’équipes de recherche en droit constitutionnel et en science politique ainsi que de l'intégration d'une salle de science politique dédiée à la documentation dans cette discipline.",8,0,0,https://www.u-paris2.fr/fr/recherche/centres-de-recherche/centre-detudes-constitutionnelles-et-politiques-cecp,,,* Droit public,"* Droit constitutionnel * Droit public * Science politique",,,,"* Centre d'Études et de Recherches de Sciences Administratives et Politiques (CERSA) * Centre d'Études et de Recherches Comparatives Constitutionnelles et Politiques (CERCOP) * Centre d'Analyse et de Recherche Interdisciplinaire sur les Médias (CARISM) * Centre de Recherche sur les Droits de l'Homme et le Droit Humanitaire (CRDH) * Institut Michel Villey pour la Culture Juridique et la Philosophie du Droit * Institut du Droit Public et de la Science Politique (IDPSP) * Centre de Recherches en Droit Administratif (CRDA)",,,,"Facebook, Twitter,",Bibliothèque de l'Institut Cujas,,,,199213029B,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199213029B&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199213029B,2017, 2019-01-30T15:40:53.011Z,2018-08-01T15:02:46.492Z,umr8245,false,URMIS,UMR 8245 IRD 205,Unité de recherche migrations et société,OK,http://urmis.unice.fr/,Elisabeth Cunin,elisabeth.cunin@ird.fr,true,true,1996,"L’unité de recherche Migrations et société est une unité multi-sites localisée à Paris et à Nice. Elle a été créée en 1996 par l’ Université Paris Diderot-Paris 7, l’Université de Nice Sophia Antipolis et le CNRS sous le statut d’ESA (unité propre de recherche de l’enseignement supérieur associée au CNRS) avant de devenir une UMR en 2000. Entre 2000 et 2008 (inclus), l'URMIS était une UMR Université Paris Diderot-Paris 7, Université de Nice Sophia Antipolis et CNRS. En 2008, le périmètre des tutelles a été élargi à l'IRD (qui souhaitait ""umériser"" ses unités). Mais, à partir du 1er janvier 2009, le CNRS s'est retiré. L'UMR actuelle réunit Université Paris Diderot-Paris 7, Université de Nice Sophia Antipolis et IRD.",109,51,58,http://urmis.unice.fr/?-Membres-permanents-de-l-Urmis-,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8245&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=SC.HS+-+SCIENCES+POLITIQUES&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=30&p_nbres=42&p_num_lab=38&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,59,"* Sociologie * Démographie","* Racisme et discriminations * Identités * Sociologie des migrations * Territoires","* Thème 1 : Les reconfigurations des migrations contemporaines * Travailleurs et élites circulants * Cycle de vie, famille et mobilités * Circulations et recompositions sociales * Thème 2 : Fabriques de l'altérité, racisme et discriminations * Mobilités et figures de l’altérité * Immigration et situations minoritaires : politiques, discours et mobilisations * Ethnicisation, Racisation, processus discriminatoires * Thème 3 : Mobilité, mémoire et rapport au territoire * “Retours d’esclavages” * Anthropologie de l’exil extrême * Usages politiques des espaces, rapports de pouvoir et identifications * Thème 4 : Circulation des objets et des signes culturels * Créations artistiques, échanges technologiques et dynamiques religieuses * Usages socioéconomiques de l’ethnicité * Objet transversal à la programmation : La santé",,"* Séminaires de recherche de l’Urmis Paris * Séminaire Urmis Nice ""Migrations et altérités"" * Séminaire mensuel d’enseignement par la recherche ""Migrations, Ethnicité, Santé""",* Réseau Discrimination & Racisme (ReDiRa),true,false,,"* Publications accessibles sur le site internet * Lettre d'information numérique ""e-info"" mensuelle","* BU de Nice * BU de Paris Diderot","* REMISIS : Base de données bibliographiques * BibCnrs (portail de l’information pour les sciences de l’homme et de la société, CNRS/INIST) * revues électronique, journaux, périodiques et bases de données (par la bibliothèque universitaire de Nice et l’université Paris 7 Denis Diderot) * Archive ouverte HAL-SHS (Hyper Article en Ligne - Sciences de l’Homme et de la Société) * Portail Revues.org",,,200919202M,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200919202M&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200919202M,2017, 2020-03-12T12:21:05.906Z,2018-08-01T15:02:46.499Z,umr8216,false,CéSor,UMR 8216,Centre d’études en sciences sociales du religieux,OK,http://cesor.ehess.fr/,Nathalie Luca et Pierre Antoine Fabre,cesor@ehess.fr,true,true,2015,"L’UMR ÉHESS/CNRS (8216) se compose du CEIFR (Centre d’études interdisciplinaires des faits religieux), et de deux anciennes équipes du CRH (Centre de recherches historiques) : le CARE (Centre d’anthropologie religieuse européenne) et le Centre d’études byzantines, néo-helléniques et sud-est européennes. Dans le cadre des réseaux institutionnels en voie de (re)constitution et à l’horizon du Campus Cordorcet. Le CéSor devrait permettre d’intensifier les relations de travail avec les différents partenaires de l’ÉHESS autour de centres d’intérêt communs.",120,34,86,http://cesor.ehess.fr/les-membres-du-cesor/,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8216&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=50&p_nbres=64&p_num_lab=55&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,57,"* Anthropologie * ethnologie","* Afrique subsaharienne * Amérique centrale et Amérique du sud * Amérique du nord * Europe occidentale * Extrême orient * Monde Méditerranéen * XIXe siècle, XVIIIe siècle, XVIIe siècle, XXe siècle * Arts de l'image (nouvelles techniques) * Croyances * Histoire des religions * Histoire politique et institutionnelle * Moyen âge * Philosophie politique * Sociologie religieuse * Sécularisation * Laïcité * Modernité * Globalisation","* Savoirs, méthodes, objets * Méthodes et enquêtes : les mots et les catégories des sciences sociales des religions ; enquêtes filmiques * Nœuds problématiques : modernité religieuse ; pluralité ; économie du « croire » ; diaspora * Supports et objets : textes ; inscriptions ; ex-voto ; reliques ; objets liturgiques ; lieux de culte * Politique et normes * Ecclésial et politique : religion et organisation étatique ; la dualité ecclésial/politique en régime séculier * Régulation : ordre liturgique ; orthodoxie et dissidences ; ascétisme et débordements mystiques ; répression et modalités de reconnaissance * Religieux et déconstruction de l’ordre « naturel » : alliance, filiation, genre et sexualité * Institutions et pratiques : dévotions, spiritualités, politiques de conversions, politiques artistiques * Religion et révolution aux époques moderne et contemporaine * Frontières et porosités * Définitions identitaires, construction/déconstruction des communautés * Rencontres et confrontations : tradition/orthodoxie ; dynamiques missionnaires et confrontations religieuses * Espaces et lieux, réels et symboliques : fixation, mouvement, recomposition * Transnationalisation des communautés et des pratiques religieuses",,"* L’Église : un dictionnaire critique * Les variations du croire * Saintetés, sacralités, dévotions. Pour une anthropologie historique de l’objet votif * Sciences sociales et conflit (s) en Syrie : enjeux épistémologiques, méthodologiques et éthiques * Réceptions croisées des conceptions autochtones et occidentales : ontologies, genre et citoyennetés * Les christianismes dans l’Orient européen et méditerranéen (XVe-XIXe siècle). Échanges, compétitions, mimétismes * Missions religieuses modernes","* PRI Sciences sociales du religieux * Les éditions de l’Ehess * PSL, Paris Sciences et Lettres * CESPRA, Centre d’Études Sociologiques et Politiques Raymond Aron * AFSR, Association Française de Sciences sociales des Religions * EPHE, École pratique des hautes études * GSRL, Groupe Sociétés, Religions, Laïcités * IESR, Institut européen en sciences des religions * CJB, Centre Jacques Berque (Rabat, Maroc) * DRES, Droit, Religion, Entreprise et Société * CIERL, Centre interdisciplinaire d’étude des religions et de la laïcité * Campus Condorcet * Yale University the Mac Millan Center * Identités et Religions : Études des Nouveaux Enjeux (IRENE) * ORELA, « Observatoire des Religions et de la Laïcité » * SISR, Société Internationale de Sociologie des Religions * Le calendrier des lettres et des sciences humaines et sociales * Universites Numeriques * Sacrés liens ! Étudier les liens en sciences sociales des religions * Eschatologies * Alter vs. Ego, Un blog sur l’ethnicité et le multiculturalisme",true,,,"* La lettre du CéSor * Facebook, Twitter, linkedin","* bibliothèque Alphonse Dupront * bibliothèque de l’ancien Centre d’anthropologie religieuse européenne (CARE) * La Bibliothèque de la section des sciences religieuses","* catalogue collectif Babylone * SUDOC",,,201220424C,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201220424C&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201220424C,2022,https://fr.wikipedia.org/wiki/Centre_d'%C3%A9tudes_interdisciplinaires_des_faits_religieux 2019-01-28T15:54:04.180Z,2018-08-01T15:02:46.498Z,umr8083,false,CERCEC,UMR 8083,"Centre d’études des mondes russe, caucasien et centre-européen",OK,http://www.cercec.fr/#,Françoise Daucé,francoise.dauce@ehess.fr,true,true,2001,"Le Centre d’études des mondes russe, caucasien et centre-européen (Cercec) est issu de l’ancien Centre d’études sur la Russie, l’Europe orientale et le domaine turc, fondé par Alexandre Bennigsen à l’Ecole des Hautes Etudes en Sciences Sociales (EHESS) dans les années 1960. Scindé en deux en 1995, ce laboratoire de recherche a donné naissance d’une part, au Centre d’histoire du domaine turc, d’autre part, au Centre d’études des mondes russe, soviétique et post-soviétique. Ce dernier a été associé au CNRS en 1999 avant de devenir Unité mixte de recherche (UMR) en 2001. Il a changé de nom en 2004 pour devenir le Centre d’études des mondes russe, caucasien et centre-européen (UMR 8083) afin de rendre compte de l’évolution des recherches menées en son sein.",42,27,15,http://www.cercec.fr/membres/,https://annuaire.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8083&p_int=CERCEC&p_lab=UMR&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=54&p_dep_sec=&p_sec=&p_dom=&p_reg=11&p_pays=FRA&p_an_cre=&p_an_renou=&p_i=0&p_nbres=1&p_num_lab=0&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,25,"* Histoire et civilisations : histoire des mondes modernes, histoire du monde contemporain, de l'art","* Empire russe * URSS, Caucase * Asie centrale * Europe centrale * Mondes slaves * Russie * XIXe siècle, XVIIIe siècle, XVIIe siècle, XXe siècle * Dynamique des populations et des peuplements * Environnement, gestion des milieux, géographie de l'environnement et des risques * Géographie humaine, géographie physique, géographie sociale et culturelle * Histoire de la santé et du corps, histoire des sciences, histoire des techniques, histoire sociale, histoire économique * Langues et civilisations slaves, risques naturels, écologie","* Fronts et frontières d'Empire (XVIème-XXIème) * Actions et normes. Pratiques sociales et économiques du XVIIème siècle à nos jours * Sciences et techniques dans les arts du gouvernement * Violence et justice pénale dans des sociétés en recomposition (XXème-XXIème siècles) * Création, diffusion et réception des biens culturels dans l'espace impérial, soviétique et post-soviétique","* Projet ANR ""Jeune chercheur"", 2017-2022 * Projet franco-allemand financé par l'ANR et la DFG, 1er juillet 2014 - 1er juillet 2017 * CASCADE is an international EU-funded research project led by the Fondation Maison des Sciences de l’Homme",* Séminaire Central du CERCEC,"* Centre Français de Recherche en Sciences Sociales à Prague (CEFRES) * Centre de Recherches et d'Analyses Géopolitiques * Centre d'Études Turques, Ottomanes, Balkaniques et Centrasiatiques (CETOBAC) * Centre Roland Mousnier (CRM) * Europe Orientale, Balkanique et Médiane (EUR'ORBEM) * Institut de Sciences Sociales du Politique (ISP) * Centre d'Histoire Espaces et Cultures (CHEC) * Centre d'Études Franco-Russe de Moscou (CEFR) * Centre Marc Bloch * Collèges Universitaires Français de Moscou et de Saint-Pétersbourg * Ecole des Hautes Études en Sciences Économiques de Moscou (EHESE) * Fondation Maison des Sciences de l'Homme (FMSH) * International Council for Central and East European Studies (ICCEES) * Laboratoire d’Excellence Transformation de l’Etat, Politisation des Sociétés et Institution du Social (TEPSIS)",true,,,,"Bibliothèque du Centre d’études des mondes russe, caucasien et centre-européen","* catalogue de la BULAC * Catalogue du SUDOC",,,200012743F,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200012743F&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200012743F,2017, 2019-01-28T14:27:45.204Z,2018-08-01T15:02:46.500Z,ea1441,false,CEJ,EA 1441,Centre d’études Japonaises,OK,http://www.cej.fr/index.php/fr/,Michael Lucken,mlucken@inalco.fr,false,true,1994,"Créé en 1974 comme centre de recherche attaché à l’Institut national des langues et civilisations orientales (INALCO), il possède depuis 2012 une antenne à l’Université de Toulouse II-Le Mirail. Equipe d’accueil reconnue par le ministère de l’Education nationale (EA 1441) depuis 1994",45,0,0,http://www.cej.fr/index.php/fr/equipe/membres-titulaires,,29,"* Langues et littératures arabes, chinoises, japonaises, hébraiques","* Extrême orient * Langues et littérature étrangères * Civilisation japonaise moderne et contemporaine * Etudes de corpus japonais","* Corpus fondamentaux : Interpréter et traduire * Linguistique japonaise : Structures et évolutions * La fabrique du contemporain : Dynamiques sociales et culturelles",,"* Séminaire « Yamagata Bantō & son temps (XVIIIe-XIXe siècles) » * Séminaire ""Sciences sociales du Japon contemporain""","* CEEJA: Centre européen d'études japonaises d'Alsace * Collège de France * CRCAO: Centre de recherche sur les civilisations de l'Asie orientale * CRJ: Centre de recherches sur le Japon * CRLAO: Centre de recherches linguistiques sur l'Asie orientale * EAJS: European Association for Japanese Studies * EFEO: École française d'Extrême-Orient * IAO: Institut d’Asie Orientale * INALCO: L'institut national des langues et civilisations orientales * MFJ: Maison franco-japonaise * SFEJ: Société française des études japonaises * Unité de Japonais de l'Université de Genève: Le site de l'unité de Japonais de l'Université de Genève",,,,Twitter,?,?,?,?,199213453M,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199213453M&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199213453M,2017, 2019-01-28T14:27:45.208Z,2018-08-01T15:02:46.490Z,umr7363,false,SAGE,UMR 7363,"Sociétés, acteurs, gouvernement en Europe",OK,http://sage.unistra.fr/,Marine De Lassalle,marine.delassalle@misha.fr,true,true,2013,"L'UMR 7363 SAGE (Sociétés, Acteurs, Gouvernement en Europe), créée au 1er janvier 2013, résulte de la fusion de 4 unités de recherche : le GSPE, Groupe de Sociologie Politique Européenne, équipe de l’UMR PRISME, le CRESS, Centre de Recherche et d’Etude en Sciences Sociales, le LESVS, équipe du Laboratoire d’Epistémologie des Sciences de la Vie et de la Santé et le CDES, Centre du Droit de l’Environnement de Strasbourg, auxquelles s’ajoutent des chercheurs de la Faculté de géographie.",116,63,53,http://sage.unistra.fr/membres/,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7363&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=40&p_nbres=64&p_num_lab=43&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,72,* Science politique,"* Études européennes * Sociologie politique","* Axe 1 – Représentation politique et reconfiguration des champs du pouvoir en Europe * Axe 2 – Environnement, santé, sciences et société * Axe 3 – Production, circulation et critique des savoirs * Axe 4 – Population, inégalités et politiques sociales * Axe 5 – Transformations des marchés des biens symboliques : culture et médias * Axe 6 – Dynamiques territoriales, villes et mobilités","* ANR MEDICI Les Conflits d'intérêts dans le domaine du médicament (2016-2019) * ""Retrieving alternatives. Pluralism in practice in European psychiatry, 1950-1980"", ANR DFG (2019-2022) * Projet CONSENS ""Le consensus en santé et en environnement : Analyse de la construction d’une pratique en contexte d’incertitude scientifique"" Idex (2018-2020) * BodyCapital - ERC Advanced Grant, ERC Advanced Grant BodyCapital « The healthy self as body capital: Individuals, market-based societies and body politics in visual twentieth century Europe » * ""Agir ensemble contre l’obésité dans les QPV : éducation thérapeutique et prévention par l’activité physique (recherche action)"", Contrat de ville Eurométropole- Université de Strasbourg, 2015-2020 * ""MEDICI Les conflits d’intérêts dans le domaine du médicament"", ANR PRC (Collaborative project), 2016_2019 * GIP « Le (s) bien (s) commun (s) ""L’échelle de communalité"" mission de recherche Droit et Justice (2017-2019) * Construction et circulation des savoirs ""experts"" sur l'action publique dans l'espace européen : le rôle des organisations internationales - Programme Misha (2017-2019) * Enjeux des dynamiques socio-démographique de la Nouvelle Calédonie, Convention de partenariat INED / Université de Strasbourg * VioCoProVic : Violences conjugales et protection des victimes. Usages et conditions d'application dans les tribunaux français des mesures judiciaires de protection des victimes de violences au sein du couple - GIP Droit et Justice (2016-2019) * ""Accès au services publics et rapport aux institutions dans les quartiers populaires"" - Eurométropole-PEAP (2016-2020) - Eurométropole * Analyses des trajectoires des personnes accompagnées par le département du Bas-Rhin ans le cadre de l’action de proximité et « Etude sur la grande Précarité » – Conseil départemental 67 (2018-2019) * Analyses des trajectoires des usagers sociaux – Ville de Strasbourg (2017-2019) * Recherche qualitative sur le métier d'artiste plasticien : formation, activités, revenus et représentations du métier, dans la dynamique des parcours professionnels - Ministère de la culture/SG/DEPS (2018) * Alexandre Kotska : ""Migrants structurels ? Peintres, décorateurs et architectes actifs en Alsace-Lorraine entre France et Allemagne (1850-1930)"" (2017-2019) * NAchhaltige VErringerung des Biozideintrags in das Grundwasser am Oberrhein (NAVEBGO) / Réduction de l’apport de biocides dans les eaux souterraines du Rhin supérieur (Interreg 2019-2021) * Regionale Lösungen für Erneuerbare-Energie-Systeme in der Trinationalen Metropolregion Oberrhein (TMO) – RES_TMO / Solutions régionales pour des systèmes d’énergie renouvelable dans la Région Métropolitaine Trinationale du Rhin Supérieur (RMT) (Interreg 2019-2021) * “Synergies and potentials of an integrated renewable energy supply and storage system in the Upper Rhine Region. An interdisciplinary perspective” (SIRES-URR), (2018 ) projet trinational autour des énergies renouvelables, soutenu par EUCOR-Le Campus Européen, associant les Universités de Freiburg, Strasbourg, Bâle, Karlsruhe et Mulhouse. Porté par l'UMR SAGE pour Strasbourg * Responsabilité de l’axe de sciences sociales « Gouvernance » et membre, représentant l’Unistra, du Board international du réseau Upper Rhine cluster in sustainability research / Cluster de recherche en durabilité du Rhin Supérieur (INTERREG V, 2016-2019 * ","* Séminaire général de SAGE * Séminaire Sociologie politique des relations internationales * Séminaire Sociologie politique de l'Europe * Séminaire Ethnologie et archéologies * Séminaire ST2S * Séminaire ""Les mardis de l'Histoire médicale"" * Séminaire doctorant ""L'enseignement supérieur et la formation doctorale à l'épreuve des réformes dans l'enseignement supérieur et la recherche : règlements, discours, pratiques""","* AFSP – Association Française de Science politique * AFS – Association Française de Sociologie * AISLF – Association internationale des sociologues de langue française * ASRDLF - Association de science régionale de langue française * SFDE – Société Française pour le Droit de l'environnement * PUS – Presses Universitaires de Strasbourg * MISHA – Maison Interuniversitaire des Sciences de l'Homme - Alsace * CNRS – Centre National de la Recherche Scientifique * ECPR – European Consortium for Political Research * ENA – Ecole Nationale d'Administration * PEAP – Pole Européen d'Administration Publique * Pôle Energivie * Revue d'Allemagne et des pays de langue allemande * Revue Études européennes * Revue VertigO - revue internationale en sciences de l'environnement * Pôle Véhicule du Futur",false,false,,"Diffusion des publications sur : * les pages personnelles des chercheurs (pour les articles) * la plaquette du laboratoire (pour les ouvrages) * les listes de diffusions aux tutelles (CNRS, IEP, Université) et aux autres laboratoires, et sur l'ancmsp * newsletter en création","Les membres du SAGE ont la possibilité d'aller dans toutes les bibliothèques, chaque composante ayant sa bibliothèque (IEP, MISHA, Université...)","* Code BibCnrs : Au sein de l'Environnement Numérique de Travail à l'université : portail d'abonnement par l'université * Par l'IEP : * Factiva * Encyclopédia Universalis online * Annual review * CAIRN * JSTOR * Informaworld (Taylor and Francis) * SAGE journals on line * SpringerLink * Wiley Online Library","Le SAGE dispose d'un budget pour les achats en fonction des intérêts des chercheurs. Le SAGE demande aux composantes d'acheter des livres et les publications des membres du laboratoire.
Au niveau recherche, la politique d'acquisition se fait à la demande des enseignants, des chercheurs (peu de budget au SAGE qui leur permet d'acheter un peu de livres en anglais), notamment sur les politiques publiques de l'UE et l'Europe. La bibliothèque de l'IEP s'occupe aussi d'acheter les ouvrages pour les étudiants (manuels, classiques, nouveautés en français, beaucoup de sociologie politique)","Ces formations ne sont pas organisées par le laboratoire mais elles sont organisées par l'URFIST (Unité Régionale de Formation à l'Information Scientifique et Technique), dépendante de l'université de Strasbourg. Ces formations sont gratuites pour les membres du SAGE. Elles portent par exemple sur Zotero, endnote,...
La bibliothèque de l'IEP propose elle des formations à ses outils aux étudiants.",201320506M,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201320506M&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201320506M,2017, 2019-01-28T15:54:04.565Z,2018-08-01T15:02:46.502Z,ea4179,false,CREDESPO,EA 4179,Centre de recherche et d'étude en droit et science politique,OK,http://credespo.u-bourgogne.fr/,Patrick Charlot,patrick.charlot@u-bourgogne.fr,false,true,2007,"Le CREDESPO est issu, en 2007, de la fusion de trois équipes d'accueil : le Centre d'Etude et de Recherche Politiques (CERPO, fondé en 1959 par Léo Hamon), le Centre de Recherche en Droit Public Economique (CRDPE) et le Laboratoire de Droit Privé Appliqué (LDPA, anciennement, Centre de recherche juridique sur les marchés - CERJUMA, créé en 1979).",59,51,8,http://credespo.u-bourgogne.fr/equipe.html,,75,* Droit public,"* Démocratie (politique, sociale) * Constitution * Théorie du pouvoir constituant * Elections / sociologie électorale * Partis politiques, syndicats, groupes d’intérêts * Moralisation de la vie politique * Droit parlementaire * Libertés publiques * Histoire des idées politiques * Relations internationales et européennes * Droit processuel * Juridictions de droit commun et spécialisées * Procédure civile * Procédure pénale * Droit du contentieux administratif * Droit européen des droits de l’homme * Procès équitable * Déjudiciarisation","* Institutions (normes, idées, organisations) * Patrimoines (patrimoine individuel, patrimoine commun) * Justices","* CIFRE Aurélie Lucas * CIFRE Alizé Bonfils",,"* Centre d'Études Spatiales de la Biosphère (CESBIO) * Centre de Recherches Anglophones * Institut Camille Jordan (ICJ) * Institut de Physique et Chimie des Matériaux de Strasbourg (IPCMS) * Centre de Recherches Juridiques de l'Université de Franche-Comté (CRJFC) * Politiques Publiques, Action Politique, Territoires (PACTE)",true,false,,Flux RSS,"* Bibliothèque CREDESPO * Bibliothèque de section droit et science politique",* legipresse,L'acquisition se fait sur proposition des enseignant-chercheurs ou des doctorants.,La MSH et les services documentaires de l'université offrent des formations à la documentation aux chercheurs et doctorants.,200715419J,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200715419J&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200715419J,2017,https://fr.wikipedia.org/wiki/Centre_de_recherche_et_d%27%C3%A9tude_en_droit_et_science_politique 2019-01-28T15:54:04.565Z,2018-08-01T15:02:46.495Z,fr2009,false,CADIS,UMR 8039,Centre d'analyse et d'intervention sociologiques,OK,http://cadis.ehess.fr/,Alexandra Poli,polialexandra@yahoo.fr,true,true,1981,"Créé en 1981 par une équipe de chercheurs réunis autour d'Alain Touraine, le CADIS est un laboratoire de sociologie diversifié dans ses objets et intégré dans ses orientations théoriques et sa conception du travail de recherche. Le CADIS doit son nom à la méthode élaborée par Alain Touraine, l’intervention sociologique, qui repose sur l’idée que les acteurs sont en position d’élever leur capacité d’action par l’analyse de leur action, de co-produire et de s’approprier une analyse sociologique.",106,17,89,http://cadis.ehess.fr/index.php?1618,https://annuaire.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=FRE2009&p_int=&p_lab=FR&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=54&p_dep_sec=&p_sec=&p_dom=&p_reg=11&p_pays=FRA&p_an_cre=&p_an_renou=&p_i=0&p_nbres=7&p_num_lab=5&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,60,"* Sociologie * démographie","* Discrimination/subjectivité/désubjectivité * Sociologie générale * Mouvements sociaux","* La construction du sujet personnel * Les formes et les logiques de la mondialisation * Les mouvements régressifs et/ou répressifs",AAP Attentats-Recherche (CNRS),Le séminaire interne du CADIS,"* entre des Sciences du Gout et de l'Alimentation (CSGA) * Maison Méditerranéenne des Sciences de l'Homme (MMSH) * Centre d'Études des Relations et des Contacts Linguistiques et Littéraires (CERCLL) * Labex TEPSIS",,,,"Flux RSS de : ""Actualités de l'EHESS""",,,,,201722350Z,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201722350Z&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201722350Z,2017, 2019-01-28T15:54:04.565Z,2018-08-01T15:02:46.503Z,ea4107,false,CRLD,EA 4107,Centre de recherche Léon Duguit pour l’étude des nouvelles transformations du droit,OK,http://crld.univ-evry.fr/,Olivia Bui-Xuan,nadine.bonnet@univ-evry.fr,false,true,2006,,47,23,24,http://crld.univ-evry.fr/?page_id=117,,22,* Droit privé et sciences criminelles,"* Collectivités territoriales * Criminologie * Droit administratif * Droit civil * Droit communautaire * Droit comparé * Droit constitutionnel * Droit des affaires * Droit des obligations * Droit des successions * Droit fiscal * Droit international privé * Droit international public * Droit privé et sciences criminelles * Droit processuel et procédures * Droit public * Droit pénal et procédure pénale * Finances publiques * Histoire du droit et des institutions * Libertés publiques et droits de l'homme * Nouvelles technologies * Propriété industrielle * Propriété littéraire et artistique * Relations internationales * Science politique * Sciences juridiques et politiques","* Institutions, collectivités publiques et identités * Régulation * Contrat et patrimoine * Particulier, droits international et européen",,,"* Centre Maurice Hauriou pour la Recherche en Droit Public (CMH) * Étude sur les Sciences et les Techniques (EST) * Laboratoire de Recherche en Management (LAREQUOI) * Groupe de Recherche et d'Accueil en Droit et Économie de la Santé (GRADES) * Cente d'Étude des Politiques Économiques de l'Université d'Evry (EPEE) * Laboratoire Droit des Affaires et Nouvelles Technologies (DANTE) * Réseaux, Innovation, Territoires et Mondialisation (RITM)",,,,,Bibliothèque universitaire de l’UEVE,,,,200615351P,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200615351P&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200615351P,2017, 2019-01-28T15:54:04.566Z,2018-08-01T15:02:46.503Z,umr8211,false,CERMES3,UMR 8211,"Centre de recherche médecine, sciences, santé, santé mentale, société",OK,http://www.cermes3.cnrs.fr/fr/,Jean-Pau Gaudilliere,jean-paul.gaudilliere@vjf.cnrs.fr,true,true,2010,"Le Cermes3 a pour origine la fusion en 2010 entre Le Cermes, unité mixte CNRS, Inserm et EHESS fondée en 1986 par Claudine Herzlich et dirigée de 1998 à 2009 par Martine Bungener et du Cesames, unité mixte CNRS, Inserm et Université Paris Descartes créée en 2004 dont le directeur était Alain Ehrenberg.",83,55,29,http://www.cermes3.cnrs.fr/fr/membres,https://annuaire.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8211&p_int=CERMES&p_lab=UMR&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=1&p_num_lab=0&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,65,"* Sociologie * démographie","* Autonomie * Démographie * Dépendance * Handicap * Maladies chroniques * Nouvelles technologies * Organisation et structure * Politiques publiques * Profession * Propriété industrielle * Relations professionnelles * Risque * Santé mentale * Mondialisation * Catégories * Science politique * Sociologie économique et du développement * Technologie et société * Victime * Vieillissement * Economie de la santé","* Axe 1: Transformations de la santé mentale : objectivation des savoirs psychiatriques et production des individus * Axe 2: Handicap, maladies chroniques et vieillissement : requalifications politiques et sociales * Axe 3:Consommations médicamenteuses, risques et addictions * Axe 4: Innovations et mondialisation du médicament et de la santé","* Contrat Région Ile-de-France - Picri (2014-2017): Diagnostic prénatal et prévention des handicaps : l'expérience des femmes et des couples * Contrat ERC (2014-2018): From International to Global: Knowledge, Diseases, and the Postwar Government of Health (Globhealth) * Contrat Iresp (2014-2017): Les ""handicaps rares"" dans les transformations du secteur médico-social. Analyse socio-historique de la construction et des usages pratiques de la catégorie entre 1960 et 2013 (Harasohi) * Contrat Iresp (2014-2017): Les défis de l'école inclusive en France : des attentes aux modalités concrètes","* Séminaire du Cermes3 * La naturalisation des différences : l’hérédité et ses usages (XIXe-XXIe siècle) * Le nouvel esprit de la psychiatrie et de la santé mentale : histoire, sociologie philosophie * Migrations et santé","* Centre Max Weber * Centre de Recherches Sociologiques et Politiques de Paris - Cresppa (CRESPPA) * Centre de Recherche Individus Épreuves Sociétés (CERIES) * Institut d'Histoire et de Philosophie des Sciences et des Techniques (IHPST) * Centre Maurice Halbwachs (CMH) * Laboratoire d'Ethnologie et de Sociologie Comparative (LESC) * Centre de Recherche sur les Liens Sociaux (CERLIS)",false,true,incitation au dépot en open acces,"Twitter, Facebook","* Bibliothèque MSH * Bibliothèque de Paris 5 * Bibliothèque Sciences Po",L'ensemble des ressources numériques mises à disposition par les tutelles.,,les offres de formations documentaires sont offerts par les tutelles.,200217606H,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200217606H&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200217606H,2017, 2019-01-28T14:27:45.209Z,2018-08-01T15:02:46.501Z,umr8032,false,CETOBAC,UMR 8032,"Centre d’études Turques, Ottomanes, Balkaniques et Centrasiatiques",OK,http://cetobac.ehess.fr/,Nathalie Clayer,clayer@ehess.fr,true,true,2002,"Anciennement appelée « Études turques et ottomanes », l’unité est issue de la fusion, en 1990, de l’Institut d’études turques (Paris-III), dirigé par Louis BAZIN, et d’une des composantes du Centre d’études sur la Russie, l’Europe orientale et le domaine turc (fondée par Alexandre Bennigsen à l’EHESS), centrée sur l’histoire ottomane. Depuis 2010, elle porte le nom de CETOBaC.",83,19,64,http://cetobac.ehess.fr/index.php?1063,https://annuaire.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8032&p_int=cetobac&p_lab=UMR&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=54&p_dep_sec=&p_sec=&p_dom=&p_reg=11&p_pays=FRA&p_an_cre=&p_an_renou=&p_i=0&p_nbres=1&p_num_lab=0&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,62,"* Histoire et civilisations : histoire des mondes modernes, histoire du monde contemporain, de l'art","* Asie centrale * Monde Méditerranéen * Turcs * Turquie * Empire Ottoman","* Langues, cultures et sociétés du domaine turc * Alimentation, cuisine et pratiques épulaires dans le domaine turc * Traduire la Turquie * Le temps et les calendriers dans le domaine turc * L’Empire ottoman (XIVe-XVIIIe siècles) * Matériaux pour l’histoire de l’Empire (archives, chroniques, etc. ) * Recherches sur les zones géographiques (histoire de la mer et des îles ottomanes ; Syrie et Egypte ottomanes ; les Balkans à l’époque ottomane) * Principales thématiques (individus, réseaux, relations ; les communautés ; islam turc et milieux soufis ; questions économiques et financières ; les Ottomans et la mort ; relations extérieures de l’Empire) * La Turquie contemporaine, XIXe-XXe siècles : fin de l’Empire ottoman, Turquie républicaine, émigration turque en Europe * Communautés et relations intercommunautaires * La révolution jeune-turque de 1908 revisitée * Recherches sur les élites politiques en Turquie : constitution d’une base de données sur les députés turcs * Les Balkans à l’époque contemporaine * La presse des musulmans balkaniques : projet de numérisation * Islam balkanique, islam européen * État et sociétés dans les Balkans aux XIXe-XXe siècles * L’Asie centrale et le Caucase : histoire, sociétés, religions * Histoire et anthropologie religieuse de l’islam en Asie centrale * L’Asie centrale contemporaine entre mondialisation et recomposition * Islam et identités nationales au Caucase","* PROPHET (« The Presence of the Prophet: Muhammad in the mirror of his community in early modern and modern Islam ») * NEORELIGITUR (“Nouvelles religiosités en Turquie : un réenchantement dans un pays musulman sécularisé”)","* L'Asie centrale dans tous ses États : questions et méthodes * Les sociétés sud-est européennes des XIXe-XXIe siècles au prisme des trajectoires individuelles * Pour une histoire des mouvements sociaux dans le Sud-Est européen aux XIXe et XXe siècles * Histoire du discours sur soi et des formes de représentations identitaires et collectives en Asie centrale (XVIe-XXe siècle) * Ateliers travaux en cours du CERCEC et du CETOBaC * Séminaire d'itinéraires et de débats en études turques, ottomanes, balkaniques et centrasiatiques * Fêtes de la langue. Une enquête collective * Combattants et anciens combattants dans des États en transformation * Les mutations de l’espace kurde : institutions, acteurs, représentations * Penser en plusieurs langues. Éditer des traductions en sciences humaines et sociales aujourd’hui * Bactres et le bassin de l’Amou daria * Approches interdisciplinaires sociétés romanies/tsiganes * Sciences sociales en péril, sciences sociales de l’avenir * Sociologie historique de la violence au Moyen-Orient * Atelier « Les sources de l'histoire » * Méthodologie de la recherche en histoire * Histoire du fait colonial et impérial : enjeux, problématiques, expériences * Relations inter-diasporiques et dynamiques communautaires (XVIe-XIXe siècle) * Le passé au présent. Séminaire du tronc commun de la formation de master « Histoire et civilisations » (M2) * Savoirs, institutions, économies : histoires connectées et dynamiques globales. Knowledge, Institutions, Economics : connected histories and global dynamics * Arts, patrimoine et culture dans le monde turco-ottoman * L’islam et le nouvel esprit du capitalisme * Politique et autorité dans le soufisme contemporain (PASOC) * L'orientalisme en train de se faire. Atelier d'archives * Penser l’expérience palestinienne entre occupation, relégation et exil * Écrire la Grande Guerre (1914-2014) * Atelier «Historiographie et langues étrangères/séminaire franco-allemand» * Initiation au turc moderne * Études ottomanes, fin XVIIIe - début XXe siècle * Initiation au turc ottoman * Études ottomanes, XVe-XVIIIe siècles","* Institut Français d'Etudes Anatoliennes * NINO - The Netherlands Institute for Near East * American Oriental Society * Near Eastern Languages and Civilizations (Université de Chicago) * The Department of Near Eastern Studies de l'Université du Michigan * Oriental Institute (Université de Chicago) * Institut Français d'Etudes sur l'Asie Centrale (IFEAC)",,,,Flux RSS des actualités du Centre,"* Library of Congress * La Bibliothèque Nationale * Bibliothèque universitaire des langues et civilisations (Bulac) * Bibliothèque d’études arabes, turques et islamiques du Collège de France * Bibliothèque de la Société asiatique * Pandora * Remzi * Bliss * Harrassowitz * Peeters * Oriens * The Near East Division * Recherches Asiatiques Française",,,,200212705F,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200212705F&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200212705F,2017, 2019-01-28T15:54:04.566Z,2018-08-01T15:02:46.504Z,ea370,false,CREA,EA 370,Centre de recherches anglophones,OK,http://crea.u-paris10.fr/,Caroline Rolland-Diamond,caroline.rolland-diamond@u-paris10.fr,false,true,1992,,134,71,63,http://crea.u-paris10.fr/membres-736531.kjsp?RH=1455272945096&RF=1450188432349,,39,* Langues et littératures anglaises et anglo-saxonnes,"* Amérique du nord * Cinéma et médias * Mondes anglophones * Théorie littéraire * Cultures anglophones * Langues et civilisations anglaises * Linguistique","* Politiques, arts et cultures * Théories de l'interprétation, langage * Littérarités",,"* Séminaire du CICLAHO * Séminaire collectif du CREA * Séminaire de Politiques Américaines * Séminaire du GREG * Séminaire de Politiques Américaines * Séminaire d'Observatoire de l'aire britannique * Séminaire de Culture / Cultures * Séminaire de Confluences * Séminaire de FAAAM * Séminaire d'ELAN * Séminaire de Théories de la lecture / Lectures de la théorie","* Laboratoire d'Astrophysique de Bordeaux (LAB) * Systèmes de Référence Temps-Espace (SYRTE) * Laboratoire Géoazur (GEOAZUR) * Institut de Mécanique Céleste et de Calcul des Éphémérides (IMCCE) * Laboratoire Lorrain de Sciences Sociales (2L2S) * Institut d'Astrophysique Spatiale (IAS)",,,,"Facebook, Twitter, linkedin, instagram, Youtube",?,,,,199213081H,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199213081H&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199213081H,2017, 2019-01-28T15:54:04.566Z,2018-08-01T15:02:46.505Z,ea4513,false,CREE,EA 4513,Centre de recherches Europes-Eurasie,OK,http://www.inalco.fr/equipe-recherche/centre-recherches-europes-eurasie,"* Jean Radvanyi * Catherine Servant",jean.radvanyi@inalco.fr
catherine.servant@inalco.fr,false,true,2010,"Fondé en janvier 2010, le CREE (EA 4313) procède du regroupement de trois unités préexistantes au sein de l'INALCO, ayant pour champs de recherche respectifs l’espace balkanique, l’Europe médiane et l’espace russe et euroasiatique. Ce rapprochement a consolidé des collaborations déjà engagées et suscité un véritable désir de travailler ensemble qui s'est immédiatement traduit, auprès des projets spécifiques à telle ou telle composante, par un nombre important d'axes thématiques communs à l’ensemble de l’EA. Par la suite, une restructuration interne au CREE, nécessaire à une meilleure cohérence de la recherche, a porté à quatre le nombre de ses composantes.",110,46,64,http://www.inalco.fr/recherche/equipes-recherche/centre-recherches-europes-eurasie-cree/membres-equipe,,43,"* Histoire et civilisations : histoire des mondes modernes, histoire du monde contemporain, de l'art","* Asie centrale * Europe centrale * Europe du nord * Arts/littératures * Géopolitique * Migration/intégration * Histoire politique et institutionnelle * Histoire sociale * Langues et civilisations slaves * Systèmes politiques","Trois grands champs scientifiques: * histoire, géopolitique, évolutions contemporaines * littératures, arts, cultures, représentations ​* langues et sociétés, linguistique, développement numérique Trois thèmes transversaux ​* nations, nationalités, questions nationales ​* risques, crises, conflits ​* identités en mouvement",,"* Séminaires doctoraux * Séminaires d'équipes","* Centre d'étude des littératures et oralités du monde - CERLOM * CERSEC * EHESS * MSH * Les ambassades étrangères en France * Les instituts culturels étrangers en France * Les Instituts français et Alliances françaises à l'étranger * Les IFRE et UMIFRE * Les Académies des Sciences étrangères * Centre de Recherches Pluridisciplinaires Multilingues (CRPM) * Structure et Dynamique des Langues * Langues et Cultures du Nord de l'Afrique et Diasporas (LACNAD) * Sociologie, Philosophie et Socio-Anthropologies Politiques (SOPHIAPOL) * Laboratoire d'Informatique, Systèmes, Traitement de l'Information et de la Connaissance (LISTIC) * Migrations Internationales, Espaces et Sociétés - Migrinter (MIGRINTER)",true,false,"En vu de donner une visibilité à la recherche qui se fait en son sein, le centre recommande aux chercheurs de déposer le produit de leurs travaux en open acces","* Twitter : @CREE_Inalco
Facebook : @inalco.cree","* Bulac * Biblithèque du CREE",,,* Dans le cadre des cours de méthodes,201019088J,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201019088J&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201019088J,2017, 2019-01-28T15:54:04.185Z,2018-08-01T15:02:46.506Z,umr7074,false,CTAD,UMR 7074,Centre de théorie et analyse du droit,OK,https://ctad.u-paris10.fr/,Jean Louis Halpérin,jean-louis.halperin@ens.fr,true,true,1999,"Le Centre de Théorie et Analyse du Droit est une unité mixte de recherche (UMR 7074) depuis le 1er janvier 2005. L'UMR regroupe deux équipes: TheorHis qui réunit l'ancien Centre de Théorie du Droit, créé en 1978 à l'Université de Paris Nanterre; et le Centre de Recherches et d’Etudes sur les Droits Fondamentaux (CREDOF) a été créé en 2000 en vue de fédérer l’ensemble des recherches portant sur les droits de l’homme à l’Université Paris Ouest Nanterre La Défense",74,31,43,http://ctad.u-paris10.fr/membres/,https://annuaire.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7074&p_int=&p_lab=UMR&p_dir=&p_ville=Nanterre&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=11&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=12&p_num_lab=2&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,27,* Droit public,"* Droit administratif * Droit comparé * Droit public * Histoire du droit et des institutions * Libertés publiques et droits de l'homme * Sciences juridiques et politiques * Sociologie politique","De 2015 à 2018 : * Renouvellement des conceptions du droit constitutionnel * L'écriture du droit * Confrontation des systèmes normatifs
Thématiques générales dans lesquelles ces axes de recherche s'inscrivent : 1. Analyse du langage juridique et de la production des concepts juridiques 2. Théories de l'interprétation et de la justification 3. Théories du raisonnement et de l'argumentation juridiques 4. Théories des systèmes juridiques 5. Philosophie politique 6. Sociologie du droit 7. Théorie des droits fondamentaux
De 2019 à 2023 : * Axe commun : * Critique(s) du droit * Axes TheorHis : * Analyse théorique du droit international: conflits et coopérations en droit international * Analyse des jugements de valeur et des controverses juridiques * Axes Credof : * Droits de l'Homme et évolution des modes de gouvernement * Discriminations, Egalité(s), Solidarité",,"* Séminaire du CTAD * Séminaire ThéorHis","* Réseau Analisi e Diritto * Association Mondiale de philo du droit * Association pour une philosophie du droit du monde latin * Les universités de: Gênes, Palerme, Breccia, la Bocconi de Milan pour l'Italie, Alicante, Carlos III, l'Université autonome à Madrid, la Pompeu Fabra à Barcelone, l'Université de Girona, Univ. de Konstanz, Essex, Birmingham, Copenhague, Uppsala, Helsinki, Chicago, Batimore, Georgetown, American University, New York Univ., Cardozo, Columbia, Boston College, Cornell University, l'UQAM, MacGill, Sydney Univ, le réseau des PUC (Rio de Janeiro, Lima), les universités argentines de Mar del Plata, Cordoba, Buenos Aires (UBA), les universités mexicaines de la UNAM, de l'ITAM, l'externado de Bogota en Colombie, Keio (Tokyo), Kobé et Nagoya. * Laboratoire d'Étude et de Recherche sur l'Action Publique (LERAP) * Centre du Droit Civil des Affaires et du Contentieux Économique (CEDCACE) * Centre Droits et Perspectives du Droit (CRDP) * Institut des Sciences Juridique et Philosophique de la Sorbonne * Centre de Recherches Critiques sur le Droit (CeRCriD) * Centre Alexandre Koyre (CAK) * Centre Maurice Halbwachs (CMH)",true,,,"Pour le CREDOF * Lettre « Actualités Droits-Libertés » (ADL) * Facebook",Bibliothèque Universitaire de Université Paris Nanterre,"* Jotwell (section Jurisprudence) * Law and Politics Book Review/LPBR * Doxa * Isonomia * Anuario de Filosofia del Derecho * Problema. Anuario de Filosofia y Teoria de Derecho * Droit et Société (textes disponibles jsq 2006) * Jus Politicum. Revue de droit politique * Analisi e Diritto (textes accessibles jsq 2007) * Diritto e Questioni Pubbliche * Isonomia * Materiali per una storia della cultura giuridica * Rechtstheorie * Ratio Juris * Law and Philosophy * Bibliothèque Norberto Bobbio * Le Blog de Brian Leiter * Le Blog de Danny Priel * Le Blog de Lawrence B. Solum * Law, Society and Economy Working Paper Series / LSE * Social Science Research Network/SSRN * Harvard Legal Theory Forum * New York University Public Law and Legal Theory Working Papers (NYU) * Public Law and Legal Theory Working Papers (Univ. of Chicago) * UT Public Law & Legal Theory Working Paper Series (Univ. Texas) * The Jean Monnet Working Papers * Les Classiques des sciences sociales",,,199912465H,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199912465H&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199912465H,2017, 2019-01-28T15:54:04.180Z,2018-08-01T15:02:46.507Z,umr8568,false,CIRED,UMR 8568,"Centre International de recherche sur l’environnement et le développement",OK,http://www.centre-cired.fr/index.php/fr/,Franck Lecocq,lecocq@centre-cired.fr,true,true,1998,"Le CIRED: fondé par Ignacy Sachs pour répondre aux thèses du Club de Rome sur les limites de la croissance par des stratégies d’harmonisation environnement - développement, ce qu’on appelle aujourd’hui Développement Durable.",72,32,40,http://www2.centre-cired.fr/Team-27,https://annuaire.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8568&p_int=&p_lab=UMR&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=11&p_pays=&p_an_cre=&p_an_renou=&p_i=280&p_nbres=333&p_num_lab=288&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,26,* Science économique,"* Développement durable * Changement climatique, pol","* Offre et demande d’énergie * Gouvernance et réseaux des industries électriques * Politiques et déploiement des énergies renouvelables (EnR) * Demande d’énergie, fiscalité et équité * Agriculture, eau et usage des terres * Agriculture et développement * Gestion des ressources en eau * Risque et variabilité climatique * Usages des terres, changements globaux et biodiversité * Changement climatique et stratégies de développement * Atténuation des changements climatiques * Adaptation face aux changements climatiques * Négociations climatiques et enjeux institutionnels * Ville durable et territoires * Aménagement des écosystèmes urbains * Transports et mobilité * Politiques de compensation et territoires * Biodiversité, écosystèmes et capital naturel * Développement et conservation des écosystèmes * Évaluation des services écosystémiques * Politiques de protection de la biodiversité","* BNRE Project: Bifurcations in Natural Resources Economics (1920s-1930s) * Le projet TEF/ZOOM * GENEDEC","* Séminaire du CIRED * Approches socio-historiques des transitions énergétiques. XVIIIe-XXIe siècles * Prospective/rétrospective. Passé/futur : les temps de la recherche sur l’environnement. Regards croisés entre sciences humaines et sociales et sciences de la nature * Nuisances industrielles, dans et hors l’entreprise","* LABEX Futurs urbains * LCS-Rnet * R2DS (Réseau de recherche francilien sur le développement soutenable) * Le Groupement d’Intérêt Scientifique (GIS) Climat-Environnement-Société * Laboratoire de Météorologie Dynamique (LMD) * Laboratoire des Sciences du Climat et de l'Environnement (LSCE) * Politiques Publiques, Action Politique, Territoires (PACTE) * Lille - Économie et Management (LEM) * Marchés, Organisations, Institutions et Stratégies d'Acteurs (MOISA) * Centre d'Économie de la Sorbonne * Écologie, Systématique et Évolution (ESE)",,,,"Newsletter Twitter, likedin",?,?,?,?,199812896F,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199812896F&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199812896F,2017,https://fr.wikipedia.org/wiki/Centre_international_de_recherche_sur_l%27environnement_et_le_d%C3%A9veloppement 2019-01-28T15:54:04.567Z,2018-08-01T15:02:46.508Z,ea4337,false,CJB,EA 4337,Centre Jean Bodin,OK,http://centrejeanbodin.univ-angers.fr/fr/index.html,Félicien Lemaire,secretariat.cjb@contact.univ-angers.fr,false,true,2008,"Le Centre Jean Bodin - Recherche juridique et politique a obtenu en 2008 la labellisation d'équipe d'accueil, par fusion du Centre de Droit et d'Études Politiques des Collectivités Territoriales (EA 3147) et de Laboratoire Angevin de Recherches sur les Actes Juridiques (EA 2171), sollicitée auprès de l'autorité de tutelle en novembre 2006.",105,47,58,http://centrejeanbodin.univ-angers.fr/fr/un-peu-d-histoire/liste-des-membres/enseignants-chercheurs.html,,50,* Droit privé et sciences criminelles,"* Droit * Science politique * Droit public * Droit privé","* Axe 1 : Patrimoine, entrepreneuriat, cohésion sociale et justice * Axe 2 : État(s) et Europe, nouvelles régulations","* PLUPATRIMONIAL : Le « PLU patrimonial » : quels nouveaux outils réglementaires pour concilier pérennité du patrimoine bâti et développement urbain durable ? * BonDroit : Bonheur et Droit * ARRECO - l'Accueil et la Relocalisation des Réfugiés en Europe : Catégorisation et Opérationnalisation * AgéDroit : le vieillissement saisi par le droit (Santé, protection, travail, logement…)",* Séminaire doctoral,"* Université Bretagne Loire * Centre de Recherches Interdisciplinaires et Transculturelles (CRIT) * Centre Maurice Hauriou pour la Recherche en Droit Public (CMH) * Centre d'Études et de Recherches Administratives et Politiques (CERAP) * Equipe Poitevine de Recherche et d'Encadrement Doctoral en Sciences Criminelles (EPRED) * Themis Université du Maine (THEMIS-UM) * Centre d'Étude et de Recherche sur les Territoires et l'Environnement (CERETE) * Représentations et Identité. Espaces Germanique, Nordique et Néerlandophone * L’Association des Villes et Pays d’art et d’histoire et des Sites patrimoniaux * Fondation pour les Monuments Historiques * Patrimoine-Environnement (LUR-FNASSEM)",true,true,"L'université d'Angers recommande aux chercheurs et enseignant-chercheurs de déposer en open access dans OKINA (archive ouverte de l'université d'Angers), Service de l'université d'Angers, en liaison avec HAL. Cependant, les chercheurs sont libre et le font selon leur bon vouloir.","* Twitter, Facebook * News letter",* BU Angers,,"Les acquisitions d'ouvrage se font sur commande des chercheurs, enseignant-chercheurs.",,200815566P,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200815566P&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200815566P,2017, 2019-01-28T14:27:45.205Z,2018-08-01T15:02:46.509Z,umr8019,false,CLERSE,UMR 8019,Centre lillois d'études et de recherches sociologiques et économiques,OK,http://clerse.univ-lille1.fr/,Sébastien Fleuriel,clerse-direction@univ-lille1.fr,true,true,2002,"Le Clersé a une histoire ancienne liée à la sociologie et à l’économie du travail. Il est donc, dès sa création par Michel Simon en 1982, un laboratoire pluridisciplinaire. Cette volonté témoigne, à l’époque, d’un positionnement scientifique original. Les directeurs successifs ont eu pour objectif de maintenir cette pluridisciplinarité. C’est dans cette perspective que le Clersé a institué des liens forts avec le Centre d’études et de recherches sur les qualifications (Céreq) et a largement contribué à l’implantation d’un site régional du Céreq à l’Université de Lille 1.",197,108,89,http://clerse.univ-lille1.fr/spip.php?rubrique3,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8019&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=40&p_nbres=64&p_num_lab=44&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,79,"* Sociologie, démographie","* Sociologie * Economie * Anthropologie * Politique, I","* Axe 1 : Ancrages et dynamiques comparés du politique * Axe 2 : Mondes du travail et mondes privés * Axe 3 : Economies et sociétés : développement, richesse, innovation et régulation","* Projet ANR: Des accords collectifs pour l’égalité femme/homme - Collective Agreements for Gender Equality (CAGE) * Projet ANR: Quel genre de manager avant 40 ans ? Faits et discours dans 4 pays européens (WOMAN) * Projet ANR: Analyse de la qualité des emplois dans les activités du nettoyage (CLEAN) * EPISEX - Épistémologie de la sexualité - Penser et enquêter sur la sexualité * AAP 2015 Systèmes agricoles et environnement en Nord – Pas de Calais - Conseil régional Hauts de France: NORmes Environnementales - Activités aGRIcoles et Autonomie d’exploitation (NORE-AGRIA) * CPER 2015-2020 - Conseil régional Hauts-de-France: CLIMIBIO * Projets NEEDS du CNRS (Nucléaire, Energie, Environnement, Déchets et Société) - AAP 2016: ""Dispositifs d’Autogestion et de Cogestion de la Catastrophe : Organisation, Responsabilisation, Démocratie - Cogestion des Risques et Risques de la Cogestion"" * Projets Fondation de France 2014 : Quels littoraux pour demain ?: SLIDE - ""Quels Sentiers LIttoraux pour DEmain ? Analyse prospective et pluridisciplinaire de l’aménagement des sentiers côtiers en Méditerranée"". * Projets Programme Chercheurs Citoyens du Conseil régional Nord-Pas de Calais (2013): « Violences conjugales et santé des femmes : améliorer le parcours de soins des usagères d’une association spécialisée » * Projets ""Systèmes agricoles et environnement en Nord-Pas de Calais"" Conseil régional Nord-Pas de Calais (2012): Analyse des formes d’installation agricole en zone de fermage et de leur influence sur le renouvellement des générations","* Séminaire commun du Clersé * Séminaire ADCP Axe 1 * Séminaire MTMP Axe 2 * Séminaire SEPOL Axe 3 * Séminaire Famille, Santé, Parcours de vie","* Le réseau GERN (Groupement européen de recherche sur les normativités) * Le réseau Maghtech (Maghreb Technologie) * Le réseau RESER (The European Association for REsearch on SERvices) * Le réseau RIODD (Réseau International de recherche sur les Organisations et le Développement Durable) * Le réseau RISC (Regional Integration and Social Cohesion) * Programme européen EURIAS - projet "" Le nucléaire dans les sociétés post-Fukushima : conceptions du risque et production de l’ignorance "" * OFAJ (Office Franco-Allemand pour la Jeunesse) - projet ""La participation politique des jeunes en France et en Allemagne"" (2016-2019) * AUF (Agence Universitaire de la Francophonie) - projet « Construire la paix en République Centrafricaine grâce au développement agricole » (2015-2017) * LIA franco-japonais (Laboratoire international associé) - projet « LIA HPRD : Human Protection and Responses to Disaster - Protection humaine et réponses au désastres » * Institut de Recherche sur l'Éducation (IREDU) * Centre Max Weber * Centre Maurice Halbwachs (CMH) * Centre d'Économie de Paris Nord (CEPN) * Triangle: Action, Discours, Pensée Politique et Économique * Centre d'Études et de Recherches Administratives, Politiques et Sociales (CERAPS) * Groupe de Recherche en Droit, Économie et Gestion (GREDEG)",,,,Working papers,"* La bibliothèque universitaire de Lille 1 * Les Bibliothèques du CUEEP. * La Bibliothèque de l’ENIC. * La Bibliothèque de l’EUDIL. * La Bibliothèque de Formation des Maîtres. * La Bibliothèque de l’UFR de Géographie. * La Bibliothèque Histoire des Sciences et Epistémologie. * La Bibliothèque de l’IAAL. * La Bibliothèque de l’IAE. * La Bibliothèque de l’IEEA. * La Bibliothèque de l’IEMN. * La Bibliothèque de l’IREM. * La Bibliothèque Mathématique-Recherche de Lille. * La Bibliothèque de Physique. * La Bibliothèque des Sciences de la terre. * Le Centre de Documentation de la Faculté des Sciences Économiques et Sociales.",,,La Plate-forme universitaire de données de Lille (relais local au Réseau Quételet) propose des formations documentaires,200212693T,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200212693T&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200212693T,2017,https://fr.wikipedia.org/wiki/Centre_lillois_d%27%C3%A9tudes_et_de_recherches_sociologiques_et_%C3%A9conomiques 2019-01-28T15:54:04.567Z,2018-08-01T15:02:46.509Z,ea4232,false,CMH,EA 4232,Centre Michel de l’Hospital,OK,http://cmh.u-clermont1.fr/,Anne Jacquenet-Gauche,anne.jacquemet-gauche@uca.fr,false,true,2008,Issu de la fusion en 2008 des structures : Centre d'Études Romanistiques d'Auvergne (EA 2147); Observatoire des Mutations de l'État dans l'Espace Européen (EA 984); Centre de Recherche en Droit des Affaires (EA 982).,158,52,106,http://cmh.u-clermont1.fr/user,,60,* Sciences juridiques et politiques,"* Droit privé * Droit public * Histoire du droit et des institutions","* Normes et individus * Droit des personnes et de la famille * Droit notarial * Droit pénal * Théorie et analyse historique et comparative du droit * Normes et entreprises * Droit économique * Droit des contrats * Droit du travail * Droit sanitaire et social * Ethique de l’entreprise * Normes et Etats (science politique) * Institutions et politiques territoriales * Institutions politiques et libertés * Institutions et politiques internationales",* GIP Droit et juste (2016-2019),,"* Centre Aixois d'Études Romanes (CAER) * Édition, Langages, Littératures, Informatique, Arts, Didactiques, Discours (ELLIADD) * Centre d'Études et de Recherches Administratives, Politiques et Sociales (CERAPS) * Centre d'Histoire Espaces et Cultures (CHEC) * Centre de Recherche et d'Étude en Droit et Science Politique (CREDESPO) * Institut de Recherches Philosophiques (IREPH) * Centre de Recherches Juridiques de l'Université de Franche-Comté (CRJFC)",true,false,Une inciation générale de l'université.,"Facebook, Youtube","* la bibliothèque du CMH * la BU de Clermont-Ferrand",Plusieurs revues électroniques à disposition de chercheurs.,"L'acquisition des ouvrages se fait soit à la demande des chercheurs, soit en fonction des grandes thématiques du centre.",,200815469J,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200815469J&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200815469J,2017, 2019-01-28T15:54:04.186Z,2018-08-01T15:02:46.510Z,d196,false,CEPED,UMR_D 196,Centre population & développement,OK,http://www.ceped.org/,Étienne Gérard,contact@ceped.org,,true,1988,"Le Centre Population et Développement a été créé en 1988 à l’initiative du Ministère de la Coopération, afin d’assurer une meilleure coordination des actions de la France dans ce domaine. Institué en tant que Groupement d’intérêt scientifique (GIS). En 2008, le GIS Ceped s’est transformé en une Unité Mixte de Recherche (UMR 196 Paris Descartes Ined IRD) pour répondre aux reconfigurations du panorama de la recherche et des universités françaises, et associe l’IRD et l’Ined.",140,44,96,http://www.ceped.org/fr/membres/,,43,"* Sociologie * démographie","* Démographie * Inégalités * Sociologie de l'éducation * Migrations internationales * Mutations sociales * Sociologie économique et du développement","* Santé, vulnérabilités et relations de Genre au Sud * VIH, vulnérabilité et handicap * Santé reproductive et nouvelles technologies * Migration, Pouvoir, Développement * Familles et réseaux * Normes et savoir * Espaces * Éducation et Savoirs au Sud * Politiques, stratégies et inégalités éducatives * Circulation des savoirs et formation des élites * Production et usage des savoirs scientifiques et techniques","* 4D - Dynamique, Démographie et Développement durable dans les Hautes Terres Malgaches * CESARIA • Determinants of caesarean section : a multicenter study (Benin, Cambodia, France, Mali, Viet Nam) * Chemins et apprentissages sociolinguistiques * Construction et faisabilité d’une intervention d’empowerment en santé sexuelle pour réduire les vulnérabilités sociales et de santé chez les immigrés d’Afrique sub-sahararienne en Ile-de-France * Devenir et recomposition de la « médecine traditionnelle » en Côte d’Ivoire 2015-2018 * DOD-CI • Demande et offre de dépistage du VIH et des hépatites virales B et C en Côte d’Ivoire ANRS 12323 * ESSA- Essor de la scolarisation au secondaire en Afrique subsaharienne : une étude comparative des politiques éducatives et des inégalités de parcours dans cinq pays (Burkina Faso, Madagascar, Ouganda, Sénégal, Tanzanie) * Global Health * La masculinisation démographique dans le monde. * MEPPA • Mondialisation et écologisation des pratiques paysannes : Vers une reconfiguration des savoirs sur la nature ? * Projet JEAI: Métropolisation de Hanoi et dynamique des relations villes campagnes : une étude à partir des migrations saisonnières et du recyclage des déchets * Projet TEMPER: Mobilités étudiantes et académiques et politiques publiques * NEOVAC - Mise en place d’une stratégie de visite à domicile au sein de la communauté afin d’améliorer la couverture vaccinale de l’hépatite B à la naissance et la survie du nouveau-né en Afrique subsaharienne * PrEP-CI ANRS 12361: Étude de faisabilité en vue d’un essai clinique sur une prophylaxie préexposition (PrEP) orale à la demande chez des femmes exposées au VIH en Côte d’Ivoire * ROMAC - Red de observatorios de la movilidad académica y científica mexicana * Une infrastructure de recherche innovante basée sur les NTIC au service du dialogue Euro-africain sur la Migration et le Développement * IFRIS / LabEx SITES: Zika epidemic and microcephaly risk : Global health emergency VS biopolitics and social inequalities regarding perinatal care in Brazil","* Séminaires de l’axe Santé, vulnérabilités et relations de Genre au Sud * Séminaires de l’axe Migration, Pouvoir, Développement * Séminaires de l’axe Éducation et Savoirs au Sud * Séminaires des Doctorants","* Institut des Mondes Africains (IMAf) * les Afriques dans le Monde (LAM) * orbonne-Identités, Relations Internationales et Civilisations de l'Europe (SIRICE) * Maladies Infectieuses et Vecteurs : Écologie, Génétique, Évolution et Contrôle (MIVEGEC) * Centre de Recherches Sociologiques et Politiques de Paris - Cresppa (CRESPPA) * Littoral, Environnement, Télédétection, Géomatique (LETG) * Plurilinguismes, Représentations, Expressions Francophones, Information, Communication, Sociolinguistique (PRÉFICS) * Lettres, Langages et Arts - Création, Recherche, Émergence, en Arts, Textes, Images, Spectacles (LLA CREATIS)",,,,"Working Papers du CEPED, flux RSS, Newsletter",NR,NR,NR,NR,200817718D,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200817718D&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200817718D,2017,https://fr.wikipedia.org/wiki/CEPED 2019-01-28T15:54:04.567Z,2018-08-01T15:02:46.511Z,ea4261,false,CHERPA,EA 4261,"Croyances, Histoire, Espaces, Régulation Politique et Administrative",OK,http://www.sciencespo-aix.fr/contenu/recherche/,Philippe Aldrin,philippe.aldrin@sciencespo-aix.fr,false,true,2008,"Le CHERPA est né de la fusion des huit équipes de recherche auparavant présentes dans l'IEP et couvrant les différentes thématiques qui y sont étudiées et enseignées. Il s'agissait du centre d'études du service public (CESPU), du centre de recherches et d'analyse en information et communication (CRAIC), du centre de science politique comparative (CSPC), de l'observatoire du religieux, du centre de recherches sur l'Amérique latine et les Caraïbes (CREALC), du centre Saint-Laurent d'études canadiennes, du centre d'histoire militaire et enfin de l'observatoire méridional du politique. Cette fusion a pour but de créer un grand centre unique facilitant le travail de recherche en commun",66,21,45,http://www.sciencespo-aix.fr/contenu/permanents-associes/,,47,* Droit public,"* Savoirs de gouvernement * Professionnalisation du travail politique * Gouvernabilité des villes et des territoires * Marchés de l'expertise * Mobilisation * Emotion * Expertise * Engagement militant * Territorialisation * Violence politique * Politiques participatives * Action publique * Gouvernance du religieux * Dispositif public * Rapports état religion * Orthodoxies d’état * Processus de contre radicalisation * Commerce international * Crises financières * Economie environnementale * Economie régionale * Gouvernance financière internationale * Unions monétaires * Conflits * Armées * Violence * Situations extraordinaires * Empires","* Savoir et ingénierie de gouvernement * Mobilisations, expertises et processus politiques * Gouverner la religion * Économie et finances internationales * Armées, conflits armés, situations coloniales et post-coloniales",,"* Séminaire général * Séminaire Itinéraires de Recherche * Séminaire : De la fabrique des autorités religieuses",,,,,,"* Bibliothèque centrale de Saporta * Bibliothèque de recherche du CHERPA",,,,200815498R,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200815498R&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200815498R,2017,"https://fr.wikipedia.org/wiki/Croyance,_Histoire,_Espace,_R%C3%A9gulation_Politique_et_Administration" 2019-01-28T15:54:04.568Z,2018-08-01T15:02:46.513Z,ea2712,false,CEI,EA 2712,Collège d'études interdisciplinaires,OK,http://www.cei.u-psud.fr/,Philippe Achilléas,danieldormoy@orange.fr,false,true,1998,,37,0,0,http://www.cei.u-psud.fr/publications-2/publications/,,23,* Droit public,"* Conflits * Développement * Vulnérabilité * Espace * Droit communautaire * Droit comparé * Droit international privé * Droit international public * Droit public * Développement durable * Environnement * Gouvernance * Principe de précaution * Relations internationales * Science politique * Sciences juridiques et politiques * Sciences économiques générales et de gestion * Economie du développement * Economie internationale","* Gestion des conflits * DIRE: Durabilité – Innovation – Ressources – Éthique * IDEST-Space-Digital-Aviation",,,"* Le CERIS * RFDI : Réseau francophonehd_rfdi de droit international * Le CEMOTEV-Centre d’études sur la mondialisation, les conflits, les territoires et les vulnérabilités * L'Académie d'Agriculture de France * AgroParisTech * Réseaux, Innovation, Territoires et Mondialisation (RITM) * Étude sur les Sciences et les Techniques (EST) * Laboratoire de Recherche en Management (LAREQUOI) * Groupe de Recherche et d'Accueil en Droit et Économie de la Santé (GRADES) * Cente d'Étude des Politiques Économiques de l'Université d'Evry (EPEE) * Laboratoire Droit des Affaires et Nouvelles Technologies (DANTE) * Centre d'Études et de Recherches Administratives et Politiques (CERAP)",,,,"Facebook, Twitter, flux RSS",,,,,199814228D,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199814228D&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199814228D,2017, 2019-01-30T15:50:33.508Z,2018-08-01T15:02:46.514Z,ea4569,false,"ETHIQUE, POLITIQUE ET SANTE",EA 4569,"Ethique, politique et santé",OK,https://ea4569.wordpress.com/,Christian Hervé,christian.herve@parisdescartes.fr,false,true,2011,le laboratoire et l'Inserm d'éthique médicale de l'Université Paris Descartes (préalablement Université René Descartes-Paris 5) ont crée en 1997 une base de connaissance intitulée: Ethique et Santé- Réseau Rodin.,91,36,57,https://ea4569.wordpress.com/equipes/,,45,"* Recherche clinique, innovation technologique, santé publique","* Cohésion sociale * Mutations sociales * Philosophie politique * Politiques publiques * Recherche et pratiques pédagogiques * Santé publique * Science politique * Sociologie politique * Vieillissement * Epistémologie * Ethique * Ethique de la recherche biomédicale * Ethique médicale * Ethologie","* Axes de recherches communs à l’EA * Puissance des biotechnologies : la fabrique du corps post-humain, * Responsabilités individuelles et collectives face aux risques, * Fragilités humaines : autonomie et dépendance | L’éthique des comités d’éthique, * Démocratie et inégalités territoriales, sociales et médicales * Axes de recherches de l’équipe PHILéPOL (philosophie, d’épistémologie et de politique) * Épistémologie des sciences sociales : * Repenser la justice, l’équité et la solidarité, * Critique conceptuelle des méthodes et des ontologies locales. * Philosophie du monde émergent : * Mutations environnementales, * Mutations sociales, * Mutations politiques, * Mutations anthropologiques. * Politique et sociologie : * Théories de la démocratie, * Droits sociaux, * Nouvelles criminalités, * Histoire de la pensée. * Axes de recherches de l’équipe LEM (Laboratoire d’Éthique Médicale et de Médecine Légale) * Éthique appliquée aux pratiques cliniques : * Nouvelles formes de médecine hospitalière et ambulatoire, * Accès aux soins, liens ville-hôpital, * Médecine de précision, * Médecine palliative, * Nouveaux enjeux de la médecine d’urgence extra-hospitalière. * Technologies et recherches impliquant la personne humaine : * Éthique appliquée aux pratiques de recherche, * Transplantation d’organes et prélèvements d’organes. * Violence, médecine légale et bioéthique : * Précarité sociale, * Maltraitance, * Frontière entre soin et recherche * Génétique,comportement humains extrêmes. * Nouvelles humanités en médecine : * Médecine narrative, * Construction des discours en médecine, * Apports de la littérature à l’exercice médical.",NR,"* Séminaire ''La souffrance"" * Séminaire ""La maladie"" * Séminaire ""Le bio-existentiel""","* Centre Maurice Hauriou pour la Recherche en Droit Public (CMH) * Institut de Chimie Radicalaire (ICR) * Médecine Personnalisée, Pharmacogénomique, Optimisation Thérapeutique (MEPPOT) * Centre Pluridisciplinaire Textes et Cultures (CPTC) * IHU Imagine - Institut des Maladies Génétiques * Centre Population et Développement (CEPED) * Promoting Research Oriented Towards Early CNS Therapies (PROTECT)",,,,"* Ethique et Santé, Réseau Rodin (site d'information et de diffusion des connaissances en éthique médicale) * facebooh, Twitter",NR,NR,NR,NR,201119495X,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201119495X&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201119495X,2017, 2019-01-28T14:27:45.210Z,2018-08-01T15:02:46.515Z,ea2110,false,GERCIE,EA 2110,Groupe d'études et de recherche sur la coopération internationale et Européenne,OK,http://gercie.univ-tours.fr/,Abdelkhaleq Berramdane,abdelkhaleq.berramdane@univ-tours.fr,false,true,1986,"Le GERCIE (EA 2110) est une équipe d’accueil pluridisciplinaire constituée de juristes, privatistes, publicistes, de politistes et d’économistes. Créé en 1986 par le professeur Claude Blumann, auquel a succédé le Professeur Jean Rossetto",38,19,19,http://gercie.univ-tours.fr/membres/,,22,Droit privé et sciences criminelles,"* Droit communautaire * Droit international public * Economie internationale","* Responsabilités internationales et européennes * Intégrations régionales * Mutations de l’intégration européenne",NR,Séminaire GERCIE,"* Cour de Justice de l’Union européenne * Université de Bochum (Allemagne) * Université de Nicosie * Université de Hanoï (ESCE, Faculté de droit, Centre de recherches de droit de commerce international dirigé par Mme Nguyen Minh Hang) * Réseau MSH * Réseau international EUROSUL * Centre Lillois d'Études et de Recherches Sociologiques et Économiques (CLERSE) * Centre de Recherche en Économie et Management (CREM) * Triangle: Action, Discours, Pensée Politique et Économique * Centre de Recherche et de Documentation Européennes et Internationales (CRDEI) * Laboratoire d'Études Juridiques et Politiques (LEJEP) * Centre de Recherche sur la Décentralisation Territoriale (CRDT) * Centre d'Économie de la Sorbonne",,,,"Facebook, Twitter","* BU Université de Tours * BU Deux Lions * BU Tanneurs * BU médecine Emile-Aron * BU Grandmont * BU Blois * Centre de documentation de l'IUT de Tours * Les bibliothèques du réseau de l'université de Tours",,,,199613728U,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199613728U&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199613728U,2017, 2019-04-04T11:06:35.842Z,2018-08-01T15:02:46.516Z,ea7434,false,IRM-CMRP,EA 7434,Institut de recherche Montesquieu - Centre Montesquieu de Recherches Politiques,OK,https://univ-droit.fr/structures-de-recherche/70-structure-recherche-equipe-interne/20943-centre-montesquieu-de-recherches-politiques-irm-cmrp-pessac-cedex,Philippe Claret,philippe.claret@u-bordeaux.fr,false,true,2016,,36,12,16,,,25,* Science politique,"* idées politiques * régimes politiques * sécurité globale","* Analyse comparée des idées politiques : - Théorie politique - Théories de la démocratie Théories de la mondialisation - Ecologie et politique - Démocratie et sécurité globale - Pensées politiques extrêmes - Pensées politiques orientales
* Analyse comparée des régimes politiques : - régimes politiques des Pays occidentaux, en particulier des Pays nordiques - régimes politiques des Pays postcommunistes (PECO) - régimes politiques du Moyen-Orient, en particulier de la Turquie - régimes politiques des Pays africains - régimes politiques des Pays d’Amérique latine et des Caraïbes - régimes démocratiques et défis sécuritaires ",1 ANR UTIC,Séminaire de recherche régulier des doctorants de l’IRM (CAHD et CMRP),"- Institut des Amériques (E. Dubesset, Délégué régional) - Centre d’Analyse Politique – Constitution et fédéralisme (UQAM, Département de Science politique) - Centre Régional Francophone de Recherches Avancées en Sciences Sociales – Villa Noël (CEREFREA, Université de Bucarest) - Ecole Doctorale Francophone en Sciences Sociales (EDSS, Université de Bucarest) - Réseaux « Sécurité globale et Défense » (S. Laurent, Professeur) et autres réseaux de collaboration en Europe centrale et orientale et dans les Pays émergents ",,,,,- BU de Bordeaux,Ressources numériques accessibles par l'ENT de l’Université de Bordeaux,,,201622181V,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201622181V&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201622181V,2017, 2019-01-28T15:54:04.569Z,2018-08-01T15:02:46.517Z,ea7303,false,IRENEE,EA 7303,Institut de recherches sur l'évolution de la Nation et de l'Etat,OK,http://irenee.univ-lorraine.fr/,Christophe Fardet,christophe.fardet@univ-lorraine.fr,false,true,1997,"L'IRENEE est apparu en 1997 en tant que structure fédérative de recherche, avant de devenir, à compter de 2005, l'unité de recherche de droit public et science politique de l'Université Nancy 2, puis de l'Université de Lorraine au 1er janvier 2012, réunissant désormais l'ensemble des enseignants-chercheurs et doctorants en droit public et science politique de six composantes de l'Université.",120,50,70,http://irenee.univ-lorraine.fr/fr/enseignants,,59,* Droit public,"* Science politique * Politiques publiques * Union européenne * Droit administratif * Droit constitutionnel * Droit public","* Droit administratif * Droit administratif et institutions administratives : Les mutations du droit administratif contemporain * Droit administratif, Administration et extériorité * Droit comparé * Droit constitutionnel * Les constitutions passées – généalogie constitutionnelle * Droit européen * Droit international * Science politique",,,"* Association Française de Droit Administratif * Association Française de Droit Constitutionnel * Société Française de Droit international * Groupement de recherche sur l'administration locale en Europe * Conseil Régional ACAL * Conseil Général de Moselle * Délégation Régionale à la Recherche et à la Technologie de Lorraine * Cour Administrative d'appel de Nancy * Tribunal Administratif de Nancy * Université de la Grande Région * MSH Lorraine-Maison des Sciences de l'Homme * Politiques Publiques, Action Politique, Territoires (PACTE) * Groupe d'Études et de Recherche Interdisciplinaire en Information et Communication (GERIICO) * Institut de l' Ouest : Droit et Europe (IODE) * Centre d'Étude des Discours, Images, Textes, Écrits et Communications (CEDITEC) * Bureau d'Économie Théorique et Appliquée (BETA) * Institut Francois Geny (IFG) * Centre Européen de Recherche en Économie Financière et Gestion des Entreprises (CEREFIGE)",,,,,,,,,201320868F,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201320868F&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201320868F,2017, 2019-01-28T15:54:04.569Z,2018-08-01T15:02:46.518Z,ea4640,false,IDPSP,EA 4640,Institut du droit public et de la science politique,OK,https://idpsp.univ-rennes1.fr/,Guillaume Le Floch,guillaume.lefloch@univ-rennes1.fr,false,true,2011,L'Institut du droit public et de la science politique est le fruit de la fusion intervenue en 2011 entre le Laboratoire d'étude du droit public (LEDP) et le Centre d'études et de recherches autour de la démocratie (CERAD).,111,27,84,http://www.idpsp.univ-rennes1.fr/themes/Pr%C3%A9sentation/Membres+/,,47,* Droit public,"* Droit administratif * Droit constitutionnel * Droit international public * Droit public * Finances publiques * Politiques publiques * Relations internationales * Régimes démocratiques * Construction européenne * Science politique * Systèmes politiques * Théorie politique * Philosophie politique","* Droits de l'Homme et libertés fondamentales * Mutations de l'Etat et théories de la démocratie * Santé et responsabilité * Urbanisme, aménagement du territoire et environnement ",,,"* Centre Émile-Durkheim - Science Politique et Sociologie Comparatives (CED) * Institut de l' Ouest : Droit et Europe (IODE) * Triangle: Action, Discours, Pensée Politique et Économique * Centre de Recherches Administratives (CRA) * Écosystèmes, Biodiversité, Évolution (ECOBIO) * Centre de Recherches Juridiques (CRJ) * Sorbonne-Identités, Relations Internationales et Civilisations de l'Europe (SIRICE) * Universités de Louvain et d'Ottawa * University of Maine * Purdue University",,,,,,"* Sites scientifiques: * Association française de droit constitutionnel * Association internationale de droit constitutionnel * Commission Jeune Recherche Constitutionnelle * Association française pour la recherche en droit administratif * Association française de droit de la santé * Association française du droit des collectivités locales * Société française pour le droit international * Association française de science politique * Société Française de Finances Publiques * Le blog du droit administratif",,,201220088M,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201220088M&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201220088M,2017, 2021-02-08T09:56:09.662Z,2018-08-01T15:02:46.519Z,umr8178,false,IMM,UMR 8178,Institut Marcel Mauss,OK,http://imm.ehess.fr/,Eve Chiapello,eve.chiapello@ehess.fr,true,true,2006,"L’Institut Marcel Mauss est une UMR du CNRS et de l’EHESS né au 1er janvier 2006 comme une fédération de plusieurs centres de recherches de l’EHESS. * CEMS (Centre d'étude des mouvements sociaux); * CENJ (Centre d'études des normes juridiques - Yan Thomas); * LIAS (Linguistique, Anthropologique, Sociolinguistique); * LIER (Laboratoire interdisciplinaire d’études sur les réflexivités).",100,42,58,https://www.ehess.fr/en/marcel-mauss-institute-imm,https://annuaire.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8178&p_int=Institut+Marcel+Mauss&p_lab=UMR&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=1&p_num_lab=0&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,125,"* Sociologie, démographie","* Afrique du nord * Autonomie * Biodiversité * Cognition et comportement * Dépendance * Développement durable * Environnement * Histoire sociale * Linguistique * Philosophie (histoire de la, ) * Philosophie politique * Risque * Risques naturels * Sociologie * Normes * Institutions * Traumatisme * Vieillissement * Emotion * Epistémologie * Ethologie","* Espace public, pratiques et réflexivités * Cognition, langage et production des formes symboliques * La normativité sociale et ses variations historiques et anthropologiques",,"* Atelier collectif de description et d'écriture scientifique de l'action humaine * Filmer les guichets de l'immigration ? * Les approches sociales du langage et des langues : Entre savoir et pouvoir * Risques et réparations * La victimisation : une approche sociologique * Les sciences humaines et sociales en controverses * Une introduction à l'ethnométhodologie * Politiques des sciences * Les appropriations sociales du numérique : De la lecture à l'écriture * Sociologie et anthropologie des corps en transformation * Atelier des doctorants du LIAS * Mobilisations, expériences, publics : Perspectives pragmatistes * Caméras politiques * Controverses environnementales et anthropologies de la nature * Une approche sociologique des héros de séries télévisées * Recherches contemporaines en narratologie. Entre fictionnel, virtuel et documentaire : narratologies en confrontation * Sciences sociales et formes contemporaines de la critique * La nature en politique : les transformations écologiques de la modernité * Économie, société et matérialité dans la fabrique de la modernité. Séminaire du projet « Humanités environnementales » * Financiarisation et politiques publiques * Sociologies d'aujourd'hui * Aux origines médiévales de l'argumentation juridique * Les collectifs d'enquête, XIXe-XXIe siècles. Ethnocomptabilité et anthropologie de l'évaluation * Le modèle californien : Industrie numérique et acteurs du collaboratif * Atelier doctoral « Droit et sciences humaines et sociales » * La prédation masculine (rapports de sexes, parenté et méga-aires culturelles) - 2 * Des assemblages de matière et de langage : Stratégies et perspectives de recherche * L'expérience migratoire : Enquête collective en partenariat avec le “Collectif parisien de soutien aux exilé.e.s” * Médias et mouvements sociaux : Sociologie des publics et des contrepublics * Questions d'énonciation : énonciatuer(s)/énonciation(s) * Anthropologie et linguistique : convergences et recherches actuelles * Les enjeux linguistiques et interactionnels de la multimodalité * Atelier d'analyse conversationnelle * Raison et émancipation * Séminaire d'initiation à la recherche * Lectures en sciences sociales sur les temporalités * L'enquête sociologique par entretien * Actualité des sciences sociales * La croyance instituée (III). Religion et politique chez les modernes * Philosophie politique et sociale : les enjeux de la modernité * Formes symboliques * Anthropologie sémiotique : expression et formes symboliques * La disciplinarisation des classes populaires * Enquête ethnographique des rapports de genre * Introduction à l'intersectionnalité : Théories, méthodes, recherches * Méthodes visuelles et sensorielles : Pratiques transdisciplinaires pour les sciences sociales * Analyser l'activité “telle qu'elle se fait” : Les bases conceptuelles et méthodologiques de l'enquête vidéo-ethnographique (sociologie interactionniste, ethnométhodologie, analyse de conversation) * Ni guerre, ni paix. Violence, droit et politique (3) * Entre l'amitié et l'inimitié : L'échange, l'alliance et la complicité * Imagination productrice, poétique et sciences sociales * Violence, légitimité, politique (II) * Instituere. Approches juridiques des institutions * Séminaire de casuistique « Droit et sciences humaines et sociales ». Lus et relus : exercices de réflexion inter-temporelle * Les structures formelles de l'action politique. S'engager, s'opposer, résister, occuper * Phénoménologie du signe * Normes et valeurs : primauté et différence * Connaissance juridique et transformation du droit : les effets pratiques des doctrines * Atelier de traduction des sciences sociales * Genre et travail, pratiques et politiques * L'observation ethnographique dans l'enquête sociologique : initiation théorique et pratique * Argumenter, revendiquer, contester : Analyses de discours, théories de l'argumentation et sociologie des mobilisations * Discours, langue et changement social * Genre et sexualité : Enquêtes et méthodes d'enquêtes * Gouverner le “progrès” et ses dégâts (1810-2016). Histoire et sciences sociales * Technologies reproductives et d'enfantement : Régulations du risque, gouvernement des corps, controverses publiques * Formes sémiotiques, parole et praxis énonciatives * Anthropologie sociale de l'Inde. Concepts et actualités * Débats et controverses en anthropologie aujourd'hui","* LabEx TEPSIS (Transformation de l'Etat Politisation des sociétés Institution du social) * Groupe d'Études et de Recherche Interdisciplinaire en Information et Communication (GERIICO) * Institut Interdisciplinaire de l'Innovation (I3) * Centre de Recherches Sociologiques et Politiques de Paris - Cresppa (CRESPPA) * Centre de Sociologie des Organisations (CSO) * Institut de Sciences Sociales du Politique (ISP) * Institut des Mondes Africains (IMAf) * Structures Formelles du Langage",,,,,NC,,,,200612825U,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200612825U&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200612825U,2017,https://fr.wikipedia.org/wiki/Institut_Marcel_Mauss 2019-01-28T15:54:04.570Z,2018-08-01T15:02:46.520Z,umr7317,false,LEST,UMR 7317,Laboratoire d'économie et de sociologie du travail,OK,http://www.lest.cnrs.fr/,Thierry Berthet,lest_contact@services.cnrs.fr,true,true,2012,"A l’origine, le LEST était une unité propre de recherche du CNRS. Il a été créé en 1969 en vue de renforcer la recherche fondamentale française intéressant le travail et son évolution. Il a toujours pour ambition de contribuer au développement de la recherche en sciences humaines et sociales sur le travail, l’emploi, la formation et l’innovation.",127,96,31,http://www.lest.cnrs.fr/spip.php?rubrique54,https://annuaire.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR7317&p_int=LEST&p_lab=UMR&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=2&p_num_lab=0&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,37,"* Sociologie, démographie","* Gestion des organisations * Politiques publiques * Sociologie du travail, de l'emploi, des professions * Economie du travail * Action publique * Conditions de travail * Formes d'emploi * Migration * Mutation des organisations - normes de gestion * Innovation & Technologies * Parcours professionnels * Relations professionnelles * Santé au travai","* Axe 1 : Dynamiques des modèles d'organisations, dispositifs et action collective * Axe 2 : Evolution des inégalités : parcours, marchés, migrations * Axe 3 : Territoires, modèles productifs et formes de régulation","* ANR KETORC * ANR LAJEH * ANR WOMAN * NumEmploi : Processus de numérisation et dynamique de l'emploi * TEDS : Territoires et décrochage scolaire * NetPoste * Labex SMS Toulouse * DIRRECTE 2017 * INJEP * Contrat Hopital St Maurice","* Séminaire général du laboratoire * Séminaires 3T (Travail, Technologies, Temporalités) * Séminaire MIGTAV (MIGration TRAVail) * Séminaire T2C (Territoires et Communs) * Séminaire TRPM (Travail, Relations Professionnelles et Mobilisations) * Ateliers ""Méthodologie de la recherche et pluri-disciplinarité"" * Ateliers ""Travail et relations professionnels"" * Séminaire doctoral (ateliers doctoraux et séminaires de thèses) * Les journées d'étude et séminaires invité","* GDR (réseaux de recherche) Economie et Sociologie * Le Centre Associé Régional (CAR) du CEREQ ( Centre d’études et de recherche sur les qualifications) * Centre de Recherche sur le Transport et la Logistique (CRET-LOG) * Amérique Latine (CEMCA) * Centre d'Économie de la Sorbonne * Triangle: Action, Discours, Pensée Politique et Économique * Institut de Recherche Interdisciplinaire en Sociologie, Économie et Science Politique (IRISSO) * Centre Maurice Halbwachs (CMH) * Groupement de Recherche en Économie Quantitative d'Aix-Marseille (GREQAM)",true,false,"Soutien du laboratoire aux dépôts en open access. Obligation de dépôt de toute production scientifique du laboratoire. Plusieurs collections (doctorants, master, contrats de recherche) du laboratoire sur HAL","* Collection des publications LEST-HAL : https://halshs.archives-ouvertes.fr/LEST * Carnet de Recherche du LEST : https://lest.hypotheses.org/ * Facebook, Twitter, dailymotion","* Bibliothèque du LEST * Bibliothèque de l'université d'Aix * l'IAE * Sciences Po Paris","* CAIRN * DOAJ - Directory of Open Access Journal * PERSEE (Ministère de l’Education Nationale, de l’Enseignement Supérieur et de la Recherche) * REDALYC (Université Autonoma de Estado de Mexico) * REVEL (Université de Nice Sophia-Antipolis) * REVUE.ORG (Centre d’Edition Electronique, EHESS) * BUSINESS SOURCE COMPLETE (Ebsco Publishing) * JSTOR (Fondation Mellon) * MUSE (Université John Hopkins) * SAGE publications","La politique documentaire du LEST inscrit dans le cadre du développement d'un fond documentaire spécialisé qui s'appuie sur les projets de recherche du laboratoire et qui vient en complémentarité des fonds des bibliothèques universitaires locales Les acquisition se font à 60% par veille documentaire; et 40 % à la demande des utilisateurs que sont les chercheurs et doctorants. En plus des acquisitions en rapport avec les axes du laboratoire, ces dernieres années, le LEST a plus investit sur les acquisitions d'ouvrages de méthodologie et anglosaxonne.",Les offres de formations documentaires du LEST rentrent dans le cadre des cours intégrés dans les écoles doctorales,201220323T,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201220323T&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201220323T,2017, 2019-01-28T15:54:04.570Z,2018-08-01T15:02:46.521Z,ea2108,false,LERAP,EA 2108,Laboratoire d'étude et de recherche sur l'action publique,OK,http://lerap.univ-tours.fr/,Nathalie Albert-Moretti,nathalie.albert-moretti@univ-tours.fr,false,true,1992,"Le LERAP prend la suite du LERAD, lequel était une Equipe d'Accueil depuis 1992 (EA 2108).",41,20,21,http://lerap.univ-tours.fr/membres/les-membres-157367.kjsp?RH=1264431069762&RF=1268066547543,,17,* Droit public,"* Action publique * Aménagement * Urbanisme * Collectivités territoriales * Droit administratif * Histoire du droit et des institutions * Politiques publiques * Responsabilité * Territoire","* Mutations de l'action publique * Institutions, démocratie et actions publiques locales * Influence de la performance sur les institutions publiques * Responsabilité des acteurs publics",,,"* Maison des Sciences de l'Homme de Tours * AFDA (Association Française pour la Recherche en Droit Administratif) * Réseau du GRALE (Groupement de Recherche sur l'Administration Locale en Europe - GIS) * GRIDAUH (Groupement de Recherche sur les Institutions et le Droit de l'Aménagement, de l'Urbanisme et de l'Habitat - GIP) * MSH Val de Loire * Hongrie - Universités de Pecs et de Szeged * Pologne - Université de Varsovie - Centre d'Etudes et de Recherches sur les Collectivités Territoriales et le Développement Local - Partenariat Hubert Curien « Polonium » 2007-2008 (ex PAI) * Pologne - Université de Lodz (professeur invité à Tours) * Russie - Université Municipale de Samara (professeur invité à Tours) - Académie du Nord Ouest de la Russie à Saint-Pétersbourg * Centre de Théorie et Analyse du Droit (CTAD) * Centre du Droit Civil des Affaires et du Contentieux Économique (CEDCACE) * Centre Droits et Perspectives du Droit (CRDP) * Chrono-Environnement * Cités, Territoires, Environnement et Sociétés (CITERES) * Littoral, Environnement et Sociétés (LIENSs) * Centre de Recherches Juridiques (CRJ)",,,,"Facebook, Twitter",,,,,199613726S,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199613726S&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199613726S,2017, 2019-01-28T15:54:04.570Z,2018-08-01T15:02:46.522Z,ea7373,false,LIPHA-PE,EA 7373,Laboratoire interdisciplinaire d'étude du politique - Hannah Arendt - Paris-Est,OK,http://lipha.u-pec.fr/,Yves Palau,yves.palau@u-pec.fr,false,true,2015,"Le Laboratoire interdisciplinaire d'étude du politique - Hannah Arendt - Paris-Est (LIPHA Paris-Est) succède au 1er janvier 2015 au Laboratoire de recherche sur la gouvernance (territoires et communication), le LARGOTEC, et au Laboratoire Ethique et politique (EEP) - Institut Hannah Arendt.",60,33,27,http://lipha.u-pec.fr/membres/enseignants-chercheurs/,,84,* Sciences juridiques et politiques,"* Gouvernance multiniveaux et action publique * controverses éthiques et politiques * histoire sociale des idées politiques * Etude interdisciplinaire du politique * Relations internationales * Etude sur l’humanitaire","* Controverses éthiques et politiques * Gouvernance multiniveaux et action publique",,"* Séminaires de recherche du LIPHA * Séminaire sur l'idéologie politique de la science ","* REGIMEN : Réseau d'études sur la globalisation et la gouvernance internationale et les mutations de l'Etat et des Nations * HISOPO de l'AFSP * RESTAG : Réseau d'étude sur les stages et leur gouvernance * GRALE : Groupement de Recherches sur l'Administration Locale en Europe * Loughborough University, Department of Social Sciences * Università di Milano, Facoltà di Scienze Politiche * Università di Bologna, Facoltà di Scienze Politiche * Universidad de Navarra, Departamento de Comunicación Pública * Université d'Ottawa, Chaire de recherche du Canada en Gouvernance et Gestion Publique * Johannes Gutenberg-Universität Mainz, Institut für Politikwissenschaft * Conseil départemental du Val-de-Marne",true,false,,"* La Lettre du LIPHA * Largotec'Infos",* La bibliothèque de Sciences Po,,,,201521849N,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201521849N&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201521849N,2017, 2019-01-28T15:54:04.571Z,2018-08-01T15:02:46.523Z,ea4328,false,LID2MS,EA 4328,Laboratoire interdisciplinaire de droit des médias et des mutations sociales,OK,https://lid2ms.com/,Hervé Isar,,false,true,2008,"L’Équipe d’Accueil n°4328 – LID2MS est issue de la fusion, opérée début 2008, entre l’équipe d’accueil n°894 « Droit des Médias » et la Jeune équipe n°2425 « Droit et mutations sociales »",60,23,37,https://lid2ms.com/lequipe-du-lid2ms/enseignants-chercheurs/,,12,* Droit public,"* Droit privé et sciences criminelles * Droit public * Droit * Mutations sociales * Régulation * Histoire du droit et des institutions * Science politique * Sciences juridiques et politiques","* Le droit et les médias * Le droit et le fait religieux * Le droit et le fait culturel",,,"* Groupe Sociétés, Religions, Laicités (GSRL) * Centre d'Études Fiscales et Financières (CEFF) * Croyances, Histoire, Espaces, Régulation Politique et Administrative (CHERPA) * Anthropologie Bio-Culturelle, Droit, Éthique et Santé (ADES) * Centre d'Études et de Recherches en Histoire des Idées et des Institutions Politiques (CERHIIP) * Groupe d'Études et de Recherche en Droit Immobilier, de l'Aménagement, de l'Urbanisme et de la Construction (GREDIAUC) * Laboratoire Biens, Normes, Contrats (LBNC)",,,,Les Cahiers,,,,,200815558F,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200815558F&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200815558F,2017, 2019-01-28T15:54:04.186Z,2018-08-01T15:02:46.516Z,umr8582,false,GSRL,UMR 8582,"Groupe société, religions, laïcité",OK,http://www.gsrl.cnrs.fr/,Philippe Portier,gsrl@gsrl.cnrs.fr,true,true,1995,"Le GSRL (alors Groupe de Sociologie des religions et de la Laïcité, le nom actuel datant de 2006) a été créé au 1er janvier 1995 par Jean Baubérot, avec une partie des membres du défunt GSR (Groupe de Sociologie des Religions) du CNRS et la jeune équipe HSL (Histoire et Sociologie de la Laïcité) de l’EPHE",294,50,244,https://www.gsrl-cnrs.fr/tous-les-membres/,https://annuaire.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8582&p_int=GSRL&p_lab=UMR&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=1&p_num_lab=0&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,89,"* Sociologie * démographie","* Imaginaires religieux et séculiers * Libertés publiques et droits de l'homme * Politique et religion * Laïcité * Sciences juridiques et politiques * Sociologie religieuse"," * Genre, religions, sécularisations et laïcités * Interactions et créativités religieuses : perspectives anthropologique * Judaïsmes contemporains ","Labex HASTEC ( Laboratoire européen d’histoire et anthropologie des savoirs, des techniques et des croyances)","* Séminaire interne du GSRL * Séminaire de l'axe de recherche : ""Perspectives anthropologiques sur le religieux"" * Séminaire ""Les formes et les significations de l’antisémitisme contemporain""","* Institut de Recherche en Musicologie (IReMus) * Laboratoire Interdisciplinaire de Droit, Médias et Mutations Sociales (LID2MS) * Laboratoire de Changement Social et Politique (LCSP) * Contacts de Cultures, de Littératures et de Civilisations (CCLC) * Institut de l' Ouest : Droit et Europe (IODE) * Laboratoire de Recherche Historique Rhône-Alpes (Moderne et Contemporaine) (LARHRA) * Institut Français du Proche-Orient (IFPO)",true,,,"Facebook, Twitter, hypotheses.org, Flux RSS",* La Salle de Documentation du GSRL,"* la base de Données sociologiques et juridiques sur la religion en Europe (EUREL) * JUNIPER",,,199812910W,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199812910W&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199812910W,2017,"https://fr.wikipedia.org/wiki/Groupe_Soci%C3%A9t%C3%A9s,_Religions,_La%C3%AFcit%C3%A9s" 2019-01-28T15:54:04.571Z,2018-08-01T15:02:46.520Z,ea3788,false,LBNC,EA 3788,"Laboratoire biens, normes, contrats",OK,http://univ-avignon.fr/site-de-l-universite-/version-francaise/navigation/recherche/ea-3788-lbnc-laboratoire-biens-normes-contrats-1194.kjsp,Pierre-Henri Morand,sec.bnc@univ-avignon.fr,false,true,2004,,0,0,0,,,,* Droit privé et sciences criminelles,"* Biens * Normes * Contrats * Action publique * Droit comparé * Droit privé et sciences criminelles * Droit public * Mutations sociales","* Sociétés numériques * Sociétés numériques, travail politique et démocratie numérique * Transparence et gouvernement des données. * Travail - Emploi * droit privé, public, interne, européen et comparé de l’emploi * insertion par l’activité économique * sociologie des relations professionnelles. * Vote et démocratie * Démocratie sociale, démocratie d’entreprise * Votes et comportements électoraux * Intégration comparée.",,,"* Institut de Recherches Juridiques de la Sorbonne (IRJS) * Centre de Droit Social (CDS) * Centre de Recherches et d'Études Administratives de Montpellier (CREAM) * Centre du Droit de l'Entreprise (CDE) * Laboratoire de Droit Privé (LDP) * École de Droit Social de Montpellier (EDSM) * Centre d'Études Politiques de l'Europe Latine (CEPEL)",,,,,Bibliothèque universitaire Maurice Agulhon,,,,200415049V,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200415049V&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200415049V,2017, 2019-01-28T15:54:04.571Z,2018-08-01T15:02:46.523Z,umr208,false,PALOC,UMR 208,Patrimoines locaux et gouvernance,OK,http://www.paloc.fr/fr,Laure Emperaire,paloc@mnhn.fr,false,true,2009,,107,0,0,http://www.paloc.fr/fr/recherche/type/participant,,14,"* Anthropologie, ethnologie","* Archéologie * Géographie sociale et culturelle * Biodiversité * Muséologie * Environnement * Gouvernance * Politiques publiques * Sociologie du développement durable * Sociologie économique et du développement, territoire","* Territoires et Stratégies * Marqueurs, Mémoires * Politiques de développement et conservation * Diversité biologique et Diversité culturelle * L'approche patrimoniale de la diversité culturelle et biologique * Mises en scène des patrimoines * Enjeux, objectifs et finalités * Collections: savoirs et pratiques","* LMI SEDES-Services from delta coastal waters and their sustainability * TIMLEST-Les détenteurs de la parole : savoirs locaux et politiques culturelles au Timor Leste * Développement durable des zones littorales (Sénégal, Guinée Bissau, Guinée) : vers une gouvernance citoyenne des territoires * GEOPARK H2020 RISE-Heritages, Education and substainable Developement and innovative methology for thousand countries. Case study in Morocco (atlas Mountains Marrakech) * FOODHERIT-Patrimoines alimentaires et gastropolotiques : une approche critique et comparée * GOVENPRO-Histoire du gouvernement de l'environnement par la propriété (fin XVIIIe siècle-présent, Europe, Etats-Unis, mondes coloniaux et post-coloniaux) * PLACOPAT- Identités, territoires et pratiques agricoles : plate-forme pour la conservation des patrimoines villageois au Timor Leste * AZROU KLANE-Azrou Klane, une pierre tatouée dans le Sahara * WASRAP-Wadi Abu Subeira Rock Art Project * PATEO-Patrimoines et territoires de l'eau","* Les séminaires externes ouverts * Le séminaire interne * Le séminaire « Maritimités » * Le séminaire « Fabric-acteurs de patrimoine : Implication et participation des chercheurs dans les processus de patrimonialisation au Sud » * Le Séminaire PALOC * Le séminaire « Gouverner le vivant : Savoirs, Cultures et Politiques de la Biodiversité »","* L'IRD * Centre de Recherche et de Documentation des Amériques (CREDA) * Sciences - Technique - Éducation - Formation (STEF) * Structure et Instabilité des Génomes * Institut de Systématique, Évolution, Biodiversité (ISYEB) * Unité de Recherche Oenologie * Unité de Recherche Migrations et Société (URMIS) * Information Milieux Médias Médiations (I3M)",,,,Flux RSS,,,,,200918519V,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200918519V&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200918519V,2017, 2019-01-28T16:52:39.697Z,2018-09-18T13:31:16.420Z,nc,,ESPOL-Lab,NC,Laboratoire de l'Ecole Européenne de Sciences Politiques et Sociales,,https://espol-lille.eu/recherche/,Sabine Weiland,sabine.weiland@univ-catholille.fr,,,2012,"ESPOL-LAB est l’unité de recherche de l’Ecole européenne des sciences politiques et sociales de l’Institut catholique de Lille (ESPOL-ICL). Elle fédère une équipe de 14 enseignants-chercheurs qui se donnent le politique comme objet central d’investigation et d’analyse. L’interrogation sur les limites du politique et sur le rapport du politique à la vie en société est au cœur du projet scientifique d’ESPOL-LAB.
Quelle est la portée réelle de la décision politique ? Quels en sont les ressorts ? Dans quelle mesure le politique renvoie-t-il (encore) à l’Etat moderne et aux modalités de régulations des sociétés ? L’apparente fragilité de l’Etat à l’époque contemporaine accentuée par l’éclatement des allégeances identitaires, la mondialisation et l’interdépendance croissante des économies nationales, l’émergence de nouvelles formes de violence et de gouvernance interrogent toute l’équation qui s’est établie avec l’époque moderne entre souveraineté et Etat en même temps qu’elles signalent la difficulté croissante à organiser les rapports sociaux et à donner sens au vivre ensemble. L’Etat moderne peut certes ne plus apparaître comme le cadre exclusif à l’intérieur duquel s’élaborent et se transforment les règles de la vie en communauté et de la coexistence des sociétés humaines à la surface de la planète. Il est certes pris lui-même dans un mouvement de transformation à la double échelle européenne et internationale dont les effets et la portée restent encore largement à diagnostiquer. Il n’en conserve pas moins un attrait inégalé ainsi qu’une capacité à orienter et à organiser les sociétés dans leurs rapports entre elles, mais aussi à leur milieu que les plus récents développements en matière environnementale portent au cœur des grands enjeux politiques de notre époque. ",28,24,4,https://espol-lille.eu/research/,,2,,"* Europe * Démocratie * Vote * Elections * Partis politiques * Gouvernance * Régulations * Limite(s) et frontière(s) * Etat * International * Souveraineté * Conflits et guerre * Violence(s) * Sécurité et défense * Politiques alimentaires * Agriculture","Les activités scientifiques d’ESPOL-LAB sont organisées au sein de **trois axes de recherche** : - Qualité de la démocratie ; - Régulations et gouvernance ; - Reconfigurations de l’International. L’Europe constitue une dimension structurante et transversale des recherches interrogée du triple point de vue de : - l’analyse des processus de décision politique et des transformations des différentes formes de gouvernance ; - l’analyse de leurs fondements normatifs et leurs implications en termes de légitimité ; - l’analyse des métamorphoses de l’International induites par les rapports transformés à l’espace et au territoire. **a) Qualité de la démocratie** (Responsable : Giulia Sandri) A partir d’une réflexion sur les principes fondamentaux de la démocratie représentative, cet axe thématique vise à analyser les conditions formelles et procédurales de la démocratie, la capacité des institutions politiques à satisfaire ces critères, ainsi que les causes et conséquences des processus de démocratisation et de dé-démocratisation.
La démocratie représentative est mise à l’épreuve depuis plusieurs décennies, en Europe comme dans le reste du monde. En appréhender les causes multiformes est un des défis majeurs des sciences sociales et plus particulièrement de la science politique contemporaine. Le rôle des partis politiques et des gouvernements se transforment. Dans un monde ""globalisé"", la position des Etats-nations dans l’Union Européenne change. Les formes et les arènes de la participation politique se diversifient. La montée en puissance de formations dites « populistes » cristallisent le rejet des élites politiques. Les recherches menées sur ces enjeux dépassent une lecture strictement juridique de la démocratie pour privilégier aussi bien une réflexion théorique sur les critères du bon gouvernement qu’une analyse empirique des processus politiques, du rôle des acteurs et des perceptions et comportements des citoyens et des électeurs.
En mobilisant les outils de la philosophie politique, de la science politique, de la sociologie politique et de l’analyse des politiques publiques, les travaux conduits sous cet axe placent la focale sur plusieurs dimensions :
* La représentation politique (élections, partis et parlements), la « responsiveness » ou « réactivité » des gouvernements en Europe (partis et politiques publiques) * La participation politique conventionnelle et non conventionnelle (vote, primaires, actions protestataires) et la e-participation (vote électronique, activisme numérique, impact des réseaux sociaux sur les formes de politisation) * Les nouveaux espaces de la démocratie (notamment la « démocratie économique » et la « démocratie alimentaire » * La politisation d’enjeux spécifiques (en particulier l’immigration et l’Union Européenne)
L’axe thématique Qualité de la démocratie s’illustre par des recherches à dominante empirique sur les élections, les partis politiques et les parlements, ainsi que par des travaux plus théoriques, notamment autour de la démocratie économique et la gouvernance réflexive. **b) Régulation et gouvernance** (Responsable : Sabine Weiland)
Cet axe porte sur les recompositions de la régulation des sociétés. On entend par ce terme la création, la production et la mise en œuvre – de fait ou de droit – de normes et de programmes d’action. Ceux-ci sont appliqués sur un territoire donné, par un ensemble plus ou moins défini d’acteurs, publics ou privés, jouissant d’une certaine légitimité. En ce sens, la régulation comprend l’activité de gouvernement des Etats, mais aussi les normes et dispositifs privés visant à organiser un secteur d’activités ou les relations sociales au sein d’une communauté politique. Loin d’être une activité neutre ou purement fonctionnelle, la régulation implique fondamentalement des valeurs et des conflits, eux-mêmes aux versants matériels et idéels, qui en sont la cause ou en découlent. La production de la régulation, parce qu’elle implique la définition de normes et la répartition du pouvoir entre acteurs divers, constitue en ce sens une des dimensions centrales du politique. Ces conflits doivent être compris comme le fruit de processus géo-historiques, eux-mêmes construit et impacté par des rapports de forces et de domination. L’axe régulation et gouvernance s’attèle à la compréhension et l’analyse de ces conflits.
Questionner le politique par la régulation implique un triple questionnement en termes d’acteurs, d’arènes de régulation, et d’instruments. Eu égard aux acteurs, la question est celle du fameux « qui gouverne ? » de Robert Dahl, interrogeant l'influence des acteurs sur la production de normes et leur mise en œuvre. De nouveaux acteurs poussent également la régulation à changer d’arènes de gouvernement et de gouvernance, avec la prise d’importance de niveaux infra-, supra- et aussi transnationales, et le développement de normes publiques-privées ou strictement privées à côté des politiques nationales ou de régulations internationales. La régulation publique au niveau national qui a prévalu pendant longtemps est désormais remise en cause face à l’importance de nouveaux enjeux ""globaux"" (""nouvelles formes de conflictualité"", migration, changements environnementaux, mondialisation économique, etc.)
Les recherches menées sous cet axe se concentrent dès lors sur ces évolutions de la gouvernance pour interroger comment les acteurs eux-mêmes se saisissent de ses enjeux, mais aussi pour analyser les conséquences de ces constellations publiques-privées d’acteurs. Enfin, la forme et la nature de la régulation vise le contenu de ses dispositifs : ce sont ainsi les modes de coordination entre acteurs et les instruments de la régulation qui évoluent. Parmi les sources de changement, les recherches de cet interrogent notamment le rôle de certaines normes, tels que le néolibéralisme ou la démocratie participative, dans le changement de ces régulations.
Les domaines d’application sont divers : la sécurité et la défense, l’économie, l’environnement et l’agriculture sont autant de domaines de régulations étudiés par ESPOL-LAB.
Plusieurs thèmes animent les travaux de cet Régulation et Guovernance : * Avancées et limites de la gouvernance dans des domaines émergents (environnement), comme dans des domaines régaliens (sécurité et défense); * Les reconfigurations du droit international ; * Le rôle des politiques culturelles dans l’internationalisation, notamment dans la construction européenne ; * La légitimité des régulations internationales. **c) Reconfigurations de l’International** (Responsable : Philippe Bonditti)
Avec ce troisième axe de recherche, ESPOL-Lab se propose d’accueillir les travaux de celles et ceux qui interrogent ""l'International moderne"" du point de vue historique et de ses (possibles) transformations contemporaines.
Par ce concept « d’international moderne », nous ne voulons pas seulement entendre le ""système international des Etats"" mais aussi le ""régime de limites"" qui lui est sous-jacent. Un régime de limite historiquement contingent, entièrement articulé autour de la division spatiale et fondamentale entre l’interne et l’externe et à partir duquel a pu s’élaborer tout un ensemble de distinctions normatives et structurantes de la pratique politique et de la compréhension même du politique : distinction entre le citoyen et l’étranger, entre la politique intérieure et la politique étrangère, entre le crime et la guerre, entre le criminel et l’ennemi politique, entre la sécurité intérieure et la défense nationale, entre la police et les forces armées etc.
Avec une telle compréhension de ""l’International"", les travaux conduits sous ce troisième axe de recherche aspirent à se démarquer de usages non-réflexifs de ce concept qui, dans le discours historiquement accrédité, se reflètent notamment dans l’usage de ce mot ""international"" comme prédicat, c’est-à-dire pour qualifier autre chose que lui-même : des relations, des organisations, le droit, le système sont dit ""internationaux"". Il s’agit dès lors de problématiser ces usages non-réflexifs du concept d’international qui renvoient de manière bien trop abstraite à des phénomènes politiques et sociaux qui s’établiraient soit totalement hors de l’Etat soit entre les Etats.
D’un point de vue historique, il s’agit donc d'étudier l'émergence et la formation de ce régime de limites, ses pratiques constitutives et l’imaginaire spatial et temporel qui le sous-tend et le règle. Cela implique bien sûr l’étude de la socio-genèse de l’Etat moderne territorial – suivant ici une ligne wébéro-éliassienne déjà bien établie dans la littérature académique – ; mais nous encourageons aussi toutes celles et ceux qui s’inscrivent dans une approche d’histoire globale/connectée, d’histoire et sociologie des sciences et des techniques, d’épistémologie historique ou de théorie politique à venir présenter lors des diverses manifestations scientifiques que nous organisons.
Du point de vue des (possibles) transformations contemporaines de ce régime de limites, il s’agit d’étudier les formes transnationales de mobilisations et d’actions collectives, la diffusion des techniques du traitement automatique de l’information, la dérégulation des marchés et de l’interdépendance croissante des économies, les répertoires de pratiques et registre de savoirs qui s'emparent des problèmes de dérèglement climatiques et de dégradations environnementales en cherchant à déceler les circulations de concepts et de savoirs qu’induisent ces phénomènes et leurs effets sur l’international pris comme régime de limite.
Dans une perspective critique et résolument réflexive, on interrogera donc et entre autres :
- les inclinaisons contemporaines du processus historique de construction de l’Etat moderne; - le rapport transformé à l’espace, au territoire et aux frontières; - les procédures contestées – et pourtant continuellement réaffirmées – de légitimation de l’autorité souveraine étatique; - les formes renouvelées de la violence et des usages de la force. Au total, il s’agit avec ce troisième axe de faire vivre un espace d'analyse et de réflexion qui ne limite pas l’étude de l’international à celle des rapports interétatiques, de la diplomatie ou de la politique étrangère, et qui s’ouvre à des approches et des formes de savoir qui ne s’étaient jusqu’alors pas donné l’International pour objet parce qu’ils étaient encore trop appropriés par les approches anglo-américaines. Pour se faire, les activités de ce troisième axe de recherche sur les Reconfigurations de l’International se distribuent sous 4 domaines principalement: - Epistémologies de l’International, pour réfléchir précisément cette pluridisciplinarité ; - Formation de l’Etat, droit international, violence ; - L’anthropocène, développement durable et politique de la terre ; - Politique des frontières : l’Europe et l’EU ; ","[H2020 - RECONNECT](https://reconnect-europe.eu/) : Reconciling Europe with its Citizens through Democracy and Rule of Law (2018-2023); [FRB/CESAB](http://www.fondationbiodiversite.fr/fr/recherche/programmes-frb/cesab.html) : Towards ‘just conservation’: linking theories and practices of justice in biodiversity conservation (2019-2022);","- Le **séminaire général** est l’occasion d’accueillir des collègues extérieur.e.s à l’institution sur des thématiques identifiées à un ou plusieurs axes de recherche ; - Un **séminaire interne** dans le cadre duquel les membres d’ESPOL-Lab soumettent leurs propres travaux (articles, projets en cours de constructions...) à la lecture critique de leurs collègues ; - Le **séminaire OCTAV** de l'Observatoire du Terrorisme, de l'Antiterrorisme et des Violences ; - Un **Reading Group** dont les séances prennent pour objet un ouvrage collectivement choisi par les membres du laboratoire. ","- Observatoire du Terrorisme, de l'Antiterrorisme et des Violences [(OCTAV)](http://www.cresppa.cnrs.fr/labtop/page-une/octav/octav); - ESPOL-LAB est membre de l’ECPR (European Consortium for Political Research)",true,,,@ESPOL_Lab,"* Bibliothèque Universitaire Vauban * BnF * Bibliothèque de Sciences Po",,,,201221796U,https://appliweb.dgri.education.fr/rnsr/ChoixCriteres.jsp,https://scanr.enseignementsup-recherche.gouv.fr/structure/201221796U,2019, 2018-12-12T22:10:15.337Z,2018-10-17T14:30:14.291Z,ea7443,false,CERDAP2,EA 7443,"Centre d’Etudes et de Recherche sur la diplomatie, l’Administration Publique et le Politique",,http://www.sciencespo-grenoble.fr/recherche/laboratoires/cerdap%C2%B2/,Jérôme Ferrand,jerome.ferrand@univ-grenoble-alpes.fr,,,2016,"Créé en 2016, le CERDAP2, Centre d’Etudes et de Recherche sur la diplomatie, l’Administration Publique et le Politique, est actuellement labellisé comme Equipe d’Accueil (EA 7443). Placé sous la double tutelle de l’Université Grenoble Alpes (UGA) et de Sciences Po Grenoble, il développe, à partir d’approches interdisciplinaires et comparatistes, une recherche centrée sur l’étude des recompositions institutionnelles des collectivités publiques et des organisations sur lesquelles elles reposent. Dans un contexte de mutations des sociétés contemporaines, l’identité interdisciplinaire de ce laboratoire est essentielle. S’il regroupe également des politistes, des historiens et des médecins, le CERDAP2 s’appuie principalement sur un ensemble d’enseignants-chercheurs en droit. Refusant les approches techniciennes du droit et défendant la nécessité d’une vision politique des institutions, ce laboratoire cherche à renouveler l’approche des sciences administrative et juridique. Le CERDAP2 analyse principalement les transformations institutionnelles des collectivités publiques à partir de deux champs d’études spécifiques qui les illustrent de façon exemplaire. Ces deux terrains d’études sont ceux des politiques et des administrations de la justice, du risque et de la sécurité d’une part, et des politiques étrangères et des administrations diplomatiques d’autre part.",0,0,0,,,,,"* Institutions * Justice * Affaires étrangères * Administration","* Politiques et administrations de la justice, du risque et de la sécurité * Politiques étrangères et administrations diplomatiques",,,,,,,,"- La Doc' : Bibliothèque de Sciences Po Grenoble
- Bibliothèque Universitaire Grenoble Alpes
",,,,,,,, 2018-12-10T11:48:15.879Z,2018-10-17T14:52:00.262Z,ea2420,,CESICE,EA 2420,Centre d'Etudes sur la Sécurité Internationale et le Coopérations Européennes,,https://cesice.univ-grenoble-alpes.fr/,Théodore Christakis,theodore.christakis@univ-grenoble-alpes.fr,,,1977,"Le Centre d'Etudes sur la Sécurité Internationale et le Coopérations Européennes (CESICE) est un centre de recherche rattaché à l'Université Grenoble Alpes et à Sciences po Grenoble, hébergé par la Faculté de droit de Grenoble. Ce Centre pluridisciplinaire se consacre à la recherche en droit international public, relations internationales, économie et droit européen en accordant une attention particulière aux questions relatives à la sécurité internationale et européenne, domaine dans lequel le Centre se spécialise depuis sa création en 1977. Le CESICE, dirigé par le Professeur Théodore Christakis, regroupe aujourd'hui l'ensemble des Professeurs, Maître de Conférences et chercheurs en droit international public, en droit européen et en relations internationales de la Faculté de droit de Grenoble, ainsi que d'autres spécialistes de ces disciplines du site grenoblois. Ses membres poursuivent des activités de recherche fondamentale de façon collective et individuelle, enseignent dans les trois spécialités de Master 2 rattachés à ce Centre (« Carrières Juridiques Européennes », « Carrières Juridiques Internationales », « Sécurité Internationale et Défense » dans sa double version présentielle et en enseignement à distance) et « Histoire, théorie et pratique des droits de l’homme (double rattachement avec le CRJ)et encadrent les thèses de doctorat réalisées en droit international et européen, relations internationales et économie au sein du CESICE. Les membres du CESICE poursuivent aussi des activités de recherche appliquée, notamment dans le cadre d'expertises et de consultations, y compris dans le domaine du droit de la sécurité internationale et de la défense et des politiques de défense française et étrangères. Les membres du CESICE sont régulièrement invités à donner des cours et des conférences ou à intervenir lors de colloques internationaux dans des pays aussi divers que l’Allemagne, l'Australie, le Canada, l'Egypte, les Etats-Unis, la Géorgie, la Lituanie, la Malaisie, le Maroc, la Nouvelle-Zélande, le Royaume-Uni, la Russie, la Tunisie et un très grand nombre d’autres pays européens. Le CESICE coopère avec plusieurs centres ou institutions de recherche ou d'enseignement en France et à l'étranger et il a coordonné plusieurs contrats européens, tels que les projets Tempus Tacis (Volgadoc, Bologna-Juris, Forcondho). Le Centre dispose d'importantes ressources documentaires dans différents domaines du droit international et du droit européen et a constitué une des meilleures collections en France dans le domaine de la sécurité internationale.",99,28,71,https://cesice.univ-grenoble-alpes.fr/centre/membres,,17,,"* Droit international public * Sécurité International","* Cyber, Data, Nano-Bio et AI * Droits Humains * Justice Internationale",,,,,,,,"- La Doc' : Bibliothèque de Sciences Po Grenoble
- Bibliothèque Universitaire Grenoble Alpes
",,,,,,,, 2018-11-27T02:02:22.476Z,2018-10-31T09:09:42.982Z,6297,false,DCS,UMR 6297,Droit et Changement Social,,http://www.dcs.univ-nantes.fr,Rafael Encinas de Munagorri,dcs@univ-nantes.fr,,,1982,"Le laboratoire DCS a été créé par Michèle Bordeaux, en tant « qu'équipe recommandée » par la Direction de la recherche des Universités et devient unité associée au CNRS en 1984 (UA CNRS 1154). Le laboratoire Droit et Changement Social était alors formé de deux composantes : - le Laboratoire d'histoire et de droit social, comprenant l'équipe d'histoire et de la protection sociale (resp. Philippe-Jean Hesse) et l'équipe de droit social (resp. Alain Supiot). - le Centre de recherches politiques comprenant l'équipe « Femmes, droit et changement social » (resp. Michèle Bordeaux), l'équipe « Droit et changement dans les modes de production agricole » (resp. Louis Lorvellec), l'équipe « Casier judiciaire (pénal) », l'équipe « CRP Electorats ». Le laboratoire a été par la suite dirigé par Patrick Chaumette (ESA CNRS 6028), puis par Jean-Pierre Le Crom (UMR CNRS 6028). Fondée comme unité CNRS en 1984, ""Droit et Changement Social"" s'est développé autour d'une approche critique du droit refusant de se soumettre aux frontières traditionnelles entre droit public et droit privé, entre une perspective interne (la recherche en droit) et une perspective externe (la recherche sur le droit), avec pour point fort, le droit social, le droit rural et les politiques pénales. Rapidement reconnue et soutenue par le CNRS, le laboratoire a donc obtenu le statut d'Unité Mixte de Recherche. En 2008, le laboratoire Droit et Changement Social (UMR CNRS 6028) s'élargit par la fusion avec une équipe de juristes à dominante de droit public : le « Centre d'Etudes des Régulations Publiques des Espaces, de l'Economie et de l'Environnement » (CERP3E, UMR CNRS 6225). L'UMR Droit et Changement Social intégre alors de nouveaux axes de recherche autour de l'environnement, du droit foncier, de l'administration territoriale. L'unité recomposée (UMR CNRS 3128 aujourd'hui UMR CNRS 6297) décide de conserver le nom de « Droit et changement social » et est dirigée par Jacques Fialaire jusqu'en 2012. Elle sera ensuite dirigée par Bertrand Faure (septembre 2012 à octobre 2013), Arnauld Leclerc (octobre 2013 à juin 2015) et par Rafael Encinas de Muñagorri (depuis le 1er juin 2015).",187,82,105,http://www.dcs.univ-nantes.fr/membres/,https://annuaire.cnrs.fr/l3c/owa/annuaire.recherche/index.html,400,,"* Droit * changement social","* Europe Politique et Juridique dans la Mondialisation * Gouvernances locales et Processus de Relocalisation * Innovations Technologiques, Santé et Biopouvoir * Justice(s) : normes, pratiques et sociétés * Mobilités Humaines, Sociales et Professionnelles * Réflexivités Juridiques et Interdisciplinaires","* ANR - Réprimer et soigner [REPESO] * ANR- Entre profession et famille [PROFAM] * REGION - Bonheur et Droit [BonDroit] * REGION - Médecine personnalisée et données en grand nombre [DataSanté] * REGION - PAYS DE LA LOIRE - POLLUSOLS à l'épreuve du droit * REGIONS - PSDR4 -Formes urbaines et gouvernance alimentaire [FRUGAL] * INCa-ANSM - SIRCADE * CITER - L'Europe et les frontières de la Citoyenneté * ARRECO - L’accueil et la relocalisation des réfugiés en Europe","* Séminaire DCS-Dynamiques de la responsabilité * Séminaire international de jeunes chercheurs",,,,,,Bibliothèque de l'Université de Nantes,Ressources de la BU de Nantes et du CNRS,,,,,,, 2018-12-13T11:19:55.263Z,2018-11-19T11:51:03.840Z,ea3932,false,SOPHIAPOL,EA 3932,"Laboratoire de sociologie, philosophie et anthropologie politiques",,https://sophiapol.parisnanterre.fr/,Philippe Combessie,philippe.combessie@parisnanterre.fr,,,2002,"Le Sophiapol (EA 3932) est une unité de recherche pluridisciplinaire composée de sociologues, de philosophes et de socio-anthropologues. Elle a commencé à se constituer à partir de 2002 en se substituant au Géode (sociologie) et à l'UPRES-A8004 (philosophie).
Le principal thème de recherche du Sophiapol a consisté, sur la période 2007-2012, en un travail autour des théories et des pratiques de reconnaissance dans les sociétés contemporaines ; il visait, d'une part, à tenter de construire un concept de reconnaissance suffisamment riche et précis pour rendre compte des pratiques sociales contemporaines et pour permettre à la philosophie et aux sciences sociales de mener des recherches communes de nature théorique et empirique. D'autre part, il mettait ce concept au travail dans cinq axes de recherche : reconnaissance et construction de l'identité ; reconnaissance et intégration sociale ; les conflits de reconnaissance ; les problèmes éthiques de la reconnaissance ; les politiques de reconnaissance. ",102,22,80,https://sophiapol.parisnanterre.fr/les-membres/,,77,,"* Capitalisme * Conflits * Corps * Doctrines et pratiques politiques * Domination * Ecologie politique * Emotions * Frontières * Genre * Globalisation * Identité * Idéologie * Maladie * Marxisme * Prison * Reconnaissance * Santé * Sexualité * Territoires * Ville","* Pratiques et politiques des corps * Production des frontières : identité et espace * Le présent du capitalisme : diagnostic, contestation, expérimentation, émancipation * Les grammaires du politique * Culture, valeur, lien social",,"* Racisme et histoire * Séminaire annuel du GDR Lasco * Le concept de classe sociale * Pour une sociologie mondialisée non hégémonique","* CERPHI (ENS Lettres et Sciences humaines, Lyon) * CERSES (Université Paris Descartes) * CEVIPOF (Sciences Po, Paris) * CREUM (Université de Montréal) * CURAPP (Université de Picardie, Jules Verne, Amiens) * NOSOPHI (Université Paris I)",,,,"Le carnet du Sophiapol https://sophiapol.hypotheses.org/",BU Nanterre,,,,,,,, 2019-01-28T15:54:04.545Z,2018-11-19T13:42:48.711Z,x,false,IRSEM,X,Institut de recherche stratégique de l’École militaire,,https://www.defense.gouv.fr/irsem,Jean-Baptiste Jeangène Vilmer,jean-baptiste.jeangene-vilmer@irsem.fr,,,2009,"Créé de facto en septembre 2009, et de jure par un arrêté du 15 octobre 2010, l’IRSEM est issu de la fusion de quatre centres de recherche du ministère de la Défense :
* le Centre d’études en sciences sociales de la défense (C2SD, 1995-2010), précédemment Centre de sociologie de la défense nationale (CSDN, 1969-1995) * le Centre d’études d’histoire de la défense (CEHD, 1994-2010) * le Centre d’études et de recherches de l’enseignement militaire supérieur (CEREMS, 2001-2010), * le Centre des hautes études de l’armement (CHEAr, 1964-2010).
Initialement rattaché à l’état-major des armées (EMA, sous-chef d’état-major ressources humaines), l’IRSEM est depuis mars 2015 rattaché à la Direction générale des relations internationales et de la stratégie (DGRIS), créée quelques mois plus tôt, plus précisément au directeur stratégie de défense, prospective et contre-prolifération (DSPC). La DGRIS entreprend alors de réformer l’IRSEM. La nouvelle organisation est actée dans l’arrêté du 22 décembre 2015, qui abroge celui du 15 octobre 2010 et présente l’IRSEM comme un « organisme extérieur » de la DGRIS. Il ouvre le profil de son directeur, qui jusqu’alors devait être soit professeur des universités, soit officier général, et détaille la procédure de nomination des membres de l’équipe de direction – par arrêté du ministre, sur proposition du Directeur Stratégie de défense, prospective et contre-prolifération et après avis des membres du droit du conseil scientifique.
En février 2016, l’IRSEM déménage dans le bâtiment 13 de l’École militaire, totalement rénové.
Évolution de l’équipe de direction : * directeurs : de sa création à décembre 2015, l’IRSEM était dirigé par Frédéric Charillon, professeur de science politique à l’université de Clermont-Ferrand. Nommé le 15 juin 2016, Jean-Baptiste Jeangène Vilmer est le premier directeur de l’IRSEM à temps plein. * secrétaires généraux : général Jean-Claude Beyer (2009-2010), général André Var (xxx-xxx), général Jérôme de Tarlé (xxx-xxx), contre-amiral Jean-François Morel (2013-2015), contrôleuse des armées Marie-Noëlle Quiot (2016-2017), commissaire général Étienne Vuillermet (depuis septembre 2017). * directeurs scientifiques : Frédéric Ramel, professeur de science politique à l’université Paris-11 puis Sciences Po (2009-2013) ; Thierry Balzacq, professeur de science politique à l’université de Namur (2014-2016) ; et Jean-Vincent Holeindre, professeur de science politique à l’université de Poitiers puis Paris-2 Panthéon-Assas (depuis novembre 2016).
Changement de logo :
2009-2016 (ancien logo);
Depuis septembre 2016 (nouveau logo)",57,26,31,https://www.defense.gouv.fr/irsem/l-institut/l-equipe-de-recherche/l-equipe-de-recherche,,,,,"* Questions régionales Nord ( Europe, États-Unis, Russie et espace post-soviétique, Chine, Japon et péninsule coréenne ) * Questions régionales Sud ( Afrique, Moyen-Orient, Golfe, sous-continent indien, Asie du Sud-Est et Pacifique ) * Armement et économie de défense ( questions économiques liées à la défense et questions stratégiques résultant des développements technologiques ) * Défense et société ( lien armées-nation, attitude de l’opinion publique vis-à-vis des questions de défense, et sociologie de la violence, de la guerre et des forces armées ) * Pensée stratégique ( conduite des conflits armés à tous les niveaux : stratégique, opératif, tactique ).",,,,,,,La newsletter de l'IRSEM,,,,,,,,, 2018-12-12T23:23:43.030Z,2018-11-21T13:25:16.757Z,ea2715,false,IEDP,EA 2715,Institut d'études de droit public,,http://iedp.u-psud.fr/,* Charles Vautrot-Schwarz * Benoît Blottin,charles.vautrot-schwarz@u-psud.fr,,,1996,"L’Institut d’études de droit public (I.E.D.P.), créé en 1996, est le centre de droit public de la faculté Jean Monnet. Il accueille dès sa création le Centre de recherches et d’études sur les droits de l’homme et le droit humanitaire (CREDHO). Historiquement, sa vocation est celle d’un centre de droit public, interne mais également européen et international.
Au fil des années, et au gré des recrutements, l’IEDP a accentué la spécialisation de droit public interne aux côtés du CREDHO qui s’est, quant à lui, spécialisé dans le champ européen des droits de l’homme. Le CREDHO est désormais l’un des centres de référence notamment en ce qui concerne la jurisprudence de la Cour européenne des droits de l’homme.
A compter de 2005, la dimension internationale générale est redevenue l’un des axes de recherche. C’est la raison pour laquelle, l’unité est désormais organisée autour de deux pôles, l'un consacré à l'étude du droit public interne, l'autre à celle du droit international et européen (comprenant bien entendu le CREDHO).",50,21,29,http://iedp.u-psud.fr/index.php?89-composition,,19,,"* Droit public * Droit interne * Droit international * Droit européen * Gouvernance * Environnement.","* Droit public interne * Droit international et europén",,* Les séminaires de l'IEDP,,,,,,"* La BU * La bibliothèque de la recherche de la Faculté Jean Monnet","* SUDOC * Catalogue de Paris-Sud",,,,,,, 2019-04-09T15:31:32.896Z,2018-11-21T14:30:34.303Z,*anr-11-labx-0091* anr-11-idex-0005-02,false,LIEPP,LABEX 0091,Laboratoire interdisciplinaire d'évaluation des politiques publiques,,https://www.sciencespo.fr/liepp/fr,Bruno Palier,liepp@sciencespo.fr,,,2011,"Le LIEPP (Laboratoire interdisciplinaire d'évaluation des politiques publiques), est un laboratoire d'excellence (Labex) créé en 2011. Il est spécialisé dans l'évaluation interdisciplinaire des politiques publiques.
Les centres fondateurs du LIEPP sont :
* L’Observatoire sociologique du changement (OSC); * Le Centre d’études européennes et de politique comparée (CEE); * Le Département d'Economie; * Le Centre de sociologie des organisation (CSO).",215,0,215,https://www.sciencespo.fr/liepp/fr/membres,,25,,"* Analyse et évaluation des politiques publiques * Interdisciplinarité: économie, sociologie, sciences politiques et économie politique comparée","* Discriminations et inégalités sociales * Evaluation de la démocratie * Politiques socio-fiscales * Politiques éducatives Mais aussi : * Politiques urbaines * Politiques pénales * Politiques de santé * Politiques migratoires",,"* Séminaires du LIEPP * Séminaire doctoral du LIEPP","* Fonds d’Expérimentation pour la Jeunesse (FEJ) * Ministère de l’éducation nationale * OCDE * Inspection générale des affaires sociales (IGAS) * Mission Interministérielle de Lutte contre les Drogues et les Conduites Addictives (MILDECA) * France Stratégie * Ecole Nationale Supérieur de Sécurité Sociale * Commissariat général à l’égalité des territoires (CGET) * Mairie de Paris * Abdul Latif Jameel Poverty Action Lab (J-PAL) * Académie de Paris * Association Nationale des Sociétés par Actions (ANSA) * Caisse nationale des Allocations familiales (Cnaf) * Conseil d'analyse économique (CAE) * Conseil économique, social et environnemental (CESE) * Conseil national d’évaluation du système scolaire (CNESCO) * Cour des comptes * Direction de la recherche, des études, de l’évaluation et des statistiques (DREES) * European Consortium for Political Research (ECPR) * European Consortium for Sociological Research (ECSR) * Inspection générale des finances (IGF) * Institut des politiques publiques (IPP) * Institut d'Economie Publique (IDEP) * Institut national de la statistique et des études économiques (INSEE) * Observatoire français des conjonctures économiques (OFCE) * Society for Institutional & Organizational Economics (SIOE) ",,,,* La newsletter électronique du LIEPP,* Bibliothèque de Sciences Po,"Ressources numériques de la bibliothèque de Sciences Po http://www.sciencespo.fr/bibliotheque/fr/rechercher/eressources ",,,X,,,2019, 2019-01-30T15:47:50.747Z,2018-11-27T01:09:07.953Z,ea7033,false,MEDIALAB,EA 7033,Medialab,,https://medialab.sciencespo.fr/fr/about/,Dominique Cardon,Dominique.Cardon@sciencespo.fr,false,,2009,"Le médialab a été créé en 2009 pour aider les sciences sociales et humaines à tirer le meilleur profit de la masse de données rendues disponibles par la numérisation.
Il a trois missions principales fortement intégrées: méthodologie, analyse, théorie.",29,23,6,https://medialab.sciencespo.fr/fr/people/,,1,,"* cartographie des controverses * data mining * information et com * nouvelles technologies * systèmes documentaires * informatique * méthodes numériques pour les shs * opinion publique * recherche et pratiques pédagogiques * sciences de l'information et de la communication",,,* Séminaire de recherche du Médialab,,true,true,,,* Bibliothèque de Sciences Po,,,,201420819Y,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=201420819Y&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/201420819Y,2017, 2019-04-11T10:48:10.230Z,2018-12-04T15:10:23.636Z,umr8156,false,IRIS,UMR 8156,Institut de recherche interdisciplinaire sur les enjeux sociaux,,http://iris.ehess.fr,Arnaud Esquerre,iris@ehess.fr,true,,2007,"Unité mixte de recherche associant l’EHESS, le CNRS, l’Inserm et l’Université Paris 13, l’Institut de recherche interdisciplinaire sur les enjeux sociaux (UMR8156 - U997), fondé en 2007 par Didier Fassin et Alban Bensa, est issu de la fusion de deux laboratoires : le Centre de recherche sur la santé, le social et le politique, et le laboratoire Genèse et transformation des mondes sociaux. L'Iris réunit environ 80 chercheurs et plus de 140 doctorants et jeunes docteurs en anthropologie, sociologie, histoire, droit, science politique, santé publique et médecine légale. Leurs travaux explorent les enjeux sociaux, politiques et moraux des sociétés contemporaines sur des terrains français, européens, américains, africains, asiatiques et océaniens. Les deux localisations principales de l'Iris sont les campus de l’EHESS à Paris et de l’Université Paris 13 à Bobigny.",243,73,170,http://iris.ehess.fr/index.php?/membres/1764-liste-alphabetique,https://annuaire.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=1&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8156&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=11&p_pays=&p_an_cre=&p_an_renou=&p_i=220&p_nbres=571&p_num_lab=224&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,101,,"* Politique * Enquête * Santé * Inégalités","* Ethnographie de la domination : pouvoirs, émancipations, subjectivités * Les frontières de l’intime : injonctions, tensions, résistances * La santé comme gouvernement des individus et des populations","* CannaPol - Statut légal du cannabis et politiques publiques * Drop It - Big data et DROit Pénal : utilisation, compréhension et Impact des Techniques prédictives * Enquête sur les expositions professionnelles et environnementales aux cancérogènes : une recherche-action prenant appui sur les patients atteints de cancer hématologique du centre hospitalier d'Avignon * Les figures d’intellectualité de la jeunesse populaire * MyPeBS (My Personal Breast cancer Screening) * Prédispositions génétiques aux pathologies malignes de l’enfant et séquençage de nouvelle génération: questions éthiques, légales et psychologiques * Pesticide Politics. Exploring the global and local government of pesticide-related health risk in Africa * Les régimes nationaux de l'autochtonie. Situations autochtones et question nationale dans les Amériques et en Océanie","* Séminaire de l'Iris * Séminaire des doctorant.e.s * Séminaires des membres",,true,,," La lettre de l'Iris (mensuelle)","* Bibliothèque universitaire Jean Dausset, SCD Paris 13 * Bibliothèque FMSH",Pas de ressources numériques propres. Accès aux ressources poposées par les tuelles.,,,200812809T,https://appliweb.dgri.education.fr/rnsr/ChoixCriteres.jsp,https://scanr.enseignementsup-recherche.gouv.fr/structure/200812809T,2019, 2019-01-28T15:54:04.572Z,2019-01-28T14:25:10.778Z,umr5044,false,CERTOP,UMR 5044,"Centre d'étude et de recherche travail, organisations, pouvoirs",OK,http://www.certop.cnrs.fr/,Marie-Gabrielle Suraud,marie-gabrielle.suraud@iut-tlse3.fr,true,true,1999,"Le Centre d’Etude et de Recherche Travail, Organisation, Pouvoir (CERTOP) a été fondé en 1994 par des chercheurs désireux d’associer l’étude du travail et celle des politiques publiques. Il s’est progressivement enrichi par des recherches sur la sociologie des marchés, l’environnement, le genre, l’alimentation, la santé et le tourisme. Issu d’un laboratoire de sociologie du travail (ERMOPRES, URA 900 du CNRS), le CERTOP compte aujourd’hui 50 enseignants-chercheurs.",116,68,48,http://www.certop.cnrs.fr/-Membres-de-l-unite-,https://web-ast.dsi.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR5044&p_int=&p_lab=&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=40&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=20&p_nbres=64&p_num_lab=21&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,44,Sciences juridiques et politiques,"* Sociologie du travail * Sociologie de l'emploi * Sociologie des professions","* Axe 1: Intelligence du travail (INTRA) * Axe 2: Santé et alimentation (SANTAL) * Axe 3: Transitions écologiques, risques, innovations, tourisme (TERNOV) * Axe 4: Public et marché (PUMA)","Projet INCASI: Global trends in social inequalities in Europe and Latin America and exploring innovative ways to reduce them through life, occupational and educational trajectories research to face uncertainty","* Séminaire « Usages, Techniques et Marchés » * Séminaire CERTOP * Séminaires transversaux: * Séminaire Axe PUMA, ""Les méthodes audio-visuelles en sociologie : enjeux et usages"" * Séminaire doctoral Axe TERNOV : Présentation de travaux doctoraux * Séminaire de recherche Axe INTRA "" Le travail politique"" * Séminaire Invité * Séminaire ""Parcours des docteurs, professionnalisation et insertion"" * Séminaire ""Action publique et usages du droit""","* Centre d'Économie de la Sorbonne * Plurilinguismes, Représentations, Expressions Francophones, Information, Communication, Sociolinguistique (PRÉFICS) * Institut Interdisciplinaire de l'Innovation (I3) * Institut de Recherche sur l'Éducation (IREDU) * Sciences pour l'Action et le Développement : Activités, Produits, Territoires (SADAPT) * Laboratoire Interdisciplinaire Solidarités, Sociétés, Territoires (LISST) * Laboratoire Techniques, Territoires et Sociétés (LATTS) * CRISTOPIA ENERGY SYSTEMS * Institut International du Froid",true,false,"La préconisation est de maximiser le libre accès pour les membres et d’être présent sur HAL.
Il est demandé aux membres de déposer au moins les notices bibliographiques sur HAL et éventuellement que leurs documents soient présents sur d’autre site (comme ‘’researchgate’’ par exemple)","Page d'accueil et page ""publications"" du site du CERTOP
http://www.certop.cnrs.fr/-Publications-","Bibliothèque Universitaire Centrale, Espace Documentation Recherche (EDR)","Le centre dispose des abonnements classiques de l’université Toulouse de Mirail, de l’université Paul Sabatier et du CNRS",La politique d'acquisition des documents est fondée par les demandes formulées par les chercheurs du centre.,"Existence d'une aide à la recherche documentaire par une documentaliste à disposition pour : * prestations de service : orientation bibliographique, élaborationde bibliographies, renseignements par téléphone * formation à la recherche documentaire : Francis, SocIndex, LGBT, Women’s Studies International… * interrogation des catalogues sur les femmes et le genre : Catalogue collectif GENRE w3.genre.univ-tlse2.fr, Marguerite Durand, Aspasie, Archives du Féminisme d’Angers… * localisation de documents particuliers (ouvrages et articles de périodiques)",199911736R,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=199911736R&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/199911736R,2017, 2019-06-17T14:04:24.102Z,2019-05-22T11:42:01.886Z,umr8173,false,CCJ,UMR 8173,"Chine, Corée, Japon",,http://umr-ccj.ehess.fr/,Valérie GELÉZEAU,valerie.gelezeau@ehess.fr,true,,2006,"L’Unité Mixte de Recherche « Chine, Corée, Japon » (UMR 8173) est le plus grand centre français de recherche en sciences sociales sur l’Asie orientale. Le laboratoire est né en 2006 de la fusion de trois centres de recherches : * [Centre d’études sur la Chine moderne et contemporaine (CECMC)](http://cecmc.ehess.fr/) * [Centre de recherches sur la Corée (CRC)](http://crc.ehess.fr/) * [Centre de recherches sur le Japon (CRJ)](http://crj.ehess.fr/) En mobilisant plusieurs disciplines des sciences humaines et sociales, l’objectif des recherches projetées au niveau du laboratoire est de transcender les frontières de la connaissance de l’Asie orientale, traitée comme une entité autonome, disposant de sa dynamique propre, et non pas seulement comme un reflet de l’Occident ou son écho. ",159,53,106,http://umr-ccj.ehess.fr/index.php?911,https://annuaire.cnrs.fr/l3c/owa/structure.sous_frame_infos?p_etat=pe&p_pe=2&p_th=2&p_pr=3&p_eq=3&p_pa=3&p_uc=1&p_lab_sel=UMR8173&p_int=&p_lab=UMR8173&p_dir=&p_ville=&p_tut=&p_org=&p_disc=&p_del=&p_dep=&p_dep_sec=&p_sec=&p_dom=&p_reg=&p_pays=&p_an_cre=&p_an_renou=&p_i=0&p_nbres=1&p_num_lab=0&type_recherche=&p_choix1=&p_boite1=&p_boite2=&p_boite3=&p_dept=&delegation=&p_domaine_tous=&p_domaine_unite=&p_domaine_perso=&p_domaine_activ=&p_domaine_prod=&p_domaine_equip=&p_domaine_expert=&p_nbr=&p_session=&p_indic_ecran=&p_gd=&p_dsa=&p_dir_int=&p_dgg=&p_tutelle_dgg=,54,,"Asie orientale, Chine, Corée, Japon, Extrême orient, architecture, environnement, histoire politique et institutionnelle, histoire économique.","* Circulations, appropriations et réseaux en Asie * Cartographies des réseaux en Asie Orientale. networks of mapping – mapping by networks * Global Asia(s) * Asie maritime * Savoirs et techniques : pratiques, objets et circulations * Traduire : vers des pratiques collectives de recherche * Transmissions et dynamiques des savoirs * Santé, sensibilités, substances et matériaux * Sociétés et Etats : interactions, confrontations, régulations * Normes, droit et conflictualités * Sphères publique et privée * Récits de vie et mises en formes du moi * Régir le commerce * Etat développeur, Etat protecteur * Pôle Humanités numériques * Autophotoscopie * Répertoire historique de l’Administration Coréenne * Pôle Cultures visuelles * Autophotoscopie * Base France China Archives * Base Guizhou ","ANR - [Ville, architecture et urbanisme en Corée du Nord – CITY-NKOR](https://anr.fr/fr/projets-finances-et-impact/projets-finances/projet/funded/project/anr-17-ce27-0012/?tx_anrprojects_funded%5Bcontroller%5D=Funded&cHash=dc28437e8b71a0f1694f33a91b330d0e)","* Aux origines de la mondialisation : histoire économique comparée Asie Europe, 1500-2000 * L'Asie maritime : pouvoirs et gens de mers. 2 * Anthropologie des espaces et du territoire: l'Asie orientale en perspectives * Anthropologie du Japon: terrains et texte * Critical Heritage Studies. Epistémologie, réception et actualités (France, Europe, Asie, Monde) * Géographie culturelle de la Corée. Introduction * Société et culture du Japon contemporain * Sciences et savoirs de l’Asie orientale dans la mondialisation * Santé, sensibilités, substances en Asie orientale * Histoire culturelle de la Chine (XVe siècle-XIXe siècle) : savoirs et techniques typographiques * États, institutions et construction des marchés * Expériences des débuts du communisme en Chine (années 1950-1960) : enquêtes historiques et anthropologiques * Vers une histoire des jeux de hasard en Chine, le cas du fantan * Histoire de la culture visuelle en Asie orientale ","* Ecole Française d'Extrême Orient * LIAS (Leiden University Institute for Area Studies)",true,,"Les archives ouvertes des équipes de l'UMR 8173 sont des collections de HAL (Hyper articles en ligne) qui rassemblent les références ou le texte intégral des travaux de chercheurs affiliés à l'EHESS sur la plateforme CCSD (Centre pour la Communication Scientifique Directe). * [Archives ouvertes de l'UMR 8173 Chine, Corée, Japon](https://halshs.archives-ouvertes.fr/UMR-CCJ) * [Archives ouvertes du Centre Chine (CECMC)](https://halshs.archives-ouvertes.fr/ACC/?lang=fr) * [{Archive ouverte du Centre de Recherches sur la Corée (CRC)](https://halshs.archives-ouvertes.fr/AOCRC/?lang=fr) * [Archives ouvertes du Centre de recherche sur le Japon (CRJ)](https://halshs.archives-ouvertes.fr/CRJ)","* [Site Internet du laboratoire](http://umr-ccj.ehess.fr/index.php?784) * Les centres de l'UMR publient de nombreux blogs sur la plateforme *Hypothèses* hébergée par OpenEdition.
L'UMR propose les Carnets de l'UMR avec une sélection de billets provenant des Carnets des trois centres : [Carnets Chine Corée Japon](https://ccj.hypotheses.org/) * [Carnets du Centre Chine](https://cecmc.hypotheses.org/) * [Carnets du Centre Corée](https://korea.hypotheses.org/) * [Carnets du Centre Japon](https://carnetsjapon.hypotheses.org/) * [Twitter Chine Corée Japon](https://twitter.com/umr8173) * [Facebook](https://www.facebook.com/Centre-Chine-EHESS-CNRS-185569008196463/)","* Bibliothèque de l'EFEO Paris - Maison de l'Asie * BULAC * Bibliothèques du Collège de France * Bibliothèque de Sciences Po * Bibliothèque du Centre d'études sur la Chine moderne et contemporaine
* Documentation du Centre de recherches sur la Corée
* Bibliothèque du Centre de recherches sur le Japon
","**Ressources proposées par l’EHESS**
L’EHESS met à la disposition de ses personnels et étudiants un certain nombre de ressources documentaires électroniques pour lesquelles l’établissement a souscrit un abonnement. Les personnels et les étudiants ont également accès aux ressources proposées par les bibliothèques de la Fondation Maison des Sciences de l’Homme et la BU SHS-Descartes CNRS – partenaires de l’EHESS. D'autres offres sont mutualisées avec Paris Sciences et Lettres (PSL).
Le personnel et les étudiants inscrits à l'EHESS peuvent accéder aux [ressources électroniques souscrites par notre établissement](http://lodel.ehess.fr/cerc/document.php?id=284#tocto7) ainsi qu’aux nombreuses ressources proposées par le CNRS sur son portail [BibCNRS](https://bib.cnrs.fr/).
Tout personnel ou étudiant (uniquement les doctorants pour le portail BibCNRS) de l'EHESS peut accéder à ces ressources, depuis n'importe quel ordinateur connecté à Internet.
Plus d'informations sur les ressources électroniques disponibles [ICI](https://www.ehess.fr/fr/ressources-%C3%A9lectroniques). **Bibliography of Asian Studies (BAS)** Version en ligne de Bibliography of Asian Studies (BAS), références en langues occidentales concernant tous les pays de l’Asie publiées depuis 1971 **China News Analysis (1953-1998)**
Version numérisée de la newsletter sur l’actualité chinoise, fondée en 1953 à Hong Kong par le Père Laszlo Ladany, la première du genre en anglais à s’appuyer sur des sources chinoises. Comprend les 1625 numéros et les index annuels. Module de recherche multi-critères. Base en accès libre en salle de lecture.
Maintenant disponible en ligne, en libre accès : http://www.ladanyi.ch/china-news-analysis/ **Renda fuyin baokan ziliao** (人大复印报刊资料 (Compendia de l’Université du Peuple, Pékin)
Reproduction d’articles les plus importants dans leurs domaines respectifs (histoire chinoise, histoire mondiale, histoire du PCC, politique, philosophie, économie, littératures chinoise et étrangères, etc.), publiés dans des revues et journaux chinois (PRC). Articles en plein texte, parus depuis 1995. Base en accès libre en salle de lecture, tous les jours de 13h à 18h.
* http://book.zlzx.org/ **Renmin ribao dianziban** (人民日报电子版 1946-2009)
Version en ligne de l’organe de presse officiel du Parti communiste chinois. Articles en plein texte. Recherche multicritères. Base en accès libre en salle de lecture.
* A. Première partie (1946-2011) http://rmrb.egreenapple.com/ * B. Deuxième partie (2012-2015) www.apabi.com/ehess **Wanfang data**
Ressource disponible uniquement pour les membres permanents du CECMC.
Accès au texte intégral d’articles de plus de 7600 périodiques académiques de toute discipline, dont 3140 concernent les sciences humaines et sociales. L'abonnment comprend trois parties :
* A. China Online Journals (期刊库) http://c.wanfangdata.com.cn/Periodical.aspx * B. Dissertations of China (学位库) http://c.wanfangdata.com.cn/Thesis.aspx * C. Policies and Laws of China (法律库) http://c.wanfangdata.com.cn/Claw.aspx **Bibliothèque Nationale de Corée** 국립 중앙 도서관 원문서비스 Service de textes numériques de la bibliothèque nationale de Corée **Bibliothèque de l’Assemblée Nationale de Corée** 국회 도서관 **RISS International**
Produit de KERIS (Korea Education & Research Information Service), 1,6 millions de thèses et mémoires des instituts scientifiques coréens **DBpia**
Bouquet de 1 424 périodiques scientifiques coréennes, qui contient plus d’1 000 000 articles **KISS-KSI**
Bouquet de périodiques scientifiques de 1224 académies coréennes **KRpia**
Ensemble de 192 sortes de documents (collections, encyclopédies, multimédias, etc.) concernant 11 domaines thématiques qui contiennent diverses ressources primaires **eArticle** 학술교육원 (non consultable en 2015)
Bouquet de 731 articles scientifiques de 506 académies coréennes Korea Analysis Korea Analysis couvre les sujets liés aux enjeux géopolitiques et sécuritaires dans la péninsule coréenne, la situation en Corée du Nord et les relations intercoréennes, mais également à la politique, l’économie et la société coréennes. **KOSSDA** (Korea Social Science Data Archive)
1 100 résultats d’enquêtes, 700 recueils statistiques qui contiennent des références sur la situation socio-économique de la période coloniale de la Corée, ainsi que la situation sociale de la Corée depuis 1960; 4000 multimédias et plus de 10 000 publications **Choson-ilbo** 조선일보 Archive
Archive du journal Choson-ilbo : depuis 1920 (n°1) jusqu’à aujourd’hui **Kyôngsông-ilbo** 경성일보 京城日報 Archive
Archive du journal Kyôngsông-ilbo : depuis 1907 jusqu’à 1930 **Histoire des mouvements sociaux sous l’occupation japonaise** 일제하 사회운동사자료집 日帝社會運動史
Documents primaires reproduits concernant des mouvements sociaux et des mouvements nationalistes de la période coloniale **Administration de Choson** 조선 행정 潮鮮行政
Documents primaires reproduits concernant l’administration du gouvernement japonais pendant la période coloniale, 28 volumes **Songhwa-kang** 송화강
Documents primaires reproduits, Revue créée en 1949 par des Coréens résidant en Chine (하얼삔 조선민족예술관) **JapanKnowledge**
Cette base donne accès à de nombreux dictionnaires, encyclopédies, cartes et hebdomadaires japonais offrant la possibilité de faire des recherches croisées. Plus de 2 millions d’entrées sur plus de 40 bases différentes : , dictionnaires (日本国語大辞典), encyclopédies (国史大辞典, 日本大百科全書、古事類苑), bibliographie (日本人名大辞), cartes (江戸名所図会), œuvres classiques (東洋文庫、日本古典文学全集), e-books (群書類従、風俗画報), entre autres. **Asahi Kikuzo II Visual**
Cette base propose l’intégralité des articles parus dans le quotidien Asahi. On peut faire des recherches dans ce journal depuis sa création en 1879 jusqu’à aujourd’hui : de 1879 à 1945 en mode image et en mode texte ensuite ce qui permet pour cette dernière période (1945-) de faire des recherches directement sur le texte des articles. On peut également faire des recherches dans les magazines hebdomadaires “Shûkan Asahi” et “AERA”. De plus on peut consulter une base de documents photographiques “Historical Photo Archive” couvrant la période 1930-1945. On trouvera dans cette base, entre autres, des photographies prises dans les colonies. **CiNii**
Base de référencement d’articles de revues japonaises gérée par the National Institute of Informatics, qui donne accès à 10 millions de références dont 270 000 articles en texte intégral, en japonais et en anglais. Beaucoup d’articles en texte intégral sont accessibles gratuitement en se connectant au site. **Keijô Nippô**
Le journal japonais publié en Corée durant la colonisation japonaise. Consultable pour la période de 1907 à 1944.",,,200612822R,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?numNatStruct=200612822R&PUBLIC=OK,https://scanr.enseignementsup-recherche.gouv.fr/structure/200612822R,2025, 2019-07-23T12:18:14.896Z,2019-07-23T10:23:43.687Z,umr9003,,LISIS,UMR 9003,"Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés",,http://umr-lisis.fr/,Pierre-Benoit Joly,joly@inra-ifris.org,true,,2015,"Au cours des dix dernières années un pôle de recherche en sciences sociales consacré à l’étude des sciences et des innovations s’est constitué dans le cadre de l’Université Paris-Est. Ce pôle résulte des travaux conduits historiquement dans le cadre du LATTS (notamment avec le Réseau d’Excellence PRIME), avec la création de l’IFRIS en 2007 (soutenue par le MESR et par un projet Phare du CNRS), la mise en place d’une unité propre de recherche de l’INRA (UR 1326 SenS) en 2010 et de la création de la plateforme digitale CorTexT également en 2010. Cette dynamique a été confortée par l’obtention de financements dans des programmes très sélectifs, notamment le LabEx SITES (évalué A+ au premier tour de sélection), le Domaine d’Intérêt Majeur de la Région Ile-de-France (DIM) IS2-IT en 2011, et par l’obtention de plusieurs projets européens d’envergure dont le projet RISIS (Research Infractructure for Research, Innovation in Society) en 2014. La création du LISIS constitue une nouvelle étape essentielle qui vise à rassembler ces initiatives afin de constituer l’un des principaux centres de recherche du domaine au niveau international. En 2014, le projet du LISIS a été évalué très positivement par l’AERES ainsi que par les conseils scientifiques concernés à l’INRA et à l’UPEM. Ces deux établissements, rejoints par l’ESIEE Paris, ont donc décidé de conforter cette dynamique par la création d’une UMR regroupant les compétences de recherche dans un même laboratoire. L’École des Ponts ParisTech s’est associée à cette démarche et le CNRS a également décidé de créer le LISIS comme FRE.",64,38,26,http://umr-lisis.fr/membres/,https://annuaire.cnrs.fr/l3c/owa/annuaire.recherche/index.html,25,,"* Science politique * Politiques publiques * Sociologie politique * Relations internationales * Sciences * Sociologie des sciences * Interface science société","* [Axe 1 – Transitions, émergences, transformations](http://umr-lisis.fr/recherches/axe/axe-1/) * [Axe 2 – Socialisation et réappropriations des innovations](http://umr-lisis.fr/recherches/axe/axe-2/) * [Axe 3 – Évaluation et valuation des innovations](http://umr-lisis.fr/recherches/axe/axe-3/) * [Axe 4 – Analyse des traces digitales des sciences en société](http://umr-lisis.fr/recherches/axe/axe-4/)","**Projet SUrveillance des RIsques Professionnels Incertains (SURIPI)**
Dans le cadre de l’appel blanc 2016, l’ANSES (L’Agence nationale de sécurité sanitaire de l’alimentation, de l’environnement et du travail) a sélectionné le projet SUrveillance des RIsques Professionnels Incertains (SURIPI). 01/10/2016 — 31/12/2019","* le séminaire du LISIS « Innovation et politique des connaissances », qui se tient une fois par mois, autour d’un invité (voir la programmation 2019) ; * le séminaire résidentiel annuel de 2 jours ; * les séminaires des doctorants et post-doctorants : atelier de lecture mensuel, journées doctorales (1 jour par an), séminaire « Les STS au quotidien » (1 fois par mois) ; * les séminaires ou ateliers organisés par chacune des 3 équipes (fréquence mensuelle). Les équipes sont coordonnées par deux membres de l’unité appartenant systématiquement à des tutelles différentes.",,,,,"* Page [""Publications""](http://umr-lisis.fr/actualites/publications/) du site Internet du laboratoire. * Mailing list",NC,,,,201722406K,https://appliweb.dgri.education.fr/rnsr/PresenteStruct.jsp?structOrigine=OK&nbPage=0&fille=201722406K&id=0&annee=2017,https://scanr.enseignementsup-recherche.gouv.fr/structure/201722406K,2019, 2019-10-24T20:21:52.717Z,2019-10-18T17:43:29.450Z,ea4399,false,CREW,EA 4399,Centre de Recherche sur les Mondes Anglophones / Center for Research on the English-speaking World,,http://www.univ-paris3.fr/crew,Emmanuelle Avril,Emmanuelle.Avril@sorbonne-nouvelle.fr,,,2009,"Initialement issue du regroupement de quatre centres de recherches préexistants [(le CERVEPAS (Centre d’Etudes et de Recherches sur la Vie Economique des Pays Anglophones), le CRAN (Centre de Recherche sur l’Amérique du Nord), le CREC (Centre de Recherches et d’Etudes Contemporaines) et l’OPA (Observatoire de la Politique Américaine)], l’équipe a été structurée au début du présent contrat en 2009 autour de trois de ces quatre centres [CERVEPAS, CRAN et CREC (l’OPA ayant été alors dissous et ses membres ayant rejoint le CRAN)] au sein de CREW. Depuis septembre 2016, l’unité CREW est localisée à la Maison de la recherche de l’Université Sorbonne Nouvelle-Paris 3, 4 rue des Irlandais 75005 Paris, où elle dispose d’un bureau. Néanmoins la plupart des réunions du conseil de laboratoire et de l’assemblée générale de l’unité continuent de se dérouler à l’Institut du Monde Anglophone, rue de l'École de Médecine. Dans le domaine de la civilisation des pays anglophones, CREW mène des recherches pluri-, inter- et transdisciplinaires principalement axées sur l’histoire, les études politiques, la sociologie, l’étude de la vie économique, et l’étude des productions culturelles et des représentations, auxquelles s’ajoutent des problématiques complémentaires comme celles des nouveaux médias ou des liens entre histoire et littérature. Les approches comparatives entre divers pays du monde anglophone ou d’autres aires culturelles sont de plus en plus présentes dans les recherches effectuées, comme par exemple l’analyse de la circulation des idées et des modèles et les phénomènes transnationaux. Trois centres contribuent à la spécificité de CREW : le CERVEPAS centré essentiellement sur la vie économique des pays anglophones, le CRAN centré sur l’histoire culturelle, les migrants, les minorités, les mouvements de réforme et la politique étrangère américaine, et le CREC centré sur les institutions et la vie politique et sociale au Royaume-Uni. ",60,28,32,http://www.univ-paris3.fr/enseignants-chercheurs-et-chercheurs-permanents-crew-98254.kjsp?RH=1296815298776,,28,,"Aire anglophone, Royaume-Uni, Irlande, Etats-Unis, Canada, Commonwealth, Empire, citoyenneté, culture politique, communication politique, démocratie, économie internationale, économie politique, élections, finance, gouvernance, gouvernement, intersectionalité, journalisme, médias, mobilisations politiques, mondialisation, mulitculturalisme, partis politiques, politique, politiques publiques, régimes, relations inter-ethniques, relations internationales, relations transnationales, relations commerciales, représentations, réseaux numériques, sociologie, sociologie politique, systèmes de représentations, vie des entreprises, vie économique. ","L'équipe CREW (EA 4399) regroupe 3 centres de recherche qui travaillent sur la civilisation des pays anglophones. Les domaines privilégiés sont : - L'économie dans l'aire anglophone [(CERVEPAS)](http://www.univ-paris3.fr/centre-de-recherches-sur-la-vie-economique-des-pays-anglophones-cervepas--3485.kjsp), - La diversité des identités ethniques et culturelles nord-américaines [(CRAN)](http://www.univ-paris3.fr/centre-de-recherche-sur-l-amerique-du-nord-cran--3477.kjsp), - La politique et la société britanniques [(CREC)](http://www.univ-paris3.fr/centre-de-recherches-en-civilisation-britannique-crec--78353.kjsp). Des travaux de ces centres, trois thématiques transversales se dégagent : - Démocratie, politique et société ([Axe 1](http://www.univ-paris3.fr/axe-1-democratie-politiques-et-societes--116515.kjsp)), - Information, médias et représentations dans la mondialisation ([Axe 2](http://www.univ-paris3.fr/axe-2-information-medias-et-representations--116517.kjsp)), - Empire, relations internationales et échanges ([Axe 3](http://www.univ-paris3.fr/axe-3-echanges-transferts-et-constructions-nationales-dans-l-espace-anglophone--116530.kjsp)). Depuis 2017, la création du ""[junior lab CREW](http://www.univ-paris3.fr/le-junior-lab-crew-538497.kjsp)"" favorise les interactions entre ses jeunes membres.","* [The Future of Trade Governance in a Multipolar and Protectionist Era](http://www.univ-paris3.fr/medias/fichier/paris3-nus-project-summary_1517913785994.docx?INLINE=FALSE) , partenariat entre le Centre d’Etudes et de Recherche sur la Vie des Pays Anglophones (CERVEPAS-CREW), le Global Production Network Centre et le EU Centre de la National University of Singapore (NUS), financé par Sorbonne Paris Cité (SPC) et NUS. (2017-2018) * Management de projets internationaux/économie - Projet Sorbonne Paris cité (SPC) en partenariat avec l' Université fédérale de Rio de Janeiro Politécnica - MBA Gestao de projetos * EHDLM: Projet Sorbonne Paris Cité (SPC) [L'histoire depuis les marges](http://hdlm.hypotheses.org/) (2013-2016) * Chaire UNESCO « savoir devenir dans le développement numérique durable: maîtriser les cultures de l´information » avec le soutien de l´UNESCO, pour développer des projets innovants en translittératie * Projet européen dans le programme cadre « innovation et compétitivité », ECO (E-learning, Communication et Open-Data), pour la création de MOOC sur les fondamentaux","* [Séminaire franco-britannique d'histoire](https://sfbh.hypotheses.org/programme) * [Séminaire - CREC - Centre de Recherches en Civilisation britannique](http://www.univ-paris3.fr/seminaires-crec-2018-2019-centre-de-civilisation-en-recherches-britanniques-464058.kjsp)",,,,,"- [Page ""Publications""](http://www.univ-paris3.fr/publications-crew-113124.kjsp?RH=1297081398526) du site web du CREW","- Bibliothèque Sainte-Barbe - Bibliothèque universitaire des langues et civilisations, BULAC - BIU Sainte-Geneviève - Bibliothèque de Sciences Po",,,,200918499Y,https://appliweb.dgri.education.fr/rnsr/ChoixCriteres.jsp,https://scanr.enseignementsup-recherche.gouv.fr/structure/200918499Y,2019, ================================================ FILE: packages/storybook/public/pina-colada.jsonld ================================================ { "@context": "https://schema.org/", "@type": "Recipe", "@id": "https://example.com/recipe/non-alcoholic-pina-colada", "name": "Non-Alcoholic Piña Colada", "image": [ "https://example.com/photos/1x1/photo.jpg", "https://example.com/photos/4x3/photo.jpg", "https://example.com/photos/16x9/photo.jpg" ], "author": { "@type": "Person", "name": "Mary Stone" }, "datePublished": "2018-03-10", "description": "This non-alcoholic pina colada is everyone's favorite!", "recipeCuisine": "American", "prepTime": "PT1M", "cookTime": "PT2M", "totalTime": "PT3M", "keywords": "non-alcoholic", "recipeYield": "4 servings", "recipeCategory": "Drink", "nutrition": { "@type": "NutritionInformation", "calories": "120 calories" }, "aggregateRating": { "@type": "AggregateRating", "ratingValue": "5", "ratingCount": "18" }, "recipeIngredient": [ "400ml of pineapple juice", "100ml cream of coconut", "ice" ], "recipeInstructions": [ { "@type": "HowToStep", "name": "Blend", "text": "Blend 400ml of pineapple juice and 100ml cream of coconut until smooth.", "url": "https://example.com/non-alcoholic-pina-colada#step1", "image": "https://example.com/photos/non-alcoholic-pina-colada/step1.jpg" }, { "@type": "HowToStep", "name": "Fill", "text": "Fill a glass with ice.", "url": "https://example.com/non-alcoholic-pina-colada#step2", "image": "https://example.com/photos/non-alcoholic-pina-colada/step2.jpg" }, { "@type": "HowToStep", "name": "Pour", "text": "Pour the pineapple juice and coconut mixture over ice.", "url": "https://example.com/non-alcoholic-pina-colada#step3", "image": "https://example.com/photos/non-alcoholic-pina-colada/step3.jpg" } ], "video": { "@type": "VideoObject", "name": "How to Make a Non-Alcoholic Piña Colada", "description": "This is how you make a non-alcoholic piña colada.", "thumbnailUrl": [ "https://example.com/photos/1x1/photo.jpg", "https://example.com/photos/4x3/photo.jpg", "https://example.com/photos/16x9/photo.jpg" ], "contentUrl": "https://www.example.com/video123.mp4", "embedUrl": "https://www.example.com/videoplayer?video=123", "uploadDate": "2018-02-05T08:00:00+08:00", "duration": "PT1M33S", "interactionStatistic": { "@type": "InteractionCounter", "interactionType": { "@type": "WatchAction" }, "userInteractionCount": 2347 }, "expires": "2019-02-05T08:00:00+08:00" } } ================================================ FILE: packages/storybook/stories/0-docs/introduction.mdx ================================================ import { Meta } from "@storybook/addon-docs"; ![Sigma.js](https://raw.githubusercontent.com/jacomyal/sigma.js/main/packages/website/static/img/logo-sigma-text.svg) **[Website](https://www.sigmajs.org/)** | **[Documentation](https://www.sigmajs.org/docs)** | **[GitHub](https://github.com/jacomyal/sigma.js)** | Mastodon --- This Storybook is designed to help you explore the different features and use cases of sigma.js by showcasing various scenarios. Each story displays the full source code below, allowing you to easily reference and implement these examples in your own projects. ## Core Library ### Features showcases This section showcases basic scenarios that demonstrate the fundamental features of sigma.js. If you're just getting started, this is a great place to explore and understand the core functionalities. ### Advanced Use Cases For more advanced use cases, this section delves deeper into sigma.js capabilities. Here, you'll find stories that highlight more complex scenarios and techniques, ideal for experienced users looking to extend sigma.js further. ## Satellite Packages There are multiple features of sigma.js that are exposed from additional packages. The list of these packages is available [on NPM](https://www.npmjs.com/org/sigma). This section presents stories specific to these additional packages. --- ## Getting Started You can use the sidebar to navigate the stories. And if you don't know where to start, here are some cherry-picked entry points: - [I come from Gephi and I want to display my GEXF graph](./?path=/story/load-gexf-file--story) - [I have some CSV data and I want to render a network of connections from that file](./?path=/story/csv-to-network-map--story) - [I have some geo-localized network dataset and I want to render it hover a map background](./?path=/story/sigma-layer-maplibre--story) ================================================ FILE: packages/storybook/stories/1-core-features/1-load-gexf-file/index.html ================================================

================================================ FILE: packages/storybook/stories/1-core-features/1-load-gexf-file/index.ts ================================================ /** * This example shows how to load a GEXF graph file (using the dedicated * graphology parser), and display it with some basic map features: Zoom in and * out buttons, reset zoom button, and a slider to increase or decrease the * quantity of labels displayed on screen. */ import Graph from "graphology"; import { parse } from "graphology-gexf/browser"; import Sigma from "sigma"; export default () => { let renderer: Sigma | null = null; // Load external GEXF file: fetch("./arctic.gexf") .then((res) => res.text()) .then((gexf) => { // Parse GEXF string: const graph = parse(Graph, gexf); // Retrieve some useful DOM elements: const container = document.getElementById("sigma-container") as HTMLElement; const zoomInBtn = document.getElementById("zoom-in") as HTMLButtonElement; const zoomOutBtn = document.getElementById("zoom-out") as HTMLButtonElement; const zoomResetBtn = document.getElementById("zoom-reset") as HTMLButtonElement; const labelsThresholdRange = document.getElementById("labels-threshold") as HTMLInputElement; // Instantiate sigma: renderer = new Sigma(graph, container, { minCameraRatio: 0.08, maxCameraRatio: 3, }); const camera = renderer.getCamera(); // Bind zoom manipulation buttons zoomInBtn.addEventListener("click", () => { camera.animatedZoom({ duration: 600 }); }); zoomOutBtn.addEventListener("click", () => { camera.animatedUnzoom({ duration: 600 }); }); zoomResetBtn.addEventListener("click", () => { camera.animatedReset({ duration: 600 }); }); // Bind labels threshold to range input labelsThresholdRange.addEventListener("input", () => { renderer?.setSetting("labelRenderedSizeThreshold", +labelsThresholdRange.value); }); // Set proper range initial value: labelsThresholdRange.value = renderer.getSetting("labelRenderedSizeThreshold") + ""; }); return () => { renderer?.kill(); }; }; ================================================ FILE: packages/storybook/stories/1-core-features/1-load-gexf-file/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import play from "./index"; import template from "./index.html?raw"; import source from "./index?raw"; const meta: Meta = { id: "load-gexf-file", title: "Core library/Features showcases", }; export default meta; type Story = StoryObj; export const story: Story = { name: "Load GEXF file", render: () => template, play: wrapStory(play), args: {}, parameters: { storySource: { source, }, }, }; ================================================ FILE: packages/storybook/stories/1-core-features/2-events/index.html ================================================
================================================ FILE: packages/storybook/stories/1-core-features/2-events/index.ts ================================================ /** * This example shows how to use node and edges events in sigma. */ import Graph from "graphology"; import Sigma from "sigma"; import { MouseCoords } from "sigma/types"; import data from "../../_data/data.json"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const logsDOM = document.getElementById("sigma-logs") as HTMLElement; const graph = new Graph(); graph.import(data); function logEvent(event: string, itemType: "node" | "edge" | "positions", item: string | MouseCoords): void { const div = document.createElement("div"); let message = `Event "${event}"`; if (item && itemType) { if (itemType === "positions") { item = item as MouseCoords; message += `, x ${item.x}, y ${item.y}`; } else { const label = itemType === "node" ? graph.getNodeAttribute(item, "label") : graph.getEdgeAttribute(item, "label"); message += `, ${itemType} ${label || "with no label"} (id "${item}")`; if (itemType === "edge") { message += `, source ${graph.getSourceAttribute(item, "label")}, target: ${graph.getTargetAttribute( item, "label", )}`; } } } div.innerHTML = `${message}`; logsDOM.appendChild(div); logsDOM.scrollTo({ top: logsDOM.scrollHeight }); if (logsDOM.children.length > 50) logsDOM.children[0].remove(); } let hoveredEdge: null | string = null; const renderer = new Sigma(graph, container, { enableEdgeEvents: true, edgeReducer(edge, data) { const res = { ...data }; if (edge === hoveredEdge) res.color = "#cc0000"; return res; }, }); const nodeEvents = [ "enterNode", "leaveNode", "downNode", "clickNode", "rightClickNode", "doubleClickNode", "wheelNode", ] as const; const edgeEvents = ["downEdge", "clickEdge", "rightClickEdge", "doubleClickEdge", "wheelEdge"] as const; const stageEvents = ["downStage", "clickStage", "doubleClickStage", "wheelStage"] as const; nodeEvents.forEach((eventType) => renderer.on(eventType, ({ node }) => logEvent(eventType, "node", node))); edgeEvents.forEach((eventType) => renderer.on(eventType, ({ edge }) => logEvent(eventType, "edge", edge))); renderer.on("enterEdge", ({ edge }) => { logEvent("enterEdge", "edge", edge); hoveredEdge = edge; renderer.refresh(); }); renderer.on("leaveEdge", ({ edge }) => { logEvent("leaveEdge", "edge", edge); hoveredEdge = null; renderer.refresh(); }); stageEvents.forEach((eventType) => { renderer.on(eventType, ({ event }) => { logEvent(eventType, "positions", event); }); }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/1-core-features/2-events/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import play from "./index"; import template from "./index.html?raw"; import source from "./index?raw"; const meta: Meta = { id: "events", title: "Core library/Features showcases", }; export default meta; type Story = StoryObj; export const story: Story = { name: "Events", render: () => template, play: wrapStory(play), args: {}, parameters: { storySource: { source, }, }, }; ================================================ FILE: packages/storybook/stories/1-core-features/3-layouts/index.html ================================================
================================================ FILE: packages/storybook/stories/1-core-features/3-layouts/index.ts ================================================ /** * This is a minimal example of sigma. You can use it as a base to write new * examples, or reproducible test cases for new issues, for instance. */ import Graph from "graphology"; import { circular } from "graphology-layout"; import forceAtlas2 from "graphology-layout-forceatlas2"; import FA2Layout from "graphology-layout-forceatlas2/worker"; import Sigma from "sigma"; import { PlainObject } from "sigma/types"; import { animateNodes } from "sigma/utils"; import data from "../../_data/data.json"; export default () => { // Initialize the graph object with data const graph = new Graph(); graph.import(data); // Retrieve some useful DOM elements: const container = document.getElementById("sigma-container") as HTMLElement; const FA2Button = document.getElementById("forceatlas2") as HTMLElement; const FA2StopLabel = document.getElementById("forceatlas2-stop-label") as HTMLElement; const FA2StartLabel = document.getElementById("forceatlas2-start-label") as HTMLElement; const randomButton = document.getElementById("random") as HTMLElement; const circularButton = document.getElementById("circular") as HTMLElement; /** FA2 LAYOUT **/ /* This example shows how to use the force atlas 2 layout in a web worker */ // Graphology provides a easy to use implementation of Force Atlas 2 in a web worker const sensibleSettings = forceAtlas2.inferSettings(graph); const fa2Layout = new FA2Layout(graph, { settings: sensibleSettings, }); // A button to trigger the layout start/stop actions // A variable is used to toggle state between start and stop let cancelCurrentAnimation: (() => void) | null = null; // correlate start/stop actions with state management function stopFA2() { fa2Layout.stop(); FA2StartLabel.style.display = "flex"; FA2StopLabel.style.display = "none"; } function startFA2() { if (cancelCurrentAnimation) cancelCurrentAnimation(); fa2Layout.start(); FA2StartLabel.style.display = "none"; FA2StopLabel.style.display = "flex"; } // the main toggle function function toggleFA2Layout() { if (fa2Layout.isRunning()) { stopFA2(); } else { startFA2(); } } // bind method to the forceatlas2 button FA2Button.addEventListener("click", toggleFA2Layout); /** RANDOM LAYOUT **/ /* Layout can be handled manually by setting nodes x and y attributes */ /* This random layout has been coded to show how to manipulate positions directly in the graph instance */ /* Alternatively a random layout algo exists in graphology: https://github.com/graphology/graphology-layout#random */ function randomLayout() { // stop fa2 if running if (fa2Layout.isRunning()) stopFA2(); if (cancelCurrentAnimation) cancelCurrentAnimation(); // to keep positions scale uniform between layouts, we first calculate positions extents const xExtents = { min: 0, max: 0 }; const yExtents = { min: 0, max: 0 }; graph.forEachNode((_node, attributes) => { xExtents.min = Math.min(attributes.x, xExtents.min); xExtents.max = Math.max(attributes.x, xExtents.max); yExtents.min = Math.min(attributes.y, yExtents.min); yExtents.max = Math.max(attributes.y, yExtents.max); }); const randomPositions: PlainObject> = {}; graph.forEachNode((node) => { // create random positions respecting position extents randomPositions[node] = { x: Math.random() * (xExtents.max - xExtents.min), y: Math.random() * (yExtents.max - yExtents.min), }; }); // use sigma animation to update new positions cancelCurrentAnimation = animateNodes(graph, randomPositions, { duration: 2000 }); } // bind method to the random button randomButton.addEventListener("click", randomLayout); /** CIRCULAR LAYOUT **/ /* This example shows how to use an existing deterministic graphology layout */ function circularLayout() { // stop fa2 if running if (fa2Layout.isRunning()) stopFA2(); if (cancelCurrentAnimation) cancelCurrentAnimation(); //since we want to use animations we need to process positions before applying them through animateNodes const circularPositions = circular(graph, { scale: 100 }); //In other context, it's possible to apply the position directly we : circular.assign(graph, {scale:100}) cancelCurrentAnimation = animateNodes(graph, circularPositions, { duration: 2000, easing: "linear" }); } // bind method to the random button circularButton.addEventListener("click", circularLayout); /** instantiate sigma into the container **/ const renderer = new Sigma(graph, container); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/1-core-features/3-layouts/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import play from "./index"; import template from "./index.html?raw"; import source from "./index?raw"; const meta: Meta = { id: "layouts", title: "Core library/Features showcases", }; export default meta; type Story = StoryObj; export const story: Story = { name: "Layouts example", render: () => template, play: wrapStory(play), args: {}, parameters: { storySource: { source, }, }, }; ================================================ FILE: packages/storybook/stories/1-core-features/4-use-reducers/index.html ================================================ Sigma example: Use node and edge reducers
================================================ FILE: packages/storybook/stories/1-core-features/4-use-reducers/index.ts ================================================ /** * This example showcases sigma's reducers, which aim to facilitate dynamically * changing the appearance of nodes and edges, without actually changing the * main graphology data. */ import Graph from "graphology"; import Sigma from "sigma"; import { Coordinates, EdgeDisplayData, NodeDisplayData } from "sigma/types"; import data from "../../_data/data.json"; export default () => { // Retrieve some useful DOM elements: const container = document.getElementById("sigma-container") as HTMLElement; const searchInput = document.getElementById("search-input") as HTMLInputElement; const searchSuggestions = document.getElementById("suggestions") as HTMLDataListElement; // Instantiate sigma: const graph = new Graph(); graph.import(data); const renderer = new Sigma(graph, container); // Type and declare internal state: interface State { hoveredNode?: string; searchQuery: string; // State derived from query: selectedNode?: string; suggestions?: Set; // State derived from hovered node: hoveredNeighbors?: Set; } const state: State = { searchQuery: "" }; // Feed the datalist autocomplete values: searchSuggestions.innerHTML = graph .nodes() .map((node) => ``) .join("\n"); // Actions: function setSearchQuery(query: string) { state.searchQuery = query; if (searchInput.value !== query) searchInput.value = query; if (query) { const lcQuery = query.toLowerCase(); const suggestions = graph .nodes() .map((n) => ({ id: n, label: graph.getNodeAttribute(n, "label") as string })) .filter(({ label }) => label.toLowerCase().includes(lcQuery)); // If we have a single perfect match, them we remove the suggestions, and // we consider the user has selected a node through the datalist // autocomplete: if (suggestions.length === 1 && suggestions[0].label === query) { state.selectedNode = suggestions[0].id; state.suggestions = undefined; // Move the camera to center it on the selected node: const nodePosition = renderer.getNodeDisplayData(state.selectedNode) as Coordinates; renderer.getCamera().animate(nodePosition, { duration: 500, }); } // Else, we display the suggestions list: else { state.selectedNode = undefined; state.suggestions = new Set(suggestions.map(({ id }) => id)); } } // If the query is empty, then we reset the selectedNode / suggestions state: else { state.selectedNode = undefined; state.suggestions = undefined; } // Refresh rendering // You can directly call `renderer.refresh()`, but if you need performances // you can provide some options to the refresh method. // In this case, we don't touch the graph data so we can skip its reindexation renderer.refresh({ skipIndexation: true, }); } function setHoveredNode(node?: string) { if (node) { state.hoveredNode = node; state.hoveredNeighbors = new Set(graph.neighbors(node)); } if (!node) { state.hoveredNode = undefined; state.hoveredNeighbors = undefined; } // Refresh rendering renderer.refresh({ // We don't touch the graph data so we can skip its reindexation skipIndexation: true, }); } // Bind search input interactions: searchInput.addEventListener("input", () => { setSearchQuery(searchInput.value || ""); }); searchInput.addEventListener("blur", () => { setSearchQuery(""); }); // Bind graph interactions: renderer.on("enterNode", ({ node }) => { setHoveredNode(node); }); renderer.on("leaveNode", () => { setHoveredNode(undefined); }); // Render nodes accordingly to the internal state: // 1. If a node is selected, it is highlighted // 2. If there is query, all non-matching nodes are greyed // 3. If there is a hovered node, all non-neighbor nodes are greyed renderer.setSetting("nodeReducer", (node, data) => { const res: Partial = { ...data }; if (state.hoveredNeighbors && !state.hoveredNeighbors.has(node) && state.hoveredNode !== node) { res.label = ""; res.color = "#f6f6f6"; } if (state.selectedNode === node) { res.highlighted = true; } else if (state.suggestions) { if (state.suggestions.has(node)) { res.forceLabel = true; } else { res.label = ""; res.color = "#f6f6f6"; } } return res; }); // Render edges accordingly to the internal state: // 1. If a node is hovered, the edge is hidden if it is not connected to the // node // 2. If there is a query, the edge is only visible if it connects two // suggestions renderer.setSetting("edgeReducer", (edge, data) => { const res: Partial = { ...data }; if ( state.hoveredNode && !graph.extremities(edge).every((n) => n === state.hoveredNode || graph.areNeighbors(n, state.hoveredNode)) ) { res.hidden = true; } if ( state.suggestions && (!state.suggestions.has(graph.source(edge)) || !state.suggestions.has(graph.target(edge))) ) { res.hidden = true; } return res; }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/1-core-features/4-use-reducers/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import play from "./index"; import template from "./index.html?raw"; import source from "./index?raw"; const meta: Meta = { id: "use-reducers", title: "Core library/Features showcases", }; export default meta; type Story = StoryObj; export const story: Story = { name: "Use node and edge reducers", render: () => template, play: wrapStory(play), args: {}, parameters: { storySource: { source, }, }, }; ================================================ FILE: packages/storybook/stories/1-core-features/5-custom-rendering/index.html ================================================
================================================ FILE: packages/storybook/stories/1-core-features/5-custom-rendering/index.ts ================================================ /** * This example shows how to use different programs to render nodes. * This works in two steps: * 1. You must declare all the different rendering programs to sigma when you * instantiate it * 2. You must give to each node and edge a "type" value that matches a declared * program * The programs offered by default by sigma are in src/rendering/webgl/programs, * but you can add your own. * * Here in this example, some nodes are drawn with images in them using the * createNodeImageProgram provided by @sigma/node-image. Some others are drawn * as white disc with a border, and the custom program to draw them is in this * directory: * - "./node.gradient.ts" is the node program. It tells sigma what data to give * to the GPU and how. * - "./node.gradient.vert.glsl" is the vertex shader. It tells the GPU how to * interpret the data provided by the program to obtain a node position, * mostly. * - "./node.gradient.frag.glsl" is the fragment shader. It tells for each * pixel what color it should get, relatively to data given by the program * and its position inside the shape. Basically, the GPU wants to draw a * square, but we "carve" a disc in it. */ import { createNodeImageProgram } from "@sigma/node-image"; import Graph from "graphology"; import ForceSupervisor from "graphology-layout-force/worker"; import Sigma from "sigma"; import NodeGradientProgram from "./node-gradient"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); const RED = "#FA4F40"; const BLUE = "#727EE0"; const GREEN = "#5DB346"; graph.addNode("John", { size: 15, label: "John", type: "image", image: "./user.svg", color: RED }); graph.addNode("Mary", { size: 15, label: "Mary", type: "image", image: "./user.svg", color: RED }); graph.addNode("Suzan", { size: 15, label: "Suzan", type: "image", image: "./user.svg", color: RED }); graph.addNode("Nantes", { size: 15, label: "Nantes", type: "image", image: "./city.svg", color: BLUE }); graph.addNode("New-York", { size: 15, label: "New-York", type: "image", image: "./city.svg", color: BLUE }); graph.addNode("Sushis", { size: 7, label: "Sushis", type: "gradient", color: GREEN }); graph.addNode("Falafels", { size: 7, label: "Falafels", type: "gradient", color: GREEN }); graph.addNode("Kouign Amann", { size: 7, label: "Kouign Amann", type: "gradient", color: GREEN }); graph.addEdge("John", "Mary", { type: "line", label: "works with", size: 5 }); graph.addEdge("Mary", "Suzan", { type: "line", label: "works with", size: 5 }); graph.addEdge("Mary", "Nantes", { type: "arrow", label: "lives in", size: 5 }); graph.addEdge("John", "New-York", { type: "arrow", label: "lives in", size: 5 }); graph.addEdge("Suzan", "New-York", { type: "arrow", label: "lives in", size: 5 }); graph.addEdge("John", "Falafels", { type: "arrow", label: "eats", size: 5 }); graph.addEdge("Mary", "Sushis", { type: "arrow", label: "eats", size: 5 }); graph.addEdge("Suzan", "Kouign Amann", { type: "arrow", label: "eats", size: 5 }); graph.nodes().forEach((node, i) => { const angle = (i * 2 * Math.PI) / graph.order; graph.setNodeAttribute(node, "x", 100 * Math.cos(angle)); graph.setNodeAttribute(node, "y", 100 * Math.sin(angle)); }); const renderer = new Sigma(graph, container, { // We don't have to declare edgeProgramClasses here, because we only use the default ones ("line" and "arrow") nodeProgramClasses: { image: createNodeImageProgram(), gradient: NodeGradientProgram, }, renderEdgeLabels: true, }); // Create the spring layout and start it const layout = new ForceSupervisor(graph); layout.start(); return () => { layout.kill(); renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/1-core-features/5-custom-rendering/node-gradient-frag.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` precision mediump float; varying vec4 v_color; varying float v_border; const float radius = 0.5; const float halfRadius = 0.35; void main(void) { vec4 transparent = vec4(0.0, 0.0, 0.0, 0.0); vec4 white = vec4(1.0, 1.0, 1.0, 1.0); float distToCenter = length(gl_PointCoord - vec2(0.5, 0.5)); #ifdef PICKING_MODE if (distToCenter < radius) gl_FragColor = v_color; else gl_FragColor = transparent; #else // For normal mode, we use the color: if (distToCenter > radius) gl_FragColor = transparent; else if (distToCenter > radius - v_border) gl_FragColor = mix(transparent, v_color, (radius - distToCenter) / v_border); else gl_FragColor = mix(v_color, white, (radius - distToCenter) / radius); #endif } `; export default SHADER_SOURCE; ================================================ FILE: packages/storybook/stories/1-core-features/5-custom-rendering/node-gradient-vert.glsl.ts ================================================ // language=GLSL const SHADER_SOURCE = /*glsl*/ ` attribute vec4 a_id; attribute vec4 a_color; attribute vec2 a_position; attribute float a_size; uniform float u_sizeRatio; uniform float u_pixelRatio; uniform mat3 u_matrix; varying vec4 v_color; varying float v_border; const float bias = 255.0 / 254.0; void main() { gl_Position = vec4( (u_matrix * vec3(a_position, 1)).xy, 0, 1 ); // Multiply the point size twice: // - x SCALING_RATIO to correct the canvas scaling // - x 2 to correct the formulae gl_PointSize = a_size / u_sizeRatio * u_pixelRatio * 2.0; v_border = (0.5 / a_size) * u_sizeRatio; #ifdef PICKING_MODE // For picking mode, we use the ID as the color: v_color = a_id; #else // For normal mode, we use the color: v_color = a_color; #endif v_color.a *= bias; } `; export default SHADER_SOURCE; ================================================ FILE: packages/storybook/stories/1-core-features/5-custom-rendering/node-gradient.ts ================================================ import { NodeProgram, ProgramInfo } from "sigma/rendering"; import { NodeDisplayData, RenderParams } from "sigma/types"; import { floatColor } from "sigma/utils"; import FRAGMENT_SHADER_SOURCE from "./node-gradient-frag.glsl"; import VERTEX_SHADER_SOURCE from "./node-gradient-vert.glsl"; const { UNSIGNED_BYTE, FLOAT } = WebGLRenderingContext; const UNIFORMS = ["u_sizeRatio", "u_pixelRatio", "u_matrix"] as const; export default class NodeGradientProgram extends NodeProgram<(typeof UNIFORMS)[number]> { getDefinition() { return { VERTICES: 1, VERTEX_SHADER_SOURCE, FRAGMENT_SHADER_SOURCE, METHOD: WebGLRenderingContext.POINTS, UNIFORMS, ATTRIBUTES: [ { name: "a_position", size: 2, type: FLOAT }, { name: "a_size", size: 1, type: FLOAT }, { name: "a_color", size: 4, type: UNSIGNED_BYTE, normalized: true }, { name: "a_id", size: 4, type: UNSIGNED_BYTE, normalized: true }, ], }; } processVisibleItem(nodeIndex: number, startIndex: number, data: NodeDisplayData) { const array = this.array; array[startIndex++] = data.x; array[startIndex++] = data.y; array[startIndex++] = data.size; array[startIndex++] = floatColor(data.color); array[startIndex++] = nodeIndex; } setUniforms(params: RenderParams, { gl, uniformLocations }: ProgramInfo): void { const { u_sizeRatio, u_pixelRatio, u_matrix } = uniformLocations; gl.uniform1f(u_sizeRatio, params.sizeRatio); gl.uniform1f(u_pixelRatio, params.pixelRatio); gl.uniformMatrix3fv(u_matrix, false, params.matrix); } } ================================================ FILE: packages/storybook/stories/1-core-features/5-custom-rendering/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import play from "./index"; import template from "./index.html?raw"; import source from "./index?raw"; const meta: Meta = { id: "custom-rendering", title: "Core library/Features showcases", }; export default meta; type Story = StoryObj; export const story: Story = { name: "Custom rendering", render: () => template, play: wrapStory(play), args: {}, parameters: { storySource: { source, }, }, }; ================================================ FILE: packages/storybook/stories/1-core-features/6-csv-to-network-map/index.html ================================================
================================================ FILE: packages/storybook/stories/1-core-features/6-csv-to-network-map/index.ts ================================================ /** * This example shows how to use graphology and sigma to interpret a dataset and * to transform it to a mappable graph dataset, without going through any other * intermediate step. * * To do this, we start from a dataset from "The Cartography of Political * Science in France" extracted from: * https://cartosciencepolitique.sciencespo.fr/#/en * * The CSV contains one line per institution, with an interesting subject_terms * column. We will here transform this dataset to a institution/subject * bipartite network map. */ import Graph from "graphology"; import { cropToLargestConnectedComponent } from "graphology-components"; import forceAtlas2 from "graphology-layout-forceatlas2"; import circular from "graphology-layout/circular"; import Papa from "papaparse"; import Sigma from "sigma"; export default () => { let renderer: Sigma | null = null; // 1. Load CSV file: Papa.parse<{ name: string; acronym: string; subject_terms: string }>("./data.csv", { download: true, header: true, delimiter: ",", complete: (results) => { const graph: Graph = new Graph(); // 2. Build the bipartite graph: results.data.forEach((line) => { const institution = line.name; const acronym = line.acronym; // Create the institution node: graph.addNode(institution, { nodeType: "institution", label: [acronym, institution].filter((s) => !!s).join(" - "), }); // Extract subjects list: const subjects = (line.subject_terms.match(/(?:\* )[^\n\r]*/g) || []).map((str) => str.replace(/^\* /, "")); // For each subject, create the node if it does not exist yet: subjects.forEach((subject) => { if (!graph.hasNode(subject)) graph.addNode(subject, { nodeType: "subject", label: subject }); graph.addEdge(institution, subject, { weight: 1 }); }); }); // 3. Only keep the main connected component: cropToLargestConnectedComponent(graph); // 4. Add colors to the nodes, based on node types: const COLORS: Record = { institution: "#FA5A3D", subject: "#5A75DB" }; graph.forEachNode((node, attributes) => graph.setNodeAttribute(node, "color", COLORS[attributes.nodeType as string]), ); // 5. Use degrees for node sizes: const degrees = graph.nodes().map((node) => graph.degree(node)); const minDegree = Math.min(...degrees); const maxDegree = Math.max(...degrees); const minSize = 2, maxSize = 15; graph.forEachNode((node) => { const degree = graph.degree(node); graph.setNodeAttribute( node, "size", minSize + ((degree - minDegree) / (maxDegree - minDegree)) * (maxSize - minSize), ); }); // 6. Position nodes on a circle, then run Force Atlas 2 for a while to get // proper graph layout: circular.assign(graph); const settings = forceAtlas2.inferSettings(graph); forceAtlas2.assign(graph, { settings, iterations: 600 }); // 7. Hide the loader from the DOM: const loader = document.getElementById("loader") as HTMLElement; loader.style.display = "none"; // 8. Finally, draw the graph using sigma: const container = document.getElementById("sigma-container") as HTMLElement; renderer = new Sigma(graph, container); }, }); return () => { if (renderer) renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/1-core-features/6-csv-to-network-map/stories.ts ================================================ import { Meta, StoryObj } from "@storybook/html"; import { wrapStory } from "../../utils"; import play from "./index"; import template from "./index.html?raw"; import source from "./index?raw"; const meta: Meta = { id: "csv-to-network-map", title: "Core library/Features showcases", }; export default meta; type Story = StoryObj; export const story: Story = { name: "From CSV to network maps", render: () => template, play: wrapStory(play), args: {}, parameters: { storySource: { source, }, }, }; ================================================ FILE: packages/storybook/stories/1-core-features/7-camera-control/index.html ================================================

Interactions

Camera

================================================ FILE: packages/storybook/stories/1-core-features/7-camera-control/index.ts ================================================ /** * This example demonstrates how to adjust Sigma's settings for better control * over the camera's capabilities. */ import Graph from "graphology"; import { parse } from "graphology-gexf/browser"; import Sigma from "sigma"; import { Settings } from "sigma/src/settings"; async function initGraph() { // Load external GEXF file: const res = await fetch("./arctic.gexf"); const gexf = await res.text(); const graph = parse(Graph, gexf); // Retrieve some useful DOM elements: // Instantiate sigma: const renderer = new Sigma(graph, document.getElementById("sigma-container") as HTMLElement); // Handle form submits: const form = document.getElementById("controls") as HTMLFormElement; const submitButton = document.querySelector('form button[type="submit"]') as HTMLButtonElement; function readForm(): Partial { const data = new FormData(form); const res: Partial = {}; // Interactions: res.enableCameraZooming = !!data.get("enable-zooming"); res.enableCameraPanning = !!data.get("enable-panning"); res.enableCameraRotation = !!data.get("enable-rotation"); // Zoom boundaries: const minRatio = data.get("min-ratio"); res.minCameraRatio = minRatio ? +minRatio : null; const maxRatio = data.get("max-ratio"); res.maxCameraRatio = maxRatio ? +maxRatio : null; // Pan boundaries: const isBound = data.get("is-camera-bound"); const tolerance = data.get("tolerance"); res.cameraPanBoundaries = isBound ? { tolerance: +(tolerance || 0) } : null; return res; } form.addEventListener("submit", (e) => { e.preventDefault(); renderer.setSettings(readForm()); submitButton.disabled = true; }); form.querySelectorAll("input").forEach((input) => { input.addEventListener("change", () => { submitButton.disabled = false; }); }); // Initialize settings: renderer.setSettings(readForm()); // Handle disabling some inputs contextually: const enableZoomingInput = document.getElementById("enable-zooming") as HTMLInputElement; const minRatioInput = document.getElementById("min-ratio") as HTMLInputElement; const maxRatioInput = document.getElementById("max-ratio") as HTMLInputElement; enableZoomingInput.addEventListener("change", () => { const disabled = !enableZoomingInput.checked; minRatioInput.disabled = disabled; maxRatioInput.disabled = disabled; }); const enablePanningInput = document.getElementById("enable-panning") as HTMLInputElement; const isCameraBoundInput = document.getElementById("is-camera-bound") as HTMLInputElement; const toleranceInput = document.getElementById("tolerance") as HTMLInputElement; isCameraBoundInput.addEventListener("change", () => { toleranceInput.disabled = !isCameraBoundInput.checked; }); enablePanningInput.addEventListener("change", () => { const disabled = !enablePanningInput.checked; isCameraBoundInput.disabled = disabled; toleranceInput.disabled = disabled; }); // Handle reset camera position const resetButton = document.querySelector('button[type="button"]') as HTMLButtonElement; resetButton.addEventListener("click", () => { renderer.getCamera().animatedReset({ duration: 600 }); }); return renderer; } export default () => { let renderer: Sigma; initGraph().then((r) => { renderer = r; }); return () => { renderer?.kill(); }; }; ================================================ FILE: packages/storybook/stories/1-core-features/7-camera-control/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import play from "./index"; import template from "./index.html?raw"; import source from "./index?raw"; const meta: Meta = { id: "camera-control", title: "Core library/Features showcases", }; export default meta; type Story = StoryObj; export const story: Story = { name: "Camera control", render: () => template, play: wrapStory(play), args: {}, parameters: { storySource: { source, }, }, }; ================================================ FILE: packages/storybook/stories/2-advanced-usecases/cluster-label/euroSIS.json ================================================ { "attributes": {}, "nodes": [ { "key": "10", "attributes": { "label": "Astronomical Institute", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -297.02410888671875, "y": -606.6956176757812 } }, { "key": "1002", "attributes": { "label": "CCSTI La Turbine Rhône-Alpes ", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1318.69873046875, "y": -320.9907531738281 } }, { "key": "1003", "attributes": { "label": "Laurea University of Applied Sciences ", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -352.54620361328125, "y": 118.47941589355469 } }, { "key": "1004", "attributes": { "label": "European Association for Education Law and Policy", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 37.627159118652344, "y": 491.19732666015625 } }, { "key": "1006", "attributes": { "label": "Les petits débrouillards", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 951.9559936523438, "y": 206.71612548828125 } }, { "key": "1007", "attributes": { "label": "Les P'tits Débrouillards", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 1179.793212890625, "y": 103.2091064453125 } }, { "key": "1008", "attributes": { "label": "Le Vaisseau - La science en s'amusant -67 Strasbourg ", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 986.9261474609375, "y": -284.5538024902344 } }, { "key": "101", "attributes": { "label": "NewtonApple", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 840.3180541992188, "y": -353.6523742675781 } }, { "key": "1012", "attributes": { "label": "Accademia Nazionale dei Lincei", "country": "Italy", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 2, "nansi-degree": 10, "x": 275.9074401855469, "y": -530.1237182617188 } }, { "key": "1013", "attributes": { "label": "Laboratorio de Instrumentalização de Particulas", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 281.4818115234375, "y": -317.1610107421875 } }, { "key": "1015", "attributes": { "label": "State Nature Conservation Centre", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 32, "x": -840.781982421875, "y": 1028.3809814453125 } }, { "key": "1017", "attributes": { "label": "Network of Life learning centres", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 668.3169555664062, "y": -784.8605346679688 } }, { "key": "1018", "attributes": { "label": "University of Bologna-Life learning centre", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 596.1283569335938, "y": -704.76953125 } }, { "key": "1019", "attributes": { "label": "Ligue for Human Rights", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -636.1066284179688, "y": -744.2637939453125 } }, { "key": "1020", "attributes": { "label": "Laboratório Nacional de Engenharia Civil ", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 17, "x": 222.41085815429688, "y": -226.7524871826172 } }, { "key": "1021", "attributes": { "label": "Nature Pages", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 68, "x": -760.6294555664062, "y": 967.3049926757812 } }, { "key": "1022", "attributes": { "label": "Estonian Nature", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -672.4143676757812, "y": 1128.3135986328125 } }, { "key": "1023", "attributes": { "label": "Loodusesõber", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -682.4174194335938, "y": 1108.364501953125 } }, { "key": "1024", "attributes": { "label": "Naturetours", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 29, "x": -708.7136840820312, "y": 1137.5167236328125 } }, { "key": "1025", "attributes": { "label": "Sounds of Nature", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -781.4522094726562, "y": 1141.9339599609375 } }, { "key": "1026", "attributes": { "label": "Lilli Nature Centre", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -744.60302734375, "y": 1217.2022705078125 } }, { "key": "1027", "attributes": { "label": "Museum of Natural History", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -798.046630859375, "y": 1048.9549560546875 } }, { "key": "103", "attributes": { "label": "Leo Apostel", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 141.1643829345703, "y": 179.41664123535156 } }, { "key": "1030", "attributes": { "label": "Lappeenranta University of Technology", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 2, "nansi-degree": 28, "x": -496.3363037109375, "y": 11.205841064453125 } }, { "key": "1031", "attributes": { "label": "European mink Conservation News Blog", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -931.9957885742188, "y": 1095.1419677734375 } }, { "key": "1032", "attributes": { "label": "Maaleht", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 25, "x": -566.90625, "y": 1202.6968994140625 } }, { "key": "1033", "attributes": { "label": "Estonian Mining Society", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -903.46337890625, "y": 1176.70947265625 } }, { "key": "1034", "attributes": { "label": "Magyar Hírlap", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -1027.4156494140625, "y": -468.914794921875 } }, { "key": "1035", "attributes": { "label": "Government’s portal", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 25, "x": -1002.1126098632812, "y": -416.15478515625 } }, { "key": "1036", "attributes": { "label": "Hungarian Pedagogy", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -911.4639282226562, "y": -418.19354248046875 } }, { "key": "1037", "attributes": { "label": "Espace Pierre Mendès France - CCSTI de Poitiers", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 1081.2135009765625, "y": -151.79586791992188 } }, { "key": "1039", "attributes": { "label": "Musée Aquarium de Nancy", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-degree": 5, "x": 914.047607421875, "y": -331.9964294433594 } }, { "key": "104", "attributes": { "label": "Pärnu Nature Centre", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": -802.6669311523438, "y": 1143.9598388671875 } }, { "key": "1040", "attributes": { "label": "Musée de zoologie Nancy", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-degree": 16, "x": 999.5614624023438, "y": -348.152099609375 } }, { "key": "1041", "attributes": { "label": "La Maison de la Science", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 735.1774291992188, "y": 14.270546913146973 } }, { "key": "1042", "attributes": { "label": "Matenadaran, Institute-Museum of Ancient Manuscripts ", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -508.1174011230469, "y": -1145.287841796875 } }, { "key": "1043", "attributes": { "label": "Museo del calcolo", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 723.9843139648438, "y": -427.8581848144531 } }, { "key": "1044", "attributes": { "label": "Institute of Mathematics and Informatics - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": 70.23107147216797, "y": -883.9699096679688 } }, { "key": "1045", "attributes": { "label": "Matsalu National Park", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -869.6346435546875, "y": 996.264404296875 } }, { "key": "1046", "attributes": { "label": "Hungarian Science", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": -846.7947998046875, "y": -424.8899841308594 } }, { "key": "1048", "attributes": { "label": "Millennium Challenge Account-Armenia", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -667.076904296875, "y": -1169.3785400390625 } }, { "key": "1049", "attributes": { "label": "Ministério da Ciência, Tecnologia e Ensino Superior", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 332.92901611328125, "y": -369.65313720703125 } }, { "key": "105", "attributes": { "label": "Blog Lorenz Demey", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 11, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 423.4733581542969, "y": 947.7281494140625 } }, { "key": "1050", "attributes": { "label": "Institute of Mechanics", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -366.96856689453125, "y": -1331.074951171875 } }, { "key": "1054", "attributes": { "label": "Faculty of Medicine", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 644.3936767578125, "y": -1089.944580078125 } }, { "key": "1055", "attributes": { "label": "Median Market Research Co.", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 6, "x": -956.91796875, "y": -508.00244140625 } }, { "key": "1056", "attributes": { "label": "Médiaterre", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": 1007.4976806640625, "y": 239.5400390625 } }, { "key": "1059", "attributes": { "label": "Media Club", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 844.23876953125, "y": -984.6473999023438 } }, { "key": "106", "attributes": { "label": "Leuven R&D", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 305.7264709472656, "y": 611.8160400390625 } }, { "key": "1061", "attributes": { "label": "MEH – Prime Minister’ Office", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 19, "x": -1001.8255615234375, "y": -439.07366943359375 } }, { "key": "1062", "attributes": { "label": "Melting Pot", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 534.755615234375, "y": -425.6855163574219 } }, { "key": "1063", "attributes": { "label": "Estonian Maritime Museum", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -627.6712036132812, "y": 764.7254638671875 } }, { "key": "1064", "attributes": { "label": "Metafro Infosys", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": 496.4172058105469, "y": 234.23387145996094 } }, { "key": "1065", "attributes": { "label": "Royal Meteorological Institute", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 38, "x": 359.7851257324219, "y": 217.8026580810547 } }, { "key": "1066", "attributes": { "label": "Republican Weather Bureau", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 233.3144073486328, "y": -337.17559814453125 } }, { "key": "1067", "attributes": { "label": "Finnish Forest Research Institute ", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 46, "x": -454.5458984375, "y": 279.5037841796875 } }, { "key": "1069", "attributes": { "label": "Helsinki Metropolia University of Applied Sciences ", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -727.995361328125, "y": 89.12604522705078 } }, { "key": "1070", "attributes": { "label": "Faculty of Mechanical Engineering", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 671.8214721679688, "y": -1090.351806640625 } }, { "key": "1071", "attributes": { "label": "International Forum for Women", "country": "Poland", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 13, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -1762.3594970703125, "y": 20.100391387939453 } }, { "key": "1072", "attributes": { "label": "Invention and Research Centre Ltd.", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -1144.9365234375, "y": -236.3321990966797 } }, { "key": "1073", "attributes": { "label": "Muséum d’histoire naturelle Nice", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1131.76416015625, "y": -488.528076171875 } }, { "key": "1074", "attributes": { "label": "Micro-Vett", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "1", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 640.1408081054688, "y": -792.4596557617188 } }, { "key": "1075", "attributes": { "label": "Institute of Microbiology - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 217.58499145507812, "y": -978.9122314453125 } }, { "key": "1076", "attributes": { "label": "Centre for metrology and accreditation, Mikes ", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": -498.9870910644531, "y": 263.3858642578125 } }, { "key": "1077", "attributes": { "label": "Mikkeli University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -687.1576538085938, "y": -40.57524490356445 } }, { "key": "1079", "attributes": { "label": "The Millennium Prize Foundation", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -296.5683898925781, "y": 65.9065170288086 } }, { "key": "1080", "attributes": { "label": "Ministry of Agriculture of Armenia", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -620.9575805664062, "y": -1218.0113525390625 } }, { "key": "1081", "attributes": { "label": "Ministry of Culture of RA", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -711.9931030273438, "y": -1288.8074951171875 } }, { "key": "1082", "attributes": { "label": "Ministry of Economy of RA ", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 19, "x": -592.7350463867188, "y": -1275.987060546875 } }, { "key": "1084", "attributes": { "label": "Ministry of Energy", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -584.102783203125, "y": -1171.582275390625 } }, { "key": "1085", "attributes": { "label": "Ministry of Sports and Youth Affaires of RA ", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -628.1644287109375, "y": -1363.2689208984375 } }, { "key": "1086", "attributes": { "label": "Plants, Breeding and Gene Technology", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -496.58392333984375, "y": 393.8713684082031 } }, { "key": "1087", "attributes": { "label": "Media Institute", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 867.9547119140625, "y": -1192.4478759765625 } }, { "key": "1088", "attributes": { "label": "Montenegrin Research", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 281.60888671875, "y": -669.5614624023438 } }, { "key": "1089", "attributes": { "label": "Museum d'histoire naturelle", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-degree": 43, "x": 905.4407348632812, "y": -146.645751953125 } }, { "key": "109", "attributes": { "label": "Pluk de filosofie", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 11, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": 474.0506896972656, "y": 947.0298461914062 } }, { "key": "1090", "attributes": { "label": "National Museum", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 14, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 833.1588134765625, "y": 1544.959228515625 } }, { "key": "1091", "attributes": { "label": "Mobiel 21", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "1", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 532.8101806640625, "y": 612.4723510742188 } }, { "key": "1092", "attributes": { "label": "Ministry of Health of RA", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -622.0706787109375, "y": -1197.593017578125 } }, { "key": "1093", "attributes": { "label": "Molecular Lab", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 2, "nansi-degree": 5, "x": 526.8078002929688, "y": -400.073974609375 } }, { "key": "1094", "attributes": { "label": "Ministry of Education and Science", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 40, "x": 135.48367309570312, "y": -882.6824340820312 } }, { "key": "1095", "attributes": { "label": "Monde qui bouge", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 25, "x": 932.8303833007812, "y": 438.1855773925781 } }, { "key": "1096", "attributes": { "label": "Monitor", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 923.4303588867188, "y": -1122.979736328125 } }, { "key": "11", "attributes": { "label": "ASTS", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": 1146.1578369140625, "y": -58.868064880371094 } }, { "key": "110", "attributes": { "label": "Institute of Mathematics", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -434.29400634765625, "y": -1250.6143798828125 } }, { "key": "1101", "attributes": { "label": "Fédération nationale des foyers ruraux", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 1266.7288818359375, "y": -17.19748878479004 } }, { "key": "1102", "attributes": { "label": "Ministry of Education and Science", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and Governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": 582.0576782226562, "y": -1073.5543212890625 } }, { "key": "1103", "attributes": { "label": "National Defence College", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -747.6537475585938, "y": 202.3372344970703 } }, { "key": "1104", "attributes": { "label": "Hungarian Academy of Sciences", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 62, "x": -770.9010009765625, "y": -370.4874572753906 } }, { "key": "1105", "attributes": { "label": "HAS Ethnic and National Minorities", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 14, "x": -825.0028686523438, "y": -463.3367919921875 } }, { "key": "1106", "attributes": { "label": "HAS Institute of Psychology", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -671.1591186523438, "y": -302.14996337890625 } }, { "key": "1108", "attributes": { "label": "Institute for Political Sciences", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 44, "nansi-degree": 31, "x": -844.48583984375, "y": -499.6531066894531 } }, { "key": "1110", "attributes": { "label": "MTEL", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 958.7757568359375, "y": -1282.09033203125 } }, { "key": "1111", "attributes": { "label": "Faculty of Metallurgy and Technology", "country": "Montenegro", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 653.3425903320312, "y": -1060.2073974609375 } }, { "key": "1112", "attributes": { "label": "Daily Bulletin of the Hu. TV", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -1088.060302734375, "y": -426.08001708984375 } }, { "key": "1113", "attributes": { "label": "MTV 1", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -987.5101318359375, "y": -493.302734375 } }, { "key": "1114", "attributes": { "label": "Medical University - Pleven ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 116.27000427246094, "y": -716.811767578125 } }, { "key": "1117", "attributes": { "label": "Musée de la Mer Biarritz", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1184.0478515625, "y": -320.496337890625 } }, { "key": "1118", "attributes": { "label": "Muséum d'histoire naturelle Lyon", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 1449.11181640625, "y": -209.26197814941406 } }, { "key": "1123", "attributes": { "label": "A come Ambiente, Torino", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 316.16729736328125, "y": -124.1956558227539 } }, { "key": "1125", "attributes": { "label": "Museo del Balì", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 710.51806640625, "y": -502.6495056152344 } }, { "key": "1126", "attributes": { "label": "Electrical virtual museum", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 721.5388793945312, "y": -388.8695068359375 } }, { "key": "1127", "attributes": { "label": "Museo Nazionale della scienza e della tecnologia", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 2, "nansi-degree": 22, "x": 697.644287109375, "y": -279.7033996582031 } }, { "key": "1129", "attributes": { "label": "Muséum d'histoire naturelle Aix-en-Provence", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 1161.8428955078125, "y": -481.3191223144531 } }, { "key": "113", "attributes": { "label": "Medical University - Plovdiv ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -18.682586669921875, "y": -800.802734375 } }, { "key": "1130", "attributes": { "label": "Muséum d’histoire naturelle Esprit Requien Avignon", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 1157.24951171875, "y": -495.7966003417969 } }, { "key": "1131", "attributes": { "label": "Muséum d'histoire naturelle Grenoble", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1068.317138671875, "y": -455.40460205078125 } }, { "key": "1132", "attributes": { "label": "Muséum d'histoire naturelle Marseille", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 1139.5399169921875, "y": -449.03912353515625 } }, { "key": "1133", "attributes": { "label": "Muséum d'histoire naturelle Toulon", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1230.1771240234375, "y": -556.5426635742188 } }, { "key": "1134", "attributes": { "label": "Nourritures et agricultures du monde", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 1098.421142578125, "y": 80.1141357421875 } }, { "key": "1135", "attributes": { "label": "Muséum d'histoire naturelle Nantes", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 1100.1649169921875, "y": -261.8730163574219 } }, { "key": "1136", "attributes": { "label": "Muséum d'histoire naturelle Toulouse", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": 1054.7425537109375, "y": -70.92918395996094 } }, { "key": "1137", "attributes": { "label": "Harjumaa Museum", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -687.042724609375, "y": 1007.278076171875 } }, { "key": "1138", "attributes": { "label": "Genoa Province -Muvita Science Centre", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 690.60400390625, "y": -588.6708374023438 } }, { "key": "114", "attributes": { "label": "Weather portal", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -420.2398376464844, "y": 1122.63232421875 } }, { "key": "1141", "attributes": { "label": "Museum of Evolution, Polish Academy of Sciences", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -713.4782104492188, "y": -1027.568359375 } }, { "key": "1144", "attributes": { "label": "Natinal Center for Information and Documentation", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 211.51234436035156, "y": -831.9802856445312 } }, { "key": "1145", "attributes": { "label": "Naissaare Naturepark", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -753.1466064453125, "y": 864.2150268554688 } }, { "key": "1147", "attributes": { "label": "Nanowal", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 559.1192016601562, "y": 144.17926025390625 } }, { "key": "1150", "attributes": { "label": "NANOCENTRE", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -361.8898620605469, "y": -908.529296875 } }, { "key": "1151", "attributes": { "label": "Nanoco", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -172.67160034179688, "y": -254.6623077392578 } }, { "key": "1157", "attributes": { "label": "National library of Finland", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 37, "x": -666.2107543945312, "y": 58.514347076416016 } }, { "key": "1158", "attributes": { "label": "NATO", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 60, "x": -59.30786895751953, "y": -324.1468811035156 } }, { "key": "1159", "attributes": { "label": "Royal Belgian Institute of Natural Sciences", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 30, "x": 588.8084716796875, "y": 432.31463623046875 } }, { "key": "1166", "attributes": { "label": "Nausicaa", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 713.3492431640625, "y": -102.6939468383789 } }, { "key": "1168", "attributes": { "label": "The National Board of Antiquities", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 30, "x": -614.783935546875, "y": 223.59439086914062 } }, { "key": "1169", "attributes": { "label": "New Bulgarian University", "country": "Bulgaria", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 38, "x": 20.267602920532227, "y": -684.4038696289062 } }, { "key": "1170", "attributes": { "label": "North Karelia University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -707.647216796875, "y": -7.462764739990234 } }, { "key": "1171", "attributes": { "label": "National Evaluation and Accreditation Agency ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 32, "x": 25.980669021606445, "y": -977.4688110351562 } }, { "key": "1175", "attributes": { "label": "Népszava", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -1080.041748046875, "y": -405.76165771484375 } }, { "key": "1176", "attributes": { "label": "National Digital Data Archive", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -906.0238647460938, "y": -510.5545654296875 } }, { "key": "1178", "attributes": { "label": "Ministry for National Development and Economy", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -965.4614868164062, "y": -336.3206787109375 } }, { "key": "118", "attributes": { "label": "Warsaw University of Life Sciences", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -268.8016357421875, "y": -808.2574462890625 } }, { "key": "1180", "attributes": { "label": "The National Foundation of Science and Advanced Technologies", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -313.55279541015625, "y": -1134.376220703125 } }, { "key": "1181", "attributes": { "label": "IGN", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 535.7177124023438, "y": 404.1343688964844 } }, { "key": "1182", "attributes": { "label": "Portal organizacji pozarządowych", "country": "Poland", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "1", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "1", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -246.33460998535156, "y": -383.0344543457031 } }, { "key": "1183", "attributes": { "label": "NGO Center", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -618.9901733398438, "y": -999.904052734375 } }, { "key": "1184", "attributes": { "label": "Hungarian Natural History Museum", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 779.4293823242188, "y": -369.3330078125 } }, { "key": "1185", "attributes": { "label": "Niaba The Netherlands' Biotech Industry Association", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 327.1736145019531, "y": 952.201171875 } }, { "key": "1186", "attributes": { "label": "Nigula Nature Reserv", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 25, "x": -786.4534912109375, "y": 888.7147827148438 } }, { "key": "119", "attributes": { "label": "Medical University - Sofia ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -11.116637229919434, "y": -861.80712890625 } }, { "key": "1191", "attributes": { "label": "NKTH", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 64, "x": -729.2326049804688, "y": -243.28390502929688 } }, { "key": "1193", "attributes": { "label": "National Museum of Natural History in Sofia (NMNHS)", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 402.2737731933594, "y": -832.7498168945312 } }, { "key": "1195", "attributes": { "label": "Noravank foundation", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -726.5106201171875, "y": -1114.036376953125 } }, { "key": "1196", "attributes": { "label": "North-Hungarian Regional Development Agency", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -991.4660034179688, "y": -298.9779052734375 } }, { "key": "1197", "attributes": { "label": "Novethic/Le média expert du Développement durable", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": 1062.3768310546875, "y": 351.0505065917969 } }, { "key": "1199", "attributes": { "label": "National Parks of Montenegro", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -78.09993743896484, "y": 146.3363800048828 } }, { "key": "12", "attributes": { "label": "Belgian woman in science", "country": "Belgium", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 480.4901123046875, "y": 592.76220703125 } }, { "key": "1200", "attributes": { "label": "National Palace of Children", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 248.08615112304688, "y": -1155.1859130859375 } }, { "key": "1201", "attributes": { "label": "National Sports Academy", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -40.97134780883789, "y": -940.3075561523438 } }, { "key": "1202", "attributes": { "label": "The National Science Foundation", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 37, "x": 30.855703353881836, "y": -238.8677215576172 } }, { "key": "1203", "attributes": { "label": "National Science Fund ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 48, "x": 143.0780487060547, "y": -733.4025268554688 } }, { "key": "1204", "attributes": { "label": "National Council for Scientific Research", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 140.5567626953125, "y": -503.9079284667969 } }, { "key": "1206", "attributes": { "label": "Noyan Tapan", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -628.8699340820312, "y": -1099.662353515625 } }, { "key": "1207", "attributes": { "label": "National technical museum", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 622.3915405273438, "y": -496.6033020019531 } }, { "key": "1208", "attributes": { "label": "National Training Fund", "country": "Czech Republic", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -538.203857421875, "y": -540.5248413085938 } }, { "key": "1209", "attributes": { "label": "New York Biotechnology Association", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 323.95562744140625, "y": 859.002685546875 } }, { "key": "1210", "attributes": { "label": "College of Nyíregyháza", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 15, "x": -779.3041381835938, "y": -438.6288757324219 } }, { "key": "1211", "attributes": { "label": "West-Hungarian University", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 34, "x": -938.9308471679688, "y": -396.8890686035156 } }, { "key": "1212", "attributes": { "label": "Oulu University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 42, "x": -617.006103515625, "y": -64.59394073486328 } }, { "key": "1214", "attributes": { "label": "Tartu Old Observatory (Toome)", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 25, "x": -505.864013671875, "y": 1007.0536499023438 } }, { "key": "1216", "attributes": { "label": "Tartu Old Observatory Astronomy Club", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -455.9533996582031, "y": 1075.45947265625 } }, { "key": "1217", "attributes": { "label": "Royal Observatory of Belgium", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 542.23046875, "y": 313.3000183105469 } }, { "key": "1218", "attributes": { "label": "Municipal children complex - Kyustendil", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 198.7235565185547, "y": -1010.9005737304688 } }, { "key": "122", "attributes": { "label": "Nauka Polska", "country": "Poland", "tag_gender": "1", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "1", "tag_nano": "1", "tag_people": "0", "tag_reg": "1", "tag_research": "1", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "1", "tag_socioeco": "1", "tag_space": "1", "tag_transport": "1", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 23, "x": -235.9553985595703, "y": -548.2197265625 } }, { "key": "1223", "attributes": { "label": "Computer Assisted Education and Information Technology Centre", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -372.8528747558594, "y": -784.0610961914062 } }, { "key": "1224", "attributes": { "label": "Kuressaare Gymnasium", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -627.1350708007812, "y": 914.0306396484375 } }, { "key": "1225", "attributes": { "label": "National Association for Consumer Protection in Hu.", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -1111.4517822265625, "y": -412.392333984375 } }, { "key": "1226", "attributes": { "label": "Oxfam Fair trade", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 873.5977783203125, "y": 777.5076904296875 } }, { "key": "1227", "attributes": { "label": "Botanical Garden, Polish Academy of Sciences", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -308.5279541015625, "y": -924.5479125976562 } }, { "key": "123", "attributes": { "label": "Prof. Magdalena Fikus", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -275.1062316894531, "y": -698.1882934570312 } }, { "key": "1230", "attributes": { "label": "Portal for the cities", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -1099.019775390625, "y": -481.6525573730469 } }, { "key": "1231", "attributes": { "label": "Estonian Teachers Union", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -328.3445129394531, "y": 1030.26025390625 } }, { "key": "1232", "attributes": { "label": "Ośrodek Przetwarzania Informacji OPI Warszawa", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 25, "x": -237.52342224121094, "y": -500.77593994140625 } }, { "key": "1233", "attributes": { "label": "Õpetajate leht", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 19, "x": -482.73846435546875, "y": 996.4012451171875 } }, { "key": "1236", "attributes": { "label": "National Research Institute of Legal Policy ", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -572.9542846679688, "y": 290.73419189453125 } }, { "key": "1237", "attributes": { "label": "Institute of Organic Chemistry - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 148.83981323242188, "y": -961.9390258789062 } }, { "key": "1238", "attributes": { "label": "Open Society Institute - Sofia", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -61.74555587768555, "y": -915.33056640625 } }, { "key": "1239", "attributes": { "label": "Open Society Fund", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": -573.0916137695312, "y": -687.535400390625 } }, { "key": "124", "attributes": { "label": "Dr Marek Banaszkiewicz", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -270.0542907714844, "y": -690.4808349609375 } }, { "key": "1240", "attributes": { "label": "Open Society Institute Assistance Foundation - Armenia", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -565.881103515625, "y": -1171.1778564453125 } }, { "key": "1241", "attributes": { "label": "Otepää Naturepark", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -809.3430786132812, "y": 969.3606567382812 } }, { "key": "1242", "attributes": { "label": "Otevrena společnost", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -663.894287109375, "y": -727.1031494140625 } }, { "key": "1243", "attributes": { "label": "OTKA – National Scientific Research Fund", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 39, "x": -688.2464599609375, "y": -342.5874328613281 } }, { "key": "1244", "attributes": { "label": "University of Oulu", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 2, "nansi-degree": 84, "x": -457.5868225097656, "y": 82.38058471679688 } }, { "key": "1245", "attributes": { "label": "Technical University of Lodz", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "1", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 23, "x": -157.7221221923828, "y": -289.7704772949219 } }, { "key": "1246", "attributes": { "label": "Forum 50%", "country": "Czech Republic", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": -707.2505493164062, "y": -786.5676879882812 } }, { "key": "1247", "attributes": { "label": "Palais de la découverte", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-degree": 40, "x": 956.6480712890625, "y": -196.927001953125 } }, { "key": "1248", "attributes": { "label": "Paleofox", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 842.5205688476562, "y": -448.01812744140625 } }, { "key": "1250", "attributes": { "label": "Polish Academy of Sciences", "country": "Poland", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "1", "tag_nano": "1", "tag_people": "0", "tag_reg": "1", "tag_research": "1", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "1", "tag_transport": "1", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 2, "nansi-degree": 29, "x": -227.3009796142578, "y": -413.2213134765625 } }, { "key": "1251", "attributes": { "label": "Akademia Pomorska w Słupsku", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -284.925048828125, "y": -603.0457763671875 } }, { "key": "1253", "attributes": { "label": "Parco nazionale Val Grande", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -393.8024597167969, "y": 606.3881225585938 } }, { "key": "1254", "attributes": { "label": "Paris Montagne", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": 1038.1640625, "y": -271.76153564453125 } }, { "key": "1256", "attributes": { "label": "The portal about parks in Italy", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 21, "x": -389.5081787109375, "y": 548.3346557617188 } }, { "key": "1259", "attributes": { "label": "Scientific Adventures Park", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 21, "x": 763.5341796875, "y": 125.27509307861328 } }, { "key": "1260", "attributes": { "label": "Department Pasteur Institute", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": 578.4010620117188, "y": 351.2403869628906 } }, { "key": "1261", "attributes": { "label": "Pavilhão do Conhecimento", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 27, "x": 539.94287109375, "y": -280.5743713378906 } }, { "key": "1262", "attributes": { "label": "Le pavillon des sciences -Franche-Comté ", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 1312.8267822265625, "y": -280.29217529296875 } }, { "key": "1263", "attributes": { "label": "Politechnika Białostocka", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -331.04241943359375, "y": -572.7633666992188 } }, { "key": "1264", "attributes": { "label": "Progress and Business Foundation", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -338.1733093261719, "y": -402.7215270996094 } }, { "key": "1265", "attributes": { "label": "Pedagogical Center of Montenegro", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 712.3637084960938, "y": -1230.1514892578125 } }, { "key": "1266", "attributes": { "label": "Politechnika Częstochowska", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": -301.7561340332031, "y": -380.5174255371094 } }, { "key": "1267", "attributes": { "label": "Faculty of education Brno", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -510.9051818847656, "y": -255.9486846923828 } }, { "key": "1268", "attributes": { "label": "POST-Perugia", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 662.2865600585938, "y": -453.9848327636719 } }, { "key": "1269", "attributes": { "label": "Polska Federacja Biotechnologii", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -159.7967071533203, "y": -514.9429321289062 } }, { "key": "1270", "attributes": { "label": "Plateform souveraineté alimentaire", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 893.3603515625, "y": 430.6365661621094 } }, { "key": "1271", "attributes": { "label": " Gdansk University of Technology", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "1", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 2, "nansi-degree": 32, "x": -205.59388732910156, "y": -251.4148406982422 } }, { "key": "1273", "attributes": { "label": "PhD Gate", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 16, "x": 12.439001083374023, "y": -848.6787109375 } }, { "key": "1274", "attributes": { "label": "Institute for Philosophical Research", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 3, "x": -895.7939453125, "y": -509.25054931640625 } }, { "key": "1275", "attributes": { "label": "Institute for Philosophical Research - BAS", "country": "Bulgaria", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "1", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 139.34402465820312, "y": -772.0953979492188 } }, { "key": "1276", "attributes": { "label": "Provinciale Hogeschool Limburg", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -48.51821517944336, "y": 115.74983978271484 } }, { "key": "128", "attributes": { "label": "Office pour les insectes et leur environnement", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 1372.9296875, "y": -113.83822631835938 } }, { "key": "1280", "attributes": { "label": "Picardie CSTI", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 1297.9376220703125, "y": -245.45240783691406 } }, { "key": "1281", "attributes": { "label": "Pièce et main d'œuvre", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 1137.231201171875, "y": 280.2551574707031 } }, { "key": "1282", "attributes": { "label": "Geosciences Animation (51)", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 950.2256469726562, "y": -266.7756652832031 } }, { "key": "1283", "attributes": { "label": "Pikaia", "country": "Italy", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 2, "nansi-degree": 5, "x": 790.9486694335938, "y": -510.7499694824219 } }, { "key": "1284", "attributes": { "label": "PIRAMK University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 35, "x": -507.0853271484375, "y": -62.598392486572266 } }, { "key": "1285", "attributes": { "label": "Polsko-Japońska Wyższa Szkoła Technik Komputerowych", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -320.88641357421875, "y": -656.0840454101562 } }, { "key": "1286", "attributes": { "label": "Politechnika Krakowska im. Tadeusza Kościuszki", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -377.49444580078125, "y": -361.2718505859375 } }, { "key": "1288", "attributes": { "label": "Polska Konfederacja Pracodawców Prywatnych", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 13, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -1761.6993408203125, "y": 29.11591339111328 } }, { "key": "1289", "attributes": { "label": "Estonian Seminatural Community Conservation Association", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -834.0057373046875, "y": 1124.073486328125 } }, { "key": "1290", "attributes": { "label": "Plan 2009", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 876.8419189453125, "y": 538.0774536132812 } }, { "key": "1291", "attributes": { "label": "Planetario", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 837.73095703125, "y": -657.3687133789062 } }, { "key": "1292", "attributes": { "label": "Planetarium", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 590.3878173828125, "y": 326.677001953125 } }, { "key": "1293", "attributes": { "label": "Planète Sciences", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 33, "x": 1149.8824462890625, "y": -135.51324462890625 } }, { "key": "1294", "attributes": { "label": "Planicom (SPIRAL)", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 552.3553466796875, "y": -2.1916534900665283 } }, { "key": "1298", "attributes": { "label": "Pałac Młodzieży im. prof. Aleksandra Kamińskiego", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -364.95098876953125, "y": -543.09423828125 } }, { "key": "1299", "attributes": { "label": "Natural History Museum", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 14, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 825.271728515625, "y": 1532.6451416015625 } }, { "key": "13", "attributes": { "label": "Estonian Vertebrates", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -752.0105590820312, "y": 1295.49560546875 } }, { "key": "1300", "attributes": { "label": "Faculty of Natural Sciences and Mathematics", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 634.02001953125, "y": -1025.9915771484375 } }, { "key": "1301", "attributes": { "label": "Politechnika Opolska", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -508.2279968261719, "y": -415.8047180175781 } }, { "key": "1303", "attributes": { "label": "City of Podgorica", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 651.7102661132812, "y": -963.3971557617188 } }, { "key": "1304", "attributes": { "label": "International polar foundation", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 19, "x": 749.4530639648438, "y": 194.59854125976562 } }, { "key": "1305", "attributes": { "label": "Pôle Mosan", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 682.1881713867188, "y": 80.67886352539062 } }, { "key": "1307", "attributes": { "label": "Politechnika Lubelska", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -392.889404296875, "y": -624.4183349609375 } }, { "key": "1308", "attributes": { "label": "BIS Polskie Radio", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 294.01275634765625, "y": -228.76910400390625 } }, { "key": "1309", "attributes": { "label": "Pôle universitaire européen de Montpellier et du Languedoc-Roussillon", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 863.5546875, "y": 111.20647430419922 } }, { "key": "1311", "attributes": { "label": "Institute of Polymers - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 127.6585922241211, "y": -1035.8260498046875 } }, { "key": "1312", "attributes": { "label": "National Polytechnic Museum", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 450.6044921875, "y": -972.3767700195312 } }, { "key": "1313", "attributes": { "label": "Postimees", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 47, "x": -555.1638793945312, "y": 1128.5367431640625 } }, { "key": "1314", "attributes": { "label": "Pour la science", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 995.0234985351562, "y": -31.474777221679688 } }, { "key": "1315", "attributes": { "label": "Poznański Park Naukowo-Technologiczny", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "1", "tag_agri": "0", "tag_biotech": "1", "tag_business": "1", "tag_comm": "1", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -100.98970794677734, "y": -266.8778991699219 } }, { "key": "1316", "attributes": { "label": "Politechnika Radomska im. Kazimierza Pułaskiego", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -388.8676452636719, "y": -589.99609375 } }, { "key": "1317", "attributes": { "label": "Faculty of Law", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 687.0723876953125, "y": -1025.7225341796875 } }, { "key": "1318", "attributes": { "label": "Printemps de l'Environnement", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 558.9302368164062, "y": 583.73046875 } }, { "key": "1319", "attributes": { "label": "association des profeseurs de Biologie", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": 674.7952270507812, "y": 215.56349182128906 } }, { "key": "132", "attributes": { "label": "TTU Dept. of Physics", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -525.6159057617188, "y": 904.2564697265625 } }, { "key": "1320", "attributes": { "label": "PROFEM", "country": "Czech Republic", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -720.06005859375, "y": -797.837158203125 } }, { "key": "1321", "attributes": { "label": "Project Harmony", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": -556.7492065429688, "y": -1245.7509765625 } }, { "key": "1322", "attributes": { "label": "ZANG Armenian Legal Socialization Project", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -582.1690063476562, "y": -1333.869873046875 } }, { "key": "1323", "attributes": { "label": "Pro Monte", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 930.017333984375, "y": -1207.843505859375 } }, { "key": "1324", "attributes": { "label": "Prosme\" Promotion of Small And Medium Enterprises\"", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -709.77685546875, "y": -1382.9315185546875 } }, { "key": "1325", "attributes": { "label": "Pedagocical Work ", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 598.9647827148438, "y": -1192.9013671875 } }, { "key": "1327", "attributes": { "label": "Politechnika Szczecińska", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -440.53375244140625, "y": -401.0559997558594 } }, { "key": "1328", "attributes": { "label": "Association française pour l'nformation scientifique", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 17, "x": 1055.656982421875, "y": 37.77265167236328 } }, { "key": "1329", "attributes": { "label": "The Polish Chemical Society", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -391.3827209472656, "y": -501.06500244140625 } }, { "key": "1330", "attributes": { "label": "University of Pécs", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": -764.0625, "y": -261.7684020996094 } }, { "key": "1331", "attributes": { "label": "Plovdiv University 'Paisiy Hilendarski'", "country": "Bulgaria", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 16, "x": -53.199684143066406, "y": -712.4960327148438 } }, { "key": "1332", "attributes": { "label": "Institute for development and innovations in education and science - IDIES ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 17, "x": 185.6662139892578, "y": -972.274658203125 } }, { "key": "1333", "attributes": { "label": "Politechnika Poznańska", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 2, "nansi-degree": 9, "x": -445.644775390625, "y": -429.8208312988281 } }, { "key": "1334", "attributes": { "label": "Vaasa University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -618.3577270507812, "y": 50.27138137817383 } }, { "key": "1337", "attributes": { "label": "Radio Lublin SA", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -397.0538330078125, "y": -708.3815307617188 } }, { "key": "1338", "attributes": { "label": "Belgium Museum of radiology", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 552.2283935546875, "y": 611.3043212890625 } }, { "key": "134", "attributes": { "label": "Gabinete de História Economica e Social - ISEG", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 326.0185852050781, "y": -520.1162109375 } }, { "key": "1340", "attributes": { "label": "Rovaniemi University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -903.6409912109375, "y": -5.190530300140381 } }, { "key": "1343", "attributes": { "label": "Tallinn Secondary Science School", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -558.1685180664062, "y": 957.5991821289062 } }, { "key": "1344", "attributes": { "label": "Red Hot Production Telesaated, filmitootmine", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -529.139892578125, "y": 1422.1923828125 } }, { "key": "1346", "attributes": { "label": "Reflexiences", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 22, "x": 1067.237060546875, "y": -37.786128997802734 } }, { "key": "1347", "attributes": { "label": "Reflexives", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 752.8524780273438, "y": 44.64270782470703 } }, { "key": "1348", "attributes": { "label": "Relais d'sciences - CCSTI de Basse-Normandie", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": 1216.88623046875, "y": -143.88897705078125 } }, { "key": "1349", "attributes": { "label": "Republika", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 731.0490112304688, "y": -1043.2122802734375 } }, { "key": "135", "attributes": { "label": "Polska Fundacja Upowszechniania Nauki", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -137.76463317871094, "y": -437.399658203125 } }, { "key": "1351", "attributes": { "label": "Research.be", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 108, "x": 467.0184326171875, "y": 406.37030029296875 } }, { "key": "1352", "attributes": { "label": "Finnish science and technology information service", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 63, "x": -541.5309448242188, "y": 260.9433288574219 } }, { "key": "1353", "attributes": { "label": "Flanders Research Information Space", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 191.6787872314453, "y": 482.43994140625 } }, { "key": "1354", "attributes": { "label": "Reseau Idee", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": 835.3977661132812, "y": 436.9391784667969 } }, { "key": "1357", "attributes": { "label": "Rete ambiente", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 597.7986450195312, "y": -604.7168579101562 } }, { "key": "1358", "attributes": { "label": "Réseau d'accès international au développement durable", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 1068.41455078125, "y": 303.54510498046875 } }, { "key": "1359", "attributes": { "label": "Astonomy Society Ridamus", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -459.926513671875, "y": 1052.84521484375 } }, { "key": "136", "attributes": { "label": "PhD virtual info center", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 65.28395080566406, "y": -935.6392211914062 } }, { "key": "1360", "attributes": { "label": "Research and Development Council", "country": "Estonia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -359.26873779296875, "y": 1000.9154663085938 } }, { "key": "1361", "attributes": { "label": "Tartu Students' Nature Protection Club", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 19, "x": -784.7249145507812, "y": 1076.69482421875 } }, { "key": "1362", "attributes": { "label": "Association of Estonian Broadcasters", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -557.8807373046875, "y": 1382.5408935546875 } }, { "key": "1364", "attributes": { "label": "HAS Center for Regional Studies ", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 23, "x": -893.7194213867188, "y": -398.1239318847656 } }, { "key": "1366", "attributes": { "label": "Conseil de l'Environnement de la Région de Bruxelles-Capitale", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 542.8070068359375, "y": 617.0285034179688 } }, { "key": "1367", "attributes": { "label": "Estonian Green Movement", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": -710.5299072265625, "y": 1205.6182861328125 } }, { "key": "1368", "attributes": { "label": "Rosa", "country": "Belgium", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 26, "x": 140.13372802734375, "y": 386.3083801269531 } }, { "key": "137", "attributes": { "label": "Budapest University of Technology and Economics, Science History and Phylosophy", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -1166.0963134765625, "y": -312.7786560058594 } }, { "key": "1370", "attributes": { "label": "Secretariat for Development", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and Governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 823.037841796875, "y": -1201.5023193359375 } }, { "key": "1373", "attributes": { "label": "University of Rousse 'Angel Kanchev'", "country": "Bulgaria", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 39, "x": -10.066940307617188, "y": -896.0578002929688 } }, { "key": "1374", "attributes": { "label": "RVO-society", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 241.8546600341797, "y": 573.731689453125 } }, { "key": "1375", "attributes": { "label": "Polska Izba Rzeczników Patentowych", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -594.3807983398438, "y": -829.0787353515625 } }, { "key": "1376", "attributes": { "label": "Kancelarie patentowe - Wielkopolska", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -670.4567260742188, "y": -915.951904296875 } }, { "key": "1378", "attributes": { "label": "Sagadi Forest Museum", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -776.9979248046875, "y": 1199.70947265625 } }, { "key": "1379", "attributes": { "label": "Satakunta University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -739.2373657226562, "y": -28.924028396606445 } }, { "key": "1380", "attributes": { "label": "Sapience", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 1208.2294921875, "y": 134.4582061767578 } }, { "key": "1381", "attributes": { "label": "Sauvons la Recherche", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": 1129.6158447265625, "y": 15.376638412475586 } }, { "key": "1383", "attributes": { "label": "Conseil Général de l'Essonne", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 6, "nansi-degree": 10, "x": 1081.618408203125, "y": -225.24447631835938 } }, { "key": "1386", "attributes": { "label": "National Academy of Sciences of Armenia", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 57, "x": -356.2690734863281, "y": -1212.0235595703125 } }, { "key": "1387", "attributes": { "label": "Center for Ecological Noosphere Studies", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -352.84210205078125, "y": -1296.2003173828125 } }, { "key": "1388", "attributes": { "label": "Institute of Biochemistry", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -342.2477111816406, "y": -1276.6590576171875 } }, { "key": "1389", "attributes": { "label": "Institute of Botany", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -332.7649230957031, "y": -1293.786376953125 } }, { "key": "1390", "attributes": { "label": "Institute of General and Inorganic Chemistry", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -372.2439880371094, "y": -1303.8900146484375 } }, { "key": "1391", "attributes": { "label": "Institute of Hydroponics Problems", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -353.2440490722656, "y": -1275.12158203125 } }, { "key": "1392", "attributes": { "label": "Institute of Hydroecology and Ichthyology", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -361.2688903808594, "y": -1305.7813720703125 } }, { "key": "1393", "attributes": { "label": "Institute of Microbiology", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -365.3024597167969, "y": -1276.558349609375 } }, { "key": "1394", "attributes": { "label": "State Microbial Depository Centre", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -356.9046630859375, "y": -1285.472900390625 } }, { "key": "1395", "attributes": { "label": "Institute of Molecular Biology", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -344.24163818359375, "y": -1288.7403564453125 } }, { "key": "1396", "attributes": { "label": "Institute of Zoology", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -332.8623962402344, "y": -1282.4755859375 } }, { "key": "1397", "attributes": { "label": "Institute of Geological Sciences", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -377.29974365234375, "y": -1293.887451171875 } }, { "key": "1398", "attributes": { "label": "Institute of Applied Problems of Physics", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -373.8404541015625, "y": -1282.903564453125 } }, { "key": "1399", "attributes": { "label": "Institute of Philosophy, Sociology and Law NAS RA", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -365.3431701660156, "y": -1293.0260009765625 } }, { "key": "14", "attributes": { "label": "Estonian Plants", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -912.8947143554688, "y": 995.624755859375 } }, { "key": "1400", "attributes": { "label": "Engineering Center \"Mashtots\"", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -339.4851379394531, "y": -1302.1319580078125 } }, { "key": "1403", "attributes": { "label": "Science Animation Midi-Pyrénées ", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": 1176.26611328125, "y": -206.67349243164062 } }, { "key": "1404", "attributes": { "label": "Université d'Evry", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 1200.399658203125, "y": 114.07319641113281 } }, { "key": "1406", "attributes": { "label": "Science et Ethique Brest – 3B", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1254.933837890625, "y": 79.672119140625 } }, { "key": "1407", "attributes": { "label": "Youth Academy Science Portal", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -257.3848571777344, "y": -590.1063842773438 } }, { "key": "1408", "attributes": { "label": "Site web", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 35, "x": 1064.819580078125, "y": -111.89179992675781 } }, { "key": "141", "attributes": { "label": "Budapest University of Technology and Economics", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": -1061.2911376953125, "y": -323.1885986328125 } }, { "key": "1410", "attributes": { "label": "Science Connection", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 526.6993408203125, "y": 469.8226623535156 } }, { "key": "1411", "attributes": { "label": "SciencePoles", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 866.9140014648438, "y": 220.46165466308594 } }, { "key": "1412", "attributes": { "label": "Science et Démocratie ", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": 1107.16748046875, "y": -11.14809513092041 } }, { "key": "1413", "attributes": { "label": "Science Tunnel", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 357.9353942871094, "y": 473.8682861328125 } }, { "key": "1414", "attributes": { "label": "Scientist at work", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 284.3691101074219, "y": 586.7578125 } }, { "key": "1415", "attributes": { "label": "Associazione scienza viva", "country": "Italy", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 742.5635986328125, "y": -254.93362426757812 } }, { "key": "1417", "attributes": { "label": "Belgian Nuclear Research Centre,", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": 282.9593811035156, "y": 288.5307312011719 } }, { "key": "1419", "attributes": { "label": "Centre for security policy", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -490.0790100097656, "y": -350.53179931640625 } }, { "key": "142", "attributes": { "label": "HAMK University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 29, "x": -511.60162353515625, "y": -103.39910888671875 } }, { "key": "1421", "attributes": { "label": "Estonian Marine Institute", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -558.9157104492188, "y": 792.6663208007812 } }, { "key": "1422", "attributes": { "label": "National Audiovisual Archive ", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -747.9785766601562, "y": 188.376220703125 } }, { "key": "1423", "attributes": { "label": "Seinäjoki University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 28, "x": -651.059326171875, "y": -11.749998092651367 } }, { "key": "1425", "attributes": { "label": "Seismological Bureau", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 613.2862548828125, "y": -1152.1690673828125 } }, { "key": "1426", "attributes": { "label": "Stockholm Environment Institute Estonia", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -704.5020141601562, "y": 925.5197143554688 } }, { "key": "1427", "attributes": { "label": "Semmelweis Doctors’ History museum", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 16, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 261.7035827636719, "y": -1772.6727294921875 } }, { "key": "1428", "attributes": { "label": "Sénat", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 381.65557861328125, "y": 749.2446899414062 } }, { "key": "1429", "attributes": { "label": "Central Laboratory of Solar Energy and New Energy Sources - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 203.09056091308594, "y": -927.5501098632812 } }, { "key": "1430", "attributes": { "label": "State Engineering University of Armenia", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 2, "nansi-degree": 19, "x": -465.2745361328125, "y": -1197.96142578125 } }, { "key": "1431", "attributes": { "label": "Sea Fisheries Institute in Gdynia", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 270.4891662597656, "y": -225.72637939453125 } }, { "key": "1432", "attributes": { "label": "Szkoła Festiwalu Nauki - International Institute of Molecular and Cell Biology in Warsaw", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -405.93072509765625, "y": -797.5889282226562 } }, { "key": "1433", "attributes": { "label": "SFRS/CERIMES", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1218.66796875, "y": -115.26974487304688 } }, { "key": "1434", "attributes": { "label": "SSCI Swiss Society of Chemical Industries", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 440.5830993652344, "y": 1244.3187255859375 } }, { "key": "1438", "attributes": { "label": "Konstantin Preslavsky University of Shumen", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 16, "x": 96.98210144042969, "y": -983.8182373046875 } }, { "key": "1439", "attributes": { "label": "Sibelius Academy", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 27, "x": -663.5317993164062, "y": 175.70425415039062 } }, { "key": "1440", "attributes": { "label": "SIK - The Swedish Institute for Food and Biotechnology", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -328.0860595703125, "y": 465.0858154296875 } }, { "key": "1441", "attributes": { "label": "Silma Nature Reserv", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -870.9345703125, "y": 917.1163330078125 } }, { "key": "1442", "attributes": { "label": "Sinia-Planeta.com", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 274.3985595703125, "y": -925.9327392578125 } }, { "key": "1444", "attributes": { "label": "Sirma Group", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 257.8264465332031, "y": -1089.1466064453125 } }, { "key": "1445", "attributes": { "label": "Sirma Media", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 241.41184997558594, "y": -1070.8001708984375 } }, { "key": "1446", "attributes": { "label": "Sirp", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -571.7454223632812, "y": 1032.900634765625 } }, { "key": "1448", "attributes": { "label": "Schools in Montenegro", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 665.6942138671875, "y": -1163.352783203125 } }, { "key": "1451", "attributes": { "label": "SL Õhtuleht", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 27, "x": -518.3911743164062, "y": 1110.035400390625 } }, { "key": "1453", "attributes": { "label": "SMEDNC", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -680.755615234375, "y": -1311.7994384765625 } }, { "key": "1456", "attributes": { "label": "S&T Montenegro", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 951.9241943359375, "y": -1288.8135986328125 } }, { "key": "1459", "attributes": { "label": "Società chimica italiana", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 711.4988403320312, "y": -491.7763671875 } }, { "key": "146", "attributes": { "label": "Department Of Media Communication AS CR", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 484.29083251953125, "y": -470.5479431152344 } }, { "key": "1460", "attributes": { "label": "HAS Institute of Sociology", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 16, "x": -938.11376953125, "y": -523.9629516601562 } }, { "key": "1461", "attributes": { "label": "Institute of Sociology - BAS", "country": "Bulgaria", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "1", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 45.8076171875, "y": -807.4966430664062 } }, { "key": "1463", "attributes": { "label": "Kopalnia Soli \"Kłodawa\" ", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -570.4237670898438, "y": -777.5836181640625 } }, { "key": "1464", "attributes": { "label": "\"SolarEn\", LLC", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -538.5089721679688, "y": -1295.6351318359375 } }, { "key": "1465", "attributes": { "label": "Soomaa National Park", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": -800.0452270507812, "y": 1006.8360595703125 } }, { "key": "1466", "attributes": { "label": "Sophia", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 16, "x": 95.25837707519531, "y": 329.15863037109375 } }, { "key": "1467", "attributes": { "label": "SOS Faim", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 888.7416381835938, "y": 583.7098388671875 } }, { "key": "1468", "attributes": { "label": "Semmelweis University", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 21, "x": -850.2283325195312, "y": -399.4176330566406 } }, { "key": "147", "attributes": { "label": "University of Ostrava Faculty of Science", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -259.0613098144531, "y": -142.35308837890625 } }, { "key": "1470", "attributes": { "label": "Space Research Institute - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "1", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -78.72896575927734, "y": -755.7531127929688 } }, { "key": "1471", "attributes": { "label": " Agricultural High School, Bar", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 657.0745239257812, "y": -1180.9453125 } }, { "key": "1472", "attributes": { "label": "Vocational High School \"Spasoje Raspopović\", Podgorica", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 674.1072998046875, "y": -1182.7593994140625 } }, { "key": "1474", "attributes": { "label": "Vocational High School", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 622.0208740234375, "y": -1063.20751953125 } }, { "key": "1476", "attributes": { "label": "National Research and Development Centre for Welfare and Health (STAKES) ", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 21, "x": -458.6775207519531, "y": 130.2770233154297 } }, { "key": "1477", "attributes": { "label": "Unité mixte de recherche Sciences Techniques Éducation Formation", "country": "France", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 1144.5010986328125, "y": -334.06365966796875 } }, { "key": "1478", "attributes": { "label": "FOUNDATION for FUTURE GENERATIONS", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": 824.997314453125, "y": 389.33740234375 } }, { "key": "1479", "attributes": { "label": "STS Wiki", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 929.7244873046875, "y": -224.25767517089844 } }, { "key": "148", "attributes": { "label": "Université de technologie de Compiègne - Service Communication et culture technologiques", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1319.578857421875, "y": -350.8564453125 } }, { "key": "1480", "attributes": { "label": "Radiation and Nuclear Safety Authority (STUK) ", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 22, "x": -390.3119201660156, "y": 295.4970397949219 } }, { "key": "1481", "attributes": { "label": "Technical University of Lodz, Faculty of Materials Technology And Textile Designing", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -137.5243377685547, "y": -408.1856994628906 } }, { "key": "1482", "attributes": { "label": "The Finnish Association of Non-fiction Writers", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": -645.99853515625, "y": 250.10914611816406 } }, { "key": "1483", "attributes": { "label": "Swiss Biotech Association", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 239.1030731201172, "y": 756.2569580078125 } }, { "key": "1484", "attributes": { "label": "Szkoła Wyższa Psychologii Społecznej", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -732.8781127929688, "y": 58.93117141723633 } }, { "key": "1485", "attributes": { "label": "South-West University 'Neofit Rilski'", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 46, "x": 18.604774475097656, "y": -890.5927734375 } }, { "key": "1486", "attributes": { "label": "Saaremaa Gymnasium", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -401.8570251464844, "y": 1193.48193359375 } }, { "key": "1487", "attributes": { "label": "Symbioses", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 907.5698852539062, "y": 541.0914916992188 } }, { "key": "1489", "attributes": { "label": "Synopsys", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 10, "nansi-degree": 7, "x": -409.712646484375, "y": -1179.954833984375 } }, { "key": "149", "attributes": { "label": "Association française pour l'information scientifique", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 1003.7839965820312, "y": 33.1693229675293 } }, { "key": "1490", "attributes": { "label": "Szent István University, Gödöllő", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -840.8436889648438, "y": -362.001708984375 } }, { "key": "1491", "attributes": { "label": "SZMM", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 28, "x": -967.1129150390625, "y": -459.013671875 } }, { "key": "1492", "attributes": { "label": "Movement for a Free Hungary", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -1155.4013671875, "y": -529.9863891601562 } }, { "key": "1493", "attributes": { "label": "Szochalo", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 12, "x": -1005.8360595703125, "y": -521.755615234375 } }, { "key": "1494", "attributes": { "label": "Szonda Ipsos Market Research Co.", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 4, "x": -867.92724609375, "y": -514.5122680664062 } }, { "key": "1495", "attributes": { "label": "T-mobile", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 722.9889526367188, "y": -1001.8161010742188 } }, { "key": "1496", "attributes": { "label": "National Institute for Health Development", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -285.1153564453125, "y": 543.8905029296875 } }, { "key": "1497", "attributes": { "label": "University of Art and Design", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 16, "x": -691.8677978515625, "y": 214.87338256835938 } }, { "key": "1498", "attributes": { "label": "Tallinn Zoo", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -889.05908203125, "y": 1103.2490234375 } }, { "key": "1500", "attributes": { "label": "TAMK University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 19, "x": -548.0838623046875, "y": -75.21080017089844 } }, { "key": "1502", "attributes": { "label": "TARKI Social Research Insitute", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 14, "x": -807.8551635742188, "y": -439.3908386230469 } }, { "key": "1504", "attributes": { "label": "Botanical Garden", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -724.9465942382812, "y": 903.0758666992188 } }, { "key": "1505", "attributes": { "label": "Technology centre", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 57.08123779296875, "y": 264.90618896484375 } }, { "key": "1508", "attributes": { "label": "Science portal", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": -497.0106506347656, "y": 1049.722412109375 } }, { "key": "1509", "attributes": { "label": "Science school of Tartu University", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 26, "x": -454.9693908691406, "y": 924.1362915039062 } }, { "key": "151", "attributes": { "label": "Polskie Towarzystwo Fizyczne", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 76, "x": -258.0897216796875, "y": -448.8059997558594 } }, { "key": "1510", "attributes": { "label": "Tartu Science and Innovation Park", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -349.0000305175781, "y": 1105.67529296875 } }, { "key": "1511", "attributes": { "label": "Theatre Academy", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": -673.8455200195312, "y": 227.5737762451172 } }, { "key": "1512", "attributes": { "label": "Techmania Science Center", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 23, "x": 596.4772338867188, "y": -265.7140197753906 } }, { "key": "1514", "attributes": { "label": "Technopolis", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 452.19873046875, "y": 731.0128784179688 } }, { "key": "1515", "attributes": { "label": "City of Rome- Technotown", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 759.3087768554688, "y": -566.9323120117188 } }, { "key": "1516", "attributes": { "label": "Environmental Education Centre", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 44, "x": -738.1117553710938, "y": 1075.05517578125 } }, { "key": "1518", "attributes": { "label": "Estonian Association of Technology Education", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -523.8258056640625, "y": 990.2894897460938 } }, { "key": "1519", "attributes": { "label": "Science School of TTU", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -513.8907470703125, "y": 760.0563354492188 } }, { "key": "152", "attributes": { "label": "Kieleckie Science Festival", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -425.1031799316406, "y": -320.9515686035156 } }, { "key": "1520", "attributes": { "label": "Tutki-Kokeile-Kehitä -kilpailu", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -697.182861328125, "y": 81.39765930175781 } }, { "key": "1521", "attributes": { "label": "Finnish Funding Agence for Technology and Innovation Tekes", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 75, "x": -554.356689453125, "y": 189.8094024658203 } }, { "key": "1522", "attributes": { "label": "Telecom of Montenegro", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 807.45361328125, "y": -1093.854248046875 } }, { "key": "1523", "attributes": { "label": "National Advisory Board on Research Ethics", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 16, "x": -565.4674682617188, "y": 308.43341064453125 } }, { "key": "1525", "attributes": { "label": "Természet Világa", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -788.208984375, "y": -538.9894409179688 } }, { "key": "1527", "attributes": { "label": "Terviseleht", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -468.46966552734375, "y": 1339.0364990234375 } }, { "key": "1528", "attributes": { "label": "Health Museum", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -471.7841796875, "y": 867.3795776367188 } }, { "key": "1529", "attributes": { "label": "Science Foundation", "country": "Hungary", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 9, "x": -894.1516723632812, "y": -281.47039794921875 } }, { "key": "153", "attributes": { "label": "Science et Avenir", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1174.0087890625, "y": -322.7034606933594 } }, { "key": "1530", "attributes": { "label": "Impulsi, il TG dei musei", "country": "Italy", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 727.722900390625, "y": -380.02044677734375 } }, { "key": "1531", "attributes": { "label": "THE – Scientific, useful, human", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -969.272705078125, "y": -232.6541748046875 } }, { "key": "1532", "attributes": { "label": "The big ask", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 957.6609497070312, "y": 531.5703735351562 } }, { "key": "1533", "attributes": { "label": "Trust for economy and society", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -646.5455932617188, "y": -795.7789306640625 } }, { "key": "1535", "attributes": { "label": "Tiede", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -277.499267578125, "y": 120.83390045166016 } }, { "key": "1538", "attributes": { "label": "Site de Tourisme Industriel, scientifique et Technique de la Région Rhone Alpes", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 1342.4490966796875, "y": -194.28684997558594 } }, { "key": "1539", "attributes": { "label": "Committee for Public Information ", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": -664.8194580078125, "y": 354.85980224609375 } }, { "key": "154", "attributes": { "label": "Raadio 2", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": -448.79248046875, "y": 1256.1387939453125 } }, { "key": "1540", "attributes": { "label": "TEMPUS Foundation", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 26, "x": -873.7332763671875, "y": -369.5655517578125 } }, { "key": "1541", "attributes": { "label": "Helsinki University of Technology", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 35, "x": -355.394775390625, "y": 156.63087463378906 } }, { "key": "1542", "attributes": { "label": "Tallinn University", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 34, "x": -465.54608154296875, "y": 538.154052734375 } }, { "key": "1543", "attributes": { "label": "Estonian Theatre and Music Museum", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -578.420166015625, "y": 1006.547607421875 } }, { "key": "1544", "attributes": { "label": "Together", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -12.213443756103516, "y": -165.66529846191406 } }, { "key": "1545", "attributes": { "label": "Kemi-Tornio University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -697.0858154296875, "y": 68.83209991455078 } }, { "key": "1546", "attributes": { "label": "Torino scienza", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 45, "x": 614.5308837890625, "y": -349.53759765625 } }, { "key": "1547", "attributes": { "label": "The City Office of Toruń", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -314.3998107910156, "y": -280.6986389160156 } }, { "key": "155", "attributes": { "label": "Raadio 4", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -381.41302490234375, "y": 1318.3995361328125 } }, { "key": "1550", "attributes": { "label": "Turku School of Economics and Business Administration", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": -693.106689453125, "y": 160.56997680664062 } }, { "key": "1551", "attributes": { "label": "Federation of Finnish Learned Societies", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 33, "x": -585.73583984375, "y": 252.9110565185547 } }, { "key": "1552", "attributes": { "label": "Agricultural Centre Ltd. Of Gödöllő", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -1199.8619384765625, "y": -375.7888488769531 } }, { "key": "1553", "attributes": { "label": "Finnish Institute of Occupational Health ", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 32, "x": -466.21820068359375, "y": 161.73023986816406 } }, { "key": "1554", "attributes": { "label": "Technical University of Sofia ", "country": "Bulgaria", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 2, "nansi-degree": 24, "x": 38.697906494140625, "y": -1037.7962646484375 } }, { "key": "1555", "attributes": { "label": "Technical University of Varna ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -100.0477066040039, "y": -781.6138305664062 } }, { "key": "1556", "attributes": { "label": "Politechnika Świętokrzyska w Kielcach", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -261.2439270019531, "y": -490.020751953125 } }, { "key": "1557", "attributes": { "label": "Politechnika Koszalińska", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -470.1275939941406, "y": -490.46636962890625 } }, { "key": "1559", "attributes": { "label": "Technical University - Gabrovo", "country": "Bulgaria", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 43, "x": -48.618045806884766, "y": -810.7413940429688 } }, { "key": "156", "attributes": { "label": "Portail de la Recherche et des Technologies en Région wallonne", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 48, "x": 616.3052368164062, "y": 184.52841186523438 } }, { "key": "1560", "attributes": { "label": "Intstitute of Technoloogy", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 22, "x": -401.1776428222656, "y": 1015.536376953125 } }, { "key": "1561", "attributes": { "label": "Luonnonsuojeluyhdistys Tuottava Maa-Turvattu Luonto ry", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -337.82696533203125, "y": 315.27581787109375 } }, { "key": "1562", "attributes": { "label": "Turku University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 2, "nansi-degree": 19, "x": -585.5997924804688, "y": 73.39936828613281 } }, { "key": "1563", "attributes": { "label": "Tampere University of Technology", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 2, "nansi-degree": 39, "x": -454.4499206542969, "y": 6.059544563293457 } }, { "key": "1564", "attributes": { "label": "MTV2", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -844.7481079101562, "y": -543.3080444335938 } }, { "key": "1565", "attributes": { "label": "TV3", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -571.7669677734375, "y": 1310.35498046875 } }, { "key": "1566", "attributes": { "label": "Telewizja Polska S.A.", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -508.845458984375, "y": -697.6973266601562 } }, { "key": "1567", "attributes": { "label": "Tartu University, Institute of Molecular and Cell Biology", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -375.34478759765625, "y": 990.3945922851562 } }, { "key": "1569", "attributes": { "label": "University of Szeged", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 29, "x": -757.2232666015625, "y": -319.74774169921875 } }, { "key": "157", "attributes": { "label": "Rigas Arvanitis -Ouvaton", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 1084.656982421875, "y": 26.865604400634766 } }, { "key": "1570", "attributes": { "label": "Universiteit Antwerpen", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 76, "x": 219.78662109375, "y": 427.54559326171875 } }, { "key": "1571", "attributes": { "label": "Universidade do Algarve", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -12.887153625488281, "y": -206.9086151123047 } }, { "key": "1572", "attributes": { "label": "Universitair Bedrijven Centrum Antwerpen", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 354.6163024902344, "y": 555.6272583007812 } }, { "key": "1573", "attributes": { "label": "Universidade da Beira Interior", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -147.00071716308594, "y": -118.6221923828125 } }, { "key": "1579", "attributes": { "label": "University of Montenegro", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 22, "x": 595.1566772460938, "y": -1000.5730590820312 } }, { "key": "158", "attributes": { "label": "Astro ring Orion", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -212.9225616455078, "y": -1023.5863037109375 } }, { "key": "1580", "attributes": { "label": "Université catholique de Louvain", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 69, "x": 519.9447021484375, "y": 191.67144775390625 } }, { "key": "1581", "attributes": { "label": "University of Chemical Technology and Metallurgy - UCTM", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 42, "x": 108.0069580078125, "y": -787.234619140625 } }, { "key": "1582", "attributes": { "label": "University of Debrecen Medical studies", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -834.0195922851562, "y": -543.5045776367188 } }, { "key": "1584", "attributes": { "label": "University of Economics - Varna", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 29, "x": 55.378414154052734, "y": -956.1098022460938 } }, { "key": "1585", "attributes": { "label": "Uniwersytet Ekonomiczny we Wrocławiu", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -77.48096466064453, "y": -237.1759796142578 } }, { "key": "1586", "attributes": { "label": "Universidade de Évora", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 210.91468811035156, "y": -366.17242431640625 } }, { "key": "1588", "attributes": { "label": "Universiteit Gent", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 68, "x": 221.4568328857422, "y": 265.9606628417969 } }, { "key": "1589", "attributes": { "label": "Universiteit Hasselt", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 46, "x": 246.1775665283203, "y": 343.5479431152344 } }, { "key": "1591", "attributes": { "label": "Université de nancy", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 12, "nansi-degree": 13, "x": 629.3179931640625, "y": -227.2940673828125 } }, { "key": "1593", "attributes": { "label": "The Union of Information Technology Enterprises of Armenia ", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -592.6405029296875, "y": -1437.962158203125 } }, { "key": "1594", "attributes": { "label": "Jagiellonian University in Krakow", "country": "Poland", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 31, "x": -245.7113800048828, "y": -333.8826904296875 } }, { "key": "1596", "attributes": { "label": "Uniwersytet Humanistyczno – Przyrodniczy Jana Kochanowskiego w Kielcach", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -325.4012145996094, "y": -303.1820983886719 } }, { "key": "1597", "attributes": { "label": "Uniwersytet Kardynała Stefana Wyszyńskiego w Warszawie", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -146.32736206054688, "y": -524.390625 } }, { "key": "1598", "attributes": { "label": "University of Kuopio", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 36, "x": -509.6044006347656, "y": 159.08836364746094 } }, { "key": "1599", "attributes": { "label": "Uniwersytet Kazimierza Wielkiego w Bydgoszczy", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -451.0397033691406, "y": -274.49688720703125 } }, { "key": "16", "attributes": { "label": "Bio.topvisia.net", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 219.50096130371094, "y": -555.6167602539062 } }, { "key": "160", "attributes": { "label": "Earth Science Collections Information System", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -811.0653686523438, "y": 1104.8232421875 } }, { "key": "1601", "attributes": { "label": "University of Lapland", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -438.66339111328125, "y": 191.50827026367188 } }, { "key": "1602", "attributes": { "label": "Université libre de Bruxelles", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 117, "x": 421.549072265625, "y": 78.84708404541016 } }, { "key": "1603", "attributes": { "label": "Université de Liège", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 43, "x": 481.76611328125, "y": 100.04422760009766 } }, { "key": "1605", "attributes": { "label": "Uniwersytet Marii Curie-Skłodowskiej w Lublinie", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 58, "x": -304.1623840332031, "y": -522.3775634765625 } }, { "key": "1606", "attributes": { "label": "Scince Festival of Maria Curie-Skolodowska University", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -418.497802734375, "y": -621.6605834960938 } }, { "key": "1607", "attributes": { "label": "Université de Mons-Hainaut", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 47, "x": 587.740478515625, "y": 126.91370391845703 } }, { "key": "1608", "attributes": { "label": "Universidade do Minho", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 16.996456146240234, "y": -335.2051696777344 } }, { "key": "1609", "attributes": { "label": "Nicolaus Copernicus University", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "1", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "1", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 30, "x": -286.46075439453125, "y": -255.34866333007812 } }, { "key": "1610", "attributes": { "label": "UNIDO", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -707.6314697265625, "y": -1210.5057373046875 } }, { "key": "1611", "attributes": { "label": "United Nations Development Programme Representation In Armenia", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -656.1390991210938, "y": -1254.0655517578125 } }, { "key": "1612", "attributes": { "label": "Corvinus University", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 47, "x": -420.32080078125, "y": -195.14224243164062 } }, { "key": "1614", "attributes": { "label": "Sofia University 'St. Kliment Ohridski'", "country": "Bulgaria", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 2, "nansi-degree": 53, "x": 63.561744689941406, "y": -701.9471435546875 } }, { "key": "1615", "attributes": { "label": "D.A.Tsenov Academy of Economics ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 29, "x": 102.50110626220703, "y": -958.6951904296875 } }, { "key": "1616", "attributes": { "label": "Trakia University – Stara Zagora ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": 138.44261169433594, "y": -926.4766235351562 } }, { "key": "1617", "attributes": { "label": "St. Cyril and St. Methodius University of Veliko Tarnovo ", "country": "Bulgaria", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 34, "x": -28.228036880493164, "y": -597.7153930664062 } }, { "key": "1618", "attributes": { "label": "Uniwersytet Łódzki", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": -321.33978271484375, "y": -346.65728759765625 } }, { "key": "1619", "attributes": { "label": "Uniwersytet Opolski", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -411.2427062988281, "y": -578.2654418945312 } }, { "key": "162", "attributes": { "label": "Blog de Sylvestre Huet", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": 1103.2952880859375, "y": 48.12943649291992 } }, { "key": "1620", "attributes": { "label": "Uniwersytet Wrocławski", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -300.1487121582031, "y": -317.2596740722656 } }, { "key": "1621", "attributes": { "label": "université de sofia antipolis", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": 726.3238525390625, "y": -141.30609130859375 } }, { "key": "1622", "attributes": { "label": "University of Debrecen", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 4, "nansi-degree": 25, "x": -741.8450927734375, "y": -402.7874450683594 } }, { "key": "1623", "attributes": { "label": "Unifai", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 17, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -19.477792739868164, "y": -1802.6832275390625 } }, { "key": "1624", "attributes": { "label": "Mediteran University", "country": "Montenegro", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 548.1380615234375, "y": -634.5892944335938 } }, { "key": "1625", "attributes": { "label": "Universidade Aberta", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 179.4815673828125, "y": -269.48577880859375 } }, { "key": "1626", "attributes": { "label": "Uniwersytet Rzeszowski", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 34, "x": -364.33062744140625, "y": -477.3076477050781 } }, { "key": "1627", "attributes": { "label": "Universidade Autonoma de Lisboa", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 348.34149169921875, "y": -346.8160705566406 } }, { "key": "1628", "attributes": { "label": "CCSTI du Rhône", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1110.798828125, "y": -72.08159637451172 } }, { "key": "1629", "attributes": { "label": "Université des femmes", "country": "Belgium", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 34.977622985839844, "y": 352.4789733886719 } }, { "key": "163", "attributes": { "label": "CCSTI de Bourgogne", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 22, "x": 1215.267333984375, "y": -270.7562255859375 } }, { "key": "1630", "attributes": { "label": "University for the Common Good", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 425.06890869140625, "y": 744.6050415039062 } }, { "key": "1631", "attributes": { "label": "University of National and World Economy", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 31, "x": 40.80896759033203, "y": -917.8065185546875 } }, { "key": "1632", "attributes": { "label": "Poznan University of Life Sciences", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 32, "x": -206.55552673339844, "y": -330.5170593261719 } }, { "key": "1636", "attributes": { "label": "URSIT Ltd.", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 50.62145233154297, "y": -1183.768310546875 } }, { "key": "1637", "attributes": { "label": "Uniwersytet Śląski w Katowicach", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 36, "x": -197.88720703125, "y": -422.673095703125 } }, { "key": "1638", "attributes": { "label": "Uniwersytet Szczecinski", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": -345.2992248535156, "y": -494.0458679199219 } }, { "key": "1639", "attributes": { "label": "Zachodniopomorskie Science Festival", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -419.7519226074219, "y": -653.4544067382812 } }, { "key": "164", "attributes": { "label": "Fondation sciences citoyennes", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 37, "x": 1082.730712890625, "y": 183.4190216064453 } }, { "key": "1640", "attributes": { "label": "Union of Scientists in Bulgaria", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 33, "x": 185.9997100830078, "y": -776.0753784179688 } }, { "key": "1645", "attributes": { "label": "University of Tampere", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 84, "x": -505.989990234375, "y": 68.67021942138672 } }, { "key": "1646", "attributes": { "label": "Universidade de Trás os Montes e Alto Douro", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 45.5662841796875, "y": -288.5049133300781 } }, { "key": "1647", "attributes": { "label": "Universidade Tecnica de Lisboa", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 250.98097229003906, "y": -449.09521484375 } }, { "key": "1649", "attributes": { "label": "Uniwersytet Technologiczno-Przyrodniczy im. J.J.Śniadeckich w Bydgoszczy", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -267.2545471191406, "y": -413.00714111328125 } }, { "key": "165", "attributes": { "label": "Scienza per tutti", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 799.4406127929688, "y": -478.2388610839844 } }, { "key": "1650", "attributes": { "label": "University of Turku", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 65, "x": -535.2805786132812, "y": 122.71222686767578 } }, { "key": "1651", "attributes": { "label": "Centre of Recycling", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": -666.6171264648438, "y": 1210.7506103515625 } }, { "key": "1652", "attributes": { "label": "The University of Warsaw", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 49, "x": -283.71270751953125, "y": -350.2450866699219 } }, { "key": "1653", "attributes": { "label": "University of Vaasa", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 63, "x": -399.98834228515625, "y": 93.99522399902344 } }, { "key": "1654", "attributes": { "label": "Uniwersytet w Białymstoku", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": -349.60968017578125, "y": -444.1611633300781 } }, { "key": "1655", "attributes": { "label": "Uniwersytet Warmińsko-Mazurski w Olsztynie", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 25, "x": -247.32080078125, "y": -294.7626647949219 } }, { "key": "1656", "attributes": { "label": "Uniwesytet Zielonogórski", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -357.6795349121094, "y": -407.03814697265625 } }, { "key": "1657", "attributes": { "label": "Business ethics", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -1227.145263671875, "y": -301.6065979003906 } }, { "key": "1659", "attributes": { "label": "VaBIO - The Virginia Biotechnology Association", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "1", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 320.8256530761719, "y": 946.3250122070312 } }, { "key": "166", "attributes": { "label": "Sens commun", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 1029.7353515625, "y": -19.0911865234375 } }, { "key": "1660", "attributes": { "label": "Veterinary and agrochemical research centre (VAR)", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 22, "x": 471.7640686035156, "y": 543.1786499023438 } }, { "key": "1661", "attributes": { "label": "Government Institute for Economic Research (VATT) ", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -620.9655151367188, "y": 271.4243469238281 } }, { "key": "1663", "attributes": { "label": "Védegylet", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -1195.771484375, "y": -395.9530334472656 } }, { "key": "1664", "attributes": { "label": "Haridusmeedia - sciencemedia portal", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -342.4219055175781, "y": 1043.088134765625 } }, { "key": "1665", "attributes": { "label": "Veolia Environnement", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "1", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 1036.1556396484375, "y": 141.53802490234375 } }, { "key": "1666", "attributes": { "label": "Verde Nero", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 704.7050170898438, "y": -738.88525390625 } }, { "key": "1667", "attributes": { "label": "Vesilind", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -504.9711608886719, "y": 1297.3704833984375 } }, { "key": "1669", "attributes": { "label": " Varna Free University", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": 65.26335144042969, "y": -984.8464965820312 } }, { "key": "1670", "attributes": { "label": "Viaspher Technopork", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -618.1714477539062, "y": -1523.7587890625 } }, { "key": "1671", "attributes": { "label": "VIB", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 44, "x": 295.23040771484375, "y": 528.77685546875 } }, { "key": "1672", "attributes": { "label": "VIBES in Bioesciences 2008", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 298.9626770019531, "y": 674.8165283203125 } }, { "key": "1673", "attributes": { "label": "Video Scienza", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 852.4173583984375, "y": -465.26031494140625 } }, { "key": "1675", "attributes": { "label": "Viidumäe Nature Reserv", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -802.4912719726562, "y": 837.0806274414062 } }, { "key": "1676", "attributes": { "label": "Vijesti", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 771.7255859375, "y": -1100.29833984375 } }, { "key": "1678", "attributes": { "label": "Vilsandi National Park", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -799.9923095703125, "y": 908.824462890625 } }, { "key": "168", "attributes": { "label": "Department of Excited State Spectroscopy, Institute of Low Temperature and Structure Research Polish Academy of Sciences", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -868.6148071289062, "y": -987.2122192382812 } }, { "key": "1680", "attributes": { "label": "Le Visiatome - Commissariat à l'énergie atomique", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1444.576416015625, "y": -231.4226837158203 } }, { "key": "1681", "attributes": { "label": "Visionarium Europarque", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 576.1121826171875, "y": -377.55706787109375 } }, { "key": "1684", "attributes": { "label": "Flemish Institute for technological research", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 28, "x": 394.20806884765625, "y": 439.15106201171875 } }, { "key": "1685", "attributes": { "label": "Vivagora", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 28, "x": 1118.7230224609375, "y": 125.26123046875 } }, { "key": "1686", "attributes": { "label": "VivantInfo", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 925.3213500976562, "y": 3.144224166870117 } }, { "key": "1687", "attributes": { "label": "Vlaams Instituut voor Wetenschappelijk en Technologisch Aspectenonderzoek", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": 353.4745178222656, "y": 575.9472045898438 } }, { "key": "1690", "attributes": { "label": "Vlaamse Interuniversitaire Raad", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 16, "x": 267.70574951171875, "y": 420.27386474609375 } }, { "key": "1691", "attributes": { "label": "FLANDERS MARINE INSTITUTE", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": 400.77410888671875, "y": 401.1495361328125 } }, { "key": "1692", "attributes": { "label": "Higher education Portal", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 23, "x": 7.122653961181641, "y": -944.0445556640625 } }, { "key": "1695", "attributes": { "label": "Vooremaa Landscape Reserv", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -972.259033203125, "y": 1007.36083984375 } }, { "key": "1696", "attributes": { "label": "Vraiment durable", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 1188.65380859375, "y": 306.3116149902344 } }, { "key": "1697", "attributes": { "label": "Vredeseilanden", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 892.3333129882812, "y": 641.3698120117188 } }, { "key": "1698", "attributes": { "label": "Vrouwenraad", "country": "Belgium", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 214.4569549560547, "y": 588.2311401367188 } }, { "key": "1699", "attributes": { "label": "Vlaamse Raad voor Wetenschapsbeleid", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 274.5209655761719, "y": 553.2724609375 } }, { "key": "17", "attributes": { "label": "Système d'informations sur la biodiversité en Wallonie", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": 663.2010498046875, "y": 302.70867919921875 } }, { "key": "1701", "attributes": { "label": "Ostrava Science and Technology Park", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 685.94482421875, "y": -603.3539428710938 } }, { "key": "1703", "attributes": { "label": "VTT Technical Research Center of Finland ", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 38, "x": -307.0992126464844, "y": 211.52081298828125 } }, { "key": "1704", "attributes": { "label": "Vrije Universiteit Brussel", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 95, "x": 308.4148254394531, "y": 338.32586669921875 } }, { "key": "1705", "attributes": { "label": "Research Institute of Pedagogy", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -263.22650146484375, "y": -519.4537963867188 } }, { "key": "1706", "attributes": { "label": "Research institute of Textile Machines Liberec", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 19.355873107910156, "y": 133.69058227539062 } }, { "key": "1707", "attributes": { "label": " High School \"Vukadin Vukadinović\"", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 650.7162475585938, "y": -1204.039306640625 } }, { "key": "1708", "attributes": { "label": "Vapramäe Vellavere Vitipalu Foundation", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -686.8232421875, "y": 1031.04296875 } }, { "key": "1712", "attributes": { "label": "West Pannonia Regional Development Agency", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": -890.50341796875, "y": -311.1304931640625 } }, { "key": "1713", "attributes": { "label": "Wetenschap en ethiek", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 302.2412414550781, "y": 739.2255249023438 } }, { "key": "1714", "attributes": { "label": "Wetenschapscafe", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 279.9123840332031, "y": 486.18328857421875 } }, { "key": "1715", "attributes": { "label": "Wetenschapswinkel", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": 269.6387634277344, "y": 395.6678161621094 } }, { "key": "1717", "attributes": { "label": "Akademia im. Jana Długosza w Częstochowie", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -222.9886932373047, "y": -636.6555786132812 } }, { "key": "1718", "attributes": { "label": "Wyższa Szkoła Przedsiębiorczości i Zarządzania im. Leona Koźmińskiego ", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -70.11051177978516, "y": -406.47247314453125 } }, { "key": "1719", "attributes": { "label": "Military Institute of Chemistry and Radiometry", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -254.8743133544922, "y": -614.4625244140625 } }, { "key": "1720", "attributes": { "label": "WWF", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 21, "x": 1068.9560546875, "y": 227.68067932128906 } }, { "key": "1722", "attributes": { "label": "Yerevan Automated Control Systems Scientific Research Institute", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -433.845458984375, "y": -1221.616455078125 } }, { "key": "1724", "attributes": { "label": "Yerevan Physics Institute", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -423.5951232910156, "y": -1054.4808349609375 } }, { "key": "1725", "attributes": { "label": "Yerevan Telecommunication Research Institute CJSC ", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -608.2272338867188, "y": -1442.33837890625 } }, { "key": "1726", "attributes": { "label": "Yksityiset keskusarkistot ry", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -776.4025268554688, "y": 320.7822570800781 } }, { "key": "1727", "attributes": { "label": "Agrifood Research Finland ", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 38, "x": -427.40380859375, "y": 314.66705322265625 } }, { "key": "1728", "attributes": { "label": "Yerevan State Medical M.Heratsi University", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -481.5342102050781, "y": -1166.2432861328125 } }, { "key": "1730", "attributes": { "label": "Yerevan State University", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 2, "nansi-degree": 18, "x": -403.5560607910156, "y": -1071.0308837890625 } }, { "key": "1731", "attributes": { "label": "Frog on the source", "country": "Czech Republic", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -697.2344360351562, "y": -765.1896362304688 } }, { "key": "1734", "attributes": { "label": "Bureau for Educational Services", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 658.7117309570312, "y": -1103.8402099609375 } }, { "key": "1735", "attributes": { "label": "Commission for Nature Conservation of the Estonian Academy of Sciences", "country": "Estonia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -556.5934448242188, "y": 631.0880737304688 } }, { "key": "1737", "attributes": { "label": "ZeroEmission", "country": "Italy", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 794.365478515625, "y": -842.2733154296875 } }, { "key": "1738", "attributes": { "label": "Zeus News", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 766.2415161132812, "y": -606.7900390625 } }, { "key": "1739", "attributes": { "label": "Mendel University of Agriculture and … (Lednice)", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 157.53294372558594, "y": -585.795654296875 } }, { "key": "174", "attributes": { "label": "Speels maar serieus", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 11, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 492.9739685058594, "y": 1025.4783935546875 } }, { "key": "1742", "attributes": { "label": "Znam.bg", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 233.8246612548828, "y": -1083.1761474609375 } }, { "key": "1745", "attributes": { "label": "Centrum Badań Kosmicznych PAN", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -412.6556396484375, "y": -729.10009765625 } }, { "key": "1748", "attributes": { "label": "FNRS", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": 356.215576171875, "y": 48.70261764526367 } }, { "key": "1749", "attributes": { "label": "Technical University of Lodz", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": -158.37612915039062, "y": -224.49166870117188 } }, { "key": "175", "attributes": { "label": "National educational portal", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 226.1107635498047, "y": -1034.1624755859375 } }, { "key": "1751", "attributes": { "label": "Young Talents Competition", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 233.9818878173828, "y": -872.90771484375 } }, { "key": "1752", "attributes": { "label": "Youth Academy", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -173.35504150390625, "y": -562.0011596679688 } }, { "key": "176", "attributes": { "label": "Stijns filosofie blog", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 11, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": 455.4211730957031, "y": 977.44384765625 } }, { "key": "177", "attributes": { "label": "Stimulus", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 339.01214599609375, "y": 520.8943481445312 } }, { "key": "18", "attributes": { "label": "BioinfoBank Institute", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -270.8796691894531, "y": -572.5568237304688 } }, { "key": "180", "attributes": { "label": "Tatoufaux.com", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 1071.635498046875, "y": -4.129275798797607 } }, { "key": "181", "attributes": { "label": "TTU Science Portal", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -323.77496337890625, "y": 635.9274291992188 } }, { "key": "182", "attributes": { "label": "School of technology", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -473.8494567871094, "y": 766.4591674804688 } }, { "key": "183", "attributes": { "label": "Project \"Hello Spring!\"", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 25, "x": -724.0647583007812, "y": 1103.4708251953125 } }, { "key": "184", "attributes": { "label": "E-learning pandémie de grippe", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 581.7997436523438, "y": 823.8759765625 } }, { "key": "188", "attributes": { "label": "László Radácsi", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -1320.2813720703125, "y": -281.41400146484375 } }, { "key": "189", "attributes": { "label": "Business ethics", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -1221.053466796875, "y": -284.5894470214844 } }, { "key": "19", "attributes": { "label": "University of Agriculture in Szczecin", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -681.021728515625, "y": -758.77685546875 } }, { "key": "190", "attributes": { "label": "Vikerraadio", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -430.3738708496094, "y": 1229.7318115234375 } }, { "key": "191", "attributes": { "label": "Centro de Ciência Viva de Vila do Conde", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 513.0595703125, "y": -339.383056640625 } }, { "key": "192", "attributes": { "label": "Psicobiologia", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 758.4424438476562, "y": -599.3875122070312 } }, { "key": "194", "attributes": { "label": "Department Of Marketing Communicatioin Tomas Bata University Zlin", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -206.19561767578125, "y": 209.49798583984375 } }, { "key": "195", "attributes": { "label": "EUMENT-NET project ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -113.44453430175781, "y": -573.9983520507812 } }, { "key": "2", "attributes": { "label": "FP7 in Bulgaria", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 172.21658325195312, "y": -941.4039916992188 } }, { "key": "20", "attributes": { "label": "Centre for Molecular Biology and Biotechnology", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -748.5873413085938, "y": -839.0770263671875 } }, { "key": "201", "attributes": { "label": "Noord-Zuid portall", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 27, "x": 689.0066528320312, "y": 639.1979370117188 } }, { "key": "203", "attributes": { "label": "Tartu Observatory (Tõravere)", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 38, "x": -519.6080322265625, "y": 790.3579711914062 } }, { "key": "204", "attributes": { "label": "Agricultural Biotechnology Center", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -178.4145050048828, "y": 37.90584945678711 } }, { "key": "206", "attributes": { "label": "Åbo Akademi University", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 47, "x": -595.130126953125, "y": 145.0067138671875 } }, { "key": "207", "attributes": { "label": "Association of the British Pharmaceutical Industry (ABPI)", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 418.61334228515625, "y": 1165.0206298828125 } }, { "key": "208", "attributes": { "label": "Academia Belgica", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": 373.8768310546875, "y": 301.44659423828125 } }, { "key": "209", "attributes": { "label": "Youth Academy Portal", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 29, "x": -407.8245544433594, "y": -884.9714965820312 } }, { "key": "21", "attributes": { "label": "Silesian University of Technology", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "1", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 335.69512939453125, "y": -663.1010131835938 } }, { "key": "211", "attributes": { "label": "Accademia Nazionale delle Scienze", "country": "Italy", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 2, "nansi-degree": 3, "x": 561.84033203125, "y": -518.3246459960938 } }, { "key": "212", "attributes": { "label": "Armenian Center For Contemporary Experimental Art Fund", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -489.38031005859375, "y": -1088.675537109375 } }, { "key": "213", "attributes": { "label": "Accord Wallonie", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 706.5078735351562, "y": 298.5733947753906 } }, { "key": "214", "attributes": { "label": "ACODEV", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 27, "x": 703.6248168945312, "y": 459.16192626953125 } }, { "key": "215", "attributes": { "label": "Armenian Center for Scientific and Technological Information", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -536.9076538085938, "y": -1121.52978515625 } }, { "key": "216", "attributes": { "label": "Act for Armenia", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -278.05035400390625, "y": -1296.477294921875 } }, { "key": "217", "attributes": { "label": "Ada (Women and new technologies)", "country": "Belgium", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": 330.9557800292969, "y": 443.9557800292969 } }, { "key": "218", "attributes": { "label": "Armenian Development agency", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -642.8834228515625, "y": -1332.6822509765625 } }, { "key": "219", "attributes": { "label": "Akademia Ekonomiczna im. Karola Adamieckigo w Katowicach", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -305.4119873046875, "y": -408.30328369140625 } }, { "key": "22", "attributes": { "label": "BIOGM", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1133.5792236328125, "y": 55.08481979370117 } }, { "key": "220", "attributes": { "label": "Akademia Ekonomiczna w Poznaniu ", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -345.5636901855469, "y": 55.448143005371094 } }, { "key": "221", "attributes": { "label": "Armenian-European Policy & Legal Advise Center", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -506.04095458984375, "y": -1049.010986328125 } }, { "key": "222", "attributes": { "label": "Belgian Institute for Space Aeronomy", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 19, "x": 558.2962646484375, "y": 376.3531494140625 } }, { "key": "223", "attributes": { "label": "Armenian Engeneers and Scientist of America", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -280.29266357421875, "y": -1315.9090576171875 } }, { "key": "224", "attributes": { "label": "A fond la Science Ballancourt (91)", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 1151.240234375, "y": -248.77227783203125 } }, { "key": "225", "attributes": { "label": "Royal Museum for Central Africa", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 44, "x": 535.3467407226562, "y": 352.04534912109375 } }, { "key": "226", "attributes": { "label": "Food Agency", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": 435.2275695800781, "y": 593.4057006835938 } }, { "key": "227", "attributes": { "label": "Armenian General Benevolent Union", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -483.0914001464844, "y": -1249.612548828125 } }, { "key": "228", "attributes": { "label": "Akademia Górniczo-Hutnicza im. Stanisława Staszica w Krakowie", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 2, "nansi-degree": 30, "x": -416.1178894042969, "y": -528.8106079101562 } }, { "key": "229", "attributes": { "label": "Centro di eccellenza delle scienze dell'invecchiamento", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 738.0128784179688, "y": -600.8933715820312 } }, { "key": "230", "attributes": { "label": "CCSTI - Agora des sciences - 13 Marseille", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1259.04150390625, "y": -282.3305358886719 } }, { "key": "231", "attributes": { "label": "Agoravox", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 862.7730102539062, "y": -105.32059478759766 } }, { "key": "232", "attributes": { "label": "Agricultural Information Service", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": 493.8092041015625, "y": 504.41766357421875 } }, { "key": "234", "attributes": { "label": "Walloon Agrobiopole", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 748.2330932617188, "y": 294.3889465332031 } }, { "key": "235", "attributes": { "label": "Agrobiosciences", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 46, "x": 1167.072265625, "y": 51.42400360107422 } }, { "key": "236", "attributes": { "label": "AgroParisTech,", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": 831.2501220703125, "y": 81.44786071777344 } }, { "key": "237", "attributes": { "label": "Agropolis International", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 25, "x": 931.63916015625, "y": 42.483673095703125 } }, { "key": "238", "attributes": { "label": "Science Centre AHHAA", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 36, "x": -278.6709899902344, "y": 767.6278076171875 } }, { "key": "239", "attributes": { "label": "Associazione italiana per l'agricoltura biologica", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 364.7835388183594, "y": -310.4730529785156 } }, { "key": "24", "attributes": { "label": "ENS LSH Lyon", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 1295.19775390625, "y": -44.055763244628906 } }, { "key": "241", "attributes": { "label": "Ajujaht", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -358.0206298828125, "y": 1105.2760009765625 } }, { "key": "242", "attributes": { "label": "The Academy of Finland", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 88, "x": -482.199462890625, "y": 209.7353973388672 } }, { "key": "243", "attributes": { "label": "Estonian Academy of Sciencese", "country": "Estonia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 31, "x": -474.5119323730469, "y": 581.350341796875 } }, { "key": "244", "attributes": { "label": "Students science journal Akadeemiake", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -340.4720153808594, "y": 1177.6827392578125 } }, { "key": "245", "attributes": { "label": "Gdynia Aquarium, Sea Fisheries Institute", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 310.4970397949219, "y": -285.1820373535156 } }, { "key": "247", "attributes": { "label": "Alam-Pedja Nature Reserve", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -941.7756958007812, "y": 957.7078247070312 } }, { "key": "248", "attributes": { "label": "ALTEC - CCSTI de l'Ain", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 1207.9007568359375, "y": -238.43240356445312 } }, { "key": "249", "attributes": { "label": "Centro Ciência Viva do Alviela", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 533.1941528320312, "y": -353.4002685546875 } }, { "key": "25", "attributes": { "label": "Centre Agricole pour le Développement des Céréales et des Oléoprotéagineux", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 740.8851318359375, "y": 415.23779296875 } }, { "key": "250", "attributes": { "label": "Arvutimaailm", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -604.6084594726562, "y": 698.3731689453125 } }, { "key": "251", "attributes": { "label": "Centro de Ciência Viva da Amadora", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 487.3912658691406, "y": -286.4728088378906 } }, { "key": "252", "attributes": { "label": "Amazone", "country": "Belgium", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 133.5887451171875, "y": 549.6538696289062 } }, { "key": "253", "attributes": { "label": "Ambernet sp. z o.o.", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -579.4818725585938, "y": -809.1505737304688 } }, { "key": "255", "attributes": { "label": "Armenian Chamber of Commerce", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -689.2511596679688, "y": -1251.590087890625 } }, { "key": "256", "attributes": { "label": "AMCSTI", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": 1176.3204345703125, "y": -270.1763916015625 } }, { "key": "257", "attributes": { "label": "\"AMERIA\" CJSC ", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": -676.561767578125, "y": -1280.3037109375 } }, { "key": "258", "attributes": { "label": "Les Amis de la Terre", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 34, "x": 1008.30859375, "y": 319.6874084472656 } }, { "key": "26", "attributes": { "label": "Cafe Del Montenegro", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 803.644775390625, "y": -1135.78125 } }, { "key": "264", "attributes": { "label": "Futuris/ANRT", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 1124.9854736328125, "y": 34.85694885253906 } }, { "key": "265", "attributes": { "label": "Antiche ville ", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1265.227783203125, "y": -519.8276977539062 } }, { "key": "266", "attributes": { "label": "Akademia Pedagogiczna im. Komisji Edukacji Narodowej w Krakowie", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -297.3348388671875, "y": -429.0562438964844 } }, { "key": "267", "attributes": { "label": "Akademia Podlaska w Siedlcach", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -201.94290161132812, "y": -466.12548828125 } }, { "key": "269", "attributes": { "label": "Äripäev", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 23, "x": -478.68548583984375, "y": 1145.5986328125 } }, { "key": "27", "attributes": { "label": "Centrum voor Duurzame Ontwikkeling", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 431.606201171875, "y": 498.1976013183594 } }, { "key": "271", "attributes": { "label": "Akademia Pedagogiki Specjalnej im. Marii Grzegorzewskiej w Warszawie", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -172.2371063232422, "y": -331.009765625 } }, { "key": "272", "attributes": { "label": "Aquarium Porte Dorée (Paris)", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1183.76513671875, "y": -73.96968078613281 } }, { "key": "273", "attributes": { "label": "Uniwersytet Rolniczy im. Hugona Kołłątaja w Krakowie", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -198.9923095703125, "y": -373.8671569824219 } }, { "key": "274", "attributes": { "label": "Uniwersytet Przyrodniczy w Lublinie", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -234.6936798095703, "y": -593.8203125 } }, { "key": "275", "attributes": { "label": "Uniwersytet Przyrodniczy we Wrocławiu", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -409.87939453125, "y": -406.4702453613281 } }, { "key": "276", "attributes": { "label": "Aravot Oratert", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -589.989013671875, "y": -1037.40576171875 } }, { "key": "277", "attributes": { "label": "Arbeid in Beeld", "country": "Belgium", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 146.5264892578125, "y": 417.8793029785156 } }, { "key": "279", "attributes": { "label": "Arcada", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": -680.7343139648438, "y": 119.38642120361328 } }, { "key": "280", "attributes": { "label": "L'Arche des métiers (LE Cheylard – 07)", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 1355.639404296875, "y": -241.15695190429688 } }, { "key": "281", "attributes": { "label": "Archimede Foundation", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -397.56378173828125, "y": 861.7759399414062 } }, { "key": "282", "attributes": { "label": "Archimede", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 700.2117309570312, "y": -443.7733459472656 } }, { "key": "283", "attributes": { "label": "Archipel des sciences -97 Lamentin", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1336.97216796875, "y": -228.81948852539062 } }, { "key": "286", "attributes": { "label": "Arhipelaag", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -845.2952880859375, "y": 1096.22802734375 } }, { "key": "287", "attributes": { "label": "Faculty of Architecture", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 694.9645385742188, "y": -1078.9493408203125 } }, { "key": "288", "attributes": { "label": "ACADEMIE ROYALE DE MEDECINE DE BELGIQUE", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 19, "x": 495.575927734375, "y": 292.9342346191406 } }, { "key": "289", "attributes": { "label": "Ministry of Foreign Affairs of RA", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -584.56494140625, "y": -1252.6202392578125 } }, { "key": "29", "attributes": { "label": "Centro de Estudos de Antroplogia Social - ISCTE", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 82.93086242675781, "y": -79.20264434814453 } }, { "key": "290", "attributes": { "label": "Armenian Marketing Association ", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -553.413818359375, "y": -1097.4041748046875 } }, { "key": "291", "attributes": { "label": "Armenia Tree Project", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 2, "nansi-degree": 5, "x": -588.3385620117188, "y": -1201.5408935546875 } }, { "key": "292", "attributes": { "label": "Armenian High Technology Council of America", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -604.4796142578125, "y": -1473.3870849609375 } }, { "key": "294", "attributes": { "label": "State Council on Statistics", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -589.1878662109375, "y": -1114.599853515625 } }, { "key": "295", "attributes": { "label": "Association des revues scientifiques et culturelles", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 583.4269409179688, "y": 470.4635009765625 } }, { "key": "298", "attributes": { "label": "Armenian Sociological Association", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 3, "x": -865.7821044921875, "y": -736.6549682617188 } }, { "key": "299", "attributes": { "label": "Agency for Sustainable Development and Eurointegration – ECOREGIONS (ASDE)", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 18, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 452.7750244140625, "y": -1390.0203857421875 } }, { "key": "30", "attributes": { "label": "Institute of Chemical Physics", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -356.3520812988281, "y": -1332.717529296875 } }, { "key": "300", "attributes": { "label": "ASEBIO", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 348.3515930175781, "y": 978.9342651367188 } }, { "key": "301", "attributes": { "label": "ASM Centrum Badan i Analiz Rynku sp. zo.o.", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "1", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -164.52798461914062, "y": -185.0025634765625 } }, { "key": "302", "attributes": { "label": "American Society for Microbiology", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 131.97198486328125, "y": 76.47784423828125 } }, { "key": "303", "attributes": { "label": "Austrian Science and Research Liaison Office (ASO) Sofia ", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 23, "x": 147.01071166992188, "y": -816.160888671875 } }, { "key": "304", "attributes": { "label": "Association pour l'étude du pic du pétrole et du gaz", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 847.6029052734375, "y": 368.2324523925781 } }, { "key": "306", "attributes": { "label": "Association of Science and Technology centers", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-degree": 15, "x": 548.8177490234375, "y": -143.1300811767578 } }, { "key": "307", "attributes": { "label": "Association scientifique et technique pour l'eau et l'environnement", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 1109.799560546875, "y": 194.96717834472656 } }, { "key": "308", "attributes": { "label": " Institute of Astronomy - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": 11.975074768066406, "y": -794.7824096679688 } }, { "key": "31", "attributes": { "label": "The Centre for European Integration, International Cooperation and Mobility (CEIICM) ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -137.6739044189453, "y": -711.9160766601562 } }, { "key": "310", "attributes": { "label": "University of Bielsko-Biala, Institute of Textile Engineering and Polymer Materials", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 20, "nansi-degree": 17, "x": -369.1380615234375, "y": -297.7712097167969 } }, { "key": "312", "attributes": { "label": "Les Atomes crochus ", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 1117.465576171875, "y": -280.3729248046875 } }, { "key": "313", "attributes": { "label": "Agricultural University – Plovdiv ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 34, "x": 58.25465393066406, "y": -765.6314697265625 } }, { "key": "314", "attributes": { "label": "American University of Armenia", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 2, "nansi-degree": 27, "x": -514.6643676757812, "y": -1197.4781494140625 } }, { "key": "316", "attributes": { "label": "Engineering Research Center AUA", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -530.4107055664062, "y": -1272.8258056640625 } }, { "key": "318", "attributes": { "label": "Center for Health Services Research and Development AUA", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -524.4503173828125, "y": -1298.9329833984375 } }, { "key": "319", "attributes": { "label": "American University in Bulgaria", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 35, "x": 87.59165954589844, "y": -921.32861328125 } }, { "key": "32", "attributes": { "label": "List of Budapest’s museums", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 16, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 255.49441528320312, "y": -1773.739501953125 } }, { "key": "321", "attributes": { "label": "AusBiotech", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": 319.3822021484375, "y": 815.3135375976562 } }, { "key": "323", "attributes": { "label": "Association Française pour l'Avancement des Sciences", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1391.4874267578125, "y": -72.06120300292969 } }, { "key": "324", "attributes": { "label": "Agence Wallonne des Télécommunications: le portail des Technologies de l'Information et de la Communication (TIC)", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 23, "x": 543.4061889648438, "y": 284.7657775878906 } }, { "key": "325", "attributes": { "label": "“The evening”", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -1085.737548828125, "y": -555.2514038085938 } }, { "key": "326", "attributes": { "label": "Azg Oratert", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -667.0244140625, "y": -1074.82177734375 } }, { "key": "327", "attributes": { "label": "Faculty Of Sciences, Dept. Of Biophysics Palacky University Olomouc", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -854.6909790039062, "y": -590.666748046875 } }, { "key": "328", "attributes": { "label": "Belgian American Educational Foundation", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 378.7932434082031, "y": 392.96490478515625 } }, { "key": "329", "attributes": { "label": "Bay Area Friends of Armenia", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -292.3975830078125, "y": -1230.24755859375 } }, { "key": "33", "attributes": { "label": "Biodiversity and climate change", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 742.28466796875, "y": 623.7332153320312 } }, { "key": "330", "attributes": { "label": "Byurakan Astrophysical Observatory", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -186.95518493652344, "y": -1093.875244140625 } }, { "key": "332", "attributes": { "label": "EBRD Business Advisory Services Programme in Armenia", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -713.1971435546875, "y": -1349.0859375 } }, { "key": "333", "attributes": { "label": "Bulgarian Academy of Sciences (BAS)", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 95, "x": 76.9251937866211, "y": -840.4570922851562 } }, { "key": "334", "attributes": { "label": "Centre for Innovations - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 157.73023986816406, "y": -1024.980224609375 } }, { "key": "335", "attributes": { "label": "Institute for Parallel Processing - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 122.45162963867188, "y": -1015.7605590820312 } }, { "key": "337", "attributes": { "label": "Institute of Folklore - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 149.47793579101562, "y": -1031.164794921875 } }, { "key": "338", "attributes": { "label": "National Center on Nanotechnology (NCNT) - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 191.2342071533203, "y": -1033.0167236328125 } }, { "key": "339", "attributes": { "label": "Belgian BioIndustries Association", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 398.347412109375, "y": 849.6602172851562 } }, { "key": "34", "attributes": { "label": "Clockylab", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 689.1519165039062, "y": -436.9234619140625 } }, { "key": "340", "attributes": { "label": "Belgian BioElectroMagnetic Group", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 569.2844848632812, "y": 216.35020446777344 } }, { "key": "341", "attributes": { "label": "The Bulgarian Biodiversity Foundation ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 128.3734130859375, "y": -1237.5228271484375 } }, { "key": "342", "attributes": { "label": "Bulgarian Chamber of Commerce and Industry ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 213.94947814941406, "y": -944.1707153320312 } }, { "key": "343", "attributes": { "label": "Business Council for Sustainable development in Hungary", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -1327.4669189453125, "y": -287.7098388671875 } }, { "key": "344", "attributes": { "label": "Belgian Science Policy", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 125, "x": 447.06475830078125, "y": 328.91693115234375 } }, { "key": "347", "attributes": { "label": "Burgas Free University ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 45, "x": 159.71319580078125, "y": -849.5728149414062 } }, { "key": "348", "attributes": { "label": "Nauka.bg", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -207.88668823242188, "y": -855.9948120117188 } }, { "key": "349", "attributes": { "label": "The Bulgarian Industrial Association ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 223.71095275878906, "y": -914.501953125 } }, { "key": "35", "attributes": { "label": "Centre for National Security and Defence Research (CNSDR) - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 142.6663360595703, "y": -1039.3409423828125 } }, { "key": "350", "attributes": { "label": "Bureau de Normalisation", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 557.1576538085938, "y": 559.4793090820312 } }, { "key": "351", "attributes": { "label": "Conseil consultatif de Biosécurité", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 487.91424560546875, "y": 662.6112060546875 } }, { "key": "352", "attributes": { "label": "BioBiznes.pl", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "1", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -216.03611755371094, "y": -672.8357543945312 } }, { "key": "353", "attributes": { "label": "Belgian Biodiversity platform", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 22, "x": 636.4622802734375, "y": 464.35186767578125 } }, { "key": "354", "attributes": { "label": "BIOEDIL", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 746.262451171875, "y": -608.77490234375 } }, { "key": "356", "attributes": { "label": "Bioenergybaltic", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -582.8463134765625, "y": 1176.482177734375 } }, { "key": "357", "attributes": { "label": "Bioethics Institute Ghent", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 166.90728759765625, "y": 539.969482421875 } }, { "key": "358", "attributes": { "label": "BIA - BioIndustry Association", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 362.2406005859375, "y": 939.457275390625 } }, { "key": "360", "attributes": { "label": "Biomedical Engineering Laboratory, Faculty of Chemical and Process Engineering - Warsaw University of Technology", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -278.2028503417969, "y": -631.7360229492188 } }, { "key": "361", "attributes": { "label": "Bio-mens", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 155.1175994873047, "y": 592.9644165039062 } }, { "key": "362", "attributes": { "label": "Bioneer.ee (Ecomedia)", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 56, "x": -621.266357421875, "y": 1110.4759521484375 } }, { "key": "363", "attributes": { "label": "Bionet online", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 473.14483642578125, "y": -152.49893188476562 } }, { "key": "364", "attributes": { "label": "Bio News", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 241.2095947265625, "y": -465.8298034667969 } }, { "key": "365", "attributes": { "label": "Tartu Biotechnology Park", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -360.6545715332031, "y": 1034.193359375 } }, { "key": "366", "attributes": { "label": "UNESCO Chair of Life Sciences", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 269.81121826171875, "y": -92.4770278930664 } }, { "key": "368", "attributes": { "label": "BELGIAN BIOSAFETY SERVER", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 21, "x": 451.3354797363281, "y": 498.5791320800781 } }, { "key": "369", "attributes": { "label": "BIOTECanada", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 399.62725830078125, "y": 814.2431030273438 } }, { "key": "370", "attributes": { "label": "Tartu University, Institute of Molecular and Cell Biology, Department of Biotechnology", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -373.1186828613281, "y": 1078.0634765625 } }, { "key": "371", "attributes": { "label": "NZBA New Zealand Biotechnology Association", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 378.31121826171875, "y": 1060.740966796875 } }, { "key": "372", "attributes": { "label": "University of Gdańsk", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 20.622417449951172, "y": -465.90728759765625 } }, { "key": "373", "attributes": { "label": "Biotechnolog.net", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "1", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -117.63444519042969, "y": -385.1816101074219 } }, { "key": "375", "attributes": { "label": "Biotechnologia.pl - serwis biotechnologiczny", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "1", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 240.52447509765625, "y": -602.3043823242188 } }, { "key": "376", "attributes": { "label": "Norwegian Bioindustry Association", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 365.3908996582031, "y": 869.7825317382812 } }, { "key": "377", "attributes": { "label": "Finnish National Advisory Board on Biotechnology", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 30, "x": -472.7360534667969, "y": 332.5547790527344 } }, { "key": "378", "attributes": { "label": "Bioteknolgia.info", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 36, "x": -357.1659240722656, "y": 218.88973999023438 } }, { "key": "38", "attributes": { "label": "Université de Pau et des Pays de l'Adour - Mission CST", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 1109.6552734375, "y": -212.16407775878906 } }, { "key": "380", "attributes": { "label": "Brussels Innovation Relay Centre", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -207.3674774169922, "y": -23.481489181518555 } }, { "key": "381", "attributes": { "label": "BIT, Magazine on Information Technologies ", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 854.8578491210938, "y": -1182.7115478515625 } }, { "key": "383", "attributes": { "label": "Bon beter leefmilieu", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": 642.3220825195312, "y": 573.2568969726562 } }, { "key": "385", "attributes": { "label": "Tartu University Institute of Ecology and Earth Sciences", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -609.9054565429688, "y": 990.307373046875 } }, { "key": "386", "attributes": { "label": "National Botanic Garden of Belgium", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 32, "x": 562.6930541992188, "y": 408.572509765625 } }, { "key": "387", "attributes": { "label": "Centro de Ciência Viva de Braganca", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 515.2687377929688, "y": -386.9750061035156 } }, { "key": "389", "attributes": { "label": "British Council Armenia", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -696.8674926757812, "y": -1322.992431640625 } }, { "key": "39", "attributes": { "label": "Cultus-H Training and Consulting Ltd.", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -1326.4603271484375, "y": -274.2333984375 } }, { "key": "390", "attributes": { "label": "Beautiful Science Project (British Council - Bulgaria)", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 290.7840270996094, "y": -798.6099853515625 } }, { "key": "391", "attributes": { "label": "British Council - Bulgaria", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 389.47027587890625, "y": -891.1563720703125 } }, { "key": "392", "attributes": { "label": "Bristish Council in Estonia", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -551.6041259765625, "y": 598.39501953125 } }, { "key": "393", "attributes": { "label": "Guide for Highschool Graduates", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 678.8432006835938, "y": -1059.6766357421875 } }, { "key": "394", "attributes": { "label": "Brussels Innova 2008", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 541.658935546875, "y": 606.275390625 } }, { "key": "395", "attributes": { "label": "Brussels Green Tech", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 627.7931518554688, "y": 382.68115234375 } }, { "key": "396", "attributes": { "label": "Business Support Center", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -663.5105590820312, "y": -1315.3197021484375 } }, { "key": "397", "attributes": { "label": "The Bulgarian News Agency (BTA)", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 106.36415100097656, "y": -749.2699584960938 } }, { "key": "398", "attributes": { "label": "Bourgas Prof. Assen Zlatarov University ", "country": "Bulgaria", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 97.98182678222656, "y": -1011.5227661132812 } }, { "key": "4", "attributes": { "label": "ADRECA - Association pour le développement d'une recherche citoyenne active (Grenoble)", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1195.9605712890625, "y": 219.89971923828125 } }, { "key": "40", "attributes": { "label": "Diffusion des sciences et techniques", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": 704.7644653320312, "y": 180.0735626220703 } }, { "key": "400", "attributes": { "label": "Bay Zoltán Foundation for Applied Research", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -954.4246215820312, "y": -372.7506103515625 } }, { "key": "401", "attributes": { "label": "Centre d'Economie et d'Ethique pour l'Environnement et le Développement,", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 844.3886108398438, "y": -11.887017250061035 } }, { "key": "403", "attributes": { "label": "Centre for Agrarian History", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 294.53228759765625, "y": 618.4255981445312 } }, { "key": "404", "attributes": { "label": "Ca m'interesse", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 1113.9451904296875, "y": 93.39136505126953 } }, { "key": "405", "attributes": { "label": "Centrum Astronomiczne im. M. Kopernika PAN", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -344.7281494140625, "y": -588.5742797851562 } }, { "key": "407", "attributes": { "label": "CANDLE", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -413.7989501953125, "y": -1140.697265625 } }, { "key": "408", "attributes": { "label": "Montenegrin Academy of Arts and Science", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": -43.41355895996094, "y": -379.6520080566406 } }, { "key": "409", "attributes": { "label": "Cap sciences - Bordeaux Aquitaine ", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 30, "x": 1073.1990966796875, "y": -198.33303833007812 } }, { "key": "411", "attributes": { "label": "Center for Agribusiness and Rural Development", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -653.2723999023438, "y": -1297.965087890625 } }, { "key": "412", "attributes": { "label": "CCNE", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 423.09234619140625, "y": -6.780133247375488 } }, { "key": "413", "attributes": { "label": "Galerie Eurêka- 73 Chambéry", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 1239.34619140625, "y": -115.40228271484375 } }, { "key": "414", "attributes": { "label": "A Meridiana - CCSTI de Corse", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 1280.260498046875, "y": -257.83892822265625 } }, { "key": "415", "attributes": { "label": "CCSTI Grenoble - La Casemate", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 26, "x": 979.6337280273438, "y": -93.45329284667969 } }, { "key": "416", "attributes": { "label": "Musée des sciences de Laval", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1325.834228515625, "y": -313.753173828125 } }, { "key": "417", "attributes": { "label": "Maison de la mer - CCSTI de Lorient", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 1283.982666015625, "y": -294.1828918457031 } }, { "key": "418", "attributes": { "label": "Centro de Ciência Viva do Algarve", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 548.630859375, "y": -332.8798522949219 } }, { "key": "419", "attributes": { "label": "Centro de Ciência Viva de Porto Moniz", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 478.8740234375, "y": -354.3761901855469 } }, { "key": "42", "attributes": { "label": "e-biotechnologia", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "1", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -297.0810241699219, "y": -278.56982421875 } }, { "key": "422", "attributes": { "label": "Centro de Estudos Geográficos Universidade de Lisboa", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 399.5386047363281, "y": -360.02197265625 } }, { "key": "423", "attributes": { "label": "Centre for Historical Research and Documentation on War and Contemporary Society", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": 378.5381774902344, "y": 354.62896728515625 } }, { "key": "424", "attributes": { "label": "Centre of Excellence in Aeronautical Research", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 643.9610595703125, "y": 217.7635040283203 } }, { "key": "425", "attributes": { "label": "CENSIS", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 743.16259765625, "y": -620.751953125 } }, { "key": "426", "attributes": { "label": "Centro Ciencia Viva Planetário Calouste Gulbenkian", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 542.7429809570312, "y": -382.0777282714844 } }, { "key": "427", "attributes": { "label": "Centrum Edukacji Obywatelskiej", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -99.12316131591797, "y": -473.7995910644531 } }, { "key": "428", "attributes": { "label": "CERIMES -Centre de ressources et d'information sur le multimedia pour l'enseignement supérieur", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 1199.2784423828125, "y": -58.8272705078125 } }, { "key": "429", "attributes": { "label": "Centre of Technological Resources in Chemistry ", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 685.0507202148438, "y": 288.69073486328125 } }, { "key": "430", "attributes": { "label": "Centro de Estudos Sociais da Universidade de Coimbra", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 413.0580139160156, "y": -371.51177978515625 } }, { "key": "435", "attributes": { "label": "Centre of Excellence in Information and Communication Technologies", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": 599.783935546875, "y": 231.8135528564453 } }, { "key": "438", "attributes": { "label": "Central European University", "country": "Hungary", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 22, "x": -486.66217041015625, "y": -627.832275390625 } }, { "key": "439", "attributes": { "label": "Center for Ethics and Value Inquiry", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 235.302001953125, "y": 701.0974731445312 } }, { "key": "440", "attributes": { "label": "Conseil des femmes francophones de Belgique", "country": "Belgium", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 130.0166473388672, "y": 531.3273315429688 } }, { "key": "442", "attributes": { "label": "Fondation C génial", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": 1137.0750732421875, "y": -113.82899475097656 } }, { "key": "443", "attributes": { "label": "Center for Civic Education", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 597.9755859375, "y": -789.7686157226562 } }, { "key": "444", "attributes": { "label": "Bureau for Editing Schoolbooks", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 635.4002075195312, "y": -1181.0589599609375 } }, { "key": "445", "attributes": { "label": "Wroclaw University of Technology", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "1", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -490.9908752441406, "y": -646.432373046875 } }, { "key": "446", "attributes": { "label": "Molecular biology Lab of the SOTE", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -481.8559265136719, "y": -704.7575073242188 } }, { "key": "448", "attributes": { "label": "Marek Frankowicz", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -316.57916259765625, "y": -460.34197998046875 } }, { "key": "449", "attributes": { "label": "Virtual chemistry laboratory", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 490.5997314453125, "y": -1062.72216796875 } }, { "key": "45", "attributes": { "label": "Ecorev", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 1159.3680419921875, "y": 281.4971923828125 } }, { "key": "450", "attributes": { "label": "Ciel et Espace", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": 1182.0205078125, "y": -108.01261901855469 } }, { "key": "451", "attributes": { "label": "Ciencia Viva", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 42, "x": 407.35406494140625, "y": -301.00274658203125 } }, { "key": "452", "attributes": { "label": "Čikom", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 898.44140625, "y": -1217.7750244140625 } }, { "key": "453", "attributes": { "label": "Citizens partecipation in science and technology", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 881.5687866210938, "y": 53.72443771362305 } }, { "key": "456", "attributes": { "label": "Collectif interassociatif pour la réalisation d'activités scientifiques et techniques internationales ", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 23, "x": 1280.95361328125, "y": -148.37442016601562 } }, { "key": "457", "attributes": { "label": "CIRASTI Collectif international Exposciences", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 1354.8807373046875, "y": -125.47222900390625 } }, { "key": "458", "attributes": { "label": "Center of Information Technology of the University of Montenegro", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 892.728759765625, "y": -1226.23291015625 } }, { "key": "459", "attributes": { "label": "Cité de l'espace- Toulouse", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-degree": 10, "x": 1045.3951416015625, "y": -247.98095703125 } }, { "key": "46", "attributes": { "label": "BICTEL", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": 522.3766479492188, "y": 84.70047760009766 } }, { "key": "460", "attributes": { "label": "Cité des Sciences et de l'Industrie", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-degree": 87, "x": 988.9755859375, "y": -136.10745239257812 } }, { "key": "461", "attributes": { "label": "Cité de la Mer Cherbourg Octeville", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1076.5858154296875, "y": -451.7899169921875 } }, { "key": "463", "attributes": { "label": "Cittadella Mediterranea della scienza", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 698.2572631835938, "y": -434.1932678222656 } }, { "key": "464", "attributes": { "label": "Conseil Interuniversitaire de la Communauté française", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 21, "x": 479.6285400390625, "y": 166.99676513671875 } }, { "key": "466", "attributes": { "label": "Civil Radio", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -1114.8642578125, "y": -464.1122131347656 } }, { "key": "468", "attributes": { "label": "Central Laboratory of Physico-Chemical Mechanics (CLPhChM) - BAS", "country": "Bulgaria", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 134.33116149902344, "y": -984.772216796875 } }, { "key": "469", "attributes": { "label": "Nicolaus Copernicus University", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -348.31842041015625, "y": -365.8982849121094 } }, { "key": "47", "attributes": { "label": "University of Forestry - Sofia", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and Secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 93.61205291748047, "y": -1063.8192138671875 } }, { "key": "470", "attributes": { "label": "St. Cyril and St. Methodius International Foundation", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -19.588701248168945, "y": -931.5537109375 } }, { "key": "474", "attributes": { "label": "Conservatoire national des Arts et Métiers des Pays de la Loire - Mission Diffusion de la CST ", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1341.1927490234375, "y": -219.728759765625 } }, { "key": "476", "attributes": { "label": "C'Nano Rhône-Alpes", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 829.5781860351562, "y": 113.51213836669922 } }, { "key": "477", "attributes": { "label": "Centre national de coopération au développement,", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": 933.4883422851562, "y": 568.81787109375 } }, { "key": "478", "attributes": { "label": "Centre national d'études spatiales - Service Culture spatiale", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 23, "x": 1044.492431640625, "y": -162.7552490234375 } }, { "key": "479", "attributes": { "label": "CNRS - Science et société", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1013.2430419921875, "y": -249.8459014892578 } }, { "key": "48", "attributes": { "label": "Geological Survey of Finland (GTK) ", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -515.7445678710938, "y": 340.01123046875 } }, { "key": "481", "attributes": { "label": "Council of Europe Information Office", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 50, "x": -67.7621841430664, "y": -163.6078338623047 } }, { "key": "482", "attributes": { "label": "Collegium Budapest, Institute for Advanced Studies", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": -385.9062194824219, "y": -384.57843017578125 } }, { "key": "483", "attributes": { "label": "College of Europe", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -104.75785827636719, "y": -113.45770263671875 } }, { "key": "485", "attributes": { "label": "Comité Français pour l'Environnement et le développement durable", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 19, "x": 1153.3402099609375, "y": 250.86236572265625 } }, { "key": "488", "attributes": { "label": "Coprogram", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 773.092529296875, "y": 647.1552734375 } }, { "key": "489", "attributes": { "label": "Cosmos BG", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -155.1317138671875, "y": -733.0999755859375 } }, { "key": "490", "attributes": { "label": "COST", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 38, "x": -93.96968078613281, "y": -71.52374267578125 } }, { "key": "491", "attributes": { "label": "Central Ostrobothnia University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -461.12060546875, "y": -209.40731811523438 } }, { "key": "492", "attributes": { "label": "\"Counterpart International Inc.\", Representation In Armenia", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -773.9013671875, "y": -1467.39892578125 } }, { "key": "493", "attributes": { "label": "Centre wallon de recherches agronomiques", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 654.0719604492188, "y": 403.90032958984375 } }, { "key": "494", "attributes": { "label": "University of Perugia-Centro di ricerca per le biomasse", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 748.1130981445312, "y": -597.1033325195312 } }, { "key": "495", "attributes": { "label": "Support Committee for Armenian's Cosmic Ray Divission", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -286.921142578125, "y": -1300.8416748046875 } }, { "key": "496", "attributes": { "label": "Centre for Research on the Epidemiology of Disasters.", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 831.8195190429688, "y": 357.081298828125 } }, { "key": "497", "attributes": { "label": "Conseil des Recteurs des Universités francophones de Belgique", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 26, "x": 562.6206665039062, "y": 183.2645263671875 } }, { "key": "498", "attributes": { "label": "CRID- Centre de recherche international pour le développement", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 1125.431640625, "y": 370.5849914550781 } }, { "key": "499", "attributes": { "label": "Centre Régional d’Initiation à l’Environnement", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 928.0718994140625, "y": 496.37744140625 } }, { "key": "5", "attributes": { "label": "Institute of Archaeology and Museum at the Bulgarian Academy of Sciences ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 189.80377197265625, "y": -812.5505981445312 } }, { "key": "50", "attributes": { "label": "Diaconia University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -426.50372314453125, "y": 51.40494155883789 } }, { "key": "500", "attributes": { "label": "Comité de Recherche et d'Information indépendantes sur le génie génétique", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 863.6812744140625, "y": 347.3177185058594 } }, { "key": "502", "attributes": { "label": "Center for Development of NGOs", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 711.08154296875, "y": -627.3800659179688 } }, { "key": "503", "attributes": { "label": "Caucasus Regional Resource Center", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -671.2017211914062, "y": -1120.2149658203125 } }, { "key": "506", "attributes": { "label": "CSC, the Finnish IT center for science", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 59, "x": -648.390380859375, "y": 137.79966735839844 } }, { "key": "507", "attributes": { "label": "Secção Autonoma de Ciências Sociais Juridicas e Politicas", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 463.5477600097656, "y": -466.7829284667969 } }, { "key": "508", "attributes": { "label": "Center for Vocational Training", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 664.4458618164062, "y": -1217.6678466796875 } }, { "key": "510", "attributes": { "label": "Science education projects", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 22, "x": -706.7211303710938, "y": 815.0931396484375 } }, { "key": "511", "attributes": { "label": "Centre for theoretical study at the Charles University", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -432.92462158203125, "y": -326.32965087890625 } }, { "key": "512", "attributes": { "label": "La Commission universitaire pour le Développement", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": 529.2737426757812, "y": 237.13694763183594 } }, { "key": "514", "attributes": { "label": "Direction des Musées de France", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1415.9273681640625, "y": -36.42338180541992 } }, { "key": "515", "attributes": { "label": "Le Centre de Vulgarisation de la Connaissance (CVC)", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 1115.0496826171875, "y": -153.83453369140625 } }, { "key": "517", "attributes": { "label": "Conseil wallon de l’environnement pour le développement durable", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 768.806640625, "y": 519.9732055664062 } }, { "key": "518", "attributes": { "label": "Center of Women's Studies and Policies (CWSP) ", "country": "Bulgaria", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 73.75779724121094, "y": -668.5817260742188 } }, { "key": "519", "attributes": { "label": "Virtual Herbarium", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -769.17529296875, "y": 1206.2855224609375 } }, { "key": "52", "attributes": { "label": "Portail environnement de Wallonie", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 44, "x": 688.7448120117188, "y": 380.3430480957031 } }, { "key": "520", "attributes": { "label": "Club Young Scientists", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 18, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 432.6736755371094, "y": -1325.7686767578125 } }, { "key": "521", "attributes": { "label": "RE*CAME Project", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 18, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 461.2221374511719, "y": -1386.8436279296875 } }, { "key": "522", "attributes": { "label": "CZELO", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": 76.14757537841797, "y": 180.57420349121094 } }, { "key": "523", "attributes": { "label": "State Archive of Montenegro", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and Governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 14, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 813.3973388671875, "y": 1548.01171875 } }, { "key": "524", "attributes": { "label": "Dan ", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 446.649658203125, "y": -795.31689453125 } }, { "key": "526", "attributes": { "label": "Dariwin web.it", "country": "Italy", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 794.3790283203125, "y": -550.502197265625 } }, { "key": "53", "attributes": { "label": "Belgian Platform on Earth Observation", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 34, "x": 350.2657470703125, "y": 281.7142333984375 } }, { "key": "530", "attributes": { "label": "declarativa.pt", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 83.57811737060547, "y": -392.75897216796875 } }, { "key": "532", "attributes": { "label": "De Maakbare Mens", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 278.2559814453125, "y": 680.506103515625 } }, { "key": "533", "attributes": { "label": "Democrit.com", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": 251.5475616455078, "y": -859.2496337890625 } }, { "key": "534", "attributes": { "label": "De tijd loopt", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 838.10595703125, "y": 719.6449584960938 } }, { "key": "535", "attributes": { "label": "Site portail développement durable", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": 810.2313842773438, "y": 516.9761962890625 } }, { "key": "536", "attributes": { "label": "The Bulgarian Charity Forum", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -13.35954761505127, "y": -1104.340087890625 } }, { "key": "537", "attributes": { "label": "German Research Foundation", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 26, "x": -187.97727966308594, "y": -202.07655334472656 } }, { "key": "54", "attributes": { "label": "Earth observation for everyone", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 427.20263671875, "y": 450.9710693359375 } }, { "key": "542", "attributes": { "label": "Foundation for Science and Liberal Arts – Domus Dorpatensis", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -550.8195190429688, "y": 915.5411376953125 } }, { "key": "543", "attributes": { "label": "Duna TV", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": -1017.3941040039062, "y": -383.6595458984375 } }, { "key": "544", "attributes": { "label": "Duurzame-info.be", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 36, "x": 856.1825561523438, "y": 500.5157165527344 } }, { "key": "545", "attributes": { "label": "Centre for Nonprofit Sector Research", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -249.2682647705078, "y": -844.0907592773438 } }, { "key": "546", "attributes": { "label": "e-gazzette", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 525.9334106445312, "y": -773.715087890625 } }, { "key": "547", "attributes": { "label": "Estonian Newspaper Assotiation", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 19, "x": -492.0863037109375, "y": 1207.9700927734375 } }, { "key": "548", "attributes": { "label": "Estonian History Museum", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -633.4188232421875, "y": 1017.2140502929688 } }, { "key": "55", "attributes": { "label": "Hungarian Mobility Portal", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -663.6680297851562, "y": -469.81500244140625 } }, { "key": "550", "attributes": { "label": "Estonian History Teachers Society", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -509.0311584472656, "y": 924.4865112304688 } }, { "key": "551", "attributes": { "label": "Enterprise Estonia", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 45, "x": -435.7052307128906, "y": 985.3941650390625 } }, { "key": "554", "attributes": { "label": "Ébulliscience - Vaulx en Velin", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1145.8511962890625, "y": -364.3793640136719 } }, { "key": "555", "attributes": { "label": "EcoAzioni", "country": "Italy", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -91.29389953613281, "y": -374.0367431640625 } }, { "key": "556", "attributes": { "label": "ECOGLOBE LTD", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -687.8203125, "y": -1211.794677734375 } }, { "key": "560", "attributes": { "label": "HAS Institute for Economy ", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 19, "x": -814.7781982421875, "y": -486.95465087890625 } }, { "key": "561", "attributes": { "label": "EcoRadio", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 722.3169555664062, "y": -771.6771240234375 } }, { "key": "563", "attributes": { "label": "European Network of Science Centres and Museum", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 8, "nansi-degree": 23, "x": 629.3346557617188, "y": -136.64361572265625 } }, { "key": "564", "attributes": { "label": "Economic Development and Research Center", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -682.1655883789062, "y": -1224.437255859375 } }, { "key": "565", "attributes": { "label": "Ministry of Education and Science of RA", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -529.3600463867188, "y": -1229.7987060546875 } }, { "key": "566", "attributes": { "label": "Educagri", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 1249.15087890625, "y": 146.8855438232422 } }, { "key": "567", "attributes": { "label": "Educambiente tv", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 415.4222717285156, "y": -405.7351989746094 } }, { "key": "568", "attributes": { "label": "Educapoles", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": 911.9319458007812, "y": 170.99371337890625 } }, { "key": "57", "attributes": { "label": "Environmental blog", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 16, "x": -542.5720825195312, "y": 1173.32958984375 } }, { "key": "570", "attributes": { "label": "Rai Educational", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 626.0872192382812, "y": -198.7990264892578 } }, { "key": "571", "attributes": { "label": "Education portal", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": -981.9314575195312, "y": -370.4371643066406 } }, { "key": "576", "attributes": { "label": "Direction de l’Égalité des Chances", "country": "Belgium", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 2.8545734882354736, "y": 199.35023498535156 } }, { "key": "577", "attributes": { "label": "Estonian Geological Society", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -848.4105834960938, "y": 1076.263916015625 } }, { "key": "578", "attributes": { "label": "Geological Survey of Estonia", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -276.99005126953125, "y": 972.1727294921875 } }, { "key": "579", "attributes": { "label": "The Estonian Historical Archives", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -606.2197875976562, "y": 946.6557006835938 } }, { "key": "58", "attributes": { "label": "University of Gödöllő - Environmental social science", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -1303.86865234375, "y": -414.31829833984375 } }, { "key": "580", "attributes": { "label": "\"Enterprise Incubator\" Foundation", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -577.2755737304688, "y": -1394.5035400390625 } }, { "key": "581", "attributes": { "label": "Wroclaw Research Center EIT+", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -403.4450378417969, "y": -432.7114562988281 } }, { "key": "583", "attributes": { "label": "National Examinations and Qualifications Centre", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": -355.20709228515625, "y": 831.633056640625 } }, { "key": "584", "attributes": { "label": "Art Museum of Estonia", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -737.86572265625, "y": 767.8001708984375 } }, { "key": "585", "attributes": { "label": "Faculty of Economics", "country": "Montenegro", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 628.0565185546875, "y": -1000.3615112304688 } }, { "key": "587", "attributes": { "label": "European Contact Group", "country": "Czech Republic", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -753.1563110351562, "y": -814.0525512695312 } }, { "key": "588", "attributes": { "label": "Estonian Express", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 32, "x": -520.7539672851562, "y": 1150.9744873046875 } }, { "key": "589", "attributes": { "label": "E-learning portal", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -54.28596115112305, "y": -247.8567352294922 } }, { "key": "59", "attributes": { "label": "Centro de Ciência Viva de Estremoz", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 372.7760009765625, "y": -381.9543151855469 } }, { "key": "590", "attributes": { "label": "Musée EDF/Electropolis Mulhouse", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 1178.144775390625, "y": 12.070199966430664 } }, { "key": "591", "attributes": { "label": " High School of Electrical Engineering, Podgorica", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 698.7166748046875, "y": -1282.2510986328125 } }, { "key": "592", "attributes": { "label": "Estonian Fund for Nature", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 46, "x": -692.8126831054688, "y": 1174.1595458984375 } }, { "key": "593", "attributes": { "label": "Estonian Society for Nature Conservation", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": -643.6854248046875, "y": 1133.2958984375 } }, { "key": "594", "attributes": { "label": " ELSA Montenegro", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 674.9239501953125, "y": -973.3385009765625 } }, { "key": "595", "attributes": { "label": "ELTE – Eötvös Lorand University", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 29, "x": -628.0819702148438, "y": -330.30596923828125 } }, { "key": "596", "attributes": { "label": "Estonian Naturalists Society", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -690.1069946289062, "y": 975.8111572265625 } }, { "key": "597", "attributes": { "label": "Emajõe-Suursoo Nature Reserv", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 22, "x": -904.7200927734375, "y": 941.8818359375 } }, { "key": "598", "attributes": { "label": "L'Embarcadère du Savoir", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 2, "nansi-degree": 12, "x": 743.7172241210938, "y": -12.660516738891602 } }, { "key": "6", "attributes": { "label": "Association internationale des Techniciens, Experts et Chercheurs", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 1145.289306640625, "y": 345.8794860839844 } }, { "key": "60", "attributes": { "label": "Business Ethics Center, Corvinus Uni.", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -932.313232421875, "y": -201.1768341064453 } }, { "key": "601", "attributes": { "label": "Estonian Meteorological and Hydrological Institute", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 17, "x": -550.2876586914062, "y": 856.7214965820312 } }, { "key": "603", "attributes": { "label": "EMIS", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 29, "x": 588.4282836914062, "y": 543.70849609375 } }, { "key": "608", "attributes": { "label": "Encyclopedia.bg", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 242.72108459472656, "y": -1098.2109375 } }, { "key": "609", "attributes": { "label": "Endla Nature Reserve", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": -859.6963500976562, "y": 942.0536499023438 } }, { "key": "61", "attributes": { "label": "Estonian television ", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -376.4847717285156, "y": 1230.611572265625 } }, { "key": "610", "attributes": { "label": "End of life care", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 261.4889831542969, "y": 543.9315795898438 } }, { "key": "611", "attributes": { "label": "Mining Portal", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -979.7344360351562, "y": 1229.1434326171875 } }, { "key": "612", "attributes": { "label": "Science Centre Energiakeskus", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -239.70594787597656, "y": 764.3248901367188 } }, { "key": "614", "attributes": { "label": "EnergyMed-Mostra d'oltre mare", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 450.0424499511719, "y": -693.4190673828125 } }, { "key": "615", "attributes": { "label": "University of Debrecen -Centre of Arts, Humanities and Sciences", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 1, "x": -961.2173461914062, "y": -610.13916015625 } }, { "key": "617", "attributes": { "label": "Estonian Society for Young Nature Conservationists", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -777.845458984375, "y": 1162.4932861328125 } }, { "key": "618", "attributes": { "label": "Enroweb", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 1168.081787109375, "y": -65.9542465209961 } }, { "key": "619", "attributes": { "label": "Ministère de l'enseignement supérieur et de la recherche", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 1211.4967041015625, "y": -202.4495086669922 } }, { "key": "62", "attributes": { "label": "Hu. EU portal", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -434.6983947753906, "y": -137.9730987548828 } }, { "key": "620", "attributes": { "label": "Mission parité", "country": "France", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1343.6016845703125, "y": -159.22596740722656 } }, { "key": "621", "attributes": { "label": "Academy of Young Scienists", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": -381.4439697265625, "y": 931.3802490234375 } }, { "key": "624", "attributes": { "label": "Envirodoc", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 962.0693969726562, "y": 469.943115234375 } }, { "key": "625", "attributes": { "label": "EORTC", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 356.2191467285156, "y": 423.61541748046875 } }, { "key": "626", "attributes": { "label": "EOS", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 11, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 486.18890380859375, "y": 768.3011474609375 } }, { "key": "627", "attributes": { "label": "Hirundo", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -910.98583984375, "y": 1013.7975463867188 } }, { "key": "628", "attributes": { "label": "Electric Power Company", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 865.7491455078125, "y": -1217.8778076171875 } }, { "key": "629", "attributes": { "label": "Entreprises pour l'environnement", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1206.4937744140625, "y": 288.6505126953125 } }, { "key": "63", "attributes": { "label": "Departement Economie, Wetenschap en Innovatie", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 27, "x": 302.6513977050781, "y": 475.64605712890625 } }, { "key": "630", "attributes": { "label": "Eesti Päevaleht", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 41, "x": -554.7891845703125, "y": 1075.365478515625 } }, { "key": "632", "attributes": { "label": "European Platform of Women Scientists", "country": "Belgium", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 226.5216064453125, "y": -5.666001796722412 } }, { "key": "633", "attributes": { "label": "European Educational Regional Academy", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -532.632568359375, "y": -1303.3140869140625 } }, { "key": "634", "attributes": { "label": "Estonian National Museum", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": -633.6307373046875, "y": 950.949951171875 } }, { "key": "635", "attributes": { "label": "Estonian Public Broadcasting", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 17, "x": -375.1207275390625, "y": 1255.9853515625 } }, { "key": "636", "attributes": { "label": "Value engineering Association", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -924.1337890625, "y": -206.08709716796875 } }, { "key": "637", "attributes": { "label": "Science & the city", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 455.7928161621094, "y": -397.5645446777344 } }, { "key": "639", "attributes": { "label": "European Science Foundation", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 4, "nansi-degree": 85, "x": 37.82045364379883, "y": -40.1776237487793 } }, { "key": "640", "attributes": { "label": "European Science Fondation", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 87.26846313476562, "y": -70.13176727294922 } }, { "key": "641", "attributes": { "label": "Euroscience open forum", "country": "International", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -31.480308532714844, "y": 17.162384033203125 } }, { "key": "642", "attributes": { "label": "Espace Ethique APHP", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 704.6512451171875, "y": -7.032516002655029 } }, { "key": "643", "attributes": { "label": "Espace des sciences - 35000 Rennes", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-degree": 37, "x": 1129.9991455078125, "y": -182.2039794921875 } }, { "key": "644", "attributes": { "label": "Estonian Society of Human Genetics", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -295.3196716308594, "y": 1110.8236083984375 } }, { "key": "645", "attributes": { "label": "North-Alföld Regional Development Agency", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -1017.377197265625, "y": -344.3027038574219 } }, { "key": "646", "attributes": { "label": "The National Advisory Board on Health Care Ethics (ETENE)", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -329.3836364746094, "y": 295.6270751953125 } }, { "key": "648", "attributes": { "label": "Chaire Hoover d'éthique économique et sociale", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 257.8107604980469, "y": 766.7706909179688 } }, { "key": "649", "attributes": { "label": "Estonian Science Foundation", "country": "Estonia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 29, "x": -380.8883972167969, "y": 664.3203125 } }, { "key": "65", "attributes": { "label": "Federation of Agricultural Assosiations", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -745.631591796875, "y": -1428.5113525390625 } }, { "key": "650", "attributes": { "label": "Ethics.be", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 17, "x": 262.95977783203125, "y": 633.4842529296875 } }, { "key": "651", "attributes": { "label": "Ethische Perspectieven", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 282.9499816894531, "y": 732.8516845703125 } }, { "key": "652", "attributes": { "label": "Estonian Research Portal", "country": "Estonia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -528.318359375, "y": 845.2791748046875 } }, { "key": "653", "attributes": { "label": "Estonian Arts and Crafts Teachers Society", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -477.9320068359375, "y": 1108.958251953125 } }, { "key": "654", "attributes": { "label": "EU news – government portal on EU matters", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -1052.2225341796875, "y": -368.5908508300781 } }, { "key": "655", "attributes": { "label": "Institute for Political Sciences", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 2, "nansi-degree": 2, "x": -931.1575927734375, "y": -590.1008911132812 } }, { "key": "656", "attributes": { "label": "The South Moravian Centre For International Mobility", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 29.843460083007812, "y": 254.90676879882812 } }, { "key": "657", "attributes": { "label": "Eurwkaalert", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 21, "x": 104.88311004638672, "y": 41.47743225097656 } }, { "key": "658", "attributes": { "label": "Obcanske sdruzeni Robonika Software Engineering", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1264.2032470703125, "y": -171.5847625732422 } }, { "key": "659", "attributes": { "label": "eurocean.org", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 25, "x": 258.6549987792969, "y": 44.609825134277344 } }, { "key": "66", "attributes": { "label": "Fantastisch", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 11, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 496.52593994140625, "y": 1057.57421875 } }, { "key": "660", "attributes": { "label": "Euro Info Service", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -923.1815185546875, "y": -296.73382568359375 } }, { "key": "663", "attributes": { "label": "Europeum", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -688.021484375, "y": -528.1425170898438 } }, { "key": "664", "attributes": { "label": "Institute for European policy", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -757.0712280273438, "y": -613.7420654296875 } }, { "key": "665", "attributes": { "label": "Europlanetarium", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 897.2647705078125, "y": 207.01487731933594 } }, { "key": "666", "attributes": { "label": "EuroScience - Bulgaria", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": 68.88813781738281, "y": -636.7366943359375 } }, { "key": "667", "attributes": { "label": "Eurospace center", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 784.9046020507812, "y": 170.87232971191406 } }, { "key": "668", "attributes": { "label": "National portal on EU matters, quesitons", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 42, "x": -861.2090454101562, "y": -319.4701232910156 } }, { "key": "669", "attributes": { "label": "Finnish Food Safety Authority ", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 33, "x": -335.045166015625, "y": 354.9257507324219 } }, { "key": "67", "attributes": { "label": "Centre for Security studies", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -901.0516357421875, "y": -216.4774169921875 } }, { "key": "670", "attributes": { "label": "Evrika Foundation", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 190.64781188964844, "y": -1071.55029296875 } }, { "key": "672", "attributes": { "label": "EXPLORA-La tv della scienza", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 2, "nansi-degree": 36, "x": 671.57275390625, "y": -508.7651672363281 } }, { "key": "673", "attributes": { "label": "Explor@dome- 75 Paris", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 17, "x": 1076.6678466796875, "y": -288.5342102050781 } }, { "key": "674", "attributes": { "label": "Fábrica de Ciência Viva", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 555.4937744140625, "y": -340.7798156738281 } }, { "key": "675", "attributes": { "label": "Fair Trading World Association", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -1262.3145751953125, "y": -402.71533203125 } }, { "key": "676", "attributes": { "label": "Agence fédrale de contrôle nucléaire", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 183.76918029785156, "y": 378.6452331542969 } }, { "key": "678", "attributes": { "label": "Faculty of Administrative and European Studies", "country": "Montenegro", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 632.3677978515625, "y": -1127.1578369140625 } }, { "key": "679", "attributes": { "label": "Famous Hungarian Inventors", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -805.0936279296875, "y": -397.4490051269531 } }, { "key": "68", "attributes": { "label": "Filosofieblog Filip Buekens", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 11, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 443.2362060546875, "y": 996.1574096679688 } }, { "key": "680", "attributes": { "label": "Fédération des écomusées et des musées de société ", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 1191.9697265625, "y": -447.2625427246094 } }, { "key": "681", "attributes": { "label": "Festival della scienza", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 710.783203125, "y": -540.2565307617188 } }, { "key": "682", "attributes": { "label": "Beskidzki Festiwal Nauki i Sztuki", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 2, "nansi-degree": 6, "x": -418.6619567871094, "y": -595.2767944335938 } }, { "key": "683", "attributes": { "label": "Podlaskie Science Festival", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -467.57843017578125, "y": -546.5895385742188 } }, { "key": "684", "attributes": { "label": "Baltyckie Science Festival", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -123.02388000488281, "y": -488.3056945800781 } }, { "key": "685", "attributes": { "label": "Fetiwal Nauki Techniki i Sztuki w Łodzi", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -380.0901794433594, "y": -728.1234130859375 } }, { "key": "686", "attributes": { "label": "Lubelskie Science Festival", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 17, "x": -379.88104248046875, "y": -657.4039306640625 } }, { "key": "687", "attributes": { "label": "Opolskie Science Festival", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -456.0333251953125, "y": -636.847900390625 } }, { "key": "688", "attributes": { "label": "Torunskie Science Festival", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -363.12298583984375, "y": -579.2674560546875 } }, { "key": "69", "attributes": { "label": "Fondation EDF", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 1279.274169921875, "y": 308.861328125 } }, { "key": "691", "attributes": { "label": "Science Festival - Warsaw", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -297.6800537109375, "y": -643.3860473632812 } }, { "key": "692", "attributes": { "label": "International Science Media Fair", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 829.5280151367188, "y": -558.6657104492188 } }, { "key": "693", "attributes": { "label": "Fête de la science", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 33, "x": 1203.462646484375, "y": -175.27296447753906 } }, { "key": "695", "attributes": { "label": "Fédération des Maisons des Jeunes et de la Culture", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 1393.1497802734375, "y": -155.57884216308594 } }, { "key": "696", "attributes": { "label": "Finnish Geodetic Institute", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -415.454345703125, "y": 382.6383972167969 } }, { "key": "697", "attributes": { "label": "Faculty of Humanities Prague", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -583.7202758789062, "y": -611.175537109375 } }, { "key": "698", "attributes": { "label": "Tartu University Institute of Physics", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -440.2250061035156, "y": 613.3245239257812 } }, { "key": "699", "attributes": { "label": "Forum Internazionale Europeo di rocercvhe sull'immigrazione", "country": "Italy", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 481.6105041503906, "y": -315.14105224609375 } }, { "key": "700", "attributes": { "label": "Institut of audiovisual arts", "country": "Poland", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -225.14920043945312, "y": -362.77093505859375 } }, { "key": "701", "attributes": { "label": "Państwowa Wyższa Szkoła Filmowa Telewizyjna i Teatralna im. L.Schillera", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -117.98483276367188, "y": -591.4202880859375 } }, { "key": "706", "attributes": { "label": "Royal Museums of Fine Arts of Belgium", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 524.889404296875, "y": 428.4976806640625 } }, { "key": "707", "attributes": { "label": "Finnish Literature society", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 28, "x": -669.1329956054688, "y": 296.5892333984375 } }, { "key": "708", "attributes": { "label": "Finnish Open Access Working Group (FinnOA)", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -614.418212890625, "y": 303.9879150390625 } }, { "key": "709", "attributes": { "label": "Fishbase", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 2, "nansi-degree": 15, "x": 645.8463745117188, "y": 28.758098602294922 } }, { "key": "71", "attributes": { "label": "Forum filosofie", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 11, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 468.7413024902344, "y": 1053.0096435546875 } }, { "key": "712", "attributes": { "label": "Flanders Nanobio", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 312.69281005859375, "y": 640.0394287109375 } }, { "key": "713", "attributes": { "label": "Fundamental Scientific Library ", "country": "Armenia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -512.6946411132812, "y": -1262.0693359375 } }, { "key": "714", "attributes": { "label": "Centro Ciência Viva da Floresta", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 505.4016418457031, "y": -291.34979248046875 } }, { "key": "715", "attributes": { "label": "Finnish Meteorological Institute ", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 55, "x": -418.39361572265625, "y": 229.06529235839844 } }, { "key": "716", "attributes": { "label": "France Nature Environnement", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 974.2587280273438, "y": 263.9512939453125 } }, { "key": "717", "attributes": { "label": "The Federation of the Scientific - Engineering Unions in Bulgaria /FNTS/", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 267.6087341308594, "y": -888.7617797851562 } }, { "key": "718", "attributes": { "label": "Independent Ecological Centre", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -1129.2216796875, "y": -387.47509765625 } }, { "key": "720", "attributes": { "label": "Fondation scientifique de Lyon", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1512.048583984375, "y": -227.32781982421875 } }, { "key": "721", "attributes": { "label": "Fondation EADS", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "1", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 1260.97216796875, "y": -75.03291320800781 } }, { "key": "722", "attributes": { "label": "Fondation 93 - Atelier des Sciences", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 1168.2158203125, "y": -292.0457763671875 } }, { "key": "723", "attributes": { "label": "Fondation Universitaire", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 377.7029724121094, "y": 490.89501953125 } }, { "key": "725", "attributes": { "label": "Fondazione Tronchetti Provera", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 800.152587890625, "y": -603.1033935546875 } }, { "key": "726", "attributes": { "label": "Foodhunt", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 935.5761108398438, "y": 873.1605834960938 } }, { "key": "727", "attributes": { "label": "For Planet", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 19, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -1361.961181640625, "y": -1180.60595703125 } }, { "key": "728", "attributes": { "label": "Forum des sciences - CCSTI du Nord", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 1277.88134765625, "y": -95.01624298095703 } }, { "key": "730", "attributes": { "label": "Fondation pour le progrès de l'Homme", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 1046.5130615234375, "y": 275.9678649902344 } }, { "key": "731", "attributes": { "label": "FOOD PROCESSING INDUSTRY monthly magazine ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 272.5660705566406, "y": -981.2467651367188 } }, { "key": "732", "attributes": { "label": "Faculty for Business Management", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 698.2401123046875, "y": -1115.538818359375 } }, { "key": "733", "attributes": { "label": "Faculté polytechnique de Mons", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 28, "x": 533.5104370117188, "y": 125.10108947753906 } }, { "key": "735", "attributes": { "label": "France Biotech", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 15, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 408.0614318847656, "y": 479.1964416503906 } }, { "key": "736", "attributes": { "label": "Finnish social science data archive", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 33, "x": -512.2640380859375, "y": 240.00357055664062 } }, { "key": "739", "attributes": { "label": "Work and technology research centre", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 2, "nansi-degree": 11, "x": 286.98638916015625, "y": 243.2759552001953 } }, { "key": "74", "attributes": { "label": "Forum social mondial science et démocratie", "country": "International", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "International", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 1231.02294921875, "y": 204.54501342773438 } }, { "key": "740", "attributes": { "label": "Fondation Travail-Université", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 473.060546875, "y": 267.3123779296875 } }, { "key": "741", "attributes": { "label": "Facultés Universitaires Catholiques de Mons", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 34, "x": 480.9613952636719, "y": 41.67811965942383 } }, { "key": "742", "attributes": { "label": "Fundacje.org", "country": "Poland", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "1", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "1", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "1", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -57.107852935791016, "y": -538.5646362304688 } }, { "key": "743", "attributes": { "label": "FUNDP", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 78, "x": 451.30029296875, "y": 210.93760681152344 } }, { "key": "744", "attributes": { "label": "Fun Science Gallery", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 546.109375, "y": -239.05943298339844 } }, { "key": "745", "attributes": { "label": "Faculté Universitaire des Sciences Agronomiques de Gembloux", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 31, "x": 608.399658203125, "y": 284.3992614746094 } }, { "key": "746", "attributes": { "label": "Facultés universitaires Saint-Louis", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": 420.2906799316406, "y": 167.7403106689453 } }, { "key": "747", "attributes": { "label": "Futura Sciences / Magazine en ligne", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 35, "x": 1004.0125122070312, "y": 1.7917673587799072 } }, { "key": "748", "attributes": { "label": "FWO", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 592.5281372070312, "y": 646.9677734375 } }, { "key": "749", "attributes": { "label": "Faculty of Marine Studies", "country": "Montenegro", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 650.9183959960938, "y": -1070.7926025390625 } }, { "key": "75", "attributes": { "label": "Physics portal", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -493.1543273925781, "y": 1122.6221923828125 } }, { "key": "750", "attributes": { "label": "Funding agency of the Academy od Science", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 58.89217758178711, "y": -301.4447937011719 } }, { "key": "752", "attributes": { "label": "GastroNet", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 755.5338745117188, "y": -610.7234497070312 } }, { "key": "753", "attributes": { "label": "The Board for Gene Technology", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 19, "x": -444.43450927734375, "y": 372.16900634765625 } }, { "key": "754", "attributes": { "label": "Estonian Genome Project", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -330.5416564941406, "y": 1082.639404296875 } }, { "key": "755", "attributes": { "label": "Gelijke Kansen in Vlaanderen", "country": "Belgium", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 108.30732727050781, "y": 445.9311218261719 } }, { "key": "756", "attributes": { "label": "Gender Index Project", "country": "Poland", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 13, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -1761.1251220703125, "y": 37.84389877319336 } }, { "key": "757", "attributes": { "label": "Gender Studies", "country": "Czech Republic", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -730.0337524414062, "y": -774.1754150390625 } }, { "key": "758", "attributes": { "label": "Estonian Genome Foundation", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 28, "x": -360.1301574707031, "y": 956.8656616210938 } }, { "key": "76", "attributes": { "label": "TTU Institute of Geology", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 22, "x": -589.4078369140625, "y": 862.579833984375 } }, { "key": "762", "attributes": { "label": "National Educational Programme in Physics Online \"Physics through my eyes\"", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -220.39576721191406, "y": -1134.3897705078125 } }, { "key": "764", "attributes": { "label": "Geophysical Institute - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 191.88780212402344, "y": -507.4250183105469 } }, { "key": "766", "attributes": { "label": "Géospace Hérault- Languedoc-Roussillon", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "1", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 881.381591796875, "y": -266.5801086425781 } }, { "key": "767", "attributes": { "label": "Faculty of Civil Engineering", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 738.3997192382812, "y": -1123.254638671875 } }, { "key": "769", "attributes": { "label": " High School \"Petar I Petrović Njegoš\", Danilovgrad", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 573.0974731445312, "y": -1188.5303955078125 } }, { "key": "77", "attributes": { "label": "Centre for gender and culture", "country": "Hungary", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -891.84765625, "y": -561.8689575195312 } }, { "key": "770", "attributes": { "label": " Pljevlja High School", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 691.9780883789062, "y": -1240.5345458984375 } }, { "key": "771", "attributes": { "label": "Giovedì scienza", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 790.9583740234375, "y": -471.0911560058594 } }, { "key": "772", "attributes": { "label": "GIS-Transfer Center Foundation", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 79.96460723876953, "y": -1045.4273681640625 } }, { "key": "773", "attributes": { "label": "GlobeNet", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 16, "x": 1085.7545166015625, "y": 279.34136962890625 } }, { "key": "774", "attributes": { "label": "Globo, Divulgazione Scintifica", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 905.935302734375, "y": -755.0570068359375 } }, { "key": "775", "attributes": { "label": "AERRE, newspaper on Research &Development", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 953.9293212890625, "y": -804.5513916015625 } }, { "key": "776", "attributes": { "label": "GM-foorumi", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -297.136962890625, "y": 333.5069885253906 } }, { "key": "777", "attributes": { "label": "GMO-free Finland", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -213.94383239746094, "y": 340.0897521972656 } }, { "key": "779", "attributes": { "label": "Gödöllő region", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -907.92822265625, "y": -453.0637512207031 } }, { "key": "78", "attributes": { "label": "Geology", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -662.9933471679688, "y": 850.3790283203125 } }, { "key": "780", "attributes": { "label": "Gorichka.bg", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 234.47946166992188, "y": -1181.7327880859375 } }, { "key": "781", "attributes": { "label": "Ministry of Economic Development", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and Governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 892.07958984375, "y": -1264.6900634765625 } }, { "key": "782", "attributes": { "label": "Ministry of Culture, Sports and Media", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and Governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 14, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 822.6143798828125, "y": 1542.7913818359375 } }, { "key": "786", "attributes": { "label": "Ministry of Health, Labor and Social Welfare", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and Governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 898.203369140625, "y": -1257.8526611328125 } }, { "key": "787", "attributes": { "label": "Progetto Genoma", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 763.2474365234375, "y": -617.8848266601562 } }, { "key": "788", "attributes": { "label": "Groupe de Réflexion et d’Action Pour une Politique Ecologique", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": 975.3862915039062, "y": 401.568359375 } }, { "key": "79", "attributes": { "label": "Green.Democrit.com", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": 303.4434814453125, "y": -748.1339721679688 } }, { "key": "790", "attributes": { "label": "Greenfacts", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": 730.2735595703125, "y": 237.08543395996094 } }, { "key": "791", "attributes": { "label": "Roheline Värav", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 68, "x": -669.8141479492188, "y": 1070.16748046875 } }, { "key": "792", "attributes": { "label": "Green Lane ", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -658.3963623046875, "y": -1209.4244384765625 } }, { "key": "793", "attributes": { "label": "Hu. Greenpeace", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -1174.9205322265625, "y": -324.3016357421875 } }, { "key": "795", "attributes": { "label": "Green report", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 322.2955017089844, "y": -214.7577667236328 } }, { "key": "796", "attributes": { "label": "GroupeOne", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 902.4583129882812, "y": 560.373046875 } }, { "key": "798", "attributes": { "label": "\"H2 ECOnomy\" CJSC", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -672.5457153320312, "y": -850.5263671875 } }, { "key": "799", "attributes": { "label": "H2O", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 775.46728515625, "y": -825.5132446289062 } }, { "key": "8", "attributes": { "label": "The movement '2x&3x' of the young scientists in Bulgaria", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "1", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -5.209669589996338, "y": -828.0355834960938 } }, { "key": "80", "attributes": { "label": "Histoire des sciences et des techniques", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 966.052001953125, "y": -252.19300842285156 } }, { "key": "801", "attributes": { "label": "HAAGA-HELIA University of Applied Sciences ", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -614.3123779296875, "y": 696.168701171875 } }, { "key": "802", "attributes": { "label": "Haanja Naturepark", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -829.4317626953125, "y": 895.017822265625 } }, { "key": "804", "attributes": { "label": "Estonian Educational Forum", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -382.0475158691406, "y": 1047.2032470703125 } }, { "key": "805", "attributes": { "label": "Education portal", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -451.1818542480469, "y": 1113.7027587890625 } }, { "key": "806", "attributes": { "label": "Czech Helsinki Commitee", "country": "Czech Republic", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 7, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": -602.7811889648438, "y": -646.3312377929688 } }, { "key": "809", "attributes": { "label": "LUMA Centre", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -689.012939453125, "y": 76.93819427490234 } }, { "key": "810", "attributes": { "label": "University of Helsinki", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -367.6758728027344, "y": -265.23614501953125 } }, { "key": "811", "attributes": { "label": "HEUREKA – The Finnish Science centre", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 32, "x": -91.00100708007812, "y": 100.763916015625 } }, { "key": "812", "attributes": { "label": "Centrum Hewelianum", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 266.07061767578125, "y": -139.5255889892578 } }, { "key": "814", "attributes": { "label": "National Museum of History in Sofia", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 149.23410034179688, "y": -784.8040161132812 } }, { "key": "815", "attributes": { "label": "Museum for Security History", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -571.193603515625, "y": -467.87188720703125 } }, { "key": "816", "attributes": { "label": "Estonian Ministry of Education and Research", "country": "Estonia", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 58, "x": -440.0998840332031, "y": 884.1185302734375 } }, { "key": "817", "attributes": { "label": "Hu. National Museum", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -868.3958129882812, "y": -445.685546875 } }, { "key": "818", "attributes": { "label": "Horisont", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 30, "x": -506.6040954589844, "y": 961.49072265625 } }, { "key": "82", "attributes": { "label": "Université Toulon-Var", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 797.989013671875, "y": -185.84793090820312 } }, { "key": "820", "attributes": { "label": "Tuhala Nature Reserv", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -789.3118896484375, "y": 1255.559814453125 } }, { "key": "821", "attributes": { "label": "Hugo Treffner Gymnasium", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -621.0286865234375, "y": 1046.8359375 } }, { "key": "822", "attributes": { "label": "Centre for Educational Technology, Tallinn University", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -434.9951477050781, "y": 745.8763427734375 } }, { "key": "825", "attributes": { "label": "Waste Prevention Alliance", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": -1152.144775390625, "y": -375.3149108886719 } }, { "key": "826", "attributes": { "label": "Polish Hydrogen and Fuel Cell Association Website", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "1", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 2, "nansi-degree": 5, "x": -595.689697265625, "y": -747.9468383789062 } }, { "key": "829", "attributes": { "label": "The Institute of Biochemistry and Biophysics Polish Academy of Sciences", "country": "Poland", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": -190.1949920654297, "y": -579.2689819335938 } }, { "key": "83", "attributes": { "label": "Institute of Computer and Communication Systems - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 153.2125244140625, "y": -980.8015747070312 } }, { "key": "830", "attributes": { "label": "Institute of Bioorganic Chemistry, Polish Academy of Sciences", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -470.58355712890625, "y": -901.1495361328125 } }, { "key": "831", "attributes": { "label": "Institu bruxellois pour la gestion de l'environnement", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 31, "x": 695.4690551757812, "y": 540.2196044921875 } }, { "key": "832", "attributes": { "label": "Institute of Biocybernetics and Biomedical Engineering ", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -347.55035400390625, "y": -761.5662841796875 } }, { "key": "833", "attributes": { "label": "Institute of Marine Biology", "country": "Montenegro", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 557.6586303710938, "y": -886.71826171875 } }, { "key": "834", "attributes": { "label": "Examination Center of Montenegro", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 649.9739990234375, "y": -1167.4127197265625 } }, { "key": "836", "attributes": { "label": "Instytut Chemii Przemysłowej", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 10, "nansi-degree": 5, "x": -444.5346984863281, "y": -564.7081909179688 } }, { "key": "837", "attributes": { "label": "IdeaPuzzle", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -567.2716064453125, "y": 100.354248046875 } }, { "key": "838", "attributes": { "label": "Institute for the Equality of Women and Men", "country": "Belgium", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 113.11760711669922, "y": 479.3936462402344 } }, { "key": "839", "attributes": { "label": "Electrotechnical Institute, Wroclaw Division of Electrotechnology and Materials Science", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -793.8900146484375, "y": -925.4310913085938 } }, { "key": "840", "attributes": { "label": "Instytut Geofizyki Polskiej Akademii Nauk", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 16, "x": -346.4951171875, "y": -335.857421875 } }, { "key": "842", "attributes": { "label": " High School \"Ivan Goran Kovačić\", Herceg Novi", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 641.8095092773438, "y": -1209.8624267578125 } }, { "key": "843", "attributes": { "label": "IHEST", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 1267.2542724609375, "y": -197.4212646484375 } }, { "key": "845", "attributes": { "label": "Ik heb een vraag", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": 407.4950866699219, "y": 552.41259765625 } }, { "key": "848", "attributes": { "label": "Instituto de Linguística Teórica e Computacional", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 221.07748413085938, "y": -325.7508544921875 } }, { "key": "85", "attributes": { "label": "Institute of Control and System Research - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 14.09772777557373, "y": -1004.8280639648438 } }, { "key": "850", "attributes": { "label": "IMEC", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 17, "x": 288.73699951171875, "y": 436.23895263671875 } }, { "key": "852", "attributes": { "label": "Institute of Mechatronics, Nanotechnology and Vacuum Technique - Koszalin University of Technology ", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -547.4063720703125, "y": -567.5797119140625 } }, { "key": "854", "attributes": { "label": "Institute for Engineering of Polymer Materials and Dies ", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -260.9839782714844, "y": -691.9813842773438 } }, { "key": "855", "attributes": { "label": "Institute and museum of the History of Science", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 16, "x": 702.3870849609375, "y": -369.1021728515625 } }, { "key": "857", "attributes": { "label": "Research Institute for Nature and Forest", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 23, "x": 531.2503051757812, "y": 536.5009155273438 } }, { "key": "859", "attributes": { "label": "Instituto Nacional de Engenharia, Tecnologia, e Inovação I.P", "country": "Portugal", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 368.818603515625, "y": -138.3850555419922 } }, { "key": "860", "attributes": { "label": "Institute of Natural Fibers", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -73.02407836914062, "y": -484.8822021484375 } }, { "key": "861", "attributes": { "label": "Influenza.be", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 520.4282836914062, "y": 676.316650390625 } }, { "key": "862", "attributes": { "label": "Info-durable.be", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 45, "x": 849.9854736328125, "y": 467.4144287109375 } }, { "key": "863", "attributes": { "label": "Info Fest", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 925.1697998046875, "y": -1254.47705078125 } }, { "key": "865", "attributes": { "label": "Health portal", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -555.208984375, "y": 1019.2271728515625 } }, { "key": "866", "attributes": { "label": "INIST", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-degree": 5, "x": 658.0082397460938, "y": -75.81619262695312 } }, { "key": "867", "attributes": { "label": "Materials Design Division, Faculty of Materials Science and Engineering, Warsaw University of Technology ", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -333.4183654785156, "y": -821.278076171875 } }, { "key": "868", "attributes": { "label": "Innovation contest", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -448.6993408203125, "y": 1091.2926025390625 } }, { "key": "869", "attributes": { "label": "Central Hungarian Regional Development Agency", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -970.2675170898438, "y": -263.53680419921875 } }, { "key": "87", "attributes": { "label": "Institute of Genetics - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 193.7125701904297, "y": -879.6425170898438 } }, { "key": "870", "attributes": { "label": "Innostart – National Business and Innovation Centre", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -990.8255004882812, "y": -232.9782257080078 } }, { "key": "872", "attributes": { "label": "Innovatech", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 39, "x": 645.010986328125, "y": 252.62159729003906 } }, { "key": "873", "attributes": { "label": "the Society of Innovative Teachers in Bulgaria ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -73.02896118164062, "y": -956.3474731445312 } }, { "key": "874", "attributes": { "label": "Foundation Innove", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -340.9718322753906, "y": 856.0383911132812 } }, { "key": "875", "attributes": { "label": "Institut national du patrimoine", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-degree": 6, "x": 1053.007080078125, "y": -385.9923095703125 } }, { "key": "876", "attributes": { "label": "Istituto Nazionale di Ricerca per alimenti e nutrizione", "country": "Italy", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "1", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 773.076171875, "y": -568.3223266601562 } }, { "key": "877", "attributes": { "label": "Institute for Nuclear Research and Nuclear Energy - BAS ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 171.7187957763672, "y": -894.2454223632812 } }, { "key": "88", "attributes": { "label": "ICT Science Center", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -263.1964111328125, "y": 935.5330200195312 } }, { "key": "883", "attributes": { "label": "Institute of Foreign Languages", "country": "Montenegro", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 687.6802978515625, "y": -1085.69921875 } }, { "key": "884", "attributes": { "label": "Institute of Oceanology - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 208.0283203125, "y": -439.4729309082031 } }, { "key": "885", "attributes": { "label": "Military University of Technology, Institute of Optoelectronics", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -275.87847900390625, "y": -603.7109375 } }, { "key": "886", "attributes": { "label": "Instituto Politécnico do Cávado e do Ave", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "1", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -599.4852905273438, "y": -508.6815490722656 } }, { "key": "888", "attributes": { "label": "Scientific Institute of Public Health", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": 456.9688415527344, "y": 590.7982177734375 } }, { "key": "889", "attributes": { "label": "Instituto Piaget", "country": "Portugal", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 17, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -13.153761863708496, "y": -1802.404541015625 } }, { "key": "890", "attributes": { "label": "The Andrzej Soltan Institute for Nuclear Studies", "country": "Poland", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -297.6570739746094, "y": -585.41796875 } }, { "key": "891", "attributes": { "label": "Instytut Podstawowych Problemów Techniki PAN", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 2, "nansi-degree": 23, "x": -216.86807250976562, "y": -526.4179077148438 } }, { "key": "892", "attributes": { "label": "Institute for Physical Research", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -345.757568359375, "y": -1331.015625 } }, { "key": "894", "attributes": { "label": "IPS", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 763.7008666992188, "y": 779.000244140625 } }, { "key": "895", "attributes": { "label": "Institute of Psychology - BAS", "country": "Bulgaria", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -153.11508178710938, "y": -878.024658203125 } }, { "key": "896", "attributes": { "label": "IRC - Bulgaria ", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 225.75045776367188, "y": -806.1365966796875 } }, { "key": "897", "attributes": { "label": "Belgian Interregional Environment Agency", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": 602.6347045898438, "y": 483.9815368652344 } }, { "key": "9", "attributes": { "label": "AgroWeb Armenia", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 23, "x": -605.4404296875, "y": -1165.2938232421875 } }, { "key": "90", "attributes": { "label": "Sistemq informazione nazionale sull'agricoltura biologica", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "1", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 854.9806518554688, "y": -656.8239135742188 } }, { "key": "901", "attributes": { "label": "Institute of Radiophysics & Electronics", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -349.5257263183594, "y": -1306.84375 } }, { "key": "902", "attributes": { "label": "Royal Institute for International Relations", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": 297.5246887207031, "y": -51.56401443481445 } }, { "key": "903", "attributes": { "label": "Institute for the encouragement of Scientific Research and Innovation of Brussels", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 565.4461059570312, "y": 258.0197448730469 } }, { "key": "904", "attributes": { "label": "L’Institut des Sciences de la Communication du CNRS", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": 787.7816772460938, "y": -112.76424407958984 } }, { "key": "906", "attributes": { "label": "Ingénieurs sans frontières", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": 1182.73681640625, "y": 268.7086181640625 } }, { "key": "908", "attributes": { "label": "Isotopolis", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "1", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": 329.7655029296875, "y": 394.3880310058594 } }, { "key": "909", "attributes": { "label": "Fundacja Instytut Spraw Publicznych", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -424.80670166015625, "y": -451.10833740234375 } }, { "key": "91", "attributes": { "label": "Institute for Informatics and Automation Problems", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -398.2744445800781, "y": -1283.7606201171875 } }, { "key": "911", "attributes": { "label": "Istituto Sviluppo sostenibile Italia", "country": "Italy", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 736.2896118164062, "y": -612.1011962890625 } }, { "key": "912", "attributes": { "label": "Georgi Nadjakov Institute of Solid State Physics - BAS", "country": "Bulgaria", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 10, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": 99.79267883300781, "y": -898.0687255859375 } }, { "key": "914", "attributes": { "label": "Institute for Strategic Studies and Prognosis", "country": "Montenegro", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 705.154052734375, "y": -1057.3992919921875 } }, { "key": "916", "attributes": { "label": "Chiaramente scienza", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 658.0065307617188, "y": -562.6618041992188 } }, { "key": "917", "attributes": { "label": "Istituto Veneto", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 16, "nansi-degree": 12, "x": 596.2408447265625, "y": -455.0274963378906 } }, { "key": "918", "attributes": { "label": "Estonian IT College", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -526.5733032226562, "y": 676.934326171875 } }, { "key": "920", "attributes": { "label": "IT Development Support Council", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -581.99169921875, "y": -1371.988525390625 } }, { "key": "921", "attributes": { "label": "The Institute of Electron Technology in Warsaw", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -165.46078491210938, "y": -813.692138671875 } }, { "key": "922", "attributes": { "label": "Institute of Tropical medicine", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "1", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": 395.4849853515625, "y": 523.400634765625 } }, { "key": "925", "attributes": { "label": "Hu. Association of IT companies", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -1004.0857543945312, "y": -259.86248779296875 } }, { "key": "926", "attributes": { "label": "IWT", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": 311.42034912109375, "y": 566.7400512695312 } }, { "key": "927", "attributes": { "label": "Jyväskylä University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -605.9505004882812, "y": -21.703174591064453 } }, { "key": "930", "attributes": { "label": "University of Joensuu", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 54, "x": -606.8463745117188, "y": 95.45044708251953 } }, { "key": "931", "attributes": { "label": "Jeunesses scientifiques de Belgique", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": 711.5302124023438, "y": 151.98085021972656 } }, { "key": "933", "attributes": { "label": "Bałtowski Park Jurajski", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -942.3849487304688, "y": -1192.1590576171875 } }, { "key": "934", "attributes": { "label": "Solecki Park Jurajski", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -903.6565551757812, "y": -1164.5408935546875 } }, { "key": "935", "attributes": { "label": "Youth Cultural Center \"Juventas\"", "country": "Montenegro", "tag_gender": "1", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 12, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": 506.0865783691406, "y": -1060.48095703125 } }, { "key": "936", "attributes": { "label": "University of Jyväskylä", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 78, "x": -404.1075439453125, "y": 156.1963348388672 } }, { "key": "937", "attributes": { "label": "Kohtla Underground Mining Museum-Park", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -688.860107421875, "y": 1205.7923583984375 } }, { "key": "938", "attributes": { "label": "Kajaani University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -670.8633422851562, "y": -33.09105682373047 } }, { "key": "939", "attributes": { "label": "Kanal 2", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -538.6023559570312, "y": 1318.424560546875 } }, { "key": "940", "attributes": { "label": "Koninklijke Academie voor Nederlandse Taal- en Letterkunde", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 208.32345581054688, "y": 348.8770751953125 } }, { "key": "941", "attributes": { "label": "Royal Academy for Overseas Sciences", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 23, "x": 450.640625, "y": 444.0823059082031 } }, { "key": "943", "attributes": { "label": "Karula National Park", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -819.8953857421875, "y": 986.5842895507812 } }, { "key": "944", "attributes": { "label": "KASCIOPE", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 17, "x": 1257.093994140625, "y": -246.44284057617188 } }, { "key": "946", "attributes": { "label": "National Institute of Chemical Physics and Biophysics", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 19, "x": -363.3172912597656, "y": 889.0327758789062 } }, { "key": "947", "attributes": { "label": "Royal Library Albert I", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 39, "x": 406.2027893066406, "y": 265.6097106933594 } }, { "key": "948", "attributes": { "label": "King Baudouin Foundation", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 29, "x": 634.6373291015625, "y": 316.1966857910156 } }, { "key": "95", "attributes": { "label": "Klassikaraadio", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 14, "x": -414.7036437988281, "y": 1269.7264404296875 } }, { "key": "950", "attributes": { "label": "North-Transdanubian Regional Development Agency", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "1", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "1", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 21, "x": -995.510498046875, "y": -322.22589111328125 } }, { "key": "951", "attributes": { "label": "Corvinus University, Buda", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -598.7854614257812, "y": -224.5128631591797 } }, { "key": "952", "attributes": { "label": "Science Adventure", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -326.00439453125, "y": 1358.9659423828125 } }, { "key": "953", "attributes": { "label": "Estonian Association of Chemical Industry", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -536.0552368164062, "y": 760.7417602539062 } }, { "key": "954", "attributes": { "label": "Dag van de onderzoekers", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": 252.68421936035156, "y": 475.9436950683594 } }, { "key": "955", "attributes": { "label": "KesKus", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -710.1232299804688, "y": 1265.5911865234375 } }, { "key": "956", "attributes": { "label": "Estonian Environment Information Centre", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": -712.0167846679688, "y": 977.7667846679688 } }, { "key": "957", "attributes": { "label": "Environmental Portal Alkranel", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 3, "x": -774.1211547851562, "y": 1053.5848388671875 } }, { "key": "958", "attributes": { "label": "Society of Environmental Education", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -914.046142578125, "y": 1004.8765869140625 } }, { "key": "959", "attributes": { "label": "Royal Institute for Cultural Heritage", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 19, "x": 496.0955505371094, "y": 339.9350891113281 } }, { "key": "96", "attributes": { "label": "Global warming Blog", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -659.6138916015625, "y": 1329.02978515625 } }, { "key": "960", "attributes": { "label": "Estonian Literary Museum ", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "1", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": -570.3977661132812, "y": 900.6986083984375 } }, { "key": "963", "attributes": { "label": "Urząd Miasta i Gminy Kłodawa", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Subnational and local actors", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -643.4133911132812, "y": -874.8374633789062 } }, { "key": "964", "attributes": { "label": "Royal Museum of Art and History", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 22, "x": 512.0774536132812, "y": 454.6046142578125 } }, { "key": "965", "attributes": { "label": "School Portal", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -396.29010009765625, "y": 874.6843872070312 } }, { "key": "966", "attributes": { "label": "Copernicus Science Centre", "country": "Poland", "tag_gender": "1", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 251.60719299316406, "y": -169.17849731445312 } }, { "key": "968", "attributes": { "label": "Kortsleht", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 21, "x": -632.6097412109375, "y": 1200.1978759765625 } }, { "key": "969", "attributes": { "label": "Kõrvemaa Landscape Reserv", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -815.7667846679688, "y": 837.1157836914062 } }, { "key": "97", "attributes": { "label": "De conceptuele ingenieur", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 11, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": 481.489013671875, "y": 999.882080078125 } }, { "key": "970", "attributes": { "label": "Eagle Club", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 13, "x": -748.3248291015625, "y": 1126.99365234375 } }, { "key": "971", "attributes": { "label": "Research Institute for the Languages of Finland ", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": -640.4435424804688, "y": 192.560302734375 } }, { "key": "972", "attributes": { "label": "KÖVET Association", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -1145.263916015625, "y": -164.76560974121094 } }, { "key": "973", "attributes": { "label": "Laboratoire Histoire des sciences", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 9, "x": 831.908447265625, "y": -163.3288116455078 } }, { "key": "974", "attributes": { "label": "Central Statistical Office", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Policy makers and governmental organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 6, "x": -738.0392456054688, "y": -440.2008056640625 } }, { "key": "975", "attributes": { "label": "Association for Environmental Services and Producers", "country": "Hungary", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 8, "x": -1056.7608642578125, "y": -267.5263977050781 } }, { "key": "976", "attributes": { "label": "National Center for Educational Technologies", "country": "Armenia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "1", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 9, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -546.98046875, "y": -1326.8797607421875 } }, { "key": "977", "attributes": { "label": "National Public Health Institute ", "country": "Finland", "tag_gender": "0", "tag_governance": "1", "tag_health": "1", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 37, "x": -382.4598388671875, "y": 269.69964599609375 } }, { "key": "978", "attributes": { "label": "Katholieke Universiteit Brussel", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 23, "x": 174.75575256347656, "y": 279.12646484375 } }, { "key": "979", "attributes": { "label": "Raadio Kuku", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 4, "x": -565.375732421875, "y": 1284.8697509765625 } }, { "key": "98", "attributes": { "label": "Department of Robotics and Mechatronics, AGH - the University of Science and Technology in Cracow", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "1", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -497.4073486328125, "y": -602.639892578125 } }, { "key": "980", "attributes": { "label": "Katolicki Uniwersytet Lubelski im. Jana Pawła II", "country": "Poland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-degree": 18, "x": -441.4411926269531, "y": -369.74468994140625 } }, { "key": "981", "attributes": { "label": "Katholieke Universiteit Leuven", "country": "Belgium", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 78, "x": 228.9287872314453, "y": 509.9004821777344 } }, { "key": "982", "attributes": { "label": "Tallinna Youth Centre Kullo", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Science centres and museums", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -819.2821044921875, "y": 853.29248046875 } }, { "key": "983", "attributes": { "label": "National Consumer Research Centre ", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "1", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": -550.9400634765625, "y": 325.56292724609375 } }, { "key": "984", "attributes": { "label": "Researchers’ Night", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "1", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Events/projects", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 12, "x": -937.2056884765625, "y": -345.9261474609375 } }, { "key": "985", "attributes": { "label": "Researcher Students’ Association", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 24, "x": -754.6964111328125, "y": -463.2015075683594 } }, { "key": "986", "attributes": { "label": "Researcher Teachers’ Association", "country": "Hungary", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "NGO-CSO", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 8, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": -709.5261840820312, "y": -455.0107727050781 } }, { "key": "987", "attributes": { "label": "Academy of Fine Arts", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 5, "x": -528.62109375, "y": 307.3533630371094 } }, { "key": "988", "attributes": { "label": "KONINKLIJKE VLAAMSE ACADEMIE VAN BELGIË VOOR WETENSCHAPPEN EN KUNSTEN", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Advisory bodies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 19, "x": 256.4835510253906, "y": 241.1374969482422 } }, { "key": "989", "attributes": { "label": "Kymenlaakso University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 0, "nansi-degree": 20, "x": -584.9573974609375, "y": 12.007425308227539 } }, { "key": "99", "attributes": { "label": "Ethische reflecties", "country": "Belgium", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Personal websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "1", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 11, "nansi-weighted-degree": 0, "nansi-degree": 10, "x": 444.22674560546875, "y": 932.8617553710938 } }, { "key": "990", "attributes": { "label": "KyotoTarget", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Companies", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 19, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": -1365.9588623046875, "y": -1175.698486328125 } }, { "key": "991", "attributes": { "label": "La città dei bambini", "country": "Italy", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Portal or other independent Websites", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "1", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 4, "nansi-weighted-degree": 0, "nansi-degree": 1, "x": 753.1417236328125, "y": -622.5687866210938 } }, { "key": "992", "attributes": { "label": "Lahemaa National Park", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 15, "x": -743.9857788085938, "y": 1019.96142578125 } }, { "key": "993", "attributes": { "label": "Hiiumaa Islets Landscape Reserve", "country": "Estonia", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Research centers", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 6, "nansi-weighted-degree": 0, "nansi-degree": 2, "x": -943.5774536132812, "y": 973.2958984375 } }, { "key": "994", "attributes": { "label": "Alliance pour la planète", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Network of organizations", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-degree": 11, "x": 1081.1046142578125, "y": 339.5364074707031 } }, { "key": "995", "attributes": { "label": "Lahti University of Applied Sciences", "country": "Finland", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "1", "actor_type": "Universities and secondary schools", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 2, "nansi-weighted-degree": 2, "nansi-degree": 15, "x": -547.63916015625, "y": -24.191410064697266 } }, { "key": "996", "attributes": { "label": "La Recherche", "country": "France", "tag_gender": "0", "tag_governance": "1", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "0", "tag_food": "0", "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-degree": 17, "x": 940.317626953125, "y": -22.074111938476562 } }, { "key": "997", "attributes": { "label": "La revue durable", "country": "France", "tag_gender": "0", "tag_governance": "0", "tag_health": "0", "tag_info": "0", "tag_internat": "0", "tag_nano": "0", "tag_people": "0", "tag_reg": "0", "tag_research": "0", "tag_scienceedu": "0", "actor_type": "Media", "tag_secur": "0", "tag_socioeco": "0", "tag_space": "0", "tag_transport": "0", "tag_agri": "0", "tag_biotech": "0", "tag_business": "0", "tag_comm": "0", "tag_energy": "0", "tag_environment": "1", "tag_food": "0", "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-degree": 7, "x": 942.973388671875, "y": 355.3027648925781 } } ], "edges": [ { "source": "1003", "target": "1703", "key": "4088", "undirected": true }, { "source": "1003", "target": "811", "key": "4087", "undirected": true }, { "source": "1004", "target": "1570", "key": "4089", "undirected": true }, { "source": "1004", "target": "583", "key": "4092", "undirected": true }, { "source": "1004", "target": "639", "key": "4091", "undirected": true }, { "source": "1004", "target": "954", "key": "4090", "undirected": true }, { "source": "1006", "target": "903", "key": "4093", "undirected": true }, { "source": "1007", "target": "1006", "key": "4097", "undirected": true }, { "source": "1007", "target": "1247", "key": "4095", "undirected": true }, { "source": "1007", "target": "1532", "key": "4096", "undirected": true }, { "source": "1007", "target": "6", "key": "4099", "undirected": true }, { "source": "1007", "target": "643", "key": "4101", "undirected": true }, { "source": "1007", "target": "693", "key": "4100", "undirected": true }, { "source": "1007", "target": "74", "key": "4098", "undirected": true }, { "source": "1007", "target": "747", "key": "4094", "undirected": true }, { "source": "1008", "target": "256", "key": "4103", "undirected": true }, { "source": "1008", "target": "460", "key": "4102", "undirected": true }, { "source": "101", "target": "1127", "key": "326", "undirected": true }, { "source": "101", "target": "165", "key": "327", "undirected": true }, { "source": "101", "target": "460", "key": "325", "undirected": true }, { "source": "1012", "target": "1250", "key": "4105", "undirected": true }, { "source": "1012", "target": "917", "key": "4104", "undirected": true }, { "source": "1012", "target": "988", "key": "4106", "undirected": true }, { "source": "1013", "target": "1020", "key": "4108", "undirected": true }, { "source": "1013", "target": "1261", "key": "4110", "undirected": true }, { "source": "1013", "target": "1571", "key": "4107", "undirected": true }, { "source": "1013", "target": "451", "key": "4109", "undirected": true }, { "source": "1015", "target": "1045", "key": "4118", "undirected": true }, { "source": "1015", "target": "1186", "key": "4120", "undirected": true }, { "source": "1015", "target": "1241", "key": "4114", "undirected": true }, { "source": "1015", "target": "1695", "key": "4115", "undirected": true }, { "source": "1015", "target": "551", "key": "4124", "undirected": true }, { "source": "1015", "target": "592", "key": "4119", "undirected": true }, { "source": "1015", "target": "593", "key": "4123", "undirected": true }, { "source": "1015", "target": "596", "key": "4122", "undirected": true }, { "source": "1015", "target": "597", "key": "4116", "undirected": true }, { "source": "1015", "target": "609", "key": "4117", "undirected": true }, { "source": "1015", "target": "802", "key": "4112", "undirected": true }, { "source": "1015", "target": "943", "key": "4113", "undirected": true }, { "source": "1015", "target": "970", "key": "4121", "undirected": true }, { "source": "1015", "target": "992", "key": "4111", "undirected": true }, { "source": "1017", "target": "1018", "key": "4125", "undirected": true }, { "source": "1018", "target": "1138", "key": "4126", "undirected": true }, { "source": "1018", "target": "1268", "key": "4127", "undirected": true }, { "source": "1019", "target": "1239", "key": "4128", "undirected": true }, { "source": "1020", "target": "1049", "key": "4129", "undirected": true }, { "source": "1020", "target": "1202", "key": "4138", "undirected": true }, { "source": "1020", "target": "1571", "key": "4136", "undirected": true }, { "source": "1020", "target": "1573", "key": "4134", "undirected": true }, { "source": "1020", "target": "1586", "key": "4132", "undirected": true }, { "source": "1020", "target": "1603", "key": "4142", "undirected": true }, { "source": "1020", "target": "1608", "key": "4131", "undirected": true }, { "source": "1020", "target": "1625", "key": "4137", "undirected": true }, { "source": "1020", "target": "1627", "key": "4135", "undirected": true }, { "source": "1020", "target": "1646", "key": "4133", "undirected": true }, { "source": "1020", "target": "1647", "key": "4130", "undirected": true }, { "source": "1020", "target": "490", "key": "4140", "undirected": true }, { "source": "1020", "target": "859", "key": "4141", "undirected": true }, { "source": "1020", "target": "959", "key": "4139", "undirected": true }, { "source": "1021", "target": "1015", "key": "4183", "undirected": true }, { "source": "1021", "target": "1022", "key": "4201", "undirected": true }, { "source": "1021", "target": "1023", "key": "4151", "undirected": true }, { "source": "1021", "target": "1024", "key": "4180", "undirected": true }, { "source": "1021", "target": "1025", "key": "4197", "undirected": true }, { "source": "1021", "target": "1027", "key": "4166", "undirected": true }, { "source": "1021", "target": "1031", "key": "4179", "undirected": true }, { "source": "1021", "target": "104", "key": "4167", "undirected": true }, { "source": "1021", "target": "1045", "key": "4193", "undirected": true }, { "source": "1021", "target": "1145", "key": "4149", "undirected": true }, { "source": "1021", "target": "1186", "key": "4188", "undirected": true }, { "source": "1021", "target": "1214", "key": "4150", "undirected": true }, { "source": "1021", "target": "1241", "key": "4187", "undirected": true }, { "source": "1021", "target": "1244", "key": "4143", "undirected": true }, { "source": "1021", "target": "1361", "key": "4156", "undirected": true }, { "source": "1021", "target": "1367", "key": "4158", "undirected": true }, { "source": "1021", "target": "14", "key": "4198", "undirected": true }, { "source": "1021", "target": "1421", "key": "4171", "undirected": true }, { "source": "1021", "target": "1426", "key": "4155", "undirected": true }, { "source": "1021", "target": "1441", "key": "4186", "undirected": true }, { "source": "1021", "target": "1465", "key": "4194", "undirected": true }, { "source": "1021", "target": "1498", "key": "4164", "undirected": true }, { "source": "1021", "target": "1504", "key": "4165", "undirected": true }, { "source": "1021", "target": "1516", "key": "4144", "undirected": true }, { "source": "1021", "target": "1542", "key": "4173", "undirected": true }, { "source": "1021", "target": "1567", "key": "4169", "undirected": true }, { "source": "1021", "target": "1651", "key": "4199", "undirected": true }, { "source": "1021", "target": "1675", "key": "4185", "undirected": true }, { "source": "1021", "target": "1678", "key": "4195", "undirected": true }, { "source": "1021", "target": "1708", "key": "4146", "undirected": true }, { "source": "1021", "target": "183", "key": "4200", "undirected": true }, { "source": "1021", "target": "203", "key": "4175", "undirected": true }, { "source": "1021", "target": "238", "key": "4168", "undirected": true }, { "source": "1021", "target": "243", "key": "4176", "undirected": true }, { "source": "1021", "target": "247", "key": "4148", "undirected": true }, { "source": "1021", "target": "286", "key": "4178", "undirected": true }, { "source": "1021", "target": "370", "key": "4170", "undirected": true }, { "source": "1021", "target": "385", "key": "4154", "undirected": true }, { "source": "1021", "target": "510", "key": "4145", "undirected": true }, { "source": "1021", "target": "577", "key": "4162", "undirected": true }, { "source": "1021", "target": "592", "key": "4163", "undirected": true }, { "source": "1021", "target": "593", "key": "4161", "undirected": true }, { "source": "1021", "target": "597", "key": "4147", "undirected": true }, { "source": "1021", "target": "601", "key": "4182", "undirected": true }, { "source": "1021", "target": "609", "key": "4192", "undirected": true }, { "source": "1021", "target": "617", "key": "4159", "undirected": true }, { "source": "1021", "target": "627", "key": "4152", "undirected": true }, { "source": "1021", "target": "698", "key": "4174", "undirected": true }, { "source": "1021", "target": "758", "key": "4177", "undirected": true }, { "source": "1021", "target": "76", "key": "4172", "undirected": true }, { "source": "1021", "target": "791", "key": "4153", "undirected": true }, { "source": "1021", "target": "802", "key": "4191", "undirected": true }, { "source": "1021", "target": "943", "key": "4157", "undirected": true }, { "source": "1021", "target": "956", "key": "4184", "undirected": true }, { "source": "1021", "target": "958", "key": "4181", "undirected": true }, { "source": "1021", "target": "969", "key": "4189", "undirected": true }, { "source": "1021", "target": "970", "key": "4160", "undirected": true }, { "source": "1021", "target": "992", "key": "4196", "undirected": true }, { "source": "1021", "target": "993", "key": "4190", "undirected": true }, { "source": "1024", "target": "1032", "key": "4209", "undirected": true }, { "source": "1024", "target": "1313", "key": "4208", "undirected": true }, { "source": "1024", "target": "1367", "key": "4219", "undirected": true }, { "source": "1024", "target": "1451", "key": "4212", "undirected": true }, { "source": "1024", "target": "1508", "key": "4203", "undirected": true }, { "source": "1024", "target": "1516", "key": "4214", "undirected": true }, { "source": "1024", "target": "1542", "key": "4217", "undirected": true }, { "source": "1024", "target": "160", "key": "4211", "undirected": true }, { "source": "1024", "target": "183", "key": "4202", "undirected": true }, { "source": "1024", "target": "588", "key": "4210", "undirected": true }, { "source": "1024", "target": "592", "key": "4205", "undirected": true }, { "source": "1024", "target": "593", "key": "4206", "undirected": true }, { "source": "1024", "target": "630", "key": "4207", "undirected": true }, { "source": "1024", "target": "791", "key": "4204", "undirected": true }, { "source": "1024", "target": "820", "key": "4213", "undirected": true }, { "source": "1024", "target": "937", "key": "4215", "undirected": true }, { "source": "1024", "target": "956", "key": "4218", "undirected": true }, { "source": "1024", "target": "992", "key": "4216", "undirected": true }, { "source": "1025", "target": "592", "key": "4220", "undirected": true }, { "source": "103", "target": "1588", "key": "328", "undirected": true }, { "source": "103", "target": "1618", "key": "330", "undirected": true }, { "source": "103", "target": "1704", "key": "329", "undirected": true }, { "source": "103", "target": "988", "key": "331", "undirected": true }, { "source": "1030", "target": "1067", "key": "4231", "undirected": true }, { "source": "1030", "target": "1077", "key": "4230", "undirected": true }, { "source": "1030", "target": "1157", "key": "4222", "undirected": true }, { "source": "1030", "target": "1521", "key": "4224", "undirected": true }, { "source": "1030", "target": "1541", "key": "4223", "undirected": true }, { "source": "1030", "target": "1650", "key": "4226", "undirected": true }, { "source": "1030", "target": "1703", "key": "4229", "undirected": true }, { "source": "1030", "target": "242", "key": "4225", "undirected": true }, { "source": "1030", "target": "438", "key": "4232", "undirected": true }, { "source": "1030", "target": "506", "key": "4228", "undirected": true }, { "source": "1030", "target": "715", "key": "4221", "undirected": true }, { "source": "1030", "target": "930", "key": "4227", "undirected": true }, { "source": "1031", "target": "1498", "key": "4233", "undirected": true }, { "source": "1032", "target": "1451", "key": "4239", "undirected": true }, { "source": "1032", "target": "362", "key": "4237", "undirected": true }, { "source": "1032", "target": "547", "key": "4234", "undirected": true }, { "source": "1032", "target": "588", "key": "4235", "undirected": true }, { "source": "1032", "target": "630", "key": "4236", "undirected": true }, { "source": "1032", "target": "791", "key": "4238", "undirected": true }, { "source": "1035", "target": "1061", "key": "4240", "undirected": true }, { "source": "1035", "target": "1178", "key": "4244", "undirected": true }, { "source": "1035", "target": "1491", "key": "4241", "undirected": true }, { "source": "1035", "target": "668", "key": "4242", "undirected": true }, { "source": "1035", "target": "974", "key": "4243", "undirected": true }, { "source": "1036", "target": "1104", "key": "4245", "undirected": true }, { "source": "1036", "target": "1569", "key": "4246", "undirected": true }, { "source": "1039", "target": "1040", "key": "4248", "undirected": true }, { "source": "1039", "target": "1591", "key": "4247", "undirected": true }, { "source": "104", "target": "1025", "key": "332", "undirected": true }, { "source": "104", "target": "1027", "key": "337", "undirected": true }, { "source": "104", "target": "1367", "key": "341", "undirected": true }, { "source": "104", "target": "1504", "key": "336", "undirected": true }, { "source": "104", "target": "1516", "key": "338", "undirected": true }, { "source": "104", "target": "183", "key": "335", "undirected": true }, { "source": "104", "target": "592", "key": "342", "undirected": true }, { "source": "104", "target": "593", "key": "340", "undirected": true }, { "source": "104", "target": "791", "key": "339", "undirected": true }, { "source": "104", "target": "957", "key": "333", "undirected": true }, { "source": "104", "target": "970", "key": "334", "undirected": true }, { "source": "1040", "target": "1039", "key": "4249", "undirected": true }, { "source": "1040", "target": "1073", "key": "4259", "undirected": true }, { "source": "1040", "target": "1089", "key": "4261", "undirected": true }, { "source": "1040", "target": "1130", "key": "4256", "undirected": true }, { "source": "1040", "target": "1131", "key": "4260", "undirected": true }, { "source": "1040", "target": "1132", "key": "4255", "undirected": true }, { "source": "1040", "target": "1135", "key": "4258", "undirected": true }, { "source": "1040", "target": "1136", "key": "4257", "undirected": true }, { "source": "1040", "target": "1166", "key": "4254", "undirected": true }, { "source": "1040", "target": "1383", "key": "4252", "undirected": true }, { "source": "1040", "target": "1591", "key": "4262", "undirected": true }, { "source": "1040", "target": "256", "key": "4251", "undirected": true }, { "source": "1040", "target": "461", "key": "4253", "undirected": true }, { "source": "1040", "target": "598", "key": "4250", "undirected": true }, { "source": "1041", "target": "1247", "key": "4268", "undirected": true }, { "source": "1041", "target": "1314", "key": "4266", "undirected": true }, { "source": "1041", "target": "1602", "key": "4265", "undirected": true }, { "source": "1041", "target": "1603", "key": "4264", "undirected": true }, { "source": "1041", "target": "598", "key": "4263", "undirected": true }, { "source": "1041", "target": "931", "key": "4269", "undirected": true }, { "source": "1041", "target": "996", "key": "4267", "undirected": true }, { "source": "1044", "target": "1158", "key": "4273", "undirected": true }, { "source": "1044", "target": "1169", "key": "4275", "undirected": true }, { "source": "1044", "target": "1203", "key": "4278", "undirected": true }, { "source": "1044", "target": "1331", "key": "4283", "undirected": true }, { "source": "1044", "target": "1438", "key": "4284", "undirected": true }, { "source": "1044", "target": "1485", "key": "4277", "undirected": true }, { "source": "1044", "target": "1584", "key": "4282", "undirected": true }, { "source": "1044", "target": "1614", "key": "4272", "undirected": true }, { "source": "1044", "target": "1617", "key": "4285", "undirected": true }, { "source": "1044", "target": "1640", "key": "4280", "undirected": true }, { "source": "1044", "target": "1669", "key": "4286", "undirected": true }, { "source": "1044", "target": "308", "key": "4279", "undirected": true }, { "source": "1044", "target": "319", "key": "4271", "undirected": true }, { "source": "1044", "target": "333", "key": "4270", "undirected": true }, { "source": "1044", "target": "335", "key": "4287", "undirected": true }, { "source": "1044", "target": "347", "key": "4276", "undirected": true }, { "source": "1044", "target": "470", "key": "4281", "undirected": true }, { "source": "1044", "target": "670", "key": "4274", "undirected": true }, { "source": "1045", "target": "1015", "key": "4288", "undirected": true }, { "source": "1045", "target": "1289", "key": "4290", "undirected": true }, { "source": "1045", "target": "1441", "key": "4289", "undirected": true }, { "source": "1045", "target": "286", "key": "4291", "undirected": true }, { "source": "1046", "target": "1035", "key": "4294", "undirected": true }, { "source": "1046", "target": "1104", "key": "4292", "undirected": true }, { "source": "1046", "target": "1105", "key": "4293", "undirected": true }, { "source": "1046", "target": "1108", "key": "4297", "undirected": true }, { "source": "1046", "target": "1176", "key": "4302", "undirected": true }, { "source": "1046", "target": "1274", "key": "4301", "undirected": true }, { "source": "1046", "target": "1352", "key": "4298", "undirected": true }, { "source": "1046", "target": "1525", "key": "4295", "undirected": true }, { "source": "1046", "target": "242", "key": "4299", "undirected": true }, { "source": "1046", "target": "446", "key": "4300", "undirected": true }, { "source": "1046", "target": "974", "key": "4296", "undirected": true }, { "source": "1048", "target": "294", "key": "4303", "undirected": true }, { "source": "1049", "target": "1261", "key": "4304", "undirected": true }, { "source": "1049", "target": "451", "key": "4305", "undirected": true }, { "source": "105", "target": "109", "key": "346", "undirected": true }, { "source": "105", "target": "1570", "key": "348", "undirected": true }, { "source": "105", "target": "176", "key": "347", "undirected": true }, { "source": "105", "target": "68", "key": "345", "undirected": true }, { "source": "105", "target": "97", "key": "343", "undirected": true }, { "source": "105", "target": "981", "key": "344", "undirected": true }, { "source": "1055", "target": "1034", "key": "4307", "undirected": true }, { "source": "1055", "target": "1061", "key": "4306", "undirected": true }, { "source": "1055", "target": "1104", "key": "4309", "undirected": true }, { "source": "1055", "target": "1494", "key": "4308", "undirected": true }, { "source": "1056", "target": "1358", "key": "4315", "undirected": true }, { "source": "1056", "target": "1665", "key": "4312", "undirected": true }, { "source": "1056", "target": "236", "key": "4314", "undirected": true }, { "source": "1056", "target": "237", "key": "4317", "undirected": true }, { "source": "1056", "target": "258", "key": "4318", "undirected": true }, { "source": "1056", "target": "485", "key": "4311", "undirected": true }, { "source": "1056", "target": "496", "key": "4313", "undirected": true }, { "source": "1056", "target": "994", "key": "4310", "undirected": true }, { "source": "1056", "target": "996", "key": "4316", "undirected": true }, { "source": "1059", "target": "1096", "key": "4320", "undirected": true }, { "source": "1059", "target": "1676", "key": "4321", "undirected": true }, { "source": "1059", "target": "502", "key": "4319", "undirected": true }, { "source": "106", "target": "1671", "key": "352", "undirected": true }, { "source": "106", "target": "850", "key": "350", "undirected": true }, { "source": "106", "target": "926", "key": "351", "undirected": true }, { "source": "106", "target": "981", "key": "349", "undirected": true }, { "source": "1061", "target": "1035", "key": "4323", "undirected": true }, { "source": "1061", "target": "1491", "key": "4322", "undirected": true }, { "source": "1061", "target": "668", "key": "4325", "undirected": true }, { "source": "1061", "target": "925", "key": "4324", "undirected": true }, { "source": "1063", "target": "1451", "key": "4327", "undirected": true }, { "source": "1063", "target": "76", "key": "4326", "undirected": true }, { "source": "1064", "target": "1089", "key": "4337", "undirected": true }, { "source": "1064", "target": "1570", "key": "4335", "undirected": true }, { "source": "1064", "target": "1588", "key": "4336", "undirected": true }, { "source": "1064", "target": "1602", "key": "4331", "undirected": true }, { "source": "1064", "target": "1603", "key": "4334", "undirected": true }, { "source": "1064", "target": "1607", "key": "4333", "undirected": true }, { "source": "1064", "target": "1704", "key": "4332", "undirected": true }, { "source": "1064", "target": "225", "key": "4330", "undirected": true }, { "source": "1064", "target": "386", "key": "4328", "undirected": true }, { "source": "1064", "target": "743", "key": "4329", "undirected": true }, { "source": "1065", "target": "1588", "key": "4349", "undirected": true }, { "source": "1065", "target": "1602", "key": "4356", "undirected": true }, { "source": "1065", "target": "1607", "key": "4351", "undirected": true }, { "source": "1065", "target": "1614", "key": "4354", "undirected": true }, { "source": "1065", "target": "1684", "key": "4348", "undirected": true }, { "source": "1065", "target": "1704", "key": "4355", "undirected": true }, { "source": "1065", "target": "222", "key": "4350", "undirected": true }, { "source": "1065", "target": "225", "key": "4339", "undirected": true }, { "source": "1065", "target": "333", "key": "4353", "undirected": true }, { "source": "1065", "target": "344", "key": "4343", "undirected": true }, { "source": "1065", "target": "423", "key": "4338", "undirected": true }, { "source": "1065", "target": "601", "key": "4347", "undirected": true }, { "source": "1065", "target": "706", "key": "4340", "undirected": true }, { "source": "1065", "target": "715", "key": "4346", "undirected": true }, { "source": "1065", "target": "764", "key": "4352", "undirected": true }, { "source": "1065", "target": "897", "key": "4345", "undirected": true }, { "source": "1065", "target": "947", "key": "4342", "undirected": true }, { "source": "1065", "target": "959", "key": "4341", "undirected": true }, { "source": "1065", "target": "964", "key": "4344", "undirected": true }, { "source": "1066", "target": "1199", "key": "4357", "undirected": true }, { "source": "1067", "target": "1168", "key": "4371", "undirected": true }, { "source": "1067", "target": "1212", "key": "4370", "undirected": true }, { "source": "1067", "target": "1244", "key": "4362", "undirected": true }, { "source": "1067", "target": "1521", "key": "4365", "undirected": true }, { "source": "1067", "target": "1541", "key": "4374", "undirected": true }, { "source": "1067", "target": "1551", "key": "4372", "undirected": true }, { "source": "1067", "target": "1598", "key": "4361", "undirected": true }, { "source": "1067", "target": "1703", "key": "4363", "undirected": true }, { "source": "1067", "target": "1727", "key": "4358", "undirected": true }, { "source": "1067", "target": "203", "key": "4373", "undirected": true }, { "source": "1067", "target": "242", "key": "4364", "undirected": true }, { "source": "1067", "target": "490", "key": "4368", "undirected": true }, { "source": "1067", "target": "506", "key": "4367", "undirected": true }, { "source": "1067", "target": "707", "key": "4369", "undirected": true }, { "source": "1067", "target": "715", "key": "4366", "undirected": true }, { "source": "1067", "target": "930", "key": "4359", "undirected": true }, { "source": "1067", "target": "936", "key": "4360", "undirected": true }, { "source": "1072", "target": "925", "key": "4375", "undirected": true }, { "source": "1079", "target": "1352", "key": "4378", "undirected": true }, { "source": "1079", "target": "1521", "key": "4379", "undirected": true }, { "source": "1079", "target": "1650", "key": "4377", "undirected": true }, { "source": "1079", "target": "242", "key": "4380", "undirected": true }, { "source": "1079", "target": "639", "key": "4381", "undirected": true }, { "source": "1079", "target": "811", "key": "4376", "undirected": true }, { "source": "1080", "target": "1048", "key": "4383", "undirected": true }, { "source": "1080", "target": "1084", "key": "4385", "undirected": true }, { "source": "1080", "target": "1092", "key": "4386", "undirected": true }, { "source": "1080", "target": "565", "key": "4384", "undirected": true }, { "source": "1080", "target": "9", "key": "4382", "undirected": true }, { "source": "1081", "target": "389", "key": "4387", "undirected": true }, { "source": "1082", "target": "1080", "key": "4402", "undirected": true }, { "source": "1082", "target": "1084", "key": "4401", "undirected": true }, { "source": "1082", "target": "1085", "key": "4399", "undirected": true }, { "source": "1082", "target": "1092", "key": "4404", "undirected": true }, { "source": "1082", "target": "1386", "key": "4398", "undirected": true }, { "source": "1082", "target": "1430", "key": "4396", "undirected": true }, { "source": "1082", "target": "1453", "key": "4388", "undirected": true }, { "source": "1082", "target": "1730", "key": "4397", "undirected": true }, { "source": "1082", "target": "215", "key": "4405", "undirected": true }, { "source": "1082", "target": "218", "key": "4390", "undirected": true }, { "source": "1082", "target": "221", "key": "4392", "undirected": true }, { "source": "1082", "target": "255", "key": "4394", "undirected": true }, { "source": "1082", "target": "289", "key": "4403", "undirected": true }, { "source": "1082", "target": "294", "key": "4393", "undirected": true }, { "source": "1082", "target": "411", "key": "4395", "undirected": true }, { "source": "1082", "target": "565", "key": "4400", "undirected": true }, { "source": "1082", "target": "580", "key": "4389", "undirected": true }, { "source": "1082", "target": "920", "key": "4391", "undirected": true }, { "source": "1086", "target": "1551", "key": "4407", "undirected": true }, { "source": "1086", "target": "242", "key": "4408", "undirected": true }, { "source": "1086", "target": "377", "key": "4411", "undirected": true }, { "source": "1086", "target": "669", "key": "4409", "undirected": true }, { "source": "1086", "target": "753", "key": "4410", "undirected": true }, { "source": "1086", "target": "977", "key": "4406", "undirected": true }, { "source": "1088", "target": "1102", "key": "4416", "undirected": true }, { "source": "1088", "target": "1158", "key": "4414", "undirected": true }, { "source": "1088", "target": "1579", "key": "4415", "undirected": true }, { "source": "1088", "target": "303", "key": "4417", "undirected": true }, { "source": "1088", "target": "490", "key": "4412", "undirected": true }, { "source": "1088", "target": "537", "key": "4413", "undirected": true }, { "source": "1089", "target": "766", "key": "4418", "undirected": true }, { "source": "109", "target": "105", "key": "353", "undirected": true }, { "source": "109", "target": "176", "key": "355", "undirected": true }, { "source": "109", "target": "626", "key": "359", "undirected": true }, { "source": "109", "target": "68", "key": "356", "undirected": true }, { "source": "109", "target": "964", "key": "358", "undirected": true }, { "source": "109", "target": "97", "key": "354", "undirected": true }, { "source": "109", "target": "981", "key": "360", "undirected": true }, { "source": "109", "target": "99", "key": "357", "undirected": true }, { "source": "1093", "target": "490", "key": "4419", "undirected": true }, { "source": "1094", "target": "1114", "key": "4445", "undirected": true }, { "source": "1094", "target": "113", "key": "4427", "undirected": true }, { "source": "1094", "target": "1144", "key": "4422", "undirected": true }, { "source": "1094", "target": "1169", "key": "4442", "undirected": true }, { "source": "1094", "target": "1171", "key": "4421", "undirected": true }, { "source": "1094", "target": "119", "key": "4430", "undirected": true }, { "source": "1094", "target": "1201", "key": "4441", "undirected": true }, { "source": "1094", "target": "1203", "key": "4447", "undirected": true }, { "source": "1094", "target": "1331", "key": "4453", "undirected": true }, { "source": "1094", "target": "1373", "key": "4439", "undirected": true }, { "source": "1094", "target": "1438", "key": "4433", "undirected": true }, { "source": "1094", "target": "1485", "key": "4429", "undirected": true }, { "source": "1094", "target": "1554", "key": "4434", "undirected": true }, { "source": "1094", "target": "1559", "key": "4432", "undirected": true }, { "source": "1094", "target": "1581", "key": "4436", "undirected": true }, { "source": "1094", "target": "1584", "key": "4438", "undirected": true }, { "source": "1094", "target": "1614", "key": "4435", "undirected": true }, { "source": "1094", "target": "1615", "key": "4444", "undirected": true }, { "source": "1094", "target": "1616", "key": "4425", "undirected": true }, { "source": "1094", "target": "1617", "key": "4426", "undirected": true }, { "source": "1094", "target": "1631", "key": "4443", "undirected": true }, { "source": "1094", "target": "1669", "key": "4437", "undirected": true }, { "source": "1094", "target": "1742", "key": "4423", "undirected": true }, { "source": "1094", "target": "175", "key": "4424", "undirected": true }, { "source": "1094", "target": "1751", "key": "4452", "undirected": true }, { "source": "1094", "target": "2", "key": "4451", "undirected": true }, { "source": "1094", "target": "313", "key": "4446", "undirected": true }, { "source": "1094", "target": "319", "key": "4428", "undirected": true }, { "source": "1094", "target": "347", "key": "4440", "undirected": true }, { "source": "1094", "target": "390", "key": "4448", "undirected": true }, { "source": "1094", "target": "398", "key": "4431", "undirected": true }, { "source": "1094", "target": "481", "key": "4420", "undirected": true }, { "source": "1094", "target": "490", "key": "4450", "undirected": true }, { "source": "1094", "target": "639", "key": "4449", "undirected": true }, { "source": "1095", "target": "1197", "key": "4462", "undirected": true }, { "source": "1095", "target": "1304", "key": "4467", "undirected": true }, { "source": "1095", "target": "1354", "key": "4454", "undirected": true }, { "source": "1095", "target": "1487", "key": "4455", "undirected": true }, { "source": "1095", "target": "1602", "key": "4469", "undirected": true }, { "source": "1095", "target": "1720", "key": "4457", "undirected": true }, { "source": "1095", "target": "214", "key": "4470", "undirected": true }, { "source": "1095", "target": "353", "key": "4474", "undirected": true }, { "source": "1095", "target": "477", "key": "4456", "undirected": true }, { "source": "1095", "target": "485", "key": "4465", "undirected": true }, { "source": "1095", "target": "499", "key": "4461", "undirected": true }, { "source": "1095", "target": "52", "key": "4459", "undirected": true }, { "source": "1095", "target": "535", "key": "4473", "undirected": true }, { "source": "1095", "target": "568", "key": "4466", "undirected": true }, { "source": "1095", "target": "624", "key": "4463", "undirected": true }, { "source": "1095", "target": "773", "key": "4472", "undirected": true }, { "source": "1095", "target": "796", "key": "4464", "undirected": true }, { "source": "1095", "target": "831", "key": "4458", "undirected": true }, { "source": "1095", "target": "862", "key": "4460", "undirected": true }, { "source": "1095", "target": "948", "key": "4471", "undirected": true }, { "source": "1095", "target": "997", "key": "4468", "undirected": true }, { "source": "1096", "target": "1323", "key": "4475", "undirected": true }, { "source": "11", "target": "1089", "key": "36", "undirected": true }, { "source": "11", "target": "1293", "key": "39", "undirected": true }, { "source": "11", "target": "1314", "key": "35", "undirected": true }, { "source": "11", "target": "1720", "key": "43", "undirected": true }, { "source": "11", "target": "256", "key": "33", "undirected": true }, { "source": "11", "target": "428", "key": "40", "undirected": true }, { "source": "11", "target": "442", "key": "42", "undirected": true }, { "source": "11", "target": "450", "key": "45", "undirected": true }, { "source": "11", "target": "456", "key": "38", "undirected": true }, { "source": "11", "target": "460", "key": "46", "undirected": true }, { "source": "11", "target": "485", "key": "32", "undirected": true }, { "source": "11", "target": "497", "key": "37", "undirected": true }, { "source": "11", "target": "643", "key": "44", "undirected": true }, { "source": "11", "target": "673", "key": "47", "undirected": true }, { "source": "11", "target": "693", "key": "41", "undirected": true }, { "source": "11", "target": "721", "key": "29", "undirected": true }, { "source": "11", "target": "747", "key": "31", "undirected": true }, { "source": "11", "target": "80", "key": "34", "undirected": true }, { "source": "11", "target": "996", "key": "30", "undirected": true }, { "source": "110", "target": "1386", "key": "363", "undirected": true }, { "source": "110", "target": "1730", "key": "361", "undirected": true }, { "source": "110", "target": "289", "key": "362", "undirected": true }, { "source": "1101", "target": "1293", "key": "4476", "undirected": true }, { "source": "1101", "target": "256", "key": "4479", "undirected": true }, { "source": "1101", "target": "450", "key": "4480", "undirected": true }, { "source": "1101", "target": "456", "key": "4481", "undirected": true }, { "source": "1101", "target": "460", "key": "4482", "undirected": true }, { "source": "1101", "target": "566", "key": "4478", "undirected": true }, { "source": "1101", "target": "773", "key": "4477", "undirected": true }, { "source": "1102", "target": "1158", "key": "4488", "undirected": true }, { "source": "1102", "target": "1325", "key": "4494", "undirected": true }, { "source": "1102", "target": "1425", "key": "4484", "undirected": true }, { "source": "1102", "target": "1448", "key": "4492", "undirected": true }, { "source": "1102", "target": "1579", "key": "4486", "undirected": true }, { "source": "1102", "target": "1707", "key": "4490", "undirected": true }, { "source": "1102", "target": "1734", "key": "4483", "undirected": true }, { "source": "1102", "target": "393", "key": "4485", "undirected": true }, { "source": "1102", "target": "444", "key": "4495", "undirected": true }, { "source": "1102", "target": "508", "key": "4496", "undirected": true }, { "source": "1102", "target": "589", "key": "4489", "undirected": true }, { "source": "1102", "target": "834", "key": "4493", "undirected": true }, { "source": "1102", "target": "842", "key": "4491", "undirected": true }, { "source": "1102", "target": "935", "key": "4487", "undirected": true }, { "source": "1104", "target": "1034", "key": "4516", "undirected": true }, { "source": "1104", "target": "1046", "key": "4499", "undirected": true }, { "source": "1104", "target": "1055", "key": "4507", "undirected": true }, { "source": "1104", "target": "1105", "key": "4504", "undirected": true }, { "source": "1104", "target": "1106", "key": "4501", "undirected": true }, { "source": "1104", "target": "1108", "key": "4502", "undirected": true }, { "source": "1104", "target": "1113", "key": "4510", "undirected": true }, { "source": "1104", "target": "1175", "key": "4512", "undirected": true }, { "source": "1104", "target": "1191", "key": "4509", "undirected": true }, { "source": "1104", "target": "1243", "key": "4508", "undirected": true }, { "source": "1104", "target": "1274", "key": "4503", "undirected": true }, { "source": "1104", "target": "1364", "key": "4498", "undirected": true }, { "source": "1104", "target": "1460", "key": "4500", "undirected": true }, { "source": "1104", "target": "1569", "key": "4506", "undirected": true }, { "source": "1104", "target": "1622", "key": "4519", "undirected": true }, { "source": "1104", "target": "243", "key": "4518", "undirected": true }, { "source": "1104", "target": "482", "key": "4497", "undirected": true }, { "source": "1104", "target": "543", "key": "4511", "undirected": true }, { "source": "1104", "target": "560", "key": "4515", "undirected": true }, { "source": "1104", "target": "639", "key": "4505", "undirected": true }, { "source": "1104", "target": "743", "key": "4514", "undirected": true }, { "source": "1104", "target": "984", "key": "4513", "undirected": true }, { "source": "1104", "target": "985", "key": "4517", "undirected": true }, { "source": "1105", "target": "1046", "key": "4527", "undirected": true }, { "source": "1105", "target": "1104", "key": "4520", "undirected": true }, { "source": "1105", "target": "1108", "key": "4525", "undirected": true }, { "source": "1105", "target": "1112", "key": "4522", "undirected": true }, { "source": "1105", "target": "1364", "key": "4529", "undirected": true }, { "source": "1105", "target": "1460", "key": "4526", "undirected": true }, { "source": "1105", "target": "1491", "key": "4524", "undirected": true }, { "source": "1105", "target": "1612", "key": "4528", "undirected": true }, { "source": "1105", "target": "438", "key": "4530", "undirected": true }, { "source": "1105", "target": "481", "key": "4523", "undirected": true }, { "source": "1105", "target": "571", "key": "4521", "undirected": true }, { "source": "1106", "target": "1104", "key": "4532", "undirected": true }, { "source": "1106", "target": "1191", "key": "4533", "undirected": true }, { "source": "1106", "target": "1243", "key": "4531", "undirected": true }, { "source": "1106", "target": "1468", "key": "4535", "undirected": true }, { "source": "1106", "target": "639", "key": "4534", "undirected": true }, { "source": "1108", "target": "1055", "key": "4545", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1061", "key": "4536", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1104", "key": "4537", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1105", "key": "4542", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1191", "key": "4553", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1210", "key": "4546", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1243", "key": "4538", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1274", "key": "4551", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1364", "key": "4549", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1460", "key": "4541", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1493", "key": "4543", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1494", "key": "4544", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1502", "key": "4556", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1529", "key": "4555", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "1622", "key": "4547", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "298", "key": "4557", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "438", "key": "4548", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "560", "key": "4550", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "615", "key": "4554", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "639", "key": "4552", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "655", "key": "4540", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1108", "target": "739", "key": "4539", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1111", "target": "1579", "key": "4580", "undirected": true }, { "source": "1113", "target": "1225", "key": "4583", "undirected": true }, { "source": "1113", "target": "1491", "key": "4581", "undirected": true }, { "source": "1113", "target": "325", "key": "4584", "undirected": true }, { "source": "1113", "target": "668", "key": "4582", "undirected": true }, { "source": "1114", "target": "1203", "key": "4586", "undirected": true }, { "source": "1114", "target": "1602", "key": "4585", "undirected": true }, { "source": "1118", "target": "720", "key": "4587", "undirected": true }, { "source": "1126", "target": "1127", "key": "4588", "undirected": true }, { "source": "1127", "target": "101", "key": "4599", "undirected": true }, { "source": "1127", "target": "1093", "key": "4594", "undirected": true }, { "source": "1127", "target": "1184", "key": "4589", "undirected": true }, { "source": "1127", "target": "1530", "key": "4600", "undirected": true }, { "source": "1127", "target": "1673", "key": "4593", "undirected": true }, { "source": "1127", "target": "363", "key": "4595", "undirected": true }, { "source": "1127", "target": "460", "key": "4598", "undirected": true }, { "source": "1127", "target": "563", "key": "4592", "undirected": true }, { "source": "1127", "target": "612", "key": "4596", "undirected": true }, { "source": "1127", "target": "744", "key": "4590", "undirected": true }, { "source": "1127", "target": "811", "key": "4597", "undirected": true }, { "source": "1127", "target": "855", "key": "4591", "undirected": true }, { "source": "1129", "target": "1073", "key": "4603", "undirected": true }, { "source": "1129", "target": "1089", "key": "4601", "undirected": true }, { "source": "1129", "target": "1130", "key": "4605", "undirected": true }, { "source": "1129", "target": "1132", "key": "4604", "undirected": true }, { "source": "1129", "target": "1133", "key": "4602", "undirected": true }, { "source": "113", "target": "1171", "key": "365", "undirected": true }, { "source": "113", "target": "1203", "key": "364", "undirected": true }, { "source": "1130", "target": "1132", "key": "4606", "undirected": true }, { "source": "1132", "target": "1130", "key": "4608", "undirected": true }, { "source": "1132", "target": "460", "key": "4607", "undirected": true }, { "source": "1134", "target": "1328", "key": "4613", "undirected": true }, { "source": "1134", "target": "164", "key": "4610", "undirected": true }, { "source": "1134", "target": "235", "key": "4611", "undirected": true }, { "source": "1134", "target": "237", "key": "4609", "undirected": true }, { "source": "1134", "target": "996", "key": "4612", "undirected": true }, { "source": "1135", "target": "1089", "key": "4614", "undirected": true }, { "source": "1135", "target": "1247", "key": "4616", "undirected": true }, { "source": "1135", "target": "256", "key": "4618", "undirected": true }, { "source": "1135", "target": "450", "key": "4615", "undirected": true }, { "source": "1135", "target": "460", "key": "4617", "undirected": true }, { "source": "1136", "target": "1089", "key": "4622", "undirected": true }, { "source": "1136", "target": "1159", "key": "4626", "undirected": true }, { "source": "1136", "target": "1403", "key": "4623", "undirected": true }, { "source": "1136", "target": "1686", "key": "4627", "undirected": true }, { "source": "1136", "target": "235", "key": "4619", "undirected": true }, { "source": "1136", "target": "460", "key": "4621", "undirected": true }, { "source": "1136", "target": "643", "key": "4625", "undirected": true }, { "source": "1136", "target": "693", "key": "4624", "undirected": true }, { "source": "1136", "target": "709", "key": "4628", "undirected": true }, { "source": "1136", "target": "747", "key": "4620", "undirected": true }, { "source": "1137", "target": "548", "key": "4629", "undirected": true }, { "source": "1137", "target": "579", "key": "4631", "undirected": true }, { "source": "1137", "target": "634", "key": "4630", "undirected": true }, { "source": "1138", "target": "681", "key": "4632", "undirected": true }, { "source": "1147", "target": "156", "key": "4633", "undirected": true }, { "source": "1147", "target": "1580", "key": "4637", "undirected": true }, { "source": "1147", "target": "1602", "key": "4636", "undirected": true }, { "source": "1147", "target": "1603", "key": "4634", "undirected": true }, { "source": "1147", "target": "1607", "key": "4635", "undirected": true }, { "source": "1147", "target": "743", "key": "4638", "undirected": true }, { "source": "1150", "target": "867", "key": "4639", "undirected": true }, { "source": "1151", "target": "1271", "key": "4640", "undirected": true }, { "source": "1157", "target": "1067", "key": "4664", "undirected": true }, { "source": "1157", "target": "1103", "key": "4645", "undirected": true }, { "source": "1157", "target": "1168", "key": "4646", "undirected": true }, { "source": "1157", "target": "1212", "key": "4655", "undirected": true }, { "source": "1157", "target": "1284", "key": "4654", "undirected": true }, { "source": "1157", "target": "1334", "key": "4651", "undirected": true }, { "source": "1157", "target": "1379", "key": "4653", "undirected": true }, { "source": "1157", "target": "142", "key": "4658", "undirected": true }, { "source": "1157", "target": "1423", "key": "4652", "undirected": true }, { "source": "1157", "target": "1439", "key": "4642", "undirected": true }, { "source": "1157", "target": "1511", "key": "4647", "undirected": true }, { "source": "1157", "target": "1521", "key": "4649", "undirected": true }, { "source": "1157", "target": "1551", "key": "4650", "undirected": true }, { "source": "1157", "target": "1563", "key": "4660", "undirected": true }, { "source": "1157", "target": "1598", "key": "4661", "undirected": true }, { "source": "1157", "target": "1645", "key": "4643", "undirected": true }, { "source": "1157", "target": "1703", "key": "4662", "undirected": true }, { "source": "1157", "target": "206", "key": "4641", "undirected": true }, { "source": "1157", "target": "279", "key": "4659", "undirected": true }, { "source": "1157", "target": "506", "key": "4644", "undirected": true }, { "source": "1157", "target": "696", "key": "4665", "undirected": true }, { "source": "1157", "target": "715", "key": "4663", "undirected": true }, { "source": "1157", "target": "930", "key": "4666", "undirected": true }, { "source": "1157", "target": "936", "key": "4648", "undirected": true }, { "source": "1157", "target": "938", "key": "4657", "undirected": true }, { "source": "1157", "target": "989", "key": "4656", "undirected": true }, { "source": "1158", "target": "1419", "key": "4668", "undirected": true }, { "source": "1158", "target": "481", "key": "4669", "undirected": true }, { "source": "1158", "target": "639", "key": "4667", "undirected": true }, { "source": "1159", "target": "1089", "key": "4673", "undirected": true }, { "source": "1159", "target": "1181", "key": "4687", "undirected": true }, { "source": "1159", "target": "12", "key": "4672", "undirected": true }, { "source": "1159", "target": "1413", "key": "4685", "undirected": true }, { "source": "1159", "target": "1570", "key": "4678", "undirected": true }, { "source": "1159", "target": "1660", "key": "4689", "undirected": true }, { "source": "1159", "target": "1684", "key": "4679", "undirected": true }, { "source": "1159", "target": "1704", "key": "4690", "undirected": true }, { "source": "1159", "target": "225", "key": "4677", "undirected": true }, { "source": "1159", "target": "226", "key": "4688", "undirected": true }, { "source": "1159", "target": "344", "key": "4670", "undirected": true }, { "source": "1159", "target": "353", "key": "4683", "undirected": true }, { "source": "1159", "target": "386", "key": "4674", "undirected": true }, { "source": "1159", "target": "52", "key": "4680", "undirected": true }, { "source": "1159", "target": "563", "key": "4671", "undirected": true }, { "source": "1159", "target": "626", "key": "4686", "undirected": true }, { "source": "1159", "target": "639", "key": "4681", "undirected": true }, { "source": "1159", "target": "706", "key": "4676", "undirected": true }, { "source": "1159", "target": "831", "key": "4682", "undirected": true }, { "source": "1159", "target": "857", "key": "4684", "undirected": true }, { "source": "1159", "target": "964", "key": "4675", "undirected": true }, { "source": "1168", "target": "1063", "key": "4696", "undirected": true }, { "source": "1168", "target": "1069", "key": "4694", "undirected": true }, { "source": "1168", "target": "1103", "key": "4702", "undirected": true }, { "source": "1168", "target": "1244", "key": "4695", "undirected": true }, { "source": "1168", "target": "1423", "key": "4693", "undirected": true }, { "source": "1168", "target": "1521", "key": "4703", "undirected": true }, { "source": "1168", "target": "1563", "key": "4705", "undirected": true }, { "source": "1168", "target": "1650", "key": "4697", "undirected": true }, { "source": "1168", "target": "1726", "key": "4700", "undirected": true }, { "source": "1168", "target": "1727", "key": "4691", "undirected": true }, { "source": "1168", "target": "242", "key": "4699", "undirected": true }, { "source": "1168", "target": "481", "key": "4698", "undirected": true }, { "source": "1168", "target": "506", "key": "4704", "undirected": true }, { "source": "1168", "target": "707", "key": "4701", "undirected": true }, { "source": "1168", "target": "811", "key": "4692", "undirected": true }, { "source": "1169", "target": "119", "key": "4709", "undirected": true }, { "source": "1169", "target": "1238", "key": "4712", "undirected": true }, { "source": "1169", "target": "1284", "key": "4722", "undirected": true }, { "source": "1169", "target": "1470", "key": "4717", "undirected": true }, { "source": "1169", "target": "1485", "key": "4721", "undirected": true }, { "source": "1169", "target": "1541", "key": "4720", "undirected": true }, { "source": "1169", "target": "1602", "key": "4711", "undirected": true }, { "source": "1169", "target": "1605", "key": "4723", "undirected": true }, { "source": "1169", "target": "1614", "key": "4708", "undirected": true }, { "source": "1169", "target": "1615", "key": "4725", "undirected": true }, { "source": "1169", "target": "1617", "key": "4707", "undirected": true }, { "source": "1169", "target": "1640", "key": "4716", "undirected": true }, { "source": "1169", "target": "1669", "key": "4706", "undirected": true }, { "source": "1169", "target": "1704", "key": "4719", "undirected": true }, { "source": "1169", "target": "333", "key": "4718", "undirected": true }, { "source": "1169", "target": "5", "key": "4713", "undirected": true }, { "source": "1169", "target": "701", "key": "4715", "undirected": true }, { "source": "1169", "target": "810", "key": "4724", "undirected": true }, { "source": "1169", "target": "814", "key": "4714", "undirected": true }, { "source": "1169", "target": "936", "key": "4710", "undirected": true }, { "source": "1170", "target": "930", "key": "4726", "undirected": true }, { "source": "1171", "target": "1114", "key": "4742", "undirected": true }, { "source": "1171", "target": "113", "key": "4741", "undirected": true }, { "source": "1171", "target": "1169", "key": "4738", "undirected": true }, { "source": "1171", "target": "119", "key": "4740", "undirected": true }, { "source": "1171", "target": "1201", "key": "4739", "undirected": true }, { "source": "1171", "target": "1373", "key": "4737", "undirected": true }, { "source": "1171", "target": "1438", "key": "4728", "undirected": true }, { "source": "1171", "target": "1485", "key": "4727", "undirected": true }, { "source": "1171", "target": "1554", "key": "4733", "undirected": true }, { "source": "1171", "target": "1555", "key": "4735", "undirected": true }, { "source": "1171", "target": "1559", "key": "4734", "undirected": true }, { "source": "1171", "target": "1581", "key": "4729", "undirected": true }, { "source": "1171", "target": "1584", "key": "4744", "undirected": true }, { "source": "1171", "target": "1614", "key": "4736", "undirected": true }, { "source": "1171", "target": "1616", "key": "4732", "undirected": true }, { "source": "1171", "target": "1617", "key": "4745", "undirected": true }, { "source": "1171", "target": "1631", "key": "4731", "undirected": true }, { "source": "1171", "target": "1669", "key": "4746", "undirected": true }, { "source": "1171", "target": "313", "key": "4749", "undirected": true }, { "source": "1171", "target": "319", "key": "4748", "undirected": true }, { "source": "1171", "target": "347", "key": "4747", "undirected": true }, { "source": "1171", "target": "398", "key": "4730", "undirected": true }, { "source": "1171", "target": "47", "key": "4743", "undirected": true }, { "source": "1176", "target": "1035", "key": "4750", "undirected": true }, { "source": "1178", "target": "1035", "key": "4755", "undirected": true }, { "source": "1178", "target": "1061", "key": "4754", "undirected": true }, { "source": "1178", "target": "1158", "key": "4756", "undirected": true }, { "source": "1178", "target": "1191", "key": "4753", "undirected": true }, { "source": "1178", "target": "1196", "key": "4752", "undirected": true }, { "source": "1178", "target": "1491", "key": "4757", "undirected": true }, { "source": "1178", "target": "645", "key": "4751", "undirected": true }, { "source": "118", "target": "1227", "key": "368", "undirected": true }, { "source": "118", "target": "352", "key": "367", "undirected": true }, { "source": "118", "target": "829", "key": "366", "undirected": true }, { "source": "1180", "target": "1202", "key": "4763", "undirected": true }, { "source": "1180", "target": "1730", "key": "4761", "undirected": true }, { "source": "1180", "target": "223", "key": "4760", "undirected": true }, { "source": "1180", "target": "329", "key": "4758", "undirected": true }, { "source": "1180", "target": "495", "key": "4759", "undirected": true }, { "source": "1180", "target": "565", "key": "4762", "undirected": true }, { "source": "1181", "target": "1602", "key": "4764", "undirected": true }, { "source": "1181", "target": "344", "key": "4765", "undirected": true }, { "source": "1183", "target": "1048", "key": "4779", "undirected": true }, { "source": "1183", "target": "1158", "key": "4778", "undirected": true }, { "source": "1183", "target": "1240", "key": "4771", "undirected": true }, { "source": "1183", "target": "1321", "key": "4767", "undirected": true }, { "source": "1183", "target": "1553", "key": "4768", "undirected": true }, { "source": "1183", "target": "1610", "key": "4777", "undirected": true }, { "source": "1183", "target": "1611", "key": "4776", "undirected": true }, { "source": "1183", "target": "255", "key": "4775", "undirected": true }, { "source": "1183", "target": "276", "key": "4770", "undirected": true }, { "source": "1183", "target": "291", "key": "4773", "undirected": true }, { "source": "1183", "target": "298", "key": "4766", "undirected": true }, { "source": "1183", "target": "314", "key": "4774", "undirected": true }, { "source": "1183", "target": "326", "key": "4769", "undirected": true }, { "source": "1183", "target": "438", "key": "4780", "undirected": true }, { "source": "1183", "target": "503", "key": "4772", "undirected": true }, { "source": "1186", "target": "1015", "key": "4782", "undirected": true }, { "source": "1186", "target": "1021", "key": "4785", "undirected": true }, { "source": "1186", "target": "1045", "key": "4791", "undirected": true }, { "source": "1186", "target": "1067", "key": "4797", "undirected": true }, { "source": "1186", "target": "1441", "key": "4790", "undirected": true }, { "source": "1186", "target": "1465", "key": "4781", "undirected": true }, { "source": "1186", "target": "1675", "key": "4789", "undirected": true }, { "source": "1186", "target": "1678", "key": "4788", "undirected": true }, { "source": "1186", "target": "551", "key": "4787", "undirected": true }, { "source": "1186", "target": "579", "key": "4786", "undirected": true }, { "source": "1186", "target": "592", "key": "4784", "undirected": true }, { "source": "1186", "target": "609", "key": "4796", "undirected": true }, { "source": "1186", "target": "715", "key": "4783", "undirected": true }, { "source": "1186", "target": "802", "key": "4795", "undirected": true }, { "source": "1186", "target": "943", "key": "4794", "undirected": true }, { "source": "1186", "target": "969", "key": "4793", "undirected": true }, { "source": "1186", "target": "992", "key": "4792", "undirected": true }, { "source": "119", "target": "1158", "key": "370", "undirected": true }, { "source": "119", "target": "303", "key": "369", "undirected": true }, { "source": "1191", "target": "1035", "key": "4826", "undirected": true }, { "source": "1191", "target": "1061", "key": "4799", "undirected": true }, { "source": "1191", "target": "1104", "key": "4822", "undirected": true }, { "source": "1191", "target": "1158", "key": "4831", "undirected": true }, { "source": "1191", "target": "1196", "key": "4803", "undirected": true }, { "source": "1191", "target": "1202", "key": "4810", "undirected": true }, { "source": "1191", "target": "1211", "key": "4815", "undirected": true }, { "source": "1191", "target": "1243", "key": "4821", "undirected": true }, { "source": "1191", "target": "1330", "key": "4814", "undirected": true }, { "source": "1191", "target": "1352", "key": "4833", "undirected": true }, { "source": "1191", "target": "1468", "key": "4813", "undirected": true }, { "source": "1191", "target": "1490", "key": "4811", "undirected": true }, { "source": "1191", "target": "1502", "key": "4808", "undirected": true }, { "source": "1191", "target": "1529", "key": "4801", "undirected": true }, { "source": "1191", "target": "1531", "key": "4836", "undirected": true }, { "source": "1191", "target": "1540", "key": "4798", "undirected": true }, { "source": "1191", "target": "1551", "key": "4824", "undirected": true }, { "source": "1191", "target": "1569", "key": "4812", "undirected": true }, { "source": "1191", "target": "1612", "key": "4807", "undirected": true }, { "source": "1191", "target": "1684", "key": "4827", "undirected": true }, { "source": "1191", "target": "1712", "key": "4806", "undirected": true }, { "source": "1191", "target": "242", "key": "4823", "undirected": true }, { "source": "1191", "target": "400", "key": "4820", "undirected": true }, { "source": "1191", "target": "482", "key": "4819", "undirected": true }, { "source": "1191", "target": "490", "key": "4830", "undirected": true }, { "source": "1191", "target": "543", "key": "4828", "undirected": true }, { "source": "1191", "target": "55", "key": "4800", "undirected": true }, { "source": "1191", "target": "595", "key": "4816", "undirected": true }, { "source": "1191", "target": "632", "key": "4832", "undirected": true }, { "source": "1191", "target": "639", "key": "4825", "undirected": true }, { "source": "1191", "target": "645", "key": "4802", "undirected": true }, { "source": "1191", "target": "850", "key": "4835", "undirected": true }, { "source": "1191", "target": "869", "key": "4804", "undirected": true }, { "source": "1191", "target": "870", "key": "4817", "undirected": true }, { "source": "1191", "target": "925", "key": "4829", "undirected": true }, { "source": "1191", "target": "950", "key": "4805", "undirected": true }, { "source": "1191", "target": "974", "key": "4818", "undirected": true }, { "source": "1191", "target": "978", "key": "4834", "undirected": true }, { "source": "1191", "target": "984", "key": "4809", "undirected": true }, { "source": "1195", "target": "326", "key": "4837", "undirected": true }, { "source": "1197", "target": "164", "key": "4844", "undirected": true }, { "source": "1197", "target": "1696", "key": "4840", "undirected": true }, { "source": "1197", "target": "1720", "key": "4841", "undirected": true }, { "source": "1197", "target": "258", "key": "4842", "undirected": true }, { "source": "1197", "target": "500", "key": "4839", "undirected": true }, { "source": "1197", "target": "629", "key": "4846", "undirected": true }, { "source": "1197", "target": "716", "key": "4843", "undirected": true }, { "source": "1197", "target": "773", "key": "4845", "undirected": true }, { "source": "1197", "target": "994", "key": "4838", "undirected": true }, { "source": "1200", "target": "670", "key": "4847", "undirected": true }, { "source": "1202", "target": "1521", "key": "4850", "undirected": true }, { "source": "1202", "target": "242", "key": "4849", "undirected": true }, { "source": "1202", "target": "537", "key": "4848", "undirected": true }, { "source": "1203", "target": "1044", "key": "4857", "undirected": true }, { "source": "1203", "target": "1144", "key": "4864", "undirected": true }, { "source": "1203", "target": "1158", "key": "4870", "undirected": true }, { "source": "1203", "target": "1204", "key": "4854", "undirected": true }, { "source": "1203", "target": "1243", "key": "4867", "undirected": true }, { "source": "1203", "target": "1751", "key": "4858", "undirected": true }, { "source": "1203", "target": "2", "key": "4856", "undirected": true }, { "source": "1203", "target": "303", "key": "4860", "undirected": true }, { "source": "1203", "target": "319", "key": "4859", "undirected": true }, { "source": "1203", "target": "333", "key": "4865", "undirected": true }, { "source": "1203", "target": "342", "key": "4862", "undirected": true }, { "source": "1203", "target": "349", "key": "4861", "undirected": true }, { "source": "1203", "target": "390", "key": "4851", "undirected": true }, { "source": "1203", "target": "490", "key": "4853", "undirected": true }, { "source": "1203", "target": "533", "key": "4855", "undirected": true }, { "source": "1203", "target": "537", "key": "4866", "undirected": true }, { "source": "1203", "target": "589", "key": "4869", "undirected": true }, { "source": "1203", "target": "639", "key": "4852", "undirected": true }, { "source": "1203", "target": "649", "key": "4868", "undirected": true }, { "source": "1203", "target": "896", "key": "4863", "undirected": true }, { "source": "1204", "target": "1203", "key": "4871", "undirected": true }, { "source": "1204", "target": "390", "key": "4872", "undirected": true }, { "source": "1204", "target": "490", "key": "4874", "undirected": true }, { "source": "1204", "target": "639", "key": "4873", "undirected": true }, { "source": "1206", "target": "276", "key": "4875", "undirected": true }, { "source": "1206", "target": "326", "key": "4876", "undirected": true }, { "source": "1207", "target": "146", "key": "4877", "undirected": true }, { "source": "1208", "target": "1267", "key": "4881", "undirected": true }, { "source": "1208", "target": "1330", "key": "4880", "undirected": true }, { "source": "1208", "target": "1705", "key": "4879", "undirected": true }, { "source": "1208", "target": "1731", "key": "4884", "undirected": true }, { "source": "1208", "target": "481", "key": "4882", "undirected": true }, { "source": "1208", "target": "589", "key": "4878", "undirected": true }, { "source": "1208", "target": "757", "key": "4883", "undirected": true }, { "source": "1209", "target": "321", "key": "4885", "undirected": true }, { "source": "1210", "target": "1035", "key": "4886", "undirected": true }, { "source": "1210", "target": "1104", "key": "4891", "undirected": true }, { "source": "1210", "target": "1540", "key": "4889", "undirected": true }, { "source": "1210", "target": "1612", "key": "4890", "undirected": true }, { "source": "1210", "target": "571", "key": "4887", "undirected": true }, { "source": "1210", "target": "668", "key": "4888", "undirected": true }, { "source": "1211", "target": "1036", "key": "4915", "undirected": true }, { "source": "1211", "target": "1046", "key": "4893", "undirected": true }, { "source": "1211", "target": "1061", "key": "4898", "undirected": true }, { "source": "1211", "target": "1104", "key": "4901", "undirected": true }, { "source": "1211", "target": "1108", "key": "4899", "undirected": true }, { "source": "1211", "target": "1175", "key": "4914", "undirected": true }, { "source": "1211", "target": "1191", "key": "4918", "undirected": true }, { "source": "1211", "target": "1196", "key": "4896", "undirected": true }, { "source": "1211", "target": "1243", "key": "4894", "undirected": true }, { "source": "1211", "target": "1330", "key": "4904", "undirected": true }, { "source": "1211", "target": "1364", "key": "4900", "undirected": true }, { "source": "1211", "target": "141", "key": "4907", "undirected": true }, { "source": "1211", "target": "1460", "key": "4909", "undirected": true }, { "source": "1211", "target": "1490", "key": "4903", "undirected": true }, { "source": "1211", "target": "1491", "key": "4910", "undirected": true }, { "source": "1211", "target": "1493", "key": "4916", "undirected": true }, { "source": "1211", "target": "1540", "key": "4917", "undirected": true }, { "source": "1211", "target": "1569", "key": "4902", "undirected": true }, { "source": "1211", "target": "1622", "key": "4906", "undirected": true }, { "source": "1211", "target": "1712", "key": "4897", "undirected": true }, { "source": "1211", "target": "543", "key": "4911", "undirected": true }, { "source": "1211", "target": "571", "key": "4892", "undirected": true }, { "source": "1211", "target": "595", "key": "4905", "undirected": true }, { "source": "1211", "target": "645", "key": "4895", "undirected": true }, { "source": "1211", "target": "654", "key": "4913", "undirected": true }, { "source": "1211", "target": "668", "key": "4912", "undirected": true }, { "source": "1211", "target": "718", "key": "4908", "undirected": true }, { "source": "1212", "target": "1003", "key": "4923", "undirected": true }, { "source": "1212", "target": "1067", "key": "4947", "undirected": true }, { "source": "1212", "target": "1069", "key": "4928", "undirected": true }, { "source": "1212", "target": "1170", "key": "4931", "undirected": true }, { "source": "1212", "target": "1244", "key": "4933", "undirected": true }, { "source": "1212", "target": "1271", "key": "4943", "undirected": true }, { "source": "1212", "target": "1284", "key": "4922", "undirected": true }, { "source": "1212", "target": "1330", "key": "4939", "undirected": true }, { "source": "1212", "target": "1333", "key": "4935", "undirected": true }, { "source": "1212", "target": "1379", "key": "4921", "undirected": true }, { "source": "1212", "target": "1423", "key": "4920", "undirected": true }, { "source": "1212", "target": "1476", "key": "4946", "undirected": true }, { "source": "1212", "target": "1490", "key": "4949", "undirected": true }, { "source": "1212", "target": "1500", "key": "4919", "undirected": true }, { "source": "1212", "target": "1542", "key": "4942", "undirected": true }, { "source": "1212", "target": "1545", "key": "4932", "undirected": true }, { "source": "1212", "target": "1557", "key": "4936", "undirected": true }, { "source": "1212", "target": "1562", "key": "4948", "undirected": true }, { "source": "1212", "target": "1569", "key": "4938", "undirected": true }, { "source": "1212", "target": "1612", "key": "4941", "undirected": true }, { "source": "1212", "target": "1622", "key": "4940", "undirected": true }, { "source": "1212", "target": "1653", "key": "4944", "undirected": true }, { "source": "1212", "target": "219", "key": "4937", "undirected": true }, { "source": "1212", "target": "279", "key": "4930", "undirected": true }, { "source": "1212", "target": "491", "key": "4929", "undirected": true }, { "source": "1212", "target": "715", "key": "4934", "undirected": true }, { "source": "1212", "target": "736", "key": "4945", "undirected": true }, { "source": "1212", "target": "927", "key": "4927", "undirected": true }, { "source": "1212", "target": "938", "key": "4926", "undirected": true }, { "source": "1212", "target": "989", "key": "4925", "undirected": true }, { "source": "1212", "target": "995", "key": "4924", "undirected": true }, { "source": "1214", "target": "114", "key": "4961", "undirected": true }, { "source": "1214", "target": "1216", "key": "4964", "undirected": true }, { "source": "1214", "target": "1313", "key": "4959", "undirected": true }, { "source": "1214", "target": "132", "key": "4950", "undirected": true }, { "source": "1214", "target": "1359", "key": "4951", "undirected": true }, { "source": "1214", "target": "1451", "key": "4954", "undirected": true }, { "source": "1214", "target": "1508", "key": "4957", "undirected": true }, { "source": "1214", "target": "203", "key": "4952", "undirected": true }, { "source": "1214", "target": "238", "key": "4953", "undirected": true }, { "source": "1214", "target": "601", "key": "4962", "undirected": true }, { "source": "1214", "target": "612", "key": "4956", "undirected": true }, { "source": "1214", "target": "630", "key": "4963", "undirected": true }, { "source": "1214", "target": "652", "key": "4955", "undirected": true }, { "source": "1214", "target": "818", "key": "4958", "undirected": true }, { "source": "1214", "target": "821", "key": "4960", "undirected": true }, { "source": "1216", "target": "1214", "key": "4965", "undirected": true }, { "source": "1217", "target": "1065", "key": "4968", "undirected": true }, { "source": "1217", "target": "1292", "key": "4966", "undirected": true }, { "source": "1217", "target": "1603", "key": "4969", "undirected": true }, { "source": "1217", "target": "344", "key": "4967", "undirected": true }, { "source": "1218", "target": "1614", "key": "4971", "undirected": true }, { "source": "1218", "target": "670", "key": "4970", "undirected": true }, { "source": "122", "target": "1232", "key": "371", "undirected": true }, { "source": "122", "target": "1271", "key": "372", "undirected": true }, { "source": "1224", "target": "822", "key": "4972", "undirected": true }, { "source": "1225", "target": "1491", "key": "4973", "undirected": true }, { "source": "1226", "target": "1697", "key": "4976", "undirected": true }, { "source": "1226", "target": "201", "key": "4975", "undirected": true }, { "source": "1226", "target": "488", "key": "4977", "undirected": true }, { "source": "1226", "target": "534", "key": "4974", "undirected": true }, { "source": "1226", "target": "726", "key": "4978", "undirected": true }, { "source": "123", "target": "122", "key": "373", "undirected": true }, { "source": "1230", "target": "1034", "key": "4980", "undirected": true }, { "source": "1230", "target": "1035", "key": "4983", "undirected": true }, { "source": "1230", "target": "1113", "key": "4981", "undirected": true }, { "source": "1230", "target": "1175", "key": "4979", "undirected": true }, { "source": "1230", "target": "1491", "key": "4984", "undirected": true }, { "source": "1230", "target": "543", "key": "4982", "undirected": true }, { "source": "1232", "target": "122", "key": "4985", "undirected": true }, { "source": "1233", "target": "1509", "key": "4989", "undirected": true }, { "source": "1233", "target": "1516", "key": "4990", "undirected": true }, { "source": "1233", "target": "1542", "key": "4988", "undirected": true }, { "source": "1233", "target": "183", "key": "4993", "undirected": true }, { "source": "1233", "target": "547", "key": "4991", "undirected": true }, { "source": "1233", "target": "583", "key": "4987", "undirected": true }, { "source": "1233", "target": "816", "key": "4986", "undirected": true }, { "source": "1233", "target": "822", "key": "4992", "undirected": true }, { "source": "1237", "target": "1094", "key": "5000", "undirected": true }, { "source": "1237", "target": "1203", "key": "4999", "undirected": true }, { "source": "1237", "target": "1311", "key": "5002", "undirected": true }, { "source": "1237", "target": "1438", "key": "4994", "undirected": true }, { "source": "1237", "target": "1485", "key": "4995", "undirected": true }, { "source": "1237", "target": "1581", "key": "4996", "undirected": true }, { "source": "1237", "target": "1614", "key": "5001", "undirected": true }, { "source": "1237", "target": "333", "key": "4998", "undirected": true }, { "source": "1237", "target": "398", "key": "4997", "undirected": true }, { "source": "1238", "target": "438", "key": "5003", "undirected": true }, { "source": "1238", "target": "536", "key": "5004", "undirected": true }, { "source": "1239", "target": "1019", "key": "5006", "undirected": true }, { "source": "1239", "target": "1208", "key": "5008", "undirected": true }, { "source": "1239", "target": "1242", "key": "5005", "undirected": true }, { "source": "1239", "target": "1246", "key": "5010", "undirected": true }, { "source": "1239", "target": "1320", "key": "5011", "undirected": true }, { "source": "1239", "target": "1731", "key": "5009", "undirected": true }, { "source": "1239", "target": "481", "key": "5014", "undirected": true }, { "source": "1239", "target": "663", "key": "5012", "undirected": true }, { "source": "1239", "target": "806", "key": "5007", "undirected": true }, { "source": "1239", "target": "948", "key": "5013", "undirected": true }, { "source": "124", "target": "122", "key": "374", "undirected": true }, { "source": "1240", "target": "1042", "key": "5016", "undirected": true }, { "source": "1240", "target": "1430", "key": "5017", "undirected": true }, { "source": "1240", "target": "1730", "key": "5015", "undirected": true }, { "source": "1241", "target": "1015", "key": "5021", "undirected": true }, { "source": "1241", "target": "1021", "key": "5020", "undirected": true }, { "source": "1241", "target": "1024", "key": "5018", "undirected": true }, { "source": "1241", "target": "601", "key": "5022", "undirected": true }, { "source": "1241", "target": "970", "key": "5019", "undirected": true }, { "source": "1242", "target": "1208", "key": "5026", "undirected": true }, { "source": "1242", "target": "1239", "key": "5023", "undirected": true }, { "source": "1242", "target": "697", "key": "5024", "undirected": true }, { "source": "1242", "target": "757", "key": "5025", "undirected": true }, { "source": "1243", "target": "1034", "key": "5039", "undirected": true }, { "source": "1243", "target": "1046", "key": "5030", "undirected": true }, { "source": "1243", "target": "1104", "key": "5035", "undirected": true }, { "source": "1243", "target": "1191", "key": "5029", "undirected": true }, { "source": "1243", "target": "1202", "key": "5034", "undirected": true }, { "source": "1243", "target": "1210", "key": "5041", "undirected": true }, { "source": "1243", "target": "1211", "key": "5046", "undirected": true }, { "source": "1243", "target": "1250", "key": "5036", "undirected": true }, { "source": "1243", "target": "1330", "key": "5045", "undirected": true }, { "source": "1243", "target": "1460", "key": "5031", "undirected": true }, { "source": "1243", "target": "1468", "key": "5044", "undirected": true }, { "source": "1243", "target": "1490", "key": "5042", "undirected": true }, { "source": "1243", "target": "1525", "key": "5028", "undirected": true }, { "source": "1243", "target": "1569", "key": "5043", "undirected": true }, { "source": "1243", "target": "1622", "key": "5049", "undirected": true }, { "source": "1243", "target": "243", "key": "5038", "undirected": true }, { "source": "1243", "target": "438", "key": "5047", "undirected": true }, { "source": "1243", "target": "537", "key": "5033", "undirected": true }, { "source": "1243", "target": "543", "key": "5032", "undirected": true }, { "source": "1243", "target": "595", "key": "5048", "undirected": true }, { "source": "1243", "target": "639", "key": "5027", "undirected": true }, { "source": "1243", "target": "649", "key": "5037", "undirected": true }, { "source": "1243", "target": "679", "key": "5050", "undirected": true }, { "source": "1243", "target": "817", "key": "5040", "undirected": true }, { "source": "1244", "target": "1030", "key": "5096", "undirected": true }, { "source": "1244", "target": "1067", "key": "5088", "undirected": true }, { "source": "1244", "target": "1168", "key": "5061", "undirected": true }, { "source": "1244", "target": "1202", "key": "5066", "undirected": true }, { "source": "1244", "target": "1212", "key": "5084", "undirected": true }, { "source": "1244", "target": "1271", "key": "5070", "undirected": true }, { "source": "1244", "target": "1352", "key": "5068", "undirected": true }, { "source": "1244", "target": "1439", "key": "5091", "undirected": true }, { "source": "1244", "target": "1480", "key": "5087", "undirected": true }, { "source": "1244", "target": "1504", "key": "5098", "undirected": true }, { "source": "1244", "target": "1520", "key": "5093", "undirected": true }, { "source": "1244", "target": "1521", "key": "5063", "undirected": true }, { "source": "1244", "target": "1535", "key": "5100", "undirected": true }, { "source": "1244", "target": "1542", "key": "5075", "undirected": true }, { "source": "1244", "target": "1551", "key": "5067", "undirected": true }, { "source": "1244", "target": "1563", "key": "5090", "undirected": true }, { "source": "1244", "target": "1569", "key": "5072", "undirected": true }, { "source": "1244", "target": "1570", "key": "5078", "undirected": true }, { "source": "1244", "target": "1573", "key": "5076", "undirected": true }, { "source": "1244", "target": "1588", "key": "5082", "undirected": true }, { "source": "1244", "target": "1598", "key": "5062", "undirected": true }, { "source": "1244", "target": "1599", "key": "5097", "undirected": true }, { "source": "1244", "target": "1601", "key": "5085", "undirected": true }, { "source": "1244", "target": "1605", "key": "5077", "undirected": true }, { "source": "1244", "target": "1608", "key": "5074", "undirected": true }, { "source": "1244", "target": "1614", "key": "5080", "undirected": true }, { "source": "1244", "target": "1622", "key": "5069", "undirected": true }, { "source": "1244", "target": "1645", "key": "5056", "undirected": true }, { "source": "1244", "target": "1650", "key": "5055", "undirected": true }, { "source": "1244", "target": "1653", "key": "5052", "undirected": true }, { "source": "1244", "target": "1655", "key": "5079", "undirected": true }, { "source": "1244", "target": "1656", "key": "5073", "undirected": true }, { "source": "1244", "target": "1703", "key": "5083", "undirected": true }, { "source": "1244", "target": "1727", "key": "5086", "undirected": true }, { "source": "1244", "target": "206", "key": "5058", "undirected": true }, { "source": "1244", "target": "242", "key": "5064", "undirected": true }, { "source": "1244", "target": "310", "key": "5071", "undirected": true }, { "source": "1244", "target": "378", "key": "5099", "undirected": true }, { "source": "1244", "target": "506", "key": "5060", "undirected": true }, { "source": "1244", "target": "589", "key": "5095", "undirected": true }, { "source": "1244", "target": "595", "key": "5081", "undirected": true }, { "source": "1244", "target": "639", "key": "5053", "undirected": true }, { "source": "1244", "target": "707", "key": "5057", "undirected": true }, { "source": "1244", "target": "715", "key": "5089", "undirected": true }, { "source": "1244", "target": "736", "key": "5094", "undirected": true }, { "source": "1244", "target": "930", "key": "5054", "undirected": true }, { "source": "1244", "target": "936", "key": "5051", "undirected": true }, { "source": "1244", "target": "938", "key": "5092", "undirected": true }, { "source": "1244", "target": "971", "key": "5059", "undirected": true }, { "source": "1244", "target": "977", "key": "5065", "undirected": true }, { "source": "1245", "target": "1030", "key": "5108", "undirected": true }, { "source": "1245", "target": "1158", "key": "5110", "undirected": true }, { "source": "1245", "target": "122", "key": "5114", "undirected": true }, { "source": "1245", "target": "1232", "key": "5115", "undirected": true }, { "source": "1245", "target": "1250", "key": "5112", "undirected": true }, { "source": "1245", "target": "1276", "key": "5103", "undirected": true }, { "source": "1245", "target": "1481", "key": "5109", "undirected": true }, { "source": "1245", "target": "1562", "key": "5106", "undirected": true }, { "source": "1245", "target": "1563", "key": "5105", "undirected": true }, { "source": "1245", "target": "1571", "key": "5102", "undirected": true }, { "source": "1245", "target": "1749", "key": "5101", "undirected": true }, { "source": "1245", "target": "271", "key": "5113", "undirected": true }, { "source": "1245", "target": "490", "key": "5111", "undirected": true }, { "source": "1245", "target": "733", "key": "5104", "undirected": true }, { "source": "1245", "target": "936", "key": "5107", "undirected": true }, { "source": "1246", "target": "1239", "key": "5119", "undirected": true }, { "source": "1246", "target": "1320", "key": "5116", "undirected": true }, { "source": "1246", "target": "1731", "key": "5120", "undirected": true }, { "source": "1246", "target": "697", "key": "5121", "undirected": true }, { "source": "1246", "target": "757", "key": "5117", "undirected": true }, { "source": "1246", "target": "806", "key": "5118", "undirected": true }, { "source": "1247", "target": "1304", "key": "5131", "undirected": true }, { "source": "1247", "target": "1314", "key": "5122", "undirected": true }, { "source": "1247", "target": "1477", "key": "5130", "undirected": true }, { "source": "1247", "target": "1621", "key": "5126", "undirected": true }, { "source": "1247", "target": "306", "key": "5132", "undirected": true }, { "source": "1247", "target": "442", "key": "5127", "undirected": true }, { "source": "1247", "target": "460", "key": "5125", "undirected": true }, { "source": "1247", "target": "639", "key": "5123", "undirected": true }, { "source": "1247", "target": "643", "key": "5128", "undirected": true }, { "source": "1247", "target": "673", "key": "5133", "undirected": true }, { "source": "1247", "target": "693", "key": "5124", "undirected": true }, { "source": "1247", "target": "996", "key": "5129", "undirected": true }, { "source": "1248", "target": "1089", "key": "5135", "undirected": true }, { "source": "1248", "target": "1283", "key": "5134", "undirected": true }, { "source": "1253", "target": "1256", "key": "5136", "undirected": true }, { "source": "1254", "target": "1089", "key": "5143", "undirected": true }, { "source": "1254", "target": "1247", "key": "5144", "undirected": true }, { "source": "1254", "target": "1293", "key": "5137", "undirected": true }, { "source": "1254", "target": "1408", "key": "5146", "undirected": true }, { "source": "1254", "target": "224", "key": "5140", "undirected": true }, { "source": "1254", "target": "456", "key": "5138", "undirected": true }, { "source": "1254", "target": "460", "key": "5145", "undirected": true }, { "source": "1254", "target": "554", "key": "5142", "undirected": true }, { "source": "1254", "target": "673", "key": "5141", "undirected": true }, { "source": "1254", "target": "766", "key": "5139", "undirected": true }, { "source": "1254", "target": "996", "key": "5147", "undirected": true }, { "source": "1256", "target": "1045", "key": "5160", "undirected": true }, { "source": "1256", "target": "1066", "key": "5149", "undirected": true }, { "source": "1256", "target": "1123", "key": "5165", "undirected": true }, { "source": "1256", "target": "1145", "key": "5162", "undirected": true }, { "source": "1256", "target": "1186", "key": "5156", "undirected": true }, { "source": "1256", "target": "1199", "key": "5150", "undirected": true }, { "source": "1256", "target": "1241", "key": "5152", "undirected": true }, { "source": "1256", "target": "1253", "key": "5148", "undirected": true }, { "source": "1256", "target": "1441", "key": "5159", "undirected": true }, { "source": "1256", "target": "1675", "key": "5154", "undirected": true }, { "source": "1256", "target": "1678", "key": "5155", "undirected": true }, { "source": "1256", "target": "239", "key": "5164", "undirected": true }, { "source": "1256", "target": "609", "key": "5157", "undirected": true }, { "source": "1256", "target": "795", "key": "5163", "undirected": true }, { "source": "1256", "target": "802", "key": "5151", "undirected": true }, { "source": "1256", "target": "943", "key": "5153", "undirected": true }, { "source": "1256", "target": "969", "key": "5161", "undirected": true }, { "source": "1256", "target": "992", "key": "5158", "undirected": true }, { "source": "1259", "target": "1293", "key": "5168", "undirected": true }, { "source": "1259", "target": "1304", "key": "5167", "undirected": true }, { "source": "1259", "target": "1580", "key": "5170", "undirected": true }, { "source": "1259", "target": "1602", "key": "5169", "undirected": true }, { "source": "1259", "target": "256", "key": "5172", "undirected": true }, { "source": "1259", "target": "460", "key": "5166", "undirected": true }, { "source": "1259", "target": "931", "key": "5171", "undirected": true }, { "source": "1260", "target": "1580", "key": "5179", "undirected": true }, { "source": "1260", "target": "1602", "key": "5177", "undirected": true }, { "source": "1260", "target": "1603", "key": "5180", "undirected": true }, { "source": "1260", "target": "1607", "key": "5176", "undirected": true }, { "source": "1260", "target": "1660", "key": "5174", "undirected": true }, { "source": "1260", "target": "340", "key": "5182", "undirected": true }, { "source": "1260", "target": "497", "key": "5175", "undirected": true }, { "source": "1260", "target": "743", "key": "5178", "undirected": true }, { "source": "1260", "target": "745", "key": "5181", "undirected": true }, { "source": "1260", "target": "888", "key": "5173", "undirected": true }, { "source": "1261", "target": "1013", "key": "5186", "undirected": true }, { "source": "1261", "target": "1247", "key": "5194", "undirected": true }, { "source": "1261", "target": "1681", "key": "5196", "undirected": true }, { "source": "1261", "target": "191", "key": "5188", "undirected": true }, { "source": "1261", "target": "238", "key": "5189", "undirected": true }, { "source": "1261", "target": "249", "key": "5200", "undirected": true }, { "source": "1261", "target": "306", "key": "5183", "undirected": true }, { "source": "1261", "target": "387", "key": "5198", "undirected": true }, { "source": "1261", "target": "415", "key": "5190", "undirected": true }, { "source": "1261", "target": "418", "key": "5192", "undirected": true }, { "source": "1261", "target": "419", "key": "5197", "undirected": true }, { "source": "1261", "target": "426", "key": "5201", "undirected": true }, { "source": "1261", "target": "430", "key": "5187", "undirected": true }, { "source": "1261", "target": "451", "key": "5185", "undirected": true }, { "source": "1261", "target": "460", "key": "5193", "undirected": true }, { "source": "1261", "target": "563", "key": "5184", "undirected": true }, { "source": "1261", "target": "673", "key": "5195", "undirected": true }, { "source": "1261", "target": "714", "key": "5199", "undirected": true }, { "source": "1261", "target": "811", "key": "5191", "undirected": true }, { "source": "1263", "target": "1232", "key": "5202", "undirected": true }, { "source": "1264", "target": "1594", "key": "5204", "undirected": true }, { "source": "1264", "target": "228", "key": "5203", "undirected": true }, { "source": "1264", "target": "481", "key": "5205", "undirected": true }, { "source": "1264", "target": "909", "key": "5206", "undirected": true }, { "source": "1266", "target": "1245", "key": "5214", "undirected": true }, { "source": "1266", "target": "1271", "key": "5216", "undirected": true }, { "source": "1266", "target": "1286", "key": "5215", "undirected": true }, { "source": "1266", "target": "1301", "key": "5213", "undirected": true }, { "source": "1266", "target": "1563", "key": "5221", "undirected": true }, { "source": "1266", "target": "1594", "key": "5212", "undirected": true }, { "source": "1266", "target": "1608", "key": "5220", "undirected": true }, { "source": "1266", "target": "1618", "key": "5211", "undirected": true }, { "source": "1266", "target": "1619", "key": "5210", "undirected": true }, { "source": "1266", "target": "1637", "key": "5209", "undirected": true }, { "source": "1266", "target": "1652", "key": "5208", "undirected": true }, { "source": "1266", "target": "1704", "key": "5219", "undirected": true }, { "source": "1266", "target": "18", "key": "5218", "undirected": true }, { "source": "1266", "target": "219", "key": "5207", "undirected": true }, { "source": "1266", "target": "228", "key": "5217", "undirected": true }, { "source": "1267", "target": "1705", "key": "5222", "undirected": true }, { "source": "1267", "target": "927", "key": "5223", "undirected": true }, { "source": "1267", "target": "936", "key": "5224", "undirected": true }, { "source": "1268", "target": "1123", "key": "5229", "undirected": true }, { "source": "1268", "target": "1125", "key": "5226", "undirected": true }, { "source": "1268", "target": "1127", "key": "5227", "undirected": true }, { "source": "1268", "target": "681", "key": "5228", "undirected": true }, { "source": "1268", "target": "855", "key": "5225", "undirected": true }, { "source": "1269", "target": "122", "key": "5231", "undirected": true }, { "source": "1269", "target": "1250", "key": "5230", "undirected": true }, { "source": "1270", "target": "1358", "key": "5239", "undirected": true }, { "source": "1270", "target": "1467", "key": "5232", "undirected": true }, { "source": "1270", "target": "1580", "key": "5237", "undirected": true }, { "source": "1270", "target": "1602", "key": "5238", "undirected": true }, { "source": "1270", "target": "1697", "key": "5235", "undirected": true }, { "source": "1270", "target": "201", "key": "5234", "undirected": true }, { "source": "1270", "target": "460", "key": "5236", "undirected": true }, { "source": "1270", "target": "477", "key": "5233", "undirected": true }, { "source": "1271", "target": "1182", "key": "5249", "undirected": true }, { "source": "1271", "target": "1232", "key": "5244", "undirected": true }, { "source": "1271", "target": "1244", "key": "5250", "undirected": true }, { "source": "1271", "target": "1563", "key": "5241", "undirected": true }, { "source": "1271", "target": "1566", "key": "5243", "undirected": true }, { "source": "1271", "target": "1570", "key": "5252", "undirected": true }, { "source": "1271", "target": "1571", "key": "5251", "undirected": true }, { "source": "1271", "target": "1573", "key": "5240", "undirected": true }, { "source": "1271", "target": "1614", "key": "5245", "undirected": true }, { "source": "1271", "target": "1704", "key": "5246", "undirected": true }, { "source": "1271", "target": "301", "key": "5242", "undirected": true }, { "source": "1271", "target": "537", "key": "5248", "undirected": true }, { "source": "1271", "target": "639", "key": "5253", "undirected": true }, { "source": "1271", "target": "684", "key": "5247", "undirected": true }, { "source": "1273", "target": "1201", "key": "5261", "undirected": true }, { "source": "1273", "target": "1203", "key": "5262", "undirected": true }, { "source": "1273", "target": "1238", "key": "5254", "undirected": true }, { "source": "1273", "target": "1311", "key": "5264", "undirected": true }, { "source": "1273", "target": "1332", "key": "5258", "undirected": true }, { "source": "1273", "target": "1584", "key": "5259", "undirected": true }, { "source": "1273", "target": "1631", "key": "5263", "undirected": true }, { "source": "1273", "target": "303", "key": "5255", "undirected": true }, { "source": "1273", "target": "333", "key": "5265", "undirected": true }, { "source": "1273", "target": "438", "key": "5256", "undirected": true }, { "source": "1273", "target": "639", "key": "5257", "undirected": true }, { "source": "1273", "target": "8", "key": "5260", "undirected": true }, { "source": "1275", "target": "1169", "key": "5267", "undirected": true }, { "source": "1275", "target": "1203", "key": "5269", "undirected": true }, { "source": "1275", "target": "1485", "key": "5266", "undirected": true }, { "source": "1275", "target": "333", "key": "5268", "undirected": true }, { "source": "1281", "target": "773", "key": "5270", "undirected": true }, { "source": "1282", "target": "1089", "key": "5271", "undirected": true }, { "source": "1284", "target": "1067", "key": "5288", "undirected": true }, { "source": "1284", "target": "1076", "key": "5287", "undirected": true }, { "source": "1284", "target": "1157", "key": "5285", "undirected": true }, { "source": "1284", "target": "1212", "key": "5276", "undirected": true }, { "source": "1284", "target": "142", "key": "5279", "undirected": true }, { "source": "1284", "target": "1423", "key": "5273", "undirected": true }, { "source": "1284", "target": "1476", "key": "5291", "undirected": true }, { "source": "1284", "target": "1500", "key": "5274", "undirected": true }, { "source": "1284", "target": "1553", "key": "5278", "undirected": true }, { "source": "1284", "target": "1563", "key": "5275", "undirected": true }, { "source": "1284", "target": "1569", "key": "5280", "undirected": true }, { "source": "1284", "target": "1612", "key": "5282", "undirected": true }, { "source": "1284", "target": "1617", "key": "5283", "undirected": true }, { "source": "1284", "target": "1622", "key": "5281", "undirected": true }, { "source": "1284", "target": "1645", "key": "5272", "undirected": true }, { "source": "1284", "target": "1653", "key": "5289", "undirected": true }, { "source": "1284", "target": "1703", "key": "5277", "undirected": true }, { "source": "1284", "target": "715", "key": "5286", "undirected": true }, { "source": "1284", "target": "811", "key": "5284", "undirected": true }, { "source": "1284", "target": "977", "key": "5292", "undirected": true }, { "source": "1284", "target": "995", "key": "5290", "undirected": true }, { "source": "1285", "target": "1223", "key": "5296", "undirected": true }, { "source": "1285", "target": "1232", "key": "5293", "undirected": true }, { "source": "1285", "target": "691", "key": "5294", "undirected": true }, { "source": "1285", "target": "891", "key": "5295", "undirected": true }, { "source": "1286", "target": "1594", "key": "5297", "undirected": true }, { "source": "1288", "target": "1071", "key": "5298", "undirected": true }, { "source": "1288", "target": "756", "key": "5299", "undirected": true }, { "source": "1290", "target": "544", "key": "5301", "undirected": true }, { "source": "1290", "target": "862", "key": "5300", "undirected": true }, { "source": "1291", "target": "1515", "key": "5302", "undirected": true }, { "source": "1293", "target": "1247", "key": "5306", "undirected": true }, { "source": "1293", "target": "1259", "key": "5309", "undirected": true }, { "source": "1293", "target": "1280", "key": "5317", "undirected": true }, { "source": "1293", "target": "1348", "key": "5308", "undirected": true }, { "source": "1293", "target": "1602", "key": "5312", "undirected": true }, { "source": "1293", "target": "256", "key": "5311", "undirected": true }, { "source": "1293", "target": "409", "key": "5307", "undirected": true }, { "source": "1293", "target": "450", "key": "5315", "undirected": true }, { "source": "1293", "target": "456", "key": "5303", "undirected": true }, { "source": "1293", "target": "459", "key": "5304", "undirected": true }, { "source": "1293", "target": "460", "key": "5305", "undirected": true }, { "source": "1293", "target": "658", "key": "5314", "undirected": true }, { "source": "1293", "target": "747", "key": "5316", "undirected": true }, { "source": "1293", "target": "80", "key": "5310", "undirected": true }, { "source": "1293", "target": "931", "key": "5313", "undirected": true }, { "source": "1294", "target": "1603", "key": "5318", "undirected": true }, { "source": "1298", "target": "1266", "key": "5325", "undirected": true }, { "source": "1298", "target": "1285", "key": "5319", "undirected": true }, { "source": "1298", "target": "1301", "key": "5324", "undirected": true }, { "source": "1298", "target": "1619", "key": "5323", "undirected": true }, { "source": "1298", "target": "1637", "key": "5321", "undirected": true }, { "source": "1298", "target": "1717", "key": "5322", "undirected": true }, { "source": "1298", "target": "219", "key": "5320", "undirected": true }, { "source": "1298", "target": "310", "key": "5326", "undirected": true }, { "source": "1301", "target": "1170", "key": "5330", "undirected": true }, { "source": "1301", "target": "1423", "key": "5329", "undirected": true }, { "source": "1301", "target": "687", "key": "5327", "undirected": true }, { "source": "1301", "target": "886", "key": "5328", "undirected": true }, { "source": "1304", "target": "1411", "key": "5332", "undirected": true }, { "source": "1304", "target": "1580", "key": "5336", "undirected": true }, { "source": "1304", "target": "1704", "key": "5335", "undirected": true }, { "source": "1304", "target": "568", "key": "5331", "undirected": true }, { "source": "1304", "target": "570", "key": "5337", "undirected": true }, { "source": "1304", "target": "639", "key": "5334", "undirected": true }, { "source": "1304", "target": "948", "key": "5333", "undirected": true }, { "source": "1307", "target": "1605", "key": "5338", "undirected": true }, { "source": "1307", "target": "1639", "key": "5340", "undirected": true }, { "source": "1307", "target": "274", "key": "5344", "undirected": true }, { "source": "1307", "target": "682", "key": "5342", "undirected": true }, { "source": "1307", "target": "686", "key": "5339", "undirected": true }, { "source": "1307", "target": "687", "key": "5341", "undirected": true }, { "source": "1307", "target": "980", "key": "5343", "undirected": true }, { "source": "1309", "target": "237", "key": "5345", "undirected": true }, { "source": "1313", "target": "1451", "key": "5350", "undirected": true }, { "source": "1313", "target": "269", "key": "5346", "undirected": true }, { "source": "1313", "target": "510", "key": "5351", "undirected": true }, { "source": "1313", "target": "547", "key": "5347", "undirected": true }, { "source": "1313", "target": "579", "key": "5348", "undirected": true }, { "source": "1313", "target": "592", "key": "5352", "undirected": true }, { "source": "1313", "target": "791", "key": "5349", "undirected": true }, { "source": "1313", "target": "816", "key": "5353", "undirected": true }, { "source": "1313", "target": "868", "key": "5355", "undirected": true }, { "source": "1313", "target": "939", "key": "5356", "undirected": true }, { "source": "1313", "target": "970", "key": "5354", "undirected": true }, { "source": "1315", "target": "1158", "key": "5361", "undirected": true }, { "source": "1315", "target": "1232", "key": "5358", "undirected": true }, { "source": "1315", "target": "301", "key": "5362", "undirected": true }, { "source": "1315", "target": "490", "key": "5357", "undirected": true }, { "source": "1315", "target": "537", "key": "5359", "undirected": true }, { "source": "1315", "target": "632", "key": "5360", "undirected": true }, { "source": "1317", "target": "1579", "key": "5364", "undirected": true }, { "source": "1317", "target": "594", "key": "5363", "undirected": true }, { "source": "1318", "target": "888", "key": "5365", "undirected": true }, { "source": "1318", "target": "977", "key": "5366", "undirected": true }, { "source": "1319", "target": "1041", "key": "5373", "undirected": true }, { "source": "1319", "target": "1259", "key": "5374", "undirected": true }, { "source": "1319", "target": "1580", "key": "5369", "undirected": true }, { "source": "1319", "target": "1602", "key": "5370", "undirected": true }, { "source": "1319", "target": "1607", "key": "5368", "undirected": true }, { "source": "1319", "target": "386", "key": "5372", "undirected": true }, { "source": "1319", "target": "743", "key": "5371", "undirected": true }, { "source": "1319", "target": "790", "key": "5375", "undirected": true }, { "source": "1319", "target": "931", "key": "5367", "undirected": true }, { "source": "1320", "target": "1239", "key": "5379", "undirected": true }, { "source": "1320", "target": "1246", "key": "5377", "undirected": true }, { "source": "1320", "target": "1731", "key": "5376", "undirected": true }, { "source": "1320", "target": "757", "key": "5378", "undirected": true }, { "source": "1321", "target": "1240", "key": "5384", "undirected": true }, { "source": "1321", "target": "1386", "key": "5382", "undirected": true }, { "source": "1321", "target": "1430", "key": "5380", "undirected": true }, { "source": "1321", "target": "1611", "key": "5385", "undirected": true }, { "source": "1321", "target": "1730", "key": "5383", "undirected": true }, { "source": "1321", "target": "227", "key": "5386", "undirected": true }, { "source": "1321", "target": "314", "key": "5381", "undirected": true }, { "source": "1321", "target": "389", "key": "5387", "undirected": true }, { "source": "1321", "target": "565", "key": "5388", "undirected": true }, { "source": "1322", "target": "1321", "key": "5389", "undirected": true }, { "source": "1327", "target": "1232", "key": "5391", "undirected": true }, { "source": "1327", "target": "1557", "key": "5393", "undirected": true }, { "source": "1327", "target": "1638", "key": "5390", "undirected": true }, { "source": "1327", "target": "1639", "key": "5392", "undirected": true }, { "source": "1327", "target": "537", "key": "5394", "undirected": true }, { "source": "1328", "target": "1346", "key": "5403", "undirected": true }, { "source": "1328", "target": "149", "key": "5400", "undirected": true }, { "source": "1328", "target": "1570", "key": "5398", "undirected": true }, { "source": "1328", "target": "162", "key": "5402", "undirected": true }, { "source": "1328", "target": "1621", "key": "5397", "undirected": true }, { "source": "1328", "target": "180", "key": "5395", "undirected": true }, { "source": "1328", "target": "413", "key": "5396", "undirected": true }, { "source": "1328", "target": "460", "key": "5399", "undirected": true }, { "source": "1328", "target": "747", "key": "5401", "undirected": true }, { "source": "1329", "target": "1250", "key": "5408", "undirected": true }, { "source": "1329", "target": "1271", "key": "5406", "undirected": true }, { "source": "1329", "target": "1333", "key": "5410", "undirected": true }, { "source": "1329", "target": "1618", "key": "5409", "undirected": true }, { "source": "1329", "target": "1619", "key": "5405", "undirected": true }, { "source": "1329", "target": "1652", "key": "5407", "undirected": true }, { "source": "1329", "target": "445", "key": "5411", "undirected": true }, { "source": "1329", "target": "448", "key": "5404", "undirected": true }, { "source": "1330", "target": "1104", "key": "5412", "undirected": true }, { "source": "1330", "target": "571", "key": "5414", "undirected": true }, { "source": "1330", "target": "984", "key": "5413", "undirected": true }, { "source": "1331", "target": "1203", "key": "5421", "undirected": true }, { "source": "1331", "target": "1542", "key": "5420", "undirected": true }, { "source": "1331", "target": "1609", "key": "5418", "undirected": true }, { "source": "1331", "target": "1618", "key": "5422", "undirected": true }, { "source": "1331", "target": "303", "key": "5415", "undirected": true }, { "source": "1331", "target": "310", "key": "5419", "undirected": true }, { "source": "1331", "target": "347", "key": "5416", "undirected": true }, { "source": "1331", "target": "470", "key": "5417", "undirected": true }, { "source": "1332", "target": "1044", "key": "5435", "undirected": true }, { "source": "1332", "target": "1075", "key": "5425", "undirected": true }, { "source": "1332", "target": "1094", "key": "5426", "undirected": true }, { "source": "1332", "target": "1171", "key": "5427", "undirected": true }, { "source": "1332", "target": "1203", "key": "5437", "undirected": true }, { "source": "1332", "target": "1554", "key": "5436", "undirected": true }, { "source": "1332", "target": "1640", "key": "5428", "undirected": true }, { "source": "1332", "target": "303", "key": "5424", "undirected": true }, { "source": "1332", "target": "333", "key": "5423", "undirected": true }, { "source": "1332", "target": "338", "key": "5433", "undirected": true }, { "source": "1332", "target": "397", "key": "5434", "undirected": true }, { "source": "1332", "target": "47", "key": "5429", "undirected": true }, { "source": "1332", "target": "533", "key": "5431", "undirected": true }, { "source": "1332", "target": "877", "key": "5430", "undirected": true }, { "source": "1332", "target": "912", "key": "5432", "undirected": true }, { "source": "1334", "target": "1157", "key": "5444", "undirected": true }, { "source": "1334", "target": "1286", "key": "5439", "undirected": true }, { "source": "1334", "target": "1301", "key": "5438", "undirected": true }, { "source": "1334", "target": "1423", "key": "5443", "undirected": true }, { "source": "1334", "target": "1521", "key": "5447", "undirected": true }, { "source": "1334", "target": "1541", "key": "5441", "undirected": true }, { "source": "1334", "target": "1550", "key": "5445", "undirected": true }, { "source": "1334", "target": "1598", "key": "5446", "undirected": true }, { "source": "1334", "target": "1653", "key": "5442", "undirected": true }, { "source": "1334", "target": "206", "key": "5449", "undirected": true }, { "source": "1334", "target": "715", "key": "5440", "undirected": true }, { "source": "1334", "target": "927", "key": "5448", "undirected": true }, { "source": "1337", "target": "686", "key": "5450", "undirected": true }, { "source": "134", "target": "1647", "key": "375", "undirected": true }, { "source": "1340", "target": "1379", "key": "5451", "undirected": true }, { "source": "1343", "target": "1021", "key": "5457", "undirected": true }, { "source": "1343", "target": "1509", "key": "5452", "undirected": true }, { "source": "1343", "target": "183", "key": "5456", "undirected": true }, { "source": "1343", "target": "583", "key": "5453", "undirected": true }, { "source": "1343", "target": "816", "key": "5454", "undirected": true }, { "source": "1343", "target": "960", "key": "5458", "undirected": true }, { "source": "1343", "target": "965", "key": "5455", "undirected": true }, { "source": "1346", "target": "1056", "key": "5468", "undirected": true }, { "source": "1346", "target": "1089", "key": "5471", "undirected": true }, { "source": "1346", "target": "1247", "key": "5466", "undirected": true }, { "source": "1346", "target": "1328", "key": "5461", "undirected": true }, { "source": "1346", "target": "1381", "key": "5465", "undirected": true }, { "source": "1346", "target": "1408", "key": "5459", "undirected": true }, { "source": "1346", "target": "1412", "key": "5474", "undirected": true }, { "source": "1346", "target": "162", "key": "5464", "undirected": true }, { "source": "1346", "target": "1628", "key": "5473", "undirected": true }, { "source": "1346", "target": "1703", "key": "5470", "undirected": true }, { "source": "1346", "target": "272", "key": "5472", "undirected": true }, { "source": "1346", "target": "428", "key": "5460", "undirected": true }, { "source": "1346", "target": "442", "key": "5469", "undirected": true }, { "source": "1346", "target": "450", "key": "5462", "undirected": true }, { "source": "1346", "target": "460", "key": "5467", "undirected": true }, { "source": "1346", "target": "747", "key": "5463", "undirected": true }, { "source": "1347", "target": "639", "key": "5475", "undirected": true }, { "source": "1347", "target": "773", "key": "5477", "undirected": true }, { "source": "1347", "target": "996", "key": "5476", "undirected": true }, { "source": "1348", "target": "1293", "key": "5485", "undirected": true }, { "source": "1348", "target": "1314", "key": "5483", "undirected": true }, { "source": "1348", "target": "256", "key": "5478", "undirected": true }, { "source": "1348", "target": "415", "key": "5480", "undirected": true }, { "source": "1348", "target": "456", "key": "5486", "undirected": true }, { "source": "1348", "target": "460", "key": "5484", "undirected": true }, { "source": "1348", "target": "673", "key": "5481", "undirected": true }, { "source": "1348", "target": "693", "key": "5482", "undirected": true }, { "source": "1348", "target": "716", "key": "5479", "undirected": true }, { "source": "1349", "target": "585", "key": "5487", "undirected": true }, { "source": "1351", "target": "106", "key": "5526", "undirected": true }, { "source": "1351", "target": "1065", "key": "5514", "undirected": true }, { "source": "1351", "target": "1091", "key": "5540", "undirected": true }, { "source": "1351", "target": "1147", "key": "5584", "undirected": true }, { "source": "1351", "target": "1158", "key": "5568", "undirected": true }, { "source": "1351", "target": "1159", "key": "5513", "undirected": true }, { "source": "1351", "target": "1181", "key": "5564", "undirected": true }, { "source": "1351", "target": "12", "key": "5551", "undirected": true }, { "source": "1351", "target": "1292", "key": "5508", "undirected": true }, { "source": "1351", "target": "1319", "key": "5504", "undirected": true }, { "source": "1351", "target": "1338", "key": "5507", "undirected": true }, { "source": "1351", "target": "1352", "key": "5493", "undirected": true }, { "source": "1351", "target": "1354", "key": "5571", "undirected": true }, { "source": "1351", "target": "1366", "key": "5500", "undirected": true }, { "source": "1351", "target": "1417", "key": "5556", "undirected": true }, { "source": "1351", "target": "156", "key": "5492", "undirected": true }, { "source": "1351", "target": "1570", "key": "5567", "undirected": true }, { "source": "1351", "target": "1572", "key": "5524", "undirected": true }, { "source": "1351", "target": "1580", "key": "5525", "undirected": true }, { "source": "1351", "target": "1588", "key": "5566", "undirected": true }, { "source": "1351", "target": "1589", "key": "5523", "undirected": true }, { "source": "1351", "target": "1602", "key": "5489", "undirected": true }, { "source": "1351", "target": "1603", "key": "5572", "undirected": true }, { "source": "1351", "target": "1607", "key": "5506", "undirected": true }, { "source": "1351", "target": "1660", "key": "5542", "undirected": true }, { "source": "1351", "target": "1671", "key": "5580", "undirected": true }, { "source": "1351", "target": "1684", "key": "5554", "undirected": true }, { "source": "1351", "target": "1687", "key": "5579", "undirected": true }, { "source": "1351", "target": "1690", "key": "5576", "undirected": true }, { "source": "1351", "target": "1691", "key": "5535", "undirected": true }, { "source": "1351", "target": "17", "key": "5585", "undirected": true }, { "source": "1351", "target": "1704", "key": "5522", "undirected": true }, { "source": "1351", "target": "177", "key": "5574", "undirected": true }, { "source": "1351", "target": "208", "key": "5520", "undirected": true }, { "source": "1351", "target": "213", "key": "5505", "undirected": true }, { "source": "1351", "target": "222", "key": "5552", "undirected": true }, { "source": "1351", "target": "225", "key": "5511", "undirected": true }, { "source": "1351", "target": "232", "key": "5518", "undirected": true }, { "source": "1351", "target": "288", "key": "5490", "undirected": true }, { "source": "1351", "target": "295", "key": "5497", "undirected": true }, { "source": "1351", "target": "324", "key": "5519", "undirected": true }, { "source": "1351", "target": "328", "key": "5517", "undirected": true }, { "source": "1351", "target": "339", "key": "5502", "undirected": true }, { "source": "1351", "target": "340", "key": "5503", "undirected": true }, { "source": "1351", "target": "344", "key": "5488", "undirected": true }, { "source": "1351", "target": "350", "key": "5521", "undirected": true }, { "source": "1351", "target": "353", "key": "5546", "undirected": true }, { "source": "1351", "target": "368", "key": "5553", "undirected": true }, { "source": "1351", "target": "386", "key": "5573", "undirected": true }, { "source": "1351", "target": "394", "key": "5549", "undirected": true }, { "source": "1351", "target": "395", "key": "5563", "undirected": true }, { "source": "1351", "target": "403", "key": "5548", "undirected": true }, { "source": "1351", "target": "423", "key": "5515", "undirected": true }, { "source": "1351", "target": "424", "key": "5539", "undirected": true }, { "source": "1351", "target": "429", "key": "5583", "undirected": true }, { "source": "1351", "target": "435", "key": "5557", "undirected": true }, { "source": "1351", "target": "46", "key": "5495", "undirected": true }, { "source": "1351", "target": "464", "key": "5575", "undirected": true }, { "source": "1351", "target": "490", "key": "5532", "undirected": true }, { "source": "1351", "target": "493", "key": "5527", "undirected": true }, { "source": "1351", "target": "496", "key": "5547", "undirected": true }, { "source": "1351", "target": "497", "key": "5494", "undirected": true }, { "source": "1351", "target": "517", "key": "5577", "undirected": true }, { "source": "1351", "target": "52", "key": "5545", "undirected": true }, { "source": "1351", "target": "53", "key": "5533", "undirected": true }, { "source": "1351", "target": "54", "key": "5538", "undirected": true }, { "source": "1351", "target": "568", "key": "5541", "undirected": true }, { "source": "1351", "target": "603", "key": "5555", "undirected": true }, { "source": "1351", "target": "625", "key": "5562", "undirected": true }, { "source": "1351", "target": "63", "key": "5491", "undirected": true }, { "source": "1351", "target": "632", "key": "5550", "undirected": true }, { "source": "1351", "target": "639", "key": "5498", "undirected": true }, { "source": "1351", "target": "676", "key": "5501", "undirected": true }, { "source": "1351", "target": "706", "key": "5509", "undirected": true }, { "source": "1351", "target": "712", "key": "5558", "undirected": true }, { "source": "1351", "target": "723", "key": "5534", "undirected": true }, { "source": "1351", "target": "733", "key": "5531", "undirected": true }, { "source": "1351", "target": "740", "key": "5565", "undirected": true }, { "source": "1351", "target": "741", "key": "5530", "undirected": true }, { "source": "1351", "target": "743", "key": "5496", "undirected": true }, { "source": "1351", "target": "746", "key": "5529", "undirected": true }, { "source": "1351", "target": "790", "key": "5569", "undirected": true }, { "source": "1351", "target": "850", "key": "5582", "undirected": true }, { "source": "1351", "target": "857", "key": "5581", "undirected": true }, { "source": "1351", "target": "872", "key": "5536", "undirected": true }, { "source": "1351", "target": "888", "key": "5543", "undirected": true }, { "source": "1351", "target": "903", "key": "5499", "undirected": true }, { "source": "1351", "target": "908", "key": "5559", "undirected": true }, { "source": "1351", "target": "922", "key": "5544", "undirected": true }, { "source": "1351", "target": "926", "key": "5537", "undirected": true }, { "source": "1351", "target": "931", "key": "5570", "undirected": true }, { "source": "1351", "target": "940", "key": "5560", "undirected": true }, { "source": "1351", "target": "947", "key": "5516", "undirected": true }, { "source": "1351", "target": "959", "key": "5512", "undirected": true }, { "source": "1351", "target": "964", "key": "5510", "undirected": true }, { "source": "1351", "target": "978", "key": "5528", "undirected": true }, { "source": "1351", "target": "981", "key": "5561", "undirected": true }, { "source": "1351", "target": "988", "key": "5578", "undirected": true }, { "source": "1352", "target": "1030", "key": "5623", "undirected": true }, { "source": "1352", "target": "1067", "key": "5601", "undirected": true }, { "source": "1352", "target": "1076", "key": "5600", "undirected": true }, { "source": "1352", "target": "1079", "key": "5613", "undirected": true }, { "source": "1352", "target": "1168", "key": "5599", "undirected": true }, { "source": "1352", "target": "1244", "key": "5622", "undirected": true }, { "source": "1352", "target": "1476", "key": "5611", "undirected": true }, { "source": "1352", "target": "1480", "key": "5597", "undirected": true }, { "source": "1352", "target": "1497", "key": "5621", "undirected": true }, { "source": "1352", "target": "1511", "key": "5619", "undirected": true }, { "source": "1352", "target": "1521", "key": "5589", "undirected": true }, { "source": "1352", "target": "1523", "key": "5595", "undirected": true }, { "source": "1352", "target": "1539", "key": "5591", "undirected": true }, { "source": "1352", "target": "1550", "key": "5618", "undirected": true }, { "source": "1352", "target": "1551", "key": "5588", "undirected": true }, { "source": "1352", "target": "1553", "key": "5594", "undirected": true }, { "source": "1352", "target": "1563", "key": "5620", "undirected": true }, { "source": "1352", "target": "1598", "key": "5624", "undirected": true }, { "source": "1352", "target": "1645", "key": "5596", "undirected": true }, { "source": "1352", "target": "1650", "key": "5617", "undirected": true }, { "source": "1352", "target": "1653", "key": "5616", "undirected": true }, { "source": "1352", "target": "1661", "key": "5592", "undirected": true }, { "source": "1352", "target": "1703", "key": "5586", "undirected": true }, { "source": "1352", "target": "1727", "key": "5598", "undirected": true }, { "source": "1352", "target": "206", "key": "5615", "undirected": true }, { "source": "1352", "target": "242", "key": "5590", "undirected": true }, { "source": "1352", "target": "377", "key": "5609", "undirected": true }, { "source": "1352", "target": "378", "key": "5614", "undirected": true }, { "source": "1352", "target": "48", "key": "5612", "undirected": true }, { "source": "1352", "target": "506", "key": "5587", "undirected": true }, { "source": "1352", "target": "639", "key": "5627", "undirected": true }, { "source": "1352", "target": "646", "key": "5593", "undirected": true }, { "source": "1352", "target": "669", "key": "5608", "undirected": true }, { "source": "1352", "target": "696", "key": "5606", "undirected": true }, { "source": "1352", "target": "715", "key": "5605", "undirected": true }, { "source": "1352", "target": "736", "key": "5610", "undirected": true }, { "source": "1352", "target": "753", "key": "5607", "undirected": true }, { "source": "1352", "target": "930", "key": "5626", "undirected": true }, { "source": "1352", "target": "936", "key": "5625", "undirected": true }, { "source": "1352", "target": "971", "key": "5603", "undirected": true }, { "source": "1352", "target": "977", "key": "5604", "undirected": true }, { "source": "1352", "target": "983", "key": "5602", "undirected": true }, { "source": "1353", "target": "1589", "key": "5629", "undirected": true }, { "source": "1353", "target": "1704", "key": "5628", "undirected": true }, { "source": "1354", "target": "1095", "key": "5632", "undirected": true }, { "source": "1354", "target": "1487", "key": "5633", "undirected": true }, { "source": "1354", "target": "1602", "key": "5635", "undirected": true }, { "source": "1354", "target": "52", "key": "5630", "undirected": true }, { "source": "1354", "target": "624", "key": "5631", "undirected": true }, { "source": "1354", "target": "743", "key": "5636", "undirected": true }, { "source": "1354", "target": "831", "key": "5634", "undirected": true }, { "source": "1357", "target": "1666", "key": "5637", "undirected": true }, { "source": "1358", "target": "1056", "key": "5638", "undirected": true }, { "source": "1358", "target": "1309", "key": "5640", "undirected": true }, { "source": "1358", "target": "906", "key": "5639", "undirected": true }, { "source": "136", "target": "1203", "key": "376", "undirected": true }, { "source": "136", "target": "1273", "key": "378", "undirected": true }, { "source": "136", "target": "1554", "key": "377", "undirected": true }, { "source": "1360", "target": "816", "key": "5641", "undirected": true }, { "source": "1361", "target": "1015", "key": "5650", "undirected": true }, { "source": "1361", "target": "1145", "key": "5651", "undirected": true }, { "source": "1361", "target": "1241", "key": "5652", "undirected": true }, { "source": "1361", "target": "1367", "key": "5646", "undirected": true }, { "source": "1361", "target": "1426", "key": "5643", "undirected": true }, { "source": "1361", "target": "1516", "key": "5642", "undirected": true }, { "source": "1361", "target": "203", "key": "5654", "undirected": true }, { "source": "1361", "target": "286", "key": "5649", "undirected": true }, { "source": "1361", "target": "510", "key": "5644", "undirected": true }, { "source": "1361", "target": "592", "key": "5645", "undirected": true }, { "source": "1361", "target": "593", "key": "5648", "undirected": true }, { "source": "1361", "target": "609", "key": "5655", "undirected": true }, { "source": "1361", "target": "617", "key": "5647", "undirected": true }, { "source": "1361", "target": "818", "key": "5653", "undirected": true }, { "source": "1362", "target": "1565", "key": "5656", "undirected": true }, { "source": "1362", "target": "939", "key": "5657", "undirected": true }, { "source": "1362", "target": "979", "key": "5658", "undirected": true }, { "source": "1364", "target": "1034", "key": "5673", "undirected": true }, { "source": "1364", "target": "1104", "key": "5659", "undirected": true }, { "source": "1364", "target": "1108", "key": "5667", "undirected": true }, { "source": "1364", "target": "1113", "key": "5672", "undirected": true }, { "source": "1364", "target": "1175", "key": "5671", "undirected": true }, { "source": "1364", "target": "1211", "key": "5663", "undirected": true }, { "source": "1364", "target": "1243", "key": "5669", "undirected": true }, { "source": "1364", "target": "1244", "key": "5670", "undirected": true }, { "source": "1364", "target": "1330", "key": "5662", "undirected": true }, { "source": "1364", "target": "1460", "key": "5666", "undirected": true }, { "source": "1364", "target": "1569", "key": "5661", "undirected": true }, { "source": "1364", "target": "1622", "key": "5665", "undirected": true }, { "source": "1364", "target": "560", "key": "5668", "undirected": true }, { "source": "1364", "target": "595", "key": "5664", "undirected": true }, { "source": "1364", "target": "930", "key": "5660", "undirected": true }, { "source": "1367", "target": "1032", "key": "5674", "undirected": true }, { "source": "1367", "target": "1313", "key": "5675", "undirected": true }, { "source": "1367", "target": "1361", "key": "5681", "undirected": true }, { "source": "1367", "target": "1516", "key": "5680", "undirected": true }, { "source": "1367", "target": "269", "key": "5682", "undirected": true }, { "source": "1367", "target": "362", "key": "5679", "undirected": true }, { "source": "1367", "target": "592", "key": "5676", "undirected": true }, { "source": "1367", "target": "630", "key": "5678", "undirected": true }, { "source": "1367", "target": "791", "key": "5677", "undirected": true }, { "source": "1368", "target": "1466", "key": "5688", "undirected": true }, { "source": "1368", "target": "1570", "key": "5691", "undirected": true }, { "source": "1368", "target": "1589", "key": "5689", "undirected": true }, { "source": "1368", "target": "1602", "key": "5696", "undirected": true }, { "source": "1368", "target": "1629", "key": "5692", "undirected": true }, { "source": "1368", "target": "1698", "key": "5685", "undirected": true }, { "source": "1368", "target": "1704", "key": "5693", "undirected": true }, { "source": "1368", "target": "201", "key": "5694", "undirected": true }, { "source": "1368", "target": "217", "key": "5699", "undirected": true }, { "source": "1368", "target": "252", "key": "5684", "undirected": true }, { "source": "1368", "target": "277", "key": "5700", "undirected": true }, { "source": "1368", "target": "423", "key": "5697", "undirected": true }, { "source": "1368", "target": "481", "key": "5683", "undirected": true }, { "source": "1368", "target": "697", "key": "5698", "undirected": true }, { "source": "1368", "target": "838", "key": "5695", "undirected": true }, { "source": "1368", "target": "940", "key": "5687", "undirected": true }, { "source": "1368", "target": "978", "key": "5686", "undirected": true }, { "source": "1368", "target": "981", "key": "5690", "undirected": true }, { "source": "137", "target": "141", "key": "379", "undirected": true }, { "source": "1373", "target": "1158", "key": "5725", "undirected": true }, { "source": "1373", "target": "1169", "key": "5719", "undirected": true }, { "source": "1373", "target": "1171", "key": "5721", "undirected": true }, { "source": "1373", "target": "119", "key": "5708", "undirected": true }, { "source": "1373", "target": "1201", "key": "5718", "undirected": true }, { "source": "1373", "target": "1203", "key": "5702", "undirected": true }, { "source": "1373", "target": "136", "key": "5722", "undirected": true }, { "source": "1373", "target": "1438", "key": "5711", "undirected": true }, { "source": "1373", "target": "1485", "key": "5707", "undirected": true }, { "source": "1373", "target": "1554", "key": "5712", "undirected": true }, { "source": "1373", "target": "1559", "key": "5710", "undirected": true }, { "source": "1373", "target": "1581", "key": "5716", "undirected": true }, { "source": "1373", "target": "1584", "key": "5715", "undirected": true }, { "source": "1373", "target": "1614", "key": "5713", "undirected": true }, { "source": "1373", "target": "1616", "key": "5704", "undirected": true }, { "source": "1373", "target": "1617", "key": "5705", "undirected": true }, { "source": "1373", "target": "1631", "key": "5720", "undirected": true }, { "source": "1373", "target": "1669", "key": "5714", "undirected": true }, { "source": "1373", "target": "1751", "key": "5724", "undirected": true }, { "source": "1373", "target": "2", "key": "5723", "undirected": true }, { "source": "1373", "target": "31", "key": "5701", "undirected": true }, { "source": "1373", "target": "319", "key": "5706", "undirected": true }, { "source": "1373", "target": "347", "key": "5717", "undirected": true }, { "source": "1373", "target": "398", "key": "5709", "undirected": true }, { "source": "1373", "target": "438", "key": "5703", "undirected": true }, { "source": "1373", "target": "470", "key": "5727", "undirected": true }, { "source": "1373", "target": "490", "key": "5726", "undirected": true }, { "source": "1374", "target": "1588", "key": "5730", "undirected": true }, { "source": "1374", "target": "177", "key": "5731", "undirected": true }, { "source": "1374", "target": "850", "key": "5729", "undirected": true }, { "source": "1374", "target": "981", "key": "5728", "undirected": true }, { "source": "1375", "target": "1376", "key": "5732", "undirected": true }, { "source": "1381", "target": "1328", "key": "5739", "undirected": true }, { "source": "1381", "target": "162", "key": "5733", "undirected": true }, { "source": "1381", "target": "1685", "key": "5736", "undirected": true }, { "source": "1381", "target": "24", "key": "5734", "undirected": true }, { "source": "1381", "target": "264", "key": "5740", "undirected": true }, { "source": "1381", "target": "460", "key": "5738", "undirected": true }, { "source": "1381", "target": "632", "key": "5737", "undirected": true }, { "source": "1381", "target": "747", "key": "5735", "undirected": true }, { "source": "1383", "target": "1089", "key": "5741", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1383", "target": "1247", "key": "5742", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1383", "target": "643", "key": "5743", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1386", "target": "1012", "key": "5770", "undirected": true }, { "source": "1386", "target": "1050", "key": "5766", "undirected": true }, { "source": "1386", "target": "110", "key": "5763", "undirected": true }, { "source": "1386", "target": "1104", "key": "5768", "undirected": true }, { "source": "1386", "target": "1158", "key": "5771", "undirected": true }, { "source": "1386", "target": "1180", "key": "5773", "undirected": true }, { "source": "1386", "target": "1202", "key": "5772", "undirected": true }, { "source": "1386", "target": "1250", "key": "5767", "undirected": true }, { "source": "1386", "target": "1387", "key": "5759", "undirected": true }, { "source": "1386", "target": "1388", "key": "5758", "undirected": true }, { "source": "1386", "target": "1389", "key": "5757", "undirected": true }, { "source": "1386", "target": "1390", "key": "5750", "undirected": true }, { "source": "1386", "target": "1391", "key": "5756", "undirected": true }, { "source": "1386", "target": "1392", "key": "5755", "undirected": true }, { "source": "1386", "target": "1393", "key": "5754", "undirected": true }, { "source": "1386", "target": "1394", "key": "5753", "undirected": true }, { "source": "1386", "target": "1395", "key": "5752", "undirected": true }, { "source": "1386", "target": "1396", "key": "5751", "undirected": true }, { "source": "1386", "target": "1397", "key": "5749", "undirected": true }, { "source": "1386", "target": "1398", "key": "5761", "undirected": true }, { "source": "1386", "target": "1399", "key": "5748", "undirected": true }, { "source": "1386", "target": "1400", "key": "5760", "undirected": true }, { "source": "1386", "target": "227", "key": "5774", "undirected": true }, { "source": "1386", "target": "30", "key": "5747", "undirected": true }, { "source": "1386", "target": "330", "key": "5762", "undirected": true }, { "source": "1386", "target": "333", "key": "5769", "undirected": true }, { "source": "1386", "target": "580", "key": "5764", "undirected": true }, { "source": "1386", "target": "892", "key": "5765", "undirected": true }, { "source": "1386", "target": "901", "key": "5776", "undirected": true }, { "source": "1386", "target": "91", "key": "5775", "undirected": true }, { "source": "1387", "target": "1386", "key": "5777", "undirected": true }, { "source": "1388", "target": "1386", "key": "5778", "undirected": true }, { "source": "1389", "target": "1386", "key": "5779", "undirected": true }, { "source": "1390", "target": "1386", "key": "5780", "undirected": true }, { "source": "1391", "target": "1386", "key": "5781", "undirected": true }, { "source": "1392", "target": "1386", "key": "5782", "undirected": true }, { "source": "1393", "target": "1386", "key": "5783", "undirected": true }, { "source": "1394", "target": "1386", "key": "5784", "undirected": true }, { "source": "1395", "target": "1386", "key": "5785", "undirected": true }, { "source": "1396", "target": "1386", "key": "5786", "undirected": true }, { "source": "1397", "target": "1386", "key": "5787", "undirected": true }, { "source": "1398", "target": "1386", "key": "5788", "undirected": true }, { "source": "1399", "target": "1386", "key": "5789", "undirected": true }, { "source": "1400", "target": "1386", "key": "5790", "undirected": true }, { "source": "1403", "target": "1089", "key": "5798", "undirected": true }, { "source": "1403", "target": "1136", "key": "5792", "undirected": true }, { "source": "1403", "target": "1247", "key": "5797", "undirected": true }, { "source": "1403", "target": "1293", "key": "5794", "undirected": true }, { "source": "1403", "target": "456", "key": "5795", "undirected": true }, { "source": "1403", "target": "459", "key": "5793", "undirected": true }, { "source": "1403", "target": "460", "key": "5799", "undirected": true }, { "source": "1403", "target": "673", "key": "5796", "undirected": true }, { "source": "1403", "target": "693", "key": "5791", "undirected": true }, { "source": "1404", "target": "1089", "key": "5801", "undirected": true }, { "source": "1404", "target": "1197", "key": "5802", "undirected": true }, { "source": "1404", "target": "1406", "key": "5800", "undirected": true }, { "source": "1407", "target": "1079", "key": "5805", "undirected": true }, { "source": "1407", "target": "1202", "key": "5804", "undirected": true }, { "source": "1407", "target": "209", "key": "5803", "undirected": true }, { "source": "1408", "target": "1089", "key": "5808", "undirected": true }, { "source": "1408", "target": "1127", "key": "5828", "undirected": true }, { "source": "1408", "target": "1166", "key": "5818", "undirected": true }, { "source": "1408", "target": "1247", "key": "5812", "undirected": true }, { "source": "1408", "target": "1293", "key": "5825", "undirected": true }, { "source": "1408", "target": "1346", "key": "5822", "undirected": true }, { "source": "1408", "target": "1621", "key": "5823", "undirected": true }, { "source": "1408", "target": "1686", "key": "5824", "undirected": true }, { "source": "1408", "target": "237", "key": "5815", "undirected": true }, { "source": "1408", "target": "272", "key": "5813", "undirected": true }, { "source": "1408", "target": "312", "key": "5814", "undirected": true }, { "source": "1408", "target": "409", "key": "5826", "undirected": true }, { "source": "1408", "target": "415", "key": "5817", "undirected": true }, { "source": "1408", "target": "428", "key": "5806", "undirected": true }, { "source": "1408", "target": "442", "key": "5810", "undirected": true }, { "source": "1408", "target": "450", "key": "5811", "undirected": true }, { "source": "1408", "target": "459", "key": "5820", "undirected": true }, { "source": "1408", "target": "460", "key": "5807", "undirected": true }, { "source": "1408", "target": "515", "key": "5829", "undirected": true }, { "source": "1408", "target": "590", "key": "5827", "undirected": true }, { "source": "1408", "target": "643", "key": "5816", "undirected": true }, { "source": "1408", "target": "747", "key": "5809", "undirected": true }, { "source": "1408", "target": "766", "key": "5819", "undirected": true }, { "source": "1408", "target": "80", "key": "5821", "undirected": true }, { "source": "141", "target": "1191", "key": "387", "undirected": true }, { "source": "141", "target": "137", "key": "380", "undirected": true }, { "source": "141", "target": "1531", "key": "383", "undirected": true }, { "source": "141", "target": "543", "key": "386", "undirected": true }, { "source": "141", "target": "571", "key": "385", "undirected": true }, { "source": "141", "target": "925", "key": "382", "undirected": true }, { "source": "141", "target": "984", "key": "381", "undirected": true }, { "source": "141", "target": "985", "key": "384", "undirected": true }, { "source": "1410", "target": "344", "key": "5830", "undirected": true }, { "source": "1411", "target": "1304", "key": "5831", "undirected": true }, { "source": "1411", "target": "568", "key": "5832", "undirected": true }, { "source": "1411", "target": "790", "key": "5833", "undirected": true }, { "source": "1412", "target": "1346", "key": "5840", "undirected": true }, { "source": "1412", "target": "1380", "key": "5844", "undirected": true }, { "source": "1412", "target": "1408", "key": "5841", "undirected": true }, { "source": "1412", "target": "164", "key": "5839", "undirected": true }, { "source": "1412", "target": "1685", "key": "5834", "undirected": true }, { "source": "1412", "target": "1686", "key": "5838", "undirected": true }, { "source": "1412", "target": "235", "key": "5846", "undirected": true }, { "source": "1412", "target": "363", "key": "5842", "undirected": true }, { "source": "1412", "target": "415", "key": "5847", "undirected": true }, { "source": "1412", "target": "460", "key": "5836", "undirected": true }, { "source": "1412", "target": "693", "key": "5848", "undirected": true }, { "source": "1412", "target": "728", "key": "5835", "undirected": true }, { "source": "1412", "target": "747", "key": "5837", "undirected": true }, { "source": "1412", "target": "790", "key": "5843", "undirected": true }, { "source": "1412", "target": "843", "key": "5845", "undirected": true }, { "source": "1413", "target": "1589", "key": "5849", "undirected": true }, { "source": "1414", "target": "1570", "key": "5851", "undirected": true }, { "source": "1414", "target": "1589", "key": "5853", "undirected": true }, { "source": "1414", "target": "1671", "key": "5850", "undirected": true }, { "source": "1414", "target": "857", "key": "5852", "undirected": true }, { "source": "1415", "target": "1127", "key": "5856", "undirected": true }, { "source": "1415", "target": "306", "key": "5857", "undirected": true }, { "source": "1415", "target": "460", "key": "5855", "undirected": true }, { "source": "1415", "target": "563", "key": "5854", "undirected": true }, { "source": "1417", "target": "1588", "key": "5865", "undirected": true }, { "source": "1417", "target": "1602", "key": "5862", "undirected": true }, { "source": "1417", "target": "1603", "key": "5864", "undirected": true }, { "source": "1417", "target": "1684", "key": "5860", "undirected": true }, { "source": "1417", "target": "1704", "key": "5863", "undirected": true }, { "source": "1417", "target": "344", "key": "5861", "undirected": true }, { "source": "1417", "target": "676", "key": "5859", "undirected": true }, { "source": "1417", "target": "908", "key": "5858", "undirected": true }, { "source": "142", "target": "1003", "key": "396", "undirected": true }, { "source": "142", "target": "1069", "key": "395", "undirected": true }, { "source": "142", "target": "1212", "key": "390", "undirected": true }, { "source": "142", "target": "1276", "key": "408", "undirected": true }, { "source": "142", "target": "1284", "key": "402", "undirected": true }, { "source": "142", "target": "1327", "key": "404", "undirected": true }, { "source": "142", "target": "1330", "key": "406", "undirected": true }, { "source": "142", "target": "1379", "key": "394", "undirected": true }, { "source": "142", "target": "1423", "key": "393", "undirected": true }, { "source": "142", "target": "1500", "key": "392", "undirected": true }, { "source": "142", "target": "1562", "key": "391", "undirected": true }, { "source": "142", "target": "1563", "key": "401", "undirected": true }, { "source": "142", "target": "1591", "key": "409", "undirected": true }, { "source": "142", "target": "1645", "key": "400", "undirected": true }, { "source": "142", "target": "1650", "key": "399", "undirected": true }, { "source": "142", "target": "1655", "key": "405", "undirected": true }, { "source": "142", "target": "275", "key": "403", "undirected": true }, { "source": "142", "target": "491", "key": "389", "undirected": true }, { "source": "142", "target": "927", "key": "397", "undirected": true }, { "source": "142", "target": "951", "key": "407", "undirected": true }, { "source": "142", "target": "989", "key": "398", "undirected": true }, { "source": "142", "target": "995", "key": "388", "undirected": true }, { "source": "1421", "target": "1015", "key": "5867", "undirected": true }, { "source": "1421", "target": "956", "key": "5866", "undirected": true }, { "source": "1423", "target": "1003", "key": "5875", "undirected": true }, { "source": "1423", "target": "1069", "key": "5874", "undirected": true }, { "source": "1423", "target": "1212", "key": "5873", "undirected": true }, { "source": "1423", "target": "1284", "key": "5872", "undirected": true }, { "source": "1423", "target": "1379", "key": "5871", "undirected": true }, { "source": "1423", "target": "142", "key": "5868", "undirected": true }, { "source": "1423", "target": "1476", "key": "5885", "undirected": true }, { "source": "1423", "target": "1500", "key": "5870", "undirected": true }, { "source": "1423", "target": "1521", "key": "5884", "undirected": true }, { "source": "1423", "target": "1562", "key": "5869", "undirected": true }, { "source": "1423", "target": "1563", "key": "5882", "undirected": true }, { "source": "1423", "target": "1703", "key": "5883", "undirected": true }, { "source": "1423", "target": "279", "key": "5881", "undirected": true }, { "source": "1423", "target": "491", "key": "5878", "undirected": true }, { "source": "1423", "target": "927", "key": "5880", "undirected": true }, { "source": "1423", "target": "938", "key": "5879", "undirected": true }, { "source": "1423", "target": "989", "key": "5877", "undirected": true }, { "source": "1423", "target": "995", "key": "5876", "undirected": true }, { "source": "1426", "target": "551", "key": "5886", "undirected": true }, { "source": "1426", "target": "652", "key": "5888", "undirected": true }, { "source": "1426", "target": "972", "key": "5887", "undirected": true }, { "source": "1430", "target": "1042", "key": "5894", "undirected": true }, { "source": "1430", "target": "1386", "key": "5895", "undirected": true }, { "source": "1430", "target": "1489", "key": "5891", "undirected": true }, { "source": "1430", "target": "1554", "key": "5893", "undirected": true }, { "source": "1430", "target": "1728", "key": "5889", "undirected": true }, { "source": "1430", "target": "1730", "key": "5890", "undirected": true }, { "source": "1430", "target": "215", "key": "5896", "undirected": true }, { "source": "1430", "target": "314", "key": "5892", "undirected": true }, { "source": "1430", "target": "565", "key": "5897", "undirected": true }, { "source": "1431", "target": "122", "key": "5900", "undirected": true }, { "source": "1431", "target": "245", "key": "5898", "undirected": true }, { "source": "1431", "target": "709", "key": "5899", "undirected": true }, { "source": "1432", "target": "1141", "key": "5903", "undirected": true }, { "source": "1432", "target": "829", "key": "5901", "undirected": true }, { "source": "1432", "target": "830", "key": "5904", "undirected": true }, { "source": "1432", "target": "832", "key": "5902", "undirected": true }, { "source": "1433", "target": "1408", "key": "5905", "undirected": true }, { "source": "1439", "target": "1030", "key": "5916", "undirected": true }, { "source": "1439", "target": "1069", "key": "5906", "undirected": true }, { "source": "1439", "target": "1497", "key": "5913", "undirected": true }, { "source": "1439", "target": "1511", "key": "5911", "undirected": true }, { "source": "1439", "target": "1521", "key": "5914", "undirected": true }, { "source": "1439", "target": "1551", "key": "5907", "undirected": true }, { "source": "1439", "target": "1563", "key": "5918", "undirected": true }, { "source": "1439", "target": "1645", "key": "5908", "undirected": true }, { "source": "1439", "target": "1650", "key": "5912", "undirected": true }, { "source": "1439", "target": "1653", "key": "5917", "undirected": true }, { "source": "1439", "target": "206", "key": "5915", "undirected": true }, { "source": "1439", "target": "930", "key": "5910", "undirected": true }, { "source": "1439", "target": "936", "key": "5909", "undirected": true }, { "source": "1441", "target": "1015", "key": "5921", "undirected": true }, { "source": "1441", "target": "1045", "key": "5920", "undirected": true }, { "source": "1441", "target": "286", "key": "5919", "undirected": true }, { "source": "1442", "target": "533", "key": "5922", "undirected": true }, { "source": "1442", "target": "780", "key": "5923", "undirected": true }, { "source": "1442", "target": "79", "key": "5924", "undirected": true }, { "source": "1444", "target": "1203", "key": "5927", "undirected": true }, { "source": "1444", "target": "1445", "key": "5925", "undirected": true }, { "source": "1444", "target": "1742", "key": "5928", "undirected": true }, { "source": "1444", "target": "333", "key": "5929", "undirected": true }, { "source": "1444", "target": "608", "key": "5926", "undirected": true }, { "source": "1445", "target": "1444", "key": "5930", "undirected": true }, { "source": "1445", "target": "1614", "key": "5933", "undirected": true }, { "source": "1445", "target": "1742", "key": "5932", "undirected": true }, { "source": "1445", "target": "333", "key": "5934", "undirected": true }, { "source": "1445", "target": "608", "key": "5931", "undirected": true }, { "source": "1446", "target": "1543", "key": "5935", "undirected": true }, { "source": "1446", "target": "548", "key": "5936", "undirected": true }, { "source": "1446", "target": "816", "key": "5937", "undirected": true }, { "source": "1448", "target": "1102", "key": "5938", "undirected": true }, { "source": "1448", "target": "1265", "key": "5939", "undirected": true }, { "source": "1451", "target": "1313", "key": "5943", "undirected": true }, { "source": "1451", "target": "238", "key": "5944", "undirected": true }, { "source": "1451", "target": "547", "key": "5940", "undirected": true }, { "source": "1451", "target": "588", "key": "5941", "undirected": true }, { "source": "1451", "target": "630", "key": "5942", "undirected": true }, { "source": "1453", "target": "1080", "key": "5950", "undirected": true }, { "source": "1453", "target": "1611", "key": "5947", "undirected": true }, { "source": "1453", "target": "218", "key": "5948", "undirected": true }, { "source": "1453", "target": "294", "key": "5949", "undirected": true }, { "source": "1453", "target": "332", "key": "5946", "undirected": true }, { "source": "1453", "target": "411", "key": "5945", "undirected": true }, { "source": "146", "target": "1207", "key": "410", "undirected": true }, { "source": "146", "target": "1512", "key": "411", "undirected": true }, { "source": "1460", "target": "1035", "key": "5953", "undirected": true }, { "source": "1460", "target": "1104", "key": "5952", "undirected": true }, { "source": "1460", "target": "1108", "key": "5951", "undirected": true }, { "source": "1460", "target": "1493", "key": "5957", "undirected": true }, { "source": "1460", "target": "1494", "key": "5956", "undirected": true }, { "source": "1460", "target": "1502", "key": "5955", "undirected": true }, { "source": "1460", "target": "298", "key": "5954", "undirected": true }, { "source": "1461", "target": "1485", "key": "5962", "undirected": true }, { "source": "1461", "target": "1614", "key": "5961", "undirected": true }, { "source": "1461", "target": "1617", "key": "5959", "undirected": true }, { "source": "1461", "target": "1631", "key": "5960", "undirected": true }, { "source": "1461", "target": "333", "key": "5958", "undirected": true }, { "source": "1463", "target": "1566", "key": "5964", "undirected": true }, { "source": "1463", "target": "228", "key": "5965", "undirected": true }, { "source": "1463", "target": "963", "key": "5963", "undirected": true }, { "source": "1464", "target": "314", "key": "5966", "undirected": true }, { "source": "1465", "target": "1015", "key": "5973", "undirected": true }, { "source": "1465", "target": "1045", "key": "5968", "undirected": true }, { "source": "1465", "target": "1186", "key": "5972", "undirected": true }, { "source": "1465", "target": "1678", "key": "5969", "undirected": true }, { "source": "1465", "target": "601", "key": "5967", "undirected": true }, { "source": "1465", "target": "943", "key": "5970", "undirected": true }, { "source": "1465", "target": "992", "key": "5971", "undirected": true }, { "source": "1466", "target": "1368", "key": "5980", "undirected": true }, { "source": "1466", "target": "1589", "key": "5974", "undirected": true }, { "source": "1466", "target": "1602", "key": "5976", "undirected": true }, { "source": "1466", "target": "1629", "key": "5977", "undirected": true }, { "source": "1466", "target": "1704", "key": "5975", "undirected": true }, { "source": "1466", "target": "252", "key": "5979", "undirected": true }, { "source": "1466", "target": "438", "key": "5982", "undirected": true }, { "source": "1466", "target": "632", "key": "5978", "undirected": true }, { "source": "1466", "target": "755", "key": "5981", "undirected": true }, { "source": "1466", "target": "838", "key": "5983", "undirected": true }, { "source": "1467", "target": "201", "key": "5987", "undirected": true }, { "source": "1467", "target": "214", "key": "5988", "undirected": true }, { "source": "1467", "target": "477", "key": "5986", "undirected": true }, { "source": "1467", "target": "488", "key": "5985", "undirected": true }, { "source": "1467", "target": "773", "key": "5984", "undirected": true }, { "source": "1468", "target": "1034", "key": "6001", "undirected": true }, { "source": "1468", "target": "1035", "key": "6000", "undirected": true }, { "source": "1468", "target": "1191", "key": "5997", "undirected": true }, { "source": "1468", "target": "1210", "key": "5989", "undirected": true }, { "source": "1468", "target": "1211", "key": "5991", "undirected": true }, { "source": "1468", "target": "1243", "key": "5998", "undirected": true }, { "source": "1468", "target": "1330", "key": "5994", "undirected": true }, { "source": "1468", "target": "1490", "key": "5993", "undirected": true }, { "source": "1468", "target": "1540", "key": "5999", "undirected": true }, { "source": "1468", "target": "1569", "key": "5992", "undirected": true }, { "source": "1468", "target": "1622", "key": "5995", "undirected": true }, { "source": "1468", "target": "595", "key": "5996", "undirected": true }, { "source": "1468", "target": "817", "key": "5990", "undirected": true }, { "source": "147", "target": "1588", "key": "412", "undirected": true }, { "source": "147", "target": "1594", "key": "417", "undirected": true }, { "source": "147", "target": "1608", "key": "416", "undirected": true }, { "source": "147", "target": "1620", "key": "414", "undirected": true }, { "source": "147", "target": "1637", "key": "413", "undirected": true }, { "source": "147", "target": "1650", "key": "418", "undirected": true }, { "source": "147", "target": "310", "key": "415", "undirected": true }, { "source": "147", "target": "930", "key": "419", "undirected": true }, { "source": "1470", "target": "333", "key": "6002", "undirected": true }, { "source": "1471", "target": "1102", "key": "6004", "undirected": true }, { "source": "1471", "target": "1448", "key": "6003", "undirected": true }, { "source": "1472", "target": "1102", "key": "6007", "undirected": true }, { "source": "1472", "target": "1734", "key": "6005", "undirected": true }, { "source": "1472", "target": "508", "key": "6006", "undirected": true }, { "source": "1474", "target": "1054", "key": "6016", "undirected": true }, { "source": "1474", "target": "1070", "key": "6013", "undirected": true }, { "source": "1474", "target": "1102", "key": "6011", "undirected": true }, { "source": "1474", "target": "1300", "key": "6015", "undirected": true }, { "source": "1474", "target": "1370", "key": "6010", "undirected": true }, { "source": "1474", "target": "1448", "key": "6008", "undirected": true }, { "source": "1474", "target": "1579", "key": "6009", "undirected": true }, { "source": "1474", "target": "408", "key": "6012", "undirected": true }, { "source": "1474", "target": "585", "key": "6014", "undirected": true }, { "source": "1474", "target": "678", "key": "6018", "undirected": true }, { "source": "1474", "target": "732", "key": "6017", "undirected": true }, { "source": "1476", "target": "1480", "key": "6022", "undirected": true }, { "source": "1476", "target": "1553", "key": "6020", "undirected": true }, { "source": "1476", "target": "1727", "key": "6023", "undirected": true }, { "source": "1476", "target": "481", "key": "6025", "undirected": true }, { "source": "1476", "target": "490", "key": "6024", "undirected": true }, { "source": "1476", "target": "646", "key": "6021", "undirected": true }, { "source": "1476", "target": "977", "key": "6019", "undirected": true }, { "source": "1477", "target": "673", "key": "6026", "undirected": true }, { "source": "1478", "target": "1095", "key": "6028", "undirected": true }, { "source": "1478", "target": "1259", "key": "6038", "undirected": true }, { "source": "1478", "target": "164", "key": "6034", "undirected": true }, { "source": "1478", "target": "1697", "key": "6033", "undirected": true }, { "source": "1478", "target": "481", "key": "6037", "undirected": true }, { "source": "1478", "target": "535", "key": "6030", "undirected": true }, { "source": "1478", "target": "544", "key": "6031", "undirected": true }, { "source": "1478", "target": "730", "key": "6027", "undirected": true }, { "source": "1478", "target": "746", "key": "6036", "undirected": true }, { "source": "1478", "target": "831", "key": "6032", "undirected": true }, { "source": "1478", "target": "862", "key": "6029", "undirected": true }, { "source": "1478", "target": "948", "key": "6035", "undirected": true }, { "source": "1479", "target": "1089", "key": "6041", "undirected": true }, { "source": "1479", "target": "460", "key": "6040", "undirected": true }, { "source": "1479", "target": "973", "key": "6039", "undirected": true }, { "source": "1480", "target": "1563", "key": "6047", "undirected": true }, { "source": "1480", "target": "1645", "key": "6045", "undirected": true }, { "source": "1480", "target": "1703", "key": "6044", "undirected": true }, { "source": "1480", "target": "1727", "key": "6042", "undirected": true }, { "source": "1480", "target": "669", "key": "6048", "undirected": true }, { "source": "1480", "target": "715", "key": "6043", "undirected": true }, { "source": "1480", "target": "977", "key": "6046", "undirected": true }, { "source": "1481", "target": "1232", "key": "6049", "undirected": true }, { "source": "1481", "target": "1245", "key": "6052", "undirected": true }, { "source": "1481", "target": "1250", "key": "6050", "undirected": true }, { "source": "1481", "target": "1749", "key": "6051", "undirected": true }, { "source": "1481", "target": "860", "key": "6053", "undirected": true }, { "source": "1481", "target": "891", "key": "6054", "undirected": true }, { "source": "1482", "target": "1539", "key": "6060", "undirected": true }, { "source": "1482", "target": "1551", "key": "6063", "undirected": true }, { "source": "1482", "target": "1563", "key": "6056", "undirected": true }, { "source": "1482", "target": "1645", "key": "6055", "undirected": true }, { "source": "1482", "target": "206", "key": "6058", "undirected": true }, { "source": "1482", "target": "242", "key": "6062", "undirected": true }, { "source": "1482", "target": "707", "key": "6065", "undirected": true }, { "source": "1482", "target": "811", "key": "6061", "undirected": true }, { "source": "1482", "target": "930", "key": "6059", "undirected": true }, { "source": "1482", "target": "936", "key": "6057", "undirected": true }, { "source": "1482", "target": "971", "key": "6064", "undirected": true }, { "source": "1485", "target": "1114", "key": "6080", "undirected": true }, { "source": "1485", "target": "1169", "key": "6075", "undirected": true }, { "source": "1485", "target": "1171", "key": "6088", "undirected": true }, { "source": "1485", "target": "119", "key": "6071", "undirected": true }, { "source": "1485", "target": "1201", "key": "6070", "undirected": true }, { "source": "1485", "target": "1238", "key": "6091", "undirected": true }, { "source": "1485", "target": "1331", "key": "6079", "undirected": true }, { "source": "1485", "target": "1373", "key": "6077", "undirected": true }, { "source": "1485", "target": "1438", "key": "6067", "undirected": true }, { "source": "1485", "target": "1554", "key": "6074", "undirected": true }, { "source": "1485", "target": "1559", "key": "6081", "undirected": true }, { "source": "1485", "target": "1581", "key": "6072", "undirected": true }, { "source": "1485", "target": "1584", "key": "6084", "undirected": true }, { "source": "1485", "target": "1614", "key": "6069", "undirected": true }, { "source": "1485", "target": "1616", "key": "6068", "undirected": true }, { "source": "1485", "target": "1617", "key": "6082", "undirected": true }, { "source": "1485", "target": "1631", "key": "6073", "undirected": true }, { "source": "1485", "target": "1669", "key": "6083", "undirected": true }, { "source": "1485", "target": "303", "key": "6066", "undirected": true }, { "source": "1485", "target": "313", "key": "6078", "undirected": true }, { "source": "1485", "target": "319", "key": "6087", "undirected": true }, { "source": "1485", "target": "333", "key": "6076", "undirected": true }, { "source": "1485", "target": "347", "key": "6085", "undirected": true }, { "source": "1485", "target": "398", "key": "6086", "undirected": true }, { "source": "1485", "target": "438", "key": "6089", "undirected": true }, { "source": "1485", "target": "935", "key": "6090", "undirected": true }, { "source": "1486", "target": "244", "key": "6092", "undirected": true }, { "source": "1487", "target": "1354", "key": "6093", "undirected": true }, { "source": "1487", "target": "831", "key": "6094", "undirected": true }, { "source": "1489", "target": "1430", "key": "6097", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1489", "target": "1554", "key": "6098", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1489", "target": "1730", "key": "6096", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1489", "target": "291", "key": "6099", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1489", "target": "314", "key": "6095", "attributes": { "weight": 2 }, "undirected": true }, { "source": "149", "target": "1328", "key": "420", "undirected": true }, { "source": "149", "target": "1346", "key": "426", "undirected": true }, { "source": "149", "target": "1570", "key": "424", "undirected": true }, { "source": "149", "target": "162", "key": "425", "undirected": true }, { "source": "149", "target": "1621", "key": "423", "undirected": true }, { "source": "149", "target": "180", "key": "421", "undirected": true }, { "source": "149", "target": "413", "key": "422", "undirected": true }, { "source": "149", "target": "460", "key": "428", "undirected": true }, { "source": "149", "target": "747", "key": "427", "undirected": true }, { "source": "1490", "target": "1035", "key": "6108", "undirected": true }, { "source": "1490", "target": "1046", "key": "6106", "undirected": true }, { "source": "1490", "target": "1104", "key": "6105", "undirected": true }, { "source": "1490", "target": "1113", "key": "6107", "undirected": true }, { "source": "1490", "target": "1243", "key": "6110", "undirected": true }, { "source": "1490", "target": "1529", "key": "6109", "undirected": true }, { "source": "1491", "target": "1034", "key": "6113", "undirected": true }, { "source": "1491", "target": "1035", "key": "6112", "undirected": true }, { "source": "1491", "target": "1046", "key": "6122", "undirected": true }, { "source": "1491", "target": "1061", "key": "6114", "undirected": true }, { "source": "1491", "target": "1112", "key": "6116", "undirected": true }, { "source": "1491", "target": "1113", "key": "6115", "undirected": true }, { "source": "1491", "target": "1364", "key": "6121", "undirected": true }, { "source": "1491", "target": "1493", "key": "6118", "undirected": true }, { "source": "1491", "target": "195", "key": "6123", "undirected": true }, { "source": "1491", "target": "481", "key": "6119", "undirected": true }, { "source": "1491", "target": "543", "key": "6117", "undirected": true }, { "source": "1491", "target": "660", "key": "6120", "undirected": true }, { "source": "1491", "target": "668", "key": "6111", "undirected": true }, { "source": "1492", "target": "1034", "key": "6124", "undirected": true }, { "source": "1493", "target": "466", "key": "6125", "undirected": true }, { "source": "1495", "target": "1066", "key": "6127", "undirected": true }, { "source": "1495", "target": "1349", "key": "6128", "undirected": true }, { "source": "1495", "target": "1522", "key": "6126", "undirected": true }, { "source": "1495", "target": "1676", "key": "6130", "undirected": true }, { "source": "1495", "target": "524", "key": "6129", "undirected": true }, { "source": "1496", "target": "1158", "key": "6131", "undirected": true }, { "source": "1496", "target": "1202", "key": "6132", "undirected": true }, { "source": "1496", "target": "1528", "key": "6136", "undirected": true }, { "source": "1496", "target": "639", "key": "6134", "undirected": true }, { "source": "1496", "target": "649", "key": "6133", "undirected": true }, { "source": "1496", "target": "758", "key": "6135", "undirected": true }, { "source": "1497", "target": "1244", "key": "6138", "undirected": true }, { "source": "1497", "target": "1352", "key": "6142", "undirected": true }, { "source": "1497", "target": "1422", "key": "6143", "undirected": true }, { "source": "1497", "target": "1521", "key": "6140", "undirected": true }, { "source": "1497", "target": "1550", "key": "6137", "undirected": true }, { "source": "1497", "target": "1645", "key": "6139", "undirected": true }, { "source": "1497", "target": "242", "key": "6141", "undirected": true }, { "source": "1497", "target": "936", "key": "6144", "undirected": true }, { "source": "1498", "target": "1031", "key": "6145", "undirected": true }, { "source": "1498", "target": "1516", "key": "6146", "undirected": true }, { "source": "1500", "target": "1276", "key": "6150", "undirected": true }, { "source": "1500", "target": "1284", "key": "6154", "undirected": true }, { "source": "1500", "target": "1327", "key": "6148", "undirected": true }, { "source": "1500", "target": "1379", "key": "6156", "undirected": true }, { "source": "1500", "target": "142", "key": "6159", "undirected": true }, { "source": "1500", "target": "1423", "key": "6157", "undirected": true }, { "source": "1500", "target": "1521", "key": "6155", "undirected": true }, { "source": "1500", "target": "1563", "key": "6153", "undirected": true }, { "source": "1500", "target": "1571", "key": "6147", "undirected": true }, { "source": "1500", "target": "1645", "key": "6151", "undirected": true }, { "source": "1500", "target": "219", "key": "6149", "undirected": true }, { "source": "1500", "target": "506", "key": "6158", "undirected": true }, { "source": "1500", "target": "927", "key": "6152", "undirected": true }, { "source": "1502", "target": "1034", "key": "6167", "undirected": true }, { "source": "1502", "target": "1210", "key": "6161", "undirected": true }, { "source": "1502", "target": "1243", "key": "6166", "undirected": true }, { "source": "1502", "target": "1460", "key": "6162", "undirected": true }, { "source": "1502", "target": "1569", "key": "6160", "undirected": true }, { "source": "1502", "target": "1612", "key": "6165", "undirected": true }, { "source": "1502", "target": "1622", "key": "6164", "undirected": true }, { "source": "1502", "target": "595", "key": "6163", "undirected": true }, { "source": "1502", "target": "77", "key": "6168", "undirected": true }, { "source": "1505", "target": "1706", "key": "6170", "undirected": true }, { "source": "1505", "target": "522", "key": "6169", "undirected": true }, { "source": "1505", "target": "926", "key": "6171", "undirected": true }, { "source": "1508", "target": "551", "key": "6172", "undirected": true }, { "source": "1508", "target": "630", "key": "6176", "undirected": true }, { "source": "1508", "target": "816", "key": "6173", "undirected": true }, { "source": "1508", "target": "818", "key": "6174", "undirected": true }, { "source": "1508", "target": "946", "key": "6175", "undirected": true }, { "source": "1509", "target": "1021", "key": "6187", "undirected": true }, { "source": "1509", "target": "1214", "key": "6181", "undirected": true }, { "source": "1509", "target": "1233", "key": "6197", "undirected": true }, { "source": "1509", "target": "1313", "key": "6184", "undirected": true }, { "source": "1509", "target": "1508", "key": "6193", "undirected": true }, { "source": "1509", "target": "1542", "key": "6179", "undirected": true }, { "source": "1509", "target": "1543", "key": "6190", "undirected": true }, { "source": "1509", "target": "203", "key": "6182", "undirected": true }, { "source": "1509", "target": "238", "key": "6186", "undirected": true }, { "source": "1509", "target": "269", "key": "6192", "undirected": true }, { "source": "1509", "target": "281", "key": "6177", "undirected": true }, { "source": "1509", "target": "550", "key": "6183", "undirected": true }, { "source": "1509", "target": "551", "key": "6185", "undirected": true }, { "source": "1509", "target": "583", "key": "6196", "undirected": true }, { "source": "1509", "target": "61", "key": "6188", "undirected": true }, { "source": "1509", "target": "612", "key": "6194", "undirected": true }, { "source": "1509", "target": "621", "key": "6195", "undirected": true }, { "source": "1509", "target": "698", "key": "6178", "undirected": true }, { "source": "1509", "target": "811", "key": "6191", "undirected": true }, { "source": "1509", "target": "816", "key": "6180", "undirected": true }, { "source": "1509", "target": "818", "key": "6189", "undirected": true }, { "source": "151", "target": "10", "key": "433", "undirected": true }, { "source": "151", "target": "1013", "key": "478", "undirected": true }, { "source": "151", "target": "1065", "key": "502", "undirected": true }, { "source": "151", "target": "1202", "key": "485", "undirected": true }, { "source": "151", "target": "1210", "key": "499", "undirected": true }, { "source": "151", "target": "1211", "key": "497", "undirected": true }, { "source": "151", "target": "122", "key": "493", "undirected": true }, { "source": "151", "target": "1232", "key": "434", "undirected": true }, { "source": "151", "target": "1245", "key": "458", "undirected": true }, { "source": "151", "target": "1251", "key": "448", "undirected": true }, { "source": "151", "target": "1263", "key": "474", "undirected": true }, { "source": "151", "target": "1266", "key": "470", "undirected": true }, { "source": "151", "target": "1271", "key": "469", "undirected": true }, { "source": "151", "target": "1285", "key": "431", "undirected": true }, { "source": "151", "target": "1286", "key": "463", "undirected": true }, { "source": "151", "target": "1298", "key": "432", "undirected": true }, { "source": "151", "target": "1301", "key": "452", "undirected": true }, { "source": "151", "target": "1307", "key": "455", "undirected": true }, { "source": "151", "target": "1316", "key": "450", "undirected": true }, { "source": "151", "target": "1327", "key": "446", "undirected": true }, { "source": "151", "target": "1330", "key": "498", "undirected": true }, { "source": "151", "target": "1333", "key": "451", "undirected": true }, { "source": "151", "target": "1386", "key": "487", "undirected": true }, { "source": "151", "target": "1417", "key": "489", "undirected": true }, { "source": "151", "target": "1470", "key": "481", "undirected": true }, { "source": "151", "target": "1556", "key": "468", "undirected": true }, { "source": "151", "target": "1557", "key": "467", "undirected": true }, { "source": "151", "target": "1563", "key": "491", "undirected": true }, { "source": "151", "target": "1569", "key": "496", "undirected": true }, { "source": "151", "target": "1571", "key": "479", "undirected": true }, { "source": "151", "target": "1594", "key": "466", "undirected": true }, { "source": "151", "target": "1598", "key": "492", "undirected": true }, { "source": "151", "target": "1602", "key": "490", "undirected": true }, { "source": "151", "target": "1605", "key": "457", "undirected": true }, { "source": "151", "target": "1607", "key": "488", "undirected": true }, { "source": "151", "target": "1618", "key": "460", "undirected": true }, { "source": "151", "target": "1619", "key": "453", "undirected": true }, { "source": "151", "target": "1621", "key": "495", "undirected": true }, { "source": "151", "target": "1622", "key": "500", "undirected": true }, { "source": "151", "target": "1626", "key": "449", "undirected": true }, { "source": "151", "target": "1637", "key": "429", "undirected": true }, { "source": "151", "target": "1638", "key": "447", "undirected": true }, { "source": "151", "target": "1646", "key": "477", "undirected": true }, { "source": "151", "target": "1649", "key": "472", "undirected": true }, { "source": "151", "target": "1652", "key": "445", "undirected": true }, { "source": "151", "target": "1654", "key": "475", "undirected": true }, { "source": "151", "target": "1655", "key": "454", "undirected": true }, { "source": "151", "target": "1656", "key": "435", "undirected": true }, { "source": "151", "target": "1717", "key": "430", "undirected": true }, { "source": "151", "target": "1719", "key": "444", "undirected": true }, { "source": "151", "target": "1724", "key": "486", "undirected": true }, { "source": "151", "target": "1749", "key": "459", "undirected": true }, { "source": "151", "target": "228", "key": "464", "undirected": true }, { "source": "151", "target": "266", "key": "462", "undirected": true }, { "source": "151", "target": "273", "key": "461", "undirected": true }, { "source": "151", "target": "275", "key": "436", "undirected": true }, { "source": "151", "target": "310", "key": "473", "undirected": true }, { "source": "151", "target": "333", "key": "484", "undirected": true }, { "source": "151", "target": "405", "key": "442", "undirected": true }, { "source": "151", "target": "448", "key": "465", "undirected": true }, { "source": "151", "target": "469", "key": "471", "undirected": true }, { "source": "151", "target": "595", "key": "501", "undirected": true }, { "source": "151", "target": "698", "key": "480", "undirected": true }, { "source": "151", "target": "743", "key": "476", "undirected": true }, { "source": "151", "target": "829", "key": "440", "undirected": true }, { "source": "151", "target": "840", "key": "441", "undirected": true }, { "source": "151", "target": "877", "key": "483", "undirected": true }, { "source": "151", "target": "885", "key": "443", "undirected": true }, { "source": "151", "target": "890", "key": "438", "undirected": true }, { "source": "151", "target": "891", "key": "439", "undirected": true }, { "source": "151", "target": "912", "key": "482", "undirected": true }, { "source": "151", "target": "921", "key": "437", "undirected": true }, { "source": "151", "target": "936", "key": "494", "undirected": true }, { "source": "151", "target": "980", "key": "456", "undirected": true }, { "source": "1510", "target": "551", "key": "6198", "undirected": true }, { "source": "1511", "target": "1422", "key": "6203", "undirected": true }, { "source": "1511", "target": "1439", "key": "6200", "undirected": true }, { "source": "1511", "target": "1497", "key": "6199", "undirected": true }, { "source": "1511", "target": "1521", "key": "6202", "undirected": true }, { "source": "1511", "target": "1645", "key": "6204", "undirected": true }, { "source": "1511", "target": "1653", "key": "6201", "undirected": true }, { "source": "1511", "target": "242", "key": "6205", "undirected": true }, { "source": "1512", "target": "1008", "key": "6208", "undirected": true }, { "source": "1512", "target": "1207", "key": "6227", "undirected": true }, { "source": "1512", "target": "1247", "key": "6207", "undirected": true }, { "source": "1512", "target": "1268", "key": "6211", "undirected": true }, { "source": "1512", "target": "1681", "key": "6206", "undirected": true }, { "source": "1512", "target": "1705", "key": "6226", "undirected": true }, { "source": "1512", "target": "191", "key": "6217", "undirected": true }, { "source": "1512", "target": "238", "key": "6223", "undirected": true }, { "source": "1512", "target": "249", "key": "6216", "undirected": true }, { "source": "1512", "target": "251", "key": "6220", "undirected": true }, { "source": "1512", "target": "306", "key": "6224", "undirected": true }, { "source": "1512", "target": "387", "key": "6218", "undirected": true }, { "source": "1512", "target": "409", "key": "6222", "undirected": true }, { "source": "1512", "target": "415", "key": "6221", "undirected": true }, { "source": "1512", "target": "418", "key": "6215", "undirected": true }, { "source": "1512", "target": "460", "key": "6214", "undirected": true }, { "source": "1512", "target": "563", "key": "6225", "undirected": true }, { "source": "1512", "target": "643", "key": "6213", "undirected": true }, { "source": "1512", "target": "674", "key": "6212", "undirected": true }, { "source": "1512", "target": "714", "key": "6219", "undirected": true }, { "source": "1512", "target": "811", "key": "6210", "undirected": true }, { "source": "1512", "target": "812", "key": "6209", "undirected": true }, { "source": "1516", "target": "1015", "key": "6254", "undirected": true }, { "source": "1516", "target": "1021", "key": "6228", "undirected": true }, { "source": "1516", "target": "1024", "key": "6247", "undirected": true }, { "source": "1516", "target": "1025", "key": "6241", "undirected": true }, { "source": "1516", "target": "1027", "key": "6239", "undirected": true }, { "source": "1516", "target": "104", "key": "6238", "undirected": true }, { "source": "1516", "target": "1137", "key": "6249", "undirected": true }, { "source": "1516", "target": "1233", "key": "6243", "undirected": true }, { "source": "1516", "target": "1313", "key": "6244", "undirected": true }, { "source": "1516", "target": "1361", "key": "6230", "undirected": true }, { "source": "1516", "target": "1367", "key": "6231", "undirected": true }, { "source": "1516", "target": "1465", "key": "6250", "undirected": true }, { "source": "1516", "target": "1504", "key": "6237", "undirected": true }, { "source": "1516", "target": "1708", "key": "6246", "undirected": true }, { "source": "1516", "target": "183", "key": "6236", "undirected": true }, { "source": "1516", "target": "238", "key": "6251", "undirected": true }, { "source": "1516", "target": "362", "key": "6248", "undirected": true }, { "source": "1516", "target": "510", "key": "6229", "undirected": true }, { "source": "1516", "target": "577", "key": "6240", "undirected": true }, { "source": "1516", "target": "592", "key": "6232", "undirected": true }, { "source": "1516", "target": "593", "key": "6235", "undirected": true }, { "source": "1516", "target": "596", "key": "6242", "undirected": true }, { "source": "1516", "target": "630", "key": "6245", "undirected": true }, { "source": "1516", "target": "791", "key": "6233", "undirected": true }, { "source": "1516", "target": "802", "key": "6255", "undirected": true }, { "source": "1516", "target": "937", "key": "6252", "undirected": true }, { "source": "1516", "target": "956", "key": "6234", "undirected": true }, { "source": "1516", "target": "957", "key": "6253", "undirected": true }, { "source": "1518", "target": "1032", "key": "6261", "undirected": true }, { "source": "1518", "target": "1233", "key": "6256", "undirected": true }, { "source": "1518", "target": "1244", "key": "6266", "undirected": true }, { "source": "1518", "target": "1313", "key": "6257", "undirected": true }, { "source": "1518", "target": "1343", "key": "6267", "undirected": true }, { "source": "1518", "target": "1509", "key": "6265", "undirected": true }, { "source": "1518", "target": "269", "key": "6260", "undirected": true }, { "source": "1518", "target": "551", "key": "6262", "undirected": true }, { "source": "1518", "target": "588", "key": "6258", "undirected": true }, { "source": "1518", "target": "630", "key": "6263", "undirected": true }, { "source": "1518", "target": "634", "key": "6264", "undirected": true }, { "source": "1518", "target": "816", "key": "6259", "undirected": true }, { "source": "1519", "target": "182", "key": "6268", "undirected": true }, { "source": "152", "target": "1596", "key": "503", "undirected": true }, { "source": "1521", "target": "1030", "key": "6300", "undirected": true }, { "source": "1521", "target": "1067", "key": "6292", "undirected": true }, { "source": "1521", "target": "1069", "key": "6286", "undirected": true }, { "source": "1521", "target": "1076", "key": "6291", "undirected": true }, { "source": "1521", "target": "1079", "key": "6271", "undirected": true }, { "source": "1521", "target": "1168", "key": "6290", "undirected": true }, { "source": "1521", "target": "1170", "key": "6282", "undirected": true }, { "source": "1521", "target": "1212", "key": "6283", "undirected": true }, { "source": "1521", "target": "1244", "key": "6299", "undirected": true }, { "source": "1521", "target": "1284", "key": "6284", "undirected": true }, { "source": "1521", "target": "1352", "key": "6272", "undirected": true }, { "source": "1521", "target": "1423", "key": "6277", "undirected": true }, { "source": "1521", "target": "1439", "key": "6298", "undirected": true }, { "source": "1521", "target": "1480", "key": "6288", "undirected": true }, { "source": "1521", "target": "1500", "key": "6304", "undirected": true }, { "source": "1521", "target": "1511", "key": "6296", "undirected": true }, { "source": "1521", "target": "1551", "key": "6270", "undirected": true }, { "source": "1521", "target": "1553", "key": "6274", "undirected": true }, { "source": "1521", "target": "1563", "key": "6276", "undirected": true }, { "source": "1521", "target": "1598", "key": "6301", "undirected": true }, { "source": "1521", "target": "1645", "key": "6297", "undirected": true }, { "source": "1521", "target": "1650", "key": "6295", "undirected": true }, { "source": "1521", "target": "1661", "key": "6287", "undirected": true }, { "source": "1521", "target": "1703", "key": "6275", "undirected": true }, { "source": "1521", "target": "1727", "key": "6289", "undirected": true }, { "source": "1521", "target": "206", "key": "6294", "undirected": true }, { "source": "1521", "target": "242", "key": "6269", "undirected": true }, { "source": "1521", "target": "279", "key": "6285", "undirected": true }, { "source": "1521", "target": "377", "key": "6281", "undirected": true }, { "source": "1521", "target": "378", "key": "6280", "undirected": true }, { "source": "1521", "target": "490", "key": "6273", "undirected": true }, { "source": "1521", "target": "646", "key": "6279", "undirected": true }, { "source": "1521", "target": "715", "key": "6293", "undirected": true }, { "source": "1521", "target": "753", "key": "6278", "undirected": true }, { "source": "1521", "target": "930", "key": "6303", "undirected": true }, { "source": "1521", "target": "936", "key": "6302", "undirected": true }, { "source": "1522", "target": "1495", "key": "6305", "undirected": true }, { "source": "1523", "target": "1244", "key": "6313", "undirected": true }, { "source": "1523", "target": "1352", "key": "6314", "undirected": true }, { "source": "1523", "target": "1482", "key": "6315", "undirected": true }, { "source": "1523", "target": "1539", "key": "6308", "undirected": true }, { "source": "1523", "target": "1551", "key": "6306", "undirected": true }, { "source": "1523", "target": "1645", "key": "6312", "undirected": true }, { "source": "1523", "target": "377", "key": "6307", "undirected": true }, { "source": "1523", "target": "481", "key": "6316", "undirected": true }, { "source": "1523", "target": "646", "key": "6310", "undirected": true }, { "source": "1523", "target": "736", "key": "6311", "undirected": true }, { "source": "1523", "target": "753", "key": "6309", "undirected": true }, { "source": "1525", "target": "1104", "key": "6317", "undirected": true }, { "source": "1525", "target": "446", "key": "6318", "undirected": true }, { "source": "1527", "target": "547", "key": "6319", "undirected": true }, { "source": "1528", "target": "758", "key": "6320", "undirected": true }, { "source": "1528", "target": "865", "key": "6321", "undirected": true }, { "source": "1529", "target": "1191", "key": "6323", "undirected": true }, { "source": "1529", "target": "668", "key": "6322", "undirected": true }, { "source": "1529", "target": "984", "key": "6324", "undirected": true }, { "source": "1531", "target": "1191", "key": "6326", "undirected": true }, { "source": "1531", "target": "925", "key": "6325", "undirected": true }, { "source": "1533", "target": "1239", "key": "6327", "undirected": true }, { "source": "1535", "target": "1480", "key": "6330", "undirected": true }, { "source": "1535", "target": "1551", "key": "6329", "undirected": true }, { "source": "1535", "target": "1727", "key": "6328", "undirected": true }, { "source": "1535", "target": "308", "key": "6332", "undirected": true }, { "source": "1535", "target": "378", "key": "6334", "undirected": true }, { "source": "1535", "target": "715", "key": "6331", "undirected": true }, { "source": "1535", "target": "811", "key": "6333", "undirected": true }, { "source": "1538", "target": "1680", "key": "6337", "undirected": true }, { "source": "1538", "target": "280", "key": "6338", "undirected": true }, { "source": "1538", "target": "413", "key": "6336", "undirected": true }, { "source": "1538", "target": "415", "key": "6335", "undirected": true }, { "source": "1539", "target": "1352", "key": "6339", "undirected": true }, { "source": "1539", "target": "1523", "key": "6341", "undirected": true }, { "source": "1539", "target": "1551", "key": "6343", "undirected": true }, { "source": "1539", "target": "707", "key": "6340", "undirected": true }, { "source": "1539", "target": "708", "key": "6342", "undirected": true }, { "source": "154", "target": "1032", "key": "510", "undirected": true }, { "source": "154", "target": "1451", "key": "511", "undirected": true }, { "source": "154", "target": "1508", "key": "512", "undirected": true }, { "source": "154", "target": "155", "key": "507", "undirected": true }, { "source": "154", "target": "190", "key": "508", "undirected": true }, { "source": "154", "target": "362", "key": "513", "undirected": true }, { "source": "154", "target": "551", "key": "516", "undirected": true }, { "source": "154", "target": "588", "key": "509", "undirected": true }, { "source": "154", "target": "592", "key": "515", "undirected": true }, { "source": "154", "target": "601", "key": "514", "undirected": true }, { "source": "154", "target": "61", "key": "505", "undirected": true }, { "source": "154", "target": "635", "key": "504", "undirected": true }, { "source": "154", "target": "95", "key": "506", "undirected": true }, { "source": "1540", "target": "1035", "key": "6353", "undirected": true }, { "source": "1540", "target": "1061", "key": "6352", "undirected": true }, { "source": "1540", "target": "1178", "key": "6351", "undirected": true }, { "source": "1540", "target": "1330", "key": "6357", "undirected": true }, { "source": "1540", "target": "1364", "key": "6346", "undirected": true }, { "source": "1540", "target": "1490", "key": "6356", "undirected": true }, { "source": "1540", "target": "1491", "key": "6350", "undirected": true }, { "source": "1540", "target": "1493", "key": "6349", "undirected": true }, { "source": "1540", "target": "1569", "key": "6347", "undirected": true }, { "source": "1540", "target": "55", "key": "6345", "undirected": true }, { "source": "1540", "target": "589", "key": "6348", "undirected": true }, { "source": "1540", "target": "62", "key": "6355", "undirected": true }, { "source": "1540", "target": "668", "key": "6354", "undirected": true }, { "source": "1540", "target": "984", "key": "6344", "undirected": true }, { "source": "1541", "target": "1030", "key": "6367", "undirected": true }, { "source": "1541", "target": "1079", "key": "6370", "undirected": true }, { "source": "1541", "target": "1244", "key": "6378", "undirected": true }, { "source": "1541", "target": "1352", "key": "6377", "undirected": true }, { "source": "1541", "target": "1497", "key": "6366", "undirected": true }, { "source": "1541", "target": "1511", "key": "6364", "undirected": true }, { "source": "1541", "target": "1521", "key": "6371", "undirected": true }, { "source": "1541", "target": "1563", "key": "6360", "undirected": true }, { "source": "1541", "target": "1580", "key": "6373", "undirected": true }, { "source": "1541", "target": "1645", "key": "6365", "undirected": true }, { "source": "1541", "target": "1650", "key": "6376", "undirected": true }, { "source": "1541", "target": "1653", "key": "6363", "undirected": true }, { "source": "1541", "target": "1703", "key": "6372", "undirected": true }, { "source": "1541", "target": "206", "key": "6362", "undirected": true }, { "source": "1541", "target": "242", "key": "6361", "undirected": true }, { "source": "1541", "target": "715", "key": "6359", "undirected": true }, { "source": "1541", "target": "736", "key": "6375", "undirected": true }, { "source": "1541", "target": "811", "key": "6380", "undirected": true }, { "source": "1541", "target": "930", "key": "6369", "undirected": true }, { "source": "1541", "target": "936", "key": "6358", "undirected": true }, { "source": "1541", "target": "971", "key": "6379", "undirected": true }, { "source": "1541", "target": "981", "key": "6374", "undirected": true }, { "source": "1541", "target": "987", "key": "6368", "undirected": true }, { "source": "1542", "target": "1645", "key": "6383", "undirected": true }, { "source": "1542", "target": "816", "key": "6381", "undirected": true }, { "source": "1542", "target": "936", "key": "6382", "undirected": true }, { "source": "1543", "target": "584", "key": "6384", "undirected": true }, { "source": "1544", "target": "481", "key": "6385", "undirected": true }, { "source": "1545", "target": "715", "key": "6386", "undirected": true }, { "source": "1546", "target": "1043", "key": "6418", "undirected": true }, { "source": "1546", "target": "1093", "key": "6409", "undirected": true }, { "source": "1546", "target": "1123", "key": "6392", "undirected": true }, { "source": "1546", "target": "1125", "key": "6405", "undirected": true }, { "source": "1546", "target": "1126", "key": "6424", "undirected": true }, { "source": "1546", "target": "1127", "key": "6413", "undirected": true }, { "source": "1546", "target": "1138", "key": "6417", "undirected": true }, { "source": "1546", "target": "1202", "key": "6403", "undirected": true }, { "source": "1546", "target": "1256", "key": "6398", "undirected": true }, { "source": "1546", "target": "1261", "key": "6420", "undirected": true }, { "source": "1546", "target": "1268", "key": "6428", "undirected": true }, { "source": "1546", "target": "1283", "key": "6406", "undirected": true }, { "source": "1546", "target": "1357", "key": "6387", "undirected": true }, { "source": "1546", "target": "1415", "key": "6412", "undirected": true }, { "source": "1546", "target": "1459", "key": "6400", "undirected": true }, { "source": "1546", "target": "1515", "key": "6391", "undirected": true }, { "source": "1546", "target": "1530", "key": "6427", "undirected": true }, { "source": "1546", "target": "165", "key": "6389", "undirected": true }, { "source": "1546", "target": "1681", "key": "6410", "undirected": true }, { "source": "1546", "target": "282", "key": "6423", "undirected": true }, { "source": "1546", "target": "306", "key": "6429", "undirected": true }, { "source": "1546", "target": "34", "key": "6408", "undirected": true }, { "source": "1546", "target": "363", "key": "6422", "undirected": true }, { "source": "1546", "target": "409", "key": "6407", "undirected": true }, { "source": "1546", "target": "459", "key": "6411", "undirected": true }, { "source": "1546", "target": "460", "key": "6414", "undirected": true }, { "source": "1546", "target": "463", "key": "6401", "undirected": true }, { "source": "1546", "target": "526", "key": "6397", "undirected": true }, { "source": "1546", "target": "555", "key": "6399", "undirected": true }, { "source": "1546", "target": "563", "key": "6404", "undirected": true }, { "source": "1546", "target": "639", "key": "6394", "undirected": true }, { "source": "1546", "target": "641", "key": "6396", "undirected": true }, { "source": "1546", "target": "657", "key": "6416", "undirected": true }, { "source": "1546", "target": "673", "key": "6419", "undirected": true }, { "source": "1546", "target": "681", "key": "6421", "undirected": true }, { "source": "1546", "target": "744", "key": "6426", "undirected": true }, { "source": "1546", "target": "771", "key": "6393", "undirected": true }, { "source": "1546", "target": "795", "key": "6395", "undirected": true }, { "source": "1546", "target": "811", "key": "6415", "undirected": true }, { "source": "1546", "target": "855", "key": "6388", "undirected": true }, { "source": "1546", "target": "876", "key": "6425", "undirected": true }, { "source": "1546", "target": "904", "key": "6402", "undirected": true }, { "source": "1546", "target": "917", "key": "6390", "undirected": true }, { "source": "1547", "target": "1182", "key": "6431", "undirected": true }, { "source": "1547", "target": "1609", "key": "6430", "undirected": true }, { "source": "155", "target": "154", "key": "519", "undirected": true }, { "source": "155", "target": "190", "key": "520", "undirected": true }, { "source": "155", "target": "61", "key": "517", "undirected": true }, { "source": "155", "target": "635", "key": "521", "undirected": true }, { "source": "155", "target": "95", "key": "518", "undirected": true }, { "source": "1551", "target": "1067", "key": "6434", "undirected": true }, { "source": "1551", "target": "1521", "key": "6436", "undirected": true }, { "source": "1551", "target": "1539", "key": "6439", "undirected": true }, { "source": "1551", "target": "1645", "key": "6437", "undirected": true }, { "source": "1551", "target": "1650", "key": "6438", "undirected": true }, { "source": "1551", "target": "1653", "key": "6441", "undirected": true }, { "source": "1551", "target": "242", "key": "6435", "undirected": true }, { "source": "1551", "target": "506", "key": "6433", "undirected": true }, { "source": "1551", "target": "811", "key": "6432", "undirected": true }, { "source": "1551", "target": "936", "key": "6440", "undirected": true }, { "source": "1552", "target": "654", "key": "6442", "undirected": true }, { "source": "1553", "target": "1076", "key": "6456", "undirected": true }, { "source": "1553", "target": "1476", "key": "6453", "undirected": true }, { "source": "1553", "target": "1480", "key": "6457", "undirected": true }, { "source": "1553", "target": "1521", "key": "6449", "undirected": true }, { "source": "1553", "target": "1551", "key": "6447", "undirected": true }, { "source": "1553", "target": "1563", "key": "6458", "undirected": true }, { "source": "1553", "target": "1598", "key": "6448", "undirected": true }, { "source": "1553", "target": "1645", "key": "6446", "undirected": true }, { "source": "1553", "target": "1650", "key": "6454", "undirected": true }, { "source": "1553", "target": "1703", "key": "6443", "undirected": true }, { "source": "1553", "target": "1727", "key": "6445", "undirected": true }, { "source": "1553", "target": "242", "key": "6444", "undirected": true }, { "source": "1553", "target": "639", "key": "6451", "undirected": true }, { "source": "1553", "target": "669", "key": "6455", "undirected": true }, { "source": "1553", "target": "715", "key": "6450", "undirected": true }, { "source": "1553", "target": "936", "key": "6459", "undirected": true }, { "source": "1553", "target": "977", "key": "6452", "undirected": true }, { "source": "1556", "target": "1182", "key": "6462", "undirected": true }, { "source": "1556", "target": "1232", "key": "6460", "undirected": true }, { "source": "1556", "target": "639", "key": "6461", "undirected": true }, { "source": "1557", "target": "852", "key": "6463", "undirected": true }, { "source": "1559", "target": "1114", "key": "6478", "undirected": true }, { "source": "1559", "target": "1169", "key": "6484", "undirected": true }, { "source": "1559", "target": "119", "key": "6481", "undirected": true }, { "source": "1559", "target": "1203", "key": "6473", "undirected": true }, { "source": "1559", "target": "1245", "key": "6468", "undirected": true }, { "source": "1559", "target": "136", "key": "6471", "undirected": true }, { "source": "1559", "target": "1373", "key": "6486", "undirected": true }, { "source": "1559", "target": "1438", "key": "6488", "undirected": true }, { "source": "1559", "target": "1485", "key": "6474", "undirected": true }, { "source": "1559", "target": "1554", "key": "6477", "undirected": true }, { "source": "1559", "target": "1555", "key": "6490", "undirected": true }, { "source": "1559", "target": "1563", "key": "6469", "undirected": true }, { "source": "1559", "target": "1581", "key": "6482", "undirected": true }, { "source": "1559", "target": "1584", "key": "6480", "undirected": true }, { "source": "1559", "target": "1605", "key": "6470", "undirected": true }, { "source": "1559", "target": "1612", "key": "6467", "undirected": true }, { "source": "1559", "target": "1614", "key": "6485", "undirected": true }, { "source": "1559", "target": "1615", "key": "6466", "undirected": true }, { "source": "1559", "target": "1616", "key": "6476", "undirected": true }, { "source": "1559", "target": "1617", "key": "6479", "undirected": true }, { "source": "1559", "target": "1626", "key": "6491", "undirected": true }, { "source": "1559", "target": "1631", "key": "6483", "undirected": true }, { "source": "1559", "target": "303", "key": "6464", "undirected": true }, { "source": "1559", "target": "31", "key": "6487", "undirected": true }, { "source": "1559", "target": "319", "key": "6475", "undirected": true }, { "source": "1559", "target": "347", "key": "6472", "undirected": true }, { "source": "1559", "target": "47", "key": "6489", "undirected": true }, { "source": "1559", "target": "470", "key": "6465", "undirected": true }, { "source": "156", "target": "1065", "key": "548", "undirected": true }, { "source": "156", "target": "1191", "key": "538", "undirected": true }, { "source": "156", "target": "1259", "key": "552", "undirected": true }, { "source": "156", "target": "1314", "key": "549", "undirected": true }, { "source": "156", "target": "1580", "key": "551", "undirected": true }, { "source": "156", "target": "1602", "key": "524", "undirected": true }, { "source": "156", "target": "1603", "key": "532", "undirected": true }, { "source": "156", "target": "1607", "key": "525", "undirected": true }, { "source": "156", "target": "1684", "key": "546", "undirected": true }, { "source": "156", "target": "213", "key": "529", "undirected": true }, { "source": "156", "target": "304", "key": "541", "undirected": true }, { "source": "156", "target": "324", "key": "537", "undirected": true }, { "source": "156", "target": "344", "key": "522", "undirected": true }, { "source": "156", "target": "40", "key": "523", "undirected": true }, { "source": "156", "target": "424", "key": "533", "undirected": true }, { "source": "156", "target": "429", "key": "528", "undirected": true }, { "source": "156", "target": "435", "key": "534", "undirected": true }, { "source": "156", "target": "493", "key": "536", "undirected": true }, { "source": "156", "target": "52", "key": "535", "undirected": true }, { "source": "156", "target": "632", "key": "550", "undirected": true }, { "source": "156", "target": "733", "key": "526", "undirected": true }, { "source": "156", "target": "739", "key": "543", "undirected": true }, { "source": "156", "target": "741", "key": "531", "undirected": true }, { "source": "156", "target": "743", "key": "530", "undirected": true }, { "source": "156", "target": "745", "key": "553", "undirected": true }, { "source": "156", "target": "747", "key": "547", "undirected": true }, { "source": "156", "target": "790", "key": "545", "undirected": true }, { "source": "156", "target": "872", "key": "527", "undirected": true }, { "source": "156", "target": "922", "key": "540", "undirected": true }, { "source": "156", "target": "926", "key": "539", "undirected": true }, { "source": "156", "target": "931", "key": "544", "undirected": true }, { "source": "156", "target": "996", "key": "542", "undirected": true }, { "source": "1560", "target": "1032", "key": "6499", "undirected": true }, { "source": "1560", "target": "1567", "key": "6494", "undirected": true }, { "source": "1560", "target": "1664", "key": "6496", "undirected": true }, { "source": "1560", "target": "243", "key": "6493", "undirected": true }, { "source": "1560", "target": "547", "key": "6497", "undirected": true }, { "source": "1560", "target": "551", "key": "6492", "undirected": true }, { "source": "1560", "target": "588", "key": "6500", "undirected": true }, { "source": "1560", "target": "630", "key": "6498", "undirected": true }, { "source": "1560", "target": "946", "key": "6495", "undirected": true }, { "source": "1561", "target": "1535", "key": "6503", "undirected": true }, { "source": "1561", "target": "1653", "key": "6501", "undirected": true }, { "source": "1561", "target": "669", "key": "6505", "undirected": true }, { "source": "1561", "target": "753", "key": "6504", "undirected": true }, { "source": "1561", "target": "977", "key": "6502", "undirected": true }, { "source": "1562", "target": "1422", "key": "6510", "undirected": true }, { "source": "1562", "target": "1482", "key": "6512", "undirected": true }, { "source": "1562", "target": "1550", "key": "6508", "undirected": true }, { "source": "1562", "target": "1650", "key": "6509", "undirected": true }, { "source": "1562", "target": "1727", "key": "6506", "undirected": true }, { "source": "1562", "target": "206", "key": "6511", "undirected": true }, { "source": "1562", "target": "707", "key": "6513", "undirected": true }, { "source": "1562", "target": "715", "key": "6507", "undirected": true }, { "source": "1563", "target": "1157", "key": "6522", "undirected": true }, { "source": "1563", "target": "1284", "key": "6521", "undirected": true }, { "source": "1563", "target": "1352", "key": "6518", "undirected": true }, { "source": "1563", "target": "1476", "key": "6520", "undirected": true }, { "source": "1563", "target": "1480", "key": "6516", "undirected": true }, { "source": "1563", "target": "1645", "key": "6514", "undirected": true }, { "source": "1563", "target": "1727", "key": "6519", "undirected": true }, { "source": "1563", "target": "506", "key": "6517", "undirected": true }, { "source": "1563", "target": "639", "key": "6515", "undirected": true }, { "source": "1565", "target": "588", "key": "6523", "undirected": true }, { "source": "1567", "target": "370", "key": "6527", "undirected": true }, { "source": "1567", "target": "551", "key": "6524", "undirected": true }, { "source": "1567", "target": "649", "key": "6528", "undirected": true }, { "source": "1567", "target": "754", "key": "6525", "undirected": true }, { "source": "1567", "target": "758", "key": "6526", "undirected": true }, { "source": "1569", "target": "1046", "key": "6532", "undirected": true }, { "source": "1569", "target": "1104", "key": "6530", "undirected": true }, { "source": "1569", "target": "1191", "key": "6537", "undirected": true }, { "source": "1569", "target": "1419", "key": "6536", "undirected": true }, { "source": "1569", "target": "1491", "key": "6540", "undirected": true }, { "source": "1569", "target": "1540", "key": "6539", "undirected": true }, { "source": "1569", "target": "483", "key": "6538", "undirected": true }, { "source": "1569", "target": "55", "key": "6534", "undirected": true }, { "source": "1569", "target": "560", "key": "6531", "undirected": true }, { "source": "1569", "target": "571", "key": "6533", "undirected": true }, { "source": "1569", "target": "668", "key": "6529", "undirected": true }, { "source": "1569", "target": "975", "key": "6535", "undirected": true }, { "source": "157", "target": "1381", "key": "554", "undirected": true }, { "source": "157", "target": "164", "key": "555", "undirected": true }, { "source": "157", "target": "973", "key": "556", "undirected": true }, { "source": "1570", "target": "1004", "key": "6545", "undirected": true }, { "source": "1570", "target": "1158", "key": "6563", "undirected": true }, { "source": "1570", "target": "1351", "key": "6557", "undirected": true }, { "source": "1570", "target": "1353", "key": "6553", "undirected": true }, { "source": "1570", "target": "1414", "key": "6567", "undirected": true }, { "source": "1570", "target": "1417", "key": "6559", "undirected": true }, { "source": "1570", "target": "1572", "key": "6547", "undirected": true }, { "source": "1570", "target": "1589", "key": "6542", "undirected": true }, { "source": "1570", "target": "1671", "key": "6561", "undirected": true }, { "source": "1570", "target": "1684", "key": "6560", "undirected": true }, { "source": "1570", "target": "1690", "key": "6549", "undirected": true }, { "source": "1570", "target": "1699", "key": "6558", "undirected": true }, { "source": "1570", "target": "1704", "key": "6550", "undirected": true }, { "source": "1570", "target": "1715", "key": "6554", "undirected": true }, { "source": "1570", "target": "344", "key": "6548", "undirected": true }, { "source": "1570", "target": "361", "key": "6568", "undirected": true }, { "source": "1570", "target": "490", "key": "6565", "undirected": true }, { "source": "1570", "target": "583", "key": "6546", "undirected": true }, { "source": "1570", "target": "63", "key": "6566", "undirected": true }, { "source": "1570", "target": "639", "key": "6544", "undirected": true }, { "source": "1570", "target": "723", "key": "6562", "undirected": true }, { "source": "1570", "target": "755", "key": "6555", "undirected": true }, { "source": "1570", "target": "845", "key": "6541", "undirected": true }, { "source": "1570", "target": "857", "key": "6556", "undirected": true }, { "source": "1570", "target": "922", "key": "6552", "undirected": true }, { "source": "1570", "target": "926", "key": "6564", "undirected": true }, { "source": "1570", "target": "940", "key": "6551", "undirected": true }, { "source": "1570", "target": "954", "key": "6543", "undirected": true }, { "source": "1570", "target": "981", "key": "6569", "undirected": true }, { "source": "1571", "target": "1013", "key": "6570", "undirected": true }, { "source": "1579", "target": "1054", "key": "6579", "undirected": true }, { "source": "1579", "target": "1070", "key": "6577", "undirected": true }, { "source": "1579", "target": "1088", "key": "6572", "undirected": true }, { "source": "1579", "target": "1300", "key": "6578", "undirected": true }, { "source": "1579", "target": "1303", "key": "6571", "undirected": true }, { "source": "1579", "target": "287", "key": "6573", "undirected": true }, { "source": "1579", "target": "585", "key": "6576", "undirected": true }, { "source": "1579", "target": "594", "key": "6575", "undirected": true }, { "source": "1579", "target": "833", "key": "6574", "undirected": true }, { "source": "1579", "target": "883", "key": "6580", "undirected": true }, { "source": "1580", "target": "1037", "key": "6610", "undirected": true }, { "source": "1580", "target": "1147", "key": "6614", "undirected": true }, { "source": "1580", "target": "1158", "key": "6599", "undirected": true }, { "source": "1580", "target": "1197", "key": "6611", "undirected": true }, { "source": "1580", "target": "1259", "key": "6604", "undirected": true }, { "source": "1580", "target": "1351", "key": "6607", "undirected": true }, { "source": "1580", "target": "1354", "key": "6608", "undirected": true }, { "source": "1580", "target": "1417", "key": "6584", "undirected": true }, { "source": "1580", "target": "156", "key": "6600", "undirected": true }, { "source": "1580", "target": "1588", "key": "6594", "undirected": true }, { "source": "1580", "target": "1602", "key": "6592", "undirected": true }, { "source": "1580", "target": "1603", "key": "6585", "undirected": true }, { "source": "1580", "target": "1607", "key": "6602", "undirected": true }, { "source": "1580", "target": "1748", "key": "6595", "undirected": true }, { "source": "1580", "target": "214", "key": "6606", "undirected": true }, { "source": "1580", "target": "237", "key": "6613", "undirected": true }, { "source": "1580", "target": "288", "key": "6609", "undirected": true }, { "source": "1580", "target": "328", "key": "6598", "undirected": true }, { "source": "1580", "target": "344", "key": "6601", "undirected": true }, { "source": "1580", "target": "424", "key": "6589", "undirected": true }, { "source": "1580", "target": "429", "key": "6588", "undirected": true }, { "source": "1580", "target": "435", "key": "6590", "undirected": true }, { "source": "1580", "target": "46", "key": "6605", "undirected": true }, { "source": "1580", "target": "464", "key": "6587", "undirected": true }, { "source": "1580", "target": "497", "key": "6591", "undirected": true }, { "source": "1580", "target": "512", "key": "6593", "undirected": true }, { "source": "1580", "target": "52", "key": "6612", "undirected": true }, { "source": "1580", "target": "740", "key": "6603", "undirected": true }, { "source": "1580", "target": "741", "key": "6583", "undirected": true }, { "source": "1580", "target": "743", "key": "6582", "undirected": true }, { "source": "1580", "target": "746", "key": "6581", "undirected": true }, { "source": "1580", "target": "903", "key": "6596", "undirected": true }, { "source": "1580", "target": "947", "key": "6597", "undirected": true }, { "source": "1580", "target": "981", "key": "6586", "undirected": true }, { "source": "1581", "target": "1114", "key": "6625", "undirected": true }, { "source": "1581", "target": "1169", "key": "6617", "undirected": true }, { "source": "1581", "target": "1201", "key": "6619", "undirected": true }, { "source": "1581", "target": "1245", "key": "6634", "undirected": true }, { "source": "1581", "target": "1373", "key": "6623", "undirected": true }, { "source": "1581", "target": "1438", "key": "6615", "undirected": true }, { "source": "1581", "target": "1485", "key": "6632", "undirected": true }, { "source": "1581", "target": "1554", "key": "6618", "undirected": true }, { "source": "1581", "target": "1555", "key": "6639", "undirected": true }, { "source": "1581", "target": "1559", "key": "6626", "undirected": true }, { "source": "1581", "target": "1584", "key": "6629", "undirected": true }, { "source": "1581", "target": "1602", "key": "6637", "undirected": true }, { "source": "1581", "target": "1603", "key": "6636", "undirected": true }, { "source": "1581", "target": "1608", "key": "6635", "undirected": true }, { "source": "1581", "target": "1614", "key": "6621", "undirected": true }, { "source": "1581", "target": "1615", "key": "6622", "undirected": true }, { "source": "1581", "target": "1616", "key": "6616", "undirected": true }, { "source": "1581", "target": "1617", "key": "6627", "undirected": true }, { "source": "1581", "target": "1631", "key": "6620", "undirected": true }, { "source": "1581", "target": "1669", "key": "6628", "undirected": true }, { "source": "1581", "target": "1704", "key": "6641", "undirected": true }, { "source": "1581", "target": "313", "key": "6624", "undirected": true }, { "source": "1581", "target": "319", "key": "6633", "undirected": true }, { "source": "1581", "target": "333", "key": "6640", "undirected": true }, { "source": "1581", "target": "347", "key": "6631", "undirected": true }, { "source": "1581", "target": "398", "key": "6630", "undirected": true }, { "source": "1581", "target": "666", "key": "6638", "undirected": true }, { "source": "1582", "target": "1622", "key": "6642", "undirected": true }, { "source": "1584", "target": "1171", "key": "6651", "undirected": true }, { "source": "1584", "target": "1203", "key": "6645", "undirected": true }, { "source": "1584", "target": "1273", "key": "6649", "undirected": true }, { "source": "1584", "target": "136", "key": "6648", "undirected": true }, { "source": "1584", "target": "1614", "key": "6654", "undirected": true }, { "source": "1584", "target": "1615", "key": "6653", "undirected": true }, { "source": "1584", "target": "1631", "key": "6647", "undirected": true }, { "source": "1584", "target": "1669", "key": "6646", "undirected": true }, { "source": "1584", "target": "2", "key": "6644", "undirected": true }, { "source": "1584", "target": "219", "key": "6643", "undirected": true }, { "source": "1584", "target": "319", "key": "6652", "undirected": true }, { "source": "1584", "target": "333", "key": "6650", "undirected": true }, { "source": "1585", "target": "1232", "key": "6657", "undirected": true }, { "source": "1585", "target": "1250", "key": "6656", "undirected": true }, { "source": "1585", "target": "1271", "key": "6662", "undirected": true }, { "source": "1585", "target": "1315", "key": "6661", "undirected": true }, { "source": "1585", "target": "1589", "key": "6660", "undirected": true }, { "source": "1585", "target": "639", "key": "6658", "undirected": true }, { "source": "1585", "target": "746", "key": "6659", "undirected": true }, { "source": "1585", "target": "891", "key": "6655", "undirected": true }, { "source": "1586", "target": "1049", "key": "6663", "undirected": true }, { "source": "1588", "target": "103", "key": "6689", "undirected": true }, { "source": "1588", "target": "1158", "key": "6675", "undirected": true }, { "source": "1588", "target": "1202", "key": "6690", "undirected": true }, { "source": "1588", "target": "1417", "key": "6682", "undirected": true }, { "source": "1588", "target": "1570", "key": "6668", "undirected": true }, { "source": "1588", "target": "1589", "key": "6666", "undirected": true }, { "source": "1588", "target": "1671", "key": "6677", "undirected": true }, { "source": "1588", "target": "1690", "key": "6672", "undirected": true }, { "source": "1588", "target": "1699", "key": "6671", "undirected": true }, { "source": "1588", "target": "1704", "key": "6673", "undirected": true }, { "source": "1588", "target": "1714", "key": "6688", "undirected": true }, { "source": "1588", "target": "1715", "key": "6664", "undirected": true }, { "source": "1588", "target": "201", "key": "6680", "undirected": true }, { "source": "1588", "target": "208", "key": "6683", "undirected": true }, { "source": "1588", "target": "302", "key": "6691", "undirected": true }, { "source": "1588", "target": "328", "key": "6670", "undirected": true }, { "source": "1588", "target": "344", "key": "6665", "undirected": true }, { "source": "1588", "target": "603", "key": "6687", "undirected": true }, { "source": "1588", "target": "639", "key": "6674", "undirected": true }, { "source": "1588", "target": "723", "key": "6684", "undirected": true }, { "source": "1588", "target": "850", "key": "6678", "undirected": true }, { "source": "1588", "target": "857", "key": "6676", "undirected": true }, { "source": "1588", "target": "922", "key": "6679", "undirected": true }, { "source": "1588", "target": "926", "key": "6681", "undirected": true }, { "source": "1588", "target": "947", "key": "6686", "undirected": true }, { "source": "1588", "target": "978", "key": "6667", "undirected": true }, { "source": "1588", "target": "981", "key": "6669", "undirected": true }, { "source": "1588", "target": "988", "key": "6685", "undirected": true }, { "source": "1589", "target": "1158", "key": "6700", "undirected": true }, { "source": "1589", "target": "1276", "key": "6692", "undirected": true }, { "source": "1589", "target": "1304", "key": "6713", "undirected": true }, { "source": "1589", "target": "1353", "key": "6708", "undirected": true }, { "source": "1589", "target": "1413", "key": "6694", "undirected": true }, { "source": "1589", "target": "1671", "key": "6714", "undirected": true }, { "source": "1589", "target": "1690", "key": "6693", "undirected": true }, { "source": "1589", "target": "1704", "key": "6711", "undirected": true }, { "source": "1589", "target": "1715", "key": "6710", "undirected": true }, { "source": "1589", "target": "201", "key": "6706", "undirected": true }, { "source": "1589", "target": "328", "key": "6702", "undirected": true }, { "source": "1589", "target": "344", "key": "6701", "undirected": true }, { "source": "1589", "target": "488", "key": "6705", "undirected": true }, { "source": "1589", "target": "639", "key": "6698", "undirected": true }, { "source": "1589", "target": "733", "key": "6695", "undirected": true }, { "source": "1589", "target": "845", "key": "6709", "undirected": true }, { "source": "1589", "target": "922", "key": "6704", "undirected": true }, { "source": "1589", "target": "926", "key": "6699", "undirected": true }, { "source": "1589", "target": "941", "key": "6707", "undirected": true }, { "source": "1589", "target": "947", "key": "6712", "undirected": true }, { "source": "1589", "target": "978", "key": "6696", "undirected": true }, { "source": "1589", "target": "981", "key": "6703", "undirected": true }, { "source": "1589", "target": "988", "key": "6697", "undirected": true }, { "source": "1591", "target": "1039", "key": "6715", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1591", "target": "1040", "key": "6717", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1591", "target": "598", "key": "6718", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1591", "target": "866", "key": "6716", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1591", "target": "996", "key": "6719", "attributes": { "weight": 2 }, "undirected": true }, { "source": "1594", "target": "1158", "key": "6734", "undirected": true }, { "source": "1594", "target": "1250", "key": "6728", "undirected": true }, { "source": "1594", "target": "1286", "key": "6729", "undirected": true }, { "source": "1594", "target": "1351", "key": "6736", "undirected": true }, { "source": "1594", "target": "1605", "key": "6726", "undirected": true }, { "source": "1594", "target": "228", "key": "6732", "undirected": true }, { "source": "1594", "target": "266", "key": "6731", "undirected": true }, { "source": "1594", "target": "273", "key": "6730", "undirected": true }, { "source": "1594", "target": "448", "key": "6727", "undirected": true }, { "source": "1594", "target": "490", "key": "6735", "undirected": true }, { "source": "1594", "target": "639", "key": "6733", "undirected": true }, { "source": "1594", "target": "700", "key": "6725", "undirected": true }, { "source": "1596", "target": "1232", "key": "6743", "undirected": true }, { "source": "1596", "target": "1250", "key": "6742", "undirected": true }, { "source": "1596", "target": "1556", "key": "6737", "undirected": true }, { "source": "1596", "target": "1637", "key": "6745", "undirected": true }, { "source": "1596", "target": "1655", "key": "6746", "undirected": true }, { "source": "1596", "target": "1749", "key": "6738", "undirected": true }, { "source": "1596", "target": "206", "key": "6740", "undirected": true }, { "source": "1596", "target": "266", "key": "6744", "undirected": true }, { "source": "1596", "target": "481", "key": "6741", "undirected": true }, { "source": "1596", "target": "511", "key": "6739", "undirected": true }, { "source": "1598", "target": "1067", "key": "6756", "undirected": true }, { "source": "1598", "target": "1157", "key": "6754", "undirected": true }, { "source": "1598", "target": "1244", "key": "6751", "undirected": true }, { "source": "1598", "target": "1352", "key": "6757", "undirected": true }, { "source": "1598", "target": "1645", "key": "6752", "undirected": true }, { "source": "1598", "target": "1650", "key": "6753", "undirected": true }, { "source": "1598", "target": "242", "key": "6748", "undirected": true }, { "source": "1598", "target": "506", "key": "6758", "undirected": true }, { "source": "1598", "target": "715", "key": "6749", "undirected": true }, { "source": "1598", "target": "930", "key": "6747", "undirected": true }, { "source": "1598", "target": "936", "key": "6750", "undirected": true }, { "source": "1598", "target": "977", "key": "6755", "undirected": true }, { "source": "16", "target": "1202", "key": "50", "undirected": true }, { "source": "16", "target": "364", "key": "48", "undirected": true }, { "source": "16", "target": "79", "key": "49", "undirected": true }, { "source": "160", "target": "1024", "key": "558", "undirected": true }, { "source": "160", "target": "1027", "key": "559", "undirected": true }, { "source": "160", "target": "577", "key": "557", "undirected": true }, { "source": "1602", "target": "1003", "key": "6775", "undirected": true }, { "source": "1602", "target": "1041", "key": "6779", "undirected": true }, { "source": "1602", "target": "1056", "key": "6769", "undirected": true }, { "source": "1602", "target": "1067", "key": "6785", "undirected": true }, { "source": "1602", "target": "1259", "key": "6784", "undirected": true }, { "source": "1602", "target": "1292", "key": "6761", "undirected": true }, { "source": "1602", "target": "1314", "key": "6780", "undirected": true }, { "source": "1602", "target": "1542", "key": "6773", "undirected": true }, { "source": "1602", "target": "156", "key": "6783", "undirected": true }, { "source": "1602", "target": "1580", "key": "6787", "undirected": true }, { "source": "1602", "target": "1603", "key": "6763", "undirected": true }, { "source": "1602", "target": "1607", "key": "6762", "undirected": true }, { "source": "1602", "target": "1614", "key": "6774", "undirected": true }, { "source": "1602", "target": "1652", "key": "6771", "undirected": true }, { "source": "1602", "target": "1684", "key": "6766", "undirected": true }, { "source": "1602", "target": "1704", "key": "6759", "undirected": true }, { "source": "1602", "target": "344", "key": "6764", "undirected": true }, { "source": "1602", "target": "40", "key": "6782", "undirected": true }, { "source": "1602", "target": "401", "key": "6767", "undirected": true }, { "source": "1602", "target": "46", "key": "6788", "undirected": true }, { "source": "1602", "target": "497", "key": "6790", "undirected": true }, { "source": "1602", "target": "512", "key": "6760", "undirected": true }, { "source": "1602", "target": "595", "key": "6772", "undirected": true }, { "source": "1602", "target": "723", "key": "6776", "undirected": true }, { "source": "1602", "target": "733", "key": "6778", "undirected": true }, { "source": "1602", "target": "743", "key": "6791", "undirected": true }, { "source": "1602", "target": "773", "key": "6786", "undirected": true }, { "source": "1602", "target": "831", "key": "6765", "undirected": true }, { "source": "1602", "target": "931", "key": "6789", "undirected": true }, { "source": "1602", "target": "936", "key": "6777", "undirected": true }, { "source": "1602", "target": "948", "key": "6768", "undirected": true }, { "source": "1602", "target": "981", "key": "6792", "undirected": true }, { "source": "1602", "target": "996", "key": "6781", "undirected": true }, { "source": "1602", "target": "997", "key": "6770", "undirected": true }, { "source": "1603", "target": "1041", "key": "6795", "undirected": true }, { "source": "1603", "target": "1305", "key": "6793", "undirected": true }, { "source": "1603", "target": "156", "key": "6794", "undirected": true }, { "source": "1605", "target": "1158", "key": "6828", "undirected": true }, { "source": "1605", "target": "1202", "key": "6826", "undirected": true }, { "source": "1605", "target": "122", "key": "6801", "undirected": true }, { "source": "1605", "target": "1232", "key": "6830", "undirected": true }, { "source": "1605", "target": "1245", "key": "6810", "undirected": true }, { "source": "1605", "target": "1250", "key": "6824", "undirected": true }, { "source": "1605", "target": "1263", "key": "6822", "undirected": true }, { "source": "1605", "target": "1271", "key": "6820", "undirected": true }, { "source": "1605", "target": "1285", "key": "6832", "undirected": true }, { "source": "1605", "target": "1286", "key": "6812", "undirected": true }, { "source": "1605", "target": "1301", "key": "6808", "undirected": true }, { "source": "1605", "target": "1307", "key": "6796", "undirected": true }, { "source": "1605", "target": "1329", "key": "6831", "undirected": true }, { "source": "1605", "target": "1333", "key": "6806", "undirected": true }, { "source": "1605", "target": "1337", "key": "6800", "undirected": true }, { "source": "1605", "target": "1556", "key": "6816", "undirected": true }, { "source": "1605", "target": "1557", "key": "6815", "undirected": true }, { "source": "1605", "target": "1594", "key": "6811", "undirected": true }, { "source": "1605", "target": "1606", "key": "6827", "undirected": true }, { "source": "1605", "target": "1618", "key": "6809", "undirected": true }, { "source": "1605", "target": "1619", "key": "6807", "undirected": true }, { "source": "1605", "target": "1626", "key": "6805", "undirected": true }, { "source": "1605", "target": "1637", "key": "6817", "undirected": true }, { "source": "1605", "target": "1652", "key": "6803", "undirected": true }, { "source": "1605", "target": "1654", "key": "6823", "undirected": true }, { "source": "1605", "target": "1655", "key": "6829", "undirected": true }, { "source": "1605", "target": "1717", "key": "6821", "undirected": true }, { "source": "1605", "target": "219", "key": "6818", "undirected": true }, { "source": "1605", "target": "228", "key": "6814", "undirected": true }, { "source": "1605", "target": "267", "key": "6804", "undirected": true }, { "source": "1605", "target": "273", "key": "6813", "undirected": true }, { "source": "1605", "target": "274", "key": "6799", "undirected": true }, { "source": "1605", "target": "275", "key": "6802", "undirected": true }, { "source": "1605", "target": "372", "key": "6819", "undirected": true }, { "source": "1605", "target": "589", "key": "6825", "undirected": true }, { "source": "1605", "target": "686", "key": "6798", "undirected": true }, { "source": "1605", "target": "980", "key": "6797", "undirected": true }, { "source": "1606", "target": "1307", "key": "6834", "undirected": true }, { "source": "1606", "target": "1605", "key": "6833", "undirected": true }, { "source": "1606", "target": "686", "key": "6836", "undirected": true }, { "source": "1606", "target": "980", "key": "6835", "undirected": true }, { "source": "1607", "target": "1065", "key": "6843", "undirected": true }, { "source": "1607", "target": "1259", "key": "6851", "undirected": true }, { "source": "1607", "target": "1408", "key": "6853", "undirected": true }, { "source": "1607", "target": "156", "key": "6846", "undirected": true }, { "source": "1607", "target": "1580", "key": "6849", "undirected": true }, { "source": "1607", "target": "1602", "key": "6841", "undirected": true }, { "source": "1607", "target": "1603", "key": "6854", "undirected": true }, { "source": "1607", "target": "1748", "key": "6844", "undirected": true }, { "source": "1607", "target": "344", "key": "6850", "undirected": true }, { "source": "1607", "target": "464", "key": "6848", "undirected": true }, { "source": "1607", "target": "497", "key": "6842", "undirected": true }, { "source": "1607", "target": "512", "key": "6845", "undirected": true }, { "source": "1607", "target": "568", "key": "6839", "undirected": true }, { "source": "1607", "target": "598", "key": "6838", "undirected": true }, { "source": "1607", "target": "733", "key": "6847", "undirected": true }, { "source": "1607", "target": "743", "key": "6852", "undirected": true }, { "source": "1607", "target": "745", "key": "6837", "undirected": true }, { "source": "1607", "target": "931", "key": "6840", "undirected": true }, { "source": "1608", "target": "1049", "key": "6855", "undirected": true }, { "source": "1609", "target": "1030", "key": "6871", "undirected": true }, { "source": "1609", "target": "113", "key": "6869", "undirected": true }, { "source": "1609", "target": "1158", "key": "6858", "undirected": true }, { "source": "1609", "target": "1182", "key": "6874", "undirected": true }, { "source": "1609", "target": "122", "key": "6875", "undirected": true }, { "source": "1609", "target": "1232", "key": "6859", "undirected": true }, { "source": "1609", "target": "1330", "key": "6863", "undirected": true }, { "source": "1609", "target": "1485", "key": "6870", "undirected": true }, { "source": "1609", "target": "1547", "key": "6857", "undirected": true }, { "source": "1609", "target": "1570", "key": "6862", "undirected": true }, { "source": "1609", "target": "1580", "key": "6865", "undirected": true }, { "source": "1609", "target": "1598", "key": "6864", "undirected": true }, { "source": "1609", "target": "1637", "key": "6860", "undirected": true }, { "source": "1609", "target": "1645", "key": "6868", "undirected": true }, { "source": "1609", "target": "438", "key": "6861", "undirected": true }, { "source": "1609", "target": "469", "key": "6856", "undirected": true }, { "source": "1609", "target": "491", "key": "6866", "undirected": true }, { "source": "1609", "target": "909", "key": "6873", "undirected": true }, { "source": "1609", "target": "930", "key": "6867", "undirected": true }, { "source": "1609", "target": "981", "key": "6872", "undirected": true }, { "source": "1611", "target": "1610", "key": "6876", "undirected": true }, { "source": "1612", "target": "1104", "key": "6883", "undirected": true }, { "source": "1612", "target": "1191", "key": "6901", "undirected": true }, { "source": "1612", "target": "1212", "key": "6886", "undirected": true }, { "source": "1612", "target": "1244", "key": "6887", "undirected": true }, { "source": "1612", "target": "1284", "key": "6885", "undirected": true }, { "source": "1612", "target": "1494", "key": "6904", "undirected": true }, { "source": "1612", "target": "1502", "key": "6905", "undirected": true }, { "source": "1612", "target": "1529", "key": "6907", "undirected": true }, { "source": "1612", "target": "1540", "key": "6900", "undirected": true }, { "source": "1612", "target": "1542", "key": "6881", "undirected": true }, { "source": "1612", "target": "1559", "key": "6899", "undirected": true }, { "source": "1612", "target": "1570", "key": "6896", "undirected": true }, { "source": "1612", "target": "1579", "key": "6898", "undirected": true }, { "source": "1612", "target": "1588", "key": "6893", "undirected": true }, { "source": "1612", "target": "1589", "key": "6894", "undirected": true }, { "source": "1612", "target": "1598", "key": "6879", "undirected": true }, { "source": "1612", "target": "1608", "key": "6890", "undirected": true }, { "source": "1612", "target": "1620", "key": "6888", "undirected": true }, { "source": "1612", "target": "1652", "key": "6889", "undirected": true }, { "source": "1612", "target": "1653", "key": "6878", "undirected": true }, { "source": "1612", "target": "204", "key": "6882", "undirected": true }, { "source": "1612", "target": "275", "key": "6897", "undirected": true }, { "source": "1612", "target": "482", "key": "6884", "undirected": true }, { "source": "1612", "target": "60", "key": "6880", "undirected": true }, { "source": "1612", "target": "639", "key": "6906", "undirected": true }, { "source": "1612", "target": "668", "key": "6903", "undirected": true }, { "source": "1612", "target": "741", "key": "6892", "undirected": true }, { "source": "1612", "target": "743", "key": "6891", "undirected": true }, { "source": "1612", "target": "746", "key": "6895", "undirected": true }, { "source": "1612", "target": "951", "key": "6877", "undirected": true }, { "source": "1612", "target": "981", "key": "6902", "undirected": true }, { "source": "1614", "target": "1094", "key": "6926", "undirected": true }, { "source": "1614", "target": "1144", "key": "6921", "undirected": true }, { "source": "1614", "target": "1158", "key": "6915", "undirected": true }, { "source": "1614", "target": "1171", "key": "6919", "undirected": true }, { "source": "1614", "target": "1203", "key": "6917", "undirected": true }, { "source": "1614", "target": "1273", "key": "6927", "undirected": true }, { "source": "1614", "target": "136", "key": "6920", "undirected": true }, { "source": "1614", "target": "1580", "key": "6912", "undirected": true }, { "source": "1614", "target": "1591", "key": "6908", "undirected": true }, { "source": "1614", "target": "16", "key": "6923", "undirected": true }, { "source": "1614", "target": "1602", "key": "6913", "undirected": true }, { "source": "1614", "target": "1605", "key": "6910", "undirected": true }, { "source": "1614", "target": "1640", "key": "6925", "undirected": true }, { "source": "1614", "target": "1652", "key": "6911", "undirected": true }, { "source": "1614", "target": "1730", "key": "6914", "undirected": true }, { "source": "1614", "target": "333", "key": "6924", "undirected": true }, { "source": "1614", "target": "438", "key": "6916", "undirected": true }, { "source": "1614", "target": "470", "key": "6928", "undirected": true }, { "source": "1614", "target": "595", "key": "6909", "undirected": true }, { "source": "1614", "target": "8", "key": "6918", "undirected": true }, { "source": "1614", "target": "877", "key": "6922", "undirected": true }, { "source": "1615", "target": "1044", "key": "6929", "undirected": true }, { "source": "1615", "target": "1169", "key": "6943", "undirected": true }, { "source": "1615", "target": "1171", "key": "6930", "undirected": true }, { "source": "1615", "target": "1373", "key": "6941", "undirected": true }, { "source": "1615", "target": "1438", "key": "6937", "undirected": true }, { "source": "1615", "target": "1485", "key": "6938", "undirected": true }, { "source": "1615", "target": "1554", "key": "6942", "undirected": true }, { "source": "1615", "target": "1559", "key": "6932", "undirected": true }, { "source": "1615", "target": "1584", "key": "6945", "undirected": true }, { "source": "1615", "target": "1614", "key": "6947", "undirected": true }, { "source": "1615", "target": "1616", "key": "6940", "undirected": true }, { "source": "1615", "target": "1617", "key": "6939", "undirected": true }, { "source": "1615", "target": "1631", "key": "6946", "undirected": true }, { "source": "1615", "target": "1640", "key": "6948", "undirected": true }, { "source": "1615", "target": "1669", "key": "6936", "undirected": true }, { "source": "1615", "target": "313", "key": "6933", "undirected": true }, { "source": "1615", "target": "319", "key": "6944", "undirected": true }, { "source": "1615", "target": "333", "key": "6931", "undirected": true }, { "source": "1615", "target": "347", "key": "6935", "undirected": true }, { "source": "1615", "target": "398", "key": "6934", "undirected": true }, { "source": "1615", "target": "470", "key": "6949", "undirected": true }, { "source": "1615", "target": "670", "key": "6950", "undirected": true }, { "source": "1616", "target": "1203", "key": "6951", "undirected": true }, { "source": "1616", "target": "1584", "key": "6954", "undirected": true }, { "source": "1616", "target": "1647", "key": "6953", "undirected": true }, { "source": "1616", "target": "2", "key": "6952", "undirected": true }, { "source": "1617", "target": "1202", "key": "6955", "undirected": true }, { "source": "1617", "target": "1275", "key": "6960", "undirected": true }, { "source": "1617", "target": "1284", "key": "6967", "undirected": true }, { "source": "1617", "target": "1542", "key": "6968", "undirected": true }, { "source": "1617", "target": "1569", "key": "6966", "undirected": true }, { "source": "1617", "target": "1588", "key": "6956", "undirected": true }, { "source": "1617", "target": "1594", "key": "6963", "undirected": true }, { "source": "1617", "target": "1602", "key": "6969", "undirected": true }, { "source": "1617", "target": "1605", "key": "6962", "undirected": true }, { "source": "1617", "target": "1607", "key": "6970", "undirected": true }, { "source": "1617", "target": "1608", "key": "6961", "undirected": true }, { "source": "1617", "target": "1622", "key": "6965", "undirected": true }, { "source": "1617", "target": "1637", "key": "6964", "undirected": true }, { "source": "1617", "target": "1692", "key": "6959", "undirected": true }, { "source": "1617", "target": "303", "key": "6958", "undirected": true }, { "source": "1617", "target": "470", "key": "6957", "undirected": true }, { "source": "1619", "target": "1375", "key": "6971", "undirected": true }, { "source": "1619", "target": "687", "key": "6972", "undirected": true }, { "source": "162", "target": "1089", "key": "566", "undirected": true }, { "source": "162", "target": "1281", "key": "569", "undirected": true }, { "source": "162", "target": "1314", "key": "571", "undirected": true }, { "source": "162", "target": "1381", "key": "560", "undirected": true }, { "source": "162", "target": "1580", "key": "563", "undirected": true }, { "source": "162", "target": "164", "key": "565", "undirected": true }, { "source": "162", "target": "1685", "key": "568", "undirected": true }, { "source": "162", "target": "24", "key": "567", "undirected": true }, { "source": "162", "target": "450", "key": "564", "undirected": true }, { "source": "162", "target": "618", "key": "570", "undirected": true }, { "source": "162", "target": "747", "key": "561", "undirected": true }, { "source": "162", "target": "996", "key": "562", "undirected": true }, { "source": "1621", "target": "639", "key": "6973", "undirected": true }, { "source": "1622", "target": "1034", "key": "6976", "undirected": true }, { "source": "1622", "target": "1035", "key": "6980", "undirected": true }, { "source": "1622", "target": "1104", "key": "6979", "undirected": true }, { "source": "1622", "target": "1113", "key": "6975", "undirected": true }, { "source": "1622", "target": "1564", "key": "6978", "undirected": true }, { "source": "1622", "target": "543", "key": "6974", "undirected": true }, { "source": "1622", "target": "571", "key": "6977", "undirected": true }, { "source": "1622", "target": "595", "key": "6981", "undirected": true }, { "source": "1623", "target": "889", "key": "6982", "undirected": true }, { "source": "1624", "target": "1102", "key": "6985", "undirected": true }, { "source": "1624", "target": "1621", "key": "6983", "undirected": true }, { "source": "1624", "target": "639", "key": "6984", "undirected": true }, { "source": "1625", "target": "1049", "key": "6986", "undirected": true }, { "source": "1625", "target": "1605", "key": "6988", "undirected": true }, { "source": "1625", "target": "451", "key": "6991", "undirected": true }, { "source": "1625", "target": "481", "key": "6990", "undirected": true }, { "source": "1625", "target": "848", "key": "6987", "undirected": true }, { "source": "1625", "target": "936", "key": "6989", "undirected": true }, { "source": "1625", "target": "973", "key": "6992", "undirected": true }, { "source": "1626", "target": "1182", "key": "7012", "undirected": true }, { "source": "1626", "target": "1201", "key": "6998", "undirected": true }, { "source": "1626", "target": "1210", "key": "6993", "undirected": true }, { "source": "1626", "target": "122", "key": "7013", "undirected": true }, { "source": "1626", "target": "1250", "key": "7017", "undirected": true }, { "source": "1626", "target": "1490", "key": "6994", "undirected": true }, { "source": "1626", "target": "1559", "key": "6999", "undirected": true }, { "source": "1626", "target": "1594", "key": "7010", "undirected": true }, { "source": "1626", "target": "1599", "key": "7009", "undirected": true }, { "source": "1626", "target": "1605", "key": "7007", "undirected": true }, { "source": "1626", "target": "1618", "key": "7008", "undirected": true }, { "source": "1626", "target": "1619", "key": "7006", "undirected": true }, { "source": "1626", "target": "1620", "key": "7002", "undirected": true }, { "source": "1626", "target": "1637", "key": "7005", "undirected": true }, { "source": "1626", "target": "1652", "key": "7003", "undirected": true }, { "source": "1626", "target": "1654", "key": "7011", "undirected": true }, { "source": "1626", "target": "1655", "key": "7004", "undirected": true }, { "source": "1626", "target": "1656", "key": "7001", "undirected": true }, { "source": "1626", "target": "333", "key": "6997", "undirected": true }, { "source": "1626", "target": "352", "key": "7015", "undirected": true }, { "source": "1626", "target": "373", "key": "7016", "undirected": true }, { "source": "1626", "target": "909", "key": "7014", "undirected": true }, { "source": "1626", "target": "938", "key": "6996", "undirected": true }, { "source": "1626", "target": "980", "key": "7000", "undirected": true }, { "source": "1626", "target": "989", "key": "6995", "undirected": true }, { "source": "1627", "target": "1049", "key": "7018", "undirected": true }, { "source": "163", "target": "1037", "key": "573", "undirected": true }, { "source": "163", "target": "1118", "key": "589", "undirected": true }, { "source": "163", "target": "1247", "key": "586", "undirected": true }, { "source": "163", "target": "1262", "key": "577", "undirected": true }, { "source": "163", "target": "1280", "key": "574", "undirected": true }, { "source": "163", "target": "1403", "key": "576", "undirected": true }, { "source": "163", "target": "1477", "key": "588", "undirected": true }, { "source": "163", "target": "148", "key": "592", "undirected": true }, { "source": "163", "target": "256", "key": "585", "undirected": true }, { "source": "163", "target": "312", "key": "593", "undirected": true }, { "source": "163", "target": "409", "key": "580", "undirected": true }, { "source": "163", "target": "415", "key": "572", "undirected": true }, { "source": "163", "target": "416", "key": "575", "undirected": true }, { "source": "163", "target": "417", "key": "578", "undirected": true }, { "source": "163", "target": "459", "key": "587", "undirected": true }, { "source": "163", "target": "460", "key": "582", "undirected": true }, { "source": "163", "target": "478", "key": "590", "undirected": true }, { "source": "163", "target": "568", "key": "583", "undirected": true }, { "source": "163", "target": "643", "key": "579", "undirected": true }, { "source": "163", "target": "673", "key": "591", "undirected": true }, { "source": "163", "target": "693", "key": "584", "undirected": true }, { "source": "163", "target": "722", "key": "581", "undirected": true }, { "source": "1630", "target": "201", "key": "7020", "undirected": true }, { "source": "1630", "target": "651", "key": "7019", "undirected": true }, { "source": "1631", "target": "1158", "key": "7026", "undirected": true }, { "source": "1631", "target": "1169", "key": "7030", "undirected": true }, { "source": "1631", "target": "1201", "key": "7033", "undirected": true }, { "source": "1631", "target": "1485", "key": "7031", "undirected": true }, { "source": "1631", "target": "1554", "key": "7028", "undirected": true }, { "source": "1631", "target": "1581", "key": "7027", "undirected": true }, { "source": "1631", "target": "1584", "key": "7025", "undirected": true }, { "source": "1631", "target": "1614", "key": "7029", "undirected": true }, { "source": "1631", "target": "31", "key": "7022", "undirected": true }, { "source": "1631", "target": "319", "key": "7032", "undirected": true }, { "source": "1631", "target": "333", "key": "7034", "undirected": true }, { "source": "1631", "target": "342", "key": "7023", "undirected": true }, { "source": "1631", "target": "349", "key": "7024", "undirected": true }, { "source": "1631", "target": "397", "key": "7021", "undirected": true }, { "source": "1632", "target": "1030", "key": "7037", "undirected": true }, { "source": "1632", "target": "1158", "key": "7062", "undirected": true }, { "source": "1632", "target": "122", "key": "7059", "undirected": true }, { "source": "1632", "target": "1232", "key": "7065", "undirected": true }, { "source": "1632", "target": "1271", "key": "7041", "undirected": true }, { "source": "1632", "target": "1286", "key": "7044", "undirected": true }, { "source": "1632", "target": "1307", "key": "7043", "undirected": true }, { "source": "1632", "target": "1315", "key": "7061", "undirected": true }, { "source": "1632", "target": "1333", "key": "7057", "undirected": true }, { "source": "1632", "target": "1586", "key": "7035", "undirected": true }, { "source": "1632", "target": "1588", "key": "7039", "undirected": true }, { "source": "1632", "target": "1594", "key": "7056", "undirected": true }, { "source": "1632", "target": "1609", "key": "7054", "undirected": true }, { "source": "1632", "target": "1620", "key": "7053", "undirected": true }, { "source": "1632", "target": "1622", "key": "7040", "undirected": true }, { "source": "1632", "target": "1637", "key": "7060", "undirected": true }, { "source": "1632", "target": "1645", "key": "7038", "undirected": true }, { "source": "1632", "target": "1649", "key": "7050", "undirected": true }, { "source": "1632", "target": "1652", "key": "7051", "undirected": true }, { "source": "1632", "target": "1655", "key": "7052", "undirected": true }, { "source": "1632", "target": "1656", "key": "7045", "undirected": true }, { "source": "1632", "target": "1749", "key": "7042", "undirected": true }, { "source": "1632", "target": "219", "key": "7058", "undirected": true }, { "source": "1632", "target": "236", "key": "7036", "undirected": true }, { "source": "1632", "target": "267", "key": "7046", "undirected": true }, { "source": "1632", "target": "273", "key": "7048", "undirected": true }, { "source": "1632", "target": "274", "key": "7047", "undirected": true }, { "source": "1632", "target": "275", "key": "7049", "undirected": true }, { "source": "1632", "target": "438", "key": "7063", "undirected": true }, { "source": "1632", "target": "639", "key": "7064", "undirected": true }, { "source": "1632", "target": "980", "key": "7055", "undirected": true }, { "source": "1636", "target": "1554", "key": "7066", "undirected": true }, { "source": "1637", "target": "1158", "key": "7088", "undirected": true }, { "source": "1637", "target": "1182", "key": "7083", "undirected": true }, { "source": "1637", "target": "1232", "key": "7089", "undirected": true }, { "source": "1637", "target": "1315", "key": "7085", "undirected": true }, { "source": "1637", "target": "1594", "key": "7079", "undirected": true }, { "source": "1637", "target": "1597", "key": "7078", "undirected": true }, { "source": "1637", "target": "1602", "key": "7081", "undirected": true }, { "source": "1637", "target": "1605", "key": "7068", "undirected": true }, { "source": "1637", "target": "1609", "key": "7077", "undirected": true }, { "source": "1637", "target": "1618", "key": "7070", "undirected": true }, { "source": "1637", "target": "1619", "key": "7067", "undirected": true }, { "source": "1637", "target": "1620", "key": "7073", "undirected": true }, { "source": "1637", "target": "1626", "key": "7076", "undirected": true }, { "source": "1637", "target": "1638", "key": "7075", "undirected": true }, { "source": "1637", "target": "1652", "key": "7072", "undirected": true }, { "source": "1637", "target": "1654", "key": "7074", "undirected": true }, { "source": "1637", "target": "1656", "key": "7071", "undirected": true }, { "source": "1637", "target": "219", "key": "7082", "undirected": true }, { "source": "1637", "target": "333", "key": "7080", "undirected": true }, { "source": "1637", "target": "427", "key": "7084", "undirected": true }, { "source": "1637", "target": "490", "key": "7086", "undirected": true }, { "source": "1637", "target": "639", "key": "7087", "undirected": true }, { "source": "1637", "target": "980", "key": "7069", "undirected": true }, { "source": "1638", "target": "1158", "key": "7103", "undirected": true }, { "source": "1638", "target": "122", "key": "7090", "undirected": true }, { "source": "1638", "target": "1594", "key": "7093", "undirected": true }, { "source": "1638", "target": "1605", "key": "7101", "undirected": true }, { "source": "1638", "target": "1618", "key": "7100", "undirected": true }, { "source": "1638", "target": "1619", "key": "7096", "undirected": true }, { "source": "1638", "target": "1620", "key": "7092", "undirected": true }, { "source": "1638", "target": "1626", "key": "7091", "undirected": true }, { "source": "1638", "target": "1637", "key": "7099", "undirected": true }, { "source": "1638", "target": "1652", "key": "7094", "undirected": true }, { "source": "1638", "target": "1654", "key": "7097", "undirected": true }, { "source": "1638", "target": "1655", "key": "7095", "undirected": true }, { "source": "1638", "target": "1656", "key": "7098", "undirected": true }, { "source": "1638", "target": "909", "key": "7104", "undirected": true }, { "source": "1638", "target": "980", "key": "7102", "undirected": true }, { "source": "1639", "target": "1638", "key": "7105", "undirected": true }, { "source": "164", "target": "1056", "key": "611", "undirected": true }, { "source": "164", "target": "1089", "key": "610", "undirected": true }, { "source": "164", "target": "1380", "key": "598", "undirected": true }, { "source": "164", "target": "1685", "key": "601", "undirected": true }, { "source": "164", "target": "1686", "key": "604", "undirected": true }, { "source": "164", "target": "1720", "key": "606", "undirected": true }, { "source": "164", "target": "235", "key": "595", "undirected": true }, { "source": "164", "target": "236", "key": "609", "undirected": true }, { "source": "164", "target": "258", "key": "603", "undirected": true }, { "source": "164", "target": "4", "key": "594", "undirected": true }, { "source": "164", "target": "45", "key": "607", "undirected": true }, { "source": "164", "target": "460", "key": "599", "undirected": true }, { "source": "164", "target": "500", "key": "597", "undirected": true }, { "source": "164", "target": "716", "key": "602", "undirected": true }, { "source": "164", "target": "730", "key": "596", "undirected": true }, { "source": "164", "target": "906", "key": "605", "undirected": true }, { "source": "164", "target": "973", "key": "600", "undirected": true }, { "source": "164", "target": "997", "key": "608", "undirected": true }, { "source": "1640", "target": "1018", "key": "7113", "undirected": true }, { "source": "1640", "target": "1158", "key": "7112", "undirected": true }, { "source": "1640", "target": "1203", "key": "7116", "undirected": true }, { "source": "1640", "target": "1238", "key": "7111", "undirected": true }, { "source": "1640", "target": "1273", "key": "7118", "undirected": true }, { "source": "1640", "target": "1332", "key": "7114", "undirected": true }, { "source": "1640", "target": "136", "key": "7119", "undirected": true }, { "source": "1640", "target": "1373", "key": "7117", "undirected": true }, { "source": "1640", "target": "1438", "key": "7125", "undirected": true }, { "source": "1640", "target": "1554", "key": "7109", "undirected": true }, { "source": "1640", "target": "1559", "key": "7120", "undirected": true }, { "source": "1640", "target": "1602", "key": "7108", "undirected": true }, { "source": "1640", "target": "1614", "key": "7123", "undirected": true }, { "source": "1640", "target": "303", "key": "7107", "undirected": true }, { "source": "1640", "target": "333", "key": "7124", "undirected": true }, { "source": "1640", "target": "390", "key": "7110", "undirected": true }, { "source": "1640", "target": "482", "key": "7121", "undirected": true }, { "source": "1640", "target": "5", "key": "7126", "undirected": true }, { "source": "1640", "target": "533", "key": "7106", "undirected": true }, { "source": "1640", "target": "639", "key": "7122", "undirected": true }, { "source": "1640", "target": "666", "key": "7115", "undirected": true }, { "source": "1640", "target": "717", "key": "7128", "undirected": true }, { "source": "1640", "target": "814", "key": "7127", "undirected": true }, { "source": "1645", "target": "1157", "key": "7142", "undirected": true }, { "source": "1645", "target": "1158", "key": "7141", "undirected": true }, { "source": "1645", "target": "1244", "key": "7147", "undirected": true }, { "source": "1645", "target": "1284", "key": "7134", "undirected": true }, { "source": "1645", "target": "1330", "key": "7166", "undirected": true }, { "source": "1645", "target": "1352", "key": "7150", "undirected": true }, { "source": "1645", "target": "1379", "key": "7152", "undirected": true }, { "source": "1645", "target": "142", "key": "7172", "undirected": true }, { "source": "1645", "target": "1476", "key": "7143", "undirected": true }, { "source": "1645", "target": "1484", "key": "7157", "undirected": true }, { "source": "1645", "target": "1500", "key": "7136", "undirected": true }, { "source": "1645", "target": "1521", "key": "7151", "undirected": true }, { "source": "1645", "target": "1523", "key": "7171", "undirected": true }, { "source": "1645", "target": "1542", "key": "7158", "undirected": true }, { "source": "1645", "target": "1550", "key": "7156", "undirected": true }, { "source": "1645", "target": "1551", "key": "7131", "undirected": true }, { "source": "1645", "target": "1553", "key": "7154", "undirected": true }, { "source": "1645", "target": "1563", "key": "7135", "undirected": true }, { "source": "1645", "target": "1570", "key": "7170", "undirected": true }, { "source": "1645", "target": "1594", "key": "7165", "undirected": true }, { "source": "1645", "target": "1598", "key": "7155", "undirected": true }, { "source": "1645", "target": "1602", "key": "7169", "undirected": true }, { "source": "1645", "target": "1603", "key": "7168", "undirected": true }, { "source": "1645", "target": "1605", "key": "7164", "undirected": true }, { "source": "1645", "target": "1609", "key": "7163", "undirected": true }, { "source": "1645", "target": "1618", "key": "7160", "undirected": true }, { "source": "1645", "target": "1620", "key": "7161", "undirected": true }, { "source": "1645", "target": "1650", "key": "7138", "undirected": true }, { "source": "1645", "target": "1652", "key": "7162", "undirected": true }, { "source": "1645", "target": "1653", "key": "7145", "undirected": true }, { "source": "1645", "target": "1661", "key": "7153", "undirected": true }, { "source": "1645", "target": "1703", "key": "7133", "undirected": true }, { "source": "1645", "target": "206", "key": "7149", "undirected": true }, { "source": "1645", "target": "242", "key": "7137", "undirected": true }, { "source": "1645", "target": "506", "key": "7139", "undirected": true }, { "source": "1645", "target": "595", "key": "7159", "undirected": true }, { "source": "1645", "target": "708", "key": "7130", "undirected": true }, { "source": "1645", "target": "715", "key": "7132", "undirected": true }, { "source": "1645", "target": "736", "key": "7129", "undirected": true }, { "source": "1645", "target": "743", "key": "7167", "undirected": true }, { "source": "1645", "target": "930", "key": "7148", "undirected": true }, { "source": "1645", "target": "936", "key": "7140", "undirected": true }, { "source": "1645", "target": "971", "key": "7146", "undirected": true }, { "source": "1645", "target": "977", "key": "7144", "undirected": true }, { "source": "1646", "target": "451", "key": "7173", "undirected": true }, { "source": "1647", "target": "1049", "key": "7175", "undirected": true }, { "source": "1647", "target": "639", "key": "7174", "undirected": true }, { "source": "1649", "target": "1158", "key": "7176", "undirected": true }, { "source": "1650", "target": "1067", "key": "7196", "undirected": true }, { "source": "1650", "target": "1079", "key": "7208", "undirected": true }, { "source": "1650", "target": "1157", "key": "7180", "undirected": true }, { "source": "1650", "target": "1271", "key": "7188", "undirected": true }, { "source": "1650", "target": "1352", "key": "7184", "undirected": true }, { "source": "1650", "target": "1439", "key": "7193", "undirected": true }, { "source": "1650", "target": "1476", "key": "7201", "undirected": true }, { "source": "1650", "target": "1521", "key": "7206", "undirected": true }, { "source": "1650", "target": "1550", "key": "7179", "undirected": true }, { "source": "1650", "target": "1551", "key": "7207", "undirected": true }, { "source": "1650", "target": "1553", "key": "7209", "undirected": true }, { "source": "1650", "target": "1562", "key": "7177", "undirected": true }, { "source": "1650", "target": "1563", "key": "7199", "undirected": true }, { "source": "1650", "target": "1569", "key": "7203", "undirected": true }, { "source": "1650", "target": "1571", "key": "7186", "undirected": true }, { "source": "1650", "target": "1594", "key": "7190", "undirected": true }, { "source": "1650", "target": "1598", "key": "7191", "undirected": true }, { "source": "1650", "target": "1612", "key": "7189", "undirected": true }, { "source": "1650", "target": "1645", "key": "7198", "undirected": true }, { "source": "1650", "target": "1655", "key": "7204", "undirected": true }, { "source": "1650", "target": "1661", "key": "7195", "undirected": true }, { "source": "1650", "target": "1703", "key": "7185", "undirected": true }, { "source": "1650", "target": "1727", "key": "7197", "undirected": true }, { "source": "1650", "target": "206", "key": "7178", "undirected": true }, { "source": "1650", "target": "242", "key": "7182", "undirected": true }, { "source": "1650", "target": "506", "key": "7200", "undirected": true }, { "source": "1650", "target": "595", "key": "7205", "undirected": true }, { "source": "1650", "target": "715", "key": "7192", "undirected": true }, { "source": "1650", "target": "736", "key": "7202", "undirected": true }, { "source": "1650", "target": "930", "key": "7183", "undirected": true }, { "source": "1650", "target": "936", "key": "7210", "undirected": true }, { "source": "1650", "target": "971", "key": "7194", "undirected": true }, { "source": "1650", "target": "977", "key": "7181", "undirected": true }, { "source": "1650", "target": "981", "key": "7187", "undirected": true }, { "source": "1651", "target": "1313", "key": "7216", "undirected": true }, { "source": "1651", "target": "1367", "key": "7212", "undirected": true }, { "source": "1651", "target": "1451", "key": "7217", "undirected": true }, { "source": "1651", "target": "1516", "key": "7213", "undirected": true }, { "source": "1651", "target": "362", "key": "7214", "undirected": true }, { "source": "1651", "target": "592", "key": "7211", "undirected": true }, { "source": "1651", "target": "630", "key": "7215", "undirected": true }, { "source": "1652", "target": "1245", "key": "7238", "undirected": true }, { "source": "1652", "target": "1250", "key": "7221", "undirected": true }, { "source": "1652", "target": "1263", "key": "7242", "undirected": true }, { "source": "1652", "target": "1271", "key": "7241", "undirected": true }, { "source": "1652", "target": "1286", "key": "7239", "undirected": true }, { "source": "1652", "target": "1301", "key": "7237", "undirected": true }, { "source": "1652", "target": "1333", "key": "7236", "undirected": true }, { "source": "1652", "target": "1557", "key": "7240", "undirected": true }, { "source": "1652", "target": "1594", "key": "7234", "undirected": true }, { "source": "1652", "target": "1602", "key": "7218", "undirected": true }, { "source": "1652", "target": "1605", "key": "7231", "undirected": true }, { "source": "1652", "target": "1618", "key": "7232", "undirected": true }, { "source": "1652", "target": "1619", "key": "7230", "undirected": true }, { "source": "1652", "target": "1620", "key": "7226", "undirected": true }, { "source": "1652", "target": "1626", "key": "7229", "undirected": true }, { "source": "1652", "target": "1637", "key": "7228", "undirected": true }, { "source": "1652", "target": "1649", "key": "7224", "undirected": true }, { "source": "1652", "target": "1654", "key": "7235", "undirected": true }, { "source": "1652", "target": "1655", "key": "7227", "undirected": true }, { "source": "1652", "target": "1656", "key": "7225", "undirected": true }, { "source": "1652", "target": "219", "key": "7245", "undirected": true }, { "source": "1652", "target": "228", "key": "7243", "undirected": true }, { "source": "1652", "target": "271", "key": "7244", "undirected": true }, { "source": "1652", "target": "273", "key": "7223", "undirected": true }, { "source": "1652", "target": "275", "key": "7222", "undirected": true }, { "source": "1652", "target": "481", "key": "7219", "undirected": true }, { "source": "1652", "target": "691", "key": "7220", "undirected": true }, { "source": "1652", "target": "701", "key": "7246", "undirected": true }, { "source": "1652", "target": "980", "key": "7233", "undirected": true }, { "source": "1653", "target": "1030", "key": "7285", "undirected": true }, { "source": "1653", "target": "1067", "key": "7262", "undirected": true }, { "source": "1653", "target": "1076", "key": "7261", "undirected": true }, { "source": "1653", "target": "1168", "key": "7260", "undirected": true }, { "source": "1653", "target": "1202", "key": "7280", "undirected": true }, { "source": "1653", "target": "1212", "key": "7275", "undirected": true }, { "source": "1653", "target": "1236", "key": "7259", "undirected": true }, { "source": "1653", "target": "1244", "key": "7286", "undirected": true }, { "source": "1653", "target": "1330", "key": "7268", "undirected": true }, { "source": "1653", "target": "1334", "key": "7267", "undirected": true }, { "source": "1653", "target": "1352", "key": "7248", "undirected": true }, { "source": "1653", "target": "1476", "key": "7258", "undirected": true }, { "source": "1653", "target": "1480", "key": "7256", "undirected": true }, { "source": "1653", "target": "1521", "key": "7251", "undirected": true }, { "source": "1653", "target": "1541", "key": "7253", "undirected": true }, { "source": "1653", "target": "1542", "key": "7273", "undirected": true }, { "source": "1653", "target": "1550", "key": "7283", "undirected": true }, { "source": "1653", "target": "1580", "key": "7274", "undirected": true }, { "source": "1653", "target": "1598", "key": "7284", "undirected": true }, { "source": "1653", "target": "1618", "key": "7269", "undirected": true }, { "source": "1653", "target": "1645", "key": "7247", "undirected": true }, { "source": "1653", "target": "1650", "key": "7279", "undirected": true }, { "source": "1653", "target": "1652", "key": "7272", "undirected": true }, { "source": "1653", "target": "1661", "key": "7278", "undirected": true }, { "source": "1653", "target": "1703", "key": "7255", "undirected": true }, { "source": "1653", "target": "1718", "key": "7271", "undirected": true }, { "source": "1653", "target": "1727", "key": "7257", "undirected": true }, { "source": "1653", "target": "206", "key": "7287", "undirected": true }, { "source": "1653", "target": "220", "key": "7270", "undirected": true }, { "source": "1653", "target": "242", "key": "7249", "undirected": true }, { "source": "1653", "target": "48", "key": "7265", "undirected": true }, { "source": "1653", "target": "490", "key": "7282", "undirected": true }, { "source": "1653", "target": "506", "key": "7266", "undirected": true }, { "source": "1653", "target": "639", "key": "7281", "undirected": true }, { "source": "1653", "target": "715", "key": "7250", "undirected": true }, { "source": "1653", "target": "736", "key": "7277", "undirected": true }, { "source": "1653", "target": "927", "key": "7276", "undirected": true }, { "source": "1653", "target": "930", "key": "7254", "undirected": true }, { "source": "1653", "target": "936", "key": "7252", "undirected": true }, { "source": "1653", "target": "971", "key": "7264", "undirected": true }, { "source": "1653", "target": "983", "key": "7263", "undirected": true }, { "source": "1654", "target": "122", "key": "7288", "undirected": true }, { "source": "1654", "target": "1646", "key": "7290", "undirected": true }, { "source": "1654", "target": "890", "key": "7291", "undirected": true }, { "source": "1654", "target": "930", "key": "7289", "undirected": true }, { "source": "1655", "target": "1232", "key": "7294", "undirected": true }, { "source": "1655", "target": "1315", "key": "7295", "undirected": true }, { "source": "1655", "target": "142", "key": "7292", "undirected": true }, { "source": "1655", "target": "1588", "key": "7293", "undirected": true }, { "source": "1655", "target": "267", "key": "7300", "undirected": true }, { "source": "1655", "target": "273", "key": "7299", "undirected": true }, { "source": "1655", "target": "274", "key": "7298", "undirected": true }, { "source": "1655", "target": "275", "key": "7297", "undirected": true }, { "source": "1655", "target": "313", "key": "7296", "undirected": true }, { "source": "1655", "target": "490", "key": "7301", "undirected": true }, { "source": "1655", "target": "614", "key": "7303", "undirected": true }, { "source": "1655", "target": "925", "key": "7302", "undirected": true }, { "source": "1656", "target": "1250", "key": "7304", "undirected": true }, { "source": "166", "target": "1314", "key": "615", "undirected": true }, { "source": "166", "target": "1328", "key": "616", "undirected": true }, { "source": "166", "target": "149", "key": "614", "undirected": true }, { "source": "166", "target": "1621", "key": "612", "undirected": true }, { "source": "166", "target": "747", "key": "613", "undirected": true }, { "source": "1660", "target": "1570", "key": "7312", "undirected": true }, { "source": "1660", "target": "1602", "key": "7314", "undirected": true }, { "source": "1660", "target": "1671", "key": "7315", "undirected": true }, { "source": "1660", "target": "1704", "key": "7313", "undirected": true }, { "source": "1660", "target": "232", "key": "7306", "undirected": true }, { "source": "1660", "target": "344", "key": "7308", "undirected": true }, { "source": "1660", "target": "386", "key": "7309", "undirected": true }, { "source": "1660", "target": "743", "key": "7311", "undirected": true }, { "source": "1660", "target": "861", "key": "7305", "undirected": true }, { "source": "1660", "target": "888", "key": "7307", "undirected": true }, { "source": "1660", "target": "922", "key": "7310", "undirected": true }, { "source": "1660", "target": "926", "key": "7316", "undirected": true }, { "source": "1661", "target": "1727", "key": "7317", "undirected": true }, { "source": "1663", "target": "1061", "key": "7319", "undirected": true }, { "source": "1663", "target": "1104", "key": "7318", "undirected": true }, { "source": "1663", "target": "543", "key": "7321", "undirected": true }, { "source": "1663", "target": "675", "key": "7320", "undirected": true }, { "source": "1664", "target": "1496", "key": "7324", "undirected": true }, { "source": "1664", "target": "630", "key": "7322", "undirected": true }, { "source": "1664", "target": "634", "key": "7323", "undirected": true }, { "source": "1666", "target": "1357", "key": "7326", "undirected": true }, { "source": "1666", "target": "561", "key": "7325", "undirected": true }, { "source": "1670", "target": "292", "key": "7327", "undirected": true }, { "source": "1671", "target": "1414", "key": "7328", "undirected": true }, { "source": "1671", "target": "1570", "key": "7331", "undirected": true }, { "source": "1671", "target": "1588", "key": "7332", "undirected": true }, { "source": "1671", "target": "1589", "key": "7336", "undirected": true }, { "source": "1671", "target": "1660", "key": "7346", "undirected": true }, { "source": "1671", "target": "1672", "key": "7341", "undirected": true }, { "source": "1671", "target": "1684", "key": "7334", "undirected": true }, { "source": "1671", "target": "1687", "key": "7339", "undirected": true }, { "source": "1671", "target": "1699", "key": "7333", "undirected": true }, { "source": "1671", "target": "1703", "key": "7342", "undirected": true }, { "source": "1671", "target": "1704", "key": "7330", "undirected": true }, { "source": "1671", "target": "368", "key": "7345", "undirected": true }, { "source": "1671", "target": "383", "key": "7347", "undirected": true }, { "source": "1671", "target": "481", "key": "7344", "undirected": true }, { "source": "1671", "target": "845", "key": "7329", "undirected": true }, { "source": "1671", "target": "850", "key": "7340", "undirected": true }, { "source": "1671", "target": "922", "key": "7335", "undirected": true }, { "source": "1671", "target": "926", "key": "7338", "undirected": true }, { "source": "1671", "target": "948", "key": "7343", "undirected": true }, { "source": "1671", "target": "981", "key": "7337", "undirected": true }, { "source": "1672", "target": "1671", "key": "7348", "undirected": true }, { "source": "1673", "target": "1089", "key": "7352", "undirected": true }, { "source": "1673", "target": "1283", "key": "7349", "undirected": true }, { "source": "1673", "target": "165", "key": "7351", "undirected": true }, { "source": "1673", "target": "771", "key": "7350", "undirected": true }, { "source": "1676", "target": "628", "key": "7353", "undirected": true }, { "source": "168", "target": "839", "key": "617", "undirected": true }, { "source": "1684", "target": "344", "key": "7355", "undirected": true }, { "source": "1684", "target": "603", "key": "7354", "undirected": true }, { "source": "1685", "target": "1281", "key": "7358", "undirected": true }, { "source": "1685", "target": "1328", "key": "7359", "undirected": true }, { "source": "1685", "target": "1380", "key": "7364", "undirected": true }, { "source": "1685", "target": "1412", "key": "7356", "undirected": true }, { "source": "1685", "target": "162", "key": "7362", "undirected": true }, { "source": "1685", "target": "164", "key": "7360", "undirected": true }, { "source": "1685", "target": "1686", "key": "7357", "undirected": true }, { "source": "1685", "target": "1696", "key": "7374", "undirected": true }, { "source": "1685", "target": "1720", "key": "7372", "undirected": true }, { "source": "1685", "target": "235", "key": "7368", "undirected": true }, { "source": "1685", "target": "258", "key": "7369", "undirected": true }, { "source": "1685", "target": "415", "key": "7371", "undirected": true }, { "source": "1685", "target": "460", "key": "7365", "undirected": true }, { "source": "1685", "target": "629", "key": "7363", "undirected": true }, { "source": "1685", "target": "642", "key": "7373", "undirected": true }, { "source": "1685", "target": "716", "key": "7366", "undirected": true }, { "source": "1685", "target": "74", "key": "7370", "undirected": true }, { "source": "1685", "target": "790", "key": "7361", "undirected": true }, { "source": "1685", "target": "996", "key": "7367", "undirected": true }, { "source": "1686", "target": "1202", "key": "7380", "undirected": true }, { "source": "1686", "target": "1412", "key": "7377", "undirected": true }, { "source": "1686", "target": "164", "key": "7376", "undirected": true }, { "source": "1686", "target": "1685", "key": "7375", "undirected": true }, { "source": "1686", "target": "460", "key": "7378", "undirected": true }, { "source": "1686", "target": "657", "key": "7379", "undirected": true }, { "source": "1687", "target": "1428", "key": "7382", "undirected": true }, { "source": "1687", "target": "1684", "key": "7384", "undirected": true }, { "source": "1687", "target": "657", "key": "7381", "undirected": true }, { "source": "1687", "target": "926", "key": "7383", "undirected": true }, { "source": "1690", "target": "1570", "key": "7388", "undirected": true }, { "source": "1690", "target": "1588", "key": "7387", "undirected": true }, { "source": "1690", "target": "1589", "key": "7386", "undirected": true }, { "source": "1690", "target": "1704", "key": "7385", "undirected": true }, { "source": "1690", "target": "981", "key": "7389", "undirected": true }, { "source": "1691", "target": "1065", "key": "7391", "undirected": true }, { "source": "1691", "target": "1588", "key": "7394", "undirected": true }, { "source": "1691", "target": "1704", "key": "7395", "undirected": true }, { "source": "1691", "target": "344", "key": "7393", "undirected": true }, { "source": "1691", "target": "639", "key": "7390", "undirected": true }, { "source": "1691", "target": "709", "key": "7392", "undirected": true }, { "source": "1691", "target": "857", "key": "7396", "undirected": true }, { "source": "1691", "target": "888", "key": "7397", "undirected": true }, { "source": "1692", "target": "1169", "key": "7408", "undirected": true }, { "source": "1692", "target": "1171", "key": "7418", "undirected": true }, { "source": "1692", "target": "119", "key": "7409", "undirected": true }, { "source": "1692", "target": "1201", "key": "7419", "undirected": true }, { "source": "1692", "target": "1331", "key": "7407", "undirected": true }, { "source": "1692", "target": "1373", "key": "7404", "undirected": true }, { "source": "1692", "target": "1438", "key": "7399", "undirected": true }, { "source": "1692", "target": "1485", "key": "7398", "undirected": true }, { "source": "1692", "target": "1554", "key": "7403", "undirected": true }, { "source": "1692", "target": "1559", "key": "7405", "undirected": true }, { "source": "1692", "target": "1581", "key": "7400", "undirected": true }, { "source": "1692", "target": "1584", "key": "7410", "undirected": true }, { "source": "1692", "target": "1614", "key": "7406", "undirected": true }, { "source": "1692", "target": "1616", "key": "7402", "undirected": true }, { "source": "1692", "target": "1617", "key": "7411", "undirected": true }, { "source": "1692", "target": "1631", "key": "7401", "undirected": true }, { "source": "1692", "target": "1669", "key": "7412", "undirected": true }, { "source": "1692", "target": "313", "key": "7415", "undirected": true }, { "source": "1692", "target": "319", "key": "7416", "undirected": true }, { "source": "1692", "target": "347", "key": "7414", "undirected": true }, { "source": "1692", "target": "397", "key": "7417", "undirected": true }, { "source": "1692", "target": "398", "key": "7413", "undirected": true }, { "source": "1696", "target": "1197", "key": "7422", "undirected": true }, { "source": "1696", "target": "1720", "key": "7421", "undirected": true }, { "source": "1696", "target": "485", "key": "7420", "undirected": true }, { "source": "1697", "target": "534", "key": "7423", "undirected": true }, { "source": "1698", "target": "1368", "key": "7425", "undirected": true }, { "source": "1698", "target": "252", "key": "7424", "undirected": true }, { "source": "1699", "target": "1690", "key": "7426", "undirected": true }, { "source": "1699", "target": "344", "key": "7427", "undirected": true }, { "source": "1699", "target": "63", "key": "7429", "undirected": true }, { "source": "1699", "target": "926", "key": "7428", "undirected": true }, { "source": "17", "target": "1065", "key": "52", "undirected": true }, { "source": "17", "target": "1089", "key": "56", "undirected": true }, { "source": "17", "target": "1181", "key": "54", "undirected": true }, { "source": "17", "target": "1602", "key": "55", "undirected": true }, { "source": "17", "target": "1603", "key": "58", "undirected": true }, { "source": "17", "target": "1607", "key": "57", "undirected": true }, { "source": "17", "target": "232", "key": "59", "undirected": true }, { "source": "17", "target": "386", "key": "53", "undirected": true }, { "source": "17", "target": "52", "key": "51", "undirected": true }, { "source": "1701", "target": "1207", "key": "7430", "undirected": true }, { "source": "1703", "target": "1067", "key": "7432", "undirected": true }, { "source": "1703", "target": "1076", "key": "7438", "undirected": true }, { "source": "1703", "target": "1521", "key": "7431", "undirected": true }, { "source": "1703", "target": "1541", "key": "7433", "undirected": true }, { "source": "1703", "target": "1553", "key": "7439", "undirected": true }, { "source": "1703", "target": "1645", "key": "7436", "undirected": true }, { "source": "1703", "target": "1653", "key": "7435", "undirected": true }, { "source": "1703", "target": "1671", "key": "7434", "undirected": true }, { "source": "1703", "target": "669", "key": "7437", "undirected": true }, { "source": "1704", "target": "103", "key": "7465", "undirected": true }, { "source": "1704", "target": "1079", "key": "7469", "undirected": true }, { "source": "1704", "target": "1181", "key": "7476", "undirected": true }, { "source": "1704", "target": "1276", "key": "7454", "undirected": true }, { "source": "1704", "target": "1368", "key": "7477", "undirected": true }, { "source": "1704", "target": "1374", "key": "7468", "undirected": true }, { "source": "1704", "target": "1417", "key": "7450", "undirected": true }, { "source": "1704", "target": "1570", "key": "7453", "undirected": true }, { "source": "1704", "target": "1588", "key": "7463", "undirected": true }, { "source": "1704", "target": "1589", "key": "7478", "undirected": true }, { "source": "1704", "target": "1602", "key": "7442", "undirected": true }, { "source": "1704", "target": "1671", "key": "7444", "undirected": true }, { "source": "1704", "target": "1684", "key": "7449", "undirected": true }, { "source": "1704", "target": "1687", "key": "7464", "undirected": true }, { "source": "1704", "target": "1690", "key": "7446", "undirected": true }, { "source": "1704", "target": "1691", "key": "7455", "undirected": true }, { "source": "1704", "target": "1714", "key": "7460", "undirected": true }, { "source": "1704", "target": "1715", "key": "7441", "undirected": true }, { "source": "1704", "target": "1748", "key": "7472", "undirected": true }, { "source": "1704", "target": "177", "key": "7452", "undirected": true }, { "source": "1704", "target": "208", "key": "7440", "undirected": true }, { "source": "1704", "target": "222", "key": "7474", "undirected": true }, { "source": "1704", "target": "225", "key": "7459", "undirected": true }, { "source": "1704", "target": "344", "key": "7448", "undirected": true }, { "source": "1704", "target": "464", "key": "7458", "undirected": true }, { "source": "1704", "target": "610", "key": "7461", "undirected": true }, { "source": "1704", "target": "626", "key": "7466", "undirected": true }, { "source": "1704", "target": "639", "key": "7456", "undirected": true }, { "source": "1704", "target": "831", "key": "7479", "undirected": true }, { "source": "1704", "target": "845", "key": "7462", "undirected": true }, { "source": "1704", "target": "850", "key": "7451", "undirected": true }, { "source": "1704", "target": "903", "key": "7470", "undirected": true }, { "source": "1704", "target": "926", "key": "7445", "undirected": true }, { "source": "1704", "target": "941", "key": "7473", "undirected": true }, { "source": "1704", "target": "947", "key": "7443", "undirected": true }, { "source": "1704", "target": "948", "key": "7457", "undirected": true }, { "source": "1704", "target": "954", "key": "7471", "undirected": true }, { "source": "1704", "target": "964", "key": "7467", "undirected": true }, { "source": "1704", "target": "981", "key": "7475", "undirected": true }, { "source": "1704", "target": "988", "key": "7447", "undirected": true }, { "source": "1705", "target": "1239", "key": "7480", "undirected": true }, { "source": "1706", "target": "1505", "key": "7481", "undirected": true }, { "source": "1706", "target": "490", "key": "7482", "undirected": true }, { "source": "1706", "target": "639", "key": "7483", "undirected": true }, { "source": "1708", "target": "203", "key": "7484", "undirected": true }, { "source": "1708", "target": "551", "key": "7485", "undirected": true }, { "source": "1712", "target": "1035", "key": "7498", "undirected": true }, { "source": "1712", "target": "1061", "key": "7486", "undirected": true }, { "source": "1712", "target": "1104", "key": "7495", "undirected": true }, { "source": "1712", "target": "1191", "key": "7488", "undirected": true }, { "source": "1712", "target": "1196", "key": "7492", "undirected": true }, { "source": "1712", "target": "1211", "key": "7491", "undirected": true }, { "source": "1712", "target": "1243", "key": "7494", "undirected": true }, { "source": "1712", "target": "1540", "key": "7487", "undirected": true }, { "source": "1712", "target": "555", "key": "7496", "undirected": true }, { "source": "1712", "target": "641", "key": "7497", "undirected": true }, { "source": "1712", "target": "645", "key": "7493", "undirected": true }, { "source": "1712", "target": "654", "key": "7489", "undirected": true }, { "source": "1712", "target": "668", "key": "7490", "undirected": true }, { "source": "1713", "target": "439", "key": "7502", "undirected": true }, { "source": "1713", "target": "648", "key": "7501", "undirected": true }, { "source": "1713", "target": "650", "key": "7500", "undirected": true }, { "source": "1713", "target": "981", "key": "7499", "undirected": true }, { "source": "1714", "target": "1588", "key": "7503", "undirected": true }, { "source": "1714", "target": "1687", "key": "7505", "undirected": true }, { "source": "1714", "target": "845", "key": "7504", "undirected": true }, { "source": "1715", "target": "1368", "key": "7512", "undirected": true }, { "source": "1715", "target": "1570", "key": "7506", "undirected": true }, { "source": "1715", "target": "1588", "key": "7508", "undirected": true }, { "source": "1715", "target": "1589", "key": "7511", "undirected": true }, { "source": "1715", "target": "164", "key": "7513", "undirected": true }, { "source": "1715", "target": "1704", "key": "7507", "undirected": true }, { "source": "1715", "target": "978", "key": "7509", "undirected": true }, { "source": "1715", "target": "981", "key": "7510", "undirected": true }, { "source": "1717", "target": "122", "key": "7515", "undirected": true }, { "source": "1717", "target": "1614", "key": "7514", "undirected": true }, { "source": "1718", "target": "1202", "key": "7518", "undirected": true }, { "source": "1718", "target": "1626", "key": "7520", "undirected": true }, { "source": "1718", "target": "1652", "key": "7517", "undirected": true }, { "source": "1718", "target": "219", "key": "7519", "undirected": true }, { "source": "1718", "target": "481", "key": "7516", "undirected": true }, { "source": "1719", "target": "122", "key": "7521", "undirected": true }, { "source": "1720", "target": "747", "key": "7523", "undirected": true }, { "source": "1720", "target": "994", "key": "7522", "undirected": true }, { "source": "1722", "target": "1386", "key": "7527", "undirected": true }, { "source": "1722", "target": "1430", "key": "7525", "undirected": true }, { "source": "1722", "target": "1724", "key": "7528", "undirected": true }, { "source": "1722", "target": "1730", "key": "7526", "undirected": true }, { "source": "1722", "target": "314", "key": "7524", "undirected": true }, { "source": "1722", "target": "91", "key": "7529", "undirected": true }, { "source": "1724", "target": "1430", "key": "7530", "undirected": true }, { "source": "1724", "target": "1730", "key": "7531", "undirected": true }, { "source": "1724", "target": "407", "key": "7532", "undirected": true }, { "source": "1727", "target": "1067", "key": "7538", "undirected": true }, { "source": "1727", "target": "1244", "key": "7536", "undirected": true }, { "source": "1727", "target": "1598", "key": "7541", "undirected": true }, { "source": "1727", "target": "242", "key": "7534", "undirected": true }, { "source": "1727", "target": "48", "key": "7535", "undirected": true }, { "source": "1727", "target": "669", "key": "7539", "undirected": true }, { "source": "1727", "target": "696", "key": "7540", "undirected": true }, { "source": "1727", "target": "715", "key": "7533", "undirected": true }, { "source": "1727", "target": "790", "key": "7542", "undirected": true }, { "source": "1727", "target": "936", "key": "7537", "undirected": true }, { "source": "1730", "target": "1489", "key": "7543", "undirected": true }, { "source": "1730", "target": "1588", "key": "7544", "undirected": true }, { "source": "1730", "target": "1605", "key": "7545", "undirected": true }, { "source": "1731", "target": "1239", "key": "7546", "undirected": true }, { "source": "1731", "target": "1242", "key": "7547", "undirected": true }, { "source": "1731", "target": "1246", "key": "7549", "undirected": true }, { "source": "1731", "target": "757", "key": "7548", "undirected": true }, { "source": "1731", "target": "806", "key": "7550", "undirected": true }, { "source": "1735", "target": "243", "key": "7551", "undirected": true }, { "source": "1739", "target": "750", "key": "7552", "undirected": true }, { "source": "174", "target": "176", "key": "621", "undirected": true }, { "source": "174", "target": "66", "key": "619", "undirected": true }, { "source": "174", "target": "845", "key": "620", "undirected": true }, { "source": "174", "target": "97", "key": "618", "undirected": true }, { "source": "1742", "target": "1444", "key": "7554", "undirected": true }, { "source": "1742", "target": "1445", "key": "7553", "undirected": true }, { "source": "1742", "target": "333", "key": "7555", "undirected": true }, { "source": "1742", "target": "608", "key": "7556", "undirected": true }, { "source": "1748", "target": "1602", "key": "7557", "undirected": true }, { "source": "1748", "target": "1603", "key": "7560", "undirected": true }, { "source": "1748", "target": "1607", "key": "7563", "undirected": true }, { "source": "1748", "target": "733", "key": "7561", "undirected": true }, { "source": "1748", "target": "741", "key": "7562", "undirected": true }, { "source": "1748", "target": "743", "key": "7559", "undirected": true }, { "source": "1748", "target": "746", "key": "7558", "undirected": true }, { "source": "1749", "target": "1030", "key": "7571", "undirected": true }, { "source": "1749", "target": "1158", "key": "7573", "undirected": true }, { "source": "1749", "target": "122", "key": "7579", "undirected": true }, { "source": "1749", "target": "1232", "key": "7580", "undirected": true }, { "source": "1749", "target": "1245", "key": "7564", "undirected": true }, { "source": "1749", "target": "1250", "key": "7575", "undirected": true }, { "source": "1749", "target": "1276", "key": "7566", "undirected": true }, { "source": "1749", "target": "135", "key": "7576", "undirected": true }, { "source": "1749", "target": "1481", "key": "7572", "undirected": true }, { "source": "1749", "target": "1562", "key": "7569", "undirected": true }, { "source": "1749", "target": "1563", "key": "7568", "undirected": true }, { "source": "1749", "target": "1571", "key": "7565", "undirected": true }, { "source": "1749", "target": "1748", "key": "7577", "undirected": true }, { "source": "1749", "target": "271", "key": "7578", "undirected": true }, { "source": "1749", "target": "490", "key": "7574", "undirected": true }, { "source": "1749", "target": "733", "key": "7567", "undirected": true }, { "source": "1749", "target": "936", "key": "7570", "undirected": true }, { "source": "175", "target": "1094", "key": "622", "undirected": true }, { "source": "175", "target": "1200", "key": "623", "undirected": true }, { "source": "1751", "target": "1203", "key": "7581", "undirected": true }, { "source": "1752", "target": "1158", "key": "7582", "undirected": true }, { "source": "1752", "target": "1407", "key": "7584", "undirected": true }, { "source": "1752", "target": "209", "key": "7585", "undirected": true }, { "source": "1752", "target": "481", "key": "7583", "undirected": true }, { "source": "176", "target": "105", "key": "626", "undirected": true }, { "source": "176", "target": "109", "key": "629", "undirected": true }, { "source": "176", "target": "1202", "key": "630", "undirected": true }, { "source": "176", "target": "174", "key": "631", "undirected": true }, { "source": "176", "target": "66", "key": "624", "undirected": true }, { "source": "176", "target": "68", "key": "627", "undirected": true }, { "source": "176", "target": "71", "key": "628", "undirected": true }, { "source": "176", "target": "97", "key": "625", "undirected": true }, { "source": "177", "target": "1704", "key": "632", "undirected": true }, { "source": "18", "target": "122", "key": "61", "undirected": true }, { "source": "18", "target": "1232", "key": "60", "undirected": true }, { "source": "180", "target": "1328", "key": "634", "undirected": true }, { "source": "180", "target": "1406", "key": "637", "undirected": true }, { "source": "180", "target": "1621", "key": "638", "undirected": true }, { "source": "180", "target": "166", "key": "635", "undirected": true }, { "source": "180", "target": "460", "key": "636", "undirected": true }, { "source": "180", "target": "747", "key": "633", "undirected": true }, { "source": "181", "target": "1158", "key": "640", "undirected": true }, { "source": "181", "target": "182", "key": "639", "undirected": true }, { "source": "181", "target": "490", "key": "642", "undirected": true }, { "source": "181", "target": "551", "key": "644", "undirected": true }, { "source": "181", "target": "649", "key": "643", "undirected": true }, { "source": "181", "target": "816", "key": "645", "undirected": true }, { "source": "181", "target": "874", "key": "641", "undirected": true }, { "source": "182", "target": "1542", "key": "647", "undirected": true }, { "source": "182", "target": "1560", "key": "646", "undirected": true }, { "source": "182", "target": "243", "key": "649", "undirected": true }, { "source": "182", "target": "551", "key": "652", "undirected": true }, { "source": "182", "target": "652", "key": "651", "undirected": true }, { "source": "182", "target": "918", "key": "648", "undirected": true }, { "source": "182", "target": "953", "key": "650", "undirected": true }, { "source": "183", "target": "1021", "key": "666", "undirected": true }, { "source": "183", "target": "1024", "key": "669", "undirected": true }, { "source": "183", "target": "1025", "key": "660", "undirected": true }, { "source": "183", "target": "1026", "key": "658", "undirected": true }, { "source": "183", "target": "104", "key": "656", "undirected": true }, { "source": "183", "target": "1045", "key": "665", "undirected": true }, { "source": "183", "target": "1224", "key": "659", "undirected": true }, { "source": "183", "target": "1313", "key": "664", "undirected": true }, { "source": "183", "target": "1343", "key": "654", "undirected": true }, { "source": "183", "target": "1465", "key": "663", "undirected": true }, { "source": "183", "target": "1486", "key": "655", "undirected": true }, { "source": "183", "target": "1504", "key": "662", "undirected": true }, { "source": "183", "target": "1516", "key": "653", "undirected": true }, { "source": "183", "target": "1708", "key": "661", "undirected": true }, { "source": "183", "target": "365", "key": "668", "undirected": true }, { "source": "183", "target": "510", "key": "670", "undirected": true }, { "source": "183", "target": "592", "key": "657", "undirected": true }, { "source": "183", "target": "937", "key": "667", "undirected": true }, { "source": "189", "target": "1225", "key": "675", "undirected": true }, { "source": "189", "target": "1657", "key": "674", "undirected": true }, { "source": "189", "target": "188", "key": "680", "undirected": true }, { "source": "189", "target": "343", "key": "676", "undirected": true }, { "source": "189", "target": "39", "key": "673", "undirected": true }, { "source": "189", "target": "60", "key": "679", "undirected": true }, { "source": "189", "target": "636", "key": "671", "undirected": true }, { "source": "189", "target": "793", "key": "678", "undirected": true }, { "source": "189", "target": "825", "key": "677", "undirected": true }, { "source": "189", "target": "925", "key": "672", "undirected": true }, { "source": "19", "target": "20", "key": "62", "undirected": true }, { "source": "190", "target": "1426", "key": "686", "undirected": true }, { "source": "190", "target": "154", "key": "685", "undirected": true }, { "source": "190", "target": "155", "key": "684", "undirected": true }, { "source": "190", "target": "61", "key": "681", "undirected": true }, { "source": "190", "target": "635", "key": "682", "undirected": true }, { "source": "190", "target": "95", "key": "683", "undirected": true }, { "source": "191", "target": "451", "key": "687", "undirected": true }, { "source": "194", "target": "1542", "key": "689", "undirected": true }, { "source": "194", "target": "1571", "key": "688", "undirected": true }, { "source": "195", "target": "1275", "key": "690", "undirected": true }, { "source": "195", "target": "632", "key": "691", "undirected": true }, { "source": "2", "target": "1094", "key": "1", "undirected": true }, { "source": "2", "target": "1203", "key": "0", "undirected": true }, { "source": "20", "target": "19", "key": "63", "undirected": true }, { "source": "201", "target": "1532", "key": "694", "undirected": true }, { "source": "201", "target": "1570", "key": "695", "undirected": true }, { "source": "201", "target": "1697", "key": "697", "undirected": true }, { "source": "201", "target": "1698", "key": "696", "undirected": true }, { "source": "201", "target": "225", "key": "700", "undirected": true }, { "source": "201", "target": "477", "key": "698", "undirected": true }, { "source": "201", "target": "488", "key": "693", "undirected": true }, { "source": "201", "target": "534", "key": "692", "undirected": true }, { "source": "201", "target": "981", "key": "699", "undirected": true }, { "source": "203", "target": "1067", "key": "720", "undirected": true }, { "source": "203", "target": "1214", "key": "701", "undirected": true }, { "source": "203", "target": "1244", "key": "718", "undirected": true }, { "source": "203", "target": "1313", "key": "705", "undirected": true }, { "source": "203", "target": "132", "key": "725", "undirected": true }, { "source": "203", "target": "1446", "key": "716", "undirected": true }, { "source": "203", "target": "1451", "key": "703", "undirected": true }, { "source": "203", "target": "1465", "key": "724", "undirected": true }, { "source": "203", "target": "1542", "key": "706", "undirected": true }, { "source": "203", "target": "1704", "key": "717", "undirected": true }, { "source": "203", "target": "242", "key": "719", "undirected": true }, { "source": "203", "target": "243", "key": "715", "undirected": true }, { "source": "203", "target": "579", "key": "723", "undirected": true }, { "source": "203", "target": "588", "key": "702", "undirected": true }, { "source": "203", "target": "601", "key": "707", "undirected": true }, { "source": "203", "target": "630", "key": "704", "undirected": true }, { "source": "203", "target": "649", "key": "712", "undirected": true }, { "source": "203", "target": "652", "key": "713", "undirected": true }, { "source": "203", "target": "696", "key": "722", "undirected": true }, { "source": "203", "target": "698", "key": "711", "undirected": true }, { "source": "203", "target": "715", "key": "721", "undirected": true }, { "source": "203", "target": "76", "key": "710", "undirected": true }, { "source": "203", "target": "816", "key": "714", "undirected": true }, { "source": "203", "target": "946", "key": "709", "undirected": true }, { "source": "203", "target": "960", "key": "708", "undirected": true }, { "source": "206", "target": "1168", "key": "749", "undirected": true }, { "source": "206", "target": "1244", "key": "738", "undirected": true }, { "source": "206", "target": "1439", "key": "735", "undirected": true }, { "source": "206", "target": "1476", "key": "745", "undirected": true }, { "source": "206", "target": "1497", "key": "741", "undirected": true }, { "source": "206", "target": "1511", "key": "740", "undirected": true }, { "source": "206", "target": "1521", "key": "733", "undirected": true }, { "source": "206", "target": "1541", "key": "739", "undirected": true }, { "source": "206", "target": "1550", "key": "737", "undirected": true }, { "source": "206", "target": "1553", "key": "731", "undirected": true }, { "source": "206", "target": "1562", "key": "729", "undirected": true }, { "source": "206", "target": "1563", "key": "736", "undirected": true }, { "source": "206", "target": "1580", "key": "743", "undirected": true }, { "source": "206", "target": "1645", "key": "732", "undirected": true }, { "source": "206", "target": "1650", "key": "726", "undirected": true }, { "source": "206", "target": "242", "key": "728", "undirected": true }, { "source": "206", "target": "279", "key": "730", "undirected": true }, { "source": "206", "target": "481", "key": "744", "undirected": true }, { "source": "206", "target": "715", "key": "727", "undirected": true }, { "source": "206", "target": "736", "key": "746", "undirected": true }, { "source": "206", "target": "930", "key": "742", "undirected": true }, { "source": "206", "target": "936", "key": "734", "undirected": true }, { "source": "206", "target": "971", "key": "748", "undirected": true }, { "source": "206", "target": "983", "key": "747", "undirected": true }, { "source": "207", "target": "1434", "key": "750", "undirected": true }, { "source": "207", "target": "358", "key": "751", "undirected": true }, { "source": "208", "target": "1351", "key": "763", "undirected": true }, { "source": "208", "target": "1570", "key": "756", "undirected": true }, { "source": "208", "target": "1580", "key": "759", "undirected": true }, { "source": "208", "target": "1588", "key": "755", "undirected": true }, { "source": "208", "target": "1589", "key": "757", "undirected": true }, { "source": "208", "target": "1602", "key": "758", "undirected": true }, { "source": "208", "target": "1603", "key": "760", "undirected": true }, { "source": "208", "target": "1704", "key": "754", "undirected": true }, { "source": "208", "target": "344", "key": "752", "undirected": true }, { "source": "208", "target": "423", "key": "765", "undirected": true }, { "source": "208", "target": "743", "key": "762", "undirected": true }, { "source": "208", "target": "746", "key": "761", "undirected": true }, { "source": "208", "target": "947", "key": "764", "undirected": true }, { "source": "208", "target": "988", "key": "753", "undirected": true }, { "source": "209", "target": "1012", "key": "769", "undirected": true }, { "source": "209", "target": "1042", "key": "792", "undirected": true }, { "source": "209", "target": "1080", "key": "785", "undirected": true }, { "source": "209", "target": "1084", "key": "784", "undirected": true }, { "source": "209", "target": "1092", "key": "787", "undirected": true }, { "source": "209", "target": "1104", "key": "770", "undirected": true }, { "source": "209", "target": "1157", "key": "775", "undirected": true }, { "source": "209", "target": "1158", "key": "778", "undirected": true }, { "source": "209", "target": "1180", "key": "789", "undirected": true }, { "source": "209", "target": "1202", "key": "777", "undirected": true }, { "source": "209", "target": "1206", "key": "780", "undirected": true }, { "source": "209", "target": "1250", "key": "768", "undirected": true }, { "source": "209", "target": "1386", "key": "767", "undirected": true }, { "source": "209", "target": "1407", "key": "766", "undirected": true }, { "source": "209", "target": "1430", "key": "773", "undirected": true }, { "source": "209", "target": "1724", "key": "790", "undirected": true }, { "source": "209", "target": "1728", "key": "772", "undirected": true }, { "source": "209", "target": "1730", "key": "771", "undirected": true }, { "source": "209", "target": "212", "key": "791", "undirected": true }, { "source": "209", "target": "276", "key": "782", "undirected": true }, { "source": "209", "target": "289", "key": "786", "undirected": true }, { "source": "209", "target": "294", "key": "783", "undirected": true }, { "source": "209", "target": "314", "key": "774", "undirected": true }, { "source": "209", "target": "326", "key": "781", "undirected": true }, { "source": "209", "target": "565", "key": "788", "undirected": true }, { "source": "209", "target": "639", "key": "779", "undirected": true }, { "source": "209", "target": "947", "key": "776", "undirected": true }, { "source": "211", "target": "1012", "key": "793", "undirected": true }, { "source": "213", "target": "424", "key": "796", "undirected": true }, { "source": "213", "target": "429", "key": "794", "undirected": true }, { "source": "213", "target": "435", "key": "795", "undirected": true }, { "source": "214", "target": "1270", "key": "805", "undirected": true }, { "source": "214", "target": "1467", "key": "802", "undirected": true }, { "source": "214", "target": "1570", "key": "809", "undirected": true }, { "source": "214", "target": "1580", "key": "811", "undirected": true }, { "source": "214", "target": "1602", "key": "813", "undirected": true }, { "source": "214", "target": "201", "key": "799", "undirected": true }, { "source": "214", "target": "225", "key": "806", "undirected": true }, { "source": "214", "target": "464", "key": "801", "undirected": true }, { "source": "214", "target": "477", "key": "797", "undirected": true }, { "source": "214", "target": "488", "key": "798", "undirected": true }, { "source": "214", "target": "512", "key": "800", "undirected": true }, { "source": "214", "target": "535", "key": "815", "undirected": true }, { "source": "214", "target": "741", "key": "812", "undirected": true }, { "source": "214", "target": "746", "key": "810", "undirected": true }, { "source": "214", "target": "796", "key": "803", "undirected": true }, { "source": "214", "target": "862", "key": "814", "undirected": true }, { "source": "214", "target": "922", "key": "807", "undirected": true }, { "source": "214", "target": "948", "key": "804", "undirected": true }, { "source": "214", "target": "981", "key": "808", "undirected": true }, { "source": "215", "target": "1232", "key": "817", "undirected": true }, { "source": "215", "target": "396", "key": "816", "undirected": true }, { "source": "216", "target": "1180", "key": "818", "undirected": true }, { "source": "216", "target": "223", "key": "819", "undirected": true }, { "source": "217", "target": "1197", "key": "823", "undirected": true }, { "source": "217", "target": "1466", "key": "824", "undirected": true }, { "source": "217", "target": "1698", "key": "828", "undirected": true }, { "source": "217", "target": "252", "key": "829", "undirected": true }, { "source": "217", "target": "277", "key": "830", "undirected": true }, { "source": "217", "target": "324", "key": "821", "undirected": true }, { "source": "217", "target": "344", "key": "825", "undirected": true }, { "source": "217", "target": "440", "key": "827", "undirected": true }, { "source": "217", "target": "497", "key": "822", "undirected": true }, { "source": "217", "target": "739", "key": "820", "undirected": true }, { "source": "217", "target": "838", "key": "826", "undirected": true }, { "source": "218", "target": "1611", "key": "832", "undirected": true }, { "source": "218", "target": "289", "key": "833", "undirected": true }, { "source": "218", "target": "294", "key": "834", "undirected": true }, { "source": "218", "target": "920", "key": "831", "undirected": true }, { "source": "219", "target": "1585", "key": "837", "undirected": true }, { "source": "219", "target": "1609", "key": "835", "undirected": true }, { "source": "219", "target": "1618", "key": "836", "undirected": true }, { "source": "22", "target": "164", "key": "64", "undirected": true }, { "source": "22", "target": "460", "key": "65", "undirected": true }, { "source": "221", "target": "481", "key": "838", "undirected": true }, { "source": "222", "target": "1065", "key": "842", "undirected": true }, { "source": "222", "target": "1217", "key": "844", "undirected": true }, { "source": "222", "target": "1292", "key": "841", "undirected": true }, { "source": "222", "target": "1602", "key": "845", "undirected": true }, { "source": "222", "target": "344", "key": "839", "undirected": true }, { "source": "222", "target": "845", "key": "840", "undirected": true }, { "source": "222", "target": "897", "key": "843", "undirected": true }, { "source": "223", "target": "495", "key": "846", "undirected": true }, { "source": "224", "target": "1247", "key": "847", "undirected": true }, { "source": "224", "target": "1293", "key": "848", "undirected": true }, { "source": "224", "target": "1383", "key": "849", "undirected": true }, { "source": "225", "target": "1064", "key": "851", "undirected": true }, { "source": "225", "target": "1065", "key": "870", "undirected": true }, { "source": "225", "target": "1089", "key": "864", "undirected": true }, { "source": "225", "target": "1159", "key": "863", "undirected": true }, { "source": "225", "target": "1259", "key": "852", "undirected": true }, { "source": "225", "target": "1292", "key": "856", "undirected": true }, { "source": "225", "target": "1570", "key": "868", "undirected": true }, { "source": "225", "target": "1588", "key": "873", "undirected": true }, { "source": "225", "target": "1602", "key": "855", "undirected": true }, { "source": "225", "target": "1603", "key": "866", "undirected": true }, { "source": "225", "target": "1607", "key": "865", "undirected": true }, { "source": "225", "target": "1704", "key": "867", "undirected": true }, { "source": "225", "target": "222", "key": "871", "undirected": true }, { "source": "225", "target": "344", "key": "850", "undirected": true }, { "source": "225", "target": "423", "key": "860", "undirected": true }, { "source": "225", "target": "706", "key": "857", "undirected": true }, { "source": "225", "target": "709", "key": "875", "undirected": true }, { "source": "225", "target": "743", "key": "874", "undirected": true }, { "source": "225", "target": "845", "key": "854", "undirected": true }, { "source": "225", "target": "941", "key": "869", "undirected": true }, { "source": "225", "target": "947", "key": "861", "undirected": true }, { "source": "225", "target": "948", "key": "853", "undirected": true }, { "source": "225", "target": "959", "key": "859", "undirected": true }, { "source": "225", "target": "964", "key": "858", "undirected": true }, { "source": "225", "target": "981", "key": "872", "undirected": true }, { "source": "225", "target": "988", "key": "862", "undirected": true }, { "source": "226", "target": "1260", "key": "880", "undirected": true }, { "source": "226", "target": "1660", "key": "878", "undirected": true }, { "source": "226", "target": "1671", "key": "883", "undirected": true }, { "source": "226", "target": "232", "key": "884", "undirected": true }, { "source": "226", "target": "493", "key": "885", "undirected": true }, { "source": "226", "target": "52", "key": "877", "undirected": true }, { "source": "226", "target": "669", "key": "882", "undirected": true }, { "source": "226", "target": "831", "key": "876", "undirected": true }, { "source": "226", "target": "861", "key": "881", "undirected": true }, { "source": "226", "target": "888", "key": "879", "undirected": true }, { "source": "227", "target": "1430", "key": "888", "undirected": true }, { "source": "227", "target": "1728", "key": "887", "undirected": true }, { "source": "227", "target": "1730", "key": "889", "undirected": true }, { "source": "227", "target": "314", "key": "886", "undirected": true }, { "source": "228", "target": "1232", "key": "891", "undirected": true }, { "source": "228", "target": "1250", "key": "892", "undirected": true }, { "source": "228", "target": "1263", "key": "905", "undirected": true }, { "source": "228", "target": "1266", "key": "904", "undirected": true }, { "source": "228", "target": "1271", "key": "903", "undirected": true }, { "source": "228", "target": "1286", "key": "901", "undirected": true }, { "source": "228", "target": "1301", "key": "898", "undirected": true }, { "source": "228", "target": "1307", "key": "900", "undirected": true }, { "source": "228", "target": "1316", "key": "896", "undirected": true }, { "source": "228", "target": "1333", "key": "897", "undirected": true }, { "source": "228", "target": "1556", "key": "895", "undirected": true }, { "source": "228", "target": "1557", "key": "902", "undirected": true }, { "source": "228", "target": "1649", "key": "906", "undirected": true }, { "source": "228", "target": "1656", "key": "894", "undirected": true }, { "source": "228", "target": "1749", "key": "899", "undirected": true }, { "source": "228", "target": "310", "key": "907", "undirected": true }, { "source": "228", "target": "826", "key": "893", "undirected": true }, { "source": "228", "target": "98", "key": "890", "undirected": true }, { "source": "231", "target": "1383", "key": "908", "undirected": true }, { "source": "231", "target": "412", "key": "909", "undirected": true }, { "source": "231", "target": "747", "key": "910", "undirected": true }, { "source": "232", "target": "1065", "key": "911", "undirected": true }, { "source": "232", "target": "1276", "key": "917", "undirected": true }, { "source": "232", "target": "1660", "key": "916", "undirected": true }, { "source": "232", "target": "1684", "key": "915", "undirected": true }, { "source": "232", "target": "344", "key": "912", "undirected": true }, { "source": "232", "target": "369", "key": "914", "undirected": true }, { "source": "232", "target": "386", "key": "913", "undirected": true }, { "source": "234", "target": "493", "key": "921", "undirected": true }, { "source": "234", "target": "52", "key": "919", "undirected": true }, { "source": "234", "target": "743", "key": "918", "undirected": true }, { "source": "234", "target": "745", "key": "920", "undirected": true }, { "source": "235", "target": "1056", "key": "954", "undirected": true }, { "source": "235", "target": "1089", "key": "939", "undirected": true }, { "source": "235", "target": "1101", "key": "947", "undirected": true }, { "source": "235", "target": "1134", "key": "940", "undirected": true }, { "source": "235", "target": "1136", "key": "923", "undirected": true }, { "source": "235", "target": "1197", "key": "930", "undirected": true }, { "source": "235", "target": "1247", "key": "957", "undirected": true }, { "source": "235", "target": "1293", "key": "942", "undirected": true }, { "source": "235", "target": "1314", "key": "953", "undirected": true }, { "source": "235", "target": "1328", "key": "924", "undirected": true }, { "source": "235", "target": "1381", "key": "937", "undirected": true }, { "source": "235", "target": "1403", "key": "951", "undirected": true }, { "source": "235", "target": "1404", "key": "956", "undirected": true }, { "source": "235", "target": "1408", "key": "935", "undirected": true }, { "source": "235", "target": "1412", "key": "950", "undirected": true }, { "source": "235", "target": "1621", "key": "934", "undirected": true }, { "source": "235", "target": "164", "key": "936", "undirected": true }, { "source": "235", "target": "1685", "key": "929", "undirected": true }, { "source": "235", "target": "1720", "key": "933", "undirected": true }, { "source": "235", "target": "236", "key": "925", "undirected": true }, { "source": "235", "target": "237", "key": "946", "undirected": true }, { "source": "235", "target": "258", "key": "949", "undirected": true }, { "source": "235", "target": "404", "key": "952", "undirected": true }, { "source": "235", "target": "409", "key": "941", "undirected": true }, { "source": "235", "target": "413", "key": "958", "undirected": true }, { "source": "235", "target": "428", "key": "938", "undirected": true }, { "source": "235", "target": "45", "key": "944", "undirected": true }, { "source": "235", "target": "456", "key": "948", "undirected": true }, { "source": "235", "target": "460", "key": "928", "undirected": true }, { "source": "235", "target": "566", "key": "922", "undirected": true }, { "source": "235", "target": "643", "key": "932", "undirected": true }, { "source": "235", "target": "693", "key": "926", "undirected": true }, { "source": "235", "target": "716", "key": "931", "undirected": true }, { "source": "235", "target": "730", "key": "927", "undirected": true }, { "source": "235", "target": "747", "key": "955", "undirected": true }, { "source": "235", "target": "906", "key": "943", "undirected": true }, { "source": "235", "target": "997", "key": "945", "undirected": true }, { "source": "236", "target": "1588", "key": "962", "undirected": true }, { "source": "236", "target": "1665", "key": "961", "undirected": true }, { "source": "236", "target": "237", "key": "959", "undirected": true }, { "source": "236", "target": "307", "key": "960", "undirected": true }, { "source": "237", "target": "1056", "key": "973", "undirected": true }, { "source": "237", "target": "1089", "key": "974", "undirected": true }, { "source": "237", "target": "1134", "key": "965", "undirected": true }, { "source": "237", "target": "1166", "key": "978", "undirected": true }, { "source": "237", "target": "1247", "key": "979", "undirected": true }, { "source": "237", "target": "1293", "key": "977", "undirected": true }, { "source": "237", "target": "1309", "key": "963", "undirected": true }, { "source": "237", "target": "1408", "key": "966", "undirected": true }, { "source": "237", "target": "1653", "key": "972", "undirected": true }, { "source": "237", "target": "1720", "key": "975", "undirected": true }, { "source": "237", "target": "234", "key": "970", "undirected": true }, { "source": "237", "target": "236", "key": "964", "undirected": true }, { "source": "237", "target": "460", "key": "968", "undirected": true }, { "source": "237", "target": "568", "key": "976", "undirected": true }, { "source": "237", "target": "693", "key": "969", "undirected": true }, { "source": "237", "target": "747", "key": "967", "undirected": true }, { "source": "237", "target": "866", "key": "971", "undirected": true }, { "source": "238", "target": "1032", "key": "999", "undirected": true }, { "source": "238", "target": "1214", "key": "980", "undirected": true }, { "source": "238", "target": "1313", "key": "989", "undirected": true }, { "source": "238", "target": "1451", "key": "995", "undirected": true }, { "source": "238", "target": "1516", "key": "981", "undirected": true }, { "source": "238", "target": "1560", "key": "993", "undirected": true }, { "source": "238", "target": "1664", "key": "997", "undirected": true }, { "source": "238", "target": "243", "key": "983", "undirected": true }, { "source": "238", "target": "306", "key": "987", "undirected": true }, { "source": "238", "target": "542", "key": "991", "undirected": true }, { "source": "238", "target": "551", "key": "994", "undirected": true }, { "source": "238", "target": "563", "key": "988", "undirected": true }, { "source": "238", "target": "588", "key": "996", "undirected": true }, { "source": "238", "target": "61", "key": "992", "undirected": true }, { "source": "238", "target": "612", "key": "986", "undirected": true }, { "source": "238", "target": "630", "key": "990", "undirected": true }, { "source": "238", "target": "635", "key": "982", "undirected": true }, { "source": "238", "target": "811", "key": "985", "undirected": true }, { "source": "238", "target": "816", "key": "984", "undirected": true }, { "source": "238", "target": "818", "key": "998", "undirected": true }, { "source": "239", "target": "795", "key": "1000", "undirected": true }, { "source": "24", "target": "1118", "key": "69", "undirected": true }, { "source": "24", "target": "1381", "key": "68", "undirected": true }, { "source": "24", "target": "460", "key": "67", "undirected": true }, { "source": "24", "target": "514", "key": "66", "undirected": true }, { "source": "242", "target": "1030", "key": "1033", "undirected": true }, { "source": "242", "target": "1067", "key": "1018", "undirected": true }, { "source": "242", "target": "1076", "key": "1017", "undirected": true }, { "source": "242", "target": "1103", "key": "1032", "undirected": true }, { "source": "242", "target": "1158", "key": "1005", "undirected": true }, { "source": "242", "target": "1168", "key": "1016", "undirected": true }, { "source": "242", "target": "1244", "key": "1031", "undirected": true }, { "source": "242", "target": "1352", "key": "1001", "undirected": true }, { "source": "242", "target": "1439", "key": "1030", "undirected": true }, { "source": "242", "target": "1476", "key": "1045", "undirected": true }, { "source": "242", "target": "1480", "key": "1014", "undirected": true }, { "source": "242", "target": "1497", "key": "1029", "undirected": true }, { "source": "242", "target": "1511", "key": "1028", "undirected": true }, { "source": "242", "target": "1521", "key": "1002", "undirected": true }, { "source": "242", "target": "1541", "key": "1041", "undirected": true }, { "source": "242", "target": "1550", "key": "1043", "undirected": true }, { "source": "242", "target": "1551", "key": "1003", "undirected": true }, { "source": "242", "target": "1553", "key": "1042", "undirected": true }, { "source": "242", "target": "1563", "key": "1040", "undirected": true }, { "source": "242", "target": "1571", "key": "1039", "undirected": true }, { "source": "242", "target": "1598", "key": "1035", "undirected": true }, { "source": "242", "target": "1601", "key": "1047", "undirected": true }, { "source": "242", "target": "1645", "key": "1009", "undirected": true }, { "source": "242", "target": "1650", "key": "1027", "undirected": true }, { "source": "242", "target": "1653", "key": "1026", "undirected": true }, { "source": "242", "target": "1661", "key": "1013", "undirected": true }, { "source": "242", "target": "1703", "key": "1012", "undirected": true }, { "source": "242", "target": "1727", "key": "1015", "undirected": true }, { "source": "242", "target": "206", "key": "1025", "undirected": true }, { "source": "242", "target": "377", "key": "1038", "undirected": true }, { "source": "242", "target": "48", "key": "1046", "undirected": true }, { "source": "242", "target": "490", "key": "1044", "undirected": true }, { "source": "242", "target": "506", "key": "1010", "undirected": true }, { "source": "242", "target": "639", "key": "1004", "undirected": true }, { "source": "242", "target": "646", "key": "1036", "undirected": true }, { "source": "242", "target": "669", "key": "1024", "undirected": true }, { "source": "242", "target": "696", "key": "1023", "undirected": true }, { "source": "242", "target": "715", "key": "1022", "undirected": true }, { "source": "242", "target": "736", "key": "1008", "undirected": true }, { "source": "242", "target": "753", "key": "1037", "undirected": true }, { "source": "242", "target": "811", "key": "1007", "undirected": true }, { "source": "242", "target": "930", "key": "1006", "undirected": true }, { "source": "242", "target": "936", "key": "1011", "undirected": true }, { "source": "242", "target": "971", "key": "1020", "undirected": true }, { "source": "242", "target": "977", "key": "1021", "undirected": true }, { "source": "242", "target": "983", "key": "1019", "undirected": true }, { "source": "242", "target": "987", "key": "1034", "undirected": true }, { "source": "243", "target": "1104", "key": "1060", "undirected": true }, { "source": "243", "target": "1250", "key": "1059", "undirected": true }, { "source": "243", "target": "1542", "key": "1050", "undirected": true }, { "source": "243", "target": "203", "key": "1051", "undirected": true }, { "source": "243", "target": "238", "key": "1062", "undirected": true }, { "source": "243", "target": "242", "key": "1054", "undirected": true }, { "source": "243", "target": "281", "key": "1061", "undirected": true }, { "source": "243", "target": "408", "key": "1057", "undirected": true }, { "source": "243", "target": "596", "key": "1052", "undirected": true }, { "source": "243", "target": "634", "key": "1048", "undirected": true }, { "source": "243", "target": "639", "key": "1056", "undirected": true }, { "source": "243", "target": "649", "key": "1055", "undirected": true }, { "source": "243", "target": "698", "key": "1053", "undirected": true }, { "source": "243", "target": "960", "key": "1049", "undirected": true }, { "source": "243", "target": "988", "key": "1058", "undirected": true }, { "source": "244", "target": "1486", "key": "1063", "undirected": true }, { "source": "248", "target": "1002", "key": "1064", "undirected": true }, { "source": "248", "target": "256", "key": "1066", "undirected": true }, { "source": "248", "target": "413", "key": "1067", "undirected": true }, { "source": "248", "target": "415", "key": "1068", "undirected": true }, { "source": "248", "target": "460", "key": "1065", "undirected": true }, { "source": "249", "target": "1261", "key": "1071", "undirected": true }, { "source": "249", "target": "426", "key": "1069", "undirected": true }, { "source": "249", "target": "451", "key": "1070", "undirected": true }, { "source": "251", "target": "1013", "key": "1072", "undirected": true }, { "source": "251", "target": "1261", "key": "1074", "undirected": true }, { "source": "251", "target": "426", "key": "1077", "undirected": true }, { "source": "251", "target": "451", "key": "1073", "undirected": true }, { "source": "251", "target": "460", "key": "1076", "undirected": true }, { "source": "251", "target": "811", "key": "1075", "undirected": true }, { "source": "253", "target": "1566", "key": "1078", "undirected": true }, { "source": "257", "target": "1092", "key": "1089", "undirected": true }, { "source": "257", "target": "1206", "key": "1087", "undirected": true }, { "source": "257", "target": "1240", "key": "1085", "undirected": true }, { "source": "257", "target": "1610", "key": "1084", "undirected": true }, { "source": "257", "target": "1611", "key": "1083", "undirected": true }, { "source": "257", "target": "218", "key": "1081", "undirected": true }, { "source": "257", "target": "255", "key": "1086", "undirected": true }, { "source": "257", "target": "289", "key": "1090", "undirected": true }, { "source": "257", "target": "294", "key": "1088", "undirected": true }, { "source": "257", "target": "332", "key": "1079", "undirected": true }, { "source": "257", "target": "389", "key": "1080", "undirected": true }, { "source": "257", "target": "580", "key": "1082", "undirected": true }, { "source": "258", "target": "1067", "key": "1107", "undirected": true }, { "source": "258", "target": "1089", "key": "1092", "undirected": true }, { "source": "258", "target": "1281", "key": "1109", "undirected": true }, { "source": "258", "target": "1602", "key": "1094", "undirected": true }, { "source": "258", "target": "164", "key": "1098", "undirected": true }, { "source": "258", "target": "1704", "key": "1106", "undirected": true }, { "source": "258", "target": "1720", "key": "1097", "undirected": true }, { "source": "258", "target": "45", "key": "1100", "undirected": true }, { "source": "258", "target": "485", "key": "1093", "undirected": true }, { "source": "258", "target": "498", "key": "1105", "undirected": true }, { "source": "258", "target": "500", "key": "1096", "undirected": true }, { "source": "258", "target": "52", "key": "1101", "undirected": true }, { "source": "258", "target": "566", "key": "1103", "undirected": true }, { "source": "258", "target": "590", "key": "1104", "undirected": true }, { "source": "258", "target": "716", "key": "1102", "undirected": true }, { "source": "258", "target": "773", "key": "1091", "undirected": true }, { "source": "258", "target": "831", "key": "1108", "undirected": true }, { "source": "258", "target": "862", "key": "1099", "undirected": true }, { "source": "258", "target": "994", "key": "1095", "undirected": true }, { "source": "26", "target": "1087", "key": "72", "undirected": true }, { "source": "26", "target": "1495", "key": "70", "undirected": true }, { "source": "26", "target": "585", "key": "71", "undirected": true }, { "source": "26", "target": "628", "key": "73", "undirected": true }, { "source": "264", "target": "1381", "key": "1112", "undirected": true }, { "source": "264", "target": "235", "key": "1111", "undirected": true }, { "source": "264", "target": "598", "key": "1110", "undirected": true }, { "source": "265", "target": "680", "key": "1113", "undirected": true }, { "source": "266", "target": "1158", "key": "1116", "undirected": true }, { "source": "266", "target": "151", "key": "1118", "undirected": true }, { "source": "266", "target": "1594", "key": "1117", "undirected": true }, { "source": "266", "target": "1626", "key": "1114", "undirected": true }, { "source": "266", "target": "909", "key": "1115", "undirected": true }, { "source": "267", "target": "1232", "key": "1119", "undirected": true }, { "source": "269", "target": "1560", "key": "1122", "undirected": true }, { "source": "269", "target": "547", "key": "1120", "undirected": true }, { "source": "269", "target": "551", "key": "1123", "undirected": true }, { "source": "269", "target": "57", "key": "1121", "undirected": true }, { "source": "27", "target": "1588", "key": "74", "undirected": true }, { "source": "271", "target": "1182", "key": "1124", "undirected": true }, { "source": "273", "target": "1588", "key": "1128", "undirected": true }, { "source": "273", "target": "1594", "key": "1126", "undirected": true }, { "source": "273", "target": "1632", "key": "1127", "undirected": true }, { "source": "273", "target": "1649", "key": "1132", "undirected": true }, { "source": "273", "target": "1655", "key": "1129", "undirected": true }, { "source": "273", "target": "266", "key": "1125", "undirected": true }, { "source": "273", "target": "267", "key": "1130", "undirected": true }, { "source": "273", "target": "274", "key": "1133", "undirected": true }, { "source": "273", "target": "275", "key": "1131", "undirected": true }, { "source": "275", "target": "19", "key": "1134", "undirected": true }, { "source": "277", "target": "1368", "key": "1135", "undirected": true }, { "source": "277", "target": "1466", "key": "1136", "undirected": true }, { "source": "277", "target": "1589", "key": "1137", "undirected": true }, { "source": "277", "target": "1704", "key": "1138", "undirected": true }, { "source": "277", "target": "978", "key": "1139", "undirected": true }, { "source": "279", "target": "1003", "key": "1144", "undirected": true }, { "source": "279", "target": "1069", "key": "1143", "undirected": true }, { "source": "279", "target": "1157", "key": "1141", "undirected": true }, { "source": "279", "target": "1284", "key": "1153", "undirected": true }, { "source": "279", "target": "1422", "key": "1149", "undirected": true }, { "source": "279", "target": "1476", "key": "1147", "undirected": true }, { "source": "279", "target": "1553", "key": "1146", "undirected": true }, { "source": "279", "target": "1645", "key": "1151", "undirected": true }, { "source": "279", "target": "1653", "key": "1152", "undirected": true }, { "source": "279", "target": "1661", "key": "1145", "undirected": true }, { "source": "279", "target": "206", "key": "1142", "undirected": true }, { "source": "279", "target": "715", "key": "1140", "undirected": true }, { "source": "279", "target": "936", "key": "1150", "undirected": true }, { "source": "279", "target": "977", "key": "1148", "undirected": true }, { "source": "286", "target": "1015", "key": "1154", "undirected": true }, { "source": "286", "target": "1045", "key": "1157", "undirected": true }, { "source": "286", "target": "592", "key": "1155", "undirected": true }, { "source": "286", "target": "791", "key": "1156", "undirected": true }, { "source": "288", "target": "156", "key": "1164", "undirected": true }, { "source": "288", "target": "1602", "key": "1162", "undirected": true }, { "source": "288", "target": "1603", "key": "1163", "undirected": true }, { "source": "288", "target": "1607", "key": "1161", "undirected": true }, { "source": "288", "target": "1660", "key": "1167", "undirected": true }, { "source": "288", "target": "676", "key": "1169", "undirected": true }, { "source": "288", "target": "741", "key": "1160", "undirected": true }, { "source": "288", "target": "743", "key": "1159", "undirected": true }, { "source": "288", "target": "746", "key": "1158", "undirected": true }, { "source": "288", "target": "888", "key": "1165", "undirected": true }, { "source": "288", "target": "922", "key": "1166", "undirected": true }, { "source": "288", "target": "947", "key": "1168", "undirected": true }, { "source": "288", "target": "959", "key": "1170", "undirected": true }, { "source": "289", "target": "1611", "key": "1171", "undirected": true }, { "source": "29", "target": "639", "key": "75", "undirected": true }, { "source": "290", "target": "221", "key": "1172", "undirected": true }, { "source": "291", "target": "1611", "key": "1173", "undirected": true }, { "source": "299", "target": "520", "key": "1174", "undirected": true }, { "source": "301", "target": "1182", "key": "1178", "undirected": true }, { "source": "301", "target": "1703", "key": "1175", "undirected": true }, { "source": "301", "target": "1704", "key": "1177", "undirected": true }, { "source": "301", "target": "1749", "key": "1176", "undirected": true }, { "source": "301", "target": "909", "key": "1179", "undirected": true }, { "source": "302", "target": "1202", "key": "1181", "undirected": true }, { "source": "302", "target": "321", "key": "1182", "undirected": true }, { "source": "302", "target": "344", "key": "1184", "undirected": true }, { "source": "302", "target": "639", "key": "1180", "undirected": true }, { "source": "302", "target": "657", "key": "1183", "undirected": true }, { "source": "303", "target": "1075", "key": "1187", "undirected": true }, { "source": "303", "target": "1144", "key": "1190", "undirected": true }, { "source": "303", "target": "1203", "key": "1193", "undirected": true }, { "source": "303", "target": "1429", "key": "1188", "undirected": true }, { "source": "303", "target": "1461", "key": "1185", "undirected": true }, { "source": "303", "target": "1739", "key": "1192", "undirected": true }, { "source": "303", "target": "333", "key": "1189", "undirected": true }, { "source": "303", "target": "397", "key": "1194", "undirected": true }, { "source": "303", "target": "666", "key": "1186", "undirected": true }, { "source": "303", "target": "79", "key": "1191", "undirected": true }, { "source": "306", "target": "1202", "key": "1195", "undirected": true }, { "source": "306", "target": "1304", "key": "1198", "undirected": true }, { "source": "306", "target": "409", "key": "1197", "undirected": true }, { "source": "306", "target": "563", "key": "1196", "undirected": true }, { "source": "307", "target": "1665", "key": "1200", "undirected": true }, { "source": "307", "target": "485", "key": "1199", "undirected": true }, { "source": "308", "target": "1169", "key": "1211", "undirected": true }, { "source": "308", "target": "1331", "key": "1209", "undirected": true }, { "source": "308", "target": "1438", "key": "1208", "undirected": true }, { "source": "308", "target": "1485", "key": "1207", "undirected": true }, { "source": "308", "target": "1614", "key": "1203", "undirected": true }, { "source": "308", "target": "1631", "key": "1206", "undirected": true }, { "source": "308", "target": "1669", "key": "1210", "undirected": true }, { "source": "308", "target": "319", "key": "1205", "undirected": true }, { "source": "308", "target": "330", "key": "1202", "undirected": true }, { "source": "308", "target": "333", "key": "1201", "undirected": true }, { "source": "308", "target": "764", "key": "1212", "undirected": true }, { "source": "308", "target": "814", "key": "1204", "undirected": true }, { "source": "31", "target": "1114", "key": "79", "undirected": true }, { "source": "31", "target": "1559", "key": "80", "undirected": true }, { "source": "31", "target": "1617", "key": "81", "undirected": true }, { "source": "31", "target": "1631", "key": "76", "undirected": true }, { "source": "31", "target": "242", "key": "77", "undirected": true }, { "source": "31", "target": "55", "key": "78", "undirected": true }, { "source": "310", "target": "1030", "key": "1217", "attributes": { "weight": 2 }, "undirected": true }, { "source": "310", "target": "1244", "key": "1218", "attributes": { "weight": 2 }, "undirected": true }, { "source": "310", "target": "1250", "key": "1222", "attributes": { "weight": 2 }, "undirected": true }, { "source": "310", "target": "1562", "key": "1220", "attributes": { "weight": 2 }, "undirected": true }, { "source": "310", "target": "1563", "key": "1219", "attributes": { "weight": 2 }, "undirected": true }, { "source": "310", "target": "1591", "key": "1215", "attributes": { "weight": 2 }, "undirected": true }, { "source": "310", "target": "1614", "key": "1221", "attributes": { "weight": 2 }, "undirected": true }, { "source": "310", "target": "1622", "key": "1214", "attributes": { "weight": 2 }, "undirected": true }, { "source": "310", "target": "682", "key": "1213", "attributes": { "weight": 2 }, "undirected": true }, { "source": "310", "target": "995", "key": "1216", "attributes": { "weight": 2 }, "undirected": true }, { "source": "312", "target": "1089", "key": "1235", "undirected": true }, { "source": "312", "target": "1247", "key": "1236", "undirected": true }, { "source": "312", "target": "1254", "key": "1241", "undirected": true }, { "source": "312", "target": "1293", "key": "1239", "undirected": true }, { "source": "312", "target": "456", "key": "1238", "undirected": true }, { "source": "312", "target": "460", "key": "1237", "undirected": true }, { "source": "312", "target": "554", "key": "1233", "undirected": true }, { "source": "312", "target": "673", "key": "1234", "undirected": true }, { "source": "312", "target": "766", "key": "1240", "undirected": true }, { "source": "313", "target": "1114", "key": "1259", "undirected": true }, { "source": "313", "target": "1169", "key": "1258", "undirected": true }, { "source": "313", "target": "1373", "key": "1257", "undirected": true }, { "source": "313", "target": "1438", "key": "1248", "undirected": true }, { "source": "313", "target": "1485", "key": "1247", "undirected": true }, { "source": "313", "target": "1554", "key": "1253", "undirected": true }, { "source": "313", "target": "1559", "key": "1254", "undirected": true }, { "source": "313", "target": "1571", "key": "1242", "undirected": true }, { "source": "313", "target": "1581", "key": "1249", "undirected": true }, { "source": "313", "target": "1584", "key": "1260", "undirected": true }, { "source": "313", "target": "1589", "key": "1244", "undirected": true }, { "source": "313", "target": "1614", "key": "1256", "undirected": true }, { "source": "313", "target": "1615", "key": "1255", "undirected": true }, { "source": "313", "target": "1616", "key": "1252", "undirected": true }, { "source": "313", "target": "1617", "key": "1261", "undirected": true }, { "source": "313", "target": "1631", "key": "1250", "undirected": true }, { "source": "313", "target": "1669", "key": "1262", "undirected": true }, { "source": "313", "target": "274", "key": "1243", "undirected": true }, { "source": "313", "target": "319", "key": "1264", "undirected": true }, { "source": "313", "target": "333", "key": "1246", "undirected": true }, { "source": "313", "target": "347", "key": "1263", "undirected": true }, { "source": "313", "target": "398", "key": "1251", "undirected": true }, { "source": "313", "target": "981", "key": "1245", "undirected": true }, { "source": "314", "target": "1042", "key": "1266", "undirected": true }, { "source": "314", "target": "1080", "key": "1273", "undirected": true }, { "source": "314", "target": "1386", "key": "1270", "undirected": true }, { "source": "314", "target": "1430", "key": "1278", "undirected": true }, { "source": "314", "target": "1611", "key": "1275", "undirected": true }, { "source": "314", "target": "1728", "key": "1277", "undirected": true }, { "source": "314", "target": "1730", "key": "1279", "undirected": true }, { "source": "314", "target": "212", "key": "1269", "undirected": true }, { "source": "314", "target": "221", "key": "1268", "undirected": true }, { "source": "314", "target": "227", "key": "1271", "undirected": true }, { "source": "314", "target": "289", "key": "1276", "undirected": true }, { "source": "314", "target": "291", "key": "1274", "undirected": true }, { "source": "314", "target": "316", "key": "1265", "undirected": true }, { "source": "314", "target": "318", "key": "1272", "undirected": true }, { "source": "314", "target": "396", "key": "1280", "undirected": true }, { "source": "314", "target": "481", "key": "1267", "undirected": true }, { "source": "316", "target": "314", "key": "1281", "undirected": true }, { "source": "319", "target": "1169", "key": "1295", "undirected": true }, { "source": "319", "target": "119", "key": "1285", "undirected": true }, { "source": "319", "target": "1203", "key": "1298", "undirected": true }, { "source": "319", "target": "1331", "key": "1288", "undirected": true }, { "source": "319", "target": "1373", "key": "1284", "undirected": true }, { "source": "319", "target": "1438", "key": "1296", "undirected": true }, { "source": "319", "target": "1485", "key": "1293", "undirected": true }, { "source": "319", "target": "1554", "key": "1283", "undirected": true }, { "source": "319", "target": "1559", "key": "1292", "undirected": true }, { "source": "319", "target": "1581", "key": "1291", "undirected": true }, { "source": "319", "target": "1584", "key": "1290", "undirected": true }, { "source": "319", "target": "1614", "key": "1294", "undirected": true }, { "source": "319", "target": "1617", "key": "1287", "undirected": true }, { "source": "319", "target": "1631", "key": "1289", "undirected": true }, { "source": "319", "target": "313", "key": "1297", "undirected": true }, { "source": "319", "target": "333", "key": "1299", "undirected": true }, { "source": "319", "target": "342", "key": "1286", "undirected": true }, { "source": "319", "target": "397", "key": "1282", "undirected": true }, { "source": "319", "target": "533", "key": "1300", "undirected": true }, { "source": "32", "target": "1427", "key": "82", "undirected": true }, { "source": "321", "target": "1185", "key": "1305", "undirected": true }, { "source": "321", "target": "1209", "key": "1303", "undirected": true }, { "source": "321", "target": "1483", "key": "1306", "undirected": true }, { "source": "321", "target": "1659", "key": "1302", "undirected": true }, { "source": "321", "target": "300", "key": "1307", "undirected": true }, { "source": "321", "target": "339", "key": "1310", "undirected": true }, { "source": "321", "target": "358", "key": "1304", "undirected": true }, { "source": "321", "target": "369", "key": "1309", "undirected": true }, { "source": "321", "target": "639", "key": "1301", "undirected": true }, { "source": "321", "target": "735", "key": "1308", "undirected": true }, { "source": "324", "target": "156", "key": "1313", "undirected": true }, { "source": "324", "target": "226", "key": "1317", "undirected": true }, { "source": "324", "target": "232", "key": "1320", "undirected": true }, { "source": "324", "target": "288", "key": "1314", "undirected": true }, { "source": "324", "target": "295", "key": "1325", "undirected": true }, { "source": "324", "target": "424", "key": "1323", "undirected": true }, { "source": "324", "target": "429", "key": "1324", "undirected": true }, { "source": "324", "target": "435", "key": "1326", "undirected": true }, { "source": "324", "target": "481", "key": "1315", "undirected": true }, { "source": "324", "target": "497", "key": "1322", "undirected": true }, { "source": "324", "target": "517", "key": "1318", "undirected": true }, { "source": "324", "target": "52", "key": "1319", "undirected": true }, { "source": "324", "target": "589", "key": "1321", "undirected": true }, { "source": "324", "target": "739", "key": "1312", "undirected": true }, { "source": "324", "target": "743", "key": "1311", "undirected": true }, { "source": "324", "target": "947", "key": "1316", "undirected": true }, { "source": "324", "target": "948", "key": "1327", "undirected": true }, { "source": "325", "target": "1113", "key": "1328", "undirected": true }, { "source": "326", "target": "1195", "key": "1329", "undirected": true }, { "source": "327", "target": "985", "key": "1330", "undirected": true }, { "source": "328", "target": "948", "key": "1331", "undirected": true }, { "source": "33", "target": "353", "key": "83", "undirected": true }, { "source": "333", "target": "1044", "key": "1337", "undirected": true }, { "source": "333", "target": "1075", "key": "1374", "undirected": true }, { "source": "333", "target": "1104", "key": "1340", "undirected": true }, { "source": "333", "target": "1169", "key": "1353", "undirected": true }, { "source": "333", "target": "119", "key": "1354", "undirected": true }, { "source": "333", "target": "1202", "key": "1335", "undirected": true }, { "source": "333", "target": "1203", "key": "1336", "undirected": true }, { "source": "333", "target": "1237", "key": "1366", "undirected": true }, { "source": "333", "target": "1275", "key": "1376", "undirected": true }, { "source": "333", "target": "1311", "key": "1367", "undirected": true }, { "source": "333", "target": "1331", "key": "1349", "undirected": true }, { "source": "333", "target": "1373", "key": "1352", "undirected": true }, { "source": "333", "target": "1429", "key": "1362", "undirected": true }, { "source": "333", "target": "1438", "key": "1342", "undirected": true }, { "source": "333", "target": "1461", "key": "1371", "undirected": true }, { "source": "333", "target": "1470", "key": "1365", "undirected": true }, { "source": "333", "target": "1485", "key": "1346", "undirected": true }, { "source": "333", "target": "1555", "key": "1344", "undirected": true }, { "source": "333", "target": "1559", "key": "1351", "undirected": true }, { "source": "333", "target": "1581", "key": "1355", "undirected": true }, { "source": "333", "target": "1584", "key": "1345", "undirected": true }, { "source": "333", "target": "1614", "key": "1357", "undirected": true }, { "source": "333", "target": "1617", "key": "1350", "undirected": true }, { "source": "333", "target": "1631", "key": "1356", "undirected": true }, { "source": "333", "target": "1640", "key": "1360", "undirected": true }, { "source": "333", "target": "195", "key": "1339", "undirected": true }, { "source": "333", "target": "303", "key": "1334", "undirected": true }, { "source": "333", "target": "308", "key": "1332", "undirected": true }, { "source": "333", "target": "313", "key": "1348", "undirected": true }, { "source": "333", "target": "319", "key": "1347", "undirected": true }, { "source": "333", "target": "338", "key": "1333", "undirected": true }, { "source": "333", "target": "342", "key": "1377", "undirected": true }, { "source": "333", "target": "347", "key": "1343", "undirected": true }, { "source": "333", "target": "349", "key": "1379", "undirected": true }, { "source": "333", "target": "35", "key": "1368", "undirected": true }, { "source": "333", "target": "468", "key": "1364", "undirected": true }, { "source": "333", "target": "5", "key": "1369", "undirected": true }, { "source": "333", "target": "537", "key": "1341", "undirected": true }, { "source": "333", "target": "639", "key": "1359", "undirected": true }, { "source": "333", "target": "764", "key": "1373", "undirected": true }, { "source": "333", "target": "772", "key": "1378", "undirected": true }, { "source": "333", "target": "83", "key": "1370", "undirected": true }, { "source": "333", "target": "87", "key": "1375", "undirected": true }, { "source": "333", "target": "877", "key": "1338", "undirected": true }, { "source": "333", "target": "884", "key": "1363", "undirected": true }, { "source": "333", "target": "895", "key": "1372", "undirected": true }, { "source": "333", "target": "896", "key": "1358", "undirected": true }, { "source": "333", "target": "912", "key": "1361", "undirected": true }, { "source": "334", "target": "333", "key": "1380", "undirected": true }, { "source": "335", "target": "333", "key": "1381", "undirected": true }, { "source": "337", "target": "333", "key": "1382", "undirected": true }, { "source": "340", "target": "1602", "key": "1386", "undirected": true }, { "source": "340", "target": "1603", "key": "1383", "undirected": true }, { "source": "340", "target": "1684", "key": "1384", "undirected": true }, { "source": "340", "target": "366", "key": "1387", "undirected": true }, { "source": "340", "target": "790", "key": "1385", "undirected": true }, { "source": "341", "target": "536", "key": "1388", "undirected": true }, { "source": "344", "target": "1065", "key": "1394", "undirected": true }, { "source": "344", "target": "1158", "key": "1424", "undirected": true }, { "source": "344", "target": "1159", "key": "1401", "undirected": true }, { "source": "344", "target": "1202", "key": "1423", "undirected": true }, { "source": "344", "target": "1217", "key": "1437", "undirected": true }, { "source": "344", "target": "1259", "key": "1392", "undirected": true }, { "source": "344", "target": "1276", "key": "1455", "undirected": true }, { "source": "344", "target": "1290", "key": "1405", "undirected": true }, { "source": "344", "target": "1292", "key": "1407", "undirected": true }, { "source": "344", "target": "1304", "key": "1446", "undirected": true }, { "source": "344", "target": "1319", "key": "1445", "undirected": true }, { "source": "344", "target": "1351", "key": "1389", "undirected": true }, { "source": "344", "target": "1410", "key": "1390", "undirected": true }, { "source": "344", "target": "1521", "key": "1420", "undirected": true }, { "source": "344", "target": "156", "key": "1411", "undirected": true }, { "source": "344", "target": "1570", "key": "1412", "undirected": true }, { "source": "344", "target": "1580", "key": "1439", "undirected": true }, { "source": "344", "target": "1588", "key": "1444", "undirected": true }, { "source": "344", "target": "1602", "key": "1413", "undirected": true }, { "source": "344", "target": "1603", "key": "1440", "undirected": true }, { "source": "344", "target": "1607", "key": "1441", "undirected": true }, { "source": "344", "target": "1660", "key": "1434", "undirected": true }, { "source": "344", "target": "1671", "key": "1432", "undirected": true }, { "source": "344", "target": "1684", "key": "1414", "undirected": true }, { "source": "344", "target": "1687", "key": "1428", "undirected": true }, { "source": "344", "target": "1691", "key": "1410", "undirected": true }, { "source": "344", "target": "1704", "key": "1403", "undirected": true }, { "source": "344", "target": "1727", "key": "1450", "undirected": true }, { "source": "344", "target": "208", "key": "1425", "undirected": true }, { "source": "344", "target": "214", "key": "1449", "undirected": true }, { "source": "344", "target": "222", "key": "1400", "undirected": true }, { "source": "344", "target": "225", "key": "1397", "undirected": true }, { "source": "344", "target": "27", "key": "1451", "undirected": true }, { "source": "344", "target": "328", "key": "1427", "undirected": true }, { "source": "344", "target": "353", "key": "1402", "undirected": true }, { "source": "344", "target": "383", "key": "1433", "undirected": true }, { "source": "344", "target": "386", "key": "1436", "undirected": true }, { "source": "344", "target": "423", "key": "1393", "undirected": true }, { "source": "344", "target": "460", "key": "1421", "undirected": true }, { "source": "344", "target": "481", "key": "1416", "undirected": true }, { "source": "344", "target": "497", "key": "1415", "undirected": true }, { "source": "344", "target": "53", "key": "1419", "undirected": true }, { "source": "344", "target": "535", "key": "1452", "undirected": true }, { "source": "344", "target": "54", "key": "1391", "undirected": true }, { "source": "344", "target": "563", "key": "1422", "undirected": true }, { "source": "344", "target": "632", "key": "1406", "undirected": true }, { "source": "344", "target": "639", "key": "1417", "undirected": true }, { "source": "344", "target": "659", "key": "1438", "undirected": true }, { "source": "344", "target": "667", "key": "1409", "undirected": true }, { "source": "344", "target": "706", "key": "1395", "undirected": true }, { "source": "344", "target": "723", "key": "1426", "undirected": true }, { "source": "344", "target": "736", "key": "1418", "undirected": true }, { "source": "344", "target": "740", "key": "1431", "undirected": true }, { "source": "344", "target": "743", "key": "1408", "undirected": true }, { "source": "344", "target": "790", "key": "1404", "undirected": true }, { "source": "344", "target": "831", "key": "1448", "undirected": true }, { "source": "344", "target": "857", "key": "1442", "undirected": true }, { "source": "344", "target": "862", "key": "1453", "undirected": true }, { "source": "344", "target": "888", "key": "1435", "undirected": true }, { "source": "344", "target": "897", "key": "1454", "undirected": true }, { "source": "344", "target": "926", "key": "1430", "undirected": true }, { "source": "344", "target": "947", "key": "1396", "undirected": true }, { "source": "344", "target": "948", "key": "1429", "undirected": true }, { "source": "344", "target": "959", "key": "1399", "undirected": true }, { "source": "344", "target": "964", "key": "1398", "undirected": true }, { "source": "344", "target": "981", "key": "1443", "undirected": true }, { "source": "344", "target": "988", "key": "1447", "undirected": true }, { "source": "347", "target": "1169", "key": "1460", "undirected": true }, { "source": "347", "target": "1201", "key": "1480", "undirected": true }, { "source": "347", "target": "1203", "key": "1456", "undirected": true }, { "source": "347", "target": "1238", "key": "1487", "undirected": true }, { "source": "347", "target": "1373", "key": "1466", "undirected": true }, { "source": "347", "target": "1438", "key": "1465", "undirected": true }, { "source": "347", "target": "1485", "key": "1470", "undirected": true }, { "source": "347", "target": "1554", "key": "1462", "undirected": true }, { "source": "347", "target": "1559", "key": "1468", "undirected": true }, { "source": "347", "target": "1581", "key": "1461", "undirected": true }, { "source": "347", "target": "1584", "key": "1458", "undirected": true }, { "source": "347", "target": "1602", "key": "1479", "undirected": true }, { "source": "347", "target": "1603", "key": "1476", "undirected": true }, { "source": "347", "target": "1614", "key": "1464", "undirected": true }, { "source": "347", "target": "1616", "key": "1459", "undirected": true }, { "source": "347", "target": "1617", "key": "1457", "undirected": true }, { "source": "347", "target": "1631", "key": "1463", "undirected": true }, { "source": "347", "target": "1669", "key": "1481", "undirected": true }, { "source": "347", "target": "1704", "key": "1478", "undirected": true }, { "source": "347", "target": "1742", "key": "1472", "undirected": true }, { "source": "347", "target": "175", "key": "1473", "undirected": true }, { "source": "347", "target": "313", "key": "1467", "undirected": true }, { "source": "347", "target": "319", "key": "1471", "undirected": true }, { "source": "347", "target": "333", "key": "1477", "undirected": true }, { "source": "347", "target": "342", "key": "1485", "undirected": true }, { "source": "347", "target": "397", "key": "1483", "undirected": true }, { "source": "347", "target": "398", "key": "1469", "undirected": true }, { "source": "347", "target": "470", "key": "1488", "undirected": true }, { "source": "347", "target": "589", "key": "1474", "undirected": true }, { "source": "347", "target": "608", "key": "1484", "undirected": true }, { "source": "347", "target": "670", "key": "1475", "undirected": true }, { "source": "347", "target": "717", "key": "1486", "undirected": true }, { "source": "347", "target": "731", "key": "1482", "undirected": true }, { "source": "348", "target": "489", "key": "1489", "undirected": true }, { "source": "349", "target": "1094", "key": "1496", "undirected": true }, { "source": "349", "target": "1554", "key": "1491", "undirected": true }, { "source": "349", "target": "1581", "key": "1492", "undirected": true }, { "source": "349", "target": "333", "key": "1494", "undirected": true }, { "source": "349", "target": "342", "key": "1493", "undirected": true }, { "source": "349", "target": "397", "key": "1490", "undirected": true }, { "source": "349", "target": "614", "key": "1495", "undirected": true }, { "source": "349", "target": "717", "key": "1497", "undirected": true }, { "source": "350", "target": "344", "key": "1498", "undirected": true }, { "source": "351", "target": "368", "key": "1499", "undirected": true }, { "source": "351", "target": "888", "key": "1500", "undirected": true }, { "source": "352", "target": "372", "key": "1501", "undirected": true }, { "source": "353", "target": "1159", "key": "1507", "undirected": true }, { "source": "353", "target": "1351", "key": "1508", "undirected": true }, { "source": "353", "target": "1580", "key": "1509", "undirected": true }, { "source": "353", "target": "1602", "key": "1510", "undirected": true }, { "source": "353", "target": "225", "key": "1503", "undirected": true }, { "source": "353", "target": "344", "key": "1502", "undirected": true }, { "source": "353", "target": "386", "key": "1504", "undirected": true }, { "source": "353", "target": "52", "key": "1506", "undirected": true }, { "source": "353", "target": "639", "key": "1512", "undirected": true }, { "source": "353", "target": "857", "key": "1505", "undirected": true }, { "source": "353", "target": "926", "key": "1511", "undirected": true }, { "source": "356", "target": "1032", "key": "1523", "undirected": true }, { "source": "356", "target": "1313", "key": "1519", "undirected": true }, { "source": "356", "target": "1367", "key": "1516", "undirected": true }, { "source": "356", "target": "1426", "key": "1514", "undirected": true }, { "source": "356", "target": "269", "key": "1518", "undirected": true }, { "source": "356", "target": "547", "key": "1522", "undirected": true }, { "source": "356", "target": "551", "key": "1515", "undirected": true }, { "source": "356", "target": "588", "key": "1520", "undirected": true }, { "source": "356", "target": "592", "key": "1521", "undirected": true }, { "source": "356", "target": "630", "key": "1517", "undirected": true }, { "source": "356", "target": "791", "key": "1513", "undirected": true }, { "source": "356", "target": "816", "key": "1524", "undirected": true }, { "source": "357", "target": "1704", "key": "1526", "undirected": true }, { "source": "357", "target": "439", "key": "1525", "undirected": true }, { "source": "358", "target": "1483", "key": "1527", "undirected": true }, { "source": "358", "target": "300", "key": "1533", "undirected": true }, { "source": "358", "target": "321", "key": "1532", "undirected": true }, { "source": "358", "target": "339", "key": "1531", "undirected": true }, { "source": "358", "target": "371", "key": "1529", "undirected": true }, { "source": "358", "target": "376", "key": "1528", "undirected": true }, { "source": "358", "target": "735", "key": "1530", "undirected": true }, { "source": "360", "target": "301", "key": "1534", "undirected": true }, { "source": "360", "target": "867", "key": "1536", "undirected": true }, { "source": "360", "target": "890", "key": "1535", "undirected": true }, { "source": "362", "target": "1015", "key": "1543", "undirected": true }, { "source": "362", "target": "1021", "key": "1579", "undirected": true }, { "source": "362", "target": "1022", "key": "1561", "undirected": true }, { "source": "362", "target": "1024", "key": "1554", "undirected": true }, { "source": "362", "target": "1025", "key": "1577", "undirected": true }, { "source": "362", "target": "1026", "key": "1582", "undirected": true }, { "source": "362", "target": "1032", "key": "1540", "undirected": true }, { "source": "362", "target": "1045", "key": "1571", "undirected": true }, { "source": "362", "target": "1186", "key": "1556", "undirected": true }, { "source": "362", "target": "1214", "key": "1575", "undirected": true }, { "source": "362", "target": "1313", "key": "1555", "undirected": true }, { "source": "362", "target": "1367", "key": "1557", "undirected": true }, { "source": "362", "target": "1426", "key": "1566", "undirected": true }, { "source": "362", "target": "1451", "key": "1558", "undirected": true }, { "source": "362", "target": "1465", "key": "1552", "undirected": true }, { "source": "362", "target": "1508", "key": "1576", "undirected": true }, { "source": "362", "target": "1516", "key": "1542", "undirected": true }, { "source": "362", "target": "1560", "key": "1560", "undirected": true }, { "source": "362", "target": "1565", "key": "1570", "undirected": true }, { "source": "362", "target": "1651", "key": "1547", "undirected": true }, { "source": "362", "target": "1667", "key": "1574", "undirected": true }, { "source": "362", "target": "1678", "key": "1551", "undirected": true }, { "source": "362", "target": "190", "key": "1541", "undirected": true }, { "source": "362", "target": "269", "key": "1559", "undirected": true }, { "source": "362", "target": "286", "key": "1567", "undirected": true }, { "source": "362", "target": "356", "key": "1580", "undirected": true }, { "source": "362", "target": "542", "key": "1548", "undirected": true }, { "source": "362", "target": "57", "key": "1538", "undirected": true }, { "source": "362", "target": "588", "key": "1553", "undirected": true }, { "source": "362", "target": "592", "key": "1545", "undirected": true }, { "source": "362", "target": "593", "key": "1583", "undirected": true }, { "source": "362", "target": "596", "key": "1573", "undirected": true }, { "source": "362", "target": "601", "key": "1578", "undirected": true }, { "source": "362", "target": "612", "key": "1568", "undirected": true }, { "source": "362", "target": "630", "key": "1565", "undirected": true }, { "source": "362", "target": "634", "key": "1569", "undirected": true }, { "source": "362", "target": "657", "key": "1563", "undirected": true }, { "source": "362", "target": "758", "key": "1562", "undirected": true }, { "source": "362", "target": "791", "key": "1537", "undirected": true }, { "source": "362", "target": "816", "key": "1549", "undirected": true }, { "source": "362", "target": "818", "key": "1564", "undirected": true }, { "source": "362", "target": "865", "key": "1539", "undirected": true }, { "source": "362", "target": "943", "key": "1544", "undirected": true }, { "source": "362", "target": "956", "key": "1550", "undirected": true }, { "source": "362", "target": "970", "key": "1572", "undirected": true }, { "source": "362", "target": "979", "key": "1581", "undirected": true }, { "source": "362", "target": "992", "key": "1546", "undirected": true }, { "source": "363", "target": "1546", "key": "1585", "undirected": true }, { "source": "363", "target": "460", "key": "1584", "undirected": true }, { "source": "363", "target": "563", "key": "1586", "undirected": true }, { "source": "363", "target": "811", "key": "1587", "undirected": true }, { "source": "364", "target": "1202", "key": "1589", "undirected": true }, { "source": "364", "target": "1203", "key": "1590", "undirected": true }, { "source": "364", "target": "16", "key": "1592", "undirected": true }, { "source": "364", "target": "1671", "key": "1593", "undirected": true }, { "source": "364", "target": "657", "key": "1591", "undirected": true }, { "source": "364", "target": "79", "key": "1588", "undirected": true }, { "source": "365", "target": "1560", "key": "1595", "undirected": true }, { "source": "365", "target": "1567", "key": "1596", "undirected": true }, { "source": "365", "target": "551", "key": "1594", "undirected": true }, { "source": "365", "target": "754", "key": "1599", "undirected": true }, { "source": "365", "target": "758", "key": "1598", "undirected": true }, { "source": "365", "target": "874", "key": "1600", "undirected": true }, { "source": "365", "target": "946", "key": "1597", "undirected": true }, { "source": "366", "target": "1158", "key": "1601", "undirected": true }, { "source": "368", "target": "1602", "key": "1612", "undirected": true }, { "source": "368", "target": "1603", "key": "1611", "undirected": true }, { "source": "368", "target": "1607", "key": "1610", "undirected": true }, { "source": "368", "target": "1660", "key": "1609", "undirected": true }, { "source": "368", "target": "1671", "key": "1608", "undirected": true }, { "source": "368", "target": "1684", "key": "1607", "undirected": true }, { "source": "368", "target": "1687", "key": "1616", "undirected": true }, { "source": "368", "target": "1704", "key": "1606", "undirected": true }, { "source": "368", "target": "204", "key": "1614", "undirected": true }, { "source": "368", "target": "226", "key": "1617", "undirected": true }, { "source": "368", "target": "344", "key": "1605", "undirected": true }, { "source": "368", "target": "351", "key": "1615", "undirected": true }, { "source": "368", "target": "52", "key": "1604", "undirected": true }, { "source": "368", "target": "743", "key": "1613", "undirected": true }, { "source": "368", "target": "831", "key": "1603", "undirected": true }, { "source": "368", "target": "888", "key": "1602", "undirected": true }, { "source": "369", "target": "321", "key": "1618", "undirected": true }, { "source": "370", "target": "1560", "key": "1622", "undirected": true }, { "source": "370", "target": "1567", "key": "1621", "undirected": true }, { "source": "370", "target": "551", "key": "1624", "undirected": true }, { "source": "370", "target": "644", "key": "1623", "undirected": true }, { "source": "370", "target": "754", "key": "1620", "undirected": true }, { "source": "370", "target": "758", "key": "1619", "undirected": true }, { "source": "372", "target": "1602", "key": "1628", "undirected": true }, { "source": "372", "target": "373", "key": "1627", "undirected": true }, { "source": "372", "target": "375", "key": "1626", "undirected": true }, { "source": "372", "target": "684", "key": "1625", "undirected": true }, { "source": "373", "target": "1079", "key": "1630", "undirected": true }, { "source": "373", "target": "1202", "key": "1636", "undirected": true }, { "source": "373", "target": "1232", "key": "1635", "undirected": true }, { "source": "373", "target": "1250", "key": "1631", "undirected": true }, { "source": "373", "target": "1269", "key": "1629", "undirected": true }, { "source": "373", "target": "1620", "key": "1632", "undirected": true }, { "source": "373", "target": "1748", "key": "1634", "undirected": true }, { "source": "373", "target": "490", "key": "1639", "undirected": true }, { "source": "373", "target": "684", "key": "1638", "undirected": true }, { "source": "373", "target": "686", "key": "1637", "undirected": true }, { "source": "373", "target": "829", "key": "1633", "undirected": true }, { "source": "375", "target": "21", "key": "1640", "undirected": true }, { "source": "376", "target": "1671", "key": "1642", "undirected": true }, { "source": "376", "target": "339", "key": "1641", "undirected": true }, { "source": "377", "target": "1030", "key": "1651", "undirected": true }, { "source": "377", "target": "1244", "key": "1650", "undirected": true }, { "source": "377", "target": "1439", "key": "1649", "undirected": true }, { "source": "377", "target": "1511", "key": "1647", "undirected": true }, { "source": "377", "target": "1521", "key": "1660", "undirected": true }, { "source": "377", "target": "1598", "key": "1653", "undirected": true }, { "source": "377", "target": "1645", "key": "1648", "undirected": true }, { "source": "377", "target": "1650", "key": "1646", "undirected": true }, { "source": "377", "target": "1653", "key": "1645", "undirected": true }, { "source": "377", "target": "1727", "key": "1656", "undirected": true }, { "source": "377", "target": "206", "key": "1644", "undirected": true }, { "source": "377", "target": "242", "key": "1661", "undirected": true }, { "source": "377", "target": "378", "key": "1659", "undirected": true }, { "source": "377", "target": "646", "key": "1655", "undirected": true }, { "source": "377", "target": "669", "key": "1658", "undirected": true }, { "source": "377", "target": "753", "key": "1643", "undirected": true }, { "source": "377", "target": "936", "key": "1654", "undirected": true }, { "source": "377", "target": "977", "key": "1657", "undirected": true }, { "source": "377", "target": "987", "key": "1652", "undirected": true }, { "source": "378", "target": "1067", "key": "1683", "undirected": true }, { "source": "378", "target": "1069", "key": "1677", "undirected": true }, { "source": "378", "target": "1244", "key": "1678", "undirected": true }, { "source": "378", "target": "1352", "key": "1688", "undirected": true }, { "source": "378", "target": "142", "key": "1674", "undirected": true }, { "source": "378", "target": "1521", "key": "1662", "undirected": true }, { "source": "378", "target": "1551", "key": "1672", "undirected": true }, { "source": "378", "target": "1561", "key": "1689", "undirected": true }, { "source": "378", "target": "1562", "key": "1676", "undirected": true }, { "source": "378", "target": "1563", "key": "1679", "undirected": true }, { "source": "378", "target": "1598", "key": "1690", "undirected": true }, { "source": "378", "target": "1645", "key": "1681", "undirected": true }, { "source": "378", "target": "1650", "key": "1666", "undirected": true }, { "source": "378", "target": "1703", "key": "1665", "undirected": true }, { "source": "378", "target": "1727", "key": "1684", "undirected": true }, { "source": "378", "target": "242", "key": "1663", "undirected": true }, { "source": "378", "target": "363", "key": "1673", "undirected": true }, { "source": "378", "target": "377", "key": "1664", "undirected": true }, { "source": "378", "target": "412", "key": "1685", "undirected": true }, { "source": "378", "target": "481", "key": "1686", "undirected": true }, { "source": "378", "target": "646", "key": "1687", "undirected": true }, { "source": "378", "target": "669", "key": "1670", "undirected": true }, { "source": "378", "target": "753", "key": "1671", "undirected": true }, { "source": "378", "target": "776", "key": "1668", "undirected": true }, { "source": "378", "target": "777", "key": "1667", "undirected": true }, { "source": "378", "target": "930", "key": "1680", "undirected": true }, { "source": "378", "target": "936", "key": "1682", "undirected": true }, { "source": "378", "target": "977", "key": "1669", "undirected": true }, { "source": "378", "target": "995", "key": "1675", "undirected": true }, { "source": "38", "target": "401", "key": "85", "undirected": true }, { "source": "38", "target": "409", "key": "84", "undirected": true }, { "source": "38", "target": "693", "key": "86", "undirected": true }, { "source": "380", "target": "903", "key": "1691", "undirected": true }, { "source": "381", "target": "1087", "key": "1701", "undirected": true }, { "source": "381", "target": "1323", "key": "1700", "undirected": true }, { "source": "381", "target": "1370", "key": "1698", "undirected": true }, { "source": "381", "target": "1495", "key": "1692", "undirected": true }, { "source": "381", "target": "1522", "key": "1694", "undirected": true }, { "source": "381", "target": "1579", "key": "1696", "undirected": true }, { "source": "381", "target": "452", "key": "1695", "undirected": true }, { "source": "381", "target": "458", "key": "1697", "undirected": true }, { "source": "381", "target": "628", "key": "1699", "undirected": true }, { "source": "381", "target": "863", "key": "1693", "undirected": true }, { "source": "383", "target": "1318", "key": "1718", "undirected": true }, { "source": "383", "target": "1532", "key": "1704", "undirected": true }, { "source": "383", "target": "1602", "key": "1712", "undirected": true }, { "source": "383", "target": "1684", "key": "1702", "undirected": true }, { "source": "383", "target": "1691", "key": "1709", "undirected": true }, { "source": "383", "target": "1704", "key": "1717", "undirected": true }, { "source": "383", "target": "1713", "key": "1708", "undirected": true }, { "source": "383", "target": "201", "key": "1714", "undirected": true }, { "source": "383", "target": "353", "key": "1711", "undirected": true }, { "source": "383", "target": "534", "key": "1703", "undirected": true }, { "source": "383", "target": "544", "key": "1713", "undirected": true }, { "source": "383", "target": "603", "key": "1710", "undirected": true }, { "source": "383", "target": "831", "key": "1716", "undirected": true }, { "source": "383", "target": "857", "key": "1705", "undirected": true }, { "source": "383", "target": "897", "key": "1715", "undirected": true }, { "source": "383", "target": "948", "key": "1707", "undirected": true }, { "source": "383", "target": "981", "key": "1706", "undirected": true }, { "source": "385", "target": "1214", "key": "1727", "undirected": true }, { "source": "385", "target": "1313", "key": "1724", "undirected": true }, { "source": "385", "target": "1465", "key": "1726", "undirected": true }, { "source": "385", "target": "1504", "key": "1725", "undirected": true }, { "source": "385", "target": "1508", "key": "1722", "undirected": true }, { "source": "385", "target": "1542", "key": "1721", "undirected": true }, { "source": "385", "target": "596", "key": "1719", "undirected": true }, { "source": "385", "target": "601", "key": "1720", "undirected": true }, { "source": "385", "target": "630", "key": "1728", "undirected": true }, { "source": "385", "target": "635", "key": "1723", "undirected": true }, { "source": "386", "target": "1089", "key": "1743", "undirected": true }, { "source": "386", "target": "1159", "key": "1736", "undirected": true }, { "source": "386", "target": "1319", "key": "1738", "undirected": true }, { "source": "386", "target": "1602", "key": "1732", "undirected": true }, { "source": "386", "target": "1603", "key": "1735", "undirected": true }, { "source": "386", "target": "1607", "key": "1740", "undirected": true }, { "source": "386", "target": "1671", "key": "1741", "undirected": true }, { "source": "386", "target": "1691", "key": "1739", "undirected": true }, { "source": "386", "target": "17", "key": "1733", "undirected": true }, { "source": "386", "target": "225", "key": "1729", "undirected": true }, { "source": "386", "target": "232", "key": "1742", "undirected": true }, { "source": "386", "target": "344", "key": "1737", "undirected": true }, { "source": "386", "target": "353", "key": "1731", "undirected": true }, { "source": "386", "target": "709", "key": "1745", "undirected": true }, { "source": "386", "target": "857", "key": "1730", "undirected": true }, { "source": "386", "target": "936", "key": "1744", "undirected": true }, { "source": "386", "target": "988", "key": "1734", "undirected": true }, { "source": "387", "target": "1049", "key": "1746", "undirected": true }, { "source": "387", "target": "426", "key": "1747", "undirected": true }, { "source": "391", "target": "390", "key": "1748", "undirected": true }, { "source": "392", "target": "1542", "key": "1749", "undirected": true }, { "source": "393", "target": "1070", "key": "1753", "undirected": true }, { "source": "393", "target": "1102", "key": "1757", "undirected": true }, { "source": "393", "target": "1579", "key": "1750", "undirected": true }, { "source": "393", "target": "1624", "key": "1755", "undirected": true }, { "source": "393", "target": "287", "key": "1752", "undirected": true }, { "source": "393", "target": "585", "key": "1751", "undirected": true }, { "source": "393", "target": "732", "key": "1756", "undirected": true }, { "source": "393", "target": "883", "key": "1754", "undirected": true }, { "source": "395", "target": "1580", "key": "1759", "undirected": true }, { "source": "395", "target": "1602", "key": "1762", "undirected": true }, { "source": "395", "target": "1704", "key": "1760", "undirected": true }, { "source": "395", "target": "831", "key": "1758", "undirected": true }, { "source": "395", "target": "903", "key": "1761", "undirected": true }, { "source": "396", "target": "1324", "key": "1763", "undirected": true }, { "source": "396", "target": "1453", "key": "1767", "undirected": true }, { "source": "396", "target": "218", "key": "1765", "undirected": true }, { "source": "396", "target": "221", "key": "1764", "undirected": true }, { "source": "396", "target": "255", "key": "1768", "undirected": true }, { "source": "396", "target": "332", "key": "1766", "undirected": true }, { "source": "397", "target": "1158", "key": "1769", "undirected": true }, { "source": "397", "target": "481", "key": "1770", "undirected": true }, { "source": "4", "target": "164", "key": "2", "undirected": true }, { "source": "40", "target": "1259", "key": "90", "undirected": true }, { "source": "40", "target": "1292", "key": "101", "undirected": true }, { "source": "40", "target": "1304", "key": "100", "undirected": true }, { "source": "40", "target": "1319", "key": "102", "undirected": true }, { "source": "40", "target": "1354", "key": "95", "undirected": true }, { "source": "40", "target": "156", "key": "87", "undirected": true }, { "source": "40", "target": "1580", "key": "88", "undirected": true }, { "source": "40", "target": "1602", "key": "91", "undirected": true }, { "source": "40", "target": "1603", "key": "96", "undirected": true }, { "source": "40", "target": "1607", "key": "92", "undirected": true }, { "source": "40", "target": "222", "key": "98", "undirected": true }, { "source": "40", "target": "52", "key": "93", "undirected": true }, { "source": "40", "target": "568", "key": "94", "undirected": true }, { "source": "40", "target": "598", "key": "97", "undirected": true }, { "source": "40", "target": "667", "key": "99", "undirected": true }, { "source": "40", "target": "931", "key": "89", "undirected": true }, { "source": "400", "target": "1046", "key": "1773", "undirected": true }, { "source": "400", "target": "1104", "key": "1774", "undirected": true }, { "source": "400", "target": "1113", "key": "1772", "undirected": true }, { "source": "400", "target": "1468", "key": "1775", "undirected": true }, { "source": "400", "target": "1490", "key": "1771", "undirected": true }, { "source": "401", "target": "1665", "key": "1777", "undirected": true }, { "source": "401", "target": "709", "key": "1776", "undirected": true }, { "source": "403", "target": "1671", "key": "1779", "undirected": true }, { "source": "403", "target": "981", "key": "1778", "undirected": true }, { "source": "404", "target": "1720", "key": "1785", "undirected": true }, { "source": "404", "target": "235", "key": "1783", "undirected": true }, { "source": "404", "target": "460", "key": "1782", "undirected": true }, { "source": "404", "target": "485", "key": "1781", "undirected": true }, { "source": "404", "target": "709", "key": "1780", "undirected": true }, { "source": "404", "target": "773", "key": "1784", "undirected": true }, { "source": "405", "target": "1620", "key": "1789", "undirected": true }, { "source": "405", "target": "1652", "key": "1788", "undirected": true }, { "source": "405", "target": "1745", "key": "1787", "undirected": true }, { "source": "405", "target": "691", "key": "1786", "undirected": true }, { "source": "407", "target": "1386", "key": "1791", "undirected": true }, { "source": "407", "target": "1724", "key": "1792", "undirected": true }, { "source": "407", "target": "1730", "key": "1790", "undirected": true }, { "source": "408", "target": "1012", "key": "1797", "undirected": true }, { "source": "408", "target": "1104", "key": "1799", "undirected": true }, { "source": "408", "target": "1158", "key": "1794", "undirected": true }, { "source": "408", "target": "1250", "key": "1793", "undirected": true }, { "source": "408", "target": "146", "key": "1796", "undirected": true }, { "source": "408", "target": "243", "key": "1798", "undirected": true }, { "source": "408", "target": "308", "key": "1802", "undirected": true }, { "source": "408", "target": "333", "key": "1801", "undirected": true }, { "source": "408", "target": "482", "key": "1800", "undirected": true }, { "source": "408", "target": "490", "key": "1795", "undirected": true }, { "source": "409", "target": "1089", "key": "1803", "undirected": true }, { "source": "409", "target": "1117", "key": "1813", "undirected": true }, { "source": "409", "target": "1127", "key": "1812", "undirected": true }, { "source": "409", "target": "1247", "key": "1811", "undirected": true }, { "source": "409", "target": "1346", "key": "1808", "undirected": true }, { "source": "409", "target": "153", "key": "1805", "undirected": true }, { "source": "409", "target": "256", "key": "1810", "undirected": true }, { "source": "409", "target": "38", "key": "1815", "undirected": true }, { "source": "409", "target": "404", "key": "1807", "undirected": true }, { "source": "409", "target": "450", "key": "1806", "undirected": true }, { "source": "409", "target": "459", "key": "1814", "undirected": true }, { "source": "409", "target": "460", "key": "1816", "undirected": true }, { "source": "409", "target": "478", "key": "1804", "undirected": true }, { "source": "409", "target": "693", "key": "1817", "undirected": true }, { "source": "409", "target": "747", "key": "1809", "undirected": true }, { "source": "412", "target": "460", "key": "1819", "undirected": true }, { "source": "412", "target": "481", "key": "1818", "undirected": true }, { "source": "412", "target": "642", "key": "1820", "undirected": true }, { "source": "414", "target": "256", "key": "1821", "undirected": true }, { "source": "414", "target": "693", "key": "1822", "undirected": true }, { "source": "415", "target": "1602", "key": "1830", "undirected": true }, { "source": "415", "target": "1628", "key": "1828", "undirected": true }, { "source": "415", "target": "1704", "key": "1829", "undirected": true }, { "source": "415", "target": "248", "key": "1833", "undirected": true }, { "source": "415", "target": "409", "key": "1824", "undirected": true }, { "source": "415", "target": "412", "key": "1831", "undirected": true }, { "source": "415", "target": "413", "key": "1825", "undirected": true }, { "source": "415", "target": "460", "key": "1827", "undirected": true }, { "source": "415", "target": "563", "key": "1823", "undirected": true }, { "source": "415", "target": "643", "key": "1826", "undirected": true }, { "source": "415", "target": "735", "key": "1832", "undirected": true }, { "source": "419", "target": "451", "key": "1834", "undirected": true }, { "source": "42", "target": "1655", "key": "103", "undirected": true }, { "source": "422", "target": "1020", "key": "1835", "undirected": true }, { "source": "422", "target": "430", "key": "1836", "undirected": true }, { "source": "423", "target": "1368", "key": "1844", "undirected": true }, { "source": "423", "target": "1570", "key": "1840", "undirected": true }, { "source": "423", "target": "1602", "key": "1841", "undirected": true }, { "source": "423", "target": "1704", "key": "1839", "undirected": true }, { "source": "423", "target": "344", "key": "1837", "undirected": true }, { "source": "423", "target": "743", "key": "1843", "undirected": true }, { "source": "423", "target": "746", "key": "1842", "undirected": true }, { "source": "423", "target": "947", "key": "1838", "undirected": true }, { "source": "424", "target": "1602", "key": "1845", "undirected": true }, { "source": "426", "target": "1261", "key": "1847", "undirected": true }, { "source": "426", "target": "1681", "key": "1846", "undirected": true }, { "source": "426", "target": "251", "key": "1848", "undirected": true }, { "source": "426", "target": "387", "key": "1849", "undirected": true }, { "source": "427", "target": "1158", "key": "1851", "undirected": true }, { "source": "427", "target": "1182", "key": "1850", "undirected": true }, { "source": "427", "target": "1432", "key": "1852", "undirected": true }, { "source": "427", "target": "691", "key": "1853", "undirected": true }, { "source": "427", "target": "966", "key": "1854", "undirected": true }, { "source": "428", "target": "128", "key": "1857", "undirected": true }, { "source": "428", "target": "1408", "key": "1855", "undirected": true }, { "source": "428", "target": "236", "key": "1856", "undirected": true }, { "source": "430", "target": "1571", "key": "1859", "undirected": true }, { "source": "430", "target": "451", "key": "1858", "undirected": true }, { "source": "430", "target": "507", "key": "1860", "undirected": true }, { "source": "435", "target": "156", "key": "1861", "undirected": true }, { "source": "435", "target": "1580", "key": "1862", "undirected": true }, { "source": "435", "target": "1588", "key": "1869", "undirected": true }, { "source": "435", "target": "1602", "key": "1868", "undirected": true }, { "source": "435", "target": "1607", "key": "1867", "undirected": true }, { "source": "435", "target": "1684", "key": "1870", "undirected": true }, { "source": "435", "target": "324", "key": "1871", "undirected": true }, { "source": "435", "target": "424", "key": "1865", "undirected": true }, { "source": "435", "target": "429", "key": "1872", "undirected": true }, { "source": "435", "target": "733", "key": "1863", "undirected": true }, { "source": "435", "target": "743", "key": "1864", "undirected": true }, { "source": "435", "target": "872", "key": "1866", "undirected": true }, { "source": "438", "target": "1240", "key": "1873", "undirected": true }, { "source": "438", "target": "560", "key": "1874", "undirected": true }, { "source": "439", "target": "1588", "key": "1878", "undirected": true }, { "source": "439", "target": "1713", "key": "1875", "undirected": true }, { "source": "439", "target": "648", "key": "1877", "undirected": true }, { "source": "439", "target": "981", "key": "1876", "undirected": true }, { "source": "440", "target": "1466", "key": "1880", "undirected": true }, { "source": "440", "target": "252", "key": "1879", "undirected": true }, { "source": "442", "target": "1591", "key": "1882", "undirected": true }, { "source": "442", "target": "1685", "key": "1883", "undirected": true }, { "source": "442", "target": "409", "key": "1886", "undirected": true }, { "source": "442", "target": "428", "key": "1885", "undirected": true }, { "source": "442", "target": "460", "key": "1884", "undirected": true }, { "source": "442", "target": "693", "key": "1881", "undirected": true }, { "source": "443", "target": "1303", "key": "1890", "undirected": true }, { "source": "443", "target": "1734", "key": "1888", "undirected": true }, { "source": "443", "target": "481", "key": "1891", "undirected": true }, { "source": "443", "target": "502", "key": "1889", "undirected": true }, { "source": "443", "target": "594", "key": "1887", "undirected": true }, { "source": "446", "target": "1432", "key": "1894", "undirected": true }, { "source": "446", "target": "333", "key": "1892", "undirected": true }, { "source": "446", "target": "895", "key": "1893", "undirected": true }, { "source": "448", "target": "1250", "key": "1896", "undirected": true }, { "source": "448", "target": "1271", "key": "1898", "undirected": true }, { "source": "448", "target": "1329", "key": "1897", "undirected": true }, { "source": "448", "target": "1594", "key": "1895", "undirected": true }, { "source": "448", "target": "1605", "key": "1899", "undirected": true }, { "source": "449", "target": "1312", "key": "1900", "undirected": true }, { "source": "45", "target": "164", "key": "104", "undirected": true }, { "source": "45", "target": "1720", "key": "107", "undirected": true }, { "source": "45", "target": "485", "key": "106", "undirected": true }, { "source": "45", "target": "773", "key": "105", "undirected": true }, { "source": "451", "target": "1013", "key": "1915", "undirected": true }, { "source": "451", "target": "1049", "key": "1920", "undirected": true }, { "source": "451", "target": "1254", "key": "1923", "undirected": true }, { "source": "451", "target": "1261", "key": "1901", "undirected": true }, { "source": "451", "target": "1571", "key": "1928", "undirected": true }, { "source": "451", "target": "1608", "key": "1918", "undirected": true }, { "source": "451", "target": "1627", "key": "1927", "undirected": true }, { "source": "451", "target": "1646", "key": "1904", "undirected": true }, { "source": "451", "target": "1681", "key": "1905", "undirected": true }, { "source": "451", "target": "191", "key": "1906", "undirected": true }, { "source": "451", "target": "238", "key": "1924", "undirected": true }, { "source": "451", "target": "249", "key": "1911", "undirected": true }, { "source": "451", "target": "251", "key": "1902", "undirected": true }, { "source": "451", "target": "306", "key": "1930", "undirected": true }, { "source": "451", "target": "363", "key": "1922", "undirected": true }, { "source": "451", "target": "387", "key": "1909", "undirected": true }, { "source": "451", "target": "418", "key": "1929", "undirected": true }, { "source": "451", "target": "419", "key": "1907", "undirected": true }, { "source": "451", "target": "426", "key": "1903", "undirected": true }, { "source": "451", "target": "430", "key": "1919", "undirected": true }, { "source": "451", "target": "460", "key": "1913", "undirected": true }, { "source": "451", "target": "563", "key": "1921", "undirected": true }, { "source": "451", "target": "59", "key": "1908", "undirected": true }, { "source": "451", "target": "637", "key": "1926", "undirected": true }, { "source": "451", "target": "639", "key": "1931", "undirected": true }, { "source": "451", "target": "641", "key": "1917", "undirected": true }, { "source": "451", "target": "674", "key": "1914", "undirected": true }, { "source": "451", "target": "714", "key": "1910", "undirected": true }, { "source": "451", "target": "79", "key": "1925", "undirected": true }, { "source": "451", "target": "811", "key": "1912", "undirected": true }, { "source": "451", "target": "859", "key": "1916", "undirected": true }, { "source": "453", "target": "164", "key": "1934", "undirected": true }, { "source": "453", "target": "460", "key": "1932", "undirected": true }, { "source": "453", "target": "563", "key": "1933", "undirected": true }, { "source": "453", "target": "948", "key": "1935", "undirected": true }, { "source": "456", "target": "1101", "key": "1939", "undirected": true }, { "source": "456", "target": "128", "key": "1936", "undirected": true }, { "source": "456", "target": "1293", "key": "1937", "undirected": true }, { "source": "456", "target": "1348", "key": "1942", "undirected": true }, { "source": "456", "target": "224", "key": "1945", "undirected": true }, { "source": "456", "target": "235", "key": "1946", "undirected": true }, { "source": "456", "target": "450", "key": "1940", "undirected": true }, { "source": "456", "target": "457", "key": "1941", "undirected": true }, { "source": "456", "target": "460", "key": "1943", "undirected": true }, { "source": "456", "target": "673", "key": "1944", "undirected": true }, { "source": "456", "target": "695", "key": "1938", "undirected": true }, { "source": "457", "target": "1101", "key": "1951", "undirected": true }, { "source": "457", "target": "128", "key": "1948", "undirected": true }, { "source": "457", "target": "1293", "key": "1949", "undirected": true }, { "source": "457", "target": "450", "key": "1952", "undirected": true }, { "source": "457", "target": "456", "key": "1947", "undirected": true }, { "source": "457", "target": "695", "key": "1950", "undirected": true }, { "source": "46", "target": "1602", "key": "114", "undirected": true }, { "source": "46", "target": "1603", "key": "112", "undirected": true }, { "source": "46", "target": "1607", "key": "113", "undirected": true }, { "source": "46", "target": "733", "key": "108", "undirected": true }, { "source": "46", "target": "741", "key": "109", "undirected": true }, { "source": "46", "target": "743", "key": "110", "undirected": true }, { "source": "46", "target": "746", "key": "111", "undirected": true }, { "source": "460", "target": "1089", "key": "1971", "undirected": true }, { "source": "460", "target": "1158", "key": "1970", "undirected": true }, { "source": "460", "target": "1247", "key": "1953", "undirected": true }, { "source": "460", "target": "1293", "key": "1966", "undirected": true }, { "source": "460", "target": "1412", "key": "1962", "undirected": true }, { "source": "460", "target": "164", "key": "1961", "undirected": true }, { "source": "460", "target": "1685", "key": "1959", "undirected": true }, { "source": "460", "target": "1720", "key": "1969", "undirected": true }, { "source": "460", "target": "256", "key": "1968", "undirected": true }, { "source": "460", "target": "306", "key": "1972", "undirected": true }, { "source": "460", "target": "409", "key": "1957", "undirected": true }, { "source": "460", "target": "415", "key": "1965", "undirected": true }, { "source": "460", "target": "450", "key": "1958", "undirected": true }, { "source": "460", "target": "456", "key": "1974", "undirected": true }, { "source": "460", "target": "459", "key": "1956", "undirected": true }, { "source": "460", "target": "515", "key": "1963", "undirected": true }, { "source": "460", "target": "563", "key": "1973", "undirected": true }, { "source": "460", "target": "568", "key": "1967", "undirected": true }, { "source": "460", "target": "643", "key": "1954", "undirected": true }, { "source": "460", "target": "716", "key": "1960", "undirected": true }, { "source": "460", "target": "747", "key": "1964", "undirected": true }, { "source": "460", "target": "996", "key": "1955", "undirected": true }, { "source": "464", "target": "1580", "key": "1983", "undirected": true }, { "source": "464", "target": "1602", "key": "1981", "undirected": true }, { "source": "464", "target": "1603", "key": "1980", "undirected": true }, { "source": "464", "target": "1607", "key": "1975", "undirected": true }, { "source": "464", "target": "1690", "key": "1985", "undirected": true }, { "source": "464", "target": "497", "key": "1986", "undirected": true }, { "source": "464", "target": "733", "key": "1978", "undirected": true }, { "source": "464", "target": "741", "key": "1977", "undirected": true }, { "source": "464", "target": "743", "key": "1976", "undirected": true }, { "source": "464", "target": "745", "key": "1979", "undirected": true }, { "source": "464", "target": "746", "key": "1982", "undirected": true }, { "source": "464", "target": "947", "key": "1984", "undirected": true }, { "source": "466", "target": "1034", "key": "1993", "undirected": true }, { "source": "466", "target": "1112", "key": "1992", "undirected": true }, { "source": "466", "target": "1491", "key": "1991", "undirected": true }, { "source": "466", "target": "1493", "key": "1990", "undirected": true }, { "source": "466", "target": "1540", "key": "1987", "undirected": true }, { "source": "466", "target": "1663", "key": "1988", "undirected": true }, { "source": "466", "target": "825", "key": "1989", "undirected": true }, { "source": "468", "target": "1169", "key": "1999", "undirected": true }, { "source": "468", "target": "1311", "key": "2001", "undirected": true }, { "source": "468", "target": "1554", "key": "1998", "undirected": true }, { "source": "468", "target": "1581", "key": "1997", "undirected": true }, { "source": "468", "target": "1614", "key": "2000", "undirected": true }, { "source": "468", "target": "1640", "key": "1994", "undirected": true }, { "source": "468", "target": "333", "key": "2002", "undirected": true }, { "source": "468", "target": "47", "key": "1996", "undirected": true }, { "source": "468", "target": "877", "key": "1995", "undirected": true }, { "source": "469", "target": "1250", "key": "2004", "undirected": true }, { "source": "469", "target": "1599", "key": "2005", "undirected": true }, { "source": "469", "target": "1609", "key": "2003", "undirected": true }, { "source": "469", "target": "1649", "key": "2006", "undirected": true }, { "source": "470", "target": "1044", "key": "2008", "undirected": true }, { "source": "470", "target": "536", "key": "2007", "undirected": true }, { "source": "476", "target": "415", "key": "2010", "undirected": true }, { "source": "476", "target": "850", "key": "2009", "undirected": true }, { "source": "477", "target": "1270", "key": "2014", "undirected": true }, { "source": "477", "target": "1532", "key": "2015", "undirected": true }, { "source": "477", "target": "201", "key": "2013", "undirected": true }, { "source": "477", "target": "214", "key": "2016", "undirected": true }, { "source": "477", "target": "534", "key": "2011", "undirected": true }, { "source": "477", "target": "862", "key": "2012", "undirected": true }, { "source": "478", "target": "1008", "key": "2033", "undirected": true }, { "source": "478", "target": "1037", "key": "2025", "undirected": true }, { "source": "478", "target": "1089", "key": "2019", "undirected": true }, { "source": "478", "target": "1247", "key": "2017", "undirected": true }, { "source": "478", "target": "1293", "key": "2018", "undirected": true }, { "source": "478", "target": "1383", "key": "2031", "undirected": true }, { "source": "478", "target": "224", "key": "2032", "undirected": true }, { "source": "478", "target": "344", "key": "2028", "undirected": true }, { "source": "478", "target": "38", "key": "2030", "undirected": true }, { "source": "478", "target": "409", "key": "2027", "undirected": true }, { "source": "478", "target": "415", "key": "2024", "undirected": true }, { "source": "478", "target": "450", "key": "2023", "undirected": true }, { "source": "478", "target": "459", "key": "2021", "undirected": true }, { "source": "478", "target": "460", "key": "2022", "undirected": true }, { "source": "478", "target": "568", "key": "2029", "undirected": true }, { "source": "478", "target": "643", "key": "2026", "undirected": true }, { "source": "478", "target": "667", "key": "2035", "undirected": true }, { "source": "478", "target": "673", "key": "2034", "undirected": true }, { "source": "478", "target": "747", "key": "2020", "undirected": true }, { "source": "479", "target": "1247", "key": "2036", "undirected": true }, { "source": "479", "target": "460", "key": "2037", "undirected": true }, { "source": "48", "target": "1727", "key": "116", "undirected": true }, { "source": "48", "target": "242", "key": "115", "undirected": true }, { "source": "481", "target": "1158", "key": "2038", "undirected": true }, { "source": "481", "target": "1602", "key": "2045", "undirected": true }, { "source": "481", "target": "294", "key": "2042", "undirected": true }, { "source": "481", "target": "427", "key": "2040", "undirected": true }, { "source": "481", "target": "464", "key": "2044", "undirected": true }, { "source": "481", "target": "816", "key": "2043", "undirected": true }, { "source": "481", "target": "909", "key": "2039", "undirected": true }, { "source": "481", "target": "974", "key": "2041", "undirected": true }, { "source": "482", "target": "1104", "key": "2046", "undirected": true }, { "source": "482", "target": "1485", "key": "2050", "undirected": true }, { "source": "482", "target": "1612", "key": "2049", "undirected": true }, { "source": "482", "target": "438", "key": "2051", "undirected": true }, { "source": "482", "target": "639", "key": "2048", "undirected": true }, { "source": "482", "target": "988", "key": "2047", "undirected": true }, { "source": "483", "target": "1158", "key": "2054", "undirected": true }, { "source": "483", "target": "344", "key": "2053", "undirected": true }, { "source": "483", "target": "481", "key": "2052", "undirected": true }, { "source": "485", "target": "11", "key": "2062", "undirected": true }, { "source": "485", "target": "1197", "key": "2055", "undirected": true }, { "source": "485", "target": "1354", "key": "2060", "undirected": true }, { "source": "485", "target": "1665", "key": "2056", "undirected": true }, { "source": "485", "target": "1696", "key": "2063", "undirected": true }, { "source": "485", "target": "1720", "key": "2057", "undirected": true }, { "source": "485", "target": "258", "key": "2059", "undirected": true }, { "source": "485", "target": "409", "key": "2061", "undirected": true }, { "source": "485", "target": "69", "key": "2058", "undirected": true }, { "source": "485", "target": "716", "key": "2064", "undirected": true }, { "source": "488", "target": "201", "key": "2066", "undirected": true }, { "source": "488", "target": "214", "key": "2065", "undirected": true }, { "source": "488", "target": "477", "key": "2067", "undirected": true }, { "source": "489", "target": "1442", "key": "2071", "undirected": true }, { "source": "489", "target": "1470", "key": "2069", "undirected": true }, { "source": "489", "target": "158", "key": "2068", "undirected": true }, { "source": "489", "target": "715", "key": "2070", "undirected": true }, { "source": "490", "target": "1067", "key": "2076", "undirected": true }, { "source": "490", "target": "1191", "key": "2073", "undirected": true }, { "source": "490", "target": "1521", "key": "2074", "undirected": true }, { "source": "490", "target": "344", "key": "2075", "undirected": true }, { "source": "490", "target": "639", "key": "2072", "undirected": true }, { "source": "490", "target": "641", "key": "2077", "undirected": true }, { "source": "491", "target": "1212", "key": "2082", "undirected": true }, { "source": "491", "target": "1276", "key": "2080", "undirected": true }, { "source": "491", "target": "1333", "key": "2078", "undirected": true }, { "source": "491", "target": "1555", "key": "2081", "undirected": true }, { "source": "491", "target": "1609", "key": "2079", "undirected": true }, { "source": "491", "target": "995", "key": "2083", "undirected": true }, { "source": "493", "target": "25", "key": "2084", "undirected": true }, { "source": "497", "target": "1580", "key": "2091", "undirected": true }, { "source": "497", "target": "1602", "key": "2090", "undirected": true }, { "source": "497", "target": "1603", "key": "2092", "undirected": true }, { "source": "497", "target": "1607", "key": "2089", "undirected": true }, { "source": "497", "target": "344", "key": "2093", "undirected": true }, { "source": "497", "target": "733", "key": "2087", "undirected": true }, { "source": "497", "target": "741", "key": "2085", "undirected": true }, { "source": "497", "target": "743", "key": "2088", "undirected": true }, { "source": "497", "target": "746", "key": "2086", "undirected": true }, { "source": "498", "target": "258", "key": "2094", "undirected": true }, { "source": "499", "target": "1354", "key": "2095", "undirected": true }, { "source": "499", "target": "52", "key": "2096", "undirected": true }, { "source": "499", "target": "624", "key": "2097", "undirected": true }, { "source": "50", "target": "1645", "key": "117", "undirected": true }, { "source": "50", "target": "936", "key": "118", "undirected": true }, { "source": "502", "target": "443", "key": "2098", "undirected": true }, { "source": "502", "target": "948", "key": "2099", "undirected": true }, { "source": "506", "target": "1003", "key": "2131", "undirected": true }, { "source": "506", "target": "1030", "key": "2132", "undirected": true }, { "source": "506", "target": "1067", "key": "2103", "undirected": true }, { "source": "506", "target": "1069", "key": "2130", "undirected": true }, { "source": "506", "target": "1076", "key": "2100", "undirected": true }, { "source": "506", "target": "1103", "key": "2115", "undirected": true }, { "source": "506", "target": "1157", "key": "2101", "undirected": true }, { "source": "506", "target": "1168", "key": "2108", "undirected": true }, { "source": "506", "target": "1170", "key": "2126", "undirected": true }, { "source": "506", "target": "1212", "key": "2129", "undirected": true }, { "source": "506", "target": "1244", "key": "2128", "undirected": true }, { "source": "506", "target": "1284", "key": "2127", "undirected": true }, { "source": "506", "target": "1352", "key": "2102", "undirected": true }, { "source": "506", "target": "1423", "key": "2125", "undirected": true }, { "source": "506", "target": "1439", "key": "2124", "undirected": true }, { "source": "506", "target": "1480", "key": "2111", "undirected": true }, { "source": "506", "target": "1497", "key": "2123", "undirected": true }, { "source": "506", "target": "1511", "key": "2121", "undirected": true }, { "source": "506", "target": "1521", "key": "2104", "undirected": true }, { "source": "506", "target": "1550", "key": "2119", "undirected": true }, { "source": "506", "target": "1562", "key": "2120", "undirected": true }, { "source": "506", "target": "1563", "key": "2105", "undirected": true }, { "source": "506", "target": "1598", "key": "2136", "undirected": true }, { "source": "506", "target": "1645", "key": "2122", "undirected": true }, { "source": "506", "target": "1650", "key": "2118", "undirected": true }, { "source": "506", "target": "1653", "key": "2117", "undirected": true }, { "source": "506", "target": "1703", "key": "2110", "undirected": true }, { "source": "506", "target": "1727", "key": "2112", "undirected": true }, { "source": "506", "target": "206", "key": "2116", "undirected": true }, { "source": "506", "target": "242", "key": "2113", "undirected": true }, { "source": "506", "target": "279", "key": "2141", "undirected": true }, { "source": "506", "target": "707", "key": "2114", "undirected": true }, { "source": "506", "target": "715", "key": "2107", "undirected": true }, { "source": "506", "target": "810", "key": "2106", "undirected": true }, { "source": "506", "target": "927", "key": "2139", "undirected": true }, { "source": "506", "target": "930", "key": "2140", "undirected": true }, { "source": "506", "target": "936", "key": "2138", "undirected": true }, { "source": "506", "target": "938", "key": "2137", "undirected": true }, { "source": "506", "target": "971", "key": "2109", "undirected": true }, { "source": "506", "target": "987", "key": "2135", "undirected": true }, { "source": "506", "target": "989", "key": "2134", "undirected": true }, { "source": "506", "target": "995", "key": "2133", "undirected": true }, { "source": "508", "target": "1102", "key": "2145", "undirected": true }, { "source": "508", "target": "1707", "key": "2142", "undirected": true }, { "source": "508", "target": "591", "key": "2144", "undirected": true }, { "source": "508", "target": "842", "key": "2143", "undirected": true }, { "source": "510", "target": "1015", "key": "2154", "undirected": true }, { "source": "510", "target": "1104", "key": "2159", "undirected": true }, { "source": "510", "target": "1313", "key": "2146", "undirected": true }, { "source": "510", "target": "1426", "key": "2150", "undirected": true }, { "source": "510", "target": "1516", "key": "2151", "undirected": true }, { "source": "510", "target": "1652", "key": "2158", "undirected": true }, { "source": "510", "target": "1727", "key": "2153", "undirected": true }, { "source": "510", "target": "551", "key": "2156", "undirected": true }, { "source": "510", "target": "592", "key": "2155", "undirected": true }, { "source": "510", "target": "597", "key": "2149", "undirected": true }, { "source": "510", "target": "630", "key": "2147", "undirected": true }, { "source": "510", "target": "634", "key": "2152", "undirected": true }, { "source": "510", "target": "791", "key": "2148", "undirected": true }, { "source": "510", "target": "816", "key": "2157", "undirected": true }, { "source": "510", "target": "930", "key": "2160", "undirected": true }, { "source": "512", "target": "1159", "key": "2173", "undirected": true }, { "source": "512", "target": "1570", "key": "2174", "undirected": true }, { "source": "512", "target": "1580", "key": "2171", "undirected": true }, { "source": "512", "target": "1602", "key": "2170", "undirected": true }, { "source": "512", "target": "1603", "key": "2169", "undirected": true }, { "source": "512", "target": "1607", "key": "2168", "undirected": true }, { "source": "512", "target": "1690", "key": "2163", "undirected": true }, { "source": "512", "target": "214", "key": "2162", "undirected": true }, { "source": "512", "target": "464", "key": "2161", "undirected": true }, { "source": "512", "target": "733", "key": "2165", "undirected": true }, { "source": "512", "target": "741", "key": "2164", "undirected": true }, { "source": "512", "target": "743", "key": "2167", "undirected": true }, { "source": "512", "target": "746", "key": "2166", "undirected": true }, { "source": "512", "target": "941", "key": "2172", "undirected": true }, { "source": "515", "target": "1089", "key": "2180", "undirected": true }, { "source": "515", "target": "1383", "key": "2178", "undirected": true }, { "source": "515", "target": "1408", "key": "2179", "undirected": true }, { "source": "515", "target": "460", "key": "2176", "undirected": true }, { "source": "515", "target": "643", "key": "2175", "undirected": true }, { "source": "515", "target": "747", "key": "2177", "undirected": true }, { "source": "518", "target": "1238", "key": "2184", "undirected": true }, { "source": "518", "target": "1614", "key": "2183", "undirected": true }, { "source": "518", "target": "303", "key": "2182", "undirected": true }, { "source": "518", "target": "397", "key": "2185", "undirected": true }, { "source": "518", "target": "481", "key": "2181", "undirected": true }, { "source": "52", "target": "1065", "key": "123", "undirected": true }, { "source": "52", "target": "1159", "key": "127", "undirected": true }, { "source": "52", "target": "1181", "key": "132", "undirected": true }, { "source": "52", "target": "1259", "key": "119", "undirected": true }, { "source": "52", "target": "1354", "key": "120", "undirected": true }, { "source": "52", "target": "1580", "key": "126", "undirected": true }, { "source": "52", "target": "1602", "key": "122", "undirected": true }, { "source": "52", "target": "1603", "key": "125", "undirected": true }, { "source": "52", "target": "1607", "key": "124", "undirected": true }, { "source": "52", "target": "17", "key": "135", "undirected": true }, { "source": "52", "target": "344", "key": "137", "undirected": true }, { "source": "52", "target": "481", "key": "138", "undirected": true }, { "source": "52", "target": "499", "key": "131", "undirected": true }, { "source": "52", "target": "733", "key": "134", "undirected": true }, { "source": "52", "target": "743", "key": "133", "undirected": true }, { "source": "52", "target": "746", "key": "130", "undirected": true }, { "source": "52", "target": "831", "key": "136", "undirected": true }, { "source": "52", "target": "861", "key": "128", "undirected": true }, { "source": "52", "target": "897", "key": "121", "undirected": true }, { "source": "52", "target": "947", "key": "129", "undirected": true }, { "source": "52", "target": "948", "key": "139", "undirected": true }, { "source": "520", "target": "299", "key": "2187", "undirected": true }, { "source": "520", "target": "521", "key": "2186", "undirected": true }, { "source": "521", "target": "299", "key": "2189", "undirected": true }, { "source": "521", "target": "520", "key": "2188", "undirected": true }, { "source": "522", "target": "1158", "key": "2191", "undirected": true }, { "source": "522", "target": "1483", "key": "2199", "undirected": true }, { "source": "522", "target": "1505", "key": "2190", "undirected": true }, { "source": "522", "target": "1706", "key": "2196", "undirected": true }, { "source": "522", "target": "1748", "key": "2197", "undirected": true }, { "source": "522", "target": "344", "key": "2195", "undirected": true }, { "source": "522", "target": "357", "key": "2194", "undirected": true }, { "source": "522", "target": "490", "key": "2193", "undirected": true }, { "source": "522", "target": "537", "key": "2201", "undirected": true }, { "source": "522", "target": "639", "key": "2192", "undirected": true }, { "source": "522", "target": "641", "key": "2198", "undirected": true }, { "source": "522", "target": "850", "key": "2200", "undirected": true }, { "source": "524", "target": "481", "key": "2202", "undirected": true }, { "source": "526", "target": "1283", "key": "2203", "undirected": true }, { "source": "526", "target": "725", "key": "2204", "undirected": true }, { "source": "53", "target": "1065", "key": "159", "undirected": true }, { "source": "53", "target": "1158", "key": "165", "undirected": true }, { "source": "53", "target": "1181", "key": "171", "undirected": true }, { "source": "53", "target": "1292", "key": "157", "undirected": true }, { "source": "53", "target": "156", "key": "152", "undirected": true }, { "source": "53", "target": "1570", "key": "156", "undirected": true }, { "source": "53", "target": "1580", "key": "168", "undirected": true }, { "source": "53", "target": "1588", "key": "163", "undirected": true }, { "source": "53", "target": "1589", "key": "153", "undirected": true }, { "source": "53", "target": "1602", "key": "149", "undirected": true }, { "source": "53", "target": "1603", "key": "164", "undirected": true }, { "source": "53", "target": "1652", "key": "170", "undirected": true }, { "source": "53", "target": "1684", "key": "142", "undirected": true }, { "source": "53", "target": "1691", "key": "169", "undirected": true }, { "source": "53", "target": "1704", "key": "148", "undirected": true }, { "source": "53", "target": "222", "key": "145", "undirected": true }, { "source": "53", "target": "225", "key": "150", "undirected": true }, { "source": "53", "target": "344", "key": "140", "undirected": true }, { "source": "53", "target": "493", "key": "143", "undirected": true }, { "source": "53", "target": "497", "key": "144", "undirected": true }, { "source": "53", "target": "52", "key": "154", "undirected": true }, { "source": "53", "target": "54", "key": "141", "undirected": true }, { "source": "53", "target": "639", "key": "160", "undirected": true }, { "source": "53", "target": "696", "key": "161", "undirected": true }, { "source": "53", "target": "743", "key": "158", "undirected": true }, { "source": "53", "target": "831", "key": "146", "undirected": true }, { "source": "53", "target": "850", "key": "167", "undirected": true }, { "source": "53", "target": "857", "key": "147", "undirected": true }, { "source": "53", "target": "859", "key": "162", "undirected": true }, { "source": "53", "target": "922", "key": "151", "undirected": true }, { "source": "53", "target": "926", "key": "166", "undirected": true }, { "source": "53", "target": "981", "key": "155", "undirected": true }, { "source": "530", "target": "1608", "key": "2205", "undirected": true }, { "source": "532", "target": "1671", "key": "2207", "undirected": true }, { "source": "532", "target": "1687", "key": "2206", "undirected": true }, { "source": "533", "target": "1203", "key": "2224", "undirected": true }, { "source": "533", "target": "1275", "key": "2210", "undirected": true }, { "source": "533", "target": "1442", "key": "2212", "undirected": true }, { "source": "533", "target": "1554", "key": "2214", "undirected": true }, { "source": "533", "target": "1614", "key": "2215", "undirected": true }, { "source": "533", "target": "1615", "key": "2220", "undirected": true }, { "source": "533", "target": "1640", "key": "2211", "undirected": true }, { "source": "533", "target": "1751", "key": "2223", "undirected": true }, { "source": "533", "target": "308", "key": "2221", "undirected": true }, { "source": "533", "target": "333", "key": "2209", "undirected": true }, { "source": "533", "target": "342", "key": "2216", "undirected": true }, { "source": "533", "target": "364", "key": "2219", "undirected": true }, { "source": "533", "target": "520", "key": "2217", "undirected": true }, { "source": "533", "target": "657", "key": "2222", "undirected": true }, { "source": "533", "target": "79", "key": "2208", "undirected": true }, { "source": "533", "target": "877", "key": "2213", "undirected": true }, { "source": "533", "target": "896", "key": "2225", "undirected": true }, { "source": "533", "target": "912", "key": "2218", "undirected": true }, { "source": "534", "target": "201", "key": "2226", "undirected": true }, { "source": "535", "target": "1056", "key": "2239", "undirected": true }, { "source": "535", "target": "1290", "key": "2227", "undirected": true }, { "source": "535", "target": "1354", "key": "2238", "undirected": true }, { "source": "535", "target": "1602", "key": "2236", "undirected": true }, { "source": "535", "target": "201", "key": "2243", "undirected": true }, { "source": "535", "target": "258", "key": "2229", "undirected": true }, { "source": "535", "target": "344", "key": "2230", "undirected": true }, { "source": "535", "target": "353", "key": "2235", "undirected": true }, { "source": "535", "target": "383", "key": "2242", "undirected": true }, { "source": "535", "target": "477", "key": "2241", "undirected": true }, { "source": "535", "target": "517", "key": "2234", "undirected": true }, { "source": "535", "target": "603", "key": "2232", "undirected": true }, { "source": "535", "target": "796", "key": "2240", "undirected": true }, { "source": "535", "target": "831", "key": "2231", "undirected": true }, { "source": "535", "target": "862", "key": "2228", "undirected": true }, { "source": "535", "target": "948", "key": "2233", "undirected": true }, { "source": "535", "target": "997", "key": "2237", "undirected": true }, { "source": "536", "target": "1238", "key": "2244", "undirected": true }, { "source": "537", "target": "1104", "key": "2249", "undirected": true }, { "source": "537", "target": "1202", "key": "2246", "undirected": true }, { "source": "537", "target": "1243", "key": "2248", "undirected": true }, { "source": "537", "target": "1250", "key": "2247", "undirected": true }, { "source": "537", "target": "242", "key": "2250", "undirected": true }, { "source": "537", "target": "333", "key": "2251", "undirected": true }, { "source": "537", "target": "639", "key": "2245", "undirected": true }, { "source": "537", "target": "649", "key": "2252", "undirected": true }, { "source": "537", "target": "816", "key": "2253", "undirected": true }, { "source": "542", "target": "1542", "key": "2254", "undirected": true }, { "source": "542", "target": "203", "key": "2257", "undirected": true }, { "source": "542", "target": "579", "key": "2259", "undirected": true }, { "source": "542", "target": "634", "key": "2255", "undirected": true }, { "source": "542", "target": "821", "key": "2258", "undirected": true }, { "source": "542", "target": "960", "key": "2256", "undirected": true }, { "source": "544", "target": "1056", "key": "2286", "undirected": true }, { "source": "544", "target": "1197", "key": "2272", "undirected": true }, { "source": "544", "target": "1290", "key": "2260", "undirected": true }, { "source": "544", "target": "1304", "key": "2283", "undirected": true }, { "source": "544", "target": "1354", "key": "2275", "undirected": true }, { "source": "544", "target": "1478", "key": "2268", "undirected": true }, { "source": "544", "target": "1532", "key": "2265", "undirected": true }, { "source": "544", "target": "1602", "key": "2276", "undirected": true }, { "source": "544", "target": "1697", "key": "2274", "undirected": true }, { "source": "544", "target": "1704", "key": "2279", "undirected": true }, { "source": "544", "target": "1720", "key": "2273", "undirected": true }, { "source": "544", "target": "201", "key": "2284", "undirected": true }, { "source": "544", "target": "258", "key": "2271", "undirected": true }, { "source": "544", "target": "304", "key": "2278", "undirected": true }, { "source": "544", "target": "344", "key": "2264", "undirected": true }, { "source": "544", "target": "353", "key": "2280", "undirected": true }, { "source": "544", "target": "383", "key": "2267", "undirected": true }, { "source": "544", "target": "477", "key": "2289", "undirected": true }, { "source": "544", "target": "517", "key": "2287", "undirected": true }, { "source": "544", "target": "52", "key": "2263", "undirected": true }, { "source": "544", "target": "535", "key": "2262", "undirected": true }, { "source": "544", "target": "568", "key": "2281", "undirected": true }, { "source": "544", "target": "603", "key": "2285", "undirected": true }, { "source": "544", "target": "624", "key": "2269", "undirected": true }, { "source": "544", "target": "796", "key": "2290", "undirected": true }, { "source": "544", "target": "831", "key": "2266", "undirected": true }, { "source": "544", "target": "862", "key": "2261", "undirected": true }, { "source": "544", "target": "897", "key": "2288", "undirected": true }, { "source": "544", "target": "948", "key": "2277", "undirected": true }, { "source": "544", "target": "994", "key": "2270", "undirected": true }, { "source": "544", "target": "997", "key": "2282", "undirected": true }, { "source": "545", "target": "1239", "key": "2292", "undirected": true }, { "source": "545", "target": "303", "key": "2291", "undirected": true }, { "source": "547", "target": "1032", "key": "2294", "undirected": true }, { "source": "547", "target": "1233", "key": "2293", "undirected": true }, { "source": "547", "target": "1313", "key": "2296", "undirected": true }, { "source": "547", "target": "1446", "key": "2299", "undirected": true }, { "source": "547", "target": "1451", "key": "2297", "undirected": true }, { "source": "547", "target": "269", "key": "2300", "undirected": true }, { "source": "547", "target": "588", "key": "2295", "undirected": true }, { "source": "547", "target": "630", "key": "2298", "undirected": true }, { "source": "548", "target": "579", "key": "2303", "undirected": true }, { "source": "548", "target": "588", "key": "2301", "undirected": true }, { "source": "548", "target": "634", "key": "2302", "undirected": true }, { "source": "550", "target": "579", "key": "2304", "undirected": true }, { "source": "550", "target": "816", "key": "2305", "undirected": true }, { "source": "551", "target": "1313", "key": "2314", "undirected": true }, { "source": "551", "target": "1360", "key": "2311", "undirected": true }, { "source": "551", "target": "1508", "key": "2316", "undirected": true }, { "source": "551", "target": "1521", "key": "2318", "undirected": true }, { "source": "551", "target": "1542", "key": "2307", "undirected": true }, { "source": "551", "target": "1560", "key": "2310", "undirected": true }, { "source": "551", "target": "181", "key": "2309", "undirected": true }, { "source": "551", "target": "241", "key": "2319", "undirected": true }, { "source": "551", "target": "269", "key": "2312", "undirected": true }, { "source": "551", "target": "630", "key": "2313", "undirected": true }, { "source": "551", "target": "758", "key": "2308", "undirected": true }, { "source": "551", "target": "816", "key": "2306", "undirected": true }, { "source": "551", "target": "818", "key": "2315", "undirected": true }, { "source": "551", "target": "926", "key": "2317", "undirected": true }, { "source": "560", "target": "1034", "key": "2328", "undirected": true }, { "source": "560", "target": "1046", "key": "2331", "undirected": true }, { "source": "560", "target": "1104", "key": "2320", "undirected": true }, { "source": "560", "target": "1108", "key": "2330", "undirected": true }, { "source": "560", "target": "1113", "key": "2327", "undirected": true }, { "source": "560", "target": "1191", "key": "2321", "undirected": true }, { "source": "560", "target": "1243", "key": "2322", "undirected": true }, { "source": "560", "target": "1364", "key": "2329", "undirected": true }, { "source": "560", "target": "1493", "key": "2332", "undirected": true }, { "source": "560", "target": "1502", "key": "2324", "undirected": true }, { "source": "560", "target": "1612", "key": "2326", "undirected": true }, { "source": "560", "target": "438", "key": "2325", "undirected": true }, { "source": "560", "target": "482", "key": "2323", "undirected": true }, { "source": "561", "target": "1074", "key": "2333", "undirected": true }, { "source": "561", "target": "1666", "key": "2336", "undirected": true }, { "source": "561", "target": "1737", "key": "2334", "undirected": true }, { "source": "561", "target": "239", "key": "2337", "undirected": true }, { "source": "561", "target": "799", "key": "2335", "undirected": true }, { "source": "563", "target": "1127", "key": "2338", "attributes": { "weight": 2 }, "undirected": true }, { "source": "563", "target": "306", "key": "2339", "attributes": { "weight": 2 }, "undirected": true }, { "source": "563", "target": "459", "key": "2340", "attributes": { "weight": 2 }, "undirected": true }, { "source": "563", "target": "460", "key": "2341", "attributes": { "weight": 2 }, "undirected": true }, { "source": "564", "target": "1611", "key": "2346", "undirected": true }, { "source": "564", "target": "294", "key": "2347", "undirected": true }, { "source": "567", "target": "239", "key": "2348", "undirected": true }, { "source": "568", "target": "1304", "key": "2349", "undirected": true }, { "source": "568", "target": "1411", "key": "2350", "undirected": true }, { "source": "568", "target": "570", "key": "2351", "undirected": true }, { "source": "57", "target": "1032", "key": "174", "undirected": true }, { "source": "57", "target": "1313", "key": "173", "undirected": true }, { "source": "57", "target": "1451", "key": "178", "undirected": true }, { "source": "57", "target": "1560", "key": "175", "undirected": true }, { "source": "57", "target": "203", "key": "182", "undirected": true }, { "source": "57", "target": "269", "key": "172", "undirected": true }, { "source": "57", "target": "362", "key": "179", "undirected": true }, { "source": "57", "target": "592", "key": "180", "undirected": true }, { "source": "57", "target": "630", "key": "176", "undirected": true }, { "source": "57", "target": "754", "key": "181", "undirected": true }, { "source": "57", "target": "791", "key": "177", "undirected": true }, { "source": "570", "target": "481", "key": "2353", "undirected": true }, { "source": "570", "target": "672", "key": "2352", "undirected": true }, { "source": "576", "target": "1466", "key": "2354", "undirected": true }, { "source": "576", "target": "1629", "key": "2355", "undirected": true }, { "source": "576", "target": "481", "key": "2356", "undirected": true }, { "source": "577", "target": "1033", "key": "2357", "undirected": true }, { "source": "58", "target": "1663", "key": "183", "undirected": true }, { "source": "580", "target": "1593", "key": "2359", "undirected": true }, { "source": "580", "target": "292", "key": "2358", "undirected": true }, { "source": "581", "target": "1301", "key": "2364", "undirected": true }, { "source": "581", "target": "1585", "key": "2363", "undirected": true }, { "source": "581", "target": "1619", "key": "2362", "undirected": true }, { "source": "581", "target": "1620", "key": "2360", "undirected": true }, { "source": "581", "target": "275", "key": "2361", "undirected": true }, { "source": "583", "target": "1542", "key": "2370", "undirected": true }, { "source": "583", "target": "804", "key": "2368", "undirected": true }, { "source": "583", "target": "816", "key": "2365", "undirected": true }, { "source": "583", "target": "874", "key": "2369", "undirected": true }, { "source": "583", "target": "956", "key": "2366", "undirected": true }, { "source": "583", "target": "965", "key": "2367", "undirected": true }, { "source": "584", "target": "707", "key": "2372", "undirected": true }, { "source": "584", "target": "982", "key": "2371", "undirected": true }, { "source": "585", "target": "1303", "key": "2373", "undirected": true }, { "source": "585", "target": "1579", "key": "2374", "undirected": true }, { "source": "585", "target": "1718", "key": "2376", "undirected": true }, { "source": "585", "target": "914", "key": "2375", "undirected": true }, { "source": "587", "target": "1246", "key": "2377", "undirected": true }, { "source": "587", "target": "1320", "key": "2379", "undirected": true }, { "source": "587", "target": "1731", "key": "2378", "undirected": true }, { "source": "587", "target": "757", "key": "2380", "undirected": true }, { "source": "587", "target": "806", "key": "2381", "undirected": true }, { "source": "588", "target": "1032", "key": "2382", "undirected": true }, { "source": "588", "target": "1233", "key": "2388", "undirected": true }, { "source": "588", "target": "1446", "key": "2387", "undirected": true }, { "source": "588", "target": "1451", "key": "2384", "undirected": true }, { "source": "588", "target": "269", "key": "2385", "undirected": true }, { "source": "588", "target": "547", "key": "2390", "undirected": true }, { "source": "588", "target": "551", "key": "2391", "undirected": true }, { "source": "588", "target": "601", "key": "2389", "undirected": true }, { "source": "588", "target": "630", "key": "2383", "undirected": true }, { "source": "588", "target": "979", "key": "2386", "undirected": true }, { "source": "59", "target": "1586", "key": "184", "undirected": true }, { "source": "59", "target": "451", "key": "185", "undirected": true }, { "source": "592", "target": "1024", "key": "2412", "undirected": true }, { "source": "592", "target": "1025", "key": "2397", "undirected": true }, { "source": "592", "target": "1032", "key": "2403", "undirected": true }, { "source": "592", "target": "13", "key": "2402", "undirected": true }, { "source": "592", "target": "1313", "key": "2395", "undirected": true }, { "source": "592", "target": "1426", "key": "2410", "undirected": true }, { "source": "592", "target": "1451", "key": "2407", "undirected": true }, { "source": "592", "target": "1465", "key": "2393", "undirected": true }, { "source": "592", "target": "1516", "key": "2411", "undirected": true }, { "source": "592", "target": "1651", "key": "2400", "undirected": true }, { "source": "592", "target": "1708", "key": "2401", "undirected": true }, { "source": "592", "target": "190", "key": "2409", "undirected": true }, { "source": "592", "target": "269", "key": "2405", "undirected": true }, { "source": "592", "target": "286", "key": "2399", "undirected": true }, { "source": "592", "target": "362", "key": "2398", "undirected": true }, { "source": "592", "target": "551", "key": "2413", "undirected": true }, { "source": "592", "target": "588", "key": "2394", "undirected": true }, { "source": "592", "target": "593", "key": "2408", "undirected": true }, { "source": "592", "target": "630", "key": "2404", "undirected": true }, { "source": "592", "target": "791", "key": "2396", "undirected": true }, { "source": "592", "target": "821", "key": "2392", "undirected": true }, { "source": "592", "target": "955", "key": "2406", "undirected": true }, { "source": "593", "target": "1015", "key": "2420", "undirected": true }, { "source": "593", "target": "1313", "key": "2421", "undirected": true }, { "source": "593", "target": "1361", "key": "2416", "undirected": true }, { "source": "593", "target": "1367", "key": "2423", "undirected": true }, { "source": "593", "target": "1516", "key": "2418", "undirected": true }, { "source": "593", "target": "203", "key": "2424", "undirected": true }, { "source": "593", "target": "551", "key": "2419", "undirected": true }, { "source": "593", "target": "588", "key": "2414", "undirected": true }, { "source": "593", "target": "592", "key": "2425", "undirected": true }, { "source": "593", "target": "617", "key": "2426", "undirected": true }, { "source": "593", "target": "630", "key": "2415", "undirected": true }, { "source": "593", "target": "716", "key": "2422", "undirected": true }, { "source": "593", "target": "955", "key": "2417", "undirected": true }, { "source": "595", "target": "1046", "key": "2438", "undirected": true }, { "source": "595", "target": "1104", "key": "2436", "undirected": true }, { "source": "595", "target": "1191", "key": "2435", "undirected": true }, { "source": "595", "target": "1243", "key": "2434", "undirected": true }, { "source": "595", "target": "1330", "key": "2430", "undirected": true }, { "source": "595", "target": "1468", "key": "2429", "undirected": true }, { "source": "595", "target": "1490", "key": "2427", "undirected": true }, { "source": "595", "target": "1569", "key": "2428", "undirected": true }, { "source": "595", "target": "1602", "key": "2437", "undirected": true }, { "source": "595", "target": "1612", "key": "2433", "undirected": true }, { "source": "595", "target": "1622", "key": "2431", "undirected": true }, { "source": "595", "target": "438", "key": "2432", "undirected": true }, { "source": "597", "target": "1015", "key": "2439", "undirected": true }, { "source": "597", "target": "1021", "key": "2440", "undirected": true }, { "source": "597", "target": "1045", "key": "2453", "undirected": true }, { "source": "597", "target": "1186", "key": "2448", "undirected": true }, { "source": "597", "target": "1241", "key": "2443", "undirected": true }, { "source": "597", "target": "1441", "key": "2447", "undirected": true }, { "source": "597", "target": "1465", "key": "2452", "undirected": true }, { "source": "597", "target": "1675", "key": "2446", "undirected": true }, { "source": "597", "target": "1678", "key": "2451", "undirected": true }, { "source": "597", "target": "1695", "key": "2442", "undirected": true }, { "source": "597", "target": "247", "key": "2450", "undirected": true }, { "source": "597", "target": "510", "key": "2456", "undirected": true }, { "source": "597", "target": "609", "key": "2449", "undirected": true }, { "source": "597", "target": "802", "key": "2445", "undirected": true }, { "source": "597", "target": "943", "key": "2454", "undirected": true }, { "source": "597", "target": "969", "key": "2444", "undirected": true }, { "source": "597", "target": "992", "key": "2455", "undirected": true }, { "source": "597", "target": "993", "key": "2441", "undirected": true }, { "source": "598", "target": "1041", "key": "2458", "undirected": true }, { "source": "598", "target": "1305", "key": "2460", "undirected": true }, { "source": "598", "target": "156", "key": "2457", "undirected": true }, { "source": "598", "target": "1591", "key": "2461", "undirected": true }, { "source": "598", "target": "1603", "key": "2459", "undirected": true }, { "source": "598", "target": "344", "key": "2462", "undirected": true }, { "source": "6", "target": "258", "key": "7", "undirected": true }, { "source": "6", "target": "477", "key": "4", "undirected": true }, { "source": "6", "target": "485", "key": "5", "undirected": true }, { "source": "6", "target": "730", "key": "6", "undirected": true }, { "source": "6", "target": "773", "key": "3", "undirected": true }, { "source": "601", "target": "715", "key": "2463", "undirected": true }, { "source": "603", "target": "1417", "key": "2472", "undirected": true }, { "source": "603", "target": "1570", "key": "2470", "undirected": true }, { "source": "603", "target": "1684", "key": "2464", "undirected": true }, { "source": "603", "target": "1687", "key": "2467", "undirected": true }, { "source": "603", "target": "1704", "key": "2478", "undirected": true }, { "source": "603", "target": "201", "key": "2482", "undirected": true }, { "source": "603", "target": "27", "key": "2475", "undirected": true }, { "source": "603", "target": "344", "key": "2479", "undirected": true }, { "source": "603", "target": "350", "key": "2477", "undirected": true }, { "source": "603", "target": "383", "key": "2476", "undirected": true }, { "source": "603", "target": "386", "key": "2481", "undirected": true }, { "source": "603", "target": "52", "key": "2465", "undirected": true }, { "source": "603", "target": "544", "key": "2480", "undirected": true }, { "source": "603", "target": "63", "key": "2474", "undirected": true }, { "source": "603", "target": "831", "key": "2469", "undirected": true }, { "source": "603", "target": "857", "key": "2466", "undirected": true }, { "source": "603", "target": "897", "key": "2468", "undirected": true }, { "source": "603", "target": "926", "key": "2471", "undirected": true }, { "source": "603", "target": "948", "key": "2473", "undirected": true }, { "source": "608", "target": "1444", "key": "2483", "undirected": true }, { "source": "608", "target": "333", "key": "2484", "undirected": true }, { "source": "609", "target": "1021", "key": "2486", "undirected": true }, { "source": "609", "target": "1025", "key": "2485", "undirected": true }, { "source": "609", "target": "1045", "key": "2499", "undirected": true }, { "source": "609", "target": "1145", "key": "2498", "undirected": true }, { "source": "609", "target": "1186", "key": "2493", "undirected": true }, { "source": "609", "target": "1241", "key": "2497", "undirected": true }, { "source": "609", "target": "1441", "key": "2496", "undirected": true }, { "source": "609", "target": "1465", "key": "2492", "undirected": true }, { "source": "609", "target": "1675", "key": "2495", "undirected": true }, { "source": "609", "target": "1678", "key": "2494", "undirected": true }, { "source": "609", "target": "247", "key": "2489", "undirected": true }, { "source": "609", "target": "597", "key": "2490", "undirected": true }, { "source": "609", "target": "791", "key": "2487", "undirected": true }, { "source": "609", "target": "802", "key": "2501", "undirected": true }, { "source": "609", "target": "943", "key": "2491", "undirected": true }, { "source": "609", "target": "956", "key": "2488", "undirected": true }, { "source": "609", "target": "969", "key": "2500", "undirected": true }, { "source": "609", "target": "992", "key": "2502", "undirected": true }, { "source": "61", "target": "1313", "key": "191", "undirected": true }, { "source": "61", "target": "1451", "key": "192", "undirected": true }, { "source": "61", "target": "154", "key": "189", "undirected": true }, { "source": "61", "target": "155", "key": "188", "undirected": true }, { "source": "61", "target": "1664", "key": "193", "undirected": true }, { "source": "61", "target": "190", "key": "190", "undirected": true }, { "source": "61", "target": "635", "key": "186", "undirected": true }, { "source": "61", "target": "95", "key": "187", "undirected": true }, { "source": "610", "target": "1570", "key": "2506", "undirected": true }, { "source": "610", "target": "1588", "key": "2507", "undirected": true }, { "source": "610", "target": "1704", "key": "2504", "undirected": true }, { "source": "610", "target": "357", "key": "2508", "undirected": true }, { "source": "610", "target": "625", "key": "2509", "undirected": true }, { "source": "610", "target": "888", "key": "2505", "undirected": true }, { "source": "610", "target": "926", "key": "2503", "undirected": true }, { "source": "611", "target": "1033", "key": "2510", "undirected": true }, { "source": "612", "target": "238", "key": "2511", "undirected": true }, { "source": "612", "target": "551", "key": "2512", "undirected": true }, { "source": "614", "target": "1074", "key": "2514", "undirected": true }, { "source": "614", "target": "1357", "key": "2515", "undirected": true }, { "source": "614", "target": "546", "key": "2513", "undirected": true }, { "source": "617", "target": "593", "key": "2516", "undirected": true }, { "source": "618", "target": "1346", "key": "2519", "undirected": true }, { "source": "618", "target": "1383", "key": "2518", "undirected": true }, { "source": "618", "target": "1408", "key": "2521", "undirected": true }, { "source": "618", "target": "235", "key": "2520", "undirected": true }, { "source": "618", "target": "460", "key": "2517", "undirected": true }, { "source": "619", "target": "1089", "key": "2526", "undirected": true }, { "source": "619", "target": "1247", "key": "2524", "undirected": true }, { "source": "619", "target": "442", "key": "2522", "undirected": true }, { "source": "619", "target": "456", "key": "2527", "undirected": true }, { "source": "619", "target": "460", "key": "2525", "undirected": true }, { "source": "619", "target": "843", "key": "2523", "undirected": true }, { "source": "62", "target": "1158", "key": "194", "undirected": true }, { "source": "62", "target": "1286", "key": "196", "undirected": true }, { "source": "62", "target": "1570", "key": "201", "undirected": true }, { "source": "62", "target": "1602", "key": "200", "undirected": true }, { "source": "62", "target": "1652", "key": "195", "undirected": true }, { "source": "62", "target": "1704", "key": "199", "undirected": true }, { "source": "62", "target": "660", "key": "203", "undirected": true }, { "source": "62", "target": "668", "key": "202", "undirected": true }, { "source": "62", "target": "930", "key": "198", "undirected": true }, { "source": "62", "target": "936", "key": "197", "undirected": true }, { "source": "620", "target": "619", "key": "2528", "undirected": true }, { "source": "621", "target": "1233", "key": "2529", "undirected": true }, { "source": "621", "target": "1313", "key": "2540", "undirected": true }, { "source": "621", "target": "1508", "key": "2535", "undirected": true }, { "source": "621", "target": "1560", "key": "2539", "undirected": true }, { "source": "621", "target": "243", "key": "2533", "undirected": true }, { "source": "621", "target": "244", "key": "2532", "undirected": true }, { "source": "621", "target": "269", "key": "2536", "undirected": true }, { "source": "621", "target": "281", "key": "2530", "undirected": true }, { "source": "621", "target": "641", "key": "2531", "undirected": true }, { "source": "621", "target": "804", "key": "2534", "undirected": true }, { "source": "621", "target": "816", "key": "2537", "undirected": true }, { "source": "621", "target": "818", "key": "2538", "undirected": true }, { "source": "624", "target": "1095", "key": "2544", "undirected": true }, { "source": "624", "target": "1354", "key": "2541", "undirected": true }, { "source": "624", "target": "499", "key": "2543", "undirected": true }, { "source": "624", "target": "52", "key": "2546", "undirected": true }, { "source": "624", "target": "568", "key": "2545", "undirected": true }, { "source": "624", "target": "716", "key": "2542", "undirected": true }, { "source": "625", "target": "1580", "key": "2547", "undirected": true }, { "source": "625", "target": "1588", "key": "2548", "undirected": true }, { "source": "63", "target": "1276", "key": "212", "undirected": true }, { "source": "63", "target": "1353", "key": "225", "undirected": true }, { "source": "63", "target": "1570", "key": "210", "undirected": true }, { "source": "63", "target": "1588", "key": "216", "undirected": true }, { "source": "63", "target": "1589", "key": "209", "undirected": true }, { "source": "63", "target": "1671", "key": "208", "undirected": true }, { "source": "63", "target": "1684", "key": "204", "undirected": true }, { "source": "63", "target": "1687", "key": "217", "undirected": true }, { "source": "63", "target": "1690", "key": "213", "undirected": true }, { "source": "63", "target": "1691", "key": "218", "undirected": true }, { "source": "63", "target": "1699", "key": "206", "undirected": true }, { "source": "63", "target": "1704", "key": "207", "undirected": true }, { "source": "63", "target": "344", "key": "226", "undirected": true }, { "source": "63", "target": "386", "key": "220", "undirected": true }, { "source": "63", "target": "639", "key": "224", "undirected": true }, { "source": "63", "target": "850", "key": "215", "undirected": true }, { "source": "63", "target": "857", "key": "219", "undirected": true }, { "source": "63", "target": "922", "key": "214", "undirected": true }, { "source": "63", "target": "926", "key": "205", "undirected": true }, { "source": "63", "target": "940", "key": "223", "undirected": true }, { "source": "63", "target": "941", "key": "222", "undirected": true }, { "source": "63", "target": "978", "key": "211", "undirected": true }, { "source": "63", "target": "988", "key": "221", "undirected": true }, { "source": "630", "target": "1032", "key": "2550", "undirected": true }, { "source": "630", "target": "269", "key": "2552", "undirected": true }, { "source": "630", "target": "547", "key": "2549", "undirected": true }, { "source": "630", "target": "588", "key": "2551", "undirected": true }, { "source": "633", "target": "314", "key": "2553", "undirected": true }, { "source": "634", "target": "1027", "key": "2554", "undirected": true }, { "source": "634", "target": "1137", "key": "2560", "undirected": true }, { "source": "634", "target": "1233", "key": "2557", "undirected": true }, { "source": "634", "target": "1446", "key": "2558", "undirected": true }, { "source": "634", "target": "1528", "key": "2561", "undirected": true }, { "source": "634", "target": "1543", "key": "2562", "undirected": true }, { "source": "634", "target": "548", "key": "2556", "undirected": true }, { "source": "634", "target": "584", "key": "2555", "undirected": true }, { "source": "634", "target": "630", "key": "2559", "undirected": true }, { "source": "634", "target": "960", "key": "2563", "undirected": true }, { "source": "634", "target": "992", "key": "2564", "undirected": true }, { "source": "635", "target": "1313", "key": "2571", "undirected": true }, { "source": "635", "target": "154", "key": "2569", "undirected": true }, { "source": "635", "target": "155", "key": "2568", "undirected": true }, { "source": "635", "target": "1664", "key": "2573", "undirected": true }, { "source": "635", "target": "190", "key": "2565", "undirected": true }, { "source": "635", "target": "547", "key": "2570", "undirected": true }, { "source": "635", "target": "61", "key": "2566", "undirected": true }, { "source": "635", "target": "95", "key": "2567", "undirected": true }, { "source": "635", "target": "952", "key": "2572", "undirected": true }, { "source": "636", "target": "1612", "key": "2574", "undirected": true }, { "source": "639", "target": "1243", "key": "2578", "undirected": true }, { "source": "639", "target": "1250", "key": "2577", "undirected": true }, { "source": "639", "target": "1602", "key": "2581", "undirected": true }, { "source": "639", "target": "1608", "key": "2582", "undirected": true }, { "source": "639", "target": "1621", "key": "2576", "undirected": true }, { "source": "639", "target": "242", "key": "2580", "undirected": true }, { "source": "639", "target": "490", "key": "2575", "undirected": true }, { "source": "639", "target": "537", "key": "2579", "undirected": true }, { "source": "640", "target": "639", "key": "2583", "undirected": true }, { "source": "641", "target": "639", "key": "2584", "undirected": true }, { "source": "642", "target": "412", "key": "2585", "undirected": true }, { "source": "643", "target": "1007", "key": "2588", "undirected": true }, { "source": "643", "target": "1037", "key": "2600", "undirected": true }, { "source": "643", "target": "1039", "key": "2592", "undirected": true }, { "source": "643", "target": "1089", "key": "2590", "undirected": true }, { "source": "643", "target": "1135", "key": "2591", "undirected": true }, { "source": "643", "target": "1247", "key": "2587", "undirected": true }, { "source": "643", "target": "1293", "key": "2595", "undirected": true }, { "source": "643", "target": "1602", "key": "2593", "undirected": true }, { "source": "643", "target": "230", "key": "2596", "undirected": true }, { "source": "643", "target": "409", "key": "2603", "undirected": true }, { "source": "643", "target": "413", "key": "2601", "undirected": true }, { "source": "643", "target": "414", "key": "2599", "undirected": true }, { "source": "643", "target": "415", "key": "2602", "undirected": true }, { "source": "643", "target": "417", "key": "2589", "undirected": true }, { "source": "643", "target": "428", "key": "2607", "undirected": true }, { "source": "643", "target": "450", "key": "2606", "undirected": true }, { "source": "643", "target": "459", "key": "2598", "undirected": true }, { "source": "643", "target": "460", "key": "2605", "undirected": true }, { "source": "643", "target": "515", "key": "2586", "undirected": true }, { "source": "643", "target": "590", "key": "2594", "undirected": true }, { "source": "643", "target": "673", "key": "2597", "undirected": true }, { "source": "643", "target": "747", "key": "2604", "undirected": true }, { "source": "645", "target": "1035", "key": "2608", "undirected": true }, { "source": "645", "target": "1061", "key": "2609", "undirected": true }, { "source": "645", "target": "1196", "key": "2612", "undirected": true }, { "source": "645", "target": "1491", "key": "2614", "undirected": true }, { "source": "645", "target": "1529", "key": "2611", "undirected": true }, { "source": "645", "target": "1540", "key": "2610", "undirected": true }, { "source": "645", "target": "1712", "key": "2613", "undirected": true }, { "source": "646", "target": "1352", "key": "2618", "undirected": true }, { "source": "646", "target": "1539", "key": "2619", "undirected": true }, { "source": "646", "target": "377", "key": "2616", "undirected": true }, { "source": "646", "target": "412", "key": "2617", "undirected": true }, { "source": "646", "target": "481", "key": "2615", "undirected": true }, { "source": "646", "target": "753", "key": "2620", "undirected": true }, { "source": "649", "target": "1421", "key": "2626", "undirected": true }, { "source": "649", "target": "1496", "key": "2628", "undirected": true }, { "source": "649", "target": "1542", "key": "2634", "undirected": true }, { "source": "649", "target": "1560", "key": "2625", "undirected": true }, { "source": "649", "target": "1567", "key": "2624", "undirected": true }, { "source": "649", "target": "203", "key": "2629", "undirected": true }, { "source": "649", "target": "551", "key": "2632", "undirected": true }, { "source": "649", "target": "601", "key": "2630", "undirected": true }, { "source": "649", "target": "639", "key": "2622", "undirected": true }, { "source": "649", "target": "652", "key": "2621", "undirected": true }, { "source": "649", "target": "698", "key": "2627", "undirected": true }, { "source": "649", "target": "754", "key": "2623", "undirected": true }, { "source": "649", "target": "816", "key": "2633", "undirected": true }, { "source": "649", "target": "946", "key": "2635", "undirected": true }, { "source": "649", "target": "960", "key": "2631", "undirected": true }, { "source": "65", "target": "396", "key": "228", "undirected": true }, { "source": "65", "target": "492", "key": "227", "undirected": true }, { "source": "650", "target": "1570", "key": "2643", "undirected": true }, { "source": "650", "target": "1580", "key": "2641", "undirected": true }, { "source": "650", "target": "1687", "key": "2647", "undirected": true }, { "source": "650", "target": "1713", "key": "2636", "undirected": true }, { "source": "650", "target": "439", "key": "2640", "undirected": true }, { "source": "650", "target": "532", "key": "2645", "undirected": true }, { "source": "650", "target": "639", "key": "2646", "undirected": true }, { "source": "650", "target": "648", "key": "2639", "undirected": true }, { "source": "650", "target": "651", "key": "2638", "undirected": true }, { "source": "650", "target": "723", "key": "2642", "undirected": true }, { "source": "650", "target": "850", "key": "2644", "undirected": true }, { "source": "650", "target": "922", "key": "2648", "undirected": true }, { "source": "650", "target": "978", "key": "2649", "undirected": true }, { "source": "650", "target": "981", "key": "2637", "undirected": true }, { "source": "651", "target": "1713", "key": "2651", "undirected": true }, { "source": "651", "target": "439", "key": "2653", "undirected": true }, { "source": "651", "target": "648", "key": "2652", "undirected": true }, { "source": "651", "target": "650", "key": "2650", "undirected": true }, { "source": "651", "target": "981", "key": "2654", "undirected": true }, { "source": "653", "target": "1032", "key": "2655", "undirected": true }, { "source": "653", "target": "1313", "key": "2656", "undirected": true }, { "source": "653", "target": "1518", "key": "2657", "undirected": true }, { "source": "653", "target": "816", "key": "2658", "undirected": true }, { "source": "654", "target": "1034", "key": "2666", "undirected": true }, { "source": "654", "target": "1035", "key": "2664", "undirected": true }, { "source": "654", "target": "1061", "key": "2662", "undirected": true }, { "source": "654", "target": "1112", "key": "2663", "undirected": true }, { "source": "654", "target": "1175", "key": "2668", "undirected": true }, { "source": "654", "target": "1657", "key": "2667", "undirected": true }, { "source": "654", "target": "560", "key": "2660", "undirected": true }, { "source": "654", "target": "62", "key": "2665", "undirected": true }, { "source": "654", "target": "660", "key": "2661", "undirected": true }, { "source": "654", "target": "668", "key": "2659", "undirected": true }, { "source": "655", "target": "1108", "key": "2669", "undirected": true }, { "source": "656", "target": "1505", "key": "2671", "undirected": true }, { "source": "656", "target": "522", "key": "2670", "undirected": true }, { "source": "657", "target": "1166", "key": "2679", "undirected": true }, { "source": "657", "target": "1202", "key": "2672", "undirected": true }, { "source": "657", "target": "1671", "key": "2680", "undirected": true }, { "source": "657", "target": "1703", "key": "2676", "undirected": true }, { "source": "657", "target": "302", "key": "2677", "undirected": true }, { "source": "657", "target": "490", "key": "2675", "undirected": true }, { "source": "657", "target": "537", "key": "2674", "undirected": true }, { "source": "657", "target": "639", "key": "2673", "undirected": true }, { "source": "657", "target": "709", "key": "2678", "undirected": true }, { "source": "658", "target": "1293", "key": "2681", "undirected": true }, { "source": "659", "target": "1020", "key": "2682", "undirected": true }, { "source": "659", "target": "1065", "key": "2704", "undirected": true }, { "source": "659", "target": "1089", "key": "2700", "undirected": true }, { "source": "659", "target": "1159", "key": "2695", "undirected": true }, { "source": "659", "target": "1166", "key": "2684", "undirected": true }, { "source": "659", "target": "1271", "key": "2698", "undirected": true }, { "source": "659", "target": "1309", "key": "2693", "undirected": true }, { "source": "659", "target": "1421", "key": "2702", "undirected": true }, { "source": "659", "target": "1431", "key": "2687", "undirected": true }, { "source": "659", "target": "1571", "key": "2685", "undirected": true }, { "source": "659", "target": "1588", "key": "2690", "undirected": true }, { "source": "659", "target": "1603", "key": "2689", "undirected": true }, { "source": "659", "target": "1655", "key": "2686", "undirected": true }, { "source": "659", "target": "1691", "key": "2683", "undirected": true }, { "source": "659", "target": "1704", "key": "2691", "undirected": true }, { "source": "659", "target": "236", "key": "2688", "undirected": true }, { "source": "659", "target": "344", "key": "2705", "undirected": true }, { "source": "659", "target": "490", "key": "2697", "undirected": true }, { "source": "659", "target": "537", "key": "2699", "undirected": true }, { "source": "659", "target": "639", "key": "2696", "undirected": true }, { "source": "659", "target": "649", "key": "2701", "undirected": true }, { "source": "659", "target": "709", "key": "2694", "undirected": true }, { "source": "659", "target": "859", "key": "2692", "undirected": true }, { "source": "659", "target": "884", "key": "2703", "undirected": true }, { "source": "66", "target": "109", "key": "233", "undirected": true }, { "source": "66", "target": "174", "key": "231", "undirected": true }, { "source": "66", "target": "176", "key": "229", "undirected": true }, { "source": "66", "target": "97", "key": "230", "undirected": true }, { "source": "66", "target": "99", "key": "232", "undirected": true }, { "source": "663", "target": "1061", "key": "2708", "undirected": true }, { "source": "663", "target": "1239", "key": "2710", "undirected": true }, { "source": "663", "target": "1521", "key": "2709", "undirected": true }, { "source": "663", "target": "664", "key": "2706", "undirected": true }, { "source": "663", "target": "909", "key": "2711", "undirected": true }, { "source": "663", "target": "974", "key": "2707", "undirected": true }, { "source": "664", "target": "663", "key": "2712", "undirected": true }, { "source": "666", "target": "1158", "key": "2729", "undirected": true }, { "source": "666", "target": "1202", "key": "2713", "undirected": true }, { "source": "666", "target": "1461", "key": "2717", "undirected": true }, { "source": "666", "target": "1554", "key": "2725", "undirected": true }, { "source": "666", "target": "1581", "key": "2723", "undirected": true }, { "source": "666", "target": "1584", "key": "2721", "undirected": true }, { "source": "666", "target": "1614", "key": "2726", "undirected": true }, { "source": "666", "target": "1617", "key": "2722", "undirected": true }, { "source": "666", "target": "1640", "key": "2724", "undirected": true }, { "source": "666", "target": "313", "key": "2720", "undirected": true }, { "source": "666", "target": "333", "key": "2715", "undirected": true }, { "source": "666", "target": "397", "key": "2719", "undirected": true }, { "source": "666", "target": "446", "key": "2716", "undirected": true }, { "source": "666", "target": "537", "key": "2728", "undirected": true }, { "source": "666", "target": "639", "key": "2714", "undirected": true }, { "source": "666", "target": "657", "key": "2718", "undirected": true }, { "source": "666", "target": "896", "key": "2727", "undirected": true }, { "source": "667", "target": "222", "key": "2732", "undirected": true }, { "source": "667", "target": "344", "key": "2731", "undirected": true }, { "source": "667", "target": "665", "key": "2733", "undirected": true }, { "source": "667", "target": "747", "key": "2730", "undirected": true }, { "source": "668", "target": "1035", "key": "2735", "undirected": true }, { "source": "668", "target": "1104", "key": "2761", "undirected": true }, { "source": "668", "target": "1112", "key": "2734", "undirected": true }, { "source": "668", "target": "1158", "key": "2753", "undirected": true }, { "source": "668", "target": "1178", "key": "2740", "undirected": true }, { "source": "668", "target": "1191", "key": "2745", "undirected": true }, { "source": "668", "target": "1196", "key": "2737", "undirected": true }, { "source": "668", "target": "1210", "key": "2748", "undirected": true }, { "source": "668", "target": "1211", "key": "2747", "undirected": true }, { "source": "668", "target": "1225", "key": "2743", "undirected": true }, { "source": "668", "target": "1364", "key": "2759", "undirected": true }, { "source": "668", "target": "1491", "key": "2742", "undirected": true }, { "source": "668", "target": "1540", "key": "2739", "undirected": true }, { "source": "668", "target": "1569", "key": "2741", "undirected": true }, { "source": "668", "target": "1602", "key": "2757", "undirected": true }, { "source": "668", "target": "1612", "key": "2746", "undirected": true }, { "source": "668", "target": "1622", "key": "2749", "undirected": true }, { "source": "668", "target": "1712", "key": "2738", "undirected": true }, { "source": "668", "target": "481", "key": "2762", "undirected": true }, { "source": "668", "target": "537", "key": "2750", "undirected": true }, { "source": "668", "target": "571", "key": "2760", "undirected": true }, { "source": "668", "target": "62", "key": "2752", "undirected": true }, { "source": "668", "target": "645", "key": "2736", "undirected": true }, { "source": "668", "target": "654", "key": "2744", "undirected": true }, { "source": "668", "target": "660", "key": "2751", "undirected": true }, { "source": "668", "target": "718", "key": "2755", "undirected": true }, { "source": "668", "target": "793", "key": "2754", "undirected": true }, { "source": "668", "target": "825", "key": "2756", "undirected": true }, { "source": "668", "target": "975", "key": "2758", "undirected": true }, { "source": "669", "target": "1067", "key": "2773", "undirected": true }, { "source": "669", "target": "1076", "key": "2780", "undirected": true }, { "source": "669", "target": "1244", "key": "2768", "undirected": true }, { "source": "669", "target": "1440", "key": "2779", "undirected": true }, { "source": "669", "target": "1480", "key": "2777", "undirected": true }, { "source": "669", "target": "1553", "key": "2772", "undirected": true }, { "source": "669", "target": "1598", "key": "2766", "undirected": true }, { "source": "669", "target": "1603", "key": "2774", "undirected": true }, { "source": "669", "target": "1650", "key": "2767", "undirected": true }, { "source": "669", "target": "1703", "key": "2770", "undirected": true }, { "source": "669", "target": "1727", "key": "2763", "undirected": true }, { "source": "669", "target": "226", "key": "2776", "undirected": true }, { "source": "669", "target": "242", "key": "2765", "undirected": true }, { "source": "669", "target": "377", "key": "2778", "undirected": true }, { "source": "669", "target": "753", "key": "2775", "undirected": true }, { "source": "669", "target": "936", "key": "2769", "undirected": true }, { "source": "669", "target": "977", "key": "2764", "undirected": true }, { "source": "669", "target": "983", "key": "2771", "undirected": true }, { "source": "67", "target": "1330", "key": "234", "undirected": true }, { "source": "672", "target": "1012", "key": "2793", "undirected": true }, { "source": "672", "target": "1093", "key": "2797", "undirected": true }, { "source": "672", "target": "1125", "key": "2795", "undirected": true }, { "source": "672", "target": "1127", "key": "2785", "undirected": true }, { "source": "672", "target": "1138", "key": "2799", "undirected": true }, { "source": "672", "target": "1248", "key": "2781", "undirected": true }, { "source": "672", "target": "1256", "key": "2800", "undirected": true }, { "source": "672", "target": "1268", "key": "2798", "undirected": true }, { "source": "672", "target": "1459", "key": "2791", "undirected": true }, { "source": "672", "target": "1515", "key": "2796", "undirected": true }, { "source": "672", "target": "165", "key": "2802", "undirected": true }, { "source": "672", "target": "1738", "key": "2809", "undirected": true }, { "source": "672", "target": "192", "key": "2784", "undirected": true }, { "source": "672", "target": "229", "key": "2804", "undirected": true }, { "source": "672", "target": "239", "key": "2794", "undirected": true }, { "source": "672", "target": "354", "key": "2790", "undirected": true }, { "source": "672", "target": "425", "key": "2811", "undirected": true }, { "source": "672", "target": "494", "key": "2808", "undirected": true }, { "source": "672", "target": "570", "key": "2813", "undirected": true }, { "source": "672", "target": "589", "key": "2805", "undirected": true }, { "source": "672", "target": "614", "key": "2803", "undirected": true }, { "source": "672", "target": "681", "key": "2787", "undirected": true }, { "source": "672", "target": "692", "key": "2801", "undirected": true }, { "source": "672", "target": "709", "key": "2812", "undirected": true }, { "source": "672", "target": "725", "key": "2807", "undirected": true }, { "source": "672", "target": "744", "key": "2810", "undirected": true }, { "source": "672", "target": "752", "key": "2783", "undirected": true }, { "source": "672", "target": "774", "key": "2786", "undirected": true }, { "source": "672", "target": "787", "key": "2806", "undirected": true }, { "source": "672", "target": "855", "key": "2782", "undirected": true }, { "source": "672", "target": "876", "key": "2789", "undirected": true }, { "source": "672", "target": "911", "key": "2792", "undirected": true }, { "source": "672", "target": "917", "key": "2788", "undirected": true }, { "source": "672", "target": "991", "key": "2814", "undirected": true }, { "source": "673", "target": "1247", "key": "2815", "undirected": true }, { "source": "673", "target": "248", "key": "2816", "undirected": true }, { "source": "673", "target": "256", "key": "2818", "undirected": true }, { "source": "673", "target": "563", "key": "2817", "undirected": true }, { "source": "674", "target": "1261", "key": "2819", "undirected": true }, { "source": "675", "target": "1663", "key": "2820", "undirected": true }, { "source": "676", "target": "1417", "key": "2823", "undirected": true }, { "source": "676", "target": "1480", "key": "2821", "undirected": true }, { "source": "676", "target": "1588", "key": "2824", "undirected": true }, { "source": "676", "target": "1703", "key": "2822", "undirected": true }, { "source": "676", "target": "226", "key": "2826", "undirected": true }, { "source": "676", "target": "888", "key": "2825", "undirected": true }, { "source": "678", "target": "1102", "key": "2827", "undirected": true }, { "source": "679", "target": "1104", "key": "2828", "undirected": true }, { "source": "68", "target": "105", "key": "238", "undirected": true }, { "source": "68", "target": "1570", "key": "239", "undirected": true }, { "source": "68", "target": "174", "key": "235", "undirected": true }, { "source": "68", "target": "176", "key": "236", "undirected": true }, { "source": "68", "target": "97", "key": "237", "undirected": true }, { "source": "68", "target": "99", "key": "240", "undirected": true }, { "source": "680", "target": "256", "key": "2830", "undirected": true }, { "source": "680", "target": "875", "key": "2829", "undirected": true }, { "source": "682", "target": "310", "key": "2831", "undirected": true }, { "source": "683", "target": "1654", "key": "2832", "undirected": true }, { "source": "686", "target": "1307", "key": "2835", "undirected": true }, { "source": "686", "target": "1337", "key": "2833", "undirected": true }, { "source": "686", "target": "1605", "key": "2834", "undirected": true }, { "source": "686", "target": "1639", "key": "2838", "undirected": true }, { "source": "686", "target": "274", "key": "2836", "undirected": true }, { "source": "686", "target": "682", "key": "2841", "undirected": true }, { "source": "686", "target": "684", "key": "2842", "undirected": true }, { "source": "686", "target": "685", "key": "2840", "undirected": true }, { "source": "686", "target": "687", "key": "2839", "undirected": true }, { "source": "686", "target": "980", "key": "2837", "undirected": true }, { "source": "687", "target": "1301", "key": "2843", "undirected": true }, { "source": "687", "target": "1619", "key": "2844", "undirected": true }, { "source": "688", "target": "1605", "key": "2846", "undirected": true }, { "source": "688", "target": "1609", "key": "2850", "undirected": true }, { "source": "688", "target": "1638", "key": "2845", "undirected": true }, { "source": "688", "target": "682", "key": "2848", "undirected": true }, { "source": "688", "target": "684", "key": "2849", "undirected": true }, { "source": "688", "target": "687", "key": "2847", "undirected": true }, { "source": "691", "target": "1432", "key": "2851", "undirected": true }, { "source": "691", "target": "1639", "key": "2855", "undirected": true }, { "source": "691", "target": "682", "key": "2853", "undirected": true }, { "source": "691", "target": "686", "key": "2856", "undirected": true }, { "source": "691", "target": "687", "key": "2854", "undirected": true }, { "source": "691", "target": "829", "key": "2852", "undirected": true }, { "source": "692", "target": "1673", "key": "2857", "undirected": true }, { "source": "693", "target": "1037", "key": "2864", "undirected": true }, { "source": "693", "target": "1089", "key": "2874", "undirected": true }, { "source": "693", "target": "1262", "key": "2858", "undirected": true }, { "source": "693", "target": "1280", "key": "2862", "undirected": true }, { "source": "693", "target": "1314", "key": "2875", "undirected": true }, { "source": "693", "target": "1348", "key": "2871", "undirected": true }, { "source": "693", "target": "1403", "key": "2859", "undirected": true }, { "source": "693", "target": "248", "key": "2869", "undirected": true }, { "source": "693", "target": "280", "key": "2868", "undirected": true }, { "source": "693", "target": "283", "key": "2870", "undirected": true }, { "source": "693", "target": "409", "key": "2863", "undirected": true }, { "source": "693", "target": "413", "key": "2865", "undirected": true }, { "source": "693", "target": "414", "key": "2873", "undirected": true }, { "source": "693", "target": "415", "key": "2866", "undirected": true }, { "source": "693", "target": "474", "key": "2861", "undirected": true }, { "source": "693", "target": "639", "key": "2876", "undirected": true }, { "source": "693", "target": "643", "key": "2872", "undirected": true }, { "source": "693", "target": "728", "key": "2860", "undirected": true }, { "source": "693", "target": "944", "key": "2867", "undirected": true }, { "source": "695", "target": "456", "key": "2877", "undirected": true }, { "source": "696", "target": "1067", "key": "2880", "undirected": true }, { "source": "696", "target": "1521", "key": "2878", "undirected": true }, { "source": "696", "target": "715", "key": "2879", "undirected": true }, { "source": "697", "target": "1320", "key": "2883", "undirected": true }, { "source": "697", "target": "438", "key": "2881", "undirected": true }, { "source": "697", "target": "757", "key": "2882", "undirected": true }, { "source": "698", "target": "1480", "key": "2886", "undirected": true }, { "source": "698", "target": "1560", "key": "2888", "undirected": true }, { "source": "698", "target": "1563", "key": "2885", "undirected": true }, { "source": "698", "target": "203", "key": "2892", "undirected": true }, { "source": "698", "target": "243", "key": "2889", "undirected": true }, { "source": "698", "target": "639", "key": "2884", "undirected": true }, { "source": "698", "target": "649", "key": "2887", "undirected": true }, { "source": "698", "target": "76", "key": "2890", "undirected": true }, { "source": "698", "target": "946", "key": "2891", "undirected": true }, { "source": "699", "target": "1062", "key": "2896", "undirected": true }, { "source": "699", "target": "1603", "key": "2894", "undirected": true }, { "source": "699", "target": "422", "key": "2893", "undirected": true }, { "source": "699", "target": "430", "key": "2895", "undirected": true }, { "source": "700", "target": "1594", "key": "2897", "undirected": true }, { "source": "707", "target": "1168", "key": "2901", "undirected": true }, { "source": "707", "target": "1244", "key": "2913", "undirected": true }, { "source": "707", "target": "1439", "key": "2911", "undirected": true }, { "source": "707", "target": "1482", "key": "2899", "undirected": true }, { "source": "707", "target": "1539", "key": "2900", "undirected": true }, { "source": "707", "target": "1551", "key": "2902", "undirected": true }, { "source": "707", "target": "1645", "key": "2910", "undirected": true }, { "source": "707", "target": "1650", "key": "2906", "undirected": true }, { "source": "707", "target": "1726", "key": "2904", "undirected": true }, { "source": "707", "target": "206", "key": "2908", "undirected": true }, { "source": "707", "target": "490", "key": "2912", "undirected": true }, { "source": "707", "target": "634", "key": "2909", "undirected": true }, { "source": "707", "target": "736", "key": "2903", "undirected": true }, { "source": "707", "target": "930", "key": "2907", "undirected": true }, { "source": "707", "target": "936", "key": "2905", "undirected": true }, { "source": "707", "target": "971", "key": "2898", "undirected": true }, { "source": "708", "target": "1067", "key": "2916", "undirected": true }, { "source": "708", "target": "1539", "key": "2918", "undirected": true }, { "source": "708", "target": "1551", "key": "2914", "undirected": true }, { "source": "708", "target": "1645", "key": "2917", "undirected": true }, { "source": "708", "target": "1650", "key": "2920", "undirected": true }, { "source": "708", "target": "1703", "key": "2915", "undirected": true }, { "source": "708", "target": "242", "key": "2919", "undirected": true }, { "source": "709", "target": "1089", "key": "2922", "undirected": true }, { "source": "709", "target": "225", "key": "2921", "undirected": true }, { "source": "712", "target": "1209", "key": "2923", "undirected": true }, { "source": "712", "target": "1374", "key": "2924", "undirected": true }, { "source": "712", "target": "1570", "key": "2928", "undirected": true }, { "source": "712", "target": "1671", "key": "2926", "undirected": true }, { "source": "712", "target": "1684", "key": "2927", "undirected": true }, { "source": "712", "target": "850", "key": "2925", "undirected": true }, { "source": "712", "target": "981", "key": "2929", "undirected": true }, { "source": "713", "target": "1240", "key": "2931", "undirected": true }, { "source": "713", "target": "1386", "key": "2932", "undirected": true }, { "source": "713", "target": "227", "key": "2930", "undirected": true }, { "source": "714", "target": "859", "key": "2933", "undirected": true }, { "source": "715", "target": "1067", "key": "2947", "undirected": true }, { "source": "715", "target": "1076", "key": "2945", "undirected": true }, { "source": "715", "target": "1244", "key": "2940", "undirected": true }, { "source": "715", "target": "1480", "key": "2948", "undirected": true }, { "source": "715", "target": "1521", "key": "2941", "undirected": true }, { "source": "715", "target": "1541", "key": "2942", "undirected": true }, { "source": "715", "target": "1551", "key": "2952", "undirected": true }, { "source": "715", "target": "1598", "key": "2936", "undirected": true }, { "source": "715", "target": "1650", "key": "2935", "undirected": true }, { "source": "715", "target": "1703", "key": "2937", "undirected": true }, { "source": "715", "target": "1727", "key": "2939", "undirected": true }, { "source": "715", "target": "242", "key": "2944", "undirected": true }, { "source": "715", "target": "490", "key": "2934", "undirected": true }, { "source": "715", "target": "506", "key": "2950", "undirected": true }, { "source": "715", "target": "601", "key": "2943", "undirected": true }, { "source": "715", "target": "657", "key": "2949", "undirected": true }, { "source": "715", "target": "811", "key": "2951", "undirected": true }, { "source": "715", "target": "897", "key": "2946", "undirected": true }, { "source": "715", "target": "977", "key": "2938", "undirected": true }, { "source": "717", "target": "1203", "key": "2953", "undirected": true }, { "source": "718", "target": "1663", "key": "2955", "undirected": true }, { "source": "718", "target": "825", "key": "2954", "undirected": true }, { "source": "720", "target": "1118", "key": "2956", "undirected": true }, { "source": "721", "target": "1293", "key": "2960", "undirected": true }, { "source": "721", "target": "323", "key": "2957", "undirected": true }, { "source": "721", "target": "442", "key": "2958", "undirected": true }, { "source": "721", "target": "450", "key": "2962", "undirected": true }, { "source": "721", "target": "515", "key": "2963", "undirected": true }, { "source": "721", "target": "568", "key": "2961", "undirected": true }, { "source": "721", "target": "620", "key": "2959", "undirected": true }, { "source": "722", "target": "1089", "key": "2965", "undirected": true }, { "source": "722", "target": "256", "key": "2966", "undirected": true }, { "source": "722", "target": "460", "key": "2964", "undirected": true }, { "source": "723", "target": "651", "key": "2967", "undirected": true }, { "source": "727", "target": "990", "key": "2968", "undirected": true }, { "source": "730", "target": "1602", "key": "2971", "undirected": true }, { "source": "730", "target": "6", "key": "2972", "undirected": true }, { "source": "730", "target": "906", "key": "2970", "undirected": true }, { "source": "730", "target": "948", "key": "2969", "undirected": true }, { "source": "733", "target": "1602", "key": "2978", "undirected": true }, { "source": "733", "target": "1607", "key": "2976", "undirected": true }, { "source": "733", "target": "1748", "key": "2982", "undirected": true }, { "source": "733", "target": "304", "key": "2975", "undirected": true }, { "source": "733", "target": "40", "key": "2977", "undirected": true }, { "source": "733", "target": "424", "key": "2983", "undirected": true }, { "source": "733", "target": "435", "key": "2979", "undirected": true }, { "source": "733", "target": "497", "key": "2981", "undirected": true }, { "source": "733", "target": "667", "key": "2974", "undirected": true }, { "source": "733", "target": "948", "key": "2980", "undirected": true }, { "source": "733", "target": "988", "key": "2973", "undirected": true }, { "source": "735", "target": "481", "key": "2984", "undirected": true }, { "source": "736", "target": "1168", "key": "3000", "undirected": true }, { "source": "736", "target": "1236", "key": "2988", "undirected": true }, { "source": "736", "target": "1352", "key": "3003", "undirected": true }, { "source": "736", "target": "1476", "key": "2986", "undirected": true }, { "source": "736", "target": "1521", "key": "2993", "undirected": true }, { "source": "736", "target": "1523", "key": "2997", "undirected": true }, { "source": "736", "target": "1551", "key": "3002", "undirected": true }, { "source": "736", "target": "1553", "key": "2994", "undirected": true }, { "source": "736", "target": "1645", "key": "2985", "undirected": true }, { "source": "736", "target": "1650", "key": "2990", "undirected": true }, { "source": "736", "target": "206", "key": "2995", "undirected": true }, { "source": "736", "target": "242", "key": "2991", "undirected": true }, { "source": "736", "target": "639", "key": "2992", "undirected": true }, { "source": "736", "target": "646", "key": "2999", "undirected": true }, { "source": "736", "target": "707", "key": "3001", "undirected": true }, { "source": "736", "target": "715", "key": "2996", "undirected": true }, { "source": "736", "target": "930", "key": "2989", "undirected": true }, { "source": "736", "target": "936", "key": "2987", "undirected": true }, { "source": "736", "target": "977", "key": "2998", "undirected": true }, { "source": "739", "target": "1570", "key": "3006", "undirected": true }, { "source": "739", "target": "1687", "key": "3008", "undirected": true }, { "source": "739", "target": "217", "key": "3005", "undirected": true }, { "source": "739", "target": "344", "key": "3007", "undirected": true }, { "source": "739", "target": "740", "key": "3004", "undirected": true }, { "source": "74", "target": "1007", "key": "241", "undirected": true }, { "source": "74", "target": "730", "key": "242", "undirected": true }, { "source": "740", "target": "1580", "key": "3010", "undirected": true }, { "source": "740", "target": "739", "key": "3011", "undirected": true }, { "source": "740", "target": "948", "key": "3009", "undirected": true }, { "source": "741", "target": "1065", "key": "3029", "undirected": true }, { "source": "741", "target": "1158", "key": "3026", "undirected": true }, { "source": "741", "target": "1169", "key": "3018", "undirected": true }, { "source": "741", "target": "1202", "key": "3028", "undirected": true }, { "source": "741", "target": "1247", "key": "3019", "undirected": true }, { "source": "741", "target": "1570", "key": "3013", "undirected": true }, { "source": "741", "target": "1580", "key": "3024", "undirected": true }, { "source": "741", "target": "1588", "key": "3014", "undirected": true }, { "source": "741", "target": "1589", "key": "3015", "undirected": true }, { "source": "741", "target": "1602", "key": "3021", "undirected": true }, { "source": "741", "target": "1612", "key": "3016", "undirected": true }, { "source": "741", "target": "1684", "key": "3027", "undirected": true }, { "source": "741", "target": "1720", "key": "3023", "undirected": true }, { "source": "741", "target": "450", "key": "3022", "undirected": true }, { "source": "741", "target": "46", "key": "3017", "undirected": true }, { "source": "741", "target": "478", "key": "3020", "undirected": true }, { "source": "741", "target": "497", "key": "3030", "undirected": true }, { "source": "741", "target": "743", "key": "3012", "undirected": true }, { "source": "741", "target": "746", "key": "3031", "undirected": true }, { "source": "741", "target": "866", "key": "3025", "undirected": true }, { "source": "742", "target": "427", "key": "3032", "undirected": true }, { "source": "743", "target": "1065", "key": "3034", "undirected": true }, { "source": "743", "target": "1259", "key": "3054", "undirected": true }, { "source": "743", "target": "1351", "key": "3047", "undirected": true }, { "source": "743", "target": "156", "key": "3064", "undirected": true }, { "source": "743", "target": "1570", "key": "3060", "undirected": true }, { "source": "743", "target": "1580", "key": "3062", "undirected": true }, { "source": "743", "target": "1589", "key": "3041", "undirected": true }, { "source": "743", "target": "1591", "key": "3059", "undirected": true }, { "source": "743", "target": "1602", "key": "3050", "undirected": true }, { "source": "743", "target": "1607", "key": "3049", "undirected": true }, { "source": "743", "target": "1621", "key": "3037", "undirected": true }, { "source": "743", "target": "1704", "key": "3068", "undirected": true }, { "source": "743", "target": "1748", "key": "3063", "undirected": true }, { "source": "743", "target": "208", "key": "3058", "undirected": true }, { "source": "743", "target": "214", "key": "3048", "undirected": true }, { "source": "743", "target": "225", "key": "3053", "undirected": true }, { "source": "743", "target": "324", "key": "3035", "undirected": true }, { "source": "743", "target": "344", "key": "3046", "undirected": true }, { "source": "743", "target": "353", "key": "3065", "undirected": true }, { "source": "743", "target": "368", "key": "3055", "undirected": true }, { "source": "743", "target": "40", "key": "3072", "undirected": true }, { "source": "743", "target": "435", "key": "3036", "undirected": true }, { "source": "743", "target": "46", "key": "3039", "undirected": true }, { "source": "743", "target": "481", "key": "3069", "undirected": true }, { "source": "743", "target": "497", "key": "3061", "undirected": true }, { "source": "743", "target": "512", "key": "3057", "undirected": true }, { "source": "743", "target": "603", "key": "3042", "undirected": true }, { "source": "743", "target": "639", "key": "3071", "undirected": true }, { "source": "743", "target": "676", "key": "3056", "undirected": true }, { "source": "743", "target": "706", "key": "3043", "undirected": true }, { "source": "743", "target": "733", "key": "3052", "undirected": true }, { "source": "743", "target": "739", "key": "3038", "undirected": true }, { "source": "743", "target": "740", "key": "3070", "undirected": true }, { "source": "743", "target": "741", "key": "3051", "undirected": true }, { "source": "743", "target": "746", "key": "3033", "undirected": true }, { "source": "743", "target": "862", "key": "3067", "undirected": true }, { "source": "743", "target": "941", "key": "3066", "undirected": true }, { "source": "743", "target": "947", "key": "3040", "undirected": true }, { "source": "743", "target": "959", "key": "3044", "undirected": true }, { "source": "743", "target": "964", "key": "3045", "undirected": true }, { "source": "744", "target": "1653", "key": "3073", "undirected": true }, { "source": "744", "target": "747", "key": "3074", "undirected": true }, { "source": "745", "target": "1305", "key": "3084", "undirected": true }, { "source": "745", "target": "1351", "key": "3082", "undirected": true }, { "source": "745", "target": "156", "key": "3076", "undirected": true }, { "source": "745", "target": "1602", "key": "3080", "undirected": true }, { "source": "745", "target": "1603", "key": "3095", "undirected": true }, { "source": "745", "target": "1607", "key": "3094", "undirected": true }, { "source": "745", "target": "17", "key": "3100", "undirected": true }, { "source": "745", "target": "1704", "key": "3089", "undirected": true }, { "source": "745", "target": "232", "key": "3079", "undirected": true }, { "source": "745", "target": "234", "key": "3078", "undirected": true }, { "source": "745", "target": "236", "key": "3096", "undirected": true }, { "source": "745", "target": "25", "key": "3098", "undirected": true }, { "source": "745", "target": "288", "key": "3086", "undirected": true }, { "source": "745", "target": "344", "key": "3077", "undirected": true }, { "source": "745", "target": "386", "key": "3099", "undirected": true }, { "source": "745", "target": "464", "key": "3075", "undirected": true }, { "source": "745", "target": "493", "key": "3081", "undirected": true }, { "source": "745", "target": "497", "key": "3085", "undirected": true }, { "source": "745", "target": "52", "key": "3097", "undirected": true }, { "source": "745", "target": "723", "key": "3083", "undirected": true }, { "source": "745", "target": "733", "key": "3093", "undirected": true }, { "source": "745", "target": "741", "key": "3091", "undirected": true }, { "source": "745", "target": "743", "key": "3092", "undirected": true }, { "source": "745", "target": "746", "key": "3090", "undirected": true }, { "source": "745", "target": "850", "key": "3087", "undirected": true }, { "source": "745", "target": "922", "key": "3088", "undirected": true }, { "source": "746", "target": "1580", "key": "3102", "undirected": true }, { "source": "746", "target": "1602", "key": "3104", "undirected": true }, { "source": "746", "target": "512", "key": "3103", "undirected": true }, { "source": "746", "target": "743", "key": "3101", "undirected": true }, { "source": "747", "target": "1202", "key": "3106", "undirected": true }, { "source": "747", "target": "1383", "key": "3105", "undirected": true }, { "source": "747", "target": "1720", "key": "3111", "undirected": true }, { "source": "747", "target": "237", "key": "3110", "undirected": true }, { "source": "747", "target": "460", "key": "3113", "undirected": true }, { "source": "747", "target": "476", "key": "3109", "undirected": true }, { "source": "747", "target": "716", "key": "3107", "undirected": true }, { "source": "747", "target": "866", "key": "3112", "undirected": true }, { "source": "747", "target": "994", "key": "3108", "undirected": true }, { "source": "749", "target": "1579", "key": "3114", "undirected": true }, { "source": "75", "target": "1313", "key": "243", "undirected": true }, { "source": "75", "target": "630", "key": "244", "undirected": true }, { "source": "75", "target": "818", "key": "245", "undirected": true }, { "source": "750", "target": "1202", "key": "3115", "undirected": true }, { "source": "750", "target": "537", "key": "3116", "undirected": true }, { "source": "750", "target": "639", "key": "3117", "undirected": true }, { "source": "753", "target": "1067", "key": "3124", "undirected": true }, { "source": "753", "target": "1521", "key": "3123", "undirected": true }, { "source": "753", "target": "1703", "key": "3122", "undirected": true }, { "source": "753", "target": "1727", "key": "3119", "undirected": true }, { "source": "753", "target": "242", "key": "3121", "undirected": true }, { "source": "753", "target": "377", "key": "3118", "undirected": true }, { "source": "753", "target": "378", "key": "3125", "undirected": true }, { "source": "753", "target": "669", "key": "3120", "undirected": true }, { "source": "754", "target": "1664", "key": "3130", "undirected": true }, { "source": "754", "target": "551", "key": "3126", "undirected": true }, { "source": "754", "target": "635", "key": "3128", "undirected": true }, { "source": "754", "target": "644", "key": "3129", "undirected": true }, { "source": "754", "target": "758", "key": "3127", "undirected": true }, { "source": "755", "target": "1368", "key": "3131", "undirected": true }, { "source": "755", "target": "1570", "key": "3136", "undirected": true }, { "source": "755", "target": "1698", "key": "3132", "undirected": true }, { "source": "755", "target": "1704", "key": "3137", "undirected": true }, { "source": "755", "target": "252", "key": "3134", "undirected": true }, { "source": "755", "target": "481", "key": "3133", "undirected": true }, { "source": "755", "target": "838", "key": "3135", "undirected": true }, { "source": "757", "target": "1246", "key": "3138", "undirected": true }, { "source": "757", "target": "1320", "key": "3139", "undirected": true }, { "source": "758", "target": "1313", "key": "3153", "undirected": true }, { "source": "758", "target": "1560", "key": "3148", "undirected": true }, { "source": "758", "target": "1567", "key": "3141", "undirected": true }, { "source": "758", "target": "1664", "key": "3155", "undirected": true }, { "source": "758", "target": "238", "key": "3157", "undirected": true }, { "source": "758", "target": "269", "key": "3144", "undirected": true }, { "source": "758", "target": "281", "key": "3151", "undirected": true }, { "source": "758", "target": "365", "key": "3142", "undirected": true }, { "source": "758", "target": "542", "key": "3158", "undirected": true }, { "source": "758", "target": "551", "key": "3146", "undirected": true }, { "source": "758", "target": "592", "key": "3152", "undirected": true }, { "source": "758", "target": "630", "key": "3145", "undirected": true }, { "source": "758", "target": "639", "key": "3149", "undirected": true }, { "source": "758", "target": "644", "key": "3156", "undirected": true }, { "source": "758", "target": "657", "key": "3143", "undirected": true }, { "source": "758", "target": "754", "key": "3140", "undirected": true }, { "source": "758", "target": "791", "key": "3154", "undirected": true }, { "source": "758", "target": "816", "key": "3147", "undirected": true }, { "source": "758", "target": "946", "key": "3150", "undirected": true }, { "source": "76", "target": "1024", "key": "255", "undirected": true }, { "source": "76", "target": "1027", "key": "254", "undirected": true }, { "source": "76", "target": "1063", "key": "262", "undirected": true }, { "source": "76", "target": "1313", "key": "260", "undirected": true }, { "source": "76", "target": "1451", "key": "257", "undirected": true }, { "source": "76", "target": "1508", "key": "251", "undirected": true }, { "source": "76", "target": "1542", "key": "247", "undirected": true }, { "source": "76", "target": "160", "key": "252", "undirected": true }, { "source": "76", "target": "243", "key": "253", "undirected": true }, { "source": "76", "target": "577", "key": "246", "undirected": true }, { "source": "76", "target": "588", "key": "258", "undirected": true }, { "source": "76", "target": "601", "key": "256", "undirected": true }, { "source": "76", "target": "630", "key": "259", "undirected": true }, { "source": "76", "target": "649", "key": "249", "undirected": true }, { "source": "76", "target": "652", "key": "250", "undirected": true }, { "source": "76", "target": "657", "key": "261", "undirected": true }, { "source": "76", "target": "816", "key": "248", "undirected": true }, { "source": "762", "target": "158", "key": "3159", "undirected": true }, { "source": "766", "target": "1202", "key": "3161", "undirected": true }, { "source": "766", "target": "1247", "key": "3160", "undirected": true }, { "source": "767", "target": "393", "key": "3162", "undirected": true }, { "source": "769", "target": "1325", "key": "3163", "undirected": true }, { "source": "769", "target": "935", "key": "3164", "undirected": true }, { "source": "77", "target": "1108", "key": "263", "undirected": true }, { "source": "77", "target": "1460", "key": "266", "undirected": true }, { "source": "77", "target": "1468", "key": "264", "undirected": true }, { "source": "77", "target": "1491", "key": "268", "undirected": true }, { "source": "77", "target": "1493", "key": "265", "undirected": true }, { "source": "77", "target": "438", "key": "269", "undirected": true }, { "source": "77", "target": "974", "key": "267", "undirected": true }, { "source": "770", "target": "834", "key": "3165", "undirected": true }, { "source": "772", "target": "1554", "key": "3166", "undirected": true }, { "source": "772", "target": "333", "key": "3167", "undirected": true }, { "source": "773", "target": "1101", "key": "3171", "undirected": true }, { "source": "773", "target": "258", "key": "3169", "undirected": true }, { "source": "773", "target": "460", "key": "3168", "undirected": true }, { "source": "773", "target": "477", "key": "3172", "undirected": true }, { "source": "773", "target": "498", "key": "3170", "undirected": true }, { "source": "774", "target": "775", "key": "3173", "undirected": true }, { "source": "775", "target": "774", "key": "3174", "undirected": true }, { "source": "777", "target": "1598", "key": "3176", "undirected": true }, { "source": "777", "target": "377", "key": "3178", "undirected": true }, { "source": "777", "target": "378", "key": "3179", "undirected": true }, { "source": "777", "target": "500", "key": "3180", "undirected": true }, { "source": "777", "target": "669", "key": "3175", "undirected": true }, { "source": "777", "target": "753", "key": "3177", "undirected": true }, { "source": "779", "target": "1035", "key": "3182", "undirected": true }, { "source": "779", "target": "1491", "key": "3181", "undirected": true }, { "source": "779", "target": "1525", "key": "3185", "undirected": true }, { "source": "779", "target": "1612", "key": "3183", "undirected": true }, { "source": "779", "target": "571", "key": "3184", "undirected": true }, { "source": "78", "target": "76", "key": "270", "undirected": true }, { "source": "780", "target": "341", "key": "3186", "undirected": true }, { "source": "781", "target": "628", "key": "3187", "undirected": true }, { "source": "782", "target": "1090", "key": "3188", "undirected": true }, { "source": "782", "target": "1299", "key": "3190", "undirected": true }, { "source": "782", "target": "523", "key": "3189", "undirected": true }, { "source": "786", "target": "628", "key": "3191", "undirected": true }, { "source": "788", "target": "1095", "key": "3207", "undirected": true }, { "source": "788", "target": "1197", "key": "3206", "undirected": true }, { "source": "788", "target": "1270", "key": "3192", "undirected": true }, { "source": "788", "target": "1281", "key": "3196", "undirected": true }, { "source": "788", "target": "1290", "key": "3200", "undirected": true }, { "source": "788", "target": "1318", "key": "3201", "undirected": true }, { "source": "788", "target": "1532", "key": "3194", "undirected": true }, { "source": "788", "target": "1602", "key": "3202", "undirected": true }, { "source": "788", "target": "164", "key": "3203", "undirected": true }, { "source": "788", "target": "1685", "key": "3208", "undirected": true }, { "source": "788", "target": "258", "key": "3198", "undirected": true }, { "source": "788", "target": "304", "key": "3193", "undirected": true }, { "source": "788", "target": "45", "key": "3204", "undirected": true }, { "source": "788", "target": "477", "key": "3199", "undirected": true }, { "source": "788", "target": "500", "key": "3195", "undirected": true }, { "source": "788", "target": "743", "key": "3209", "undirected": true }, { "source": "788", "target": "862", "key": "3197", "undirected": true }, { "source": "788", "target": "994", "key": "3205", "undirected": true }, { "source": "79", "target": "1193", "key": "279", "undirected": true }, { "source": "79", "target": "1275", "key": "276", "undirected": true }, { "source": "79", "target": "1312", "key": "277", "undirected": true }, { "source": "79", "target": "1442", "key": "274", "undirected": true }, { "source": "79", "target": "1640", "key": "271", "undirected": true }, { "source": "79", "target": "1751", "key": "275", "undirected": true }, { "source": "79", "target": "333", "key": "272", "undirected": true }, { "source": "79", "target": "364", "key": "281", "undirected": true }, { "source": "79", "target": "390", "key": "280", "undirected": true }, { "source": "79", "target": "533", "key": "273", "undirected": true }, { "source": "79", "target": "657", "key": "278", "undirected": true }, { "source": "79", "target": "877", "key": "282", "undirected": true }, { "source": "790", "target": "1304", "key": "3217", "undirected": true }, { "source": "790", "target": "1411", "key": "3210", "undirected": true }, { "source": "790", "target": "1602", "key": "3211", "undirected": true }, { "source": "790", "target": "1720", "key": "3218", "undirected": true }, { "source": "790", "target": "340", "key": "3215", "undirected": true }, { "source": "790", "target": "344", "key": "3216", "undirected": true }, { "source": "790", "target": "568", "key": "3219", "undirected": true }, { "source": "790", "target": "709", "key": "3213", "undirected": true }, { "source": "790", "target": "897", "key": "3214", "undirected": true }, { "source": "790", "target": "903", "key": "3212", "undirected": true }, { "source": "791", "target": "1015", "key": "3256", "undirected": true }, { "source": "791", "target": "1022", "key": "3265", "undirected": true }, { "source": "791", "target": "1023", "key": "3264", "undirected": true }, { "source": "791", "target": "1024", "key": "3233", "undirected": true }, { "source": "791", "target": "1025", "key": "3266", "undirected": true }, { "source": "791", "target": "1032", "key": "3221", "undirected": true }, { "source": "791", "target": "1033", "key": "3263", "undirected": true }, { "source": "791", "target": "1137", "key": "3252", "undirected": true }, { "source": "791", "target": "1214", "key": "3248", "undirected": true }, { "source": "791", "target": "1241", "key": "3236", "undirected": true }, { "source": "791", "target": "1289", "key": "3260", "undirected": true }, { "source": "791", "target": "1313", "key": "3222", "undirected": true }, { "source": "791", "target": "1367", "key": "3220", "undirected": true }, { "source": "791", "target": "1378", "key": "3241", "undirected": true }, { "source": "791", "target": "1421", "key": "3254", "undirected": true }, { "source": "791", "target": "1426", "key": "3261", "undirected": true }, { "source": "791", "target": "1446", "key": "3268", "undirected": true }, { "source": "791", "target": "1451", "key": "3240", "undirected": true }, { "source": "791", "target": "1465", "key": "3247", "undirected": true }, { "source": "791", "target": "1498", "key": "3245", "undirected": true }, { "source": "791", "target": "1504", "key": "3249", "undirected": true }, { "source": "791", "target": "1508", "key": "3242", "undirected": true }, { "source": "791", "target": "1509", "key": "3253", "undirected": true }, { "source": "791", "target": "1516", "key": "3232", "undirected": true }, { "source": "791", "target": "1542", "key": "3231", "undirected": true }, { "source": "791", "target": "1651", "key": "3257", "undirected": true }, { "source": "791", "target": "1708", "key": "3235", "undirected": true }, { "source": "791", "target": "183", "key": "3229", "undirected": true }, { "source": "791", "target": "238", "key": "3230", "undirected": true }, { "source": "791", "target": "243", "key": "3255", "undirected": true }, { "source": "791", "target": "269", "key": "3224", "undirected": true }, { "source": "791", "target": "362", "key": "3227", "undirected": true }, { "source": "791", "target": "519", "key": "3267", "undirected": true }, { "source": "791", "target": "542", "key": "3237", "undirected": true }, { "source": "791", "target": "551", "key": "3258", "undirected": true }, { "source": "791", "target": "57", "key": "3228", "undirected": true }, { "source": "791", "target": "588", "key": "3226", "undirected": true }, { "source": "791", "target": "592", "key": "3225", "undirected": true }, { "source": "791", "target": "593", "key": "3246", "undirected": true }, { "source": "791", "target": "596", "key": "3259", "undirected": true }, { "source": "791", "target": "601", "key": "3243", "undirected": true }, { "source": "791", "target": "630", "key": "3223", "undirected": true }, { "source": "791", "target": "634", "key": "3238", "undirected": true }, { "source": "791", "target": "816", "key": "3234", "undirected": true }, { "source": "791", "target": "818", "key": "3262", "undirected": true }, { "source": "791", "target": "937", "key": "3239", "undirected": true }, { "source": "791", "target": "956", "key": "3251", "undirected": true }, { "source": "791", "target": "960", "key": "3250", "undirected": true }, { "source": "791", "target": "992", "key": "3244", "undirected": true }, { "source": "792", "target": "1048", "key": "3271", "undirected": true }, { "source": "792", "target": "1080", "key": "3272", "undirected": true }, { "source": "792", "target": "1240", "key": "3270", "undirected": true }, { "source": "792", "target": "9", "key": "3269", "undirected": true }, { "source": "795", "target": "1357", "key": "3273", "undirected": true }, { "source": "799", "target": "561", "key": "3274", "undirected": true }, { "source": "80", "target": "1089", "key": "283", "undirected": true }, { "source": "80", "target": "460", "key": "284", "undirected": true }, { "source": "80", "target": "855", "key": "285", "undirected": true }, { "source": "802", "target": "510", "key": "3275", "undirected": true }, { "source": "804", "target": "1231", "key": "3280", "undirected": true }, { "source": "804", "target": "1233", "key": "3277", "undirected": true }, { "source": "804", "target": "1313", "key": "3276", "undirected": true }, { "source": "804", "target": "1486", "key": "3279", "undirected": true }, { "source": "804", "target": "816", "key": "3278", "undirected": true }, { "source": "805", "target": "1032", "key": "3286", "undirected": true }, { "source": "805", "target": "1233", "key": "3284", "undirected": true }, { "source": "805", "target": "1313", "key": "3289", "undirected": true }, { "source": "805", "target": "269", "key": "3288", "undirected": true }, { "source": "805", "target": "551", "key": "3285", "undirected": true }, { "source": "805", "target": "588", "key": "3287", "undirected": true }, { "source": "805", "target": "612", "key": "3283", "undirected": true }, { "source": "805", "target": "630", "key": "3281", "undirected": true }, { "source": "805", "target": "937", "key": "3282", "undirected": true }, { "source": "806", "target": "1019", "key": "3294", "undirected": true }, { "source": "806", "target": "1239", "key": "3297", "undirected": true }, { "source": "806", "target": "1242", "key": "3298", "undirected": true }, { "source": "806", "target": "1246", "key": "3292", "undirected": true }, { "source": "806", "target": "1320", "key": "3291", "undirected": true }, { "source": "806", "target": "1602", "key": "3299", "undirected": true }, { "source": "806", "target": "1731", "key": "3290", "undirected": true }, { "source": "806", "target": "206", "key": "3296", "undirected": true }, { "source": "806", "target": "481", "key": "3295", "undirected": true }, { "source": "806", "target": "757", "key": "3293", "undirected": true }, { "source": "809", "target": "1244", "key": "3300", "undirected": true }, { "source": "811", "target": "1168", "key": "3303", "undirected": true }, { "source": "811", "target": "1439", "key": "3311", "undirected": true }, { "source": "811", "target": "1535", "key": "3304", "undirected": true }, { "source": "811", "target": "1541", "key": "3302", "undirected": true }, { "source": "811", "target": "1551", "key": "3310", "undirected": true }, { "source": "811", "target": "242", "key": "3307", "undirected": true }, { "source": "811", "target": "306", "key": "3301", "undirected": true }, { "source": "811", "target": "363", "key": "3309", "undirected": true }, { "source": "811", "target": "563", "key": "3305", "undirected": true }, { "source": "811", "target": "612", "key": "3306", "undirected": true }, { "source": "811", "target": "715", "key": "3308", "undirected": true }, { "source": "812", "target": "1247", "key": "3315", "undirected": true }, { "source": "812", "target": "1250", "key": "3312", "undirected": true }, { "source": "812", "target": "1271", "key": "3313", "undirected": true }, { "source": "812", "target": "238", "key": "3318", "undirected": true }, { "source": "812", "target": "460", "key": "3316", "undirected": true }, { "source": "812", "target": "563", "key": "3319", "undirected": true }, { "source": "812", "target": "684", "key": "3314", "undirected": true }, { "source": "812", "target": "811", "key": "3317", "undirected": true }, { "source": "815", "target": "1158", "key": "3320", "undirected": true }, { "source": "816", "target": "1231", "key": "3328", "undirected": true }, { "source": "816", "target": "1233", "key": "3326", "undirected": true }, { "source": "816", "target": "1343", "key": "3336", "undirected": true }, { "source": "816", "target": "1451", "key": "3338", "undirected": true }, { "source": "816", "target": "1508", "key": "3330", "undirected": true }, { "source": "816", "target": "1516", "key": "3337", "undirected": true }, { "source": "816", "target": "1542", "key": "3342", "undirected": true }, { "source": "816", "target": "1567", "key": "3332", "undirected": true }, { "source": "816", "target": "190", "key": "3341", "undirected": true }, { "source": "816", "target": "238", "key": "3321", "undirected": true }, { "source": "816", "target": "243", "key": "3329", "undirected": true }, { "source": "816", "target": "281", "key": "3333", "undirected": true }, { "source": "816", "target": "551", "key": "3335", "undirected": true }, { "source": "816", "target": "579", "key": "3344", "undirected": true }, { "source": "816", "target": "583", "key": "3324", "undirected": true }, { "source": "816", "target": "589", "key": "3327", "undirected": true }, { "source": "816", "target": "630", "key": "3340", "undirected": true }, { "source": "816", "target": "649", "key": "3322", "undirected": true }, { "source": "816", "target": "652", "key": "3343", "undirected": true }, { "source": "816", "target": "804", "key": "3334", "undirected": true }, { "source": "816", "target": "805", "key": "3339", "undirected": true }, { "source": "816", "target": "874", "key": "3323", "undirected": true }, { "source": "816", "target": "960", "key": "3331", "undirected": true }, { "source": "816", "target": "965", "key": "3325", "undirected": true }, { "source": "818", "target": "1022", "key": "3348", "undirected": true }, { "source": "818", "target": "1023", "key": "3347", "undirected": true }, { "source": "818", "target": "1214", "key": "3352", "undirected": true }, { "source": "818", "target": "1359", "key": "3351", "undirected": true }, { "source": "818", "target": "1508", "key": "3346", "undirected": true }, { "source": "818", "target": "1509", "key": "3360", "undirected": true }, { "source": "818", "target": "1542", "key": "3350", "undirected": true }, { "source": "818", "target": "1567", "key": "3361", "undirected": true }, { "source": "818", "target": "203", "key": "3354", "undirected": true }, { "source": "818", "target": "238", "key": "3349", "undirected": true }, { "source": "818", "target": "243", "key": "3357", "undirected": true }, { "source": "818", "target": "269", "key": "3353", "undirected": true }, { "source": "818", "target": "57", "key": "3358", "undirected": true }, { "source": "818", "target": "601", "key": "3355", "undirected": true }, { "source": "818", "target": "634", "key": "3363", "undirected": true }, { "source": "818", "target": "649", "key": "3359", "undirected": true }, { "source": "818", "target": "791", "key": "3356", "undirected": true }, { "source": "818", "target": "816", "key": "3345", "undirected": true }, { "source": "818", "target": "960", "key": "3362", "undirected": true }, { "source": "82", "target": "1621", "key": "286", "undirected": true }, { "source": "82", "target": "904", "key": "287", "undirected": true }, { "source": "821", "target": "1024", "key": "3367", "undirected": true }, { "source": "821", "target": "1025", "key": "3370", "undirected": true }, { "source": "821", "target": "1214", "key": "3369", "undirected": true }, { "source": "821", "target": "592", "key": "3365", "undirected": true }, { "source": "821", "target": "791", "key": "3366", "undirected": true }, { "source": "821", "target": "816", "key": "3368", "undirected": true }, { "source": "821", "target": "960", "key": "3364", "undirected": true }, { "source": "822", "target": "1233", "key": "3375", "undirected": true }, { "source": "822", "target": "1542", "key": "3371", "undirected": true }, { "source": "822", "target": "190", "key": "3373", "undirected": true }, { "source": "822", "target": "589", "key": "3374", "undirected": true }, { "source": "822", "target": "630", "key": "3376", "undirected": true }, { "source": "822", "target": "936", "key": "3372", "undirected": true }, { "source": "825", "target": "1034", "key": "3383", "undirected": true }, { "source": "825", "target": "1035", "key": "3380", "undirected": true }, { "source": "825", "target": "1104", "key": "3381", "undirected": true }, { "source": "825", "target": "1112", "key": "3382", "undirected": true }, { "source": "825", "target": "1175", "key": "3389", "undirected": true }, { "source": "825", "target": "1460", "key": "3390", "undirected": true }, { "source": "825", "target": "1493", "key": "3387", "undirected": true }, { "source": "825", "target": "1657", "key": "3385", "undirected": true }, { "source": "825", "target": "1663", "key": "3377", "undirected": true }, { "source": "825", "target": "543", "key": "3384", "undirected": true }, { "source": "825", "target": "571", "key": "3388", "undirected": true }, { "source": "825", "target": "675", "key": "3391", "undirected": true }, { "source": "825", "target": "793", "key": "3386", "undirected": true }, { "source": "825", "target": "972", "key": "3378", "undirected": true }, { "source": "825", "target": "975", "key": "3379", "undirected": true }, { "source": "826", "target": "228", "key": "3393", "undirected": true }, { "source": "826", "target": "798", "key": "3394", "undirected": true }, { "source": "826", "target": "839", "key": "3392", "undirected": true }, { "source": "829", "target": "302", "key": "3395", "undirected": true }, { "source": "83", "target": "333", "key": "288", "undirected": true }, { "source": "831", "target": "1354", "key": "3403", "undirected": true }, { "source": "831", "target": "1704", "key": "3399", "undirected": true }, { "source": "831", "target": "226", "key": "3398", "undirected": true }, { "source": "831", "target": "535", "key": "3402", "undirected": true }, { "source": "831", "target": "603", "key": "3396", "undirected": true }, { "source": "831", "target": "857", "key": "3405", "undirected": true }, { "source": "831", "target": "861", "key": "3404", "undirected": true }, { "source": "831", "target": "862", "key": "3401", "undirected": true }, { "source": "831", "target": "888", "key": "3400", "undirected": true }, { "source": "831", "target": "897", "key": "3397", "undirected": true }, { "source": "833", "target": "1066", "key": "3406", "undirected": true }, { "source": "833", "target": "1300", "key": "3407", "undirected": true }, { "source": "833", "target": "1579", "key": "3408", "undirected": true }, { "source": "834", "target": "1102", "key": "3412", "undirected": true }, { "source": "834", "target": "1579", "key": "3409", "undirected": true }, { "source": "834", "target": "1734", "key": "3413", "undirected": true }, { "source": "834", "target": "444", "key": "3411", "undirected": true }, { "source": "834", "target": "508", "key": "3410", "undirected": true }, { "source": "836", "target": "1271", "key": "3416", "attributes": { "weight": 2 }, "undirected": true }, { "source": "836", "target": "1333", "key": "3417", "attributes": { "weight": 2 }, "undirected": true }, { "source": "836", "target": "228", "key": "3418", "attributes": { "weight": 2 }, "undirected": true }, { "source": "836", "target": "826", "key": "3415", "attributes": { "weight": 2 }, "undirected": true }, { "source": "836", "target": "891", "key": "3414", "attributes": { "weight": 2 }, "undirected": true }, { "source": "837", "target": "1521", "key": "3425", "undirected": true }, { "source": "837", "target": "1563", "key": "3426", "undirected": true }, { "source": "837", "target": "1650", "key": "3427", "undirected": true }, { "source": "837", "target": "936", "key": "3424", "undirected": true }, { "source": "840", "target": "1202", "key": "3442", "undirected": true }, { "source": "840", "target": "1244", "key": "3437", "undirected": true }, { "source": "840", "target": "1250", "key": "3428", "undirected": true }, { "source": "840", "target": "1594", "key": "3432", "undirected": true }, { "source": "840", "target": "1605", "key": "3434", "undirected": true }, { "source": "840", "target": "1609", "key": "3433", "undirected": true }, { "source": "840", "target": "1618", "key": "3435", "undirected": true }, { "source": "840", "target": "1620", "key": "3429", "undirected": true }, { "source": "840", "target": "1637", "key": "3431", "undirected": true }, { "source": "840", "target": "1652", "key": "3430", "undirected": true }, { "source": "840", "target": "1654", "key": "3439", "undirected": true }, { "source": "840", "target": "228", "key": "3441", "undirected": true }, { "source": "840", "target": "275", "key": "3440", "undirected": true }, { "source": "840", "target": "715", "key": "3436", "undirected": true }, { "source": "840", "target": "890", "key": "3438", "undirected": true }, { "source": "843", "target": "256", "key": "3443", "undirected": true }, { "source": "845", "target": "1514", "key": "3457", "undirected": true }, { "source": "845", "target": "1570", "key": "3448", "undirected": true }, { "source": "845", "target": "1588", "key": "3447", "undirected": true }, { "source": "845", "target": "1589", "key": "3446", "undirected": true }, { "source": "845", "target": "1671", "key": "3455", "undirected": true }, { "source": "845", "target": "1691", "key": "3445", "undirected": true }, { "source": "845", "target": "1704", "key": "3444", "undirected": true }, { "source": "845", "target": "222", "key": "3454", "undirected": true }, { "source": "845", "target": "225", "key": "3450", "undirected": true }, { "source": "845", "target": "226", "key": "3456", "undirected": true }, { "source": "845", "target": "386", "key": "3449", "undirected": true }, { "source": "845", "target": "709", "key": "3458", "undirected": true }, { "source": "845", "target": "850", "key": "3453", "undirected": true }, { "source": "845", "target": "857", "key": "3452", "undirected": true }, { "source": "845", "target": "922", "key": "3451", "undirected": true }, { "source": "85", "target": "1331", "key": "292", "undirected": true }, { "source": "85", "target": "1554", "key": "293", "undirected": true }, { "source": "85", "target": "333", "key": "289", "undirected": true }, { "source": "85", "target": "468", "key": "294", "undirected": true }, { "source": "85", "target": "877", "key": "295", "undirected": true }, { "source": "85", "target": "912", "key": "291", "undirected": true }, { "source": "85", "target": "921", "key": "290", "undirected": true }, { "source": "852", "target": "1557", "key": "3459", "undirected": true }, { "source": "854", "target": "122", "key": "3460", "undirected": true }, { "source": "855", "target": "1012", "key": "3463", "undirected": true }, { "source": "855", "target": "1043", "key": "3467", "undirected": true }, { "source": "855", "target": "1127", "key": "3462", "undirected": true }, { "source": "855", "target": "1207", "key": "3465", "undirected": true }, { "source": "855", "target": "1546", "key": "3464", "undirected": true }, { "source": "855", "target": "211", "key": "3471", "undirected": true }, { "source": "855", "target": "460", "key": "3469", "undirected": true }, { "source": "855", "target": "563", "key": "3461", "undirected": true }, { "source": "855", "target": "639", "key": "3466", "undirected": true }, { "source": "855", "target": "80", "key": "3468", "undirected": true }, { "source": "855", "target": "973", "key": "3470", "undirected": true }, { "source": "857", "target": "1181", "key": "3477", "undirected": true }, { "source": "857", "target": "1660", "key": "3478", "undirected": true }, { "source": "857", "target": "1684", "key": "3476", "undirected": true }, { "source": "857", "target": "1691", "key": "3472", "undirected": true }, { "source": "857", "target": "386", "key": "3475", "undirected": true }, { "source": "857", "target": "52", "key": "3473", "undirected": true }, { "source": "857", "target": "831", "key": "3474", "undirected": true }, { "source": "861", "target": "184", "key": "3479", "undirected": true }, { "source": "861", "target": "226", "key": "3481", "undirected": true }, { "source": "861", "target": "888", "key": "3480", "undirected": true }, { "source": "862", "target": "1056", "key": "3509", "undirected": true }, { "source": "862", "target": "1197", "key": "3492", "undirected": true }, { "source": "862", "target": "1290", "key": "3483", "undirected": true }, { "source": "862", "target": "1304", "key": "3504", "undirected": true }, { "source": "862", "target": "1318", "key": "3494", "undirected": true }, { "source": "862", "target": "1354", "key": "3493", "undirected": true }, { "source": "862", "target": "1478", "key": "3488", "undirected": true }, { "source": "862", "target": "1532", "key": "3485", "undirected": true }, { "source": "862", "target": "1602", "key": "3499", "undirected": true }, { "source": "862", "target": "1697", "key": "3496", "undirected": true }, { "source": "862", "target": "1704", "key": "3502", "undirected": true }, { "source": "862", "target": "1720", "key": "3497", "undirected": true }, { "source": "862", "target": "201", "key": "3507", "undirected": true }, { "source": "862", "target": "258", "key": "3491", "undirected": true }, { "source": "862", "target": "304", "key": "3501", "undirected": true }, { "source": "862", "target": "344", "key": "3495", "undirected": true }, { "source": "862", "target": "353", "key": "3512", "undirected": true }, { "source": "862", "target": "383", "key": "3487", "undirected": true }, { "source": "862", "target": "395", "key": "3503", "undirected": true }, { "source": "862", "target": "477", "key": "3511", "undirected": true }, { "source": "862", "target": "517", "key": "3510", "undirected": true }, { "source": "862", "target": "52", "key": "3498", "undirected": true }, { "source": "862", "target": "535", "key": "3482", "undirected": true }, { "source": "862", "target": "544", "key": "3484", "undirected": true }, { "source": "862", "target": "568", "key": "3505", "undirected": true }, { "source": "862", "target": "603", "key": "3508", "undirected": true }, { "source": "862", "target": "624", "key": "3489", "undirected": true }, { "source": "862", "target": "796", "key": "3513", "undirected": true }, { "source": "862", "target": "831", "key": "3486", "undirected": true }, { "source": "862", "target": "948", "key": "3500", "undirected": true }, { "source": "862", "target": "994", "key": "3490", "undirected": true }, { "source": "862", "target": "997", "key": "3506", "undirected": true }, { "source": "863", "target": "1110", "key": "3515", "undirected": true }, { "source": "863", "target": "1323", "key": "3514", "undirected": true }, { "source": "863", "target": "1370", "key": "3517", "undirected": true }, { "source": "863", "target": "1456", "key": "3516", "undirected": true }, { "source": "866", "target": "639", "key": "3518", "undirected": true }, { "source": "867", "target": "1150", "key": "3519", "undirected": true }, { "source": "867", "target": "891", "key": "3520", "undirected": true }, { "source": "868", "target": "1313", "key": "3522", "undirected": true }, { "source": "868", "target": "551", "key": "3523", "undirected": true }, { "source": "868", "target": "816", "key": "3521", "undirected": true }, { "source": "869", "target": "1104", "key": "3530", "undirected": true }, { "source": "869", "target": "1178", "key": "3531", "undirected": true }, { "source": "869", "target": "1191", "key": "3525", "undirected": true }, { "source": "869", "target": "1330", "key": "3528", "undirected": true }, { "source": "869", "target": "1529", "key": "3526", "undirected": true }, { "source": "869", "target": "571", "key": "3529", "undirected": true }, { "source": "869", "target": "870", "key": "3524", "undirected": true }, { "source": "869", "target": "925", "key": "3527", "undirected": true }, { "source": "87", "target": "1203", "key": "297", "undirected": true }, { "source": "87", "target": "333", "key": "296", "undirected": true }, { "source": "870", "target": "1191", "key": "3533", "undirected": true }, { "source": "870", "target": "869", "key": "3532", "undirected": true }, { "source": "870", "target": "925", "key": "3534", "undirected": true }, { "source": "872", "target": "1158", "key": "3566", "undirected": true }, { "source": "872", "target": "1259", "key": "3564", "undirected": true }, { "source": "872", "target": "1408", "key": "3561", "undirected": true }, { "source": "872", "target": "156", "key": "3536", "undirected": true }, { "source": "872", "target": "1602", "key": "3544", "undirected": true }, { "source": "872", "target": "1603", "key": "3542", "undirected": true }, { "source": "872", "target": "1607", "key": "3541", "undirected": true }, { "source": "872", "target": "1684", "key": "3547", "undirected": true }, { "source": "872", "target": "17", "key": "3554", "undirected": true }, { "source": "872", "target": "217", "key": "3569", "undirected": true }, { "source": "872", "target": "222", "key": "3548", "undirected": true }, { "source": "872", "target": "234", "key": "3537", "undirected": true }, { "source": "872", "target": "324", "key": "3538", "undirected": true }, { "source": "872", "target": "344", "key": "3549", "undirected": true }, { "source": "872", "target": "383", "key": "3551", "undirected": true }, { "source": "872", "target": "424", "key": "3558", "undirected": true }, { "source": "872", "target": "429", "key": "3556", "undirected": true }, { "source": "872", "target": "435", "key": "3559", "undirected": true }, { "source": "872", "target": "490", "key": "3563", "undirected": true }, { "source": "872", "target": "493", "key": "3567", "undirected": true }, { "source": "872", "target": "497", "key": "3570", "undirected": true }, { "source": "872", "target": "52", "key": "3552", "undirected": true }, { "source": "872", "target": "603", "key": "3553", "undirected": true }, { "source": "872", "target": "733", "key": "3557", "undirected": true }, { "source": "872", "target": "741", "key": "3540", "undirected": true }, { "source": "872", "target": "743", "key": "3535", "undirected": true }, { "source": "872", "target": "747", "key": "3562", "undirected": true }, { "source": "872", "target": "790", "key": "3550", "undirected": true }, { "source": "872", "target": "850", "key": "3560", "undirected": true }, { "source": "872", "target": "857", "key": "3546", "undirected": true }, { "source": "872", "target": "862", "key": "3545", "undirected": true }, { "source": "872", "target": "897", "key": "3543", "undirected": true }, { "source": "872", "target": "903", "key": "3568", "undirected": true }, { "source": "872", "target": "904", "key": "3555", "undirected": true }, { "source": "872", "target": "947", "key": "3539", "undirected": true }, { "source": "872", "target": "948", "key": "3565", "undirected": true }, { "source": "873", "target": "308", "key": "3571", "undirected": true }, { "source": "874", "target": "1542", "key": "3574", "undirected": true }, { "source": "874", "target": "583", "key": "3572", "undirected": true }, { "source": "874", "target": "816", "key": "3573", "undirected": true }, { "source": "874", "target": "965", "key": "3575", "undirected": true }, { "source": "875", "target": "1089", "key": "3577", "undirected": true }, { "source": "875", "target": "256", "key": "3579", "undirected": true }, { "source": "875", "target": "460", "key": "3576", "undirected": true }, { "source": "875", "target": "680", "key": "3578", "undirected": true }, { "source": "88", "target": "874", "key": "298", "undirected": true }, { "source": "888", "target": "1260", "key": "3581", "undirected": true }, { "source": "888", "target": "368", "key": "3582", "undirected": true }, { "source": "888", "target": "861", "key": "3580", "undirected": true }, { "source": "890", "target": "122", "key": "3589", "undirected": true }, { "source": "890", "target": "1250", "key": "3587", "undirected": true }, { "source": "890", "target": "1263", "key": "3583", "undirected": true }, { "source": "890", "target": "151", "key": "3586", "undirected": true }, { "source": "890", "target": "1556", "key": "3588", "undirected": true }, { "source": "890", "target": "684", "key": "3584", "undirected": true }, { "source": "890", "target": "685", "key": "3585", "undirected": true }, { "source": "891", "target": "1044", "key": "3602", "undirected": true }, { "source": "891", "target": "1158", "key": "3590", "undirected": true }, { "source": "891", "target": "122", "key": "3594", "undirected": true }, { "source": "891", "target": "1232", "key": "3591", "undirected": true }, { "source": "891", "target": "1250", "key": "3593", "undirected": true }, { "source": "891", "target": "1271", "key": "3597", "undirected": true }, { "source": "891", "target": "1286", "key": "3605", "undirected": true }, { "source": "891", "target": "135", "key": "3592", "undirected": true }, { "source": "891", "target": "1556", "key": "3600", "undirected": true }, { "source": "891", "target": "1557", "key": "3603", "undirected": true }, { "source": "891", "target": "1652", "key": "3598", "undirected": true }, { "source": "891", "target": "228", "key": "3599", "undirected": true }, { "source": "891", "target": "537", "key": "3606", "undirected": true }, { "source": "891", "target": "639", "key": "3595", "undirected": true }, { "source": "891", "target": "829", "key": "3601", "undirected": true }, { "source": "891", "target": "832", "key": "3596", "undirected": true }, { "source": "891", "target": "980", "key": "3604", "undirected": true }, { "source": "894", "target": "201", "key": "3607", "undirected": true }, { "source": "895", "target": "333", "key": "3608", "undirected": true }, { "source": "897", "target": "831", "key": "3609", "undirected": true }, { "source": "9", "target": "1048", "key": "25", "undirected": true }, { "source": "9", "target": "1080", "key": "14", "undirected": true }, { "source": "9", "target": "1081", "key": "9", "undirected": true }, { "source": "9", "target": "1082", "key": "12", "undirected": true }, { "source": "9", "target": "1084", "key": "11", "undirected": true }, { "source": "9", "target": "1092", "key": "13", "undirected": true }, { "source": "9", "target": "1158", "key": "23", "undirected": true }, { "source": "9", "target": "1321", "key": "21", "undirected": true }, { "source": "9", "target": "1430", "key": "17", "undirected": true }, { "source": "9", "target": "1611", "key": "27", "undirected": true }, { "source": "9", "target": "1730", "key": "16", "undirected": true }, { "source": "9", "target": "215", "key": "18", "undirected": true }, { "source": "9", "target": "291", "key": "22", "undirected": true }, { "source": "9", "target": "294", "key": "28", "undirected": true }, { "source": "9", "target": "411", "key": "26", "undirected": true }, { "source": "9", "target": "438", "key": "20", "undirected": true }, { "source": "9", "target": "503", "key": "19", "undirected": true }, { "source": "9", "target": "556", "key": "24", "undirected": true }, { "source": "9", "target": "565", "key": "10", "undirected": true }, { "source": "9", "target": "713", "key": "15", "undirected": true }, { "source": "9", "target": "792", "key": "8", "undirected": true }, { "source": "90", "target": "876", "key": "299", "undirected": true }, { "source": "901", "target": "1386", "key": "3610", "undirected": true }, { "source": "902", "target": "1158", "key": "3611", "undirected": true }, { "source": "902", "target": "948", "key": "3612", "undirected": true }, { "source": "906", "target": "1197", "key": "3616", "undirected": true }, { "source": "906", "target": "164", "key": "3613", "undirected": true }, { "source": "906", "target": "258", "key": "3615", "undirected": true }, { "source": "906", "target": "74", "key": "3614", "undirected": true }, { "source": "908", "target": "1417", "key": "3617", "undirected": true }, { "source": "909", "target": "1182", "key": "3618", "undirected": true }, { "source": "909", "target": "438", "key": "3620", "undirected": true }, { "source": "909", "target": "663", "key": "3619", "undirected": true }, { "source": "91", "target": "1386", "key": "300", "undirected": true }, { "source": "912", "target": "333", "key": "3621", "undirected": true }, { "source": "916", "target": "917", "key": "3630", "undirected": true }, { "source": "917", "target": "1012", "key": "3625", "attributes": { "weight": 2 }, "undirected": true }, { "source": "917", "target": "1093", "key": "3623", "attributes": { "weight": 2 }, "undirected": true }, { "source": "917", "target": "1283", "key": "3624", "attributes": { "weight": 2 }, "undirected": true }, { "source": "917", "target": "211", "key": "3628", "attributes": { "weight": 2 }, "undirected": true }, { "source": "917", "target": "639", "key": "3626", "attributes": { "weight": 2 }, "undirected": true }, { "source": "917", "target": "672", "key": "3622", "attributes": { "weight": 2 }, "undirected": true }, { "source": "917", "target": "709", "key": "3629", "attributes": { "weight": 2 }, "undirected": true }, { "source": "917", "target": "875", "key": "3627", "attributes": { "weight": 2 }, "undirected": true }, { "source": "918", "target": "1003", "key": "3639", "undirected": true }, { "source": "918", "target": "1313", "key": "3643", "undirected": true }, { "source": "918", "target": "1334", "key": "3640", "undirected": true }, { "source": "918", "target": "1451", "key": "3642", "undirected": true }, { "source": "918", "target": "1496", "key": "3646", "undirected": true }, { "source": "918", "target": "1542", "key": "3648", "undirected": true }, { "source": "918", "target": "1562", "key": "3644", "undirected": true }, { "source": "918", "target": "250", "key": "3647", "undirected": true }, { "source": "918", "target": "583", "key": "3641", "undirected": true }, { "source": "918", "target": "630", "key": "3649", "undirected": true }, { "source": "918", "target": "801", "key": "3645", "undirected": true }, { "source": "918", "target": "816", "key": "3650", "undirected": true }, { "source": "920", "target": "1240", "key": "3657", "undirected": true }, { "source": "920", "target": "1386", "key": "3656", "undirected": true }, { "source": "920", "target": "1593", "key": "3652", "undirected": true }, { "source": "920", "target": "1725", "key": "3658", "undirected": true }, { "source": "920", "target": "218", "key": "3653", "undirected": true }, { "source": "920", "target": "292", "key": "3651", "undirected": true }, { "source": "920", "target": "314", "key": "3655", "undirected": true }, { "source": "920", "target": "580", "key": "3654", "undirected": true }, { "source": "922", "target": "1588", "key": "3661", "undirected": true }, { "source": "922", "target": "845", "key": "3660", "undirected": true }, { "source": "922", "target": "861", "key": "3659", "undirected": true }, { "source": "925", "target": "1191", "key": "3662", "undirected": true }, { "source": "927", "target": "936", "key": "3663", "undirected": true }, { "source": "930", "target": "1030", "key": "3673", "undirected": true }, { "source": "930", "target": "1067", "key": "3677", "undirected": true }, { "source": "930", "target": "1170", "key": "3685", "undirected": true }, { "source": "930", "target": "1244", "key": "3679", "undirected": true }, { "source": "930", "target": "1439", "key": "3672", "undirected": true }, { "source": "930", "target": "1497", "key": "3671", "undirected": true }, { "source": "930", "target": "1511", "key": "3669", "undirected": true }, { "source": "930", "target": "1521", "key": "3665", "undirected": true }, { "source": "930", "target": "1542", "key": "3680", "undirected": true }, { "source": "930", "target": "1550", "key": "3668", "undirected": true }, { "source": "930", "target": "1598", "key": "3682", "undirected": true }, { "source": "930", "target": "1605", "key": "3678", "undirected": true }, { "source": "930", "target": "1645", "key": "3670", "undirected": true }, { "source": "930", "target": "1650", "key": "3675", "undirected": true }, { "source": "930", "target": "1653", "key": "3667", "undirected": true }, { "source": "930", "target": "1727", "key": "3684", "undirected": true }, { "source": "930", "target": "206", "key": "3666", "undirected": true }, { "source": "930", "target": "242", "key": "3664", "undirected": true }, { "source": "930", "target": "537", "key": "3683", "undirected": true }, { "source": "930", "target": "707", "key": "3681", "undirected": true }, { "source": "930", "target": "936", "key": "3674", "undirected": true }, { "source": "930", "target": "971", "key": "3686", "undirected": true }, { "source": "930", "target": "977", "key": "3676", "undirected": true }, { "source": "931", "target": "1259", "key": "3689", "undirected": true }, { "source": "931", "target": "1292", "key": "3690", "undirected": true }, { "source": "931", "target": "1602", "key": "3688", "undirected": true }, { "source": "931", "target": "344", "key": "3687", "undirected": true }, { "source": "931", "target": "667", "key": "3691", "undirected": true }, { "source": "933", "target": "934", "key": "3692", "undirected": true }, { "source": "934", "target": "1141", "key": "3694", "undirected": true }, { "source": "934", "target": "933", "key": "3693", "undirected": true }, { "source": "935", "target": "1676", "key": "3696", "undirected": true }, { "source": "935", "target": "524", "key": "3695", "undirected": true }, { "source": "936", "target": "1030", "key": "3729", "undirected": true }, { "source": "936", "target": "1067", "key": "3718", "undirected": true }, { "source": "936", "target": "1168", "key": "3704", "undirected": true }, { "source": "936", "target": "1202", "key": "3709", "undirected": true }, { "source": "936", "target": "1244", "key": "3705", "undirected": true }, { "source": "936", "target": "1352", "key": "3708", "undirected": true }, { "source": "936", "target": "1422", "key": "3699", "undirected": true }, { "source": "936", "target": "1439", "key": "3728", "undirected": true }, { "source": "936", "target": "1511", "key": "3727", "undirected": true }, { "source": "936", "target": "1521", "key": "3707", "undirected": true }, { "source": "936", "target": "1523", "key": "3706", "undirected": true }, { "source": "936", "target": "1541", "key": "3716", "undirected": true }, { "source": "936", "target": "1550", "key": "3717", "undirected": true }, { "source": "936", "target": "1551", "key": "3732", "undirected": true }, { "source": "936", "target": "1553", "key": "3726", "undirected": true }, { "source": "936", "target": "1563", "key": "3702", "undirected": true }, { "source": "936", "target": "1570", "key": "3723", "undirected": true }, { "source": "936", "target": "1598", "key": "3711", "undirected": true }, { "source": "936", "target": "1601", "key": "3712", "undirected": true }, { "source": "936", "target": "1602", "key": "3719", "undirected": true }, { "source": "936", "target": "1645", "key": "3713", "undirected": true }, { "source": "936", "target": "1646", "key": "3722", "undirected": true }, { "source": "936", "target": "1650", "key": "3710", "undirected": true }, { "source": "936", "target": "1653", "key": "3714", "undirected": true }, { "source": "936", "target": "1727", "key": "3703", "undirected": true }, { "source": "936", "target": "206", "key": "3715", "undirected": true }, { "source": "936", "target": "242", "key": "3697", "undirected": true }, { "source": "936", "target": "344", "key": "3720", "undirected": true }, { "source": "936", "target": "506", "key": "3721", "undirected": true }, { "source": "936", "target": "707", "key": "3731", "undirected": true }, { "source": "936", "target": "715", "key": "3700", "undirected": true }, { "source": "936", "target": "736", "key": "3725", "undirected": true }, { "source": "936", "target": "927", "key": "3698", "undirected": true }, { "source": "936", "target": "930", "key": "3701", "undirected": true }, { "source": "936", "target": "977", "key": "3724", "undirected": true }, { "source": "936", "target": "987", "key": "3730", "undirected": true }, { "source": "938", "target": "1069", "key": "3733", "undirected": true }, { "source": "938", "target": "1244", "key": "3734", "undirected": true }, { "source": "938", "target": "1645", "key": "3735", "undirected": true }, { "source": "939", "target": "1313", "key": "3736", "undirected": true }, { "source": "939", "target": "1344", "key": "3737", "undirected": true }, { "source": "939", "target": "1451", "key": "3738", "undirected": true }, { "source": "940", "target": "1570", "key": "3740", "undirected": true }, { "source": "940", "target": "639", "key": "3742", "undirected": true }, { "source": "940", "target": "947", "key": "3741", "undirected": true }, { "source": "940", "target": "978", "key": "3743", "undirected": true }, { "source": "940", "target": "988", "key": "3739", "undirected": true }, { "source": "941", "target": "1292", "key": "3748", "undirected": true }, { "source": "941", "target": "222", "key": "3753", "undirected": true }, { "source": "941", "target": "225", "key": "3751", "undirected": true }, { "source": "941", "target": "288", "key": "3756", "undirected": true }, { "source": "941", "target": "344", "key": "3759", "undirected": true }, { "source": "941", "target": "386", "key": "3744", "undirected": true }, { "source": "941", "target": "423", "key": "3754", "undirected": true }, { "source": "941", "target": "706", "key": "3749", "undirected": true }, { "source": "941", "target": "723", "key": "3746", "undirected": true }, { "source": "941", "target": "922", "key": "3745", "undirected": true }, { "source": "941", "target": "940", "key": "3758", "undirected": true }, { "source": "941", "target": "947", "key": "3755", "undirected": true }, { "source": "941", "target": "948", "key": "3747", "undirected": true }, { "source": "941", "target": "959", "key": "3752", "undirected": true }, { "source": "941", "target": "964", "key": "3750", "undirected": true }, { "source": "941", "target": "988", "key": "3757", "undirected": true }, { "source": "943", "target": "1015", "key": "3760", "undirected": true }, { "source": "943", "target": "1241", "key": "3762", "undirected": true }, { "source": "943", "target": "1289", "key": "3763", "undirected": true }, { "source": "943", "target": "592", "key": "3764", "undirected": true }, { "source": "943", "target": "630", "key": "3765", "undirected": true }, { "source": "943", "target": "634", "key": "3766", "undirected": true }, { "source": "943", "target": "802", "key": "3761", "undirected": true }, { "source": "944", "target": "1089", "key": "3781", "undirected": true }, { "source": "944", "target": "1262", "key": "3775", "undirected": true }, { "source": "944", "target": "1280", "key": "3771", "undirected": true }, { "source": "944", "target": "1348", "key": "3779", "undirected": true }, { "source": "944", "target": "1403", "key": "3773", "undirected": true }, { "source": "944", "target": "248", "key": "3770", "undirected": true }, { "source": "944", "target": "280", "key": "3769", "undirected": true }, { "source": "944", "target": "413", "key": "3767", "undirected": true }, { "source": "944", "target": "414", "key": "3776", "undirected": true }, { "source": "944", "target": "415", "key": "3768", "undirected": true }, { "source": "944", "target": "416", "key": "3772", "undirected": true }, { "source": "944", "target": "417", "key": "3777", "undirected": true }, { "source": "944", "target": "460", "key": "3782", "undirected": true }, { "source": "944", "target": "478", "key": "3780", "undirected": true }, { "source": "944", "target": "643", "key": "3778", "undirected": true }, { "source": "944", "target": "722", "key": "3774", "undirected": true }, { "source": "946", "target": "1496", "key": "3794", "undirected": true }, { "source": "946", "target": "1560", "key": "3787", "undirected": true }, { "source": "946", "target": "269", "key": "3790", "undirected": true }, { "source": "946", "target": "551", "key": "3783", "undirected": true }, { "source": "946", "target": "578", "key": "3785", "undirected": true }, { "source": "946", "target": "588", "key": "3792", "undirected": true }, { "source": "946", "target": "621", "key": "3786", "undirected": true }, { "source": "946", "target": "630", "key": "3791", "undirected": true }, { "source": "946", "target": "639", "key": "3788", "undirected": true }, { "source": "946", "target": "649", "key": "3784", "undirected": true }, { "source": "946", "target": "816", "key": "3789", "undirected": true }, { "source": "946", "target": "818", "key": "3793", "undirected": true }, { "source": "947", "target": "1064", "key": "3806", "undirected": true }, { "source": "947", "target": "1181", "key": "3801", "undirected": true }, { "source": "947", "target": "1351", "key": "3805", "undirected": true }, { "source": "947", "target": "1570", "key": "3799", "undirected": true }, { "source": "947", "target": "1602", "key": "3808", "undirected": true }, { "source": "947", "target": "1603", "key": "3811", "undirected": true }, { "source": "947", "target": "1704", "key": "3810", "undirected": true }, { "source": "947", "target": "225", "key": "3802", "undirected": true }, { "source": "947", "target": "344", "key": "3795", "undirected": true }, { "source": "947", "target": "423", "key": "3800", "undirected": true }, { "source": "947", "target": "464", "key": "3809", "undirected": true }, { "source": "947", "target": "706", "key": "3798", "undirected": true }, { "source": "947", "target": "743", "key": "3807", "undirected": true }, { "source": "947", "target": "746", "key": "3804", "undirected": true }, { "source": "947", "target": "948", "key": "3796", "undirected": true }, { "source": "947", "target": "959", "key": "3797", "undirected": true }, { "source": "947", "target": "978", "key": "3803", "undirected": true }, { "source": "95", "target": "154", "key": "303", "undirected": true }, { "source": "95", "target": "1543", "key": "306", "undirected": true }, { "source": "95", "target": "155", "key": "302", "undirected": true }, { "source": "95", "target": "1667", "key": "309", "undirected": true }, { "source": "95", "target": "190", "key": "304", "undirected": true }, { "source": "95", "target": "61", "key": "301", "undirected": true }, { "source": "95", "target": "634", "key": "308", "undirected": true }, { "source": "95", "target": "635", "key": "305", "undirected": true }, { "source": "95", "target": "816", "key": "307", "undirected": true }, { "source": "950", "target": "1034", "key": "3826", "undirected": true }, { "source": "950", "target": "1035", "key": "3824", "undirected": true }, { "source": "950", "target": "1046", "key": "3828", "undirected": true }, { "source": "950", "target": "1104", "key": "3814", "undirected": true }, { "source": "950", "target": "1112", "key": "3825", "undirected": true }, { "source": "950", "target": "1175", "key": "3815", "undirected": true }, { "source": "950", "target": "1178", "key": "3816", "undirected": true }, { "source": "950", "target": "1191", "key": "3813", "undirected": true }, { "source": "950", "target": "141", "key": "3827", "undirected": true }, { "source": "950", "target": "1712", "key": "3818", "undirected": true }, { "source": "950", "target": "380", "key": "3831", "undirected": true }, { "source": "950", "target": "543", "key": "3830", "undirected": true }, { "source": "950", "target": "571", "key": "3829", "undirected": true }, { "source": "950", "target": "645", "key": "3820", "undirected": true }, { "source": "950", "target": "654", "key": "3812", "undirected": true }, { "source": "950", "target": "869", "key": "3821", "undirected": true }, { "source": "950", "target": "870", "key": "3817", "undirected": true }, { "source": "950", "target": "925", "key": "3819", "undirected": true }, { "source": "950", "target": "984", "key": "3823", "undirected": true }, { "source": "950", "target": "985", "key": "3822", "undirected": true }, { "source": "951", "target": "1104", "key": "3835", "undirected": true }, { "source": "951", "target": "1612", "key": "3832", "undirected": true }, { "source": "951", "target": "204", "key": "3834", "undirected": true }, { "source": "951", "target": "930", "key": "3833", "undirected": true }, { "source": "954", "target": "1417", "key": "3844", "undirected": true }, { "source": "954", "target": "1570", "key": "3838", "undirected": true }, { "source": "954", "target": "1588", "key": "3839", "undirected": true }, { "source": "954", "target": "1671", "key": "3841", "undirected": true }, { "source": "954", "target": "1684", "key": "3842", "undirected": true }, { "source": "954", "target": "1704", "key": "3836", "undirected": true }, { "source": "954", "target": "344", "key": "3840", "undirected": true }, { "source": "954", "target": "922", "key": "3843", "undirected": true }, { "source": "954", "target": "981", "key": "3837", "undirected": true }, { "source": "957", "target": "601", "key": "3845", "undirected": true }, { "source": "959", "target": "1065", "key": "3854", "undirected": true }, { "source": "959", "target": "1217", "key": "3850", "undirected": true }, { "source": "959", "target": "222", "key": "3853", "undirected": true }, { "source": "959", "target": "225", "key": "3847", "undirected": true }, { "source": "959", "target": "344", "key": "3846", "undirected": true }, { "source": "959", "target": "423", "key": "3851", "undirected": true }, { "source": "959", "target": "706", "key": "3849", "undirected": true }, { "source": "959", "target": "947", "key": "3852", "undirected": true }, { "source": "959", "target": "964", "key": "3848", "undirected": true }, { "source": "960", "target": "821", "key": "3855", "undirected": true }, { "source": "964", "target": "1065", "key": "3865", "undirected": true }, { "source": "964", "target": "1588", "key": "3861", "undirected": true }, { "source": "964", "target": "208", "key": "3867", "undirected": true }, { "source": "964", "target": "225", "key": "3857", "undirected": true }, { "source": "964", "target": "344", "key": "3860", "undirected": true }, { "source": "964", "target": "423", "key": "3866", "undirected": true }, { "source": "964", "target": "706", "key": "3856", "undirected": true }, { "source": "964", "target": "748", "key": "3863", "undirected": true }, { "source": "964", "target": "931", "key": "3862", "undirected": true }, { "source": "964", "target": "947", "key": "3859", "undirected": true }, { "source": "964", "target": "948", "key": "3864", "undirected": true }, { "source": "964", "target": "959", "key": "3858", "undirected": true }, { "source": "965", "target": "822", "key": "3868", "undirected": true }, { "source": "966", "target": "1247", "key": "3877", "undirected": true }, { "source": "966", "target": "1308", "key": "3872", "undirected": true }, { "source": "966", "target": "1620", "key": "3873", "undirected": true }, { "source": "966", "target": "238", "key": "3874", "undirected": true }, { "source": "966", "target": "306", "key": "3870", "undirected": true }, { "source": "966", "target": "460", "key": "3876", "undirected": true }, { "source": "966", "target": "563", "key": "3869", "undirected": true }, { "source": "966", "target": "691", "key": "3871", "undirected": true }, { "source": "966", "target": "811", "key": "3875", "undirected": true }, { "source": "968", "target": "1022", "key": "3885", "undirected": true }, { "source": "968", "target": "1023", "key": "3884", "undirected": true }, { "source": "968", "target": "1024", "key": "3889", "undirected": true }, { "source": "968", "target": "1032", "key": "3898", "undirected": true }, { "source": "968", "target": "1289", "key": "3888", "undirected": true }, { "source": "968", "target": "1313", "key": "3895", "undirected": true }, { "source": "968", "target": "1361", "key": "3887", "undirected": true }, { "source": "968", "target": "1367", "key": "3883", "undirected": true }, { "source": "968", "target": "1451", "key": "3881", "undirected": true }, { "source": "968", "target": "1508", "key": "3882", "undirected": true }, { "source": "968", "target": "1651", "key": "3886", "undirected": true }, { "source": "968", "target": "243", "key": "3890", "undirected": true }, { "source": "968", "target": "269", "key": "3896", "undirected": true }, { "source": "968", "target": "362", "key": "3879", "undirected": true }, { "source": "968", "target": "57", "key": "3880", "undirected": true }, { "source": "968", "target": "588", "key": "3894", "undirected": true }, { "source": "968", "target": "592", "key": "3891", "undirected": true }, { "source": "968", "target": "593", "key": "3892", "undirected": true }, { "source": "968", "target": "630", "key": "3897", "undirected": true }, { "source": "968", "target": "791", "key": "3878", "undirected": true }, { "source": "968", "target": "96", "key": "3893", "undirected": true }, { "source": "97", "target": "105", "key": "313", "undirected": true }, { "source": "97", "target": "1065", "key": "316", "undirected": true }, { "source": "97", "target": "109", "key": "312", "undirected": true }, { "source": "97", "target": "174", "key": "310", "undirected": true }, { "source": "97", "target": "176", "key": "311", "undirected": true }, { "source": "97", "target": "66", "key": "314", "undirected": true }, { "source": "97", "target": "68", "key": "315", "undirected": true }, { "source": "97", "target": "99", "key": "317", "undirected": true }, { "source": "970", "target": "1015", "key": "3899", "undirected": true }, { "source": "970", "target": "1032", "key": "3903", "undirected": true }, { "source": "970", "target": "1186", "key": "3905", "undirected": true }, { "source": "970", "target": "1313", "key": "3902", "undirected": true }, { "source": "970", "target": "1451", "key": "3904", "undirected": true }, { "source": "970", "target": "630", "key": "3901", "undirected": true }, { "source": "970", "target": "791", "key": "3900", "undirected": true }, { "source": "971", "target": "1168", "key": "3909", "undirected": true }, { "source": "971", "target": "1244", "key": "3914", "undirected": true }, { "source": "971", "target": "1645", "key": "3913", "undirected": true }, { "source": "971", "target": "1650", "key": "3908", "undirected": true }, { "source": "971", "target": "1653", "key": "3911", "undirected": true }, { "source": "971", "target": "206", "key": "3912", "undirected": true }, { "source": "971", "target": "242", "key": "3910", "undirected": true }, { "source": "971", "target": "506", "key": "3906", "undirected": true }, { "source": "971", "target": "707", "key": "3907", "undirected": true }, { "source": "971", "target": "930", "key": "3916", "undirected": true }, { "source": "971", "target": "936", "key": "3915", "undirected": true }, { "source": "972", "target": "1657", "key": "3920", "undirected": true }, { "source": "972", "target": "1663", "key": "3918", "undirected": true }, { "source": "972", "target": "543", "key": "3917", "undirected": true }, { "source": "972", "target": "825", "key": "3919", "undirected": true }, { "source": "972", "target": "975", "key": "3921", "undirected": true }, { "source": "973", "target": "1089", "key": "3923", "undirected": true }, { "source": "973", "target": "1602", "key": "3924", "undirected": true }, { "source": "973", "target": "460", "key": "3922", "undirected": true }, { "source": "973", "target": "80", "key": "3925", "undirected": true }, { "source": "975", "target": "1178", "key": "3929", "undirected": true }, { "source": "975", "target": "1191", "key": "3928", "undirected": true }, { "source": "975", "target": "400", "key": "3926", "undirected": true }, { "source": "975", "target": "972", "key": "3927", "undirected": true }, { "source": "976", "target": "565", "key": "3930", "undirected": true }, { "source": "977", "target": "1076", "key": "3945", "undirected": true }, { "source": "977", "target": "1244", "key": "3940", "undirected": true }, { "source": "977", "target": "1476", "key": "3935", "undirected": true }, { "source": "977", "target": "1480", "key": "3937", "undirected": true }, { "source": "977", "target": "1496", "key": "3943", "undirected": true }, { "source": "977", "target": "1541", "key": "3933", "undirected": true }, { "source": "977", "target": "1553", "key": "3932", "undirected": true }, { "source": "977", "target": "1598", "key": "3931", "undirected": true }, { "source": "977", "target": "1645", "key": "3939", "undirected": true }, { "source": "977", "target": "1650", "key": "3942", "undirected": true }, { "source": "977", "target": "1703", "key": "3936", "undirected": true }, { "source": "977", "target": "669", "key": "3934", "undirected": true }, { "source": "977", "target": "888", "key": "3944", "undirected": true }, { "source": "977", "target": "930", "key": "3938", "undirected": true }, { "source": "977", "target": "936", "key": "3941", "undirected": true }, { "source": "978", "target": "1158", "key": "3956", "undirected": true }, { "source": "978", "target": "1570", "key": "3948", "undirected": true }, { "source": "978", "target": "1602", "key": "3954", "undirected": true }, { "source": "978", "target": "1603", "key": "3953", "undirected": true }, { "source": "978", "target": "1690", "key": "3949", "undirected": true }, { "source": "978", "target": "1704", "key": "3950", "undirected": true }, { "source": "978", "target": "481", "key": "3952", "undirected": true }, { "source": "978", "target": "743", "key": "3955", "undirected": true }, { "source": "978", "target": "746", "key": "3946", "undirected": true }, { "source": "978", "target": "947", "key": "3951", "undirected": true }, { "source": "978", "target": "981", "key": "3947", "undirected": true }, { "source": "979", "target": "1313", "key": "3957", "undirected": true }, { "source": "98", "target": "228", "key": "318", "undirected": true }, { "source": "980", "target": "122", "key": "3958", "undirected": true }, { "source": "980", "target": "1542", "key": "3962", "undirected": true }, { "source": "980", "target": "595", "key": "3959", "undirected": true }, { "source": "980", "target": "686", "key": "3963", "undirected": true }, { "source": "980", "target": "930", "key": "3961", "undirected": true }, { "source": "980", "target": "989", "key": "3960", "undirected": true }, { "source": "981", "target": "106", "key": "3986", "undirected": true }, { "source": "981", "target": "12", "key": "3998", "undirected": true }, { "source": "981", "target": "1351", "key": "3990", "undirected": true }, { "source": "981", "target": "1353", "key": "3966", "undirected": true }, { "source": "981", "target": "1368", "key": "3995", "undirected": true }, { "source": "981", "target": "1374", "key": "3980", "undirected": true }, { "source": "981", "target": "1466", "key": "3996", "undirected": true }, { "source": "981", "target": "1570", "key": "3977", "undirected": true }, { "source": "981", "target": "1580", "key": "3983", "undirected": true }, { "source": "981", "target": "1588", "key": "4005", "undirected": true }, { "source": "981", "target": "1589", "key": "4004", "undirected": true }, { "source": "981", "target": "1630", "key": "3993", "undirected": true }, { "source": "981", "target": "1671", "key": "3987", "undirected": true }, { "source": "981", "target": "1684", "key": "3988", "undirected": true }, { "source": "981", "target": "1690", "key": "3981", "undirected": true }, { "source": "981", "target": "1698", "key": "3997", "undirected": true }, { "source": "981", "target": "1704", "key": "3985", "undirected": true }, { "source": "981", "target": "1713", "key": "3972", "undirected": true }, { "source": "981", "target": "1715", "key": "4003", "undirected": true }, { "source": "981", "target": "201", "key": "4000", "undirected": true }, { "source": "981", "target": "217", "key": "3999", "undirected": true }, { "source": "981", "target": "252", "key": "3994", "undirected": true }, { "source": "981", "target": "328", "key": "3992", "undirected": true }, { "source": "981", "target": "344", "key": "3979", "undirected": true }, { "source": "981", "target": "377", "key": "3970", "undirected": true }, { "source": "981", "target": "403", "key": "3991", "undirected": true }, { "source": "981", "target": "412", "key": "3967", "undirected": true }, { "source": "981", "target": "439", "key": "3974", "undirected": true }, { "source": "981", "target": "481", "key": "3968", "undirected": true }, { "source": "981", "target": "497", "key": "3984", "undirected": true }, { "source": "981", "target": "532", "key": "4006", "undirected": true }, { "source": "981", "target": "639", "key": "3989", "undirected": true }, { "source": "981", "target": "646", "key": "3969", "undirected": true }, { "source": "981", "target": "648", "key": "3973", "undirected": true }, { "source": "981", "target": "650", "key": "3964", "undirected": true }, { "source": "981", "target": "651", "key": "3965", "undirected": true }, { "source": "981", "target": "755", "key": "4002", "undirected": true }, { "source": "981", "target": "850", "key": "3976", "undirected": true }, { "source": "981", "target": "861", "key": "4001", "undirected": true }, { "source": "981", "target": "922", "key": "3971", "undirected": true }, { "source": "981", "target": "926", "key": "3978", "undirected": true }, { "source": "981", "target": "948", "key": "3975", "undirected": true }, { "source": "981", "target": "978", "key": "3982", "undirected": true }, { "source": "982", "target": "956", "key": "4007", "undirected": true }, { "source": "983", "target": "1521", "key": "4009", "undirected": true }, { "source": "983", "target": "1661", "key": "4008", "undirected": true }, { "source": "983", "target": "1727", "key": "4010", "undirected": true }, { "source": "983", "target": "669", "key": "4011", "undirected": true }, { "source": "984", "target": "141", "key": "4013", "undirected": true }, { "source": "984", "target": "466", "key": "4012", "undirected": true }, { "source": "984", "target": "595", "key": "4014", "undirected": true }, { "source": "985", "target": "1046", "key": "4030", "undirected": true }, { "source": "985", "target": "1061", "key": "4016", "undirected": true }, { "source": "985", "target": "1089", "key": "4027", "undirected": true }, { "source": "985", "target": "1104", "key": "4017", "undirected": true }, { "source": "985", "target": "1113", "key": "4022", "undirected": true }, { "source": "985", "target": "1158", "key": "4023", "undirected": true }, { "source": "985", "target": "1176", "key": "4025", "undirected": true }, { "source": "985", "target": "1191", "key": "4019", "undirected": true }, { "source": "985", "target": "1210", "key": "4029", "undirected": true }, { "source": "985", "target": "1468", "key": "4020", "undirected": true }, { "source": "985", "target": "1493", "key": "4028", "undirected": true }, { "source": "985", "target": "1540", "key": "4024", "undirected": true }, { "source": "985", "target": "446", "key": "4031", "undirected": true }, { "source": "985", "target": "543", "key": "4015", "undirected": true }, { "source": "985", "target": "595", "key": "4026", "undirected": true }, { "source": "985", "target": "815", "key": "4033", "undirected": true }, { "source": "985", "target": "951", "key": "4032", "undirected": true }, { "source": "985", "target": "984", "key": "4021", "undirected": true }, { "source": "985", "target": "986", "key": "4018", "undirected": true }, { "source": "986", "target": "1046", "key": "4045", "undirected": true }, { "source": "986", "target": "1061", "key": "4036", "undirected": true }, { "source": "986", "target": "1089", "key": "4042", "undirected": true }, { "source": "986", "target": "1104", "key": "4037", "undirected": true }, { "source": "986", "target": "1113", "key": "4050", "undirected": true }, { "source": "986", "target": "1158", "key": "4038", "undirected": true }, { "source": "986", "target": "1176", "key": "4040", "undirected": true }, { "source": "986", "target": "1191", "key": "4044", "undirected": true }, { "source": "986", "target": "1210", "key": "4046", "undirected": true }, { "source": "986", "target": "1468", "key": "4049", "undirected": true }, { "source": "986", "target": "1493", "key": "4043", "undirected": true }, { "source": "986", "target": "1540", "key": "4039", "undirected": true }, { "source": "986", "target": "446", "key": "4047", "undirected": true }, { "source": "986", "target": "543", "key": "4034", "undirected": true }, { "source": "986", "target": "595", "key": "4041", "undirected": true }, { "source": "986", "target": "815", "key": "4052", "undirected": true }, { "source": "986", "target": "951", "key": "4051", "undirected": true }, { "source": "986", "target": "984", "key": "4048", "undirected": true }, { "source": "986", "target": "985", "key": "4035", "undirected": true }, { "source": "988", "target": "288", "key": "4055", "undirected": true }, { "source": "988", "target": "940", "key": "4054", "undirected": true }, { "source": "988", "target": "941", "key": "4053", "undirected": true }, { "source": "989", "target": "1067", "key": "4062", "undirected": true }, { "source": "989", "target": "1076", "key": "4068", "undirected": true }, { "source": "989", "target": "1157", "key": "4063", "undirected": true }, { "source": "989", "target": "1168", "key": "4061", "undirected": true }, { "source": "989", "target": "1521", "key": "4064", "undirected": true }, { "source": "989", "target": "1626", "key": "4056", "undirected": true }, { "source": "989", "target": "1703", "key": "4065", "undirected": true }, { "source": "989", "target": "1727", "key": "4058", "undirected": true }, { "source": "989", "target": "715", "key": "4067", "undirected": true }, { "source": "989", "target": "736", "key": "4060", "undirected": true }, { "source": "989", "target": "971", "key": "4059", "undirected": true }, { "source": "989", "target": "980", "key": "4057", "undirected": true }, { "source": "989", "target": "983", "key": "4066", "undirected": true }, { "source": "99", "target": "109", "key": "324", "undirected": true }, { "source": "99", "target": "1570", "key": "322", "undirected": true }, { "source": "99", "target": "626", "key": "323", "undirected": true }, { "source": "99", "target": "71", "key": "321", "undirected": true }, { "source": "99", "target": "97", "key": "320", "undirected": true }, { "source": "99", "target": "981", "key": "319", "undirected": true }, { "source": "992", "target": "1015", "key": "4072", "undirected": true }, { "source": "992", "target": "1032", "key": "4070", "undirected": true }, { "source": "992", "target": "588", "key": "4069", "undirected": true }, { "source": "992", "target": "630", "key": "4071", "undirected": true }, { "source": "994", "target": "164", "key": "4075", "undirected": true }, { "source": "994", "target": "1720", "key": "4073", "undirected": true }, { "source": "994", "target": "258", "key": "4074", "undirected": true }, { "source": "995", "target": "1276", "key": "4077", "undirected": true }, { "source": "995", "target": "1284", "key": "4079", "undirected": true }, { "source": "995", "target": "1330", "key": "4076", "undirected": true }, { "source": "995", "target": "1439", "key": "4078", "undirected": true }, { "source": "995", "target": "1645", "key": "4080", "undirected": true }, { "source": "995", "target": "715", "key": "4081", "undirected": true }, { "source": "995", "target": "977", "key": "4082", "undirected": true }, { "source": "996", "target": "1247", "key": "4086", "undirected": true }, { "source": "996", "target": "162", "key": "4083", "undirected": true }, { "source": "996", "target": "1665", "key": "4085", "undirected": true }, { "source": "996", "target": "904", "key": "4084", "undirected": true } ], "options": { "type": "undirected", "multi": true, "allowSelfLoops": true } } ================================================ FILE: packages/storybook/stories/2-advanced-usecases/cluster-label/index.html ================================================
================================================ FILE: packages/storybook/stories/2-advanced-usecases/cluster-label/index.ts ================================================ /** * This is a minimal example of sigma. You can use it as a base to write new * examples, or reproducible test cases for new issues, for instance. */ import Graph from "graphology"; import { SerializedGraph } from "graphology-types"; import iwanthue from "iwanthue"; import Sigma from "sigma"; import { Coordinates } from "sigma/types"; import data from "./euroSIS.json"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = Graph.from(data as SerializedGraph); // cluster definition interface Cluster { label: string; x?: number; y?: number; color?: string; positions: { x: number; y: number }[]; } // initialize clusters from graph data const countryClusters: { [key: string]: Cluster } = {}; graph.forEachNode((_node, atts) => { if (!countryClusters[atts.country]) countryClusters[atts.country] = { label: atts.country, positions: [] }; }); // create and assign one color by cluster const palette = iwanthue(Object.keys(countryClusters).length, { seed: "eurSISCountryClusters" }); for (const country in countryClusters) { countryClusters[country].color = palette.pop(); } // change node appearance graph.forEachNode((node, atts) => { const cluster = countryClusters[atts.country]; // node color depends on the cluster it belongs to atts.color = cluster.color; // node size depends on its degree atts.size = Math.sqrt(graph.degree(node)) / 2; // store cluster's nodes positions to calculate cluster label position cluster.positions.push({ x: atts.x, y: atts.y }); }); // calculate the cluster's nodes barycenter to use this as cluster label position for (const country in countryClusters) { countryClusters[country].x = countryClusters[country].positions.reduce((acc, p) => acc + p.x, 0) / countryClusters[country].positions.length; countryClusters[country].y = countryClusters[country].positions.reduce((acc, p) => acc + p.y, 0) / countryClusters[country].positions.length; } // initiate sigma const renderer = new Sigma(graph, container); // create the clustersLabel layer const clustersLayer = document.createElement("div"); clustersLayer.id = "clustersLayer"; let clusterLabelsDoms = ""; for (const country in countryClusters) { // for each cluster create a div label const cluster = countryClusters[country]; // adapt the position to viewport coordinates const viewportPos = renderer.graphToViewport(cluster as Coordinates); clusterLabelsDoms += `
${cluster.label}
`; } clustersLayer.innerHTML = clusterLabelsDoms; // insert the layer underneath the hovers layer container.insertBefore(clustersLayer, container.querySelector(".sigma-hovers")); // Clusters labels position needs to be updated on each render renderer.on("afterRender", () => { for (const country in countryClusters) { const cluster = countryClusters[country]; const clusterLabel = document.getElementById(cluster.label); if (clusterLabel) { // update position from the viewport const viewportPos = renderer.graphToViewport(cluster as Coordinates); clusterLabel.style.top = `${viewportPos.y}px`; clusterLabel.style.left = `${viewportPos.x}px`; } } }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/2-advanced-usecases/cluster-label/stories.ts ================================================ import { Meta, StoryObj } from "@storybook/html"; import { wrapStory } from "../../utils"; import play from "./index"; import template from "./index.html?raw"; import source from "./index?raw"; const meta: Meta = { id: "cluster-label", title: "Core library/Advanced use cases", }; export default meta; type Story = StoryObj; export const story: Story = { name: "Adding label on clusters", render: () => template, play: wrapStory(play), parameters: { storySource: { source, }, }, }; ================================================ FILE: packages/storybook/stories/2-advanced-usecases/events-shadowdom/index.html ================================================
================================================ FILE: packages/storybook/stories/2-advanced-usecases/events-shadowdom/index.ts ================================================ import Graph from "graphology"; import Sigma from "sigma"; import { MouseCoords } from "sigma/types"; import data from "../../_data/data.json"; export default () => { const logsDOM = document.getElementById("sigma-logs") as HTMLElement; const graph = new Graph(); graph.import(data); function logEvent(event: string, itemType: "node" | "edge" | "positions", item: string | MouseCoords): void { const div = document.createElement("div"); let message = `Event "${event}"`; if (item && itemType) { if (itemType === "positions") { item = item as MouseCoords; message += `, x ${item.x}, y ${item.y}`; } else { const label = itemType === "node" ? graph.getNodeAttribute(item, "label") : graph.getEdgeAttribute(item, "label"); message += `, ${itemType} ${label || "with no label"} (id "${item}")`; if (itemType === "edge") { message += `, source ${graph.getSourceAttribute(item, "label")}, target: ${graph.getTargetAttribute( item, "label", )}`; } } } div.innerHTML = `${message}`; logsDOM.appendChild(div); logsDOM.scrollTo({ top: logsDOM.scrollHeight }); if (logsDOM.children.length > 50) logsDOM.children[0].remove(); } window.customElements.define( "sigma-shadow", class extends HTMLElement { _container: HTMLDivElement | null = null; constructor() { super(); } connectedCallback() { const shadowRoot = this.attachShadow({ mode: "open" }); const container = document.createElement("div"); container.style.cssText = ` width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden; `; this._container = container; shadowRoot.appendChild(container); let hoveredEdge: null | string = null; const renderer = new Sigma(graph, this._container, { enableEdgeEvents: true, edgeReducer(edge, data) { const res = { ...data }; if (edge === hoveredEdge) res.color = "#cc0000"; return res; }, }); // Put the mouse canvas on top, so events can be catched even if the logs container is in front renderer.getCanvases().mouse.style.cssText = "z-index: 100; position: absolute"; const nodeEvents = [ "enterNode", "leaveNode", "downNode", "clickNode", "rightClickNode", "doubleClickNode", "wheelNode", ] as const; const edgeEvents = ["downEdge", "clickEdge", "rightClickEdge", "doubleClickEdge", "wheelEdge"] as const; const stageEvents = ["downStage", "clickStage", "doubleClickStage", "wheelStage"] as const; nodeEvents.forEach((eventType) => renderer.on(eventType, ({ node }) => logEvent(eventType, "node", node))); edgeEvents.forEach((eventType) => renderer.on(eventType, ({ edge }) => logEvent(eventType, "edge", edge))); renderer.on("enterEdge", ({ edge }) => { logEvent("enterEdge", "edge", edge); hoveredEdge = edge; renderer.refresh(); }); renderer.on("leaveEdge", ({ edge }) => { logEvent("leaveEdge", "edge", edge); hoveredEdge = null; renderer.refresh(); }); stageEvents.forEach((eventType) => { renderer.on(eventType, ({ event }) => { logEvent(eventType, "positions", event); }); }); } }, ); }; ================================================ FILE: packages/storybook/stories/2-advanced-usecases/events-shadowdom/stories.ts ================================================ import { Meta, StoryObj } from "@storybook/html"; import { wrapStory } from "../../utils"; import play from "./index"; import template from "./index.html?raw"; import source from "./index?raw"; const meta: Meta = { id: "events-shadowdom", title: "Core library/Advanced use cases", }; export default meta; type Story = StoryObj; export const story: Story = { name: "Events ShadowDom", render: () => template, play: wrapStory(play), parameters: { storySource: { source: source, }, }, }; ================================================ FILE: packages/storybook/stories/2-advanced-usecases/fit-sizes-to-positions/index.html ================================================
================================================ FILE: packages/storybook/stories/2-advanced-usecases/fit-sizes-to-positions/index.ts ================================================ /** * Sigma has been designed to display any graph in a "readable way" by default: * https://www.sigmajs.org/docs/advanced/coordinate-systems * * This design principle is enforced by three main features: * 1. Graph is rescaled and centered to fit by default in the viewport * 2. Node sizes are interpolated by default to fit in a pixels range, * independent of the viewport (and not correlated to the nodes positions) * 3. When users scroll into the graph, the node sizes do not scale with the * zoom ratio, but with its square root instead * * In some cases, it is better to disable these features, to have better * control over the way nodes are displayed on screen. * * This example shows how to disable these three features. */ import { NodeSquareProgram } from "@sigma/node-square"; import chroma from "chroma-js"; import Graph from "graphology"; import Sigma from "sigma"; import { DEFAULT_SETTINGS } from "sigma/settings"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; // Let's first build a graph that will look like a perfect grid: const graph = new Graph(); const colorScale = chroma.scale(["yellow", "navy"]).mode("lch"); const GRID_SIZE = 20; for (let row = 0; row < GRID_SIZE; row++) { for (let col = 0; col < GRID_SIZE; col++) { const color = colorScale((col + row) / (GRID_SIZE * 2)).hex(); graph.addNode(`${row}/${col}`, { x: 20 * col, y: 20 * row, size: 5, color, }); if (row >= 1) graph.addEdge(`${row - 1}/${col}`, `${row}/${col}`, { size: 10 }); if (col >= 1) graph.addEdge(`${row}/${col - 1}`, `${row}/${col}`, { size: 10 }); } } const renderer = new Sigma(graph, container, { // This flag tells sigma to disable the nodes and edges sizes interpolation // and instead scales them in the same way it handles positions: itemSizesReference: "positions", // This function tells sigma to grow sizes linearly with the zoom, instead // of relatively to the zoom ratio's square root: zoomToSizeRatioFunction: (x) => x, // This disables the default sigma rescaling, so that by default, positions // and sizes are preserved on screen (in pixels): autoRescale: false, // Finally, let's indicate that we want square nodes, to get a perfect // grid: defaultNodeType: "square", nodeProgramClasses: { square: NodeSquareProgram, }, }); // Handle controls: const linearZoomToSizeRatioFunction = document.getElementById("linearZoomToSizeRatioFunction") as HTMLInputElement; const itemSizesReferencePositions = document.getElementById("itemSizesReferencePositions") as HTMLInputElement; const disabledAutoRescale = document.getElementById("disabledAutoRescale") as HTMLInputElement; const resetCamera = document.getElementById("resetCamera") as HTMLButtonElement; // Set initial form values: linearZoomToSizeRatioFunction.checked = renderer.getSetting("zoomToSizeRatioFunction") !== DEFAULT_SETTINGS.zoomToSizeRatioFunction; itemSizesReferencePositions.checked = renderer.getSetting("itemSizesReference") === "positions"; disabledAutoRescale.checked = !renderer.getSetting("autoRescale"); // Handle controls updates: function refreshSettings() { renderer.setSetting( "zoomToSizeRatioFunction", linearZoomToSizeRatioFunction.checked ? (x) => x : DEFAULT_SETTINGS.zoomToSizeRatioFunction, ); renderer.setSetting( "itemSizesReference", itemSizesReferencePositions.checked ? "positions" : DEFAULT_SETTINGS.itemSizesReference, ); renderer.setSetting("autoRescale", !disabledAutoRescale.checked); } [linearZoomToSizeRatioFunction, itemSizesReferencePositions, disabledAutoRescale].forEach((input) => input.addEventListener("change", refreshSettings), ); // Handle reset camera button: resetCamera.addEventListener("click", () => { renderer.getCamera().animatedReset(); }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/2-advanced-usecases/fit-sizes-to-positions/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import play from "./index"; import template from "./index.html?raw"; import source from "./index?raw"; const meta: Meta = { id: "fit-sizes-to-positions", title: "Core library/Advanced use cases", }; export default meta; type Story = StoryObj; export const story: Story = { name: "Customize how sigma handles sizes and positions", render: () => template, play: wrapStory(play), args: {}, parameters: { storySource: { source, }, }, }; ================================================ FILE: packages/storybook/stories/2-advanced-usecases/large-graphs/index.html ================================================

Graph

Edges renderer

================================================ FILE: packages/storybook/stories/2-advanced-usecases/large-graphs/index.ts ================================================ /** * This example aims at showcasing sigma's performances. */ import Graph from "graphology"; import clusters from "graphology-generators/random/clusters"; import forceAtlas2 from "graphology-layout-forceatlas2"; import FA2Layout from "graphology-layout-forceatlas2/worker"; import circlepack from "graphology-layout/circlepack"; import seedrandom from "seedrandom"; import Sigma from "sigma"; import { EdgeLineProgram, EdgeRectangleProgram } from "sigma/rendering"; const DEFAULT_ARGS = { order: 5000, size: 1000, clusters: 3, edgesRenderer: "edges-default", }; export default () => { const rng = seedrandom("sigma"); // 1. Read query string, and set form values accordingly: const query = new URLSearchParams(location.search).entries(); for (const [key, value] of query) { const domList = document.getElementsByName(key); if (domList.length === 1) { (domList[0] as HTMLInputElement).value = value; } else if (domList.length > 1) { domList.forEach((dom: HTMLElement) => { const input = dom as HTMLInputElement; input.checked = input.value === value; }); } } // 2. Read form values to build a full state: const state = { ...DEFAULT_ARGS, order: +document.querySelector("#order")!.value, size: +document.querySelector("#size")!.value, clusters: +document.querySelector("#clusters")!.value, edgesRenderer: document.querySelector('[name="edges-renderer"]:checked')!.value, }; // 3. Generate a graph: const graph = clusters(Graph, { ...state, rng }); circlepack.assign(graph, { hierarchyAttributes: ["cluster"], }); const colors: Record = {}; for (let i = 0; i < +state.clusters; i++) { colors[i] = "#" + Math.floor(rng() * 16777215).toString(16); } let i = 0; graph.forEachNode((node, { cluster }) => { graph.mergeNodeAttributes(node, { size: graph.degree(node) / 3, label: `Node n°${++i}, in cluster n°${cluster}`, color: colors[cluster + ""], }); }); // 4. Render the graph: const container = document.getElementById("sigma-container") as HTMLElement; const renderer = new Sigma(graph, container, { defaultEdgeColor: "#e6e6e6", defaultEdgeType: state.edgesRenderer, edgeProgramClasses: { "edges-default": EdgeRectangleProgram, "edges-fast": EdgeLineProgram, }, }); // 5. Enable FA2 button: const fa2Button = document.getElementById("fa2") as HTMLButtonElement; const sensibleSettings = forceAtlas2.inferSettings(graph); const fa2Layout = new FA2Layout(graph, { settings: sensibleSettings, }); function toggleFA2Layout() { if (fa2Layout.isRunning()) { fa2Layout.stop(); fa2Button.innerHTML = `Start layout ▶`; } else { fa2Layout.start(); fa2Button.innerHTML = `Stop layout ⏸`; } } fa2Button.addEventListener("click", toggleFA2Layout); // Cheap trick: tilt the camera a bit to make labels more readable: renderer.getCamera().setState({ angle: 0.2, }); return () => { fa2Layout.kill(); renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/2-advanced-usecases/large-graphs/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import play from "./index"; import template from "./index.html?raw"; import source from "./index?raw"; type StoryArgs = { order: number; size: number; clusters: number; edgesRenderer: "edges-default" | "edges-fast"; }; const meta: Meta = { id: "large-graphs", title: "Core library/Advanced use cases", argTypes: { order: { name: "Number of nodes", defaultValue: 5000, control: { type: "number", step: "100", min: "100" }, }, size: { name: "Number of edges", defaultValue: 10000, control: { type: "number", step: "100", min: "100" }, }, clusters: { name: "Number of clusters", defaultValue: 3, control: { type: "number", step: "1", min: "1" }, }, edgesRenderer: { name: "Edges renderer", defaultValue: "edge-default", options: ["edges-default", "edges-fast"], control: { type: "radio", }, }, }, }; export default meta; type Story = StoryObj; export const story: Story = { name: "Performances showcase", render: () => template, play: wrapStory(play), args: { order: 5000, size: 1000, clusters: 3, edgesRenderer: "edges-default", }, parameters: { storySource: { source, }, }, }; ================================================ FILE: packages/storybook/stories/2-advanced-usecases/load-rdf-file/index.html ================================================
================================================ FILE: packages/storybook/stories/2-advanced-usecases/load-rdf-file/index.ts ================================================ /** * This is a minimal example to show how to load a RDF graph file into graphology and display it. * The way the graph is created from JSON-LD can be adapted to your needs. */ import Graph from "graphology"; import forceAtlas2 from "graphology-layout-forceatlas2"; import FA2Layout from "graphology-layout-forceatlas2/worker"; import jsonld, { type NodeObject } from "jsonld"; import Sigma from "sigma"; export default () => { let renderer: Sigma | null = null; // Track the global ID to avoid merging nodes of the same type let GLOBAL_ID = 0; /** * Recursive function that parse the extended JSON-LD structure * and builds the graph. */ function parseJsonLdExtended(item: NodeObject, graph: Graph): string { GLOBAL_ID++; // If we just have the type, we add a unique ID to avoid merge node of same type in one node const subjectId = typeof item === "object" ? item["@id"] || item["@value"] || `${item["@type"]}#${GLOBAL_ID}` : `${item}`; graph.mergeNode(subjectId, { x: Math.random(), y: Math.random(), size: 10, label: subjectId }); if (typeof item === "object" && "@type" in item) { // for each predicate, object , we build the edge (and the subgraph if needed by recursivity). for (const [predicate, objects] of Object.entries(item)) { if (Array.isArray(objects)) { for (const obj of objects) { if (obj !== null) { const objectId = parseJsonLdExtended(obj as NodeObject, graph); graph.addDirectedEdge(subjectId, objectId, { type: "arrow", label: predicate, }); } } } } } return `${subjectId}`; } fetch("./pina-colada.jsonld").then(async (res) => { const rdf = await res.json(); const graph = new Graph({ type: "directed", multi: true }); // Expand the JSON-LD to a full RDF graph const expanded = await jsonld.expand(rdf); for (const item of expanded) { parseJsonLdExtended(item, graph); } // Retrieve some useful DOM elements: const container = document.getElementById("sigma-container") as HTMLElement; const FA2Button = document.getElementById("forceatlas2") as HTMLElement; const FA2StopLabel = document.getElementById("forceatlas2-stop-label") as HTMLElement; const FA2StartLabel = document.getElementById("forceatlas2-start-label") as HTMLElement; /** FA2 LAYOUT **/ /* This example shows how to use the force atlas 2 layout in a web worker */ // Graphology provides a easy to use implementation of Force Atlas 2 in a web worker const sensibleSettings = forceAtlas2.inferSettings(graph); const fa2Layout = new FA2Layout(graph, { settings: sensibleSettings, }); // This variable is used to toggle state between start and stop const cancelCurrentAnimation: (() => void) | null = null; // correlate start/stop actions with state management function stopFA2() { fa2Layout.stop(); FA2StartLabel.style.display = "flex"; FA2StopLabel.style.display = "none"; } function startFA2() { if (cancelCurrentAnimation) cancelCurrentAnimation(); fa2Layout.start(); FA2StartLabel.style.display = "none"; FA2StopLabel.style.display = "flex"; } // the main toggle function function toggleFA2Layout() { if (fa2Layout.isRunning()) { stopFA2(); } else { startFA2(); } } // bind method to the forceatlas2 button FA2Button.addEventListener("click", toggleFA2Layout); // Instantiate sigma: renderer = new Sigma(graph, container, { minCameraRatio: 0.08, maxCameraRatio: 3, renderEdgeLabels: true, }); // Strt FA2 startFA2(); }); return () => { renderer?.kill(); }; }; ================================================ FILE: packages/storybook/stories/2-advanced-usecases/load-rdf-file/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import play from "./index"; import template from "./index.html?raw"; import source from "./index?raw"; const meta: Meta = { id: "load-rdf-file", title: "Core library/Advanced use cases", }; export default meta; type Story = StoryObj; export const story: Story = { name: "Load RDF file", render: () => template, play: wrapStory(play), args: {}, parameters: { storySource: { source, }, }, }; ================================================ FILE: packages/storybook/stories/2-advanced-usecases/mouse-manipulations/index.html ================================================

To be able to test the integration of sigma and its mouse interaction capabilities in a scrollable webpage, we added some random texts around the container.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla a justo vel velit efficitur ullamcorper non ut augue. Nunc ultrices massa nulla, non rutrum justo accumsan eget. Aenean volutpat pharetra dolor, in mollis felis consectetur faucibus. Vestibulum varius ligula et tempor varius. Suspendisse et neque vitae est porttitor malesuada sit amet consectetur quam. Nam vestibulum vestibulum ante sit amet bibendum. Integer vel porta massa, ac suscipit velit. In auctor ex eu tristique dignissim. Praesent vitae faucibus eros, vel ultricies lectus. Integer at turpis ut ex ultrices tristique. Mauris venenatis imperdiet dignissim. Quisque eleifend dui ac neque consectetur, in sollicitudin elit consequat. Sed suscipit mauris nec leo tristique, id lacinia purus aliquam.

Duis nisl metus, pellentesque nec egestas nec, finibus eu erat. Morbi mollis, dui in rutrum blandit, tellus mauris vestibulum eros, ac gravida orci augue eget mauris. Maecenas pharetra convallis est placerat lacinia. Curabitur ipsum metus, sagittis vitae efficitur congue, suscipit quis nunc. Integer convallis, nisl sed mattis consectetur, mi nunc rutrum purus, at bibendum quam mi nec elit. Aliquam vulputate posuere ipsum, quis condimentum tortor ultricies vitae. Nunc vitae justo id neque dictum vulputate quis nec enim. Ut a venenatis metus.

Etiam ut mattis ligula. Vestibulum a nisl vel magna fermentum sodales et ac metus. Ut cursus libero tincidunt nisl imperdiet, vel vulputate tellus pulvinar. Donec ac nulla tempus, aliquam tellus vitae, ornare velit. Nam quis massa ac elit scelerisque finibus eu ac metus. Nullam faucibus nunc id interdum tincidunt. Maecenas ut neque a justo ultricies pretium. Integer efficitur sit amet est in mattis. Vivamus interdum erat in quam sodales sagittis. Sed laoreet urna at neque volutpat rutrum. Duis id ornare lectus. Praesent in felis vitae tortor viverra congue. Pellentesque commodo diam eu lorem dapibus, ac scelerisque turpis tristique.

You can move nodes with your mouse. Also, clicking the stage will create new nodes, connected to the closest nodes.

Duis justo sapien, auctor a ligula eget, iaculis pharetra nulla. In sed malesuada arcu. Quisque viverra tortor sed imperdiet euismod. Aliquam quis sem vitae metus consequat posuere id ornare elit. Donec porttitor nulla id euismod luctus. In euismod a quam a convallis. Vivamus sit amet vehicula sapien, nec vulputate ex. Fusce non enim a felis luctus mattis ac nec nulla.

Praesent tortor risus, sagittis at aliquet vel, egestas a ligula. Aliquam euismod lobortis magna, a varius massa tincidunt et. Praesent et ultrices turpis, sed rhoncus quam. Praesent quis congue tortor, sed ultrices mi. Curabitur tincidunt placerat tincidunt. Sed non varius risus. Proin suscipit magna arcu, a congue augue tempor vel. Sed hendrerit nisi a tellus luctus, eu venenatis orci semper. Vestibulum a nulla semper, elementum elit at, consequat nisl. Mauris ipsum mauris, ultrices nec ante et, elementum rhoncus diam. Mauris nisl arcu, maximus at ultricies at, convallis nec justo. Integer congue placerat sem, id ultrices odio porttitor consequat. Vestibulum porttitor tincidunt justo, vel sodales dui imperdiet ut. Mauris eget accumsan sapien, et viverra ante. Donec et turpis et neque euismod sollicitudin. Donec sit amet vulputate felis.

================================================ FILE: packages/storybook/stories/2-advanced-usecases/mouse-manipulations/index.ts ================================================ import chroma from "chroma-js"; import Graph from "graphology"; import ForceSupervisor from "graphology-layout-force/worker"; import Sigma from "sigma"; import { v4 as uuid } from "uuid"; export default () => { // Retrieve the html document for sigma container const container = document.getElementById("sigma-container") as HTMLElement; // Create a sample graph const graph = new Graph(); graph.addNode("n1", { x: 0, y: 0, size: 10, color: chroma.random().hex() }); graph.addNode("n2", { x: -5, y: 5, size: 10, color: chroma.random().hex() }); graph.addNode("n3", { x: 5, y: 5, size: 10, color: chroma.random().hex() }); graph.addNode("n4", { x: 0, y: 10, size: 10, color: chroma.random().hex() }); graph.addEdge("n1", "n2"); graph.addEdge("n2", "n4"); graph.addEdge("n4", "n3"); graph.addEdge("n3", "n1"); // Create the spring layout and start it const layout = new ForceSupervisor(graph, { isNodeFixed: (_, attr) => attr.highlighted }); layout.start(); // Create the sigma const renderer = new Sigma(graph, container, { minCameraRatio: 0.5, maxCameraRatio: 2 }); // // Drag'n'drop feature // ~~~~~~~~~~~~~~~~~~~ // // State for drag'n'drop let draggedNode: string | null = null; let isDragging = false; // On mouse down on a node // - we enable the drag mode // - save in the dragged node in the state // - highlight the node // - disable the camera so its state is not updated renderer.on("downNode", (e) => { isDragging = true; draggedNode = e.node; graph.setNodeAttribute(draggedNode, "highlighted", true); if (!renderer.getCustomBBox()) renderer.setCustomBBox(renderer.getBBox()); }); // On mouse move, if the drag mode is enabled, we change the position of the draggedNode renderer.on("moveBody", ({ event }) => { if (!isDragging || !draggedNode) return; // Get new position of node const pos = renderer.viewportToGraph(event); graph.setNodeAttribute(draggedNode, "x", pos.x); graph.setNodeAttribute(draggedNode, "y", pos.y); // Prevent sigma to move camera: event.preventSigmaDefault(); event.original.preventDefault(); event.original.stopPropagation(); }); // On mouse up, we reset the dragging mode const handleUp = () => { if (draggedNode) { graph.removeNodeAttribute(draggedNode, "highlighted"); } isDragging = false; draggedNode = null; }; renderer.on("upNode", handleUp); renderer.on("upStage", handleUp); // // Create node (and edge) by click // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // // When clicking on the stage, we add a new node and connect it to the closest node renderer.on("clickStage", ({ event }: { event: { x: number; y: number } }) => { // Sigma (ie. graph) and screen (viewport) coordinates are not the same. // So we need to translate the screen x & y coordinates to the graph one by calling the sigma helper `viewportToGraph` const coordForGraph = renderer.viewportToGraph({ x: event.x, y: event.y }); // We create a new node const node = { ...coordForGraph, size: 10, color: chroma.random().hex(), }; // Searching the two closest nodes to auto-create an edge to it const closestNodes = graph .nodes() .map((nodeId) => { const attrs = graph.getNodeAttributes(nodeId); const distance = Math.pow(node.x - attrs.x, 2) + Math.pow(node.y - attrs.y, 2); return { nodeId, distance }; }) .sort((a, b) => a.distance - b.distance) .slice(0, 2); // We register the new node into graphology instance const id = uuid(); graph.addNode(id, node); // We create the edges closestNodes.forEach((e) => graph.addEdge(id, e.nodeId)); }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/2-advanced-usecases/mouse-manipulations/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import play from "./index"; import template from "./index.html?raw"; import source from "./index?raw"; const meta: Meta = { id: "mouse-manipulations", title: "Core library/Advanced use cases", }; export default meta; type Story = StoryObj; export const story: Story = { name: "Node drag'n'drop, with mouse graph creation", render: () => template, play: wrapStory(play), args: {}, parameters: { storySource: { source, }, }, }; ================================================ FILE: packages/storybook/stories/3-additional-packages/edge-curve/arrow-heads.ts ================================================ /** * This story is here to showcase straight and curved arrows and double-arrows * renderers. */ import EdgeCurveProgram, { EdgeCurvedArrowProgram, EdgeCurvedDoubleArrowProgram } from "@sigma/edge-curve"; import { MultiGraph } from "graphology"; import Sigma from "sigma"; import { EdgeArrowProgram, EdgeDoubleArrowProgram, EdgeRectangleProgram } from "sigma/rendering"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; // Create a graph, with various parallel edges: const graph = new MultiGraph(); graph.addNode("a", { x: 0, y: 0, size: 10, label: "Alexandra" }); graph.addNode("b", { x: 1, y: -1, size: 20, label: "Bastian" }); graph.addNode("c", { x: 3, y: -2, size: 10, label: "Charles" }); graph.addNode("d", { x: 1, y: -3, size: 10, label: "Dorothea" }); graph.addNode("e", { x: 3, y: -4, size: 20, label: "Ernestine" }); graph.addNode("f", { x: 4, y: -5, size: 10, label: "Fabian" }); graph.addEdge("a", "b", { size: 5 }); graph.addEdge("b", "c", { size: 6, curved: true }); graph.addEdge("b", "d", { size: 5 }); graph.addEdge("c", "b", { size: 5, curved: true }); graph.addEdge("c", "e", { size: 9 }); graph.addEdge("d", "c", { size: 5, curved: true }); graph.addEdge("d", "e", { size: 5, curved: true }); graph.addEdge("e", "d", { size: 4, curved: true }); graph.addEdge("f", "e", { size: 7, curved: true }); const renderer = new Sigma(graph, container, { allowInvalidContainer: true, defaultEdgeType: "straightNoArrow", renderEdgeLabels: true, edgeProgramClasses: { straightNoArrow: EdgeRectangleProgram, curvedNoArrow: EdgeCurveProgram, straightArrow: EdgeArrowProgram, curvedArrow: EdgeCurvedArrowProgram, straightDoubleArrow: EdgeDoubleArrowProgram, curvedDoubleArrow: EdgeCurvedDoubleArrowProgram, }, }); // Add a form to play with arrow heads sides: const select = document.createElement("select") as HTMLSelectElement; select.style.fontFamily = "sans-serif"; select.style.position = "absolute"; select.style.top = "10px"; select.style.right = "10px"; select.style.padding = "10px"; select.innerHTML = ` `; select.value = "Arrow"; document.body.append(select); const refreshEdgeTypes = () => { const suffix = select.value; graph.forEachEdge((edge, { curved }) => graph.setEdgeAttribute(edge, "type", `${curved ? "curved" : "straight"}${suffix}`), ); }; refreshEdgeTypes(); select.addEventListener("change", refreshEdgeTypes); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/edge-curve/basic.ts ================================================ import EdgeCurveProgram from "@sigma/edge-curve"; import Graph from "graphology"; import Sigma from "sigma"; import data from "./data/les-miserables.json"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.import(data); const renderer = new Sigma(graph, container, { allowInvalidContainer: true, defaultEdgeType: "curve", edgeProgramClasses: { curve: EdgeCurveProgram, }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/edge-curve/data/arctic.json ================================================ { "nodes": [ { "key": "Uruguay", "attributes": { "label": "Uruguay", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Uruguay", "continent": "America", "reporting": 1, "world_Exp": "24182046.627433226", "world_Imp": "18517494.34133092", "pagerank": 0.0020084238408192697, "RIX": 0, "inHerfindahl": "0.07168661370564026", "outHerfindahl": "0.08018479123660455", "herfindahl": "0.12525210178238924", "weightedInDegree": "34262127.183624364", "weightedOutDegree": "38053457.10803716", "inDegree": 65, "outDegree": 62, "worldTradePart": 0.0031505471880798257 } }, { "key": "GermanyZollverein", "attributes": { "label": "Germany (Zollverein)", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Germany (Zollverein)", "continent": "Europe", "reporting": 1, "world_Exp": "353865327.7498088", "world_Imp": "501925838.84067285", "pagerank": 0.05905917975090398, "RIX": 0, "inHerfindahl": "0.03604442451818645", "outHerfindahl": "0.023718438180716075", "herfindahl": "0.051874618397489476", "weightedInDegree": "989392536.6353383", "weightedOutDegree": "831790508.4840697", "inDegree": 207, "outDegree": 230, "worldTradePart": 0.06314378076002142 } }, { "key": "Arabia", "attributes": { "label": "Arabia", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Asia", "pagerank": 0.0003118482253935934, "RIX": 0, "inHerfindahl": "0.36281003823598534", "outHerfindahl": "0.3453082117253826", "herfindahl": "0.3474678582995904", "weightedInDegree": "152632.51666551857", "weightedOutDegree": "286088.89953361306", "inDegree": 9, "outDegree": 20 } }, { "key": "ArgentinaLaPlata", "attributes": { "label": "Argentina (La Plata)", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Argentina (La Plata)", "continent": "America", "reporting": 1, "world_Exp": "179592360.70144868", "world_Imp": "105109453.08069266", "pagerank": 0.012440362131543689, "RIX": 0, "inHerfindahl": "0.07383892662197865", "outHerfindahl": "0.08240544529514175", "herfindahl": "0.13112001744760796", "weightedInDegree": "212793298.7774107", "weightedOutDegree": "398877847.9308395", "inDegree": 98, "outDegree": 101, "worldTradePart": 0.02100646701351442 } }, { "key": "Austria", "attributes": { "label": "Austria", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Austria", "continent": "Europe", "reporting": 1, "world_Exp": "62999968.311538704", "world_Imp": "110079167.04406077", "pagerank": 0.012374444226069838, "RIX": 0, "inHerfindahl": "0.06611508523048953", "outHerfindahl": "0.04600724644472613", "herfindahl": "0.10747715799025606", "weightedInDegree": "189512435.67990136", "weightedOutDegree": "116251446.50592831", "inDegree": 113, "outDegree": 141, "worldTradePart": 0.012770488179457681 } }, { "key": "Belgium", "attributes": { "label": "Belgium", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Belgium", "continent": "Europe", "world_Exp": "131617473.97008051", "world_Imp": "171276595.74462658", "pagerank": 0.007555509209206353, "RIX": 0, "inHerfindahl": "0.11099097302935956", "outHerfindahl": "0.12127711384511931", "herfindahl": "0.10755489287658691", "weightedInDegree": "125357862.35201462", "weightedOutDegree": "135409091.9501085", "inDegree": 85, "outDegree": 102, "worldTradePart": 0.022348766239051795 } }, { "key": "Brazil", "attributes": { "label": "Brazil", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Brazil", "continent": "America", "reporting": 1, "world_Exp": "95103020", "world_Imp": "68336622", "pagerank": 0.007758470461238074, "RIX": 0, "inHerfindahl": "0.07796329840601965", "outHerfindahl": "0.11359842873123793", "herfindahl": "0.17549981678999532", "weightedInDegree": "125921422.85084361", "weightedOutDegree": "186562158.20035756", "inDegree": 99, "outDegree": 118, "worldTradePart": 0.012059246840628902 } }, { "key": "ColombiaNewGranadaGranColombia", "attributes": { "label": "Colombia (New Granada) (Gran Colombia)", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Colombia (New Granada) (Gran Colombia)", "continent": "America", "reporting": 1, "world_Exp": "19503325.486645542", "world_Imp": "12582596.650067903", "pagerank": 0.0015195568150549817, "RIX": 0, "inHerfindahl": "0.15573068271653856", "outHerfindahl": "0.33061711423720375", "herfindahl": "0.4845862208990466", "weightedInDegree": "24037008.601749975", "weightedOutDegree": "35697424.423284814", "inDegree": 52, "outDegree": 59, "worldTradePart": 0.0023674308779740635 } }, { "key": "Cuba", "attributes": { "label": "Cuba", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Cuba", "continent": "America", "reporting": 1, "world_Exp": "90596936.45833334", "world_Imp": "60494329.583333336", "pagerank": 0.006047443450358065, "RIX": 0, "inHerfindahl": "0.22869582429445665", "outHerfindahl": "0.339649109498155", "herfindahl": "0.5827925064293088", "weightedInDegree": "125449418.73795417", "weightedOutDegree": "193199102.00046188", "inDegree": 92, "outDegree": 107, "worldTradePart": 0.011148133037758306 } }, { "key": "Czechoslovakia", "attributes": { "label": "Czechoslovakia", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Czechoslovakia", "continent": "Europe", "reporting": 1, "world_Exp": "113749110.81651537", "world_Imp": "105865490.41257817", "pagerank": 0.011540818693531579, "RIX": 0, "inHerfindahl": "0.08786438061044248", "outHerfindahl": "0.060241859608540345", "herfindahl": "0.12456776322345074", "weightedInDegree": "160703789.50242075", "weightedOutDegree": "220170352.50160635", "inDegree": 72, "outDegree": 111, "worldTradePart": 0.016204065633158463 } }, { "key": "Chile", "attributes": { "label": "Chile", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Chile", "continent": "America", "reporting": 1, "world_Exp": "45123202.41072322", "world_Imp": "27249626.963088926", "pagerank": 0.0030925980721606336, "RIX": 0, "inHerfindahl": "0.07479607864213363", "outHerfindahl": "0.1295238695588027", "herfindahl": "0.2053614692583896", "weightedInDegree": "52814990.17592202", "weightedOutDegree": "97310240.84851244", "inDegree": 93, "outDegree": 77, "worldTradePart": 0.005339964058251661 } }, { "key": "PeoplesRepublicofChinaChina", "attributes": { "label": "People's Republic of China (China)", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "People's Republic of China (China)", "continent": "Asia", "reporting": 1, "world_Exp": "141292833.5423551", "world_Imp": "190231462.342943", "pagerank": 0.025567559467757982, "RIX": 0, "inHerfindahl": "0.08343810432843388", "outHerfindahl": "0.06719961474333914", "herfindahl": "0.1026526181527389", "weightedInDegree": "344022761.50968087", "weightedOutDegree": "267973360.63174772", "inDegree": 92, "outDegree": 118, "worldTradePart": 0.024461221701320805 } }, { "key": "Denmark", "attributes": { "label": "Denmark", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Denmark", "continent": "Europe", "reporting": 1, "world_Exp": "74694775.69024266", "world_Imp": "89446039.15785237", "pagerank": 0.010199666328293049, "RIX": 0, "inHerfindahl": "0.07671432468229389", "outHerfindahl": "0.19229717761648846", "herfindahl": "0.15010761638089357", "weightedInDegree": "138863724.16349518", "weightedOutDegree": "112967869.2843116", "inDegree": 129, "outDegree": 148, "worldTradePart": 0.01211098224796126 } }, { "key": "Ecuador", "attributes": { "label": "Ecuador", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Ecuador", "continent": "America", "reporting": 1, "world_Exp": "2801293.752830983", "world_Imp": "2377684.5273893573", "pagerank": 0.0009504684135301083, "RIX": 0, "inHerfindahl": "0.12798694934641816", "outHerfindahl": "0.09424647664551036", "herfindahl": "0.2006387833328203", "weightedInDegree": "5393298.314142713", "weightedOutDegree": "6656480.900553054", "inDegree": 51, "outDegree": 65, "worldTradePart": 0.000382126249783592 } }, { "key": "EgyptArabRepublicEgypt", "attributes": { "label": "Egypt Arab Republic (Egypt)", "type": "GPH_entity", "GPH_status": "Occupied by", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "67766943.29896908", "world_Imp": "52306101.03092784", "pagerank": 0.008497497900679987, "RIX": 0, "inHerfindahl": "0.056911696850790644", "outHerfindahl": "0.14046797694133564", "herfindahl": "0.19148176378793544", "weightedInDegree": "108522088.96399418", "weightedOutDegree": "144908336.94993365", "inDegree": 126, "outDegree": 143, "worldTradePart": 0.008859481474390427 } }, { "key": "Spain", "attributes": { "label": "Spain", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Spain", "continent": "Europe", "reporting": 1, "world_Exp": "58037732.0054008", "world_Imp": "100075124.49066542", "pagerank": 0.011540939020781765, "RIX": 0, "inHerfindahl": "0.05373759727913732", "outHerfindahl": "0.06962123151130774", "herfindahl": "0.10919654296903657", "weightedInDegree": "147296846.9121212", "weightedOutDegree": "115198588.24928614", "inDegree": 149, "outDegree": 164, "worldTradePart": 0.011666214767914124 } }, { "key": "UnitedStatesofAmerica", "attributes": { "label": "United States of America", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "United States of America", "continent": "America", "reporting": 1, "world_Exp": "1018028293.3454051", "world_Imp": "817103440.4708012", "pagerank": 0.08266156779815445, "RIX": 0, "inHerfindahl": "0.030199506252860147", "outHerfindahl": "0.04558244558580819", "herfindahl": "0.06856574468317432", "weightedInDegree": "1543690642.54454", "weightedOutDegree": "2067072560.3867733", "inDegree": 217, "outDegree": 241, "worldTradePart": 0.1354035428146675 } }, { "key": "France", "attributes": { "label": "France", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "France", "continent": "Europe", "reporting": 1, "world_Exp": "501560314.6219839", "world_Imp": "475444644.6355656", "pagerank": 0.055524852911094894, "RIX": 0, "inHerfindahl": "0.03035257123392682", "outHerfindahl": "0.04717655840610377", "herfindahl": "0.05446484044669595", "weightedInDegree": "839646820.8930913", "weightedOutDegree": "827585786.0034485", "inDegree": 183, "outDegree": 179, "worldTradePart": 0.07208743132345685 } }, { "key": "Greece", "attributes": { "label": "Greece", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Greece", "continent": "Europe", "reporting": 1, "world_Exp": "13233294.160258899", "world_Imp": "32570719.26212282", "pagerank": 0.004560395174425678, "RIX": 0, "inHerfindahl": "0.046741924428205926", "outHerfindahl": "0.09716307382385386", "herfindahl": "0.09719973084304982", "weightedInDegree": "63244241.69714039", "weightedOutDegree": "29935194.41245128", "inDegree": 100, "outDegree": 105, "worldTradePart": 0.00337960789312045 } }, { "key": "Italy", "attributes": { "label": "Italy", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Italy", "continent": "Europe", "reporting": 1, "world_Exp": "140828562.51747328", "world_Imp": "190985023.54073775", "pagerank": 0.02345588272395775, "RIX": 0, "inHerfindahl": "0.04594775437784387", "outHerfindahl": "0.036839095415570636", "herfindahl": "0.07412217335490262", "weightedInDegree": "389441913.67459023", "weightedOutDegree": "303725953.275832", "inDegree": 167, "outDegree": 192, "worldTradePart": 0.024482566716281892 } }, { "key": "Japan", "attributes": { "label": "Japan", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Japan", "continent": "Asia", "reporting": 1, "world_Exp": "170396689.5460919", "world_Imp": "231346742.18088332", "pagerank": 0.019736875377808924, "RIX": 0, "inHerfindahl": "0.0867387714493044", "outHerfindahl": "0.14342681938360782", "herfindahl": "0.19512598473720247", "weightedInDegree": "379620577.0600254", "weightedOutDegree": "296704824.66988075", "inDegree": 98, "outDegree": 133, "worldTradePart": 0.02964227742126931 } }, { "key": "Mexico", "attributes": { "label": "Mexico", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Mexico", "continent": "America", "reporting": 1, "world_Exp": "67482021.22563411", "world_Imp": "35273666.65457727", "pagerank": 0.003321161199419166, "RIX": 0, "inHerfindahl": "0.2876921405126338", "outHerfindahl": "0.2895796309626227", "herfindahl": "0.5643228885852125", "weightedInDegree": "73304774.07207061", "weightedOutDegree": "123845982.19333531", "inDegree": 99, "outDegree": 85, "worldTradePart": 0.007581735919527337 } }, { "key": "Norway", "attributes": { "label": "Norway", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Norway", "continent": "Europe", "reporting": 1, "world_Exp": "33768954.9344053", "world_Imp": "48695405.88508198", "pagerank": 0.007911275454340868, "RIX": 0, "inHerfindahl": "0.06525787631198526", "outHerfindahl": "0.060385602633822796", "herfindahl": "0.11799845358684206", "weightedInDegree": "86299217.21382524", "weightedOutDegree": "73724544.36123751", "inDegree": 118, "outDegree": 138, "worldTradePart": 0.006084558620587799 } }, { "key": "Netherlands", "attributes": { "label": "Netherlands", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Netherlands", "continent": "Europe", "reporting": 1, "world_Exp": "143587770.48682523", "world_Imp": "204361529.33551002", "pagerank": 0.027867330155028156, "RIX": 0, "inHerfindahl": "0.05179850533517782", "outHerfindahl": "0.0667942826277554", "herfindahl": "0.10142910793430385", "weightedInDegree": "403892177.69648856", "weightedOutDegree": "319861768.7003429", "inDegree": 190, "outDegree": 203, "worldTradePart": 0.025673125829421085 } }, { "key": "Paraguay", "attributes": { "label": "Paraguay", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Paraguay", "continent": "America", "reporting": 1, "world_Imp": "1681459.6462695668", "pagerank": 0.0004157642644592471, "RIX": 0, "inHerfindahl": "0.1518116591256981", "outHerfindahl": "0.43115197476799527", "herfindahl": "0.315745502153174", "weightedInDegree": "2980407.892786959", "weightedOutDegree": "947343.2730626698", "inDegree": 46, "outDegree": 18 } }, { "key": "Portugal", "attributes": { "label": "Portugal", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Portugal", "continent": "Europe", "reporting": 1, "world_Exp": "7084733.109369168", "world_Imp": "22082866.74132139", "pagerank": 0.003949013438009069, "RIX": 0, "inHerfindahl": "0.07862346837250406", "outHerfindahl": "0.08188344584296978", "herfindahl": "0.13917733386439363", "weightedInDegree": "37664209.81020093", "weightedOutDegree": "20658706.32267668", "inDegree": 80, "outDegree": 115, "worldTradePart": 0.002152105095458837 } }, { "key": "UnitedKingdom", "attributes": { "label": "United Kingdom", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "United Kingdom", "continent": "Europe", "reporting": 1, "world_Exp": "800966837", "world_Imp": "1277439144", "pagerank": 0.1352139613035591, "RIX": 0, "inHerfindahl": "0.03268941140664711", "outHerfindahl": "0.022567678953673606", "herfindahl": "0.04603690378832401", "weightedInDegree": "2356888554.9311156", "weightedOutDegree": "1667332072.92613", "inDegree": 271, "outDegree": 291, "worldTradePart": 0.1533533141238676 } }, { "key": "DominicanRepublicSantoDomingo", "attributes": { "label": "Dominican Republic (Santo Domingo)", "type": "GPH_entity", "GPH_status": "Occupied by", "part_of": "United States of America", "continent": "America", "reporting": 1, "world_Exp": "6849908.55590765", "world_Imp": "4884692.394748755", "pagerank": 0.0008632567493663699, "RIX": 0, "inHerfindahl": "0.2933326915051739", "outHerfindahl": "0.11571546756294858", "herfindahl": "0.2542246340328342", "weightedInDegree": "8919359.930276986", "weightedOutDegree": "13941550.44690191", "inDegree": 60, "outDegree": 49, "worldTradePart": 0.0008658269665094112 } }, { "key": "Sweden", "attributes": { "label": "Sweden", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Sweden", "continent": "Europe", "reporting": 1, "world_Exp": "75786203.69869517", "world_Imp": "85615141.75126064", "pagerank": 0.01048538993694387, "RIX": 0, "inHerfindahl": "0.07471729061100782", "outHerfindahl": "0.06170363004628146", "herfindahl": "0.12515537317614686", "weightedInDegree": "148046955.35047153", "weightedOutDegree": "154047906.23112252", "inDegree": 134, "outDegree": 161, "worldTradePart": 0.011908852964757681 } }, { "key": "Switzerland", "attributes": { "label": "Switzerland", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Switzerland", "continent": "Europe", "reporting": 1, "world_Exp": "85279482.1186945", "world_Imp": "103171837.03043789", "pagerank": 0.013804933621490092, "RIX": 0, "inHerfindahl": "0.07031576371014343", "outHerfindahl": "0.049956582242760186", "herfindahl": "0.10511684587581101", "weightedInDegree": "204349250.38603854", "weightedOutDegree": "171967454.5357089", "inDegree": 110, "outDegree": 149, "worldTradePart": 0.013904710921121105 } }, { "key": "TurkeyOttomanEmpire", "attributes": { "label": "Turkey (Ottoman Empire)", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Turkey (Ottoman Empire)", "continent": "Asia", "reporting": 1, "world_Exp": "15800000", "world_Imp": "19400000", "pagerank": 0.002729851903820851, "RIX": 0, "inHerfindahl": "0.06595815163881562", "outHerfindahl": "0.06470441280951604", "herfindahl": "0.1011009237024129", "weightedInDegree": "40296288.77615327", "weightedOutDegree": "27555728.13603235", "inDegree": 62, "outDegree": 72, "worldTradePart": 0.0025972003095193845 } }, { "key": "Venezuela", "attributes": { "label": "Venezuela", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Venezuela", "continent": "America", "reporting": 1, "world_Exp": "9277816.966215624", "world_Imp": "9383779.140013568", "pagerank": 0.0022003049674801517, "RIX": 0, "inHerfindahl": "0.15234710283469052", "outHerfindahl": "0.12846286611272573", "herfindahl": "0.20508687272174608", "weightedInDegree": "18594524.909369133", "weightedOutDegree": "17257983.93830246", "inDegree": 58, "outDegree": 81, "worldTradePart": 0.001376929067705233 } }, { "key": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "label": "Yugoslavia (Kingdom of Serbs, Croats and Slovenes)", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Yugoslavia (Kingdom of Serbs, Croats and Slovenes)", "continent": "Europe", "reporting": 1, "world_Exp": "27636105.19004074", "world_Imp": "23820352.52729742", "pagerank": 0.0034214025837813506, "RIX": 0, "inHerfindahl": "0.08086463917187223", "outHerfindahl": "0.08378018239487128", "herfindahl": "0.15254873437004726", "weightedInDegree": "46954607.838142335", "weightedOutDegree": "48434151.1348976", "inDegree": 75, "outDegree": 80, "worldTradePart": 0.0037966684065409598 } }, { "key": "CanadaProvinceofCanada", "attributes": { "label": "Canada (Province of Canada)", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Canada (Province of Canada)", "continent": "America", "reporting": 1, "world_Exp": "234011115.9365136", "world_Imp": "199988105.7061628", "pagerank": 0.01980187990232741, "RIX": 0, "inHerfindahl": "0.26503074051784276", "outHerfindahl": "0.1490734723553837", "herfindahl": "0.37718846558736524", "weightedInDegree": "379181646.1605726", "weightedOutDegree": "438040213.65738136", "inDegree": 152, "outDegree": 190, "worldTradePart": 0.03202224184038441 } }, { "key": "Philippines", "attributes": { "label": "Philippines", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United States of America", "continent": "Asia", "reporting": 1, "world_Exp": "30253051.841528106", "world_Imp": "24306754.35816704", "pagerank": 0.003445105115520712, "RIX": 0, "inHerfindahl": "0.17985610055393908", "outHerfindahl": "0.2895128120098447", "herfindahl": "0.4666500134368567", "weightedInDegree": "46800605.30027143", "weightedOutDegree": "57992219.42437311", "inDegree": 77, "outDegree": 74, "worldTradePart": 0.00402564618037403 } }, { "key": "India", "attributes": { "label": "India", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Asia", "reporting": 1, "world_Exp": "276875437.15449387", "world_Imp": "177516685.88917047", "pagerank": 0.024595084207533736, "RIX": 0, "inHerfindahl": "0.1553427002552942", "outHerfindahl": "0.052237109162134726", "herfindahl": "0.09121834857043735", "weightedInDegree": "258833342.22109136", "weightedOutDegree": "479220988.6852399", "inDegree": 144, "outDegree": 199, "worldTradePart": 0.03352691371057316 } }, { "key": "NewZealand", "attributes": { "label": "New Zealand", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "New Zealand", "continent": "Oceania", "reporting": 1, "world_Exp": "52500000", "world_Imp": "48500000", "pagerank": 0.006926148411647344, "RIX": 0, "inHerfindahl": "0.15087246356276116", "outHerfindahl": "0.351399291973421", "herfindahl": "0.4865603601825928", "weightedInDegree": "87356490.23835325", "weightedOutDegree": "106796784.08911473", "inDegree": 134, "outDegree": 118, "worldTradePart": 0.007452194069927779 } }, { "key": "SouthAfrica", "attributes": { "label": "South Africa", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "South Africa", "continent": "Africa", "reporting": 1, "world_Exp": "77941588", "world_Imp": "59621002", "pagerank": 0.007494627516313795, "RIX": 0, "inHerfindahl": "0.20258647341462363", "outHerfindahl": "0.24698723978514742", "herfindahl": "0.39008831282379514", "weightedInDegree": "96770855.5232067", "weightedOutDegree": "107225747.3092845", "inDegree": 129, "outDegree": 93, "worldTradePart": 0.01014993185586046 } }, { "key": "Peru", "attributes": { "label": "Peru", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Peru", "continent": "America", "reporting": 1, "world_Exp": "23283949.341783613", "world_Imp": "16715368.068809416", "pagerank": 0.002501044333981094, "RIX": 0, "inHerfindahl": "0.11247050969748183", "outHerfindahl": "0.14279879410182866", "herfindahl": "0.23848781488360832", "weightedInDegree": "29397679.31370912", "weightedOutDegree": "43918428.31135537", "inDegree": 70, "outDegree": 70, "worldTradePart": 0.00295131362384535 } }, { "key": "FalklandIs", "attributes": { "label": "Falkland Is.", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "America", "reporting": 1, "world_Exp": "2585848", "world_Imp": "475341", "pagerank": 0.0003449073668774103, "RIX": 0, "inHerfindahl": "0.2592475375572519", "outHerfindahl": "0.15460740725756938", "herfindahl": "0.20784606179754558", "weightedInDegree": "760780.206099992", "weightedOutDegree": "2983642.637027369", "inDegree": 14, "outDegree": 12, "worldTradePart": 0.000225867074383447 } }, { "key": "PuertoRico", "attributes": { "label": "Puerto Rico", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United States of America", "continent": "America", "pagerank": 0.00035452017593017536, "RIX": 0, "inHerfindahl": "0.15897917036303583", "outHerfindahl": "0.3909272666136283", "herfindahl": "0.19225813628466162", "weightedInDegree": "842960.1480959557", "weightedOutDegree": "1003521.29175912", "inDegree": 15, "outDegree": 11 } }, { "key": "Unknown", "attributes": { "label": "Unknown", "pagerank": 0.00045726999712770305, "RIX": 0, "inHerfindahl": "0.29566536619189976", "outHerfindahl": "0.5109674187895719", "herfindahl": "0.25141381389408524", "weightedInDegree": "1526838.7948218943", "weightedOutDegree": "868881.34592606", "inDegree": 7, "outDegree": 9 } }, { "key": "Finland", "attributes": { "label": "Finland", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Finland", "continent": "Europe", "reporting": 1, "world_Exp": "27752833.65776055", "world_Imp": "26789999.01559226", "pagerank": 0.0035222292513626386, "RIX": 0, "inHerfindahl": "0.0797197005479131", "outHerfindahl": "0.10552289751125052", "herfindahl": "0.15519207561420378", "weightedInDegree": "47300057.063984916", "weightedOutDegree": "60420302.631133124", "inDegree": 86, "outDegree": 102, "worldTradePart": 0.004024393804014088 } }, { "key": "RussiaUSSR", "attributes": { "label": "Russia (USSR)", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Russia (USSR)", "continent": "Europe", "reporting": 1, "world_Exp": "60248132.63920326", "world_Imp": "44683850.158442736", "pagerank": 0.004009624714482831, "RIX": 0, "inHerfindahl": "0.0989681703976823", "outHerfindahl": "0.08944792578977691", "herfindahl": "0.14126488258962414", "weightedInDegree": "59978091.375935495", "weightedOutDegree": "106055538.48540314", "inDegree": 62, "outDegree": 77, "worldTradePart": 0.007742311880696843 } }, { "key": "Estonia", "attributes": { "label": "Estonia", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Estonia", "continent": "Europe", "reporting": 1, "world_Exp": "4575618.320325732", "world_Imp": "4772480.1923492635", "pagerank": 0.0010054177413830253, "RIX": 0, "inHerfindahl": "0.10942135476579967", "outHerfindahl": "0.10744007829839385", "herfindahl": "0.17853060406867582", "weightedInDegree": "8014208.913018489", "weightedOutDegree": "10407428.07921351", "inDegree": 47, "outDegree": 38, "worldTradePart": 0.0006897410326857157 } }, { "key": "Latvia", "attributes": { "label": "Latvia", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Latvia", "continent": "Europe", "reporting": 1, "world_Exp": "7372622.515154554", "world_Imp": "11121245.81256877", "pagerank": 0.001548357387602236, "RIX": 0, "inHerfindahl": "0.10248828007522526", "outHerfindahl": "0.14111866765424497", "herfindahl": "0.1879838335025972", "weightedInDegree": "20160041.902398825", "weightedOutDegree": "20869365.81793228", "inDegree": 60, "outDegree": 58, "worldTradePart": 0.001364553424573118 } }, { "key": "Lithuania", "attributes": { "label": "Lithuania", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Lithuania", "continent": "Europe", "reporting": 1, "world_Exp": "5973186.736074672", "world_Imp": "4628037.120865296", "pagerank": 0.0007734492326569799, "RIX": 0, "inHerfindahl": "0.2108695692530166", "outHerfindahl": "0.15029963646794917", "herfindahl": "0.3067344117733988", "weightedInDegree": "7724062.977680593", "weightedOutDegree": "9037549.221425679", "inDegree": 31, "outDegree": 37, "worldTradePart": 0.0007822017580263854 } }, { "key": "Poland", "attributes": { "label": "Poland", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Poland", "continent": "Europe", "reporting": 1, "world_Exp": "55098650.86001993", "world_Imp": "64359606.450768545", "pagerank": 0.0065138527775208226, "RIX": 0, "inHerfindahl": "0.10852104398787697", "outHerfindahl": "0.12001233454858108", "herfindahl": "0.17678282854700997", "weightedInDegree": "82391880.49979675", "weightedOutDegree": "101479277.49058603", "inDegree": 121, "outDegree": 107, "worldTradePart": 0.008814119967676878 } }, { "key": "Iceland", "attributes": { "label": "Iceland", "type": "GPH_entity", "GPH_status": "Sovereign (unrecognized)", "part_of": "Iceland", "continent": "Europe", "reporting": 1, "world_Exp": "2770772.1348314607", "world_Imp": "2047557.5280898877", "pagerank": 0.0005270518009274726, "RIX": 0, "inHerfindahl": "0.14993859477628527", "outHerfindahl": "0.12200397497846698", "herfindahl": "0.19372807865696431", "weightedInDegree": "3124053.223210703", "weightedOutDegree": "4021933.530683858", "inDegree": 32, "outDegree": 32, "worldTradePart": 0.00035551611624732264 } }, { "key": "DanzigFreeCityofDanzig", "attributes": { "label": "Danzig (Free City of Danzig)", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "League of Nations", "continent": "Europe", "pagerank": 0.0006782756964104906, "RIX": 0, "inHerfindahl": "0.6448366311002135", "outHerfindahl": "0.34344316335259645", "herfindahl": "0.4724552505954128", "weightedInDegree": "6327476.455647416", "weightedOutDegree": "5694121.225529198", "inDegree": 18, "outDegree": 13 } }, { "key": "Luxemburg", "attributes": { "label": "Luxemburg", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Luxemburg", "continent": "Europe", "pagerank": 0.0003504701700854648, "RIX": 0, "inHerfindahl": "0.5179592907118694", "outHerfindahl": "0.33650167365078515", "herfindahl": "0.34349540678917767", "weightedInDegree": "875431.6898722559", "weightedOutDegree": "5068688.829873406", "inDegree": 8, "outDegree": 18 } }, { "key": "Hungary", "attributes": { "label": "Hungary", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Hungary", "continent": "Europe", "reporting": 1, "world_Exp": "26420801.267556824", "world_Imp": "32292807.831616282", "pagerank": 0.0040999133099465165, "RIX": 0, "inHerfindahl": "0.08091953902157366", "outHerfindahl": "0.12482622694118786", "herfindahl": "0.18537267748645964", "weightedInDegree": "60166514.043579146", "weightedOutDegree": "53496195.68216258", "inDegree": 36, "outDegree": 60, "worldTradePart": 0.004332130787652629 } }, { "key": "Romania", "attributes": { "label": "Romania", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Romania", "continent": "Europe", "reporting": 1, "world_Exp": "32097152.557718422", "world_Imp": "29724515.617926665", "pagerank": 0.0040980459224377016, "RIX": 0, "inHerfindahl": "0.05851695098477652", "outHerfindahl": "0.03720980650475574", "herfindahl": "0.08154609898606355", "weightedInDegree": "58976799.94656354", "weightedOutDegree": "63113254.35267438", "inDegree": 63, "outDegree": 67, "worldTradePart": 0.004561456128431536 } }, { "key": "Bulgaria", "attributes": { "label": "Bulgaria", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Bulgaria", "continent": "Europe", "reporting": 1, "world_Exp": "7975807.551449067", "world_Imp": "9041615.464086933", "pagerank": 0.0014376123632999062, "RIX": 0, "inHerfindahl": "0.05466285956701229", "outHerfindahl": "0.06084728351589207", "herfindahl": "0.09636951202939975", "weightedInDegree": "17478186.550966594", "weightedOutDegree": "16348595.750659974", "inDegree": 52, "outDegree": 56, "worldTradePart": 0.0012556152364537612 } }, { "key": "Caucasusother", "attributes": { "label": "Caucasus (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Europe", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "0.5681303757355627", "inDegree": 0, "outDegree": 1 } }, { "key": "AsianTurkey", "attributes": { "label": "Asian Turkey", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Turkey (Ottoman Empire)", "continent": "Asia", "pagerank": 0.0003851656788592769, "RIX": 0, "inHerfindahl": "0.40869889577532054", "outHerfindahl": "0.41677855025194765", "herfindahl": "0.38497721285966036", "weightedInDegree": "1457477.5455935127", "weightedOutDegree": "3981931.803079314", "inDegree": 8, "outDegree": 13 } }, { "key": "Palestine", "attributes": { "label": "Palestine", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "United Kingdom", "continent": "Asia", "reporting": 1, "world_Exp": "1967268", "world_Imp": "5593376", "pagerank": 0.0011332175410375244, "RIX": 0, "inHerfindahl": "0.0678565902102467", "outHerfindahl": "0.16830587152489862", "herfindahl": "0.13863329101306604", "weightedInDegree": "7434275.3999145245", "weightedOutDegree": "3833013.059555765", "inDegree": 43, "outDegree": 37, "worldTradePart": 0.0005578553107092578 } }, { "key": "IranPersia", "attributes": { "label": "Iran (Persia)", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Iran (Persia)", "continent": "Asia", "reporting": 1, "world_Exp": "20003260", "world_Imp": "15428900", "pagerank": 0.001795539784564697, "RIX": 0, "inHerfindahl": "0.12433036785131568", "outHerfindahl": "0.11878637594519331", "herfindahl": "0.21110252098108512", "weightedInDegree": "21501155.221770387", "weightedOutDegree": "37750518.08671667", "inDegree": 31, "outDegree": 53, "worldTradePart": 0.00261433002610626 } }, { "key": "BritishEastIndies", "attributes": { "label": "British East Indies", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Asia", "pagerank": 0.0003514970571688224, "RIX": 0, "inHerfindahl": "0.4820824949053317", "outHerfindahl": "0.3606300168856759", "herfindahl": "0.39130921678508207", "weightedInDegree": "760454.9397790607", "weightedOutDegree": "1424415.6235840428", "inDegree": 5, "outDegree": 10 } }, { "key": "ThailandSiam", "attributes": { "label": "Thailand (Siam)", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Thailand (Siam)", "continent": "Asia", "reporting": 1, "world_Exp": "16246388.96", "world_Imp": "13549585.76", "pagerank": 0.0028070104589346698, "RIX": 0, "inHerfindahl": "0.07171900441644954", "outHerfindahl": "0.12153153326089869", "herfindahl": "0.13931600434468325", "weightedInDegree": "27064691.449080102", "weightedOutDegree": "46411092.340365514", "inDegree": 45, "outDegree": 61, "worldTradePart": 0.0021984691694663565 } }, { "key": "IndonesiaDutchEastIndies", "attributes": { "label": "Indonesia (Dutch East Indies)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Netherlands", "continent": "Asia", "reporting": 1, "world_Imp": "59205284.639441796", "pagerank": 0.011152754300562513, "RIX": 0, "inHerfindahl": "0.06959791451196566", "outHerfindahl": "0.12096951829708869", "herfindahl": "0.10149144157091754", "weightedInDegree": "88193961.86779135", "weightedOutDegree": "68671133.19466484", "inDegree": 71, "outDegree": 33 } }, { "key": "TunisiaRegencyofTunis", "attributes": { "label": "Tunisia (Regency of Tunis)", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "France", "continent": "Africa", "reporting": 1, "world_Exp": "6893863.830579214", "world_Imp": "10984940.024580887", "pagerank": 0.0017490681541657894, "RIX": 0, "inHerfindahl": "0.259384360620638", "outHerfindahl": "0.13937979680958476", "herfindahl": "0.39749601562397896", "weightedInDegree": "19478375.391386326", "weightedOutDegree": "13878465.322232645", "inDegree": 60, "outDegree": 50, "worldTradePart": 0.0013191714462061984 } }, { "key": "AlgeriaRegencyofAlgiers", "attributes": { "label": "Algeria (Regency of Algiers)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "Africa", "reporting": 1, "world_Exp": "26113219.53372478", "world_Imp": "37742795.74467957", "pagerank": 0.005427330208219336, "RIX": 0, "inHerfindahl": "0.3495921454021123", "outHerfindahl": "0.30550575353433274", "herfindahl": "0.6608269400025315", "weightedInDegree": "72939018.6997852", "weightedOutDegree": "49963934.152646236", "inDegree": 94, "outDegree": 90, "worldTradePart": 0.004711558597890521 } }, { "key": "Morocco", "attributes": { "label": "Morocco", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "France", "continent": "Africa", "pagerank": 0.0011903926067071827, "RIX": 0, "inHerfindahl": "0.39630269866099754", "outHerfindahl": "0.22150788173949407", "herfindahl": "0.31354568545938355", "weightedInDegree": "14156962.651808806", "weightedOutDegree": "8597018.439822178", "inDegree": 27, "outDegree": 33 } }, { "key": "BritishSouthAfrica", "attributes": { "label": "British South Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Africa", "pagerank": 0.0009569689184111258, "RIX": 0, "inHerfindahl": "0.34169962386140157", "outHerfindahl": "0.5753400488911774", "herfindahl": "0.31868880473441713", "weightedInDegree": "14991890.967707876", "weightedOutDegree": "9225855.453587146", "inDegree": 10, "outDegree": 11 } }, { "key": "Greenland", "attributes": { "label": "Greenland", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Denmark", "continent": "America", "pagerank": 0.0002970325707631476, "RIX": 0, "inHerfindahl": "0.9436911182145615", "outHerfindahl": "0.5864377571413806", "herfindahl": "0.623421368650125", "weightedInDegree": "48928.039836957454", "weightedOutDegree": "287300.548915677", "inDegree": 3, "outDegree": 7 } }, { "key": "BritishNorthAmerica", "attributes": { "label": "British North America", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "America", "pagerank": 0.00035520700194078376, "RIX": 0, "inHerfindahl": "0.544020250459549", "outHerfindahl": "0.31143369036869467", "herfindahl": "0.32136048003110745", "weightedInDegree": "681129.3619439456", "weightedOutDegree": "2817975.480695527", "inDegree": 5, "outDegree": 5 } }, { "key": "UnitedStatesofAmericaother", "attributes": { "label": "United States of America (other)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "United States of America", "continent": "America", "pagerank": 0.0003779431953080401, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "1708564.647034664", "weightedOutDegree": "3574027.3147121347", "inDegree": 1, "outDegree": 1 } }, { "key": "CentralAmerica", "attributes": { "label": "Central America", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "America", "pagerank": 0.0003240463843063668, "RIX": 0, "inHerfindahl": "0.36428561496399037", "outHerfindahl": "0.3235081556990987", "herfindahl": "0.24130423577976395", "weightedInDegree": "425885.28601195914", "weightedOutDegree": "649420.8620647695", "inDegree": 7, "outDegree": 7 } }, { "key": "WestIndies", "attributes": { "label": "West Indies", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "America", "pagerank": 0.0003886528495013643, "RIX": 0, "inHerfindahl": "0.5064468647865854", "outHerfindahl": "0.5219085554830807", "herfindahl": "0.33967357334734777", "weightedInDegree": "848614.0823990778", "weightedOutDegree": "402048.05246679316", "inDegree": 6, "outDegree": 6 } }, { "key": "Australia", "attributes": { "label": "Australia", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Australia", "continent": "Oceania", "reporting": 1, "world_Exp": "162030159", "world_Imp": "157143296", "pagerank": 0.018763880272672714, "RIX": 0, "inHerfindahl": "0.15154452483753922", "outHerfindahl": "0.10541917906492118", "herfindahl": "0.23529361598482865", "weightedInDegree": "269279714.42160934", "weightedOutDegree": "306883418.0510558", "inDegree": 165, "outDegree": 149, "worldTradePart": 0.023549926026033275 } }, { "key": "Syria", "attributes": { "label": "Syria", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "France", "continent": "Asia", "pagerank": 0.0007711007565508319, "RIX": 0, "inHerfindahl": "0.25466913029383115", "outHerfindahl": "0.21154178099503382", "herfindahl": "0.19897662103497804", "weightedInDegree": "6725000.841162438", "weightedOutDegree": "3706921.352109048", "inDegree": 19, "outDegree": 20 } }, { "key": "KoreaChosen", "attributes": { "label": "Korea (Chosen)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Japan", "continent": "Asia", "world_Exp": "29967739.644914325", "world_Imp": "28174224.11947641", "pagerank": 0.0007847944001786226, "RIX": 0, "inHerfindahl": "0.7766886292602043", "outHerfindahl": "0.9872313986209741", "herfindahl": "0.8245802006181073", "weightedInDegree": "6448812.80814438", "weightedOutDegree": "2119955.7221646067", "inDegree": 10, "outDegree": 7, "worldTradePart": 0.004289952451276717 } }, { "key": "SpanishAfrica", "attributes": { "label": "Spanish Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Spain", "continent": "Africa", "pagerank": 0.00030106511296969983, "RIX": 0, "inHerfindahl": "0.5229480069805021", "outHerfindahl": "0.5990637502294288", "herfindahl": "0.3470347528868121", "weightedInDegree": "192378.11367865858", "weightedOutDegree": "57567.91842082652", "inDegree": 7, "outDegree": 5 } }, { "key": "BritishEastAfrica", "attributes": { "label": "British East Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Africa", "pagerank": 0.000388411132763341, "RIX": 0, "inHerfindahl": "0.26625199272398886", "outHerfindahl": "0.26599981692267144", "herfindahl": "0.25034667260734816", "weightedInDegree": "1711489.579806477", "weightedOutDegree": "1661181.8398436795", "inDegree": 14, "outDegree": 15 } }, { "key": "FrenchEastAfrica", "attributes": { "label": "French East Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "France", "continent": "Africa", "pagerank": 0.00029421031684110223, "RIX": 0, "inHerfindahl": "0.4646308729999157", "outHerfindahl": "0.7492114523417763", "herfindahl": "0.34543931437805653", "weightedInDegree": "17300.020869152304", "weightedOutDegree": "7994.407876852309", "inDegree": 3, "outDegree": 2 } }, { "key": "MozambiquePortugueseEastAfrica", "attributes": { "label": "Mozambique (Portuguese East Africa)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Portugal", "continent": "Africa", "pagerank": 0.001021643499806084, "RIX": 0, "inHerfindahl": "0.19216422523904458", "outHerfindahl": "0.2637887433659398", "herfindahl": "0.18622264297742894", "weightedInDegree": "7455320.042371079", "weightedOutDegree": "3575672.4870286067", "inDegree": 21, "outDegree": 20 } }, { "key": "Bolivia", "attributes": { "label": "Bolivia", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Bolivia", "continent": "America", "reporting": 1, "world_Exp": "7743741.166375739", "world_Imp": "4225946.111142191", "pagerank": 0.0006912326655884421, "RIX": 0, "inHerfindahl": "0.08373142141065122", "outHerfindahl": "0.3373342900726514", "herfindahl": "0.37787538099300866", "weightedInDegree": "7468669.971152614", "weightedOutDegree": "13357946.739126077", "inDegree": 55, "outDegree": 35, "worldTradePart": 0.0008831725994891989 } }, { "key": "GuyanaBritishGuiana", "attributes": { "label": "Guyana (British Guiana)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "America", "reporting": 1, "world_Exp": "3219702.916666667", "world_Imp": "2742190.416666667", "pagerank": 0.0007400981797735704, "RIX": 0, "inHerfindahl": "0.18848743623772501", "outHerfindahl": "0.17808004703182007", "herfindahl": "0.3342992762393152", "weightedInDegree": "5040904.003710319", "weightedOutDegree": "5960333.9504436515", "inDegree": 44, "outDegree": 37, "worldTradePart": 0.00043989293212087755 } }, { "key": "Bermuda", "attributes": { "label": "Bermuda", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "America", "reporting": 1, "world_Exp": "195314", "world_Imp": "1815023", "pagerank": 0.0007318495382797585, "RIX": 0, "inHerfindahl": "0.1820127942670554", "outHerfindahl": "0.4513604477206035", "herfindahl": "0.3853401298507549", "weightedInDegree": "3413148.554304502", "weightedOutDegree": "483788.71992259397", "inDegree": 23, "outDegree": 18, "worldTradePart": 0.00014833090564313268 } }, { "key": "BritishWestIndies", "attributes": { "label": "British West Indies", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "America", "pagerank": 0.00036817436537959407, "RIX": 0, "inHerfindahl": "0.23368211949988044", "outHerfindahl": "0.17376441924824826", "herfindahl": "0.1722247243964945", "weightedInDegree": "1073076.1708078017", "weightedOutDegree": "466353.5523502218", "inDegree": 14, "outDegree": 21 } }, { "key": "NewfoundlandandLabradorNewfoundland", "attributes": { "label": "Newfoundland and Labrador (Newfoundland)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "America", "reporting": 1, "world_Exp": "4021065", "world_Imp": "5687593", "pagerank": 0.000968952597994715, "RIX": 0, "inHerfindahl": "0.15854011647697394", "outHerfindahl": "0.12073687935204935", "herfindahl": "0.23835080009932558", "weightedInDegree": "12434113.890126148", "weightedOutDegree": "7959320.889325754", "inDegree": 25, "outDegree": 32, "worldTradePart": 0.000716344589847098 } }, { "key": "StraitsSettlements", "attributes": { "label": "Straits Settlements", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Asia", "reporting": 1, "world_Exp": "89991416", "world_Imp": "100521518", "pagerank": 0.005701801456748872, "RIX": 0, "inHerfindahl": "0.10933329716613542", "outHerfindahl": "0.13348030614902026", "herfindahl": "0.14356540928570732", "weightedInDegree": "124368276.02888648", "weightedOutDegree": "137215464.4652359", "inDegree": 41, "outDegree": 54, "worldTradePart": 0.014056825316825172 } }, { "key": "BritishColoniesother", "attributes": { "label": "British Colonies (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "World", "pagerank": 0.00046685177201365196, "RIX": 0, "inHerfindahl": "0.3734761635093286", "outHerfindahl": "0.15472657448608082", "herfindahl": "0.30264279778110575", "weightedInDegree": "2463501.2285203924", "weightedOutDegree": "632441.6143244333", "inDegree": 19, "outDegree": 28 } }, { "key": "SurinamDutchGuiana", "attributes": { "label": "Surinam (Dutch Guiana)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Netherlands", "continent": "America", "pagerank": 0.0003201996489932521, "RIX": 0, "inHerfindahl": "0.3248237297196313", "outHerfindahl": "0.30867056028168954", "herfindahl": "0.30436670911970926", "weightedInDegree": "473610.4581760962", "weightedOutDegree": "507033.05686173926", "inDegree": 8, "outDegree": 7 } }, { "key": "NetherlandsAntilles", "attributes": { "label": "Netherlands Antilles", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Netherlands", "continent": "America", "pagerank": 0.00034915342825190166, "RIX": 0, "inHerfindahl": "0.4969460040982214", "outHerfindahl": "0.41796756588425643", "herfindahl": "0.4237142323653641", "weightedInDegree": "1260836.3303875274", "weightedOutDegree": "2090568.3730610989", "inDegree": 15, "outDegree": 17 } }, { "key": "FrenchGuiana", "attributes": { "label": "French Guiana", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "America", "reporting": 1, "world_Exp": "493749.7393390507", "world_Imp": "516475.79400179326", "pagerank": 0.00035611389747153814, "RIX": 0, "inHerfindahl": "0.2724033354203395", "outHerfindahl": "0.42917597937572216", "herfindahl": "0.34675824504822866", "weightedInDegree": "937437.6150369183", "weightedOutDegree": "659864.1983514202", "inDegree": 30, "outDegree": 15, "worldTradePart": 0.00007453858147378481 } }, { "key": "FrenchWestIndies", "attributes": { "label": "French West Indies", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "France", "continent": "America", "pagerank": 0.0003205058940560104, "RIX": 0, "inHerfindahl": "0.7527029480917227", "outHerfindahl": "0.7553494753533241", "herfindahl": "0.7525352808955986", "weightedInDegree": "654703.5243555722", "weightedOutDegree": "56931.486720989706", "inDegree": 12, "outDegree": 12 } }, { "key": "PortugueseColonies", "attributes": { "label": "Portuguese Colonies", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Portugal", "continent": "World", "pagerank": 0.00029719872619055895, "RIX": 0, "inHerfindahl": "0.3682495978065459", "outHerfindahl": "0.26182254328041465", "herfindahl": "0.222135233505908", "weightedInDegree": "10965.74027463393", "weightedOutDegree": "40837.8600875199", "inDegree": 5, "outDegree": 9 } }, { "key": "Othercountries", "attributes": { "label": "Other countries", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "World", "pagerank": 0.00097743701636098, "RIX": 0, "inHerfindahl": "0.149299938605609", "outHerfindahl": "0.10249938192693148", "herfindahl": "0.12093262991398906", "weightedInDegree": "8316004.450984759", "weightedOutDegree": "8439404.205186037", "inDegree": 44, "outDegree": 58 } }, { "key": "Bahamas", "attributes": { "label": "Bahamas", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "America", "reporting": 1, "world_Exp": "274300", "world_Imp": "1551868", "pagerank": 0.00042729695138575926, "RIX": 0, "inHerfindahl": "0.25326021923459385", "outHerfindahl": "0.2744547391093466", "herfindahl": "0.34925044420004975", "weightedInDegree": "2052280.7688932316", "weightedOutDegree": "311667.32050701673", "inDegree": 43, "outDegree": 20, "worldTradePart": 0.00013474216178506804 } }, { "key": "CostaRica", "attributes": { "label": "Costa Rica", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Costa Rica", "continent": "America", "reporting": 1, "world_Exp": "3749486.819827976", "world_Imp": "2716844.0470801266", "pagerank": 0.000549602364383572, "RIX": 0, "inHerfindahl": "0.20190108251218064", "outHerfindahl": "0.21807319604292827", "herfindahl": "0.37098822942099335", "weightedInDegree": "4803575.453064158", "weightedOutDegree": "7623371.885889738", "inDegree": 47, "outDegree": 43, "worldTradePart": 0.00047711240139171806 } }, { "key": "Guatemala", "attributes": { "label": "Guatemala", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Guatemala", "continent": "America", "reporting": 1, "world_Exp": "5025537.297086261", "world_Imp": "4135639.882299683", "pagerank": 0.0006573898752472733, "RIX": 0, "inHerfindahl": "0.1988661726217217", "outHerfindahl": "0.1828153214018991", "herfindahl": "0.3534589516832208", "weightedInDegree": "7721157.506440223", "weightedOutDegree": "9838409.069028588", "inDegree": 40, "outDegree": 46, "worldTradePart": 0.000675949210393838 } }, { "key": "Honduras", "attributes": { "label": "Honduras", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Honduras", "continent": "America", "reporting": 1, "world_Exp": "2222282.7071072883", "world_Imp": "2509576.278859212", "pagerank": 0.0004732077898070485, "RIX": 0, "inHerfindahl": "0.3161500440637744", "outHerfindahl": "0.515020601812491", "herfindahl": "0.5512042539310367", "weightedInDegree": "4441168.008545424", "weightedOutDegree": "2135145.4431157582", "inDegree": 25, "outDegree": 16, "worldTradePart": 0.0003491359551975646 } }, { "key": "Nicaragua", "attributes": { "label": "Nicaragua", "type": "GPH_entity", "GPH_status": "Occupied by", "part_of": "United States of America", "continent": "America", "reporting": 1, "world_Exp": "2940250.3395201447", "world_Imp": "1993412.4038026256", "pagerank": 0.00046769167552862577, "RIX": 0, "inHerfindahl": "0.27854046310107966", "outHerfindahl": "0.21727198214658971", "herfindahl": "0.4694462671510283", "weightedInDegree": "3902099.399759479", "weightedOutDegree": "4650047.396248675", "inDegree": 38, "outDegree": 44, "worldTradePart": 0.00036402586375062937 } }, { "key": "ElSalvador", "attributes": { "label": "El Salvador", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "El Salvador", "continent": "America", "reporting": 1, "world_Exp": "5111522.954887124", "world_Imp": "2514234.9641773943", "pagerank": 0.0005126465148111603, "RIX": 0, "inHerfindahl": "0.2225044356177568", "outHerfindahl": "0.10105431045711577", "herfindahl": "0.2347917074262617", "weightedInDegree": "4700452.753328938", "weightedOutDegree": "6849309.965929856", "inDegree": 57, "outDegree": 36, "worldTradePart": 0.0005626596826055188 } }, { "key": "Panama", "attributes": { "label": "Panama", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Panama", "continent": "America", "reporting": 1, "world_Exp": "680851.0638297872", "world_Imp": "3116568.583069262", "pagerank": 0.0007617528404914752, "RIX": 0, "inHerfindahl": "0.34272033854996087", "outHerfindahl": "0.3420155757797896", "herfindahl": "0.5618266432505764", "weightedInDegree": "10804280.656323526", "weightedOutDegree": "2206671.8252864745", "inDegree": 38, "outDegree": 34, "worldTradePart": 0.00028018918983810235 } }, { "key": "Grenada", "attributes": { "label": "Grenada", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Windward Is.", "continent": "America", "reporting": 1, "world_Exp": "344879", "world_Imp": "269291", "pagerank": 0.00042707635548087095, "RIX": 0, "inHerfindahl": "0.1900028650712936", "outHerfindahl": "0.3925432270261638", "herfindahl": "0.2723980621606786", "weightedInDegree": "284276", "weightedOutDegree": "354454", "inDegree": 50, "outDegree": 16, "worldTradePart": 0.0000453159805141341 } }, { "key": "Anguilla", "attributes": { "label": "Anguilla", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "St. Kitts-Nevis", "continent": "America", "pagerank": 0.0002933147312475061, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.3433786120774598", "herfindahl": "0.34452196916361155", "weightedInDegree": "7", "weightedOutDegree": "892", "inDegree": 1, "outDegree": 3 } }, { "key": "AntiguaandBarbudaAntigua", "attributes": { "label": "Antigua and Barbuda (Antigua)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Leeward Is.", "continent": "America", "reporting": 1, "world_Exp": "164612", "world_Imp": "222253", "pagerank": 0.0004226929878127271, "RIX": 0, "inHerfindahl": "0.25700125279202646", "outHerfindahl": "0.5099369533493595", "herfindahl": "0.2940616574206984", "weightedInDegree": "222489", "weightedOutDegree": "166715", "inDegree": 28, "outDegree": 13, "worldTradePart": 0.000028544485731312973 } }, { "key": "Barbados", "attributes": { "label": "Barbados", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "America", "reporting": 1, "world_Exp": "1591341", "world_Imp": "2547297", "pagerank": 0.0017492636800688734, "RIX": 0, "inHerfindahl": "0.14513301747504437", "outHerfindahl": "0.3682165867762885", "herfindahl": "0.3656216839664888", "weightedInDegree": "3372310.0017562616", "weightedOutDegree": "3265384.704907908", "inDegree": 62, "outDegree": 34, "worldTradePart": 0.00030536567882354223 } }, { "key": "SriLankaCeylon", "attributes": { "label": "Sri Lanka (Ceylon)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Asia", "reporting": 1, "world_Exp": "27019365.21051472", "world_Imp": "21764280.32323303", "pagerank": 0.0035897653415916052, "RIX": 0, "inHerfindahl": "0.15191388714541845", "outHerfindahl": "0.14164843327556093", "herfindahl": "0.14799765122099756", "weightedInDegree": "34500307.289312966", "weightedOutDegree": "39843729.49084847", "inDegree": 75, "outDegree": 100, "worldTradePart": 0.003599457365901522 } }, { "key": "Dominica", "attributes": { "label": "Dominica", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Leeward Is.", "continent": "America", "reporting": 1, "world_Exp": "168058", "world_Imp": "143579", "pagerank": 0.0005359657848343193, "RIX": 0, "inHerfindahl": "0.22951717165652472", "outHerfindahl": "0.49768968263234614", "herfindahl": "0.32064704315164916", "weightedInDegree": "146221", "weightedOutDegree": "173122", "inDegree": 21, "outDegree": 15, "worldTradePart": 0.000022993855478911717 } }, { "key": "Jamaica", "attributes": { "label": "Jamaica", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "America", "reporting": 1, "world_Exp": "3096691", "world_Imp": "5085350", "pagerank": 0.0027228386653277013, "RIX": 0, "inHerfindahl": "0.17277498608932573", "outHerfindahl": "0.1768786042020259", "herfindahl": "0.314695053486456", "weightedInDegree": "7521447.409664408", "weightedOutDegree": "5482040.271116141", "inDegree": 107, "outDegree": 79, "worldTradePart": 0.0006037045289119401 } }, { "key": "Montserrat", "attributes": { "label": "Montserrat", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Leeward Is.", "continent": "America", "reporting": 1, "world_Exp": "57820", "world_Imp": "52195", "pagerank": 0.0003053320812215113, "RIX": 0, "inHerfindahl": "0.18959579791418554", "outHerfindahl": "0.6454221529117249", "herfindahl": "0.30238579780936037", "weightedInDegree": "55934", "weightedOutDegree": "61950", "inDegree": 14, "outDegree": 13, "worldTradePart": 0.00000811735772874361 } }, { "key": "StKitts", "attributes": { "label": "St. Kitts", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "St. Kitts-Nevis", "continent": "America", "pagerank": 0.0002954077942623679, "RIX": 0, "inHerfindahl": "0.9330955647005029", "outHerfindahl": "0.9770199528364324", "herfindahl": "0.9613439094129761", "weightedInDegree": "3645", "weightedOutDegree": "6809", "inDegree": 3, "outDegree": 4 } }, { "key": "StLucia", "attributes": { "label": "St. Lucia", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Windward Is.", "continent": "America", "reporting": 1, "world_Exp": "163381", "world_Imp": "234647", "pagerank": 0.0009200442274077622, "RIX": 0, "inHerfindahl": "0.2590788106994875", "outHerfindahl": "0.35613160319646797", "herfindahl": "0.25728214132452754", "weightedInDegree": "227812", "weightedOutDegree": "181838.95960218634", "inDegree": 54, "outDegree": 29, "worldTradePart": 0.000029368137636289248 } }, { "key": "StVincent", "attributes": { "label": "St. Vincent", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "St. Vincent and the Grenadines", "continent": "America", "reporting": 1, "world_Exp": "150862", "world_Imp": "160028", "pagerank": 0.0003936887758340097, "RIX": 0, "inHerfindahl": "0.20582533207840986", "outHerfindahl": "0.2922918245132479", "herfindahl": "0.23573001992838763", "weightedInDegree": "166315", "weightedOutDegree": "171062.00164385812", "inDegree": 47, "outDegree": 19, "worldTradePart": 0.000022938738756434132 } }, { "key": "Trinidad", "attributes": { "label": "Trinidad", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Trinidad and Tobago", "continent": "America", "pagerank": 0.00036130860191296003, "RIX": 0, "inHerfindahl": "0.7584854892135836", "outHerfindahl": "0.2637540046331053", "herfindahl": "0.35256051938439714", "weightedInDegree": "193789.53843343773", "weightedOutDegree": "177989.23901822092", "inDegree": 10, "outDegree": 14 } }, { "key": "Curacao", "attributes": { "label": "Curacao", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Netherlands Antilles", "continent": "America", "pagerank": 0.0007793905459872256, "RIX": 0, "inHerfindahl": "0.863942130984682", "outHerfindahl": "0.5385132154041666", "herfindahl": "0.8500887946551142", "weightedInDegree": "4583946.118327296", "weightedOutDegree": "158015.81267518573", "inDegree": 5, "outDegree": 5 } }, { "key": "MadeiraIsles", "attributes": { "label": "Madeira Isles", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Portugal", "continent": "Africa", "pagerank": 0.0003339819050763402, "RIX": 0, "inHerfindahl": "0.9532369612533743", "outHerfindahl": "0.7080034598719128", "herfindahl": "0.9001234887086608", "weightedInDegree": "593827", "weightedOutDegree": "145505.5830692621", "inDegree": 5, "outDegree": 13 } }, { "key": "IraqMesopotamia", "attributes": { "label": "Iraq (Mesopotamia)", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "United Kingdom", "continent": "Asia", "pagerank": 0.0006651209879872185, "RIX": 0, "inHerfindahl": "0.45923360174806066", "outHerfindahl": "0.5094635146388988", "herfindahl": "0.47223222598573367", "weightedInDegree": "6111449.012291126", "weightedOutDegree": "2828602.9857059647", "inDegree": 9, "outDegree": 19 } }, { "key": "Albania", "attributes": { "label": "Albania", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Albania", "continent": "Europe", "reporting": 1, "world_Exp": "490856.8596352102", "world_Imp": "812434.0999206979", "pagerank": 0.00038840274150707464, "RIX": 0, "inHerfindahl": "0.3241986915505535", "outHerfindahl": "0.21460007353234023", "herfindahl": "0.5047113317093835", "weightedInDegree": "1301511.2516770365", "weightedOutDegree": "987258.8647158648", "inDegree": 24, "outDegree": 17, "worldTradePart": 0.00009616215010092102 } }, { "key": "Oceaniaother", "attributes": { "label": "Oceania (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Oceania", "pagerank": 0.0002952767052076883, "RIX": 0, "inHerfindahl": "0.8583592607244469", "outHerfindahl": "0.7882348650820681", "herfindahl": "0.6044169086626784", "weightedInDegree": "54785.12765957978", "weightedOutDegree": "279860.3110004456", "inDegree": 4, "outDegree": 4 } }, { "key": "Africaother", "attributes": { "label": "Africa (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Africa", "pagerank": 0.0003548479905897415, "RIX": 0, "inHerfindahl": "0.5444773519394234", "outHerfindahl": "0.6007919708852598", "herfindahl": "0.41973173915952816", "weightedInDegree": "1085989.2997604213", "weightedOutDegree": "1672701.7352387353", "inDegree": 10, "outDegree": 12 } }, { "key": "Asiaother", "attributes": { "label": "Asia (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Asia", "pagerank": 0.00036741532948715116, "RIX": 0, "inHerfindahl": "0.3968565371492915", "outHerfindahl": "0.722377048544369", "herfindahl": "0.5577976429829271", "weightedInDegree": "1317911.4300221908", "weightedOutDegree": "2606722.963260358", "inDegree": 10, "outDegree": 10 } }, { "key": "CongoBrazzavilleFrenchCongoMiddleCongo_Senegal", "attributes": { "label": "Congo (Brazzaville) (French Congo) (Middle Congo) & Senegal", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.0006273366558044451, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "5858594.3866000725", "weightedOutDegree": "7283881.846989341", "inDegree": 1, "outDegree": 1 } }, { "key": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "label": "Djibouti (Afar and Issas) (French Somaliland)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "Africa", "reporting": 1, "world_Exp": "1997158.6733362835", "world_Imp": "3474550.251403232", "pagerank": 0.0010667894538275832, "RIX": 0, "inHerfindahl": "0.36465916869350967", "outHerfindahl": "0.27809540584884507", "herfindahl": "0.22663922899933384", "weightedInDegree": "3788207.829945551", "weightedOutDegree": "2242488.0872566225", "inDegree": 18, "outDegree": 20, "worldTradePart": 0.0004037251168447002 } }, { "key": "WesternAfrica", "attributes": { "label": "Western Africa", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Africa", "pagerank": 0.0003635928975828537, "RIX": 0, "inHerfindahl": "0.3438041677555762", "outHerfindahl": "0.39860595672814064", "herfindahl": "0.34392607404051745", "weightedInDegree": "941390.755999021", "weightedOutDegree": "1090187.0303310435", "inDegree": 4, "outDegree": 4 } }, { "key": "FrenchIndia", "attributes": { "label": "French India", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "Asia", "reporting": 1, "world_Exp": "519156.9088727755", "world_Imp": "443022.6458578392", "pagerank": 0.0004901889925705598, "RIX": 0, "inHerfindahl": "0.28557120990181584", "outHerfindahl": "0.5541396194782037", "herfindahl": "0.39648119782722246", "weightedInDegree": "670423.644052255", "weightedOutDegree": "3021198.368088005", "inDegree": 14, "outDegree": 18, "worldTradePart": 0.00007099355219771522 } }, { "key": "FrenchPolynesia", "attributes": { "label": "French Polynesia", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "Oceania", "reporting": 1, "world_Exp": "654282.5532141018", "world_Imp": "498462.94241736655", "pagerank": 0.0004298134787644331, "RIX": 0, "inHerfindahl": "0.2752144534604878", "outHerfindahl": "0.18103785605847078", "herfindahl": "0.31772939441505405", "weightedInDegree": "1529037.050545107", "weightedOutDegree": "1914750.2720560865", "inDegree": 14, "outDegree": 15, "worldTradePart": 0.0000850542885809979 } }, { "key": "Guadeloupe", "attributes": { "label": "Guadeloupe", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "America", "pagerank": 0.0003349041703554582, "RIX": 0, "inHerfindahl": "0.9375739532405656", "outHerfindahl": "0.9999088183776069", "herfindahl": "0.9825064854302754", "weightedInDegree": "715597.374377522", "weightedOutDegree": "1909546.0923494145", "inDegree": 3, "outDegree": 4 } }, { "key": "Haiti", "attributes": { "label": "Haiti", "type": "GPH_entity", "GPH_status": "Occupied by", "part_of": "United States of America", "continent": "America", "reporting": 1, "world_Exp": "3208764.599366229", "world_Imp": "3326421.0049796286", "pagerank": 0.0008578218645738041, "RIX": 0, "inHerfindahl": "0.29208669410194965", "outHerfindahl": "0.2436059188115608", "herfindahl": "0.341516587552909", "weightedInDegree": "6875041.245795834", "weightedOutDegree": "6091385.11545689", "inDegree": 50, "outDegree": 43, "worldTradePart": 0.00048219278620379797 } }, { "key": "ReunionBourbonI", "attributes": { "label": "Reunion (Bourbon I.)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "Africa", "reporting": 1, "world_Exp": "1758504.6107740463", "world_Imp": "1238941.2937301525", "pagerank": 0.0004998076858044601, "RIX": 0, "inHerfindahl": "0.3249863259664195", "outHerfindahl": "0.4407528405681064", "herfindahl": "0.5815964937931758", "weightedInDegree": "2421251.976844647", "weightedOutDegree": "3816029.825124366", "inDegree": 14, "outDegree": 11, "worldTradePart": 0.00022116384747005442 } }, { "key": "Ireland_UnitedKingdom", "attributes": { "label": "Ireland & United Kingdom", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.005624819813390903, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.576641801510195", "herfindahl": "0.7851801274123019", "weightedInDegree": "93504302.85196604", "weightedOutDegree": "76446368.06523888", "inDegree": 1, "outDegree": 4 } }, { "key": "FrenchIndochina", "attributes": { "label": "French Indochina", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "Asia", "reporting": 1, "world_Exp": "27665255.771841522", "world_Imp": "21414825.712991577", "pagerank": 0.0031662245290323726, "RIX": 0, "inHerfindahl": "0.14575803260717582", "outHerfindahl": "0.12682224323736752", "herfindahl": "0.23000203029100652", "weightedInDegree": "38705295.26115623", "weightedOutDegree": "51028089.01388951", "inDegree": 33, "outDegree": 41, "worldTradePart": 0.0036213296256717366 } }, { "key": "MadagascarMalagasyRepublic", "attributes": { "label": "Madagascar (Malagasy Republic)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "Africa", "pagerank": 0.00043752545092552367, "RIX": 0, "inHerfindahl": "0.8052982121517369", "outHerfindahl": "0.6417374466846285", "herfindahl": "0.6952981386719439", "weightedInDegree": "2503985.083359989", "weightedOutDegree": "4530022.050418093", "inDegree": 11, "outDegree": 16 } }, { "key": "Martinique", "attributes": { "label": "Martinique", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "America", "reporting": 1, "world_Exp": "1923452.678723339", "world_Imp": "1686201.5417609205", "pagerank": 0.0005672605562889899, "RIX": 0, "inHerfindahl": "0.2886448092188075", "outHerfindahl": "0.4986981836902744", "herfindahl": "0.5813103624073647", "weightedInDegree": "2537209.712426336", "weightedOutDegree": "4354641.733589712", "inDegree": 33, "outDegree": 15, "worldTradePart": 0.000266335086894877 } }, { "key": "BritishMediterranean", "attributes": { "label": "British Mediterranean", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Mediterranean", "pagerank": 0.0003274604039440055, "RIX": 0, "inHerfindahl": "0.34098018544087244", "outHerfindahl": "0.37907237797193205", "herfindahl": "0.3072788019358864", "weightedInDegree": "536682.3161430629", "weightedOutDegree": "207316.74603867152", "inDegree": 5, "outDegree": 4 } }, { "key": "BritishAfrica", "attributes": { "label": "British Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Africa", "pagerank": 0.0004398999096970276, "RIX": 0, "inHerfindahl": "0.83293136655108", "outHerfindahl": "0.9118863821978932", "herfindahl": "0.8875995785145432", "weightedInDegree": "2573403.3138067145", "weightedOutDegree": "6168477.7117999755", "inDegree": 6, "outDegree": 8 } }, { "key": "BritishAmerica", "attributes": { "label": "British America", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "America", "pagerank": 0.0005553872465332311, "RIX": 0, "inHerfindahl": "0.8683952033154491", "outHerfindahl": "0.5614871854494211", "herfindahl": "0.6550714206612098", "weightedInDegree": "4470162.295734072", "weightedOutDegree": "8014820.558652086", "inDegree": 4, "outDegree": 6 } }, { "key": "Saar", "attributes": { "label": "Saar", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "League of Nations", "continent": "Europe", "pagerank": 0.0014746339843076856, "RIX": 0, "inHerfindahl": "0.6936582382352728", "outHerfindahl": "0.6050893413346586", "herfindahl": "0.6498511838023848", "weightedInDegree": "20459059.30284825", "weightedOutDegree": "18345840.12407967", "inDegree": 3, "outDegree": 5 } }, { "key": "StPierreandMiquelon", "attributes": { "label": "St. Pierre and Miquelon", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "America", "reporting": 1, "world_Exp": "342881.4753734605", "world_Imp": "1764746.837143444", "pagerank": 0.00047161992226302956, "RIX": 0, "inHerfindahl": "0.18070296060580546", "outHerfindahl": "0.6975083105927967", "herfindahl": "0.3077664856439823", "weightedInDegree": "3082788.440691236", "weightedOutDegree": "1959708.1585585815", "inDegree": 14, "outDegree": 8, "worldTradePart": 0.00015550945754604325 } }, { "key": "CamerounFrenchCameroons_TogoFrenchTogoland", "attributes": { "label": "Cameroun (French Cameroons) & Togo (French Togoland)", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.00032548159920207, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "564669.5337256485", "weightedOutDegree": "633329.5608872578", "inDegree": 1, "outDegree": 1 } }, { "key": "Cyrenaica_TripolitaniaRegencyofTripoli", "attributes": { "label": "Cyrenaica & Tripolitania (Regency of Tripoli)", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.0002978976336786203, "RIX": 0, "inHerfindahl": "0.9955903547536131", "outHerfindahl": "0.7555993651053774", "herfindahl": "0.8842436642752238", "weightedInDegree": "80676.233589857", "weightedOutDegree": "59362.879130830144", "inDegree": 2, "outDegree": 2 } }, { "key": "Belgium_Luxemburg", "attributes": { "label": "Belgium & Luxemburg", "type": "group", "GPH_status": "group", "continent": "Europe", "reporting": 1, "world_Exp": "144363201.44857353", "world_Imp": "184417425.53185645", "pagerank": 0.01672927769995157, "RIX": 0, "inHerfindahl": "0.13581090182423364", "outHerfindahl": "0.09561289317504253", "herfindahl": "0.1818789476498394", "weightedInDegree": "284107918.0620979", "weightedOutDegree": "186568585.44522977", "inDegree": 108, "outDegree": 117, "worldTradePart": 0.024258782561294035 } }, { "key": "Paraguay_Uruguay", "attributes": { "label": "Paraguay & Uruguay", "type": "group", "GPH_status": "group", "continent": "America", "pagerank": 0.00038225322416189324, "RIX": 0, "inHerfindahl": "0.8132927716413476", "outHerfindahl": "0.9628990090181366", "herfindahl": "0.910501662640858", "weightedInDegree": "1528991.8515166426", "weightedOutDegree": "3131010.70620185", "inDegree": 2, "outDegree": 3 } }, { "key": "Oceania", "attributes": { "label": "Oceania", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Oceania", "pagerank": 0.000293419624272256, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "0.9900992549689362", "weightedInDegree": "2367.5871435037675", "weightedOutDegree": "11.837935717518837", "inDegree": 1, "outDegree": 1 } }, { "key": "WesternAnatolia", "attributes": { "label": "Western Anatolia", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Turkey (Ottoman Empire)", "continent": "Asia", "pagerank": 0.0003019195647032868, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9996772483466718", "herfindahl": "0.999909155480706", "weightedInDegree": "126551.38071538754", "weightedOutDegree": "49565.718424678125", "inDegree": 1, "outDegree": 2 } }, { "key": "Java", "attributes": { "label": "Java", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Indonesia (Dutch East Indies)", "continent": "Asia", "pagerank": 0.0009769376697279588, "RIX": 0, "inHerfindahl": "0.45114878749265763", "outHerfindahl": "0.26518404690077163", "herfindahl": "0.28298581707491666", "weightedInDegree": "11243867.449525539", "weightedOutDegree": "30177235.360022202", "inDegree": 5, "outDegree": 13 } }, { "key": "Liberia", "attributes": { "label": "Liberia", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Liberia", "continent": "Africa", "reporting": 1, "world_Exp": "1416896.41", "world_Imp": "1433184.69", "pagerank": 0.00040602169776609556, "RIX": 0, "inHerfindahl": "0.20955627058977805", "outHerfindahl": "0.24816188643429318", "herfindahl": "0.3244692533394535", "weightedInDegree": "1744284.1900299564", "weightedOutDegree": "1796781.395309828", "inDegree": 19, "outDegree": 20, "worldTradePart": 0.00021029066804191326 } }, { "key": "VirginIslandsDanishWestIndies", "attributes": { "label": "Virgin Islands (Danish West Indies)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United States of America", "continent": "America", "pagerank": 0.0004651012588324038, "RIX": 0, "inHerfindahl": "0.8421842250466626", "outHerfindahl": "0.6897946616579156", "herfindahl": "0.8078780985838423", "weightedInDegree": "406750.88802506897", "weightedOutDegree": "108245.84392111986", "inDegree": 9, "outDegree": 11 } }, { "key": "***NA", "attributes": { "label": "***NA", "pagerank": 0.00033388631521541994, "RIX": 0, "inHerfindahl": "0.1946362264663572", "outHerfindahl": "0.3412696579113748", "herfindahl": "0.2620661063067653", "weightedInDegree": "406258.800619315", "weightedOutDegree": "1791615.5923684423", "inDegree": 11, "outDegree": 9 } }, { "key": "Nevis", "attributes": { "label": "Nevis", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "St. Kitts-Nevis", "continent": "America", "pagerank": 0.00029329752852497566, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "3", "weightedOutDegree": "1000", "inDegree": 1, "outDegree": 1 } }, { "key": "Cayenne", "attributes": { "label": "Cayenne", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "French Guiana", "continent": "America", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "6", "inDegree": 0, "outDegree": 1 } }, { "key": "Gambia", "attributes": { "label": "Gambia", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "856682", "world_Imp": "669700", "pagerank": 0.00039480246556306963, "RIX": 0, "inHerfindahl": "0.1801639794925315", "outHerfindahl": "0.3022020699680473", "herfindahl": "0.4490478711852982", "weightedInDegree": "955881.8532157328", "weightedOutDegree": "1394377", "inDegree": 30, "outDegree": 16, "worldTradePart": 0.00011262272167172775 } }, { "key": "BelizeBritishHonduras", "attributes": { "label": "Belize (British Honduras)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "America", "reporting": 1, "world_Exp": "335808.36723790737", "world_Imp": "800205.6877491473", "pagerank": 0.00036726361000587036, "RIX": 0, "inHerfindahl": "0.1674281262385204", "outHerfindahl": "0.3018027014762368", "herfindahl": "0.40893672511832807", "weightedInDegree": "1565090.157295849", "weightedOutDegree": "1071601.004706041", "inDegree": 53, "outDegree": 23, "worldTradePart": 0.00008381977429632811 } }, { "key": "PanamaCanalZone", "attributes": { "label": "Panama Canal Zone", "type": "GPH_entity", "GPH_status": "Leased to", "part_of": "United States of America", "continent": "America", "pagerank": 0.0002934224046069539, "RIX": 0, "inHerfindahl": "0.7918716341169705", "outHerfindahl": "0.523763987572112", "herfindahl": "0.5489773368086477", "weightedInDegree": "1228.974649162517", "weightedOutDegree": "4270.847442281575", "inDegree": 2, "outDegree": 3 } }, { "key": "HawaiiSandwichIs", "attributes": { "label": "Hawaii (Sandwich Is.)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United States of America", "continent": "Oceania", "pagerank": 0.00037502973002017585, "RIX": 0, "inHerfindahl": "0.21724392945536508", "outHerfindahl": "0.4987695019068906", "herfindahl": "0.18172981125604243", "weightedInDegree": "1796211.4820070362", "weightedOutDegree": "306263.4171827515", "inDegree": 10, "outDegree": 10 } }, { "key": "BritishVirginIs", "attributes": { "label": "British Virgin Is.", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Leeward Is.", "continent": "America", "reporting": 1, "world_Exp": "13098", "world_Imp": "36963", "pagerank": 0.0003392628391238916, "RIX": 0, "inHerfindahl": "0.2614327583692543", "outHerfindahl": "0.38242774589171896", "herfindahl": "0.22866863848457436", "weightedInDegree": "36975", "weightedOutDegree": "21350.431297659863", "inDegree": 8, "outDegree": 8, "worldTradePart": 0.0000036937058151945994 } }, { "key": "Nigeria", "attributes": { "label": "Nigeria", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "14390934", "world_Imp": "10944982", "pagerank": 0.0014695716495407081, "RIX": 0, "inHerfindahl": "0.4563456861864821", "outHerfindahl": "0.40170028448841816", "herfindahl": "0.42042017902046147", "weightedInDegree": "11422407.301694611", "weightedOutDegree": "14578100", "inDegree": 28, "outDegree": 22, "worldTradePart": 0.0018693877521919638 } }, { "key": "SierraLeone", "attributes": { "label": "Sierra Leone", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "1510353", "world_Imp": "1635947", "pagerank": 0.0007766593866172606, "RIX": 0, "inHerfindahl": "0.32676709358684186", "outHerfindahl": "0.36206750341841354", "herfindahl": "0.6718818306726363", "weightedInDegree": "2406340.905553939", "weightedOutDegree": "3046454.148754225", "inDegree": 28, "outDegree": 20, "worldTradePart": 0.00023214691289320566 } }, { "key": "CanaryIs", "attributes": { "label": "Canary Is.", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Spain", "continent": "Africa", "pagerank": 0.000597634313606229, "RIX": 0, "inHerfindahl": "0.28480147282040175", "outHerfindahl": "0.7601933854967714", "herfindahl": "0.47717266671291475", "weightedInDegree": "4340150.3999604", "weightedOutDegree": "4409819.020162645", "inDegree": 17, "outDegree": 15 } }, { "key": "FrenchWestAfrica", "attributes": { "label": "French West Africa", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "Africa", "pagerank": 0.0003677343308802599, "RIX": 0, "inHerfindahl": "0.31933903250272955", "outHerfindahl": "0.367409020313186", "herfindahl": "0.3321568364199717", "weightedInDegree": "890539.7239275908", "weightedOutDegree": "1596749.8730993683", "inDegree": 7, "outDegree": 7 } }, { "key": "GhanaGoldCoast", "attributes": { "label": "Ghana (Gold Coast)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "8715113", "world_Imp": "7207433", "pagerank": 0.0013400034105114818, "RIX": 0, "inHerfindahl": "0.3759194105047786", "outHerfindahl": "0.16338282405811533", "herfindahl": "0.20922680632063334", "weightedInDegree": "7355981.635535358", "weightedOutDegree": "9444610.13691209", "inDegree": 73, "outDegree": 27, "worldTradePart": 0.0011748307215777454 } }, { "key": "CapeVerde", "attributes": { "label": "Cape Verde", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Portugal", "continent": "Africa", "pagerank": 0.00030514628756805065, "RIX": 0, "inHerfindahl": "0.4312780548202144", "outHerfindahl": "0.6655911236986811", "herfindahl": "0.4493560073901945", "weightedInDegree": "97187.82173801056", "weightedOutDegree": "32747.621337747743", "inDegree": 3, "outDegree": 4 } }, { "key": "FrenchColonies", "attributes": { "label": "French Colonies", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "France", "continent": "World", "pagerank": 0.00045771175319970695, "RIX": 0, "inHerfindahl": "0.28700073539687354", "outHerfindahl": "0.561152463573196", "herfindahl": "0.4042746739433948", "weightedInDegree": "2164666.757356247", "weightedOutDegree": "2948971.099253028", "inDegree": 24, "outDegree": 8 } }, { "key": "Siberia", "attributes": { "label": "Siberia", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Russia (USSR)", "continent": "Asia", "pagerank": 0.0002939014941740425, "RIX": 0, "inHerfindahl": "0.7686103670717963", "outHerfindahl": "0.9996509627373714", "herfindahl": "0.9844514228685272", "weightedInDegree": "10218.00660579507", "weightedOutDegree": "1145877.4558606178", "inDegree": 3, "outDegree": 5 } }, { "key": "ZambiaNorthernRhodesia", "attributes": { "label": "Zambia (Northern Rhodesia)", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "406558", "world_Imp": "662642", "pagerank": 0.00034335115788013327, "RIX": 0, "inHerfindahl": "0.25232318346214105", "outHerfindahl": "0.1678829509959815", "herfindahl": "0.20122226951827468", "weightedInDegree": "745928", "weightedOutDegree": "517221", "inDegree": 53, "outDegree": 13, "worldTradePart": 0.0000788899594016513 } }, { "key": "NortheasternRhodesia", "attributes": { "label": "Northeastern Rhodesia", "type": "GPH_entity", "GPH_status": "GPH_entity", "continent": "Africa", "pagerank": 0.00029444514973029636, "RIX": 0, "inHerfindahl": "0.7396003146851609", "outHerfindahl": "0", "herfindahl": "0.7396003146851609", "weightedInDegree": "2385", "weightedOutDegree": "0", "inDegree": 2, "outDegree": 0 } }, { "key": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "label": "Zimbabwe (Rhodesia) (Southern Rhodesia)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "5120058", "world_Imp": "3902324", "pagerank": 0.0006383426693286812, "RIX": 0, "inHerfindahl": "0.2151714513420605", "outHerfindahl": "0.2932984032393458", "herfindahl": "0.2960190153753435", "weightedInDegree": "5475097.3567225095", "weightedOutDegree": "6422208.827976319", "inDegree": 64, "outDegree": 21, "worldTradePart": 0.000665708333039833 } }, { "key": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "label": "Malawi (Nyasaland) (British Central Africa Protectorate)", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "564007", "world_Imp": "548156", "pagerank": 0.00035325230929340374, "RIX": 0, "inHerfindahl": "0.26958557691891055", "outHerfindahl": "0.5093679112137893", "herfindahl": "0.7826819294299252", "weightedInDegree": "712805.9904934361", "weightedOutDegree": "1381559.719782707", "inDegree": 26, "outDegree": 21, "worldTradePart": 0.0000820599456771593 } }, { "key": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "label": "Democratic Republic of the Congo (Zaire) (Kinshasa) (Belgian Congo) (Congo Free State)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Belgium", "continent": "Africa", "reporting": 1, "world_Exp": "4966545.950202138", "world_Imp": "5098162.278857596", "pagerank": 0.0016536823492982811, "RIX": 0, "inHerfindahl": "0.20734238160762256", "outHerfindahl": "0.1951580521138134", "herfindahl": "0.17926348951846005", "weightedInDegree": "7901816.688826637", "weightedOutDegree": "7721473.596852142", "inDegree": 61, "outDegree": 38, "worldTradePart": 0.0007426154354470522 } }, { "key": "Ireland", "attributes": { "label": "Ireland", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Ireland", "continent": "Europe", "reporting": 1, "world_Exp": "50280743", "world_Imp": "68890391", "pagerank": 0.008338097522955045, "RIX": 0, "inHerfindahl": "0.36623102841960514", "outHerfindahl": "0.4839568243545845", "herfindahl": "0.8312934221775763", "weightedInDegree": "121311865.96346712", "weightedOutDegree": "102076201.17616756", "inDegree": 37, "outDegree": 53, "worldTradePart": 0.00879293483268682 } }, { "key": "HongKong", "attributes": { "label": "Hong Kong", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Asia", "reporting": 1, "world_Exp": "70671992", "world_Imp": "75056085", "pagerank": 0.011749251764071334, "RIX": 0, "inHerfindahl": "0.07862375098279231", "outHerfindahl": "0.19608519511935465", "herfindahl": "0.2164286040881866", "weightedInDegree": "157414204.41524053", "weightedOutDegree": "143858147.88503605", "inDegree": 65, "outDegree": 75, "worldTradePart": 0.01075241496278593 } }, { "key": "KenyaBritishEastAfricaProtectorate", "attributes": { "label": "Kenya (British East Africa Protectorate)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Africa", "pagerank": 0.0005577393343109686, "RIX": 0, "inHerfindahl": "0.5917092661621217", "outHerfindahl": "0.463754304117922", "herfindahl": "0.48625470772051427", "weightedInDegree": "3563062.9363975353", "weightedOutDegree": "5953723.632040272", "inDegree": 6, "outDegree": 11 } }, { "key": "CochinChina", "attributes": { "label": "Cochin China", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French Indochina", "continent": "Asia", "pagerank": 0.0002933403500423522, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9396705872191843", "herfindahl": "0.9185437025755844", "weightedInDegree": "727.700316885798", "weightedOutDegree": "61496.20099592646", "inDegree": 1, "outDegree": 4 } }, { "key": "Japan_RepublicofChinaTaiwanFormosa", "attributes": { "label": "Japan & Republic of China (Taiwan) (Formosa)", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.0032915885017925856, "RIX": 0, "inHerfindahl": "0.9951682431282143", "outHerfindahl": "0.9655491991773968", "herfindahl": "0.9790029798905924", "weightedInDegree": "36919272.52226921", "weightedOutDegree": "43744393.96556023", "inDegree": 2, "outDegree": 4 } }, { "key": "EthiopiaAbyssinia", "attributes": { "label": "Ethiopia (Abyssinia)", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Ethiopia (Abyssinia)", "continent": "Africa", "pagerank": 0.00036922726766420706, "RIX": 0, "inHerfindahl": "0.5008462044968301", "outHerfindahl": "0.6735869733591334", "herfindahl": "0.4367511853230224", "weightedInDegree": "742630.2442576597", "weightedOutDegree": "2667404.4606432933", "inDegree": 10, "outDegree": 15 } }, { "key": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "label": "Kenya (British East Africa Protectorate) & Uganda", "type": "group", "GPH_status": "group", "continent": "Africa", "reporting": 1, "world_Exp": "6132127", "world_Imp": "7243909", "pagerank": 0.0013025480505174185, "RIX": 0, "inHerfindahl": "0.2228322179365857", "outHerfindahl": "0.2627544392944629", "herfindahl": "0.23737695583258336", "weightedInDegree": "8049461", "weightedOutDegree": "7012009", "inDegree": 20, "outDegree": 17, "worldTradePart": 0.0009869387738449553 } }, { "key": "Zanzibar", "attributes": { "label": "Zanzibar", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "2193661.7001367593", "world_Imp": "2133697.329590441", "pagerank": 0.001320692184614621, "RIX": 0, "inHerfindahl": "0.15162998430022762", "outHerfindahl": "0.1182353533677379", "herfindahl": "0.1531535968199244", "weightedInDegree": "2472679.322347365", "weightedOutDegree": "2623722.4995148084", "inDegree": 37, "outDegree": 36, "worldTradePart": 0.00031929029009684624 } }, { "key": "Africaother_Asiaother", "attributes": { "label": "Africa (other) & Asia (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "World", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "246590", "inDegree": 0, "outDegree": 1 } }, { "key": "TanzaniaTanganyika", "attributes": { "label": "Tanzania (Tanganyika)", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "2611303", "world_Imp": "2365940", "pagerank": 0.0010120735150967424, "RIX": 0, "inHerfindahl": "0.11938297587394994", "outHerfindahl": "0.12378738004593437", "herfindahl": "0.19646576537271446", "weightedInDegree": "3780808.514121226", "weightedOutDegree": "4622133.50901825", "inDegree": 27, "outDegree": 23, "worldTradePart": 0.00036724139375435196 } }, { "key": "ItalianEastAfrica", "attributes": { "label": "Italian East Africa", "type": "GPH_entity", "GPH_status": "GPH_entity", "continent": "Africa", "pagerank": 0.0003008685728682385, "RIX": 0, "inHerfindahl": "0.35239037959628833", "outHerfindahl": "0.3925895967795934", "herfindahl": "0.2761785541095621", "weightedInDegree": "84544.00633768812", "weightedOutDegree": "57000.53870530008", "inDegree": 5, "outDegree": 4 } }, { "key": "MalaysiaBritishMalaya", "attributes": { "label": "Malaysia (British Malaya)", "type": "GPH_entity", "GPH_status": "Informal", "part_of": "Malaysia (British Malaya)", "continent": "Asia", "reporting": 1, "world_Exp": "84307091", "world_Imp": "76871248", "pagerank": 0.0051464416649560024, "RIX": 0, "inHerfindahl": "0.07677351727188877", "outHerfindahl": "0.19745174733598542", "herfindahl": "0.09222676355183174", "weightedInDegree": "88334529.95201454", "weightedOutDegree": "85065178.76097831", "inDegree": 34, "outDegree": 37, "worldTradePart": 0.011892398634619893 } }, { "key": "Brunei", "attributes": { "label": "Brunei", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Asia", "world_Exp": "100556.360344053", "world_Imp": "93589.40697148582", "pagerank": 0.0003001940375839334, "RIX": 0, "inHerfindahl": "0.49166400551525014", "outHerfindahl": "0.3940103237240564", "herfindahl": "0.4235321606745817", "weightedInDegree": "158476", "weightedOutDegree": "279390.7417383453", "inDegree": 3, "outDegree": 3, "worldTradePart": 0.000014324870652380563 } }, { "key": "SabahNorthBorneo", "attributes": { "label": "Sabah (North Borneo)", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Asia", "world_Exp": "1251000", "world_Imp": "828000", "pagerank": 0.0003473922267590908, "RIX": 0, "inHerfindahl": "0.36250739485075517", "outHerfindahl": "0.20804384579938354", "herfindahl": "0.24206845930021922", "weightedInDegree": "1134196", "weightedOutDegree": "1824542.053870552", "inDegree": 5, "outDegree": 6, "worldTradePart": 0.00015339714328098863 } }, { "key": "Sarawak", "attributes": { "label": "Sarawak", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Asia", "world_Exp": "4295000", "world_Imp": "1942000", "pagerank": 0.00037050754771757974, "RIX": 0, "inHerfindahl": "0.45872759696465676", "outHerfindahl": "0.33226927403863366", "herfindahl": "0.33292153994086926", "weightedInDegree": "1736686", "weightedOutDegree": "7867408.5672251405", "inDegree": 3, "outDegree": 4, "worldTradePart": 0.00046019142984296595 } }, { "key": "Sumatra", "attributes": { "label": "Sumatra", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Indonesia (Dutch East Indies)", "continent": "Asia", "pagerank": 0.0005701642160312081, "RIX": 0, "inHerfindahl": "0.709903933629192", "outHerfindahl": "0.4670936219061149", "herfindahl": "0.4687853838434653", "weightedInDegree": "5536146.888185131", "weightedOutDegree": "21672817.81176215", "inDegree": 4, "outDegree": 8 } }, { "key": "DutchBorneo", "attributes": { "label": "Dutch Borneo", "type": "colonial_area", "GPH_status": "colonial_area", "continent": "Asia", "pagerank": 0.0003926941988358967, "RIX": 0, "inHerfindahl": "0.6212661963442758", "outHerfindahl": "0.4523128415419235", "herfindahl": "0.47647971360405406", "weightedInDegree": "1879338.1253961918", "weightedOutDegree": "8723700.946582727", "inDegree": 3, "outDegree": 5 } }, { "key": "MalukuMollucas_SulawesiCelebes", "attributes": { "label": "Maluku (Mollucas) & Sulawesi (Celebes)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Indonesia (Dutch East Indies)", "continent": "Asia", "pagerank": 0.00031834974255761316, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.5000028974774111", "herfindahl": "0.6150589799406454", "weightedInDegree": "487433", "weightedOutDegree": "531340.918288834", "inDegree": 1, "outDegree": 2 } }, { "key": "Bali_Lombok", "attributes": { "label": "Bali & Lombok", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.0002950063095683255, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.5000027995738654", "herfindahl": "0.5011849673141564", "weightedInDegree": "33481", "weightedOutDegree": "687694.7410593231", "inDegree": 1, "outDegree": 2 } }, { "key": "Bangka_BelitungBilliton", "attributes": { "label": "Bangka & Belitung (Billiton)", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.0003279811609795181, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.5000027991249932", "herfindahl": "0.5026202155190573", "weightedInDegree": "674732", "weightedOutDegree": "8938089.92394775", "inDegree": 1, "outDegree": 2 } }, { "key": "IndonesiaDutchEastIndiesother", "attributes": { "label": "Indonesia (Dutch East Indies) (other)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Indonesia (Dutch East Indies)", "continent": "Asia", "pagerank": 0.00033816920729506044, "RIX": 0, "inHerfindahl": "0.8105354302160994", "outHerfindahl": "0.7560185596388004", "herfindahl": "0.7656981228753756", "weightedInDegree": "1252097.478044364", "weightedOutDegree": "5122431.172702601", "inDegree": 3, "outDegree": 3 } }, { "key": "Philippines_SuluSultanate", "attributes": { "label": "Philippines & Sulu Sultanate", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.0003167076839078553, "RIX": 0, "inHerfindahl": "0.5000000003859411", "outHerfindahl": "0.5005068678765979", "herfindahl": "0.399267073451838", "weightedInDegree": "539903", "weightedOutDegree": "226451.94726121062", "inDegree": 2, "outDegree": 2 } }, { "key": "Senegal", "attributes": { "label": "Senegal", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French West Africa", "continent": "Africa", "reporting": 1, "world_Exp": "4570603.683476531", "world_Imp": "5657011.127523574", "pagerank": 0.0010969027993213904, "RIX": 0, "inHerfindahl": "0.28645189200336907", "outHerfindahl": "0.6424865101509447", "herfindahl": "0.2186601869866542", "weightedInDegree": "5703755.017971738", "weightedOutDegree": "4173013.4172022115", "inDegree": 22, "outDegree": 17, "worldTradePart": 0.0007546353509310941 } }, { "key": "AfricaCoastWestother", "attributes": { "label": "Africa Coast (West) (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Africa", "pagerank": 0.0002953030927300149, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "21852.829334539776", "weightedOutDegree": "2521.4803078315126", "inDegree": 1, "outDegree": 1 } }, { "key": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "label": "Madagascar (Malagasy Republic) & Madagascar (Malagasy Republic) Dependencies", "type": "group", "GPH_status": "group", "continent": "Africa", "reporting": 1, "world_Exp": "4323323.11591203", "world_Imp": "3066424.9166816524", "pagerank": 0.0008381100276999146, "RIX": 0, "inHerfindahl": "0.6026411597065333", "outHerfindahl": "0.6451885997807515", "herfindahl": "0.3266324388637465", "weightedInDegree": "3090016.679583418", "weightedOutDegree": "4333148.602557572", "inDegree": 25, "outDegree": 19, "worldTradePart": 0.0005452459056114367 } }, { "key": "FrenchOceaniaother", "attributes": { "label": "French Oceania (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "France", "continent": "Oceania", "pagerank": 0.00029352846070467427, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "2639.8596650067007", "weightedOutDegree": "35.51380715255652", "inDegree": 1, "outDegree": 1 } }, { "key": "Fiume", "attributes": { "label": "Fiume", "type": "GPH_entity", "GPH_status": "Sovereign (unrecognized)", "part_of": "Fiume", "continent": "Europe", "pagerank": 0.0003039949210077639, "RIX": 0, "inHerfindahl": "0.7085393095627665", "outHerfindahl": "0.855459542314133", "herfindahl": "0.7217843700179112", "weightedInDegree": "253571.50158452173", "weightedOutDegree": "35500.21502943966", "inDegree": 3, "outDegree": 3 } }, { "key": "TripolitaniaRegencyofTripoli", "attributes": { "label": "Tripolitania (Regency of Tripoli)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Italy", "continent": "Africa", "world_Exp": "249324.61638838603", "world_Imp": "1950192.946317434", "pagerank": 0.0003216527889340305, "RIX": 0, "inHerfindahl": "0.2170605161944289", "outHerfindahl": "0.45973013927085415", "herfindahl": "0.2663418748659753", "weightedInDegree": "365237.1167014349", "weightedOutDegree": "338263.00095861644", "inDegree": 12, "outDegree": 10, "worldTradePart": 0.00016228942314354766 } }, { "key": "TogoFrenchTogoland", "attributes": { "label": "Togo (French Togoland)", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "France", "continent": "Africa", "pagerank": 0.000307262112591738, "RIX": 0, "inHerfindahl": "0.9749765215123234", "outHerfindahl": "0.9873916897613992", "herfindahl": "0.9779436571641906", "weightedInDegree": "116309.02761430512", "weightedOutDegree": "36948.055228610225", "inDegree": 3, "outDegree": 3 } }, { "key": "BritishWestAfrica", "attributes": { "label": "British West Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Africa", "pagerank": 0.0004787134022500413, "RIX": 0, "inHerfindahl": "0.364107795774652", "outHerfindahl": "0.35438335054876546", "herfindahl": "0.3367593775104724", "weightedInDegree": "3673036.4797407854", "weightedOutDegree": "10164292.744416568", "inDegree": 10, "outDegree": 11 } }, { "key": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "label": "Congo (Brazzaville) (French Congo) (Middle Congo)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French Equatorial Africa", "continent": "Africa", "reporting": 1, "world_Exp": "173430.89592575238", "world_Imp": "211535.41163421646", "pagerank": 0.0008916449978492227, "RIX": 0, "inHerfindahl": "0.27538448555050804", "outHerfindahl": "0.3018349253736012", "herfindahl": "0.22132814428513048", "weightedInDegree": "223867.26722496268", "weightedOutDegree": "183056.7911271827", "inDegree": 13, "outDegree": 11, "worldTradePart": 0.000028404392419013796 } }, { "key": "NewCaledoniaandDependencies", "attributes": { "label": "New Caledonia and Dependencies", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "Oceania", "reporting": 1, "world_Exp": "415584.96256223123", "world_Imp": "331797.7463784405", "pagerank": 0.0007052975176642151, "RIX": 0, "inHerfindahl": "0.22966149999535604", "outHerfindahl": "0.31752988668153237", "herfindahl": "0.16131204678374822", "weightedInDegree": "1151002.56530101", "weightedOutDegree": "508422.96256223123", "inDegree": 13, "outDegree": 9, "worldTradePart": 0.00005514496031222013 } }, { "key": "Sahara", "attributes": { "label": "Sahara", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Africa", "pagerank": 0.00029330977530413936, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "272.2725215029333", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "SpanishMorocco", "attributes": { "label": "Spanish Morocco", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "Spain", "continent": "Africa", "pagerank": 0.0003666580089390157, "RIX": 0, "inHerfindahl": "0.7513190411295307", "outHerfindahl": "1", "herfindahl": "0.7837400186423762", "weightedInDegree": "851103.8026252232", "weightedOutDegree": "152989.13535528132", "inDegree": 2, "outDegree": 1 } }, { "key": "CamerounFrenchCameroons", "attributes": { "label": "Cameroun (French Cameroons)", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "France", "continent": "Africa", "pagerank": 0.0002934891477933883, "RIX": 0, "inHerfindahl": "0.6107235153116104", "outHerfindahl": "0.8381051878014754", "herfindahl": "0.6728153218698503", "weightedInDegree": "2329.2209144409044", "weightedOutDegree": "1362", "inDegree": 3, "outDegree": 2 } }, { "key": "CanaryIs_Spain", "attributes": { "label": "Canary Is. & Spain", "type": "group", "GPH_status": "group", "continent": "World", "pagerank": 0.00037395615662548287, "RIX": 0, "inHerfindahl": "0.7226338040182825", "outHerfindahl": "0.5605678792057409", "herfindahl": "0.6167276065131269", "weightedInDegree": "908425.9619745397", "weightedOutDegree": "1237743.7754645227", "inDegree": 2, "outDegree": 2 } }, { "key": "DanzigFreeCityofDanzig_Poland", "attributes": { "label": "Danzig (Free City of Danzig) & Poland", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.0006792855671994974, "RIX": 0, "inHerfindahl": "0.3600383477466212", "outHerfindahl": "0.7714509818515192", "herfindahl": "0.570315695774793", "weightedInDegree": "6411967.847964725", "weightedOutDegree": "9506786.155850926", "inDegree": 6, "outDegree": 9 } }, { "key": "SvalbardIs", "attributes": { "label": "Svalbard Is.", "type": "GPH_entity", "GPH_status": "Discovered", "part_of": "Svalbard Is.", "continent": "Arctic", "pagerank": 0.0003019388936120003, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "94881.65685843579", "weightedOutDegree": "282703.03304701135", "inDegree": 1, "outDegree": 1 } }, { "key": "MadeiraIsles_Portugal", "attributes": { "label": "Madeira Isles & Portugal", "type": "group", "GPH_status": "group", "continent": "World", "pagerank": 0.00035437878783335614, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "669810.0679049386", "weightedOutDegree": "337185.15165278927", "inDegree": 1, "outDegree": 1 } }, { "key": "FaeroeIs", "attributes": { "label": "Faeroe Is.", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Denmark", "continent": "Europe", "pagerank": 0.000307981926436415, "RIX": 0, "inHerfindahl": "0.6017269697577584", "outHerfindahl": "0.8643859092968823", "herfindahl": "0.7173777358278839", "weightedInDegree": "178267.89644912933", "weightedOutDegree": "166321.86704448843", "inDegree": 4, "outDegree": 3 } }, { "key": "Gibraltar_Malta", "attributes": { "label": "Gibraltar & Malta", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.0004496492975327412, "RIX": 0, "inHerfindahl": "0.9954941353450972", "outHerfindahl": "1", "herfindahl": "0.9952495667323962", "weightedInDegree": "2830542.6527840737", "weightedOutDegree": "348.5740153920533", "inDegree": 2, "outDegree": 1 } }, { "key": "NorthernAfricaother", "attributes": { "label": "Northern Africa (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Africa", "pagerank": 0.00029468192259330674, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "15319.352648277934", "weightedOutDegree": "49244.001810840986", "inDegree": 1, "outDegree": 1 } }, { "key": "EasternAfrica", "attributes": { "label": "Eastern Africa", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Africa", "pagerank": 0.00029887297995744076, "RIX": 0, "inHerfindahl": "0.6799270588818664", "outHerfindahl": "0.5541397509905178", "herfindahl": "0.5937760594397533", "weightedInDegree": "76731.72476242066", "weightedOutDegree": "123052.96514273966", "inDegree": 2, "outDegree": 2 } }, { "key": "Australiaother", "attributes": { "label": "Australia (other)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Australia", "continent": "Oceania", "pagerank": 0.0004013640982996328, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "1184936.7722967654", "weightedOutDegree": "88300.13580817786", "inDegree": 1, "outDegree": 1 } }, { "key": "CanadaProvinceofCanada_NewfoundlandandLabradorNewfoundland", "attributes": { "label": "Canada (Province of Canada) & Newfoundland and Labrador (Newfoundland)", "type": "group", "GPH_status": "group", "continent": "America", "pagerank": 0.0003084662883907614, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "166445.20144884533", "weightedOutDegree": "978414.6220022341", "inDegree": 1, "outDegree": 1 } }, { "key": "SouthernAmericaother", "attributes": { "label": "Southern America (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "America", "pagerank": 0.00032988428807814415, "RIX": 0, "inHerfindahl": "0.5716899711894002", "outHerfindahl": "0.29796871538305886", "herfindahl": "0.4160011559702389", "weightedInDegree": "578483.8337586015", "weightedOutDegree": "152632.50506959666", "inDegree": 4, "outDegree": 4 } }, { "key": "PacificIslands", "attributes": { "label": "Pacific Islands", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Pacific", "pagerank": 0.00029383019390363997, "RIX": 0, "inHerfindahl": "0.9836254668774371", "outHerfindahl": "0.5106364492713599", "herfindahl": "0.44471307715127717", "weightedInDegree": "9157.599818922474", "weightedOutDegree": "101436.44182892388", "inDegree": 2, "outDegree": 3 } }, { "key": "Georgia", "attributes": { "label": "Georgia", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Russia (USSR)", "continent": "Europe", "pagerank": 0.00029355642067536595, "RIX": 0, "inHerfindahl": "0.9971955305189144", "outHerfindahl": "1", "herfindahl": "0.9629474459143846", "weightedInDegree": "4693.90903266659", "weightedOutDegree": "243893.61973754817", "inDegree": 2, "outDegree": 1 } }, { "key": "NorthernAmericaother", "attributes": { "label": "Northern America (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "America", "pagerank": 0.0003092901461665356, "RIX": 0, "inHerfindahl": "0.9466768702204625", "outHerfindahl": "0.5037327236123063", "herfindahl": "0.6236567963842757", "weightedInDegree": "281102.04093758174", "weightedOutDegree": "302284.45858941047", "inDegree": 3, "outDegree": 2 } }, { "key": "BritishColumbia", "attributes": { "label": "British Columbia", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Canada (Province of Canada)", "continent": "America", "pagerank": 0.00033403474536378624, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9630189192301342", "herfindahl": "0.9499363845353712", "weightedInDegree": "32213", "weightedOutDegree": "849", "inDegree": 1, "outDegree": 2 } }, { "key": "Tasmania", "attributes": { "label": "Tasmania", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Australia", "continent": "Oceania", "pagerank": 0.00029330174528164097, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9137265503097239", "herfindahl": "0.9156252826767012", "weightedInDegree": "392.35355364436055", "weightedOutDegree": "16695.75961974496", "inDegree": 1, "outDegree": 4 } }, { "key": "Gibraltar", "attributes": { "label": "Gibraltar", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Europe", "pagerank": 0.0004162670297205105, "RIX": 0, "inHerfindahl": "0.5186241046174935", "outHerfindahl": "0.34928750743320686", "herfindahl": "0.5027288423451881", "weightedInDegree": "1877816.242327646", "weightedOutDegree": "78204.45757622585", "inDegree": 20, "outDegree": 16 } }, { "key": "IzmirSmyrna", "attributes": { "label": "Izmir (Smyrna)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Turkey (Ottoman Empire)", "continent": "Asia", "pagerank": 0.000300381742887307, "RIX": 0, "inHerfindahl": "0.9993216356716277", "outHerfindahl": "0.4341499976215618", "herfindahl": "0.9987198387730517", "weightedInDegree": "159152.46627440432", "weightedOutDegree": "111.34087822547005", "inDegree": 2, "outDegree": 4 } }, { "key": "GuineaFrenchGuineaRivieresduSud", "attributes": { "label": "Guinea (French Guinea) (Rivieres du Sud)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French West Africa", "continent": "Africa", "reporting": 1, "world_Exp": "446620.3010638146", "world_Imp": "814483.5260751195", "pagerank": 0.00038517488203692604, "RIX": 0, "inHerfindahl": "0.3336233540217857", "outHerfindahl": "0.3774715146841155", "herfindahl": "0.2567611218391448", "weightedInDegree": "814507.2374603616", "weightedOutDegree": "447024.13243547594", "inDegree": 17, "outDegree": 12, "worldTradePart": 0.00009304941051651477 } }, { "key": "IvoryCoast", "attributes": { "label": "Ivory Coast", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French West Africa", "continent": "Africa", "reporting": 1, "world_Exp": "1323109.4546853332", "world_Imp": "914172.1559528889", "pagerank": 0.0003432485440502066, "RIX": 0, "inHerfindahl": "0.27142405607344866", "outHerfindahl": "0.34088153978716534", "herfindahl": "0.19493689715418552", "weightedInDegree": "924293.1559528888", "weightedOutDegree": "1346628.1823901772", "inDegree": 13, "outDegree": 11, "worldTradePart": 0.00016507580942135277 } }, { "key": "BeninDahomey", "attributes": { "label": "Benin (Dahomey)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French West Africa", "continent": "Africa", "reporting": 1, "world_Exp": "1183793.5717518837", "world_Imp": "982548.6645540636", "pagerank": 0.00038068329785135555, "RIX": 0, "inHerfindahl": "0.23413568454227357", "outHerfindahl": "0.30636054127457363", "herfindahl": "0.20628482415977323", "weightedInDegree": "985612.480534145", "weightedOutDegree": "1239316.9726119996", "inDegree": 27, "outDegree": 13, "worldTradePart": 0.0001598416115528046 } }, { "key": "FernandoPoBioko_RíoMuni", "attributes": { "label": "Fernando Po (Bioko) & Río Muni", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "12", "inDegree": 0, "outDegree": 1 } }, { "key": "FrenchAfrica", "attributes": { "label": "French Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "France", "continent": "Africa", "pagerank": 0.0003024114456835854, "RIX": 0, "inHerfindahl": "0.46670552076781413", "outHerfindahl": "0.301831461171738", "herfindahl": "0.2201874618719523", "weightedInDegree": "192709.34888550374", "weightedOutDegree": "201535.1635389946", "inDegree": 8, "outDegree": 8 } }, { "key": "ItalianAfrica", "attributes": { "label": "Italian Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Italy", "continent": "Africa", "pagerank": 0.000293737767734475, "RIX": 0, "inHerfindahl": "0.5820461557768334", "outHerfindahl": "0.4783131989294449", "herfindahl": "0.318481138349802", "weightedInDegree": "9620.564886852793", "weightedOutDegree": "19079.153225105903", "inDegree": 3, "outDegree": 5 } }, { "key": "PortugueseAfrica", "attributes": { "label": "Portuguese Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Portugal", "continent": "Africa", "pagerank": 0.00029646511186863213, "RIX": 0, "inHerfindahl": "0.8834650347037604", "outHerfindahl": "0.599086474395052", "herfindahl": "0.6504169299856015", "weightedInDegree": "77055.60063620059", "weightedOutDegree": "14014.511072328816", "inDegree": 3, "outDegree": 4 } }, { "key": "BritishAsia", "attributes": { "label": "British Asia", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Asia", "pagerank": 0.00035521632062534273, "RIX": 0, "inHerfindahl": "0.8816460188725183", "outHerfindahl": "0.9920645865213592", "herfindahl": "0.6549739490174211", "weightedInDegree": "1315542.9302884971", "weightedOutDegree": "4365901.619735075", "inDegree": 3, "outDegree": 3 } }, { "key": "FrenchAsia", "attributes": { "label": "French Asia", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "France", "continent": "Asia", "pagerank": 0.00029667112083726465, "RIX": 0, "inHerfindahl": "0.9573492723078754", "outHerfindahl": "0.7313826629811087", "herfindahl": "0.7215290631038186", "weightedInDegree": "74567.67768240637", "weightedOutDegree": "13908.722046171031", "inDegree": 2, "outDegree": 3 } }, { "key": "AsianRussia", "attributes": { "label": "Asian Russia", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Russia (USSR)", "continent": "Asia", "pagerank": 0.00032668320435048535, "RIX": 0, "inHerfindahl": "0.39792383249092533", "outHerfindahl": "0.40226295317815525", "herfindahl": "0.38841402081710324", "weightedInDegree": "601952.7784500191", "weightedOutDegree": "2642133.786934199", "inDegree": 6, "outDegree": 7 } }, { "key": "BritishEurope", "attributes": { "label": "British Europe", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Europe", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "5659", "inDegree": 0, "outDegree": 1 } }, { "key": "EuropeanTurkey", "attributes": { "label": "European Turkey", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Turkey (Ottoman Empire)", "continent": "Europe", "pagerank": 0.0005951541300071505, "RIX": 0, "inHerfindahl": "0.5063809193988855", "outHerfindahl": "0.47165701844197694", "herfindahl": "0.4310256595575729", "weightedInDegree": "4808755.416729321", "weightedOutDegree": "2980670.851359153", "inDegree": 8, "outDegree": 8 } }, { "key": "AmericanOceania", "attributes": { "label": "American Oceania", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United States of America", "continent": "Oceania", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "0.9086018064861334", "herfindahl": "0.9086018064861334", "weightedInDegree": "0", "weightedOutDegree": "17228.003168853218", "inDegree": 0, "outDegree": 2 } }, { "key": "BritishOceania", "attributes": { "label": "British Oceania", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Oceania", "pagerank": 0.00030270103848678483, "RIX": 0, "inHerfindahl": "0.4263363865243968", "outHerfindahl": "0.8397185165512484", "herfindahl": "0.7738087101534885", "weightedInDegree": "267160.0153915674", "weightedOutDegree": "3021803.883318184", "inDegree": 4, "outDegree": 4 } }, { "key": "DutchOceania", "attributes": { "label": "Dutch Oceania", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Netherlands", "continent": "Oceania", "pagerank": 0.0002932871901865779, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9941711065166101", "herfindahl": "0.9941713261837506", "weightedInDegree": "30.10411951107464", "weightedOutDegree": "796444.5685826379", "inDegree": 1, "outDegree": 2 } }, { "key": "Ceuta", "attributes": { "label": "Ceuta", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Spanish Morocco", "continent": "Africa", "pagerank": 0.00035559347829448764, "RIX": 0, "inHerfindahl": "0.9703457958743518", "outHerfindahl": "1", "herfindahl": "0.9705421761901951", "weightedInDegree": "738156.5903119636", "weightedOutDegree": "4997.28383883839", "inDegree": 2, "outDegree": 1 } }, { "key": "Melilla", "attributes": { "label": "Melilla", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Spanish Morocco", "continent": "Africa", "pagerank": 0.0003562580783043375, "RIX": 0, "inHerfindahl": "0.9423181082354126", "outHerfindahl": "1", "herfindahl": "0.9438827611327414", "weightedInDegree": "752544.4187411154", "weightedOutDegree": "21644.861928462666", "inDegree": 2, "outDegree": 1 } }, { "key": "BritishSouthWestAfrica", "attributes": { "label": "British South West Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Africa", "pagerank": 0.0002934419497542881, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "4450", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "Tangier", "attributes": { "label": "Tangier", "type": "GPH_entity", "GPH_status": "Sovereign (unrecognized)", "part_of": "Tangier", "continent": "Africa", "pagerank": 0.0003027890223131956, "RIX": 0, "inHerfindahl": "0.9704480813116296", "outHerfindahl": "1", "herfindahl": "0.9795004196242572", "weightedInDegree": "112592.57627879897", "weightedOutDegree": "50484.60842007217", "inDegree": 2, "outDegree": 1 } }, { "key": "RhodeIs", "attributes": { "label": "Rhode Is.", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "United States of America", "continent": "America", "pagerank": 0.0002947873146136927, "RIX": 0, "inHerfindahl": "0.9778983889620165", "outHerfindahl": "1", "herfindahl": "0.9910641960458382", "weightedInDegree": "30244.18556701031", "weightedOutDegree": "45067.010309278354", "inDegree": 2, "outDegree": 1 } }, { "key": "Crete", "attributes": { "label": "Crete", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Greece", "continent": "Europe", "pagerank": 0.0002963153977108376, "RIX": 0, "inHerfindahl": "0.36443134143904077", "outHerfindahl": "0.525637952811149", "herfindahl": "0.5016901316365521", "weightedInDegree": "47799.7889690388", "weightedOutDegree": "363072.3445641121", "inDegree": 6, "outDegree": 5 } }, { "key": "Malta", "attributes": { "label": "Malta", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Europe", "reporting": 1, "world_Exp": "350668", "world_Imp": "4416423", "pagerank": 0.001376960785027125, "RIX": 0, "inHerfindahl": "0.10572047957618187", "outHerfindahl": "0.1274282425997061", "herfindahl": "0.13095248480880545", "weightedInDegree": "5440277.821108002", "weightedOutDegree": "406484.6189727382", "inDegree": 61, "outDegree": 54, "worldTradePart": 0.00035173551763372364 } }, { "key": "EuropeanRussia", "attributes": { "label": "European Russia", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Russia (USSR)", "continent": "Europe", "pagerank": 0.0006679920708399193, "RIX": 0, "inHerfindahl": "0.8404603375414607", "outHerfindahl": "0.5486216587797724", "herfindahl": "0.5759112829326073", "weightedInDegree": "9994519.886500787", "weightedOutDegree": "5716220.529534155", "inDegree": 5, "outDegree": 6 } }, { "key": "OthercountriesnonBritish", "attributes": { "label": "Other countries (non British)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "World", "pagerank": 0.0003182873619043899, "RIX": 0, "inHerfindahl": "0.8077248385778294", "outHerfindahl": "0.9827727015954879", "herfindahl": "0.9394599690259792", "weightedInDegree": "81501", "weightedOutDegree": "275516", "inDegree": 3, "outDegree": 2 } }, { "key": "NewGuineaGermanNewGuineaKaiserWilhelmsland", "attributes": { "label": "New Guinea (German New Guinea) (Kaiser Wilhelmsland)", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "Australia", "continent": "Oceania", "reporting": 1, "world_Exp": "701993", "world_Imp": "485634", "pagerank": 0.0003362919397013708, "RIX": 0, "inHerfindahl": "0.5075084071844804", "outHerfindahl": "0.32084121371324037", "herfindahl": "0.4373028153854023", "weightedInDegree": "826820.5346310547", "weightedOutDegree": "963025", "inDegree": 6, "outDegree": 5, "worldTradePart": 0.00008762798897709028 } }, { "key": "BritishColonies", "attributes": { "label": "British Colonies", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "World", "pagerank": 0.0014835819756484796, "RIX": 0, "inHerfindahl": "0.3244142256033261", "outHerfindahl": "0.17493393616938976", "herfindahl": "0.231352751358728", "weightedInDegree": "2021969.3078541737", "weightedOutDegree": "1795811.3324806993", "inDegree": 18, "outDegree": 17 } }, { "key": "Europe", "attributes": { "label": "Europe", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Europe", "pagerank": 0.0008474676921192434, "RIX": 0, "inHerfindahl": "0.23706280205377597", "outHerfindahl": "0", "herfindahl": "0.23706280205377597", "weightedInDegree": "1516492.8899999373", "weightedOutDegree": "0", "inDegree": 5, "outDegree": 0 } }, { "key": "SudanAngloEgyptianSudanMahdistState", "attributes": { "label": "Sudan (Anglo-Egyptian Sudan) (Mahdist State)", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "3651408.2474226807", "world_Imp": "5644237.113402062", "pagerank": 0.0013379731439998595, "RIX": 0, "inHerfindahl": "0.17195522872465577", "outHerfindahl": "0.31057374014639655", "herfindahl": "0.38206936928366075", "weightedInDegree": "7088354.824130969", "weightedOutDegree": "6396431.615915212", "inDegree": 31, "outDegree": 34, "worldTradePart": 0.0006858708240998992 } }, { "key": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState_Uganda", "attributes": { "label": "Democratic Republic of the Congo (Zaire) (Kinshasa) (Belgian Congo) (Congo Free State) & Uganda", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.00029334218452762813, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "323.7113402061856", "weightedOutDegree": "997.9381443298969", "inDegree": 1, "outDegree": 1 } }, { "key": "Eritrea", "attributes": { "label": "Eritrea", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Italy", "continent": "Africa", "world_Exp": "1212307.551937282", "world_Imp": "1977504.4698847553", "pagerank": 0.00029405196363295786, "RIX": 0, "inHerfindahl": "0.5013801125816629", "outHerfindahl": "0.5002077687720067", "herfindahl": "0.5000632689616298", "weightedInDegree": "6946.3917525773195", "weightedOutDegree": "48500", "inDegree": 2, "outDegree": 2, "worldTradePart": 0.00023535740824956954 } }, { "key": "Aden_India_SriLankaCeylon", "attributes": { "label": "Aden & India & Sri Lanka (Ceylon)", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "543518.5567010309", "inDegree": 0, "outDegree": 1 } }, { "key": "Aden_India", "attributes": { "label": "Aden & India", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.0002942132540426052, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "5222.6804123711345", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "FrenchEquatorialAfrica", "attributes": { "label": "French Equatorial Africa", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "France", "continent": "Africa", "pagerank": 0.00029918083874320804, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "32390.715708455104", "weightedOutDegree": "19445.1412403741", "inDegree": 1, "outDegree": 1 } }, { "key": "AngolaPortugueseWestAfrica", "attributes": { "label": "Angola (Portuguese West Africa)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Portugal", "continent": "Africa", "reporting": 1, "world_Exp": "2117790.855587697", "world_Imp": "2555160.7061982", "pagerank": 0.0006544005136144884, "RIX": 0, "inHerfindahl": "0.2829781224177324", "outHerfindahl": "0.35208692450159834", "herfindahl": "0.4494376431549322", "weightedInDegree": "2858812.8615569384", "weightedOutDegree": "2832387.980495369", "inDegree": 14, "outDegree": 19, "worldTradePart": 0.00034478952393862 } }, { "key": "Mauritania", "attributes": { "label": "Mauritania", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French West Africa", "continent": "Africa", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "1349.8886373920575", "inDegree": 0, "outDegree": 1 } }, { "key": "RuandaUrundi", "attributes": { "label": "Ruanda-Urundi", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "Belgium", "continent": "Africa", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "20.14712539610045", "inDegree": 0, "outDegree": 1 } }, { "key": "Uganda", "attributes": { "label": "Uganda", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Africa", "pagerank": 0.0003084237372442536, "RIX": 0, "inHerfindahl": "0.8453504461747621", "outHerfindahl": "0.924269282023869", "herfindahl": "0.8953714570743414", "weightedInDegree": "193052.25260298265", "weightedOutDegree": "351590.2652784022", "inDegree": 3, "outDegree": 3 } }, { "key": "MyanmarBurma", "attributes": { "label": "Myanmar (Burma)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "India", "continent": "Asia", "reporting": 1, "world_Imp": "13200530.102314712", "pagerank": 0.0019749742377962263, "RIX": 0, "inHerfindahl": "0.2969733428890463", "outHerfindahl": "0.39197921764082155", "herfindahl": "0.18318890877409577", "weightedInDegree": "13538902.341608517", "weightedOutDegree": "6172170.14463987", "inDegree": 73, "outDegree": 6 } }, { "key": "Gozo_Malta", "attributes": { "label": "Gozo & Malta", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.00038597739249782636, "RIX": 0, "inHerfindahl": "0.9792917868071576", "outHerfindahl": "0.9918711483707306", "herfindahl": "0.9801228542273662", "weightedInDegree": "1350353.5504753345", "weightedOutDegree": "96317.7134449979", "inDegree": 2, "outDegree": 3 } }, { "key": "Cyprus", "attributes": { "label": "Cyprus", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Europe", "reporting": 1, "world_Exp": "1272732", "world_Imp": "1244776", "pagerank": 0.00041155536431336287, "RIX": 0, "inHerfindahl": "0.08914466556789041", "outHerfindahl": "0.1053896755942338", "herfindahl": "0.16904039996124864", "weightedInDegree": "1723844.901914934", "weightedOutDegree": "2166311.653766846", "inDegree": 37, "outDegree": 37, "worldTradePart": 0.00018575206127322517 } }, { "key": "Aden", "attributes": { "label": "Aden", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Asia", "pagerank": 0.0006385625614319396, "RIX": 0, "inHerfindahl": "0.2893596129464704", "outHerfindahl": "0.5100580806101032", "herfindahl": "0.2793589836989774", "weightedInDegree": "577571.437042091", "weightedOutDegree": "714341.7401758295", "inDegree": 14, "outDegree": 14 } }, { "key": "FederatedMalayStates", "attributes": { "label": "Federated Malay States", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Asia", "reporting": 1, "world_Exp": "24836553", "world_Imp": "11367569", "pagerank": 0.0014040717940596629, "RIX": 0, "inHerfindahl": "0.2959714555851635", "outHerfindahl": "0.3426325674414626", "herfindahl": "0.6474247896759173", "weightedInDegree": "21586726.409687903", "weightedOutDegree": "44037439.24219104", "inDegree": 18, "outDegree": 15, "worldTradePart": 0.0026712885472806123 } }, { "key": "CapeColonyCapeofGoodHope", "attributes": { "label": "Cape Colony (Cape of Good Hope)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "South Africa", "continent": "Africa", "pagerank": 0.0003376489915906446, "RIX": 0, "inHerfindahl": "0.5732214547686969", "outHerfindahl": "0.817718800543483", "herfindahl": "0.5733416523377229", "weightedInDegree": "824623.8809419759", "weightedOutDegree": "648.5242191039605", "inDegree": 2, "outDegree": 3 } }, { "key": "Natal", "attributes": { "label": "Natal", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "South Africa", "continent": "Africa", "pagerank": 0.00037038044873181626, "RIX": 0, "inHerfindahl": "0.710597318927124", "outHerfindahl": "0.41898456599401435", "herfindahl": "0.5497956373600574", "weightedInDegree": "1560240.727931897", "weightedOutDegree": "932002.6487102455", "inDegree": 2, "outDegree": 3 } }, { "key": "PembaIsland_Zanzibar", "attributes": { "label": "Pemba Island & Zanzibar", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.0003314061999383377, "RIX": 0, "inHerfindahl": "0.5232338177458793", "outHerfindahl": "0.5055484942331465", "herfindahl": "0.5123704754833946", "weightedInDegree": "711953.129923238", "weightedOutDegree": "798648.2363062206", "inDegree": 2, "outDegree": 3 } }, { "key": "Mauritius", "attributes": { "label": "Mauritius", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "3807390", "world_Imp": "5788186", "pagerank": 0.0011209278728764997, "RIX": 0, "inHerfindahl": "0.17856076785056077", "outHerfindahl": "0.5211649133859312", "herfindahl": "0.26397379047632347", "weightedInDegree": "6122829.245812591", "weightedOutDegree": "3688782.848800371", "inDegree": 30, "outDegree": 20, "worldTradePart": 0.0007080009362845675 } }, { "key": "CanadaAtlanticCoast", "attributes": { "label": "Canada (Atlantic Coast)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Canada (Province of Canada)", "continent": "America", "pagerank": 0.0003539794351353839, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9082195523581347", "herfindahl": "0.966869283823909", "weightedInDegree": "1391092.0076964197", "weightedOutDegree": "747278.2625625838", "inDegree": 1, "outDegree": 2 } }, { "key": "CanadaPacificCoast", "attributes": { "label": "Canada (Pacific Coast)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Canada (Province of Canada)", "continent": "America", "pagerank": 0.0003026063697372575, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.65152918775786", "herfindahl": "0.9961021577846223", "weightedInDegree": "213649.28610240546", "weightedOutDegree": "1872.586690811169", "inDegree": 1, "outDegree": 2 } }, { "key": "WesternAustralia", "attributes": { "label": "Western Australia", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Australia", "continent": "Oceania", "pagerank": 0.0003164578708264502, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9995133366520681", "herfindahl": "0.9999726293604903", "weightedInDegree": "531118.1584429747", "weightedOutDegree": "31643.231326406356", "inDegree": 1, "outDegree": 2 } }, { "key": "SouthAustralia", "attributes": { "label": "South Australia", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Australia", "continent": "Oceania", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "206.00181077419919", "inDegree": 0, "outDegree": 1 } }, { "key": "Victoria", "attributes": { "label": "Victoria", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Australia", "continent": "Oceania", "pagerank": 0.0003629037057017373, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.7630908938046825", "herfindahl": "0.9554258767482287", "weightedInDegree": "1595631.4359445884", "weightedOutDegree": "317831.2109553272", "inDegree": 1, "outDegree": 2 } }, { "key": "NewSouthWales", "attributes": { "label": "New South Wales", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Australia", "continent": "Oceania", "pagerank": 0.0003830994128111969, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.8113979314002091", "herfindahl": "0.9804455419640006", "weightedInDegree": "2058506.060209171", "weightedOutDegree": "212765.32095980662", "inDegree": 1, "outDegree": 2 } }, { "key": "Queensland", "attributes": { "label": "Queensland", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Australia", "continent": "Oceania", "pagerank": 0.00029924586886878607, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.7090474968675444", "herfindahl": "0.9819073908230687", "weightedInDegree": "136628.43368046024", "weightedOutDegree": "7443.920778636236", "inDegree": 1, "outDegree": 2 } }, { "key": "OmanSultanateofMuscatandOman_UnitedArabEmiratesTrucialOman", "attributes": { "label": "Oman (Sultanate of Muscat and Oman) & United Arab Emirates (Trucial Oman)", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.000317745014048587, "RIX": 0, "inHerfindahl": "0.9504248369115764", "outHerfindahl": "0.9693657076404598", "herfindahl": "0.9579055467826679", "weightedInDegree": "552478.0402899677", "weightedOutDegree": "365374.5061115258", "inDegree": 2, "outDegree": 3 } }, { "key": "Java_Sumatra_SulawesiCelebes", "attributes": { "label": "Java & Sumatra & Sulawesi (Celebes)", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.00029504851909701094, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.5244988335503473", "herfindahl": "0.9950227858685345", "weightedInDegree": "40427.459483947685", "weightedOutDegree": "165.83793571759432", "inDegree": 1, "outDegree": 2 } }, { "key": "Guam_Philippines", "attributes": { "label": "Guam & Philippines", "type": "group", "GPH_status": "group", "continent": "World", "pagerank": 0.00038592031566271303, "RIX": 0, "inHerfindahl": "0.7458407876735489", "outHerfindahl": "0.9572776827811413", "herfindahl": "0.8807309762828399", "weightedInDegree": "1422287.716161255", "weightedOutDegree": "2913457.8533273265", "inDegree": 2, "outDegree": 3 } }, { "key": "RepublicofChinaTaiwanFormosa", "attributes": { "label": "Republic of China (Taiwan) (Formosa)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Japan", "continent": "Asia", "reporting": 1, "world_Exp": "4014754.6117673437", "world_Imp": "4377614.580414752", "pagerank": 0.0008899632391913691, "RIX": 0, "inHerfindahl": "0.327629802152845", "outHerfindahl": "0.31341378716334556", "herfindahl": "0.31385018671392395", "weightedInDegree": "4479416.245892378", "weightedOutDegree": "4019581.1950901146", "inDegree": 35, "outDegree": 24, "worldTradePart": 0.0006192234052140991 } }, { "key": "UnitedStatesofAmericaAtlanticCoast", "attributes": { "label": "United States of America (Atlantic Coast)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "United States of America", "continent": "America", "pagerank": 0.0012981150711744481, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.843260954119746", "herfindahl": "0.9474338884930708", "weightedInDegree": "23030167.352658685", "weightedOutDegree": "10597339.851068627", "inDegree": 1, "outDegree": 2 } }, { "key": "UnitedStatesofAmericaPacificCoast", "attributes": { "label": "United States of America (Pacific Coast)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "United States of America", "continent": "America", "pagerank": 0.00036347805379845596, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.885349639737854", "herfindahl": "0.9729020326673334", "weightedInDegree": "1608795.181983526", "weightedOutDegree": "467107.8822998946", "inDegree": 1, "outDegree": 2 } }, { "key": "SouthernAmerica", "attributes": { "label": "Southern America", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "America", "pagerank": 0.00034835866858806875, "RIX": 0, "inHerfindahl": "0.6113192623509022", "outHerfindahl": "0.7905027412562162", "herfindahl": "0.42776296696980315", "weightedInDegree": "771388.2594588953", "weightedOutDegree": "252679.1389069559", "inDegree": 3, "outDegree": 5 } }, { "key": "Aden_Arabia", "attributes": { "label": "Aden & Arabia", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "4585.502263486107", "inDegree": 0, "outDegree": 1 } }, { "key": "Penang", "attributes": { "label": "Penang", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Straits Settlements", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "0.5271284718535725", "herfindahl": "0.5271284718535725", "weightedInDegree": "0", "weightedOutDegree": "2019500.7845229427", "inDegree": 0, "outDegree": 2 } }, { "key": "Singapore", "attributes": { "label": "Singapore", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Straits Settlements", "continent": "Asia", "reporting": 1, "world_Imp": "73959075.77003604", "pagerank": 0.0074367358437731875, "RIX": 0, "inHerfindahl": "0.050985112042907475", "outHerfindahl": "0.6420696007162541", "herfindahl": "0.06091356422051896", "weightedInDegree": "81996602.48619719", "weightedOutDegree": "11844528.014297254", "inDegree": 60, "outDegree": 4 } }, { "key": "Dalny", "attributes": { "label": "Dalny", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Kwangtung Territory (Leased)", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "707437.6423749643", "inDegree": 0, "outDegree": 1 } }, { "key": "BritishBorneo", "attributes": { "label": "British Borneo", "type": "colonial_area", "GPH_status": "colonial_area", "continent": "Asia", "pagerank": 0.00029554250938839256, "RIX": 0, "inHerfindahl": "0.499965963026468", "outHerfindahl": "0.35133831682593275", "herfindahl": "0.3349037964159327", "weightedInDegree": "47124.845538179", "weightedOutDegree": "448374.92244973185", "inDegree": 3, "outDegree": 4 } }, { "key": "EastTimorPortugueseTimor", "attributes": { "label": "East Timor (Portuguese Timor)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Portugal", "continent": "Asia", "pagerank": 0.0002933861639405772, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "0.9770243620950334", "weightedInDegree": "1953", "weightedOutDegree": "166077.1946588855", "inDegree": 1, "outDegree": 1 } }, { "key": "EgyptArabRepublicEgypt_SudanAngloEgyptianSudanMahdistState", "attributes": { "label": "Egypt Arab Republic (Egypt) & Sudan (Anglo-Egyptian Sudan) (Mahdist State)", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "0.501298167531554", "herfindahl": "0.501298167531554", "weightedInDegree": "0", "weightedOutDegree": "63770.79562903606", "inDegree": 0, "outDegree": 2 } }, { "key": "Seychelles", "attributes": { "label": "Seychelles", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "152794", "world_Imp": "122683", "pagerank": 0.0003231996686704266, "RIX": 0, "inHerfindahl": "0.16212368270856256", "outHerfindahl": "0.19526001672232804", "herfindahl": "0.28057701141778224", "weightedInDegree": "206851.14350386994", "weightedOutDegree": "245314.5803531027", "inDegree": 15, "outDegree": 14, "worldTradePart": 0.000020325822433678167 } }, { "key": "StHelena", "attributes": { "label": "St. Helena", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Atlantic", "reporting": 1, "world_Exp": "36040", "world_Imp": "51421", "pagerank": 0.00029971238995657457, "RIX": 0, "inHerfindahl": "0.29954406227313507", "outHerfindahl": "0.4386671891266132", "herfindahl": "0.6909429359701676", "weightedInDegree": "97006", "weightedOutDegree": "71661", "inDegree": 5, "outDegree": 6, "worldTradePart": 0.000006453231144058946 } }, { "key": "DanishColonies", "attributes": { "label": "Danish Colonies", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Denmark", "continent": "World", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "0.5169279999999999", "herfindahl": "0.5169279999999999", "weightedInDegree": "0", "weightedOutDegree": "750", "inDegree": 0, "outDegree": 2 } }, { "key": "FrenchColoniesother", "attributes": { "label": "French Colonies (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "France", "continent": "World", "pagerank": 0.00029515682396076646, "RIX": 0, "inHerfindahl": "0.9564073566844127", "outHerfindahl": "0.5399250041024489", "herfindahl": "0.36627914818446167", "weightedInDegree": "21738.914214576722", "weightedOutDegree": "58502.402467178414", "inDegree": 3, "outDegree": 5 } }, { "key": "Memel", "attributes": { "label": "Memel", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Lithuania", "continent": "Europe", "pagerank": 0.00034123704374065545, "RIX": 0, "inHerfindahl": "0.9303113877024355", "outHerfindahl": "0.8916471839139477", "herfindahl": "0.9064838844912271", "weightedInDegree": "787167.7229508905", "weightedOutDegree": "1243348.1566308956", "inDegree": 3, "outDegree": 4 } }, { "key": "Afghanistan", "attributes": { "label": "Afghanistan", "type": "GPH_entity", "GPH_status": "Sovereign", "part_of": "Afghanistan", "continent": "Asia", "pagerank": 0.00029595355600195547, "RIX": 0, "inHerfindahl": "0.45908978089208685", "outHerfindahl": "0.5173284333788787", "herfindahl": "0.4961338261167583", "weightedInDegree": "67274.4766862834", "weightedOutDegree": "423899.98370303295", "inDegree": 3, "outDegree": 6 } }, { "key": "AmericanColoniesother", "attributes": { "label": "American Colonies (other)", "type": "colonial_area", "GPH_status": "colonial_area", "continent": "World", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "825", "inDegree": 0, "outDegree": 1 } }, { "key": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "label": "Namibia (South West Africa) (German South West Africa)", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "South Africa", "continent": "Africa", "reporting": 1, "world_Imp": "1634779", "pagerank": 0.0004674882055558494, "RIX": 0, "inHerfindahl": "0.2831761213343202", "outHerfindahl": "0.7029681366811534", "herfindahl": "0.5861208187893489", "weightedInDegree": "2918876.7655045874", "weightedOutDegree": "740231.6550474175", "inDegree": 52, "outDegree": 3 } }, { "key": "AscensionI", "attributes": { "label": "Ascension I.", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "St. Helena", "continent": "Atlantic", "pagerank": 0.00030114502688029135, "RIX": 0, "inHerfindahl": "0.688709014866216", "outHerfindahl": "1", "herfindahl": "0.7540181485803251", "weightedInDegree": "32242", "weightedOutDegree": "10237", "inDegree": 3, "outDegree": 1 } }, { "key": "PortSudan", "attributes": { "label": "Port Sudan", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Sudan (Anglo-Egyptian Sudan) (Mahdist State)", "continent": "Africa", "pagerank": 0.0003003474063259395, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "118837", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "KerguelenIs", "attributes": { "label": "Kerguelen Is.", "type": "GPH_entity", "GPH_status": "Possession of", "part_of": "France", "continent": "Antarctic", "pagerank": 0.00029337436955604945, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "1510", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "ItalianColoniesother", "attributes": { "label": "Italian Colonies (other)", "type": "colonial_area", "GPH_status": "colonial_area", "continent": "World", "pagerank": 0.0002934888959809608, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "3437", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "PortugueseIndiainclGoaDiuDaman", "attributes": { "label": "Portuguese India (incl. Goa, Diu, Daman)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Portugal", "continent": "Asia", "pagerank": 0.0003062175130174653, "RIX": 0, "inHerfindahl": "0.8256505549507712", "outHerfindahl": "0.8929073057170043", "herfindahl": "0.8749733256796675", "weightedInDegree": "181200.85520160745", "weightedOutDegree": "218476.11870100387", "inDegree": 5, "outDegree": 5 } }, { "key": "Ukraine", "attributes": { "label": "Ukraine", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Russia (USSR)", "continent": "Europe", "pagerank": 0.00030279265158985604, "RIX": 0, "inHerfindahl": "0.8586386251857537", "outHerfindahl": "0.46476273168174437", "herfindahl": "0.845388853833955", "weightedInDegree": "248498.86826620938", "weightedOutDegree": "2010.1856043480486", "inDegree": 4, "outDegree": 3 } }, { "key": "Fiji", "attributes": { "label": "Fiji", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Oceania", "reporting": 1, "world_Exp": "1452215", "world_Imp": "1066594", "pagerank": 0.0006933142352013614, "RIX": 0, "inHerfindahl": "0.14505410271878522", "outHerfindahl": "0.27975213914392705", "herfindahl": "0.2692391613540572", "weightedInDegree": "2055436.5951463578", "weightedOutDegree": "2525949.3512895377", "inDegree": 36, "outDegree": 28, "worldTradePart": 0.0001858480543869378 } }, { "key": "GilbertandElliceIs", "attributes": { "label": "Gilbert and Ellice Is.", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Oceania", "world_Exp": "301545", "world_Imp": "109145", "pagerank": 0.0002985269741556854, "RIX": 0, "inHerfindahl": "0.9869527403621695", "outHerfindahl": "0.9651288215090409", "herfindahl": "0.9688500635278964", "weightedInDegree": "99104", "weightedOutDegree": "473401", "inDegree": 3, "outDegree": 3, "worldTradePart": 0.000030302391906719204 } }, { "key": "Nauru", "attributes": { "label": "Nauru", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "Australia", "continent": "Oceania", "world_Exp": "429145", "world_Imp": "99454", "pagerank": 0.0002960222339450151, "RIX": 0, "inHerfindahl": "0.9457072215570534", "outHerfindahl": "0.6842771745930838", "herfindahl": "0.7047214094498551", "weightedInDegree": "52567", "weightedOutDegree": "487782", "inDegree": 2, "outDegree": 2, "worldTradePart": 0.000039002201318512415 } }, { "key": "NorfolkI", "attributes": { "label": "Norfolk I.", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Australia", "continent": "Oceania", "pagerank": 0.00029400856244498187, "RIX": 0, "inHerfindahl": "0.9779700401118696", "outHerfindahl": "0.9984988750025388", "herfindahl": "0.9825109091529207", "weightedInDegree": "13915", "weightedOutDegree": "3994", "inDegree": 2, "outDegree": 2 } }, { "key": "PapuaBritishNewGuinea", "attributes": { "label": "Papua (British New Guinea)", "type": "GPH_entity", "GPH_status": "Dependency of", "part_of": "Australia", "continent": "Oceania", "reporting": 1, "world_Exp": "731468.6299998829", "world_Imp": "494375.4119999209", "pagerank": 0.00033573073617580284, "RIX": 0, "inHerfindahl": "0.4811142539879884", "outHerfindahl": "0.2570844112710352", "herfindahl": "0.5120576932985298", "weightedInDegree": "800840.6677717635", "weightedOutDegree": "1181289.629999883", "inDegree": 8, "outDegree": 7, "worldTradePart": 0.00009044779901432909 } }, { "key": "PitcairnIs", "attributes": { "label": "Pitcairn Is.", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Oceania", "pagerank": 0.0002932957094991161, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "201", "weightedOutDegree": "7", "inDegree": 1, "outDegree": 1 } }, { "key": "SolomonIslandsBritishSolomonIslandsProtectorate", "attributes": { "label": "Solomon Islands (British Solomon Islands Protectorate)", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Oceania", "pagerank": 0.0003033011050422887, "RIX": 0, "inHerfindahl": "0.9496858295530637", "outHerfindahl": "0.9994003403608163", "herfindahl": "0.9782886882600323", "weightedInDegree": "191928", "weightedOutDegree": "266738", "inDegree": 3, "outDegree": 2 } }, { "key": "TongaHaʻapai", "attributes": { "label": "Tonga (Haʻapai)", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Oceania", "reporting": 1, "world_Exp": "306659", "world_Imp": "232601", "pagerank": 0.0003191549457556524, "RIX": 0, "inHerfindahl": "0.18021168308907137", "outHerfindahl": "0.4652365040485537", "herfindahl": "0.22288680278394596", "weightedInDegree": "390426", "weightedOutDegree": "309078", "inDegree": 12, "outDegree": 11, "worldTradePart": 0.00003978881360543816 } }, { "key": "SamoaWesternSamoaGermanSamoa", "attributes": { "label": "Samoa (Western Samoa) (German Samoa)", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "New Zealand", "continent": "Oceania", "reporting": 1, "world_Exp": "344052", "world_Imp": "274803", "pagerank": 0.00032085715766407247, "RIX": 0, "inHerfindahl": "0.20655513778086199", "outHerfindahl": "0.30205281949538515", "herfindahl": "0.17630159108932486", "weightedInDegree": "360470.78288431064", "weightedOutDegree": "350192", "inDegree": 11, "outDegree": 10, "worldTradePart": 0.000045661659021239166 } }, { "key": "Caucasus", "attributes": { "label": "Caucasus", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "World", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "45", "inDegree": 0, "outDegree": 1 } }, { "key": "Alaska", "attributes": { "label": "Alaska", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United States of America", "continent": "America", "pagerank": 0.0002959201249190938, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.584650822014428", "herfindahl": "0.4997340701440015", "weightedInDegree": "68566.63159544223", "weightedOutDegree": "207034.20149537732", "inDegree": 1, "outDegree": 3 } }, { "key": "VanuatuNewHebrides", "attributes": { "label": "Vanuatu (New Hebrides)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Oceania", "pagerank": 0.0003128037083848498, "RIX": 0, "inHerfindahl": "0.7680808943461092", "outHerfindahl": "0.5425873546676322", "herfindahl": "0.45912040545173793", "weightedInDegree": "108687.70869171529", "weightedOutDegree": "137066.60239927247", "inDegree": 3, "outDegree": 4 } }, { "key": "SocietyIs", "attributes": { "label": "Society Is.", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French Polynesia", "continent": "Oceania", "pagerank": 0.0002977150336693681, "RIX": 0, "inHerfindahl": "0.7158114806754974", "outHerfindahl": "0.6254139000091065", "herfindahl": "0.5603284486671852", "weightedInDegree": "81144", "weightedOutDegree": "29621", "inDegree": 2, "outDegree": 2 } }, { "key": "TuamotuIs", "attributes": { "label": "Tuamotu Is.", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French Polynesia", "continent": "Asia", "pagerank": 0.00029337803259834526, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "1694", "weightedOutDegree": "665", "inDegree": 1, "outDegree": 1 } }, { "key": "Tutuila", "attributes": { "label": "Tutuila", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "American Samoa", "continent": "Oceania", "pagerank": 0.0002937192351020492, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "7882", "weightedOutDegree": "14", "inDegree": 1, "outDegree": 1 } }, { "key": "FanningI", "attributes": { "label": "Fanning I.", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Gilbert and Ellice Is.", "continent": "Oceania", "pagerank": 0.0002933874614328852, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "1865", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "IndianOceanIslands", "attributes": { "label": "Indian Ocean Islands", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Oceania", "pagerank": 0.00029405909158357823, "RIX": 0, "inHerfindahl": "0.6319726299465522", "outHerfindahl": "0", "herfindahl": "0.6319726299465522", "weightedInDegree": "11813", "weightedOutDegree": "0", "inDegree": 2, "outDegree": 0 } }, { "key": "GrandCayman", "attributes": { "label": "Grand Cayman", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Cayman Is.", "continent": "America", "pagerank": 0.0002933271295761099, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "145.89240948506145", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "Bremen_Hamburg", "attributes": { "label": "Bremen & Hamburg", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.0003336882257770744, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "446871.8877326123", "weightedOutDegree": "172639.20325962786", "inDegree": 1, "outDegree": 1 } }, { "key": "Liechtenstein", "attributes": { "label": "Liechtenstein", "type": "GPH_entity", "GPH_status": "Sovereign (unrecognized)", "part_of": "Liechtenstein", "continent": "Europe", "pagerank": 0.000293969519000489, "RIX": 0, "inHerfindahl": "0.9262839323474279", "outHerfindahl": "1", "herfindahl": "0.9911879010090971", "weightedInDegree": "7644.742870086942", "weightedOutDegree": "58560.434585864954", "inDegree": 2, "outDegree": 1 } }, { "key": "Trieste", "attributes": { "label": "Trieste", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Italy", "continent": "Europe", "pagerank": 0.0003678228378816542, "RIX": 0, "inHerfindahl": "0.5146691632116761", "outHerfindahl": "1", "herfindahl": "0.5103271013480818", "weightedInDegree": "982031.960165553", "weightedOutDegree": "23671.3444998058", "inDegree": 2, "outDegree": 1 } }, { "key": "Europeother", "attributes": { "label": "Europe (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Europe", "pagerank": 0.00040810661740152426, "RIX": 0, "inHerfindahl": "0.8865029995612411", "outHerfindahl": "0.8623003570903474", "herfindahl": "0.8691235375934968", "weightedInDegree": "2523493.729544965", "weightedOutDegree": "6048708.269726922", "inDegree": 11, "outDegree": 11 } }, { "key": "BelgianAfrica", "attributes": { "label": "Belgian Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Belgium", "continent": "Africa", "pagerank": 0.000293347977593295, "RIX": 0, "inHerfindahl": "0.6016615144299292", "outHerfindahl": "0.6225568091610119", "herfindahl": "0.5798138134389106", "weightedInDegree": "1038.8051691070877", "weightedOutDegree": "18129.038656309556", "inDegree": 2, "outDegree": 3 } }, { "key": "Americaother", "attributes": { "label": "America (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "America", "pagerank": 0.00031723674006359557, "RIX": 0, "inHerfindahl": "0.9721157271730749", "outHerfindahl": "0.3929019731951844", "herfindahl": "0.7636280942787836", "weightedInDegree": "526443.9758728531", "weightedOutDegree": "190351.67120897828", "inDegree": 5, "outDegree": 8 } }, { "key": "CaymanIs", "attributes": { "label": "Cayman Is.", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Jamaica", "continent": "America", "reporting": 1, "world_Exp": "9836", "world_Imp": "51416", "pagerank": 0.00030455730174106877, "RIX": 0, "inHerfindahl": "0.2966499961185931", "outHerfindahl": "0.34781382494155894", "herfindahl": "0.4046307118605726", "weightedInDegree": "57854", "weightedOutDegree": "16234", "inDegree": 6, "outDegree": 3, "worldTradePart": 0.000004519423674962538 } }, { "key": "MalaysiaBritishMalayaother", "attributes": { "label": "Malaysia (British Malaya) (other)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Malaysia (British Malaya)", "continent": "Asia", "pagerank": 0.0004227303032829647, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9999983538440447", "herfindahl": "0.9999988493522673", "weightedInDegree": "3662398", "weightedOutDegree": "8504655", "inDegree": 1, "outDegree": 2 } }, { "key": "MorantCays", "attributes": { "label": "Morant Cays", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Jamaica", "continent": "America", "pagerank": 0.0002932858930461886, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "3", "weightedOutDegree": "409", "inDegree": 1, "outDegree": 1 } }, { "key": "PedroBank", "attributes": { "label": "Pedro Bank", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Jamaica", "continent": "America", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "327", "inDegree": 0, "outDegree": 1 } }, { "key": "RaggedIsland", "attributes": { "label": "Ragged Island", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Bahamas", "continent": "America", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "7914", "inDegree": 0, "outDegree": 1 } }, { "key": "StKittsNevis", "attributes": { "label": "St. Kitts-Nevis", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Leeward Is.", "continent": "America", "reporting": 1, "world_Exp": "237061", "world_Imp": "297180", "pagerank": 0.00035284053275643347, "RIX": 0, "inHerfindahl": "0.26463037556349456", "outHerfindahl": "0.5378650698115357", "herfindahl": "0.2994199039202446", "weightedInDegree": "297363", "weightedOutDegree": "237086", "inDegree": 30, "outDegree": 15, "worldTradePart": 0.00003941849120903254 } }, { "key": "MalaysiaBritishMalaya_StraitsSettlements", "attributes": { "label": "Malaysia (British Malaya) & Straits Settlements", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.0002940314765307023, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "1769", "weightedOutDegree": "1317", "inDegree": 1, "outDegree": 1 } }, { "key": "TrinidadandTobago", "attributes": { "label": "Trinidad and Tobago", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "America", "reporting": 1, "world_Exp": "4521225", "world_Imp": "4273092", "pagerank": 0.0007506471377234267, "RIX": 0, "inHerfindahl": "0.14440265099150507", "outHerfindahl": "0.20837666100162627", "herfindahl": "0.2196109498261771", "weightedInDegree": "5907776.594987371", "weightedOutDegree": "5981797.487380485", "inDegree": 28, "outDegree": 25, "worldTradePart": 0.0006488807623412382 } }, { "key": "TurksandCaicosIs", "attributes": { "label": "Turks and Caicos Is.", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Jamaica", "continent": "America", "reporting": 1, "world_Exp": "29674", "world_Imp": "43253", "pagerank": 0.00029638954834030007, "RIX": 0, "inHerfindahl": "0.5602458509621651", "outHerfindahl": "0.28758564241400264", "herfindahl": "0.3713861458252568", "weightedInDegree": "43123", "weightedOutDegree": "39014", "inDegree": 10, "outDegree": 10, "worldTradePart": 0.000005380853038986368 } }, { "key": "Borneo", "attributes": { "label": "Borneo", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Asia", "pagerank": 0.0002933254562903945, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9951777174156273", "herfindahl": "0.9950609279834579", "weightedInDegree": "318.08", "weightedOutDegree": "5407265.033390991", "inDegree": 1, "outDegree": 3 } }, { "key": "DanishIndia", "attributes": { "label": "Danish India", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Denmark", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "5", "inDegree": 0, "outDegree": 1 } }, { "key": "VirginIslandsDanishWestIndiesother", "attributes": { "label": "Virgin Islands (Danish West Indies) (other)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Virgin Islands (Danish West Indies)", "continent": "America", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "27", "inDegree": 0, "outDegree": 1 } }, { "key": "Sicily", "attributes": { "label": "Sicily", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Italy", "continent": "Europe", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "29", "inDegree": 0, "outDegree": 1 } }, { "key": "AlgeriaRegencyofAlgiers_TunisiaRegencyofTunis", "attributes": { "label": "Algeria (Regency of Algiers) & Tunisia (Regency of Tunis)", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.0003578263889707098, "RIX": 0, "inHerfindahl": "0.6597191246968698", "outHerfindahl": "0.35152113915667305", "herfindahl": "0.4864090320542808", "weightedInDegree": "1554461.2399273752", "weightedOutDegree": "999337.748754509", "inDegree": 4, "outDegree": 5 } }, { "key": "Mongolia", "attributes": { "label": "Mongolia", "type": "GPH_entity", "GPH_status": "Occupied by", "part_of": "Russia (USSR)", "continent": "Asia", "pagerank": 0.0003028228625321901, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "296853.7799909461", "weightedOutDegree": "388128.11226799455", "inDegree": 1, "outDegree": 1 } }, { "key": "Baden", "attributes": { "label": "Baden", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Germany (Zollverein)", "continent": "Europe", "pagerank": 0.00029510826141301405, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "30221.36713442398", "weightedOutDegree": "7164.780443633493", "inDegree": 1, "outDegree": 1 } }, { "key": "Heligoland", "attributes": { "label": "Heligoland", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Germany (Zollverein)", "continent": "Europe", "pagerank": 0.00029851498049781466, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "86677.68220906986", "weightedOutDegree": "2747.397012220362", "inDegree": 1, "outDegree": 1 } }, { "key": "ChristmasI", "attributes": { "label": "Christmas I.", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Straits Settlements", "continent": "Oceania", "pagerank": 0.0002933203840307237, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.8994653034253616", "herfindahl": "0.8997826496675383", "weightedInDegree": "592.5758261651761", "weightedOutDegree": "176645.28157523015", "inDegree": 1, "outDegree": 2 } }, { "key": "AlsaceLorraine", "attributes": { "label": "Alsace Lorraine", "type": "GPH_entity", "GPH_status": "GPH_entity", "continent": "Europe", "pagerank": 0.00033288773584388466, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "656304.6627427583", "weightedOutDegree": "27583165.685806967", "inDegree": 1, "outDegree": 1 } }, { "key": "FrenchAmerica", "attributes": { "label": "French America", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "France", "continent": "America", "pagerank": 0.0002992466653879939, "RIX": 0, "inHerfindahl": "0.5001106179039791", "outHerfindahl": "0.49547780763744026", "herfindahl": "0.4987864372486655", "weightedInDegree": "88857.59891341353", "weightedOutDegree": "21802.965142569476", "inDegree": 2, "outDegree": 3 } }, { "key": "Malacca", "attributes": { "label": "Malacca", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Straits Settlements", "continent": "Asia", "pagerank": 0.00033840105207096543, "RIX": 0, "inHerfindahl": "0.5198040785950624", "outHerfindahl": "0.346698217844675", "herfindahl": "0.3627400521882997", "weightedInDegree": "658028.8325024184", "weightedOutDegree": "2270069.109775832", "inDegree": 2, "outDegree": 3 } }, { "key": "BritishCameroons_CamerounFrenchCameroons", "attributes": { "label": "British Cameroons & Cameroun (French Cameroons)", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.0002947864434842018, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "24888.184698937395", "weightedOutDegree": "51069.26210950791", "inDegree": 1, "outDegree": 1 } }, { "key": "RuandaUrundi_TanzaniaTanganyika", "attributes": { "label": "Ruanda-Urundi & Tanzania (Tanganyika)", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.00029783233640639465, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "75364.87098228013", "weightedOutDegree": "37547.759167011616", "inDegree": 1, "outDegree": 1 } }, { "key": "NewGuineaGermanNewGuineaKaiserWilhelmsland_Nauru_SamoaWesternSamoaGermanSamoa", "attributes": { "label": "New Guinea (German New Guinea) (Kaiser Wilhelmsland) & Nauru & Samoa (Western Samoa) (German Samoa)", "type": "group", "GPH_status": "group", "continent": "Oceania", "pagerank": 0.0002933398881476214, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "915.799004073454", "weightedOutDegree": "3339.972838385538", "inDegree": 1, "outDegree": 1 } }, { "key": "BritishTogoland_TogoFrenchTogoland", "attributes": { "label": "British Togoland & Togo (French Togoland)", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.00029422407478031773, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "15568.583069248718", "weightedOutDegree": "19177.908555891154", "inDegree": 1, "outDegree": 1 } }, { "key": "Montenegro", "attributes": { "label": "Montenegro", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Yugoslavia (Kingdom of Serbs, Croats and Slovenes)", "continent": "Europe", "pagerank": 0.0002937592266609222, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "7865.097329101429", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "DutchAmerica", "attributes": { "label": "Dutch America", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Netherlands", "continent": "America", "pagerank": 0.00029731408786743026, "RIX": 0, "inHerfindahl": "0.9355031752235965", "outHerfindahl": "0.980020759273841", "herfindahl": "0.9703950080624175", "weightedInDegree": "65872.5667722392", "weightedOutDegree": "244616.56858285962", "inDegree": 2, "outDegree": 2 } }, { "key": "Kresy", "attributes": { "label": "Kresy", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Poland", "continent": "Europe", "pagerank": 0.000837644529098255, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "9021158.895420035", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "UpperSilesia", "attributes": { "label": "Upper Silesia", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Poland", "continent": "Europe", "pagerank": 0.0006108051482055506, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "5261965.595287461", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "WesternPoland", "attributes": { "label": "Western Poland", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Poland", "continent": "Europe", "pagerank": 0.00041228574504832574, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "1972092.349477706", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "PortugueseAsia", "attributes": { "label": "Portuguese Asia", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Portugal", "continent": "Asia", "pagerank": 0.00029440750855808497, "RIX": 0, "inHerfindahl": "0.9245362264136356", "outHerfindahl": "0.9991364535254295", "herfindahl": "0.9348365826283991", "weightedInDegree": "18728.298900391394", "weightedOutDegree": "3125.840957497928", "inDegree": 2, "outDegree": 2 } }, { "key": "Samoa", "attributes": { "label": "Samoa", "type": "GPH_entity", "GPH_status": "GPH_entity", "continent": "Oceania", "pagerank": 0.0002982950677583218, "RIX": 0, "inHerfindahl": "0.8938638888012647", "outHerfindahl": "0.3968320502852316", "herfindahl": "0.7923112367077669", "weightedInDegree": "81050.61158895414", "weightedOutDegree": "11709.512901761751", "inDegree": 3, "outDegree": 3 } }, { "key": "KingdomofSerbia", "attributes": { "label": "Kingdom of Serbia", "type": "GPH_entity", "GPH_status": "GPH_entity", "continent": "Europe", "pagerank": 0.00031643633176911654, "RIX": 0, "inHerfindahl": "0.9985882476538737", "outHerfindahl": "0.998905094299968", "herfindahl": "0.9987741986674846", "weightedInDegree": "383559.75554516586", "weightedOutDegree": "545252.9026704229", "inDegree": 2, "outDegree": 3 } }, { "key": "SpanishAfricaother", "attributes": { "label": "Spanish Africa (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Spain", "continent": "Africa", "pagerank": 0.00030438246899787674, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "183913.98822981011", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "NorthernRussia", "attributes": { "label": "Northern Russia", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Russia (USSR)", "continent": "Europe", "pagerank": 0.0005751105190195589, "RIX": 0, "inHerfindahl": "0.9889959906280639", "outHerfindahl": "1", "herfindahl": "0.9877224461689162", "weightedInDegree": "4677599.590761063", "weightedOutDegree": "3032.5885015858003", "inDegree": 2, "outDegree": 1 } }, { "key": "SouthernRussia", "attributes": { "label": "Southern Russia", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Russia (USSR)", "continent": "Europe", "pagerank": 0.0003048420738037921, "RIX": 0, "inHerfindahl": "0.5740380231203152", "outHerfindahl": "1", "herfindahl": "0.5711440829796641", "weightedInDegree": "209365.84970565367", "weightedOutDegree": "1154.6754187420347", "inDegree": 2, "outDegree": 1 } }, { "key": "Scotland", "attributes": { "label": "Scotland", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "United Kingdom", "continent": "Europe", "pagerank": 0.00030336285595178845, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.4774747014917733", "herfindahl": "0.749303070864386", "weightedInDegree": "191461.0683567225", "weightedOutDegree": "73563.74146674805", "inDegree": 1, "outDegree": 3 } }, { "key": "WallisandFutunaIs", "attributes": { "label": "Wallis and Futuna Is.", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "France", "continent": "Oceania", "pagerank": 0.0002933058569026773, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "91", "weightedOutDegree": "690", "inDegree": 1, "outDegree": 1 } }, { "key": "ThursdayI", "attributes": { "label": "Thursday I.", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Torres Strait Is.", "continent": "Oceania", "pagerank": 0.00029329279202907764, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "35", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "AloFutuna", "attributes": { "label": "Alo (Futuna)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Wallis and Futuna Is.", "continent": "Oceania", "pagerank": 0.00029328929250936343, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "20", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "Tahiti", "attributes": { "label": "Tahiti", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Society Is.", "continent": "Oceania", "pagerank": 0.00029363317864661135, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "1494", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "Aruba", "attributes": { "label": "Aruba", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Netherlands Antilles", "continent": "America", "pagerank": 0.0003064639748747505, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "121544.9329106433", "weightedOutDegree": "43.441195110846984", "inDegree": 1, "outDegree": 1 } }, { "key": "Bonaire", "attributes": { "label": "Bonaire", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Netherlands Antilles", "continent": "America", "pagerank": 0.00029352473212046644, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "2214.344952463972", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "BalearicIslands", "attributes": { "label": "Balearic Islands", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Spain", "continent": "Europe", "pagerank": 0.0002935100815910248, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "2079.2322317760736", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "Jamaica_JamaicaDependencies", "attributes": { "label": "Jamaica & Jamaica Dependencies", "type": "group", "GPH_status": "group", "continent": "World", "pagerank": 0.00029331902624664304, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "317.2476233585264", "weightedOutDegree": "8.589588048878458", "inDegree": 1, "outDegree": 1 } }, { "key": "MalabarCoast_MumbaiBombay", "attributes": { "label": "Malabar Coast & Mumbai (Bombay)", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "639499.7851969593", "inDegree": 0, "outDegree": 1 } }, { "key": "KolkataCalcutta", "attributes": { "label": "Kolkata (Calcutta)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "India", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "1352340.6885469332", "inDegree": 0, "outDegree": 1 } }, { "key": "ChennaiMadras_CoromandelCoastPosts", "attributes": { "label": "Chennai (Madras) & Coromandel Coast Posts", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "631515.6566319973", "inDegree": 0, "outDegree": 1 } }, { "key": "Kedah", "attributes": { "label": "Kedah", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "81792.03259393871", "inDegree": 0, "outDegree": 1 } }, { "key": "Johore", "attributes": { "label": "Johore", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "4758671.138977192", "inDegree": 0, "outDegree": 1 } }, { "key": "Kelantan", "attributes": { "label": "Kelantan", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "631211.0846537265", "inDegree": 0, "outDegree": 1 } }, { "key": "NegeriSembilan", "attributes": { "label": "Negeri Sembilan", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Federated Malay States", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "677843.9225894469", "inDegree": 0, "outDegree": 1 } }, { "key": "Pahang", "attributes": { "label": "Pahang", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Federated Malay States", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "1042766.9022182596", "inDegree": 0, "outDegree": 1 } }, { "key": "Perak", "attributes": { "label": "Perak", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Federated Malay States", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "2151148.6874152464", "inDegree": 0, "outDegree": 1 } }, { "key": "Selangore", "attributes": { "label": "Selangore", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Federated Malay States", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "2894825.326392203", "inDegree": 0, "outDegree": 1 } }, { "key": "Trengganu", "attributes": { "label": "Trengganu", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "403584.2295156417", "inDegree": 0, "outDegree": 1 } }, { "key": "LabuanI", "attributes": { "label": "Labuan I.", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Straits Settlements", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "231153.1785876098", "inDegree": 0, "outDegree": 1 } }, { "key": "Arica", "attributes": { "label": "Arica", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Chile", "continent": "America", "pagerank": 0.0002987232775110135, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "112336.83295608872", "weightedOutDegree": "10014.710728836577", "inDegree": 1, "outDegree": 1 } }, { "key": "Iquique", "attributes": { "label": "Iquique", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Chile", "continent": "America", "pagerank": 0.0003005352036358625, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "149762.66545948392", "weightedOutDegree": "16927.290176550476", "inDegree": 1, "outDegree": 1 } }, { "key": "Tacna", "attributes": { "label": "Tacna", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Peru", "continent": "America", "pagerank": 0.00029335787914448676, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "1513.0538705296515", "weightedOutDegree": "3184.644635581711", "inDegree": 1, "outDegree": 1 } }, { "key": "ChannelIs", "attributes": { "label": "Channel Is.", "type": "GPH_entity", "GPH_status": "Possession of", "part_of": "United Kingdom", "continent": "Europe", "pagerank": 0.0005019001337995706, "RIX": 0, "inHerfindahl": "0.9936245885135512", "outHerfindahl": "0.9998848756434731", "herfindahl": "0.9968930945043781", "weightedInDegree": "3027415.16296967", "weightedOutDegree": "3317960", "inDegree": 3, "outDegree": 2 } }, { "key": "India_MyanmarBurma", "attributes": { "label": "India & Myanmar (Burma)", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.006778864571483907, "RIX": 0, "inHerfindahl": "0.9875614000928388", "outHerfindahl": "0.9805026881242074", "herfindahl": "0.9842630660259335", "weightedInDegree": "91147592.32447995", "weightedOutDegree": "79657225.51133664", "inDegree": 2, "outDegree": 2 } }, { "key": "MafiaI", "attributes": { "label": "Mafia I.", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Tanzania (Tanganyika)", "continent": "Africa", "pagerank": 0.0002978758154554469, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "10729.000215936083", "weightedOutDegree": "34240.62477506658", "inDegree": 1, "outDegree": 1 } }, { "key": "ItalianSomaliland", "attributes": { "label": "Italian Somaliland", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Italy", "continent": "Africa", "world_Exp": "165599.3807583937", "world_Imp": "586246.2532125725", "pagerank": 0.0003065468600391422, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "30992.082343626284", "weightedOutDegree": "46934.06751601526", "inDegree": 1, "outDegree": 1, "worldTradePart": 0.00005547425321761907 } }, { "key": "Scandinavia", "attributes": { "label": "Scandinavia", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Europe", "pagerank": 0.00029353103735521455, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "575.8295544518822", "weightedOutDegree": "11842.798531634635", "inDegree": 1, "outDegree": 1 } }, { "key": "BelgianColonies", "attributes": { "label": "Belgian Colonies", "type": "colonial_area", "GPH_status": "colonial_area", "continent": "World", "pagerank": 0.000852607965542918, "RIX": 0, "inHerfindahl": "0.5285116361644633", "outHerfindahl": "0.6446601861692568", "herfindahl": "0.5800021375111798", "weightedInDegree": "101411.15593028226", "weightedOutDegree": "90847.9648257102", "inDegree": 4, "outDegree": 4 } }, { "key": "ItalianColonies", "attributes": { "label": "Italian Colonies", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Italy", "continent": "World", "pagerank": 0.0005156139589286629, "RIX": 0, "inHerfindahl": "0.9002144896036797", "outHerfindahl": "0.9971403023870071", "herfindahl": "0.9215180050302764", "weightedInDegree": "2668065.8561881874", "weightedOutDegree": "793693.0889344418", "inDegree": 3, "outDegree": 3 } }, { "key": "Denmark_FaeroeIs", "attributes": { "label": "Denmark & Faeroe Is.", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.0012441709495743295, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "13799397", "weightedOutDegree": "48904197", "inDegree": 1, "outDegree": 1 } }, { "key": "WestIrianDutchNewGuinea", "attributes": { "label": "West Irian (Dutch New Guinea)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Indonesia (Dutch East Indies)", "continent": "Oceania", "pagerank": 0.0002938156301208268, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "7706", "weightedOutDegree": "392", "inDegree": 1, "outDegree": 1 } }, { "key": "DutchOceaniaother", "attributes": { "label": "Dutch Oceania (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Netherlands", "continent": "Oceania", "pagerank": 0.0004267676125680364, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "1937124", "weightedOutDegree": "1005254", "inDegree": 1, "outDegree": 1 } }, { "key": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState_RuandaUrundi", "attributes": { "label": "Democratic Republic of the Congo (Zaire) (Kinshasa) (Belgian Congo) (Congo Free State) & Ruanda-Urundi", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.0003252116164226779, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "463329", "weightedOutDegree": "558875", "inDegree": 1, "outDegree": 1 } }, { "key": "FrenchEquatorialAfrica_FrenchWestAfrica", "attributes": { "label": "French Equatorial Africa & French West Africa", "type": "colonial_area", "GPH_status": "colonial_area", "continent": "Africa", "pagerank": 0.0004734438383802923, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "2614496", "weightedOutDegree": "2141061", "inDegree": 1, "outDegree": 1 } }, { "key": "AzoresWesternIsles", "attributes": { "label": "Azores (Western Isles)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Portugal", "continent": "Africa", "pagerank": 0.00029857922750956033, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "76836", "weightedOutDegree": "59041", "inDegree": 1, "outDegree": 1 } }, { "key": "SpanishNorthAfrica", "attributes": { "label": "Spanish North Africa", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Spain", "continent": "Africa", "pagerank": 0.00032914446116974255, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "520403", "weightedOutDegree": "98367", "inDegree": 1, "outDegree": 1 } }, { "key": "SpanishWestAfrica", "attributes": { "label": "Spanish West Africa", "type": "GPH_entity", "GPH_status": "GPH_entity", "continent": "Africa", "pagerank": 0.00029747525242796363, "RIX": 0, "inHerfindahl": "0.8046801967595532", "outHerfindahl": "0.8412935552002083", "herfindahl": "0.8063221015162778", "weightedInDegree": "60314.629243989235", "weightedOutDegree": "4764.736985060381", "inDegree": 3, "outDegree": 3 } }, { "key": "Arabiaother", "attributes": { "label": "Arabia (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Asia", "pagerank": 0.0003207975953112693, "RIX": 0, "inHerfindahl": "0.8639776517368274", "outHerfindahl": "0.8379993590538632", "herfindahl": "0.8622591345089209", "weightedInDegree": "604862.3626077685", "weightedOutDegree": "42067.70937077335", "inDegree": 2, "outDegree": 2 } }, { "key": "Japan_JapaneseChinaLeasedTerritory_RepublicofChinaTaiwanFormosa", "attributes": { "label": "Japan & Japanese China Leased Territory & Republic of China (Taiwan) (Formosa)", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.002133461264133612, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "26704904", "weightedOutDegree": "7470068", "inDegree": 1, "outDegree": 1 } }, { "key": "GoldCoastTogolandNeutralZone", "attributes": { "label": "Gold Coast-Togoland (Neutral Zone)", "type": "GPH_entity", "GPH_status": "GPH_entity", "continent": "Africa", "pagerank": 0.0005274907199293991, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "3398832", "weightedOutDegree": "1941059", "inDegree": 1, "outDegree": 1 } }, { "key": "BritishCameroons_Nigeria", "attributes": { "label": "British Cameroons & Nigeria", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.0007144977150481208, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "6112704", "weightedOutDegree": "9420288", "inDegree": 1, "outDegree": 1 } }, { "key": "ZambiaNorthernRhodesia_ZimbabweRhodesiaSouthernRhodesia", "attributes": { "label": "Zambia (Northern Rhodesia) & Zimbabwe (Rhodesia) (Southern Rhodesia)", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.0003665954462585951, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "1063897", "weightedOutDegree": "612753", "inDegree": 1, "outDegree": 1 } }, { "key": "BotswanaBechuanaland", "attributes": { "label": "Botswana (Bechuanaland)", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Africa", "pagerank": 0.0002935282845239655, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "3536", "weightedOutDegree": "1093", "inDegree": 1, "outDegree": 1 } }, { "key": "LesothoBasutoland", "attributes": { "label": "Lesotho (Basutoland)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "Africa", "pagerank": 0.00029585537041163976, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "37307", "weightedOutDegree": "478", "inDegree": 1, "outDegree": 1 } }, { "key": "SomalilandRepublicBritishSomaliland", "attributes": { "label": "Somaliland Republic (British Somaliland)", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Africa", "reporting": 1, "world_Exp": "255182", "world_Imp": "375233", "pagerank": 0.0004069582454323213, "RIX": 0, "inHerfindahl": "0.9023285270021736", "outHerfindahl": "0.8863225601063756", "herfindahl": "0.4630912896966629", "weightedInDegree": "379129.0638297922", "weightedOutDegree": "265718.4481665913", "inDegree": 4, "outDegree": 3, "worldTradePart": 0.00004651460321379723 } }, { "key": "Mauritius_MauritiusDependencies", "attributes": { "label": "Mauritius & Mauritius Dependencies", "type": "group", "GPH_status": "group", "continent": "World", "pagerank": 0.0004360038836784697, "RIX": 0, "inHerfindahl": "0.5006255624007384", "outHerfindahl": "0.5104466156758035", "herfindahl": "0.504215892198321", "weightedInDegree": "2556666.4698964795", "weightedOutDegree": "6168374.8107753005", "inDegree": 2, "outDegree": 2 } }, { "key": "Aden_AdenDependencies", "attributes": { "label": "Aden & Aden Dependencies", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.0003848825318087989, "RIX": 0, "inHerfindahl": "0.5317578536657961", "outHerfindahl": "0.3425628284092614", "herfindahl": "0.4169901105575537", "weightedInDegree": "1725518.8234500138", "weightedOutDegree": "1045471.7270259906", "inDegree": 2, "outDegree": 3 } }, { "key": "StraitsSettlements_StraitsSettlementsDependencies", "attributes": { "label": "Straits Settlements & Straits Settlements Dependencies", "type": "group", "GPH_status": "group", "continent": "World", "pagerank": 0.0008713725350878699, "RIX": 0, "inHerfindahl": "0.976223593136728", "outHerfindahl": "0.90665366530007", "herfindahl": "0.9360252746235549", "weightedInDegree": "8390150.391015094", "weightedOutDegree": "11103751.067469334", "inDegree": 3, "outDegree": 3 } }, { "key": "Johore_Kedah_Kelantan_Perlis_Trengganu", "attributes": { "label": "Johore & Kedah & Kelantan & Perlis & Trengganu", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.0002983916165583199, "RIX": 0, "inHerfindahl": "0.5343976005937431", "outHerfindahl": "0.9436643032884338", "herfindahl": "0.7977398716585593", "weightedInDegree": "120093", "weightedOutDegree": "359194", "inDegree": 2, "outDegree": 2 } }, { "key": "SriLankaCeylon_SriLankaCeylonDependencies", "attributes": { "label": "Sri Lanka (Ceylon) & Sri Lanka (Ceylon) Dependencies", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.000590276904276474, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9987616464973956", "herfindahl": "0.9990594329241811", "weightedInDegree": "4309994", "weightedOutDegree": "13604803", "inDegree": 1, "outDegree": 2 } }, { "key": "Weihaiwei", "attributes": { "label": "Weihaiwei", "type": "GPH_entity", "GPH_status": "Leased to", "part_of": "United Kingdom", "continent": "Asia", "pagerank": 0.0002942582250293735, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "14129", "weightedOutDegree": "935", "inDegree": 1, "outDegree": 1 } }, { "key": "Nauru_SamoaWesternSamoaGermanSamoa", "attributes": { "label": "Nauru & Samoa (Western Samoa) (German Samoa)", "type": "group", "GPH_status": "group", "continent": "Oceania", "pagerank": 0.00029439156165525515, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "16064", "weightedOutDegree": "141485", "inDegree": 1, "outDegree": 1 } }, { "key": "BritishOceaniaother", "attributes": { "label": "British Oceania (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Oceania", "pagerank": 0.00029746210978921084, "RIX": 0, "inHerfindahl": "0.6636775692728208", "outHerfindahl": "1", "herfindahl": "0.6843444629259563", "weightedInDegree": "66913.47995220103", "weightedOutDegree": "5956", "inDegree": 3, "outDegree": 1 } }, { "key": "BritishWestIndiesother_Jamaica_JamaicaDependencies_TrinidadandTobago", "attributes": { "label": "British West Indies (other) & Jamaica & Jamaica Dependencies & Trinidad and Tobago", "type": "colonial_area", "GPH_status": "colonial_area", "continent": "America", "pagerank": 0.0005536658365689505, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "3778689", "weightedOutDegree": "4791007", "inDegree": 1, "outDegree": 1 } }, { "key": "Macao", "attributes": { "label": "Macao", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Portugal", "continent": "Asia", "pagerank": 0.00036946029209368914, "RIX": 0, "inHerfindahl": "0.9849272424335189", "outHerfindahl": "1", "herfindahl": "0.9939506585987851", "weightedInDegree": "938457.700539239", "weightedOutDegree": "1410562.7257785955", "inDegree": 3, "outDegree": 1 } }, { "key": "PacificIslandsother", "attributes": { "label": "Pacific Islands (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Pacific", "pagerank": 0.0002935314256136552, "RIX": 0, "inHerfindahl": "0.7655889819375978", "outHerfindahl": "0", "herfindahl": "0.7655889819375978", "weightedInDegree": "3769.045722046406", "weightedOutDegree": "0", "inDegree": 2, "outDegree": 0 } }, { "key": "EswatiniSwaziland", "attributes": { "label": "Eswatini (Swaziland)", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Africa", "pagerank": 0.00029340666222697266, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "1771", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "KwangtungTerritoryLeased", "attributes": { "label": "Kwangtung Territory (Leased)", "type": "GPH_entity", "GPH_status": "Leased to", "part_of": "Japan", "continent": "Asia", "pagerank": 0.0007616740149245324, "RIX": 0, "inHerfindahl": "0.6435021306823722", "outHerfindahl": "0.9266788308243069", "herfindahl": "0.8143970282546754", "weightedInDegree": "8872679.816177666", "weightedOutDegree": "17225028.000087716", "inDegree": 3, "outDegree": 3 } }, { "key": "BritishBorneo_StraitsSettlements", "attributes": { "label": "British Borneo & Straits Settlements", "type": "colonial_area", "GPH_status": "colonial_area", "continent": "Asia", "pagerank": 0.0002988122751092546, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "29393.569506407937", "weightedOutDegree": "25230.6709837209", "inDegree": 1, "outDegree": 1 } }, { "key": "AustriaHungaryAustrianEmpire", "attributes": { "label": "Austria-Hungary (Austrian Empire)", "type": "GPH_entity", "GPH_status": "GPH_entity", "continent": "Europe", "pagerank": 0.0002945867775979067, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9952625943458596", "herfindahl": "0.9961760944980993", "weightedInDegree": "16023.457025303378", "weightedOutDegree": "66952.11640360436", "inDegree": 1, "outDegree": 3 } }, { "key": "CapeColonyCapeofGoodHope_Natal", "attributes": { "label": "Cape Colony (Cape of Good Hope) & Natal", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.0003240097519164683, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "543540.7217614712", "weightedOutDegree": "93478.74583766384", "inDegree": 1, "outDegree": 1 } }, { "key": "AzoresWesternIsles_MadeiraIsles_Portugal", "attributes": { "label": "Azores (Western Isles) & Madeira Isles & Portugal", "type": "group", "GPH_status": "group", "continent": "World", "pagerank": 0.00029479590883515306, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.5006206471031978", "herfindahl": "0.502246639013311", "weightedInDegree": "19693.752829304227", "weightedOutDegree": "577789.0986552298", "inDegree": 1, "outDegree": 2 } }, { "key": "FrenchAfricaother", "attributes": { "label": "French Africa (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "France", "continent": "Africa", "pagerank": 0.0003136576392379605, "RIX": 0, "inHerfindahl": "0.9835692205225357", "outHerfindahl": "0.5734176060737312", "herfindahl": "0.8260198676310091", "weightedInDegree": "593189.2258940622", "weightedOutDegree": "287923.72114088596", "inDegree": 2, "outDegree": 3 } }, { "key": "BritishAfricaother", "attributes": { "label": "British Africa (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "America", "pagerank": 0.00029966896103617393, "RIX": 0, "inHerfindahl": "0.5193705698313866", "outHerfindahl": "0.5726358402586869", "herfindahl": "0.5535602198311572", "weightedInDegree": "83301.97510182712", "weightedOutDegree": "201809.7062018683", "inDegree": 2, "outDegree": 2 } }, { "key": "Syria_WesternAnatolia", "attributes": { "label": "Syria & Western Anatolia", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.00029371393509748694, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "5594.386600263005", "weightedOutDegree": "17614.757808936218", "inDegree": 1, "outDegree": 1 } }, { "key": "SouthWestAsiaother", "attributes": { "label": "South West Asia (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Asia", "pagerank": 0.000293409358039967, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "1625.3961068331705", "weightedOutDegree": "52730.87369842495", "inDegree": 1, "outDegree": 1 } }, { "key": "India_SriLankaCeylon", "attributes": { "label": "India & Sri Lanka (Ceylon)", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.00029662627191415393, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "43545.49569934447", "weightedOutDegree": "1094571.978269026", "inDegree": 1, "outDegree": 1 } }, { "key": "JapanChina", "attributes": { "label": "Japan China", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "People's Republic of China (China)", "continent": "Asia", "pagerank": 0.00029341441440536965, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "2569.502377179651", "weightedOutDegree": "114826.91600636461", "inDegree": 1, "outDegree": 1 } }, { "key": "Guam", "attributes": { "label": "Guam", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United States of America", "continent": "Oceania", "pagerank": 0.00029429314886448606, "RIX": 0, "inHerfindahl": "0.9863269952982394", "outHerfindahl": "1", "herfindahl": "0.9863951029682156", "weightedInDegree": "19999.332481810725", "weightedOutDegree": "100.81774960382585", "inDegree": 2, "outDegree": 1 } }, { "key": "AzoresWesternIsles_MadeiraIsles", "attributes": { "label": "Azores (Western Isles) & Madeira Isles", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.00030269374221910246, "RIX": 0, "inHerfindahl": "0.6225606440995066", "outHerfindahl": "0.9437620366654821", "herfindahl": "0.8338772693829459", "weightedInDegree": "267965.0240819559", "weightedOutDegree": "690897.2729700161", "inDegree": 2, "outDegree": 3 } }, { "key": "Palestine_Syria", "attributes": { "label": "Palestine & Syria", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.00031700429296675623, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9995519627475423", "herfindahl": "0.9997627077421624", "weightedInDegree": "697827.0710728837", "weightedOutDegree": "785599.2869151484", "inDegree": 1, "outDegree": 3 } }, { "key": "CarolineIs", "attributes": { "label": "Caroline Is.", "type": "GPH_entity", "GPH_status": "Mandated to", "part_of": "Japan", "continent": "Oceania", "pagerank": 0.0002932891732661324, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "90.0158478605588", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "Estonia_Latvia", "attributes": { "label": "Estonia & Latvia", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.0003073613747274809, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "206305.11543706406", "weightedOutDegree": "13264.825713006116", "inDegree": 1, "outDegree": 1 } }, { "key": "IranPersia_IraqMesopotamia", "attributes": { "label": "Iran (Persia) & Iraq (Mesopotamia)", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.00029692186934015803, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "53306.473517484206", "weightedOutDegree": "224554.54957017495", "inDegree": 1, "outDegree": 1 } }, { "key": "GuineaBissauPortugueseGuinea", "attributes": { "label": "Guinea-Bissau (Portuguese Guinea)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Portugal", "continent": "Africa", "world_Exp": "367301.23180291156", "world_Imp": "460619.63419186266", "pagerank": 0.0003041090654942175, "RIX": 0, "inHerfindahl": "0.9939465209299265", "outHerfindahl": "1", "herfindahl": "0.9967524038694673", "weightedInDegree": "66572.39833059306", "weightedOutDegree": "57693.169092945136", "inDegree": 2, "outDegree": 1, "worldTradePart": 0.00006108739572213592 } }, { "key": "SaoTomePrincipe", "attributes": { "label": "Sao Tome-Principe", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Portugal", "continent": "Africa", "pagerank": 0.0003253997198939711, "RIX": 0, "inHerfindahl": "0.5000576663696957", "outHerfindahl": "0.7975100151800218", "herfindahl": "0.5285007542980549", "weightedInDegree": "179158.45560652067", "weightedOutDegree": "76695.57893186885", "inDegree": 2, "outDegree": 2 } }, { "key": "EastTimorPortugueseTimor_Macao", "attributes": { "label": "East Timor (Portuguese Timor) & Macao", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.00029431490518444146, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "6340.425531914894", "weightedOutDegree": "195.59537140724152", "inDegree": 1, "outDegree": 1 } }, { "key": "DodecaneseIsAegeanIs", "attributes": { "label": "Dodecanese Is. (Aegean Is.)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Italy", "continent": "Europe", "pagerank": 0.00029826779399995835, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "38486.215482134285", "weightedOutDegree": "54818.24354913958", "inDegree": 1, "outDegree": 1 } }, { "key": "Colón", "attributes": { "label": "Colón", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Panama", "continent": "America", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "2533", "inDegree": 0, "outDegree": 1 } }, { "key": "PrinceEdwardIs", "attributes": { "label": "Prince Edward Is.", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Canada (Province of Canada)", "continent": "America", "pagerank": 0.00029695658124633385, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "8064", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "Tenerife", "attributes": { "label": "Tenerife", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Canary Is.", "continent": "Africa", "pagerank": 0.00029360337255627714, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "0.782895076918739", "weightedInDegree": "700", "weightedOutDegree": "99", "inDegree": 1, "outDegree": 1 } }, { "key": "FranceFrenchproduce", "attributes": { "label": "France (French produce)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "France", "continent": "Europe", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "0.14677807703364074", "herfindahl": "0.14677807703364074", "weightedInDegree": "0", "weightedOutDegree": "10419407.540855238", "inDegree": 0, "outDegree": 20 } }, { "key": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "label": "Mali (French Sudan) (Upper Senegal and Niger)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French West Africa", "continent": "Africa", "reporting": 1, "world_Exp": "57446.32947034662", "world_Imp": "620302.6465821428", "pagerank": 0.00035084076408569673, "RIX": 0, "inHerfindahl": "0.30444950731794207", "outHerfindahl": "1", "herfindahl": "0.2622003125331258", "weightedInDegree": "620091.765595271", "weightedOutDegree": "57446.32947034662", "inDegree": 16, "outDegree": 1, "worldTradePart": 0.00005000709802215827 } }, { "key": "BurkinaFasoUpperVolta", "attributes": { "label": "Burkina Faso (Upper Volta)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Mali (French Sudan) (Upper Senegal and Niger)", "continent": "Africa", "reporting": 1, "world_Exp": "141580.4208465321", "world_Imp": "58384.84101403152", "pagerank": 0.0003330338090695577, "RIX": 0, "inHerfindahl": "0.9367498711959681", "outHerfindahl": "1", "herfindahl": "0.981090612965553", "weightedInDegree": "58384.84101403152", "weightedOutDegree": "141580.4208465321", "inDegree": 2, "outDegree": 1, "worldTradePart": 0.000014754256818107404 } }, { "key": "Gabon", "attributes": { "label": "Gabon", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French Equatorial Africa", "continent": "Africa", "reporting": 1, "world_Exp": "249769.06738342295", "world_Imp": "282877.5243775368", "pagerank": 0.00030636139432222304, "RIX": 0, "inHerfindahl": "0.3837112921342703", "outHerfindahl": "0.317397231297034", "herfindahl": "0.19791911923426223", "weightedInDegree": "282877.5243775368", "weightedOutDegree": "248585.16727024963", "inDegree": 11, "outDegree": 9, "worldTradePart": 0.00003930084923255709 } }, { "key": "CentralAfricanRepublicUbangiShari", "attributes": { "label": "Central African Republic (Ubangi Shari)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French Equatorial Africa", "continent": "Africa", "reporting": 1, "world_Exp": "26799.961860569485", "world_Imp": "35265.660344045886", "pagerank": 0.00038191032585706855, "RIX": 0, "inHerfindahl": "0.2993900937889933", "outHerfindahl": "0.6854968001147155", "herfindahl": "0.33060175878463793", "weightedInDegree": "35265.66034404588", "weightedOutDegree": "19698.277682208478", "inDegree": 10, "outDegree": 5, "worldTradePart": 0.0000045794560568278474 } }, { "key": "Chad", "attributes": { "label": "Chad", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French Equatorial Africa", "continent": "Africa", "reporting": 1, "world_Exp": "65123.96473517208", "world_Imp": "21273.457084652968", "pagerank": 0.00030324680891530027, "RIX": 0, "inHerfindahl": "0.48014315066468477", "outHerfindahl": "0.9334350370488896", "herfindahl": "0.7879512780037514", "weightedInDegree": "21273.457084652968", "weightedOutDegree": "65122.86380715035", "inDegree": 8, "outDegree": 5, "worldTradePart": 0.000006374755985571774 } }, { "key": "Guadeloupe_GuadeloupeDependencies", "attributes": { "label": "Guadeloupe & Guadeloupe Dependencies", "type": "group", "GPH_status": "group", "continent": "America", "reporting": 1, "world_Exp": "2167871.993549044", "world_Imp": "1274651.823698463", "pagerank": 0.0007073862485017015, "RIX": 0, "inHerfindahl": "0.4922482060100239", "outHerfindahl": "0.9595005894626063", "herfindahl": "0.44899581180709347", "weightedInDegree": "1274651.823698463", "weightedOutDegree": "2167871.993549044", "inDegree": 13, "outDegree": 7, "worldTradePart": 0.0002540035205591783 } }, { "key": "FrenchColoniesFrenchproduce", "attributes": { "label": "French Colonies (French produce)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "France", "continent": "World", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "0.19151249427631306", "herfindahl": "0.19151249427631306", "weightedInDegree": "0", "weightedOutDegree": "1086696.5737890077", "inDegree": 0, "outDegree": 19 } }, { "key": "FranceForeignproduce", "attributes": { "label": "France (Foreign produce)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "France", "continent": "Europe", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "0.5030619754646379", "herfindahl": "0.5030619754646379", "weightedInDegree": "0", "weightedOutDegree": "360922.5604345735", "inDegree": 0, "outDegree": 9 } }, { "key": "Norway_Sweden", "attributes": { "label": "Norway & Sweden", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.0003048227509298006, "RIX": 0, "inHerfindahl": "0.8922161879294042", "outHerfindahl": "0.44033644209529216", "herfindahl": "0.3114829713295436", "weightedInDegree": "29528.84280217193", "weightedOutDegree": "41020.909619736056", "inDegree": 2, "outDegree": 8 } }, { "key": "FrenchColoniesForeignproduce", "attributes": { "label": "French Colonies (Foreign produce)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "France", "continent": "World", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "0.40663299271707287", "herfindahl": "0.40663299271707287", "weightedInDegree": "0", "weightedOutDegree": "5510.014531462013", "inDegree": 0, "outDegree": 4 } }, { "key": "SpanishColonies", "attributes": { "label": "Spanish Colonies", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Spain", "continent": "World", "pagerank": 0.00029335015946007156, "RIX": 0, "inHerfindahl": "0.9318204527514622", "outHerfindahl": "0.35157950874518507", "herfindahl": "0.3565310786036316", "weightedInDegree": "723.5699411498407", "weightedOutDegree": "26286.959053870287", "inDegree": 2, "outDegree": 5 } }, { "key": "AmericanColonies", "attributes": { "label": "American Colonies", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United States of America", "continent": "World", "pagerank": 0.00029328582827052113, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.686922448979592", "herfindahl": "0.7635578907862639", "weightedInDegree": "4.332684472611895", "weightedOutDegree": "10.358193752828981", "inDegree": 1, "outDegree": 2 } }, { "key": "DutchColoniesother", "attributes": { "label": "Dutch Colonies (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Netherlands", "continent": "World", "pagerank": 0.0006580017052364032, "RIX": 0, "inHerfindahl": "0.9941935780416902", "outHerfindahl": "0.9968757668025083", "herfindahl": "0.9961395670123357", "weightedInDegree": "10005489.80722046", "weightedOutDegree": "26514050.392915346", "inDegree": 5, "outDegree": 6 } }, { "key": "Bahrain", "attributes": { "label": "Bahrain", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Asia", "pagerank": 0.00032212491546301276, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "661003.7397015216", "weightedOutDegree": "242996.41059313854", "inDegree": 1, "outDegree": 1 } }, { "key": "MaldiveIslands", "attributes": { "label": "Maldive Islands", "type": "GPH_entity", "GPH_status": "Protectorate of", "part_of": "United Kingdom", "continent": "Asia", "pagerank": 0.00029466143039755277, "RIX": 0, "inHerfindahl": "0.535197550245748", "outHerfindahl": "0.9742847798941157", "herfindahl": "0.8838102395568763", "weightedInDegree": "24703.73426891114", "weightedOutDegree": "288309.3232233084", "inDegree": 2, "outDegree": 2 } }, { "key": "LabuanI_StraitsSettlements", "attributes": { "label": "Labuan I. & Straits Settlements", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.0005455250043154083, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "5781212.288368394", "weightedOutDegree": "3495220.631056358", "inDegree": 1, "outDegree": 1 } }, { "key": "TransvaalSouthAfricanRepublic", "attributes": { "label": "Transvaal (South African Republic)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "South Africa", "continent": "Africa", "pagerank": 0.0002943539437088979, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "24508.16930739", "weightedOutDegree": "1027.345857854698", "inDegree": 1, "outDegree": 1 } }, { "key": "AustralianNorthernTerritory_SouthAustralia", "attributes": { "label": "Australian Northern Territory & South Australia", "type": "group", "GPH_status": "group", "part_of": "Australia", "continent": "Oceania", "pagerank": 0.0003285173342507609, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "807514.5020374864", "weightedOutDegree": "27515.92530558059", "inDegree": 1, "outDegree": 1 } }, { "key": "Nauru_NewZealand_SamoaWesternSamoaGermanSamoa", "attributes": { "label": "Nauru & New Zealand & Samoa (Western Samoa) (German Samoa)", "type": "group", "GPH_status": "group", "continent": "Oceania", "pagerank": 0.0003170688307290115, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "545121.0271618584", "weightedOutDegree": "99263.07378908976", "inDegree": 1, "outDegree": 1 } }, { "key": "HengamIs", "attributes": { "label": "Hengam Is.", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Iran (Persia)", "continent": "Asia", "pagerank": 0.00029353273443444105, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "5686.499320962284", "weightedOutDegree": "190.81439565422852", "inDegree": 1, "outDegree": 1 } }, { "key": "Eritrea_ItalianSomaliland", "attributes": { "label": "Eritrea & Italian Somaliland", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.0002971936480772565, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "89592.64916255754", "weightedOutDegree": "77734.37301950101", "inDegree": 1, "outDegree": 1 } }, { "key": "DominicanRepublicSantoDomingo_Haiti", "attributes": { "label": "Dominican Republic (Santo Domingo) & Haiti", "type": "group", "GPH_status": "group", "continent": "America", "pagerank": 0.00029873648804153635, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "124953.70212771614", "weightedOutDegree": "144.96423721147352", "inDegree": 1, "outDegree": 1 } }, { "key": "ArgentinaLaPlata_PatagoniaAtlanticCoast", "attributes": { "label": "Argentina (La Plata) & Patagonia (Atlantic Coast)", "type": "group", "GPH_status": "group", "continent": "America", "pagerank": 0.000451339233789949, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "3622525.647353383", "weightedOutDegree": "68.16342236309107", "inDegree": 1, "outDegree": 1 } }, { "key": "GhanaGoldCoast_GoldCoastTogolandNeutralZone", "attributes": { "label": "Ghana (Gold Coast) & Gold Coast-Togoland (Neutral Zone)", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.00029381988492914246, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "12267.832503400756", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "Armenia", "attributes": { "label": "Armenia", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Russia (USSR)", "continent": "Europe", "pagerank": 0.0002944564492895247, "RIX": 0, "inHerfindahl": "0.8684295724754514", "outHerfindahl": "1", "herfindahl": "0.8484970294017835", "weightedInDegree": "26498.110909925137", "weightedOutDegree": "340", "inDegree": 2, "outDegree": 1 } }, { "key": "Guadeloupe_Martinique", "attributes": { "label": "Guadeloupe & Martinique", "type": "group", "GPH_status": "group", "continent": "America", "pagerank": 0.00029606732785882614, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "63778.002263496506", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "Chile_PatagoniaPacificCoast", "attributes": { "label": "Chile & Patagonia (Pacific Coast)", "type": "group", "GPH_status": "group", "continent": "America", "pagerank": 0.0003516562562038386, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "1337846.0099598633", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "BritishWestIndiesother", "attributes": { "label": "British West Indies (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "America", "pagerank": 0.0003555543434573405, "RIX": 0, "inHerfindahl": "0.5442785339559958", "outHerfindahl": "0.514401202432988", "herfindahl": "0.530505131438044", "weightedInDegree": "1750344.668772413", "weightedOutDegree": "1106327.0408078523", "inDegree": 3, "outDegree": 3 } }, { "key": "Cyprus_Gozo_Malta", "attributes": { "label": "Cyprus & Gozo & Malta", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.0003029709904477068, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "284970.5749207786", "weightedOutDegree": "26708.918062471705", "inDegree": 1, "outDegree": 1 } }, { "key": "Albania_YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "label": "Albania & Yugoslavia (Kingdom of Serbs, Croats and Slovenes)", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.00029698529452675264, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "108872.79311905839", "weightedOutDegree": "155273.87958352195", "inDegree": 1, "outDegree": 1 } }, { "key": "Arabia_HejazSultanate_IraqMesopotamia", "attributes": { "label": "Arabia & Hejaz Sultanate & Iraq (Mesopotamia)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Asia", "pagerank": 0.00029589278961573013, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9999933196746373", "herfindahl": "0.9999938549184051", "weightedInDegree": "76731.55273879583", "weightedOutDegree": "880944.545043006", "inDegree": 1, "outDegree": 2 } }, { "key": "BritishEastIndiesother", "attributes": { "label": "British East Indies (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Asia", "pagerank": 0.00029554506489243407, "RIX": 0, "inHerfindahl": "0.9891919053310885", "outHerfindahl": "0.568016267421022", "herfindahl": "0.8711849444502553", "weightedInDegree": "66454.33923886703", "weightedOutDegree": "17197.266359810088", "inDegree": 2, "outDegree": 2 } }, { "key": "Java_Madura", "attributes": { "label": "Java & Madura", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.00036655939248714947, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "2155726.5731100044", "weightedOutDegree": "8592802.172928927", "inDegree": 1, "outDegree": 1 } }, { "key": "PortugueseAfricaother", "attributes": { "label": "Portuguese Africa (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Portugal", "continent": "Africa", "pagerank": 0.00029863943928639937, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "157537.3472159348", "weightedOutDegree": "2585785.423268447", "inDegree": 1, "outDegree": 1 } }, { "key": "FaeroeIs_Iceland", "attributes": { "label": "Faeroe Is. & Iceland", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.0002942078700698574, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "27161.611588954278", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "Kamerun", "attributes": { "label": "Kamerun", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Cameroun (French Cameroons)", "continent": "Africa", "reporting": 1, "world_Exp": "112000", "world_Imp": "46000", "pagerank": 0.00029553322600010844, "RIX": 0, "inHerfindahl": "0.8344159259268875", "outHerfindahl": "0.7881058673469388", "herfindahl": "0.7976053038531002", "weightedInDegree": "33005.829922528144", "weightedOutDegree": "112000", "inDegree": 3, "outDegree": 3, "worldTradePart": 0.000011657887752956328 } }, { "key": "MadagascarMalagasyRepublic_ReunionBourbonI", "attributes": { "label": "Madagascar (Malagasy Republic) & Reunion (Bourbon I.)", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.00029330868608589593, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "415.84777290949194", "weightedOutDegree": "0.7212275292547916", "inDegree": 1, "outDegree": 1 } }, { "key": "WestIndiesother", "attributes": { "label": "West Indies (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "America", "pagerank": 0.00030603877505117646, "RIX": 0, "inHerfindahl": "0.893128859514882", "outHerfindahl": "0.6040647151658626", "herfindahl": "0.6990711816344557", "weightedInDegree": "126210.43644376818", "weightedOutDegree": "18259.982214898628", "inDegree": 4, "outDegree": 3 } }, { "key": "CentralAmericaother", "attributes": { "label": "Central America (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "America", "pagerank": 0.00029444876144070617, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "20120.98591803249", "weightedOutDegree": "594081.2462811705", "inDegree": 1, "outDegree": 1 } }, { "key": "Spitsbergen", "attributes": { "label": "Spitsbergen", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Svalbard Is.", "continent": "Europe", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "124755.59402102377", "inDegree": 0, "outDegree": 1 } }, { "key": "Crete_Greece", "attributes": { "label": "Crete & Greece", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.0002934935251232514, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.8480686467225618", "herfindahl": "0.8330222967920824", "weightedInDegree": "3830.3304662675355", "weightedOutDegree": "381526.4207295467", "inDegree": 1, "outDegree": 2 } }, { "key": "Kwanchowan", "attributes": { "label": "Kwanchowan", "type": "GPH_entity", "GPH_status": "Leased to", "part_of": "France", "continent": "Asia", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "27841.458333333336", "inDegree": 0, "outDegree": 1 } }, { "key": "WesternAsiaother", "attributes": { "label": "Western Asia (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Asia", "pagerank": 0.00029367520496561303, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "5950.837483045006", "weightedOutDegree": "118128.56496193817", "inDegree": 1, "outDegree": 1 } }, { "key": "BritishEquatorialEastAfrica", "attributes": { "label": "British Equatorial East Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Africa", "pagerank": 0.00029943024612203887, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "93634.40470834331", "weightedOutDegree": "535259.5744699752", "inDegree": 1, "outDegree": 1 } }, { "key": "FrenchEquatorialWestAfrica", "attributes": { "label": "French Equatorial West Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "France", "continent": "Africa", "pagerank": 0.00030120630947048227, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "120694.43187005044", "weightedOutDegree": "138981.1679497891", "inDegree": 1, "outDegree": 1 } }, { "key": "PortugueseEquatorialWestAfrica", "attributes": { "label": "Portuguese Equatorial West Africa", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Portugal", "continent": "Africa", "pagerank": 0.00029524010979779363, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "29793.662290734446", "weightedOutDegree": "183074.60389381077", "inDegree": 1, "outDegree": 1 } }, { "key": "EquatorialGuineaSpanishGuinea", "attributes": { "label": "Equatorial Guinea (Spanish Guinea)", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Spain", "continent": "Africa", "pagerank": 0.00030108324162358063, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "118819.37528335302", "weightedOutDegree": "59084.019918723796", "inDegree": 1, "outDegree": 1 } }, { "key": "EquatorialWestAfricaother", "attributes": { "label": "Equatorial West Africa (other)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Africa", "pagerank": 0.00029335717174019883, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "1105.296514263749", "weightedOutDegree": "3661.2947034986682", "inDegree": 1, "outDegree": 1 } }, { "key": "BritishCentralAmerica", "attributes": { "label": "British Central America", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "America", "pagerank": 0.00029451271405005403, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "18711.090991464895", "weightedOutDegree": "69288.27523790876", "inDegree": 1, "outDegree": 1 } }, { "key": "Hamburg", "attributes": { "label": "Hamburg", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Germany (Zollverein)", "continent": "Europe", "pagerank": 0.0005332347913770763, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "5388597.668642974", "weightedOutDegree": "4671997.397024912", "inDegree": 1, "outDegree": 1 } }, { "key": "BritishAsiaother", "attributes": { "label": "British Asia (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Asia", "pagerank": 0.000319363704185079, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.9972570278988433", "herfindahl": "0.6347336450502867", "weightedInDegree": "340569.6505207517", "weightedOutDegree": "1082001.948848567", "inDegree": 1, "outDegree": 2 } }, { "key": "DutchAsia", "attributes": { "label": "Dutch Asia", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Netherlands", "continent": "Asia", "pagerank": 0.00029681336222145313, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "79245.35989156879", "weightedOutDegree": "80667.60977839927", "inDegree": 1, "outDegree": 1 } }, { "key": "Australia_Oceania", "attributes": { "label": "Australia & Oceania", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Oceania", "pagerank": 0.0002992009378853522, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "132863.5129021264", "weightedOutDegree": "35309.1896786835", "inDegree": 1, "outDegree": 1 } }, { "key": "FederatedMalayStates_StraitsSettlements", "attributes": { "label": "Federated Malay States & Straits Settlements", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.001162863521031756, "RIX": 0, "inHerfindahl": "0.5049325280349864", "outHerfindahl": "0.501247877933875", "herfindahl": "0.5035763553048194", "weightedInDegree": "8542420.76", "weightedOutDegree": "3639763.6399999997", "inDegree": 2, "outDegree": 2 } }, { "key": "Japan_KoreaChosen_RepublicofChinaTaiwanFormosa", "attributes": { "label": "Japan & Korea (Chosen) & Republic of China (Taiwan) (Formosa)", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.0005377224061917638, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "3523793", "weightedOutDegree": "9127732", "inDegree": 1, "outDegree": 1 } }, { "key": "Internationalwaters", "attributes": { "label": "International waters", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "World", "pagerank": 0.000293298929994822, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "66", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "VictoriaCameroun", "attributes": { "label": "Victoria (Cameroun)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Cameroun (French Cameroons)", "continent": "Africa", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "19", "inDegree": 0, "outDegree": 1 } }, { "key": "Denmark_Iceland", "attributes": { "label": "Denmark & Iceland", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.00044373697813465316, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "2031643.74105544", "weightedOutDegree": "591840.3472148095", "inDegree": 1, "outDegree": 1 } }, { "key": "Fiume_Italy", "attributes": { "label": "Fiume & Italy", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.00040519204326600365, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "1511149.5459455196", "weightedOutDegree": "1248903.865547648", "inDegree": 1, "outDegree": 1 } }, { "key": "AmiranteIs_Mauritius_Seychelles", "attributes": { "label": "Amirante Is. & Mauritius & Seychelles", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.00029466721841035456, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "18669.92575822616", "weightedOutDegree": "1321.9551833383646", "inDegree": 1, "outDegree": 1 } }, { "key": "DjiboutiAfarandIssasFrenchSomaliland_Eritrea", "attributes": { "label": "Djibouti (Afar and Issas) (French Somaliland) & Eritrea", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.0002934021166383792, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "1586.5364418258653", "weightedOutDegree": "2682.5599818871583", "inDegree": 1, "outDegree": 1 } }, { "key": "Aden_Othercountries", "attributes": { "label": "Aden & Other countries", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "World", "pagerank": 0.00029347589935457835, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "2582.866455404777", "weightedOutDegree": "1245.0882752352968", "inDegree": 1, "outDegree": 1 } }, { "key": "ArabiaAsia", "attributes": { "label": "Arabia (Asia)", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Asia", "pagerank": 0.00029570220621419975, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "32645.955183278806", "weightedOutDegree": "3634.0149388794644", "inDegree": 1, "outDegree": 1 } }, { "key": "FrenchAsia_FrenchIndia", "attributes": { "label": "French Asia & French India", "type": "colonial_area", "GPH_status": "colonial_area", "continent": "Asia", "pagerank": 0.0002952633261539967, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "26719.507922085908", "weightedOutDegree": "12800.977365299337", "inDegree": 1, "outDegree": 1 } }, { "key": "Japan_KoreaChosen", "attributes": { "label": "Japan & Korea (Chosen)", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.00033824615658718327, "RIX": 0, "inHerfindahl": "0.5199769284507468", "outHerfindahl": "0.9738723842371484", "herfindahl": "0.7633201897700936", "weightedInDegree": "678697.6011757471", "weightedOutDegree": "1440024.3603413114", "inDegree": 2, "outDegree": 2 } }, { "key": "Afghanistan_IranPersia", "attributes": { "label": "Afghanistan & Iran (Persia)", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.0002941679060603409, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "11927.426889972794", "weightedOutDegree": "381.30828429080964", "inDegree": 1, "outDegree": 1 } }, { "key": "CostaRica_ElSalvador_Guatemala_Honduras", "attributes": { "label": "Costa Rica & El Salvador & Guatemala & Honduras", "type": "group", "GPH_status": "group", "continent": "America", "pagerank": 0.0002979422668943883, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "62894.769578875435", "weightedOutDegree": "655911.8116782459", "inDegree": 1, "outDegree": 1 } }, { "key": "Polynesia", "attributes": { "label": "Polynesia", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "Oceania", "pagerank": 0.0002934489167661844, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "2218.505205971336", "weightedOutDegree": "17.292892711601343", "inDegree": 1, "outDegree": 1 } }, { "key": "BritishWestAfricaother", "attributes": { "label": "British West Africa (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Africa", "pagerank": 0.0002941687791004743, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "23002.619148888538", "weightedOutDegree": "12432.45058315238", "inDegree": 1, "outDegree": 1 } }, { "key": "ItalianAfricaother", "attributes": { "label": "Italian Africa (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Italy", "continent": "Africa", "pagerank": 0.0002932849448485768, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "8.282778536410646", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "Bangkok", "attributes": { "label": "Bangkok", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Thailand (Siam)", "continent": "Asia", "reporting": 1, "world_Exp": "13271319.68", "world_Imp": "12240531.44", "pagerank": 0.0020025985923559767, "RIX": 0, "inHerfindahl": "0.13456796750090144", "outHerfindahl": "0.2694056501820961", "herfindahl": "0.18126997475781695", "weightedInDegree": "12240531.44", "weightedOutDegree": "13271319.680000005", "inDegree": 34, "outDegree": 35, "worldTradePart": 0.0018823689666271717 } }, { "key": "DutchIndia", "attributes": { "label": "Dutch India", "type": "colonial_area", "GPH_status": "colonial_area", "continent": "Asia", "pagerank": 0.0003572218352772819, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "498095.6", "weightedOutDegree": "436615.44", "inDegree": 1, "outDegree": 1 } }, { "key": "CambodiaKampuchea", "attributes": { "label": "Cambodia (Kampuchea)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "French Indochina", "continent": "Asia", "pagerank": 0.00029332508660401035, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "315.2", "weightedOutDegree": "25433.36", "inDegree": 1, "outDegree": 1 } }, { "key": "Chileother", "attributes": { "label": "Chile (other)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Chile", "continent": "America", "pagerank": 0.00029328515850837733, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "20.065301041195116", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "SpanishColoniesother", "attributes": { "label": "Spanish Colonies (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Spain", "continent": "World", "pagerank": 0.00041409381466059965, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "4556311.009732912", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "PortugueseColoniesother", "attributes": { "label": "Portuguese Colonies (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Portugal", "continent": "World", "pagerank": 0.0014385143527739252, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "43192267.81745135", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "Uruguayother", "attributes": { "label": "Uruguay (other)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Uruguay", "continent": "America", "pagerank": 0.00030204351906627363, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "330341.08838841115", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "DutchColonies", "attributes": { "label": "Dutch Colonies", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Netherlands", "continent": "World", "pagerank": 0.00029331054029024247, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.6025121391831949", "herfindahl": "0.6024589466673482", "weightedInDegree": "9", "weightedOutDegree": "149676.4994341331", "inDegree": 1, "outDegree": 5 } }, { "key": "JapaneseColonies", "attributes": { "label": "Japanese Colonies", "type": "colonial_area", "GPH_status": "colonial_area", "continent": "World", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "8.523313716613856", "inDegree": 0, "outDegree": 1 } }, { "key": "Indiaother", "attributes": { "label": "India (other)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "India", "continent": "Asia", "pagerank": 0.0002940851827729257, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "10454.555907655254", "weightedOutDegree": "104310.90991403545", "inDegree": 1, "outDegree": 1 } }, { "key": "IraqMesopotamia_Kuwait", "attributes": { "label": "Iraq (Mesopotamia) & Kuwait", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.0003218626032359869, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "706820", "weightedOutDegree": "148520", "inDegree": 1, "outDegree": 1 } }, { "key": "Singapore_StraitsSettlements", "attributes": { "label": "Singapore & Straits Settlements", "type": "group", "GPH_status": "group", "continent": "Asia", "pagerank": 0.0005851392334597544, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "3591380.216375501", "weightedOutDegree": "1706544.2160333344", "inDegree": 1, "outDegree": 1 } }, { "key": "Aden_AlgeriaRegencyofAlgiers_TurkeyOttomanEmpire_EgyptArabRepublicEgypt_IranPersia_Morocco", "attributes": { "label": "Aden & Algeria (Regency of Algiers) & Turkey (Ottoman Empire) & Egypt Arab Republic (Egypt) & Iran (Persia) & Morocco", "type": "group", "GPH_status": "group", "continent": "World", "pagerank": 0.0005693577868020343, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "3397183.606291321", "weightedOutDegree": "142787.72130117533", "inDegree": 1, "outDegree": 1 } }, { "key": "Gibraltar_Spain", "attributes": { "label": "Gibraltar & Spain", "type": "group", "GPH_status": "group", "continent": "Europe", "pagerank": 0.0003342866090365498, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "504544.7474690035", "weightedOutDegree": "5889.272654064374", "inDegree": 1, "outDegree": 1 } }, { "key": "RussiaandSiberia", "attributes": { "label": "Russia and Siberia", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Russia (USSR)", "continent": "Europe", "pagerank": 0.0002981380311952748, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "59722.962217418964", "weightedOutDegree": "692892.7270866038", "inDegree": 1, "outDegree": 1 } }, { "key": "RussiaAmurRiver", "attributes": { "label": "Russia (Amur River)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Russia (USSR)", "continent": "Europe", "pagerank": 0.00029337771485240643, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "1145.4872391582203", "weightedOutDegree": "7351.476038938388", "inDegree": 1, "outDegree": 1 } }, { "key": "RussiaPacificPorts", "attributes": { "label": "Russia (Pacific Ports)", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Russia (USSR)", "continent": "Europe", "pagerank": 0.0009779249160390517, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "8424755.109112991", "weightedOutDegree": "1132357.4326526765", "inDegree": 1, "outDegree": 1 } }, { "key": "HawaiiSandwichIs_UnitedStatesofAmerica", "attributes": { "label": "Hawaii (Sandwich Is.) & United States of America", "type": "group", "GPH_status": "group", "continent": "World", "pagerank": 0.0017922559901799955, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "18445403.88195663", "weightedOutDegree": "34959044.316713504", "inDegree": 1, "outDegree": 1 } }, { "key": "CentralAmerica_Mexico_Panama", "attributes": { "label": "Central America & Mexico & Panama", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "America", "pagerank": 0.00029355020431285, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "3268.0346342038342", "weightedOutDegree": "126025.1989115629", "inDegree": 1, "outDegree": 1 } }, { "key": "Australia_NewZealand", "attributes": { "label": "Australia & New Zealand", "type": "group", "GPH_status": "group", "continent": "Oceania", "pagerank": 0.00030859930719876263, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0.8487334340044821", "herfindahl": "0.8642785179301613", "weightedInDegree": "188452.88039881142", "weightedOutDegree": "1499012.635687459", "inDegree": 1, "outDegree": 2 } }, { "key": "Mauritius_SouthAfrica", "attributes": { "label": "Mauritius & South Africa", "type": "group", "GPH_status": "group", "continent": "Africa", "pagerank": 0.0002951136931767001, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "22507.35051248041", "weightedOutDegree": "6189.512237286283", "inDegree": 1, "outDegree": 1 } }, { "key": "AmericanSamoa", "attributes": { "label": "American Samoa", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United States of America", "continent": "Oceania", "pagerank": 0.0002940887116431825, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "15466", "weightedOutDegree": "17", "inDegree": 1, "outDegree": 1 } }, { "key": "StThomas", "attributes": { "label": "St. Thomas", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Virgin Islands (Danish West Indies)", "continent": "America", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "7764", "inDegree": 0, "outDegree": 1 } }, { "key": "CocosKeelingIs", "attributes": { "label": "Cocos (Keeling) Is.", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Straits Settlements", "continent": "Oceania", "pagerank": 0.0002933289223938763, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "852", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "Libya", "attributes": { "label": "Libya", "type": "GPH_entity", "GPH_status": "GPH_entity", "continent": "Africa", "pagerank": 0.00030064702702973107, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "2557", "weightedOutDegree": "2018", "inDegree": 1, "outDegree": 1 } }, { "key": "Sardinia", "attributes": { "label": "Sardinia", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Kingdom of Sardinia", "continent": "Europe", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "799", "inDegree": 0, "outDegree": 1 } }, { "key": "MauritiusDependencies", "attributes": { "label": "Mauritius Dependencies", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Mauritius", "continent": "Africa", "pagerank": 0.0002945069395176389, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "4732", "weightedOutDegree": "57013", "inDegree": 1, "outDegree": 1 } }, { "key": "America", "attributes": { "label": "America", "type": "geographical_area", "GPH_status": "geographical_area", "continent": "America", "pagerank": 0.0002933443097336275, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "68", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "BritishWestIndies_GuyanaBritishGuiana", "attributes": { "label": "British West Indies & Guyana (British Guiana)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "America", "pagerank": 0.0002932988695721806, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "261.15889542733197", "weightedOutDegree": "5832.548664543747", "inDegree": 1, "outDegree": 1 } }, { "key": "FrenchGuiana_FrenchWestIndies", "attributes": { "label": "French Guiana & French West Indies", "type": "colonial_area", "GPH_status": "colonial_area", "continent": "America", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "87.05296514244398", "inDegree": 0, "outDegree": 1 } }, { "key": "NetherlandsAntilles_SurinamDutchGuiana", "attributes": { "label": "Netherlands Antilles & Surinam (Dutch Guiana)", "type": "group", "GPH_status": "group", "continent": "America", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "174.10593028488796", "inDegree": 0, "outDegree": 1 } }, { "key": "EastPrussia", "attributes": { "label": "East Prussia", "type": "city/part_of", "GPH_status": "city/part_of", "part_of": "Prussia", "continent": "Europe", "pagerank": 0.0003181340692709933, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "455635.2195555518", "weightedOutDegree": "159611.61158867105", "inDegree": 1, "outDegree": 1 } }, { "key": "LeewardIs", "attributes": { "label": "Leeward Is.", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "America", "reporting": 1, "world_Exp": "640649", "world_Imp": "722527", "pagerank": 0.00041265511335811104, "RIX": 0, "inHerfindahl": "0.2468001710455271", "outHerfindahl": "0.2749135921781494", "herfindahl": "0.24733939608585911", "weightedInDegree": "738718", "weightedOutDegree": "671292", "inDegree": 10, "outDegree": 10, "worldTradePart": 0.00010058071389572148 } }, { "key": "WindwardIs", "attributes": { "label": "Windward Is.", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "United Kingdom", "continent": "America", "pagerank": 0.0002967597815980514, "RIX": 0, "inHerfindahl": "0.6075704654060174", "outHerfindahl": "0.4044374600343086", "herfindahl": "0.2972428172136894", "weightedInDegree": "1762", "weightedOutDegree": "1953", "inDegree": 4, "outDegree": 3 } }, { "key": "Tobago", "attributes": { "label": "Tobago", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Trinidad and Tobago", "continent": "America", "pagerank": 0.0002933529376127323, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "0", "herfindahl": "1", "weightedInDegree": "54", "weightedOutDegree": "0", "inDegree": 1, "outDegree": 0 } }, { "key": "FernandoPoBioko", "attributes": { "label": "Fernando Po (Bioko)", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "Equatorial Guinea (Spanish Guinea)", "continent": "Africa", "pagerank": 0.000297689069096146, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "51718.87732002623", "weightedOutDegree": "751609.5518330005", "inDegree": 1, "outDegree": 1 } }, { "key": "RíodeOro", "attributes": { "label": "Río de Oro", "type": "GPH_entity", "GPH_status": "Colony of", "part_of": "Spain", "continent": "Africa", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "361.24943413289566", "inDegree": 0, "outDegree": 1 } }, { "key": "Andorra", "attributes": { "label": "Andorra", "type": "GPH_entity", "GPH_status": "Sovereign (unrecognized)", "part_of": "Andorra", "continent": "Europe", "pagerank": 0.00029537404483561015, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "24534.85740152583", "weightedOutDegree": "25468.085106369144", "inDegree": 1, "outDegree": 1 } }, { "key": "DanishEurope", "attributes": { "label": "Danish Europe", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "Denmark", "continent": "Europe", "pagerank": 0.0002943844552845949, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "12914.66727025102", "weightedOutDegree": "1340656.858306198", "inDegree": 1, "outDegree": 1 } }, { "key": "BritishEuropeother", "attributes": { "label": "British Europe (other)", "type": "colonial_area", "GPH_status": "colonial_area", "part_of": "United Kingdom", "continent": "Europe", "pagerank": 0.00029618161143812264, "RIX": 0, "inHerfindahl": "1", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "34017.655047514345", "weightedOutDegree": "209223.63060196873", "inDegree": 1, "outDegree": 1 } }, { "key": "Vancouver", "attributes": { "label": "Vancouver", "type": "GPH_entity", "GPH_status": "Part of", "part_of": "British Columbia", "continent": "America", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "1", "herfindahl": "1", "weightedInDegree": "0", "weightedOutDegree": "1758.3784517891743", "inDegree": 0, "outDegree": 1 } }, { "key": "Cyrenaica", "attributes": { "label": "Cyrenaica", "type": "GPH_entity", "continent": "Africa", "world_Exp": "201992.16822162768", "world_Imp": "1260272.3195155412", "pagerank": 0.00029328462648307786, "RIX": 0, "inHerfindahl": "0", "outHerfindahl": "0", "herfindahl": "0", "weightedInDegree": "0", "weightedOutDegree": "0", "inDegree": 0, "outDegree": 0, "worldTradePart": 0.00010789186875426644 } } ], "edges": [ { "key": "geid_107_0", "source": "GermanyZollverein", "target": "Uruguay", "attributes": { "weight": 2009773.4268899953, "sourceWeight": "2009773.4268899953", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2009773.4268899953" } }, { "key": "geid_107_1", "source": "Arabia", "target": "Uruguay", "attributes": { "weight": 373.92485287460386, "sourceWeight": "373.92485287460386", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "373.92485287460386" } }, { "key": "geid_107_2", "source": "ArgentinaLaPlata", "target": "Uruguay", "attributes": { "weight": 1858531.009506564, "sourceWeight": "1858531.009506564", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1858531.009506564" } }, { "key": "geid_107_3", "source": "Austria", "target": "Uruguay", "attributes": { "weight": 7197.14803078316, "sourceWeight": "7197.14803078316", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7197.14803078316" } }, { "key": "geid_107_4", "source": "Belgium", "target": "Uruguay", "attributes": { "weight": 809839.0674513354, "sourceWeight": "809839.0674513354", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "809839.0674513354" } }, { "key": "geid_107_5", "source": "Brazil", "target": "Uruguay", "attributes": { "weight": 1675925.3055681302, "sourceWeight": "1675925.3055681302", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1675925.3055681302" } }, { "key": "geid_107_6", "source": "ColombiaNewGranadaGranColombia", "target": "Uruguay", "attributes": { "weight": 365.0973291081937, "sourceWeight": "365.0973291081937", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "365.0973291081937" } }, { "key": "geid_107_7", "source": "Cuba", "target": "Uruguay", "attributes": { "weight": 127657.99004074241, "sourceWeight": "127657.99004074241", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "127657.99004074241" } }, { "key": "geid_107_8", "source": "Czechoslovakia", "target": "Uruguay", "attributes": { "weight": 10671.118153010411, "sourceWeight": "10671.118153010411", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "10671.118153010411" } }, { "key": "geid_107_9", "source": "Chile", "target": "Uruguay", "attributes": { "weight": 39397.464916251694, "sourceWeight": "39397.464916251694", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "39397.464916251694" } }, { "key": "geid_107_10", "source": "PeoplesRepublicofChinaChina", "target": "Uruguay", "attributes": { "weight": 11173.834314169308, "sourceWeight": "11173.834314169308", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "11173.834314169308" } }, { "key": "geid_107_11", "source": "Denmark", "target": "Uruguay", "attributes": { "weight": 9903.576278859213, "sourceWeight": "9903.576278859213", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9903.576278859213" } }, { "key": "geid_107_12", "source": "Ecuador", "target": "Uruguay", "attributes": { "weight": 1052.0597555454956, "sourceWeight": "1052.0597555454956", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1052.0597555454956" } }, { "key": "geid_107_13", "source": "EgyptArabRepublicEgypt", "target": "Uruguay", "attributes": { "weight": 4.526935264825712, "sourceWeight": "4.526935264825712", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4.526935264825712" } }, { "key": "geid_107_14", "source": "Spain", "target": "Uruguay", "attributes": { "weight": 799859.8913535536, "sourceWeight": "799859.8913535536", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "799859.8913535536" } }, { "key": "geid_107_15", "source": "UnitedStatesofAmerica", "target": "Uruguay", "attributes": { "weight": 4473491.172476233, "sourceWeight": "4473491.172476233", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4473491.172476233" } }, { "key": "geid_107_16", "source": "France", "target": "Uruguay", "attributes": { "weight": 1020795.1561792666, "sourceWeight": "1020795.1561792666", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1020795.1561792666" } }, { "key": "geid_107_17", "source": "Greece", "target": "Uruguay", "attributes": { "weight": 621.5482118605704, "sourceWeight": "621.5482118605704", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "621.5482118605704" } }, { "key": "geid_107_18", "source": "Italy", "target": "Uruguay", "attributes": { "weight": 845128.1122679946, "sourceWeight": "845128.1122679946", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "845128.1122679946" } }, { "key": "geid_107_19", "source": "Japan", "target": "Uruguay", "attributes": { "weight": 125127.88592123133, "sourceWeight": "125127.88592123133", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "125127.88592123133" } }, { "key": "geid_107_20", "source": "Mexico", "target": "Uruguay", "attributes": { "weight": 834777.5011317338, "sourceWeight": "834777.5011317338", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "834777.5011317338" } }, { "key": "geid_107_21", "source": "Norway", "target": "Uruguay", "attributes": { "weight": 33573.33635129018, "sourceWeight": "33573.33635129018", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "33573.33635129018" } }, { "key": "geid_107_22", "source": "Netherlands", "target": "Uruguay", "attributes": { "weight": 179238.79583521956, "sourceWeight": "179238.79583521956", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "179238.79583521956" } }, { "key": "geid_107_23", "source": "Paraguay", "target": "Uruguay", "attributes": { "weight": 57100.27161611589, "sourceWeight": "57100.27161611589", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "57100.27161611589" } }, { "key": "geid_107_24", "source": "Portugal", "target": "Uruguay", "attributes": { "weight": 26382.526029877772, "sourceWeight": "26382.526029877772", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "26382.526029877772" } }, { "key": "geid_107_25", "source": "UnitedKingdom", "target": "Uruguay", "attributes": { "weight": 3335123.132639203, "sourceWeight": "3335123.132639203", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3335123.132639203" } }, { "key": "geid_107_26", "source": "DominicanRepublicSantoDomingo", "target": "Uruguay", "attributes": { "weight": 113.85242191036667, "sourceWeight": "113.85242191036667", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "113.85242191036667" } }, { "key": "geid_107_27", "source": "Sweden", "target": "Uruguay", "attributes": { "weight": 44477.138976912625, "sourceWeight": "44477.138976912625", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "44477.138976912625" } }, { "key": "geid_107_28", "source": "Switzerland", "target": "Uruguay", "attributes": { "weight": 22746.265278406518, "sourceWeight": "22746.265278406518", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "22746.265278406518" } }, { "key": "geid_107_29", "source": "TurkeyOttomanEmpire", "target": "Uruguay", "attributes": { "weight": 242.4173834314169, "sourceWeight": "242.4173834314169", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "242.4173834314169" } }, { "key": "geid_107_30", "source": "Venezuela", "target": "Uruguay", "attributes": { "weight": 397.2385694884563, "sourceWeight": "397.2385694884563", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "397.2385694884563" } }, { "key": "geid_107_31", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Uruguay", "attributes": { "weight": 2614.5314622000906, "sourceWeight": "2614.5314622000906", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2614.5314622000906" } }, { "key": "geid_107_32", "source": "CanadaProvinceofCanada", "target": "Uruguay", "attributes": { "weight": 6093.707559981892, "sourceWeight": "6093.707559981892", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6093.707559981892" } }, { "key": "geid_107_33", "source": "Philippines", "target": "Uruguay", "attributes": { "weight": 6828.202806699864, "sourceWeight": "6828.202806699864", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6828.202806699864" } }, { "key": "geid_107_34", "source": "India", "target": "Uruguay", "attributes": { "weight": 138210.5024898144, "sourceWeight": "138210.5024898144", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "138210.5024898144" } }, { "key": "geid_107_35", "source": "NewZealand", "target": "Uruguay", "attributes": { "weight": 878.9044816659122, "sourceWeight": "878.9044816659122", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "878.9044816659122" } }, { "key": "geid_107_36", "source": "SouthAfrica", "target": "Uruguay", "attributes": { "weight": 1806.699864191942, "sourceWeight": "1806.699864191942", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1806.699864191942" } }, { "key": "geid_107_37", "source": "Uruguay", "target": "GermanyZollverein", "attributes": { "weight": 4013203.4857401536, "sourceWeight": "4013203.4857401536", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_38", "source": "Uruguay", "target": "ArgentinaLaPlata", "attributes": { "weight": 2477905.8397464915, "sourceWeight": "2477905.8397464915", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_39", "source": "Uruguay", "target": "Belgium", "attributes": { "weight": 2678978.9497510185, "sourceWeight": "2678978.9497510185", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_40", "source": "Uruguay", "target": "Brazil", "attributes": { "weight": 1368569.2621095518, "sourceWeight": "1368569.2621095518", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_41", "source": "Uruguay", "target": "Cuba", "attributes": { "weight": 259540.0633770937, "sourceWeight": "259540.0633770937", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_42", "source": "Uruguay", "target": "Chile", "attributes": { "weight": 6931.416930737891, "sourceWeight": "6931.416930737891", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_43", "source": "Uruguay", "target": "Denmark", "attributes": { "weight": 5709.823449524672, "sourceWeight": "5709.823449524672", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_44", "source": "Uruguay", "target": "Spain", "attributes": { "weight": 177090.76505205975, "sourceWeight": "177090.76505205975", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_45", "source": "Uruguay", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1607878.6781349026, "sourceWeight": "1607878.6781349026", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_46", "source": "Uruguay", "target": "France", "attributes": { "weight": 3116574.9207786326, "sourceWeight": "3116574.9207786326", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_47", "source": "Uruguay", "target": "Italy", "attributes": { "weight": 1280572.6573110004, "sourceWeight": "1280572.6573110004", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_48", "source": "Uruguay", "target": "Japan", "attributes": { "weight": 575.5998189225894, "sourceWeight": "575.5998189225894", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_49", "source": "Uruguay", "target": "Norway", "attributes": { "weight": 81532.82028066998, "sourceWeight": "81532.82028066998", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_50", "source": "Uruguay", "target": "Netherlands", "attributes": { "weight": 1425860.5703938433, "sourceWeight": "1425860.5703938433", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_51", "source": "Uruguay", "target": "Paraguay", "attributes": { "weight": 20811.000452693526, "sourceWeight": "20811.000452693526", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_52", "source": "Uruguay", "target": "Peru", "attributes": { "weight": 241.05930285196922, "sourceWeight": "241.05930285196922", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_53", "source": "Uruguay", "target": "Portugal", "attributes": { "weight": 17936.3965595292, "sourceWeight": "17936.3965595292", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_54", "source": "Uruguay", "target": "UnitedKingdom", "attributes": { "weight": 5482740.380262562, "sourceWeight": "5482740.380262562", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_55", "source": "Uruguay", "target": "Sweden", "attributes": { "weight": 107504.07424173834, "sourceWeight": "107504.07424173834", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_56", "source": "Uruguay", "target": "CanadaProvinceofCanada", "attributes": { "weight": 2476.4599366229063, "sourceWeight": "2476.4599366229063", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_57", "source": "Uruguay", "target": "Philippines", "attributes": { "weight": 1162.9696695337257, "sourceWeight": "1162.9696695337257", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_58", "source": "Uruguay", "target": "FalklandIs", "attributes": { "weight": 28239.92756903576, "sourceWeight": "28239.92756903576", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_59", "source": "Uruguay", "target": "PuertoRico", "attributes": { "weight": 5090.538705296514, "sourceWeight": "5090.538705296514", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_60", "source": "Uruguay", "target": "SouthAfrica", "attributes": { "weight": 701.9013128112268, "sourceWeight": "701.9013128112268", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_61", "source": "Uruguay", "target": "Unknown", "attributes": { "weight": 14216.38750565867, "sourceWeight": "14216.38750565867", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_62", "source": "RussiaUSSR", "target": "Finland", "attributes": { "weight": 1255684.3982569878, "sourceWeight": "1255684.3982569878", "direction": "Imp", "source_type": "primary", "targetWeight": "1255684.3982569878" } }, { "key": "geid_107_63", "source": "Estonia", "target": "Finland", "attributes": { "weight": 330688.92077859543, "sourceWeight": "330688.92077859543", "direction": "Imp", "source_type": "primary", "targetWeight": "330688.92077859543" } }, { "key": "geid_107_64", "source": "Latvia", "target": "Finland", "attributes": { "weight": 72074.28071524762, "sourceWeight": "72074.28071524762", "direction": "Imp", "source_type": "primary", "targetWeight": "72074.28071524762" } }, { "key": "geid_107_65", "source": "Lithuania", "target": "Finland", "attributes": { "weight": 39217.61373924409, "sourceWeight": "39217.61373924409", "direction": "Imp", "source_type": "primary", "targetWeight": "39217.61373924409" } }, { "key": "geid_107_66", "source": "Poland", "target": "Finland", "attributes": { "weight": 280244.96559526026, "sourceWeight": "280244.96559526026", "direction": "Imp", "source_type": "primary", "targetWeight": "280244.96559526026" } }, { "key": "geid_107_67", "source": "Sweden", "target": "Finland", "attributes": { "weight": 1668194.6944543154, "sourceWeight": "1668194.6944543154", "direction": "Imp", "source_type": "primary", "targetWeight": "1668194.6944543154" } }, { "key": "geid_107_68", "source": "Norway", "target": "Finland", "attributes": { "weight": 210863.10018105354, "sourceWeight": "210863.10018105354", "direction": "Imp", "source_type": "primary", "targetWeight": "210863.10018105354" } }, { "key": "geid_107_69", "source": "Denmark", "target": "Finland", "attributes": { "weight": 1815266.496876209, "sourceWeight": "1815266.496876209", "direction": "Imp", "source_type": "primary", "targetWeight": "1815266.496876209" } }, { "key": "geid_107_70", "source": "Iceland", "target": "Finland", "attributes": { "weight": 864.2001584426364, "sourceWeight": "864.2001584426364", "direction": "Imp", "source_type": "primary", "targetWeight": "864.2001584426364" } }, { "key": "geid_107_71", "source": "GermanyZollverein", "target": "Finland", "attributes": { "weight": 8015988.506608417, "sourceWeight": "8015988.506608417", "direction": "Imp", "source_type": "primary", "targetWeight": "8015988.506608417" } }, { "key": "geid_107_72", "source": "DanzigFreeCityofDanzig", "target": "Finland", "attributes": { "weight": 169791.22252148372, "sourceWeight": "169791.22252148372", "direction": "Imp", "source_type": "primary", "targetWeight": "169791.22252148372" } }, { "key": "geid_107_73", "source": "Netherlands", "target": "Finland", "attributes": { "weight": 1275559.7292891268, "sourceWeight": "1275559.7292891268", "direction": "Imp", "source_type": "primary", "targetWeight": "1275559.7292891268" } }, { "key": "geid_107_74", "source": "Belgium", "target": "Finland", "attributes": { "weight": 772558.3710954308, "sourceWeight": "772558.3710954308", "direction": "Imp", "source_type": "primary", "targetWeight": "772558.3710954308" } }, { "key": "geid_107_75", "source": "Luxemburg", "target": "Finland", "attributes": { "weight": 7953.90479855048, "sourceWeight": "7953.90479855048", "direction": "Imp", "source_type": "primary", "targetWeight": "7953.90479855048" } }, { "key": "geid_107_76", "source": "UnitedKingdom", "target": "Finland", "attributes": { "weight": 5024084.499478834, "sourceWeight": "5024084.499478834", "direction": "Imp", "source_type": "primary", "targetWeight": "5024084.499478834" } }, { "key": "geid_107_77", "source": "France", "target": "Finland", "attributes": { "weight": 648958.9944544308, "sourceWeight": "648958.9944544308", "direction": "Imp", "source_type": "primary", "targetWeight": "648958.9944544308" } }, { "key": "geid_107_78", "source": "Spain", "target": "Finland", "attributes": { "weight": 75224.95565866056, "sourceWeight": "75224.95565866056", "direction": "Imp", "source_type": "primary", "targetWeight": "75224.95565866056" } }, { "key": "geid_107_79", "source": "Portugal", "target": "Finland", "attributes": { "weight": 10905.898868264949, "sourceWeight": "10905.898868264949", "direction": "Imp", "source_type": "primary", "targetWeight": "10905.898868264949" } }, { "key": "geid_107_80", "source": "Italy", "target": "Finland", "attributes": { "weight": 100110.59438658893, "sourceWeight": "100110.59438658893", "direction": "Imp", "source_type": "primary", "targetWeight": "100110.59438658893" } }, { "key": "geid_107_81", "source": "Switzerland", "target": "Finland", "attributes": { "weight": 170559.1359438467, "sourceWeight": "170559.1359438467", "direction": "Imp", "source_type": "primary", "targetWeight": "170559.1359438467" } }, { "key": "geid_107_82", "source": "Austria", "target": "Finland", "attributes": { "weight": 40260.309099135324, "sourceWeight": "40260.309099135324", "direction": "Imp", "source_type": "primary", "targetWeight": "40260.309099135324" } }, { "key": "geid_107_83", "source": "Hungary", "target": "Finland", "attributes": { "weight": 5285.498687188175, "sourceWeight": "5285.498687188175", "direction": "Imp", "source_type": "primary", "targetWeight": "5285.498687188175" } }, { "key": "geid_107_84", "source": "Czechoslovakia", "target": "Finland", "attributes": { "weight": 186555.81817562395, "sourceWeight": "186555.81817562395", "direction": "Imp", "source_type": "primary", "targetWeight": "186555.81817562395" } }, { "key": "geid_107_85", "source": "Romania", "target": "Finland", "attributes": { "weight": 1928.2913082840732, "sourceWeight": "1928.2913082840732", "direction": "Imp", "source_type": "primary", "targetWeight": "1928.2913082840732" } }, { "key": "geid_107_86", "source": "Bulgaria", "target": "Finland", "attributes": { "weight": 997.4551380714126, "sourceWeight": "997.4551380714126", "direction": "Imp", "source_type": "primary", "targetWeight": "997.4551380714126" } }, { "key": "geid_107_87", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Finland", "attributes": { "weight": 3064.347532819934, "sourceWeight": "3064.347532819934", "direction": "Imp", "source_type": "primary", "targetWeight": "3064.347532819934" } }, { "key": "geid_107_88", "source": "Greece", "target": "Finland", "attributes": { "weight": 4939.439112720129, "sourceWeight": "4939.439112720129", "direction": "Imp", "source_type": "primary", "targetWeight": "4939.439112720129" } }, { "key": "geid_107_89", "source": "Caucasusother", "target": "Finland", "attributes": { "weight": 0.5681303757355627, "sourceWeight": "0.5681303757355627", "direction": "Imp", "source_type": "primary", "targetWeight": "0.5681303757355627" } }, { "key": "geid_107_90", "source": "TurkeyOttomanEmpire", "target": "Finland", "attributes": { "weight": 158.90606609323686, "sourceWeight": "158.90606609323686", "direction": "Imp", "source_type": "primary", "targetWeight": "158.90606609323686" } }, { "key": "geid_107_91", "source": "AsianTurkey", "target": "Finland", "attributes": { "weight": 1323.4199411496916, "sourceWeight": "1323.4199411496916", "direction": "Imp", "source_type": "primary", "targetWeight": "1323.4199411496916" } }, { "key": "geid_107_92", "source": "Palestine", "target": "Finland", "attributes": { "weight": 12.78293345405016, "sourceWeight": "12.78293345405016", "direction": "Imp", "source_type": "primary", "targetWeight": "12.78293345405016" } }, { "key": "geid_107_93", "source": "IranPersia", "target": "Finland", "attributes": { "weight": 17.612041647802442, "sourceWeight": "17.612041647802442", "direction": "Imp", "source_type": "primary", "targetWeight": "17.612041647802442" } }, { "key": "geid_107_94", "source": "BritishEastIndies", "target": "Finland", "attributes": { "weight": 49299.536079668476, "sourceWeight": "49299.536079668476", "direction": "Imp", "source_type": "primary", "targetWeight": "49299.536079668476" } }, { "key": "geid_107_95", "source": "ThailandSiam", "target": "Finland", "attributes": { "weight": 152.25894069713078, "sourceWeight": "152.25894069713078", "direction": "Imp", "source_type": "primary", "targetWeight": "152.25894069713078" } }, { "key": "geid_107_96", "source": "IndonesiaDutchEastIndies", "target": "Finland", "attributes": { "weight": 5050.247261203593, "sourceWeight": "5050.247261203593", "direction": "Imp", "source_type": "primary", "targetWeight": "5050.247261203593" } }, { "key": "geid_107_97", "source": "PeoplesRepublicofChinaChina", "target": "Finland", "attributes": { "weight": 2867.933499320635, "sourceWeight": "2867.933499320635", "direction": "Imp", "source_type": "primary", "targetWeight": "2867.933499320635" } }, { "key": "geid_107_98", "source": "Japan", "target": "Finland", "attributes": { "weight": 641.6294024444724, "sourceWeight": "641.6294024444724", "direction": "Imp", "source_type": "primary", "targetWeight": "641.6294024444724" } }, { "key": "geid_107_99", "source": "EgyptArabRepublicEgypt", "target": "Finland", "attributes": { "weight": 595.7755998188551, "sourceWeight": "595.7755998188551", "direction": "Imp", "source_type": "primary", "targetWeight": "595.7755998188551" } }, { "key": "geid_107_100", "source": "TunisiaRegencyofTunis", "target": "Finland", "attributes": { "weight": 1427.410525124329, "sourceWeight": "1427.410525124329", "direction": "Imp", "source_type": "primary", "targetWeight": "1427.410525124329" } }, { "key": "geid_107_101", "source": "AlgeriaRegencyofAlgiers", "target": "Finland", "attributes": { "weight": 1386.686939791604, "sourceWeight": "1386.686939791604", "direction": "Imp", "source_type": "primary", "targetWeight": "1386.686939791604" } }, { "key": "geid_107_102", "source": "Morocco", "target": "Finland", "attributes": { "weight": 8515.603938432716, "sourceWeight": "8515.603938432716", "direction": "Imp", "source_type": "primary", "targetWeight": "8515.603938432716" } }, { "key": "geid_107_103", "source": "BritishSouthAfrica", "target": "Finland", "attributes": { "weight": 1957.510253508153, "sourceWeight": "1957.510253508153", "direction": "Imp", "source_type": "primary", "targetWeight": "1957.510253508153" } }, { "key": "geid_107_104", "source": "Greenland", "target": "Finland", "attributes": { "weight": 13.294250792212166, "sourceWeight": "13.294250792212166", "direction": "Imp", "source_type": "primary", "targetWeight": "13.294250792212166" } }, { "key": "geid_107_105", "source": "BritishNorthAmerica", "target": "Finland", "attributes": { "weight": 119383.46860569042, "sourceWeight": "119383.46860569042", "direction": "Imp", "source_type": "primary", "targetWeight": "119383.46860569042" } }, { "key": "geid_107_106", "source": "UnitedStatesofAmericaother", "target": "Finland", "attributes": { "weight": 3574027.3147121347, "sourceWeight": "3574027.3147121347", "direction": "Imp", "source_type": "primary", "targetWeight": "3574027.3147121347" } }, { "key": "geid_107_107", "source": "CentralAmerica", "target": "Finland", "attributes": { "weight": 38948.098370298896, "sourceWeight": "38948.098370298896", "direction": "Imp", "source_type": "primary", "targetWeight": "38948.098370298896" } }, { "key": "geid_107_108", "source": "WestIndies", "target": "Finland", "attributes": { "weight": 496.0800814847786, "sourceWeight": "496.0800814847786", "direction": "Imp", "source_type": "primary", "targetWeight": "496.0800814847786" } }, { "key": "geid_107_109", "source": "Mexico", "target": "Finland", "attributes": { "weight": 47453.180534172985, "sourceWeight": "47453.180534172985", "direction": "Imp", "source_type": "primary", "targetWeight": "47453.180534172985" } }, { "key": "geid_107_110", "source": "Venezuela", "target": "Finland", "attributes": { "weight": 3512.721706654197, "sourceWeight": "3512.721706654197", "direction": "Imp", "source_type": "primary", "targetWeight": "3512.721706654197" } }, { "key": "geid_107_111", "source": "Brazil", "target": "Finland", "attributes": { "weight": 588486.1519012462, "sourceWeight": "588486.1519012462", "direction": "Imp", "source_type": "primary", "targetWeight": "588486.1519012462" } }, { "key": "geid_107_112", "source": "Uruguay", "target": "Finland", "attributes": { "weight": 19765.358035307858, "sourceWeight": "19765.358035307858", "direction": "Imp", "source_type": "primary", "targetWeight": "19765.358035307858" } }, { "key": "geid_107_113", "source": "ArgentinaLaPlata", "target": "Finland", "attributes": { "weight": 128645.07317789398, "sourceWeight": "128645.07317789398", "direction": "Imp", "source_type": "primary", "targetWeight": "128645.07317789398" } }, { "key": "geid_107_114", "source": "Chile", "target": "Finland", "attributes": { "weight": 532.4517881393693, "sourceWeight": "532.4517881393693", "direction": "Imp", "source_type": "primary", "targetWeight": "532.4517881393693" } }, { "key": "geid_107_115", "source": "Australia", "target": "Finland", "attributes": { "weight": 7501.866183792722, "sourceWeight": "7501.866183792722", "direction": "Imp", "source_type": "primary", "targetWeight": "7501.866183792722" } }, { "key": "geid_107_116", "source": "NewZealand", "target": "Finland", "attributes": { "weight": 0.4317790855590276, "sourceWeight": "0.4317790855590276", "direction": "Imp", "source_type": "primary", "targetWeight": "0.4317790855590276" } }, { "key": "geid_107_117", "source": "Finland", "target": "RussiaUSSR", "attributes": { "weight": 949659.2726572035, "sourceWeight": "949659.2726572035", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_118", "source": "Finland", "target": "Estonia", "attributes": { "weight": 89481.4431869523, "sourceWeight": "89481.4431869523", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_119", "source": "Finland", "target": "Latvia", "attributes": { "weight": 80472.53732457214, "sourceWeight": "80472.53732457214", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_120", "source": "Finland", "target": "Lithuania", "attributes": { "weight": 1320.4940697146535, "sourceWeight": "1320.4940697146535", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_121", "source": "Finland", "target": "Poland", "attributes": { "weight": 10747.259823448307, "sourceWeight": "10747.259823448307", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_122", "source": "Finland", "target": "Sweden", "attributes": { "weight": 1381783.929198576, "sourceWeight": "1381783.929198576", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_123", "source": "Finland", "target": "Norway", "attributes": { "weight": 129346.43012673953, "sourceWeight": "129346.43012673953", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_124", "source": "Finland", "target": "Denmark", "attributes": { "weight": 1088026.5393842135, "sourceWeight": "1088026.5393842135", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_125", "source": "Finland", "target": "Iceland", "attributes": { "weight": 43.17790855590276, "sourceWeight": "43.17790855590276", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_126", "source": "Finland", "target": "GermanyZollverein", "attributes": { "weight": 2525573.1126298634, "sourceWeight": "2525573.1126298634", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_127", "source": "Finland", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 7823.325712991418, "sourceWeight": "7823.325712991418", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_128", "source": "Finland", "target": "Netherlands", "attributes": { "weight": 2635710.3048208877, "sourceWeight": "2635710.3048208877", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_129", "source": "Finland", "target": "Belgium", "attributes": { "weight": 1796463.3869395882, "sourceWeight": "1796463.3869395882", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_130", "source": "Finland", "target": "UnitedKingdom", "attributes": { "weight": 11294081.236598993, "sourceWeight": "11294081.236598993", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_131", "source": "Finland", "target": "France", "attributes": { "weight": 2286951.969035504, "sourceWeight": "2286951.969035504", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_132", "source": "Finland", "target": "Spain", "attributes": { "weight": 97601.45794476033, "sourceWeight": "97601.45794476033", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_133", "source": "Finland", "target": "Portugal", "attributes": { "weight": 372.1253961067935, "sourceWeight": "372.1253961067935", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_134", "source": "Finland", "target": "Italy", "attributes": { "weight": 40739.2430058804, "sourceWeight": "40739.2430058804", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_135", "source": "Finland", "target": "Switzerland", "attributes": { "weight": 2780.3164327746963, "sourceWeight": "2780.3164327746963", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_136", "source": "Finland", "target": "Austria", "attributes": { "weight": 13409.802829333023, "sourceWeight": "13409.802829333023", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_137", "source": "Finland", "target": "Czechoslovakia", "attributes": { "weight": 6129.388184698265, "sourceWeight": "6129.388184698265", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_138", "source": "Finland", "target": "Romania", "attributes": { "weight": 10147.68911271954, "sourceWeight": "10147.68911271954", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_139", "source": "Finland", "target": "Bulgaria", "attributes": { "weight": 125.48863739247108, "sourceWeight": "125.48863739247108", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_140", "source": "Finland", "target": "Greece", "attributes": { "weight": 7714.704866454536, "sourceWeight": "7714.704866454536", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_141", "source": "Finland", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 7185.582322316977, "sourceWeight": "7185.582322316977", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_142", "source": "Finland", "target": "AsianTurkey", "attributes": { "weight": 20125.245903121307, "sourceWeight": "20125.245903121307", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_143", "source": "Finland", "target": "Syria", "attributes": { "weight": 387.19221367130064, "sourceWeight": "387.19221367130064", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_144", "source": "Finland", "target": "Palestine", "attributes": { "weight": 1423.399524671636, "sourceWeight": "1423.399524671636", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_145", "source": "Finland", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 61563.66423720444, "sourceWeight": "61563.66423720444", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_146", "source": "Finland", "target": "KoreaChosen", "attributes": { "weight": 476.68411045716647, "sourceWeight": "476.68411045716647", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_147", "source": "Finland", "target": "Japan", "attributes": { "weight": 83203.52867812548, "sourceWeight": "83203.52867812548", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_148", "source": "Finland", "target": "BritishEastIndies", "attributes": { "weight": 96186.06337708281, "sourceWeight": "96186.06337708281", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_149", "source": "Finland", "target": "ThailandSiam", "attributes": { "weight": 62.39207786327949, "sourceWeight": "62.39207786327949", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_150", "source": "Finland", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 2467.958352195284, "sourceWeight": "2467.958352195284", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_151", "source": "Finland", "target": "IranPersia", "attributes": { "weight": 8237.322317789924, "sourceWeight": "8237.322317789924", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_152", "source": "Finland", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 392998.75608868344, "sourceWeight": "392998.75608868344", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_153", "source": "Finland", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 397.6912630148938, "sourceWeight": "397.6912630148938", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_154", "source": "Finland", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 482.91081937522824, "sourceWeight": "482.91081937522824", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_155", "source": "Finland", "target": "Morocco", "attributes": { "weight": 2800.6839067448163, "sourceWeight": "2800.6839067448163", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_156", "source": "Finland", "target": "SpanishAfrica", "attributes": { "weight": 14844.30362154653, "sourceWeight": "14844.30362154653", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_157", "source": "Finland", "target": "BritishSouthAfrica", "attributes": { "weight": 333211.7377998717, "sourceWeight": "333211.7377998717", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_158", "source": "Finland", "target": "BritishEastAfrica", "attributes": { "weight": 227.63847894972523, "sourceWeight": "227.63847894972523", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_159", "source": "Finland", "target": "FrenchEastAfrica", "attributes": { "weight": 6948.245857853446, "sourceWeight": "6948.245857853446", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_160", "source": "Finland", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 22038.373811676996, "sourceWeight": "22038.373811676996", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_161", "source": "Finland", "target": "BritishNorthAmerica", "attributes": { "weight": 529.0998189225295, "sourceWeight": "529.0998189225295", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_162", "source": "Finland", "target": "UnitedStatesofAmericaother", "attributes": { "weight": 1708564.647034664, "sourceWeight": "1708564.647034664", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_163", "source": "Finland", "target": "Mexico", "attributes": { "weight": 1293.5476459935157, "sourceWeight": "1293.5476459935157", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_164", "source": "Finland", "target": "CentralAmerica", "attributes": { "weight": 662.7581711180779, "sourceWeight": "662.7581711180779", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_165", "source": "Finland", "target": "WestIndies", "attributes": { "weight": 24066.604934356714, "sourceWeight": "24066.604934356714", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_166", "source": "Finland", "target": "Venezuela", "attributes": { "weight": 146.99237211406214, "sourceWeight": "146.99237211406214", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_167", "source": "Finland", "target": "Uruguay", "attributes": { "weight": 6372.468447260482, "sourceWeight": "6372.468447260482", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_168", "source": "Finland", "target": "ArgentinaLaPlata", "attributes": { "weight": 212081.54667267855, "sourceWeight": "212081.54667267855", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_169", "source": "Finland", "target": "Brazil", "attributes": { "weight": 225741.81545945836, "sourceWeight": "225741.81545945836", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_170", "source": "Finland", "target": "Chile", "attributes": { "weight": 9710.029877771649, "sourceWeight": "9710.029877771649", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_171", "source": "Finland", "target": "Bolivia", "attributes": { "weight": 81.24264373018546, "sourceWeight": "81.24264373018546", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_172", "source": "Finland", "target": "Peru", "attributes": { "weight": 1139.9024671795903, "sourceWeight": "1139.9024671795903", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_173", "source": "Finland", "target": "Ecuador", "attributes": { "weight": 744.3473743774621, "sourceWeight": "744.3473743774621", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_174", "source": "Finland", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 4505.387505658159, "sourceWeight": "4505.387505658159", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_175", "source": "Finland", "target": "Australia", "attributes": { "weight": 45274.44031235341, "sourceWeight": "45274.44031235341", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_176", "source": "Finland", "target": "NewZealand", "attributes": { "weight": 144.53236758712714, "sourceWeight": "144.53236758712714", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_177", "source": "UnitedKingdom", "target": "GuyanaBritishGuiana", "attributes": { "weight": 1482380.4166666667, "sourceWeight": "1482380.4166666667", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1482380.4166666667" } }, { "key": "geid_107_178", "source": "CanadaProvinceofCanada", "target": "GuyanaBritishGuiana", "attributes": { "weight": 556495.2083333334, "sourceWeight": "556495.2083333334", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "556495.2083333334" } }, { "key": "geid_107_179", "source": "Bermuda", "target": "GuyanaBritishGuiana", "attributes": { "weight": 98.54166666666667, "sourceWeight": "98.54166666666667", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "98.54166666666667" } }, { "key": "geid_107_180", "source": "BritishEastAfrica", "target": "GuyanaBritishGuiana", "attributes": { "weight": 4141.25, "sourceWeight": "4141.25", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4141.25" } }, { "key": "geid_107_181", "source": "BritishWestIndies", "target": "GuyanaBritishGuiana", "attributes": { "weight": 111946.45833333334, "sourceWeight": "111946.45833333334", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "111946.45833333334" } }, { "key": "geid_107_182", "source": "BritishEastIndies", "target": "GuyanaBritishGuiana", "attributes": { "weight": 45825, "sourceWeight": "45825", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "45825" } }, { "key": "geid_107_183", "source": "NewfoundlandandLabradorNewfoundland", "target": "GuyanaBritishGuiana", "attributes": { "weight": 365.20833333333337, "sourceWeight": "365.20833333333337", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "365.20833333333337" } }, { "key": "geid_107_184", "source": "StraitsSettlements", "target": "GuyanaBritishGuiana", "attributes": { "weight": 54.79166666666667, "sourceWeight": "54.79166666666667", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "54.79166666666667" } }, { "key": "geid_107_185", "source": "BritishColoniesother", "target": "GuyanaBritishGuiana", "attributes": { "weight": 236.25, "sourceWeight": "236.25", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "236.25" } }, { "key": "geid_107_186", "source": "Belgium", "target": "GuyanaBritishGuiana", "attributes": { "weight": 2423.3333333333335, "sourceWeight": "2423.3333333333335", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2423.3333333333335" } }, { "key": "geid_107_187", "source": "Brazil", "target": "GuyanaBritishGuiana", "attributes": { "weight": 92.5, "sourceWeight": "92.5", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "92.5" } }, { "key": "geid_107_188", "source": "Denmark", "target": "GuyanaBritishGuiana", "attributes": { "weight": 524.375, "sourceWeight": "524.375", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "524.375" } }, { "key": "geid_107_189", "source": "SurinamDutchGuiana", "target": "GuyanaBritishGuiana", "attributes": { "weight": 9170.208333333334, "sourceWeight": "9170.208333333334", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9170.208333333334" } }, { "key": "geid_107_190", "source": "NetherlandsAntilles", "target": "GuyanaBritishGuiana", "attributes": { "weight": 1246.4583333333335, "sourceWeight": "1246.4583333333335", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1246.4583333333335" } }, { "key": "geid_107_191", "source": "France", "target": "GuyanaBritishGuiana", "attributes": { "weight": 10935.833333333334, "sourceWeight": "10935.833333333334", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "10935.833333333334" } }, { "key": "geid_107_192", "source": "FrenchGuiana", "target": "GuyanaBritishGuiana", "attributes": { "weight": 153.95833333333334, "sourceWeight": "153.95833333333334", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "153.95833333333334" } }, { "key": "geid_107_193", "source": "FrenchWestIndies", "target": "GuyanaBritishGuiana", "attributes": { "weight": 699.1666666666667, "sourceWeight": "699.1666666666667", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "699.1666666666667" } }, { "key": "geid_107_194", "source": "GermanyZollverein", "target": "GuyanaBritishGuiana", "attributes": { "weight": 28914.791666666668, "sourceWeight": "28914.791666666668", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "28914.791666666668" } }, { "key": "geid_107_195", "source": "Netherlands", "target": "GuyanaBritishGuiana", "attributes": { "weight": 59895.833333333336, "sourceWeight": "59895.833333333336", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "59895.833333333336" } }, { "key": "geid_107_196", "source": "Norway", "target": "GuyanaBritishGuiana", "attributes": { "weight": 114.58333333333334, "sourceWeight": "114.58333333333334", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "114.58333333333334" } }, { "key": "geid_107_197", "source": "Portugal", "target": "GuyanaBritishGuiana", "attributes": { "weight": 7101.25, "sourceWeight": "7101.25", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7101.25" } }, { "key": "geid_107_198", "source": "PortugueseColonies", "target": "GuyanaBritishGuiana", "attributes": { "weight": 10869.583333333334, "sourceWeight": "10869.583333333334", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "10869.583333333334" } }, { "key": "geid_107_199", "source": "Spain", "target": "GuyanaBritishGuiana", "attributes": { "weight": 3792.916666666667, "sourceWeight": "3792.916666666667", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3792.916666666667" } }, { "key": "geid_107_200", "source": "Sweden", "target": "GuyanaBritishGuiana", "attributes": { "weight": 1118.125, "sourceWeight": "1118.125", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1118.125" } }, { "key": "geid_107_201", "source": "UnitedStatesofAmerica", "target": "GuyanaBritishGuiana", "attributes": { "weight": 393846.25, "sourceWeight": "393846.25", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "393846.25" } }, { "key": "geid_107_202", "source": "Venezuela", "target": "GuyanaBritishGuiana", "attributes": { "weight": 2262.916666666667, "sourceWeight": "2262.916666666667", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2262.916666666667" } }, { "key": "geid_107_203", "source": "Othercountries", "target": "GuyanaBritishGuiana", "attributes": { "weight": 7485.208333333334, "sourceWeight": "7485.208333333334", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7485.208333333334" } }, { "key": "geid_107_204", "source": "GuyanaBritishGuiana", "target": "UnitedKingdom", "attributes": { "weight": 1240961.25, "sourceWeight": "1240961.25", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_205", "source": "GuyanaBritishGuiana", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1403031.4583333335, "sourceWeight": "1403031.4583333335", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_206", "source": "GuyanaBritishGuiana", "target": "Bahamas", "attributes": { "weight": 2937.291666666667, "sourceWeight": "2937.291666666667", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_207", "source": "GuyanaBritishGuiana", "target": "Bermuda", "attributes": { "weight": 2628.75, "sourceWeight": "2628.75", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_208", "source": "GuyanaBritishGuiana", "target": "BritishSouthAfrica", "attributes": { "weight": 5347.291666666667, "sourceWeight": "5347.291666666667", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_209", "source": "GuyanaBritishGuiana", "target": "BritishWestIndies", "attributes": { "weight": 96836.04166666667, "sourceWeight": "96836.04166666667", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_210", "source": "GuyanaBritishGuiana", "target": "BritishEastIndies", "attributes": { "weight": 78.33333333333334, "sourceWeight": "78.33333333333334", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_211", "source": "GuyanaBritishGuiana", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 1181.4583333333335, "sourceWeight": "1181.4583333333335", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_212", "source": "GuyanaBritishGuiana", "target": "Belgium", "attributes": { "weight": 161615.4166666667, "sourceWeight": "161615.4166666667", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_213", "source": "GuyanaBritishGuiana", "target": "SurinamDutchGuiana", "attributes": { "weight": 8179.375, "sourceWeight": "8179.375", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_214", "source": "GuyanaBritishGuiana", "target": "NetherlandsAntilles", "attributes": { "weight": 433.33333333333337, "sourceWeight": "433.33333333333337", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_215", "source": "GuyanaBritishGuiana", "target": "FrenchGuiana", "attributes": { "weight": 4606.666666666667, "sourceWeight": "4606.666666666667", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_216", "source": "GuyanaBritishGuiana", "target": "FrenchWestIndies", "attributes": { "weight": 1267.7083333333335, "sourceWeight": "1267.7083333333335", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_217", "source": "GuyanaBritishGuiana", "target": "GermanyZollverein", "attributes": { "weight": 2190, "sourceWeight": "2190", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_218", "source": "GuyanaBritishGuiana", "target": "Netherlands", "attributes": { "weight": 111607.91666666667, "sourceWeight": "111607.91666666667", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_219", "source": "GuyanaBritishGuiana", "target": "Portugal", "attributes": { "weight": 78.75, "sourceWeight": "78.75", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_220", "source": "GuyanaBritishGuiana", "target": "PortugueseColonies", "attributes": { "weight": 1339.1666666666667, "sourceWeight": "1339.1666666666667", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_221", "source": "GuyanaBritishGuiana", "target": "UnitedStatesofAmerica", "attributes": { "weight": 173512.5, "sourceWeight": "173512.5", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_222", "source": "GuyanaBritishGuiana", "target": "Venezuela", "attributes": { "weight": 1484.7916666666667, "sourceWeight": "1484.7916666666667", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_223", "source": "GuyanaBritishGuiana", "target": "Othercountries", "attributes": { "weight": 385.4166666666667, "sourceWeight": "385.4166666666667", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_224", "source": "CostaRica", "target": "GermanyZollverein", "attributes": { "weight": 72385.52738795835, "sourceWeight": "72385.52738795835", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_225", "source": "CostaRica", "target": "Austria", "attributes": { "weight": 1.3580805794477138, "sourceWeight": "1.3580805794477138", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_226", "source": "CostaRica", "target": "Belgium", "attributes": { "weight": 2047.4762335898597, "sourceWeight": "2047.4762335898597", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_227", "source": "CostaRica", "target": "Spain", "attributes": { "weight": 1718.426889995473, "sourceWeight": "1718.426889995473", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_228", "source": "CostaRica", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1796695.0135808059, "sourceWeight": "1796695.0135808059", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_229", "source": "CostaRica", "target": "France", "attributes": { "weight": 40468.80488909008, "sourceWeight": "40468.80488909008", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_230", "source": "CostaRica", "target": "Netherlands", "attributes": { "weight": 33032.30647351743, "sourceWeight": "33032.30647351743", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_231", "source": "CostaRica", "target": "Italy", "attributes": { "weight": 5338.786781349027, "sourceWeight": "5338.786781349027", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_232", "source": "CostaRica", "target": "Japan", "attributes": { "weight": 1.6976007243096423, "sourceWeight": "1.6976007243096423", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_233", "source": "CostaRica", "target": "UnitedKingdom", "attributes": { "weight": 1641210.1607062018, "sourceWeight": "1641210.1607062018", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_234", "source": "CostaRica", "target": "Sweden", "attributes": { "weight": 14336.738343141693, "sourceWeight": "14336.738343141693", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_235", "source": "CostaRica", "target": "Guatemala", "attributes": { "weight": 4811.000452693526, "sourceWeight": "4811.000452693526", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_236", "source": "CostaRica", "target": "Honduras", "attributes": { "weight": 671.9103666817564, "sourceWeight": "671.9103666817564", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_237", "source": "CostaRica", "target": "Nicaragua", "attributes": { "weight": 4545.77863286555, "sourceWeight": "4545.77863286555", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_238", "source": "CostaRica", "target": "ElSalvador", "attributes": { "weight": 5414.837030330466, "sourceWeight": "5414.837030330466", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_239", "source": "CostaRica", "target": "Chile", "attributes": { "weight": 6425.531914893617, "sourceWeight": "6425.531914893617", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_240", "source": "CostaRica", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 43659.63105477591, "sourceWeight": "43659.63105477591", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_241", "source": "CostaRica", "target": "Cuba", "attributes": { "weight": 1463.6713444997736, "sourceWeight": "1463.6713444997736", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_242", "source": "CostaRica", "target": "Mexico", "attributes": { "weight": 160.36668175645087, "sourceWeight": "160.36668175645087", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_243", "source": "CostaRica", "target": "Panama", "attributes": { "weight": 51090.491172476235, "sourceWeight": "51090.491172476235", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_244", "source": "CostaRica", "target": "Peru", "attributes": { "weight": 17500.79674060661, "sourceWeight": "17500.79674060661", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_245", "source": "CostaRica", "target": "Venezuela", "attributes": { "weight": 6393.503847894975, "sourceWeight": "6393.503847894975", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_246", "source": "GermanyZollverein", "target": "CostaRica", "attributes": { "weight": 216104.11951109098, "sourceWeight": "216104.11951109098", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "216104.11951109098" } }, { "key": "geid_107_247", "source": "Belgium", "target": "CostaRica", "attributes": { "weight": 16388.637392485285, "sourceWeight": "16388.637392485285", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "16388.637392485285" } }, { "key": "geid_107_248", "source": "Czechoslovakia", "target": "CostaRica", "attributes": { "weight": 1170.8918062471707, "sourceWeight": "1170.8918062471707", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1170.8918062471707" } }, { "key": "geid_107_249", "source": "PeoplesRepublicofChinaChina", "target": "CostaRica", "attributes": { "weight": 10105.251244907198, "sourceWeight": "10105.251244907198", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "10105.251244907198" } }, { "key": "geid_107_250", "source": "Denmark", "target": "CostaRica", "attributes": { "weight": 4093.7075599818922, "sourceWeight": "4093.7075599818922", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4093.7075599818922" } }, { "key": "geid_107_251", "source": "Spain", "target": "CostaRica", "attributes": { "weight": 37327.52376641014, "sourceWeight": "37327.52376641014", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "37327.52376641014" } }, { "key": "geid_107_252", "source": "UnitedStatesofAmerica", "target": "CostaRica", "attributes": { "weight": 1540676.324128565, "sourceWeight": "1540676.324128565", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1540676.324128565" } }, { "key": "geid_107_253", "source": "France", "target": "CostaRica", "attributes": { "weight": 47444.997736532365, "sourceWeight": "47444.997736532365", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "47444.997736532365" } }, { "key": "geid_107_254", "source": "Netherlands", "target": "CostaRica", "attributes": { "weight": 47137.392485287455, "sourceWeight": "47137.392485287455", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "47137.392485287455" } }, { "key": "geid_107_255", "source": "Italy", "target": "CostaRica", "attributes": { "weight": 38182.43549117247, "sourceWeight": "38182.43549117247", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "38182.43549117247" } }, { "key": "geid_107_256", "source": "Japan", "target": "CostaRica", "attributes": { "weight": 10060.887279311906, "sourceWeight": "10060.887279311906", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "10060.887279311906" } }, { "key": "geid_107_257", "source": "Norway", "target": "CostaRica", "attributes": { "weight": 3575.5998189225893, "sourceWeight": "3575.5998189225893", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3575.5998189225893" } }, { "key": "geid_107_258", "source": "UnitedKingdom", "target": "CostaRica", "attributes": { "weight": 449596.65006790403, "sourceWeight": "449596.65006790403", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "449596.65006790403" } }, { "key": "geid_107_259", "source": "Sweden", "target": "CostaRica", "attributes": { "weight": 12974.196468990493, "sourceWeight": "12974.196468990493", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "12974.196468990493" } }, { "key": "geid_107_260", "source": "Switzerland", "target": "CostaRica", "attributes": { "weight": 27.161611588954276, "sourceWeight": "27.161611588954276", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "27.161611588954276" } }, { "key": "geid_107_261", "source": "Guatemala", "target": "CostaRica", "attributes": { "weight": 1002.4898143956541, "sourceWeight": "1002.4898143956541", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1002.4898143956541" } }, { "key": "geid_107_262", "source": "Honduras", "target": "CostaRica", "attributes": { "weight": 226.12041647804435, "sourceWeight": "226.12041647804435", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "226.12041647804435" } }, { "key": "geid_107_263", "source": "Nicaragua", "target": "CostaRica", "attributes": { "weight": 66729.51561792666, "sourceWeight": "66729.51561792666", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "66729.51561792666" } }, { "key": "geid_107_264", "source": "ElSalvador", "target": "CostaRica", "attributes": { "weight": 5551.833408782254, "sourceWeight": "5551.833408782254", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5551.833408782254" } }, { "key": "geid_107_265", "source": "Chile", "target": "CostaRica", "attributes": { "weight": 97.10276143051153, "sourceWeight": "97.10276143051153", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "97.10276143051153" } }, { "key": "geid_107_266", "source": "ColombiaNewGranadaGranColombia", "target": "CostaRica", "attributes": { "weight": 7031.009506564056, "sourceWeight": "7031.009506564056", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7031.009506564056" } }, { "key": "geid_107_267", "source": "Cuba", "target": "CostaRica", "attributes": { "weight": 8832.956088727931, "sourceWeight": "8832.956088727931", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "8832.956088727931" } }, { "key": "geid_107_268", "source": "Ecuador", "target": "CostaRica", "attributes": { "weight": 2456.9941149841557, "sourceWeight": "2456.9941149841557", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2456.9941149841557" } }, { "key": "geid_107_269", "source": "Mexico", "target": "CostaRica", "attributes": { "weight": 8452.46717971933, "sourceWeight": "8452.46717971933", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "8452.46717971933" } }, { "key": "geid_107_270", "source": "Panama", "target": "CostaRica", "attributes": { "weight": 144158.21638750564, "sourceWeight": "144158.21638750564", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "144158.21638750564" } }, { "key": "geid_107_271", "source": "Peru", "target": "CostaRica", "attributes": { "weight": 29154.821186057037, "sourceWeight": "29154.821186057037", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "29154.821186057037" } }, { "key": "geid_107_272", "source": "Uruguay", "target": "CostaRica", "attributes": { "weight": 98.46084200995925, "sourceWeight": "98.46084200995925", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "98.46084200995925" } }, { "key": "geid_107_273", "source": "Venezuela", "target": "CostaRica", "attributes": { "weight": 723.8569488456315, "sourceWeight": "723.8569488456315", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "723.8569488456315" } }, { "key": "geid_107_274", "source": "UnitedKingdom", "target": "Grenada", "attributes": { "weight": 80600, "sourceWeight": "80600", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "80600" } }, { "key": "geid_107_275", "source": "Anguilla", "target": "Grenada", "attributes": { "weight": 255, "sourceWeight": "255", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "255" } }, { "key": "geid_107_276", "source": "AntiguaandBarbudaAntigua", "target": "Grenada", "attributes": { "weight": 11, "sourceWeight": "11", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "11" } }, { "key": "geid_107_277", "source": "Barbados", "target": "Grenada", "attributes": { "weight": 16243, "sourceWeight": "16243", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "16243" } }, { "key": "geid_107_278", "source": "Bermuda", "target": "Grenada", "attributes": { "weight": 108, "sourceWeight": "108", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "108" } }, { "key": "geid_107_279", "source": "GuyanaBritishGuiana", "target": "Grenada", "attributes": { "weight": 4448, "sourceWeight": "4448", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4448" } }, { "key": "geid_107_280", "source": "India", "target": "Grenada", "attributes": { "weight": 6806, "sourceWeight": "6806", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6806" } }, { "key": "geid_107_281", "source": "CanadaProvinceofCanada", "target": "Grenada", "attributes": { "weight": 69658, "sourceWeight": "69658", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "69658" } }, { "key": "geid_107_282", "source": "SriLankaCeylon", "target": "Grenada", "attributes": { "weight": 192, "sourceWeight": "192", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "192" } }, { "key": "geid_107_283", "source": "Dominica", "target": "Grenada", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2" } }, { "key": "geid_107_284", "source": "Jamaica", "target": "Grenada", "attributes": { "weight": 319, "sourceWeight": "319", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "319" } }, { "key": "geid_107_285", "source": "Montserrat", "target": "Grenada", "attributes": { "weight": 95, "sourceWeight": "95", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "95" } }, { "key": "geid_107_286", "source": "NewfoundlandandLabradorNewfoundland", "target": "Grenada", "attributes": { "weight": 5798, "sourceWeight": "5798", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5798" } }, { "key": "geid_107_287", "source": "StKitts", "target": "Grenada", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "14" } }, { "key": "geid_107_288", "source": "StLucia", "target": "Grenada", "attributes": { "weight": 349, "sourceWeight": "349", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "349" } }, { "key": "geid_107_289", "source": "StVincent", "target": "Grenada", "attributes": { "weight": 1066, "sourceWeight": "1066", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1066" } }, { "key": "geid_107_290", "source": "StraitsSettlements", "target": "Grenada", "attributes": { "weight": 9, "sourceWeight": "9", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9" } }, { "key": "geid_107_291", "source": "Trinidad", "target": "Grenada", "attributes": { "weight": 15137, "sourceWeight": "15137", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "15137" } }, { "key": "geid_107_292", "source": "ArgentinaLaPlata", "target": "Grenada", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2" } }, { "key": "geid_107_293", "source": "Austria", "target": "Grenada", "attributes": { "weight": 40, "sourceWeight": "40", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "40" } }, { "key": "geid_107_294", "source": "Belgium", "target": "Grenada", "attributes": { "weight": 233, "sourceWeight": "233", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "233" } }, { "key": "geid_107_295", "source": "Brazil", "target": "Grenada", "attributes": { "weight": 28, "sourceWeight": "28", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "28" } }, { "key": "geid_107_296", "source": "Chile", "target": "Grenada", "attributes": { "weight": 38, "sourceWeight": "38", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "38" } }, { "key": "geid_107_297", "source": "PeoplesRepublicofChinaChina", "target": "Grenada", "attributes": { "weight": 56, "sourceWeight": "56", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "56" } }, { "key": "geid_107_298", "source": "Cuba", "target": "Grenada", "attributes": { "weight": 26, "sourceWeight": "26", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "26" } }, { "key": "geid_107_299", "source": "Curacao", "target": "Grenada", "attributes": { "weight": 120, "sourceWeight": "120", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "120" } }, { "key": "geid_107_300", "source": "Czechoslovakia", "target": "Grenada", "attributes": { "weight": 63, "sourceWeight": "63", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "63" } }, { "key": "geid_107_301", "source": "Denmark", "target": "Grenada", "attributes": { "weight": 102, "sourceWeight": "102", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "102" } }, { "key": "geid_107_302", "source": "France", "target": "Grenada", "attributes": { "weight": 3589, "sourceWeight": "3589", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3589" } }, { "key": "geid_107_303", "source": "FrenchWestIndies", "target": "Grenada", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1" } }, { "key": "geid_107_304", "source": "GermanyZollverein", "target": "Grenada", "attributes": { "weight": 1463, "sourceWeight": "1463", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1463" } }, { "key": "geid_107_305", "source": "Greece", "target": "Grenada", "attributes": { "weight": 53, "sourceWeight": "53", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "53" } }, { "key": "geid_107_306", "source": "Netherlands", "target": "Grenada", "attributes": { "weight": 3070, "sourceWeight": "3070", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3070" } }, { "key": "geid_107_307", "source": "Italy", "target": "Grenada", "attributes": { "weight": 287, "sourceWeight": "287", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "287" } }, { "key": "geid_107_308", "source": "Japan", "target": "Grenada", "attributes": { "weight": 464, "sourceWeight": "464", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "464" } }, { "key": "geid_107_309", "source": "MadeiraIsles", "target": "Grenada", "attributes": { "weight": 587, "sourceWeight": "587", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "587" } }, { "key": "geid_107_310", "source": "IraqMesopotamia", "target": "Grenada", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3" } }, { "key": "geid_107_311", "source": "Morocco", "target": "Grenada", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1" } }, { "key": "geid_107_312", "source": "Norway", "target": "Grenada", "attributes": { "weight": 31, "sourceWeight": "31", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "31" } }, { "key": "geid_107_313", "source": "Panama", "target": "Grenada", "attributes": { "weight": 100, "sourceWeight": "100", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "100" } }, { "key": "geid_107_314", "source": "Portugal", "target": "Grenada", "attributes": { "weight": 208, "sourceWeight": "208", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "208" } }, { "key": "geid_107_315", "source": "Spain", "target": "Grenada", "attributes": { "weight": 318, "sourceWeight": "318", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "318" } }, { "key": "geid_107_316", "source": "Sweden", "target": "Grenada", "attributes": { "weight": 139, "sourceWeight": "139", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "139" } }, { "key": "geid_107_317", "source": "Switzerland", "target": "Grenada", "attributes": { "weight": 373, "sourceWeight": "373", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "373" } }, { "key": "geid_107_318", "source": "UnitedStatesofAmerica", "target": "Grenada", "attributes": { "weight": 56696, "sourceWeight": "56696", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "56696" } }, { "key": "geid_107_319", "source": "Venezuela", "target": "Grenada", "attributes": { "weight": 90, "sourceWeight": "90", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "90" } }, { "key": "geid_107_320", "source": "Grenada", "target": "UnitedKingdom", "attributes": { "weight": 161012, "sourceWeight": "161012", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_321", "source": "Grenada", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 6, "sourceWeight": "6", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_322", "source": "Grenada", "target": "CanadaProvinceofCanada", "attributes": { "weight": 13691, "sourceWeight": "13691", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_323", "source": "Grenada", "target": "GuyanaBritishGuiana", "attributes": { "weight": 256, "sourceWeight": "256", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_324", "source": "Grenada", "target": "Barbados", "attributes": { "weight": 3783, "sourceWeight": "3783", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_325", "source": "Grenada", "target": "Trinidad", "attributes": { "weight": 2225, "sourceWeight": "2225", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_326", "source": "Grenada", "target": "StLucia", "attributes": { "weight": 94, "sourceWeight": "94", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_327", "source": "Grenada", "target": "StVincent", "attributes": { "weight": 21, "sourceWeight": "21", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_328", "source": "Grenada", "target": "NewZealand", "attributes": { "weight": 216, "sourceWeight": "216", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_329", "source": "Grenada", "target": "Australia", "attributes": { "weight": 4207, "sourceWeight": "4207", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_330", "source": "Grenada", "target": "UnitedStatesofAmerica", "attributes": { "weight": 151784, "sourceWeight": "151784", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_331", "source": "Grenada", "target": "France", "attributes": { "weight": 6434, "sourceWeight": "6434", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_332", "source": "Grenada", "target": "GermanyZollverein", "attributes": { "weight": 1150, "sourceWeight": "1150", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_333", "source": "Albania", "target": "France", "attributes": { "weight": 8286.555002263187, "sourceWeight": "8286.555002263187", "direction": "Imp", "source_type": "primary", "targetWeight": "8286.555002263187" } }, { "key": "geid_107_334", "source": "AlgeriaRegencyofAlgiers", "target": "France", "attributes": { "weight": 19566923.94748689, "sourceWeight": "19566923.94748689", "direction": "Imp", "source_type": "primary", "targetWeight": "19566923.94748689" } }, { "key": "geid_107_335", "source": "GermanyZollverein", "target": "France", "attributes": { "weight": 24283157.537346397, "sourceWeight": "24283157.537346397", "direction": "Imp", "source_type": "primary", "targetWeight": "24283157.537346397" } }, { "key": "geid_107_336", "source": "ArgentinaLaPlata", "target": "France", "attributes": { "weight": 23679422.81575293, "sourceWeight": "23679422.81575293", "direction": "Imp", "source_type": "primary", "targetWeight": "23679422.81575293" } }, { "key": "geid_107_337", "source": "Australia", "target": "France", "attributes": { "weight": 17267996.831144728, "sourceWeight": "17267996.831144728", "direction": "Imp", "source_type": "primary", "targetWeight": "17267996.831144728" } }, { "key": "geid_107_338", "source": "Oceaniaother", "target": "France", "attributes": { "weight": 246229.06292439182, "sourceWeight": "246229.06292439182", "direction": "Imp", "source_type": "primary", "targetWeight": "246229.06292439182" } }, { "key": "geid_107_339", "source": "Africaother", "target": "France", "attributes": { "weight": 1238248.0760524704, "sourceWeight": "1238248.0760524704", "direction": "Imp", "source_type": "primary", "targetWeight": "1238248.0760524704" } }, { "key": "geid_107_340", "source": "Asiaother", "target": "France", "attributes": { "weight": 2193569.488456241, "sourceWeight": "2193569.488456241", "direction": "Imp", "source_type": "primary", "targetWeight": "2193569.488456241" } }, { "key": "geid_107_341", "source": "Austria", "target": "France", "attributes": { "weight": 2098866.00271609, "sourceWeight": "2098866.00271609", "direction": "Imp", "source_type": "primary", "targetWeight": "2098866.00271609" } }, { "key": "geid_107_342", "source": "Bolivia", "target": "France", "attributes": { "weight": 73395.20144861679, "sourceWeight": "73395.20144861679", "direction": "Imp", "source_type": "primary", "targetWeight": "73395.20144861679" } }, { "key": "geid_107_343", "source": "Brazil", "target": "France", "attributes": { "weight": 13089205.52286058, "sourceWeight": "13089205.52286058", "direction": "Imp", "source_type": "primary", "targetWeight": "13089205.52286058" } }, { "key": "geid_107_344", "source": "Bulgaria", "target": "France", "attributes": { "weight": 853515.1652331082, "sourceWeight": "853515.1652331082", "direction": "Imp", "source_type": "primary", "targetWeight": "853515.1652331082" } }, { "key": "geid_107_345", "source": "Chile", "target": "France", "attributes": { "weight": 5303395.20144844, "sourceWeight": "5303395.20144844", "direction": "Imp", "source_type": "primary", "targetWeight": "5303395.20144844" } }, { "key": "geid_107_346", "source": "PeoplesRepublicofChinaChina", "target": "France", "attributes": { "weight": 13703594.386599807, "sourceWeight": "13703594.386599807", "direction": "Imp", "source_type": "primary", "targetWeight": "13703594.386599807" } }, { "key": "geid_107_347", "source": "ColombiaNewGranadaGranColombia", "target": "France", "attributes": { "weight": 317256.67722950486, "sourceWeight": "317256.67722950486", "direction": "Imp", "source_type": "primary", "targetWeight": "317256.67722950486" } }, { "key": "geid_107_348", "source": "CongoBrazzavilleFrenchCongoMiddleCongo_Senegal", "target": "France", "attributes": { "weight": 7283881.846989341, "sourceWeight": "7283881.846989341", "direction": "Imp", "source_type": "primary", "targetWeight": "7283881.846989341" } }, { "key": "geid_107_349", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "France", "attributes": { "weight": 36697.600724308395, "sourceWeight": "36697.600724308395", "direction": "Imp", "source_type": "primary", "targetWeight": "36697.600724308395" } }, { "key": "geid_107_350", "source": "WesternAfrica", "target": "France", "attributes": { "weight": 590712.9923041901, "sourceWeight": "590712.9923041901", "direction": "Imp", "source_type": "primary", "targetWeight": "590712.9923041901" } }, { "key": "geid_107_351", "source": "Cuba", "target": "France", "attributes": { "weight": 2168709.823449451, "sourceWeight": "2168709.823449451", "direction": "Imp", "source_type": "primary", "targetWeight": "2168709.823449451" } }, { "key": "geid_107_352", "source": "Denmark", "target": "France", "attributes": { "weight": 512582.61656856566, "sourceWeight": "512582.61656856566", "direction": "Imp", "source_type": "primary", "targetWeight": "512582.61656856566" } }, { "key": "geid_107_353", "source": "EgyptArabRepublicEgypt", "target": "France", "attributes": { "weight": 10972582.616568211, "sourceWeight": "10972582.616568211", "direction": "Imp", "source_type": "primary", "targetWeight": "10972582.616568211" } }, { "key": "geid_107_354", "source": "Ecuador", "target": "France", "attributes": { "weight": 247412.8564961437, "sourceWeight": "247412.8564961437", "direction": "Imp", "source_type": "primary", "targetWeight": "247412.8564961437" } }, { "key": "geid_107_355", "source": "Spain", "target": "France", "attributes": { "weight": 10654142.145766955, "sourceWeight": "10654142.145766955", "direction": "Imp", "source_type": "primary", "targetWeight": "10654142.145766955" } }, { "key": "geid_107_356", "source": "Estonia", "target": "France", "attributes": { "weight": 384732.9108193622, "sourceWeight": "384732.9108193622", "direction": "Imp", "source_type": "primary", "targetWeight": "384732.9108193622" } }, { "key": "geid_107_357", "source": "FrenchIndia", "target": "France", "attributes": { "weight": 18940.69714803014, "sourceWeight": "18940.69714803014", "direction": "Imp", "source_type": "primary", "targetWeight": "18940.69714803014" } }, { "key": "geid_107_358", "source": "FrenchPolynesia", "target": "France", "attributes": { "weight": 531523.3137165958, "sourceWeight": "531523.3137165958", "direction": "Imp", "source_type": "primary", "targetWeight": "531523.3137165958" } }, { "key": "geid_107_359", "source": "UnitedStatesofAmerica", "target": "France", "attributes": { "weight": 66125525.12448847, "sourceWeight": "66125525.12448847", "direction": "Imp", "source_type": "primary", "targetWeight": "66125525.12448847" } }, { "key": "geid_107_360", "source": "Finland", "target": "France", "attributes": { "weight": 2916867.3607966416, "sourceWeight": "2916867.3607966416", "direction": "Imp", "source_type": "primary", "targetWeight": "2916867.3607966416" } }, { "key": "geid_107_361", "source": "Greece", "target": "France", "attributes": { "weight": 603734.7215934608, "sourceWeight": "603734.7215934608", "direction": "Imp", "source_type": "primary", "targetWeight": "603734.7215934608" } }, { "key": "geid_107_362", "source": "Guadeloupe", "target": "France", "attributes": { "weight": 1909459.0312357885, "sourceWeight": "1909459.0312357885", "direction": "Imp", "source_type": "primary", "targetWeight": "1909459.0312357885" } }, { "key": "geid_107_363", "source": "Guatemala", "target": "France", "attributes": { "weight": 623859.2123132427, "sourceWeight": "623859.2123132427", "direction": "Imp", "source_type": "primary", "targetWeight": "623859.2123132427" } }, { "key": "geid_107_364", "source": "FrenchGuiana", "target": "France", "attributes": { "weight": 102990.04074241388, "sourceWeight": "102990.04074241388", "direction": "Imp", "source_type": "primary", "targetWeight": "102990.04074241388" } }, { "key": "geid_107_365", "source": "Haiti", "target": "France", "attributes": { "weight": 2051514.2598460147, "sourceWeight": "2051514.2598460147", "direction": "Imp", "source_type": "primary", "targetWeight": "2051514.2598460147" } }, { "key": "geid_107_366", "source": "Hungary", "target": "France", "attributes": { "weight": 616756.4508827315, "sourceWeight": "616756.4508827315", "direction": "Imp", "source_type": "primary", "targetWeight": "616756.4508827315" } }, { "key": "geid_107_367", "source": "ReunionBourbonI", "target": "France", "attributes": { "weight": 1918929.3798098036, "sourceWeight": "1918929.3798098036", "direction": "Imp", "source_type": "primary", "targetWeight": "1918929.3798098036" } }, { "key": "geid_107_368", "source": "Ireland_UnitedKingdom", "target": "France", "attributes": { "weight": 56497732.00543041, "sourceWeight": "56497732.00543041", "direction": "Imp", "source_type": "primary", "targetWeight": "56497732.00543041" } }, { "key": "geid_107_369", "source": "India", "target": "France", "attributes": { "weight": 26228130.375734735, "sourceWeight": "26228130.375734735", "direction": "Imp", "source_type": "primary", "targetWeight": "26228130.375734735" } }, { "key": "geid_107_370", "source": "IndonesiaDutchEastIndies", "target": "France", "attributes": { "weight": 6227937.98098666, "sourceWeight": "6227937.98098666", "direction": "Imp", "source_type": "primary", "targetWeight": "6227937.98098666" } }, { "key": "geid_107_371", "source": "FrenchIndochina", "target": "France", "attributes": { "weight": 3914805.34178348, "sourceWeight": "3914805.34178348", "direction": "Imp", "source_type": "primary", "targetWeight": "3914805.34178348" } }, { "key": "geid_107_372", "source": "Italy", "target": "France", "attributes": { "weight": 17530799.004073646, "sourceWeight": "17530799.004073646", "direction": "Imp", "source_type": "primary", "targetWeight": "17530799.004073646" } }, { "key": "geid_107_373", "source": "Japan", "target": "France", "attributes": { "weight": 5189751.018560259, "sourceWeight": "5189751.018560259", "direction": "Imp", "source_type": "primary", "targetWeight": "5189751.018560259" } }, { "key": "geid_107_374", "source": "Latvia", "target": "France", "attributes": { "weight": 572956.0887279117, "sourceWeight": "572956.0887279117", "direction": "Imp", "source_type": "primary", "targetWeight": "572956.0887279117" } }, { "key": "geid_107_375", "source": "Lithuania", "target": "France", "attributes": { "weight": 147974.19646898546, "sourceWeight": "147974.19646898546", "direction": "Imp", "source_type": "primary", "targetWeight": "147974.19646898546" } }, { "key": "geid_107_376", "source": "MadagascarMalagasyRepublic", "target": "France", "attributes": { "weight": 3592813.490266967, "sourceWeight": "3592813.490266967", "direction": "Imp", "source_type": "primary", "targetWeight": "3592813.490266967" } }, { "key": "geid_107_377", "source": "Morocco", "target": "France", "attributes": { "weight": 3331195.110909801, "sourceWeight": "3331195.110909801", "direction": "Imp", "source_type": "primary", "targetWeight": "3331195.110909801" } }, { "key": "geid_107_378", "source": "Martinique", "target": "France", "attributes": { "weight": 2427960.6156631135, "sourceWeight": "2427960.6156631135", "direction": "Imp", "source_type": "primary", "targetWeight": "2427960.6156631135" } }, { "key": "geid_107_379", "source": "Mexico", "target": "France", "attributes": { "weight": 1515255.7718424113, "sourceWeight": "1515255.7718424113", "direction": "Imp", "source_type": "primary", "targetWeight": "1515255.7718424113" } }, { "key": "geid_107_380", "source": "Norway", "target": "France", "attributes": { "weight": 2185282.9334539776, "sourceWeight": "2185282.9334539776", "direction": "Imp", "source_type": "primary", "targetWeight": "2185282.9334539776" } }, { "key": "geid_107_381", "source": "Netherlands", "target": "France", "attributes": { "weight": 13597052.965142136, "sourceWeight": "13597052.965142136", "direction": "Imp", "source_type": "primary", "targetWeight": "13597052.965142136" } }, { "key": "geid_107_382", "source": "Peru", "target": "France", "attributes": { "weight": 101806.247170662, "sourceWeight": "101806.247170662", "direction": "Imp", "source_type": "primary", "targetWeight": "101806.247170662" } }, { "key": "geid_107_383", "source": "Philippines", "target": "France", "attributes": { "weight": 665291.9873245587, "sourceWeight": "665291.9873245587", "direction": "Imp", "source_type": "primary", "targetWeight": "665291.9873245587" } }, { "key": "geid_107_384", "source": "Poland", "target": "France", "attributes": { "weight": 2893191.4893616037, "sourceWeight": "2893191.4893616037", "direction": "Imp", "source_type": "primary", "targetWeight": "2893191.4893616037" } }, { "key": "geid_107_385", "source": "Portugal", "target": "France", "attributes": { "weight": 1096192.8474422444, "sourceWeight": "1096192.8474422444", "direction": "Imp", "source_type": "primary", "targetWeight": "1096192.8474422444" } }, { "key": "geid_107_386", "source": "BritishMediterranean", "target": "France", "attributes": { "weight": 26043.458578541442, "sourceWeight": "26043.458578541442", "direction": "Imp", "source_type": "primary", "targetWeight": "26043.458578541442" } }, { "key": "geid_107_387", "source": "BritishAfrica", "target": "France", "attributes": { "weight": 5888189.22589387, "sourceWeight": "5888189.22589387", "direction": "Imp", "source_type": "primary", "targetWeight": "5888189.22589387" } }, { "key": "geid_107_388", "source": "BritishAmerica", "target": "France", "attributes": { "weight": 5769809.868718682, "sourceWeight": "5769809.868718682", "direction": "Imp", "source_type": "primary", "targetWeight": "5769809.868718682" } }, { "key": "geid_107_389", "source": "NetherlandsAntilles", "target": "France", "attributes": { "weight": 9470.34857401507, "sourceWeight": "9470.34857401507", "direction": "Imp", "source_type": "primary", "targetWeight": "9470.34857401507" } }, { "key": "geid_107_390", "source": "Romania", "target": "France", "attributes": { "weight": 1973383.8841103902, "sourceWeight": "1973383.8841103902", "direction": "Imp", "source_type": "primary", "targetWeight": "1973383.8841103902" } }, { "key": "geid_107_391", "source": "RussiaUSSR", "target": "France", "attributes": { "weight": 4370565.866907955, "sourceWeight": "4370565.866907955", "direction": "Imp", "source_type": "primary", "targetWeight": "4370565.866907955" } }, { "key": "geid_107_392", "source": "Saar", "target": "France", "attributes": { "weight": 13604155.726572648, "sourceWeight": "13604155.726572648", "direction": "Imp", "source_type": "primary", "targetWeight": "13604155.726572648" } }, { "key": "geid_107_393", "source": "ThailandSiam", "target": "France", "attributes": { "weight": 18940.69714803014, "sourceWeight": "18940.69714803014", "direction": "Imp", "source_type": "primary", "targetWeight": "18940.69714803014" } }, { "key": "geid_107_394", "source": "StPierreandMiquelon", "target": "France", "attributes": { "weight": 1602856.4961520506, "sourceWeight": "1602856.4961520506", "direction": "Imp", "source_type": "primary", "targetWeight": "1602856.4961520506" } }, { "key": "geid_107_395", "source": "Sweden", "target": "France", "attributes": { "weight": 6442204.617473751, "sourceWeight": "6442204.617473751", "direction": "Imp", "source_type": "primary", "targetWeight": "6442204.617473751" } }, { "key": "geid_107_396", "source": "Switzerland", "target": "France", "attributes": { "weight": 7728988.22996805, "sourceWeight": "7728988.22996805", "direction": "Imp", "source_type": "primary", "targetWeight": "7728988.22996805" } }, { "key": "geid_107_397", "source": "Syria", "target": "France", "attributes": { "weight": 691335.4459031001, "sourceWeight": "691335.4459031001", "direction": "Imp", "source_type": "primary", "targetWeight": "691335.4459031001" } }, { "key": "geid_107_398", "source": "Czechoslovakia", "target": "France", "attributes": { "weight": 2298927.1163421585, "sourceWeight": "2298927.1163421585", "direction": "Imp", "source_type": "primary", "targetWeight": "2298927.1163421585" } }, { "key": "geid_107_399", "source": "CamerounFrenchCameroons_TogoFrenchTogoland", "target": "France", "attributes": { "weight": 633329.5608872578, "sourceWeight": "633329.5608872578", "direction": "Imp", "source_type": "primary", "targetWeight": "633329.5608872578" } }, { "key": "geid_107_400", "source": "Cyrenaica_TripolitaniaRegencyofTripoli", "target": "France", "attributes": { "weight": 50903.123585331, "sourceWeight": "50903.123585331", "direction": "Imp", "source_type": "primary", "targetWeight": "50903.123585331" } }, { "key": "geid_107_401", "source": "TunisiaRegencyofTunis", "target": "France", "attributes": { "weight": 3487455.8623810494, "sourceWeight": "3487455.8623810494", "direction": "Imp", "source_type": "primary", "targetWeight": "3487455.8623810494" } }, { "key": "geid_107_402", "source": "TurkeyOttomanEmpire", "target": "France", "attributes": { "weight": 1864474.875509217, "sourceWeight": "1864474.875509217", "direction": "Imp", "source_type": "primary", "targetWeight": "1864474.875509217" } }, { "key": "geid_107_403", "source": "Belgium_Luxemburg", "target": "France", "attributes": { "weight": 32369651.42598351, "sourceWeight": "32369651.42598351", "direction": "Imp", "source_type": "primary", "targetWeight": "32369651.42598351" } }, { "key": "geid_107_404", "source": "Paraguay_Uruguay", "target": "France", "attributes": { "weight": 3071944.3186961384, "sourceWeight": "3071944.3186961384", "direction": "Imp", "source_type": "primary", "targetWeight": "3071944.3186961384" } }, { "key": "geid_107_405", "source": "Venezuela", "target": "France", "attributes": { "weight": 677129.9230420776, "sourceWeight": "677129.9230420776", "direction": "Imp", "source_type": "primary", "targetWeight": "677129.9230420776" } }, { "key": "geid_107_406", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "France", "attributes": { "weight": 941115.8895427476, "sourceWeight": "941115.8895427476", "direction": "Imp", "source_type": "primary", "targetWeight": "941115.8895427476" } }, { "key": "geid_107_407", "source": "France", "target": "Albania", "attributes": { "weight": 7102.761430511303, "sourceWeight": "7102.761430511303", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_408", "source": "France", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 30937261.20416373, "sourceWeight": "30937261.20416373", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_409", "source": "France", "target": "GermanyZollverein", "attributes": { "weight": 46866387.50565708, "sourceWeight": "46866387.50565708", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_410", "source": "France", "target": "ArgentinaLaPlata", "attributes": { "weight": 8552908.555907361, "sourceWeight": "8552908.555907361", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_411", "source": "France", "target": "Australia", "attributes": { "weight": 1415817.111815253, "sourceWeight": "1415817.111815253", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_412", "source": "France", "target": "Oceania", "attributes": { "weight": 2367.5871435037675, "sourceWeight": "2367.5871435037675", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_413", "source": "France", "target": "Africaother", "attributes": { "weight": 106541.42145766954, "sourceWeight": "106541.42145766954", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_414", "source": "France", "target": "Asiaother", "attributes": { "weight": 601367.1344499569, "sourceWeight": "601367.1344499569", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_415", "source": "France", "target": "Austria", "attributes": { "weight": 1785160.7062018407, "sourceWeight": "1785160.7062018407", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_416", "source": "France", "target": "Bolivia", "attributes": { "weight": 42616.56858306782, "sourceWeight": "42616.56858306782", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_417", "source": "France", "target": "Brazil", "attributes": { "weight": 4465269.3526481055, "sourceWeight": "4465269.3526481055", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_418", "source": "France", "target": "Bulgaria", "attributes": { "weight": 665291.9873245587, "sourceWeight": "665291.9873245587", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_419", "source": "France", "target": "Chile", "attributes": { "weight": 2726276.5957445884, "sourceWeight": "2726276.5957445884", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_420", "source": "France", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1793447.261204104, "sourceWeight": "1793447.261204104", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_421", "source": "France", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 1072516.9760072066, "sourceWeight": "1072516.9760072066", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_422", "source": "France", "target": "CongoBrazzavilleFrenchCongoMiddleCongo_Senegal", "attributes": { "weight": 5858594.3866000725, "sourceWeight": "5858594.3866000725", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_423", "source": "France", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 198877.3200543165, "sourceWeight": "198877.3200543165", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_424", "source": "France", "target": "WesternAfrica", "attributes": { "weight": 252148.03078315125, "sourceWeight": "252148.03078315125", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_425", "source": "France", "target": "Cuba", "attributes": { "weight": 1952075.5998188565, "sourceWeight": "1952075.5998188565", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_426", "source": "France", "target": "Denmark", "attributes": { "weight": 2723909.0086010844, "sourceWeight": "2723909.0086010844", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_427", "source": "France", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 7961011.770031419, "sourceWeight": "7961011.770031419", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_428", "source": "France", "target": "Ecuador", "attributes": { "weight": 224920.77863285792, "sourceWeight": "224920.77863285792", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_429", "source": "France", "target": "Spain", "attributes": { "weight": 13831444.09234901, "sourceWeight": "13831444.09234901", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_430", "source": "France", "target": "Estonia", "attributes": { "weight": 99438.66002715824, "sourceWeight": "99438.66002715824", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_431", "source": "France", "target": "FrenchIndia", "attributes": { "weight": 192958.35219555706, "sourceWeight": "192958.35219555706", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_432", "source": "France", "target": "FrenchPolynesia", "attributes": { "weight": 706724.7623358746, "sourceWeight": "706724.7623358746", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_433", "source": "France", "target": "UnitedStatesofAmerica", "attributes": { "weight": 37302519.23947361, "sourceWeight": "37302519.23947361", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_434", "source": "France", "target": "Finland", "attributes": { "weight": 336197.374377535, "sourceWeight": "336197.374377535", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_435", "source": "France", "target": "Greece", "attributes": { "weight": 4230878.225441232, "sourceWeight": "4230878.225441232", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_436", "source": "France", "target": "Guadeloupe", "attributes": { "weight": 692519.239474852, "sourceWeight": "692519.239474852", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_437", "source": "France", "target": "Guatemala", "attributes": { "weight": 299499.7736532266, "sourceWeight": "299499.7736532266", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_438", "source": "France", "target": "FrenchGuiana", "attributes": { "weight": 332645.99366227933, "sourceWeight": "332645.99366227933", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_439", "source": "France", "target": "Haiti", "attributes": { "weight": 465230.8736984903, "sourceWeight": "465230.8736984903", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_440", "source": "France", "target": "Hungary", "attributes": { "weight": 121930.73789044403, "sourceWeight": "121930.73789044403", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_441", "source": "France", "target": "ReunionBourbonI", "attributes": { "weight": 1116317.3381620264, "sourceWeight": "1116317.3381620264", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_442", "source": "France", "target": "Ireland_UnitedKingdom", "attributes": { "weight": 93504302.85196604, "sourceWeight": "93504302.85196604", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_443", "source": "France", "target": "India", "attributes": { "weight": 4046206.428247939, "sourceWeight": "4046206.428247939", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_444", "source": "France", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 627410.5930284983, "sourceWeight": "627410.5930284983", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_445", "source": "France", "target": "FrenchIndochina", "attributes": { "weight": 7504067.451335192, "sourceWeight": "7504067.451335192", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_446", "source": "France", "target": "Italy", "attributes": { "weight": 17530799.004073646, "sourceWeight": "17530799.004073646", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_447", "source": "France", "target": "Japan", "attributes": { "weight": 2646962.426437212, "sourceWeight": "2646962.426437212", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_448", "source": "France", "target": "Latvia", "attributes": { "weight": 319624.2643730086, "sourceWeight": "319624.2643730086", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_449", "source": "France", "target": "Lithuania", "attributes": { "weight": 21308.28429153391, "sourceWeight": "21308.28429153391", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_450", "source": "France", "target": "MadagascarMalagasyRepublic", "attributes": { "weight": 2242105.024898068, "sourceWeight": "2242105.024898068", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_451", "source": "France", "target": "Morocco", "attributes": { "weight": 8455837.483023705, "sourceWeight": "8455837.483023705", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_452", "source": "France", "target": "Martinique", "attributes": { "weight": 826287.9130828149, "sourceWeight": "826287.9130828149", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_453", "source": "France", "target": "Mexico", "attributes": { "weight": 1402795.3825259823, "sourceWeight": "1402795.3825259823", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_454", "source": "France", "target": "Norway", "attributes": { "weight": 1169588.0488908612, "sourceWeight": "1169588.0488908612", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_455", "source": "France", "target": "Netherlands", "attributes": { "weight": 13861038.931642808, "sourceWeight": "13861038.931642808", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_456", "source": "France", "target": "Peru", "attributes": { "weight": 435636.03440469323, "sourceWeight": "435636.03440469323", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_457", "source": "France", "target": "Philippines", "attributes": { "weight": 111276.59574467708, "sourceWeight": "111276.59574467708", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_458", "source": "France", "target": "Poland", "attributes": { "weight": 2208958.804889015, "sourceWeight": "2208958.804889015", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_459", "source": "France", "target": "Portugal", "attributes": { "weight": 715011.3173381378, "sourceWeight": "715011.3173381378", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_460", "source": "France", "target": "BritishAmerica", "attributes": { "weight": 4159850.61113612, "sourceWeight": "4159850.61113612", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_461", "source": "France", "target": "BritishMediterranean", "attributes": { "weight": 234391.12720687297, "sourceWeight": "234391.12720687297", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_462", "source": "France", "target": "NetherlandsAntilles", "attributes": { "weight": 66292.4400181055, "sourceWeight": "66292.4400181055", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_463", "source": "France", "target": "BritishAfrica", "attributes": { "weight": 2342727.478496978, "sourceWeight": "2342727.478496978", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_464", "source": "France", "target": "Romania", "attributes": { "weight": 1765036.2154820587, "sourceWeight": "1765036.2154820587", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_465", "source": "France", "target": "RussiaUSSR", "attributes": { "weight": 125482.11860569968, "sourceWeight": "125482.11860569968", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_466", "source": "France", "target": "Saar", "attributes": { "weight": 16615726.57310944, "sourceWeight": "16615726.57310944", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_467", "source": "France", "target": "ThailandSiam", "attributes": { "weight": 316072.88365775294, "sourceWeight": "316072.88365775294", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_468", "source": "France", "target": "StPierreandMiquelon", "attributes": { "weight": 223736.98506110604, "sourceWeight": "223736.98506110604", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_469", "source": "France", "target": "Sweden", "attributes": { "weight": 1865658.669080969, "sourceWeight": "1865658.669080969", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_470", "source": "France", "target": "Switzerland", "attributes": { "weight": 31258069.26210849, "sourceWeight": "31258069.26210849", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_471", "source": "France", "target": "Syria", "attributes": { "weight": 2581853.7799908584, "sourceWeight": "2581853.7799908584", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_472", "source": "France", "target": "Czechoslovakia", "attributes": { "weight": 1244167.0439112298, "sourceWeight": "1244167.0439112298", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_473", "source": "France", "target": "CamerounFrenchCameroons_TogoFrenchTogoland", "attributes": { "weight": 564669.5337256485, "sourceWeight": "564669.5337256485", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_474", "source": "France", "target": "Cyrenaica_TripolitaniaRegencyofTripoli", "attributes": { "weight": 80497.9628791281, "sourceWeight": "80497.9628791281", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_475", "source": "France", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 6726315.074694203, "sourceWeight": "6726315.074694203", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_476", "source": "France", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 3367892.7116341093, "sourceWeight": "3367892.7116341093", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_477", "source": "France", "target": "Belgium_Luxemburg", "attributes": { "weight": 85498306.92620805, "sourceWeight": "85498306.92620805", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_478", "source": "France", "target": "Paraguay_Uruguay", "attributes": { "weight": 1369649.1625169294, "sourceWeight": "1369649.1625169294", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_479", "source": "France", "target": "Venezuela", "attributes": { "weight": 434452.2408329414, "sourceWeight": "434452.2408329414", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_480", "source": "France", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 1325848.80036211, "sourceWeight": "1325848.80036211", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_481", "source": "UnitedKingdom", "target": "StVincent", "attributes": { "weight": 51834, "sourceWeight": "51834", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "51834" } }, { "key": "geid_107_482", "source": "CanadaProvinceofCanada", "target": "StVincent", "attributes": { "weight": 40686, "sourceWeight": "40686", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "40686" } }, { "key": "geid_107_483", "source": "NewfoundlandandLabradorNewfoundland", "target": "StVincent", "attributes": { "weight": 3142, "sourceWeight": "3142", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3142" } }, { "key": "geid_107_484", "source": "GuyanaBritishGuiana", "target": "StVincent", "attributes": { "weight": 5943, "sourceWeight": "5943", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5943" } }, { "key": "geid_107_485", "source": "Anguilla", "target": "StVincent", "attributes": { "weight": 267, "sourceWeight": "267", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "267" } }, { "key": "geid_107_486", "source": "AntiguaandBarbudaAntigua", "target": "StVincent", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "14" } }, { "key": "geid_107_487", "source": "Barbados", "target": "StVincent", "attributes": { "weight": 8141, "sourceWeight": "8141", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "8141" } }, { "key": "geid_107_488", "source": "StKitts", "target": "StVincent", "attributes": { "weight": 63, "sourceWeight": "63", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "63" } }, { "key": "geid_107_489", "source": "Grenada", "target": "StVincent", "attributes": { "weight": 51, "sourceWeight": "51", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "51" } }, { "key": "geid_107_490", "source": "Jamaica", "target": "StVincent", "attributes": { "weight": 205, "sourceWeight": "205", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "205" } }, { "key": "geid_107_491", "source": "StLucia", "target": "StVincent", "attributes": { "weight": 121, "sourceWeight": "121", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "121" } }, { "key": "geid_107_492", "source": "Trinidad", "target": "StVincent", "attributes": { "weight": 3779, "sourceWeight": "3779", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3779" } }, { "key": "geid_107_493", "source": "Bermuda", "target": "StVincent", "attributes": { "weight": 140, "sourceWeight": "140", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "140" } }, { "key": "geid_107_494", "source": "SriLankaCeylon", "target": "StVincent", "attributes": { "weight": 32, "sourceWeight": "32", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "32" } }, { "key": "geid_107_495", "source": "India", "target": "StVincent", "attributes": { "weight": 869, "sourceWeight": "869", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "869" } }, { "key": "geid_107_496", "source": "Australia", "target": "StVincent", "attributes": { "weight": 10, "sourceWeight": "10", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "10" } }, { "key": "geid_107_497", "source": "Austria", "target": "StVincent", "attributes": { "weight": 31, "sourceWeight": "31", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "31" } }, { "key": "geid_107_498", "source": "Belgium", "target": "StVincent", "attributes": { "weight": 77, "sourceWeight": "77", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "77" } }, { "key": "geid_107_499", "source": "Czechoslovakia", "target": "StVincent", "attributes": { "weight": 28, "sourceWeight": "28", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "28" } }, { "key": "geid_107_500", "source": "Denmark", "target": "StVincent", "attributes": { "weight": 543, "sourceWeight": "543", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "543" } }, { "key": "geid_107_501", "source": "France", "target": "StVincent", "attributes": { "weight": 1264, "sourceWeight": "1264", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1264" } }, { "key": "geid_107_502", "source": "GermanyZollverein", "target": "StVincent", "attributes": { "weight": 1335, "sourceWeight": "1335", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1335" } }, { "key": "geid_107_503", "source": "Greece", "target": "StVincent", "attributes": { "weight": 118, "sourceWeight": "118", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "118" } }, { "key": "geid_107_504", "source": "Netherlands", "target": "StVincent", "attributes": { "weight": 553, "sourceWeight": "553", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "553" } }, { "key": "geid_107_505", "source": "Italy", "target": "StVincent", "attributes": { "weight": 62, "sourceWeight": "62", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "62" } }, { "key": "geid_107_506", "source": "MadeiraIsles", "target": "StVincent", "attributes": { "weight": 25, "sourceWeight": "25", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "25" } }, { "key": "geid_107_507", "source": "Norway", "target": "StVincent", "attributes": { "weight": 198, "sourceWeight": "198", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "198" } }, { "key": "geid_107_508", "source": "Portugal", "target": "StVincent", "attributes": { "weight": 25, "sourceWeight": "25", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "25" } }, { "key": "geid_107_509", "source": "RussiaUSSR", "target": "StVincent", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2" } }, { "key": "geid_107_510", "source": "Spain", "target": "StVincent", "attributes": { "weight": 194, "sourceWeight": "194", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "194" } }, { "key": "geid_107_511", "source": "Switzerland", "target": "StVincent", "attributes": { "weight": 350, "sourceWeight": "350", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "350" } }, { "key": "geid_107_512", "source": "ArgentinaLaPlata", "target": "StVincent", "attributes": { "weight": 30, "sourceWeight": "30", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "30" } }, { "key": "geid_107_513", "source": "WesternAnatolia", "target": "StVincent", "attributes": { "weight": 8, "sourceWeight": "8", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "8" } }, { "key": "geid_107_514", "source": "PeoplesRepublicofChinaChina", "target": "StVincent", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2" } }, { "key": "geid_107_515", "source": "Japan", "target": "StVincent", "attributes": { "weight": 74, "sourceWeight": "74", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "74" } }, { "key": "geid_107_516", "source": "Java", "target": "StVincent", "attributes": { "weight": 13, "sourceWeight": "13", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "13" } }, { "key": "geid_107_517", "source": "ThailandSiam", "target": "StVincent", "attributes": { "weight": 62, "sourceWeight": "62", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "62" } }, { "key": "geid_107_518", "source": "UnitedStatesofAmerica", "target": "StVincent", "attributes": { "weight": 33983, "sourceWeight": "33983", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "33983" } }, { "key": "geid_107_519", "source": "Brazil", "target": "StVincent", "attributes": { "weight": 229, "sourceWeight": "229", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "229" } }, { "key": "geid_107_520", "source": "Sweden", "target": "StVincent", "attributes": { "weight": 150, "sourceWeight": "150", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "150" } }, { "key": "geid_107_521", "source": "Liberia", "target": "StVincent", "attributes": { "weight": 7, "sourceWeight": "7", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7" } }, { "key": "geid_107_522", "source": "Curacao", "target": "StVincent", "attributes": { "weight": 58, "sourceWeight": "58", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "58" } }, { "key": "geid_107_523", "source": "VirginIslandsDanishWestIndies", "target": "StVincent", "attributes": { "weight": 11, "sourceWeight": "11", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "11" } }, { "key": "geid_107_524", "source": "***NA", "target": "StVincent", "attributes": { "weight": 5290, "sourceWeight": "5290", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5290" } }, { "key": "geid_107_525", "source": "StVincent", "target": "UnitedKingdom", "attributes": { "weight": 84521, "sourceWeight": "84521", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_526", "source": "StVincent", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 537, "sourceWeight": "537", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_527", "source": "StVincent", "target": "Barbados", "attributes": { "weight": 16014, "sourceWeight": "16014", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_528", "source": "StVincent", "target": "Bermuda", "attributes": { "weight": 91, "sourceWeight": "91", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_529", "source": "StVincent", "target": "GuyanaBritishGuiana", "attributes": { "weight": 1101, "sourceWeight": "1101", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_530", "source": "StVincent", "target": "CanadaProvinceofCanada", "attributes": { "weight": 18368, "sourceWeight": "18368", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_531", "source": "StVincent", "target": "Grenada", "attributes": { "weight": 1777, "sourceWeight": "1777", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_532", "source": "StVincent", "target": "StLucia", "attributes": { "weight": 270, "sourceWeight": "270", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_533", "source": "StVincent", "target": "StKitts", "attributes": { "weight": 9, "sourceWeight": "9", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_534", "source": "StVincent", "target": "Trinidad", "attributes": { "weight": 20324, "sourceWeight": "20324", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_535", "source": "StVincent", "target": "Montserrat", "attributes": { "weight": 24, "sourceWeight": "24", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_536", "source": "StVincent", "target": "Jamaica", "attributes": { "weight": 106, "sourceWeight": "106", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_537", "source": "StVincent", "target": "Curacao", "attributes": { "weight": 229, "sourceWeight": "229", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_538", "source": "StVincent", "target": "UnitedStatesofAmerica", "attributes": { "weight": 6931, "sourceWeight": "6931", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_539", "source": "StVincent", "target": "Netherlands", "attributes": { "weight": 560, "sourceWeight": "560", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_540", "source": "UnitedKingdom", "target": "StLucia", "attributes": { "weight": 55920, "sourceWeight": "55920", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "55920" } }, { "key": "geid_107_541", "source": "Anguilla", "target": "StLucia", "attributes": { "weight": 370, "sourceWeight": "370", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "370" } }, { "key": "geid_107_542", "source": "AntiguaandBarbudaAntigua", "target": "StLucia", "attributes": { "weight": 51, "sourceWeight": "51", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "51" } }, { "key": "geid_107_543", "source": "Barbados", "target": "StLucia", "attributes": { "weight": 5889, "sourceWeight": "5889", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5889" } }, { "key": "geid_107_544", "source": "Bermuda", "target": "StLucia", "attributes": { "weight": 316, "sourceWeight": "316", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "316" } }, { "key": "geid_107_545", "source": "GuyanaBritishGuiana", "target": "StLucia", "attributes": { "weight": 2444, "sourceWeight": "2444", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2444" } }, { "key": "geid_107_546", "source": "CanadaProvinceofCanada", "target": "StLucia", "attributes": { "weight": 41472, "sourceWeight": "41472", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "41472" } }, { "key": "geid_107_547", "source": "SriLankaCeylon", "target": "StLucia", "attributes": { "weight": 79, "sourceWeight": "79", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "79" } }, { "key": "geid_107_548", "source": "Dominica", "target": "StLucia", "attributes": { "weight": 15, "sourceWeight": "15", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "15" } }, { "key": "geid_107_549", "source": "EgyptArabRepublicEgypt", "target": "StLucia", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1" } }, { "key": "geid_107_550", "source": "Grenada", "target": "StLucia", "attributes": { "weight": 160, "sourceWeight": "160", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "160" } }, { "key": "geid_107_551", "source": "India", "target": "StLucia", "attributes": { "weight": 2979, "sourceWeight": "2979", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2979" } }, { "key": "geid_107_552", "source": "Jamaica", "target": "StLucia", "attributes": { "weight": 67, "sourceWeight": "67", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "67" } }, { "key": "geid_107_553", "source": "IraqMesopotamia", "target": "StLucia", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1" } }, { "key": "geid_107_554", "source": "Montserrat", "target": "StLucia", "attributes": { "weight": 46, "sourceWeight": "46", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "46" } }, { "key": "geid_107_555", "source": "Nevis", "target": "StLucia", "attributes": { "weight": 1000, "sourceWeight": "1000", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1000" } }, { "key": "geid_107_556", "source": "NewfoundlandandLabradorNewfoundland", "target": "StLucia", "attributes": { "weight": 4880, "sourceWeight": "4880", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4880" } }, { "key": "geid_107_557", "source": "ThailandSiam", "target": "StLucia", "attributes": { "weight": 22, "sourceWeight": "22", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "22" } }, { "key": "geid_107_558", "source": "StVincent", "target": "StLucia", "attributes": { "weight": 360, "sourceWeight": "360", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "360" } }, { "key": "geid_107_559", "source": "StKitts", "target": "StLucia", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2" } }, { "key": "geid_107_560", "source": "StraitsSettlements", "target": "StLucia", "attributes": { "weight": 57, "sourceWeight": "57", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "57" } }, { "key": "geid_107_561", "source": "Trinidad", "target": "StLucia", "attributes": { "weight": 4890, "sourceWeight": "4890", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4890" } }, { "key": "geid_107_562", "source": "AlgeriaRegencyofAlgiers", "target": "StLucia", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1" } }, { "key": "geid_107_563", "source": "ArgentinaLaPlata", "target": "StLucia", "attributes": { "weight": 8, "sourceWeight": "8", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "8" } }, { "key": "geid_107_564", "source": "Austria", "target": "StLucia", "attributes": { "weight": 153, "sourceWeight": "153", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "153" } }, { "key": "geid_107_565", "source": "Belgium", "target": "StLucia", "attributes": { "weight": 24, "sourceWeight": "24", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "24" } }, { "key": "geid_107_566", "source": "Brazil", "target": "StLucia", "attributes": { "weight": 721, "sourceWeight": "721", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "721" } }, { "key": "geid_107_567", "source": "Cayenne", "target": "StLucia", "attributes": { "weight": 6, "sourceWeight": "6", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6" } }, { "key": "geid_107_568", "source": "PeoplesRepublicofChinaChina", "target": "StLucia", "attributes": { "weight": 15, "sourceWeight": "15", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "15" } }, { "key": "geid_107_569", "source": "ColombiaNewGranadaGranColombia", "target": "StLucia", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1" } }, { "key": "geid_107_570", "source": "Cuba", "target": "StLucia", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2" } }, { "key": "geid_107_571", "source": "Denmark", "target": "StLucia", "attributes": { "weight": 694, "sourceWeight": "694", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "694" } }, { "key": "geid_107_572", "source": "France", "target": "StLucia", "attributes": { "weight": 4474, "sourceWeight": "4474", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4474" } }, { "key": "geid_107_573", "source": "GermanyZollverein", "target": "StLucia", "attributes": { "weight": 1540, "sourceWeight": "1540", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1540" } }, { "key": "geid_107_574", "source": "Greece", "target": "StLucia", "attributes": { "weight": 4, "sourceWeight": "4", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4" } }, { "key": "geid_107_575", "source": "Guadeloupe", "target": "StLucia", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2" } }, { "key": "geid_107_576", "source": "Netherlands", "target": "StLucia", "attributes": { "weight": 2987, "sourceWeight": "2987", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2987" } }, { "key": "geid_107_577", "source": "Italy", "target": "StLucia", "attributes": { "weight": 162, "sourceWeight": "162", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "162" } }, { "key": "geid_107_578", "source": "Japan", "target": "StLucia", "attributes": { "weight": 149, "sourceWeight": "149", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "149" } }, { "key": "geid_107_579", "source": "MadeiraIsles", "target": "StLucia", "attributes": { "weight": 224, "sourceWeight": "224", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "224" } }, { "key": "geid_107_580", "source": "Martinique", "target": "StLucia", "attributes": { "weight": 374, "sourceWeight": "374", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "374" } }, { "key": "geid_107_581", "source": "Norway", "target": "StLucia", "attributes": { "weight": 32, "sourceWeight": "32", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "32" } }, { "key": "geid_107_582", "source": "Portugal", "target": "StLucia", "attributes": { "weight": 367, "sourceWeight": "367", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "367" } }, { "key": "geid_107_583", "source": "RussiaUSSR", "target": "StLucia", "attributes": { "weight": 4, "sourceWeight": "4", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4" } }, { "key": "geid_107_584", "source": "Spain", "target": "StLucia", "attributes": { "weight": 96, "sourceWeight": "96", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "96" } }, { "key": "geid_107_585", "source": "Sweden", "target": "StLucia", "attributes": { "weight": 558, "sourceWeight": "558", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "558" } }, { "key": "geid_107_586", "source": "Switzerland", "target": "StLucia", "attributes": { "weight": 487, "sourceWeight": "487", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "487" } }, { "key": "geid_107_587", "source": "TurkeyOttomanEmpire", "target": "StLucia", "attributes": { "weight": 10, "sourceWeight": "10", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "10" } }, { "key": "geid_107_588", "source": "UnitedStatesofAmerica", "target": "StLucia", "attributes": { "weight": 92009, "sourceWeight": "92009", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "92009" } }, { "key": "geid_107_589", "source": "Venezuela", "target": "StLucia", "attributes": { "weight": 266, "sourceWeight": "266", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "266" } }, { "key": "geid_107_590", "source": "StLucia", "target": "UnitedKingdom", "attributes": { "weight": 102367, "sourceWeight": "102367", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_591", "source": "StLucia", "target": "CanadaProvinceofCanada", "attributes": { "weight": 21363, "sourceWeight": "21363", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_592", "source": "StLucia", "target": "Barbados", "attributes": { "weight": 6954, "sourceWeight": "6954", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_593", "source": "StLucia", "target": "StVincent", "attributes": { "weight": 164, "sourceWeight": "164", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_594", "source": "StLucia", "target": "Bermuda", "attributes": { "weight": 368, "sourceWeight": "368", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_595", "source": "StLucia", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 332, "sourceWeight": "332", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_596", "source": "StLucia", "target": "GuyanaBritishGuiana", "attributes": { "weight": 606, "sourceWeight": "606", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_597", "source": "StLucia", "target": "Grenada", "attributes": { "weight": 202, "sourceWeight": "202", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_598", "source": "StLucia", "target": "Dominica", "attributes": { "weight": 635, "sourceWeight": "635", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_599", "source": "StLucia", "target": "Trinidad", "attributes": { "weight": 1401, "sourceWeight": "1401", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_600", "source": "StLucia", "target": "StKitts", "attributes": { "weight": 117, "sourceWeight": "117", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_601", "source": "StLucia", "target": "Jamaica", "attributes": { "weight": 1215, "sourceWeight": "1215", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_602", "source": "StLucia", "target": "Montserrat", "attributes": { "weight": 8, "sourceWeight": "8", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_603", "source": "StLucia", "target": "Nevis", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_604", "source": "StLucia", "target": "Anguilla", "attributes": { "weight": 7, "sourceWeight": "7", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_605", "source": "StLucia", "target": "Gambia", "attributes": { "weight": 19, "sourceWeight": "19", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_606", "source": "StLucia", "target": "BelizeBritishHonduras", "attributes": { "weight": 71, "sourceWeight": "71", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_607", "source": "StLucia", "target": "Bahamas", "attributes": { "weight": 163, "sourceWeight": "163", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_608", "source": "StLucia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 22349, "sourceWeight": "22349", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_609", "source": "StLucia", "target": "France", "attributes": { "weight": 3125, "sourceWeight": "3125", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_610", "source": "StLucia", "target": "Martinique", "attributes": { "weight": 1292, "sourceWeight": "1292", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_611", "source": "StLucia", "target": "Netherlands", "attributes": { "weight": 540, "sourceWeight": "540", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_612", "source": "StLucia", "target": "Curacao", "attributes": { "weight": 45, "sourceWeight": "45", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_613", "source": "Austria", "target": "Haiti", "attributes": { "weight": 4.300588501584428, "sourceWeight": "4.300588501584428", "direction": "Imp", "source_type": "primary", "targetWeight": "4.300588501584428" } }, { "key": "geid_107_614", "source": "Bahamas", "target": "Haiti", "attributes": { "weight": 688.3205070167496, "sourceWeight": "688.3205070167496", "direction": "Imp", "source_type": "primary", "targetWeight": "688.3205070167496" } }, { "key": "geid_107_615", "source": "Belgium", "target": "Haiti", "attributes": { "weight": 543.4585785423269, "sourceWeight": "543.4585785423269", "direction": "Imp", "source_type": "primary", "targetWeight": "543.4585785423269" } }, { "key": "geid_107_616", "source": "CanadaProvinceofCanada", "target": "Haiti", "attributes": { "weight": 16.749660479855137, "sourceWeight": "16.749660479855137", "direction": "Imp", "source_type": "primary", "targetWeight": "16.749660479855137" } }, { "key": "geid_107_617", "source": "PanamaCanalZone", "target": "Haiti", "attributes": { "weight": 2692.8474422815752, "sourceWeight": "2692.8474422815752", "direction": "Imp", "source_type": "primary", "targetWeight": "2692.8474422815752" } }, { "key": "geid_107_618", "source": "PeoplesRepublicofChinaChina", "target": "Haiti", "attributes": { "weight": 5.885015844273427, "sourceWeight": "5.885015844273427", "direction": "Imp", "source_type": "primary", "targetWeight": "5.885015844273427" } }, { "key": "geid_107_619", "source": "Cuba", "target": "Haiti", "attributes": { "weight": 1083.7483023992756, "sourceWeight": "1083.7483023992756", "direction": "Imp", "source_type": "primary", "targetWeight": "1083.7483023992756" } }, { "key": "geid_107_620", "source": "Curacao", "target": "Haiti", "attributes": { "weight": 9466.953372566772, "sourceWeight": "9466.953372566772", "direction": "Imp", "source_type": "primary", "targetWeight": "9466.953372566772" } }, { "key": "geid_107_621", "source": "Czechoslovakia", "target": "Haiti", "attributes": { "weight": 227.0258035310095, "sourceWeight": "227.0258035310095", "direction": "Imp", "source_type": "primary", "targetWeight": "227.0258035310095" } }, { "key": "geid_107_622", "source": "Denmark", "target": "Haiti", "attributes": { "weight": 14369.171570846536, "sourceWeight": "14369.171570846536", "direction": "Imp", "source_type": "primary", "targetWeight": "14369.171570846536" } }, { "key": "geid_107_623", "source": "DominicanRepublicSantoDomingo", "target": "Haiti", "attributes": { "weight": 35145.088275237664, "sourceWeight": "35145.088275237664", "direction": "Imp", "source_type": "primary", "targetWeight": "35145.088275237664" } }, { "key": "geid_107_624", "source": "EgyptArabRepublicEgypt", "target": "Haiti", "attributes": { "weight": 13.354459031235853, "sourceWeight": "13.354459031235853", "direction": "Imp", "source_type": "primary", "targetWeight": "13.354459031235853" } }, { "key": "geid_107_625", "source": "France", "target": "Haiti", "attributes": { "weight": 200368.4925305568, "sourceWeight": "200368.4925305568", "direction": "Imp", "source_type": "primary", "targetWeight": "200368.4925305568" } }, { "key": "geid_107_626", "source": "GermanyZollverein", "target": "Haiti", "attributes": { "weight": 101403.12358533272, "sourceWeight": "101403.12358533272", "direction": "Imp", "source_type": "primary", "targetWeight": "101403.12358533272" } }, { "key": "geid_107_627", "source": "Greece", "target": "Haiti", "attributes": { "weight": 2.037120869171571, "sourceWeight": "2.037120869171571", "direction": "Imp", "source_type": "primary", "targetWeight": "2.037120869171571" } }, { "key": "geid_107_628", "source": "Guadeloupe", "target": "Haiti", "attributes": { "weight": 14.033499320959711, "sourceWeight": "14.033499320959711", "direction": "Imp", "source_type": "primary", "targetWeight": "14.033499320959711" } }, { "key": "geid_107_629", "source": "HawaiiSandwichIs", "target": "Haiti", "attributes": { "weight": 907.1978270710729, "sourceWeight": "907.1978270710729", "direction": "Imp", "source_type": "primary", "targetWeight": "907.1978270710729" } }, { "key": "geid_107_630", "source": "Italy", "target": "Haiti", "attributes": { "weight": 15017.65504753282, "sourceWeight": "15017.65504753282", "direction": "Imp", "source_type": "primary", "targetWeight": "15017.65504753282" } }, { "key": "geid_107_631", "source": "Jamaica", "target": "Haiti", "attributes": { "weight": 2135.1290176550474, "sourceWeight": "2135.1290176550474", "direction": "Imp", "source_type": "primary", "targetWeight": "2135.1290176550474" } }, { "key": "geid_107_632", "source": "MadeiraIsles", "target": "Haiti", "attributes": { "weight": 68.58306926210955, "sourceWeight": "68.58306926210955", "direction": "Imp", "source_type": "primary", "targetWeight": "68.58306926210955" } }, { "key": "geid_107_633", "source": "Martinique", "target": "Haiti", "attributes": { "weight": 0.9053870529651427, "sourceWeight": "0.9053870529651427", "direction": "Imp", "source_type": "primary", "targetWeight": "0.9053870529651427" } }, { "key": "geid_107_634", "source": "Mexico", "target": "Haiti", "attributes": { "weight": 3.395201448619285, "sourceWeight": "3.395201448619285", "direction": "Imp", "source_type": "primary", "targetWeight": "3.395201448619285" } }, { "key": "geid_107_635", "source": "Netherlands", "target": "Haiti", "attributes": { "weight": 35334.766862833865, "sourceWeight": "35334.766862833865", "direction": "Imp", "source_type": "primary", "targetWeight": "35334.766862833865" } }, { "key": "geid_107_636", "source": "Norway", "target": "Haiti", "attributes": { "weight": 0.45269352648257133, "sourceWeight": "0.45269352648257133", "direction": "Imp", "source_type": "primary", "targetWeight": "0.45269352648257133" } }, { "key": "geid_107_637", "source": "Palestine", "target": "Haiti", "attributes": { "weight": 1.1317338162064283, "sourceWeight": "1.1317338162064283", "direction": "Imp", "source_type": "primary", "targetWeight": "1.1317338162064283" } }, { "key": "geid_107_638", "source": "PuertoRico", "target": "Haiti", "attributes": { "weight": 775.2376641014033, "sourceWeight": "775.2376641014033", "direction": "Imp", "source_type": "primary", "targetWeight": "775.2376641014033" } }, { "key": "geid_107_639", "source": "Portugal", "target": "Haiti", "attributes": { "weight": 0.45269352648257133, "sourceWeight": "0.45269352648257133", "direction": "Imp", "source_type": "primary", "targetWeight": "0.45269352648257133" } }, { "key": "geid_107_640", "source": "Spain", "target": "Haiti", "attributes": { "weight": 1545.7220461747397, "sourceWeight": "1545.7220461747397", "direction": "Imp", "source_type": "primary", "targetWeight": "1545.7220461747397" } }, { "key": "geid_107_641", "source": "Syria", "target": "Haiti", "attributes": { "weight": 2.037120869171571, "sourceWeight": "2.037120869171571", "direction": "Imp", "source_type": "primary", "targetWeight": "2.037120869171571" } }, { "key": "geid_107_642", "source": "Sweden", "target": "Haiti", "attributes": { "weight": 7.243096423721141, "sourceWeight": "7.243096423721141", "direction": "Imp", "source_type": "primary", "targetWeight": "7.243096423721141" } }, { "key": "geid_107_643", "source": "Switzerland", "target": "Haiti", "attributes": { "weight": 1060.8872793119058, "sourceWeight": "1060.8872793119058", "direction": "Imp", "source_type": "primary", "targetWeight": "1060.8872793119058" } }, { "key": "geid_107_644", "source": "UnitedKingdom", "target": "Haiti", "attributes": { "weight": 222861.02308736986, "sourceWeight": "222861.02308736986", "direction": "Imp", "source_type": "primary", "targetWeight": "222861.02308736986" } }, { "key": "geid_107_645", "source": "UnitedStatesofAmerica", "target": "Haiti", "attributes": { "weight": 2674824.807605251, "sourceWeight": "2674824.807605251", "direction": "Imp", "source_type": "primary", "targetWeight": "2674824.807605251" } }, { "key": "geid_107_646", "source": "BritishVirginIs", "target": "Haiti", "attributes": { "weight": 5829.787234042553, "sourceWeight": "5829.787234042553", "direction": "Imp", "source_type": "primary", "targetWeight": "5829.787234042553" } }, { "key": "geid_107_647", "source": "Haiti", "target": "Bahamas", "attributes": { "weight": 644.8619284744228, "sourceWeight": "644.8619284744228", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_648", "source": "Haiti", "target": "Barbados", "attributes": { "weight": 11474.649162516977, "sourceWeight": "11474.649162516977", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_649", "source": "Haiti", "target": "Belgium", "attributes": { "weight": 115295.38252602988, "sourceWeight": "115295.38252602988", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_650", "source": "Haiti", "target": "CanadaProvinceofCanada", "attributes": { "weight": 11570.846536894522, "sourceWeight": "11570.846536894522", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_651", "source": "Haiti", "target": "PanamaCanalZone", "attributes": { "weight": 1083.974649162517, "sourceWeight": "1083.974649162517", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_652", "source": "Haiti", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 104.1195110909914, "sourceWeight": "104.1195110909914", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_653", "source": "Haiti", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 8260.977818017202, "sourceWeight": "8260.977818017202", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_654", "source": "Haiti", "target": "Curacao", "attributes": { "weight": 156.63196016296968, "sourceWeight": "156.63196016296968", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_655", "source": "Haiti", "target": "Denmark", "attributes": { "weight": 191742.41738343143, "sourceWeight": "191742.41738343143", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_656", "source": "Haiti", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 1682.209144409235, "sourceWeight": "1682.209144409235", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_657", "source": "Haiti", "target": "France", "attributes": { "weight": 2120851.742870077, "sourceWeight": "2120851.742870077", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_658", "source": "Haiti", "target": "GermanyZollverein", "attributes": { "weight": 147733.81620642825, "sourceWeight": "147733.81620642825", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_659", "source": "Haiti", "target": "Italy", "attributes": { "weight": 66446.8085106383, "sourceWeight": "66446.8085106383", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_660", "source": "Haiti", "target": "Jamaica", "attributes": { "weight": 312.35853327297417, "sourceWeight": "312.35853327297417", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_661", "source": "Haiti", "target": "Japan", "attributes": { "weight": 37.573562698053415, "sourceWeight": "37.573562698053415", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_662", "source": "Haiti", "target": "Martinique", "attributes": { "weight": 45.26935264825713, "sourceWeight": "45.26935264825713", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_663", "source": "Haiti", "target": "Netherlands", "attributes": { "weight": 50916.251697600725, "sourceWeight": "50916.251697600725", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_664", "source": "Haiti", "target": "Norway", "attributes": { "weight": 6132.412856496152, "sourceWeight": "6132.412856496152", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_665", "source": "Haiti", "target": "PuertoRico", "attributes": { "weight": 2016.0706201901312, "sourceWeight": "2016.0706201901312", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_666", "source": "Haiti", "target": "Spain", "attributes": { "weight": 5318.469895880489, "sourceWeight": "5318.469895880489", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_667", "source": "Haiti", "target": "Sweden", "attributes": { "weight": 594.1602535083748, "sourceWeight": "594.1602535083748", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_668", "source": "Haiti", "target": "Switzerland", "attributes": { "weight": 1891.353553644183, "sourceWeight": "1891.353553644183", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_669", "source": "Haiti", "target": "UnitedKingdom", "attributes": { "weight": 163580.57944771388, "sourceWeight": "163580.57944771388", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_670", "source": "Haiti", "target": "UnitedStatesofAmerica", "attributes": { "weight": 300871.6613852422, "sourceWeight": "300871.6613852422", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_671", "source": "Gambia", "target": "UnitedKingdom", "attributes": { "weight": 477435, "sourceWeight": "477435", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_672", "source": "Gambia", "target": "Nigeria", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_673", "source": "Gambia", "target": "SierraLeone", "attributes": { "weight": 2944, "sourceWeight": "2944", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_674", "source": "Gambia", "target": "SouthAfrica", "attributes": { "weight": 7, "sourceWeight": "7", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_675", "source": "Gambia", "target": "Belgium", "attributes": { "weight": 23882, "sourceWeight": "23882", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_676", "source": "Gambia", "target": "CanaryIs", "attributes": { "weight": 87, "sourceWeight": "87", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_677", "source": "Gambia", "target": "Denmark", "attributes": { "weight": 14404, "sourceWeight": "14404", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_678", "source": "Gambia", "target": "France", "attributes": { "weight": 273565, "sourceWeight": "273565", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_679", "source": "Gambia", "target": "FrenchWestAfrica", "attributes": { "weight": 724, "sourceWeight": "724", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_680", "source": "Gambia", "target": "GermanyZollverein", "attributes": { "weight": 25845, "sourceWeight": "25845", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_681", "source": "Gambia", "target": "Netherlands", "attributes": { "weight": 37346, "sourceWeight": "37346", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_682", "source": "Gambia", "target": "Liberia", "attributes": { "weight": 441, "sourceWeight": "441", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_683", "source": "UnitedKingdom", "target": "Gambia", "attributes": { "weight": 279809, "sourceWeight": "279809", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "279809" } }, { "key": "geid_107_684", "source": "CanadaProvinceofCanada", "target": "Gambia", "attributes": { "weight": 193, "sourceWeight": "193", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "193" } }, { "key": "geid_107_685", "source": "SriLankaCeylon", "target": "Gambia", "attributes": { "weight": 33, "sourceWeight": "33", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "33" } }, { "key": "geid_107_686", "source": "GhanaGoldCoast", "target": "Gambia", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2" } }, { "key": "geid_107_687", "source": "India", "target": "Gambia", "attributes": { "weight": 235, "sourceWeight": "235", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "235" } }, { "key": "geid_107_688", "source": "Nigeria", "target": "Gambia", "attributes": { "weight": 201, "sourceWeight": "201", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "201" } }, { "key": "geid_107_689", "source": "SierraLeone", "target": "Gambia", "attributes": { "weight": 83273, "sourceWeight": "83273", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "83273" } }, { "key": "geid_107_690", "source": "Belgium", "target": "Gambia", "attributes": { "weight": 21424, "sourceWeight": "21424", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "21424" } }, { "key": "geid_107_691", "source": "CanaryIs", "target": "Gambia", "attributes": { "weight": 1787, "sourceWeight": "1787", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1787" } }, { "key": "geid_107_692", "source": "CapeVerde", "target": "Gambia", "attributes": { "weight": 2241, "sourceWeight": "2241", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2241" } }, { "key": "geid_107_693", "source": "PeoplesRepublicofChinaChina", "target": "Gambia", "attributes": { "weight": 100, "sourceWeight": "100", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "100" } }, { "key": "geid_107_694", "source": "Denmark", "target": "Gambia", "attributes": { "weight": 2582, "sourceWeight": "2582", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2582" } }, { "key": "geid_107_695", "source": "France", "target": "Gambia", "attributes": { "weight": 113651, "sourceWeight": "113651", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "113651" } }, { "key": "geid_107_696", "source": "FrenchColonies", "target": "Gambia", "attributes": { "weight": 4229, "sourceWeight": "4229", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4229" } }, { "key": "geid_107_697", "source": "GermanyZollverein", "target": "Gambia", "attributes": { "weight": 105466, "sourceWeight": "105466", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "105466" } }, { "key": "geid_107_698", "source": "Netherlands", "target": "Gambia", "attributes": { "weight": 13383, "sourceWeight": "13383", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "13383" } }, { "key": "geid_107_699", "source": "Italy", "target": "Gambia", "attributes": { "weight": 1091, "sourceWeight": "1091", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1091" } }, { "key": "geid_107_700", "source": "Morocco", "target": "Gambia", "attributes": { "weight": 1300, "sourceWeight": "1300", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1300" } }, { "key": "geid_107_701", "source": "Norway", "target": "Gambia", "attributes": { "weight": 239, "sourceWeight": "239", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "239" } }, { "key": "geid_107_702", "source": "Portugal", "target": "Gambia", "attributes": { "weight": 898, "sourceWeight": "898", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "898" } }, { "key": "geid_107_703", "source": "Siberia", "target": "Gambia", "attributes": { "weight": 56, "sourceWeight": "56", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "56" } }, { "key": "geid_107_704", "source": "Spain", "target": "Gambia", "attributes": { "weight": 193, "sourceWeight": "193", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "193" } }, { "key": "geid_107_705", "source": "Sweden", "target": "Gambia", "attributes": { "weight": 2099, "sourceWeight": "2099", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2099" } }, { "key": "geid_107_706", "source": "Switzerland", "target": "Gambia", "attributes": { "weight": 393, "sourceWeight": "393", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "393" } }, { "key": "geid_107_707", "source": "UnitedStatesofAmerica", "target": "Gambia", "attributes": { "weight": 34822, "sourceWeight": "34822", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "34822" } }, { "key": "geid_107_708", "source": "ZambiaNorthernRhodesia", "target": "UnitedKingdom", "attributes": { "weight": 64614, "sourceWeight": "64614", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_709", "source": "ZambiaNorthernRhodesia", "target": "NortheasternRhodesia", "attributes": { "weight": 2018, "sourceWeight": "2018", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_710", "source": "ZambiaNorthernRhodesia", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 20890, "sourceWeight": "20890", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_711", "source": "ZambiaNorthernRhodesia", "target": "SouthAfrica", "attributes": { "weight": 106803, "sourceWeight": "106803", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_712", "source": "ZambiaNorthernRhodesia", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 162, "sourceWeight": "162", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_713", "source": "ZambiaNorthernRhodesia", "target": "Belgium", "attributes": { "weight": 46208, "sourceWeight": "46208", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_714", "source": "ZambiaNorthernRhodesia", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 104279, "sourceWeight": "104279", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_715", "source": "ZambiaNorthernRhodesia", "target": "GermanyZollverein", "attributes": { "weight": 61080, "sourceWeight": "61080", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_716", "source": "ZambiaNorthernRhodesia", "target": "Netherlands", "attributes": { "weight": 106, "sourceWeight": "106", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_717", "source": "ZambiaNorthernRhodesia", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 383, "sourceWeight": "383", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_718", "source": "ZambiaNorthernRhodesia", "target": "Switzerland", "attributes": { "weight": 15, "sourceWeight": "15", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_719", "source": "UnitedKingdom", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 306354, "sourceWeight": "306354", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "306354" } }, { "key": "geid_107_720", "source": "Ireland", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 9, "sourceWeight": "9", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9" } }, { "key": "geid_107_721", "source": "CanadaProvinceofCanada", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 5010, "sourceWeight": "5010", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5010" } }, { "key": "geid_107_722", "source": "India", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 13249, "sourceWeight": "13249", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "13249" } }, { "key": "geid_107_723", "source": "SriLankaCeylon", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 1081, "sourceWeight": "1081", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1081" } }, { "key": "geid_107_724", "source": "Australia", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 1234, "sourceWeight": "1234", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1234" } }, { "key": "geid_107_725", "source": "NewZealand", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 22, "sourceWeight": "22", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "22" } }, { "key": "geid_107_726", "source": "HongKong", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 4, "sourceWeight": "4", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4" } }, { "key": "geid_107_727", "source": "StraitsSettlements", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 35, "sourceWeight": "35", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "35" } }, { "key": "geid_107_728", "source": "KenyaBritishEastAfricaProtectorate", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 52, "sourceWeight": "52", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "52" } }, { "key": "geid_107_729", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 1635, "sourceWeight": "1635", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1635" } }, { "key": "geid_107_730", "source": "NewfoundlandandLabradorNewfoundland", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 6, "sourceWeight": "6", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6" } }, { "key": "geid_107_731", "source": "BritishWestIndies", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 26, "sourceWeight": "26", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "26" } }, { "key": "geid_107_732", "source": "IraqMesopotamia", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 23, "sourceWeight": "23", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "23" } }, { "key": "geid_107_733", "source": "Austria", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 788, "sourceWeight": "788", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "788" } }, { "key": "geid_107_734", "source": "Belgium", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 12728, "sourceWeight": "12728", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "12728" } }, { "key": "geid_107_735", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 2203, "sourceWeight": "2203", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2203" } }, { "key": "geid_107_736", "source": "Czechoslovakia", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 1443, "sourceWeight": "1443", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1443" } }, { "key": "geid_107_737", "source": "Denmark", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 201, "sourceWeight": "201", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "201" } }, { "key": "geid_107_738", "source": "Finland", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 9, "sourceWeight": "9", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9" } }, { "key": "geid_107_739", "source": "France", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 9091, "sourceWeight": "9091", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9091" } }, { "key": "geid_107_740", "source": "CochinChina", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 16, "sourceWeight": "16", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "16" } }, { "key": "geid_107_741", "source": "GermanyZollverein", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 12385, "sourceWeight": "12385", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "12385" } }, { "key": "geid_107_742", "source": "Greece", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 41, "sourceWeight": "41", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "41" } }, { "key": "geid_107_743", "source": "Netherlands", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 7062, "sourceWeight": "7062", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7062" } }, { "key": "geid_107_744", "source": "IndonesiaDutchEastIndies", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 143, "sourceWeight": "143", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "143" } }, { "key": "geid_107_745", "source": "Italy", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 3051, "sourceWeight": "3051", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3051" } }, { "key": "geid_107_746", "source": "Norway", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 549, "sourceWeight": "549", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "549" } }, { "key": "geid_107_747", "source": "Poland", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 10, "sourceWeight": "10", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "10" } }, { "key": "geid_107_748", "source": "Portugal", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 232, "sourceWeight": "232", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "232" } }, { "key": "geid_107_749", "source": "MadeiraIsles", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 13, "sourceWeight": "13", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "13" } }, { "key": "geid_107_750", "source": "MozambiquePortugueseEastAfrica", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 2028, "sourceWeight": "2028", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2028" } }, { "key": "geid_107_751", "source": "RussiaUSSR", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 226, "sourceWeight": "226", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "226" } }, { "key": "geid_107_752", "source": "Spain", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 152, "sourceWeight": "152", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "152" } }, { "key": "geid_107_753", "source": "Sweden", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 4223, "sourceWeight": "4223", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4223" } }, { "key": "geid_107_754", "source": "Switzerland", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 1301, "sourceWeight": "1301", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1301" } }, { "key": "geid_107_755", "source": "TurkeyOttomanEmpire", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 23, "sourceWeight": "23", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "23" } }, { "key": "geid_107_756", "source": "PeoplesRepublicofChinaChina", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 278, "sourceWeight": "278", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "278" } }, { "key": "geid_107_757", "source": "Japan_RepublicofChinaTaiwanFormosa", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 6348, "sourceWeight": "6348", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6348" } }, { "key": "geid_107_758", "source": "Palestine", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 4, "sourceWeight": "4", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4" } }, { "key": "geid_107_759", "source": "IranPersia", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 19, "sourceWeight": "19", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "19" } }, { "key": "geid_107_760", "source": "ThailandSiam", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 160, "sourceWeight": "160", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "160" } }, { "key": "geid_107_761", "source": "EthiopiaAbyssinia", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 5, "sourceWeight": "5", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5" } }, { "key": "geid_107_762", "source": "EgyptArabRepublicEgypt", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2" } }, { "key": "geid_107_763", "source": "UnitedStatesofAmerica", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 61188, "sourceWeight": "61188", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "61188" } }, { "key": "geid_107_764", "source": "Philippines", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3" } }, { "key": "geid_107_765", "source": "Mexico", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 229, "sourceWeight": "229", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "229" } }, { "key": "geid_107_766", "source": "ArgentinaLaPlata", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 204, "sourceWeight": "204", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "204" } }, { "key": "geid_107_767", "source": "Brazil", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 446, "sourceWeight": "446", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "446" } }, { "key": "geid_107_768", "source": "Cuba", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 28, "sourceWeight": "28", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "28" } }, { "key": "geid_107_769", "source": "UnitedKingdom", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 3435612, "sourceWeight": "3435612", "direction": "Imp", "source_type": "secondary", "targetWeight": "3435612" } }, { "key": "geid_107_770", "source": "Australia", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 7210, "sourceWeight": "7210", "direction": "Imp", "source_type": "secondary", "targetWeight": "7210" } }, { "key": "geid_107_771", "source": "SouthAfrica", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 69300, "sourceWeight": "69300", "direction": "Imp", "source_type": "secondary", "targetWeight": "69300" } }, { "key": "geid_107_772", "source": "India", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 768854, "sourceWeight": "768854", "direction": "Imp", "source_type": "secondary", "targetWeight": "768854" } }, { "key": "geid_107_773", "source": "Zanzibar", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 37275, "sourceWeight": "37275", "direction": "Imp", "source_type": "secondary", "targetWeight": "37275" } }, { "key": "geid_107_774", "source": "SriLankaCeylon", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 4792, "sourceWeight": "4792", "direction": "Imp", "source_type": "secondary", "targetWeight": "4792" } }, { "key": "geid_107_775", "source": "BritishColoniesother", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 92868, "sourceWeight": "92868", "direction": "Imp", "source_type": "secondary", "targetWeight": "92868" } }, { "key": "geid_107_776", "source": "Sweden", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 17460, "sourceWeight": "17460", "direction": "Imp", "source_type": "secondary", "targetWeight": "17460" } }, { "key": "geid_107_777", "source": "GermanyZollverein", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 342813, "sourceWeight": "342813", "direction": "Imp", "source_type": "secondary", "targetWeight": "342813" } }, { "key": "geid_107_778", "source": "Netherlands", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 309312, "sourceWeight": "309312", "direction": "Imp", "source_type": "secondary", "targetWeight": "309312" } }, { "key": "geid_107_779", "source": "Belgium", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 58044, "sourceWeight": "58044", "direction": "Imp", "source_type": "secondary", "targetWeight": "58044" } }, { "key": "geid_107_780", "source": "France", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 52976, "sourceWeight": "52976", "direction": "Imp", "source_type": "secondary", "targetWeight": "52976" } }, { "key": "geid_107_781", "source": "Switzerland", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 21856, "sourceWeight": "21856", "direction": "Imp", "source_type": "secondary", "targetWeight": "21856" } }, { "key": "geid_107_782", "source": "Italy", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 42086, "sourceWeight": "42086", "direction": "Imp", "source_type": "secondary", "targetWeight": "42086" } }, { "key": "geid_107_783", "source": "Japan", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 387987, "sourceWeight": "387987", "direction": "Imp", "source_type": "secondary", "targetWeight": "387987" } }, { "key": "geid_107_784", "source": "Africaother_Asiaother", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 246590, "sourceWeight": "246590", "direction": "Imp", "source_type": "secondary", "targetWeight": "246590" } }, { "key": "geid_107_785", "source": "UnitedStatesofAmerica", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 404604, "sourceWeight": "404604", "direction": "Imp", "source_type": "secondary", "targetWeight": "404604" } }, { "key": "geid_107_786", "source": "Othercountries", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 61655, "sourceWeight": "61655", "direction": "Imp", "source_type": "secondary", "targetWeight": "61655" } }, { "key": "geid_107_787", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "UnitedKingdom", "attributes": { "weight": 2628450, "sourceWeight": "2628450", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_788", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "SouthAfrica", "attributes": { "weight": 69628, "sourceWeight": "69628", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_789", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "India", "attributes": { "weight": 2254484, "sourceWeight": "2254484", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_790", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "TanzaniaTanganyika", "attributes": { "weight": 35142, "sourceWeight": "35142", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_791", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "Zanzibar", "attributes": { "weight": 73383, "sourceWeight": "73383", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_792", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "BritishColoniesother", "attributes": { "weight": 42698, "sourceWeight": "42698", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_793", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "GermanyZollverein", "attributes": { "weight": 90957, "sourceWeight": "90957", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_794", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "Netherlands", "attributes": { "weight": 137881, "sourceWeight": "137881", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_795", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "Belgium", "attributes": { "weight": 219325, "sourceWeight": "219325", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_796", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "France", "attributes": { "weight": 135782, "sourceWeight": "135782", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_797", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "Italy", "attributes": { "weight": 123024, "sourceWeight": "123024", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_798", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "UnitedStatesofAmerica", "attributes": { "weight": 134554, "sourceWeight": "134554", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_799", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "ItalianEastAfrica", "attributes": { "weight": 22101, "sourceWeight": "22101", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_800", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "Arabia", "attributes": { "weight": 8538, "sourceWeight": "8538", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_801", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "Japan", "attributes": { "weight": 63452, "sourceWeight": "63452", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_802", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "Othercountries", "attributes": { "weight": 92728, "sourceWeight": "92728", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_803", "source": "Ireland_UnitedKingdom", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 10255427, "sourceWeight": "10255427", "direction": "Imp", "source_type": "secondary", "targetWeight": "10255427" } }, { "key": "geid_107_804", "source": "CanadaProvinceofCanada", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 19929, "sourceWeight": "19929", "direction": "Imp", "source_type": "secondary", "targetWeight": "19929" } }, { "key": "geid_107_805", "source": "Australia", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 1740694, "sourceWeight": "1740694", "direction": "Imp", "source_type": "secondary", "targetWeight": "1740694" } }, { "key": "geid_107_806", "source": "NewZealand", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 9589, "sourceWeight": "9589", "direction": "Imp", "source_type": "secondary", "targetWeight": "9589" } }, { "key": "geid_107_807", "source": "SouthAfrica", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 757517, "sourceWeight": "757517", "direction": "Imp", "source_type": "secondary", "targetWeight": "757517" } }, { "key": "geid_107_808", "source": "India", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 7861469, "sourceWeight": "7861469", "direction": "Imp", "source_type": "secondary", "targetWeight": "7861469" } }, { "key": "geid_107_809", "source": "Brunei", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 121227, "sourceWeight": "121227", "direction": "Imp", "source_type": "secondary", "targetWeight": "121227" } }, { "key": "geid_107_810", "source": "SabahNorthBorneo", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 455209, "sourceWeight": "455209", "direction": "Imp", "source_type": "secondary", "targetWeight": "455209" } }, { "key": "geid_107_811", "source": "Sarawak", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 2636475, "sourceWeight": "2636475", "direction": "Imp", "source_type": "secondary", "targetWeight": "2636475" } }, { "key": "geid_107_812", "source": "HongKong", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 3313491, "sourceWeight": "3313491", "direction": "Imp", "source_type": "secondary", "targetWeight": "3313491" } }, { "key": "geid_107_813", "source": "BritishColoniesother", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 187692, "sourceWeight": "187692", "direction": "Imp", "source_type": "secondary", "targetWeight": "187692" } }, { "key": "geid_107_814", "source": "GermanyZollverein", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 672466, "sourceWeight": "672466", "direction": "Imp", "source_type": "secondary", "targetWeight": "672466" } }, { "key": "geid_107_815", "source": "Netherlands", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 633581, "sourceWeight": "633581", "direction": "Imp", "source_type": "secondary", "targetWeight": "633581" } }, { "key": "geid_107_816", "source": "Java", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 4557876, "sourceWeight": "4557876", "direction": "Imp", "source_type": "secondary", "targetWeight": "4557876" } }, { "key": "geid_107_817", "source": "Sumatra", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 11594458, "sourceWeight": "11594458", "direction": "Imp", "source_type": "secondary", "targetWeight": "11594458" } }, { "key": "geid_107_818", "source": "DutchBorneo", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 5433448, "sourceWeight": "5433448", "direction": "Imp", "source_type": "secondary", "targetWeight": "5433448" } }, { "key": "geid_107_819", "source": "MalukuMollucas_SulawesiCelebes", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 266310, "sourceWeight": "266310", "direction": "Imp", "source_type": "secondary", "targetWeight": "266310" } }, { "key": "geid_107_820", "source": "Bali_Lombok", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 344661, "sourceWeight": "344661", "direction": "Imp", "source_type": "secondary", "targetWeight": "344661" } }, { "key": "geid_107_821", "source": "Bangka_BelitungBilliton", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 4479619, "sourceWeight": "4479619", "direction": "Imp", "source_type": "secondary", "targetWeight": "4479619" } }, { "key": "geid_107_822", "source": "IndonesiaDutchEastIndiesother", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 348707, "sourceWeight": "348707", "direction": "Imp", "source_type": "secondary", "targetWeight": "348707" } }, { "key": "geid_107_823", "source": "France", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 768045, "sourceWeight": "768045", "direction": "Imp", "source_type": "secondary", "targetWeight": "768045" } }, { "key": "geid_107_824", "source": "FrenchIndochina", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 1772823, "sourceWeight": "1772823", "direction": "Imp", "source_type": "secondary", "targetWeight": "1772823" } }, { "key": "geid_107_825", "source": "Italy", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 634643, "sourceWeight": "634643", "direction": "Imp", "source_type": "secondary", "targetWeight": "634643" } }, { "key": "geid_107_826", "source": "ThailandSiam", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 8402736, "sourceWeight": "8402736", "direction": "Imp", "source_type": "secondary", "targetWeight": "8402736" } }, { "key": "geid_107_827", "source": "PeoplesRepublicofChinaChina", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 3112643, "sourceWeight": "3112643", "direction": "Imp", "source_type": "secondary", "targetWeight": "3112643" } }, { "key": "geid_107_828", "source": "Japan", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 1931478, "sourceWeight": "1931478", "direction": "Imp", "source_type": "secondary", "targetWeight": "1931478" } }, { "key": "geid_107_829", "source": "UnitedStatesofAmerica", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 2649759, "sourceWeight": "2649759", "direction": "Imp", "source_type": "secondary", "targetWeight": "2649759" } }, { "key": "geid_107_830", "source": "Othercountries", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 1258000, "sourceWeight": "1258000", "direction": "Imp", "source_type": "secondary", "targetWeight": "1258000" } }, { "key": "geid_107_831", "source": "MalaysiaBritishMalaya", "target": "UnitedKingdom", "attributes": { "weight": 11070942, "sourceWeight": "11070942", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_832", "source": "MalaysiaBritishMalaya", "target": "CanadaProvinceofCanada", "attributes": { "weight": 322739, "sourceWeight": "322739", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_833", "source": "MalaysiaBritishMalaya", "target": "Australia", "attributes": { "weight": 910405, "sourceWeight": "910405", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_834", "source": "MalaysiaBritishMalaya", "target": "NewZealand", "attributes": { "weight": 325928, "sourceWeight": "325928", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_835", "source": "MalaysiaBritishMalaya", "target": "SouthAfrica", "attributes": { "weight": 200795, "sourceWeight": "200795", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_836", "source": "MalaysiaBritishMalaya", "target": "India", "attributes": { "weight": 3760476, "sourceWeight": "3760476", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_837", "source": "MalaysiaBritishMalaya", "target": "SriLankaCeylon", "attributes": { "weight": 367980, "sourceWeight": "367980", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_838", "source": "MalaysiaBritishMalaya", "target": "SabahNorthBorneo", "attributes": { "weight": 472321, "sourceWeight": "472321", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_839", "source": "MalaysiaBritishMalaya", "target": "Brunei", "attributes": { "weight": 78569, "sourceWeight": "78569", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_840", "source": "MalaysiaBritishMalaya", "target": "Sarawak", "attributes": { "weight": 824901, "sourceWeight": "824901", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_841", "source": "MalaysiaBritishMalaya", "target": "HongKong", "attributes": { "weight": 1904752, "sourceWeight": "1904752", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_842", "source": "MalaysiaBritishMalaya", "target": "BritishColoniesother", "attributes": { "weight": 995871, "sourceWeight": "995871", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_843", "source": "MalaysiaBritishMalaya", "target": "GermanyZollverein", "attributes": { "weight": 1462280, "sourceWeight": "1462280", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_844", "source": "MalaysiaBritishMalaya", "target": "Netherlands", "attributes": { "weight": 1992228, "sourceWeight": "1992228", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_845", "source": "MalaysiaBritishMalaya", "target": "Java", "attributes": { "weight": 2442717, "sourceWeight": "2442717", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_846", "source": "MalaysiaBritishMalaya", "target": "Sumatra", "attributes": { "weight": 4565881, "sourceWeight": "4565881", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_847", "source": "MalaysiaBritishMalaya", "target": "DutchBorneo", "attributes": { "weight": 1449241, "sourceWeight": "1449241", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_848", "source": "MalaysiaBritishMalaya", "target": "MalukuMollucas_SulawesiCelebes", "attributes": { "weight": 487433, "sourceWeight": "487433", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_849", "source": "MalaysiaBritishMalaya", "target": "Bali_Lombok", "attributes": { "weight": 33481, "sourceWeight": "33481", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_850", "source": "MalaysiaBritishMalaya", "target": "Bangka_BelitungBilliton", "attributes": { "weight": 674732, "sourceWeight": "674732", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_851", "source": "MalaysiaBritishMalaya", "target": "IndonesiaDutchEastIndiesother", "attributes": { "weight": 123773, "sourceWeight": "123773", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_852", "source": "MalaysiaBritishMalaya", "target": "France", "attributes": { "weight": 3481626, "sourceWeight": "3481626", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_853", "source": "MalaysiaBritishMalaya", "target": "FrenchIndochina", "attributes": { "weight": 829042, "sourceWeight": "829042", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_854", "source": "MalaysiaBritishMalaya", "target": "Spain", "attributes": { "weight": 445820, "sourceWeight": "445820", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_855", "source": "MalaysiaBritishMalaya", "target": "Italy", "attributes": { "weight": 1475726, "sourceWeight": "1475726", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_856", "source": "MalaysiaBritishMalaya", "target": "ThailandSiam", "attributes": { "weight": 2890668, "sourceWeight": "2890668", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_857", "source": "MalaysiaBritishMalaya", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 853504, "sourceWeight": "853504", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_858", "source": "MalaysiaBritishMalaya", "target": "Japan", "attributes": { "weight": 3090113, "sourceWeight": "3090113", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_859", "source": "MalaysiaBritishMalaya", "target": "UnitedStatesofAmerica", "attributes": { "weight": 34831413, "sourceWeight": "34831413", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_860", "source": "MalaysiaBritishMalaya", "target": "Philippines_SuluSultanate", "attributes": { "weight": 269959, "sourceWeight": "269959", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_861", "source": "MalaysiaBritishMalaya", "target": "Othercountries", "attributes": { "weight": 1417396, "sourceWeight": "1417396", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_862", "source": "ColombiaNewGranadaGranColombia", "target": "GermanyZollverein", "attributes": { "weight": 194052.51244907198, "sourceWeight": "194052.51244907198", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_863", "source": "ColombiaNewGranadaGranColombia", "target": "Belgium", "attributes": { "weight": 109796.96695337257, "sourceWeight": "109796.96695337257", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_864", "source": "ColombiaNewGranadaGranColombia", "target": "Spain", "attributes": { "weight": 102665.23313716614, "sourceWeight": "102665.23313716614", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_865", "source": "ColombiaNewGranadaGranColombia", "target": "France", "attributes": { "weight": 155873.4721593481, "sourceWeight": "155873.4721593481", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_866", "source": "ColombiaNewGranadaGranColombia", "target": "UnitedKingdom", "attributes": { "weight": 732049.7962879131, "sourceWeight": "732049.7962879131", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_867", "source": "ColombiaNewGranadaGranColombia", "target": "Netherlands", "attributes": { "weight": 643860.1177003168, "sourceWeight": "643860.1177003168", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_868", "source": "ColombiaNewGranadaGranColombia", "target": "Italy", "attributes": { "weight": 23975.78089633318, "sourceWeight": "23975.78089633318", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_869", "source": "ColombiaNewGranadaGranColombia", "target": "Norway", "attributes": { "weight": 6500, "sourceWeight": "6500", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_870", "source": "ColombiaNewGranadaGranColombia", "target": "Sweden", "attributes": { "weight": 7576.052512449071, "sourceWeight": "7576.052512449071", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_871", "source": "ColombiaNewGranadaGranColombia", "target": "CanadaProvinceofCanada", "attributes": { "weight": 25323.675871435036, "sourceWeight": "25323.675871435036", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_872", "source": "ColombiaNewGranadaGranColombia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 15632153.915799003, "sourceWeight": "15632153.915799003", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_873", "source": "ColombiaNewGranadaGranColombia", "target": "Mexico", "attributes": { "weight": 68264.37301946581, "sourceWeight": "68264.37301946581", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_874", "source": "ColombiaNewGranadaGranColombia", "target": "FrenchWestIndies", "attributes": { "weight": 108.6464463558171, "sourceWeight": "108.6464463558171", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_875", "source": "ColombiaNewGranadaGranColombia", "target": "NetherlandsAntilles", "attributes": { "weight": 23486.645540968762, "sourceWeight": "23486.645540968762", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_876", "source": "ColombiaNewGranadaGranColombia", "target": "BritishWestIndies", "attributes": { "weight": 18047.306473517427, "sourceWeight": "18047.306473517427", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_877", "source": "ColombiaNewGranadaGranColombia", "target": "CostaRica", "attributes": { "weight": 1392.0325939339068, "sourceWeight": "1392.0325939339068", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_878", "source": "ColombiaNewGranadaGranColombia", "target": "Cuba", "attributes": { "weight": 34889.76912630149, "sourceWeight": "34889.76912630149", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_879", "source": "ColombiaNewGranadaGranColombia", "target": "Panama", "attributes": { "weight": 74719.10366681757, "sourceWeight": "74719.10366681757", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_880", "source": "ColombiaNewGranadaGranColombia", "target": "Chile", "attributes": { "weight": 878.4517881394296, "sourceWeight": "878.4517881394296", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_881", "source": "ColombiaNewGranadaGranColombia", "target": "Ecuador", "attributes": { "weight": 804.4363965595292, "sourceWeight": "804.4363965595292", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_882", "source": "ColombiaNewGranadaGranColombia", "target": "Peru", "attributes": { "weight": 38512.67541874151, "sourceWeight": "38512.67541874151", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_883", "source": "ColombiaNewGranadaGranColombia", "target": "Venezuela", "attributes": { "weight": 1515361.0230873697, "sourceWeight": "1515361.0230873697", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_884", "source": "ColombiaNewGranadaGranColombia", "target": "Japan", "attributes": { "weight": 1478.723404255319, "sourceWeight": "1478.723404255319", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_885", "source": "GermanyZollverein", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 1039472.838388411, "sourceWeight": "1039472.838388411", "direction": "Imp", "source_type": "primary", "targetWeight": "1039472.838388411" } }, { "key": "geid_107_886", "source": "Belgium", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 270305.79447713896, "sourceWeight": "270305.79447713896", "direction": "Imp", "source_type": "primary", "targetWeight": "270305.79447713896" } }, { "key": "geid_107_887", "source": "Denmark", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 54263.92032593934, "sourceWeight": "54263.92032593934", "direction": "Imp", "source_type": "primary", "targetWeight": "54263.92032593934" } }, { "key": "geid_107_888", "source": "Spain", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 239403.5762788592, "sourceWeight": "239403.5762788592", "direction": "Imp", "source_type": "primary", "targetWeight": "239403.5762788592" } }, { "key": "geid_107_889", "source": "France", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 524495.9257582616, "sourceWeight": "524495.9257582616", "direction": "Imp", "source_type": "primary", "targetWeight": "524495.9257582616" } }, { "key": "geid_107_890", "source": "UnitedKingdom", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 2493845.405160706, "sourceWeight": "2493845.405160706", "direction": "Imp", "source_type": "primary", "targetWeight": "2493845.405160706" } }, { "key": "geid_107_891", "source": "Netherlands", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 308751.24490719783, "sourceWeight": "308751.24490719783", "direction": "Imp", "source_type": "primary", "targetWeight": "308751.24490719783" } }, { "key": "geid_107_892", "source": "Italy", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 365329.1081937528, "sourceWeight": "365329.1081937528", "direction": "Imp", "source_type": "primary", "targetWeight": "365329.1081937528" } }, { "key": "geid_107_893", "source": "Norway", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 12424.626527840652, "sourceWeight": "12424.626527840652", "direction": "Imp", "source_type": "primary", "targetWeight": "12424.626527840652" } }, { "key": "geid_107_894", "source": "Sweden", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 15875.961973743775, "sourceWeight": "15875.961973743775", "direction": "Imp", "source_type": "primary", "targetWeight": "15875.961973743775" } }, { "key": "geid_107_895", "source": "Switzerland", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 526.4825712992304, "sourceWeight": "526.4825712992304", "direction": "Imp", "source_type": "primary", "targetWeight": "526.4825712992304" } }, { "key": "geid_107_896", "source": "UnitedStatesofAmerica", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 5811257.582616569, "sourceWeight": "5811257.582616569", "direction": "Imp", "source_type": "primary", "targetWeight": "5811257.582616569" } }, { "key": "geid_107_897", "source": "Mexico", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 27.161611588954276, "sourceWeight": "27.161611588954276", "direction": "Imp", "source_type": "primary", "targetWeight": "27.161611588954276" } }, { "key": "geid_107_898", "source": "NetherlandsAntilles", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 32482.79764599366, "sourceWeight": "32482.79764599366", "direction": "Imp", "source_type": "primary", "targetWeight": "32482.79764599366" } }, { "key": "geid_107_899", "source": "BritishWestIndies", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 1180.851063829787, "sourceWeight": "1180.851063829787", "direction": "Imp", "source_type": "primary", "targetWeight": "1180.851063829787" } }, { "key": "geid_107_900", "source": "CostaRica", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 26527.840651878676, "sourceWeight": "26527.840651878676", "direction": "Imp", "source_type": "primary", "targetWeight": "26527.840651878676" } }, { "key": "geid_107_901", "source": "Cuba", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 51514.48619284744, "sourceWeight": "51514.48619284744", "direction": "Imp", "source_type": "primary", "targetWeight": "51514.48619284744" } }, { "key": "geid_107_902", "source": "Panama", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 48321.638750565864, "sourceWeight": "48321.638750565864", "direction": "Imp", "source_type": "primary", "targetWeight": "48321.638750565864" } }, { "key": "geid_107_903", "source": "Chile", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 3083.295608872793, "sourceWeight": "3083.295608872793", "direction": "Imp", "source_type": "primary", "targetWeight": "3083.295608872793" } }, { "key": "geid_107_904", "source": "Ecuador", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 103065.41421457673, "sourceWeight": "103065.41421457673", "direction": "Imp", "source_type": "primary", "targetWeight": "103065.41421457673" } }, { "key": "geid_107_905", "source": "Peru", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 12640.108646446355, "sourceWeight": "12640.108646446355", "direction": "Imp", "source_type": "primary", "targetWeight": "12640.108646446355" } }, { "key": "geid_107_906", "source": "Venezuela", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 85799.00407424173, "sourceWeight": "85799.00407424173", "direction": "Imp", "source_type": "primary", "targetWeight": "85799.00407424173" } }, { "key": "geid_107_907", "source": "Japan", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 57464.9162516976, "sourceWeight": "57464.9162516976", "direction": "Imp", "source_type": "primary", "targetWeight": "57464.9162516976" } }, { "key": "geid_107_908", "source": "France", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 29851272.657309987, "sourceWeight": "29851272.657309987", "direction": "Imp", "source_type": "primary", "targetWeight": "29851272.657309987" } }, { "key": "geid_107_909", "source": "TunisiaRegencyofTunis", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 406183.25033950637, "sourceWeight": "406183.25033950637", "direction": "Imp", "source_type": "primary", "targetWeight": "406183.25033950637" } }, { "key": "geid_107_910", "source": "Morocco", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1442878.632865501, "sourceWeight": "1442878.632865501", "direction": "Imp", "source_type": "primary", "targetWeight": "1442878.632865501" } }, { "key": "geid_107_911", "source": "Senegal", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 615.5726573109796, "sourceWeight": "615.5726573109796", "direction": "Imp", "source_type": "primary", "targetWeight": "615.5726573109796" } }, { "key": "geid_107_912", "source": "AfricaCoastWestother", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 2521.4803078315126, "sourceWeight": "2521.4803078315126", "direction": "Imp", "source_type": "primary", "targetWeight": "2521.4803078315126" } }, { "key": "geid_107_913", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 9825.486645540635, "sourceWeight": "9825.486645540635", "direction": "Imp", "source_type": "primary", "targetWeight": "9825.486645540635" } }, { "key": "geid_107_914", "source": "ReunionBourbonI", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 59.18967858759419, "sourceWeight": "59.18967858759419", "direction": "Imp", "source_type": "primary", "targetWeight": "59.18967858759419" } }, { "key": "geid_107_915", "source": "FrenchIndochina", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 98018.10774105598, "sourceWeight": "98018.10774105598", "direction": "Imp", "source_type": "primary", "targetWeight": "98018.10774105598" } }, { "key": "geid_107_916", "source": "FrenchOceaniaother", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 35.51380715255652, "sourceWeight": "35.51380715255652", "direction": "Imp", "source_type": "primary", "targetWeight": "35.51380715255652" } }, { "key": "geid_107_917", "source": "FrenchGuiana", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1692.8248076051939, "sourceWeight": "1692.8248076051939", "direction": "Imp", "source_type": "primary", "targetWeight": "1692.8248076051939" } }, { "key": "geid_107_918", "source": "Martinique", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1302.1729289270722, "sourceWeight": "1302.1729289270722", "direction": "Imp", "source_type": "primary", "targetWeight": "1302.1729289270722" } }, { "key": "geid_107_919", "source": "Guadeloupe", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 71.02761430511303, "sourceWeight": "71.02761430511303", "direction": "Imp", "source_type": "primary", "targetWeight": "71.02761430511303" } }, { "key": "geid_107_920", "source": "RussiaUSSR", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 10133.272974196125, "sourceWeight": "10133.272974196125", "direction": "Imp", "source_type": "primary", "targetWeight": "10133.272974196125" } }, { "key": "geid_107_921", "source": "Finland", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 16928.24807605194, "sourceWeight": "16928.24807605194", "direction": "Imp", "source_type": "primary", "targetWeight": "16928.24807605194" } }, { "key": "geid_107_922", "source": "Sweden", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 88985.7627885891, "sourceWeight": "88985.7627885891", "direction": "Imp", "source_type": "primary", "targetWeight": "88985.7627885891" } }, { "key": "geid_107_923", "source": "Norway", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 10547.600724309284, "sourceWeight": "10547.600724309284", "direction": "Imp", "source_type": "primary", "targetWeight": "10547.600724309284" } }, { "key": "geid_107_924", "source": "Denmark", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 54703.10095065455, "sourceWeight": "54703.10095065455", "direction": "Imp", "source_type": "primary", "targetWeight": "54703.10095065455" } }, { "key": "geid_107_925", "source": "UnitedKingdom", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1188244.6355816708, "sourceWeight": "1188244.6355816708", "direction": "Imp", "source_type": "primary", "targetWeight": "1188244.6355816708" } }, { "key": "geid_107_926", "source": "Poland", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 14347.57808963283, "sourceWeight": "14347.57808963283", "direction": "Imp", "source_type": "primary", "targetWeight": "14347.57808963283" } }, { "key": "geid_107_927", "source": "GermanyZollverein", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 59663.19601629494, "sourceWeight": "59663.19601629494", "direction": "Imp", "source_type": "primary", "targetWeight": "59663.19601629494" } }, { "key": "geid_107_928", "source": "Netherlands", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 209057.94477138267, "sourceWeight": "209057.94477138267", "direction": "Imp", "source_type": "primary", "targetWeight": "209057.94477138267" } }, { "key": "geid_107_929", "source": "Belgium_Luxemburg", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 245779.2213671261, "sourceWeight": "245779.2213671261", "direction": "Imp", "source_type": "primary", "targetWeight": "245779.2213671261" } }, { "key": "geid_107_930", "source": "Saar", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 28304.50430058754, "sourceWeight": "28304.50430058754", "direction": "Imp", "source_type": "primary", "targetWeight": "28304.50430058754" } }, { "key": "geid_107_931", "source": "Switzerland", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 81598.89090085735, "sourceWeight": "81598.89090085735", "direction": "Imp", "source_type": "primary", "targetWeight": "81598.89090085735" } }, { "key": "geid_107_932", "source": "Czechoslovakia", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 168548.5287460332, "sourceWeight": "168548.5287460332", "direction": "Imp", "source_type": "primary", "targetWeight": "168548.5287460332" } }, { "key": "geid_107_933", "source": "Austria", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 3196.242643730086, "sourceWeight": "3196.242643730086", "direction": "Imp", "source_type": "primary", "targetWeight": "3196.242643730086" } }, { "key": "geid_107_934", "source": "Hungary", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 9683.431416930409, "sourceWeight": "9683.431416930409", "direction": "Imp", "source_type": "primary", "targetWeight": "9683.431416930409" } }, { "key": "geid_107_935", "source": "Italy", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 352711.29470347374, "sourceWeight": "352711.29470347374", "direction": "Imp", "source_type": "primary", "targetWeight": "352711.29470347374" } }, { "key": "geid_107_936", "source": "Fiume", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 2213.693979176023, "sourceWeight": "2213.693979176023", "direction": "Imp", "source_type": "primary", "targetWeight": "2213.693979176023" } }, { "key": "geid_107_937", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 204086.01177002475, "sourceWeight": "204086.01177002475", "direction": "Imp", "source_type": "primary", "targetWeight": "204086.01177002475" } }, { "key": "geid_107_938", "source": "Romania", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 77455.61339972576, "sourceWeight": "77455.61339972576", "direction": "Imp", "source_type": "primary", "targetWeight": "77455.61339972576" } }, { "key": "geid_107_939", "source": "Bulgaria", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1041.7383431416577, "sourceWeight": "1041.7383431416577", "direction": "Imp", "source_type": "primary", "targetWeight": "1041.7383431416577" } }, { "key": "geid_107_940", "source": "Greece", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 2450.4526935263993, "sourceWeight": "2450.4526935263993", "direction": "Imp", "source_type": "primary", "targetWeight": "2450.4526935263993" } }, { "key": "geid_107_941", "source": "TurkeyOttomanEmpire", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 50074.46808510469, "sourceWeight": "50074.46808510469", "direction": "Imp", "source_type": "primary", "targetWeight": "50074.46808510469" } }, { "key": "geid_107_942", "source": "Spain", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 229490.2218198202, "sourceWeight": "229490.2218198202", "direction": "Imp", "source_type": "primary", "targetWeight": "229490.2218198202" } }, { "key": "geid_107_943", "source": "Portugal", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 11672.204617473573, "sourceWeight": "11672.204617473573", "direction": "Imp", "source_type": "primary", "targetWeight": "11672.204617473573" } }, { "key": "geid_107_944", "source": "BritishMediterranean", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 15057.854232683962, "sourceWeight": "15057.854232683962", "direction": "Imp", "source_type": "primary", "targetWeight": "15057.854232683962" } }, { "key": "geid_107_945", "source": "EgyptArabRepublicEgypt", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 18017.338162063672, "sourceWeight": "18017.338162063672", "direction": "Imp", "source_type": "primary", "targetWeight": "18017.338162063672" } }, { "key": "geid_107_946", "source": "TripolitaniaRegencyofTripoli", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 2770.076957899408, "sourceWeight": "2770.076957899408", "direction": "Imp", "source_type": "primary", "targetWeight": "2770.076957899408" } }, { "key": "geid_107_947", "source": "TogoFrenchTogoland", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 142.05522861022607, "sourceWeight": "142.05522861022607", "direction": "Imp", "source_type": "primary", "targetWeight": "142.05522861022607" } }, { "key": "geid_107_948", "source": "WesternAfrica", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 11.837935717518837, "sourceWeight": "11.837935717518837", "direction": "Imp", "source_type": "primary", "targetWeight": "11.837935717518837" } }, { "key": "geid_107_949", "source": "BritishWestAfrica", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 390.65187867812165, "sourceWeight": "390.65187867812165", "direction": "Imp", "source_type": "primary", "targetWeight": "390.65187867812165" } }, { "key": "geid_107_950", "source": "BritishEastAfrica", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 461.6794929832347, "sourceWeight": "461.6794929832347", "direction": "Imp", "source_type": "primary", "targetWeight": "461.6794929832347" } }, { "key": "geid_107_951", "source": "Africaother", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1385.038478949704, "sourceWeight": "1385.038478949704", "direction": "Imp", "source_type": "primary", "targetWeight": "1385.038478949704" } }, { "key": "geid_107_952", "source": "Syria", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 24764.96152104941, "sourceWeight": "24764.96152104941", "direction": "Imp", "source_type": "primary", "targetWeight": "24764.96152104941" } }, { "key": "geid_107_953", "source": "Palestine", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 35.51380715255652, "sourceWeight": "35.51380715255652", "direction": "Imp", "source_type": "primary", "targetWeight": "35.51380715255652" } }, { "key": "geid_107_954", "source": "IraqMesopotamia", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1029.9004074241388, "sourceWeight": "1029.9004074241388", "direction": "Imp", "source_type": "primary", "targetWeight": "1029.9004074241388" } }, { "key": "geid_107_955", "source": "India", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 25664.64463558084, "sourceWeight": "25664.64463558084", "direction": "Imp", "source_type": "primary", "targetWeight": "25664.64463558084" } }, { "key": "geid_107_956", "source": "IndonesiaDutchEastIndies", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 93910.34404707694, "sourceWeight": "93910.34404707694", "direction": "Imp", "source_type": "primary", "targetWeight": "93910.34404707694" } }, { "key": "geid_107_957", "source": "Philippines", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 8026.120416477772, "sourceWeight": "8026.120416477772", "direction": "Imp", "source_type": "primary", "targetWeight": "8026.120416477772" } }, { "key": "geid_107_958", "source": "PeoplesRepublicofChinaChina", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 158995.31462199552, "sourceWeight": "158995.31462199552", "direction": "Imp", "source_type": "primary", "targetWeight": "158995.31462199552" } }, { "key": "geid_107_959", "source": "ThailandSiam", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 23.675871435037674, "sourceWeight": "23.675871435037674", "direction": "Imp", "source_type": "primary", "targetWeight": "23.675871435037674" } }, { "key": "geid_107_960", "source": "Japan", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1385.038478949704, "sourceWeight": "1385.038478949704", "direction": "Imp", "source_type": "primary", "targetWeight": "1385.038478949704" } }, { "key": "geid_107_961", "source": "Asiaother", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 5433.612494341147, "sourceWeight": "5433.612494341147", "direction": "Imp", "source_type": "primary", "targetWeight": "5433.612494341147" } }, { "key": "geid_107_962", "source": "Australia", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 41941.80624716924, "sourceWeight": "41941.80624716924", "direction": "Imp", "source_type": "primary", "targetWeight": "41941.80624716924" } }, { "key": "geid_107_963", "source": "Oceania", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 11.837935717518837, "sourceWeight": "11.837935717518837", "direction": "Imp", "source_type": "primary", "targetWeight": "11.837935717518837" } }, { "key": "geid_107_964", "source": "UnitedStatesofAmerica", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1274034.15572653, "sourceWeight": "1274034.15572653", "direction": "Imp", "source_type": "primary", "targetWeight": "1274034.15572653" } }, { "key": "geid_107_965", "source": "Guatemala", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 213.08284291533909, "sourceWeight": "213.08284291533909", "direction": "Imp", "source_type": "primary", "targetWeight": "213.08284291533909" } }, { "key": "geid_107_966", "source": "Honduras", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 23.675871435037674, "sourceWeight": "23.675871435037674", "direction": "Imp", "source_type": "primary", "targetWeight": "23.675871435037674" } }, { "key": "geid_107_967", "source": "ElSalvador", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 47.35174287007535, "sourceWeight": "47.35174287007535", "direction": "Imp", "source_type": "primary", "targetWeight": "47.35174287007535" } }, { "key": "geid_107_968", "source": "Nicaragua", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 295.94839293797094, "sourceWeight": "295.94839293797094", "direction": "Imp", "source_type": "primary", "targetWeight": "295.94839293797094" } }, { "key": "geid_107_969", "source": "ColombiaNewGranadaGranColombia", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 3894.6808510636974, "sourceWeight": "3894.6808510636974", "direction": "Imp", "source_type": "primary", "targetWeight": "3894.6808510636974" } }, { "key": "geid_107_970", "source": "Venezuela", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 3918.3567224987355, "sourceWeight": "3918.3567224987355", "direction": "Imp", "source_type": "primary", "targetWeight": "3918.3567224987355" } }, { "key": "geid_107_971", "source": "Brazil", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 863932.5486645248, "sourceWeight": "863932.5486645248", "direction": "Imp", "source_type": "primary", "targetWeight": "863932.5486645248" } }, { "key": "geid_107_972", "source": "Paraguay_Uruguay", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 7943.2548664551405, "sourceWeight": "7943.2548664551405", "direction": "Imp", "source_type": "primary", "targetWeight": "7943.2548664551405" } }, { "key": "geid_107_973", "source": "ArgentinaLaPlata", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 151288.81846989074, "sourceWeight": "151288.81846989074", "direction": "Imp", "source_type": "primary", "targetWeight": "151288.81846989074" } }, { "key": "geid_107_974", "source": "Ecuador", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 248.59665006789558, "sourceWeight": "248.59665006789558", "direction": "Imp", "source_type": "primary", "targetWeight": "248.59665006789558" } }, { "key": "geid_107_975", "source": "Chile", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1657.3110004526372, "sourceWeight": "1657.3110004526372", "direction": "Imp", "source_type": "primary", "targetWeight": "1657.3110004526372" } }, { "key": "geid_107_976", "source": "CanadaProvinceofCanada", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 48642.0778632849, "sourceWeight": "48642.0778632849", "direction": "Imp", "source_type": "primary", "targetWeight": "48642.0778632849" } }, { "key": "geid_107_977", "source": "BritishAmerica", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1325.8488003621098, "sourceWeight": "1325.8488003621098", "direction": "Imp", "source_type": "primary", "targetWeight": "1325.8488003621098" } }, { "key": "geid_107_978", "source": "Haiti", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 3705.273879583396, "sourceWeight": "3705.273879583396", "direction": "Imp", "source_type": "primary", "targetWeight": "3705.273879583396" } }, { "key": "geid_107_979", "source": "DominicanRepublicSantoDomingo", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 43551.765504751806, "sourceWeight": "43551.765504751806", "direction": "Imp", "source_type": "primary", "targetWeight": "43551.765504751806" } }, { "key": "geid_107_980", "source": "Cuba", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1420.5522861022605, "sourceWeight": "1420.5522861022605", "direction": "Imp", "source_type": "primary", "targetWeight": "1420.5522861022605" } }, { "key": "geid_107_981", "source": "NetherlandsAntilles", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 47.35174287007535, "sourceWeight": "47.35174287007535", "direction": "Imp", "source_type": "primary", "targetWeight": "47.35174287007535" } }, { "key": "geid_107_982", "source": "AlgeriaRegencyofAlgiers", "target": "France", "attributes": { "weight": 19218059.981891606, "sourceWeight": "19218059.981891606", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_983", "source": "AlgeriaRegencyofAlgiers", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 526693.4359438481, "sourceWeight": "526693.4359438481", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_984", "source": "AlgeriaRegencyofAlgiers", "target": "Morocco", "attributes": { "weight": 1178715.0973290682, "sourceWeight": "1178715.0973290682", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_985", "source": "AlgeriaRegencyofAlgiers", "target": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "weight": 2474.128564961437, "sourceWeight": "2474.128564961437", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_986", "source": "AlgeriaRegencyofAlgiers", "target": "Senegal", "attributes": { "weight": 45351.13173381467, "sourceWeight": "45351.13173381467", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_987", "source": "AlgeriaRegencyofAlgiers", "target": "AfricaCoastWestother", "attributes": { "weight": 21852.829334539776, "sourceWeight": "21852.829334539776", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_988", "source": "AlgeriaRegencyofAlgiers", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 23593.005885015045, "sourceWeight": "23593.005885015045", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_989", "source": "AlgeriaRegencyofAlgiers", "target": "ReunionBourbonI", "attributes": { "weight": 10180.6247170662, "sourceWeight": "10180.6247170662", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_990", "source": "AlgeriaRegencyofAlgiers", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 118.37935717518837, "sourceWeight": "118.37935717518837", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_991", "source": "AlgeriaRegencyofAlgiers", "target": "FrenchIndia", "attributes": { "weight": 106.54142145766954, "sourceWeight": "106.54142145766954", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_992", "source": "AlgeriaRegencyofAlgiers", "target": "FrenchIndochina", "attributes": { "weight": 333983.68039835896, "sourceWeight": "333983.68039835896", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_993", "source": "AlgeriaRegencyofAlgiers", "target": "NewCaledoniaandDependencies", "attributes": { "weight": 4155.1154368491125, "sourceWeight": "4155.1154368491125", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_994", "source": "AlgeriaRegencyofAlgiers", "target": "FrenchOceaniaother", "attributes": { "weight": 2639.8596650067007, "sourceWeight": "2639.8596650067007", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_995", "source": "AlgeriaRegencyofAlgiers", "target": "FrenchGuiana", "attributes": { "weight": 8913.965595291686, "sourceWeight": "8913.965595291686", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_996", "source": "AlgeriaRegencyofAlgiers", "target": "Martinique", "attributes": { "weight": 13009.891353553203, "sourceWeight": "13009.891353553203", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_997", "source": "AlgeriaRegencyofAlgiers", "target": "Guadeloupe", "attributes": { "weight": 23012.94703485662, "sourceWeight": "23012.94703485662", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_998", "source": "AlgeriaRegencyofAlgiers", "target": "StPierreandMiquelon", "attributes": { "weight": 1894.069714803014, "sourceWeight": "1894.069714803014", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_999", "source": "AlgeriaRegencyofAlgiers", "target": "Sahara", "attributes": { "weight": 272.2725215029333, "sourceWeight": "272.2725215029333", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1000", "source": "AlgeriaRegencyofAlgiers", "target": "RussiaUSSR", "attributes": { "weight": 864.1693073788751, "sourceWeight": "864.1693073788751", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1001", "source": "AlgeriaRegencyofAlgiers", "target": "Sweden", "attributes": { "weight": 10772.521502942142, "sourceWeight": "10772.521502942142", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1002", "source": "AlgeriaRegencyofAlgiers", "target": "Norway", "attributes": { "weight": 2036.12494341324, "sourceWeight": "2036.12494341324", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1003", "source": "AlgeriaRegencyofAlgiers", "target": "Denmark", "attributes": { "weight": 13767.519239474408, "sourceWeight": "13767.519239474408", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1004", "source": "AlgeriaRegencyofAlgiers", "target": "UnitedKingdom", "attributes": { "weight": 1346079.8325033495, "sourceWeight": "1346079.8325033495", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1005", "source": "AlgeriaRegencyofAlgiers", "target": "Poland", "attributes": { "weight": 47919.96378451626, "sourceWeight": "47919.96378451626", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1006", "source": "AlgeriaRegencyofAlgiers", "target": "GermanyZollverein", "attributes": { "weight": 265075.0565866818, "sourceWeight": "265075.0565866818", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1007", "source": "AlgeriaRegencyofAlgiers", "target": "Netherlands", "attributes": { "weight": 501845.6088727761, "sourceWeight": "501845.6088727761", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1008", "source": "AlgeriaRegencyofAlgiers", "target": "Belgium_Luxemburg", "attributes": { "weight": 997926.1430511205, "sourceWeight": "997926.1430511205", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1009", "source": "AlgeriaRegencyofAlgiers", "target": "Switzerland", "attributes": { "weight": 6439.837030330248, "sourceWeight": "6439.837030330248", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1010", "source": "AlgeriaRegencyofAlgiers", "target": "Czechoslovakia", "attributes": { "weight": 71.02761430511303, "sourceWeight": "71.02761430511303", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1011", "source": "AlgeriaRegencyofAlgiers", "target": "Italy", "attributes": { "weight": 494257.4920778465, "sourceWeight": "494257.4920778465", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1012", "source": "AlgeriaRegencyofAlgiers", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 35.51380715255652, "sourceWeight": "35.51380715255652", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1013", "source": "AlgeriaRegencyofAlgiers", "target": "Romania", "attributes": { "weight": 6345.133544590097, "sourceWeight": "6345.133544590097", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1014", "source": "AlgeriaRegencyofAlgiers", "target": "Bulgaria", "attributes": { "weight": 9908.352195563268, "sourceWeight": "9908.352195563268", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1015", "source": "AlgeriaRegencyofAlgiers", "target": "Greece", "attributes": { "weight": 91317.83612494031, "sourceWeight": "91317.83612494031", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1016", "source": "AlgeriaRegencyofAlgiers", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 3006.8356722497847, "sourceWeight": "3006.8356722497847", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1017", "source": "AlgeriaRegencyofAlgiers", "target": "Spain", "attributes": { "weight": 164606.49615209943, "sourceWeight": "164606.49615209943", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1018", "source": "AlgeriaRegencyofAlgiers", "target": "SpanishMorocco", "attributes": { "weight": 123848.48347668209, "sourceWeight": "123848.48347668209", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1019", "source": "AlgeriaRegencyofAlgiers", "target": "Portugal", "attributes": { "weight": 35726.88999547185, "sourceWeight": "35726.88999547185", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1020", "source": "AlgeriaRegencyofAlgiers", "target": "BritishMediterranean", "attributes": { "weight": 11944.477138976506, "sourceWeight": "11944.477138976506", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1021", "source": "AlgeriaRegencyofAlgiers", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 5694.047080126561, "sourceWeight": "5694.047080126561", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1022", "source": "AlgeriaRegencyofAlgiers", "target": "TripolitaniaRegencyofTripoli", "attributes": { "weight": 7327.682209144161, "sourceWeight": "7327.682209144161", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1023", "source": "AlgeriaRegencyofAlgiers", "target": "TogoFrenchTogoland", "attributes": { "weight": 71.02761430511303, "sourceWeight": "71.02761430511303", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1024", "source": "AlgeriaRegencyofAlgiers", "target": "CamerounFrenchCameroons", "attributes": { "weight": 568.2209144409043, "sourceWeight": "568.2209144409043", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1025", "source": "AlgeriaRegencyofAlgiers", "target": "WesternAfrica", "attributes": { "weight": 106.54142145766954, "sourceWeight": "106.54142145766954", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1026", "source": "AlgeriaRegencyofAlgiers", "target": "BritishWestAfrica", "attributes": { "weight": 343.3001358080463, "sourceWeight": "343.3001358080463", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1027", "source": "AlgeriaRegencyofAlgiers", "target": "BritishEastAfrica", "attributes": { "weight": 331.46220009052746, "sourceWeight": "331.46220009052746", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1028", "source": "AlgeriaRegencyofAlgiers", "target": "Africaother", "attributes": { "weight": 355.1380715255651, "sourceWeight": "355.1380715255651", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1029", "source": "AlgeriaRegencyofAlgiers", "target": "Syria", "attributes": { "weight": 42723.110004525486, "sourceWeight": "42723.110004525486", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1030", "source": "AlgeriaRegencyofAlgiers", "target": "India", "attributes": { "weight": 532.7071072883477, "sourceWeight": "532.7071072883477", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1031", "source": "AlgeriaRegencyofAlgiers", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 3740.787686735953, "sourceWeight": "3740.787686735953", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1032", "source": "AlgeriaRegencyofAlgiers", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 2201.856043458504, "sourceWeight": "2201.856043458504", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1033", "source": "AlgeriaRegencyofAlgiers", "target": "Japan", "attributes": { "weight": 43788.52421910218, "sourceWeight": "43788.52421910218", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1034", "source": "AlgeriaRegencyofAlgiers", "target": "Asiaother", "attributes": { "weight": 23.675871435037674, "sourceWeight": "23.675871435037674", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1035", "source": "AlgeriaRegencyofAlgiers", "target": "Australia", "attributes": { "weight": 82.86555002263187, "sourceWeight": "82.86555002263187", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1036", "source": "AlgeriaRegencyofAlgiers", "target": "UnitedStatesofAmerica", "attributes": { "weight": 334729.47034856264, "sourceWeight": "334729.47034856264", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1037", "source": "AlgeriaRegencyofAlgiers", "target": "Guatemala", "attributes": { "weight": 177.56903576278256, "sourceWeight": "177.56903576278256", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1038", "source": "AlgeriaRegencyofAlgiers", "target": "Venezuela", "attributes": { "weight": 8807.424173834015, "sourceWeight": "8807.424173834015", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1039", "source": "AlgeriaRegencyofAlgiers", "target": "Brazil", "attributes": { "weight": 71.02761430511303, "sourceWeight": "71.02761430511303", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1040", "source": "AlgeriaRegencyofAlgiers", "target": "Ecuador", "attributes": { "weight": 23.675871435037674, "sourceWeight": "23.675871435037674", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1041", "source": "AlgeriaRegencyofAlgiers", "target": "CanadaProvinceofCanada", "attributes": { "weight": 4474.739701222121, "sourceWeight": "4474.739701222121", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1042", "source": "AlgeriaRegencyofAlgiers", "target": "Haiti", "attributes": { "weight": 473.5174287007535, "sourceWeight": "473.5174287007535", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1043", "source": "AlgeriaRegencyofAlgiers", "target": "Cuba", "attributes": { "weight": 213.08284291533909, "sourceWeight": "213.08284291533909", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1044", "source": "AlgeriaRegencyofAlgiers", "target": "NetherlandsAntilles", "attributes": { "weight": 23.675871435037674, "sourceWeight": "23.675871435037674", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1045", "source": "GermanyZollverein", "target": "Norway", "attributes": { "weight": 9877904.391140621, "sourceWeight": "9877904.391140621", "direction": "Imp", "source_type": "primary", "targetWeight": "9877904.391140621" } }, { "key": "geid_107_1046", "source": "UnitedKingdom", "target": "Norway", "attributes": { "weight": 11622978.406534571, "sourceWeight": "11622978.406534571", "direction": "Imp", "source_type": "primary", "targetWeight": "11622978.406534571" } }, { "key": "geid_107_1047", "source": "Sweden", "target": "Norway", "attributes": { "weight": 3131915.0294293324, "sourceWeight": "3131915.0294293324", "direction": "Imp", "source_type": "primary", "targetWeight": "3131915.0294293324" } }, { "key": "geid_107_1048", "source": "Denmark", "target": "Norway", "attributes": { "weight": 2407017.6550508016, "sourceWeight": "2407017.6550508016", "direction": "Imp", "source_type": "primary", "targetWeight": "2407017.6550508016" } }, { "key": "geid_107_1049", "source": "Netherlands", "target": "Norway", "attributes": { "weight": 2561891.942058708, "sourceWeight": "2561891.942058708", "direction": "Imp", "source_type": "primary", "targetWeight": "2561891.942058708" } }, { "key": "geid_107_1050", "source": "France", "target": "Norway", "attributes": { "weight": 1071408.782255869, "sourceWeight": "1071408.782255869", "direction": "Imp", "source_type": "primary", "targetWeight": "1071408.782255869" } }, { "key": "geid_107_1051", "source": "Belgium", "target": "Norway", "attributes": { "weight": 1701251.6070643293, "sourceWeight": "1701251.6070643293", "direction": "Imp", "source_type": "primary", "targetWeight": "1701251.6070643293" } }, { "key": "geid_107_1052", "source": "CanaryIs_Spain", "target": "Norway", "attributes": { "weight": 834267.5418752842, "sourceWeight": "834267.5418752842", "direction": "Imp", "source_type": "primary", "targetWeight": "834267.5418752842" } }, { "key": "geid_107_1053", "source": "RussiaUSSR", "target": "Norway", "attributes": { "weight": 894364.8709835595, "sourceWeight": "894364.8709835595", "direction": "Imp", "source_type": "primary", "targetWeight": "894364.8709835595" } }, { "key": "geid_107_1054", "source": "DanzigFreeCityofDanzig_Poland", "target": "Norway", "attributes": { "weight": 193556.81303783643, "sourceWeight": "193556.81303783643", "direction": "Imp", "source_type": "primary", "targetWeight": "193556.81303783643" } }, { "key": "geid_107_1055", "source": "Latvia", "target": "Norway", "attributes": { "weight": 39490.26708923426, "sourceWeight": "39490.26708923426", "direction": "Imp", "source_type": "primary", "targetWeight": "39490.26708923426" } }, { "key": "geid_107_1056", "source": "Estonia", "target": "Norway", "attributes": { "weight": 82089.18062482854, "sourceWeight": "82089.18062482854", "direction": "Imp", "source_type": "primary", "targetWeight": "82089.18062482854" } }, { "key": "geid_107_1057", "source": "Lithuania", "target": "Norway", "attributes": { "weight": 199.63784517908508, "sourceWeight": "199.63784517908508", "direction": "Imp", "source_type": "primary", "targetWeight": "199.63784517908508" } }, { "key": "geid_107_1058", "source": "Italy", "target": "Norway", "attributes": { "weight": 596645.5862389271, "sourceWeight": "596645.5862389271", "direction": "Imp", "source_type": "primary", "targetWeight": "596645.5862389271" } }, { "key": "geid_107_1059", "source": "SvalbardIs", "target": "Norway", "attributes": { "weight": 282703.03304701135, "sourceWeight": "282703.03304701135", "direction": "Imp", "source_type": "primary", "targetWeight": "282703.03304701135" } }, { "key": "geid_107_1060", "source": "Czechoslovakia", "target": "Norway", "attributes": { "weight": 297430.9189682627, "sourceWeight": "297430.9189682627", "direction": "Imp", "source_type": "primary", "targetWeight": "297430.9189682627" } }, { "key": "geid_107_1061", "source": "MadeiraIsles_Portugal", "target": "Norway", "attributes": { "weight": 337185.15165278927, "sourceWeight": "337185.15165278927", "direction": "Imp", "source_type": "primary", "targetWeight": "337185.15165278927" } }, { "key": "geid_107_1062", "source": "Iceland", "target": "Norway", "attributes": { "weight": 278417.7908559689, "sourceWeight": "278417.7908559689", "direction": "Imp", "source_type": "primary", "targetWeight": "278417.7908559689" } }, { "key": "geid_107_1063", "source": "Finland", "target": "Norway", "attributes": { "weight": 153133.95201469416, "sourceWeight": "153133.95201469416", "direction": "Imp", "source_type": "primary", "targetWeight": "153133.95201469416" } }, { "key": "geid_107_1064", "source": "Switzerland", "target": "Norway", "attributes": { "weight": 269679.6740610272, "sourceWeight": "269679.6740610272", "direction": "Imp", "source_type": "primary", "targetWeight": "269679.6740610272" } }, { "key": "geid_107_1065", "source": "Romania", "target": "Norway", "attributes": { "weight": 411653.2367592734, "sourceWeight": "411653.2367592734", "direction": "Imp", "source_type": "primary", "targetWeight": "411653.2367592734" } }, { "key": "geid_107_1066", "source": "Austria", "target": "Norway", "attributes": { "weight": 76826.02987787708, "sourceWeight": "76826.02987787708", "direction": "Imp", "source_type": "primary", "targetWeight": "76826.02987787708" } }, { "key": "geid_107_1067", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Norway", "attributes": { "weight": 16826.618379380026, "sourceWeight": "16826.618379380026", "direction": "Imp", "source_type": "primary", "targetWeight": "16826.618379380026" } }, { "key": "geid_107_1068", "source": "FaeroeIs", "target": "Norway", "attributes": { "weight": 11214.57673156797, "sourceWeight": "11214.57673156797", "direction": "Imp", "source_type": "primary", "targetWeight": "11214.57673156797" } }, { "key": "geid_107_1069", "source": "Hungary", "target": "Norway", "attributes": { "weight": 760.5251244917526, "sourceWeight": "760.5251244917526", "direction": "Imp", "source_type": "primary", "targetWeight": "760.5251244917526" } }, { "key": "geid_107_1070", "source": "Greece", "target": "Norway", "attributes": { "weight": 14671.79719332006, "sourceWeight": "14671.79719332006", "direction": "Imp", "source_type": "primary", "targetWeight": "14671.79719332006" } }, { "key": "geid_107_1071", "source": "TurkeyOttomanEmpire", "target": "Norway", "attributes": { "weight": 678.1349026718127, "sourceWeight": "678.1349026718127", "direction": "Imp", "source_type": "primary", "targetWeight": "678.1349026718127" } }, { "key": "geid_107_1072", "source": "Gibraltar_Malta", "target": "Norway", "attributes": { "weight": 348.5740153920533, "sourceWeight": "348.5740153920533", "direction": "Imp", "source_type": "primary", "targetWeight": "348.5740153920533" } }, { "key": "geid_107_1073", "source": "Bulgaria", "target": "Norway", "attributes": { "weight": 13736.985061132282, "sourceWeight": "13736.985061132282", "direction": "Imp", "source_type": "primary", "targetWeight": "13736.985061132282" } }, { "key": "geid_107_1074", "source": "EgyptArabRepublicEgypt", "target": "Norway", "attributes": { "weight": 842.9153463116925, "sourceWeight": "842.9153463116925", "direction": "Imp", "source_type": "primary", "targetWeight": "842.9153463116925" } }, { "key": "geid_107_1075", "source": "AlgeriaRegencyofAlgiers", "target": "Norway", "attributes": { "weight": 6645.088275246689, "sourceWeight": "6645.088275246689", "direction": "Imp", "source_type": "primary", "targetWeight": "6645.088275246689" } }, { "key": "geid_107_1076", "source": "NorthernAfricaother", "target": "Norway", "attributes": { "weight": 49244.001810840986, "sourceWeight": "49244.001810840986", "direction": "Imp", "source_type": "primary", "targetWeight": "49244.001810840986" } }, { "key": "geid_107_1077", "source": "WesternAfrica", "target": "Norway", "attributes": { "weight": 243681.75645121367, "sourceWeight": "243681.75645121367", "direction": "Imp", "source_type": "primary", "targetWeight": "243681.75645121367" } }, { "key": "geid_107_1078", "source": "BritishSouthAfrica", "target": "Norway", "attributes": { "weight": 9.506564056146908, "sourceWeight": "9.506564056146908", "direction": "Imp", "source_type": "primary", "targetWeight": "9.506564056146908" } }, { "key": "geid_107_1079", "source": "EasternAfrica", "target": "Norway", "attributes": { "weight": 41280.66998647526, "sourceWeight": "41280.66998647526", "direction": "Imp", "source_type": "primary", "targetWeight": "41280.66998647526" } }, { "key": "geid_107_1080", "source": "BritishEastIndies", "target": "Norway", "attributes": { "weight": 739100.4979638829, "sourceWeight": "739100.4979638829", "direction": "Imp", "source_type": "primary", "targetWeight": "739100.4979638829" } }, { "key": "geid_107_1081", "source": "PeoplesRepublicofChinaChina", "target": "Norway", "attributes": { "weight": 3691.3988230018444, "sourceWeight": "3691.3988230018444", "direction": "Imp", "source_type": "primary", "targetWeight": "3691.3988230018444" } }, { "key": "geid_107_1082", "source": "ThailandSiam", "target": "Norway", "attributes": { "weight": 6511.996378460632, "sourceWeight": "6511.996378460632", "direction": "Imp", "source_type": "primary", "targetWeight": "6511.996378460632" } }, { "key": "geid_107_1083", "source": "Japan", "target": "Norway", "attributes": { "weight": 1667.4513354481676, "sourceWeight": "1667.4513354481676", "direction": "Imp", "source_type": "primary", "targetWeight": "1667.4513354481676" } }, { "key": "geid_107_1084", "source": "IndonesiaDutchEastIndies", "target": "Norway", "attributes": { "weight": 179778.63286579418, "sourceWeight": "179778.63286579418", "direction": "Imp", "source_type": "primary", "targetWeight": "179778.63286579418" } }, { "key": "geid_107_1085", "source": "Othercountries", "target": "Norway", "attributes": { "weight": 93608.6011771303, "sourceWeight": "93608.6011771303", "direction": "Imp", "source_type": "primary", "targetWeight": "93608.6011771303" } }, { "key": "geid_107_1086", "source": "HawaiiSandwichIs", "target": "Norway", "attributes": { "weight": 19.013128112293817, "sourceWeight": "19.013128112293817", "direction": "Imp", "source_type": "primary", "targetWeight": "19.013128112293817" } }, { "key": "geid_107_1087", "source": "Australiaother", "target": "Norway", "attributes": { "weight": 88300.13580817786, "sourceWeight": "88300.13580817786", "direction": "Imp", "source_type": "primary", "targetWeight": "88300.13580817786" } }, { "key": "geid_107_1088", "source": "CanadaProvinceofCanada_NewfoundlandandLabradorNewfoundland", "target": "Norway", "attributes": { "weight": 978414.6220022341, "sourceWeight": "978414.6220022341", "direction": "Imp", "source_type": "primary", "targetWeight": "978414.6220022341" } }, { "key": "geid_107_1089", "source": "UnitedStatesofAmerica", "target": "Norway", "attributes": { "weight": 6675947.532829347, "sourceWeight": "6675947.532829347", "direction": "Imp", "source_type": "primary", "targetWeight": "6675947.532829347" } }, { "key": "geid_107_1090", "source": "Mexico", "target": "Norway", "attributes": { "weight": 8375.282933465425, "sourceWeight": "8375.282933465425", "direction": "Imp", "source_type": "primary", "targetWeight": "8375.282933465425" } }, { "key": "geid_107_1091", "source": "CentralAmerica", "target": "Norway", "attributes": { "weight": 291693.07378944097, "sourceWeight": "291693.07378944097", "direction": "Imp", "source_type": "primary", "targetWeight": "291693.07378944097" } }, { "key": "geid_107_1092", "source": "Cuba", "target": "Norway", "attributes": { "weight": 1435.491172478183, "sourceWeight": "1435.491172478183", "direction": "Imp", "source_type": "primary", "targetWeight": "1435.491172478183" } }, { "key": "geid_107_1093", "source": "WestIndies", "target": "Norway", "attributes": { "weight": 22048.890900890063, "sourceWeight": "22048.890900890063", "direction": "Imp", "source_type": "primary", "targetWeight": "22048.890900890063" } }, { "key": "geid_107_1094", "source": "Venezuela", "target": "Norway", "attributes": { "weight": 1847.4422815778823, "sourceWeight": "1847.4422815778823", "direction": "Imp", "source_type": "primary", "targetWeight": "1847.4422815778823" } }, { "key": "geid_107_1095", "source": "Brazil", "target": "Norway", "attributes": { "weight": 427329.56088785967, "sourceWeight": "427329.56088785967", "direction": "Imp", "source_type": "primary", "targetWeight": "427329.56088785967" } }, { "key": "geid_107_1096", "source": "ArgentinaLaPlata", "target": "Norway", "attributes": { "weight": 1411284.2915365477, "sourceWeight": "1411284.2915365477", "direction": "Imp", "source_type": "primary", "targetWeight": "1411284.2915365477" } }, { "key": "geid_107_1097", "source": "Uruguay", "target": "Norway", "attributes": { "weight": 104.57220461761598, "sourceWeight": "104.57220461761598", "direction": "Imp", "source_type": "primary", "targetWeight": "104.57220461761598" } }, { "key": "geid_107_1098", "source": "Peru", "target": "Norway", "attributes": { "weight": 123014.93888654099, "sourceWeight": "123014.93888654099", "direction": "Imp", "source_type": "primary", "targetWeight": "123014.93888654099" } }, { "key": "geid_107_1099", "source": "Chile", "target": "Norway", "attributes": { "weight": 2493.888637395872, "sourceWeight": "2493.888637395872", "direction": "Imp", "source_type": "primary", "targetWeight": "2493.888637395872" } }, { "key": "geid_107_1100", "source": "SouthernAmericaother", "target": "Norway", "attributes": { "weight": 51243.54911731721, "sourceWeight": "51243.54911731721", "direction": "Imp", "source_type": "primary", "targetWeight": "51243.54911731721" } }, { "key": "geid_107_1101", "source": "PacificIslands", "target": "Norway", "attributes": { "weight": 65531.914893706016, "sourceWeight": "65531.914893706016", "direction": "Imp", "source_type": "primary", "targetWeight": "65531.914893706016" } }, { "key": "geid_107_1102", "source": "Norway", "target": "UnitedKingdom", "attributes": { "weight": 9247287.795395084, "sourceWeight": "9247287.795395084", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1103", "source": "Norway", "target": "GermanyZollverein", "attributes": { "weight": 3290258.8954322636, "sourceWeight": "3290258.8954322636", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1104", "source": "Norway", "target": "Sweden", "attributes": { "weight": 2074442.7750141346, "sourceWeight": "2074442.7750141346", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1105", "source": "Norway", "target": "France", "attributes": { "weight": 2110963.2231807755, "sourceWeight": "2110963.2231807755", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1106", "source": "Norway", "target": "Belgium", "attributes": { "weight": 1095164.9569956022, "sourceWeight": "1095164.9569956022", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1107", "source": "Norway", "target": "Denmark", "attributes": { "weight": 1474569.5835239582, "sourceWeight": "1474569.5835239582", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1108", "source": "Norway", "target": "Italy", "attributes": { "weight": 1145391.7790871146, "sourceWeight": "1145391.7790871146", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1109", "source": "Norway", "target": "CanaryIs_Spain", "attributes": { "weight": 757301.923948516, "sourceWeight": "757301.923948516", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1110", "source": "Norway", "target": "Netherlands", "attributes": { "weight": 717995.7356279556, "sourceWeight": "717995.7356279556", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1111", "source": "Norway", "target": "MadeiraIsles_Portugal", "attributes": { "weight": 669810.0679049386, "sourceWeight": "669810.0679049386", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1112", "source": "Norway", "target": "RussiaUSSR", "attributes": { "weight": 406100.57944826543, "sourceWeight": "406100.57944826543", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1113", "source": "Norway", "target": "DanzigFreeCityofDanzig_Poland", "attributes": { "weight": 73843.66229072952, "sourceWeight": "73843.66229072952", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1114", "source": "Norway", "target": "Latvia", "attributes": { "weight": 19571.131733842787, "sourceWeight": "19571.131733842787", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1115", "source": "Norway", "target": "Estonia", "attributes": { "weight": 31509.253055724097, "sourceWeight": "31509.253055724097", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1116", "source": "Norway", "target": "Lithuania", "attributes": { "weight": 138.73245812603722, "sourceWeight": "138.73245812603722", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1117", "source": "Norway", "target": "Georgia", "attributes": { "weight": 6.5912177455951895, "sourceWeight": "6.5912177455951895", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1118", "source": "Norway", "target": "Finland", "attributes": { "weight": 187210.6745136087, "sourceWeight": "187210.6745136087", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1119", "source": "Norway", "target": "Iceland", "attributes": { "weight": 222023.64871012498, "sourceWeight": "222023.64871012498", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1120", "source": "Norway", "target": "Greece", "attributes": { "weight": 63180.40289732437, "sourceWeight": "63180.40289732437", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1121", "source": "Norway", "target": "Austria", "attributes": { "weight": 90681.7836126175, "sourceWeight": "90681.7836126175", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1122", "source": "Norway", "target": "SvalbardIs", "attributes": { "weight": 94881.65685843579, "sourceWeight": "94881.65685843579", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1123", "source": "Norway", "target": "Czechoslovakia", "attributes": { "weight": 72197.315527486, "sourceWeight": "72197.315527486", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1124", "source": "Norway", "target": "Switzerland", "attributes": { "weight": 77827.0393844425, "sourceWeight": "77827.0393844425", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1125", "source": "Norway", "target": "FaeroeIs", "attributes": { "weight": 19606.337709397383, "sourceWeight": "19606.337709397383", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1126", "source": "Norway", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 4515.396106841805, "sourceWeight": "4515.396106841805", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1127", "source": "Norway", "target": "Romania", "attributes": { "weight": 24438.429153496294, "sourceWeight": "24438.429153496294", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1128", "source": "Norway", "target": "Gibraltar_Malta", "attributes": { "weight": 6391.453146228689, "sourceWeight": "6391.453146228689", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1129", "source": "Norway", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 13911.398823015723, "sourceWeight": "13911.398823015723", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1130", "source": "Norway", "target": "Bulgaria", "attributes": { "weight": 3355.1199637890745, "sourceWeight": "3355.1199637890745", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1131", "source": "Norway", "target": "Hungary", "attributes": { "weight": 6643.85242191939, "sourceWeight": "6643.85242191939", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1132", "source": "Norway", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 128108.08057962169, "sourceWeight": "128108.08057962169", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1133", "source": "Norway", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 5021.240380269382, "sourceWeight": "5021.240380269382", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1134", "source": "Norway", "target": "NorthernAfricaother", "attributes": { "weight": 15319.352648277934, "sourceWeight": "15319.352648277934", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1135", "source": "Norway", "target": "WesternAfrica", "attributes": { "weight": 387299.6061571579, "sourceWeight": "387299.6061571579", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1136", "source": "Norway", "target": "BritishSouthAfrica", "attributes": { "weight": 373398.34766913543, "sourceWeight": "373398.34766913543", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1137", "source": "Norway", "target": "EasternAfrica", "attributes": { "weight": 15351.009506584904, "sourceWeight": "15351.009506584904", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1138", "source": "Norway", "target": "BritishEastIndies", "attributes": { "weight": 488574.26890061825, "sourceWeight": "488574.26890061825", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1139", "source": "Norway", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 438806.74060720525, "sourceWeight": "438806.74060720525", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1140", "source": "Norway", "target": "ThailandSiam", "attributes": { "weight": 3962.177455867762, "sourceWeight": "3962.177455867762", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1141", "source": "Norway", "target": "Japan", "attributes": { "weight": 428326.6410146152, "sourceWeight": "428326.6410146152", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1142", "source": "Norway", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 56995.780896410586, "sourceWeight": "56995.780896410586", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1143", "source": "Norway", "target": "Philippines", "attributes": { "weight": 18121.760977842627, "sourceWeight": "18121.760977842627", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1144", "source": "Norway", "target": "Othercountries", "attributes": { "weight": 43378.73698512003, "sourceWeight": "43378.73698512003", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1145", "source": "Norway", "target": "HawaiiSandwichIs", "attributes": { "weight": 41321.009506620176, "sourceWeight": "41321.009506620176", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1146", "source": "Norway", "target": "NewZealand", "attributes": { "weight": 46211.78813949237, "sourceWeight": "46211.78813949237", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1147", "source": "Norway", "target": "Australiaother", "attributes": { "weight": 1184936.7722967654, "sourceWeight": "1184936.7722967654", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1148", "source": "Norway", "target": "Greenland", "attributes": { "weight": 193.55364418315105, "sourceWeight": "193.55364418315105", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1149", "source": "Norway", "target": "CanadaProvinceofCanada_NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 166445.20144884533, "sourceWeight": "166445.20144884533", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1150", "source": "Norway", "target": "UnitedStatesofAmerica", "attributes": { "weight": 4168626.5323732486, "sourceWeight": "4168626.5323732486", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1151", "source": "Norway", "target": "NorthernAmericaother", "attributes": { "weight": 1784.6038931667513, "sourceWeight": "1784.6038931667513", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1152", "source": "Norway", "target": "Mexico", "attributes": { "weight": 47454.359438724474, "sourceWeight": "47454.359438724474", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1153", "source": "Norway", "target": "CentralAmerica", "attributes": { "weight": 40799.416025406244, "sourceWeight": "40799.416025406244", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1154", "source": "Norway", "target": "Cuba", "attributes": { "weight": 354414.40470849397, "sourceWeight": "354414.40470849397", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1155", "source": "Norway", "target": "WestIndies", "attributes": { "weight": 23745.17881397521, "sourceWeight": "23745.17881397521", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1156", "source": "Norway", "target": "Venezuela", "attributes": { "weight": 6056.473517436926, "sourceWeight": "6056.473517436926", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1157", "source": "Norway", "target": "Brazil", "attributes": { "weight": 488036.8945230711, "sourceWeight": "488036.8945230711", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1158", "source": "Norway", "target": "ArgentinaLaPlata", "attributes": { "weight": 449839.58352256654, "sourceWeight": "449839.58352256654", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1159", "source": "Norway", "target": "Uruguay", "attributes": { "weight": 37181.94658221437, "sourceWeight": "37181.94658221437", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1160", "source": "Norway", "target": "Chile", "attributes": { "weight": 203870.5477594439, "sourceWeight": "203870.5477594439", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1161", "source": "Norway", "target": "SouthernAmericaother", "attributes": { "weight": 104151.72928941261, "sourceWeight": "104151.72928941261", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1162", "source": "UnitedStatesofAmerica", "target": "Bolivia", "attributes": { "weight": 1206124.20383148, "sourceWeight": "1206124.20383148", "direction": "Imp", "source_type": "primary", "targetWeight": "1206124.20383148" } }, { "key": "geid_107_1163", "source": "Chile", "target": "Bolivia", "attributes": { "weight": 533278.8165421698, "sourceWeight": "533278.8165421698", "direction": "Imp", "source_type": "primary", "targetWeight": "533278.8165421698" } }, { "key": "geid_107_1164", "source": "UnitedKingdom", "target": "Bolivia", "attributes": { "weight": 882185.6147748913, "sourceWeight": "882185.6147748913", "direction": "Imp", "source_type": "primary", "targetWeight": "882185.6147748913" } }, { "key": "geid_107_1165", "source": "Peru", "target": "Bolivia", "attributes": { "weight": 258194.37393879602, "sourceWeight": "258194.37393879602", "direction": "Imp", "source_type": "primary", "targetWeight": "258194.37393879602" } }, { "key": "geid_107_1166", "source": "ArgentinaLaPlata", "target": "Bolivia", "attributes": { "weight": 192431.78555934655, "sourceWeight": "192431.78555934655", "direction": "Imp", "source_type": "primary", "targetWeight": "192431.78555934655" } }, { "key": "geid_107_1167", "source": "Brazil", "target": "Bolivia", "attributes": { "weight": 55903.698924931334, "sourceWeight": "55903.698924931334", "direction": "Imp", "source_type": "primary", "targetWeight": "55903.698924931334" } }, { "key": "geid_107_1168", "source": "France", "target": "Bolivia", "attributes": { "weight": 128622.49182906235, "sourceWeight": "128622.49182906235", "direction": "Imp", "source_type": "primary", "targetWeight": "128622.49182906235" } }, { "key": "geid_107_1169", "source": "Belgium", "target": "Bolivia", "attributes": { "weight": 94633.11806713145, "sourceWeight": "94633.11806713145", "direction": "Imp", "source_type": "primary", "targetWeight": "94633.11806713145" } }, { "key": "geid_107_1170", "source": "Spain", "target": "Bolivia", "attributes": { "weight": 39522.74056139544, "sourceWeight": "39522.74056139544", "direction": "Imp", "source_type": "primary", "targetWeight": "39522.74056139544" } }, { "key": "geid_107_1171", "source": "Italy", "target": "Bolivia", "attributes": { "weight": 172081.26825058102, "sourceWeight": "172081.26825058102", "direction": "Imp", "source_type": "primary", "targetWeight": "172081.26825058102" } }, { "key": "geid_107_1172", "source": "GermanyZollverein", "target": "Bolivia", "attributes": { "weight": 471181.4394166866, "sourceWeight": "471181.4394166866", "direction": "Imp", "source_type": "primary", "targetWeight": "471181.4394166866" } }, { "key": "geid_107_1173", "source": "PeoplesRepublicofChinaChina", "target": "Bolivia", "attributes": { "weight": 9457.396948858905, "sourceWeight": "9457.396948858905", "direction": "Imp", "source_type": "primary", "targetWeight": "9457.396948858905" } }, { "key": "geid_107_1174", "source": "Netherlands", "target": "Bolivia", "attributes": { "weight": 65542.18520380407, "sourceWeight": "65542.18520380407", "direction": "Imp", "source_type": "primary", "targetWeight": "65542.18520380407" } }, { "key": "geid_107_1175", "source": "Japan", "target": "Bolivia", "attributes": { "weight": 23813.905701708387, "sourceWeight": "23813.905701708387", "direction": "Imp", "source_type": "primary", "targetWeight": "23813.905701708387" } }, { "key": "geid_107_1176", "source": "Sweden", "target": "Bolivia", "attributes": { "weight": 18722.450432348593, "sourceWeight": "18722.450432348593", "direction": "Imp", "source_type": "primary", "targetWeight": "18722.450432348593" } }, { "key": "geid_107_1177", "source": "Denmark", "target": "Bolivia", "attributes": { "weight": 6508.486100054403, "sourceWeight": "6508.486100054403", "direction": "Imp", "source_type": "primary", "targetWeight": "6508.486100054403" } }, { "key": "geid_107_1178", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Bolivia", "attributes": { "weight": 38.98309868724348, "sourceWeight": "38.98309868724348", "direction": "Imp", "source_type": "primary", "targetWeight": "38.98309868724348" } }, { "key": "geid_107_1179", "source": "India", "target": "Bolivia", "attributes": { "weight": 24115.957659608313, "sourceWeight": "24115.957659608313", "direction": "Imp", "source_type": "primary", "targetWeight": "24115.957659608313" } }, { "key": "geid_107_1180", "source": "Uruguay", "target": "Bolivia", "attributes": { "weight": 1831.0043277526827, "sourceWeight": "1831.0043277526827", "direction": "Imp", "source_type": "primary", "targetWeight": "1831.0043277526827" } }, { "key": "geid_107_1181", "source": "Portugal", "target": "Bolivia", "attributes": { "weight": 1234.3301177020492, "sourceWeight": "1234.3301177020492", "direction": "Imp", "source_type": "primary", "targetWeight": "1234.3301177020492" } }, { "key": "geid_107_1182", "source": "Cuba", "target": "Bolivia", "attributes": { "weight": 5636.4986713524095, "sourceWeight": "5636.4986713524095", "direction": "Imp", "source_type": "primary", "targetWeight": "5636.4986713524095" } }, { "key": "geid_107_1183", "source": "Switzerland", "target": "Bolivia", "attributes": { "weight": 16122.027202376632, "sourceWeight": "16122.027202376632", "direction": "Imp", "source_type": "primary", "targetWeight": "16122.027202376632" } }, { "key": "geid_107_1184", "source": "Paraguay", "target": "Bolivia", "attributes": { "weight": 0.8066998641930742, "sourceWeight": "0.8066998641930742", "direction": "Imp", "source_type": "primary", "targetWeight": "0.8066998641930742" } }, { "key": "geid_107_1185", "source": "Panama", "target": "Bolivia", "attributes": { "weight": 0.6722498868275618, "sourceWeight": "0.6722498868275618", "direction": "Imp", "source_type": "primary", "targetWeight": "0.6722498868275618" } }, { "key": "geid_107_1186", "source": "Norway", "target": "Bolivia", "attributes": { "weight": 4907.241321871984, "sourceWeight": "4907.241321871984", "direction": "Imp", "source_type": "primary", "targetWeight": "4907.241321871984" } }, { "key": "geid_107_1187", "source": "Ecuador", "target": "Bolivia", "attributes": { "weight": 8217.793030794694, "sourceWeight": "8217.793030794694", "direction": "Imp", "source_type": "primary", "targetWeight": "8217.793030794694" } }, { "key": "geid_107_1188", "source": "Australia", "target": "Bolivia", "attributes": { "weight": 2812.36479629186, "sourceWeight": "2812.36479629186", "direction": "Imp", "source_type": "primary", "targetWeight": "2812.36479629186" } }, { "key": "geid_107_1189", "source": "Bolivia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1715658.6353939876, "sourceWeight": "1715658.6353939876", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1190", "source": "Bolivia", "target": "Chile", "attributes": { "weight": 31133.185667766644, "sourceWeight": "31133.185667766644", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1191", "source": "Bolivia", "target": "UnitedKingdom", "attributes": { "weight": 5506372.6765174605, "sourceWeight": "5506372.6765174605", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1192", "source": "Bolivia", "target": "Peru", "attributes": { "weight": 10888.986695352538, "sourceWeight": "10888.986695352538", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1193", "source": "Bolivia", "target": "ArgentinaLaPlata", "attributes": { "weight": 217005.0633887156, "sourceWeight": "217005.0633887156", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1194", "source": "Bolivia", "target": "Brazil", "attributes": { "weight": 93691.6549571256, "sourceWeight": "93691.6549571256", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1195", "source": "Bolivia", "target": "France", "attributes": { "weight": 44024.26092582005, "sourceWeight": "44024.26092582005", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1196", "source": "Bolivia", "target": "Belgium", "attributes": { "weight": 59572.58873027826, "sourceWeight": "59572.58873027826", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1197", "source": "Bolivia", "target": "Spain", "attributes": { "weight": 997.5348008162482, "sourceWeight": "997.5348008162482", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1198", "source": "Bolivia", "target": "Italy", "attributes": { "weight": 680.4990651888228, "sourceWeight": "680.4990651888228", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1199", "source": "Bolivia", "target": "GermanyZollverein", "attributes": { "weight": 55539.59225222824, "sourceWeight": "55539.59225222824", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1200", "source": "Bolivia", "target": "Netherlands", "attributes": { "weight": 1489.0402218219176, "sourceWeight": "1489.0402218219176", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1201", "source": "Bolivia", "target": "Denmark", "attributes": { "weight": 376.4599366234346, "sourceWeight": "376.4599366234346", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1202", "source": "Bolivia", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 21.44477138979922, "sourceWeight": "21.44477138979922", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1203", "source": "Bolivia", "target": "Uruguay", "attributes": { "weight": 5715.116278867233, "sourceWeight": "5715.116278867233", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1204", "source": "Bolivia", "target": "Portugal", "attributes": { "weight": 59.104210049879235, "sourceWeight": "59.104210049879235", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1205", "source": "Bolivia", "target": "Switzerland", "attributes": { "weight": 18.706025350863733, "sourceWeight": "18.706025350863733", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1206", "source": "Bolivia", "target": "Panama", "attributes": { "weight": 94.25077863299782, "sourceWeight": "94.25077863299782", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1207", "source": "Bolivia", "target": "Ecuador", "attributes": { "weight": 124.36622906309893, "sourceWeight": "124.36622906309893", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1208", "source": "Bolivia", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 278.04255319187956, "sourceWeight": "278.04255319187956", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1209", "source": "UnitedKingdom", "target": "GhanaGoldCoast", "attributes": { "weight": 4331533, "sourceWeight": "4331533", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4331533" } }, { "key": "geid_107_1210", "source": "CanadaProvinceofCanada", "target": "GhanaGoldCoast", "attributes": { "weight": 9514, "sourceWeight": "9514", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9514" } }, { "key": "geid_107_1211", "source": "India", "target": "GhanaGoldCoast", "attributes": { "weight": 51059, "sourceWeight": "51059", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "51059" } }, { "key": "geid_107_1212", "source": "BritishWestIndies", "target": "GhanaGoldCoast", "attributes": { "weight": 20750, "sourceWeight": "20750", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "20750" } }, { "key": "geid_107_1213", "source": "Jamaica", "target": "GhanaGoldCoast", "attributes": { "weight": 1479, "sourceWeight": "1479", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1479" } }, { "key": "geid_107_1214", "source": "Trinidad", "target": "GhanaGoldCoast", "attributes": { "weight": 60, "sourceWeight": "60", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "60" } }, { "key": "geid_107_1215", "source": "BritishColumbia", "target": "GhanaGoldCoast", "attributes": { "weight": 16, "sourceWeight": "16", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "16" } }, { "key": "geid_107_1216", "source": "NewfoundlandandLabradorNewfoundland", "target": "GhanaGoldCoast", "attributes": { "weight": 15, "sourceWeight": "15", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "15" } }, { "key": "geid_107_1217", "source": "Australia", "target": "GhanaGoldCoast", "attributes": { "weight": 22284, "sourceWeight": "22284", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "22284" } }, { "key": "geid_107_1218", "source": "NewZealand", "target": "GhanaGoldCoast", "attributes": { "weight": 522, "sourceWeight": "522", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "522" } }, { "key": "geid_107_1219", "source": "Tasmania", "target": "GhanaGoldCoast", "attributes": { "weight": 77, "sourceWeight": "77", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "77" } }, { "key": "geid_107_1220", "source": "StraitsSettlements", "target": "GhanaGoldCoast", "attributes": { "weight": 57, "sourceWeight": "57", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "57" } }, { "key": "geid_107_1221", "source": "IraqMesopotamia", "target": "GhanaGoldCoast", "attributes": { "weight": 16, "sourceWeight": "16", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "16" } }, { "key": "geid_107_1222", "source": "SriLankaCeylon", "target": "GhanaGoldCoast", "attributes": { "weight": 972, "sourceWeight": "972", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "972" } }, { "key": "geid_107_1223", "source": "Gibraltar", "target": "GhanaGoldCoast", "attributes": { "weight": 49, "sourceWeight": "49", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "49" } }, { "key": "geid_107_1224", "source": "Gambia", "target": "GhanaGoldCoast", "attributes": { "weight": 22, "sourceWeight": "22", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "22" } }, { "key": "geid_107_1225", "source": "SierraLeone", "target": "GhanaGoldCoast", "attributes": { "weight": 5899, "sourceWeight": "5899", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5899" } }, { "key": "geid_107_1226", "source": "Nigeria", "target": "GhanaGoldCoast", "attributes": { "weight": 165725, "sourceWeight": "165725", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "165725" } }, { "key": "geid_107_1227", "source": "BritishEastAfrica", "target": "GhanaGoldCoast", "attributes": { "weight": 17, "sourceWeight": "17", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "17" } }, { "key": "geid_107_1228", "source": "KenyaBritishEastAfricaProtectorate", "target": "GhanaGoldCoast", "attributes": { "weight": 10, "sourceWeight": "10", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "10" } }, { "key": "geid_107_1229", "source": "Zanzibar", "target": "GhanaGoldCoast", "attributes": { "weight": 117, "sourceWeight": "117", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "117" } }, { "key": "geid_107_1230", "source": "SouthAfrica", "target": "GhanaGoldCoast", "attributes": { "weight": 18, "sourceWeight": "18", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "18" } }, { "key": "geid_107_1231", "source": "GermanyZollverein", "target": "GhanaGoldCoast", "attributes": { "weight": 571743, "sourceWeight": "571743", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "571743" } }, { "key": "geid_107_1232", "source": "France", "target": "GhanaGoldCoast", "attributes": { "weight": 172548, "sourceWeight": "172548", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "172548" } }, { "key": "geid_107_1233", "source": "Netherlands", "target": "GhanaGoldCoast", "attributes": { "weight": 594003, "sourceWeight": "594003", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "594003" } }, { "key": "geid_107_1234", "source": "UnitedStatesofAmerica", "target": "GhanaGoldCoast", "attributes": { "weight": 900545, "sourceWeight": "900545", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "900545" } }, { "key": "geid_107_1235", "source": "Belgium", "target": "GhanaGoldCoast", "attributes": { "weight": 36816, "sourceWeight": "36816", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "36816" } }, { "key": "geid_107_1236", "source": "Italy", "target": "GhanaGoldCoast", "attributes": { "weight": 40273, "sourceWeight": "40273", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "40273" } }, { "key": "geid_107_1237", "source": "Japan", "target": "GhanaGoldCoast", "attributes": { "weight": 9776, "sourceWeight": "9776", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9776" } }, { "key": "geid_107_1238", "source": "TurkeyOttomanEmpire", "target": "GhanaGoldCoast", "attributes": { "weight": 28, "sourceWeight": "28", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "28" } }, { "key": "geid_107_1239", "source": "Switzerland", "target": "GhanaGoldCoast", "attributes": { "weight": 44393, "sourceWeight": "44393", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "44393" } }, { "key": "geid_107_1240", "source": "RussiaUSSR", "target": "GhanaGoldCoast", "attributes": { "weight": 90, "sourceWeight": "90", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "90" } }, { "key": "geid_107_1241", "source": "Austria", "target": "GhanaGoldCoast", "attributes": { "weight": 1071, "sourceWeight": "1071", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1071" } }, { "key": "geid_107_1242", "source": "Hungary", "target": "GhanaGoldCoast", "attributes": { "weight": 56, "sourceWeight": "56", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "56" } }, { "key": "geid_107_1243", "source": "Czechoslovakia", "target": "GhanaGoldCoast", "attributes": { "weight": 27462, "sourceWeight": "27462", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "27462" } }, { "key": "geid_107_1244", "source": "Spain", "target": "GhanaGoldCoast", "attributes": { "weight": 2843, "sourceWeight": "2843", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2843" } }, { "key": "geid_107_1245", "source": "Portugal", "target": "GhanaGoldCoast", "attributes": { "weight": 26500, "sourceWeight": "26500", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "26500" } }, { "key": "geid_107_1246", "source": "Brazil", "target": "GhanaGoldCoast", "attributes": { "weight": 67, "sourceWeight": "67", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "67" } }, { "key": "geid_107_1247", "source": "Denmark", "target": "GhanaGoldCoast", "attributes": { "weight": 21658, "sourceWeight": "21658", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "21658" } }, { "key": "geid_107_1248", "source": "Cuba", "target": "GhanaGoldCoast", "attributes": { "weight": 520, "sourceWeight": "520", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "520" } }, { "key": "geid_107_1249", "source": "Norway", "target": "GhanaGoldCoast", "attributes": { "weight": 2459, "sourceWeight": "2459", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2459" } }, { "key": "geid_107_1250", "source": "Sweden", "target": "GhanaGoldCoast", "attributes": { "weight": 23050, "sourceWeight": "23050", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "23050" } }, { "key": "geid_107_1251", "source": "ArgentinaLaPlata", "target": "GhanaGoldCoast", "attributes": { "weight": 10358, "sourceWeight": "10358", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "10358" } }, { "key": "geid_107_1252", "source": "CostaRica", "target": "GhanaGoldCoast", "attributes": { "weight": 38, "sourceWeight": "38", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "38" } }, { "key": "geid_107_1253", "source": "Siberia", "target": "GhanaGoldCoast", "attributes": { "weight": 7, "sourceWeight": "7", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7" } }, { "key": "geid_107_1254", "source": "IzmirSmyrna", "target": "GhanaGoldCoast", "attributes": { "weight": 7, "sourceWeight": "7", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7" } }, { "key": "geid_107_1255", "source": "Java", "target": "GhanaGoldCoast", "attributes": { "weight": 7, "sourceWeight": "7", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7" } }, { "key": "geid_107_1256", "source": "Greece", "target": "GhanaGoldCoast", "attributes": { "weight": 54, "sourceWeight": "54", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "54" } }, { "key": "geid_107_1257", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "GhanaGoldCoast", "attributes": { "weight": 117, "sourceWeight": "117", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "117" } }, { "key": "geid_107_1258", "source": "NewCaledoniaandDependencies", "target": "GhanaGoldCoast", "attributes": { "weight": 147, "sourceWeight": "147", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "147" } }, { "key": "geid_107_1259", "source": "Poland", "target": "GhanaGoldCoast", "attributes": { "weight": 3035, "sourceWeight": "3035", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3035" } }, { "key": "geid_107_1260", "source": "PeoplesRepublicofChinaChina", "target": "GhanaGoldCoast", "attributes": { "weight": 1459, "sourceWeight": "1459", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1459" } }, { "key": "geid_107_1261", "source": "Arabia", "target": "GhanaGoldCoast", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3" } }, { "key": "geid_107_1262", "source": "Morocco", "target": "GhanaGoldCoast", "attributes": { "weight": 60, "sourceWeight": "60", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "60" } }, { "key": "geid_107_1263", "source": "AlgeriaRegencyofAlgiers", "target": "GhanaGoldCoast", "attributes": { "weight": 54, "sourceWeight": "54", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "54" } }, { "key": "geid_107_1264", "source": "MadagascarMalagasyRepublic", "target": "GhanaGoldCoast", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3" } }, { "key": "geid_107_1265", "source": "EgyptArabRepublicEgypt", "target": "GhanaGoldCoast", "attributes": { "weight": 73, "sourceWeight": "73", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "73" } }, { "key": "geid_107_1266", "source": "FrenchIndia", "target": "GhanaGoldCoast", "attributes": { "weight": 345, "sourceWeight": "345", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "345" } }, { "key": "geid_107_1267", "source": "MadeiraIsles", "target": "GhanaGoldCoast", "attributes": { "weight": 521, "sourceWeight": "521", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "521" } }, { "key": "geid_107_1268", "source": "CanaryIs", "target": "GhanaGoldCoast", "attributes": { "weight": 41016, "sourceWeight": "41016", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "41016" } }, { "key": "geid_107_1269", "source": "GuineaFrenchGuineaRivieresduSud", "target": "GhanaGoldCoast", "attributes": { "weight": 29, "sourceWeight": "29", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "29" } }, { "key": "geid_107_1270", "source": "Senegal", "target": "GhanaGoldCoast", "attributes": { "weight": 86, "sourceWeight": "86", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "86" } }, { "key": "geid_107_1271", "source": "Liberia", "target": "GhanaGoldCoast", "attributes": { "weight": 315, "sourceWeight": "315", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "315" } }, { "key": "geid_107_1272", "source": "IvoryCoast", "target": "GhanaGoldCoast", "attributes": { "weight": 24875, "sourceWeight": "24875", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "24875" } }, { "key": "geid_107_1273", "source": "TogoFrenchTogoland", "target": "GhanaGoldCoast", "attributes": { "weight": 36714, "sourceWeight": "36714", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "36714" } }, { "key": "geid_107_1274", "source": "BeninDahomey", "target": "GhanaGoldCoast", "attributes": { "weight": 962, "sourceWeight": "962", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "962" } }, { "key": "geid_107_1275", "source": "CamerounFrenchCameroons", "target": "GhanaGoldCoast", "attributes": { "weight": 121, "sourceWeight": "121", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "121" } }, { "key": "geid_107_1276", "source": "FernandoPoBioko_RíoMuni", "target": "GhanaGoldCoast", "attributes": { "weight": 12, "sourceWeight": "12", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "12" } }, { "key": "geid_107_1277", "source": "CongoBrazzavilleFrenchCongoMiddleCongo", "target": "GhanaGoldCoast", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2" } }, { "key": "geid_107_1278", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "GhanaGoldCoast", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1" } }, { "key": "geid_107_1279", "source": "GhanaGoldCoast", "target": "UnitedKingdom", "attributes": { "weight": 1739560, "sourceWeight": "1739560", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1280", "source": "GhanaGoldCoast", "target": "CanadaProvinceofCanada", "attributes": { "weight": 12210, "sourceWeight": "12210", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1281", "source": "GhanaGoldCoast", "target": "Australia", "attributes": { "weight": 5949, "sourceWeight": "5949", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1282", "source": "GhanaGoldCoast", "target": "SierraLeone", "attributes": { "weight": 131, "sourceWeight": "131", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1283", "source": "GhanaGoldCoast", "target": "Nigeria", "attributes": { "weight": 400231, "sourceWeight": "400231", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1284", "source": "GhanaGoldCoast", "target": "GermanyZollverein", "attributes": { "weight": 1451094, "sourceWeight": "1451094", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1285", "source": "GhanaGoldCoast", "target": "France", "attributes": { "weight": 597525, "sourceWeight": "597525", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1286", "source": "GhanaGoldCoast", "target": "Netherlands", "attributes": { "weight": 2248766, "sourceWeight": "2248766", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1287", "source": "GhanaGoldCoast", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1834767, "sourceWeight": "1834767", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1288", "source": "GhanaGoldCoast", "target": "Denmark", "attributes": { "weight": 4960, "sourceWeight": "4960", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1289", "source": "GhanaGoldCoast", "target": "Belgium", "attributes": { "weight": 47413, "sourceWeight": "47413", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1290", "source": "GhanaGoldCoast", "target": "Switzerland", "attributes": { "weight": 4520, "sourceWeight": "4520", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1291", "source": "GhanaGoldCoast", "target": "Austria", "attributes": { "weight": 963, "sourceWeight": "963", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1292", "source": "GhanaGoldCoast", "target": "Sweden", "attributes": { "weight": 13841, "sourceWeight": "13841", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1293", "source": "GhanaGoldCoast", "target": "Norway", "attributes": { "weight": 160834, "sourceWeight": "160834", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1294", "source": "GhanaGoldCoast", "target": "Italy", "attributes": { "weight": 65503, "sourceWeight": "65503", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1295", "source": "GhanaGoldCoast", "target": "CanaryIs", "attributes": { "weight": 286, "sourceWeight": "286", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1296", "source": "GhanaGoldCoast", "target": "Senegal", "attributes": { "weight": 11, "sourceWeight": "11", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1297", "source": "GhanaGoldCoast", "target": "Liberia", "attributes": { "weight": 96, "sourceWeight": "96", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1298", "source": "GhanaGoldCoast", "target": "IvoryCoast", "attributes": { "weight": 10121, "sourceWeight": "10121", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1299", "source": "GhanaGoldCoast", "target": "TogoFrenchTogoland", "attributes": { "weight": 114836, "sourceWeight": "114836", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1300", "source": "GhanaGoldCoast", "target": "BeninDahomey", "attributes": { "weight": 1458, "sourceWeight": "1458", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1301", "source": "GhanaGoldCoast", "target": "CamerounFrenchCameroons", "attributes": { "weight": 32, "sourceWeight": "32", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_1302", "source": "EgyptArabRepublicEgypt", "target": "Brazil", "attributes": { "weight": 8182, "sourceWeight": "8182", "direction": "Imp", "source_type": "primary", "targetWeight": "8182" } }, { "key": "geid_107_1303", "source": "Morocco", "target": "Brazil", "attributes": { "weight": 208, "sourceWeight": "208", "direction": "Imp", "source_type": "primary", "targetWeight": "208" } }, { "key": "geid_107_1304", "source": "BritishAfrica", "target": "Brazil", "attributes": { "weight": 1883, "sourceWeight": "1883", "direction": "Imp", "source_type": "primary", "targetWeight": "1883" } }, { "key": "geid_107_1305", "source": "FrenchAfrica", "target": "Brazil", "attributes": { "weight": 15753, "sourceWeight": "15753", "direction": "Imp", "source_type": "primary", "targetWeight": "15753" } }, { "key": "geid_107_1306", "source": "SpanishAfrica", "target": "Brazil", "attributes": { "weight": 733, "sourceWeight": "733", "direction": "Imp", "source_type": "primary", "targetWeight": "733" } }, { "key": "geid_107_1307", "source": "ItalianAfrica", "target": "Brazil", "attributes": { "weight": 513, "sourceWeight": "513", "direction": "Imp", "source_type": "primary", "targetWeight": "513" } }, { "key": "geid_107_1308", "source": "PortugueseAfrica", "target": "Brazil", "attributes": { "weight": 10147, "sourceWeight": "10147", "direction": "Imp", "source_type": "primary", "targetWeight": "10147" } }, { "key": "geid_107_1309", "source": "SouthAfrica", "target": "Brazil", "attributes": { "weight": 114, "sourceWeight": "114", "direction": "Imp", "source_type": "primary", "targetWeight": "114" } }, { "key": "geid_107_1310", "source": "CanadaProvinceofCanada", "target": "Brazil", "attributes": { "weight": 577373, "sourceWeight": "577373", "direction": "Imp", "source_type": "primary", "targetWeight": "577373" } }, { "key": "geid_107_1311", "source": "Cuba", "target": "Brazil", "attributes": { "weight": 1696, "sourceWeight": "1696", "direction": "Imp", "source_type": "primary", "targetWeight": "1696" } }, { "key": "geid_107_1312", "source": "UnitedStatesofAmerica", "target": "Brazil", "attributes": { "weight": 16543809, "sourceWeight": "16543809", "direction": "Imp", "source_type": "primary", "targetWeight": "16543809" } }, { "key": "geid_107_1313", "source": "Mexico", "target": "Brazil", "attributes": { "weight": 792581, "sourceWeight": "792581", "direction": "Imp", "source_type": "primary", "targetWeight": "792581" } }, { "key": "geid_107_1314", "source": "BritishAmerica", "target": "Brazil", "attributes": { "weight": 45206, "sourceWeight": "45206", "direction": "Imp", "source_type": "primary", "targetWeight": "45206" } }, { "key": "geid_107_1315", "source": "NewfoundlandandLabradorNewfoundland", "target": "Brazil", "attributes": { "weight": 296308, "sourceWeight": "296308", "direction": "Imp", "source_type": "primary", "targetWeight": "296308" } }, { "key": "geid_107_1316", "source": "ArgentinaLaPlata", "target": "Brazil", "attributes": { "weight": 8296620, "sourceWeight": "8296620", "direction": "Imp", "source_type": "primary", "targetWeight": "8296620" } }, { "key": "geid_107_1317", "source": "Bolivia", "target": "Brazil", "attributes": { "weight": 9929, "sourceWeight": "9929", "direction": "Imp", "source_type": "primary", "targetWeight": "9929" } }, { "key": "geid_107_1318", "source": "Chile", "target": "Brazil", "attributes": { "weight": 44232, "sourceWeight": "44232", "direction": "Imp", "source_type": "primary", "targetWeight": "44232" } }, { "key": "geid_107_1319", "source": "ColombiaNewGranadaGranColombia", "target": "Brazil", "attributes": { "weight": 11, "sourceWeight": "11", "direction": "Imp", "source_type": "primary", "targetWeight": "11" } }, { "key": "geid_107_1320", "source": "Paraguay", "target": "Brazil", "attributes": { "weight": 1780, "sourceWeight": "1780", "direction": "Imp", "source_type": "primary", "targetWeight": "1780" } }, { "key": "geid_107_1321", "source": "Peru", "target": "Brazil", "attributes": { "weight": 1904, "sourceWeight": "1904", "direction": "Imp", "source_type": "primary", "targetWeight": "1904" } }, { "key": "geid_107_1322", "source": "Uruguay", "target": "Brazil", "attributes": { "weight": 1134015, "sourceWeight": "1134015", "direction": "Imp", "source_type": "primary", "targetWeight": "1134015" } }, { "key": "geid_107_1323", "source": "PeoplesRepublicofChinaChina", "target": "Brazil", "attributes": { "weight": 143086, "sourceWeight": "143086", "direction": "Imp", "source_type": "primary", "targetWeight": "143086" } }, { "key": "geid_107_1324", "source": "India", "target": "Brazil", "attributes": { "weight": 500571, "sourceWeight": "500571", "direction": "Imp", "source_type": "primary", "targetWeight": "500571" } }, { "key": "geid_107_1325", "source": "Japan", "target": "Brazil", "attributes": { "weight": 118409, "sourceWeight": "118409", "direction": "Imp", "source_type": "primary", "targetWeight": "118409" } }, { "key": "geid_107_1326", "source": "BritishAsia", "target": "Brazil", "attributes": { "weight": 17332, "sourceWeight": "17332", "direction": "Imp", "source_type": "primary", "targetWeight": "17332" } }, { "key": "geid_107_1327", "source": "FrenchAsia", "target": "Brazil", "attributes": { "weight": 1113, "sourceWeight": "1113", "direction": "Imp", "source_type": "primary", "targetWeight": "1113" } }, { "key": "geid_107_1328", "source": "AsianRussia", "target": "Brazil", "attributes": { "weight": 7, "sourceWeight": "7", "direction": "Imp", "source_type": "primary", "targetWeight": "7" } }, { "key": "geid_107_1329", "source": "Syria", "target": "Brazil", "attributes": { "weight": 13744, "sourceWeight": "13744", "direction": "Imp", "source_type": "primary", "targetWeight": "13744" } }, { "key": "geid_107_1330", "source": "AsianTurkey", "target": "Brazil", "attributes": { "weight": 7329, "sourceWeight": "7329", "direction": "Imp", "source_type": "primary", "targetWeight": "7329" } }, { "key": "geid_107_1331", "source": "GermanyZollverein", "target": "Brazil", "attributes": { "weight": 8322826, "sourceWeight": "8322826", "direction": "Imp", "source_type": "primary", "targetWeight": "8322826" } }, { "key": "geid_107_1332", "source": "Austria", "target": "Brazil", "attributes": { "weight": 124119, "sourceWeight": "124119", "direction": "Imp", "source_type": "primary", "targetWeight": "124119" } }, { "key": "geid_107_1333", "source": "Belgium", "target": "Brazil", "attributes": { "weight": 2414986, "sourceWeight": "2414986", "direction": "Imp", "source_type": "primary", "targetWeight": "2414986" } }, { "key": "geid_107_1334", "source": "Denmark", "target": "Brazil", "attributes": { "weight": 321852, "sourceWeight": "321852", "direction": "Imp", "source_type": "primary", "targetWeight": "321852" } }, { "key": "geid_107_1335", "source": "Finland", "target": "Brazil", "attributes": { "weight": 219836, "sourceWeight": "219836", "direction": "Imp", "source_type": "primary", "targetWeight": "219836" } }, { "key": "geid_107_1336", "source": "France", "target": "Brazil", "attributes": { "weight": 4616355, "sourceWeight": "4616355", "direction": "Imp", "source_type": "primary", "targetWeight": "4616355" } }, { "key": "geid_107_1337", "source": "UnitedKingdom", "target": "Brazil", "attributes": { "weight": 16346931, "sourceWeight": "16346931", "direction": "Imp", "source_type": "primary", "targetWeight": "16346931" } }, { "key": "geid_107_1338", "source": "Greece", "target": "Brazil", "attributes": { "weight": 4720, "sourceWeight": "4720", "direction": "Imp", "source_type": "primary", "targetWeight": "4720" } }, { "key": "geid_107_1339", "source": "Spain", "target": "Brazil", "attributes": { "weight": 725229, "sourceWeight": "725229", "direction": "Imp", "source_type": "primary", "targetWeight": "725229" } }, { "key": "geid_107_1340", "source": "Netherlands", "target": "Brazil", "attributes": { "weight": 711603, "sourceWeight": "711603", "direction": "Imp", "source_type": "primary", "targetWeight": "711603" } }, { "key": "geid_107_1341", "source": "Hungary", "target": "Brazil", "attributes": { "weight": 3805, "sourceWeight": "3805", "direction": "Imp", "source_type": "primary", "targetWeight": "3805" } }, { "key": "geid_107_1342", "source": "Iceland", "target": "Brazil", "attributes": { "weight": 17464, "sourceWeight": "17464", "direction": "Imp", "source_type": "primary", "targetWeight": "17464" } }, { "key": "geid_107_1343", "source": "Italy", "target": "Brazil", "attributes": { "weight": 2400557, "sourceWeight": "2400557", "direction": "Imp", "source_type": "primary", "targetWeight": "2400557" } }, { "key": "geid_107_1344", "source": "Luxemburg", "target": "Brazil", "attributes": { "weight": 244958, "sourceWeight": "244958", "direction": "Imp", "source_type": "primary", "targetWeight": "244958" } }, { "key": "geid_107_1345", "source": "Norway", "target": "Brazil", "attributes": { "weight": 620004, "sourceWeight": "620004", "direction": "Imp", "source_type": "primary", "targetWeight": "620004" } }, { "key": "geid_107_1346", "source": "Poland", "target": "Brazil", "attributes": { "weight": 3851, "sourceWeight": "3851", "direction": "Imp", "source_type": "primary", "targetWeight": "3851" } }, { "key": "geid_107_1347", "source": "Portugal", "target": "Brazil", "attributes": { "weight": 1259726, "sourceWeight": "1259726", "direction": "Imp", "source_type": "primary", "targetWeight": "1259726" } }, { "key": "geid_107_1348", "source": "BritishEurope", "target": "Brazil", "attributes": { "weight": 5659, "sourceWeight": "5659", "direction": "Imp", "source_type": "primary", "targetWeight": "5659" } }, { "key": "geid_107_1349", "source": "Romania", "target": "Brazil", "attributes": { "weight": 23, "sourceWeight": "23", "direction": "Imp", "source_type": "primary", "targetWeight": "23" } }, { "key": "geid_107_1350", "source": "RussiaUSSR", "target": "Brazil", "attributes": { "weight": 440, "sourceWeight": "440", "direction": "Imp", "source_type": "primary", "targetWeight": "440" } }, { "key": "geid_107_1351", "source": "Sweden", "target": "Brazil", "attributes": { "weight": 407466, "sourceWeight": "407466", "direction": "Imp", "source_type": "primary", "targetWeight": "407466" } }, { "key": "geid_107_1352", "source": "Switzerland", "target": "Brazil", "attributes": { "weight": 734650, "sourceWeight": "734650", "direction": "Imp", "source_type": "primary", "targetWeight": "734650" } }, { "key": "geid_107_1353", "source": "Czechoslovakia", "target": "Brazil", "attributes": { "weight": 178294, "sourceWeight": "178294", "direction": "Imp", "source_type": "primary", "targetWeight": "178294" } }, { "key": "geid_107_1354", "source": "EuropeanTurkey", "target": "Brazil", "attributes": { "weight": 2526, "sourceWeight": "2526", "direction": "Imp", "source_type": "primary", "targetWeight": "2526" } }, { "key": "geid_107_1355", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Brazil", "attributes": { "weight": 45072, "sourceWeight": "45072", "direction": "Imp", "source_type": "primary", "targetWeight": "45072" } }, { "key": "geid_107_1356", "source": "NewZealand", "target": "Brazil", "attributes": { "weight": 217, "sourceWeight": "217", "direction": "Imp", "source_type": "primary", "targetWeight": "217" } }, { "key": "geid_107_1357", "source": "AmericanOceania", "target": "Brazil", "attributes": { "weight": 16401, "sourceWeight": "16401", "direction": "Imp", "source_type": "primary", "targetWeight": "16401" } }, { "key": "geid_107_1358", "source": "BritishOceania", "target": "Brazil", "attributes": { "weight": 136, "sourceWeight": "136", "direction": "Imp", "source_type": "primary", "targetWeight": "136" } }, { "key": "geid_107_1359", "source": "DutchOceania", "target": "Brazil", "attributes": { "weight": 2328, "sourceWeight": "2328", "direction": "Imp", "source_type": "primary", "targetWeight": "2328" } }, { "key": "geid_107_1360", "source": "Brazil", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 590328, "sourceWeight": "590328", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1361", "source": "Brazil", "target": "CapeVerde", "attributes": { "weight": 33658, "sourceWeight": "33658", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1362", "source": "Brazil", "target": "CanaryIs", "attributes": { "weight": 38521, "sourceWeight": "38521", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1363", "source": "Brazil", "target": "Ceuta", "attributes": { "weight": 11112, "sourceWeight": "11112", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1364", "source": "Brazil", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 376012, "sourceWeight": "376012", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1365", "source": "Brazil", "target": "MadeiraIsles", "attributes": { "weight": 3640, "sourceWeight": "3640", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1366", "source": "Brazil", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 69142, "sourceWeight": "69142", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1367", "source": "Brazil", "target": "Morocco", "attributes": { "weight": 46212, "sourceWeight": "46212", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1368", "source": "Brazil", "target": "Melilla", "attributes": { "weight": 22369, "sourceWeight": "22369", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1369", "source": "Brazil", "target": "Senegal", "attributes": { "weight": 3760, "sourceWeight": "3760", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1370", "source": "Brazil", "target": "BritishSouthWestAfrica", "attributes": { "weight": 4450, "sourceWeight": "4450", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1371", "source": "Brazil", "target": "Tangier", "attributes": { "weight": 1689, "sourceWeight": "1689", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1372", "source": "Brazil", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 44762, "sourceWeight": "44762", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1373", "source": "Brazil", "target": "SouthAfrica", "attributes": { "weight": 856239, "sourceWeight": "856239", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1374", "source": "Brazil", "target": "Barbados", "attributes": { "weight": 3275, "sourceWeight": "3275", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1375", "source": "Brazil", "target": "CanadaProvinceofCanada", "attributes": { "weight": 121716, "sourceWeight": "121716", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1376", "source": "Brazil", "target": "Cuba", "attributes": { "weight": 51116, "sourceWeight": "51116", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1377", "source": "Brazil", "target": "UnitedStatesofAmerica", "attributes": { "weight": 40808915, "sourceWeight": "40808915", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1378", "source": "Brazil", "target": "Trinidad", "attributes": { "weight": 263, "sourceWeight": "263", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1379", "source": "Brazil", "target": "ArgentinaLaPlata", "attributes": { "weight": 5122432, "sourceWeight": "5122432", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1380", "source": "Brazil", "target": "Bolivia", "attributes": { "weight": 560, "sourceWeight": "560", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1381", "source": "Brazil", "target": "Chile", "attributes": { "weight": 322213, "sourceWeight": "322213", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1382", "source": "Brazil", "target": "FrenchGuiana", "attributes": { "weight": 903, "sourceWeight": "903", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1383", "source": "Brazil", "target": "Paraguay", "attributes": { "weight": 3999, "sourceWeight": "3999", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1384", "source": "Brazil", "target": "Peru", "attributes": { "weight": 18646, "sourceWeight": "18646", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1385", "source": "Brazil", "target": "Uruguay", "attributes": { "weight": 2730237, "sourceWeight": "2730237", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1386", "source": "Brazil", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 200, "sourceWeight": "200", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1387", "source": "Brazil", "target": "Japan", "attributes": { "weight": 13856, "sourceWeight": "13856", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1388", "source": "Brazil", "target": "Palestine", "attributes": { "weight": 1463, "sourceWeight": "1463", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1389", "source": "Brazil", "target": "RhodeIs", "attributes": { "weight": 338, "sourceWeight": "338", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1390", "source": "Brazil", "target": "Syria", "attributes": { "weight": 1659, "sourceWeight": "1659", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1391", "source": "Brazil", "target": "AsianTurkey", "attributes": { "weight": 55245, "sourceWeight": "55245", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1392", "source": "Brazil", "target": "GermanyZollverein", "attributes": { "weight": 6304334, "sourceWeight": "6304334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1393", "source": "Brazil", "target": "Austria", "attributes": { "weight": 10175, "sourceWeight": "10175", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1394", "source": "Brazil", "target": "Belgium", "attributes": { "weight": 2631001, "sourceWeight": "2631001", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1395", "source": "Brazil", "target": "Bulgaria", "attributes": { "weight": 7771, "sourceWeight": "7771", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1396", "source": "Brazil", "target": "Crete", "attributes": { "weight": 1542, "sourceWeight": "1542", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1397", "source": "Brazil", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 30512, "sourceWeight": "30512", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1398", "source": "Brazil", "target": "Denmark", "attributes": { "weight": 1036217, "sourceWeight": "1036217", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1399", "source": "Brazil", "target": "Finland", "attributes": { "weight": 364207, "sourceWeight": "364207", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1400", "source": "Brazil", "target": "Fiume", "attributes": { "weight": 44363, "sourceWeight": "44363", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1401", "source": "Brazil", "target": "France", "attributes": { "weight": 11545453, "sourceWeight": "11545453", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1402", "source": "Brazil", "target": "Gibraltar", "attributes": { "weight": 95107, "sourceWeight": "95107", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1403", "source": "Brazil", "target": "UnitedKingdom", "attributes": { "weight": 3263213, "sourceWeight": "3263213", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1404", "source": "Brazil", "target": "Greece", "attributes": { "weight": 156699, "sourceWeight": "156699", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1405", "source": "Brazil", "target": "Spain", "attributes": { "weight": 21972, "sourceWeight": "21972", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1406", "source": "Brazil", "target": "Netherlands", "attributes": { "weight": 7282797, "sourceWeight": "7282797", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1407", "source": "Brazil", "target": "Italy", "attributes": { "weight": 7772867, "sourceWeight": "7772867", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1408", "source": "Brazil", "target": "Latvia", "attributes": { "weight": 206, "sourceWeight": "206", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1409", "source": "Brazil", "target": "Malta", "attributes": { "weight": 9649, "sourceWeight": "9649", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1410", "source": "Brazil", "target": "Norway", "attributes": { "weight": 224465, "sourceWeight": "224465", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1411", "source": "Brazil", "target": "Portugal", "attributes": { "weight": 555340, "sourceWeight": "555340", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1412", "source": "Brazil", "target": "Romania", "attributes": { "weight": 23095, "sourceWeight": "23095", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1413", "source": "Brazil", "target": "EuropeanRussia", "attributes": { "weight": 406, "sourceWeight": "406", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1414", "source": "Brazil", "target": "Sweden", "attributes": { "weight": 2238529, "sourceWeight": "2238529", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1415", "source": "Brazil", "target": "EuropeanTurkey", "attributes": { "weight": 122778, "sourceWeight": "122778", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1416", "source": "Brazil", "target": "Australia", "attributes": { "weight": 20, "sourceWeight": "20", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1417", "source": "UnitedKingdom", "target": "Palestine", "attributes": { "weight": 1006549, "sourceWeight": "1006549", "direction": "Imp", "source_type": "secondary", "targetWeight": "1006549" } }, { "key": "geid_107_1418", "source": "Australia", "target": "Palestine", "attributes": { "weight": 189348, "sourceWeight": "189348", "direction": "Imp", "source_type": "secondary", "targetWeight": "189348" } }, { "key": "geid_107_1419", "source": "India", "target": "Palestine", "attributes": { "weight": 135163, "sourceWeight": "135163", "direction": "Imp", "source_type": "secondary", "targetWeight": "135163" } }, { "key": "geid_107_1420", "source": "BritishColoniesother", "target": "Palestine", "attributes": { "weight": 40594, "sourceWeight": "40594", "direction": "Imp", "source_type": "secondary", "targetWeight": "40594" } }, { "key": "geid_107_1421", "source": "RussiaUSSR", "target": "Palestine", "attributes": { "weight": 27417, "sourceWeight": "27417", "direction": "Imp", "source_type": "secondary", "targetWeight": "27417" } }, { "key": "geid_107_1422", "source": "Poland", "target": "Palestine", "attributes": { "weight": 32134, "sourceWeight": "32134", "direction": "Imp", "source_type": "secondary", "targetWeight": "32134" } }, { "key": "geid_107_1423", "source": "GermanyZollverein", "target": "Palestine", "attributes": { "weight": 574066, "sourceWeight": "574066", "direction": "Imp", "source_type": "secondary", "targetWeight": "574066" } }, { "key": "geid_107_1424", "source": "Netherlands", "target": "Palestine", "attributes": { "weight": 71142, "sourceWeight": "71142", "direction": "Imp", "source_type": "secondary", "targetWeight": "71142" } }, { "key": "geid_107_1425", "source": "IndonesiaDutchEastIndies", "target": "Palestine", "attributes": { "weight": 67317, "sourceWeight": "67317", "direction": "Imp", "source_type": "secondary", "targetWeight": "67317" } }, { "key": "geid_107_1426", "source": "Belgium", "target": "Palestine", "attributes": { "weight": 178024, "sourceWeight": "178024", "direction": "Imp", "source_type": "secondary", "targetWeight": "178024" } }, { "key": "geid_107_1427", "source": "France", "target": "Palestine", "attributes": { "weight": 327785, "sourceWeight": "327785", "direction": "Imp", "source_type": "secondary", "targetWeight": "327785" } }, { "key": "geid_107_1428", "source": "Switzerland", "target": "Palestine", "attributes": { "weight": 25848, "sourceWeight": "25848", "direction": "Imp", "source_type": "secondary", "targetWeight": "25848" } }, { "key": "geid_107_1429", "source": "Syria", "target": "Palestine", "attributes": { "weight": 995887, "sourceWeight": "995887", "direction": "Imp", "source_type": "secondary", "targetWeight": "995887" } }, { "key": "geid_107_1430", "source": "Italy", "target": "Palestine", "attributes": { "weight": 296306, "sourceWeight": "296306", "direction": "Imp", "source_type": "secondary", "targetWeight": "296306" } }, { "key": "geid_107_1431", "source": "Austria", "target": "Palestine", "attributes": { "weight": 73113, "sourceWeight": "73113", "direction": "Imp", "source_type": "secondary", "targetWeight": "73113" } }, { "key": "geid_107_1432", "source": "Czechoslovakia", "target": "Palestine", "attributes": { "weight": 106818, "sourceWeight": "106818", "direction": "Imp", "source_type": "secondary", "targetWeight": "106818" } }, { "key": "geid_107_1433", "source": "Greece", "target": "Palestine", "attributes": { "weight": 30249, "sourceWeight": "30249", "direction": "Imp", "source_type": "secondary", "targetWeight": "30249" } }, { "key": "geid_107_1434", "source": "Romania", "target": "Palestine", "attributes": { "weight": 216202, "sourceWeight": "216202", "direction": "Imp", "source_type": "secondary", "targetWeight": "216202" } }, { "key": "geid_107_1435", "source": "TurkeyOttomanEmpire", "target": "Palestine", "attributes": { "weight": 80102, "sourceWeight": "80102", "direction": "Imp", "source_type": "secondary", "targetWeight": "80102" } }, { "key": "geid_107_1436", "source": "EgyptArabRepublicEgypt", "target": "Palestine", "attributes": { "weight": 386022, "sourceWeight": "386022", "direction": "Imp", "source_type": "secondary", "targetWeight": "386022" } }, { "key": "geid_107_1437", "source": "Japan", "target": "Palestine", "attributes": { "weight": 85282, "sourceWeight": "85282", "direction": "Imp", "source_type": "secondary", "targetWeight": "85282" } }, { "key": "geid_107_1438", "source": "UnitedStatesofAmerica", "target": "Palestine", "attributes": { "weight": 411917, "sourceWeight": "411917", "direction": "Imp", "source_type": "secondary", "targetWeight": "411917" } }, { "key": "geid_107_1439", "source": "Brazil", "target": "Palestine", "attributes": { "weight": 48368, "sourceWeight": "48368", "direction": "Imp", "source_type": "secondary", "targetWeight": "48368" } }, { "key": "geid_107_1440", "source": "OthercountriesnonBritish", "target": "Palestine", "attributes": { "weight": 273122, "sourceWeight": "273122", "direction": "Imp", "source_type": "secondary", "targetWeight": "273122" } }, { "key": "geid_107_1441", "source": "Palestine", "target": "UnitedKingdom", "attributes": { "weight": 390113, "sourceWeight": "390113", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1442", "source": "Palestine", "target": "India", "attributes": { "weight": 35381, "sourceWeight": "35381", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1443", "source": "Palestine", "target": "Malta", "attributes": { "weight": 2802, "sourceWeight": "2802", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1444", "source": "Palestine", "target": "BritishColoniesother", "attributes": { "weight": 3177, "sourceWeight": "3177", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1445", "source": "Palestine", "target": "GermanyZollverein", "attributes": { "weight": 19525, "sourceWeight": "19525", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1446", "source": "Palestine", "target": "Netherlands", "attributes": { "weight": 2173, "sourceWeight": "2173", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1447", "source": "Palestine", "target": "France", "attributes": { "weight": 215427, "sourceWeight": "215427", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1448", "source": "Palestine", "target": "Syria", "attributes": { "weight": 213164, "sourceWeight": "213164", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1449", "source": "Palestine", "target": "Italy", "attributes": { "weight": 19707, "sourceWeight": "19707", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1450", "source": "Palestine", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 548174, "sourceWeight": "548174", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1451", "source": "Palestine", "target": "UnitedStatesofAmerica", "attributes": { "weight": 444879, "sourceWeight": "444879", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1452", "source": "Palestine", "target": "OthercountriesnonBritish", "attributes": { "weight": 72746, "sourceWeight": "72746", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1453", "source": "Australia", "target": "NewGuineaGermanNewGuineaKaiserWilhelmsland", "attributes": { "weight": 480341, "sourceWeight": "480341", "direction": "Imp", "source_type": "secondary", "targetWeight": "480341" } }, { "key": "geid_107_1454", "source": "PeoplesRepublicofChinaChina", "target": "NewGuineaGermanNewGuineaKaiserWilhelmsland", "attributes": { "weight": 2081, "sourceWeight": "2081", "direction": "Imp", "source_type": "secondary", "targetWeight": "2081" } }, { "key": "geid_107_1455", "source": "Japan", "target": "NewGuineaGermanNewGuineaKaiserWilhelmsland", "attributes": { "weight": 458, "sourceWeight": "458", "direction": "Imp", "source_type": "secondary", "targetWeight": "458" } }, { "key": "geid_107_1456", "source": "UnitedStatesofAmerica", "target": "NewGuineaGermanNewGuineaKaiserWilhelmsland", "attributes": { "weight": 2754, "sourceWeight": "2754", "direction": "Imp", "source_type": "secondary", "targetWeight": "2754" } }, { "key": "geid_107_1457", "source": "NewGuineaGermanNewGuineaKaiserWilhelmsland", "target": "BritishColonies", "attributes": { "weight": 282064, "sourceWeight": "282064", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1458", "source": "NewGuineaGermanNewGuineaKaiserWilhelmsland", "target": "Europe", "attributes": { "weight": 385605, "sourceWeight": "385605", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1459", "source": "NewGuineaGermanNewGuineaKaiserWilhelmsland", "target": "UnitedStatesofAmerica", "attributes": { "weight": 34126, "sourceWeight": "34126", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1460", "source": "NewGuineaGermanNewGuineaKaiserWilhelmsland", "target": "OthercountriesnonBritish", "attributes": { "weight": 198, "sourceWeight": "198", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_1461", "source": "UnitedKingdom", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 1699900, "sourceWeight": "1699900", "direction": "Imp", "source_type": "primary", "targetWeight": "1699900" } }, { "key": "geid_107_1462", "source": "EgyptArabRepublicEgypt", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 1881386.5979381443, "sourceWeight": "1881386.5979381443", "direction": "Imp", "source_type": "primary", "targetWeight": "1881386.5979381443" } }, { "key": "geid_107_1463", "source": "EthiopiaAbyssinia", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 267079.381443299, "sourceWeight": "267079.381443299", "direction": "Imp", "source_type": "primary", "targetWeight": "267079.381443299" } }, { "key": "geid_107_1464", "source": "SouthAfrica", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 131124.74226804124, "sourceWeight": "131124.74226804124", "direction": "Imp", "source_type": "primary", "targetWeight": "131124.74226804124" } }, { "key": "geid_107_1465", "source": "UnitedStatesofAmerica", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 82745.36082474227, "sourceWeight": "82745.36082474227", "direction": "Imp", "source_type": "primary", "targetWeight": "82745.36082474227" } }, { "key": "geid_107_1466", "source": "Arabia", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 9411.340206185567, "sourceWeight": "9411.340206185567", "direction": "Imp", "source_type": "primary", "targetWeight": "9411.340206185567" } }, { "key": "geid_107_1467", "source": "Australia", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 105884.53608247422, "sourceWeight": "105884.53608247422", "direction": "Imp", "source_type": "primary", "targetWeight": "105884.53608247422" } }, { "key": "geid_107_1468", "source": "Belgium", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 61961.8556701031, "sourceWeight": "61961.8556701031", "direction": "Imp", "source_type": "primary", "targetWeight": "61961.8556701031" } }, { "key": "geid_107_1469", "source": "Brazil", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 29122.680412371134, "sourceWeight": "29122.680412371134", "direction": "Imp", "source_type": "primary", "targetWeight": "29122.680412371134" } }, { "key": "geid_107_1470", "source": "CanadaProvinceofCanada", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 1486.5979381443299, "sourceWeight": "1486.5979381443299", "direction": "Imp", "source_type": "primary", "targetWeight": "1486.5979381443299" } }, { "key": "geid_107_1471", "source": "PeoplesRepublicofChinaChina", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 32003.092783505155, "sourceWeight": "32003.092783505155", "direction": "Imp", "source_type": "primary", "targetWeight": "32003.092783505155" } }, { "key": "geid_107_1472", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState_Uganda", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 997.9381443298969, "sourceWeight": "997.9381443298969", "direction": "Imp", "source_type": "primary", "targetWeight": "997.9381443298969" } }, { "key": "geid_107_1473", "source": "Czechoslovakia", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 6771.134020618557, "sourceWeight": "6771.134020618557", "direction": "Imp", "source_type": "primary", "targetWeight": "6771.134020618557" } }, { "key": "geid_107_1474", "source": "Eritrea", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 24744.329896907217, "sourceWeight": "24744.329896907217", "direction": "Imp", "source_type": "primary", "targetWeight": "24744.329896907217" } }, { "key": "geid_107_1475", "source": "France", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 81698.96907216495, "sourceWeight": "81698.96907216495", "direction": "Imp", "source_type": "primary", "targetWeight": "81698.96907216495" } }, { "key": "geid_107_1476", "source": "GermanyZollverein", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 76554.63917525773, "sourceWeight": "76554.63917525773", "direction": "Imp", "source_type": "primary", "targetWeight": "76554.63917525773" } }, { "key": "geid_107_1477", "source": "Greece", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 4947.422680412371, "sourceWeight": "4947.422680412371", "direction": "Imp", "source_type": "primary", "targetWeight": "4947.422680412371" } }, { "key": "geid_107_1478", "source": "Netherlands", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 28185.567010309278, "sourceWeight": "28185.567010309278", "direction": "Imp", "source_type": "primary", "targetWeight": "28185.567010309278" } }, { "key": "geid_107_1479", "source": "Aden_India_SriLankaCeylon", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 543518.5567010309, "sourceWeight": "543518.5567010309", "direction": "Imp", "source_type": "primary", "targetWeight": "543518.5567010309" } }, { "key": "geid_107_1480", "source": "Italy", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 134374.22680412373, "sourceWeight": "134374.22680412373", "direction": "Imp", "source_type": "primary", "targetWeight": "134374.22680412373" } }, { "key": "geid_107_1481", "source": "Japan", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 298774.2268041237, "sourceWeight": "298774.2268041237", "direction": "Imp", "source_type": "primary", "targetWeight": "298774.2268041237" } }, { "key": "geid_107_1482", "source": "KenyaBritishEastAfricaProtectorate", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 42040.20618556701, "sourceWeight": "42040.20618556701", "direction": "Imp", "source_type": "primary", "targetWeight": "42040.20618556701" } }, { "key": "geid_107_1483", "source": "IranPersia", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 28680.41237113402, "sourceWeight": "28680.41237113402", "direction": "Imp", "source_type": "primary", "targetWeight": "28680.41237113402" } }, { "key": "geid_107_1484", "source": "Sweden", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 11123.711340206186, "sourceWeight": "11123.711340206186", "direction": "Imp", "source_type": "primary", "targetWeight": "11123.711340206186" } }, { "key": "geid_107_1485", "source": "Othercountries", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 59041.237113402065, "sourceWeight": "59041.237113402065", "direction": "Imp", "source_type": "primary", "targetWeight": "59041.237113402065" } }, { "key": "geid_107_1486", "source": "***NA", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 678.3505154639175, "sourceWeight": "678.3505154639175", "direction": "Imp", "source_type": "primary", "targetWeight": "678.3505154639175" } }, { "key": "geid_107_1487", "source": "SudanAngloEgyptianSudanMahdistState", "target": "UnitedKingdom", "attributes": { "weight": 2244689.6907216497, "sourceWeight": "2244689.6907216497", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1488", "source": "SudanAngloEgyptianSudanMahdistState", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 528551.5463917525, "sourceWeight": "528551.5463917525", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1489", "source": "SudanAngloEgyptianSudanMahdistState", "target": "EthiopiaAbyssinia", "attributes": { "weight": 10140.20618556701, "sourceWeight": "10140.20618556701", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1490", "source": "SudanAngloEgyptianSudanMahdistState", "target": "UnitedStatesofAmerica", "attributes": { "weight": 224661.8556701031, "sourceWeight": "224661.8556701031", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1491", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Arabia", "attributes": { "weight": 4503.092783505154, "sourceWeight": "4503.092783505154", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1492", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Australia", "attributes": { "weight": 29575.257731958765, "sourceWeight": "29575.257731958765", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1493", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Belgium", "attributes": { "weight": 61039.175257731964, "sourceWeight": "61039.175257731964", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1494", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Brazil", "attributes": { "weight": 2525.773195876289, "sourceWeight": "2525.773195876289", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1495", "source": "SudanAngloEgyptianSudanMahdistState", "target": "BritishMediterranean", "attributes": { "weight": 6397.938144329897, "sourceWeight": "6397.938144329897", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1496", "source": "SudanAngloEgyptianSudanMahdistState", "target": "CanadaProvinceofCanada", "attributes": { "weight": 3748.453608247423, "sourceWeight": "3748.453608247423", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1497", "source": "SudanAngloEgyptianSudanMahdistState", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 5676.288659793815, "sourceWeight": "5676.288659793815", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1498", "source": "SudanAngloEgyptianSudanMahdistState", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState_Uganda", "attributes": { "weight": 323.7113402061856, "sourceWeight": "323.7113402061856", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1499", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Denmark", "attributes": { "weight": 5059.79381443299, "sourceWeight": "5059.79381443299", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1500", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Eritrea", "attributes": { "weight": 3290.721649484536, "sourceWeight": "3290.721649484536", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1501", "source": "SudanAngloEgyptianSudanMahdistState", "target": "France", "attributes": { "weight": 168241.23711340208, "sourceWeight": "168241.23711340208", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1502", "source": "SudanAngloEgyptianSudanMahdistState", "target": "GermanyZollverein", "attributes": { "weight": 126083.50515463918, "sourceWeight": "126083.50515463918", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1503", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Greece", "attributes": { "weight": 2187.6288659793813, "sourceWeight": "2187.6288659793813", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1504", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Netherlands", "attributes": { "weight": 43001.030927835054, "sourceWeight": "43001.030927835054", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1505", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Aden_India", "attributes": { "weight": 5222.6804123711345, "sourceWeight": "5222.6804123711345", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1506", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Italy", "attributes": { "weight": 98462.88659793815, "sourceWeight": "98462.88659793815", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1507", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Japan", "attributes": { "weight": 26997.9381443299, "sourceWeight": "26997.9381443299", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1508", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Norway", "attributes": { "weight": 585.5670103092783, "sourceWeight": "585.5670103092783", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1509", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Spain", "attributes": { "weight": 15763.917525773197, "sourceWeight": "15763.917525773197", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1510", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Sweden", "attributes": { "weight": 17322.680412371134, "sourceWeight": "17322.680412371134", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1511", "source": "SudanAngloEgyptianSudanMahdistState", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 1030.9278350515465, "sourceWeight": "1030.9278350515465", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1512", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Othercountries", "attributes": { "weight": 7718.556701030928, "sourceWeight": "7718.556701030928", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1513", "source": "SudanAngloEgyptianSudanMahdistState", "target": "***NA", "attributes": { "weight": 8606.185567010309, "sourceWeight": "8606.185567010309", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1514", "source": "FrenchEquatorialAfrica", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 19445.1412403741, "sourceWeight": "19445.1412403741", "direction": "Imp", "source_type": "primary", "targetWeight": "19445.1412403741" } }, { "key": "geid_107_1515", "source": "AlgeriaRegencyofAlgiers", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 535.4554096874717, "sourceWeight": "535.4554096874717", "direction": "Imp", "source_type": "primary", "targetWeight": "535.4554096874717" } }, { "key": "geid_107_1516", "source": "GermanyZollverein", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 216441.63014932026, "sourceWeight": "216441.63014932026", "direction": "Imp", "source_type": "primary", "targetWeight": "216441.63014932026" } }, { "key": "geid_107_1517", "source": "UnitedKingdom", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 574105.8736983242, "sourceWeight": "574105.8736983242", "direction": "Imp", "source_type": "primary", "targetWeight": "574105.8736983242" } }, { "key": "geid_107_1518", "source": "AngolaPortugueseWestAfrica", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 96985.87732002359, "sourceWeight": "96985.87732002359", "direction": "Imp", "source_type": "primary", "targetWeight": "96985.87732002359" } }, { "key": "geid_107_1519", "source": "Arabia", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 236.97600724302131, "sourceWeight": "236.97600724302131", "direction": "Imp", "source_type": "primary", "targetWeight": "236.97600724302131" } }, { "key": "geid_107_1520", "source": "ArgentinaLaPlata", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 489.4241738341591, "sourceWeight": "489.4241738341591", "direction": "Imp", "source_type": "primary", "targetWeight": "489.4241738341591" } }, { "key": "geid_107_1521", "source": "Australia", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 378.8388411044522, "sourceWeight": "378.8388411044522", "direction": "Imp", "source_type": "primary", "targetWeight": "378.8388411044522" } }, { "key": "geid_107_1522", "source": "Austria", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 199.31598008142166, "sourceWeight": "199.31598008142166", "direction": "Imp", "source_type": "primary", "targetWeight": "199.31598008142166" } }, { "key": "geid_107_1523", "source": "Belgium", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 2864736.0443630577, "sourceWeight": "2864736.0443630577", "direction": "Imp", "source_type": "primary", "targetWeight": "2864736.0443630577" } }, { "key": "geid_107_1524", "source": "Brazil", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 83.39972838385768, "sourceWeight": "83.39972838385768", "direction": "Imp", "source_type": "primary", "targetWeight": "83.39972838385768" } }, { "key": "geid_107_1525", "source": "CanadaProvinceofCanada", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 699.6727025801314, "sourceWeight": "699.6727025801314", "direction": "Imp", "source_type": "primary", "targetWeight": "699.6727025801314" } }, { "key": "geid_107_1526", "source": "CapeVerde", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 4220.46355816978, "sourceWeight": "4220.46355816978", "direction": "Imp", "source_type": "primary", "targetWeight": "4220.46355816978" } }, { "key": "geid_107_1527", "source": "SriLankaCeylon", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 25.73834314168492, "sourceWeight": "25.73834314168492", "direction": "Imp", "source_type": "primary", "targetWeight": "25.73834314168492" } }, { "key": "geid_107_1528", "source": "PeoplesRepublicofChinaChina", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 278.00950656396805, "sourceWeight": "278.00950656396805", "direction": "Imp", "source_type": "primary", "targetWeight": "278.00950656396805" } }, { "key": "geid_107_1529", "source": "Cuba", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 52.684472612024955, "sourceWeight": "52.684472612024955", "direction": "Imp", "source_type": "primary", "targetWeight": "52.684472612024955" } }, { "key": "geid_107_1530", "source": "Denmark", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 3614.06111362493, "sourceWeight": "3614.06111362493", "direction": "Imp", "source_type": "primary", "targetWeight": "3614.06111362493" } }, { "key": "geid_107_1531", "source": "EgyptArabRepublicEgypt", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 681.7224988680501, "sourceWeight": "681.7224988680501", "direction": "Imp", "source_type": "primary", "targetWeight": "681.7224988680501" } }, { "key": "geid_107_1532", "source": "Spain", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 1719.6794929827054, "sourceWeight": "1719.6794929827054", "direction": "Imp", "source_type": "primary", "targetWeight": "1719.6794929827054" } }, { "key": "geid_107_1533", "source": "UnitedStatesofAmerica", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 177221.2575825604, "sourceWeight": "177221.2575825604", "direction": "Imp", "source_type": "primary", "targetWeight": "177221.2575825604" } }, { "key": "geid_107_1534", "source": "Finland", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 106.45178813939587, "sourceWeight": "106.45178813939587", "direction": "Imp", "source_type": "primary", "targetWeight": "106.45178813939587" } }, { "key": "geid_107_1535", "source": "France", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 195605.91036661976, "sourceWeight": "195605.91036661976", "direction": "Imp", "source_type": "primary", "targetWeight": "195605.91036661976" } }, { "key": "geid_107_1536", "source": "Greece", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 365.6364870981186, "sourceWeight": "365.6364870981186", "direction": "Imp", "source_type": "primary", "targetWeight": "365.6364870981186" } }, { "key": "geid_107_1537", "source": "GuineaFrenchGuineaRivieresduSud", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 379.92168401979814, "sourceWeight": "379.92168401979814", "direction": "Imp", "source_type": "primary", "targetWeight": "379.92168401979814" } }, { "key": "geid_107_1538", "source": "Hungary", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 28.13309189677696, "sourceWeight": "28.13309189677696", "direction": "Imp", "source_type": "primary", "targetWeight": "28.13309189677696" } }, { "key": "geid_107_1539", "source": "India", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 17023.592123127244, "sourceWeight": "17023.592123127244", "direction": "Imp", "source_type": "primary", "targetWeight": "17023.592123127244" } }, { "key": "geid_107_1540", "source": "IndonesiaDutchEastIndies", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 3963.5174286995134, "sourceWeight": "3963.5174286995134", "direction": "Imp", "source_type": "primary", "targetWeight": "3963.5174286995134" } }, { "key": "geid_107_1541", "source": "Italy", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 25168.476233581885, "sourceWeight": "25168.476233581885", "direction": "Imp", "source_type": "primary", "targetWeight": "25168.476233581885" } }, { "key": "geid_107_1542", "source": "Japan", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 6491.830692619038, "sourceWeight": "6491.830692619038", "direction": "Imp", "source_type": "primary", "targetWeight": "6491.830692619038" } }, { "key": "geid_107_1543", "source": "Luxemburg", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 1101.5427795379035, "sourceWeight": "1101.5427795379035", "direction": "Imp", "source_type": "primary", "targetWeight": "1101.5427795379035" } }, { "key": "geid_107_1544", "source": "Mauritania", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 1349.8886373920575, "sourceWeight": "1349.8886373920575", "direction": "Imp", "source_type": "primary", "targetWeight": "1349.8886373920575" } }, { "key": "geid_107_1545", "source": "MozambiquePortugueseEastAfrica", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 28463.45269351746, "sourceWeight": "28463.45269351746", "direction": "Imp", "source_type": "primary", "targetWeight": "28463.45269351746" } }, { "key": "geid_107_1546", "source": "Norway", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 3509.03576278748, "sourceWeight": "3509.03576278748", "direction": "Imp", "source_type": "primary", "targetWeight": "3509.03576278748" } }, { "key": "geid_107_1547", "source": "Netherlands", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 51444.04481664282, "sourceWeight": "51444.04481664282", "direction": "Imp", "source_type": "primary", "targetWeight": "51444.04481664282" } }, { "key": "geid_107_1548", "source": "Portugal", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 40032.84834765594, "sourceWeight": "40032.84834765594", "direction": "Imp", "source_type": "primary", "targetWeight": "40032.84834765594" } }, { "key": "geid_107_1549", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 444895.65323661774, "sourceWeight": "444895.65323661774", "direction": "Imp", "source_type": "primary", "targetWeight": "444895.65323661774" } }, { "key": "geid_107_1550", "source": "RuandaUrundi", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 20.14712539610045, "sourceWeight": "20.14712539610045", "direction": "Imp", "source_type": "primary", "targetWeight": "20.14712539610045" } }, { "key": "geid_107_1551", "source": "Senegal", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 876.5821638747788, "sourceWeight": "876.5821638747788", "direction": "Imp", "source_type": "primary", "targetWeight": "876.5821638747788" } }, { "key": "geid_107_1552", "source": "ThailandSiam", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 2.7071072883649183, "sourceWeight": "2.7071072883649183", "direction": "Imp", "source_type": "primary", "targetWeight": "2.7071072883649183" } }, { "key": "geid_107_1553", "source": "SudanAngloEgyptianSudanMahdistState", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 8559.685830689908, "sourceWeight": "8559.685830689908", "direction": "Imp", "source_type": "primary", "targetWeight": "8559.685830689908" } }, { "key": "geid_107_1554", "source": "Sweden", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 8172.298777724888, "sourceWeight": "8172.298777724888", "direction": "Imp", "source_type": "primary", "targetWeight": "8172.298777724888" } }, { "key": "geid_107_1555", "source": "Switzerland", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 39469.06201900062, "sourceWeight": "39469.06201900062", "direction": "Imp", "source_type": "primary", "targetWeight": "39469.06201900062" } }, { "key": "geid_107_1556", "source": "TanzaniaTanganyika", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 26377.32458125013, "sourceWeight": "26377.32458125013", "direction": "Imp", "source_type": "primary", "targetWeight": "26377.32458125013" } }, { "key": "geid_107_1557", "source": "Czechoslovakia", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 2576.697600723493, "sourceWeight": "2576.697600723493", "direction": "Imp", "source_type": "primary", "targetWeight": "2576.697600723493" } }, { "key": "geid_107_1558", "source": "Uganda", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 13806.736532363211, "sourceWeight": "13806.736532363211", "direction": "Imp", "source_type": "primary", "targetWeight": "13806.736532363211" } }, { "key": "geid_107_1559", "source": "SouthAfrica", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 216150.0955182656, "sourceWeight": "216150.0955182656", "direction": "Imp", "source_type": "primary", "targetWeight": "216150.0955182656" } }, { "key": "geid_107_1560", "source": "RussiaUSSR", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 69.73924852872393, "sourceWeight": "69.73924852872393", "direction": "Imp", "source_type": "primary", "targetWeight": "69.73924852872393" } }, { "key": "geid_107_1561", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "FrenchEquatorialAfrica", "attributes": { "weight": 32390.715708455104, "sourceWeight": "32390.715708455104", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1562", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "BritishEastAfrica", "attributes": { "weight": 1023.9633318240304, "sourceWeight": "1023.9633318240304", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1563", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "GermanyZollverein", "attributes": { "weight": 10194.653689449011, "sourceWeight": "10194.653689449011", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1564", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "UnitedKingdom", "attributes": { "weight": 137864.43639651584, "sourceWeight": "137864.43639651584", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1565", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 43402.62426435926, "sourceWeight": "43402.62426435926", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1566", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Belgium", "attributes": { "weight": 2048572.1525570692, "sourceWeight": "2048572.1525570692", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1567", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 642.1050248979404, "sourceWeight": "642.1050248979404", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1568", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "UnitedStatesofAmerica", "attributes": { "weight": 173472.65323670374, "sourceWeight": "173472.65323670374", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1569", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "France", "attributes": { "weight": 4469.33001357939, "sourceWeight": "4469.33001357939", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1570", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Greece", "attributes": { "weight": 8.850158442731464, "sourceWeight": "8.850158442731464", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1571", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "India", "attributes": { "weight": 202.2521502941867, "sourceWeight": "202.2521502941867", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1572", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Italy", "attributes": { "weight": 2102.3186962419777, "sourceWeight": "2102.3186962419777", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1573", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Morocco", "attributes": { "weight": 915.9913988227065, "sourceWeight": "915.9913988227065", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1574", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 2132431.339519469, "sourceWeight": "2132431.339519469", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1575", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Netherlands", "attributes": { "weight": 25762.665459475764, "sourceWeight": "25762.665459475764", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1576", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Portugal", "attributes": { "weight": 28.16432775010425, "sourceWeight": "28.16432775010425", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1577", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 10351.38478949423, "sourceWeight": "10351.38478949423", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1578", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 1044.1729289267855, "sourceWeight": "1044.1729289267855", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1579", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Sweden", "attributes": { "weight": 8.329560887276672, "sourceWeight": "8.329560887276672", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1580", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Switzerland", "attributes": { "weight": 70.69714803076076, "sourceWeight": "70.69714803076076", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1581", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "TanzaniaTanganyika", "attributes": { "weight": 311297.6283385161, "sourceWeight": "311297.6283385161", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1582", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Uganda", "attributes": { "weight": 16244.549117242475, "sourceWeight": "16244.549117242475", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1583", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "SouthAfrica", "attributes": { "weight": 10720.956994111586, "sourceWeight": "10720.956994111586", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1584", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Zanzibar", "attributes": { "weight": 3324.015391578847, "sourceWeight": "3324.015391578847", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1585", "source": "Belgium", "target": "Estonia", "attributes": { "weight": 76604.2366455375, "sourceWeight": "76604.2366455375", "direction": "Imp", "source_type": "primary", "targetWeight": "76604.2366455375" } }, { "key": "geid_107_1586", "source": "Denmark", "target": "Estonia", "attributes": { "weight": 124952.73103213559, "sourceWeight": "124952.73103213559", "direction": "Imp", "source_type": "primary", "targetWeight": "124952.73103213559" } }, { "key": "geid_107_1587", "source": "DanzigFreeCityofDanzig", "target": "Estonia", "attributes": { "weight": 54172.30751471009, "sourceWeight": "54172.30751471009", "direction": "Imp", "source_type": "primary", "targetWeight": "54172.30751471009" } }, { "key": "geid_107_1588", "source": "Netherlands", "target": "Estonia", "attributes": { "weight": 129928.67102760842, "sourceWeight": "129928.67102760842", "direction": "Imp", "source_type": "primary", "targetWeight": "129928.67102760842" } }, { "key": "geid_107_1589", "source": "UnitedKingdom", "target": "Estonia", "attributes": { "weight": 667393.2887505357, "sourceWeight": "667393.2887505357", "direction": "Imp", "source_type": "primary", "targetWeight": "667393.2887505357" } }, { "key": "geid_107_1590", "source": "Latvia", "target": "Estonia", "attributes": { "weight": 182973.97711633396, "sourceWeight": "182973.97711633396", "direction": "Imp", "source_type": "primary", "targetWeight": "182973.97711633396" } }, { "key": "geid_107_1591", "source": "Lithuania", "target": "Estonia", "attributes": { "weight": 3356.8167270256517, "sourceWeight": "3356.8167270256517", "direction": "Imp", "source_type": "primary", "targetWeight": "3356.8167270256517" } }, { "key": "geid_107_1592", "source": "Norway", "target": "Estonia", "attributes": { "weight": 41613.744816657236, "sourceWeight": "41613.744816657236", "direction": "Imp", "source_type": "primary", "targetWeight": "41613.744816657236" } }, { "key": "geid_107_1593", "source": "France", "target": "Estonia", "attributes": { "weight": 53037.889271161024, "sourceWeight": "53037.889271161024", "direction": "Imp", "source_type": "primary", "targetWeight": "53037.889271161024" } }, { "key": "geid_107_1594", "source": "Sweden", "target": "Estonia", "attributes": { "weight": 189461.19694431013, "sourceWeight": "189461.19694431013", "direction": "Imp", "source_type": "primary", "targetWeight": "189461.19694431013" } }, { "key": "geid_107_1595", "source": "GermanyZollverein", "target": "Estonia", "attributes": { "weight": 1747054.3839972047, "sourceWeight": "1747054.3839972047", "direction": "Imp", "source_type": "primary", "targetWeight": "1747054.3839972047" } }, { "key": "geid_107_1596", "source": "Finland", "target": "Estonia", "attributes": { "weight": 114053.37150293734, "sourceWeight": "114053.37150293734", "direction": "Imp", "source_type": "primary", "targetWeight": "114053.37150293734" } }, { "key": "geid_107_1597", "source": "Unknown", "target": "Estonia", "attributes": { "weight": 609703.4377093432, "sourceWeight": "609703.4377093432", "direction": "Imp", "source_type": "primary", "targetWeight": "609703.4377093432" } }, { "key": "geid_107_1598", "source": "UnitedStatesofAmerica", "target": "Estonia", "attributes": { "weight": 598754.9468537528, "sourceWeight": "598754.9468537528", "direction": "Imp", "source_type": "primary", "targetWeight": "598754.9468537528" } }, { "key": "geid_107_1599", "source": "Poland", "target": "Estonia", "attributes": { "weight": 46388.901380713156, "sourceWeight": "46388.901380713156", "direction": "Imp", "source_type": "primary", "targetWeight": "46388.901380713156" } }, { "key": "geid_107_1600", "source": "Czechoslovakia", "target": "Estonia", "attributes": { "weight": 50596.779017652756, "sourceWeight": "50596.779017652756", "direction": "Imp", "source_type": "primary", "targetWeight": "50596.779017652756" } }, { "key": "geid_107_1601", "source": "ArgentinaLaPlata", "target": "Estonia", "attributes": { "weight": 1041.8098234494776, "sourceWeight": "1041.8098234494776", "direction": "Imp", "source_type": "primary", "targetWeight": "1041.8098234494776" } }, { "key": "geid_107_1602", "source": "Austria", "target": "Estonia", "attributes": { "weight": 2108.0747849704794, "sourceWeight": "2108.0747849704794", "direction": "Imp", "source_type": "primary", "targetWeight": "2108.0747849704794" } }, { "key": "geid_107_1603", "source": "EgyptArabRepublicEgypt", "target": "Estonia", "attributes": { "weight": 24591.177048437094, "sourceWeight": "24591.177048437094", "direction": "Imp", "source_type": "primary", "targetWeight": "24591.177048437094" } }, { "key": "geid_107_1604", "source": "Switzerland", "target": "Estonia", "attributes": { "weight": 3582.48576278843, "sourceWeight": "3582.48576278843", "direction": "Imp", "source_type": "primary", "targetWeight": "3582.48576278843" } }, { "key": "geid_107_1605", "source": "PeoplesRepublicofChinaChina", "target": "Estonia", "attributes": { "weight": 4187.430488908819, "sourceWeight": "4187.430488908819", "direction": "Imp", "source_type": "primary", "targetWeight": "4187.430488908819" } }, { "key": "geid_107_1606", "source": "Spain", "target": "Estonia", "attributes": { "weight": 4938.8268220912205, "sourceWeight": "4938.8268220912205", "direction": "Imp", "source_type": "primary", "targetWeight": "4938.8268220912205" } }, { "key": "geid_107_1607", "source": "Japan", "target": "Estonia", "attributes": { "weight": 1183.6484608419564, "sourceWeight": "1183.6484608419564", "direction": "Imp", "source_type": "primary", "targetWeight": "1183.6484608419564" } }, { "key": "geid_107_1608", "source": "India", "target": "Estonia", "attributes": { "weight": 9293.214237210987, "sourceWeight": "9293.214237210987", "direction": "Imp", "source_type": "primary", "targetWeight": "9293.214237210987" } }, { "key": "geid_107_1609", "source": "Italy", "target": "Estonia", "attributes": { "weight": 5697.558533272716, "sourceWeight": "5697.558533272716", "direction": "Imp", "source_type": "primary", "targetWeight": "5697.558533272716" } }, { "key": "geid_107_1610", "source": "CanadaProvinceofCanada", "target": "Estonia", "attributes": { "weight": 2074.8474422814816, "sourceWeight": "2074.8474422814816", "direction": "Imp", "source_type": "primary", "targetWeight": "2074.8474422814816" } }, { "key": "geid_107_1611", "source": "IranPersia", "target": "Estonia", "attributes": { "weight": 1646.5916704390381, "sourceWeight": "1646.5916704390381", "direction": "Imp", "source_type": "primary", "targetWeight": "1646.5916704390381" } }, { "key": "geid_107_1612", "source": "Portugal", "target": "Estonia", "attributes": { "weight": 1762.7768447260405, "sourceWeight": "1762.7768447260405", "direction": "Imp", "source_type": "primary", "targetWeight": "1762.7768447260405" } }, { "key": "geid_107_1613", "source": "TurkeyOttomanEmpire", "target": "Estonia", "attributes": { "weight": 4519.366523313512, "sourceWeight": "4519.366523313512", "direction": "Imp", "source_type": "primary", "targetWeight": "4519.366523313512" } }, { "key": "geid_107_1614", "source": "Othercountries", "target": "Estonia", "attributes": { "weight": 15805.70359891282, "sourceWeight": "15805.70359891282", "direction": "Imp", "source_type": "primary", "targetWeight": "15805.70359891282" } }, { "key": "geid_107_1615", "source": "Estonia", "target": "Belgium", "attributes": { "weight": 300915.9831597872, "sourceWeight": "300915.9831597872", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1616", "source": "Estonia", "target": "Denmark", "attributes": { "weight": 293191.2833182303, "sourceWeight": "293191.2833182303", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1617", "source": "Estonia", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 16407.26858306852, "sourceWeight": "16407.26858306852", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1618", "source": "Estonia", "target": "Netherlands", "attributes": { "weight": 35050.58841104413, "sourceWeight": "35050.58841104413", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1619", "source": "Estonia", "target": "UnitedKingdom", "attributes": { "weight": 1531537.72661831, "sourceWeight": "1531537.72661831", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1620", "source": "Estonia", "target": "Latvia", "attributes": { "weight": 341210.4244680697, "sourceWeight": "341210.4244680697", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1621", "source": "Estonia", "target": "Lithuania", "attributes": { "weight": 52244.01057039148, "sourceWeight": "52244.01057039148", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1622", "source": "Estonia", "target": "Norway", "attributes": { "weight": 11712.981507468912, "sourceWeight": "11712.981507468912", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1623", "source": "Estonia", "target": "France", "attributes": { "weight": 152358.3373019397, "sourceWeight": "152358.3373019397", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1624", "source": "Estonia", "target": "Sweden", "attributes": { "weight": 239134.3233137058, "sourceWeight": "239134.3233137058", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1625", "source": "Estonia", "target": "GermanyZollverein", "attributes": { "weight": 1031839.5322996364, "sourceWeight": "1031839.5322996364", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1626", "source": "Estonia", "target": "Finland", "attributes": { "weight": 303401.2045721909, "sourceWeight": "303401.2045721909", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1627", "source": "Estonia", "target": "Unknown", "attributes": { "weight": 241807.27455861287, "sourceWeight": "241807.27455861287", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1628", "source": "Estonia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 17089.365663195244, "sourceWeight": "17089.365663195244", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1629", "source": "Estonia", "target": "Czechoslovakia", "attributes": { "weight": 1641.6645767314785, "sourceWeight": "1641.6645767314785", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1630", "source": "Estonia", "target": "Palestine", "attributes": { "weight": 4231.099547306282, "sourceWeight": "4231.099547306282", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1631", "source": "Estonia", "target": "Portugal", "attributes": { "weight": 944.210321412361, "sourceWeight": "944.210321412361", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1632", "source": "Estonia", "target": "Othercountries", "attributes": { "weight": 901.041534631014, "sourceWeight": "901.041534631014", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1633", "source": "UnitedKingdom", "target": "MyanmarBurma", "attributes": { "weight": 7097880.059758759, "sourceWeight": "7097880.059758759", "direction": "Imp", "source_type": "primary", "targetWeight": "7097880.059758759" } }, { "key": "geid_107_1634", "source": "Gibraltar", "target": "MyanmarBurma", "attributes": { "weight": 0.6478044363968528, "sourceWeight": "0.6478044363968528", "direction": "Imp", "source_type": "primary", "targetWeight": "0.6478044363968528" } }, { "key": "geid_107_1635", "source": "Gozo_Malta", "target": "MyanmarBurma", "attributes": { "weight": 137.19058397471127, "sourceWeight": "137.19058397471127", "direction": "Imp", "source_type": "primary", "targetWeight": "137.19058397471127" } }, { "key": "geid_107_1636", "source": "Cyprus", "target": "MyanmarBurma", "attributes": { "weight": 0.43186962426456854, "sourceWeight": "0.43186962426456854", "direction": "Imp", "source_type": "primary", "targetWeight": "0.43186962426456854" } }, { "key": "geid_107_1637", "source": "Palestine", "target": "MyanmarBurma", "attributes": { "weight": 17.418741512004264, "sourceWeight": "17.418741512004264", "direction": "Imp", "source_type": "primary", "targetWeight": "17.418741512004264" } }, { "key": "geid_107_1638", "source": "Aden", "target": "MyanmarBurma", "attributes": { "weight": 12286.834766868396, "sourceWeight": "12286.834766868396", "direction": "Imp", "source_type": "primary", "targetWeight": "12286.834766868396" } }, { "key": "geid_107_1639", "source": "IraqMesopotamia", "target": "MyanmarBurma", "attributes": { "weight": 16677.797193307688, "sourceWeight": "16677.797193307688", "direction": "Imp", "source_type": "primary", "targetWeight": "16677.797193307688" } }, { "key": "geid_107_1640", "source": "SriLankaCeylon", "target": "MyanmarBurma", "attributes": { "weight": 22684.59981893286, "sourceWeight": "22684.59981893286", "direction": "Imp", "source_type": "primary", "targetWeight": "22684.59981893286" } }, { "key": "geid_107_1641", "source": "StraitsSettlements", "target": "MyanmarBurma", "attributes": { "weight": 791478.9669537309, "sourceWeight": "791478.9669537309", "direction": "Imp", "source_type": "primary", "targetWeight": "791478.9669537309" } }, { "key": "geid_107_1642", "source": "FederatedMalayStates", "target": "MyanmarBurma", "attributes": { "weight": 1251.702127660141, "sourceWeight": "1251.702127660141", "direction": "Imp", "source_type": "primary", "targetWeight": "1251.702127660141" } }, { "key": "geid_107_1643", "source": "HongKong", "target": "MyanmarBurma", "attributes": { "weight": 334517.7175193909, "sourceWeight": "334517.7175193909", "direction": "Imp", "source_type": "primary", "targetWeight": "334517.7175193909" } }, { "key": "geid_107_1644", "source": "EgyptArabRepublicEgypt", "target": "MyanmarBurma", "attributes": { "weight": 45665.75011319406, "sourceWeight": "45665.75011319406", "direction": "Imp", "source_type": "primary", "targetWeight": "45665.75011319406" } }, { "key": "geid_107_1645", "source": "CapeColonyCapeofGoodHope", "target": "MyanmarBurma", "attributes": { "weight": 6.981892258943858, "sourceWeight": "6.981892258943858", "direction": "Imp", "source_type": "primary", "targetWeight": "6.981892258943858" } }, { "key": "geid_107_1646", "source": "Natal", "target": "MyanmarBurma", "attributes": { "weight": 87971.48257133906, "sourceWeight": "87971.48257133906", "direction": "Imp", "source_type": "primary", "targetWeight": "87971.48257133906" } }, { "key": "geid_107_1647", "source": "PembaIsland_Zanzibar", "target": "MyanmarBurma", "attributes": { "weight": 1.2236306020829442, "sourceWeight": "1.2236306020829442", "direction": "Imp", "source_type": "primary", "targetWeight": "1.2236306020829442" } }, { "key": "geid_107_1648", "source": "KenyaBritishEastAfricaProtectorate", "target": "MyanmarBurma", "attributes": { "weight": 12138.271616121385, "sourceWeight": "12138.271616121385", "direction": "Imp", "source_type": "primary", "targetWeight": "12138.271616121385" } }, { "key": "geid_107_1649", "source": "Mauritius", "target": "MyanmarBurma", "attributes": { "weight": 18.426437301954923, "sourceWeight": "18.426437301954923", "direction": "Imp", "source_type": "primary", "targetWeight": "18.426437301954923" } }, { "key": "geid_107_1650", "source": "CanadaAtlanticCoast", "target": "MyanmarBurma", "attributes": { "weight": 36029.947034873716, "sourceWeight": "36029.947034873716", "direction": "Imp", "source_type": "primary", "targetWeight": "36029.947034873716" } }, { "key": "geid_107_1651", "source": "CanadaPacificCoast", "target": "MyanmarBurma", "attributes": { "weight": 420.85694884582205, "sourceWeight": "420.85694884582205", "direction": "Imp", "source_type": "primary", "targetWeight": "420.85694884582205" } }, { "key": "geid_107_1652", "source": "WesternAustralia", "target": "MyanmarBurma", "attributes": { "weight": 7.701674966051472, "sourceWeight": "7.701674966051472", "direction": "Imp", "source_type": "primary", "targetWeight": "7.701674966051472" } }, { "key": "geid_107_1653", "source": "SouthAustralia", "target": "MyanmarBurma", "attributes": { "weight": 206.00181077419919, "sourceWeight": "206.00181077419919", "direction": "Imp", "source_type": "primary", "targetWeight": "206.00181077419919" } }, { "key": "geid_107_1654", "source": "Victoria", "target": "MyanmarBurma", "attributes": { "weight": 43640.7854232882, "sourceWeight": "43640.7854232882", "direction": "Imp", "source_type": "primary", "targetWeight": "43640.7854232882" } }, { "key": "geid_107_1655", "source": "Tasmania", "target": "MyanmarBurma", "attributes": { "weight": 671.7732005435364, "sourceWeight": "671.7732005435364", "direction": "Imp", "source_type": "primary", "targetWeight": "671.7732005435364" } }, { "key": "geid_107_1656", "source": "NewSouthWales", "target": "MyanmarBurma", "attributes": { "weight": 22428.213218661127, "sourceWeight": "22428.213218661127", "direction": "Imp", "source_type": "primary", "targetWeight": "22428.213218661127" } }, { "key": "geid_107_1657", "source": "Queensland", "target": "MyanmarBurma", "attributes": { "weight": 1315.3309189684542, "sourceWeight": "1315.3309189684542", "direction": "Imp", "source_type": "primary", "targetWeight": "1315.3309189684542" } }, { "key": "geid_107_1658", "source": "Finland", "target": "MyanmarBurma", "attributes": { "weight": 2231.5423268457366, "sourceWeight": "2231.5423268457366", "direction": "Imp", "source_type": "primary", "targetWeight": "2231.5423268457366" } }, { "key": "geid_107_1659", "source": "Sweden", "target": "MyanmarBurma", "attributes": { "weight": 28853.497510198667, "sourceWeight": "28853.497510198667", "direction": "Imp", "source_type": "primary", "targetWeight": "28853.497510198667" } }, { "key": "geid_107_1660", "source": "Norway", "target": "MyanmarBurma", "attributes": { "weight": 68960.86962429559, "sourceWeight": "68960.86962429559", "direction": "Imp", "source_type": "primary", "targetWeight": "68960.86962429559" } }, { "key": "geid_107_1661", "source": "Denmark", "target": "MyanmarBurma", "attributes": { "weight": 7921.064735177873, "sourceWeight": "7921.064735177873", "direction": "Imp", "source_type": "primary", "targetWeight": "7921.064735177873" } }, { "key": "geid_107_1662", "source": "Poland", "target": "MyanmarBurma", "attributes": { "weight": 245.51788139440723, "sourceWeight": "245.51788139440723", "direction": "Imp", "source_type": "primary", "targetWeight": "245.51788139440723" } }, { "key": "geid_107_1663", "source": "GermanyZollverein", "target": "MyanmarBurma", "attributes": { "weight": 510300.5310097376, "sourceWeight": "510300.5310097376", "direction": "Imp", "source_type": "primary", "targetWeight": "510300.5310097376" } }, { "key": "geid_107_1664", "source": "Netherlands", "target": "MyanmarBurma", "attributes": { "weight": 461024.782707316, "sourceWeight": "461024.782707316", "direction": "Imp", "source_type": "primary", "targetWeight": "461024.782707316" } }, { "key": "geid_107_1665", "source": "Belgium", "target": "MyanmarBurma", "attributes": { "weight": 227879.89406981796, "sourceWeight": "227879.89406981796", "direction": "Imp", "source_type": "primary", "targetWeight": "227879.89406981796" } }, { "key": "geid_107_1666", "source": "Luxemburg", "target": "MyanmarBurma", "attributes": { "weight": 376.44635581728227, "sourceWeight": "376.44635581728227", "direction": "Imp", "source_type": "primary", "targetWeight": "376.44635581728227" } }, { "key": "geid_107_1667", "source": "France", "target": "MyanmarBurma", "attributes": { "weight": 106520.4988683144, "sourceWeight": "106520.4988683144", "direction": "Imp", "source_type": "primary", "targetWeight": "106520.4988683144" } }, { "key": "geid_107_1668", "source": "Spain", "target": "MyanmarBurma", "attributes": { "weight": 877.4151199641817, "sourceWeight": "877.4151199641817", "direction": "Imp", "source_type": "primary", "targetWeight": "877.4151199641817" } }, { "key": "geid_107_1669", "source": "Portugal", "target": "MyanmarBurma", "attributes": { "weight": 41288.823449543364, "sourceWeight": "41288.823449543364", "direction": "Imp", "source_type": "primary", "targetWeight": "41288.823449543364" } }, { "key": "geid_107_1670", "source": "Switzerland", "target": "MyanmarBurma", "attributes": { "weight": 59963.513807179705, "sourceWeight": "59963.513807179705", "direction": "Imp", "source_type": "primary", "targetWeight": "59963.513807179705" } }, { "key": "geid_107_1671", "source": "Italy", "target": "MyanmarBurma", "attributes": { "weight": 97819.47759171472, "sourceWeight": "97819.47759171472", "direction": "Imp", "source_type": "primary", "targetWeight": "97819.47759171472" } }, { "key": "geid_107_1672", "source": "Austria", "target": "MyanmarBurma", "attributes": { "weight": 12251.27750113728, "sourceWeight": "12251.27750113728", "direction": "Imp", "source_type": "primary", "targetWeight": "12251.27750113728" } }, { "key": "geid_107_1673", "source": "Hungary", "target": "MyanmarBurma", "attributes": { "weight": 55.85513807155086, "sourceWeight": "55.85513807155086", "direction": "Imp", "source_type": "primary", "targetWeight": "55.85513807155086" } }, { "key": "geid_107_1674", "source": "Czechoslovakia", "target": "MyanmarBurma", "attributes": { "weight": 5959.584880038914, "sourceWeight": "5959.584880038914", "direction": "Imp", "source_type": "primary", "targetWeight": "5959.584880038914" } }, { "key": "geid_107_1675", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "MyanmarBurma", "attributes": { "weight": 2.879130828430457, "sourceWeight": "2.879130828430457", "direction": "Imp", "source_type": "primary", "targetWeight": "2.879130828430457" } }, { "key": "geid_107_1676", "source": "Romania", "target": "MyanmarBurma", "attributes": { "weight": 0.43186962426456854, "sourceWeight": "0.43186962426456854", "direction": "Imp", "source_type": "primary", "targetWeight": "0.43186962426456854" } }, { "key": "geid_107_1677", "source": "Greece", "target": "MyanmarBurma", "attributes": { "weight": 6.478044363968528, "sourceWeight": "6.478044363968528", "direction": "Imp", "source_type": "primary", "targetWeight": "6.478044363968528" } }, { "key": "geid_107_1678", "source": "AsianTurkey", "target": "MyanmarBurma", "attributes": { "weight": 15777.996831152457, "sourceWeight": "15777.996831152457", "direction": "Imp", "source_type": "primary", "targetWeight": "15777.996831152457" } }, { "key": "geid_107_1679", "source": "OmanSultanateofMuscatandOman_UnitedArabEmiratesTrucialOman", "target": "MyanmarBurma", "attributes": { "weight": 772.2548664557593, "sourceWeight": "772.2548664557593", "direction": "Imp", "source_type": "primary", "targetWeight": "772.2548664557593" } }, { "key": "geid_107_1680", "source": "IranPersia", "target": "MyanmarBurma", "attributes": { "weight": 141933.52014492618, "sourceWeight": "141933.52014492618", "direction": "Imp", "source_type": "primary", "targetWeight": "141933.52014492618" } }, { "key": "geid_107_1681", "source": "Sumatra", "target": "MyanmarBurma", "attributes": { "weight": 976.601177003611, "sourceWeight": "976.601177003611", "direction": "Imp", "source_type": "primary", "targetWeight": "976.601177003611" } }, { "key": "geid_107_1682", "source": "Java", "target": "MyanmarBurma", "attributes": { "weight": 530111.2544140018, "sourceWeight": "530111.2544140018", "direction": "Imp", "source_type": "primary", "targetWeight": "530111.2544140018" } }, { "key": "geid_107_1683", "source": "DutchBorneo", "target": "MyanmarBurma", "attributes": { "weight": 46785.66002718279, "sourceWeight": "46785.66002718279", "direction": "Imp", "source_type": "primary", "targetWeight": "46785.66002718279" } }, { "key": "geid_107_1684", "source": "Java_Sumatra_SulawesiCelebes", "target": "MyanmarBurma", "attributes": { "weight": 101.27342689004132, "sourceWeight": "101.27342689004132", "direction": "Imp", "source_type": "primary", "targetWeight": "101.27342689004132" } }, { "key": "geid_107_1685", "source": "ThailandSiam", "target": "MyanmarBurma", "attributes": { "weight": 189.0149388864595, "sourceWeight": "189.0149388864595", "direction": "Imp", "source_type": "primary", "targetWeight": "189.0149388864595" } }, { "key": "geid_107_1686", "source": "FrenchIndochina", "target": "MyanmarBurma", "attributes": { "weight": 224.42824807615412, "sourceWeight": "224.42824807615412", "direction": "Imp", "source_type": "primary", "targetWeight": "224.42824807615412" } }, { "key": "geid_107_1687", "source": "Guam_Philippines", "target": "MyanmarBurma", "attributes": { "weight": 682.4259846087291, "sourceWeight": "682.4259846087291", "direction": "Imp", "source_type": "primary", "targetWeight": "682.4259846087291" } }, { "key": "geid_107_1688", "source": "RepublicofChinaTaiwanFormosa", "target": "MyanmarBurma", "attributes": { "weight": 134.74332277054538, "sourceWeight": "134.74332277054538", "direction": "Imp", "source_type": "primary", "targetWeight": "134.74332277054538" } }, { "key": "geid_107_1689", "source": "PeoplesRepublicofChinaChina", "target": "MyanmarBurma", "attributes": { "weight": 87690.91127210851, "sourceWeight": "87690.91127210851", "direction": "Imp", "source_type": "primary", "targetWeight": "87690.91127210851" } }, { "key": "geid_107_1690", "source": "Japan", "target": "MyanmarBurma", "attributes": { "weight": 1223591.589860219, "sourceWeight": "1223591.589860219", "direction": "Imp", "source_type": "primary", "targetWeight": "1223591.589860219" } }, { "key": "geid_107_1691", "source": "MozambiquePortugueseEastAfrica", "target": "MyanmarBurma", "attributes": { "weight": 25354.273879595, "sourceWeight": "25354.273879595", "direction": "Imp", "source_type": "primary", "targetWeight": "25354.273879595" } }, { "key": "geid_107_1692", "source": "ItalianEastAfrica", "target": "MyanmarBurma", "attributes": { "weight": 29232.82299684438, "sourceWeight": "29232.82299684438", "direction": "Imp", "source_type": "primary", "targetWeight": "29232.82299684438" } }, { "key": "geid_107_1693", "source": "UnitedStatesofAmericaAtlanticCoast", "target": "MyanmarBurma", "attributes": { "weight": 908371.2467183832, "sourceWeight": "908371.2467183832", "direction": "Imp", "source_type": "primary", "targetWeight": "908371.2467183832" } }, { "key": "geid_107_1694", "source": "UnitedStatesofAmericaPacificCoast", "target": "MyanmarBurma", "attributes": { "weight": 28518.150746957228, "sourceWeight": "28518.150746957228", "direction": "Imp", "source_type": "primary", "targetWeight": "28518.150746957228" } }, { "key": "geid_107_1695", "source": "Cuba", "target": "MyanmarBurma", "attributes": { "weight": 2.5912177455874112, "sourceWeight": "2.5912177455874112", "direction": "Imp", "source_type": "primary", "targetWeight": "2.5912177455874112" } }, { "key": "geid_107_1696", "source": "Mexico", "target": "MyanmarBurma", "attributes": { "weight": 1.2956088727937056, "sourceWeight": "1.2956088727937056", "direction": "Imp", "source_type": "primary", "targetWeight": "1.2956088727937056" } }, { "key": "geid_107_1697", "source": "ColombiaNewGranadaGranColombia", "target": "MyanmarBurma", "attributes": { "weight": 15.115436849259899, "sourceWeight": "15.115436849259899", "direction": "Imp", "source_type": "primary", "targetWeight": "15.115436849259899" } }, { "key": "geid_107_1698", "source": "Brazil", "target": "MyanmarBurma", "attributes": { "weight": 1.00769578995066, "sourceWeight": "1.00769578995066", "direction": "Imp", "source_type": "primary", "targetWeight": "1.00769578995066" } }, { "key": "geid_107_1699", "source": "Uruguay", "target": "MyanmarBurma", "attributes": { "weight": 72.26618379360447, "sourceWeight": "72.26618379360447", "direction": "Imp", "source_type": "primary", "targetWeight": "72.26618379360447" } }, { "key": "geid_107_1700", "source": "ArgentinaLaPlata", "target": "MyanmarBurma", "attributes": { "weight": 35.48528746040538, "sourceWeight": "35.48528746040538", "direction": "Imp", "source_type": "primary", "targetWeight": "35.48528746040538" } }, { "key": "geid_107_1701", "source": "Ecuador", "target": "MyanmarBurma", "attributes": { "weight": 1.4395654142152285, "sourceWeight": "1.4395654142152285", "direction": "Imp", "source_type": "primary", "targetWeight": "1.4395654142152285" } }, { "key": "geid_107_1702", "source": "Chile", "target": "GermanyZollverein", "attributes": { "weight": 2780024.632389717, "sourceWeight": "2780024.632389717", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1703", "source": "Chile", "target": "ArgentinaLaPlata", "attributes": { "weight": 706638.7166149846, "sourceWeight": "706638.7166149846", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1704", "source": "Chile", "target": "Australia", "attributes": { "weight": 94530.75922776833, "sourceWeight": "94530.75922776833", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1705", "source": "Chile", "target": "Belgium", "attributes": { "weight": 507359.73291987594, "sourceWeight": "507359.73291987594", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1706", "source": "Chile", "target": "Bolivia", "attributes": { "weight": 333655.47164149245, "sourceWeight": "333655.47164149245", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1707", "source": "Chile", "target": "Brazil", "attributes": { "weight": 17298.014404321297, "sourceWeight": "17298.014404321297", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1708", "source": "Chile", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 44.56336901070321, "sourceWeight": "44.56336901070321", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1709", "source": "Chile", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 3422.8268480544166, "sourceWeight": "3422.8268480544166", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1710", "source": "Chile", "target": "Cuba", "attributes": { "weight": 140207.9123737121, "sourceWeight": "140207.9123737121", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1711", "source": "Chile", "target": "Denmark", "attributes": { "weight": 53734.270281084326, "sourceWeight": "53734.270281084326", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1712", "source": "Chile", "target": "Ecuador", "attributes": { "weight": 26709.66289886966, "sourceWeight": "26709.66289886966", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1713", "source": "Chile", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 844039.8869660898, "sourceWeight": "844039.8869660898", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1714", "source": "Chile", "target": "UnitedStatesofAmerica", "attributes": { "weight": 18808501.275382616, "sourceWeight": "18808501.275382616", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1715", "source": "Chile", "target": "Spain", "attributes": { "weight": 354285.16054816445, "sourceWeight": "354285.16054816445", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1716", "source": "Chile", "target": "France", "attributes": { "weight": 2141618.585575673, "sourceWeight": "2141618.585575673", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1717", "source": "Chile", "target": "UnitedKingdom", "attributes": { "weight": 14183787.611283384, "sourceWeight": "14183787.611283384", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1718", "source": "Chile", "target": "Greece", "attributes": { "weight": 1299.3147944383315, "sourceWeight": "1299.3147944383315", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1719", "source": "Chile", "target": "HawaiiSandwichIs", "attributes": { "weight": 555802.0656196859, "sourceWeight": "555802.0656196859", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1720", "source": "Chile", "target": "Netherlands", "attributes": { "weight": 392127.93838151445, "sourceWeight": "392127.93838151445", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1721", "source": "Chile", "target": "Italy", "attributes": { "weight": 1102214.0892267681, "sourceWeight": "1102214.0892267681", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1722", "source": "Chile", "target": "Japan", "attributes": { "weight": 513420.6511953586, "sourceWeight": "513420.6511953586", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1723", "source": "Chile", "target": "FalklandIs", "attributes": { "weight": 3517.7303190957286, "sourceWeight": "3517.7303190957286", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1724", "source": "Chile", "target": "Norway", "attributes": { "weight": 610.4581374412323, "sourceWeight": "610.4581374412323", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1725", "source": "Chile", "target": "NewZealand", "attributes": { "weight": 1.5004501350405122, "sourceWeight": "1.5004501350405122", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1726", "source": "Chile", "target": "Panama", "attributes": { "weight": 31317.995398619587, "sourceWeight": "31317.995398619587", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1727", "source": "Chile", "target": "Peru", "attributes": { "weight": 805913.3740122037, "sourceWeight": "805913.3740122037", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1728", "source": "Chile", "target": "Portugal", "attributes": { "weight": 395956.26187856356, "sourceWeight": "395956.26187856356", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1729", "source": "Chile", "target": "PuertoRico", "attributes": { "weight": 16561.06832049615, "sourceWeight": "16561.06832049615", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1730", "source": "Chile", "target": "SouthAfrica", "attributes": { "weight": 263985.82074622385, "sourceWeight": "263985.82074622385", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1731", "source": "Chile", "target": "Sweden", "attributes": { "weight": 1746.3739121736521, "sourceWeight": "1746.3739121736521", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1732", "source": "Chile", "target": "Uruguay", "attributes": { "weight": 42853.6811043313, "sourceWeight": "42853.6811043313", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1733", "source": "Chile", "target": "Venezuela", "attributes": { "weight": 15.004501350405121, "sourceWeight": "15.004501350405121", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1734", "source": "GermanyZollverein", "target": "Chile", "attributes": { "weight": 3842652.8708612584, "sourceWeight": "3842652.8708612584", "direction": "Imp", "source_type": "primary", "targetWeight": "3842652.8708612584" } }, { "key": "geid_107_1735", "source": "ArgentinaLaPlata", "target": "Chile", "attributes": { "weight": 546362.5087526258, "sourceWeight": "546362.5087526258", "direction": "Imp", "source_type": "primary", "targetWeight": "546362.5087526258" } }, { "key": "geid_107_1736", "source": "Australia", "target": "Chile", "attributes": { "weight": 71550.54016204861, "sourceWeight": "71550.54016204861", "direction": "Imp", "source_type": "primary", "targetWeight": "71550.54016204861" } }, { "key": "geid_107_1737", "source": "Austria", "target": "Chile", "attributes": { "weight": 15130.389116735021, "sourceWeight": "15130.389116735021", "direction": "Imp", "source_type": "primary", "targetWeight": "15130.389116735021" } }, { "key": "geid_107_1738", "source": "Belgium", "target": "Chile", "attributes": { "weight": 2713049.9399819947, "sourceWeight": "2713049.9399819947", "direction": "Imp", "source_type": "primary", "targetWeight": "2713049.9399819947" } }, { "key": "geid_107_1739", "source": "Bolivia", "target": "Chile", "attributes": { "weight": 22931.75452635791, "sourceWeight": "22931.75452635791", "direction": "Imp", "source_type": "primary", "targetWeight": "22931.75452635791" } }, { "key": "geid_107_1740", "source": "Brazil", "target": "Chile", "attributes": { "weight": 287110.45813744125, "sourceWeight": "287110.45813744125", "direction": "Imp", "source_type": "primary", "targetWeight": "287110.45813744125" } }, { "key": "geid_107_1741", "source": "CanadaProvinceofCanada", "target": "Chile", "attributes": { "weight": 7929.353806141843, "sourceWeight": "7929.353806141843", "direction": "Imp", "source_type": "primary", "targetWeight": "7929.353806141843" } }, { "key": "geid_107_1742", "source": "SriLankaCeylon", "target": "Chile", "attributes": { "weight": 2991.522456737021, "sourceWeight": "2991.522456737021", "direction": "Imp", "source_type": "primary", "targetWeight": "2991.522456737021" } }, { "key": "geid_107_1743", "source": "Czechoslovakia", "target": "Chile", "attributes": { "weight": 11785.88576572972, "sourceWeight": "11785.88576572972", "direction": "Imp", "source_type": "primary", "targetWeight": "11785.88576572972" } }, { "key": "geid_107_1744", "source": "PeoplesRepublicofChinaChina", "target": "Chile", "attributes": { "weight": 42678.20346103831, "sourceWeight": "42678.20346103831", "direction": "Imp", "source_type": "primary", "targetWeight": "42678.20346103831" } }, { "key": "geid_107_1745", "source": "ColombiaNewGranadaGranColombia", "target": "Chile", "attributes": { "weight": 1402.920876262879, "sourceWeight": "1402.920876262879", "direction": "Imp", "source_type": "primary", "targetWeight": "1402.920876262879" } }, { "key": "geid_107_1746", "source": "CostaRica", "target": "Chile", "attributes": { "weight": 4335.92577773332, "sourceWeight": "4335.92577773332", "direction": "Imp", "source_type": "primary", "targetWeight": "4335.92577773332" } }, { "key": "geid_107_1747", "source": "Cuba", "target": "Chile", "attributes": { "weight": 61701.28538561569, "sourceWeight": "61701.28538561569", "direction": "Imp", "source_type": "primary", "targetWeight": "61701.28538561569" } }, { "key": "geid_107_1748", "source": "Denmark", "target": "Chile", "attributes": { "weight": 55162.92387716315, "sourceWeight": "55162.92387716315", "direction": "Imp", "source_type": "primary", "targetWeight": "55162.92387716315" } }, { "key": "geid_107_1749", "source": "Ecuador", "target": "Chile", "attributes": { "weight": 189254.10123036912, "sourceWeight": "189254.10123036912", "direction": "Imp", "source_type": "primary", "targetWeight": "189254.10123036912" } }, { "key": "geid_107_1750", "source": "EgyptArabRepublicEgypt", "target": "Chile", "attributes": { "weight": 450.13504051215364, "sourceWeight": "450.13504051215364", "direction": "Imp", "source_type": "primary", "targetWeight": "450.13504051215364" } }, { "key": "geid_107_1751", "source": "UnitedStatesofAmerica", "target": "Chile", "attributes": { "weight": 6403698.134440332, "sourceWeight": "6403698.134440332", "direction": "Imp", "source_type": "primary", "targetWeight": "6403698.134440332" } }, { "key": "geid_107_1752", "source": "Spain", "target": "Chile", "attributes": { "weight": 412207.18715614686, "sourceWeight": "412207.18715614686", "direction": "Imp", "source_type": "primary", "targetWeight": "412207.18715614686" } }, { "key": "geid_107_1753", "source": "Finland", "target": "Chile", "attributes": { "weight": 3926.7530259077726, "sourceWeight": "3926.7530259077726", "direction": "Imp", "source_type": "primary", "targetWeight": "3926.7530259077726" } }, { "key": "geid_107_1754", "source": "France", "target": "Chile", "attributes": { "weight": 1431904.321296389, "sourceWeight": "1431904.321296389", "direction": "Imp", "source_type": "primary", "targetWeight": "1431904.321296389" } }, { "key": "geid_107_1755", "source": "UnitedKingdom", "target": "Chile", "attributes": { "weight": 5688265.579673902, "sourceWeight": "5688265.579673902", "direction": "Imp", "source_type": "primary", "targetWeight": "5688265.579673902" } }, { "key": "geid_107_1756", "source": "Greece", "target": "Chile", "attributes": { "weight": 108.70761228368511, "sourceWeight": "108.70761228368511", "direction": "Imp", "source_type": "primary", "targetWeight": "108.70761228368511" } }, { "key": "geid_107_1757", "source": "Guatemala", "target": "Chile", "attributes": { "weight": 640.9172751825548, "sourceWeight": "640.9172751825548", "direction": "Imp", "source_type": "primary", "targetWeight": "640.9172751825548" } }, { "key": "geid_107_1758", "source": "Netherlands", "target": "Chile", "attributes": { "weight": 232460.46313894168, "sourceWeight": "232460.46313894168", "direction": "Imp", "source_type": "primary", "targetWeight": "232460.46313894168" } }, { "key": "geid_107_1759", "source": "Hungary", "target": "Chile", "attributes": { "weight": 41.26237871361408, "sourceWeight": "41.26237871361408", "direction": "Imp", "source_type": "primary", "targetWeight": "41.26237871361408" } }, { "key": "geid_107_1760", "source": "India", "target": "Chile", "attributes": { "weight": 1545367.3852155646, "sourceWeight": "1545367.3852155646", "direction": "Imp", "source_type": "primary", "targetWeight": "1545367.3852155646" } }, { "key": "geid_107_1761", "source": "FrenchIndochina", "target": "Chile", "attributes": { "weight": 47.93938181454436, "sourceWeight": "47.93938181454436", "direction": "Imp", "source_type": "primary", "targetWeight": "47.93938181454436" } }, { "key": "geid_107_1762", "source": "Italy", "target": "Chile", "attributes": { "weight": 1113129.8639591879, "sourceWeight": "1113129.8639591879", "direction": "Imp", "source_type": "primary", "targetWeight": "1113129.8639591879" } }, { "key": "geid_107_1763", "source": "Jamaica", "target": "Chile", "attributes": { "weight": 107.8073422026608, "sourceWeight": "107.8073422026608", "direction": "Imp", "source_type": "primary", "targetWeight": "107.8073422026608" } }, { "key": "geid_107_1764", "source": "Japan", "target": "Chile", "attributes": { "weight": 179434.7054116235, "sourceWeight": "179434.7054116235", "direction": "Imp", "source_type": "primary", "targetWeight": "179434.7054116235" } }, { "key": "geid_107_1765", "source": "Java", "target": "Chile", "attributes": { "weight": 770.4061218365509, "sourceWeight": "770.4061218365509", "direction": "Imp", "source_type": "primary", "targetWeight": "770.4061218365509" } }, { "key": "geid_107_1766", "source": "FalklandIs", "target": "Chile", "attributes": { "weight": 141.11733520056018, "sourceWeight": "141.11733520056018", "direction": "Imp", "source_type": "primary", "targetWeight": "141.11733520056018" } }, { "key": "geid_107_1767", "source": "Mexico", "target": "Chile", "attributes": { "weight": 164237.99639891967, "sourceWeight": "164237.99639891967", "direction": "Imp", "source_type": "primary", "targetWeight": "164237.99639891967" } }, { "key": "geid_107_1768", "source": "Nicaragua", "target": "Chile", "attributes": { "weight": 2.100630189056717, "sourceWeight": "2.100630189056717", "direction": "Imp", "source_type": "primary", "targetWeight": "2.100630189056717" } }, { "key": "geid_107_1769", "source": "Norway", "target": "Chile", "attributes": { "weight": 335676.277883365, "sourceWeight": "335676.277883365", "direction": "Imp", "source_type": "primary", "targetWeight": "335676.277883365" } }, { "key": "geid_107_1770", "source": "NewZealand", "target": "Chile", "attributes": { "weight": 992.1726517955386, "sourceWeight": "992.1726517955386", "direction": "Imp", "source_type": "primary", "targetWeight": "992.1726517955386" } }, { "key": "geid_107_1771", "source": "Palestine", "target": "Chile", "attributes": { "weight": 86.7260178053416, "sourceWeight": "86.7260178053416", "direction": "Imp", "source_type": "primary", "targetWeight": "86.7260178053416" } }, { "key": "geid_107_1772", "source": "Panama", "target": "Chile", "attributes": { "weight": 861.8585575672702, "sourceWeight": "861.8585575672702", "direction": "Imp", "source_type": "primary", "targetWeight": "861.8585575672702" } }, { "key": "geid_107_1773", "source": "Paraguay", "target": "Chile", "attributes": { "weight": 412.62378713614083, "sourceWeight": "412.62378713614083", "direction": "Imp", "source_type": "primary", "targetWeight": "412.62378713614083" } }, { "key": "geid_107_1774", "source": "Peru", "target": "Chile", "attributes": { "weight": 1544049.989996999, "sourceWeight": "1544049.989996999", "direction": "Imp", "source_type": "primary", "targetWeight": "1544049.989996999" } }, { "key": "geid_107_1775", "source": "Poland", "target": "Chile", "attributes": { "weight": 456.88706611983594, "sourceWeight": "456.88706611983594", "direction": "Imp", "source_type": "primary", "targetWeight": "456.88706611983594" } }, { "key": "geid_107_1776", "source": "Portugal", "target": "Chile", "attributes": { "weight": 4354.831449434831, "sourceWeight": "4354.831449434831", "direction": "Imp", "source_type": "primary", "targetWeight": "4354.831449434831" } }, { "key": "geid_107_1777", "source": "PuertoRico", "target": "Chile", "attributes": { "weight": 331.5994798439532, "sourceWeight": "331.5994798439532", "direction": "Imp", "source_type": "primary", "targetWeight": "331.5994798439532" } }, { "key": "geid_107_1778", "source": "RussiaUSSR", "target": "Chile", "attributes": { "weight": 15.004501350405121, "sourceWeight": "15.004501350405121", "direction": "Imp", "source_type": "primary", "targetWeight": "15.004501350405121" } }, { "key": "geid_107_1779", "source": "ElSalvador", "target": "Chile", "attributes": { "weight": 33748.72461738522, "sourceWeight": "33748.72461738522", "direction": "Imp", "source_type": "primary", "targetWeight": "33748.72461738522" } }, { "key": "geid_107_1780", "source": "Sweden", "target": "Chile", "attributes": { "weight": 84306.84205261579, "sourceWeight": "84306.84205261579", "direction": "Imp", "source_type": "primary", "targetWeight": "84306.84205261579" } }, { "key": "geid_107_1781", "source": "Switzerland", "target": "Chile", "attributes": { "weight": 153912.49874962488, "sourceWeight": "153912.49874962488", "direction": "Imp", "source_type": "primary", "targetWeight": "153912.49874962488" } }, { "key": "geid_107_1782", "source": "Trinidad", "target": "Chile", "attributes": { "weight": 310.14304291287385, "sourceWeight": "310.14304291287385", "direction": "Imp", "source_type": "primary", "targetWeight": "310.14304291287385" } }, { "key": "geid_107_1783", "source": "TurkeyOttomanEmpire", "target": "Chile", "attributes": { "weight": 135.0405121536461, "sourceWeight": "135.0405121536461", "direction": "Imp", "source_type": "primary", "targetWeight": "135.0405121536461" } }, { "key": "geid_107_1784", "source": "Uruguay", "target": "Chile", "attributes": { "weight": 32782.35970791237, "sourceWeight": "32782.35970791237", "direction": "Imp", "source_type": "primary", "targetWeight": "32782.35970791237" } }, { "key": "geid_107_1785", "source": "Venezuela", "target": "Chile", "attributes": { "weight": 7.652295688706612, "sourceWeight": "7.652295688706612", "direction": "Imp", "source_type": "primary", "targetWeight": "7.652295688706612" } }, { "key": "geid_107_1786", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Chile", "attributes": { "weight": 4212.363709112734, "sourceWeight": "4212.363709112734", "direction": "Imp", "source_type": "primary", "targetWeight": "4212.363709112734" } }, { "key": "geid_107_1787", "source": "GermanyZollverein", "target": "Paraguay", "attributes": { "weight": 132423.5219247461, "sourceWeight": "132423.5219247461", "direction": "Imp", "source_type": "primary", "targetWeight": "132423.5219247461" } }, { "key": "geid_107_1788", "source": "ArgentinaLaPlata", "target": "Paraguay", "attributes": { "weight": 613629.4934459991, "sourceWeight": "613629.4934459991", "direction": "Imp", "source_type": "primary", "targetWeight": "613629.4934459991" } }, { "key": "geid_107_1789", "source": "Austria", "target": "Paraguay", "attributes": { "weight": 831.9117530074158, "sourceWeight": "831.9117530074158", "direction": "Imp", "source_type": "primary", "targetWeight": "831.9117530074158" } }, { "key": "geid_107_1790", "source": "Belgium", "target": "Paraguay", "attributes": { "weight": 35212.35316474716, "sourceWeight": "35212.35316474716", "direction": "Imp", "source_type": "primary", "targetWeight": "35212.35316474716" } }, { "key": "geid_107_1791", "source": "Brazil", "target": "Paraguay", "attributes": { "weight": 40372.46877679274, "sourceWeight": "40372.46877679274", "direction": "Imp", "source_type": "primary", "targetWeight": "40372.46877679274" } }, { "key": "geid_107_1792", "source": "CanadaProvinceofCanada", "target": "Paraguay", "attributes": { "weight": 618.3653446706205, "sourceWeight": "618.3653446706205", "direction": "Imp", "source_type": "primary", "targetWeight": "618.3653446706205" } }, { "key": "geid_107_1793", "source": "SriLankaCeylon", "target": "Paraguay", "attributes": { "weight": 103.06089077843676, "sourceWeight": "103.06089077843676", "direction": "Imp", "source_type": "primary", "targetWeight": "103.06089077843676" } }, { "key": "geid_107_1794", "source": "Czechoslovakia", "target": "Paraguay", "attributes": { "weight": 3218.398932267958, "sourceWeight": "3218.398932267958", "direction": "Imp", "source_type": "primary", "targetWeight": "3218.398932267958" } }, { "key": "geid_107_1795", "source": "Cuba", "target": "Paraguay", "attributes": { "weight": 1538.135181240443, "sourceWeight": "1538.135181240443", "direction": "Imp", "source_type": "primary", "targetWeight": "1538.135181240443" } }, { "key": "geid_107_1796", "source": "Chile", "target": "Paraguay", "attributes": { "weight": 638.1643494170784, "sourceWeight": "638.1643494170784", "direction": "Imp", "source_type": "primary", "targetWeight": "638.1643494170784" } }, { "key": "geid_107_1797", "source": "PeoplesRepublicofChinaChina", "target": "Paraguay", "attributes": { "weight": 179.60525734286747, "sourceWeight": "179.60525734286747", "direction": "Imp", "source_type": "primary", "targetWeight": "179.60525734286747" } }, { "key": "geid_107_1798", "source": "Denmark", "target": "Paraguay", "attributes": { "weight": 647.7102981341205, "sourceWeight": "647.7102981341205", "direction": "Imp", "source_type": "primary", "targetWeight": "647.7102981341205" } }, { "key": "geid_107_1799", "source": "Spain", "target": "Paraguay", "attributes": { "weight": 37523.88696889611, "sourceWeight": "37523.88696889611", "direction": "Imp", "source_type": "primary", "targetWeight": "37523.88696889611" } }, { "key": "geid_107_1800", "source": "UnitedStatesofAmerica", "target": "Paraguay", "attributes": { "weight": 230899.52888975313, "sourceWeight": "230899.52888975313", "direction": "Imp", "source_type": "primary", "targetWeight": "230899.52888975313" } }, { "key": "geid_107_1801", "source": "France", "target": "Paraguay", "attributes": { "weight": 58648.187595569965, "sourceWeight": "58648.187595569965", "direction": "Imp", "source_type": "primary", "targetWeight": "58648.187595569965" } }, { "key": "geid_107_1802", "source": "Netherlands", "target": "Paraguay", "attributes": { "weight": 21805.24496848953, "sourceWeight": "21805.24496848953", "direction": "Imp", "source_type": "primary", "targetWeight": "21805.24496848953" } }, { "key": "geid_107_1803", "source": "Hungary", "target": "Paraguay", "attributes": { "weight": 56.568584989879525, "sourceWeight": "56.568584989879525", "direction": "Imp", "source_type": "primary", "targetWeight": "56.568584989879525" } }, { "key": "geid_107_1804", "source": "India", "target": "Paraguay", "attributes": { "weight": 11763.61402547354, "sourceWeight": "11763.61402547354", "direction": "Imp", "source_type": "primary", "targetWeight": "11763.61402547354" } }, { "key": "geid_107_1805", "source": "UnitedKingdom", "target": "Paraguay", "attributes": { "weight": 318607.35214828036, "sourceWeight": "318607.35214828036", "direction": "Imp", "source_type": "primary", "targetWeight": "318607.35214828036" } }, { "key": "geid_107_1806", "source": "Italy", "target": "Paraguay", "attributes": { "weight": 102468.86518115205, "sourceWeight": "102468.86518115205", "direction": "Imp", "source_type": "primary", "targetWeight": "102468.86518115205" } }, { "key": "geid_107_1807", "source": "Japan", "target": "Paraguay", "attributes": { "weight": 24789.59138036186, "sourceWeight": "24789.59138036186", "direction": "Imp", "source_type": "primary", "targetWeight": "24789.59138036186" } }, { "key": "geid_107_1808", "source": "Java", "target": "Paraguay", "attributes": { "weight": 142.1285697870723, "sourceWeight": "142.1285697870723", "direction": "Imp", "source_type": "primary", "targetWeight": "142.1285697870723" } }, { "key": "geid_107_1809", "source": "Mexico", "target": "Paraguay", "attributes": { "weight": 2384.7194109796087, "sourceWeight": "2384.7194109796087", "direction": "Imp", "source_type": "primary", "targetWeight": "2384.7194109796087" } }, { "key": "geid_107_1810", "source": "Norway", "target": "Paraguay", "attributes": { "weight": 1896.6385886138044, "sourceWeight": "1896.6385886138044", "direction": "Imp", "source_type": "primary", "targetWeight": "1896.6385886138044" } }, { "key": "geid_107_1811", "source": "Poland", "target": "Paraguay", "attributes": { "weight": 245.71979104978917, "sourceWeight": "245.71979104978917", "direction": "Imp", "source_type": "primary", "targetWeight": "245.71979104978917" } }, { "key": "geid_107_1812", "source": "Portugal", "target": "Paraguay", "attributes": { "weight": 616.0672459054067, "sourceWeight": "616.0672459054067", "direction": "Imp", "source_type": "primary", "targetWeight": "616.0672459054067" } }, { "key": "geid_107_1813", "source": "RussiaUSSR", "target": "Paraguay", "attributes": { "weight": 9.01561823276205, "sourceWeight": "9.01561823276205", "direction": "Imp", "source_type": "primary", "targetWeight": "9.01561823276205" } }, { "key": "geid_107_1814", "source": "Sweden", "target": "Paraguay", "attributes": { "weight": 2130.337555353244, "sourceWeight": "2130.337555353244", "direction": "Imp", "source_type": "primary", "targetWeight": "2130.337555353244" } }, { "key": "geid_107_1815", "source": "Switzerland", "target": "Paraguay", "attributes": { "weight": 4913.865490511504, "sourceWeight": "4913.865490511504", "direction": "Imp", "source_type": "primary", "targetWeight": "4913.865490511504" } }, { "key": "geid_107_1816", "source": "Sumatra", "target": "Paraguay", "attributes": { "weight": 29.168176635406628, "sourceWeight": "29.168176635406628", "direction": "Imp", "source_type": "primary", "targetWeight": "29.168176635406628" } }, { "key": "geid_107_1817", "source": "Uruguay", "target": "Paraguay", "attributes": { "weight": 33112.24444699789, "sourceWeight": "33112.24444699789", "direction": "Imp", "source_type": "primary", "targetWeight": "33112.24444699789" } }, { "key": "geid_107_1818", "source": "Venezuela", "target": "Paraguay", "attributes": { "weight": 3.7123133899608436, "sourceWeight": "3.7123133899608436", "direction": "Imp", "source_type": "primary", "targetWeight": "3.7123133899608436" } }, { "key": "geid_107_1819", "source": "Netherlands", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 12437519.691313125, "sourceWeight": "12437519.691313125", "direction": "Imp", "source_type": "primary", "targetWeight": "12437519.691313125" } }, { "key": "geid_107_1820", "source": "Ireland_UnitedKingdom", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 8436537.977399314, "sourceWeight": "8436537.977399314", "direction": "Imp", "source_type": "primary", "targetWeight": "8436537.977399314" } }, { "key": "geid_107_1821", "source": "GermanyZollverein", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 4048971.3130538864, "sourceWeight": "4048971.3130538864", "direction": "Imp", "source_type": "primary", "targetWeight": "4048971.3130538864" } }, { "key": "geid_107_1822", "source": "Austria", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 29974.32390233896, "sourceWeight": "29974.32390233896", "direction": "Imp", "source_type": "primary", "targetWeight": "29974.32390233896" } }, { "key": "geid_107_1823", "source": "France", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 633489.3370328827, "sourceWeight": "633489.3370328827", "direction": "Imp", "source_type": "primary", "targetWeight": "633489.3370328827" } }, { "key": "geid_107_1824", "source": "Belgium_Luxemburg", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 792582.2797677927, "sourceWeight": "792582.2797677927", "direction": "Imp", "source_type": "primary", "targetWeight": "792582.2797677927" } }, { "key": "geid_107_1825", "source": "Italy", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 1049782.6652373667, "sourceWeight": "1049782.6652373667", "direction": "Imp", "source_type": "primary", "targetWeight": "1049782.6652373667" } }, { "key": "geid_107_1826", "source": "Hungary", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 4.052512449088305, "sourceWeight": "4.052512449088305", "direction": "Imp", "source_type": "primary", "targetWeight": "4.052512449088305" } }, { "key": "geid_107_1827", "source": "Czechoslovakia", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 1381.4846084256656, "sourceWeight": "1381.4846084256656", "direction": "Imp", "source_type": "primary", "targetWeight": "1381.4846084256656" } }, { "key": "geid_107_1828", "source": "Switzerland", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 443523.00362333516, "sourceWeight": "443523.00362333516", "direction": "Imp", "source_type": "primary", "targetWeight": "443523.00362333516" } }, { "key": "geid_107_1829", "source": "Spain", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 6966.775464038933, "sourceWeight": "6966.775464038933", "direction": "Imp", "source_type": "primary", "targetWeight": "6966.775464038933" } }, { "key": "geid_107_1830", "source": "Portugal", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 3659.3343141840505, "sourceWeight": "3659.3343141840505", "direction": "Imp", "source_type": "primary", "targetWeight": "3659.3343141840505" } }, { "key": "geid_107_1831", "source": "Denmark", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 59418.866229302315, "sourceWeight": "59418.866229302315", "direction": "Imp", "source_type": "primary", "targetWeight": "59418.866229302315" } }, { "key": "geid_107_1832", "source": "Norway", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 69287.66274360192, "sourceWeight": "69287.66274360192", "direction": "Imp", "source_type": "primary", "targetWeight": "69287.66274360192" } }, { "key": "geid_107_1833", "source": "Sweden", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 261989.44205628414, "sourceWeight": "261989.44205628414", "direction": "Imp", "source_type": "primary", "targetWeight": "261989.44205628414" } }, { "key": "geid_107_1834", "source": "Finland", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 73.45178813972554, "sourceWeight": "73.45178813972554", "direction": "Imp", "source_type": "primary", "targetWeight": "73.45178813972554" } }, { "key": "geid_107_1835", "source": "EuropeanRussia", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 0.4221367134466985, "sourceWeight": "0.4221367134466985", "direction": "Imp", "source_type": "primary", "targetWeight": "0.4221367134466985" } }, { "key": "geid_107_1836", "source": "Greece", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 168.60140335061138, "sourceWeight": "168.60140335061138", "direction": "Imp", "source_type": "primary", "targetWeight": "168.60140335061138" } }, { "key": "geid_107_1837", "source": "Romania", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 0.0844273426893397, "sourceWeight": "0.0844273426893397", "direction": "Imp", "source_type": "primary", "targetWeight": "0.0844273426893397" } }, { "key": "geid_107_1838", "source": "CanadaProvinceofCanada", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 74132.69465851506, "sourceWeight": "74132.69465851506", "direction": "Imp", "source_type": "primary", "targetWeight": "74132.69465851506" } }, { "key": "geid_107_1839", "source": "UnitedStatesofAmerica", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 3867922.786570586, "sourceWeight": "3867922.786570586", "direction": "Imp", "source_type": "primary", "targetWeight": "3867922.786570586" } }, { "key": "geid_107_1840", "source": "WestIndies", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 144.53961068414955, "sourceWeight": "144.53961068414955", "direction": "Imp", "source_type": "primary", "targetWeight": "144.53961068414955" } }, { "key": "geid_107_1841", "source": "SouthernAmerica", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 372.40900860267743, "sourceWeight": "372.40900860267743", "direction": "Imp", "source_type": "primary", "targetWeight": "372.40900860267743" } }, { "key": "geid_107_1842", "source": "Aden_Arabia", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 4585.502263486107, "sourceWeight": "4585.502263486107", "direction": "Imp", "source_type": "primary", "targetWeight": "4585.502263486107" } }, { "key": "geid_107_1843", "source": "AsianTurkey", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 256.9124038036607, "sourceWeight": "256.9124038036607", "direction": "Imp", "source_type": "primary", "targetWeight": "256.9124038036607" } }, { "key": "geid_107_1844", "source": "IranPersia", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 5043.0984608623285, "sourceWeight": "5043.0984608623285", "direction": "Imp", "source_type": "primary", "targetWeight": "5043.0984608623285" } }, { "key": "geid_107_1845", "source": "India", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 3460186.9293937506, "sourceWeight": "3460186.9293937506", "direction": "Imp", "source_type": "primary", "targetWeight": "3460186.9293937506" } }, { "key": "geid_107_1846", "source": "ThailandSiam", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 915655.9852911495, "sourceWeight": "915655.9852911495", "direction": "Imp", "source_type": "primary", "targetWeight": "915655.9852911495" } }, { "key": "geid_107_1847", "source": "MalaysiaBritishMalaya", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 85688.01177037692, "sourceWeight": "85688.01177037692", "direction": "Imp", "source_type": "primary", "targetWeight": "85688.01177037692" } }, { "key": "geid_107_1848", "source": "Penang", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 1244952.7623409145, "sourceWeight": "1244952.7623409145", "direction": "Imp", "source_type": "primary", "targetWeight": "1244952.7623409145" } }, { "key": "geid_107_1849", "source": "Singapore", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 9291723.72276265, "sourceWeight": "9291723.72276265", "direction": "Imp", "source_type": "primary", "targetWeight": "9291723.72276265" } }, { "key": "geid_107_1850", "source": "FrenchIndochina", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 826596.8741545299, "sourceWeight": "826596.8741545299", "direction": "Imp", "source_type": "primary", "targetWeight": "826596.8741545299" } }, { "key": "geid_107_1851", "source": "HongKong", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 1427840.116347989, "sourceWeight": "1427840.116347989", "direction": "Imp", "source_type": "primary", "targetWeight": "1427840.116347989" } }, { "key": "geid_107_1852", "source": "PeoplesRepublicofChinaChina", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 1120750.0943911157, "sourceWeight": "1120750.0943911157", "direction": "Imp", "source_type": "primary", "targetWeight": "1120750.0943911157" } }, { "key": "geid_107_1853", "source": "Dalny", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 707437.6423749643, "sourceWeight": "707437.6423749643", "direction": "Imp", "source_type": "primary", "targetWeight": "707437.6423749643" } }, { "key": "geid_107_1854", "source": "KoreaChosen", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 768.2888184729912, "sourceWeight": "768.2888184729912", "direction": "Imp", "source_type": "primary", "targetWeight": "768.2888184729912" } }, { "key": "geid_107_1855", "source": "Japan", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 5662551.076754367, "sourceWeight": "5662551.076754367", "direction": "Imp", "source_type": "primary", "targetWeight": "5662551.076754367" } }, { "key": "geid_107_1856", "source": "Philippines", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 42477.506790574036, "sourceWeight": "42477.506790574036", "direction": "Imp", "source_type": "primary", "targetWeight": "42477.506790574036" } }, { "key": "geid_107_1857", "source": "BritishBorneo", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 60167.48347692869, "sourceWeight": "60167.48347692869", "direction": "Imp", "source_type": "primary", "targetWeight": "60167.48347692869" } }, { "key": "geid_107_1858", "source": "EastTimorPortugueseTimor", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 166077.1946588855, "sourceWeight": "166077.1946588855", "direction": "Imp", "source_type": "primary", "targetWeight": "166077.1946588855" } }, { "key": "geid_107_1859", "source": "Australia", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 1798222.0244526954, "sourceWeight": "1798222.0244526954", "direction": "Imp", "source_type": "primary", "targetWeight": "1798222.0244526954" } }, { "key": "geid_107_1860", "source": "NewZealand", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 125.54345857904813, "sourceWeight": "125.54345857904813", "direction": "Imp", "source_type": "primary", "targetWeight": "125.54345857904813" } }, { "key": "geid_107_1861", "source": "AlgeriaRegencyofAlgiers", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 3726.031914908629, "sourceWeight": "3726.031914908629", "direction": "Imp", "source_type": "primary", "targetWeight": "3726.031914908629" } }, { "key": "geid_107_1862", "source": "EgyptArabRepublicEgypt_SudanAngloEgyptianSudanMahdistState", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 30260.7014487412, "sourceWeight": "30260.7014487412", "direction": "Imp", "source_type": "primary", "targetWeight": "30260.7014487412" } }, { "key": "geid_107_1863", "source": "SouthAfrica", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 71737.40651907581, "sourceWeight": "71737.40651907581", "direction": "Imp", "source_type": "primary", "targetWeight": "71737.40651907581" } }, { "key": "geid_107_1864", "source": "Othercountries", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 60550.53033071023, "sourceWeight": "60550.53033071023", "direction": "Imp", "source_type": "primary", "targetWeight": "60550.53033071023" } }, { "key": "geid_107_1865", "source": "UnitedKingdom", "target": "SouthAfrica", "attributes": { "weight": 29225891, "sourceWeight": "29225891", "direction": "Imp", "source_type": "primary", "targetWeight": "29225891" } }, { "key": "geid_107_1866", "source": "CanadaProvinceofCanada", "target": "SouthAfrica", "attributes": { "weight": 2137250, "sourceWeight": "2137250", "direction": "Imp", "source_type": "primary", "targetWeight": "2137250" } }, { "key": "geid_107_1867", "source": "India", "target": "SouthAfrica", "attributes": { "weight": 2113397, "sourceWeight": "2113397", "direction": "Imp", "source_type": "primary", "targetWeight": "2113397" } }, { "key": "geid_107_1868", "source": "SriLankaCeylon", "target": "SouthAfrica", "attributes": { "weight": 575859, "sourceWeight": "575859", "direction": "Imp", "source_type": "primary", "targetWeight": "575859" } }, { "key": "geid_107_1869", "source": "Australia", "target": "SouthAfrica", "attributes": { "weight": 1929319, "sourceWeight": "1929319", "direction": "Imp", "source_type": "primary", "targetWeight": "1929319" } }, { "key": "geid_107_1870", "source": "NewZealand", "target": "SouthAfrica", "attributes": { "weight": 30731, "sourceWeight": "30731", "direction": "Imp", "source_type": "primary", "targetWeight": "30731" } }, { "key": "geid_107_1871", "source": "Ireland", "target": "SouthAfrica", "attributes": { "weight": 21606, "sourceWeight": "21606", "direction": "Imp", "source_type": "primary", "targetWeight": "21606" } }, { "key": "geid_107_1872", "source": "Gibraltar", "target": "SouthAfrica", "attributes": { "weight": 10, "sourceWeight": "10", "direction": "Imp", "source_type": "primary", "targetWeight": "10" } }, { "key": "geid_107_1873", "source": "Malta", "target": "SouthAfrica", "attributes": { "weight": 231, "sourceWeight": "231", "direction": "Imp", "source_type": "primary", "targetWeight": "231" } }, { "key": "geid_107_1874", "source": "Aden", "target": "SouthAfrica", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Imp", "source_type": "primary", "targetWeight": "14" } }, { "key": "geid_107_1875", "source": "BritishEastIndies", "target": "SouthAfrica", "attributes": { "weight": 307, "sourceWeight": "307", "direction": "Imp", "source_type": "primary", "targetWeight": "307" } }, { "key": "geid_107_1876", "source": "Cyprus", "target": "SouthAfrica", "attributes": { "weight": 11, "sourceWeight": "11", "direction": "Imp", "source_type": "primary", "targetWeight": "11" } }, { "key": "geid_107_1877", "source": "HongKong", "target": "SouthAfrica", "attributes": { "weight": 15508, "sourceWeight": "15508", "direction": "Imp", "source_type": "primary", "targetWeight": "15508" } }, { "key": "geid_107_1878", "source": "Palestine", "target": "SouthAfrica", "attributes": { "weight": 647, "sourceWeight": "647", "direction": "Imp", "source_type": "primary", "targetWeight": "647" } }, { "key": "geid_107_1879", "source": "StraitsSettlements", "target": "SouthAfrica", "attributes": { "weight": 49282, "sourceWeight": "49282", "direction": "Imp", "source_type": "primary", "targetWeight": "49282" } }, { "key": "geid_107_1880", "source": "SudanAngloEgyptianSudanMahdistState", "target": "SouthAfrica", "attributes": { "weight": 865, "sourceWeight": "865", "direction": "Imp", "source_type": "primary", "targetWeight": "865" } }, { "key": "geid_107_1881", "source": "BritishSouthAfrica", "target": "SouthAfrica", "attributes": { "weight": 2329, "sourceWeight": "2329", "direction": "Imp", "source_type": "primary", "targetWeight": "2329" } }, { "key": "geid_107_1882", "source": "BritishWestAfrica", "target": "SouthAfrica", "attributes": { "weight": 3374, "sourceWeight": "3374", "direction": "Imp", "source_type": "primary", "targetWeight": "3374" } }, { "key": "geid_107_1883", "source": "KenyaBritishEastAfricaProtectorate", "target": "SouthAfrica", "attributes": { "weight": 99743, "sourceWeight": "99743", "direction": "Imp", "source_type": "primary", "targetWeight": "99743" } }, { "key": "geid_107_1884", "source": "Mauritius", "target": "SouthAfrica", "attributes": { "weight": 11704, "sourceWeight": "11704", "direction": "Imp", "source_type": "primary", "targetWeight": "11704" } }, { "key": "geid_107_1885", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "SouthAfrica", "attributes": { "weight": 12, "sourceWeight": "12", "direction": "Imp", "source_type": "primary", "targetWeight": "12" } }, { "key": "geid_107_1886", "source": "Seychelles", "target": "SouthAfrica", "attributes": { "weight": 15532, "sourceWeight": "15532", "direction": "Imp", "source_type": "primary", "targetWeight": "15532" } }, { "key": "geid_107_1887", "source": "StHelena", "target": "SouthAfrica", "attributes": { "weight": 1423, "sourceWeight": "1423", "direction": "Imp", "source_type": "primary", "targetWeight": "1423" } }, { "key": "geid_107_1888", "source": "TanzaniaTanganyika", "target": "SouthAfrica", "attributes": { "weight": 12419, "sourceWeight": "12419", "direction": "Imp", "source_type": "primary", "targetWeight": "12419" } }, { "key": "geid_107_1889", "source": "Zanzibar", "target": "SouthAfrica", "attributes": { "weight": 7746, "sourceWeight": "7746", "direction": "Imp", "source_type": "primary", "targetWeight": "7746" } }, { "key": "geid_107_1890", "source": "NewfoundlandandLabradorNewfoundland", "target": "SouthAfrica", "attributes": { "weight": 1050, "sourceWeight": "1050", "direction": "Imp", "source_type": "primary", "targetWeight": "1050" } }, { "key": "geid_107_1891", "source": "BelizeBritishHonduras", "target": "SouthAfrica", "attributes": { "weight": 2434, "sourceWeight": "2434", "direction": "Imp", "source_type": "primary", "targetWeight": "2434" } }, { "key": "geid_107_1892", "source": "BritishWestIndies", "target": "SouthAfrica", "attributes": { "weight": 18173, "sourceWeight": "18173", "direction": "Imp", "source_type": "primary", "targetWeight": "18173" } }, { "key": "geid_107_1893", "source": "PacificIslands", "target": "SouthAfrica", "attributes": { "weight": 5400, "sourceWeight": "5400", "direction": "Imp", "source_type": "primary", "targetWeight": "5400" } }, { "key": "geid_107_1894", "source": "BritishColoniesother", "target": "SouthAfrica", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary", "targetWeight": "1" } }, { "key": "geid_107_1895", "source": "Austria", "target": "SouthAfrica", "attributes": { "weight": 91695, "sourceWeight": "91695", "direction": "Imp", "source_type": "primary", "targetWeight": "91695" } }, { "key": "geid_107_1896", "source": "Belgium", "target": "SouthAfrica", "attributes": { "weight": 907708, "sourceWeight": "907708", "direction": "Imp", "source_type": "primary", "targetWeight": "907708" } }, { "key": "geid_107_1897", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "SouthAfrica", "attributes": { "weight": 10650, "sourceWeight": "10650", "direction": "Imp", "source_type": "primary", "targetWeight": "10650" } }, { "key": "geid_107_1898", "source": "Bulgaria", "target": "SouthAfrica", "attributes": { "weight": 62, "sourceWeight": "62", "direction": "Imp", "source_type": "primary", "targetWeight": "62" } }, { "key": "geid_107_1899", "source": "Czechoslovakia", "target": "SouthAfrica", "attributes": { "weight": 199557, "sourceWeight": "199557", "direction": "Imp", "source_type": "primary", "targetWeight": "199557" } }, { "key": "geid_107_1900", "source": "Denmark", "target": "SouthAfrica", "attributes": { "weight": 64918, "sourceWeight": "64918", "direction": "Imp", "source_type": "primary", "targetWeight": "64918" } }, { "key": "geid_107_1901", "source": "DanishColonies", "target": "SouthAfrica", "attributes": { "weight": 444, "sourceWeight": "444", "direction": "Imp", "source_type": "primary", "targetWeight": "444" } }, { "key": "geid_107_1902", "source": "Estonia", "target": "SouthAfrica", "attributes": { "weight": 1229, "sourceWeight": "1229", "direction": "Imp", "source_type": "primary", "targetWeight": "1229" } }, { "key": "geid_107_1903", "source": "Finland", "target": "SouthAfrica", "attributes": { "weight": 328836, "sourceWeight": "328836", "direction": "Imp", "source_type": "primary", "targetWeight": "328836" } }, { "key": "geid_107_1904", "source": "France", "target": "SouthAfrica", "attributes": { "weight": 1143201, "sourceWeight": "1143201", "direction": "Imp", "source_type": "primary", "targetWeight": "1143201" } }, { "key": "geid_107_1905", "source": "AlgeriaRegencyofAlgiers", "target": "SouthAfrica", "attributes": { "weight": 55, "sourceWeight": "55", "direction": "Imp", "source_type": "primary", "targetWeight": "55" } }, { "key": "geid_107_1906", "source": "ReunionBourbonI", "target": "SouthAfrica", "attributes": { "weight": 326, "sourceWeight": "326", "direction": "Imp", "source_type": "primary", "targetWeight": "326" } }, { "key": "geid_107_1907", "source": "CochinChina", "target": "SouthAfrica", "attributes": { "weight": 59591, "sourceWeight": "59591", "direction": "Imp", "source_type": "primary", "targetWeight": "59591" } }, { "key": "geid_107_1908", "source": "MadagascarMalagasyRepublic", "target": "SouthAfrica", "attributes": { "weight": 11750, "sourceWeight": "11750", "direction": "Imp", "source_type": "primary", "targetWeight": "11750" } }, { "key": "geid_107_1909", "source": "FrenchColoniesother", "target": "SouthAfrica", "attributes": { "weight": 685, "sourceWeight": "685", "direction": "Imp", "source_type": "primary", "targetWeight": "685" } }, { "key": "geid_107_1910", "source": "GermanyZollverein", "target": "SouthAfrica", "attributes": { "weight": 3208967, "sourceWeight": "3208967", "direction": "Imp", "source_type": "primary", "targetWeight": "3208967" } }, { "key": "geid_107_1911", "source": "Greece", "target": "SouthAfrica", "attributes": { "weight": 10682, "sourceWeight": "10682", "direction": "Imp", "source_type": "primary", "targetWeight": "10682" } }, { "key": "geid_107_1912", "source": "Netherlands", "target": "SouthAfrica", "attributes": { "weight": 793378, "sourceWeight": "793378", "direction": "Imp", "source_type": "primary", "targetWeight": "793378" } }, { "key": "geid_107_1913", "source": "IndonesiaDutchEastIndies", "target": "SouthAfrica", "attributes": { "weight": 535059, "sourceWeight": "535059", "direction": "Imp", "source_type": "primary", "targetWeight": "535059" } }, { "key": "geid_107_1914", "source": "NetherlandsAntilles", "target": "SouthAfrica", "attributes": { "weight": 389, "sourceWeight": "389", "direction": "Imp", "source_type": "primary", "targetWeight": "389" } }, { "key": "geid_107_1915", "source": "Hungary", "target": "SouthAfrica", "attributes": { "weight": 5211, "sourceWeight": "5211", "direction": "Imp", "source_type": "primary", "targetWeight": "5211" } }, { "key": "geid_107_1916", "source": "Italy", "target": "SouthAfrica", "attributes": { "weight": 565767, "sourceWeight": "565767", "direction": "Imp", "source_type": "primary", "targetWeight": "565767" } }, { "key": "geid_107_1917", "source": "TripolitaniaRegencyofTripoli", "target": "SouthAfrica", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Imp", "source_type": "primary", "targetWeight": "14" } }, { "key": "geid_107_1918", "source": "Latvia", "target": "SouthAfrica", "attributes": { "weight": 16650, "sourceWeight": "16650", "direction": "Imp", "source_type": "primary", "targetWeight": "16650" } }, { "key": "geid_107_1919", "source": "Lithuania", "target": "SouthAfrica", "attributes": { "weight": 700, "sourceWeight": "700", "direction": "Imp", "source_type": "primary", "targetWeight": "700" } }, { "key": "geid_107_1920", "source": "Memel", "target": "SouthAfrica", "attributes": { "weight": 742, "sourceWeight": "742", "direction": "Imp", "source_type": "primary", "targetWeight": "742" } }, { "key": "geid_107_1921", "source": "Norway", "target": "SouthAfrica", "attributes": { "weight": 360580, "sourceWeight": "360580", "direction": "Imp", "source_type": "primary", "targetWeight": "360580" } }, { "key": "geid_107_1922", "source": "Poland", "target": "SouthAfrica", "attributes": { "weight": 39139, "sourceWeight": "39139", "direction": "Imp", "source_type": "primary", "targetWeight": "39139" } }, { "key": "geid_107_1923", "source": "Portugal", "target": "SouthAfrica", "attributes": { "weight": 40122, "sourceWeight": "40122", "direction": "Imp", "source_type": "primary", "targetWeight": "40122" } }, { "key": "geid_107_1924", "source": "MadeiraIsles", "target": "SouthAfrica", "attributes": { "weight": 3323, "sourceWeight": "3323", "direction": "Imp", "source_type": "primary", "targetWeight": "3323" } }, { "key": "geid_107_1925", "source": "MozambiquePortugueseEastAfrica", "target": "SouthAfrica", "attributes": { "weight": 84283, "sourceWeight": "84283", "direction": "Imp", "source_type": "primary", "targetWeight": "84283" } }, { "key": "geid_107_1926", "source": "AngolaPortugueseWestAfrica", "target": "SouthAfrica", "attributes": { "weight": 3745, "sourceWeight": "3745", "direction": "Imp", "source_type": "primary", "targetWeight": "3745" } }, { "key": "geid_107_1927", "source": "Romania", "target": "SouthAfrica", "attributes": { "weight": 114, "sourceWeight": "114", "direction": "Imp", "source_type": "primary", "targetWeight": "114" } }, { "key": "geid_107_1928", "source": "RussiaUSSR", "target": "SouthAfrica", "attributes": { "weight": 47863, "sourceWeight": "47863", "direction": "Imp", "source_type": "primary", "targetWeight": "47863" } }, { "key": "geid_107_1929", "source": "Spain", "target": "SouthAfrica", "attributes": { "weight": 44916, "sourceWeight": "44916", "direction": "Imp", "source_type": "primary", "targetWeight": "44916" } }, { "key": "geid_107_1930", "source": "CanaryIs", "target": "SouthAfrica", "attributes": { "weight": 409, "sourceWeight": "409", "direction": "Imp", "source_type": "primary", "targetWeight": "409" } }, { "key": "geid_107_1931", "source": "Sweden", "target": "SouthAfrica", "attributes": { "weight": 1255359, "sourceWeight": "1255359", "direction": "Imp", "source_type": "primary", "targetWeight": "1255359" } }, { "key": "geid_107_1932", "source": "Switzerland", "target": "SouthAfrica", "attributes": { "weight": 619726, "sourceWeight": "619726", "direction": "Imp", "source_type": "primary", "targetWeight": "619726" } }, { "key": "geid_107_1933", "source": "TurkeyOttomanEmpire", "target": "SouthAfrica", "attributes": { "weight": 14436, "sourceWeight": "14436", "direction": "Imp", "source_type": "primary", "targetWeight": "14436" } }, { "key": "geid_107_1934", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "SouthAfrica", "attributes": { "weight": 3299, "sourceWeight": "3299", "direction": "Imp", "source_type": "primary", "targetWeight": "3299" } }, { "key": "geid_107_1935", "source": "Afghanistan", "target": "SouthAfrica", "attributes": { "weight": 111, "sourceWeight": "111", "direction": "Imp", "source_type": "primary", "targetWeight": "111" } }, { "key": "geid_107_1936", "source": "PeoplesRepublicofChinaChina", "target": "SouthAfrica", "attributes": { "weight": 104315, "sourceWeight": "104315", "direction": "Imp", "source_type": "primary", "targetWeight": "104315" } }, { "key": "geid_107_1937", "source": "IraqMesopotamia", "target": "SouthAfrica", "attributes": { "weight": 24493, "sourceWeight": "24493", "direction": "Imp", "source_type": "primary", "targetWeight": "24493" } }, { "key": "geid_107_1938", "source": "Japan_RepublicofChinaTaiwanFormosa", "target": "SouthAfrica", "attributes": { "weight": 699627, "sourceWeight": "699627", "direction": "Imp", "source_type": "primary", "targetWeight": "699627" } }, { "key": "geid_107_1939", "source": "IranPersia", "target": "SouthAfrica", "attributes": { "weight": 29481, "sourceWeight": "29481", "direction": "Imp", "source_type": "primary", "targetWeight": "29481" } }, { "key": "geid_107_1940", "source": "ThailandSiam", "target": "SouthAfrica", "attributes": { "weight": 51987, "sourceWeight": "51987", "direction": "Imp", "source_type": "primary", "targetWeight": "51987" } }, { "key": "geid_107_1941", "source": "EgyptArabRepublicEgypt", "target": "SouthAfrica", "attributes": { "weight": 9364, "sourceWeight": "9364", "direction": "Imp", "source_type": "primary", "targetWeight": "9364" } }, { "key": "geid_107_1942", "source": "Morocco", "target": "SouthAfrica", "attributes": { "weight": 2459, "sourceWeight": "2459", "direction": "Imp", "source_type": "primary", "targetWeight": "2459" } }, { "key": "geid_107_1943", "source": "UnitedStatesofAmerica", "target": "SouthAfrica", "attributes": { "weight": 8785503, "sourceWeight": "8785503", "direction": "Imp", "source_type": "primary", "targetWeight": "8785503" } }, { "key": "geid_107_1944", "source": "Philippines", "target": "SouthAfrica", "attributes": { "weight": 639, "sourceWeight": "639", "direction": "Imp", "source_type": "primary", "targetWeight": "639" } }, { "key": "geid_107_1945", "source": "AmericanColoniesother", "target": "SouthAfrica", "attributes": { "weight": 825, "sourceWeight": "825", "direction": "Imp", "source_type": "primary", "targetWeight": "825" } }, { "key": "geid_107_1946", "source": "Mexico", "target": "SouthAfrica", "attributes": { "weight": 17635, "sourceWeight": "17635", "direction": "Imp", "source_type": "primary", "targetWeight": "17635" } }, { "key": "geid_107_1947", "source": "CostaRica", "target": "SouthAfrica", "attributes": { "weight": 3676, "sourceWeight": "3676", "direction": "Imp", "source_type": "primary", "targetWeight": "3676" } }, { "key": "geid_107_1948", "source": "Guatemala", "target": "SouthAfrica", "attributes": { "weight": 31, "sourceWeight": "31", "direction": "Imp", "source_type": "primary", "targetWeight": "31" } }, { "key": "geid_107_1949", "source": "Panama", "target": "SouthAfrica", "attributes": { "weight": 189, "sourceWeight": "189", "direction": "Imp", "source_type": "primary", "targetWeight": "189" } }, { "key": "geid_107_1950", "source": "ElSalvador", "target": "SouthAfrica", "attributes": { "weight": 318, "sourceWeight": "318", "direction": "Imp", "source_type": "primary", "targetWeight": "318" } }, { "key": "geid_107_1951", "source": "ArgentinaLaPlata", "target": "SouthAfrica", "attributes": { "weight": 275050, "sourceWeight": "275050", "direction": "Imp", "source_type": "primary", "targetWeight": "275050" } }, { "key": "geid_107_1952", "source": "Brazil", "target": "SouthAfrica", "attributes": { "weight": 970822, "sourceWeight": "970822", "direction": "Imp", "source_type": "primary", "targetWeight": "970822" } }, { "key": "geid_107_1953", "source": "Chile", "target": "SouthAfrica", "attributes": { "weight": 296224, "sourceWeight": "296224", "direction": "Imp", "source_type": "primary", "targetWeight": "296224" } }, { "key": "geid_107_1954", "source": "ColombiaNewGranadaGranColombia", "target": "SouthAfrica", "attributes": { "weight": 57, "sourceWeight": "57", "direction": "Imp", "source_type": "primary", "targetWeight": "57" } }, { "key": "geid_107_1955", "source": "Cuba", "target": "SouthAfrica", "attributes": { "weight": 27032, "sourceWeight": "27032", "direction": "Imp", "source_type": "primary", "targetWeight": "27032" } }, { "key": "geid_107_1956", "source": "Ecuador", "target": "SouthAfrica", "attributes": { "weight": 940, "sourceWeight": "940", "direction": "Imp", "source_type": "primary", "targetWeight": "940" } }, { "key": "geid_107_1957", "source": "Paraguay", "target": "SouthAfrica", "attributes": { "weight": 91, "sourceWeight": "91", "direction": "Imp", "source_type": "primary", "targetWeight": "91" } }, { "key": "geid_107_1958", "source": "Peru", "target": "SouthAfrica", "attributes": { "weight": 40, "sourceWeight": "40", "direction": "Imp", "source_type": "primary", "targetWeight": "40" } }, { "key": "geid_107_1959", "source": "Uruguay", "target": "SouthAfrica", "attributes": { "weight": 2997, "sourceWeight": "2997", "direction": "Imp", "source_type": "primary", "targetWeight": "2997" } }, { "key": "geid_107_1960", "source": "Venezuela", "target": "SouthAfrica", "attributes": { "weight": 1567, "sourceWeight": "1567", "direction": "Imp", "source_type": "primary", "targetWeight": "1567" } }, { "key": "geid_107_1961", "source": "Othercountries", "target": "SouthAfrica", "attributes": { "weight": 232, "sourceWeight": "232", "direction": "Imp", "source_type": "primary", "targetWeight": "232" } }, { "key": "geid_107_1962", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "SouthAfrica", "attributes": { "weight": 841274, "sourceWeight": "841274", "direction": "Imp", "source_type": "primary", "targetWeight": "841274" } }, { "key": "geid_107_1963", "source": "ZambiaNorthernRhodesia", "target": "SouthAfrica", "attributes": { "weight": 110222, "sourceWeight": "110222", "direction": "Imp", "source_type": "primary", "targetWeight": "110222" } }, { "key": "geid_107_1964", "source": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "target": "SouthAfrica", "attributes": { "weight": 605953, "sourceWeight": "605953", "direction": "Imp", "source_type": "primary", "targetWeight": "605953" } }, { "key": "geid_107_1965", "source": "SouthAfrica", "target": "UnitedKingdom", "attributes": { "weight": 47357215, "sourceWeight": "47357215", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1966", "source": "SouthAfrica", "target": "CanadaProvinceofCanada", "attributes": { "weight": 9724, "sourceWeight": "9724", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1967", "source": "SouthAfrica", "target": "India", "attributes": { "weight": 14515518, "sourceWeight": "14515518", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1968", "source": "SouthAfrica", "target": "SriLankaCeylon", "attributes": { "weight": 223213, "sourceWeight": "223213", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1969", "source": "SouthAfrica", "target": "Australia", "attributes": { "weight": 177476, "sourceWeight": "177476", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1970", "source": "SouthAfrica", "target": "NewZealand", "attributes": { "weight": 29170, "sourceWeight": "29170", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1971", "source": "SouthAfrica", "target": "Ireland", "attributes": { "weight": 10, "sourceWeight": "10", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1972", "source": "SouthAfrica", "target": "Aden", "attributes": { "weight": 148828, "sourceWeight": "148828", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1973", "source": "SouthAfrica", "target": "HongKong", "attributes": { "weight": 10256, "sourceWeight": "10256", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1974", "source": "SouthAfrica", "target": "Palestine", "attributes": { "weight": 20, "sourceWeight": "20", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1975", "source": "SouthAfrica", "target": "StraitsSettlements", "attributes": { "weight": 504929, "sourceWeight": "504929", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1976", "source": "SouthAfrica", "target": "AscensionI", "attributes": { "weight": 4245, "sourceWeight": "4245", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1977", "source": "SouthAfrica", "target": "KenyaBritishEastAfricaProtectorate", "attributes": { "weight": 71731, "sourceWeight": "71731", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1978", "source": "SouthAfrica", "target": "Mauritius", "attributes": { "weight": 101861, "sourceWeight": "101861", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1979", "source": "SouthAfrica", "target": "NortheasternRhodesia", "attributes": { "weight": 367, "sourceWeight": "367", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1980", "source": "SouthAfrica", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 509, "sourceWeight": "509", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1981", "source": "SouthAfrica", "target": "Seychelles", "attributes": { "weight": 1791, "sourceWeight": "1791", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1982", "source": "SouthAfrica", "target": "StHelena", "attributes": { "weight": 11899, "sourceWeight": "11899", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1983", "source": "SouthAfrica", "target": "PortSudan", "attributes": { "weight": 118837, "sourceWeight": "118837", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1984", "source": "SouthAfrica", "target": "TanzaniaTanganyika", "attributes": { "weight": 6926, "sourceWeight": "6926", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1985", "source": "SouthAfrica", "target": "Zanzibar", "attributes": { "weight": 6951, "sourceWeight": "6951", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1986", "source": "SouthAfrica", "target": "GuyanaBritishGuiana", "attributes": { "weight": 1785, "sourceWeight": "1785", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1987", "source": "SouthAfrica", "target": "PacificIslands", "attributes": { "weight": 9082, "sourceWeight": "9082", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1988", "source": "SouthAfrica", "target": "Austria", "attributes": { "weight": 93, "sourceWeight": "93", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1989", "source": "SouthAfrica", "target": "Belgium", "attributes": { "weight": 1649846, "sourceWeight": "1649846", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1990", "source": "SouthAfrica", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 142473, "sourceWeight": "142473", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1991", "source": "SouthAfrica", "target": "Denmark", "attributes": { "weight": 5977, "sourceWeight": "5977", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1992", "source": "SouthAfrica", "target": "Finland", "attributes": { "weight": 2423, "sourceWeight": "2423", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1993", "source": "SouthAfrica", "target": "France", "attributes": { "weight": 2867152, "sourceWeight": "2867152", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1994", "source": "SouthAfrica", "target": "MadagascarMalagasyRepublic", "attributes": { "weight": 9058, "sourceWeight": "9058", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1995", "source": "SouthAfrica", "target": "KerguelenIs", "attributes": { "weight": 1510, "sourceWeight": "1510", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1996", "source": "SouthAfrica", "target": "FrenchColoniesother", "attributes": { "weight": 21257, "sourceWeight": "21257", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1997", "source": "SouthAfrica", "target": "GermanyZollverein", "attributes": { "weight": 2963964, "sourceWeight": "2963964", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1998", "source": "SouthAfrica", "target": "Netherlands", "attributes": { "weight": 1587333, "sourceWeight": "1587333", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_1999", "source": "SouthAfrica", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 32522, "sourceWeight": "32522", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2000", "source": "SouthAfrica", "target": "Italy", "attributes": { "weight": 664408, "sourceWeight": "664408", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2001", "source": "SouthAfrica", "target": "ItalianColoniesother", "attributes": { "weight": 3437, "sourceWeight": "3437", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2002", "source": "SouthAfrica", "target": "Norway", "attributes": { "weight": 1150, "sourceWeight": "1150", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2003", "source": "SouthAfrica", "target": "Poland", "attributes": { "weight": 1735, "sourceWeight": "1735", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2004", "source": "SouthAfrica", "target": "Portugal", "attributes": { "weight": 2291, "sourceWeight": "2291", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2005", "source": "SouthAfrica", "target": "MadeiraIsles", "attributes": { "weight": 10482, "sourceWeight": "10482", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2006", "source": "SouthAfrica", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 359411, "sourceWeight": "359411", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2007", "source": "SouthAfrica", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 10252, "sourceWeight": "10252", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2008", "source": "SouthAfrica", "target": "PortugueseIndiainclGoaDiuDaman", "attributes": { "weight": 8320, "sourceWeight": "8320", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2009", "source": "SouthAfrica", "target": "Romania", "attributes": { "weight": 85, "sourceWeight": "85", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2010", "source": "SouthAfrica", "target": "RussiaUSSR", "attributes": { "weight": 1765, "sourceWeight": "1765", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2011", "source": "SouthAfrica", "target": "Spain", "attributes": { "weight": 6343, "sourceWeight": "6343", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2012", "source": "SouthAfrica", "target": "Sweden", "attributes": { "weight": 83976, "sourceWeight": "83976", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2013", "source": "SouthAfrica", "target": "Switzerland", "attributes": { "weight": 11, "sourceWeight": "11", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2014", "source": "SouthAfrica", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 228, "sourceWeight": "228", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2015", "source": "SouthAfrica", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 5947, "sourceWeight": "5947", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2016", "source": "SouthAfrica", "target": "Japan_RepublicofChinaTaiwanFormosa", "attributes": { "weight": 89409, "sourceWeight": "89409", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2017", "source": "SouthAfrica", "target": "ThailandSiam", "attributes": { "weight": 588, "sourceWeight": "588", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2018", "source": "SouthAfrica", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 14976, "sourceWeight": "14976", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2019", "source": "SouthAfrica", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1233087, "sourceWeight": "1233087", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2020", "source": "SouthAfrica", "target": "ArgentinaLaPlata", "attributes": { "weight": 2150, "sourceWeight": "2150", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2021", "source": "SouthAfrica", "target": "Brazil", "attributes": { "weight": 195, "sourceWeight": "195", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2022", "source": "SouthAfrica", "target": "Chile", "attributes": { "weight": 3064, "sourceWeight": "3064", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2023", "source": "SouthAfrica", "target": "Uruguay", "attributes": { "weight": 1200, "sourceWeight": "1200", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2024", "source": "SouthAfrica", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 1511448, "sourceWeight": "1511448", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2025", "source": "SouthAfrica", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 146191, "sourceWeight": "146191", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2026", "source": "SouthAfrica", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 1090896, "sourceWeight": "1090896", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2027", "source": "SouthAfrica", "target": "***NA", "attributes": { "weight": 92592, "sourceWeight": "92592", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2028", "source": "UnitedKingdom", "target": "Romania", "attributes": { "weight": 2923212.99230421, "sourceWeight": "2923212.99230421", "direction": "Imp", "source_type": "primary", "targetWeight": "2923212.99230421" } }, { "key": "geid_107_2029", "source": "Austria", "target": "Romania", "attributes": { "weight": 5003309.189678587, "sourceWeight": "5003309.189678587", "direction": "Imp", "source_type": "primary", "targetWeight": "5003309.189678587" } }, { "key": "geid_107_2030", "source": "Belgium_Luxemburg", "target": "Romania", "attributes": { "weight": 577231.7790855591, "sourceWeight": "577231.7790855591", "direction": "Imp", "source_type": "primary", "targetWeight": "577231.7790855591" } }, { "key": "geid_107_2031", "source": "Bulgaria", "target": "Romania", "attributes": { "weight": 22563.37709370756, "sourceWeight": "22563.37709370756", "direction": "Imp", "source_type": "primary", "targetWeight": "22563.37709370756" } }, { "key": "geid_107_2032", "source": "CanadaProvinceofCanada", "target": "Romania", "attributes": { "weight": 387.05296514259845, "sourceWeight": "387.05296514259845", "direction": "Imp", "source_type": "primary", "targetWeight": "387.05296514259845" } }, { "key": "geid_107_2033", "source": "Czechoslovakia", "target": "Romania", "attributes": { "weight": 3426366.002716161, "sourceWeight": "3426366.002716161", "direction": "Imp", "source_type": "primary", "targetWeight": "3426366.002716161" } }, { "key": "geid_107_2034", "source": "EgyptArabRepublicEgypt", "target": "Romania", "attributes": { "weight": 704680.8510638297, "sourceWeight": "704680.8510638297", "direction": "Imp", "source_type": "primary", "targetWeight": "704680.8510638297" } }, { "key": "geid_107_2035", "source": "Switzerland", "target": "Romania", "attributes": { "weight": 357954.95699411497, "sourceWeight": "357954.95699411497", "direction": "Imp", "source_type": "primary", "targetWeight": "357954.95699411497" } }, { "key": "geid_107_2036", "source": "France", "target": "Romania", "attributes": { "weight": 2402709.370755998, "sourceWeight": "2402709.370755998", "direction": "Imp", "source_type": "primary", "targetWeight": "2402709.370755998" } }, { "key": "geid_107_2037", "source": "GermanyZollverein", "target": "Romania", "attributes": { "weight": 5716794.929832503, "sourceWeight": "5716794.929832503", "direction": "Imp", "source_type": "primary", "targetWeight": "5716794.929832503" } }, { "key": "geid_107_2038", "source": "Greece", "target": "Romania", "attributes": { "weight": 217915.34631054776, "sourceWeight": "217915.34631054776", "direction": "Imp", "source_type": "primary", "targetWeight": "217915.34631054776" } }, { "key": "geid_107_2039", "source": "Italy", "target": "Romania", "attributes": { "weight": 2977885.921231326, "sourceWeight": "2977885.921231326", "direction": "Imp", "source_type": "primary", "targetWeight": "2977885.921231326" } }, { "key": "geid_107_2040", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Romania", "attributes": { "weight": 84727.25215029425, "sourceWeight": "84727.25215029425", "direction": "Imp", "source_type": "primary", "targetWeight": "84727.25215029425" } }, { "key": "geid_107_2041", "source": "Japan", "target": "Romania", "attributes": { "weight": 4578.995020371209, "sourceWeight": "4578.995020371209", "direction": "Imp", "source_type": "primary", "targetWeight": "4578.995020371209" } }, { "key": "geid_107_2042", "source": "Norway", "target": "Romania", "attributes": { "weight": 26439.565414214576, "sourceWeight": "26439.565414214576", "direction": "Imp", "source_type": "primary", "targetWeight": "26439.565414214576" } }, { "key": "geid_107_2043", "source": "Netherlands", "target": "Romania", "attributes": { "weight": 483666.8175645088, "sourceWeight": "483666.8175645088", "direction": "Imp", "source_type": "primary", "targetWeight": "483666.8175645088" } }, { "key": "geid_107_2044", "source": "Poland", "target": "Romania", "attributes": { "weight": 2665018.1077410593, "sourceWeight": "2665018.1077410593", "direction": "Imp", "source_type": "primary", "targetWeight": "2665018.1077410593" } }, { "key": "geid_107_2045", "source": "Portugal", "target": "Romania", "attributes": { "weight": 35373.47215934812, "sourceWeight": "35373.47215934812", "direction": "Imp", "source_type": "primary", "targetWeight": "35373.47215934812" } }, { "key": "geid_107_2046", "source": "Spain", "target": "Romania", "attributes": { "weight": 23188.09416025351, "sourceWeight": "23188.09416025351", "direction": "Imp", "source_type": "primary", "targetWeight": "23188.09416025351" } }, { "key": "geid_107_2047", "source": "UnitedStatesofAmerica", "target": "Romania", "attributes": { "weight": 261849.2530556813, "sourceWeight": "261849.2530556813", "direction": "Imp", "source_type": "primary", "targetWeight": "261849.2530556813" } }, { "key": "geid_107_2048", "source": "Sweden", "target": "Romania", "attributes": { "weight": 18023.992756903575, "sourceWeight": "18023.992756903575", "direction": "Imp", "source_type": "primary", "targetWeight": "18023.992756903575" } }, { "key": "geid_107_2049", "source": "TurkeyOttomanEmpire", "target": "Romania", "attributes": { "weight": 404880.0362154821, "sourceWeight": "404880.0362154821", "direction": "Imp", "source_type": "primary", "targetWeight": "404880.0362154821" } }, { "key": "geid_107_2050", "source": "Ukraine", "target": "Romania", "attributes": { "weight": 127.88592123132639, "sourceWeight": "127.88592123132639", "direction": "Imp", "source_type": "primary", "targetWeight": "127.88592123132639" } }, { "key": "geid_107_2051", "source": "Hungary", "target": "Romania", "attributes": { "weight": 1240900.8601177002, "sourceWeight": "1240900.8601177002", "direction": "Imp", "source_type": "primary", "targetWeight": "1240900.8601177002" } }, { "key": "geid_107_2052", "source": "RussiaUSSR", "target": "Romania", "attributes": { "weight": 6010.63829787234, "sourceWeight": "6010.63829787234", "direction": "Imp", "source_type": "primary", "targetWeight": "6010.63829787234" } }, { "key": "geid_107_2053", "source": "Othercountries", "target": "Romania", "attributes": { "weight": 138718.8773200543, "sourceWeight": "138718.8773200543", "direction": "Imp", "source_type": "primary", "targetWeight": "138718.8773200543" } }, { "key": "geid_107_2054", "source": "Romania", "target": "UnitedKingdom", "attributes": { "weight": 1861221.1407876867, "sourceWeight": "1861221.1407876867", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2055", "source": "Romania", "target": "Austria", "attributes": { "weight": 4428475.55454957, "sourceWeight": "4428475.55454957", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2056", "source": "Romania", "target": "Belgium_Luxemburg", "attributes": { "weight": 1701732.684472612, "sourceWeight": "1701732.684472612", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2057", "source": "Romania", "target": "Bulgaria", "attributes": { "weight": 803886.3739248528, "sourceWeight": "803886.3739248528", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2058", "source": "Romania", "target": "CanadaProvinceofCanada", "attributes": { "weight": 966.5006790402897, "sourceWeight": "966.5006790402897", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2059", "source": "Romania", "target": "Czechoslovakia", "attributes": { "weight": 2976497.283838841, "sourceWeight": "2976497.283838841", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2060", "source": "Romania", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1027197.8270710729, "sourceWeight": "1027197.8270710729", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2061", "source": "Romania", "target": "Switzerland", "attributes": { "weight": 24396.785875961974, "sourceWeight": "24396.785875961974", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2062", "source": "Romania", "target": "France", "attributes": { "weight": 2012729.74196469, "sourceWeight": "2012729.74196469", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2063", "source": "Romania", "target": "GermanyZollverein", "attributes": { "weight": 1828147.35174287, "sourceWeight": "1828147.35174287", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2064", "source": "Romania", "target": "Gibraltar_Malta", "attributes": { "weight": 2824151.199637845, "sourceWeight": "2824151.199637845", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2065", "source": "Romania", "target": "Greece", "attributes": { "weight": 1837271.3897691262, "sourceWeight": "1837271.3897691262", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2066", "source": "Romania", "target": "Italy", "attributes": { "weight": 1590935.9438660026, "sourceWeight": "1590935.9438660026", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2067", "source": "Romania", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 491234.7215934812, "sourceWeight": "491234.7215934812", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2068", "source": "Romania", "target": "Norway", "attributes": { "weight": 24075.373472159346, "sourceWeight": "24075.373472159346", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2069", "source": "Romania", "target": "Netherlands", "attributes": { "weight": 1258122.4535989135, "sourceWeight": "1258122.4535989135", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2070", "source": "Romania", "target": "Poland", "attributes": { "weight": 1134011.9963784518, "sourceWeight": "1134011.9963784518", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2071", "source": "Romania", "target": "Spain", "attributes": { "weight": 60969.895880488904, "sourceWeight": "60969.895880488904", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2072", "source": "Romania", "target": "UnitedStatesofAmerica", "attributes": { "weight": 10522.86102308737, "sourceWeight": "10522.86102308737", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2073", "source": "Romania", "target": "Sweden", "attributes": { "weight": 10617.92666364871, "sourceWeight": "10617.92666364871", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2074", "source": "Romania", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 701815.301041195, "sourceWeight": "701815.301041195", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2075", "source": "Romania", "target": "Ukraine", "attributes": { "weight": 43.00588501584427, "sourceWeight": "43.00588501584427", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2076", "source": "Romania", "target": "Hungary", "attributes": { "weight": 4698062.471706655, "sourceWeight": "4698062.471706655", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2077", "source": "Romania", "target": "RussiaUSSR", "attributes": { "weight": 80.3531009506564, "sourceWeight": "80.3531009506564", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2078", "source": "Romania", "target": "Othercountries", "attributes": { "weight": 789986.4191942055, "sourceWeight": "789986.4191942055", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2079", "source": "UnitedKingdom", "target": "NewZealand", "attributes": { "weight": 23203825, "sourceWeight": "23203825", "direction": "Imp", "source_type": "primary", "targetWeight": "23203825" } }, { "key": "geid_107_2080", "source": "Ireland", "target": "NewZealand", "attributes": { "weight": 4705, "sourceWeight": "4705", "direction": "Imp", "source_type": "primary", "targetWeight": "4705" } }, { "key": "geid_107_2081", "source": "Malta", "target": "NewZealand", "attributes": { "weight": 972, "sourceWeight": "972", "direction": "Imp", "source_type": "primary", "targetWeight": "972" } }, { "key": "geid_107_2082", "source": "Aden", "target": "NewZealand", "attributes": { "weight": 759, "sourceWeight": "759", "direction": "Imp", "source_type": "primary", "targetWeight": "759" } }, { "key": "geid_107_2083", "source": "SabahNorthBorneo", "target": "NewZealand", "attributes": { "weight": 18428, "sourceWeight": "18428", "direction": "Imp", "source_type": "primary", "targetWeight": "18428" } }, { "key": "geid_107_2084", "source": "MyanmarBurma", "target": "NewZealand", "attributes": { "weight": 89141, "sourceWeight": "89141", "direction": "Imp", "source_type": "primary", "targetWeight": "89141" } }, { "key": "geid_107_2085", "source": "SriLankaCeylon", "target": "NewZealand", "attributes": { "weight": 837506, "sourceWeight": "837506", "direction": "Imp", "source_type": "primary", "targetWeight": "837506" } }, { "key": "geid_107_2086", "source": "Cyprus", "target": "NewZealand", "attributes": { "weight": 177, "sourceWeight": "177", "direction": "Imp", "source_type": "primary", "targetWeight": "177" } }, { "key": "geid_107_2087", "source": "HongKong", "target": "NewZealand", "attributes": { "weight": 18440, "sourceWeight": "18440", "direction": "Imp", "source_type": "primary", "targetWeight": "18440" } }, { "key": "geid_107_2088", "source": "India", "target": "NewZealand", "attributes": { "weight": 741202, "sourceWeight": "741202", "direction": "Imp", "source_type": "primary", "targetWeight": "741202" } }, { "key": "geid_107_2089", "source": "MalaysiaBritishMalaya", "target": "NewZealand", "attributes": { "weight": 14627, "sourceWeight": "14627", "direction": "Imp", "source_type": "primary", "targetWeight": "14627" } }, { "key": "geid_107_2090", "source": "StraitsSettlements", "target": "NewZealand", "attributes": { "weight": 77270, "sourceWeight": "77270", "direction": "Imp", "source_type": "primary", "targetWeight": "77270" } }, { "key": "geid_107_2091", "source": "SudanAngloEgyptianSudanMahdistState", "target": "NewZealand", "attributes": { "weight": 2126, "sourceWeight": "2126", "direction": "Imp", "source_type": "primary", "targetWeight": "2126" } }, { "key": "geid_107_2092", "source": "KenyaBritishEastAfricaProtectorate", "target": "NewZealand", "attributes": { "weight": 632, "sourceWeight": "632", "direction": "Imp", "source_type": "primary", "targetWeight": "632" } }, { "key": "geid_107_2093", "source": "BritishWestAfrica", "target": "NewZealand", "attributes": { "weight": 2909, "sourceWeight": "2909", "direction": "Imp", "source_type": "primary", "targetWeight": "2909" } }, { "key": "geid_107_2094", "source": "EgyptArabRepublicEgypt", "target": "NewZealand", "attributes": { "weight": 20210, "sourceWeight": "20210", "direction": "Imp", "source_type": "primary", "targetWeight": "20210" } }, { "key": "geid_107_2095", "source": "SouthAfrica", "target": "NewZealand", "attributes": { "weight": 89295, "sourceWeight": "89295", "direction": "Imp", "source_type": "primary", "targetWeight": "89295" } }, { "key": "geid_107_2096", "source": "Zanzibar", "target": "NewZealand", "attributes": { "weight": 1944, "sourceWeight": "1944", "direction": "Imp", "source_type": "primary", "targetWeight": "1944" } }, { "key": "geid_107_2097", "source": "GuyanaBritishGuiana", "target": "NewZealand", "attributes": { "weight": 229, "sourceWeight": "229", "direction": "Imp", "source_type": "primary", "targetWeight": "229" } }, { "key": "geid_107_2098", "source": "BelizeBritishHonduras", "target": "NewZealand", "attributes": { "weight": 320, "sourceWeight": "320", "direction": "Imp", "source_type": "primary", "targetWeight": "320" } }, { "key": "geid_107_2099", "source": "BritishWestIndies", "target": "NewZealand", "attributes": { "weight": 33424, "sourceWeight": "33424", "direction": "Imp", "source_type": "primary", "targetWeight": "33424" } }, { "key": "geid_107_2100", "source": "CanadaProvinceofCanada", "target": "NewZealand", "attributes": { "weight": 3914404, "sourceWeight": "3914404", "direction": "Imp", "source_type": "primary", "targetWeight": "3914404" } }, { "key": "geid_107_2101", "source": "NewfoundlandandLabradorNewfoundland", "target": "NewZealand", "attributes": { "weight": 112, "sourceWeight": "112", "direction": "Imp", "source_type": "primary", "targetWeight": "112" } }, { "key": "geid_107_2102", "source": "Australia", "target": "NewZealand", "attributes": { "weight": 5651027, "sourceWeight": "5651027", "direction": "Imp", "source_type": "primary", "targetWeight": "5651027" } }, { "key": "geid_107_2103", "source": "Fiji", "target": "NewZealand", "attributes": { "weight": 970393, "sourceWeight": "970393", "direction": "Imp", "source_type": "primary", "targetWeight": "970393" } }, { "key": "geid_107_2104", "source": "GilbertandElliceIs", "target": "NewZealand", "attributes": { "weight": 8223, "sourceWeight": "8223", "direction": "Imp", "source_type": "primary", "targetWeight": "8223" } }, { "key": "geid_107_2105", "source": "Nauru", "target": "NewZealand", "attributes": { "weight": 95828, "sourceWeight": "95828", "direction": "Imp", "source_type": "primary", "targetWeight": "95828" } }, { "key": "geid_107_2106", "source": "NewZealand", "target": "NewZealand", "attributes": { "weight": 45250, "sourceWeight": "45250", "direction": "Imp", "source_type": "primary", "targetWeight": "45250" } }, { "key": "geid_107_2107", "source": "NorfolkI", "target": "NewZealand", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Imp", "source_type": "primary", "targetWeight": "3" } }, { "key": "geid_107_2108", "source": "PapuaBritishNewGuinea", "target": "NewZealand", "attributes": { "weight": 22, "sourceWeight": "22", "direction": "Imp", "source_type": "primary", "targetWeight": "22" } }, { "key": "geid_107_2109", "source": "PitcairnIs", "target": "NewZealand", "attributes": { "weight": 7, "sourceWeight": "7", "direction": "Imp", "source_type": "primary", "targetWeight": "7" } }, { "key": "geid_107_2110", "source": "SolomonIslandsBritishSolomonIslandsProtectorate", "target": "NewZealand", "attributes": { "weight": 80, "sourceWeight": "80", "direction": "Imp", "source_type": "primary", "targetWeight": "80" } }, { "key": "geid_107_2111", "source": "TongaHaʻapai", "target": "NewZealand", "attributes": { "weight": 1489, "sourceWeight": "1489", "direction": "Imp", "source_type": "primary", "targetWeight": "1489" } }, { "key": "geid_107_2112", "source": "SamoaWesternSamoaGermanSamoa", "target": "NewZealand", "attributes": { "weight": 6140, "sourceWeight": "6140", "direction": "Imp", "source_type": "primary", "targetWeight": "6140" } }, { "key": "geid_107_2113", "source": "Austria", "target": "NewZealand", "attributes": { "weight": 14758, "sourceWeight": "14758", "direction": "Imp", "source_type": "primary", "targetWeight": "14758" } }, { "key": "geid_107_2114", "source": "Belgium", "target": "NewZealand", "attributes": { "weight": 273271, "sourceWeight": "273271", "direction": "Imp", "source_type": "primary", "targetWeight": "273271" } }, { "key": "geid_107_2115", "source": "Bulgaria", "target": "NewZealand", "attributes": { "weight": 19, "sourceWeight": "19", "direction": "Imp", "source_type": "primary", "targetWeight": "19" } }, { "key": "geid_107_2116", "source": "Czechoslovakia", "target": "NewZealand", "attributes": { "weight": 79912, "sourceWeight": "79912", "direction": "Imp", "source_type": "primary", "targetWeight": "79912" } }, { "key": "geid_107_2117", "source": "DanzigFreeCityofDanzig", "target": "NewZealand", "attributes": { "weight": 88, "sourceWeight": "88", "direction": "Imp", "source_type": "primary", "targetWeight": "88" } }, { "key": "geid_107_2118", "source": "Denmark", "target": "NewZealand", "attributes": { "weight": 104628, "sourceWeight": "104628", "direction": "Imp", "source_type": "primary", "targetWeight": "104628" } }, { "key": "geid_107_2119", "source": "Estonia", "target": "NewZealand", "attributes": { "weight": 451, "sourceWeight": "451", "direction": "Imp", "source_type": "primary", "targetWeight": "451" } }, { "key": "geid_107_2120", "source": "Finland", "target": "NewZealand", "attributes": { "weight": 4044, "sourceWeight": "4044", "direction": "Imp", "source_type": "primary", "targetWeight": "4044" } }, { "key": "geid_107_2121", "source": "France", "target": "NewZealand", "attributes": { "weight": 759076, "sourceWeight": "759076", "direction": "Imp", "source_type": "primary", "targetWeight": "759076" } }, { "key": "geid_107_2122", "source": "GermanyZollverein", "target": "NewZealand", "attributes": { "weight": 291764, "sourceWeight": "291764", "direction": "Imp", "source_type": "primary", "targetWeight": "291764" } }, { "key": "geid_107_2123", "source": "Greece", "target": "NewZealand", "attributes": { "weight": 16830, "sourceWeight": "16830", "direction": "Imp", "source_type": "primary", "targetWeight": "16830" } }, { "key": "geid_107_2124", "source": "Hungary", "target": "NewZealand", "attributes": { "weight": 1156, "sourceWeight": "1156", "direction": "Imp", "source_type": "primary", "targetWeight": "1156" } }, { "key": "geid_107_2125", "source": "Italy", "target": "NewZealand", "attributes": { "weight": 236286, "sourceWeight": "236286", "direction": "Imp", "source_type": "primary", "targetWeight": "236286" } }, { "key": "geid_107_2126", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "NewZealand", "attributes": { "weight": 1618, "sourceWeight": "1618", "direction": "Imp", "source_type": "primary", "targetWeight": "1618" } }, { "key": "geid_107_2127", "source": "Latvia", "target": "NewZealand", "attributes": { "weight": 979, "sourceWeight": "979", "direction": "Imp", "source_type": "primary", "targetWeight": "979" } }, { "key": "geid_107_2128", "source": "Lithuania", "target": "NewZealand", "attributes": { "weight": 98, "sourceWeight": "98", "direction": "Imp", "source_type": "primary", "targetWeight": "98" } }, { "key": "geid_107_2129", "source": "Luxemburg", "target": "NewZealand", "attributes": { "weight": 409, "sourceWeight": "409", "direction": "Imp", "source_type": "primary", "targetWeight": "409" } }, { "key": "geid_107_2130", "source": "Netherlands", "target": "NewZealand", "attributes": { "weight": 194247, "sourceWeight": "194247", "direction": "Imp", "source_type": "primary", "targetWeight": "194247" } }, { "key": "geid_107_2131", "source": "Norway", "target": "NewZealand", "attributes": { "weight": 69366, "sourceWeight": "69366", "direction": "Imp", "source_type": "primary", "targetWeight": "69366" } }, { "key": "geid_107_2132", "source": "Poland", "target": "NewZealand", "attributes": { "weight": 1995, "sourceWeight": "1995", "direction": "Imp", "source_type": "primary", "targetWeight": "1995" } }, { "key": "geid_107_2133", "source": "Portugal", "target": "NewZealand", "attributes": { "weight": 16167, "sourceWeight": "16167", "direction": "Imp", "source_type": "primary", "targetWeight": "16167" } }, { "key": "geid_107_2134", "source": "Romania", "target": "NewZealand", "attributes": { "weight": 132, "sourceWeight": "132", "direction": "Imp", "source_type": "primary", "targetWeight": "132" } }, { "key": "geid_107_2135", "source": "RussiaUSSR", "target": "NewZealand", "attributes": { "weight": 11074, "sourceWeight": "11074", "direction": "Imp", "source_type": "primary", "targetWeight": "11074" } }, { "key": "geid_107_2136", "source": "Spain", "target": "NewZealand", "attributes": { "weight": 31193, "sourceWeight": "31193", "direction": "Imp", "source_type": "primary", "targetWeight": "31193" } }, { "key": "geid_107_2137", "source": "Sweden", "target": "NewZealand", "attributes": { "weight": 269621, "sourceWeight": "269621", "direction": "Imp", "source_type": "primary", "targetWeight": "269621" } }, { "key": "geid_107_2138", "source": "Switzerland", "target": "NewZealand", "attributes": { "weight": 436898, "sourceWeight": "436898", "direction": "Imp", "source_type": "primary", "targetWeight": "436898" } }, { "key": "geid_107_2139", "source": "TurkeyOttomanEmpire", "target": "NewZealand", "attributes": { "weight": 8597, "sourceWeight": "8597", "direction": "Imp", "source_type": "primary", "targetWeight": "8597" } }, { "key": "geid_107_2140", "source": "AsianTurkey", "target": "NewZealand", "attributes": { "weight": 66202, "sourceWeight": "66202", "direction": "Imp", "source_type": "primary", "targetWeight": "66202" } }, { "key": "geid_107_2141", "source": "Caucasus", "target": "NewZealand", "attributes": { "weight": 45, "sourceWeight": "45", "direction": "Imp", "source_type": "primary", "targetWeight": "45" } }, { "key": "geid_107_2142", "source": "PeoplesRepublicofChinaChina", "target": "NewZealand", "attributes": { "weight": 117956, "sourceWeight": "117956", "direction": "Imp", "source_type": "primary", "targetWeight": "117956" } }, { "key": "geid_107_2143", "source": "CochinChina", "target": "NewZealand", "attributes": { "weight": 329, "sourceWeight": "329", "direction": "Imp", "source_type": "primary", "targetWeight": "329" } }, { "key": "geid_107_2144", "source": "IndonesiaDutchEastIndies", "target": "NewZealand", "attributes": { "weight": 1050155, "sourceWeight": "1050155", "direction": "Imp", "source_type": "primary", "targetWeight": "1050155" } }, { "key": "geid_107_2145", "source": "FrenchIndochina", "target": "NewZealand", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Imp", "source_type": "primary", "targetWeight": "14" } }, { "key": "geid_107_2146", "source": "Japan", "target": "NewZealand", "attributes": { "weight": 496835, "sourceWeight": "496835", "direction": "Imp", "source_type": "primary", "targetWeight": "496835" } }, { "key": "geid_107_2147", "source": "IranPersia", "target": "NewZealand", "attributes": { "weight": 3989, "sourceWeight": "3989", "direction": "Imp", "source_type": "primary", "targetWeight": "3989" } }, { "key": "geid_107_2148", "source": "Philippines", "target": "NewZealand", "attributes": { "weight": 31021, "sourceWeight": "31021", "direction": "Imp", "source_type": "primary", "targetWeight": "31021" } }, { "key": "geid_107_2149", "source": "ThailandSiam", "target": "NewZealand", "attributes": { "weight": 956, "sourceWeight": "956", "direction": "Imp", "source_type": "primary", "targetWeight": "956" } }, { "key": "geid_107_2150", "source": "Siberia", "target": "NewZealand", "attributes": { "weight": 58, "sourceWeight": "58", "direction": "Imp", "source_type": "primary", "targetWeight": "58" } }, { "key": "geid_107_2151", "source": "AlgeriaRegencyofAlgiers", "target": "NewZealand", "attributes": { "weight": 364, "sourceWeight": "364", "direction": "Imp", "source_type": "primary", "targetWeight": "364" } }, { "key": "geid_107_2152", "source": "CanaryIs", "target": "NewZealand", "attributes": { "weight": 140, "sourceWeight": "140", "direction": "Imp", "source_type": "primary", "targetWeight": "140" } }, { "key": "geid_107_2153", "source": "MadagascarMalagasyRepublic", "target": "NewZealand", "attributes": { "weight": 2354, "sourceWeight": "2354", "direction": "Imp", "source_type": "primary", "targetWeight": "2354" } }, { "key": "geid_107_2154", "source": "MadeiraIsles", "target": "NewZealand", "attributes": { "weight": 1701, "sourceWeight": "1701", "direction": "Imp", "source_type": "primary", "targetWeight": "1701" } }, { "key": "geid_107_2155", "source": "Morocco", "target": "NewZealand", "attributes": { "weight": 2112, "sourceWeight": "2112", "direction": "Imp", "source_type": "primary", "targetWeight": "2112" } }, { "key": "geid_107_2156", "source": "MozambiquePortugueseEastAfrica", "target": "NewZealand", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary", "targetWeight": "2" } }, { "key": "geid_107_2157", "source": "AngolaPortugueseWestAfrica", "target": "NewZealand", "attributes": { "weight": 309, "sourceWeight": "309", "direction": "Imp", "source_type": "primary", "targetWeight": "309" } }, { "key": "geid_107_2158", "source": "Alaska", "target": "NewZealand", "attributes": { "weight": 680, "sourceWeight": "680", "direction": "Imp", "source_type": "primary", "targetWeight": "680" } }, { "key": "geid_107_2159", "source": "ArgentinaLaPlata", "target": "NewZealand", "attributes": { "weight": 1845, "sourceWeight": "1845", "direction": "Imp", "source_type": "primary", "targetWeight": "1845" } }, { "key": "geid_107_2160", "source": "Brazil", "target": "NewZealand", "attributes": { "weight": 11678, "sourceWeight": "11678", "direction": "Imp", "source_type": "primary", "targetWeight": "11678" } }, { "key": "geid_107_2161", "source": "Chile", "target": "NewZealand", "attributes": { "weight": 10538, "sourceWeight": "10538", "direction": "Imp", "source_type": "primary", "targetWeight": "10538" } }, { "key": "geid_107_2162", "source": "CostaRica", "target": "NewZealand", "attributes": { "weight": 1354, "sourceWeight": "1354", "direction": "Imp", "source_type": "primary", "targetWeight": "1354" } }, { "key": "geid_107_2163", "source": "Cuba", "target": "NewZealand", "attributes": { "weight": 7001, "sourceWeight": "7001", "direction": "Imp", "source_type": "primary", "targetWeight": "7001" } }, { "key": "geid_107_2164", "source": "Ecuador", "target": "NewZealand", "attributes": { "weight": 3300, "sourceWeight": "3300", "direction": "Imp", "source_type": "primary", "targetWeight": "3300" } }, { "key": "geid_107_2165", "source": "Greenland", "target": "NewZealand", "attributes": { "weight": 57, "sourceWeight": "57", "direction": "Imp", "source_type": "primary", "targetWeight": "57" } }, { "key": "geid_107_2166", "source": "Mexico", "target": "NewZealand", "attributes": { "weight": 8683, "sourceWeight": "8683", "direction": "Imp", "source_type": "primary", "targetWeight": "8683" } }, { "key": "geid_107_2167", "source": "PanamaCanalZone", "target": "NewZealand", "attributes": { "weight": 62, "sourceWeight": "62", "direction": "Imp", "source_type": "primary", "targetWeight": "62" } }, { "key": "geid_107_2168", "source": "Paraguay", "target": "NewZealand", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary", "targetWeight": "2" } }, { "key": "geid_107_2169", "source": "Peru", "target": "NewZealand", "attributes": { "weight": 198190, "sourceWeight": "198190", "direction": "Imp", "source_type": "primary", "targetWeight": "198190" } }, { "key": "geid_107_2170", "source": "ElSalvador", "target": "NewZealand", "attributes": { "weight": 621, "sourceWeight": "621", "direction": "Imp", "source_type": "primary", "targetWeight": "621" } }, { "key": "geid_107_2171", "source": "UnitedStatesofAmerica", "target": "NewZealand", "attributes": { "weight": 7788593, "sourceWeight": "7788593", "direction": "Imp", "source_type": "primary", "targetWeight": "7788593" } }, { "key": "geid_107_2172", "source": "Venezuela", "target": "NewZealand", "attributes": { "weight": 2997, "sourceWeight": "2997", "direction": "Imp", "source_type": "primary", "targetWeight": "2997" } }, { "key": "geid_107_2173", "source": "HawaiiSandwichIs", "target": "NewZealand", "attributes": { "weight": 2335, "sourceWeight": "2335", "direction": "Imp", "source_type": "primary", "targetWeight": "2335" } }, { "key": "geid_107_2174", "source": "NewCaledoniaandDependencies", "target": "NewZealand", "attributes": { "weight": 21602, "sourceWeight": "21602", "direction": "Imp", "source_type": "primary", "targetWeight": "21602" } }, { "key": "geid_107_2175", "source": "VanuatuNewHebrides", "target": "NewZealand", "attributes": { "weight": 9655, "sourceWeight": "9655", "direction": "Imp", "source_type": "primary", "targetWeight": "9655" } }, { "key": "geid_107_2176", "source": "SocietyIs", "target": "NewZealand", "attributes": { "weight": 7393, "sourceWeight": "7393", "direction": "Imp", "source_type": "primary", "targetWeight": "7393" } }, { "key": "geid_107_2177", "source": "TuamotuIs", "target": "NewZealand", "attributes": { "weight": 665, "sourceWeight": "665", "direction": "Imp", "source_type": "primary", "targetWeight": "665" } }, { "key": "geid_107_2178", "source": "Tutuila", "target": "NewZealand", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Imp", "source_type": "primary", "targetWeight": "14" } }, { "key": "geid_107_2179", "source": "NewZealand", "target": "UnitedKingdom", "attributes": { "weight": 42038386, "sourceWeight": "42038386", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2180", "source": "NewZealand", "target": "Ireland", "attributes": { "weight": 256, "sourceWeight": "256", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2181", "source": "NewZealand", "target": "Malta", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2182", "source": "NewZealand", "target": "SabahNorthBorneo", "attributes": { "weight": 136, "sourceWeight": "136", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2183", "source": "NewZealand", "target": "Unknown", "attributes": { "weight": 32, "sourceWeight": "32", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2184", "source": "NewZealand", "target": "MyanmarBurma", "attributes": { "weight": 356, "sourceWeight": "356", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2185", "source": "NewZealand", "target": "SriLankaCeylon", "attributes": { "weight": 1111, "sourceWeight": "1111", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2186", "source": "NewZealand", "target": "Cyprus", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2187", "source": "NewZealand", "target": "HongKong", "attributes": { "weight": 13827, "sourceWeight": "13827", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2188", "source": "NewZealand", "target": "India", "attributes": { "weight": 495850, "sourceWeight": "495850", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2189", "source": "NewZealand", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 109, "sourceWeight": "109", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2190", "source": "NewZealand", "target": "StraitsSettlements", "attributes": { "weight": 17714, "sourceWeight": "17714", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2191", "source": "NewZealand", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 12, "sourceWeight": "12", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2192", "source": "NewZealand", "target": "KenyaBritishEastAfricaProtectorate", "attributes": { "weight": 151, "sourceWeight": "151", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2193", "source": "NewZealand", "target": "BritishWestAfrica", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2194", "source": "NewZealand", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 961, "sourceWeight": "961", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2195", "source": "NewZealand", "target": "Mauritius", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2196", "source": "NewZealand", "target": "StHelena", "attributes": { "weight": 164, "sourceWeight": "164", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2197", "source": "NewZealand", "target": "SouthAfrica", "attributes": { "weight": 28585, "sourceWeight": "28585", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2198", "source": "NewZealand", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 17, "sourceWeight": "17", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2199", "source": "NewZealand", "target": "GuyanaBritishGuiana", "attributes": { "weight": 11, "sourceWeight": "11", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2200", "source": "NewZealand", "target": "BritishWestIndies", "attributes": { "weight": 20, "sourceWeight": "20", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2201", "source": "NewZealand", "target": "CanadaProvinceofCanada", "attributes": { "weight": 716543, "sourceWeight": "716543", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2202", "source": "NewZealand", "target": "FalklandIs", "attributes": { "weight": 21, "sourceWeight": "21", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2203", "source": "NewZealand", "target": "Australia", "attributes": { "weight": 2509322, "sourceWeight": "2509322", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2204", "source": "NewZealand", "target": "FanningI", "attributes": { "weight": 1865, "sourceWeight": "1865", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2205", "source": "NewZealand", "target": "Fiji", "attributes": { "weight": 135768, "sourceWeight": "135768", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2206", "source": "NewZealand", "target": "GilbertandElliceIs", "attributes": { "weight": 157, "sourceWeight": "157", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2207", "source": "NewZealand", "target": "Nauru", "attributes": { "weight": 1468, "sourceWeight": "1468", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2208", "source": "NewZealand", "target": "NorfolkI", "attributes": { "weight": 155, "sourceWeight": "155", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2209", "source": "NewZealand", "target": "IndianOceanIslands", "attributes": { "weight": 2872, "sourceWeight": "2872", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2210", "source": "NewZealand", "target": "PapuaBritishNewGuinea", "attributes": { "weight": 157, "sourceWeight": "157", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2211", "source": "NewZealand", "target": "PitcairnIs", "attributes": { "weight": 201, "sourceWeight": "201", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2212", "source": "NewZealand", "target": "SolomonIslandsBritishSolomonIslandsProtectorate", "attributes": { "weight": 4827, "sourceWeight": "4827", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2213", "source": "NewZealand", "target": "TongaHaʻapai", "attributes": { "weight": 94095, "sourceWeight": "94095", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2214", "source": "NewZealand", "target": "SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 81841, "sourceWeight": "81841", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2215", "source": "NewZealand", "target": "Austria", "attributes": { "weight": 33, "sourceWeight": "33", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2216", "source": "NewZealand", "target": "Belgium", "attributes": { "weight": 107199, "sourceWeight": "107199", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2217", "source": "NewZealand", "target": "Czechoslovakia", "attributes": { "weight": 15, "sourceWeight": "15", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2218", "source": "NewZealand", "target": "Denmark", "attributes": { "weight": 313, "sourceWeight": "313", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2219", "source": "NewZealand", "target": "Finland", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2220", "source": "NewZealand", "target": "France", "attributes": { "weight": 561569, "sourceWeight": "561569", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2221", "source": "NewZealand", "target": "GermanyZollverein", "attributes": { "weight": 1166302, "sourceWeight": "1166302", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2222", "source": "NewZealand", "target": "Greece", "attributes": { "weight": 24, "sourceWeight": "24", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2223", "source": "NewZealand", "target": "Hungary", "attributes": { "weight": 7, "sourceWeight": "7", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2224", "source": "NewZealand", "target": "Italy", "attributes": { "weight": 401764, "sourceWeight": "401764", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2225", "source": "NewZealand", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 13, "sourceWeight": "13", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2226", "source": "NewZealand", "target": "Netherlands", "attributes": { "weight": 261759, "sourceWeight": "261759", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2227", "source": "NewZealand", "target": "Norway", "attributes": { "weight": 28, "sourceWeight": "28", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2228", "source": "NewZealand", "target": "Poland", "attributes": { "weight": 30, "sourceWeight": "30", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2229", "source": "NewZealand", "target": "Romania", "attributes": { "weight": 13, "sourceWeight": "13", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2230", "source": "NewZealand", "target": "RussiaUSSR", "attributes": { "weight": 9, "sourceWeight": "9", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2231", "source": "NewZealand", "target": "Spain", "attributes": { "weight": 179, "sourceWeight": "179", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2232", "source": "NewZealand", "target": "Sweden", "attributes": { "weight": 4418, "sourceWeight": "4418", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2233", "source": "NewZealand", "target": "Switzerland", "attributes": { "weight": 786, "sourceWeight": "786", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2234", "source": "NewZealand", "target": "AsianTurkey", "attributes": { "weight": 137, "sourceWeight": "137", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2235", "source": "NewZealand", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 22652, "sourceWeight": "22652", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2236", "source": "NewZealand", "target": "Japan", "attributes": { "weight": 330736, "sourceWeight": "330736", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2237", "source": "NewZealand", "target": "Java", "attributes": { "weight": 177, "sourceWeight": "177", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2238", "source": "NewZealand", "target": "IndonesiaDutchEastIndiesother", "attributes": { "weight": 7908, "sourceWeight": "7908", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2239", "source": "NewZealand", "target": "Philippines", "attributes": { "weight": 21299, "sourceWeight": "21299", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2240", "source": "NewZealand", "target": "ThailandSiam", "attributes": { "weight": 1823, "sourceWeight": "1823", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2241", "source": "NewZealand", "target": "Siberia", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2242", "source": "NewZealand", "target": "CanaryIs", "attributes": { "weight": 28, "sourceWeight": "28", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2243", "source": "NewZealand", "target": "MadeiraIsles", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2244", "source": "NewZealand", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 3762, "sourceWeight": "3762", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2245", "source": "NewZealand", "target": "TripolitaniaRegencyofTripoli", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2246", "source": "NewZealand", "target": "ArgentinaLaPlata", "attributes": { "weight": 11686, "sourceWeight": "11686", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2247", "source": "NewZealand", "target": "Brazil", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2248", "source": "NewZealand", "target": "Chile", "attributes": { "weight": 2365, "sourceWeight": "2365", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2249", "source": "NewZealand", "target": "Cuba", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2250", "source": "NewZealand", "target": "Mexico", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2251", "source": "NewZealand", "target": "PanamaCanalZone", "attributes": { "weight": 145, "sourceWeight": "145", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2252", "source": "NewZealand", "target": "Peru", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2253", "source": "NewZealand", "target": "UnitedStatesofAmerica", "attributes": { "weight": 3278135, "sourceWeight": "3278135", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2254", "source": "NewZealand", "target": "Uruguay", "attributes": { "weight": 27895, "sourceWeight": "27895", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2255", "source": "NewZealand", "target": "HawaiiSandwichIs", "attributes": { "weight": 170222, "sourceWeight": "170222", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2256", "source": "NewZealand", "target": "NewCaledoniaandDependencies", "attributes": { "weight": 3494, "sourceWeight": "3494", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2257", "source": "NewZealand", "target": "VanuatuNewHebrides", "attributes": { "weight": 1955, "sourceWeight": "1955", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2258", "source": "NewZealand", "target": "SocietyIs", "attributes": { "weight": 67227, "sourceWeight": "67227", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2259", "source": "NewZealand", "target": "TuamotuIs", "attributes": { "weight": 1694, "sourceWeight": "1694", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2260", "source": "NewZealand", "target": "Tutuila", "attributes": { "weight": 7882, "sourceWeight": "7882", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2261", "source": "UnitedKingdom", "target": "Cyprus", "attributes": { "weight": 315896, "sourceWeight": "315896", "direction": "Imp", "source_type": "primary", "targetWeight": "315896" } }, { "key": "geid_107_2262", "source": "Australia", "target": "Cyprus", "attributes": { "weight": 133211, "sourceWeight": "133211", "direction": "Imp", "source_type": "primary", "targetWeight": "133211" } }, { "key": "geid_107_2263", "source": "BritishEastIndies", "target": "Cyprus", "attributes": { "weight": 2259, "sourceWeight": "2259", "direction": "Imp", "source_type": "primary", "targetWeight": "2259" } }, { "key": "geid_107_2264", "source": "India", "target": "Cyprus", "attributes": { "weight": 60462, "sourceWeight": "60462", "direction": "Imp", "source_type": "primary", "targetWeight": "60462" } }, { "key": "geid_107_2265", "source": "CanadaProvinceofCanada", "target": "Cyprus", "attributes": { "weight": 3037, "sourceWeight": "3037", "direction": "Imp", "source_type": "primary", "targetWeight": "3037" } }, { "key": "geid_107_2266", "source": "Malta", "target": "Cyprus", "attributes": { "weight": 127, "sourceWeight": "127", "direction": "Imp", "source_type": "primary", "targetWeight": "127" } }, { "key": "geid_107_2267", "source": "BritishColoniesother", "target": "Cyprus", "attributes": { "weight": 595, "sourceWeight": "595", "direction": "Imp", "source_type": "primary", "targetWeight": "595" } }, { "key": "geid_107_2268", "source": "Austria", "target": "Cyprus", "attributes": { "weight": 14344, "sourceWeight": "14344", "direction": "Imp", "source_type": "primary", "targetWeight": "14344" } }, { "key": "geid_107_2269", "source": "Belgium", "target": "Cyprus", "attributes": { "weight": 31802, "sourceWeight": "31802", "direction": "Imp", "source_type": "primary", "targetWeight": "31802" } }, { "key": "geid_107_2270", "source": "Denmark", "target": "Cyprus", "attributes": { "weight": 2591, "sourceWeight": "2591", "direction": "Imp", "source_type": "primary", "targetWeight": "2591" } }, { "key": "geid_107_2271", "source": "France", "target": "Cyprus", "attributes": { "weight": 64922, "sourceWeight": "64922", "direction": "Imp", "source_type": "primary", "targetWeight": "64922" } }, { "key": "geid_107_2272", "source": "GermanyZollverein", "target": "Cyprus", "attributes": { "weight": 79842, "sourceWeight": "79842", "direction": "Imp", "source_type": "primary", "targetWeight": "79842" } }, { "key": "geid_107_2273", "source": "Greece", "target": "Cyprus", "attributes": { "weight": 68107, "sourceWeight": "68107", "direction": "Imp", "source_type": "primary", "targetWeight": "68107" } }, { "key": "geid_107_2274", "source": "Netherlands", "target": "Cyprus", "attributes": { "weight": 19789, "sourceWeight": "19789", "direction": "Imp", "source_type": "primary", "targetWeight": "19789" } }, { "key": "geid_107_2275", "source": "Italy", "target": "Cyprus", "attributes": { "weight": 82249, "sourceWeight": "82249", "direction": "Imp", "source_type": "primary", "targetWeight": "82249" } }, { "key": "geid_107_2276", "source": "Portugal", "target": "Cyprus", "attributes": { "weight": 1588, "sourceWeight": "1588", "direction": "Imp", "source_type": "primary", "targetWeight": "1588" } }, { "key": "geid_107_2277", "source": "Romania", "target": "Cyprus", "attributes": { "weight": 10186, "sourceWeight": "10186", "direction": "Imp", "source_type": "primary", "targetWeight": "10186" } }, { "key": "geid_107_2278", "source": "Spain", "target": "Cyprus", "attributes": { "weight": 352, "sourceWeight": "352", "direction": "Imp", "source_type": "primary", "targetWeight": "352" } }, { "key": "geid_107_2279", "source": "Sweden", "target": "Cyprus", "attributes": { "weight": 8758, "sourceWeight": "8758", "direction": "Imp", "source_type": "primary", "targetWeight": "8758" } }, { "key": "geid_107_2280", "source": "Switzerland", "target": "Cyprus", "attributes": { "weight": 12283, "sourceWeight": "12283", "direction": "Imp", "source_type": "primary", "targetWeight": "12283" } }, { "key": "geid_107_2281", "source": "IranPersia", "target": "Cyprus", "attributes": { "weight": 5432, "sourceWeight": "5432", "direction": "Imp", "source_type": "primary", "targetWeight": "5432" } }, { "key": "geid_107_2282", "source": "TurkeyOttomanEmpire", "target": "Cyprus", "attributes": { "weight": 22841, "sourceWeight": "22841", "direction": "Imp", "source_type": "primary", "targetWeight": "22841" } }, { "key": "geid_107_2283", "source": "EgyptArabRepublicEgypt", "target": "Cyprus", "attributes": { "weight": 78274, "sourceWeight": "78274", "direction": "Imp", "source_type": "primary", "targetWeight": "78274" } }, { "key": "geid_107_2284", "source": "Brazil", "target": "Cyprus", "attributes": { "weight": 17220, "sourceWeight": "17220", "direction": "Imp", "source_type": "primary", "targetWeight": "17220" } }, { "key": "geid_107_2285", "source": "UnitedStatesofAmerica", "target": "Cyprus", "attributes": { "weight": 84863, "sourceWeight": "84863", "direction": "Imp", "source_type": "primary", "targetWeight": "84863" } }, { "key": "geid_107_2286", "source": "Othercountries", "target": "Cyprus", "attributes": { "weight": 123746, "sourceWeight": "123746", "direction": "Imp", "source_type": "primary", "targetWeight": "123746" } }, { "key": "geid_107_2287", "source": "Cyprus", "target": "UnitedKingdom", "attributes": { "weight": 302544, "sourceWeight": "302544", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2288", "source": "Cyprus", "target": "Australia", "attributes": { "weight": 324, "sourceWeight": "324", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2289", "source": "Cyprus", "target": "BritishEastIndies", "attributes": { "weight": 38, "sourceWeight": "38", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2290", "source": "Cyprus", "target": "India", "attributes": { "weight": 145, "sourceWeight": "145", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2291", "source": "Cyprus", "target": "CanadaProvinceofCanada", "attributes": { "weight": 201, "sourceWeight": "201", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2292", "source": "Cyprus", "target": "Malta", "attributes": { "weight": 3592, "sourceWeight": "3592", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2293", "source": "Cyprus", "target": "BritishColoniesother", "attributes": { "weight": 7869, "sourceWeight": "7869", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2294", "source": "Cyprus", "target": "Austria", "attributes": { "weight": 207, "sourceWeight": "207", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2295", "source": "Cyprus", "target": "Belgium", "attributes": { "weight": 33529, "sourceWeight": "33529", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2296", "source": "Cyprus", "target": "France", "attributes": { "weight": 73598, "sourceWeight": "73598", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2297", "source": "Cyprus", "target": "GermanyZollverein", "attributes": { "weight": 64810, "sourceWeight": "64810", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2298", "source": "Cyprus", "target": "Greece", "attributes": { "weight": 199300, "sourceWeight": "199300", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2299", "source": "Cyprus", "target": "Netherlands", "attributes": { "weight": 11529, "sourceWeight": "11529", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2300", "source": "Cyprus", "target": "Italy", "attributes": { "weight": 171155, "sourceWeight": "171155", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2301", "source": "Cyprus", "target": "Portugal", "attributes": { "weight": 52, "sourceWeight": "52", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2302", "source": "Cyprus", "target": "Romania", "attributes": { "weight": 7536, "sourceWeight": "7536", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2303", "source": "Cyprus", "target": "Spain", "attributes": { "weight": 23638, "sourceWeight": "23638", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2304", "source": "Cyprus", "target": "Sweden", "attributes": { "weight": 807, "sourceWeight": "807", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2305", "source": "Cyprus", "target": "Switzerland", "attributes": { "weight": 367, "sourceWeight": "367", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2306", "source": "Cyprus", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 13996, "sourceWeight": "13996", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2307", "source": "Cyprus", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 273729, "sourceWeight": "273729", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2308", "source": "Cyprus", "target": "UnitedStatesofAmerica", "attributes": { "weight": 21080, "sourceWeight": "21080", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2309", "source": "Cyprus", "target": "Othercountries", "attributes": { "weight": 62686, "sourceWeight": "62686", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2310", "source": "GermanyZollverein", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 1911401.5, "sourceWeight": "1911401.5", "direction": "Imp", "source_type": "primary", "targetWeight": "1911401.5" } }, { "key": "geid_107_2311", "source": "Austria", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 208308.2, "sourceWeight": "208308.2", "direction": "Imp", "source_type": "primary", "targetWeight": "208308.2" } }, { "key": "geid_107_2312", "source": "Belgium", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 876294.3, "sourceWeight": "876294.3", "direction": "Imp", "source_type": "primary", "targetWeight": "876294.3" } }, { "key": "geid_107_2313", "source": "Bulgaria", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 357491.1, "sourceWeight": "357491.1", "direction": "Imp", "source_type": "primary", "targetWeight": "357491.1" } }, { "key": "geid_107_2314", "source": "Czechoslovakia", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 610393.2, "sourceWeight": "610393.2", "direction": "Imp", "source_type": "primary", "targetWeight": "610393.2" } }, { "key": "geid_107_2315", "source": "France", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 1830247.3, "sourceWeight": "1830247.3", "direction": "Imp", "source_type": "primary", "targetWeight": "1830247.3" } }, { "key": "geid_107_2316", "source": "Netherlands", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 639381.9, "sourceWeight": "639381.9", "direction": "Imp", "source_type": "primary", "targetWeight": "639381.9" } }, { "key": "geid_107_2317", "source": "UnitedKingdom", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 3427819, "sourceWeight": "3427819", "direction": "Imp", "source_type": "primary", "targetWeight": "3427819" } }, { "key": "geid_107_2318", "source": "Spain", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 8870.6, "sourceWeight": "8870.6", "direction": "Imp", "source_type": "primary", "targetWeight": "8870.6" } }, { "key": "geid_107_2319", "source": "Sweden", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 16847.4, "sourceWeight": "16847.4", "direction": "Imp", "source_type": "primary", "targetWeight": "16847.4" } }, { "key": "geid_107_2320", "source": "Switzerland", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 76531.3, "sourceWeight": "76531.3", "direction": "Imp", "source_type": "primary", "targetWeight": "76531.3" } }, { "key": "geid_107_2321", "source": "Italy", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 4098396, "sourceWeight": "4098396", "direction": "Imp", "source_type": "primary", "targetWeight": "4098396" } }, { "key": "geid_107_2322", "source": "DanzigFreeCityofDanzig_Poland", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 8159.4, "sourceWeight": "8159.4", "direction": "Imp", "source_type": "primary", "targetWeight": "8159.4" } }, { "key": "geid_107_2323", "source": "Hungary", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 24724.5, "sourceWeight": "24724.5", "direction": "Imp", "source_type": "primary", "targetWeight": "24724.5" } }, { "key": "geid_107_2324", "source": "Romania", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 1016517.1, "sourceWeight": "1016517.1", "direction": "Imp", "source_type": "primary", "targetWeight": "1016517.1" } }, { "key": "geid_107_2325", "source": "RussiaUSSR", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 636930.7, "sourceWeight": "636930.7", "direction": "Imp", "source_type": "primary", "targetWeight": "636930.7" } }, { "key": "geid_107_2326", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 46225.3, "sourceWeight": "46225.3", "direction": "Imp", "source_type": "primary", "targetWeight": "46225.3" } }, { "key": "geid_107_2327", "source": "Greece", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 123562.6, "sourceWeight": "123562.6", "direction": "Imp", "source_type": "primary", "targetWeight": "123562.6" } }, { "key": "geid_107_2328", "source": "India", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 157944.9, "sourceWeight": "157944.9", "direction": "Imp", "source_type": "primary", "targetWeight": "157944.9" } }, { "key": "geid_107_2329", "source": "IranPersia", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 83824.7, "sourceWeight": "83824.7", "direction": "Imp", "source_type": "primary", "targetWeight": "83824.7" } }, { "key": "geid_107_2330", "source": "IraqMesopotamia", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 49162.1, "sourceWeight": "49162.1", "direction": "Imp", "source_type": "primary", "targetWeight": "49162.1" } }, { "key": "geid_107_2331", "source": "Japan", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 305680.6, "sourceWeight": "305680.6", "direction": "Imp", "source_type": "primary", "targetWeight": "305680.6" } }, { "key": "geid_107_2332", "source": "Syria", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 752693, "sourceWeight": "752693", "direction": "Imp", "source_type": "primary", "targetWeight": "752693" } }, { "key": "geid_107_2333", "source": "EgyptArabRepublicEgypt", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 717136.1, "sourceWeight": "717136.1", "direction": "Imp", "source_type": "primary", "targetWeight": "717136.1" } }, { "key": "geid_107_2334", "source": "UnitedStatesofAmerica", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 1137788.4, "sourceWeight": "1137788.4", "direction": "Imp", "source_type": "primary", "targetWeight": "1137788.4" } }, { "key": "geid_107_2335", "source": "Othercountries", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 184320, "sourceWeight": "184320", "direction": "Imp", "source_type": "primary", "targetWeight": "184320" } }, { "key": "geid_107_2336", "source": "Unknown", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 54453.6, "sourceWeight": "54453.6", "direction": "Imp", "source_type": "primary", "targetWeight": "54453.6" } }, { "key": "geid_107_2337", "source": "TurkeyOttomanEmpire", "target": "GermanyZollverein", "attributes": { "weight": 2055113.6, "sourceWeight": "2055113.6", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2338", "source": "TurkeyOttomanEmpire", "target": "Austria", "attributes": { "weight": 212.7, "sourceWeight": "212.7", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2339", "source": "TurkeyOttomanEmpire", "target": "Belgium", "attributes": { "weight": 373167.3, "sourceWeight": "373167.3", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2340", "source": "TurkeyOttomanEmpire", "target": "Bulgaria", "attributes": { "weight": 154307.7, "sourceWeight": "154307.7", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2341", "source": "TurkeyOttomanEmpire", "target": "Czechoslovakia", "attributes": { "weight": 4807.3, "sourceWeight": "4807.3", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2342", "source": "TurkeyOttomanEmpire", "target": "France", "attributes": { "weight": 1878642.1, "sourceWeight": "1878642.1", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2343", "source": "TurkeyOttomanEmpire", "target": "Netherlands", "attributes": { "weight": 934892.3, "sourceWeight": "934892.3", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2344", "source": "TurkeyOttomanEmpire", "target": "UnitedKingdom", "attributes": { "weight": 2328180.8, "sourceWeight": "2328180.8", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2345", "source": "TurkeyOttomanEmpire", "target": "Spain", "attributes": { "weight": 2376.9, "sourceWeight": "2376.9", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2346", "source": "TurkeyOttomanEmpire", "target": "Sweden", "attributes": { "weight": 4055.7, "sourceWeight": "4055.7", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2347", "source": "TurkeyOttomanEmpire", "target": "Switzerland", "attributes": { "weight": 4469.2, "sourceWeight": "4469.2", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2348", "source": "TurkeyOttomanEmpire", "target": "Italy", "attributes": { "weight": 3488376.4, "sourceWeight": "3488376.4", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2349", "source": "TurkeyOttomanEmpire", "target": "Romania", "attributes": { "weight": 198369.6, "sourceWeight": "198369.6", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2350", "source": "TurkeyOttomanEmpire", "target": "RussiaUSSR", "attributes": { "weight": 200532.3, "sourceWeight": "200532.3", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2351", "source": "TurkeyOttomanEmpire", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 27301.8, "sourceWeight": "27301.8", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2352", "source": "TurkeyOttomanEmpire", "target": "Greece", "attributes": { "weight": 831888.7, "sourceWeight": "831888.7", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2353", "source": "TurkeyOttomanEmpire", "target": "India", "attributes": { "weight": 276.1, "sourceWeight": "276.1", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2354", "source": "TurkeyOttomanEmpire", "target": "IranPersia", "attributes": { "weight": 21719.7, "sourceWeight": "21719.7", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2355", "source": "TurkeyOttomanEmpire", "target": "IraqMesopotamia", "attributes": { "weight": 20036.8, "sourceWeight": "20036.8", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2356", "source": "TurkeyOttomanEmpire", "target": "Japan", "attributes": { "weight": 6000, "sourceWeight": "6000", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2357", "source": "TurkeyOttomanEmpire", "target": "Syria", "attributes": { "weight": 924313.8, "sourceWeight": "924313.8", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2358", "source": "TurkeyOttomanEmpire", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 483063.8, "sourceWeight": "483063.8", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2359", "source": "TurkeyOttomanEmpire", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1639160.4, "sourceWeight": "1639160.4", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2360", "source": "TurkeyOttomanEmpire", "target": "Othercountries", "attributes": { "weight": 135923.1, "sourceWeight": "135923.1", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2361", "source": "TurkeyOttomanEmpire", "target": "Unknown", "attributes": { "weight": 169607.7, "sourceWeight": "169607.7", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2362", "source": "Albania", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 15031.737075599818, "sourceWeight": "15031.737075599818", "direction": "Imp", "source_type": "primary", "targetWeight": "15031.737075599818" } }, { "key": "geid_107_2363", "source": "GermanyZollverein", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 1976273.302308737, "sourceWeight": "1976273.302308737", "direction": "Imp", "source_type": "primary", "targetWeight": "1976273.302308737" } }, { "key": "geid_107_2364", "source": "Austria", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 4710364.8825713, "sourceWeight": "4710364.8825713", "direction": "Imp", "source_type": "primary", "targetWeight": "4710364.8825713" } }, { "key": "geid_107_2365", "source": "Belgium", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 111022.39927569036, "sourceWeight": "111022.39927569036", "direction": "Imp", "source_type": "primary", "targetWeight": "111022.39927569036" } }, { "key": "geid_107_2366", "source": "Bulgaria", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 21860.001086464465, "sourceWeight": "21860.001086464465", "direction": "Imp", "source_type": "primary", "targetWeight": "21860.001086464465" } }, { "key": "geid_107_2367", "source": "UnitedKingdom", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 2533466.0200995924, "sourceWeight": "2533466.0200995924", "direction": "Imp", "source_type": "primary", "targetWeight": "2533466.0200995924" } }, { "key": "geid_107_2368", "source": "Greece", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 769062.5941149842, "sourceWeight": "769062.5941149842", "direction": "Imp", "source_type": "primary", "targetWeight": "769062.5941149842" } }, { "key": "geid_107_2369", "source": "Denmark", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 43093.0513354459, "sourceWeight": "43093.0513354459", "direction": "Imp", "source_type": "primary", "targetWeight": "43093.0513354459" } }, { "key": "geid_107_2370", "source": "Estonia", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 1.6224535989135356, "sourceWeight": "1.6224535989135356", "direction": "Imp", "source_type": "primary", "targetWeight": "1.6224535989135356" } }, { "key": "geid_107_2371", "source": "Italy", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 4889345.567406066, "sourceWeight": "4889345.567406066", "direction": "Imp", "source_type": "primary", "targetWeight": "4889345.567406066" } }, { "key": "geid_107_2372", "source": "Latvia", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 8.691715708465368, "sourceWeight": "8.691715708465368", "direction": "Imp", "source_type": "primary", "targetWeight": "8.691715708465368" } }, { "key": "geid_107_2373", "source": "Lithuania", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 7.866002716161159, "sourceWeight": "7.866002716161159", "direction": "Imp", "source_type": "primary", "targetWeight": "7.866002716161159" } }, { "key": "geid_107_2374", "source": "Hungary", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 690281.502942508, "sourceWeight": "690281.502942508", "direction": "Imp", "source_type": "primary", "targetWeight": "690281.502942508" } }, { "key": "geid_107_2375", "source": "Netherlands", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 214378.4532367587, "sourceWeight": "214378.4532367587", "direction": "Imp", "source_type": "primary", "targetWeight": "214378.4532367587" } }, { "key": "geid_107_2376", "source": "Norway", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 41948.456677229515, "sourceWeight": "41948.456677229515", "direction": "Imp", "source_type": "primary", "targetWeight": "41948.456677229515" } }, { "key": "geid_107_2377", "source": "Poland", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 110852.32267994568, "sourceWeight": "110852.32267994568", "direction": "Imp", "source_type": "primary", "targetWeight": "110852.32267994568" } }, { "key": "geid_107_2378", "source": "Portugal", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 10225.473245812585, "sourceWeight": "10225.473245812585", "direction": "Imp", "source_type": "primary", "targetWeight": "10225.473245812585" } }, { "key": "geid_107_2379", "source": "Romania", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 530371.0536894522, "sourceWeight": "530371.0536894522", "direction": "Imp", "source_type": "primary", "targetWeight": "530371.0536894522" } }, { "key": "geid_107_2380", "source": "RussiaUSSR", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 23677.05930285197, "sourceWeight": "23677.05930285197", "direction": "Imp", "source_type": "primary", "targetWeight": "23677.05930285197" } }, { "key": "geid_107_2381", "source": "TurkeyOttomanEmpire", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 14990.132729741965, "sourceWeight": "14990.132729741965", "direction": "Imp", "source_type": "primary", "targetWeight": "14990.132729741965" } }, { "key": "geid_107_2382", "source": "Finland", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 28.7116342236306, "sourceWeight": "28.7116342236306", "direction": "Imp", "source_type": "primary", "targetWeight": "28.7116342236306" } }, { "key": "geid_107_2383", "source": "France", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 800723.2289723856, "sourceWeight": "800723.2289723856", "direction": "Imp", "source_type": "primary", "targetWeight": "800723.2289723856" } }, { "key": "geid_107_2384", "source": "Czechoslovakia", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 4779807.232231779, "sourceWeight": "4779807.232231779", "direction": "Imp", "source_type": "primary", "targetWeight": "4779807.232231779" } }, { "key": "geid_107_2385", "source": "Switzerland", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 182360.7076505206, "sourceWeight": "182360.7076505206", "direction": "Imp", "source_type": "primary", "targetWeight": "182360.7076505206" } }, { "key": "geid_107_2386", "source": "Sweden", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 19084.18578542327, "sourceWeight": "19084.18578542327", "direction": "Imp", "source_type": "primary", "targetWeight": "19084.18578542327" } }, { "key": "geid_107_2387", "source": "Spain", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 22718.223992756903, "sourceWeight": "22718.223992756903", "direction": "Imp", "source_type": "primary", "targetWeight": "22718.223992756903" } }, { "key": "geid_107_2388", "source": "PeoplesRepublicofChinaChina", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 5117.024535989135, "sourceWeight": "5117.024535989135", "direction": "Imp", "source_type": "primary", "targetWeight": "5117.024535989135" } }, { "key": "geid_107_2389", "source": "India", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 227720.08329560887, "sourceWeight": "227720.08329560887", "direction": "Imp", "source_type": "primary", "targetWeight": "227720.08329560887" } }, { "key": "geid_107_2390", "source": "IranPersia", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 3678.844001810774, "sourceWeight": "3678.844001810774", "direction": "Imp", "source_type": "primary", "targetWeight": "3678.844001810774" } }, { "key": "geid_107_2391", "source": "Japan", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 460.7768220914441, "sourceWeight": "460.7768220914441", "direction": "Imp", "source_type": "primary", "targetWeight": "460.7768220914441" } }, { "key": "geid_107_2392", "source": "Palestine", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 8.401991851516524, "sourceWeight": "8.401991851516524", "direction": "Imp", "source_type": "primary", "targetWeight": "8.401991851516524" } }, { "key": "geid_107_2393", "source": "Syria", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 28.537799909461295, "sourceWeight": "28.537799909461295", "direction": "Imp", "source_type": "primary", "targetWeight": "28.537799909461295" } }, { "key": "geid_107_2394", "source": "AlgeriaRegencyofAlgiers", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 4721.835400633771, "sourceWeight": "4721.835400633771", "direction": "Imp", "source_type": "primary", "targetWeight": "4721.835400633771" } }, { "key": "geid_107_2395", "source": "EgyptArabRepublicEgypt", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 32863.50746944319, "sourceWeight": "32863.50746944319", "direction": "Imp", "source_type": "primary", "targetWeight": "32863.50746944319" } }, { "key": "geid_107_2396", "source": "TunisiaRegencyofTunis", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 0.2897238569488456, "sourceWeight": "0.2897238569488456", "direction": "Imp", "source_type": "primary", "targetWeight": "0.2897238569488456" } }, { "key": "geid_107_2397", "source": "CanadaProvinceofCanada", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 24.872793119058397, "sourceWeight": "24.872793119058397", "direction": "Imp", "source_type": "primary", "targetWeight": "24.872793119058397" } }, { "key": "geid_107_2398", "source": "UnitedStatesofAmerica", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 929657.8259846084, "sourceWeight": "929657.8259846084", "direction": "Imp", "source_type": "primary", "targetWeight": "929657.8259846084" } }, { "key": "geid_107_2399", "source": "Mexico", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 175.75808057944772, "sourceWeight": "175.75808057944772", "direction": "Imp", "source_type": "primary", "targetWeight": "175.75808057944772" } }, { "key": "geid_107_2400", "source": "ArgentinaLaPlata", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 39496.75255771843, "sourceWeight": "39496.75255771843", "direction": "Imp", "source_type": "primary", "targetWeight": "39496.75255771843" } }, { "key": "geid_107_2401", "source": "Brazil", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 62458.06355817112, "sourceWeight": "62458.06355817112", "direction": "Imp", "source_type": "primary", "targetWeight": "62458.06355817112" } }, { "key": "geid_107_2402", "source": "Venezuela", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 8.691715708465368, "sourceWeight": "8.691715708465368", "direction": "Imp", "source_type": "primary", "targetWeight": "8.691715708465368" } }, { "key": "geid_107_2403", "source": "Uruguay", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 2709.6423721140786, "sourceWeight": "2709.6423721140786", "direction": "Imp", "source_type": "primary", "targetWeight": "2709.6423721140786" } }, { "key": "geid_107_2404", "source": "Chile", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 197.01222272521503, "sourceWeight": "197.01222272521503", "direction": "Imp", "source_type": "primary", "targetWeight": "197.01222272521503" } }, { "key": "geid_107_2405", "source": "Unknown", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 40.12675418741512, "sourceWeight": "40.12675418741512", "direction": "Imp", "source_type": "primary", "targetWeight": "40.12675418741512" } }, { "key": "geid_107_2406", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Albania", "attributes": { "weight": 54401.86871887732, "sourceWeight": "54401.86871887732", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2407", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 38594.416296966956, "sourceWeight": "38594.416296966956", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2408", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "ArgentinaLaPlata", "attributes": { "weight": 21656.19194205523, "sourceWeight": "21656.19194205523", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2409", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Austria", "attributes": { "weight": 6759173.878497058, "sourceWeight": "6759173.878497058", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2410", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Belgium", "attributes": { "weight": 67059.76785875962, "sourceWeight": "67059.76785875962", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2411", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Brazil", "attributes": { "weight": 1676.0322317790856, "sourceWeight": "1676.0322317790856", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2412", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Bulgaria", "attributes": { "weight": 315049.0306926211, "sourceWeight": "315049.0306926211", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2413", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Greece", "attributes": { "weight": 1959023.9985513808, "sourceWeight": "1959023.9985513808", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2414", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Denmark", "attributes": { "weight": 3502.7614305115435, "sourceWeight": "3502.7614305115435", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2415", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 320352.4925305568, "sourceWeight": "320352.4925305568", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2416", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "UnitedKingdom", "attributes": { "weight": 381072.17818017205, "sourceWeight": "381072.17818017205", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2417", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "India", "attributes": { "weight": 48936.1760072431, "sourceWeight": "48936.1760072431", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2418", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Italy", "attributes": { "weight": 7988570.863196016, "sourceWeight": "7988570.863196016", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2419", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Japan", "attributes": { "weight": 2668.7536441828884, "sourceWeight": "2668.7536441828884", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2420", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "CanadaProvinceofCanada", "attributes": { "weight": 24.84382073336351, "sourceWeight": "24.84382073336351", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2421", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 2566.4376641014032, "sourceWeight": "2566.4376641014032", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2422", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Lithuania", "attributes": { "weight": 24.220914440923494, "sourceWeight": "24.220914440923494", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2423", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Hungary", "attributes": { "weight": 2190698.7980081486, "sourceWeight": "2190698.7980081486", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2424", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Malta", "attributes": { "weight": 3158.569488456315, "sourceWeight": "3158.569488456315", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2425", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Morocco", "attributes": { "weight": 12927.246717971933, "sourceWeight": "12927.246717971933", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2426", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "GermanyZollverein", "attributes": { "weight": 1126916.8036215482, "sourceWeight": "1126916.8036215482", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2427", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Norway", "attributes": { "weight": 532.3675871435039, "sourceWeight": "532.3675871435039", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2428", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Palestine", "attributes": { "weight": 550.0407424173834, "sourceWeight": "550.0407424173834", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2429", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Poland", "attributes": { "weight": 60159.34522408329, "sourceWeight": "60159.34522408329", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2430", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Portugal", "attributes": { "weight": 19294.507922136712, "sourceWeight": "19294.507922136712", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2431", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Romania", "attributes": { "weight": 731911.4372114079, "sourceWeight": "731911.4372114079", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2432", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "RussiaUSSR", "attributes": { "weight": 2817.376188320507, "sourceWeight": "2817.376188320507", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2433", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Syria", "attributes": { "weight": 6826.687913082843, "sourceWeight": "6826.687913082843", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2434", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "UnitedStatesofAmerica", "attributes": { "weight": 146637.9965595292, "sourceWeight": "146637.9965595292", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2435", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "TripolitaniaRegencyofTripoli", "attributes": { "weight": 11780.933997283839, "sourceWeight": "11780.933997283839", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2436", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 16443.56722498868, "sourceWeight": "16443.56722498868", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2437", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 294889.88827523764, "sourceWeight": "294889.88827523764", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2438", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Finland", "attributes": { "weight": 135.99637845178813, "sourceWeight": "135.99637845178813", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2439", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "France", "attributes": { "weight": 1051333.4207333636, "sourceWeight": "1051333.4207333636", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2440", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Netherlands", "attributes": { "weight": 106157.79375282934, "sourceWeight": "106157.79375282934", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2441", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Czechoslovakia", "attributes": { "weight": 2734260.5906745135, "sourceWeight": "2734260.5906745135", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2442", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Chile", "attributes": { "weight": 0.3042100497962879, "sourceWeight": "0.3042100497962879", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2443", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Switzerland", "attributes": { "weight": 1128631.0388411046, "sourceWeight": "1128631.0388411046", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2444", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Sweden", "attributes": { "weight": 1293.660479855138, "sourceWeight": "1293.660479855138", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2445", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Spain", "attributes": { "weight": 24392.90611136261, "sourceWeight": "24392.90611136261", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2446", "source": "Albania", "target": "UnitedKingdom", "attributes": { "weight": 111.41950832672482, "sourceWeight": "111.41950832672482", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2447", "source": "Albania", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 422.28390166534496, "sourceWeight": "422.28390166534496", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2448", "source": "Albania", "target": "Greece", "attributes": { "weight": 135797.54163362412, "sourceWeight": "135797.54163362412", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2449", "source": "Albania", "target": "Italy", "attributes": { "weight": 252901.07057890564, "sourceWeight": "252901.07057890564", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2450", "source": "Albania", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 12168.358445678034, "sourceWeight": "12168.358445678034", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2451", "source": "Albania", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 21.015067406819984, "sourceWeight": "21.015067406819984", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2452", "source": "Albania", "target": "UnitedStatesofAmerica", "attributes": { "weight": 89435.1704996035, "sourceWeight": "89435.1704996035", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2453", "source": "UnitedKingdom", "target": "Albania", "attributes": { "weight": 816.4948453608248, "sourceWeight": "816.4948453608248", "direction": "Imp", "source_type": "primary", "targetWeight": "816.4948453608248" } }, { "key": "geid_107_2454", "source": "Austria", "target": "Albania", "attributes": { "weight": 809.4766058683584, "sourceWeight": "809.4766058683584", "direction": "Imp", "source_type": "primary", "targetWeight": "809.4766058683584" } }, { "key": "geid_107_2455", "source": "Bulgaria", "target": "Albania", "attributes": { "weight": 9941.673275178431, "sourceWeight": "9941.673275178431", "direction": "Imp", "source_type": "primary", "targetWeight": "9941.673275178431" } }, { "key": "geid_107_2456", "source": "EgyptArabRepublicEgypt", "target": "Albania", "attributes": { "weight": 148.6915146708961, "sourceWeight": "148.6915146708961", "direction": "Imp", "source_type": "primary", "targetWeight": "148.6915146708961" } }, { "key": "geid_107_2457", "source": "France", "target": "Albania", "attributes": { "weight": 951.8239492466297, "sourceWeight": "951.8239492466297", "direction": "Imp", "source_type": "primary", "targetWeight": "951.8239492466297" } }, { "key": "geid_107_2458", "source": "GermanyZollverein", "target": "Albania", "attributes": { "weight": 197.30372720063443, "sourceWeight": "197.30372720063443", "direction": "Imp", "source_type": "primary", "targetWeight": "197.30372720063443" } }, { "key": "geid_107_2459", "source": "Greece", "target": "Albania", "attributes": { "weight": 154591.63362410787, "sourceWeight": "154591.63362410787", "direction": "Imp", "source_type": "primary", "targetWeight": "154591.63362410787" } }, { "key": "geid_107_2460", "source": "Italy", "target": "Albania", "attributes": { "weight": 613121.4512291832, "sourceWeight": "613121.4512291832", "direction": "Imp", "source_type": "primary", "targetWeight": "613121.4512291832" } }, { "key": "geid_107_2461", "source": "Japan", "target": "Albania", "attributes": { "weight": 89.21490880253768, "sourceWeight": "89.21490880253768", "direction": "Imp", "source_type": "primary", "targetWeight": "89.21490880253768" } }, { "key": "geid_107_2462", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Albania", "attributes": { "weight": 21972.12529738303, "sourceWeight": "21972.12529738303", "direction": "Imp", "source_type": "primary", "targetWeight": "21972.12529738303" } }, { "key": "geid_107_2463", "source": "Romania", "target": "Albania", "attributes": { "weight": 157.81126090404442, "sourceWeight": "157.81126090404442", "direction": "Imp", "source_type": "primary", "targetWeight": "157.81126090404442" } }, { "key": "geid_107_2464", "source": "UnitedStatesofAmerica", "target": "Albania", "attributes": { "weight": 5405.947660586836, "sourceWeight": "5405.947660586836", "direction": "Imp", "source_type": "primary", "targetWeight": "5405.947660586836" } }, { "key": "geid_107_2465", "source": "TurkeyOttomanEmpire", "target": "Albania", "attributes": { "weight": 3306.5820777160984, "sourceWeight": "3306.5820777160984", "direction": "Imp", "source_type": "primary", "targetWeight": "3306.5820777160984" } }, { "key": "geid_107_2466", "source": "Sweden", "target": "Albania", "attributes": { "weight": 878.7866772402855, "sourceWeight": "878.7866772402855", "direction": "Imp", "source_type": "primary", "targetWeight": "878.7866772402855" } }, { "key": "geid_107_2467", "source": "Othercountries", "target": "Albania", "attributes": { "weight": 45.083267248215705, "sourceWeight": "45.083267248215705", "direction": "Imp", "source_type": "primary", "targetWeight": "45.083267248215705" } }, { "key": "geid_107_2468", "source": "UnitedKingdom", "target": "BelizeBritishHonduras", "attributes": { "weight": 149257.18160522747, "sourceWeight": "149257.18160522747", "direction": "Imp", "source_type": "primary", "targetWeight": "149257.18160522747" } }, { "key": "geid_107_2469", "source": "Australia", "target": "BelizeBritishHonduras", "attributes": { "weight": 288.497102700037, "sourceWeight": "288.497102700037", "direction": "Imp", "source_type": "primary", "targetWeight": "288.497102700037" } }, { "key": "geid_107_2470", "source": "MyanmarBurma", "target": "BelizeBritishHonduras", "attributes": { "weight": 5994.945136234743, "sourceWeight": "5994.945136234743", "direction": "Imp", "source_type": "primary", "targetWeight": "5994.945136234743" } }, { "key": "geid_107_2471", "source": "CanadaProvinceofCanada", "target": "BelizeBritishHonduras", "attributes": { "weight": 88408.33436074467, "sourceWeight": "88408.33436074467", "direction": "Imp", "source_type": "primary", "targetWeight": "88408.33436074467" } }, { "key": "geid_107_2472", "source": "SriLankaCeylon", "target": "BelizeBritishHonduras", "attributes": { "weight": 1442.0745489664241, "sourceWeight": "1442.0745489664241", "direction": "Imp", "source_type": "primary", "targetWeight": "1442.0745489664241" } }, { "key": "geid_107_2473", "source": "Cyprus", "target": "BelizeBritishHonduras", "attributes": { "weight": 4.9315744051288375, "sourceWeight": "4.9315744051288375", "direction": "Imp", "source_type": "primary", "targetWeight": "4.9315744051288375" } }, { "key": "geid_107_2474", "source": "India", "target": "BelizeBritishHonduras", "attributes": { "weight": 3927.7935314182387, "sourceWeight": "3927.7935314182387", "direction": "Imp", "source_type": "primary", "targetWeight": "3927.7935314182387" } }, { "key": "geid_107_2475", "source": "IraqMesopotamia", "target": "BelizeBritishHonduras", "attributes": { "weight": 1.2328936012822094, "sourceWeight": "1.2328936012822094", "direction": "Imp", "source_type": "primary", "targetWeight": "1.2328936012822094" } }, { "key": "geid_107_2476", "source": "Jamaica", "target": "BelizeBritishHonduras", "attributes": { "weight": 2019.2742366333785, "sourceWeight": "2019.2742366333785", "direction": "Imp", "source_type": "primary", "targetWeight": "2019.2742366333785" } }, { "key": "geid_107_2477", "source": "StraitsSettlements", "target": "BelizeBritishHonduras", "attributes": { "weight": 159.043274565405, "sourceWeight": "159.043274565405", "direction": "Imp", "source_type": "primary", "targetWeight": "159.043274565405" } }, { "key": "geid_107_2478", "source": "StLucia", "target": "BelizeBritishHonduras", "attributes": { "weight": 50.95960218633132, "sourceWeight": "50.95960218633132", "direction": "Imp", "source_type": "primary", "targetWeight": "50.95960218633132" } }, { "key": "geid_107_2479", "source": "StVincent", "target": "BelizeBritishHonduras", "attributes": { "weight": 120.00164385813504, "sourceWeight": "120.00164385813504", "direction": "Imp", "source_type": "primary", "targetWeight": "120.00164385813504" } }, { "key": "geid_107_2480", "source": "Trinidad", "target": "BelizeBritishHonduras", "attributes": { "weight": 77.46681461389882, "sourceWeight": "77.46681461389882", "direction": "Imp", "source_type": "primary", "targetWeight": "77.46681461389882" } }, { "key": "geid_107_2481", "source": "Zanzibar", "target": "BelizeBritishHonduras", "attributes": { "weight": 9.863148810257675, "sourceWeight": "9.863148810257675", "direction": "Imp", "source_type": "primary", "targetWeight": "9.863148810257675" } }, { "key": "geid_107_2482", "source": "ArgentinaLaPlata", "target": "BelizeBritishHonduras", "attributes": { "weight": 99.04245263633749, "sourceWeight": "99.04245263633749", "direction": "Imp", "source_type": "primary", "targetWeight": "99.04245263633749" } }, { "key": "geid_107_2483", "source": "Austria", "target": "BelizeBritishHonduras", "attributes": { "weight": 115.89199852052768, "sourceWeight": "115.89199852052768", "direction": "Imp", "source_type": "primary", "targetWeight": "115.89199852052768" } }, { "key": "geid_107_2484", "source": "Belgium", "target": "BelizeBritishHonduras", "attributes": { "weight": 611.5152262359758, "sourceWeight": "611.5152262359758", "direction": "Imp", "source_type": "primary", "targetWeight": "611.5152262359758" } }, { "key": "geid_107_2485", "source": "PeoplesRepublicofChinaChina", "target": "BelizeBritishHonduras", "attributes": { "weight": 412.402909628899, "sourceWeight": "412.402909628899", "direction": "Imp", "source_type": "primary", "targetWeight": "412.402909628899" } }, { "key": "geid_107_2486", "source": "Cuba", "target": "BelizeBritishHonduras", "attributes": { "weight": 147.12530308634365, "sourceWeight": "147.12530308634365", "direction": "Imp", "source_type": "primary", "targetWeight": "147.12530308634365" } }, { "key": "geid_107_2487", "source": "Czechoslovakia", "target": "BelizeBritishHonduras", "attributes": { "weight": 124.52225372950315, "sourceWeight": "124.52225372950315", "direction": "Imp", "source_type": "primary", "targetWeight": "124.52225372950315" } }, { "key": "geid_107_2488", "source": "Denmark", "target": "BelizeBritishHonduras", "attributes": { "weight": 38.01421937286812, "sourceWeight": "38.01421937286812", "direction": "Imp", "source_type": "primary", "targetWeight": "38.01421937286812" } }, { "key": "geid_107_2489", "source": "Ecuador", "target": "BelizeBritishHonduras", "attributes": { "weight": 44.5896519130399, "sourceWeight": "44.5896519130399", "direction": "Imp", "source_type": "primary", "targetWeight": "44.5896519130399" } }, { "key": "geid_107_2490", "source": "Finland", "target": "BelizeBritishHonduras", "attributes": { "weight": 9.863148810257675, "sourceWeight": "9.863148810257675", "direction": "Imp", "source_type": "primary", "targetWeight": "9.863148810257675" } }, { "key": "geid_107_2491", "source": "France", "target": "BelizeBritishHonduras", "attributes": { "weight": 7640.858093946493, "sourceWeight": "7640.858093946493", "direction": "Imp", "source_type": "primary", "targetWeight": "7640.858093946493" } }, { "key": "geid_107_2492", "source": "GermanyZollverein", "target": "BelizeBritishHonduras", "attributes": { "weight": 4946.985575144865, "sourceWeight": "4946.985575144865", "direction": "Imp", "source_type": "primary", "targetWeight": "4946.985575144865" } }, { "key": "geid_107_2493", "source": "Greece", "target": "BelizeBritishHonduras", "attributes": { "weight": 141.37179961369333, "sourceWeight": "141.37179961369333", "direction": "Imp", "source_type": "primary", "targetWeight": "141.37179961369333" } }, { "key": "geid_107_2494", "source": "Guatemala", "target": "BelizeBritishHonduras", "attributes": { "weight": 31764.887190235484, "sourceWeight": "31764.887190235484", "direction": "Imp", "source_type": "primary", "targetWeight": "31764.887190235484" } }, { "key": "geid_107_2495", "source": "Netherlands", "target": "BelizeBritishHonduras", "attributes": { "weight": 3488.0614802942505, "sourceWeight": "3488.0614802942505", "direction": "Imp", "source_type": "primary", "targetWeight": "3488.0614802942505" } }, { "key": "geid_107_2496", "source": "Honduras", "target": "BelizeBritishHonduras", "attributes": { "weight": 16341.799202728804, "sourceWeight": "16341.799202728804", "direction": "Imp", "source_type": "primary", "targetWeight": "16341.799202728804" } }, { "key": "geid_107_2497", "source": "Italy", "target": "BelizeBritishHonduras", "attributes": { "weight": 922.2044137590926, "sourceWeight": "922.2044137590926", "direction": "Imp", "source_type": "primary", "targetWeight": "922.2044137590926" } }, { "key": "geid_107_2498", "source": "Japan", "target": "BelizeBritishHonduras", "attributes": { "weight": 1190.1532897710927, "sourceWeight": "1190.1532897710927", "direction": "Imp", "source_type": "primary", "targetWeight": "1190.1532897710927" } }, { "key": "geid_107_2499", "source": "Mexico", "target": "BelizeBritishHonduras", "attributes": { "weight": 76824.47704763079, "sourceWeight": "76824.47704763079", "direction": "Imp", "source_type": "primary", "targetWeight": "76824.47704763079" } }, { "key": "geid_107_2500", "source": "Morocco", "target": "BelizeBritishHonduras", "attributes": { "weight": 7.397361607693256, "sourceWeight": "7.397361607693256", "direction": "Imp", "source_type": "primary", "targetWeight": "7.397361607693256" } }, { "key": "geid_107_2501", "source": "Nicaragua", "target": "BelizeBritishHonduras", "attributes": { "weight": 409.3206756256935, "sourceWeight": "409.3206756256935", "direction": "Imp", "source_type": "primary", "targetWeight": "409.3206756256935" } }, { "key": "geid_107_2502", "source": "Norway", "target": "BelizeBritishHonduras", "attributes": { "weight": 381.37508732996343, "sourceWeight": "381.37508732996343", "direction": "Imp", "source_type": "primary", "targetWeight": "381.37508732996343" } }, { "key": "geid_107_2503", "source": "Portugal", "target": "BelizeBritishHonduras", "attributes": { "weight": 216.78379155878847, "sourceWeight": "216.78379155878847", "direction": "Imp", "source_type": "primary", "targetWeight": "216.78379155878847" } }, { "key": "geid_107_2504", "source": "RussiaUSSR", "target": "BelizeBritishHonduras", "attributes": { "weight": 4.520609871368101, "sourceWeight": "4.520609871368101", "direction": "Imp", "source_type": "primary", "targetWeight": "4.520609871368101" } }, { "key": "geid_107_2505", "source": "Spain", "target": "BelizeBritishHonduras", "attributes": { "weight": 1365.4296634200468, "sourceWeight": "1365.4296634200468", "direction": "Imp", "source_type": "primary", "targetWeight": "1365.4296634200468" } }, { "key": "geid_107_2506", "source": "Sweden", "target": "BelizeBritishHonduras", "attributes": { "weight": 182.87921752352773, "sourceWeight": "182.87921752352773", "direction": "Imp", "source_type": "primary", "targetWeight": "182.87921752352773" } }, { "key": "geid_107_2507", "source": "Switzerland", "target": "BelizeBritishHonduras", "attributes": { "weight": 3281.3463198126, "sourceWeight": "3281.3463198126", "direction": "Imp", "source_type": "primary", "targetWeight": "3281.3463198126" } }, { "key": "geid_107_2508", "source": "Uruguay", "target": "BelizeBritishHonduras", "attributes": { "weight": 65.75432540171784, "sourceWeight": "65.75432540171784", "direction": "Imp", "source_type": "primary", "targetWeight": "65.75432540171784" } }, { "key": "geid_107_2509", "source": "UnitedStatesofAmerica", "target": "BelizeBritishHonduras", "attributes": { "weight": 397648.8719023548, "sourceWeight": "397648.8719023548", "direction": "Imp", "source_type": "primary", "targetWeight": "397648.8719023548" } }, { "key": "geid_107_2510", "source": "BritishVirginIs", "target": "BelizeBritishHonduras", "attributes": { "weight": 16.644063617309826, "sourceWeight": "16.644063617309826", "direction": "Imp", "source_type": "primary", "targetWeight": "16.644063617309826" } }, { "key": "geid_107_2511", "source": "BelizeBritishHonduras", "target": "BritishColoniesother", "attributes": { "weight": 37801.54522664694, "sourceWeight": "37801.54522664694", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2512", "source": "BelizeBritishHonduras", "target": "Othercountries", "attributes": { "weight": 2652.776065425554, "sourceWeight": "2652.776065425554", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2513", "source": "BelizeBritishHonduras", "target": "UnitedKingdom", "attributes": { "weight": 52877.98462992644, "sourceWeight": "52877.98462992644", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2514", "source": "BelizeBritishHonduras", "target": "Bahamas", "attributes": { "weight": 77.46681461389882, "sourceWeight": "77.46681461389882", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2515", "source": "BelizeBritishHonduras", "target": "Bermuda", "attributes": { "weight": 340.27863395388977, "sourceWeight": "340.27863395388977", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2516", "source": "BelizeBritishHonduras", "target": "CanadaProvinceofCanada", "attributes": { "weight": 3465.25294867053, "sourceWeight": "3465.25294867053", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2517", "source": "BelizeBritishHonduras", "target": "GrandCayman", "attributes": { "weight": 145.89240948506145, "sourceWeight": "145.89240948506145", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2518", "source": "BelizeBritishHonduras", "target": "Jamaica", "attributes": { "weight": 319.9358895327333, "sourceWeight": "319.9358895327333", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2519", "source": "BelizeBritishHonduras", "target": "Cuba", "attributes": { "weight": 190.48206139810134, "sourceWeight": "190.48206139810134", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2520", "source": "BelizeBritishHonduras", "target": "Guatemala", "attributes": { "weight": 322.6071590021781, "sourceWeight": "322.6071590021781", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2521", "source": "BelizeBritishHonduras", "target": "Honduras", "attributes": { "weight": 1856.3267989972464, "sourceWeight": "1856.3267989972464", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2522", "source": "BelizeBritishHonduras", "target": "Mexico", "attributes": { "weight": 265.48308880943574, "sourceWeight": "265.48308880943574", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2523", "source": "BelizeBritishHonduras", "target": "Nicaragua", "attributes": { "weight": 637.6114741297826, "sourceWeight": "637.6114741297826", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2524", "source": "BelizeBritishHonduras", "target": "UnitedStatesofAmerica", "attributes": { "weight": 275309.04532938806, "sourceWeight": "275309.04532938806", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2525", "source": "ElSalvador", "target": "Bolivia", "attributes": { "weight": 2143.4499411528495, "sourceWeight": "2143.4499411528495", "direction": "Imp", "source_type": "primary", "targetWeight": "2143.4499411528495" } }, { "key": "geid_107_2526", "source": "TurkeyOttomanEmpire", "target": "Bolivia", "attributes": { "weight": 0.9283770937088629, "sourceWeight": "0.9283770937088629", "direction": "Imp", "source_type": "primary", "targetWeight": "0.9283770937088629" } }, { "key": "geid_107_2527", "source": "CanadaProvinceofCanada", "target": "Bolivia", "attributes": { "weight": 343.78791987372824, "sourceWeight": "343.78791987372824", "direction": "Imp", "source_type": "primary", "targetWeight": "343.78791987372824" } }, { "key": "geid_107_2528", "source": "Venezuela", "target": "Bolivia", "attributes": { "weight": 22.29180624720195, "sourceWeight": "22.29180624720195", "direction": "Imp", "source_type": "primary", "targetWeight": "22.29180624720195" } }, { "key": "geid_107_2529", "source": "Czechoslovakia", "target": "Bolivia", "attributes": { "weight": 267.90838614795405, "sourceWeight": "267.90838614795405", "direction": "Imp", "source_type": "primary", "targetWeight": "267.90838614795405" } }, { "key": "geid_107_2530", "source": "Syria", "target": "Bolivia", "attributes": { "weight": 37.81607288371083, "sourceWeight": "37.81607288371083", "direction": "Imp", "source_type": "primary", "targetWeight": "37.81607288371083" } }, { "key": "geid_107_2531", "source": "ColombiaNewGranadaGranColombia", "target": "Bolivia", "attributes": { "weight": 4.033499320965371, "sourceWeight": "4.033499320965371", "direction": "Imp", "source_type": "primary", "targetWeight": "4.033499320965371" } }, { "key": "geid_107_2532", "source": "Guatemala", "target": "Bolivia", "attributes": { "weight": 4.262064282486742, "sourceWeight": "4.262064282486742", "direction": "Imp", "source_type": "primary", "targetWeight": "4.262064282486742" } }, { "key": "geid_107_2533", "source": "GermanyZollverein", "target": "Austria", "attributes": { "weight": 16440144.861950802, "sourceWeight": "16440144.861950802", "direction": "Imp", "source_type": "primary", "targetWeight": "16440144.861950802" } }, { "key": "geid_107_2534", "source": "Italy", "target": "Austria", "attributes": { "weight": 7887786.328666212, "sourceWeight": "7887786.328666212", "direction": "Imp", "source_type": "primary", "targetWeight": "7887786.328666212" } }, { "key": "geid_107_2535", "source": "Poland", "target": "Austria", "attributes": { "weight": 8207080.126765333, "sourceWeight": "8207080.126765333", "direction": "Imp", "source_type": "primary", "targetWeight": "8207080.126765333" } }, { "key": "geid_107_2536", "source": "Romania", "target": "Austria", "attributes": { "weight": 2769674.060664694, "sourceWeight": "2769674.060664694", "direction": "Imp", "source_type": "primary", "targetWeight": "2769674.060664694" } }, { "key": "geid_107_2537", "source": "Switzerland", "target": "Austria", "attributes": { "weight": 6232186.509741374, "sourceWeight": "6232186.509741374", "direction": "Imp", "source_type": "primary", "targetWeight": "6232186.509741374" } }, { "key": "geid_107_2538", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Austria", "attributes": { "weight": 4792290.62925051, "sourceWeight": "4792290.62925051", "direction": "Imp", "source_type": "primary", "targetWeight": "4792290.62925051" } }, { "key": "geid_107_2539", "source": "Czechoslovakia", "target": "Austria", "attributes": { "weight": 24721154.368526105, "sourceWeight": "24721154.368526105", "direction": "Imp", "source_type": "primary", "targetWeight": "24721154.368526105" } }, { "key": "geid_107_2540", "source": "Hungary", "target": "Austria", "attributes": { "weight": 12751756.45090007, "sourceWeight": "12751756.45090007", "direction": "Imp", "source_type": "primary", "targetWeight": "12751756.45090007" } }, { "key": "geid_107_2541", "source": "Belgium", "target": "Austria", "attributes": { "weight": 704468.0851073397, "sourceWeight": "704468.0851073397", "direction": "Imp", "source_type": "primary", "targetWeight": "704468.0851073397" } }, { "key": "geid_107_2542", "source": "Bulgaria", "target": "Austria", "attributes": { "weight": 2411244.9072011015, "sourceWeight": "2411244.9072011015", "direction": "Imp", "source_type": "primary", "targetWeight": "2411244.9072011015" } }, { "key": "geid_107_2543", "source": "Denmark", "target": "Austria", "attributes": { "weight": 402159.34812186804, "sourceWeight": "402159.34812186804", "direction": "Imp", "source_type": "primary", "targetWeight": "402159.34812186804" } }, { "key": "geid_107_2544", "source": "Bremen_Hamburg", "target": "Austria", "attributes": { "weight": 172639.20325962786, "sourceWeight": "172639.20325962786", "direction": "Imp", "source_type": "primary", "targetWeight": "172639.20325962786" } }, { "key": "geid_107_2545", "source": "Estonia", "target": "Austria", "attributes": { "weight": 9474.875509293084, "sourceWeight": "9474.875509293084", "direction": "Imp", "source_type": "primary", "targetWeight": "9474.875509293084" } }, { "key": "geid_107_2546", "source": "Finland", "target": "Austria", "attributes": { "weight": 8080.579447724872, "sourceWeight": "8080.579447724872", "direction": "Imp", "source_type": "primary", "targetWeight": "8080.579447724872" } }, { "key": "geid_107_2547", "source": "France", "target": "Austria", "attributes": { "weight": 2582521.502946015, "sourceWeight": "2582521.502946015", "direction": "Imp", "source_type": "primary", "targetWeight": "2582521.502946015" } }, { "key": "geid_107_2548", "source": "Greece", "target": "Austria", "attributes": { "weight": 247614.30511577314, "sourceWeight": "247614.30511577314", "direction": "Imp", "source_type": "primary", "targetWeight": "247614.30511577314" } }, { "key": "geid_107_2549", "source": "UnitedKingdom", "target": "Austria", "attributes": { "weight": 3413014.938891009, "sourceWeight": "3413014.938891009", "direction": "Imp", "source_type": "primary", "targetWeight": "3413014.938891009" } }, { "key": "geid_107_2550", "source": "Latvia", "target": "Austria", "attributes": { "weight": 17206.880941625903, "sourceWeight": "17206.880941625903", "direction": "Imp", "source_type": "primary", "targetWeight": "17206.880941625903" } }, { "key": "geid_107_2551", "source": "Liechtenstein", "target": "Austria", "attributes": { "weight": 58560.434585864954, "sourceWeight": "58560.434585864954", "direction": "Imp", "source_type": "primary", "targetWeight": "58560.434585864954" } }, { "key": "geid_107_2552", "source": "Lithuania", "target": "Austria", "attributes": { "weight": 4246.265278412286, "sourceWeight": "4246.265278412286", "direction": "Imp", "source_type": "primary", "targetWeight": "4246.265278412286" } }, { "key": "geid_107_2553", "source": "Luxemburg", "target": "Austria", "attributes": { "weight": 29343.59438664012, "sourceWeight": "29343.59438664012", "direction": "Imp", "source_type": "primary", "targetWeight": "29343.59438664012" } }, { "key": "geid_107_2554", "source": "Netherlands", "target": "Austria", "attributes": { "weight": 1314345.8578560175, "sourceWeight": "1314345.8578560175", "direction": "Imp", "source_type": "primary", "targetWeight": "1314345.8578560175" } }, { "key": "geid_107_2555", "source": "Norway", "target": "Austria", "attributes": { "weight": 130525.12449089704, "sourceWeight": "130525.12449089704", "direction": "Imp", "source_type": "primary", "targetWeight": "130525.12449089704" } }, { "key": "geid_107_2556", "source": "Portugal", "target": "Austria", "attributes": { "weight": 92942.50792226293, "sourceWeight": "92942.50792226293", "direction": "Imp", "source_type": "primary", "targetWeight": "92942.50792226293" } }, { "key": "geid_107_2557", "source": "RussiaUSSR", "target": "Austria", "attributes": { "weight": 346419.1942059933, "sourceWeight": "346419.1942059933", "direction": "Imp", "source_type": "primary", "targetWeight": "346419.1942059933" } }, { "key": "geid_107_2558", "source": "Saar", "target": "Austria", "attributes": { "weight": 393128.11226852844, "sourceWeight": "393128.11226852844", "direction": "Imp", "source_type": "primary", "targetWeight": "393128.11226852844" } }, { "key": "geid_107_2559", "source": "Sweden", "target": "Austria", "attributes": { "weight": 222073.33635159177, "sourceWeight": "222073.33635159177", "direction": "Imp", "source_type": "primary", "targetWeight": "222073.33635159177" } }, { "key": "geid_107_2560", "source": "Spain", "target": "Austria", "attributes": { "weight": 62965.14259854635, "sourceWeight": "62965.14259854635", "direction": "Imp", "source_type": "primary", "targetWeight": "62965.14259854635" } }, { "key": "geid_107_2561", "source": "Trieste", "target": "Austria", "attributes": { "weight": 23671.3444998058, "sourceWeight": "23671.3444998058", "direction": "Imp", "source_type": "primary", "targetWeight": "23671.3444998058" } }, { "key": "geid_107_2562", "source": "TurkeyOttomanEmpire", "target": "Austria", "attributes": { "weight": 781344.4997747143, "sourceWeight": "781344.4997747143", "direction": "Imp", "source_type": "primary", "targetWeight": "781344.4997747143" } }, { "key": "geid_107_2563", "source": "Ukraine", "target": "Austria", "attributes": { "weight": 728.8365776379296, "sourceWeight": "728.8365776379296", "direction": "Imp", "source_type": "primary", "targetWeight": "728.8365776379296" } }, { "key": "geid_107_2564", "source": "Europeother", "target": "Austria", "attributes": { "weight": 11344.499773668644, "sourceWeight": "11344.499773668644", "direction": "Imp", "source_type": "primary", "targetWeight": "11344.499773668644" } }, { "key": "geid_107_2565", "source": "India", "target": "Austria", "attributes": { "weight": 2179950.2037150473, "sourceWeight": "2179950.2037150473", "direction": "Imp", "source_type": "primary", "targetWeight": "2179950.2037150473" } }, { "key": "geid_107_2566", "source": "PeoplesRepublicofChinaChina", "target": "Austria", "attributes": { "weight": 157745.58623833102, "sourceWeight": "157745.58623833102", "direction": "Imp", "source_type": "primary", "targetWeight": "157745.58623833102" } }, { "key": "geid_107_2567", "source": "Japan", "target": "Austria", "attributes": { "weight": 15178.813942981229, "sourceWeight": "15178.813942981229", "direction": "Imp", "source_type": "primary", "targetWeight": "15178.813942981229" } }, { "key": "geid_107_2568", "source": "IndonesiaDutchEastIndies", "target": "Austria", "attributes": { "weight": 690334.9932105346, "sourceWeight": "690334.9932105346", "direction": "Imp", "source_type": "primary", "targetWeight": "690334.9932105346" } }, { "key": "geid_107_2569", "source": "Palestine", "target": "Austria", "attributes": { "weight": 1267.541874152921, "sourceWeight": "1267.541874152921", "direction": "Imp", "source_type": "primary", "targetWeight": "1267.541874152921" } }, { "key": "geid_107_2570", "source": "IranPersia", "target": "Austria", "attributes": { "weight": 91041.19511103355, "sourceWeight": "91041.19511103355", "direction": "Imp", "source_type": "primary", "targetWeight": "91041.19511103355" } }, { "key": "geid_107_2571", "source": "Philippines", "target": "Austria", "attributes": { "weight": 3295.608872797595, "sourceWeight": "3295.608872797595", "direction": "Imp", "source_type": "primary", "targetWeight": "3295.608872797595" } }, { "key": "geid_107_2572", "source": "StraitsSettlements", "target": "Austria", "attributes": { "weight": 69366.2290630186, "sourceWeight": "69366.2290630186", "direction": "Imp", "source_type": "primary", "targetWeight": "69366.2290630186" } }, { "key": "geid_107_2573", "source": "Syria", "target": "Austria", "attributes": { "weight": 4056.1339972893475, "sourceWeight": "4056.1339972893475", "direction": "Imp", "source_type": "primary", "targetWeight": "4056.1339972893475" } }, { "key": "geid_107_2574", "source": "Asiaother", "target": "Austria", "attributes": { "weight": 4880.036215488746, "sourceWeight": "4880.036215488746", "direction": "Imp", "source_type": "primary", "targetWeight": "4880.036215488746" } }, { "key": "geid_107_2575", "source": "EthiopiaAbyssinia", "target": "Austria", "attributes": { "weight": 316.88546853823027, "sourceWeight": "316.88546853823027", "direction": "Imp", "source_type": "primary", "targetWeight": "316.88546853823027" } }, { "key": "geid_107_2576", "source": "EgyptArabRepublicEgypt", "target": "Austria", "attributes": { "weight": 156351.29017676282, "sourceWeight": "156351.29017676282", "direction": "Imp", "source_type": "primary", "targetWeight": "156351.29017676282" } }, { "key": "geid_107_2577", "source": "BelgianAfrica", "target": "Austria", "attributes": { "weight": 13562.698053436256, "sourceWeight": "13562.698053436256", "direction": "Imp", "source_type": "primary", "targetWeight": "13562.698053436256" } }, { "key": "geid_107_2578", "source": "BritishAfrica", "target": "Austria", "attributes": { "weight": 119085.55907666693, "sourceWeight": "119085.55907666693", "direction": "Imp", "source_type": "primary", "targetWeight": "119085.55907666693" } }, { "key": "geid_107_2579", "source": "FrenchAfrica", "target": "Austria", "attributes": { "weight": 49909.46129477127, "sourceWeight": "49909.46129477127", "direction": "Imp", "source_type": "primary", "targetWeight": "49909.46129477127" } }, { "key": "geid_107_2580", "source": "ItalianAfrica", "target": "Austria", "attributes": { "weight": 7446.808510648411, "sourceWeight": "7446.808510648411", "direction": "Imp", "source_type": "primary", "targetWeight": "7446.808510648411" } }, { "key": "geid_107_2581", "source": "PortugueseAfrica", "target": "Austria", "attributes": { "weight": 3834.3141693125863, "sourceWeight": "3834.3141693125863", "direction": "Imp", "source_type": "primary", "targetWeight": "3834.3141693125863" } }, { "key": "geid_107_2582", "source": "SpanishAfrica", "target": "Austria", "attributes": { "weight": 6749.660479864305, "sourceWeight": "6749.660479864305", "direction": "Imp", "source_type": "primary", "targetWeight": "6749.660479864305" } }, { "key": "geid_107_2583", "source": "Africaother", "target": "Austria", "attributes": { "weight": 538.7052965149915, "sourceWeight": "538.7052965149915", "direction": "Imp", "source_type": "primary", "targetWeight": "538.7052965149915" } }, { "key": "geid_107_2584", "source": "ArgentinaLaPlata", "target": "Austria", "attributes": { "weight": 1145445.9031251408, "sourceWeight": "1145445.9031251408", "direction": "Imp", "source_type": "primary", "targetWeight": "1145445.9031251408" } }, { "key": "geid_107_2585", "source": "Brazil", "target": "Austria", "attributes": { "weight": 959972.8383897147, "sourceWeight": "959972.8383897147", "direction": "Imp", "source_type": "primary", "targetWeight": "959972.8383897147" } }, { "key": "geid_107_2586", "source": "BritishWestIndies", "target": "Austria", "attributes": { "weight": 8429.153463116925, "sourceWeight": "8429.153463116925", "direction": "Imp", "source_type": "primary", "targetWeight": "8429.153463116925" } }, { "key": "geid_107_2587", "source": "CanadaProvinceofCanada", "target": "Austria", "attributes": { "weight": 53458.578542399446, "sourceWeight": "53458.578542399446", "direction": "Imp", "source_type": "primary", "targetWeight": "53458.578542399446" } }, { "key": "geid_107_2588", "source": "Chile", "target": "Austria", "attributes": { "weight": 73961.06835682294, "sourceWeight": "73961.06835682294", "direction": "Imp", "source_type": "primary", "targetWeight": "73961.06835682294" } }, { "key": "geid_107_2589", "source": "ColombiaNewGranadaGranColombia", "target": "Austria", "attributes": { "weight": 1267.541874152921, "sourceWeight": "1267.541874152921", "direction": "Imp", "source_type": "primary", "targetWeight": "1267.541874152921" } }, { "key": "geid_107_2590", "source": "Cuba", "target": "Austria", "attributes": { "weight": 18062.471706679124, "sourceWeight": "18062.471706679124", "direction": "Imp", "source_type": "primary", "targetWeight": "18062.471706679124" } }, { "key": "geid_107_2591", "source": "DominicanRepublicSantoDomingo", "target": "Austria", "attributes": { "weight": 82326.84472623222, "sourceWeight": "82326.84472623222", "direction": "Imp", "source_type": "primary", "targetWeight": "82326.84472623222" } }, { "key": "geid_107_2592", "source": "Mexico", "target": "Austria", "attributes": { "weight": 18537.79990948647, "sourceWeight": "18537.79990948647", "direction": "Imp", "source_type": "primary", "targetWeight": "18537.79990948647" } }, { "key": "geid_107_2593", "source": "Paraguay", "target": "Austria", "attributes": { "weight": 9157.990040754854, "sourceWeight": "9157.990040754854", "direction": "Imp", "source_type": "primary", "targetWeight": "9157.990040754854" } }, { "key": "geid_107_2594", "source": "Peru", "target": "Austria", "attributes": { "weight": 1109.099139883806, "sourceWeight": "1109.099139883806", "direction": "Imp", "source_type": "primary", "targetWeight": "1109.099139883806" } }, { "key": "geid_107_2595", "source": "Uruguay", "target": "Austria", "attributes": { "weight": 45187.86781355164, "sourceWeight": "45187.86781355164", "direction": "Imp", "source_type": "primary", "targetWeight": "45187.86781355164" } }, { "key": "geid_107_2596", "source": "Venezuela", "target": "Austria", "attributes": { "weight": 2281.575373475258, "sourceWeight": "2281.575373475258", "direction": "Imp", "source_type": "primary", "targetWeight": "2281.575373475258" } }, { "key": "geid_107_2597", "source": "UnitedStatesofAmerica", "target": "Austria", "attributes": { "weight": 6084961.521058513, "sourceWeight": "6084961.521058513", "direction": "Imp", "source_type": "primary", "targetWeight": "6084961.521058513" } }, { "key": "geid_107_2598", "source": "CentralAmerica", "target": "Austria", "attributes": { "weight": 18220.91444094824, "sourceWeight": "18220.91444094824", "direction": "Imp", "source_type": "primary", "targetWeight": "18220.91444094824" } }, { "key": "geid_107_2599", "source": "Americaother", "target": "Austria", "attributes": { "weight": 3929.3798098740554, "sourceWeight": "3929.3798098740554", "direction": "Imp", "source_type": "primary", "targetWeight": "3929.3798098740554" } }, { "key": "geid_107_2600", "source": "Australia", "target": "Austria", "attributes": { "weight": 735808.0579457707, "sourceWeight": "735808.0579457707", "direction": "Imp", "source_type": "primary", "targetWeight": "735808.0579457707" } }, { "key": "geid_107_2601", "source": "Austria", "target": "GermanyZollverein", "attributes": { "weight": 8270932.548675787, "sourceWeight": "8270932.548675787", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2602", "source": "Austria", "target": "Italy", "attributes": { "weight": 6366038.931651923, "sourceWeight": "6366038.931651923", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2603", "source": "Austria", "target": "Poland", "attributes": { "weight": 6155975.55455793, "sourceWeight": "6155975.55455793", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2604", "source": "Austria", "target": "Romania", "attributes": { "weight": 4137541.8741568187, "sourceWeight": "4137541.8741568187", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2605", "source": "Austria", "target": "Switzerland", "attributes": { "weight": 4147080.126759819, "sourceWeight": "4147080.126759819", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2606", "source": "Austria", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 6498085.106391803, "sourceWeight": "6498085.106391803", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2607", "source": "Austria", "target": "Czechoslovakia", "attributes": { "weight": 6877301.946591504, "sourceWeight": "6877301.946591504", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2608", "source": "Austria", "target": "Hungary", "attributes": { "weight": 5505568.130383212, "sourceWeight": "5505568.130383212", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2609", "source": "Austria", "target": "Belgium", "attributes": { "weight": 449502.03712147963, "sourceWeight": "449502.03712147963", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2610", "source": "Austria", "target": "Bulgaria", "attributes": { "weight": 866840.1991863289, "sourceWeight": "866840.1991863289", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2611", "source": "Austria", "target": "Denmark", "attributes": { "weight": 263363.51290212316, "sourceWeight": "263363.51290212316", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2612", "source": "Austria", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 46677.22951568132, "sourceWeight": "46677.22951568132", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2613", "source": "Austria", "target": "Bremen_Hamburg", "attributes": { "weight": 446871.8877326123, "sourceWeight": "446871.8877326123", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2614", "source": "Austria", "target": "Estonia", "attributes": { "weight": 26428.248076088403, "sourceWeight": "26428.248076088403", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2615", "source": "Austria", "target": "Finland", "attributes": { "weight": 45219.556360405455, "sourceWeight": "45219.556360405455", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2616", "source": "Austria", "target": "France", "attributes": { "weight": 1571149.8415593994, "sourceWeight": "1571149.8415593994", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2617", "source": "Austria", "target": "Greece", "attributes": { "weight": 370122.2272526529, "sourceWeight": "370122.2272526529", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2618", "source": "Austria", "target": "UnitedKingdom", "attributes": { "weight": 2699642.372117745, "sourceWeight": "2699642.372117745", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2619", "source": "Austria", "target": "Latvia", "attributes": { "weight": 50321.41240387096, "sourceWeight": "50321.41240387096", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2620", "source": "Austria", "target": "Liechtenstein", "attributes": { "weight": 7351.742870086942, "sourceWeight": "7351.742870086942", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2621", "source": "Austria", "target": "Lithuania", "attributes": { "weight": 15020.371208712115, "sourceWeight": "15020.371208712115", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2622", "source": "Austria", "target": "Luxemburg", "attributes": { "weight": 26364.87098238076, "sourceWeight": "26364.87098238076", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2623", "source": "Austria", "target": "Netherlands", "attributes": { "weight": 1027722.9515631883, "sourceWeight": "1027722.9515631883", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2624", "source": "Austria", "target": "Norway", "attributes": { "weight": 116994.11498431461, "sourceWeight": "116994.11498431461", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2625", "source": "Austria", "target": "Portugal", "attributes": { "weight": 39198.73245817908, "sourceWeight": "39198.73245817908", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2626", "source": "Austria", "target": "RussiaUSSR", "attributes": { "weight": 568650.9732918543, "sourceWeight": "568650.9732918543", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2627", "source": "Austria", "target": "Saar", "attributes": { "weight": 67116.34223639716, "sourceWeight": "67116.34223639716", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2628", "source": "Austria", "target": "Sweden", "attributes": { "weight": 476659.12177520595, "sourceWeight": "476659.12177520595", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2629", "source": "Austria", "target": "Spain", "attributes": { "weight": 119370.75599835133, "sourceWeight": "119370.75599835133", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2630", "source": "Austria", "target": "Trieste", "attributes": { "weight": 406912.6301499415, "sourceWeight": "406912.6301499415", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2631", "source": "Austria", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 358365.7763698846, "sourceWeight": "358365.7763698846", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2632", "source": "Austria", "target": "Ukraine", "attributes": { "weight": 18569.488456340292, "sourceWeight": "18569.488456340292", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2633", "source": "Austria", "target": "Europeother", "attributes": { "weight": 14861.928474442999, "sourceWeight": "14861.928474442999", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2634", "source": "Austria", "target": "India", "attributes": { "weight": 602969.6695345446, "sourceWeight": "602969.6695345446", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2635", "source": "Austria", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 250909.9139885707, "sourceWeight": "250909.9139885707", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2636", "source": "Austria", "target": "Japan", "attributes": { "weight": 674649.1625178922, "sourceWeight": "674649.1625178922", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2637", "source": "Austria", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 117627.88592139108, "sourceWeight": "117627.88592139108", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2638", "source": "Austria", "target": "Palestine", "attributes": { "weight": 57071.07288373527, "sourceWeight": "57071.07288373527", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2639", "source": "Austria", "target": "IranPersia", "attributes": { "weight": 7161.611588964004, "sourceWeight": "7161.611588964004", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2640", "source": "Austria", "target": "Philippines", "attributes": { "weight": 26111.362607550174, "sourceWeight": "26111.362607550174", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2641", "source": "Austria", "target": "StraitsSettlements", "attributes": { "weight": 380.2625622458763, "sourceWeight": "380.2625622458763", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2642", "source": "Austria", "target": "Syria", "attributes": { "weight": 54567.67768228325, "sourceWeight": "54567.67768228325", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2643", "source": "Austria", "target": "Asiaother", "attributes": { "weight": 19488.45631510116, "sourceWeight": "19488.45631510116", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2644", "source": "Austria", "target": "EthiopiaAbyssinia", "attributes": { "weight": 473743.77546465426, "sourceWeight": "473743.77546465426", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2645", "source": "Austria", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 497066.545949068, "sourceWeight": "497066.545949068", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2646", "source": "Austria", "target": "BelgianAfrica", "attributes": { "weight": 285.19692168440724, "sourceWeight": "285.19692168440724", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2647", "source": "Austria", "target": "BritishAfrica", "attributes": { "weight": 64898.14395662956, "sourceWeight": "64898.14395662956", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2648", "source": "Austria", "target": "FrenchAfrica", "attributes": { "weight": 14386.600271635654, "sourceWeight": "14386.600271635654", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2649", "source": "Austria", "target": "ItalianAfrica", "attributes": { "weight": 2091.44409235232, "sourceWeight": "2091.44409235232", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2650", "source": "Austria", "target": "PortugueseAfrica", "attributes": { "weight": 4056.1339972893475, "sourceWeight": "4056.1339972893475", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2651", "source": "Austria", "target": "SpanishAfrica", "attributes": { "weight": 16985.061113649142, "sourceWeight": "16985.061113649142", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2652", "source": "Austria", "target": "Africaother", "attributes": { "weight": 507.01674966116843, "sourceWeight": "507.01674966116843", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2653", "source": "Austria", "target": "ArgentinaLaPlata", "attributes": { "weight": 268877.3200546884, "sourceWeight": "268877.3200546884", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2654", "source": "Austria", "target": "Brazil", "attributes": { "weight": 125106.3829788933, "sourceWeight": "125106.3829788933", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2655", "source": "Austria", "target": "BritishWestIndies", "attributes": { "weight": 2408.32956089055, "sourceWeight": "2408.32956089055", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2656", "source": "Austria", "target": "CanadaProvinceofCanada", "attributes": { "weight": 37265.73110009588, "sourceWeight": "37265.73110009588", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2657", "source": "Austria", "target": "Chile", "attributes": { "weight": 29755.54549573982, "sourceWeight": "29755.54549573982", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2658", "source": "Austria", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 109198.73245827414, "sourceWeight": "109198.73245827414", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2659", "source": "Austria", "target": "Cuba", "attributes": { "weight": 45314.62200096693, "sourceWeight": "45314.62200096693", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2660", "source": "Austria", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 95.06564056146908, "sourceWeight": "95.06564056146908", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2661", "source": "Austria", "target": "Mexico", "attributes": { "weight": 47374.377546465425, "sourceWeight": "47374.377546465425", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2662", "source": "Austria", "target": "Paraguay", "attributes": { "weight": 285.19692168440724, "sourceWeight": "285.19692168440724", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2663", "source": "Austria", "target": "Peru", "attributes": { "weight": 14133.09189680507, "sourceWeight": "14133.09189680507", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2664", "source": "Austria", "target": "Uruguay", "attributes": { "weight": 40244.45450435524, "sourceWeight": "40244.45450435524", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2665", "source": "Austria", "target": "Venezuela", "attributes": { "weight": 12516.976007260095, "sourceWeight": "12516.976007260095", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2666", "source": "Austria", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1288171.1181547598, "sourceWeight": "1288171.1181547598", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2667", "source": "Austria", "target": "CentralAmerica", "attributes": { "weight": 11629.69669535305, "sourceWeight": "11629.69669535305", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2668", "source": "Austria", "target": "Americaother", "attributes": { "weight": 6147.578089641667, "sourceWeight": "6147.578089641667", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2669", "source": "Austria", "target": "Australia", "attributes": { "weight": 18664.554096901764, "sourceWeight": "18664.554096901764", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2670", "source": "France", "target": "Liberia", "attributes": { "weight": 15539.2, "sourceWeight": "15539.2", "direction": "Imp", "source_type": "primary", "targetWeight": "15539.2" } }, { "key": "geid_107_2671", "source": "GermanyZollverein", "target": "Liberia", "attributes": { "weight": 577376.38, "sourceWeight": "577376.38", "direction": "Imp", "source_type": "primary", "targetWeight": "577376.38" } }, { "key": "geid_107_2672", "source": "Netherlands", "target": "Liberia", "attributes": { "weight": 155411.41, "sourceWeight": "155411.41", "direction": "Imp", "source_type": "primary", "targetWeight": "155411.41" } }, { "key": "geid_107_2673", "source": "Spain", "target": "Liberia", "attributes": { "weight": 5231.94, "sourceWeight": "5231.94", "direction": "Imp", "source_type": "primary", "targetWeight": "5231.94" } }, { "key": "geid_107_2674", "source": "UnitedKingdom", "target": "Liberia", "attributes": { "weight": 479095.03, "sourceWeight": "479095.03", "direction": "Imp", "source_type": "primary", "targetWeight": "479095.03" } }, { "key": "geid_107_2675", "source": "UnitedStatesofAmerica", "target": "Liberia", "attributes": { "weight": 116508.77, "sourceWeight": "116508.77", "direction": "Imp", "source_type": "primary", "targetWeight": "116508.77" } }, { "key": "geid_107_2676", "source": "Othercountries", "target": "Liberia", "attributes": { "weight": 84021.96, "sourceWeight": "84021.96", "direction": "Imp", "source_type": "primary", "targetWeight": "84021.96" } }, { "key": "geid_107_2677", "source": "Liberia", "target": "France", "attributes": { "weight": 184.97, "sourceWeight": "184.97", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2678", "source": "Liberia", "target": "GermanyZollverein", "attributes": { "weight": 733394.59, "sourceWeight": "733394.59", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2679", "source": "Liberia", "target": "Netherlands", "attributes": { "weight": 214537.29, "sourceWeight": "214537.29", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2680", "source": "Liberia", "target": "Spain", "attributes": { "weight": 174.46, "sourceWeight": "174.46", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2681", "source": "Liberia", "target": "UnitedKingdom", "attributes": { "weight": 335348.44, "sourceWeight": "335348.44", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2682", "source": "Liberia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 5997.82, "sourceWeight": "5997.82", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2683", "source": "Liberia", "target": "Othercountries", "attributes": { "weight": 127258.84, "sourceWeight": "127258.84", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2684", "source": "UnitedKingdom", "target": "Jamaica", "attributes": { "weight": 1437563, "sourceWeight": "1437563", "direction": "Imp", "source_type": "primary", "targetWeight": "1437563" } }, { "key": "geid_107_2685", "source": "Australia", "target": "Jamaica", "attributes": { "weight": 399, "sourceWeight": "399", "direction": "Imp", "source_type": "primary", "targetWeight": "399" } }, { "key": "geid_107_2686", "source": "Bahamas", "target": "Jamaica", "attributes": { "weight": 4888, "sourceWeight": "4888", "direction": "Imp", "source_type": "primary", "targetWeight": "4888" } }, { "key": "geid_107_2687", "source": "Barbados", "target": "Jamaica", "attributes": { "weight": 24, "sourceWeight": "24", "direction": "Imp", "source_type": "primary", "targetWeight": "24" } }, { "key": "geid_107_2688", "source": "Bermuda", "target": "Jamaica", "attributes": { "weight": 149, "sourceWeight": "149", "direction": "Imp", "source_type": "primary", "targetWeight": "149" } }, { "key": "geid_107_2689", "source": "BritishEastAfrica", "target": "Jamaica", "attributes": { "weight": 8, "sourceWeight": "8", "direction": "Imp", "source_type": "primary", "targetWeight": "8" } }, { "key": "geid_107_2690", "source": "BritishEastIndies", "target": "Jamaica", "attributes": { "weight": 86, "sourceWeight": "86", "direction": "Imp", "source_type": "primary", "targetWeight": "86" } }, { "key": "geid_107_2691", "source": "GuyanaBritishGuiana", "target": "Jamaica", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary", "targetWeight": "1" } }, { "key": "geid_107_2692", "source": "BelizeBritishHonduras", "target": "Jamaica", "attributes": { "weight": 135, "sourceWeight": "135", "direction": "Imp", "source_type": "primary", "targetWeight": "135" } }, { "key": "geid_107_2693", "source": "SouthAfrica", "target": "Jamaica", "attributes": { "weight": 130, "sourceWeight": "130", "direction": "Imp", "source_type": "primary", "targetWeight": "130" } }, { "key": "geid_107_2694", "source": "BritishWestAfrica", "target": "Jamaica", "attributes": { "weight": 5, "sourceWeight": "5", "direction": "Imp", "source_type": "primary", "targetWeight": "5" } }, { "key": "geid_107_2695", "source": "BritishWestIndies", "target": "Jamaica", "attributes": { "weight": 36, "sourceWeight": "36", "direction": "Imp", "source_type": "primary", "targetWeight": "36" } }, { "key": "geid_107_2696", "source": "CanadaProvinceofCanada", "target": "Jamaica", "attributes": { "weight": 794856, "sourceWeight": "794856", "direction": "Imp", "source_type": "primary", "targetWeight": "794856" } }, { "key": "geid_107_2697", "source": "CaymanIs", "target": "Jamaica", "attributes": { "weight": 6443, "sourceWeight": "6443", "direction": "Imp", "source_type": "primary", "targetWeight": "6443" } }, { "key": "geid_107_2698", "source": "SriLankaCeylon", "target": "Jamaica", "attributes": { "weight": 7552, "sourceWeight": "7552", "direction": "Imp", "source_type": "primary", "targetWeight": "7552" } }, { "key": "geid_107_2699", "source": "Ireland", "target": "Jamaica", "attributes": { "weight": 1567, "sourceWeight": "1567", "direction": "Imp", "source_type": "primary", "targetWeight": "1567" } }, { "key": "geid_107_2700", "source": "HongKong", "target": "Jamaica", "attributes": { "weight": 595, "sourceWeight": "595", "direction": "Imp", "source_type": "primary", "targetWeight": "595" } }, { "key": "geid_107_2701", "source": "India", "target": "Jamaica", "attributes": { "weight": 117364, "sourceWeight": "117364", "direction": "Imp", "source_type": "primary", "targetWeight": "117364" } }, { "key": "geid_107_2702", "source": "MalaysiaBritishMalayaother", "target": "Jamaica", "attributes": { "weight": 7, "sourceWeight": "7", "direction": "Imp", "source_type": "primary", "targetWeight": "7" } }, { "key": "geid_107_2703", "source": "Malta", "target": "Jamaica", "attributes": { "weight": 7, "sourceWeight": "7", "direction": "Imp", "source_type": "primary", "targetWeight": "7" } }, { "key": "geid_107_2704", "source": "IraqMesopotamia", "target": "Jamaica", "attributes": { "weight": 267, "sourceWeight": "267", "direction": "Imp", "source_type": "primary", "targetWeight": "267" } }, { "key": "geid_107_2705", "source": "MorantCays", "target": "Jamaica", "attributes": { "weight": 409, "sourceWeight": "409", "direction": "Imp", "source_type": "primary", "targetWeight": "409" } }, { "key": "geid_107_2706", "source": "NewZealand", "target": "Jamaica", "attributes": { "weight": 108, "sourceWeight": "108", "direction": "Imp", "source_type": "primary", "targetWeight": "108" } }, { "key": "geid_107_2707", "source": "NewfoundlandandLabradorNewfoundland", "target": "Jamaica", "attributes": { "weight": 124817, "sourceWeight": "124817", "direction": "Imp", "source_type": "primary", "targetWeight": "124817" } }, { "key": "geid_107_2708", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "Jamaica", "attributes": { "weight": 493, "sourceWeight": "493", "direction": "Imp", "source_type": "primary", "targetWeight": "493" } }, { "key": "geid_107_2709", "source": "Palestine", "target": "Jamaica", "attributes": { "weight": 9, "sourceWeight": "9", "direction": "Imp", "source_type": "primary", "targetWeight": "9" } }, { "key": "geid_107_2710", "source": "PedroBank", "target": "Jamaica", "attributes": { "weight": 327, "sourceWeight": "327", "direction": "Imp", "source_type": "primary", "targetWeight": "327" } }, { "key": "geid_107_2711", "source": "RaggedIsland", "target": "Jamaica", "attributes": { "weight": 7914, "sourceWeight": "7914", "direction": "Imp", "source_type": "primary", "targetWeight": "7914" } }, { "key": "geid_107_2712", "source": "StKittsNevis", "target": "Jamaica", "attributes": { "weight": 55, "sourceWeight": "55", "direction": "Imp", "source_type": "primary", "targetWeight": "55" } }, { "key": "geid_107_2713", "source": "StLucia", "target": "Jamaica", "attributes": { "weight": 1071, "sourceWeight": "1071", "direction": "Imp", "source_type": "primary", "targetWeight": "1071" } }, { "key": "geid_107_2714", "source": "MalaysiaBritishMalaya_StraitsSettlements", "target": "Jamaica", "attributes": { "weight": 1317, "sourceWeight": "1317", "direction": "Imp", "source_type": "primary", "targetWeight": "1317" } }, { "key": "geid_107_2715", "source": "Tasmania", "target": "Jamaica", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary", "targetWeight": "2" } }, { "key": "geid_107_2716", "source": "TrinidadandTobago", "target": "Jamaica", "attributes": { "weight": 32404, "sourceWeight": "32404", "direction": "Imp", "source_type": "primary", "targetWeight": "32404" } }, { "key": "geid_107_2717", "source": "TurksandCaicosIs", "target": "Jamaica", "attributes": { "weight": 10747, "sourceWeight": "10747", "direction": "Imp", "source_type": "primary", "targetWeight": "10747" } }, { "key": "geid_107_2718", "source": "UnitedStatesofAmerica", "target": "Jamaica", "attributes": { "weight": 1955867, "sourceWeight": "1955867", "direction": "Imp", "source_type": "primary", "targetWeight": "1955867" } }, { "key": "geid_107_2719", "source": "Afghanistan", "target": "Jamaica", "attributes": { "weight": 6, "sourceWeight": "6", "direction": "Imp", "source_type": "primary", "targetWeight": "6" } }, { "key": "geid_107_2720", "source": "Arabia", "target": "Jamaica", "attributes": { "weight": 12, "sourceWeight": "12", "direction": "Imp", "source_type": "primary", "targetWeight": "12" } }, { "key": "geid_107_2721", "source": "ArgentinaLaPlata", "target": "Jamaica", "attributes": { "weight": 2510, "sourceWeight": "2510", "direction": "Imp", "source_type": "primary", "targetWeight": "2510" } }, { "key": "geid_107_2722", "source": "Austria", "target": "Jamaica", "attributes": { "weight": 2439, "sourceWeight": "2439", "direction": "Imp", "source_type": "primary", "targetWeight": "2439" } }, { "key": "geid_107_2723", "source": "Belgium", "target": "Jamaica", "attributes": { "weight": 11976, "sourceWeight": "11976", "direction": "Imp", "source_type": "primary", "targetWeight": "11976" } }, { "key": "geid_107_2724", "source": "Borneo", "target": "Jamaica", "attributes": { "weight": 264, "sourceWeight": "264", "direction": "Imp", "source_type": "primary", "targetWeight": "264" } }, { "key": "geid_107_2725", "source": "Brazil", "target": "Jamaica", "attributes": { "weight": 173, "sourceWeight": "173", "direction": "Imp", "source_type": "primary", "targetWeight": "173" } }, { "key": "geid_107_2726", "source": "Bulgaria", "target": "Jamaica", "attributes": { "weight": 4, "sourceWeight": "4", "direction": "Imp", "source_type": "primary", "targetWeight": "4" } }, { "key": "geid_107_2727", "source": "Chile", "target": "Jamaica", "attributes": { "weight": 224, "sourceWeight": "224", "direction": "Imp", "source_type": "primary", "targetWeight": "224" } }, { "key": "geid_107_2728", "source": "PeoplesRepublicofChinaChina", "target": "Jamaica", "attributes": { "weight": 10687, "sourceWeight": "10687", "direction": "Imp", "source_type": "primary", "targetWeight": "10687" } }, { "key": "geid_107_2729", "source": "ColombiaNewGranadaGranColombia", "target": "Jamaica", "attributes": { "weight": 2060, "sourceWeight": "2060", "direction": "Imp", "source_type": "primary", "targetWeight": "2060" } }, { "key": "geid_107_2730", "source": "CostaRica", "target": "Jamaica", "attributes": { "weight": 57, "sourceWeight": "57", "direction": "Imp", "source_type": "primary", "targetWeight": "57" } }, { "key": "geid_107_2731", "source": "Cuba", "target": "Jamaica", "attributes": { "weight": 460, "sourceWeight": "460", "direction": "Imp", "source_type": "primary", "targetWeight": "460" } }, { "key": "geid_107_2732", "source": "Czechoslovakia", "target": "Jamaica", "attributes": { "weight": 2473, "sourceWeight": "2473", "direction": "Imp", "source_type": "primary", "targetWeight": "2473" } }, { "key": "geid_107_2733", "source": "DanishIndia", "target": "Jamaica", "attributes": { "weight": 5, "sourceWeight": "5", "direction": "Imp", "source_type": "primary", "targetWeight": "5" } }, { "key": "geid_107_2734", "source": "VirginIslandsDanishWestIndiesother", "target": "Jamaica", "attributes": { "weight": 27, "sourceWeight": "27", "direction": "Imp", "source_type": "primary", "targetWeight": "27" } }, { "key": "geid_107_2735", "source": "Denmark", "target": "Jamaica", "attributes": { "weight": 8445, "sourceWeight": "8445", "direction": "Imp", "source_type": "primary", "targetWeight": "8445" } }, { "key": "geid_107_2736", "source": "EgyptArabRepublicEgypt", "target": "Jamaica", "attributes": { "weight": 614, "sourceWeight": "614", "direction": "Imp", "source_type": "primary", "targetWeight": "614" } }, { "key": "geid_107_2737", "source": "Finland", "target": "Jamaica", "attributes": { "weight": 691, "sourceWeight": "691", "direction": "Imp", "source_type": "primary", "targetWeight": "691" } }, { "key": "geid_107_2738", "source": "France", "target": "Jamaica", "attributes": { "weight": 25006, "sourceWeight": "25006", "direction": "Imp", "source_type": "primary", "targetWeight": "25006" } }, { "key": "geid_107_2739", "source": "GermanyZollverein", "target": "Jamaica", "attributes": { "weight": 64469, "sourceWeight": "64469", "direction": "Imp", "source_type": "primary", "targetWeight": "64469" } }, { "key": "geid_107_2740", "source": "Greece", "target": "Jamaica", "attributes": { "weight": 1514, "sourceWeight": "1514", "direction": "Imp", "source_type": "primary", "targetWeight": "1514" } }, { "key": "geid_107_2741", "source": "Guatemala", "target": "Jamaica", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary", "targetWeight": "1" } }, { "key": "geid_107_2742", "source": "Haiti", "target": "Jamaica", "attributes": { "weight": 295, "sourceWeight": "295", "direction": "Imp", "source_type": "primary", "targetWeight": "295" } }, { "key": "geid_107_2743", "source": "Netherlands", "target": "Jamaica", "attributes": { "weight": 28835, "sourceWeight": "28835", "direction": "Imp", "source_type": "primary", "targetWeight": "28835" } }, { "key": "geid_107_2744", "source": "Honduras", "target": "Jamaica", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Imp", "source_type": "primary", "targetWeight": "14" } }, { "key": "geid_107_2745", "source": "Hungary", "target": "Jamaica", "attributes": { "weight": 15, "sourceWeight": "15", "direction": "Imp", "source_type": "primary", "targetWeight": "15" } }, { "key": "geid_107_2746", "source": "Iceland", "target": "Jamaica", "attributes": { "weight": 4, "sourceWeight": "4", "direction": "Imp", "source_type": "primary", "targetWeight": "4" } }, { "key": "geid_107_2747", "source": "IranPersia", "target": "Jamaica", "attributes": { "weight": 184, "sourceWeight": "184", "direction": "Imp", "source_type": "primary", "targetWeight": "184" } }, { "key": "geid_107_2748", "source": "Italy", "target": "Jamaica", "attributes": { "weight": 5054, "sourceWeight": "5054", "direction": "Imp", "source_type": "primary", "targetWeight": "5054" } }, { "key": "geid_107_2749", "source": "Japan", "target": "Jamaica", "attributes": { "weight": 7003, "sourceWeight": "7003", "direction": "Imp", "source_type": "primary", "targetWeight": "7003" } }, { "key": "geid_107_2750", "source": "Martinique", "target": "Jamaica", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary", "targetWeight": "1" } }, { "key": "geid_107_2751", "source": "Morocco", "target": "Jamaica", "attributes": { "weight": 671, "sourceWeight": "671", "direction": "Imp", "source_type": "primary", "targetWeight": "671" } }, { "key": "geid_107_2752", "source": "Nicaragua", "target": "Jamaica", "attributes": { "weight": 1129, "sourceWeight": "1129", "direction": "Imp", "source_type": "primary", "targetWeight": "1129" } }, { "key": "geid_107_2753", "source": "Norway", "target": "Jamaica", "attributes": { "weight": 6068, "sourceWeight": "6068", "direction": "Imp", "source_type": "primary", "targetWeight": "6068" } }, { "key": "geid_107_2754", "source": "Panama", "target": "Jamaica", "attributes": { "weight": 21558, "sourceWeight": "21558", "direction": "Imp", "source_type": "primary", "targetWeight": "21558" } }, { "key": "geid_107_2755", "source": "Peru", "target": "Jamaica", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary", "targetWeight": "2" } }, { "key": "geid_107_2756", "source": "Poland", "target": "Jamaica", "attributes": { "weight": 66, "sourceWeight": "66", "direction": "Imp", "source_type": "primary", "targetWeight": "66" } }, { "key": "geid_107_2757", "source": "Portugal", "target": "Jamaica", "attributes": { "weight": 3119, "sourceWeight": "3119", "direction": "Imp", "source_type": "primary", "targetWeight": "3119" } }, { "key": "geid_107_2758", "source": "AngolaPortugueseWestAfrica", "target": "Jamaica", "attributes": { "weight": 8, "sourceWeight": "8", "direction": "Imp", "source_type": "primary", "targetWeight": "8" } }, { "key": "geid_107_2759", "source": "PuertoRico", "target": "Jamaica", "attributes": { "weight": 40, "sourceWeight": "40", "direction": "Imp", "source_type": "primary", "targetWeight": "40" } }, { "key": "geid_107_2760", "source": "Romania", "target": "Jamaica", "attributes": { "weight": 4, "sourceWeight": "4", "direction": "Imp", "source_type": "primary", "targetWeight": "4" } }, { "key": "geid_107_2761", "source": "ThailandSiam", "target": "Jamaica", "attributes": { "weight": 12916, "sourceWeight": "12916", "direction": "Imp", "source_type": "primary", "targetWeight": "12916" } }, { "key": "geid_107_2762", "source": "Siberia", "target": "Jamaica", "attributes": { "weight": 79, "sourceWeight": "79", "direction": "Imp", "source_type": "primary", "targetWeight": "79" } }, { "key": "geid_107_2763", "source": "Sicily", "target": "Jamaica", "attributes": { "weight": 29, "sourceWeight": "29", "direction": "Imp", "source_type": "primary", "targetWeight": "29" } }, { "key": "geid_107_2764", "source": "IzmirSmyrna", "target": "Jamaica", "attributes": { "weight": 5, "sourceWeight": "5", "direction": "Imp", "source_type": "primary", "targetWeight": "5" } }, { "key": "geid_107_2765", "source": "RussiaUSSR", "target": "Jamaica", "attributes": { "weight": 88, "sourceWeight": "88", "direction": "Imp", "source_type": "primary", "targetWeight": "88" } }, { "key": "geid_107_2766", "source": "Spain", "target": "Jamaica", "attributes": { "weight": 4039, "sourceWeight": "4039", "direction": "Imp", "source_type": "primary", "targetWeight": "4039" } }, { "key": "geid_107_2767", "source": "Sweden", "target": "Jamaica", "attributes": { "weight": 9027, "sourceWeight": "9027", "direction": "Imp", "source_type": "primary", "targetWeight": "9027" } }, { "key": "geid_107_2768", "source": "Switzerland", "target": "Jamaica", "attributes": { "weight": 31990, "sourceWeight": "31990", "direction": "Imp", "source_type": "primary", "targetWeight": "31990" } }, { "key": "geid_107_2769", "source": "Syria", "target": "Jamaica", "attributes": { "weight": 62, "sourceWeight": "62", "direction": "Imp", "source_type": "primary", "targetWeight": "62" } }, { "key": "geid_107_2770", "source": "TurkeyOttomanEmpire", "target": "Jamaica", "attributes": { "weight": 28, "sourceWeight": "28", "direction": "Imp", "source_type": "primary", "targetWeight": "28" } }, { "key": "geid_107_2771", "source": "Uruguay", "target": "Jamaica", "attributes": { "weight": 581, "sourceWeight": "581", "direction": "Imp", "source_type": "primary", "targetWeight": "581" } }, { "key": "geid_107_2772", "source": "Venezuela", "target": "Jamaica", "attributes": { "weight": 848, "sourceWeight": "848", "direction": "Imp", "source_type": "primary", "targetWeight": "848" } }, { "key": "geid_107_2773", "source": "VirginIslandsDanishWestIndies", "target": "Jamaica", "attributes": { "weight": 1894, "sourceWeight": "1894", "direction": "Imp", "source_type": "primary", "targetWeight": "1894" } }, { "key": "geid_107_2774", "source": "NetherlandsAntilles", "target": "Jamaica", "attributes": { "weight": 49679, "sourceWeight": "49679", "direction": "Imp", "source_type": "primary", "targetWeight": "49679" } }, { "key": "geid_107_2775", "source": "***NA", "target": "Jamaica", "attributes": { "weight": 258276, "sourceWeight": "258276", "direction": "Imp", "source_type": "primary", "targetWeight": "258276" } }, { "key": "geid_107_2776", "source": "Jamaica", "target": "UnitedKingdom", "attributes": { "weight": 769550, "sourceWeight": "769550", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2777", "source": "Jamaica", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 16, "sourceWeight": "16", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2778", "source": "Jamaica", "target": "Australia", "attributes": { "weight": 5445, "sourceWeight": "5445", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2779", "source": "Jamaica", "target": "Bahamas", "attributes": { "weight": 27995, "sourceWeight": "27995", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2780", "source": "Jamaica", "target": "Barbados", "attributes": { "weight": 1855, "sourceWeight": "1855", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2781", "source": "Jamaica", "target": "Bermuda", "attributes": { "weight": 6265, "sourceWeight": "6265", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2782", "source": "Jamaica", "target": "GuyanaBritishGuiana", "attributes": { "weight": 770, "sourceWeight": "770", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2783", "source": "Jamaica", "target": "BelizeBritishHonduras", "attributes": { "weight": 1631, "sourceWeight": "1631", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2784", "source": "Jamaica", "target": "CanadaProvinceofCanada", "attributes": { "weight": 596578, "sourceWeight": "596578", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2785", "source": "Jamaica", "target": "CaymanIs", "attributes": { "weight": 9220, "sourceWeight": "9220", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2786", "source": "Jamaica", "target": "Gibraltar", "attributes": { "weight": 102, "sourceWeight": "102", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2787", "source": "Jamaica", "target": "Grenada", "attributes": { "weight": 15, "sourceWeight": "15", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2788", "source": "Jamaica", "target": "HongKong", "attributes": { "weight": 75, "sourceWeight": "75", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2789", "source": "Jamaica", "target": "India", "attributes": { "weight": 257, "sourceWeight": "257", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2790", "source": "Jamaica", "target": "Malta", "attributes": { "weight": 10, "sourceWeight": "10", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2791", "source": "Jamaica", "target": "MorantCays", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2792", "source": "Jamaica", "target": "NewZealand", "attributes": { "weight": 1601, "sourceWeight": "1601", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2793", "source": "Jamaica", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 2257, "sourceWeight": "2257", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2794", "source": "Jamaica", "target": "StKittsNevis", "attributes": { "weight": 183, "sourceWeight": "183", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2795", "source": "Jamaica", "target": "StLucia", "attributes": { "weight": 40, "sourceWeight": "40", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2796", "source": "Jamaica", "target": "MalaysiaBritishMalaya_StraitsSettlements", "attributes": { "weight": 1769, "sourceWeight": "1769", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2797", "source": "Jamaica", "target": "TrinidadandTobago", "attributes": { "weight": 1338, "sourceWeight": "1338", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2798", "source": "Jamaica", "target": "TurksandCaicosIs", "attributes": { "weight": 343, "sourceWeight": "343", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2799", "source": "Jamaica", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1354634, "sourceWeight": "1354634", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2800", "source": "Jamaica", "target": "ArgentinaLaPlata", "attributes": { "weight": 944, "sourceWeight": "944", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2801", "source": "Jamaica", "target": "Austria", "attributes": { "weight": 5033, "sourceWeight": "5033", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2802", "source": "Jamaica", "target": "Belgium", "attributes": { "weight": 33410, "sourceWeight": "33410", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2803", "source": "Jamaica", "target": "Chile", "attributes": { "weight": 170, "sourceWeight": "170", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2804", "source": "Jamaica", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 8715, "sourceWeight": "8715", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2805", "source": "Jamaica", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 1785, "sourceWeight": "1785", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2806", "source": "Jamaica", "target": "CostaRica", "attributes": { "weight": 2650, "sourceWeight": "2650", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2807", "source": "Jamaica", "target": "Cuba", "attributes": { "weight": 9233, "sourceWeight": "9233", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2808", "source": "Jamaica", "target": "Denmark", "attributes": { "weight": 17024, "sourceWeight": "17024", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2809", "source": "Jamaica", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 893, "sourceWeight": "893", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2810", "source": "Jamaica", "target": "France", "attributes": { "weight": 88820, "sourceWeight": "88820", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2811", "source": "Jamaica", "target": "FrenchGuiana", "attributes": { "weight": 37, "sourceWeight": "37", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2812", "source": "Jamaica", "target": "GermanyZollverein", "attributes": { "weight": 53282, "sourceWeight": "53282", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2813", "source": "Jamaica", "target": "Guatemala", "attributes": { "weight": 779, "sourceWeight": "779", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2814", "source": "Jamaica", "target": "Haiti", "attributes": { "weight": 188, "sourceWeight": "188", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2815", "source": "Jamaica", "target": "Netherlands", "attributes": { "weight": 25697, "sourceWeight": "25697", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2816", "source": "Jamaica", "target": "Honduras", "attributes": { "weight": 1423, "sourceWeight": "1423", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2817", "source": "Jamaica", "target": "Italy", "attributes": { "weight": 13896, "sourceWeight": "13896", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2818", "source": "Jamaica", "target": "Martinique", "attributes": { "weight": 17, "sourceWeight": "17", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2819", "source": "Jamaica", "target": "Morocco", "attributes": { "weight": 36, "sourceWeight": "36", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2820", "source": "Jamaica", "target": "Nicaragua", "attributes": { "weight": 712, "sourceWeight": "712", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2821", "source": "Jamaica", "target": "Norway", "attributes": { "weight": 58, "sourceWeight": "58", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2822", "source": "Jamaica", "target": "Panama", "attributes": { "weight": 23126, "sourceWeight": "23126", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2823", "source": "Jamaica", "target": "Portugal", "attributes": { "weight": 149, "sourceWeight": "149", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2824", "source": "Jamaica", "target": "ThailandSiam", "attributes": { "weight": 83, "sourceWeight": "83", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2825", "source": "Jamaica", "target": "Spain", "attributes": { "weight": 1289, "sourceWeight": "1289", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2826", "source": "Jamaica", "target": "Sweden", "attributes": { "weight": 1572, "sourceWeight": "1572", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2827", "source": "Jamaica", "target": "Syria", "attributes": { "weight": 670, "sourceWeight": "670", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2828", "source": "Jamaica", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 275, "sourceWeight": "275", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2829", "source": "Jamaica", "target": "VirginIslandsDanishWestIndies", "attributes": { "weight": 124, "sourceWeight": "124", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2830", "source": "Jamaica", "target": "***NA", "attributes": { "weight": 22649, "sourceWeight": "22649", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2831", "source": "Mexico", "target": "GermanyZollverein", "attributes": { "weight": 1924899.1330909382, "sourceWeight": "1924899.1330909382", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2832", "source": "Mexico", "target": "NetherlandsAntilles", "attributes": { "weight": 11534.503168848942, "sourceWeight": "11534.503168848942", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2833", "source": "Mexico", "target": "ArgentinaLaPlata", "attributes": { "weight": 825430.8091892676, "sourceWeight": "825430.8091892676", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2834", "source": "Mexico", "target": "Australia", "attributes": { "weight": 15083.521955628523, "sourceWeight": "15083.521955628523", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2835", "source": "Mexico", "target": "Bahamas", "attributes": { "weight": 37.324581258469415, "sourceWeight": "37.324581258469415", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2836", "source": "Mexico", "target": "Belgium", "attributes": { "weight": 591171.9669530782, "sourceWeight": "591171.9669530782", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2837", "source": "Mexico", "target": "Brazil", "attributes": { "weight": 438600.2761428327, "sourceWeight": "438600.2761428327", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2838", "source": "Mexico", "target": "CanadaProvinceofCanada", "attributes": { "weight": 377174.7736530489, "sourceWeight": "377174.7736530489", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2839", "source": "Mexico", "target": "Chile", "attributes": { "weight": 317636.2483022411, "sourceWeight": "317636.2483022411", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2840", "source": "Mexico", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 175.6450882751502, "sourceWeight": "175.6450882751502", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2841", "source": "Mexico", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 25.358759619724808, "sourceWeight": "25.358759619724808", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2842", "source": "Mexico", "target": "CostaRica", "attributes": { "weight": 50217.69918512664, "sourceWeight": "50217.69918512664", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2843", "source": "Mexico", "target": "Cuba", "attributes": { "weight": 1769003.029650545, "sourceWeight": "1769003.029650545", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2844", "source": "Mexico", "target": "Czechoslovakia", "attributes": { "weight": 1.9760072430954396, "sourceWeight": "1.9760072430954396", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2845", "source": "Mexico", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 4095.7141240359865, "sourceWeight": "4095.7141240359865", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2846", "source": "Mexico", "target": "Denmark", "attributes": { "weight": 68.72114078765252, "sourceWeight": "68.72114078765252", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2847", "source": "Mexico", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 32198.48913533933, "sourceWeight": "32198.48913533933", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2848", "source": "Mexico", "target": "ElSalvador", "attributes": { "weight": 2084.797419645861, "sourceWeight": "2084.797419645861", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2849", "source": "Mexico", "target": "Spain", "attributes": { "weight": 459025.0554547284, "sourceWeight": "459025.0554547284", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2850", "source": "Mexico", "target": "StraitsSettlements", "attributes": { "weight": 10675.928021723972, "sourceWeight": "10675.928021723972", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2851", "source": "Mexico", "target": "UnitedStatesofAmerica", "attributes": { "weight": 54145220.293092094, "sourceWeight": "54145220.293092094", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2852", "source": "Mexico", "target": "France", "attributes": { "weight": 920030.6190579393, "sourceWeight": "920030.6190579393", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2853", "source": "Mexico", "target": "UnitedKingdom", "attributes": { "weight": 3799567.503393309, "sourceWeight": "3799567.503393309", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2854", "source": "Mexico", "target": "Guatemala", "attributes": { "weight": 221885.74354900676, "sourceWeight": "221885.74354900676", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2855", "source": "Mexico", "target": "Honduras", "attributes": { "weight": 75949.15572653529, "sourceWeight": "75949.15572653529", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2856", "source": "Mexico", "target": "BelizeBritishHonduras", "attributes": { "weight": 24524.445450417847, "sourceWeight": "24524.445450417847", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2857", "source": "Mexico", "target": "Italy", "attributes": { "weight": 197694.14554087032, "sourceWeight": "197694.14554087032", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2858", "source": "Mexico", "target": "Nicaragua", "attributes": { "weight": 7489.067451331716, "sourceWeight": "7489.067451331716", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2859", "source": "Mexico", "target": "Norway", "attributes": { "weight": 124007.62788585947, "sourceWeight": "124007.62788585947", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2860", "source": "Mexico", "target": "Netherlands", "attributes": { "weight": 584345.6303754447, "sourceWeight": "584345.6303754447", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2861", "source": "Mexico", "target": "Panama", "attributes": { "weight": 243922.39588036743, "sourceWeight": "243922.39588036743", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2862", "source": "Mexico", "target": "Poland", "attributes": { "weight": 1262.009959256954, "sourceWeight": "1262.009959256954", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2863", "source": "Mexico", "target": "Portugal", "attributes": { "weight": 84160.23426885804, "sourceWeight": "84160.23426885804", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2864", "source": "Mexico", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 8593.435943861723, "sourceWeight": "8593.435943861723", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2865", "source": "Mexico", "target": "Sweden", "attributes": { "weight": 686.6625169756653, "sourceWeight": "686.6625169756653", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2866", "source": "Mexico", "target": "Switzerland", "attributes": { "weight": 61.3660027161306, "sourceWeight": "61.3660027161306", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2867", "source": "Mexico", "target": "Uruguay", "attributes": { "weight": 194825.5319147966, "sourceWeight": "194825.5319147966", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2868", "source": "Mexico", "target": "Venezuela", "attributes": { "weight": 18654.386600262325, "sourceWeight": "18654.386600262325", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2869", "source": "GermanyZollverein", "target": "Mexico", "attributes": { "weight": 2547194.202126391, "sourceWeight": "2547194.202126391", "direction": "Imp", "source_type": "primary", "targetWeight": "2547194.202126391" } }, { "key": "geid_107_2870", "source": "FrenchWestIndies", "target": "Mexico", "attributes": { "weight": 64.5495699411177, "sourceWeight": "64.5495699411177", "direction": "Imp", "source_type": "primary", "targetWeight": "64.5495699411177" } }, { "key": "geid_107_2871", "source": "Arabia", "target": "Mexico", "attributes": { "weight": 71.13626075143583, "sourceWeight": "71.13626075143583", "direction": "Imp", "source_type": "primary", "targetWeight": "71.13626075143583" } }, { "key": "geid_107_2872", "source": "AlgeriaRegencyofAlgiers_TunisiaRegencyofTunis", "target": "Mexico", "attributes": { "weight": 772.399275689973, "sourceWeight": "772.399275689973", "direction": "Imp", "source_type": "primary", "targetWeight": "772.399275689973" } }, { "key": "geid_107_2873", "source": "ArgentinaLaPlata", "target": "Mexico", "attributes": { "weight": 24110.471932989352, "sourceWeight": "24110.471932989352", "direction": "Imp", "source_type": "primary", "targetWeight": "24110.471932989352" } }, { "key": "geid_107_2874", "source": "Australia", "target": "Mexico", "attributes": { "weight": 1500.7775011309864, "sourceWeight": "1500.7775011309864", "direction": "Imp", "source_type": "primary", "targetWeight": "1500.7775011309864" } }, { "key": "geid_107_2875", "source": "Austria", "target": "Mexico", "attributes": { "weight": 48580.686962402244, "sourceWeight": "48580.686962402244", "direction": "Imp", "source_type": "primary", "targetWeight": "48580.686962402244" } }, { "key": "geid_107_2876", "source": "Belgium", "target": "Mexico", "attributes": { "weight": 234475.76392020917, "sourceWeight": "234475.76392020917", "direction": "Imp", "source_type": "primary", "targetWeight": "234475.76392020917" } }, { "key": "geid_107_2877", "source": "Brazil", "target": "Mexico", "attributes": { "weight": 3579.756677227733, "sourceWeight": "3579.756677227733", "direction": "Imp", "source_type": "primary", "targetWeight": "3579.756677227733" } }, { "key": "geid_107_2878", "source": "CanadaProvinceofCanada", "target": "Mexico", "attributes": { "weight": 240647.16387493676, "sourceWeight": "240647.16387493676", "direction": "Imp", "source_type": "primary", "targetWeight": "240647.16387493676" } }, { "key": "geid_107_2879", "source": "SriLankaCeylon", "target": "Mexico", "attributes": { "weight": 36249.41376186515, "sourceWeight": "36249.41376186515", "direction": "Imp", "source_type": "primary", "targetWeight": "36249.41376186515" } }, { "key": "geid_107_2880", "source": "Czechoslovakia", "target": "Mexico", "attributes": { "weight": 219588.96446344882, "sourceWeight": "219588.96446344882", "direction": "Imp", "source_type": "primary", "targetWeight": "219588.96446344882" } }, { "key": "geid_107_2881", "source": "Chile", "target": "Mexico", "attributes": { "weight": 5926.045722043224, "sourceWeight": "5926.045722043224", "direction": "Imp", "source_type": "primary", "targetWeight": "5926.045722043224" } }, { "key": "geid_107_2882", "source": "PeoplesRepublicofChinaChina", "target": "Mexico", "attributes": { "weight": 47330.7526029642, "sourceWeight": "47330.7526029642", "direction": "Imp", "source_type": "primary", "targetWeight": "47330.7526029642" } }, { "key": "geid_107_2883", "source": "ColombiaNewGranadaGranColombia", "target": "Mexico", "attributes": { "weight": 59162.75464007918, "sourceWeight": "59162.75464007918", "direction": "Imp", "source_type": "primary", "targetWeight": "59162.75464007918" } }, { "key": "geid_107_2884", "source": "CostaRica", "target": "Mexico", "attributes": { "weight": 1300.3225441369714, "sourceWeight": "1300.3225441369714", "direction": "Imp", "source_type": "primary", "targetWeight": "1300.3225441369714" } }, { "key": "geid_107_2885", "source": "Cuba", "target": "Mexico", "attributes": { "weight": 8315.916704386986, "sourceWeight": "8315.916704386986", "direction": "Imp", "source_type": "primary", "targetWeight": "8315.916704386986" } }, { "key": "geid_107_2886", "source": "Denmark", "target": "Mexico", "attributes": { "weight": 18287.947034848294, "sourceWeight": "18287.947034848294", "direction": "Imp", "source_type": "primary", "targetWeight": "18287.947034848294" } }, { "key": "geid_107_2887", "source": "Ecuador", "target": "Mexico", "attributes": { "weight": 8998.956541416976, "sourceWeight": "8998.956541416976", "direction": "Imp", "source_type": "primary", "targetWeight": "8998.956541416976" } }, { "key": "geid_107_2888", "source": "EgyptArabRepublicEgypt", "target": "Mexico", "attributes": { "weight": 2119.926437300891, "sourceWeight": "2119.926437300891", "direction": "Imp", "source_type": "primary", "targetWeight": "2119.926437300891" } }, { "key": "geid_107_2889", "source": "ElSalvador", "target": "Mexico", "attributes": { "weight": 6805.14938886035, "sourceWeight": "6805.14938886035", "direction": "Imp", "source_type": "primary", "targetWeight": "6805.14938886035" } }, { "key": "geid_107_2890", "source": "Spain", "target": "Mexico", "attributes": { "weight": 820793.7788588036, "sourceWeight": "820793.7788588036", "direction": "Imp", "source_type": "primary", "targetWeight": "820793.7788588036" } }, { "key": "geid_107_2891", "source": "StraitsSettlements", "target": "Mexico", "attributes": { "weight": 127.01335445896798, "sourceWeight": "127.01335445896798", "direction": "Imp", "source_type": "primary", "targetWeight": "127.01335445896798" } }, { "key": "geid_107_2892", "source": "UnitedStatesofAmerica", "target": "Mexico", "attributes": { "weight": 25599694.621988155, "sourceWeight": "25599694.621988155", "direction": "Imp", "source_type": "primary", "targetWeight": "25599694.621988155" } }, { "key": "geid_107_2893", "source": "Philippines", "target": "Mexico", "attributes": { "weight": 598.6204164777463, "sourceWeight": "598.6204164777463", "direction": "Imp", "source_type": "primary", "targetWeight": "598.6204164777463" } }, { "key": "geid_107_2894", "source": "Finland", "target": "Mexico", "attributes": { "weight": 900.7299683110045, "sourceWeight": "900.7299683110045", "direction": "Imp", "source_type": "primary", "targetWeight": "900.7299683110045" } }, { "key": "geid_107_2895", "source": "France", "target": "Mexico", "attributes": { "weight": 1762723.2786319877, "sourceWeight": "1762723.2786319877", "direction": "Imp", "source_type": "primary", "targetWeight": "1762723.2786319877" } }, { "key": "geid_107_2896", "source": "UnitedKingdom", "target": "Mexico", "attributes": { "weight": 2473856.669306147, "sourceWeight": "2473856.669306147", "direction": "Imp", "source_type": "primary", "targetWeight": "2473856.669306147" } }, { "key": "geid_107_2897", "source": "Greece", "target": "Mexico", "attributes": { "weight": 665.6948845628192, "sourceWeight": "665.6948845628192", "direction": "Imp", "source_type": "primary", "targetWeight": "665.6948845628192" } }, { "key": "geid_107_2898", "source": "Guatemala", "target": "Mexico", "attributes": { "weight": 10265.686962421325, "sourceWeight": "10265.686962421325", "direction": "Imp", "source_type": "primary", "targetWeight": "10265.686962421325" } }, { "key": "geid_107_2899", "source": "Haiti", "target": "Mexico", "attributes": { "weight": 4865.259167041489, "sourceWeight": "4865.259167041489", "direction": "Imp", "source_type": "primary", "targetWeight": "4865.259167041489" } }, { "key": "geid_107_2900", "source": "Honduras", "target": "Mexico", "attributes": { "weight": 745.5036215478406, "sourceWeight": "745.5036215478406", "direction": "Imp", "source_type": "primary", "targetWeight": "745.5036215478406" } }, { "key": "geid_107_2901", "source": "BelizeBritishHonduras", "target": "Mexico", "attributes": { "weight": 1230.832956088115, "sourceWeight": "1230.832956088115", "direction": "Imp", "source_type": "primary", "targetWeight": "1230.832956088115" } }, { "key": "geid_107_2902", "source": "Hungary", "target": "Mexico", "attributes": { "weight": 2820.091670437708, "sourceWeight": "2820.091670437708", "direction": "Imp", "source_type": "primary", "targetWeight": "2820.091670437708" } }, { "key": "geid_107_2903", "source": "India", "target": "Mexico", "attributes": { "weight": 128747.84970568509, "sourceWeight": "128747.84970568509", "direction": "Imp", "source_type": "primary", "targetWeight": "128747.84970568509" } }, { "key": "geid_107_2904", "source": "IndonesiaDutchEastIndies", "target": "Mexico", "attributes": { "weight": 3731.140787684878, "sourceWeight": "3731.140787684878", "direction": "Imp", "source_type": "primary", "targetWeight": "3731.140787684878" } }, { "key": "geid_107_2905", "source": "FrenchIndochina", "target": "Mexico", "attributes": { "weight": 63.890900860085885, "sourceWeight": "63.890900860085885", "direction": "Imp", "source_type": "primary", "targetWeight": "63.890900860085885" } }, { "key": "geid_107_2906", "source": "Ireland", "target": "Mexico", "attributes": { "weight": 6827.43435943526, "sourceWeight": "6827.43435943526", "direction": "Imp", "source_type": "primary", "targetWeight": "6827.43435943526" } }, { "key": "geid_107_2907", "source": "Italy", "target": "Mexico", "attributes": { "weight": 193030.3293344444, "sourceWeight": "193030.3293344444", "direction": "Imp", "source_type": "primary", "targetWeight": "193030.3293344444" } }, { "key": "geid_107_2908", "source": "Jamaica", "target": "Mexico", "attributes": { "weight": 518.482344952209, "sourceWeight": "518.482344952209", "direction": "Imp", "source_type": "primary", "targetWeight": "518.482344952209" } }, { "key": "geid_107_2909", "source": "Japan", "target": "Mexico", "attributes": { "weight": 78351.54142141866, "sourceWeight": "78351.54142141866", "direction": "Imp", "source_type": "primary", "targetWeight": "78351.54142141866" } }, { "key": "geid_107_2910", "source": "Lithuania", "target": "Mexico", "attributes": { "weight": 701.811905839397, "sourceWeight": "701.811905839397", "direction": "Imp", "source_type": "primary", "targetWeight": "701.811905839397" } }, { "key": "geid_107_2911", "source": "Morocco", "target": "Mexico", "attributes": { "weight": 910.8295608868257, "sourceWeight": "910.8295608868257", "direction": "Imp", "source_type": "primary", "targetWeight": "910.8295608868257" } }, { "key": "geid_107_2912", "source": "Nicaragua", "target": "Mexico", "attributes": { "weight": 106.26527840646587, "sourceWeight": "106.26527840646587", "direction": "Imp", "source_type": "primary", "targetWeight": "106.26527840646587" } }, { "key": "geid_107_2913", "source": "Norway", "target": "Mexico", "attributes": { "weight": 42181.058171097146, "sourceWeight": "42181.058171097146", "direction": "Imp", "source_type": "primary", "targetWeight": "42181.058171097146" } }, { "key": "geid_107_2914", "source": "Netherlands", "target": "Mexico", "attributes": { "weight": 131108.8490266436, "sourceWeight": "131108.8490266436", "direction": "Imp", "source_type": "primary", "targetWeight": "131108.8490266436" } }, { "key": "geid_107_2915", "source": "Palestine", "target": "Mexico", "attributes": { "weight": 60.59755545492682, "sourceWeight": "60.59755545492682", "direction": "Imp", "source_type": "primary", "targetWeight": "60.59755545492682" } }, { "key": "geid_107_2916", "source": "Panama", "target": "Mexico", "attributes": { "weight": 28.761883205055845, "sourceWeight": "28.761883205055845", "direction": "Imp", "source_type": "primary", "targetWeight": "28.761883205055845" } }, { "key": "geid_107_2917", "source": "Paraguay", "target": "Mexico", "attributes": { "weight": 9.440923494789322, "sourceWeight": "9.440923494789322", "direction": "Imp", "source_type": "primary", "targetWeight": "9.440923494789322" } }, { "key": "geid_107_2918", "source": "IranPersia", "target": "Mexico", "attributes": { "weight": 4065.195789948179, "sourceWeight": "4065.195789948179", "direction": "Imp", "source_type": "primary", "targetWeight": "4065.195789948179" } }, { "key": "geid_107_2919", "source": "Peru", "target": "Mexico", "attributes": { "weight": 11236.894522402734, "sourceWeight": "11236.894522402734", "direction": "Imp", "source_type": "primary", "targetWeight": "11236.894522402734" } }, { "key": "geid_107_2920", "source": "Poland", "target": "Mexico", "attributes": { "weight": 977.135581710695, "sourceWeight": "977.135581710695", "direction": "Imp", "source_type": "primary", "targetWeight": "977.135581710695" } }, { "key": "geid_107_2921", "source": "Portugal", "target": "Mexico", "attributes": { "weight": 11364.566545942733, "sourceWeight": "11364.566545942733", "direction": "Imp", "source_type": "primary", "targetWeight": "11364.566545942733" } }, { "key": "geid_107_2922", "source": "FrenchWestAfrica", "target": "Mexico", "attributes": { "weight": 878.6645540964388, "sourceWeight": "878.6645540964388", "direction": "Imp", "source_type": "primary", "targetWeight": "878.6645540964388" } }, { "key": "geid_107_2923", "source": "BritishEastAfrica", "target": "Mexico", "attributes": { "weight": 1502.64373019391, "sourceWeight": "1502.64373019391", "direction": "Imp", "source_type": "primary", "targetWeight": "1502.64373019391" } }, { "key": "geid_107_2924", "source": "PuertoRico", "target": "Mexico", "attributes": { "weight": 102.09370755993105, "sourceWeight": "102.09370755993105", "direction": "Imp", "source_type": "primary", "targetWeight": "102.09370755993105" } }, { "key": "geid_107_2925", "source": "DominicanRepublicSantoDomingo", "target": "Mexico", "attributes": { "weight": 23706.81756449702, "sourceWeight": "23706.81756449702", "direction": "Imp", "source_type": "primary", "targetWeight": "23706.81756449702" } }, { "key": "geid_107_2926", "source": "ThailandSiam", "target": "Mexico", "attributes": { "weight": 757.9085559072731, "sourceWeight": "757.9085559072731", "direction": "Imp", "source_type": "primary", "targetWeight": "757.9085559072731" } }, { "key": "geid_107_2927", "source": "Syria", "target": "Mexico", "attributes": { "weight": 1899.2722951552335, "sourceWeight": "1899.2722951552335", "direction": "Imp", "source_type": "primary", "targetWeight": "1899.2722951552335" } }, { "key": "geid_107_2928", "source": "Sweden", "target": "Mexico", "attributes": { "weight": 90111.74852870117, "sourceWeight": "90111.74852870117", "direction": "Imp", "source_type": "primary", "targetWeight": "90111.74852870117" } }, { "key": "geid_107_2929", "source": "Switzerland", "target": "Mexico", "attributes": { "weight": 336542.24649145757, "sourceWeight": "336542.24649145757", "direction": "Imp", "source_type": "primary", "targetWeight": "336542.24649145757" } }, { "key": "geid_107_2930", "source": "NewfoundlandandLabradorNewfoundland", "target": "Mexico", "attributes": { "weight": 17.893843368030925, "sourceWeight": "17.893843368030925", "direction": "Imp", "source_type": "primary", "targetWeight": "17.893843368030925" } }, { "key": "geid_107_2931", "source": "TurkeyOttomanEmpire", "target": "Mexico", "attributes": { "weight": 1463.782254413033, "sourceWeight": "1463.782254413033", "direction": "Imp", "source_type": "primary", "targetWeight": "1463.782254413033" } }, { "key": "geid_107_2932", "source": "Uruguay", "target": "Mexico", "attributes": { "weight": 1619.3379357167128, "sourceWeight": "1619.3379357167128", "direction": "Imp", "source_type": "primary", "targetWeight": "1619.3379357167128" } }, { "key": "geid_107_2933", "source": "RussiaUSSR", "target": "Mexico", "attributes": { "weight": 272.4694431868267, "sourceWeight": "272.4694431868267", "direction": "Imp", "source_type": "primary", "targetWeight": "272.4694431868267" } }, { "key": "geid_107_2934", "source": "Venezuela", "target": "Mexico", "attributes": { "weight": 4625.503621545909, "sourceWeight": "4625.503621545909", "direction": "Imp", "source_type": "primary", "targetWeight": "4625.503621545909" } }, { "key": "geid_107_2935", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Mexico", "attributes": { "weight": 1773.3567224979852, "sourceWeight": "1773.3567224979852", "direction": "Imp", "source_type": "primary", "targetWeight": "1773.3567224979852" } }, { "key": "geid_107_2936", "source": "Australia", "target": "PapuaBritishNewGuinea", "attributes": { "weight": 488987.13799992175, "sourceWeight": "488987.13799992175", "direction": "Imp", "source_type": "primary", "targetWeight": "488987.13799992175" } }, { "key": "geid_107_2937", "source": "UnitedStatesofAmerica", "target": "PapuaBritishNewGuinea", "attributes": { "weight": 2803.5719999995513, "sourceWeight": "2803.5719999995513", "direction": "Imp", "source_type": "primary", "targetWeight": "2803.5719999995513" } }, { "key": "geid_107_2938", "source": "PeoplesRepublicofChinaChina", "target": "PapuaBritishNewGuinea", "attributes": { "weight": 2118.457999999661, "sourceWeight": "2118.457999999661", "direction": "Imp", "source_type": "primary", "targetWeight": "2118.457999999661" } }, { "key": "geid_107_2939", "source": "Japan", "target": "PapuaBritishNewGuinea", "attributes": { "weight": 466.2439999999254, "sourceWeight": "466.2439999999254", "direction": "Imp", "source_type": "primary", "targetWeight": "466.2439999999254" } }, { "key": "geid_107_2940", "source": "PapuaBritishNewGuinea", "target": "Australia", "attributes": { "weight": 303980.90799995133, "sourceWeight": "303980.90799995133", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2941", "source": "PapuaBritishNewGuinea", "target": "UnitedStatesofAmerica", "attributes": { "weight": 34740.26799999444, "sourceWeight": "34740.26799999444", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2942", "source": "PapuaBritishNewGuinea", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 201.56399999996773, "sourceWeight": "201.56399999996773", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2943", "source": "PapuaBritishNewGuinea", "target": "Europe", "attributes": { "weight": 392545.8899999372, "sourceWeight": "392545.8899999372", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2944", "source": "RussiaUSSR", "target": "Austria", "attributes": { "weight": 174117.24762335897, "sourceWeight": "174117.24762335897", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2945", "source": "RussiaUSSR", "target": "UnitedKingdom", "attributes": { "weight": 16476290.176550474, "sourceWeight": "16476290.176550474", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2946", "source": "RussiaUSSR", "target": "Belgium_Luxemburg", "attributes": { "weight": 1870359.8913535536, "sourceWeight": "1870359.8913535536", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2947", "source": "RussiaUSSR", "target": "Bulgaria", "attributes": { "weight": 93028.5196921684, "sourceWeight": "93028.5196921684", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2948", "source": "RussiaUSSR", "target": "GermanyZollverein", "attributes": { "weight": 13102648.257129923, "sourceWeight": "13102648.257129923", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2949", "source": "RussiaUSSR", "target": "Netherlands", "attributes": { "weight": 4252433.2277048435, "sourceWeight": "4252433.2277048435", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2950", "source": "RussiaUSSR", "target": "Greece", "attributes": { "weight": 105251.24490719782, "sourceWeight": "105251.24490719782", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2951", "source": "RussiaUSSR", "target": "Denmark", "attributes": { "weight": 2124490.719782707, "sourceWeight": "2124490.719782707", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2952", "source": "RussiaUSSR", "target": "Italy", "attributes": { "weight": 3010355.3644182887, "sourceWeight": "3010355.3644182887", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2953", "source": "RussiaUSSR", "target": "Norway", "attributes": { "weight": 454787.2340425532, "sourceWeight": "454787.2340425532", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2954", "source": "RussiaUSSR", "target": "Poland", "attributes": { "weight": 575599.8189225894, "sourceWeight": "575599.8189225894", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2955", "source": "RussiaUSSR", "target": "Portugal", "attributes": { "weight": 169.76007243096424, "sourceWeight": "169.76007243096424", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2956", "source": "RussiaUSSR", "target": "Romania", "attributes": { "weight": 389090.08601177, "sourceWeight": "389090.08601177", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2957", "source": "RussiaUSSR", "target": "Finland", "attributes": { "weight": 1857062.019013128, "sourceWeight": "1857062.019013128", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2958", "source": "RussiaUSSR", "target": "France", "attributes": { "weight": 3012675.418741512, "sourceWeight": "3012675.418741512", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2959", "source": "RussiaUSSR", "target": "Czechoslovakia", "attributes": { "weight": 37290.62924400181, "sourceWeight": "37290.62924400181", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2960", "source": "RussiaUSSR", "target": "Sweden", "attributes": { "weight": 489644.6355817112, "sourceWeight": "489644.6355817112", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2961", "source": "RussiaUSSR", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 137222.7252150294, "sourceWeight": "137222.7252150294", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2962", "source": "RussiaUSSR", "target": "Afghanistan", "attributes": { "weight": 23483.476686283386, "sourceWeight": "23483.476686283386", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2963", "source": "RussiaUSSR", "target": "IranPersia", "attributes": { "weight": 1470518.3340878226, "sourceWeight": "1470518.3340878226", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2964", "source": "RussiaUSSR", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 920212.7659574468, "sourceWeight": "920212.7659574468", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2965", "source": "RussiaUSSR", "target": "KoreaChosen", "attributes": { "weight": 792.2136713444997, "sourceWeight": "792.2136713444997", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2966", "source": "RussiaUSSR", "target": "Mongolia", "attributes": { "weight": 296853.7799909461, "sourceWeight": "296853.7799909461", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2967", "source": "RussiaUSSR", "target": "Palestine", "attributes": { "weight": 3168.854685377999, "sourceWeight": "3168.854685377999", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2968", "source": "RussiaUSSR", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 4636147.578089633, "sourceWeight": "4636147.578089633", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2969", "source": "RussiaUSSR", "target": "Japan", "attributes": { "weight": 2915006.790402897, "sourceWeight": "2915006.790402897", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2970", "source": "RussiaUSSR", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1416308.2842915347, "sourceWeight": "1416308.2842915347", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2971", "source": "RussiaUSSR", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 403123.58533272974, "sourceWeight": "403123.58533272974", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_2972", "source": "Austria", "target": "RussiaUSSR", "attributes": { "weight": 485117.7003168854, "sourceWeight": "485117.7003168854", "direction": "Imp", "source_type": "primary", "targetWeight": "485117.7003168854" } }, { "key": "geid_107_2973", "source": "UnitedKingdom", "target": "RussiaUSSR", "attributes": { "weight": 9654028.972385695, "sourceWeight": "9654028.972385695", "direction": "Imp", "source_type": "primary", "targetWeight": "9654028.972385695" } }, { "key": "geid_107_2974", "source": "Belgium_Luxemburg", "target": "RussiaUSSR", "attributes": { "weight": 75712.99230421004, "sourceWeight": "75712.99230421004", "direction": "Imp", "source_type": "primary", "targetWeight": "75712.99230421004" } }, { "key": "geid_107_2975", "source": "Bulgaria", "target": "RussiaUSSR", "attributes": { "weight": 396.1068356722499, "sourceWeight": "396.1068356722499", "direction": "Imp", "source_type": "primary", "targetWeight": "396.1068356722499" } }, { "key": "geid_107_2976", "source": "GermanyZollverein", "target": "RussiaUSSR", "attributes": { "weight": 8917270.25803531, "sourceWeight": "8917270.25803531", "direction": "Imp", "source_type": "primary", "targetWeight": "8917270.25803531" } }, { "key": "geid_107_2977", "source": "Netherlands", "target": "RussiaUSSR", "attributes": { "weight": 274332.2770484382, "sourceWeight": "274332.2770484382", "direction": "Imp", "source_type": "primary", "targetWeight": "274332.2770484382" } }, { "key": "geid_107_2978", "source": "Greece", "target": "RussiaUSSR", "attributes": { "weight": 396.1068356722499, "sourceWeight": "396.1068356722499", "direction": "Imp", "source_type": "primary", "targetWeight": "396.1068356722499" } }, { "key": "geid_107_2979", "source": "Denmark", "target": "RussiaUSSR", "attributes": { "weight": 44590.31235853327, "sourceWeight": "44590.31235853327", "direction": "Imp", "source_type": "primary", "targetWeight": "44590.31235853327" } }, { "key": "geid_107_2980", "source": "Spain", "target": "RussiaUSSR", "attributes": { "weight": 20314.622000905387, "sourceWeight": "20314.622000905387", "direction": "Imp", "source_type": "primary", "targetWeight": "20314.622000905387" } }, { "key": "geid_107_2981", "source": "Italy", "target": "RussiaUSSR", "attributes": { "weight": 228383.8841104572, "sourceWeight": "228383.8841104572", "direction": "Imp", "source_type": "primary", "targetWeight": "228383.8841104572" } }, { "key": "geid_107_2982", "source": "Norway", "target": "RussiaUSSR", "attributes": { "weight": 815640.5613399728, "sourceWeight": "815640.5613399728", "direction": "Imp", "source_type": "primary", "targetWeight": "815640.5613399728" } }, { "key": "geid_107_2983", "source": "Poland", "target": "RussiaUSSR", "attributes": { "weight": 559472.6120416478, "sourceWeight": "559472.6120416478", "direction": "Imp", "source_type": "primary", "targetWeight": "559472.6120416478" } }, { "key": "geid_107_2984", "source": "Finland", "target": "RussiaUSSR", "attributes": { "weight": 1360344.0470801268, "sourceWeight": "1360344.0470801268", "direction": "Imp", "source_type": "primary", "targetWeight": "1360344.0470801268" } }, { "key": "geid_107_2985", "source": "France", "target": "RussiaUSSR", "attributes": { "weight": 458918.06247170665, "sourceWeight": "458918.06247170665", "direction": "Imp", "source_type": "primary", "targetWeight": "458918.06247170665" } }, { "key": "geid_107_2986", "source": "Czechoslovakia", "target": "RussiaUSSR", "attributes": { "weight": 522634.6763241285, "sourceWeight": "522634.6763241285", "direction": "Imp", "source_type": "primary", "targetWeight": "522634.6763241285" } }, { "key": "geid_107_2987", "source": "Switzerland", "target": "RussiaUSSR", "attributes": { "weight": 3564.961521050249, "sourceWeight": "3564.961521050249", "direction": "Imp", "source_type": "primary", "targetWeight": "3564.961521050249" } }, { "key": "geid_107_2988", "source": "Sweden", "target": "RussiaUSSR", "attributes": { "weight": 2425701.674966048, "sourceWeight": "2425701.674966048", "direction": "Imp", "source_type": "primary", "targetWeight": "2425701.674966048" } }, { "key": "geid_107_2989", "source": "Afghanistan", "target": "RussiaUSSR", "attributes": { "weight": 259110.45722046174, "sourceWeight": "259110.45722046174", "direction": "Imp", "source_type": "primary", "targetWeight": "259110.45722046174" } }, { "key": "geid_107_2990", "source": "India", "target": "RussiaUSSR", "attributes": { "weight": 98404.25531914893, "sourceWeight": "98404.25531914893", "direction": "Imp", "source_type": "primary", "targetWeight": "98404.25531914893" } }, { "key": "geid_107_2991", "source": "IranPersia", "target": "RussiaUSSR", "attributes": { "weight": 4382978.723404255, "sourceWeight": "4382978.723404255", "direction": "Imp", "source_type": "primary", "targetWeight": "4382978.723404255" } }, { "key": "geid_107_2992", "source": "PeoplesRepublicofChinaChina", "target": "RussiaUSSR", "attributes": { "weight": 2198675.8714350383, "sourceWeight": "2198675.8714350383", "direction": "Imp", "source_type": "primary", "targetWeight": "2198675.8714350383" } }, { "key": "geid_107_2993", "source": "Mongolia", "target": "RussiaUSSR", "attributes": { "weight": 388128.11226799455, "sourceWeight": "388128.11226799455", "direction": "Imp", "source_type": "primary", "targetWeight": "388128.11226799455" } }, { "key": "geid_107_2994", "source": "Singapore", "target": "RussiaUSSR", "attributes": { "weight": 1980.5341783612494, "sourceWeight": "1980.5341783612494", "direction": "Imp", "source_type": "primary", "targetWeight": "1980.5341783612494" } }, { "key": "geid_107_2995", "source": "TurkeyOttomanEmpire", "target": "RussiaUSSR", "attributes": { "weight": 198223.1779085559, "sourceWeight": "198223.1779085559", "direction": "Imp", "source_type": "primary", "targetWeight": "198223.1779085559" } }, { "key": "geid_107_2996", "source": "SriLankaCeylon", "target": "RussiaUSSR", "attributes": { "weight": 13241.28564961521, "sourceWeight": "13241.28564961521", "direction": "Imp", "source_type": "primary", "targetWeight": "13241.28564961521" } }, { "key": "geid_107_2997", "source": "Java", "target": "RussiaUSSR", "attributes": { "weight": 1188.3205070167496, "sourceWeight": "1188.3205070167496", "direction": "Imp", "source_type": "primary", "targetWeight": "1188.3205070167496" } }, { "key": "geid_107_2998", "source": "Japan", "target": "RussiaUSSR", "attributes": { "weight": 500905.3870529651, "sourceWeight": "500905.3870529651", "direction": "Imp", "source_type": "primary", "targetWeight": "500905.3870529651" } }, { "key": "geid_107_2999", "source": "CanadaProvinceofCanada", "target": "RussiaUSSR", "attributes": { "weight": 23879.583521955636, "sourceWeight": "23879.583521955636", "direction": "Imp", "source_type": "primary", "targetWeight": "23879.583521955636" } }, { "key": "geid_107_3000", "source": "UnitedStatesofAmerica", "target": "RussiaUSSR", "attributes": { "weight": 10057944.77138977, "sourceWeight": "10057944.77138977", "direction": "Imp", "source_type": "primary", "targetWeight": "10057944.77138977" } }, { "key": "geid_107_3001", "source": "ArgentinaLaPlata", "target": "RussiaUSSR", "attributes": { "weight": 264486.1928474423, "sourceWeight": "264486.1928474423", "direction": "Imp", "source_type": "primary", "targetWeight": "264486.1928474423" } }, { "key": "geid_107_3002", "source": "Brazil", "target": "RussiaUSSR", "attributes": { "weight": 14599.366229062924, "sourceWeight": "14599.366229062924", "direction": "Imp", "source_type": "primary", "targetWeight": "14599.366229062924" } }, { "key": "geid_107_3003", "source": "EgyptArabRepublicEgypt", "target": "RussiaUSSR", "attributes": { "weight": 31179.266636487097, "sourceWeight": "31179.266636487097", "direction": "Imp", "source_type": "primary", "targetWeight": "31179.266636487097" } }, { "key": "geid_107_3004", "source": "Australia", "target": "RussiaUSSR", "attributes": { "weight": 402105.02489814395, "sourceWeight": "402105.02489814395", "direction": "Imp", "source_type": "primary", "targetWeight": "402105.02489814395" } }, { "key": "geid_107_3005", "source": "GermanyZollverein", "target": "Baden", "attributes": { "weight": 30221.36713442398, "sourceWeight": "30221.36713442398", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3006", "source": "GermanyZollverein", "target": "Heligoland", "attributes": { "weight": 86677.68220906986, "sourceWeight": "86677.68220906986", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3007", "source": "GermanyZollverein", "target": "Saar", "attributes": { "weight": 3776216.3875024104, "sourceWeight": "3776216.3875024104", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3008", "source": "GermanyZollverein", "target": "EthiopiaAbyssinia", "attributes": { "weight": 8727.025803523502, "sourceWeight": "8727.025803523502", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3009", "source": "GermanyZollverein", "target": "Aden", "attributes": { "weight": 4632.86555001865, "sourceWeight": "4632.86555001865", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3010", "source": "GermanyZollverein", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 2470664.1014012247, "sourceWeight": "2470664.1014012247", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3011", "source": "GermanyZollverein", "target": "Albania", "attributes": { "weight": 12713.444997725597, "sourceWeight": "12713.444997725597", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3012", "source": "GermanyZollverein", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 24026.256224515324, "sourceWeight": "24026.256224515324", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3013", "source": "GermanyZollverein", "target": "Arabia", "attributes": { "weight": 29305.568130350526, "sourceWeight": "29305.568130350526", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3014", "source": "GermanyZollverein", "target": "ArgentinaLaPlata", "attributes": { "weight": 10676654.142136583, "sourceWeight": "10676654.142136583", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3015", "source": "GermanyZollverein", "target": "Australia", "attributes": { "weight": 1438450.8827511393, "sourceWeight": "1438450.8827511393", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3016", "source": "GermanyZollverein", "target": "Belgium_Luxemburg", "attributes": { "weight": 5059304.6627389705, "sourceWeight": "5059304.6627389705", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3017", "source": "GermanyZollverein", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 182621.095518177, "sourceWeight": "182621.095518177", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3018", "source": "GermanyZollverein", "target": "Bolivia", "attributes": { "weight": 359208.6917153995, "sourceWeight": "359208.6917153995", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3019", "source": "GermanyZollverein", "target": "Brazil", "attributes": { "weight": 7123300.135801931, "sourceWeight": "7123300.135801931", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3020", "source": "GermanyZollverein", "target": "BritishMediterranean", "attributes": { "weight": 179227.2521501401, "sourceWeight": "179227.2521501401", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3021", "source": "GermanyZollverein", "target": "India", "attributes": { "weight": 8184818.9225823665, "sourceWeight": "8184818.9225823665", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3022", "source": "GermanyZollverein", "target": "BritishEastAfrica", "attributes": { "weight": 422183.3408778623, "sourceWeight": "422183.3408778623", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3023", "source": "GermanyZollverein", "target": "BritishSouthAfrica", "attributes": { "weight": 2352418.2888164464, "sourceWeight": "2352418.2888164464", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3024", "source": "GermanyZollverein", "target": "BritishWestAfrica", "attributes": { "weight": 1026556.8130366906, "sourceWeight": "1026556.8130366906", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3025", "source": "GermanyZollverein", "target": "Bulgaria", "attributes": { "weight": 1510852.8746025935, "sourceWeight": "1510852.8746025935", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3026", "source": "GermanyZollverein", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1112749.660478898, "sourceWeight": "1112749.660478898", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3027", "source": "GermanyZollverein", "target": "SriLankaCeylon", "attributes": { "weight": 150191.03666804646, "sourceWeight": "150191.03666804646", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3028", "source": "GermanyZollverein", "target": "Chile", "attributes": { "weight": 3262507.016746854, "sourceWeight": "3262507.016746854", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3029", "source": "GermanyZollverein", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 6101645.540963516, "sourceWeight": "6101645.540963516", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3030", "source": "GermanyZollverein", "target": "ChristmasI", "attributes": { "weight": 592.5758261651761, "sourceWeight": "592.5758261651761", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3031", "source": "GermanyZollverein", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 1209985.9664996383, "sourceWeight": "1209985.9664996383", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3032", "source": "GermanyZollverein", "target": "CostaRica", "attributes": { "weight": 131659.57446797186, "sourceWeight": "131659.57446797186", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3033", "source": "GermanyZollverein", "target": "Cuba", "attributes": { "weight": 1934706.2018996486, "sourceWeight": "1934706.2018996486", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3034", "source": "GermanyZollverein", "target": "Denmark", "attributes": { "weight": 15755028.972372143, "sourceWeight": "15755028.972372143", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3035", "source": "GermanyZollverein", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 5051601.176998824, "sourceWeight": "5051601.176998824", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3036", "source": "GermanyZollverein", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 178149.8415571125, "sourceWeight": "178149.8415571125", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3037", "source": "GermanyZollverein", "target": "Ecuador", "attributes": { "weight": 304368.492530295, "sourceWeight": "304368.492530295", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3038", "source": "GermanyZollverein", "target": "Estonia", "attributes": { "weight": 1442922.1367122037, "sourceWeight": "1442922.1367122037", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3039", "source": "GermanyZollverein", "target": "Finland", "attributes": { "weight": 5596286.102303923, "sourceWeight": "5596286.102303923", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3040", "source": "GermanyZollverein", "target": "AlsaceLorraine", "attributes": { "weight": 656304.6627427583, "sourceWeight": "656304.6627427583", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3041", "source": "GermanyZollverein", "target": "France", "attributes": { "weight": 5483858.306921494, "sourceWeight": "5483858.306921494", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3042", "source": "GermanyZollverein", "target": "FrenchAmerica", "attributes": { "weight": 45089.63331820477, "sourceWeight": "45089.63331820477", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3043", "source": "GermanyZollverein", "target": "FrenchPolynesia", "attributes": { "weight": 4040.2897238534733, "sourceWeight": "4040.2897238534733", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3044", "source": "GermanyZollverein", "target": "FrenchIndia", "attributes": { "weight": 12444.092349468698, "sourceWeight": "12444.092349468698", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3045", "source": "GermanyZollverein", "target": "Morocco", "attributes": { "weight": 93411.4984154923, "sourceWeight": "93411.4984154923", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3046", "source": "GermanyZollverein", "target": "FrenchWestAfrica", "attributes": { "weight": 138770.48438195398, "sourceWeight": "138770.48438195398", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3047", "source": "GermanyZollverein", "target": "Greece", "attributes": { "weight": 2315786.3286535083, "sourceWeight": "2315786.3286535083", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3048", "source": "GermanyZollverein", "target": "UnitedKingdom", "attributes": { "weight": 32941290.17652214, "sourceWeight": "32941290.17652214", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3049", "source": "GermanyZollverein", "target": "Guatemala", "attributes": { "weight": 386413.3091893462, "sourceWeight": "386413.3091893462", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3050", "source": "GermanyZollverein", "target": "Haiti", "attributes": { "weight": 107525.57718415378, "sourceWeight": "107525.57718415378", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3051", "source": "GermanyZollverein", "target": "HawaiiSandwichIs", "attributes": { "weight": 2478.0443639634636, "sourceWeight": "2478.0443639634636", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3052", "source": "GermanyZollverein", "target": "Honduras", "attributes": { "weight": 57964.6899048845, "sourceWeight": "57964.6899048845", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3053", "source": "GermanyZollverein", "target": "HongKong", "attributes": { "weight": 54894.06971475586, "sourceWeight": "54894.06971475586", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3054", "source": "GermanyZollverein", "target": "IranPersia", "attributes": { "weight": 258416.93073766815, "sourceWeight": "258416.93073766815", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3055", "source": "GermanyZollverein", "target": "Italy", "attributes": { "weight": 12986191.489350531, "sourceWeight": "12986191.489350531", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3056", "source": "GermanyZollverein", "target": "ItalianEastAfrica", "attributes": { "weight": 24618.8320506805, "sourceWeight": "24618.8320506805", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3057", "source": "GermanyZollverein", "target": "Japan", "attributes": { "weight": 7756440.470794596, "sourceWeight": "7756440.470794596", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3058", "source": "GermanyZollverein", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 1959594.386598586, "sourceWeight": "1959594.386598586", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3059", "source": "GermanyZollverein", "target": "KoreaChosen", "attributes": { "weight": 15945.676776808376, "sourceWeight": "15945.676776808376", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3060", "source": "GermanyZollverein", "target": "Latvia", "attributes": { "weight": 3253995.473061936, "sourceWeight": "3253995.473061936", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3061", "source": "GermanyZollverein", "target": "Liberia", "attributes": { "weight": 63782.7071072335, "sourceWeight": "63782.7071072335", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3062", "source": "GermanyZollverein", "target": "Lithuania", "attributes": { "weight": 1868337.7093691488, "sourceWeight": "1868337.7093691488", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3063", "source": "GermanyZollverein", "target": "Luxemburg", "attributes": { "weight": 577007.2430959274, "sourceWeight": "577007.2430959274", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3064", "source": "GermanyZollverein", "target": "MadagascarMalagasyRepublic", "attributes": { "weight": 4525.124490715891, "sourceWeight": "4525.124490715891", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3065", "source": "GermanyZollverein", "target": "Malacca", "attributes": { "weight": 263534.63105454925, "sourceWeight": "263534.63105454925", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3066", "source": "GermanyZollverein", "target": "Palestine", "attributes": { "weight": 339061.1136257835, "sourceWeight": "339061.1136257835", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3067", "source": "GermanyZollverein", "target": "BritishCameroons_CamerounFrenchCameroons", "attributes": { "weight": 24888.184698937395, "sourceWeight": "24888.184698937395", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3068", "source": "GermanyZollverein", "target": "RuandaUrundi_TanzaniaTanganyika", "attributes": { "weight": 75364.87098228013, "sourceWeight": "75364.87098228013", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3069", "source": "GermanyZollverein", "target": "NewGuineaGermanNewGuineaKaiserWilhelmsland_Nauru_SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 915.799004073454, "sourceWeight": "915.799004073454", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3070", "source": "GermanyZollverein", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 192964.23721124188, "sourceWeight": "192964.23721124188", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3071", "source": "GermanyZollverein", "target": "BritishTogoland_TogoFrenchTogoland", "attributes": { "weight": 15568.583069248718, "sourceWeight": "15568.583069248718", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3072", "source": "GermanyZollverein", "target": "Memel", "attributes": { "weight": 758928.0217286365, "sourceWeight": "758928.0217286365", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3073", "source": "GermanyZollverein", "target": "Mexico", "attributes": { "weight": 2267033.4993190095, "sourceWeight": "2267033.4993190095", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3074", "source": "GermanyZollverein", "target": "Montenegro", "attributes": { "weight": 7865.097329101429, "sourceWeight": "7865.097329101429", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3075", "source": "GermanyZollverein", "target": "NewZealand", "attributes": { "weight": 123794.47713887042, "sourceWeight": "123794.47713887042", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3076", "source": "GermanyZollverein", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 198189.67858742573, "sourceWeight": "198189.67858742573", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3077", "source": "GermanyZollverein", "target": "Nicaragua", "attributes": { "weight": 70408.7822543532, "sourceWeight": "70408.7822543532", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3078", "source": "GermanyZollverein", "target": "Netherlands", "attributes": { "weight": 34980990.04071233, "sourceWeight": "34980990.04071233", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3079", "source": "GermanyZollverein", "target": "DutchAmerica", "attributes": { "weight": 63674.96604793074, "sourceWeight": "63674.96604793074", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3080", "source": "GermanyZollverein", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 3539563.1507439, "sourceWeight": "3539563.1507439", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3081", "source": "GermanyZollverein", "target": "Norway", "attributes": { "weight": 7010172.023534033, "sourceWeight": "7010172.023534033", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3082", "source": "GermanyZollverein", "target": "Austria", "attributes": { "weight": 17049052.965127934, "sourceWeight": "17049052.965127934", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3083", "source": "GermanyZollverein", "target": "Panama", "attributes": { "weight": 103269.80534169478, "sourceWeight": "103269.80534169478", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3084", "source": "GermanyZollverein", "target": "Paraguay", "attributes": { "weight": 75257.12992297737, "sourceWeight": "75257.12992297737", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3085", "source": "GermanyZollverein", "target": "Peru", "attributes": { "weight": 1114688.9995463477, "sourceWeight": "1114688.9995463477", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3086", "source": "GermanyZollverein", "target": "Philippines", "attributes": { "weight": 410601.17700281565, "sourceWeight": "410601.17700281565", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3087", "source": "GermanyZollverein", "target": "Kresy", "attributes": { "weight": 9021158.895420035, "sourceWeight": "9021158.895420035", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3088", "source": "GermanyZollverein", "target": "UpperSilesia", "attributes": { "weight": 5261965.595287461, "sourceWeight": "5261965.595287461", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3089", "source": "GermanyZollverein", "target": "WesternPoland", "attributes": { "weight": 1972092.349477706, "sourceWeight": "1972092.349477706", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3090", "source": "GermanyZollverein", "target": "Portugal", "attributes": { "weight": 1968159.8008131555, "sourceWeight": "1968159.8008131555", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3091", "source": "GermanyZollverein", "target": "PortugueseAsia", "attributes": { "weight": 17992.756903560803, "sourceWeight": "17992.756903560803", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3092", "source": "GermanyZollverein", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 228518.78678115245, "sourceWeight": "228518.78678115245", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3093", "source": "GermanyZollverein", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 203145.76731535266, "sourceWeight": "203145.76731535266", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3094", "source": "GermanyZollverein", "target": "Romania", "attributes": { "weight": 4811931.190579835, "sourceWeight": "4811931.190579835", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3095", "source": "GermanyZollverein", "target": "AsianRussia", "attributes": { "weight": 102515.61792657546, "sourceWeight": "102515.61792657546", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3096", "source": "GermanyZollverein", "target": "ElSalvador", "attributes": { "weight": 115336.80398360382, "sourceWeight": "115336.80398360382", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3097", "source": "GermanyZollverein", "target": "Samoa", "attributes": { "weight": 161.61158895413894, "sourceWeight": "161.61158895413894", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3098", "source": "GermanyZollverein", "target": "Sweden", "attributes": { "weight": 15422593.93389348, "sourceWeight": "15422593.93389348", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3099", "source": "GermanyZollverein", "target": "Switzerland", "attributes": { "weight": 20486746.944301073, "sourceWeight": "20486746.944301073", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3100", "source": "GermanyZollverein", "target": "KingdomofSerbia", "attributes": { "weight": 383288.8184695662, "sourceWeight": "383288.8184695662", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3101", "source": "GermanyZollverein", "target": "ThailandSiam", "attributes": { "weight": 284005.4323220735, "sourceWeight": "284005.4323220735", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3102", "source": "GermanyZollverein", "target": "Spain", "attributes": { "weight": 4871242.643726004, "sourceWeight": "4871242.643726004", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3103", "source": "GermanyZollverein", "target": "Czechoslovakia", "attributes": { "weight": 20439287.007678207, "sourceWeight": "20439287.007678207", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3104", "source": "GermanyZollverein", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 8996.378451780402, "sourceWeight": "8996.378451780402", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3105", "source": "GermanyZollverein", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 2649891.353551365, "sourceWeight": "2649891.353551365", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3106", "source": "GermanyZollverein", "target": "Hungary", "attributes": { "weight": 4135748.302395718, "sourceWeight": "4135748.302395718", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3107", "source": "GermanyZollverein", "target": "SpanishAfricaother", "attributes": { "weight": 183913.98822981011, "sourceWeight": "183913.98822981011", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3108", "source": "GermanyZollverein", "target": "NorthernRussia", "attributes": { "weight": 4651720.235396633, "sourceWeight": "4651720.235396633", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3109", "source": "GermanyZollverein", "target": "SouthernRussia", "attributes": { "weight": 144965.59529186264, "sourceWeight": "144965.59529186264", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3110", "source": "GermanyZollverein", "target": "Uruguay", "attributes": { "weight": 1276785.423267349, "sourceWeight": "1276785.423267349", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3111", "source": "GermanyZollverein", "target": "Venezuela", "attributes": { "weight": 604211.860569874, "sourceWeight": "604211.860569874", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3112", "source": "GermanyZollverein", "target": "UnitedStatesofAmerica", "attributes": { "weight": 27440893.616997674, "sourceWeight": "27440893.616997674", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3113", "source": "GermanyZollverein", "target": "Othercountries", "attributes": { "weight": 231966.50067884076, "sourceWeight": "231966.50067884076", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3114", "source": "Baden", "target": "GermanyZollverein", "attributes": { "weight": 7164.780443633493, "sourceWeight": "7164.780443633493", "direction": "Imp", "source_type": "primary", "targetWeight": "7164.780443633493" } }, { "key": "geid_107_3115", "source": "Heligoland", "target": "GermanyZollverein", "attributes": { "weight": 2747.397012220362, "sourceWeight": "2747.397012220362", "direction": "Imp", "source_type": "primary", "targetWeight": "2747.397012220362" } }, { "key": "geid_107_3116", "source": "Saar", "target": "GermanyZollverein", "attributes": { "weight": 4292511.543681233, "sourceWeight": "4292511.543681233", "direction": "Imp", "source_type": "primary", "targetWeight": "4292511.543681233" } }, { "key": "geid_107_3117", "source": "EthiopiaAbyssinia", "target": "GermanyZollverein", "attributes": { "weight": 60281.12267989382, "sourceWeight": "60281.12267989382", "direction": "Imp", "source_type": "primary", "targetWeight": "60281.12267989382" } }, { "key": "geid_107_3118", "source": "Aden", "target": "GermanyZollverein", "attributes": { "weight": 1939.3390674496673, "sourceWeight": "1939.3390674496673", "direction": "Imp", "source_type": "primary", "targetWeight": "1939.3390674496673" } }, { "key": "geid_107_3119", "source": "EgyptArabRepublicEgypt", "target": "GermanyZollverein", "attributes": { "weight": 4541716.613848515, "sourceWeight": "4541716.613848515", "direction": "Imp", "source_type": "primary", "targetWeight": "4541716.613848515" } }, { "key": "geid_107_3120", "source": "Albania", "target": "GermanyZollverein", "attributes": { "weight": 3824.807605247955, "sourceWeight": "3824.807605247955", "direction": "Imp", "source_type": "primary", "targetWeight": "3824.807605247955" } }, { "key": "geid_107_3121", "source": "AlgeriaRegencyofAlgiers", "target": "GermanyZollverein", "attributes": { "weight": 457037.5735623049, "sourceWeight": "457037.5735623049", "direction": "Imp", "source_type": "primary", "targetWeight": "457037.5735623049" } }, { "key": "geid_107_3122", "source": "Arabia", "target": "GermanyZollverein", "attributes": { "weight": 47729.28927112237, "sourceWeight": "47729.28927112237", "direction": "Imp", "source_type": "primary", "targetWeight": "47729.28927112237" } }, { "key": "geid_107_3123", "source": "ArgentinaLaPlata", "target": "GermanyZollverein", "attributes": { "weight": 27945229.51559389, "sourceWeight": "27945229.51559389", "direction": "Imp", "source_type": "primary", "targetWeight": "27945229.51559389" } }, { "key": "geid_107_3124", "source": "Australia", "target": "GermanyZollverein", "attributes": { "weight": 13362046.174728207, "sourceWeight": "13362046.174728207", "direction": "Imp", "source_type": "primary", "targetWeight": "13362046.174728207" } }, { "key": "geid_107_3125", "source": "Belgium", "target": "GermanyZollverein", "attributes": { "weight": 8537239.927561693, "sourceWeight": "8537239.927561693", "direction": "Imp", "source_type": "primary", "targetWeight": "8537239.927561693" } }, { "key": "geid_107_3126", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "GermanyZollverein", "attributes": { "weight": 741043.0058843784, "sourceWeight": "741043.0058843784", "direction": "Imp", "source_type": "primary", "targetWeight": "741043.0058843784" } }, { "key": "geid_107_3127", "source": "Bolivia", "target": "GermanyZollverein", "attributes": { "weight": 204815.7537345454, "sourceWeight": "204815.7537345454", "direction": "Imp", "source_type": "primary", "targetWeight": "204815.7537345454" } }, { "key": "geid_107_3128", "source": "Brazil", "target": "GermanyZollverein", "attributes": { "weight": 6246934.359433287, "sourceWeight": "6246934.359433287", "direction": "Imp", "source_type": "primary", "targetWeight": "6246934.359433287" } }, { "key": "geid_107_3129", "source": "BritishMediterranean", "target": "GermanyZollverein", "attributes": { "weight": 55055.68130371, "sourceWeight": "55055.68130371", "direction": "Imp", "source_type": "primary", "targetWeight": "55055.68130371" } }, { "key": "geid_107_3130", "source": "India", "target": "GermanyZollverein", "attributes": { "weight": 21427918.96784033, "sourceWeight": "21427918.96784033", "direction": "Imp", "source_type": "primary", "targetWeight": "21427918.96784033" } }, { "key": "geid_107_3131", "source": "BritishEastAfrica", "target": "GermanyZollverein", "attributes": { "weight": 698485.2874597885, "sourceWeight": "698485.2874597885", "direction": "Imp", "source_type": "primary", "targetWeight": "698485.2874597885" } }, { "key": "geid_107_3132", "source": "BritishSouthAfrica", "target": "GermanyZollverein", "attributes": { "weight": 6760212.765951632, "sourceWeight": "6760212.765951632", "direction": "Imp", "source_type": "primary", "targetWeight": "6760212.765951632" } }, { "key": "geid_107_3133", "source": "BritishWestAfrica", "target": "GermanyZollverein", "attributes": { "weight": 5115006.790398497, "sourceWeight": "5115006.790398497", "direction": "Imp", "source_type": "primary", "targetWeight": "5115006.790398497" } }, { "key": "geid_107_3134", "source": "Bulgaria", "target": "GermanyZollverein", "attributes": { "weight": 1136883.657762716, "sourceWeight": "1136883.657762716", "direction": "Imp", "source_type": "primary", "targetWeight": "1136883.657762716" } }, { "key": "geid_107_3135", "source": "CanadaProvinceofCanada", "target": "GermanyZollverein", "attributes": { "weight": 2554594.3865980743, "sourceWeight": "2554594.3865980743", "direction": "Imp", "source_type": "primary", "targetWeight": "2554594.3865980743" } }, { "key": "geid_107_3136", "source": "SriLankaCeylon", "target": "GermanyZollverein", "attributes": { "weight": 1346547.7591658856, "sourceWeight": "1346547.7591658856", "direction": "Imp", "source_type": "primary", "targetWeight": "1346547.7591658856" } }, { "key": "geid_107_3137", "source": "Chile", "target": "GermanyZollverein", "attributes": { "weight": 1477937.9809856005, "sourceWeight": "1477937.9809856005", "direction": "Imp", "source_type": "primary", "targetWeight": "1477937.9809856005" } }, { "key": "geid_107_3138", "source": "PeoplesRepublicofChinaChina", "target": "GermanyZollverein", "attributes": { "weight": 6853408.782248518, "sourceWeight": "6853408.782248518", "direction": "Imp", "source_type": "primary", "targetWeight": "6853408.782248518" } }, { "key": "geid_107_3139", "source": "ChristmasI", "target": "GermanyZollverein", "attributes": { "weight": 167267.9945675338, "sourceWeight": "167267.9945675338", "direction": "Imp", "source_type": "primary", "targetWeight": "167267.9945675338" } }, { "key": "geid_107_3140", "source": "ColombiaNewGranadaGranColombia", "target": "GermanyZollverein", "attributes": { "weight": 271561.3399726048, "sourceWeight": "271561.3399726048", "direction": "Imp", "source_type": "primary", "targetWeight": "271561.3399726048" } }, { "key": "geid_107_3141", "source": "CostaRica", "target": "GermanyZollverein", "attributes": { "weight": 363841.5572654181, "sourceWeight": "363841.5572654181", "direction": "Imp", "source_type": "primary", "targetWeight": "363841.5572654181" } }, { "key": "geid_107_3142", "source": "Cuba", "target": "GermanyZollverein", "attributes": { "weight": 125464.4635580632, "sourceWeight": "125464.4635580632", "direction": "Imp", "source_type": "primary", "targetWeight": "125464.4635580632" } }, { "key": "geid_107_3143", "source": "Denmark", "target": "GermanyZollverein", "attributes": { "weight": 14095277.953813136, "sourceWeight": "14095277.953813136", "direction": "Imp", "source_type": "primary", "targetWeight": "14095277.953813136" } }, { "key": "geid_107_3144", "source": "DanzigFreeCityofDanzig", "target": "GermanyZollverein", "attributes": { "weight": 2983242.191034102, "sourceWeight": "2983242.191034102", "direction": "Imp", "source_type": "primary", "targetWeight": "2983242.191034102" } }, { "key": "geid_107_3145", "source": "DominicanRepublicSantoDomingo", "target": "GermanyZollverein", "attributes": { "weight": 217798.5513805279, "sourceWeight": "217798.5513805279", "direction": "Imp", "source_type": "primary", "targetWeight": "217798.5513805279" } }, { "key": "geid_107_3146", "source": "Ecuador", "target": "GermanyZollverein", "attributes": { "weight": 393362.6075143742, "sourceWeight": "393362.6075143742", "direction": "Imp", "source_type": "primary", "targetWeight": "393362.6075143742" } }, { "key": "geid_107_3147", "source": "Estonia", "target": "GermanyZollverein", "attributes": { "weight": 949683.5672241718, "sourceWeight": "949683.5672241718", "direction": "Imp", "source_type": "primary", "targetWeight": "949683.5672241718" } }, { "key": "geid_107_3148", "source": "Finland", "target": "GermanyZollverein", "attributes": { "weight": 2505141.240378108, "sourceWeight": "2505141.240378108", "direction": "Imp", "source_type": "primary", "targetWeight": "2505141.240378108" } }, { "key": "geid_107_3149", "source": "AlsaceLorraine", "target": "GermanyZollverein", "attributes": { "weight": 27583165.685806967, "sourceWeight": "27583165.685806967", "direction": "Imp", "source_type": "primary", "targetWeight": "27583165.685806967" } }, { "key": "geid_107_3150", "source": "France", "target": "GermanyZollverein", "attributes": { "weight": 11859381.620632624, "sourceWeight": "11859381.620632624", "direction": "Imp", "source_type": "primary", "targetWeight": "11859381.620632624" } }, { "key": "geid_107_3151", "source": "FrenchAmerica", "target": "GermanyZollverein", "attributes": { "weight": 11743.775464000762, "sourceWeight": "11743.775464000762", "direction": "Imp", "source_type": "primary", "targetWeight": "11743.775464000762" } }, { "key": "geid_107_3152", "source": "FrenchPolynesia", "target": "GermanyZollverein", "attributes": { "weight": 151537.79990933093, "sourceWeight": "151537.79990933093", "direction": "Imp", "source_type": "primary", "targetWeight": "151537.79990933093" } }, { "key": "geid_107_3153", "source": "FrenchIndia", "target": "GermanyZollverein", "attributes": { "weight": 23541.421457652905, "sourceWeight": "23541.421457652905", "direction": "Imp", "source_type": "primary", "targetWeight": "23541.421457652905" } }, { "key": "geid_107_3154", "source": "Morocco", "target": "GermanyZollverein", "attributes": { "weight": 384581.7111811993, "sourceWeight": "384581.7111811993", "direction": "Imp", "source_type": "primary", "targetWeight": "384581.7111811993" } }, { "key": "geid_107_3155", "source": "FrenchWestAfrica", "target": "GermanyZollverein", "attributes": { "weight": 465010.4119507091, "sourceWeight": "465010.4119507091", "direction": "Imp", "source_type": "primary", "targetWeight": "465010.4119507091" } }, { "key": "geid_107_3156", "source": "Greece", "target": "GermanyZollverein", "attributes": { "weight": 3031079.221364527, "sourceWeight": "3031079.221364527", "direction": "Imp", "source_type": "primary", "targetWeight": "3031079.221364527" } }, { "key": "geid_107_3157", "source": "UnitedKingdom", "target": "GermanyZollverein", "attributes": { "weight": 47460313.71657303, "sourceWeight": "47460313.71657303", "direction": "Imp", "source_type": "primary", "targetWeight": "47460313.71657303" } }, { "key": "geid_107_3158", "source": "Guatemala", "target": "GermanyZollverein", "attributes": { "weight": 1610836.5776355541, "sourceWeight": "1610836.5776355541", "direction": "Imp", "source_type": "primary", "targetWeight": "1610836.5776355541" } }, { "key": "geid_107_3159", "source": "Haiti", "target": "GermanyZollverein", "attributes": { "weight": 117491.625169659, "sourceWeight": "117491.625169659", "direction": "Imp", "source_type": "primary", "targetWeight": "117491.625169659" } }, { "key": "geid_107_3160", "source": "HawaiiSandwichIs", "target": "GermanyZollverein", "attributes": { "weight": 35123.58533269953, "sourceWeight": "35123.58533269953", "direction": "Imp", "source_type": "primary", "targetWeight": "35123.58533269953" } }, { "key": "geid_107_3161", "source": "Honduras", "target": "GermanyZollverein", "attributes": { "weight": 9157.99004073454, "sourceWeight": "9157.99004073454", "direction": "Imp", "source_type": "primary", "targetWeight": "9157.99004073454" } }, { "key": "geid_107_3162", "source": "HongKong", "target": "GermanyZollverein", "attributes": { "weight": 700.3168854679354, "sourceWeight": "700.3168854679354", "direction": "Imp", "source_type": "primary", "targetWeight": "700.3168854679354" } }, { "key": "geid_107_3163", "source": "IranPersia", "target": "GermanyZollverein", "attributes": { "weight": 139363.06020811913, "sourceWeight": "139363.06020811913", "direction": "Imp", "source_type": "primary", "targetWeight": "139363.06020811913" } }, { "key": "geid_107_3164", "source": "Italy", "target": "GermanyZollverein", "attributes": { "weight": 19798335.445886094, "sourceWeight": "19798335.445886094", "direction": "Imp", "source_type": "primary", "targetWeight": "19798335.445886094" } }, { "key": "geid_107_3165", "source": "ItalianEastAfrica", "target": "GermanyZollverein", "attributes": { "weight": 5225.441376183826, "sourceWeight": "5225.441376183826", "direction": "Imp", "source_type": "primary", "targetWeight": "5225.441376183826" } }, { "key": "geid_107_3166", "source": "Japan", "target": "GermanyZollverein", "attributes": { "weight": 949468.0851055663, "sourceWeight": "949468.0851055663", "direction": "Imp", "source_type": "primary", "targetWeight": "949468.0851055663" } }, { "key": "geid_107_3167", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "GermanyZollverein", "attributes": { "weight": 1576251.6975993684, "sourceWeight": "1576251.6975993684", "direction": "Imp", "source_type": "primary", "targetWeight": "1576251.6975993684" } }, { "key": "geid_107_3168", "source": "KoreaChosen", "target": "GermanyZollverein", "attributes": { "weight": 700.3168854679354, "sourceWeight": "700.3168854679354", "direction": "Imp", "source_type": "primary", "targetWeight": "700.3168854679354" } }, { "key": "geid_107_3169", "source": "Latvia", "target": "GermanyZollverein", "attributes": { "weight": 1809888.184697402, "sourceWeight": "1809888.184697402", "direction": "Imp", "source_type": "primary", "targetWeight": "1809888.184697402" } }, { "key": "geid_107_3170", "source": "Liberia", "target": "GermanyZollverein", "attributes": { "weight": 290685.37799884455, "sourceWeight": "290685.37799884455", "direction": "Imp", "source_type": "primary", "targetWeight": "290685.37799884455" } }, { "key": "geid_107_3171", "source": "Lithuania", "target": "GermanyZollverein", "attributes": { "weight": 1219251.6975996755, "sourceWeight": "1219251.6975996755", "direction": "Imp", "source_type": "primary", "targetWeight": "1219251.6975996755" } }, { "key": "geid_107_3172", "source": "Luxemburg", "target": "GermanyZollverein", "attributes": { "weight": 2466408.3295587655, "sourceWeight": "2466408.3295587655", "direction": "Imp", "source_type": "primary", "targetWeight": "2466408.3295587655" } }, { "key": "geid_107_3173", "source": "Malacca", "target": "GermanyZollverein", "attributes": { "weight": 631955.1833403347, "sourceWeight": "631955.1833403347", "direction": "Imp", "source_type": "primary", "targetWeight": "631955.1833403347" } }, { "key": "geid_107_3174", "source": "Memel", "target": "GermanyZollverein", "attributes": { "weight": 1172976.9126291403, "sourceWeight": "1172976.9126291403", "direction": "Imp", "source_type": "primary", "targetWeight": "1172976.9126291403" } }, { "key": "geid_107_3175", "source": "MadagascarMalagasyRepublic", "target": "GermanyZollverein", "attributes": { "weight": 334374.37754611345, "sourceWeight": "334374.37754611345", "direction": "Imp", "source_type": "primary", "targetWeight": "334374.37754611345" } }, { "key": "geid_107_3176", "source": "BritishCameroons_CamerounFrenchCameroons", "target": "GermanyZollverein", "attributes": { "weight": 51069.26210950791, "sourceWeight": "51069.26210950791", "direction": "Imp", "source_type": "primary", "targetWeight": "51069.26210950791" } }, { "key": "geid_107_3177", "source": "RuandaUrundi_TanzaniaTanganyika", "target": "GermanyZollverein", "attributes": { "weight": 37547.759167011616, "sourceWeight": "37547.759167011616", "direction": "Imp", "source_type": "primary", "targetWeight": "37547.759167011616" } }, { "key": "geid_107_3178", "source": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "target": "GermanyZollverein", "attributes": { "weight": 134191.4893615867, "sourceWeight": "134191.4893615867", "direction": "Imp", "source_type": "primary", "targetWeight": "134191.4893615867" } }, { "key": "geid_107_3179", "source": "BritishTogoland_TogoFrenchTogoland", "target": "GermanyZollverein", "attributes": { "weight": 19177.908555891154, "sourceWeight": "19177.908555891154", "direction": "Imp", "source_type": "primary", "targetWeight": "19177.908555891154" } }, { "key": "geid_107_3180", "source": "NewGuineaGermanNewGuineaKaiserWilhelmsland_Nauru_SamoaWesternSamoaGermanSamoa", "target": "GermanyZollverein", "attributes": { "weight": 3339.972838385538, "sourceWeight": "3339.972838385538", "direction": "Imp", "source_type": "primary", "targetWeight": "3339.972838385538" } }, { "key": "geid_107_3181", "source": "Mexico", "target": "GermanyZollverein", "attributes": { "weight": 1720570.8465354145, "sourceWeight": "1720570.8465354145", "direction": "Imp", "source_type": "primary", "targetWeight": "1720570.8465354145" } }, { "key": "geid_107_3182", "source": "NewZealand", "target": "GermanyZollverein", "attributes": { "weight": 815222.7252143282, "sourceWeight": "815222.7252143282", "direction": "Imp", "source_type": "primary", "targetWeight": "815222.7252143282" } }, { "key": "geid_107_3183", "source": "NewfoundlandandLabradorNewfoundland", "target": "GermanyZollverein", "attributes": { "weight": 668641.0140329242, "sourceWeight": "668641.0140329242", "direction": "Imp", "source_type": "primary", "targetWeight": "668641.0140329242" } }, { "key": "geid_107_3184", "source": "Nicaragua", "target": "GermanyZollverein", "attributes": { "weight": 67769.1263014356, "sourceWeight": "67769.1263014356", "direction": "Imp", "source_type": "primary", "targetWeight": "67769.1263014356" } }, { "key": "geid_107_3185", "source": "Netherlands", "target": "GermanyZollverein", "attributes": { "weight": 24726842.462631516, "sourceWeight": "24726842.462631516", "direction": "Imp", "source_type": "primary", "targetWeight": "24726842.462631516" } }, { "key": "geid_107_3186", "source": "DutchAmerica", "target": "GermanyZollverein", "attributes": { "weight": 242148.0307829515, "sourceWeight": "242148.0307829515", "direction": "Imp", "source_type": "primary", "targetWeight": "242148.0307829515" } }, { "key": "geid_107_3187", "source": "IndonesiaDutchEastIndies", "target": "GermanyZollverein", "attributes": { "weight": 13282910.366670331, "sourceWeight": "13282910.366670331", "direction": "Imp", "source_type": "primary", "targetWeight": "13282910.366670331" } }, { "key": "geid_107_3188", "source": "Norway", "target": "GermanyZollverein", "attributes": { "weight": 3770829.3345372723, "sourceWeight": "3770829.3345372723", "direction": "Imp", "source_type": "primary", "targetWeight": "3770829.3345372723" } }, { "key": "geid_107_3189", "source": "Austria", "target": "GermanyZollverein", "attributes": { "weight": 7690933.906738518, "sourceWeight": "7690933.906738518", "direction": "Imp", "source_type": "primary", "targetWeight": "7690933.906738518" } }, { "key": "geid_107_3190", "source": "Palestine", "target": "GermanyZollverein", "attributes": { "weight": 15460.842009945958, "sourceWeight": "15460.842009945958", "direction": "Imp", "source_type": "primary", "targetWeight": "15460.842009945958" } }, { "key": "geid_107_3191", "source": "Panama", "target": "GermanyZollverein", "attributes": { "weight": 12713.444997725597, "sourceWeight": "12713.444997725597", "direction": "Imp", "source_type": "primary", "targetWeight": "12713.444997725597" } }, { "key": "geid_107_3192", "source": "Paraguay", "target": "GermanyZollverein", "attributes": { "weight": 156332.27704830375, "sourceWeight": "156332.27704830375", "direction": "Imp", "source_type": "primary", "targetWeight": "156332.27704830375" } }, { "key": "geid_107_3193", "source": "Peru", "target": "GermanyZollverein", "attributes": { "weight": 269460.389316201, "sourceWeight": "269460.389316201", "direction": "Imp", "source_type": "primary", "targetWeight": "269460.389316201" } }, { "key": "geid_107_3194", "source": "Philippines", "target": "GermanyZollverein", "attributes": { "weight": 468889.0900856084, "sourceWeight": "468889.0900856084", "direction": "Imp", "source_type": "primary", "targetWeight": "468889.0900856084" } }, { "key": "geid_107_3195", "source": "Poland", "target": "GermanyZollverein", "attributes": { "weight": 21655198.7324395, "sourceWeight": "21655198.7324395", "direction": "Imp", "source_type": "primary", "targetWeight": "21655198.7324395" } }, { "key": "geid_107_3196", "source": "Portugal", "target": "GermanyZollverein", "attributes": { "weight": 1163765.0520587545, "sourceWeight": "1163765.0520587545", "direction": "Imp", "source_type": "primary", "targetWeight": "1163765.0520587545" } }, { "key": "geid_107_3197", "source": "MozambiquePortugueseEastAfrica", "target": "GermanyZollverein", "attributes": { "weight": 60227.25215024244, "sourceWeight": "60227.25215024244", "direction": "Imp", "source_type": "primary", "targetWeight": "60227.25215024244" } }, { "key": "geid_107_3198", "source": "AngolaPortugueseWestAfrica", "target": "GermanyZollverein", "attributes": { "weight": 270537.7999092286, "sourceWeight": "270537.7999092286", "direction": "Imp", "source_type": "primary", "targetWeight": "270537.7999092286" } }, { "key": "geid_107_3199", "source": "PortugueseAsia", "target": "GermanyZollverein", "attributes": { "weight": 3124.4907197800194, "sourceWeight": "3124.4907197800194", "direction": "Imp", "source_type": "primary", "targetWeight": "3124.4907197800194" } }, { "key": "geid_107_3200", "source": "Romania", "target": "GermanyZollverein", "attributes": { "weight": 3223235.4006309984, "sourceWeight": "3223235.4006309984", "direction": "Imp", "source_type": "primary", "targetWeight": "3223235.4006309984" } }, { "key": "geid_107_3201", "source": "AsianRussia", "target": "GermanyZollverein", "attributes": { "weight": 828690.3576271731, "sourceWeight": "828690.3576271731", "direction": "Imp", "source_type": "primary", "targetWeight": "828690.3576271731" } }, { "key": "geid_107_3202", "source": "ElSalvador", "target": "GermanyZollverein", "attributes": { "weight": 416850.1584423757, "sourceWeight": "416850.1584423757", "direction": "Imp", "source_type": "primary", "targetWeight": "416850.1584423757" } }, { "key": "geid_107_3203", "source": "Samoa", "target": "GermanyZollverein", "attributes": { "weight": 4363.512901761751, "sourceWeight": "4363.512901761751", "direction": "Imp", "source_type": "primary", "targetWeight": "4363.512901761751" } }, { "key": "geid_107_3204", "source": "Sweden", "target": "GermanyZollverein", "attributes": { "weight": 7117966.953366444, "sourceWeight": "7117966.953366444", "direction": "Imp", "source_type": "primary", "targetWeight": "7117966.953366444" } }, { "key": "geid_107_3205", "source": "Switzerland", "target": "GermanyZollverein", "attributes": { "weight": 14857276.595731901, "sourceWeight": "14857276.595731901", "direction": "Imp", "source_type": "primary", "targetWeight": "14857276.595731901" } }, { "key": "geid_107_3206", "source": "KingdomofSerbia", "target": "GermanyZollverein", "attributes": { "weight": 544954.2779533565, "sourceWeight": "544954.2779533565", "direction": "Imp", "source_type": "primary", "targetWeight": "544954.2779533565" } }, { "key": "geid_107_3207", "source": "ThailandSiam", "target": "GermanyZollverein", "attributes": { "weight": 159079.6740605241, "sourceWeight": "159079.6740605241", "direction": "Imp", "source_type": "primary", "targetWeight": "159079.6740605241" } }, { "key": "geid_107_3208", "source": "Spain", "target": "GermanyZollverein", "attributes": { "weight": 5726976.00723817, "sourceWeight": "5726976.00723817", "direction": "Imp", "source_type": "primary", "targetWeight": "5726976.00723817" } }, { "key": "geid_107_3209", "source": "SpanishAfrica", "target": "GermanyZollverein", "attributes": { "weight": 43796.74060657165, "sourceWeight": "43796.74060657165", "direction": "Imp", "source_type": "primary", "targetWeight": "43796.74060657165" } }, { "key": "geid_107_3210", "source": "Czechoslovakia", "target": "GermanyZollverein", "attributes": { "weight": 23563185.151632063, "sourceWeight": "23563185.151632063", "direction": "Imp", "source_type": "primary", "targetWeight": "23563185.151632063" } }, { "key": "geid_107_3211", "source": "TunisiaRegencyofTunis", "target": "GermanyZollverein", "attributes": { "weight": 35877.772747818846, "sourceWeight": "35877.772747818846", "direction": "Imp", "source_type": "primary", "targetWeight": "35877.772747818846" } }, { "key": "geid_107_3212", "source": "TurkeyOttomanEmpire", "target": "GermanyZollverein", "attributes": { "weight": 3217632.8655472547, "sourceWeight": "3217632.8655472547", "direction": "Imp", "source_type": "primary", "targetWeight": "3217632.8655472547" } }, { "key": "geid_107_3213", "source": "Hungary", "target": "GermanyZollverein", "attributes": { "weight": 2604047.532818041, "sourceWeight": "2604047.532818041", "direction": "Imp", "source_type": "primary", "targetWeight": "2604047.532818041" } }, { "key": "geid_107_3214", "source": "RussiaUSSR", "target": "GermanyZollverein", "attributes": { "weight": 6790218.65096745, "sourceWeight": "6790218.65096745", "direction": "Imp", "source_type": "primary", "targetWeight": "6790218.65096745" } }, { "key": "geid_107_3215", "source": "Uruguay", "target": "GermanyZollverein", "attributes": { "weight": 1059363.9655943809, "sourceWeight": "1059363.9655943809", "direction": "Imp", "source_type": "primary", "targetWeight": "1059363.9655943809" } }, { "key": "geid_107_3216", "source": "Venezuela", "target": "GermanyZollverein", "attributes": { "weight": 667832.9560881535, "sourceWeight": "667832.9560881535", "direction": "Imp", "source_type": "primary", "targetWeight": "667832.9560881535" } }, { "key": "geid_107_3217", "source": "UnitedStatesofAmerica", "target": "GermanyZollverein", "attributes": { "weight": 94510564.96143976, "sourceWeight": "94510564.96143976", "direction": "Imp", "source_type": "primary", "targetWeight": "94510564.96143976" } }, { "key": "geid_107_3218", "source": "Othercountries", "target": "GermanyZollverein", "attributes": { "weight": 157517.42870063407, "sourceWeight": "157517.42870063407", "direction": "Imp", "source_type": "primary", "targetWeight": "157517.42870063407" } }, { "key": "geid_107_3219", "source": "UnitedKingdom", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 106477, "sourceWeight": "106477", "direction": "Imp", "source_type": "primary", "targetWeight": "106477" } }, { "key": "geid_107_3220", "source": "India", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 1414, "sourceWeight": "1414", "direction": "Imp", "source_type": "primary", "targetWeight": "1414" } }, { "key": "geid_107_3221", "source": "SriLankaCeylon", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 13, "sourceWeight": "13", "direction": "Imp", "source_type": "primary", "targetWeight": "13" } }, { "key": "geid_107_3222", "source": "StraitsSettlements", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 20, "sourceWeight": "20", "direction": "Imp", "source_type": "primary", "targetWeight": "20" } }, { "key": "geid_107_3223", "source": "Malta", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary", "targetWeight": "1" } }, { "key": "geid_107_3224", "source": "BritishEastIndies", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 8, "sourceWeight": "8", "direction": "Imp", "source_type": "primary", "targetWeight": "8" } }, { "key": "geid_107_3225", "source": "IraqMesopotamia", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 10, "sourceWeight": "10", "direction": "Imp", "source_type": "primary", "targetWeight": "10" } }, { "key": "geid_107_3226", "source": "BritishSouthAfrica", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 188, "sourceWeight": "188", "direction": "Imp", "source_type": "primary", "targetWeight": "188" } }, { "key": "geid_107_3227", "source": "Zanzibar", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Imp", "source_type": "primary", "targetWeight": "3" } }, { "key": "geid_107_3228", "source": "BritishWestIndies", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 25, "sourceWeight": "25", "direction": "Imp", "source_type": "primary", "targetWeight": "25" } }, { "key": "geid_107_3229", "source": "CanadaProvinceofCanada", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 603, "sourceWeight": "603", "direction": "Imp", "source_type": "primary", "targetWeight": "603" } }, { "key": "geid_107_3230", "source": "Ireland", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 70, "sourceWeight": "70", "direction": "Imp", "source_type": "primary", "targetWeight": "70" } }, { "key": "geid_107_3231", "source": "Austria", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 247, "sourceWeight": "247", "direction": "Imp", "source_type": "primary", "targetWeight": "247" } }, { "key": "geid_107_3232", "source": "Belgium", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 4121, "sourceWeight": "4121", "direction": "Imp", "source_type": "primary", "targetWeight": "4121" } }, { "key": "geid_107_3233", "source": "Czechoslovakia", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 888, "sourceWeight": "888", "direction": "Imp", "source_type": "primary", "targetWeight": "888" } }, { "key": "geid_107_3234", "source": "Denmark", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 784, "sourceWeight": "784", "direction": "Imp", "source_type": "primary", "targetWeight": "784" } }, { "key": "geid_107_3235", "source": "Finland", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 137, "sourceWeight": "137", "direction": "Imp", "source_type": "primary", "targetWeight": "137" } }, { "key": "geid_107_3236", "source": "France", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 1946, "sourceWeight": "1946", "direction": "Imp", "source_type": "primary", "targetWeight": "1946" } }, { "key": "geid_107_3237", "source": "FrenchColoniesother", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 7, "sourceWeight": "7", "direction": "Imp", "source_type": "primary", "targetWeight": "7" } }, { "key": "geid_107_3238", "source": "GermanyZollverein", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 396363, "sourceWeight": "396363", "direction": "Imp", "source_type": "primary", "targetWeight": "396363" } }, { "key": "geid_107_3239", "source": "Greece", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 10, "sourceWeight": "10", "direction": "Imp", "source_type": "primary", "targetWeight": "10" } }, { "key": "geid_107_3240", "source": "Netherlands", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 22558, "sourceWeight": "22558", "direction": "Imp", "source_type": "primary", "targetWeight": "22558" } }, { "key": "geid_107_3241", "source": "IndonesiaDutchEastIndies", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 21, "sourceWeight": "21", "direction": "Imp", "source_type": "primary", "targetWeight": "21" } }, { "key": "geid_107_3242", "source": "Hungary", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 34, "sourceWeight": "34", "direction": "Imp", "source_type": "primary", "targetWeight": "34" } }, { "key": "geid_107_3243", "source": "Italy", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 1814, "sourceWeight": "1814", "direction": "Imp", "source_type": "primary", "targetWeight": "1814" } }, { "key": "geid_107_3244", "source": "Norway", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 6577, "sourceWeight": "6577", "direction": "Imp", "source_type": "primary", "targetWeight": "6577" } }, { "key": "geid_107_3245", "source": "Poland", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 3944, "sourceWeight": "3944", "direction": "Imp", "source_type": "primary", "targetWeight": "3944" } }, { "key": "geid_107_3246", "source": "Portugal", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 104, "sourceWeight": "104", "direction": "Imp", "source_type": "primary", "targetWeight": "104" } }, { "key": "geid_107_3247", "source": "MadeiraIsles", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 22, "sourceWeight": "22", "direction": "Imp", "source_type": "primary", "targetWeight": "22" } }, { "key": "geid_107_3248", "source": "AngolaPortugueseWestAfrica", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary", "targetWeight": "1" } }, { "key": "geid_107_3249", "source": "Romania", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Imp", "source_type": "primary", "targetWeight": "14" } }, { "key": "geid_107_3250", "source": "RussiaUSSR", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 125, "sourceWeight": "125", "direction": "Imp", "source_type": "primary", "targetWeight": "125" } }, { "key": "geid_107_3251", "source": "Spain", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 150, "sourceWeight": "150", "direction": "Imp", "source_type": "primary", "targetWeight": "150" } }, { "key": "geid_107_3252", "source": "CanaryIs", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 103, "sourceWeight": "103", "direction": "Imp", "source_type": "primary", "targetWeight": "103" } }, { "key": "geid_107_3253", "source": "Sweden", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 13292, "sourceWeight": "13292", "direction": "Imp", "source_type": "primary", "targetWeight": "13292" } }, { "key": "geid_107_3254", "source": "Switzerland", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 8261, "sourceWeight": "8261", "direction": "Imp", "source_type": "primary", "targetWeight": "8261" } }, { "key": "geid_107_3255", "source": "TurkeyOttomanEmpire", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 21, "sourceWeight": "21", "direction": "Imp", "source_type": "primary", "targetWeight": "21" } }, { "key": "geid_107_3256", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 16, "sourceWeight": "16", "direction": "Imp", "source_type": "primary", "targetWeight": "16" } }, { "key": "geid_107_3257", "source": "PeoplesRepublicofChinaChina", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 25, "sourceWeight": "25", "direction": "Imp", "source_type": "primary", "targetWeight": "25" } }, { "key": "geid_107_3258", "source": "Japan", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 682, "sourceWeight": "682", "direction": "Imp", "source_type": "primary", "targetWeight": "682" } }, { "key": "geid_107_3259", "source": "ThailandSiam", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 447, "sourceWeight": "447", "direction": "Imp", "source_type": "primary", "targetWeight": "447" } }, { "key": "geid_107_3260", "source": "EgyptArabRepublicEgypt", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 21, "sourceWeight": "21", "direction": "Imp", "source_type": "primary", "targetWeight": "21" } }, { "key": "geid_107_3261", "source": "Morocco", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary", "targetWeight": "1" } }, { "key": "geid_107_3262", "source": "UnitedStatesofAmerica", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 49517, "sourceWeight": "49517", "direction": "Imp", "source_type": "primary", "targetWeight": "49517" } }, { "key": "geid_107_3263", "source": "ArgentinaLaPlata", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 446, "sourceWeight": "446", "direction": "Imp", "source_type": "primary", "targetWeight": "446" } }, { "key": "geid_107_3264", "source": "Brazil", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 6352, "sourceWeight": "6352", "direction": "Imp", "source_type": "primary", "targetWeight": "6352" } }, { "key": "geid_107_3265", "source": "Mexico", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 5, "sourceWeight": "5", "direction": "Imp", "source_type": "primary", "targetWeight": "5" } }, { "key": "geid_107_3266", "source": "Guatemala", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 138, "sourceWeight": "138", "direction": "Imp", "source_type": "primary", "targetWeight": "138" } }, { "key": "geid_107_3267", "source": "SouthAfrica", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 1006753, "sourceWeight": "1006753", "direction": "Imp", "source_type": "primary", "targetWeight": "1006753" } }, { "key": "geid_107_3268", "source": "UnitedStatesofAmerica", "target": "Honduras", "attributes": { "weight": 1277906.0989256485, "sourceWeight": "1277906.0989256485", "direction": "Imp", "source_type": "primary", "targetWeight": "1277906.0989256485" } }, { "key": "geid_107_3269", "source": "Mexico", "target": "Honduras", "attributes": { "weight": 7314.262217890057, "sourceWeight": "7314.262217890057", "direction": "Imp", "source_type": "primary", "targetWeight": "7314.262217890057" } }, { "key": "geid_107_3270", "source": "GermanyZollverein", "target": "Honduras", "attributes": { "weight": 25991.753238573594, "sourceWeight": "25991.753238573594", "direction": "Imp", "source_type": "primary", "targetWeight": "25991.753238573594" } }, { "key": "geid_107_3271", "source": "Spain", "target": "Honduras", "attributes": { "weight": 6138.7557900148695, "sourceWeight": "6138.7557900148695", "direction": "Imp", "source_type": "primary", "targetWeight": "6138.7557900148695" } }, { "key": "geid_107_3272", "source": "France", "target": "Honduras", "attributes": { "weight": 33959.07458306098, "sourceWeight": "33959.07458306098", "direction": "Imp", "source_type": "primary", "targetWeight": "33959.07458306098" } }, { "key": "geid_107_3273", "source": "Netherlands", "target": "Honduras", "attributes": { "weight": 7314.262217890057, "sourceWeight": "7314.262217890057", "direction": "Imp", "source_type": "primary", "targetWeight": "7314.262217890057" } }, { "key": "geid_107_3274", "source": "UnitedKingdom", "target": "Honduras", "attributes": { "weight": 53812.072031619704, "sourceWeight": "53812.072031619704", "direction": "Imp", "source_type": "primary", "targetWeight": "53812.072031619704" } }, { "key": "geid_107_3275", "source": "Italy", "target": "Honduras", "attributes": { "weight": 10448.946025557225, "sourceWeight": "10448.946025557225", "direction": "Imp", "source_type": "primary", "targetWeight": "10448.946025557225" } }, { "key": "geid_107_3276", "source": "Japan", "target": "Honduras", "attributes": { "weight": 1175.5064278751877, "sourceWeight": "1175.5064278751877", "direction": "Imp", "source_type": "primary", "targetWeight": "1175.5064278751877" } }, { "key": "geid_107_3277", "source": "ElSalvador", "target": "GermanyZollverein", "attributes": { "weight": 991374.4293205782, "sourceWeight": "991374.4293205782", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3278", "source": "ElSalvador", "target": "Belgium", "attributes": { "weight": 27761.074567667, "sourceWeight": "27761.074567667", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3279", "source": "ElSalvador", "target": "Cuba", "attributes": { "weight": 188913.68229961043, "sourceWeight": "188913.68229961043", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3280", "source": "ElSalvador", "target": "Chile", "attributes": { "weight": 45471.2994612772, "sourceWeight": "45471.2994612772", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3281", "source": "ElSalvador", "target": "Denmark", "attributes": { "weight": 46097.73770029915, "sourceWeight": "46097.73770029915", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3282", "source": "ElSalvador", "target": "Spain", "attributes": { "weight": 184172.9997645285, "sourceWeight": "184172.9997645285", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3283", "source": "ElSalvador", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1228783.1464820984, "sourceWeight": "1228783.1464820984", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3284", "source": "ElSalvador", "target": "Finland", "attributes": { "weight": 36768.13649613796, "sourceWeight": "36768.13649613796", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3285", "source": "ElSalvador", "target": "France", "attributes": { "weight": 456775.2903755599, "sourceWeight": "456775.2903755599", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3286", "source": "ElSalvador", "target": "Netherlands", "attributes": { "weight": 486918.39887260576, "sourceWeight": "486918.39887260576", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3287", "source": "ElSalvador", "target": "UnitedKingdom", "attributes": { "weight": 15273.89669533138, "sourceWeight": "15273.89669533138", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3288", "source": "ElSalvador", "target": "Italy", "attributes": { "weight": 349194.00890887424, "sourceWeight": "349194.00890887424", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3289", "source": "ElSalvador", "target": "Nicaragua", "attributes": { "weight": 13.760307831592714, "sourceWeight": "13.760307831592714", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3290", "source": "ElSalvador", "target": "Norway", "attributes": { "weight": 361444.8879174707, "sourceWeight": "361444.8879174707", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3291", "source": "ElSalvador", "target": "Panama", "attributes": { "weight": 6.209687641464338, "sourceWeight": "6.209687641464338", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3292", "source": "ElSalvador", "target": "Sweden", "attributes": { "weight": 692553.9960296113, "sourceWeight": "692553.9960296113", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3293", "source": "GermanyZollverein", "target": "ElSalvador", "attributes": { "weight": 152059.3143910687, "sourceWeight": "152059.3143910687", "direction": "Imp", "source_type": "primary", "targetWeight": "152059.3143910687" } }, { "key": "geid_107_3294", "source": "Austria", "target": "ElSalvador", "attributes": { "weight": 174.51472159341407, "sourceWeight": "174.51472159341407", "direction": "Imp", "source_type": "primary", "targetWeight": "174.51472159341407" } }, { "key": "geid_107_3295", "source": "Belgium", "target": "ElSalvador", "attributes": { "weight": 18767.75719781985, "sourceWeight": "18767.75719781985", "direction": "Imp", "source_type": "primary", "targetWeight": "18767.75719781985" } }, { "key": "geid_107_3296", "source": "Brazil", "target": "ElSalvador", "attributes": { "weight": 48.35681756449022, "sourceWeight": "48.35681756449022", "direction": "Imp", "source_type": "primary", "targetWeight": "48.35681756449022" } }, { "key": "geid_107_3297", "source": "CanadaProvinceofCanada", "target": "ElSalvador", "attributes": { "weight": 12521.576392027777, "sourceWeight": "12521.576392027777", "direction": "Imp", "source_type": "primary", "targetWeight": "12521.576392027777" } }, { "key": "geid_107_3298", "source": "CostaRica", "target": "ElSalvador", "attributes": { "weight": 4979.627265729185, "sourceWeight": "4979.627265729185", "direction": "Imp", "source_type": "primary", "targetWeight": "4979.627265729185" } }, { "key": "geid_107_3299", "source": "Cuba", "target": "ElSalvador", "attributes": { "weight": 28.317075599808028, "sourceWeight": "28.317075599808028", "direction": "Imp", "source_type": "primary", "targetWeight": "28.317075599808028" } }, { "key": "geid_107_3300", "source": "Chile", "target": "ElSalvador", "attributes": { "weight": 1483.5573743769755, "sourceWeight": "1483.5573743769755", "direction": "Imp", "source_type": "primary", "targetWeight": "1483.5573743769755" } }, { "key": "geid_107_3301", "source": "PeoplesRepublicofChinaChina", "target": "ElSalvador", "attributes": { "weight": 7361.202218195447, "sourceWeight": "7361.202218195447", "direction": "Imp", "source_type": "primary", "targetWeight": "7361.202218195447" } }, { "key": "geid_107_3302", "source": "Denmark", "target": "ElSalvador", "attributes": { "weight": 3957.5891760962586, "sourceWeight": "3957.5891760962586", "direction": "Imp", "source_type": "primary", "targetWeight": "3957.5891760962586" } }, { "key": "geid_107_3303", "source": "Ecuador", "target": "ElSalvador", "attributes": { "weight": 2402.9016296957707, "sourceWeight": "2402.9016296957707", "direction": "Imp", "source_type": "primary", "targetWeight": "2402.9016296957707" } }, { "key": "geid_107_3304", "source": "EgyptArabRepublicEgypt", "target": "ElSalvador", "attributes": { "weight": 14.948248076046761, "sourceWeight": "14.948248076046761", "direction": "Imp", "source_type": "primary", "targetWeight": "14.948248076046761" } }, { "key": "geid_107_3305", "source": "Scotland", "target": "ElSalvador", "attributes": { "weight": 1743.3698053411129, "sourceWeight": "1743.3698053411129", "direction": "Imp", "source_type": "primary", "targetWeight": "1743.3698053411129" } }, { "key": "geid_107_3306", "source": "Spain", "target": "ElSalvador", "attributes": { "weight": 32141.570470788898, "sourceWeight": "32141.570470788898", "direction": "Imp", "source_type": "primary", "targetWeight": "32141.570470788898" } }, { "key": "geid_107_3307", "source": "UnitedStatesofAmerica", "target": "ElSalvador", "attributes": { "weight": 1521820.9251510669, "sourceWeight": "1521820.9251510669", "direction": "Imp", "source_type": "primary", "targetWeight": "1521820.9251510669" } }, { "key": "geid_107_3308", "source": "Finland", "target": "ElSalvador", "attributes": { "weight": 908.4413037570067, "sourceWeight": "908.4413037570067", "direction": "Imp", "source_type": "primary", "targetWeight": "908.4413037570067" } }, { "key": "geid_107_3309", "source": "France", "target": "ElSalvador", "attributes": { "weight": 79414.43306017767, "sourceWeight": "79414.43306017767", "direction": "Imp", "source_type": "primary", "targetWeight": "79414.43306017767" } }, { "key": "geid_107_3310", "source": "Guatemala", "target": "ElSalvador", "attributes": { "weight": 1512.8059031230032, "sourceWeight": "1512.8059031230032", "direction": "Imp", "source_type": "primary", "targetWeight": "1512.8059031230032" } }, { "key": "geid_107_3311", "source": "Netherlands", "target": "ElSalvador", "attributes": { "weight": 29449.065658657753, "sourceWeight": "29449.065658657753", "direction": "Imp", "source_type": "primary", "targetWeight": "29449.065658657753" } }, { "key": "geid_107_3312", "source": "Honduras", "target": "ElSalvador", "attributes": { "weight": 2885.7250928010626, "sourceWeight": "2885.7250928010626", "direction": "Imp", "source_type": "primary", "targetWeight": "2885.7250928010626" } }, { "key": "geid_107_3313", "source": "Hungary", "target": "ElSalvador", "attributes": { "weight": 9.008546853776524, "sourceWeight": "9.008546853776524", "direction": "Imp", "source_type": "primary", "targetWeight": "9.008546853776524" } }, { "key": "geid_107_3314", "source": "India", "target": "ElSalvador", "attributes": { "weight": 14797.233422357365, "sourceWeight": "14797.233422357365", "direction": "Imp", "source_type": "primary", "targetWeight": "14797.233422357365" } }, { "key": "geid_107_3315", "source": "UnitedKingdom", "target": "ElSalvador", "attributes": { "weight": 391917.98731537664, "sourceWeight": "391917.98731537664", "direction": "Imp", "source_type": "primary", "targetWeight": "391917.98731537664" } }, { "key": "geid_107_3316", "source": "Ireland", "target": "ElSalvador", "attributes": { "weight": 666.7652105022333, "sourceWeight": "666.7652105022333", "direction": "Imp", "source_type": "primary", "targetWeight": "666.7652105022333" } }, { "key": "geid_107_3317", "source": "Italy", "target": "ElSalvador", "attributes": { "weight": 27233.775341773133, "sourceWeight": "27233.775341773133", "direction": "Imp", "source_type": "primary", "targetWeight": "27233.775341773133" } }, { "key": "geid_107_3318", "source": "Japan", "target": "ElSalvador", "attributes": { "weight": 113446.09970570556, "sourceWeight": "113446.09970570556", "direction": "Imp", "source_type": "primary", "targetWeight": "113446.09970570556" } }, { "key": "geid_107_3319", "source": "Mexico", "target": "ElSalvador", "attributes": { "weight": 5052.9240787667295, "sourceWeight": "5052.9240787667295", "direction": "Imp", "source_type": "primary", "targetWeight": "5052.9240787667295" } }, { "key": "geid_107_3320", "source": "Nicaragua", "target": "ElSalvador", "attributes": { "weight": 20032.135097321403, "sourceWeight": "20032.135097321403", "direction": "Imp", "source_type": "primary", "targetWeight": "20032.135097321403" } }, { "key": "geid_107_3321", "source": "Norway", "target": "ElSalvador", "attributes": { "weight": 14039.399542774137, "sourceWeight": "14039.399542774137", "direction": "Imp", "source_type": "primary", "targetWeight": "14039.399542774137" } }, { "key": "geid_107_3322", "source": "NewZealand", "target": "ElSalvador", "attributes": { "weight": 5.3344816659101255, "sourceWeight": "5.3344816659101255", "direction": "Imp", "source_type": "primary", "targetWeight": "5.3344816659101255" } }, { "key": "geid_107_3323", "source": "Panama", "target": "ElSalvador", "attributes": { "weight": 355.6396106834304, "sourceWeight": "355.6396106834304", "direction": "Imp", "source_type": "primary", "targetWeight": "355.6396106834304" } }, { "key": "geid_107_3324", "source": "IranPersia", "target": "ElSalvador", "attributes": { "weight": 419.3361566317988, "sourceWeight": "419.3361566317988", "direction": "Imp", "source_type": "primary", "targetWeight": "419.3361566317988" } }, { "key": "geid_107_3325", "source": "Peru", "target": "ElSalvador", "attributes": { "weight": 29746.70993661146, "sourceWeight": "29746.70993661146", "direction": "Imp", "source_type": "primary", "targetWeight": "29746.70993661146" } }, { "key": "geid_107_3326", "source": "Portugal", "target": "ElSalvador", "attributes": { "weight": 274.3759483928324, "sourceWeight": "274.3759483928324", "direction": "Imp", "source_type": "primary", "targetWeight": "274.3759483928324" } }, { "key": "geid_107_3327", "source": "Sweden", "target": "ElSalvador", "attributes": { "weight": 17641.497600717525, "sourceWeight": "17641.497600717525", "direction": "Imp", "source_type": "primary", "targetWeight": "17641.497600717525" } }, { "key": "geid_107_3328", "source": "Switzerland", "target": "ElSalvador", "attributes": { "weight": 2909.940624715947, "sourceWeight": "2909.940624715947", "direction": "Imp", "source_type": "primary", "targetWeight": "2909.940624715947" } }, { "key": "geid_107_3329", "source": "Czechoslovakia", "target": "ElSalvador", "attributes": { "weight": 1481.0240018102043, "sourceWeight": "1481.0240018102043", "direction": "Imp", "source_type": "primary", "targetWeight": "1481.0240018102043" } }, { "key": "geid_107_3330", "source": "TurkeyOttomanEmpire", "target": "ElSalvador", "attributes": { "weight": 481.7502670889952, "sourceWeight": "481.7502670889952", "direction": "Imp", "source_type": "primary", "targetWeight": "481.7502670889952" } }, { "key": "geid_107_3331", "source": "Uruguay", "target": "ElSalvador", "attributes": { "weight": 5.680964237209222, "sourceWeight": "5.680964237209222", "direction": "Imp", "source_type": "primary", "targetWeight": "5.680964237209222" } }, { "key": "geid_107_3332", "source": "Venezuela", "target": "ElSalvador", "attributes": { "weight": 15.575966500673049, "sourceWeight": "15.575966500673049", "direction": "Imp", "source_type": "primary", "targetWeight": "15.575966500673049" } }, { "key": "geid_107_3333", "source": "Zanzibar", "target": "ElSalvador", "attributes": { "weight": 26.771403349921794, "sourceWeight": "26.771403349921794", "direction": "Imp", "source_type": "primary", "targetWeight": "26.771403349921794" } }, { "key": "geid_107_3334", "source": "Guatemala", "target": "GermanyZollverein", "attributes": { "weight": 1714561.484403896, "sourceWeight": "1714561.484403896", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3335", "source": "Guatemala", "target": "Belgium", "attributes": { "weight": 941.4622118111207, "sourceWeight": "941.4622118111207", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3336", "source": "Guatemala", "target": "BelizeBritishHonduras", "attributes": { "weight": 65095.63350182879, "sourceWeight": "65095.63350182879", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3337", "source": "Guatemala", "target": "Chile", "attributes": { "weight": 682.5668844778696, "sourceWeight": "682.5668844778696", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3338", "source": "Guatemala", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 50.13767311880984, "sourceWeight": "50.13767311880984", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3339", "source": "Guatemala", "target": "CostaRica", "attributes": { "weight": 153.9062178933958, "sourceWeight": "153.9062178933958", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3340", "source": "Guatemala", "target": "Cuba", "attributes": { "weight": 4952.007561747421, "sourceWeight": "4952.007561747421", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3341", "source": "Guatemala", "target": "Denmark", "attributes": { "weight": 4727.789421772901, "sourceWeight": "4727.789421772901", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3342", "source": "Guatemala", "target": "ElSalvador", "attributes": { "weight": 3960.177536678584, "sourceWeight": "3960.177536678584", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3343", "source": "Guatemala", "target": "Spain", "attributes": { "weight": 2141.6389265606376, "sourceWeight": "2141.6389265606376", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3344", "source": "Guatemala", "target": "France", "attributes": { "weight": 77812.97415033082, "sourceWeight": "77812.97415033082", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3345", "source": "Guatemala", "target": "Netherlands", "attributes": { "weight": 264909.1110837135, "sourceWeight": "264909.1110837135", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3346", "source": "Guatemala", "target": "Honduras", "attributes": { "weight": 30617.574898286275, "sourceWeight": "30617.574898286275", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3347", "source": "Guatemala", "target": "UnitedKingdom", "attributes": { "weight": 156103.7541610159, "sourceWeight": "156103.7541610159", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3348", "source": "Guatemala", "target": "Italy", "attributes": { "weight": 8588.571076316113, "sourceWeight": "8588.571076316113", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3349", "source": "Guatemala", "target": "Mexico", "attributes": { "weight": 16709.201495910904, "sourceWeight": "16709.201495910904", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3350", "source": "Guatemala", "target": "Nicaragua", "attributes": { "weight": 76.43940327949697, "sourceWeight": "76.43940327949697", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3351", "source": "Guatemala", "target": "Norway", "attributes": { "weight": 31321.45234866231, "sourceWeight": "31321.45234866231", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3352", "source": "Guatemala", "target": "Panama", "attributes": { "weight": 676.6531048370525, "sourceWeight": "676.6531048370525", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3353", "source": "Guatemala", "target": "Sweden", "attributes": { "weight": 108085.71281798382, "sourceWeight": "108085.71281798382", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3354", "source": "Guatemala", "target": "UnitedStatesofAmerica", "attributes": { "weight": 2533369.04820614, "sourceWeight": "2533369.04820614", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3355", "source": "GermanyZollverein", "target": "Guatemala", "attributes": { "weight": 416078.76867360796, "sourceWeight": "416078.76867360796", "direction": "Imp", "source_type": "primary", "targetWeight": "416078.76867360796" } }, { "key": "geid_107_3356", "source": "Belgium", "target": "Guatemala", "attributes": { "weight": 42842.46265278407, "sourceWeight": "42842.46265278407", "direction": "Imp", "source_type": "primary", "targetWeight": "42842.46265278407" } }, { "key": "geid_107_3357", "source": "CanadaProvinceofCanada", "target": "Guatemala", "attributes": { "weight": 10214.124038026255, "sourceWeight": "10214.124038026255", "direction": "Imp", "source_type": "primary", "targetWeight": "10214.124038026255" } }, { "key": "geid_107_3358", "source": "PeoplesRepublicofChinaChina", "target": "Guatemala", "attributes": { "weight": 14918.288818469895, "sourceWeight": "14918.288818469895", "direction": "Imp", "source_type": "primary", "targetWeight": "14918.288818469895" } }, { "key": "geid_107_3359", "source": "Cuba", "target": "Guatemala", "attributes": { "weight": 1248.5287460389316, "sourceWeight": "1248.5287460389316", "direction": "Imp", "source_type": "primary", "targetWeight": "1248.5287460389316" } }, { "key": "geid_107_3360", "source": "Spain", "target": "Guatemala", "attributes": { "weight": 39928.02172928927, "sourceWeight": "39928.02172928927", "direction": "Imp", "source_type": "primary", "targetWeight": "39928.02172928927" } }, { "key": "geid_107_3361", "source": "France", "target": "Guatemala", "attributes": { "weight": 157645.54096876414, "sourceWeight": "157645.54096876414", "direction": "Imp", "source_type": "primary", "targetWeight": "157645.54096876414" } }, { "key": "geid_107_3362", "source": "Netherlands", "target": "Guatemala", "attributes": { "weight": 33337.25667722952, "sourceWeight": "33337.25667722952", "direction": "Imp", "source_type": "primary", "targetWeight": "33337.25667722952" } }, { "key": "geid_107_3363", "source": "UnitedKingdom", "target": "Guatemala", "attributes": { "weight": 547761.656858307, "sourceWeight": "547761.656858307", "direction": "Imp", "source_type": "primary", "targetWeight": "547761.656858307" } }, { "key": "geid_107_3364", "source": "Italy", "target": "Guatemala", "attributes": { "weight": 23439.791760977816, "sourceWeight": "23439.791760977816", "direction": "Imp", "source_type": "primary", "targetWeight": "23439.791760977816" } }, { "key": "geid_107_3365", "source": "Jamaica", "target": "Guatemala", "attributes": { "weight": 2894.748755092802, "sourceWeight": "2894.748755092802", "direction": "Imp", "source_type": "primary", "targetWeight": "2894.748755092802" } }, { "key": "geid_107_3366", "source": "Japan", "target": "Guatemala", "attributes": { "weight": 89965.14259846084, "sourceWeight": "89965.14259846084", "direction": "Imp", "source_type": "primary", "targetWeight": "89965.14259846084" } }, { "key": "geid_107_3367", "source": "Mexico", "target": "Guatemala", "attributes": { "weight": 56362.60751471254, "sourceWeight": "56362.60751471254", "direction": "Imp", "source_type": "primary", "targetWeight": "56362.60751471254" } }, { "key": "geid_107_3368", "source": "Unknown", "target": "Guatemala", "attributes": { "weight": 31004.526935264825, "sourceWeight": "31004.526935264825", "direction": "Imp", "source_type": "primary", "targetWeight": "31004.526935264825" } }, { "key": "geid_107_3369", "source": "Peru", "target": "Guatemala", "attributes": { "weight": 24346.98958804889, "sourceWeight": "24346.98958804889", "direction": "Imp", "source_type": "primary", "targetWeight": "24346.98958804889" } }, { "key": "geid_107_3370", "source": "Sweden", "target": "Guatemala", "attributes": { "weight": 21640.78768673608, "sourceWeight": "21640.78768673608", "direction": "Imp", "source_type": "primary", "targetWeight": "21640.78768673608" } }, { "key": "geid_107_3371", "source": "Unknown", "target": "Guatemala", "attributes": { "weight": 19321.412403802624, "sourceWeight": "19321.412403802624", "direction": "Imp", "source_type": "primary", "targetWeight": "19321.412403802624" } }, { "key": "geid_107_3372", "source": "UnitedStatesofAmerica", "target": "Guatemala", "attributes": { "weight": 2602689.2258940698, "sourceWeight": "2602689.2258940698", "direction": "Imp", "source_type": "primary", "targetWeight": "2602689.2258940698" } }, { "key": "geid_107_3373", "source": "UnitedKingdom", "target": "Fiji", "attributes": { "weight": 269231, "sourceWeight": "269231", "direction": "Imp", "source_type": "primary", "targetWeight": "269231" } }, { "key": "geid_107_3374", "source": "Australia", "target": "Fiji", "attributes": { "weight": 438715, "sourceWeight": "438715", "direction": "Imp", "source_type": "primary", "targetWeight": "438715" } }, { "key": "geid_107_3375", "source": "CanadaProvinceofCanada", "target": "Fiji", "attributes": { "weight": 59067, "sourceWeight": "59067", "direction": "Imp", "source_type": "primary", "targetWeight": "59067" } }, { "key": "geid_107_3376", "source": "SriLankaCeylon", "target": "Fiji", "attributes": { "weight": 4, "sourceWeight": "4", "direction": "Imp", "source_type": "primary", "targetWeight": "4" } }, { "key": "geid_107_3377", "source": "GilbertandElliceIs", "target": "Fiji", "attributes": { "weight": 177, "sourceWeight": "177", "direction": "Imp", "source_type": "primary", "targetWeight": "177" } }, { "key": "geid_107_3378", "source": "HongKong", "target": "Fiji", "attributes": { "weight": 8242, "sourceWeight": "8242", "direction": "Imp", "source_type": "primary", "targetWeight": "8242" } }, { "key": "geid_107_3379", "source": "India", "target": "Fiji", "attributes": { "weight": 39643, "sourceWeight": "39643", "direction": "Imp", "source_type": "primary", "targetWeight": "39643" } }, { "key": "geid_107_3380", "source": "NewZealand", "target": "Fiji", "attributes": { "weight": 127837, "sourceWeight": "127837", "direction": "Imp", "source_type": "primary", "targetWeight": "127837" } }, { "key": "geid_107_3381", "source": "Samoa", "target": "Fiji", "attributes": { "weight": 1625, "sourceWeight": "1625", "direction": "Imp", "source_type": "primary", "targetWeight": "1625" } }, { "key": "geid_107_3382", "source": "StraitsSettlements", "target": "Fiji", "attributes": { "weight": 86, "sourceWeight": "86", "direction": "Imp", "source_type": "primary", "targetWeight": "86" } }, { "key": "geid_107_3383", "source": "TongaHaʻapai", "target": "Fiji", "attributes": { "weight": 767, "sourceWeight": "767", "direction": "Imp", "source_type": "primary", "targetWeight": "767" } }, { "key": "geid_107_3384", "source": "Austria", "target": "Fiji", "attributes": { "weight": 65, "sourceWeight": "65", "direction": "Imp", "source_type": "primary", "targetWeight": "65" } }, { "key": "geid_107_3385", "source": "Belgium", "target": "Fiji", "attributes": { "weight": 43, "sourceWeight": "43", "direction": "Imp", "source_type": "primary", "targetWeight": "43" } }, { "key": "geid_107_3386", "source": "Czechoslovakia", "target": "Fiji", "attributes": { "weight": 24, "sourceWeight": "24", "direction": "Imp", "source_type": "primary", "targetWeight": "24" } }, { "key": "geid_107_3387", "source": "Denmark", "target": "Fiji", "attributes": { "weight": 74, "sourceWeight": "74", "direction": "Imp", "source_type": "primary", "targetWeight": "74" } }, { "key": "geid_107_3388", "source": "France", "target": "Fiji", "attributes": { "weight": 1217, "sourceWeight": "1217", "direction": "Imp", "source_type": "primary", "targetWeight": "1217" } }, { "key": "geid_107_3389", "source": "GermanyZollverein", "target": "Fiji", "attributes": { "weight": 481, "sourceWeight": "481", "direction": "Imp", "source_type": "primary", "targetWeight": "481" } }, { "key": "geid_107_3390", "source": "Netherlands", "target": "Fiji", "attributes": { "weight": 200, "sourceWeight": "200", "direction": "Imp", "source_type": "primary", "targetWeight": "200" } }, { "key": "geid_107_3391", "source": "Italy", "target": "Fiji", "attributes": { "weight": 112, "sourceWeight": "112", "direction": "Imp", "source_type": "primary", "targetWeight": "112" } }, { "key": "geid_107_3392", "source": "Japan", "target": "Fiji", "attributes": { "weight": 14065, "sourceWeight": "14065", "direction": "Imp", "source_type": "primary", "targetWeight": "14065" } }, { "key": "geid_107_3393", "source": "Java", "target": "Fiji", "attributes": { "weight": 6, "sourceWeight": "6", "direction": "Imp", "source_type": "primary", "targetWeight": "6" } }, { "key": "geid_107_3394", "source": "NewCaledoniaandDependencies", "target": "Fiji", "attributes": { "weight": 19, "sourceWeight": "19", "direction": "Imp", "source_type": "primary", "targetWeight": "19" } }, { "key": "geid_107_3395", "source": "VanuatuNewHebrides", "target": "Fiji", "attributes": { "weight": 5, "sourceWeight": "5", "direction": "Imp", "source_type": "primary", "targetWeight": "5" } }, { "key": "geid_107_3396", "source": "Norway", "target": "Fiji", "attributes": { "weight": 84, "sourceWeight": "84", "direction": "Imp", "source_type": "primary", "targetWeight": "84" } }, { "key": "geid_107_3397", "source": "RussiaUSSR", "target": "Fiji", "attributes": { "weight": 39, "sourceWeight": "39", "direction": "Imp", "source_type": "primary", "targetWeight": "39" } }, { "key": "geid_107_3398", "source": "Sweden", "target": "Fiji", "attributes": { "weight": 688, "sourceWeight": "688", "direction": "Imp", "source_type": "primary", "targetWeight": "688" } }, { "key": "geid_107_3399", "source": "Switzerland", "target": "Fiji", "attributes": { "weight": 32, "sourceWeight": "32", "direction": "Imp", "source_type": "primary", "targetWeight": "32" } }, { "key": "geid_107_3400", "source": "UnitedStatesofAmerica", "target": "Fiji", "attributes": { "weight": 103356, "sourceWeight": "103356", "direction": "Imp", "source_type": "primary", "targetWeight": "103356" } }, { "key": "geid_107_3401", "source": "WallisandFutunaIs", "target": "Fiji", "attributes": { "weight": 690, "sourceWeight": "690", "direction": "Imp", "source_type": "primary", "targetWeight": "690" } }, { "key": "geid_107_3402", "source": "Fiji", "target": "UnitedKingdom", "attributes": { "weight": 20467, "sourceWeight": "20467", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3403", "source": "Fiji", "target": "Australia", "attributes": { "weight": 19109, "sourceWeight": "19109", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3404", "source": "Fiji", "target": "CanadaProvinceofCanada", "attributes": { "weight": 108650, "sourceWeight": "108650", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3405", "source": "Fiji", "target": "GilbertandElliceIs", "attributes": { "weight": 493, "sourceWeight": "493", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3406", "source": "Fiji", "target": "HongKong", "attributes": { "weight": 795, "sourceWeight": "795", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3407", "source": "Fiji", "target": "NewZealand", "attributes": { "weight": 791654, "sourceWeight": "791654", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3408", "source": "Fiji", "target": "Samoa", "attributes": { "weight": 4386, "sourceWeight": "4386", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3409", "source": "Fiji", "target": "SolomonIslandsBritishSolomonIslandsProtectorate", "attributes": { "weight": 126, "sourceWeight": "126", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3410", "source": "Fiji", "target": "ThursdayI", "attributes": { "weight": 35, "sourceWeight": "35", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3411", "source": "Fiji", "target": "TongaHaʻapai", "attributes": { "weight": 5215, "sourceWeight": "5215", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3412", "source": "Fiji", "target": "Europe", "attributes": { "weight": 447133, "sourceWeight": "447133", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3413", "source": "Fiji", "target": "France", "attributes": { "weight": 4594, "sourceWeight": "4594", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3414", "source": "Fiji", "target": "AloFutuna", "attributes": { "weight": 20, "sourceWeight": "20", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3415", "source": "Fiji", "target": "GermanyZollverein", "attributes": { "weight": 25559, "sourceWeight": "25559", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3416", "source": "Fiji", "target": "Italy", "attributes": { "weight": 205, "sourceWeight": "205", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3417", "source": "Fiji", "target": "Japan", "attributes": { "weight": 9613, "sourceWeight": "9613", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3418", "source": "Fiji", "target": "Tahiti", "attributes": { "weight": 1494, "sourceWeight": "1494", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3419", "source": "Fiji", "target": "UnitedStatesofAmerica", "attributes": { "weight": 12408, "sourceWeight": "12408", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3420", "source": "Fiji", "target": "WallisandFutunaIs", "attributes": { "weight": 91, "sourceWeight": "91", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3421", "source": "Fiji", "target": "***NA", "attributes": { "weight": 168, "sourceWeight": "168", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3422", "source": "Venezuela", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 2644.0025350799183, "sourceWeight": "2644.0025350799183", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3423", "source": "Venezuela", "target": "Aruba", "attributes": { "weight": 121544.9329106433, "sourceWeight": "121544.9329106433", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3424", "source": "Venezuela", "target": "Barbados", "attributes": { "weight": 15523.92575823917, "sourceWeight": "15523.92575823917", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3425", "source": "Venezuela", "target": "Belgium", "attributes": { "weight": 19213.9249977087, "sourceWeight": "19213.9249977087", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3426", "source": "Venezuela", "target": "Bonaire", "attributes": { "weight": 2214.344952463972, "sourceWeight": "2214.344952463972", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3427", "source": "Venezuela", "target": "CanaryIs", "attributes": { "weight": 24391.040289688524, "sourceWeight": "24391.040289688524", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3428", "source": "Venezuela", "target": "Chile", "attributes": { "weight": 434.58578542263893, "sourceWeight": "434.58578542263893", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3429", "source": "Venezuela", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 76261.30918956811, "sourceWeight": "76261.30918956811", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3430", "source": "Venezuela", "target": "CostaRica", "attributes": { "weight": 584.9959257574143, "sourceWeight": "584.9959257574143", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3431", "source": "Venezuela", "target": "Cuba", "attributes": { "weight": 102299.40787671917, "sourceWeight": "102299.40787671917", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3432", "source": "Venezuela", "target": "Curacao", "attributes": { "weight": 4247432.872062657, "sourceWeight": "4247432.872062657", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3433", "source": "Venezuela", "target": "Denmark", "attributes": { "weight": 63998.99320950439, "sourceWeight": "63998.99320950439", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3434", "source": "Venezuela", "target": "Ecuador", "attributes": { "weight": 39.1127206880375, "sourceWeight": "39.1127206880375", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3435", "source": "Venezuela", "target": "France", "attributes": { "weight": 678992.1080660151, "sourceWeight": "678992.1080660151", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3436", "source": "Venezuela", "target": "FrenchGuiana", "attributes": { "weight": 15240.0543232011, "sourceWeight": "15240.0543232011", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3437", "source": "Venezuela", "target": "GermanyZollverein", "attributes": { "weight": 511815.57251170767, "sourceWeight": "511815.57251170767", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3438", "source": "Venezuela", "target": "UnitedKingdom", "attributes": { "weight": 339828.6629601234, "sourceWeight": "339828.6629601234", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3439", "source": "Venezuela", "target": "Guadeloupe", "attributes": { "weight": 65.18786781339584, "sourceWeight": "65.18786781339584", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3440", "source": "Venezuela", "target": "Guatemala", "attributes": { "weight": 43.45857854226389, "sourceWeight": "43.45857854226389", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3441", "source": "Venezuela", "target": "SurinamDutchGuiana", "attributes": { "weight": 537.843368039058, "sourceWeight": "537.843368039058", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3442", "source": "Venezuela", "target": "GuyanaBritishGuiana", "attributes": { "weight": 2.390221819824514, "sourceWeight": "2.390221819824514", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3443", "source": "Venezuela", "target": "BalearicIslands", "attributes": { "weight": 2079.2322317760736, "sourceWeight": "2079.2322317760736", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3444", "source": "Venezuela", "target": "Italy", "attributes": { "weight": 89646.66871874746, "sourceWeight": "89646.66871874746", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3445", "source": "Venezuela", "target": "Jamaica_JamaicaDependencies", "attributes": { "weight": 317.2476233585264, "sourceWeight": "317.2476233585264", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3446", "source": "Venezuela", "target": "Martinique", "attributes": { "weight": 10356.570393828366, "sourceWeight": "10356.570393828366", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3447", "source": "Venezuela", "target": "Netherlands", "attributes": { "weight": 403085.14332218654, "sourceWeight": "403085.14332218654", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3448", "source": "Venezuela", "target": "Norway", "attributes": { "weight": 6032.224535980397, "sourceWeight": "6032.224535980397", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3449", "source": "Venezuela", "target": "Panama", "attributes": { "weight": 1765.6568583043686, "sourceWeight": "1765.6568583043686", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3450", "source": "Venezuela", "target": "Peru", "attributes": { "weight": 666.0027161601942, "sourceWeight": "666.0027161601942", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3451", "source": "Venezuela", "target": "PuertoRico", "attributes": { "weight": 10289.187867798586, "sourceWeight": "10289.187867798586", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3452", "source": "Venezuela", "target": "RussiaUSSR", "attributes": { "weight": 1610.5749207763, "sourceWeight": "1610.5749207763", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3453", "source": "Venezuela", "target": "Spain", "attributes": { "weight": 931255.0359425169, "sourceWeight": "931255.0359425169", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3454", "source": "Venezuela", "target": "Sweden", "attributes": { "weight": 15132.863739226608, "sourceWeight": "15132.863739226608", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3455", "source": "Venezuela", "target": "Trinidad", "attributes": { "weight": 167516.56242619464, "sourceWeight": "167516.56242619464", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3456", "source": "Venezuela", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1414955.2688073663, "sourceWeight": "1414955.2688073663", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3457", "source": "Aruba", "target": "Venezuela", "attributes": { "weight": 43.441195110846984, "sourceWeight": "43.441195110846984", "direction": "Imp", "source_type": "primary", "targetWeight": "43.441195110846984" } }, { "key": "geid_107_3458", "source": "Austria", "target": "Venezuela", "attributes": { "weight": 452.1491353547094, "sourceWeight": "452.1491353547094", "direction": "Imp", "source_type": "primary", "targetWeight": "452.1491353547094" } }, { "key": "geid_107_3459", "source": "Belgium", "target": "Venezuela", "attributes": { "weight": 54355.246500600304, "sourceWeight": "54355.246500600304", "direction": "Imp", "source_type": "primary", "targetWeight": "54355.246500600304" } }, { "key": "geid_107_3460", "source": "Brazil", "target": "Venezuela", "attributes": { "weight": 6.323223177899396, "sourceWeight": "6.323223177899396", "direction": "Imp", "source_type": "primary", "targetWeight": "6.323223177899396" } }, { "key": "geid_107_3461", "source": "CanadaProvinceofCanada", "target": "Venezuela", "attributes": { "weight": 3192.139067446711, "sourceWeight": "3192.139067446711", "direction": "Imp", "source_type": "primary", "targetWeight": "3192.139067446711" } }, { "key": "geid_107_3462", "source": "CanaryIs", "target": "Venezuela", "attributes": { "weight": 2363.364418285395, "sourceWeight": "2363.364418285395", "direction": "Imp", "source_type": "primary", "targetWeight": "2363.364418285395" } }, { "key": "geid_107_3463", "source": "ColombiaNewGranadaGranColombia", "target": "Venezuela", "attributes": { "weight": 46609.851335378386, "sourceWeight": "46609.851335378386", "direction": "Imp", "source_type": "primary", "targetWeight": "46609.851335378386" } }, { "key": "geid_107_3464", "source": "CostaRica", "target": "Venezuela", "attributes": { "weight": 7227.531009496094, "sourceWeight": "7227.531009496094", "direction": "Imp", "source_type": "primary", "targetWeight": "7227.531009496094" } }, { "key": "geid_107_3465", "source": "Cuba", "target": "Venezuela", "attributes": { "weight": 1027.0978723389378, "sourceWeight": "1027.0978723389378", "direction": "Imp", "source_type": "primary", "targetWeight": "1027.0978723389378" } }, { "key": "geid_107_3466", "source": "Curacao", "target": "Venezuela", "attributes": { "weight": 108460.33282012356, "sourceWeight": "108460.33282012356", "direction": "Imp", "source_type": "primary", "targetWeight": "108460.33282012356" } }, { "key": "geid_107_3467", "source": "Czechoslovakia", "target": "Venezuela", "attributes": { "weight": 1275.7678587577716, "sourceWeight": "1275.7678587577716", "direction": "Imp", "source_type": "primary", "targetWeight": "1275.7678587577716" } }, { "key": "geid_107_3468", "source": "Denmark", "target": "Venezuela", "attributes": { "weight": 73374.62743312141, "sourceWeight": "73374.62743312141", "direction": "Imp", "source_type": "primary", "targetWeight": "73374.62743312141" } }, { "key": "geid_107_3469", "source": "Ecuador", "target": "Venezuela", "attributes": { "weight": 1733.6517881369184, "sourceWeight": "1733.6517881369184", "direction": "Imp", "source_type": "primary", "targetWeight": "1733.6517881369184" } }, { "key": "geid_107_3470", "source": "UnitedKingdom", "target": "Venezuela", "attributes": { "weight": 1719593.9192731993, "sourceWeight": "1719593.9192731993", "direction": "Imp", "source_type": "primary", "targetWeight": "1719593.9192731993" } }, { "key": "geid_107_3471", "source": "France", "target": "Venezuela", "attributes": { "weight": 489297.05155202997, "sourceWeight": "489297.05155202997", "direction": "Imp", "source_type": "primary", "targetWeight": "489297.05155202997" } }, { "key": "geid_107_3472", "source": "GermanyZollverein", "target": "Venezuela", "attributes": { "weight": 652456.9275499829, "sourceWeight": "652456.9275499829", "direction": "Imp", "source_type": "primary", "targetWeight": "652456.9275499829" } }, { "key": "geid_107_3473", "source": "SurinamDutchGuiana", "target": "Venezuela", "attributes": { "weight": 27.2224535988741, "sourceWeight": "27.2224535988741", "direction": "Imp", "source_type": "primary", "targetWeight": "27.2224535988741" } }, { "key": "geid_107_3474", "source": "Italy", "target": "Venezuela", "attributes": { "weight": 235347.30545914298, "sourceWeight": "235347.30545914298", "direction": "Imp", "source_type": "primary", "targetWeight": "235347.30545914298" } }, { "key": "geid_107_3475", "source": "Jamaica_JamaicaDependencies", "target": "Venezuela", "attributes": { "weight": 8.589588048878458, "sourceWeight": "8.589588048878458", "direction": "Imp", "source_type": "primary", "targetWeight": "8.589588048878458" } }, { "key": "geid_107_3476", "source": "Japan", "target": "Venezuela", "attributes": { "weight": 5552.711272060766, "sourceWeight": "5552.711272060766", "direction": "Imp", "source_type": "primary", "targetWeight": "5552.711272060766" } }, { "key": "geid_107_3477", "source": "Martinique", "target": "Venezuela", "attributes": { "weight": 1550.360887277066, "sourceWeight": "1550.360887277066", "direction": "Imp", "source_type": "primary", "targetWeight": "1550.360887277066" } }, { "key": "geid_107_3478", "source": "Netherlands", "target": "Venezuela", "attributes": { "weight": 417762.89144348714, "sourceWeight": "417762.89144348714", "direction": "Imp", "source_type": "primary", "targetWeight": "417762.89144348714" } }, { "key": "geid_107_3479", "source": "Norway", "target": "Venezuela", "attributes": { "weight": 5684.156523305483, "sourceWeight": "5684.156523305483", "direction": "Imp", "source_type": "primary", "targetWeight": "5684.156523305483" } }, { "key": "geid_107_3480", "source": "Panama", "target": "Venezuela", "attributes": { "weight": 3452.145224078295, "sourceWeight": "3452.145224078295", "direction": "Imp", "source_type": "primary", "targetWeight": "3452.145224078295" } }, { "key": "geid_107_3481", "source": "PuertoRico", "target": "Venezuela", "attributes": { "weight": 7577.600724298665, "sourceWeight": "7577.600724298665", "direction": "Imp", "source_type": "primary", "targetWeight": "7577.600724298665" } }, { "key": "geid_107_3482", "source": "Portugal", "target": "Venezuela", "attributes": { "weight": 402.5589859659175, "sourceWeight": "402.5589859659175", "direction": "Imp", "source_type": "primary", "targetWeight": "402.5589859659175" } }, { "key": "geid_107_3483", "source": "Spain", "target": "Venezuela", "attributes": { "weight": 296646.9894427573, "sourceWeight": "296646.9894427573", "direction": "Imp", "source_type": "primary", "targetWeight": "296646.9894427573" } }, { "key": "geid_107_3484", "source": "Sweden", "target": "Venezuela", "attributes": { "weight": 8251.31081936333, "sourceWeight": "8251.31081936333", "direction": "Imp", "source_type": "primary", "targetWeight": "8251.31081936333" } }, { "key": "geid_107_3485", "source": "Switzerland", "target": "Venezuela", "attributes": { "weight": 15969.428773177411, "sourceWeight": "15969.428773177411", "direction": "Imp", "source_type": "primary", "targetWeight": "15969.428773177411" } }, { "key": "geid_107_3486", "source": "Trinidad", "target": "Venezuela", "attributes": { "weight": 34096.16354906786, "sourceWeight": "34096.16354906786", "direction": "Imp", "source_type": "primary", "targetWeight": "34096.16354906786" } }, { "key": "geid_107_3487", "source": "UnitedStatesofAmerica", "target": "Venezuela", "attributes": { "weight": 5189980.282835397, "sourceWeight": "5189980.282835397", "direction": "Imp", "source_type": "primary", "targetWeight": "5189980.282835397" } }, { "key": "geid_107_3488", "source": "UnitedKingdom", "target": "Singapore", "attributes": { "weight": 7131944.646220429, "sourceWeight": "7131944.646220429", "direction": "Imp", "source_type": "primary", "targetWeight": "7131944.646220429" } }, { "key": "geid_107_3489", "source": "SabahNorthBorneo", "target": "Singapore", "attributes": { "weight": 379201.053870552, "sourceWeight": "379201.053870552", "direction": "Imp", "source_type": "primary", "targetWeight": "379201.053870552" } }, { "key": "geid_107_3490", "source": "Brunei", "target": "Singapore", "attributes": { "weight": 36937.741738345314, "sourceWeight": "36937.741738345314", "direction": "Imp", "source_type": "primary", "targetWeight": "36937.741738345314" } }, { "key": "geid_107_3491", "source": "Sarawak", "target": "Singapore", "attributes": { "weight": 2579026.5672251405, "sourceWeight": "2579026.5672251405", "direction": "Imp", "source_type": "primary", "targetWeight": "2579026.5672251405" } }, { "key": "geid_107_3492", "source": "MalabarCoast_MumbaiBombay", "target": "Singapore", "attributes": { "weight": 639499.7851969593, "sourceWeight": "639499.7851969593", "direction": "Imp", "source_type": "primary", "targetWeight": "639499.7851969593" } }, { "key": "geid_107_3493", "source": "KolkataCalcutta", "target": "Singapore", "attributes": { "weight": 1352340.6885469332, "sourceWeight": "1352340.6885469332", "direction": "Imp", "source_type": "primary", "targetWeight": "1352340.6885469332" } }, { "key": "geid_107_3494", "source": "MyanmarBurma", "target": "Singapore", "attributes": { "weight": 1686016.0694885554, "sourceWeight": "1686016.0694885554", "direction": "Imp", "source_type": "primary", "targetWeight": "1686016.0694885554" } }, { "key": "geid_107_3495", "source": "ChennaiMadras_CoromandelCoastPosts", "target": "Singapore", "attributes": { "weight": 631515.6566319973, "sourceWeight": "631515.6566319973", "direction": "Imp", "source_type": "primary", "targetWeight": "631515.6566319973" } }, { "key": "geid_107_3496", "source": "SriLankaCeylon", "target": "Singapore", "attributes": { "weight": 66659.92598461235, "sourceWeight": "66659.92598461235", "direction": "Imp", "source_type": "primary", "targetWeight": "66659.92598461235" } }, { "key": "geid_107_3497", "source": "HongKong", "target": "Singapore", "attributes": { "weight": 2896742.8641921123, "sourceWeight": "2896742.8641921123", "direction": "Imp", "source_type": "primary", "targetWeight": "2896742.8641921123" } }, { "key": "geid_107_3498", "source": "Kedah", "target": "Singapore", "attributes": { "weight": 81792.03259393871, "sourceWeight": "81792.03259393871", "direction": "Imp", "source_type": "primary", "targetWeight": "81792.03259393871" } }, { "key": "geid_107_3499", "source": "Johore", "target": "Singapore", "attributes": { "weight": 4758671.138977192, "sourceWeight": "4758671.138977192", "direction": "Imp", "source_type": "primary", "targetWeight": "4758671.138977192" } }, { "key": "geid_107_3500", "source": "Kelantan", "target": "Singapore", "attributes": { "weight": 631211.0846537265, "sourceWeight": "631211.0846537265", "direction": "Imp", "source_type": "primary", "targetWeight": "631211.0846537265" } }, { "key": "geid_107_3501", "source": "NegeriSembilan", "target": "Singapore", "attributes": { "weight": 677843.9225894469, "sourceWeight": "677843.9225894469", "direction": "Imp", "source_type": "primary", "targetWeight": "677843.9225894469" } }, { "key": "geid_107_3502", "source": "Pahang", "target": "Singapore", "attributes": { "weight": 1042766.9022182596, "sourceWeight": "1042766.9022182596", "direction": "Imp", "source_type": "primary", "targetWeight": "1042766.9022182596" } }, { "key": "geid_107_3503", "source": "Perak", "target": "Singapore", "attributes": { "weight": 2151148.6874152464, "sourceWeight": "2151148.6874152464", "direction": "Imp", "source_type": "primary", "targetWeight": "2151148.6874152464" } }, { "key": "geid_107_3504", "source": "Selangore", "target": "Singapore", "attributes": { "weight": 2894825.326392203, "sourceWeight": "2894825.326392203", "direction": "Imp", "source_type": "primary", "targetWeight": "2894825.326392203" } }, { "key": "geid_107_3505", "source": "Trengganu", "target": "Singapore", "attributes": { "weight": 403584.2295156417, "sourceWeight": "403584.2295156417", "direction": "Imp", "source_type": "primary", "targetWeight": "403584.2295156417" } }, { "key": "geid_107_3506", "source": "CanadaProvinceofCanada", "target": "Singapore", "attributes": { "weight": 17474.28021729392, "sourceWeight": "17474.28021729392", "direction": "Imp", "source_type": "primary", "targetWeight": "17474.28021729392" } }, { "key": "geid_107_3507", "source": "Australia", "target": "Singapore", "attributes": { "weight": 1392313.5835220376, "sourceWeight": "1392313.5835220376", "direction": "Imp", "source_type": "primary", "targetWeight": "1392313.5835220376" } }, { "key": "geid_107_3508", "source": "NewZealand", "target": "Singapore", "attributes": { "weight": 3157.771616116075, "sourceWeight": "3157.771616116075", "direction": "Imp", "source_type": "primary", "targetWeight": "3157.771616116075" } }, { "key": "geid_107_3509", "source": "Mauritius", "target": "Singapore", "attributes": { "weight": 1194.8325033952717, "sourceWeight": "1194.8325033952717", "direction": "Imp", "source_type": "primary", "targetWeight": "1194.8325033952717" } }, { "key": "geid_107_3510", "source": "SouthAfrica", "target": "Singapore", "attributes": { "weight": 744022.0837483462, "sourceWeight": "744022.0837483462", "direction": "Imp", "source_type": "primary", "targetWeight": "744022.0837483462" } }, { "key": "geid_107_3511", "source": "EgyptArabRepublicEgypt", "target": "Singapore", "attributes": { "weight": 52545.80737890757, "sourceWeight": "52545.80737890757", "direction": "Imp", "source_type": "primary", "targetWeight": "52545.80737890757" } }, { "key": "geid_107_3512", "source": "BritishColoniesother", "target": "Singapore", "attributes": { "weight": 58293.5439112755, "sourceWeight": "58293.5439112755", "direction": "Imp", "source_type": "primary", "targetWeight": "58293.5439112755" } }, { "key": "geid_107_3513", "source": "Belgium", "target": "Singapore", "attributes": { "weight": 223302.11883206383, "sourceWeight": "223302.11883206383", "direction": "Imp", "source_type": "primary", "targetWeight": "223302.11883206383" } }, { "key": "geid_107_3514", "source": "Denmark", "target": "Singapore", "attributes": { "weight": 68600.10638298276, "sourceWeight": "68600.10638298276", "direction": "Imp", "source_type": "primary", "targetWeight": "68600.10638298276" } }, { "key": "geid_107_3515", "source": "France", "target": "Singapore", "attributes": { "weight": 609938.1892259299, "sourceWeight": "609938.1892259299", "direction": "Imp", "source_type": "primary", "targetWeight": "609938.1892259299" } }, { "key": "geid_107_3516", "source": "GermanyZollverein", "target": "Singapore", "attributes": { "weight": 463839.5513807425, "sourceWeight": "463839.5513807425", "direction": "Imp", "source_type": "primary", "targetWeight": "463839.5513807425" } }, { "key": "geid_107_3517", "source": "Hungary", "target": "Singapore", "attributes": { "weight": 0.928927116342291, "sourceWeight": "0.928927116342291", "direction": "Imp", "source_type": "primary", "targetWeight": "0.928927116342291" } }, { "key": "geid_107_3518", "source": "Italy", "target": "Singapore", "attributes": { "weight": 455782.5020371477, "sourceWeight": "455782.5020371477", "direction": "Imp", "source_type": "primary", "targetWeight": "455782.5020371477" } }, { "key": "geid_107_3519", "source": "Netherlands", "target": "Singapore", "attributes": { "weight": 476907.34970577725, "sourceWeight": "476907.34970577725", "direction": "Imp", "source_type": "primary", "targetWeight": "476907.34970577725" } }, { "key": "geid_107_3520", "source": "Norway", "target": "Singapore", "attributes": { "weight": 101825.6231326452, "sourceWeight": "101825.6231326452", "direction": "Imp", "source_type": "primary", "targetWeight": "101825.6231326452" } }, { "key": "geid_107_3521", "source": "RussiaUSSR", "target": "Singapore", "attributes": { "weight": 501.27229515620877, "sourceWeight": "501.27229515620877", "direction": "Imp", "source_type": "primary", "targetWeight": "501.27229515620877" } }, { "key": "geid_107_3522", "source": "Spain", "target": "Singapore", "attributes": { "weight": 2397.3286555003674, "sourceWeight": "2397.3286555003674", "direction": "Imp", "source_type": "primary", "targetWeight": "2397.3286555003674" } }, { "key": "geid_107_3523", "source": "Sweden", "target": "Singapore", "attributes": { "weight": 64144.50746944696, "sourceWeight": "64144.50746944696", "direction": "Imp", "source_type": "primary", "targetWeight": "64144.50746944696" } }, { "key": "geid_107_3524", "source": "Europeother", "target": "Singapore", "attributes": { "weight": 12293.769805342507, "sourceWeight": "12293.769805342507", "direction": "Imp", "source_type": "primary", "targetWeight": "12293.769805342507" } }, { "key": "geid_107_3525", "source": "Arabia", "target": "Singapore", "attributes": { "weight": 348.3476686283591, "sourceWeight": "348.3476686283591", "direction": "Imp", "source_type": "primary", "targetWeight": "348.3476686283591" } }, { "key": "geid_107_3526", "source": "PeoplesRepublicofChinaChina", "target": "Singapore", "attributes": { "weight": 2558459.540289874, "sourceWeight": "2558459.540289874", "direction": "Imp", "source_type": "primary", "targetWeight": "2558459.540289874" } }, { "key": "geid_107_3527", "source": "FrenchIndia", "target": "Singapore", "attributes": { "weight": 233005.34314170678, "sourceWeight": "233005.34314170678", "direction": "Imp", "source_type": "primary", "targetWeight": "233005.34314170678" } }, { "key": "geid_107_3528", "source": "FrenchIndochina", "target": "Singapore", "attributes": { "weight": 1759893.1785876998, "sourceWeight": "1759893.1785876998", "direction": "Imp", "source_type": "primary", "targetWeight": "1759893.1785876998" } }, { "key": "geid_107_3529", "source": "Japan", "target": "Singapore", "attributes": { "weight": 1600021.6867361737, "sourceWeight": "1600021.6867361737", "direction": "Imp", "source_type": "primary", "targetWeight": "1600021.6867361737" } }, { "key": "geid_107_3530", "source": "Bangka_BelitungBilliton", "target": "Singapore", "attributes": { "weight": 4458470.92394775, "sourceWeight": "4458470.92394775", "direction": "Imp", "source_type": "primary", "targetWeight": "4458470.92394775" } }, { "key": "geid_107_3531", "source": "Bali_Lombok", "target": "Singapore", "attributes": { "weight": 343033.741059323, "sourceWeight": "343033.741059323", "direction": "Imp", "source_type": "primary", "targetWeight": "343033.741059323" } }, { "key": "geid_107_3532", "source": "Borneo", "target": "Singapore", "attributes": { "weight": 5394196.393390992, "sourceWeight": "5394196.393390992", "direction": "Imp", "source_type": "primary", "targetWeight": "5394196.393390992" } }, { "key": "geid_107_3533", "source": "MalukuMollucas_SulawesiCelebes", "target": "Singapore", "attributes": { "weight": 265030.91828883404, "sourceWeight": "265030.91828883404", "direction": "Imp", "source_type": "primary", "targetWeight": "265030.91828883404" } }, { "key": "geid_107_3534", "source": "Java", "target": "Singapore", "attributes": { "weight": 4151848.222951806, "sourceWeight": "4151848.222951806", "direction": "Imp", "source_type": "primary", "targetWeight": "4151848.222951806" } }, { "key": "geid_107_3535", "source": "Sumatra", "target": "Singapore", "attributes": { "weight": 9196472.737890989, "sourceWeight": "9196472.737890989", "direction": "Imp", "source_type": "primary", "targetWeight": "9196472.737890989" } }, { "key": "geid_107_3536", "source": "IndonesiaDutchEastIndiesother", "target": "Singapore", "attributes": { "weight": 347060.52399277734, "sourceWeight": "347060.52399277734", "direction": "Imp", "source_type": "primary", "targetWeight": "347060.52399277734" } }, { "key": "geid_107_3537", "source": "Philippines_SuluSultanate", "target": "Singapore", "attributes": { "weight": 109620.94726121062, "sourceWeight": "109620.94726121062", "direction": "Imp", "source_type": "primary", "targetWeight": "109620.94726121062" } }, { "key": "geid_107_3538", "source": "ThailandSiam", "target": "Singapore", "attributes": { "weight": 5966817.72249922, "sourceWeight": "5966817.72249922", "direction": "Imp", "source_type": "primary", "targetWeight": "5966817.72249922" } }, { "key": "geid_107_3539", "source": "UnitedStatesofAmerica", "target": "Singapore", "attributes": { "weight": 2243081.352874736, "sourceWeight": "2243081.352874736", "direction": "Imp", "source_type": "primary", "targetWeight": "2243081.352874736" } }, { "key": "geid_107_3540", "source": "Othercountries", "target": "Singapore", "attributes": { "weight": 132114.10457221238, "sourceWeight": "132114.10457221238", "direction": "Imp", "source_type": "primary", "targetWeight": "132114.10457221238" } }, { "key": "geid_107_3541", "source": "SouthernAmerica", "target": "Singapore", "attributes": { "weight": 514.3933906745436, "sourceWeight": "514.3933906745436", "direction": "Imp", "source_type": "primary", "targetWeight": "514.3933906745436" } }, { "key": "geid_107_3542", "source": "Malacca", "target": "Singapore", "attributes": { "weight": 668169.4950204105, "sourceWeight": "668169.4950204105", "direction": "Imp", "source_type": "primary", "targetWeight": "668169.4950204105" } }, { "key": "geid_107_3543", "source": "Penang", "target": "Singapore", "attributes": { "weight": 774548.0221820284, "sourceWeight": "774548.0221820284", "direction": "Imp", "source_type": "primary", "targetWeight": "774548.0221820284" } }, { "key": "geid_107_3544", "source": "LabuanI", "target": "Singapore", "attributes": { "weight": 231153.1785876098, "sourceWeight": "231153.1785876098", "direction": "Imp", "source_type": "primary", "targetWeight": "231153.1785876098" } }, { "key": "geid_107_3545", "source": "ChristmasI", "target": "Singapore", "attributes": { "weight": 9377.28700769634, "sourceWeight": "9377.28700769634", "direction": "Imp", "source_type": "primary", "targetWeight": "9377.28700769634" } }, { "key": "geid_107_3546", "source": "Peru", "target": "GermanyZollverein", "attributes": { "weight": 525824.2317790856, "sourceWeight": "525824.2317790856", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3547", "source": "Peru", "target": "ArgentinaLaPlata", "attributes": { "weight": 1616645.215029425, "sourceWeight": "1616645.215029425", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3548", "source": "Peru", "target": "Arica", "attributes": { "weight": 112336.83295608872, "sourceWeight": "112336.83295608872", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3549", "source": "Peru", "target": "Belgium", "attributes": { "weight": 14523.277501131734, "sourceWeight": "14523.277501131734", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3550", "source": "Peru", "target": "Bolivia", "attributes": { "weight": 220929.97012222724, "sourceWeight": "220929.97012222724", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3551", "source": "Peru", "target": "Brazil", "attributes": { "weight": 69670.01177003169, "sourceWeight": "69670.01177003169", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3552", "source": "Peru", "target": "CanadaProvinceofCanada", "attributes": { "weight": 864045.5445903124, "sourceWeight": "864045.5445903124", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3553", "source": "Peru", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 8476.624717066547, "sourceWeight": "8476.624717066547", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3554", "source": "Peru", "target": "CostaRica", "attributes": { "weight": 34541.57356269805, "sourceWeight": "34541.57356269805", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3555", "source": "Peru", "target": "Cuba", "attributes": { "weight": 530.3105477591671, "sourceWeight": "530.3105477591671", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3556", "source": "Peru", "target": "Chile", "attributes": { "weight": 2167453.377999095, "sourceWeight": "2167453.377999095", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3557", "source": "Peru", "target": "Ecuador", "attributes": { "weight": 88605.435943866, "sourceWeight": "88605.435943866", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3558", "source": "Peru", "target": "ElSalvador", "attributes": { "weight": 26439.503847894975, "sourceWeight": "26439.503847894975", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3559", "source": "Peru", "target": "Spain", "attributes": { "weight": 25035.84970574921, "sourceWeight": "25035.84970574921", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3560", "source": "Peru", "target": "UnitedStatesofAmerica", "attributes": { "weight": 7786028.733363513, "sourceWeight": "7786028.733363513", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3561", "source": "Peru", "target": "France", "attributes": { "weight": 142431.02942507924, "sourceWeight": "142431.02942507924", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3562", "source": "Peru", "target": "UnitedKingdom", "attributes": { "weight": 8764767.84065188, "sourceWeight": "8764767.84065188", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3563", "source": "Peru", "target": "Guatemala", "attributes": { "weight": 15816.604798551381, "sourceWeight": "15816.604798551381", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3564", "source": "Peru", "target": "Netherlands", "attributes": { "weight": 49061.14259846084, "sourceWeight": "49061.14259846084", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3565", "source": "Peru", "target": "HongKong", "attributes": { "weight": 98.27433227704844, "sourceWeight": "98.27433227704844", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3566", "source": "Peru", "target": "Honduras", "attributes": { "weight": 3151.268447261204, "sourceWeight": "3151.268447261204", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3567", "source": "Peru", "target": "Iquique", "attributes": { "weight": 149762.66545948392, "sourceWeight": "149762.66545948392", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3568", "source": "Peru", "target": "Italy", "attributes": { "weight": 21926.301493888637, "sourceWeight": "21926.301493888637", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3569", "source": "Peru", "target": "Jamaica", "attributes": { "weight": 55253.35264825713, "sourceWeight": "55253.35264825713", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3570", "source": "Peru", "target": "Japan", "attributes": { "weight": 52320.8836577637, "sourceWeight": "52320.8836577637", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3571", "source": "Peru", "target": "Mexico", "attributes": { "weight": 32950.64191942055, "sourceWeight": "32950.64191942055", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3572", "source": "Peru", "target": "Nicaragua", "attributes": { "weight": 37105.05024898144, "sourceWeight": "37105.05024898144", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3573", "source": "Peru", "target": "Norway", "attributes": { "weight": 56421.519239474874, "sourceWeight": "56421.519239474874", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3574", "source": "Peru", "target": "NewZealand", "attributes": { "weight": 162852.62109551832, "sourceWeight": "162852.62109551832", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3575", "source": "Peru", "target": "Panama", "attributes": { "weight": 122774.30873698505, "sourceWeight": "122774.30873698505", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3576", "source": "Peru", "target": "Portugal", "attributes": { "weight": 5150.13128112268, "sourceWeight": "5150.13128112268", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3577", "source": "Peru", "target": "Sweden", "attributes": { "weight": 30.5948392937981, "sourceWeight": "30.5948392937981", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3578", "source": "Peru", "target": "Tacna", "attributes": { "weight": 1513.0538705296515, "sourceWeight": "1513.0538705296515", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3579", "source": "Peru", "target": "Venezuela", "attributes": { "weight": 228.07062019013128, "sourceWeight": "228.07062019013128", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3580", "source": "Peru", "target": "***NA", "attributes": { "weight": 49247.49298325034, "sourceWeight": "49247.49298325034", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3581", "source": "ArgentinaLaPlata", "target": "Peru", "attributes": { "weight": 296189.5663196016, "sourceWeight": "296189.5663196016", "direction": "Imp", "source_type": "primary", "targetWeight": "296189.5663196016" } }, { "key": "geid_107_3582", "source": "Arica", "target": "Peru", "attributes": { "weight": 10014.710728836577, "sourceWeight": "10014.710728836577", "direction": "Imp", "source_type": "primary", "targetWeight": "10014.710728836577" } }, { "key": "geid_107_3583", "source": "Bolivia", "target": "Peru", "attributes": { "weight": 2601.4884563150745, "sourceWeight": "2601.4884563150745", "direction": "Imp", "source_type": "primary", "targetWeight": "2601.4884563150745" } }, { "key": "geid_107_3584", "source": "Brazil", "target": "Peru", "attributes": { "weight": 35030.16387505658, "sourceWeight": "35030.16387505658", "direction": "Imp", "source_type": "primary", "targetWeight": "35030.16387505658" } }, { "key": "geid_107_3585", "source": "CanadaProvinceofCanada", "target": "Peru", "attributes": { "weight": 120970.14033499321, "sourceWeight": "120970.14033499321", "direction": "Imp", "source_type": "primary", "targetWeight": "120970.14033499321" } }, { "key": "geid_107_3586", "source": "ColombiaNewGranadaGranColombia", "target": "Peru", "attributes": { "weight": 55164.349479402445, "sourceWeight": "55164.349479402445", "direction": "Imp", "source_type": "primary", "targetWeight": "55164.349479402445" } }, { "key": "geid_107_3587", "source": "CostaRica", "target": "Peru", "attributes": { "weight": 10404.099592575827, "sourceWeight": "10404.099592575827", "direction": "Imp", "source_type": "primary", "targetWeight": "10404.099592575827" } }, { "key": "geid_107_3588", "source": "Cuba", "target": "Peru", "attributes": { "weight": 22444.559529198734, "sourceWeight": "22444.559529198734", "direction": "Imp", "source_type": "primary", "targetWeight": "22444.559529198734" } }, { "key": "geid_107_3589", "source": "Chile", "target": "Peru", "attributes": { "weight": 915404.0814848348, "sourceWeight": "915404.0814848348", "direction": "Imp", "source_type": "primary", "targetWeight": "915404.0814848348" } }, { "key": "geid_107_3590", "source": "Ecuador", "target": "Peru", "attributes": { "weight": 87909.17157084653, "sourceWeight": "87909.17157084653", "direction": "Imp", "source_type": "primary", "targetWeight": "87909.17157084653" } }, { "key": "geid_107_3591", "source": "ElSalvador", "target": "Peru", "attributes": { "weight": 14877.435943866003, "sourceWeight": "14877.435943866003", "direction": "Imp", "source_type": "primary", "targetWeight": "14877.435943866003" } }, { "key": "geid_107_3592", "source": "UnitedStatesofAmerica", "target": "Peru", "attributes": { "weight": 6533426.87550928, "sourceWeight": "6533426.87550928", "direction": "Imp", "source_type": "primary", "targetWeight": "6533426.87550928" } }, { "key": "geid_107_3593", "source": "Iquique", "target": "Peru", "attributes": { "weight": 16927.290176550476, "sourceWeight": "16927.290176550476", "direction": "Imp", "source_type": "primary", "targetWeight": "16927.290176550476" } }, { "key": "geid_107_3594", "source": "Jamaica", "target": "Peru", "attributes": { "weight": 55.62698053417836, "sourceWeight": "55.62698053417836", "direction": "Imp", "source_type": "primary", "targetWeight": "55.62698053417836" } }, { "key": "geid_107_3595", "source": "Mexico", "target": "Peru", "attributes": { "weight": 164.09959257582616, "sourceWeight": "164.09959257582616", "direction": "Imp", "source_type": "primary", "targetWeight": "164.09959257582616" } }, { "key": "geid_107_3596", "source": "Panama", "target": "Peru", "attributes": { "weight": 7498.516976007243, "sourceWeight": "7498.516976007243", "direction": "Imp", "source_type": "primary", "targetWeight": "7498.516976007243" } }, { "key": "geid_107_3597", "source": "Tacna", "target": "Peru", "attributes": { "weight": 3184.644635581711, "sourceWeight": "3184.644635581711", "direction": "Imp", "source_type": "primary", "targetWeight": "3184.644635581711" } }, { "key": "geid_107_3598", "source": "Trinidad", "target": "Peru", "attributes": { "weight": 436.6717971933001, "sourceWeight": "436.6717971933001", "direction": "Imp", "source_type": "primary", "targetWeight": "436.6717971933001" } }, { "key": "geid_107_3599", "source": "Uruguay", "target": "Peru", "attributes": { "weight": 28833.318243549118, "sourceWeight": "28833.318243549118", "direction": "Imp", "source_type": "primary", "targetWeight": "28833.318243549118" } }, { "key": "geid_107_3600", "source": "Venezuela", "target": "Peru", "attributes": { "weight": 63.04391127206881, "sourceWeight": "63.04391127206881", "direction": "Imp", "source_type": "primary", "targetWeight": "63.04391127206881" } }, { "key": "geid_107_3601", "source": "GermanyZollverein", "target": "Peru", "attributes": { "weight": 1720480.3911272069, "sourceWeight": "1720480.3911272069", "direction": "Imp", "source_type": "primary", "targetWeight": "1720480.3911272069" } }, { "key": "geid_107_3602", "source": "Austria", "target": "Peru", "attributes": { "weight": 2201.901312811227, "sourceWeight": "2201.901312811227", "direction": "Imp", "source_type": "primary", "targetWeight": "2201.901312811227" } }, { "key": "geid_107_3603", "source": "Belgium", "target": "Peru", "attributes": { "weight": 412905.16976007243, "sourceWeight": "412905.16976007243", "direction": "Imp", "source_type": "primary", "targetWeight": "412905.16976007243" } }, { "key": "geid_107_3604", "source": "Denmark", "target": "Peru", "attributes": { "weight": 19566.790402897237, "sourceWeight": "19566.790402897237", "direction": "Imp", "source_type": "primary", "targetWeight": "19566.790402897237" } }, { "key": "geid_107_3605", "source": "Spain", "target": "Peru", "attributes": { "weight": 194350.47170665459, "sourceWeight": "194350.47170665459", "direction": "Imp", "source_type": "primary", "targetWeight": "194350.47170665459" } }, { "key": "geid_107_3606", "source": "France", "target": "Peru", "attributes": { "weight": 670720.4635581711, "sourceWeight": "670720.4635581711", "direction": "Imp", "source_type": "primary", "targetWeight": "670720.4635581711" } }, { "key": "geid_107_3607", "source": "UnitedKingdom", "target": "Peru", "attributes": { "weight": 3127981.1389769125, "sourceWeight": "3127981.1389769125", "direction": "Imp", "source_type": "primary", "targetWeight": "3127981.1389769125" } }, { "key": "geid_107_3608", "source": "Netherlands", "target": "Peru", "attributes": { "weight": 212315.2050701675, "sourceWeight": "212315.2050701675", "direction": "Imp", "source_type": "primary", "targetWeight": "212315.2050701675" } }, { "key": "geid_107_3609", "source": "Italy", "target": "Peru", "attributes": { "weight": 803685.6351290176, "sourceWeight": "803685.6351290176", "direction": "Imp", "source_type": "primary", "targetWeight": "803685.6351290176" } }, { "key": "geid_107_3610", "source": "Norway", "target": "Peru", "attributes": { "weight": 63326.68175645088, "sourceWeight": "63326.68175645088", "direction": "Imp", "source_type": "primary", "targetWeight": "63326.68175645088" } }, { "key": "geid_107_3611", "source": "Portugal", "target": "Peru", "attributes": { "weight": 6404.519692168402, "sourceWeight": "6404.519692168402", "direction": "Imp", "source_type": "primary", "targetWeight": "6404.519692168402" } }, { "key": "geid_107_3612", "source": "Sweden", "target": "Peru", "attributes": { "weight": 64789.67134449977, "sourceWeight": "64789.67134449977", "direction": "Imp", "source_type": "primary", "targetWeight": "64789.67134449977" } }, { "key": "geid_107_3613", "source": "Switzerland", "target": "Peru", "attributes": { "weight": 62334.66727025803, "sourceWeight": "62334.66727025803", "direction": "Imp", "source_type": "primary", "targetWeight": "62334.66727025803" } }, { "key": "geid_107_3614", "source": "PeoplesRepublicofChinaChina", "target": "Peru", "attributes": { "weight": 2237.1317338162066, "sourceWeight": "2237.1317338162066", "direction": "Imp", "source_type": "primary", "targetWeight": "2237.1317338162066" } }, { "key": "geid_107_3615", "source": "HongKong", "target": "Peru", "attributes": { "weight": 583447.2937980987, "sourceWeight": "583447.2937980987", "direction": "Imp", "source_type": "primary", "targetWeight": "583447.2937980987" } }, { "key": "geid_107_3616", "source": "India", "target": "Peru", "attributes": { "weight": 304015.3553644183, "sourceWeight": "304015.3553644183", "direction": "Imp", "source_type": "primary", "targetWeight": "304015.3553644183" } }, { "key": "geid_107_3617", "source": "Japan", "target": "Peru", "attributes": { "weight": 185053.34902670892, "sourceWeight": "185053.34902670892", "direction": "Imp", "source_type": "primary", "targetWeight": "185053.34902670892" } }, { "key": "geid_107_3618", "source": "Australia", "target": "Peru", "attributes": { "weight": 111991.01856043459, "sourceWeight": "111991.01856043459", "direction": "Imp", "source_type": "primary", "targetWeight": "111991.01856043459" } }, { "key": "geid_107_3619", "source": "Unknown", "target": "Peru", "attributes": { "weight": 5961.358080579448, "sourceWeight": "5961.358080579448", "direction": "Imp", "source_type": "primary", "targetWeight": "5961.358080579448" } }, { "key": "geid_107_3620", "source": "UnitedKingdom", "target": "Ireland", "attributes": { "weight": 55878808, "sourceWeight": "55878808", "direction": "Imp", "source_type": "primary", "targetWeight": "55878808" } }, { "key": "geid_107_3621", "source": "AlgeriaRegencyofAlgiers", "target": "Ireland", "attributes": { "weight": 64571, "sourceWeight": "64571", "direction": "Imp", "source_type": "primary", "targetWeight": "64571" } }, { "key": "geid_107_3622", "source": "ArgentinaLaPlata", "target": "Ireland", "attributes": { "weight": 2294214, "sourceWeight": "2294214", "direction": "Imp", "source_type": "primary", "targetWeight": "2294214" } }, { "key": "geid_107_3623", "source": "Australia", "target": "Ireland", "attributes": { "weight": 671356, "sourceWeight": "671356", "direction": "Imp", "source_type": "primary", "targetWeight": "671356" } }, { "key": "geid_107_3624", "source": "Belgium", "target": "Ireland", "attributes": { "weight": 630151, "sourceWeight": "630151", "direction": "Imp", "source_type": "primary", "targetWeight": "630151" } }, { "key": "geid_107_3625", "source": "India", "target": "Ireland", "attributes": { "weight": 125020, "sourceWeight": "125020", "direction": "Imp", "source_type": "primary", "targetWeight": "125020" } }, { "key": "geid_107_3626", "source": "StraitsSettlements", "target": "Ireland", "attributes": { "weight": 272, "sourceWeight": "272", "direction": "Imp", "source_type": "primary", "targetWeight": "272" } }, { "key": "geid_107_3627", "source": "BritishWestIndies", "target": "Ireland", "attributes": { "weight": 561, "sourceWeight": "561", "direction": "Imp", "source_type": "primary", "targetWeight": "561" } }, { "key": "geid_107_3628", "source": "CanadaProvinceofCanada", "target": "Ireland", "attributes": { "weight": 1438208, "sourceWeight": "1438208", "direction": "Imp", "source_type": "primary", "targetWeight": "1438208" } }, { "key": "geid_107_3629", "source": "Czechoslovakia", "target": "Ireland", "attributes": { "weight": 249584, "sourceWeight": "249584", "direction": "Imp", "source_type": "primary", "targetWeight": "249584" } }, { "key": "geid_107_3630", "source": "Denmark", "target": "Ireland", "attributes": { "weight": 18029, "sourceWeight": "18029", "direction": "Imp", "source_type": "primary", "targetWeight": "18029" } }, { "key": "geid_107_3631", "source": "France", "target": "Ireland", "attributes": { "weight": 432925, "sourceWeight": "432925", "direction": "Imp", "source_type": "primary", "targetWeight": "432925" } }, { "key": "geid_107_3632", "source": "GermanyZollverein", "target": "Ireland", "attributes": { "weight": 744580, "sourceWeight": "744580", "direction": "Imp", "source_type": "primary", "targetWeight": "744580" } }, { "key": "geid_107_3633", "source": "Netherlands", "target": "Ireland", "attributes": { "weight": 816273, "sourceWeight": "816273", "direction": "Imp", "source_type": "primary", "targetWeight": "816273" } }, { "key": "geid_107_3634", "source": "Italy", "target": "Ireland", "attributes": { "weight": 73358, "sourceWeight": "73358", "direction": "Imp", "source_type": "primary", "targetWeight": "73358" } }, { "key": "geid_107_3635", "source": "Latvia", "target": "Ireland", "attributes": { "weight": 50584, "sourceWeight": "50584", "direction": "Imp", "source_type": "primary", "targetWeight": "50584" } }, { "key": "geid_107_3636", "source": "Mexico", "target": "Ireland", "attributes": { "weight": 52, "sourceWeight": "52", "direction": "Imp", "source_type": "primary", "targetWeight": "52" } }, { "key": "geid_107_3637", "source": "Norway", "target": "Ireland", "attributes": { "weight": 51440, "sourceWeight": "51440", "direction": "Imp", "source_type": "primary", "targetWeight": "51440" } }, { "key": "geid_107_3638", "source": "Portugal", "target": "Ireland", "attributes": { "weight": 253489, "sourceWeight": "253489", "direction": "Imp", "source_type": "primary", "targetWeight": "253489" } }, { "key": "geid_107_3639", "source": "Romania", "target": "Ireland", "attributes": { "weight": 499337, "sourceWeight": "499337", "direction": "Imp", "source_type": "primary", "targetWeight": "499337" } }, { "key": "geid_107_3640", "source": "SouthAfrica", "target": "Ireland", "attributes": { "weight": 1793, "sourceWeight": "1793", "direction": "Imp", "source_type": "primary", "targetWeight": "1793" } }, { "key": "geid_107_3641", "source": "Spain", "target": "Ireland", "attributes": { "weight": 135279, "sourceWeight": "135279", "direction": "Imp", "source_type": "primary", "targetWeight": "135279" } }, { "key": "geid_107_3642", "source": "Sweden", "target": "Ireland", "attributes": { "weight": 339867, "sourceWeight": "339867", "direction": "Imp", "source_type": "primary", "targetWeight": "339867" } }, { "key": "geid_107_3643", "source": "Switzerland", "target": "Ireland", "attributes": { "weight": 38221, "sourceWeight": "38221", "direction": "Imp", "source_type": "primary", "targetWeight": "38221" } }, { "key": "geid_107_3644", "source": "UnitedStatesofAmerica", "target": "Ireland", "attributes": { "weight": 3708669, "sourceWeight": "3708669", "direction": "Imp", "source_type": "primary", "targetWeight": "3708669" } }, { "key": "geid_107_3645", "source": "Othercountries", "target": "Ireland", "attributes": { "weight": 373750, "sourceWeight": "373750", "direction": "Imp", "source_type": "primary", "targetWeight": "373750" } }, { "key": "geid_107_3646", "source": "Ireland", "target": "UnitedKingdom", "attributes": { "weight": 49311585, "sourceWeight": "49311585", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3647", "source": "Ireland", "target": "UnitedStatesofAmerica", "attributes": { "weight": 241191, "sourceWeight": "241191", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3648", "source": "Ireland", "target": "ArgentinaLaPlata", "attributes": { "weight": 11713, "sourceWeight": "11713", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3649", "source": "Ireland", "target": "CanadaProvinceofCanada", "attributes": { "weight": 30274, "sourceWeight": "30274", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3650", "source": "Ireland", "target": "Netherlands", "attributes": { "weight": 34135, "sourceWeight": "34135", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3651", "source": "Ireland", "target": "GermanyZollverein", "attributes": { "weight": 48421, "sourceWeight": "48421", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3652", "source": "Ireland", "target": "Australia", "attributes": { "weight": 21116, "sourceWeight": "21116", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3653", "source": "Ireland", "target": "Belgium", "attributes": { "weight": 172905, "sourceWeight": "172905", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3654", "source": "Ireland", "target": "Romania", "attributes": { "weight": 5, "sourceWeight": "5", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3655", "source": "Ireland", "target": "France", "attributes": { "weight": 81859, "sourceWeight": "81859", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3656", "source": "Ireland", "target": "Sweden", "attributes": { "weight": 2534, "sourceWeight": "2534", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3657", "source": "Ireland", "target": "Portugal", "attributes": { "weight": 103, "sourceWeight": "103", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3658", "source": "Ireland", "target": "Czechoslovakia", "attributes": { "weight": 1104, "sourceWeight": "1104", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3659", "source": "Ireland", "target": "Spain", "attributes": { "weight": 4380, "sourceWeight": "4380", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3660", "source": "Ireland", "target": "India", "attributes": { "weight": 62734, "sourceWeight": "62734", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3661", "source": "Ireland", "target": "SouthAfrica", "attributes": { "weight": 8901, "sourceWeight": "8901", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3662", "source": "Ireland", "target": "Mexico", "attributes": { "weight": 64, "sourceWeight": "64", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3663", "source": "Ireland", "target": "Italy", "attributes": { "weight": 5635, "sourceWeight": "5635", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3664", "source": "Ireland", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3665", "source": "Ireland", "target": "Norway", "attributes": { "weight": 29757, "sourceWeight": "29757", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3666", "source": "Ireland", "target": "Latvia", "attributes": { "weight": 11, "sourceWeight": "11", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3667", "source": "Ireland", "target": "Switzerland", "attributes": { "weight": 20698, "sourceWeight": "20698", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3668", "source": "Ireland", "target": "Denmark", "attributes": { "weight": 11263, "sourceWeight": "11263", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3669", "source": "Ireland", "target": "BritishWestIndies", "attributes": { "weight": 18689, "sourceWeight": "18689", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3670", "source": "Ireland", "target": "StraitsSettlements", "attributes": { "weight": 32593, "sourceWeight": "32593", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3671", "source": "Ireland", "target": "Philippines", "attributes": { "weight": 19070, "sourceWeight": "19070", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3672", "source": "Ireland", "target": "NewZealand", "attributes": { "weight": 3719, "sourceWeight": "3719", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3673", "source": "Ireland", "target": "Brazil", "attributes": { "weight": 893, "sourceWeight": "893", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3674", "source": "Ireland", "target": "ChannelIs", "attributes": { "weight": 9585, "sourceWeight": "9585", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3675", "source": "Ireland", "target": "Gibraltar", "attributes": { "weight": 6631, "sourceWeight": "6631", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3676", "source": "Ireland", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 9376, "sourceWeight": "9376", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3677", "source": "Ireland", "target": "Cuba", "attributes": { "weight": 5161, "sourceWeight": "5161", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3678", "source": "Ireland", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 5243, "sourceWeight": "5243", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3679", "source": "Ireland", "target": "HongKong", "attributes": { "weight": 6986, "sourceWeight": "6986", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3680", "source": "Ireland", "target": "Othercountries", "attributes": { "weight": 62406, "sourceWeight": "62406", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3681", "source": "UnitedKingdom", "target": "Zanzibar", "attributes": { "weight": 371045.13064133015, "sourceWeight": "371045.13064133015", "direction": "Imp", "source_type": "primary", "targetWeight": "371045.13064133015" } }, { "key": "geid_107_3682", "source": "India_MyanmarBurma", "target": "Zanzibar", "attributes": { "weight": 784272.5113366443, "sourceWeight": "784272.5113366443", "direction": "Imp", "source_type": "primary", "targetWeight": "784272.5113366443" } }, { "key": "geid_107_3683", "source": "TanzaniaTanganyika", "target": "Zanzibar", "attributes": { "weight": 265340.09933059814, "sourceWeight": "265340.09933059814", "direction": "Imp", "source_type": "primary", "targetWeight": "265340.09933059814" } }, { "key": "geid_107_3684", "source": "KenyaBritishEastAfricaProtectorate", "target": "Zanzibar", "attributes": { "weight": 79593.10444108544, "sourceWeight": "79593.10444108544", "direction": "Imp", "source_type": "primary", "targetWeight": "79593.10444108544" } }, { "key": "geid_107_3685", "source": "SouthAfrica", "target": "Zanzibar", "attributes": { "weight": 5704.095587706039, "sourceWeight": "5704.095587706039", "direction": "Imp", "source_type": "primary", "targetWeight": "5704.095587706039" } }, { "key": "geid_107_3686", "source": "Aden", "target": "Zanzibar", "attributes": { "weight": 3416.972576117469, "sourceWeight": "3416.972576117469", "direction": "Imp", "source_type": "primary", "targetWeight": "3416.972576117469" } }, { "key": "geid_107_3687", "source": "MafiaI", "target": "Zanzibar", "attributes": { "weight": 34240.62477506658, "sourceWeight": "34240.62477506658", "direction": "Imp", "source_type": "primary", "targetWeight": "34240.62477506658" } }, { "key": "geid_107_3688", "source": "BritishColoniesother", "target": "Zanzibar", "attributes": { "weight": 29714.820413157704, "sourceWeight": "29714.820413157704", "direction": "Imp", "source_type": "primary", "targetWeight": "29714.820413157704" } }, { "key": "geid_107_3689", "source": "Japan", "target": "Zanzibar", "attributes": { "weight": 95876.12466709853, "sourceWeight": "95876.12466709853", "direction": "Imp", "source_type": "primary", "targetWeight": "95876.12466709853" } }, { "key": "geid_107_3690", "source": "Netherlands", "target": "Zanzibar", "attributes": { "weight": 68825.01979414093, "sourceWeight": "68825.01979414093", "direction": "Imp", "source_type": "primary", "targetWeight": "68825.01979414093" } }, { "key": "geid_107_3691", "source": "Sumatra", "target": "Zanzibar", "attributes": { "weight": 31436.838695746057, "sourceWeight": "31436.838695746057", "direction": "Imp", "source_type": "primary", "targetWeight": "31436.838695746057" } }, { "key": "geid_107_3692", "source": "IranPersia", "target": "Zanzibar", "attributes": { "weight": 148.85193982581154, "sourceWeight": "148.85193982581154", "direction": "Imp", "source_type": "primary", "targetWeight": "148.85193982581154" } }, { "key": "geid_107_3693", "source": "ItalianSomaliland", "target": "Zanzibar", "attributes": { "weight": 46934.06751601526, "sourceWeight": "46934.06751601526", "direction": "Imp", "source_type": "primary", "targetWeight": "46934.06751601526" } }, { "key": "geid_107_3694", "source": "UnitedStatesofAmerica", "target": "Zanzibar", "attributes": { "weight": 39380.26344202116, "sourceWeight": "39380.26344202116", "direction": "Imp", "source_type": "primary", "targetWeight": "39380.26344202116" } }, { "key": "geid_107_3695", "source": "MozambiquePortugueseEastAfrica", "target": "Zanzibar", "attributes": { "weight": 20733.96674584323, "sourceWeight": "20733.96674584323", "direction": "Imp", "source_type": "primary", "targetWeight": "20733.96674584323" } }, { "key": "geid_107_3696", "source": "GermanyZollverein", "target": "Zanzibar", "attributes": { "weight": 54384.51018498524, "sourceWeight": "54384.51018498524", "direction": "Imp", "source_type": "primary", "targetWeight": "54384.51018498524" } }, { "key": "geid_107_3697", "source": "Arabia", "target": "Zanzibar", "attributes": { "weight": 18241.41654070395, "sourceWeight": "18241.41654070395", "direction": "Imp", "source_type": "primary", "targetWeight": "18241.41654070395" } }, { "key": "geid_107_3698", "source": "France", "target": "Zanzibar", "attributes": { "weight": 16228.244439645863, "sourceWeight": "16228.244439645863", "direction": "Imp", "source_type": "primary", "targetWeight": "16228.244439645863" } }, { "key": "geid_107_3699", "source": "Italy", "target": "Zanzibar", "attributes": { "weight": 9310.300151155257, "sourceWeight": "9310.300151155257", "direction": "Imp", "source_type": "primary", "targetWeight": "9310.300151155257" } }, { "key": "geid_107_3700", "source": "Belgium", "target": "Zanzibar", "attributes": { "weight": 6360.0374289210395, "sourceWeight": "6360.0374289210395", "direction": "Imp", "source_type": "primary", "targetWeight": "6360.0374289210395" } }, { "key": "geid_107_3701", "source": "PeoplesRepublicofChinaChina", "target": "Zanzibar", "attributes": { "weight": 9309.148492046354, "sourceWeight": "9309.148492046354", "direction": "Imp", "source_type": "primary", "targetWeight": "9309.148492046354" } }, { "key": "geid_107_3702", "source": "Austria", "target": "Zanzibar", "attributes": { "weight": 15892.175915928885, "sourceWeight": "15892.175915928885", "direction": "Imp", "source_type": "primary", "targetWeight": "15892.175915928885" } }, { "key": "geid_107_3703", "source": "Switzerland", "target": "Zanzibar", "attributes": { "weight": 3532.498380479378, "sourceWeight": "3532.498380479378", "direction": "Imp", "source_type": "primary", "targetWeight": "3532.498380479378" } }, { "key": "geid_107_3704", "source": "MadagascarMalagasyRepublic", "target": "Zanzibar", "attributes": { "weight": 14092.276686100913, "sourceWeight": "14092.276686100913", "direction": "Imp", "source_type": "primary", "targetWeight": "14092.276686100913" } }, { "key": "geid_107_3705", "source": "Spain", "target": "Zanzibar", "attributes": { "weight": 81.04800978910242, "sourceWeight": "81.04800978910242", "direction": "Imp", "source_type": "primary", "targetWeight": "81.04800978910242" } }, { "key": "geid_107_3706", "source": "Portugal", "target": "Zanzibar", "attributes": { "weight": 608.2199668898006, "sourceWeight": "608.2199668898006", "direction": "Imp", "source_type": "primary", "targetWeight": "608.2199668898006" } }, { "key": "geid_107_3707", "source": "Java", "target": "Zanzibar", "attributes": { "weight": 95126.32260850788, "sourceWeight": "95126.32260850788", "direction": "Imp", "source_type": "primary", "targetWeight": "95126.32260850788" } }, { "key": "geid_107_3708", "source": "Scandinavia", "target": "Zanzibar", "attributes": { "weight": 11842.798531634635, "sourceWeight": "11842.798531634635", "direction": "Imp", "source_type": "primary", "targetWeight": "11842.798531634635" } }, { "key": "geid_107_3709", "source": "Greece", "target": "Zanzibar", "attributes": { "weight": 48.29770387965162, "sourceWeight": "48.29770387965162", "direction": "Imp", "source_type": "primary", "targetWeight": "48.29770387965162" } }, { "key": "geid_107_3710", "source": "Othercountries", "target": "Zanzibar", "attributes": { "weight": 1977.5426473763764, "sourceWeight": "1977.5426473763764", "direction": "Imp", "source_type": "primary", "targetWeight": "1977.5426473763764" } }, { "key": "geid_107_3711", "source": "Zanzibar", "target": "UnitedKingdom", "attributes": { "weight": 233022.81724609513, "sourceWeight": "233022.81724609513", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3712", "source": "Zanzibar", "target": "India_MyanmarBurma", "attributes": { "weight": 570444.3244799539, "sourceWeight": "570444.3244799539", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3713", "source": "Zanzibar", "target": "TanzaniaTanganyika", "attributes": { "weight": 373899.51774274814, "sourceWeight": "373899.51774274814", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3714", "source": "Zanzibar", "target": "KenyaBritishEastAfricaProtectorate", "attributes": { "weight": 107500.10796804146, "sourceWeight": "107500.10796804146", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3715", "source": "Zanzibar", "target": "SouthAfrica", "attributes": { "weight": 6622.327790973872, "sourceWeight": "6622.327790973872", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3716", "source": "Zanzibar", "target": "Aden", "attributes": { "weight": 8293.745051464766, "sourceWeight": "8293.745051464766", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3717", "source": "Zanzibar", "target": "MafiaI", "attributes": { "weight": 10729.000215936083, "sourceWeight": "10729.000215936083", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3718", "source": "Zanzibar", "target": "BritishColoniesother", "attributes": { "weight": 25799.68329374505, "sourceWeight": "25799.68329374505", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3719", "source": "Zanzibar", "target": "Japan", "attributes": { "weight": 6556.467285683438, "sourceWeight": "6556.467285683438", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3720", "source": "Zanzibar", "target": "Netherlands", "attributes": { "weight": 52513.49600518246, "sourceWeight": "52513.49600518246", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3721", "source": "Zanzibar", "target": "ItalianSomaliland", "attributes": { "weight": 30992.082343626284, "sourceWeight": "30992.082343626284", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3722", "source": "Zanzibar", "target": "UnitedStatesofAmerica", "attributes": { "weight": 172131.36111710934, "sourceWeight": "172131.36111710934", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3723", "source": "Zanzibar", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 24028.287626862446, "sourceWeight": "24028.287626862446", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3724", "source": "Zanzibar", "target": "GermanyZollverein", "attributes": { "weight": 60897.43036061325, "sourceWeight": "60897.43036061325", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3725", "source": "Zanzibar", "target": "Arabia", "attributes": { "weight": 22520.837832001725, "sourceWeight": "22520.837832001725", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3726", "source": "Zanzibar", "target": "France", "attributes": { "weight": 348895.7028719499, "sourceWeight": "348895.7028719499", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3727", "source": "Zanzibar", "target": "Italy", "attributes": { "weight": 86412.9417692363, "sourceWeight": "86412.9417692363", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3728", "source": "Zanzibar", "target": "Belgium", "attributes": { "weight": 1631.6130425394083, "sourceWeight": "1631.6130425394083", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3729", "source": "Zanzibar", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 37597.99899229828, "sourceWeight": "37597.99899229828", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3730", "source": "Zanzibar", "target": "Austria", "attributes": { "weight": 3509.681134384222, "sourceWeight": "3509.681134384222", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3731", "source": "Zanzibar", "target": "MadagascarMalagasyRepublic", "attributes": { "weight": 6746.05916648672, "sourceWeight": "6746.05916648672", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3732", "source": "Zanzibar", "target": "Spain", "attributes": { "weight": 1403.584538976463, "sourceWeight": "1403.584538976463", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3733", "source": "Zanzibar", "target": "Scandinavia", "attributes": { "weight": 575.8295544518822, "sourceWeight": "575.8295544518822", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3734", "source": "Zanzibar", "target": "Othercountries", "attributes": { "weight": 936.8027063989059, "sourceWeight": "936.8027063989059", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3735", "source": "TanzaniaTanganyika", "target": "UnitedKingdom", "attributes": { "weight": 534966, "sourceWeight": "534966", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3736", "source": "TanzaniaTanganyika", "target": "India", "attributes": { "weight": 31050, "sourceWeight": "31050", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3737", "source": "TanzaniaTanganyika", "target": "SouthAfrica", "attributes": { "weight": 1950, "sourceWeight": "1950", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3738", "source": "TanzaniaTanganyika", "target": "Zanzibar", "attributes": { "weight": 239542, "sourceWeight": "239542", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3739", "source": "TanzaniaTanganyika", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 805552, "sourceWeight": "805552", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3740", "source": "TanzaniaTanganyika", "target": "BritishColoniesother", "attributes": { "weight": 17129, "sourceWeight": "17129", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3741", "source": "TanzaniaTanganyika", "target": "UnitedStatesofAmerica", "attributes": { "weight": 136884, "sourceWeight": "136884", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3742", "source": "TanzaniaTanganyika", "target": "France", "attributes": { "weight": 220688, "sourceWeight": "220688", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3743", "source": "TanzaniaTanganyika", "target": "GermanyZollverein", "attributes": { "weight": 233435, "sourceWeight": "233435", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3744", "source": "TanzaniaTanganyika", "target": "Belgium", "attributes": { "weight": 233368, "sourceWeight": "233368", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3745", "source": "TanzaniaTanganyika", "target": "Italy", "attributes": { "weight": 53834, "sourceWeight": "53834", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3746", "source": "TanzaniaTanganyika", "target": "Netherlands", "attributes": { "weight": 79085, "sourceWeight": "79085", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3747", "source": "TanzaniaTanganyika", "target": "BelgianColonies", "attributes": { "weight": 14935, "sourceWeight": "14935", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3748", "source": "TanzaniaTanganyika", "target": "ItalianColonies", "attributes": { "weight": 1673, "sourceWeight": "1673", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3749", "source": "TanzaniaTanganyika", "target": "PortugueseColonies", "attributes": { "weight": 5405, "sourceWeight": "5405", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3750", "source": "TanzaniaTanganyika", "target": "Othercountries", "attributes": { "weight": 1807, "sourceWeight": "1807", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3751", "source": "UnitedKingdom", "target": "TanzaniaTanganyika", "attributes": { "weight": 451476, "sourceWeight": "451476", "direction": "Imp", "source_type": "primary", "targetWeight": "451476" } }, { "key": "geid_107_3752", "source": "Zanzibar", "target": "TanzaniaTanganyika", "attributes": { "weight": 330439, "sourceWeight": "330439", "direction": "Imp", "source_type": "primary", "targetWeight": "330439" } }, { "key": "geid_107_3753", "source": "KenyaBritishEastAfricaProtectorate_Uganda", "target": "TanzaniaTanganyika", "attributes": { "weight": 879882, "sourceWeight": "879882", "direction": "Imp", "source_type": "primary", "targetWeight": "879882" } }, { "key": "geid_107_3754", "source": "India", "target": "TanzaniaTanganyika", "attributes": { "weight": 324648, "sourceWeight": "324648", "direction": "Imp", "source_type": "primary", "targetWeight": "324648" } }, { "key": "geid_107_3755", "source": "SouthAfrica", "target": "TanzaniaTanganyika", "attributes": { "weight": 13442, "sourceWeight": "13442", "direction": "Imp", "source_type": "primary", "targetWeight": "13442" } }, { "key": "geid_107_3756", "source": "BritishColoniesother", "target": "TanzaniaTanganyika", "attributes": { "weight": 29263, "sourceWeight": "29263", "direction": "Imp", "source_type": "primary", "targetWeight": "29263" } }, { "key": "geid_107_3757", "source": "UnitedStatesofAmerica", "target": "TanzaniaTanganyika", "attributes": { "weight": 15467, "sourceWeight": "15467", "direction": "Imp", "source_type": "primary", "targetWeight": "15467" } }, { "key": "geid_107_3758", "source": "France", "target": "TanzaniaTanganyika", "attributes": { "weight": 13424, "sourceWeight": "13424", "direction": "Imp", "source_type": "primary", "targetWeight": "13424" } }, { "key": "geid_107_3759", "source": "GermanyZollverein", "target": "TanzaniaTanganyika", "attributes": { "weight": 134055, "sourceWeight": "134055", "direction": "Imp", "source_type": "primary", "targetWeight": "134055" } }, { "key": "geid_107_3760", "source": "Belgium", "target": "TanzaniaTanganyika", "attributes": { "weight": 8154, "sourceWeight": "8154", "direction": "Imp", "source_type": "primary", "targetWeight": "8154" } }, { "key": "geid_107_3761", "source": "Netherlands", "target": "TanzaniaTanganyika", "attributes": { "weight": 92582, "sourceWeight": "92582", "direction": "Imp", "source_type": "primary", "targetWeight": "92582" } }, { "key": "geid_107_3762", "source": "Italy", "target": "TanzaniaTanganyika", "attributes": { "weight": 6664, "sourceWeight": "6664", "direction": "Imp", "source_type": "primary", "targetWeight": "6664" } }, { "key": "geid_107_3763", "source": "Portugal", "target": "TanzaniaTanganyika", "attributes": { "weight": 227, "sourceWeight": "227", "direction": "Imp", "source_type": "primary", "targetWeight": "227" } }, { "key": "geid_107_3764", "source": "Japan", "target": "TanzaniaTanganyika", "attributes": { "weight": 47651, "sourceWeight": "47651", "direction": "Imp", "source_type": "primary", "targetWeight": "47651" } }, { "key": "geid_107_3765", "source": "BelgianColonies", "target": "TanzaniaTanganyika", "attributes": { "weight": 8271, "sourceWeight": "8271", "direction": "Imp", "source_type": "primary", "targetWeight": "8271" } }, { "key": "geid_107_3766", "source": "ItalianColonies", "target": "TanzaniaTanganyika", "attributes": { "weight": 175, "sourceWeight": "175", "direction": "Imp", "source_type": "primary", "targetWeight": "175" } }, { "key": "geid_107_3767", "source": "PortugueseColonies", "target": "TanzaniaTanganyika", "attributes": { "weight": 3853, "sourceWeight": "3853", "direction": "Imp", "source_type": "primary", "targetWeight": "3853" } }, { "key": "geid_107_3768", "source": "Othercountries", "target": "TanzaniaTanganyika", "attributes": { "weight": 6267, "sourceWeight": "6267", "direction": "Imp", "source_type": "primary", "targetWeight": "6267" } }, { "key": "geid_107_3769", "source": "RussiaUSSR", "target": "UnitedKingdom", "attributes": { "weight": 19773842, "sourceWeight": "19773842", "direction": "Imp", "source_type": "primary", "targetWeight": "19773842" } }, { "key": "geid_107_3770", "source": "Finland", "target": "UnitedKingdom", "attributes": { "weight": 13803906, "sourceWeight": "13803906", "direction": "Imp", "source_type": "primary", "targetWeight": "13803906" } }, { "key": "geid_107_3771", "source": "Estonia", "target": "UnitedKingdom", "attributes": { "weight": 2461701, "sourceWeight": "2461701", "direction": "Imp", "source_type": "primary", "targetWeight": "2461701" } }, { "key": "geid_107_3772", "source": "Latvia", "target": "UnitedKingdom", "attributes": { "weight": 6374805, "sourceWeight": "6374805", "direction": "Imp", "source_type": "primary", "targetWeight": "6374805" } }, { "key": "geid_107_3773", "source": "Lithuania", "target": "UnitedKingdom", "attributes": { "weight": 734545, "sourceWeight": "734545", "direction": "Imp", "source_type": "primary", "targetWeight": "734545" } }, { "key": "geid_107_3774", "source": "Sweden", "target": "UnitedKingdom", "attributes": { "weight": 22504967, "sourceWeight": "22504967", "direction": "Imp", "source_type": "primary", "targetWeight": "22504967" } }, { "key": "geid_107_3775", "source": "Norway", "target": "UnitedKingdom", "attributes": { "weight": 11605238, "sourceWeight": "11605238", "direction": "Imp", "source_type": "primary", "targetWeight": "11605238" } }, { "key": "geid_107_3776", "source": "Iceland", "target": "UnitedKingdom", "attributes": { "weight": 368379, "sourceWeight": "368379", "direction": "Imp", "source_type": "primary", "targetWeight": "368379" } }, { "key": "geid_107_3777", "source": "Denmark_FaeroeIs", "target": "UnitedKingdom", "attributes": { "weight": 48904197, "sourceWeight": "48904197", "direction": "Imp", "source_type": "primary", "targetWeight": "48904197" } }, { "key": "geid_107_3778", "source": "Greenland", "target": "UnitedKingdom", "attributes": { "weight": 8407, "sourceWeight": "8407", "direction": "Imp", "source_type": "primary", "targetWeight": "8407" } }, { "key": "geid_107_3779", "source": "DanzigFreeCityofDanzig_Poland", "target": "UnitedKingdom", "attributes": { "weight": 8319739, "sourceWeight": "8319739", "direction": "Imp", "source_type": "primary", "targetWeight": "8319739" } }, { "key": "geid_107_3780", "source": "GermanyZollverein", "target": "UnitedKingdom", "attributes": { "weight": 36888265, "sourceWeight": "36888265", "direction": "Imp", "source_type": "primary", "targetWeight": "36888265" } }, { "key": "geid_107_3781", "source": "Netherlands", "target": "UnitedKingdom", "attributes": { "weight": 42735404, "sourceWeight": "42735404", "direction": "Imp", "source_type": "primary", "targetWeight": "42735404" } }, { "key": "geid_107_3782", "source": "Java", "target": "UnitedKingdom", "attributes": { "weight": 8865727, "sourceWeight": "8865727", "direction": "Imp", "source_type": "primary", "targetWeight": "8865727" } }, { "key": "geid_107_3783", "source": "DutchBorneo", "target": "UnitedKingdom", "attributes": { "weight": 2043410, "sourceWeight": "2043410", "direction": "Imp", "source_type": "primary", "targetWeight": "2043410" } }, { "key": "geid_107_3784", "source": "WestIrianDutchNewGuinea", "target": "UnitedKingdom", "attributes": { "weight": 392, "sourceWeight": "392", "direction": "Imp", "source_type": "primary", "targetWeight": "392" } }, { "key": "geid_107_3785", "source": "DutchOceaniaother", "target": "UnitedKingdom", "attributes": { "weight": 1005254, "sourceWeight": "1005254", "direction": "Imp", "source_type": "primary", "targetWeight": "1005254" } }, { "key": "geid_107_3786", "source": "NetherlandsAntilles", "target": "UnitedKingdom", "attributes": { "weight": 970402, "sourceWeight": "970402", "direction": "Imp", "source_type": "primary", "targetWeight": "970402" } }, { "key": "geid_107_3787", "source": "SurinamDutchGuiana", "target": "UnitedKingdom", "attributes": { "weight": 168726, "sourceWeight": "168726", "direction": "Imp", "source_type": "primary", "targetWeight": "168726" } }, { "key": "geid_107_3788", "source": "Belgium", "target": "UnitedKingdom", "attributes": { "weight": 36386576, "sourceWeight": "36386576", "direction": "Imp", "source_type": "primary", "targetWeight": "36386576" } }, { "key": "geid_107_3789", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState_RuandaUrundi", "target": "UnitedKingdom", "attributes": { "weight": 558875, "sourceWeight": "558875", "direction": "Imp", "source_type": "primary", "targetWeight": "558875" } }, { "key": "geid_107_3790", "source": "Luxemburg", "target": "UnitedKingdom", "attributes": { "weight": 1512205, "sourceWeight": "1512205", "direction": "Imp", "source_type": "primary", "targetWeight": "1512205" } }, { "key": "geid_107_3791", "source": "France", "target": "UnitedKingdom", "attributes": { "weight": 66578211, "sourceWeight": "66578211", "direction": "Imp", "source_type": "primary", "targetWeight": "66578211" } }, { "key": "geid_107_3792", "source": "AlgeriaRegencyofAlgiers", "target": "UnitedKingdom", "attributes": { "weight": 1972927, "sourceWeight": "1972927", "direction": "Imp", "source_type": "primary", "targetWeight": "1972927" } }, { "key": "geid_107_3793", "source": "TunisiaRegencyofTunis", "target": "UnitedKingdom", "attributes": { "weight": 952056, "sourceWeight": "952056", "direction": "Imp", "source_type": "primary", "targetWeight": "952056" } }, { "key": "geid_107_3794", "source": "FrenchEquatorialAfrica_FrenchWestAfrica", "target": "UnitedKingdom", "attributes": { "weight": 2141061, "sourceWeight": "2141061", "direction": "Imp", "source_type": "primary", "targetWeight": "2141061" } }, { "key": "geid_107_3795", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "UnitedKingdom", "attributes": { "weight": 209814, "sourceWeight": "209814", "direction": "Imp", "source_type": "primary", "targetWeight": "209814" } }, { "key": "geid_107_3796", "source": "MadagascarMalagasyRepublic", "target": "UnitedKingdom", "attributes": { "weight": 352593, "sourceWeight": "352593", "direction": "Imp", "source_type": "primary", "targetWeight": "352593" } }, { "key": "geid_107_3797", "source": "ReunionBourbonI", "target": "UnitedKingdom", "attributes": { "weight": 20477, "sourceWeight": "20477", "direction": "Imp", "source_type": "primary", "targetWeight": "20477" } }, { "key": "geid_107_3798", "source": "Syria", "target": "UnitedKingdom", "attributes": { "weight": 324392, "sourceWeight": "324392", "direction": "Imp", "source_type": "primary", "targetWeight": "324392" } }, { "key": "geid_107_3799", "source": "FrenchIndia", "target": "UnitedKingdom", "attributes": { "weight": 9331, "sourceWeight": "9331", "direction": "Imp", "source_type": "primary", "targetWeight": "9331" } }, { "key": "geid_107_3800", "source": "FrenchIndochina", "target": "UnitedKingdom", "attributes": { "weight": 121849, "sourceWeight": "121849", "direction": "Imp", "source_type": "primary", "targetWeight": "121849" } }, { "key": "geid_107_3801", "source": "FrenchPolynesia", "target": "UnitedKingdom", "attributes": { "weight": 74835, "sourceWeight": "74835", "direction": "Imp", "source_type": "primary", "targetWeight": "74835" } }, { "key": "geid_107_3802", "source": "FrenchWestIndies", "target": "UnitedKingdom", "attributes": { "weight": 2099, "sourceWeight": "2099", "direction": "Imp", "source_type": "primary", "targetWeight": "2099" } }, { "key": "geid_107_3803", "source": "FrenchGuiana", "target": "UnitedKingdom", "attributes": { "weight": 24944, "sourceWeight": "24944", "direction": "Imp", "source_type": "primary", "targetWeight": "24944" } }, { "key": "geid_107_3804", "source": "Switzerland", "target": "UnitedKingdom", "attributes": { "weight": 19435757, "sourceWeight": "19435757", "direction": "Imp", "source_type": "primary", "targetWeight": "19435757" } }, { "key": "geid_107_3805", "source": "Portugal", "target": "UnitedKingdom", "attributes": { "weight": 4691340, "sourceWeight": "4691340", "direction": "Imp", "source_type": "primary", "targetWeight": "4691340" } }, { "key": "geid_107_3806", "source": "AzoresWesternIsles", "target": "UnitedKingdom", "attributes": { "weight": 59041, "sourceWeight": "59041", "direction": "Imp", "source_type": "primary", "targetWeight": "59041" } }, { "key": "geid_107_3807", "source": "MadeiraIsles", "target": "UnitedKingdom", "attributes": { "weight": 121464, "sourceWeight": "121464", "direction": "Imp", "source_type": "primary", "targetWeight": "121464" } }, { "key": "geid_107_3808", "source": "AngolaPortugueseWestAfrica", "target": "UnitedKingdom", "attributes": { "weight": 60297, "sourceWeight": "60297", "direction": "Imp", "source_type": "primary", "targetWeight": "60297" } }, { "key": "geid_107_3809", "source": "MozambiquePortugueseEastAfrica", "target": "UnitedKingdom", "attributes": { "weight": 1652247, "sourceWeight": "1652247", "direction": "Imp", "source_type": "primary", "targetWeight": "1652247" } }, { "key": "geid_107_3810", "source": "PortugueseIndiainclGoaDiuDaman", "target": "UnitedKingdom", "attributes": { "weight": 206118, "sourceWeight": "206118", "direction": "Imp", "source_type": "primary", "targetWeight": "206118" } }, { "key": "geid_107_3811", "source": "PortugueseIndiainclGoaDiuDaman", "target": "UnitedKingdom", "attributes": { "weight": 200, "sourceWeight": "200", "direction": "Imp", "source_type": "primary", "targetWeight": "200" } }, { "key": "geid_107_3812", "source": "Spain", "target": "UnitedKingdom", "attributes": { "weight": 19649332, "sourceWeight": "19649332", "direction": "Imp", "source_type": "primary", "targetWeight": "19649332" } }, { "key": "geid_107_3813", "source": "CanaryIs", "target": "UnitedKingdom", "attributes": { "weight": 3820323, "sourceWeight": "3820323", "direction": "Imp", "source_type": "primary", "targetWeight": "3820323" } }, { "key": "geid_107_3814", "source": "SpanishNorthAfrica", "target": "UnitedKingdom", "attributes": { "weight": 98367, "sourceWeight": "98367", "direction": "Imp", "source_type": "primary", "targetWeight": "98367" } }, { "key": "geid_107_3815", "source": "SpanishWestAfrica", "target": "UnitedKingdom", "attributes": { "weight": 4356, "sourceWeight": "4356", "direction": "Imp", "source_type": "primary", "targetWeight": "4356" } }, { "key": "geid_107_3816", "source": "Italy", "target": "UnitedKingdom", "attributes": { "weight": 18227633, "sourceWeight": "18227633", "direction": "Imp", "source_type": "primary", "targetWeight": "18227633" } }, { "key": "geid_107_3817", "source": "TripolitaniaRegencyofTripoli", "target": "UnitedKingdom", "attributes": { "weight": 54440, "sourceWeight": "54440", "direction": "Imp", "source_type": "primary", "targetWeight": "54440" } }, { "key": "geid_107_3818", "source": "ItalianEastAfrica", "target": "UnitedKingdom", "attributes": { "weight": 19626, "sourceWeight": "19626", "direction": "Imp", "source_type": "primary", "targetWeight": "19626" } }, { "key": "geid_107_3819", "source": "Austria", "target": "UnitedKingdom", "attributes": { "weight": 2522174, "sourceWeight": "2522174", "direction": "Imp", "source_type": "primary", "targetWeight": "2522174" } }, { "key": "geid_107_3820", "source": "Hungary", "target": "UnitedKingdom", "attributes": { "weight": 544286, "sourceWeight": "544286", "direction": "Imp", "source_type": "primary", "targetWeight": "544286" } }, { "key": "geid_107_3821", "source": "Czechoslovakia", "target": "UnitedKingdom", "attributes": { "weight": 13472820, "sourceWeight": "13472820", "direction": "Imp", "source_type": "primary", "targetWeight": "13472820" } }, { "key": "geid_107_3822", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "UnitedKingdom", "attributes": { "weight": 489384, "sourceWeight": "489384", "direction": "Imp", "source_type": "primary", "targetWeight": "489384" } }, { "key": "geid_107_3823", "source": "Greece", "target": "UnitedKingdom", "attributes": { "weight": 3663723, "sourceWeight": "3663723", "direction": "Imp", "source_type": "primary", "targetWeight": "3663723" } }, { "key": "geid_107_3824", "source": "Crete", "target": "UnitedKingdom", "attributes": { "weight": 226953, "sourceWeight": "226953", "direction": "Imp", "source_type": "primary", "targetWeight": "226953" } }, { "key": "geid_107_3825", "source": "Albania", "target": "UnitedKingdom", "attributes": { "weight": 3126, "sourceWeight": "3126", "direction": "Imp", "source_type": "primary", "targetWeight": "3126" } }, { "key": "geid_107_3826", "source": "Bulgaria", "target": "UnitedKingdom", "attributes": { "weight": 54630, "sourceWeight": "54630", "direction": "Imp", "source_type": "primary", "targetWeight": "54630" } }, { "key": "geid_107_3827", "source": "Romania", "target": "UnitedKingdom", "attributes": { "weight": 2208610, "sourceWeight": "2208610", "direction": "Imp", "source_type": "primary", "targetWeight": "2208610" } }, { "key": "geid_107_3828", "source": "EuropeanTurkey", "target": "UnitedKingdom", "attributes": { "weight": 1209007, "sourceWeight": "1209007", "direction": "Imp", "source_type": "primary", "targetWeight": "1209007" } }, { "key": "geid_107_3829", "source": "AsianTurkey", "target": "UnitedKingdom", "attributes": { "weight": 1945895, "sourceWeight": "1945895", "direction": "Imp", "source_type": "primary", "targetWeight": "1945895" } }, { "key": "geid_107_3830", "source": "EgyptArabRepublicEgypt", "target": "UnitedKingdom", "attributes": { "weight": 38263654, "sourceWeight": "38263654", "direction": "Imp", "source_type": "primary", "targetWeight": "38263654" } }, { "key": "geid_107_3831", "source": "Morocco", "target": "UnitedKingdom", "attributes": { "weight": 1203002, "sourceWeight": "1203002", "direction": "Imp", "source_type": "primary", "targetWeight": "1203002" } }, { "key": "geid_107_3832", "source": "Liberia", "target": "UnitedKingdom", "attributes": { "weight": 61187, "sourceWeight": "61187", "direction": "Imp", "source_type": "primary", "targetWeight": "61187" } }, { "key": "geid_107_3833", "source": "EthiopiaAbyssinia", "target": "UnitedKingdom", "attributes": { "weight": 28094, "sourceWeight": "28094", "direction": "Imp", "source_type": "primary", "targetWeight": "28094" } }, { "key": "geid_107_3834", "source": "OmanSultanateofMuscatandOman_UnitedArabEmiratesTrucialOman", "target": "UnitedKingdom", "attributes": { "weight": 4902, "sourceWeight": "4902", "direction": "Imp", "source_type": "primary", "targetWeight": "4902" } }, { "key": "geid_107_3835", "source": "Arabiaother", "target": "UnitedKingdom", "attributes": { "weight": 3740, "sourceWeight": "3740", "direction": "Imp", "source_type": "primary", "targetWeight": "3740" } }, { "key": "geid_107_3836", "source": "IranPersia", "target": "UnitedKingdom", "attributes": { "weight": 8093270, "sourceWeight": "8093270", "direction": "Imp", "source_type": "primary", "targetWeight": "8093270" } }, { "key": "geid_107_3837", "source": "Afghanistan", "target": "UnitedKingdom", "attributes": { "weight": 3989, "sourceWeight": "3989", "direction": "Imp", "source_type": "primary", "targetWeight": "3989" } }, { "key": "geid_107_3838", "source": "ThailandSiam", "target": "UnitedKingdom", "attributes": { "weight": 189648, "sourceWeight": "189648", "direction": "Imp", "source_type": "primary", "targetWeight": "189648" } }, { "key": "geid_107_3839", "source": "PeoplesRepublicofChinaChina", "target": "UnitedKingdom", "attributes": { "weight": 13915282, "sourceWeight": "13915282", "direction": "Imp", "source_type": "primary", "targetWeight": "13915282" } }, { "key": "geid_107_3840", "source": "Japan_JapaneseChinaLeasedTerritory_RepublicofChinaTaiwanFormosa", "target": "UnitedKingdom", "attributes": { "weight": 7470068, "sourceWeight": "7470068", "direction": "Imp", "source_type": "primary", "targetWeight": "7470068" } }, { "key": "geid_107_3841", "source": "KoreaChosen", "target": "UnitedKingdom", "attributes": { "weight": 2354, "sourceWeight": "2354", "direction": "Imp", "source_type": "primary", "targetWeight": "2354" } }, { "key": "geid_107_3842", "source": "UnitedStatesofAmerica", "target": "UnitedKingdom", "attributes": { "weight": 241189641, "sourceWeight": "241189641", "direction": "Imp", "source_type": "primary", "targetWeight": "241189641" } }, { "key": "geid_107_3843", "source": "Guam_Philippines", "target": "UnitedKingdom", "attributes": { "weight": 2849849, "sourceWeight": "2849849", "direction": "Imp", "source_type": "primary", "targetWeight": "2849849" } }, { "key": "geid_107_3844", "source": "PuertoRico", "target": "UnitedKingdom", "attributes": { "weight": 22905, "sourceWeight": "22905", "direction": "Imp", "source_type": "primary", "targetWeight": "22905" } }, { "key": "geid_107_3845", "source": "HawaiiSandwichIs", "target": "UnitedKingdom", "attributes": { "weight": 6892, "sourceWeight": "6892", "direction": "Imp", "source_type": "primary", "targetWeight": "6892" } }, { "key": "geid_107_3846", "source": "VirginIslandsDanishWestIndies", "target": "UnitedKingdom", "attributes": { "weight": 700, "sourceWeight": "700", "direction": "Imp", "source_type": "primary", "targetWeight": "700" } }, { "key": "geid_107_3847", "source": "Cuba", "target": "UnitedKingdom", "attributes": { "weight": 12510531, "sourceWeight": "12510531", "direction": "Imp", "source_type": "primary", "targetWeight": "12510531" } }, { "key": "geid_107_3848", "source": "Haiti", "target": "UnitedKingdom", "attributes": { "weight": 199401, "sourceWeight": "199401", "direction": "Imp", "source_type": "primary", "targetWeight": "199401" } }, { "key": "geid_107_3849", "source": "DominicanRepublicSantoDomingo", "target": "UnitedKingdom", "attributes": { "weight": 2767235, "sourceWeight": "2767235", "direction": "Imp", "source_type": "primary", "targetWeight": "2767235" } }, { "key": "geid_107_3850", "source": "Mexico", "target": "UnitedKingdom", "attributes": { "weight": 5836695, "sourceWeight": "5836695", "direction": "Imp", "source_type": "primary", "targetWeight": "5836695" } }, { "key": "geid_107_3851", "source": "Guatemala", "target": "UnitedKingdom", "attributes": { "weight": 109245, "sourceWeight": "109245", "direction": "Imp", "source_type": "primary", "targetWeight": "109245" } }, { "key": "geid_107_3852", "source": "Honduras", "target": "UnitedKingdom", "attributes": { "weight": 726228, "sourceWeight": "726228", "direction": "Imp", "source_type": "primary", "targetWeight": "726228" } }, { "key": "geid_107_3853", "source": "ElSalvador", "target": "UnitedKingdom", "attributes": { "weight": 36267, "sourceWeight": "36267", "direction": "Imp", "source_type": "primary", "targetWeight": "36267" } }, { "key": "geid_107_3854", "source": "Nicaragua", "target": "UnitedKingdom", "attributes": { "weight": 99905, "sourceWeight": "99905", "direction": "Imp", "source_type": "primary", "targetWeight": "99905" } }, { "key": "geid_107_3855", "source": "CostaRica", "target": "UnitedKingdom", "attributes": { "weight": 2340592, "sourceWeight": "2340592", "direction": "Imp", "source_type": "primary", "targetWeight": "2340592" } }, { "key": "geid_107_3856", "source": "ColombiaNewGranadaGranColombia", "target": "UnitedKingdom", "attributes": { "weight": 1539855, "sourceWeight": "1539855", "direction": "Imp", "source_type": "primary", "targetWeight": "1539855" } }, { "key": "geid_107_3857", "source": "Panama", "target": "UnitedKingdom", "attributes": { "weight": 71545, "sourceWeight": "71545", "direction": "Imp", "source_type": "primary", "targetWeight": "71545" } }, { "key": "geid_107_3858", "source": "Venezuela", "target": "UnitedKingdom", "attributes": { "weight": 480437, "sourceWeight": "480437", "direction": "Imp", "source_type": "primary", "targetWeight": "480437" } }, { "key": "geid_107_3859", "source": "Ecuador", "target": "UnitedKingdom", "attributes": { "weight": 446750, "sourceWeight": "446750", "direction": "Imp", "source_type": "primary", "targetWeight": "446750" } }, { "key": "geid_107_3860", "source": "Peru", "target": "UnitedKingdom", "attributes": { "weight": 9763559, "sourceWeight": "9763559", "direction": "Imp", "source_type": "primary", "targetWeight": "9763559" } }, { "key": "geid_107_3861", "source": "Chile", "target": "UnitedKingdom", "attributes": { "weight": 10689028, "sourceWeight": "10689028", "direction": "Imp", "source_type": "primary", "targetWeight": "10689028" } }, { "key": "geid_107_3862", "source": "Brazil", "target": "UnitedKingdom", "attributes": { "weight": 4783216, "sourceWeight": "4783216", "direction": "Imp", "source_type": "primary", "targetWeight": "4783216" } }, { "key": "geid_107_3863", "source": "Uruguay", "target": "UnitedKingdom", "attributes": { "weight": 5449475, "sourceWeight": "5449475", "direction": "Imp", "source_type": "primary", "targetWeight": "5449475" } }, { "key": "geid_107_3864", "source": "Bolivia", "target": "UnitedKingdom", "attributes": { "weight": 5177436, "sourceWeight": "5177436", "direction": "Imp", "source_type": "primary", "targetWeight": "5177436" } }, { "key": "geid_107_3865", "source": "ArgentinaLaPlata", "target": "UnitedKingdom", "attributes": { "weight": 78955013, "sourceWeight": "78955013", "direction": "Imp", "source_type": "primary", "targetWeight": "78955013" } }, { "key": "geid_107_3866", "source": "Paraguay", "target": "UnitedKingdom", "attributes": { "weight": 64765, "sourceWeight": "64765", "direction": "Imp", "source_type": "primary", "targetWeight": "64765" } }, { "key": "geid_107_3867", "source": "***NA", "target": "UnitedKingdom", "attributes": { "weight": 25463, "sourceWeight": "25463", "direction": "Imp", "source_type": "primary", "targetWeight": "25463" } }, { "key": "geid_107_3868", "source": "***NA", "target": "UnitedKingdom", "attributes": { "weight": 963629, "sourceWeight": "963629", "direction": "Imp", "source_type": "primary", "targetWeight": "963629" } }, { "key": "geid_107_3869", "source": "Ireland", "target": "UnitedKingdom", "attributes": { "weight": 51095818, "sourceWeight": "51095818", "direction": "Imp", "source_type": "primary", "targetWeight": "51095818" } }, { "key": "geid_107_3870", "source": "ChannelIs", "target": "UnitedKingdom", "attributes": { "weight": 3317769, "sourceWeight": "3317769", "direction": "Imp", "source_type": "primary", "targetWeight": "3317769" } }, { "key": "geid_107_3871", "source": "Gibraltar", "target": "UnitedKingdom", "attributes": { "weight": 33956, "sourceWeight": "33956", "direction": "Imp", "source_type": "primary", "targetWeight": "33956" } }, { "key": "geid_107_3872", "source": "Gozo_Malta", "target": "UnitedKingdom", "attributes": { "weight": 95925, "sourceWeight": "95925", "direction": "Imp", "source_type": "primary", "targetWeight": "95925" } }, { "key": "geid_107_3873", "source": "Cyprus", "target": "UnitedKingdom", "attributes": { "weight": 372657, "sourceWeight": "372657", "direction": "Imp", "source_type": "primary", "targetWeight": "372657" } }, { "key": "geid_107_3874", "source": "Palestine", "target": "UnitedKingdom", "attributes": { "weight": 1070305, "sourceWeight": "1070305", "direction": "Imp", "source_type": "primary", "targetWeight": "1070305" } }, { "key": "geid_107_3875", "source": "Gambia", "target": "UnitedKingdom", "attributes": { "weight": 530939, "sourceWeight": "530939", "direction": "Imp", "source_type": "primary", "targetWeight": "530939" } }, { "key": "geid_107_3876", "source": "SierraLeone", "target": "UnitedKingdom", "attributes": { "weight": 1372016, "sourceWeight": "1372016", "direction": "Imp", "source_type": "primary", "targetWeight": "1372016" } }, { "key": "geid_107_3877", "source": "GoldCoastTogolandNeutralZone", "target": "UnitedKingdom", "attributes": { "weight": 1941059, "sourceWeight": "1941059", "direction": "Imp", "source_type": "primary", "targetWeight": "1941059" } }, { "key": "geid_107_3878", "source": "BritishCameroons_Nigeria", "target": "UnitedKingdom", "attributes": { "weight": 9420288, "sourceWeight": "9420288", "direction": "Imp", "source_type": "primary", "targetWeight": "9420288" } }, { "key": "geid_107_3879", "source": "AscensionI", "target": "UnitedKingdom", "attributes": { "weight": 10237, "sourceWeight": "10237", "direction": "Imp", "source_type": "primary", "targetWeight": "10237" } }, { "key": "geid_107_3880", "source": "StHelena", "target": "UnitedKingdom", "attributes": { "weight": 34074, "sourceWeight": "34074", "direction": "Imp", "source_type": "primary", "targetWeight": "34074" } }, { "key": "geid_107_3881", "source": "SouthAfrica", "target": "UnitedKingdom", "attributes": { "weight": 18080009, "sourceWeight": "18080009", "direction": "Imp", "source_type": "primary", "targetWeight": "18080009" } }, { "key": "geid_107_3882", "source": "ZambiaNorthernRhodesia_ZimbabweRhodesiaSouthernRhodesia", "target": "UnitedKingdom", "attributes": { "weight": 612753, "sourceWeight": "612753", "direction": "Imp", "source_type": "primary", "targetWeight": "612753" } }, { "key": "geid_107_3883", "source": "BotswanaBechuanaland", "target": "UnitedKingdom", "attributes": { "weight": 1093, "sourceWeight": "1093", "direction": "Imp", "source_type": "primary", "targetWeight": "1093" } }, { "key": "geid_107_3884", "source": "LesothoBasutoland", "target": "UnitedKingdom", "attributes": { "weight": 478, "sourceWeight": "478", "direction": "Imp", "source_type": "primary", "targetWeight": "478" } }, { "key": "geid_107_3885", "source": "TanzaniaTanganyika", "target": "UnitedKingdom", "attributes": { "weight": 783016, "sourceWeight": "783016", "direction": "Imp", "source_type": "primary", "targetWeight": "783016" } }, { "key": "geid_107_3886", "source": "PembaIsland_Zanzibar", "target": "UnitedKingdom", "attributes": { "weight": 357252, "sourceWeight": "357252", "direction": "Imp", "source_type": "primary", "targetWeight": "357252" } }, { "key": "geid_107_3887", "source": "KenyaBritishEastAfricaProtectorate", "target": "UnitedKingdom", "attributes": { "weight": 3047478, "sourceWeight": "3047478", "direction": "Imp", "source_type": "primary", "targetWeight": "3047478" } }, { "key": "geid_107_3888", "source": "Uganda", "target": "UnitedKingdom", "attributes": { "weight": 337733, "sourceWeight": "337733", "direction": "Imp", "source_type": "primary", "targetWeight": "337733" } }, { "key": "geid_107_3889", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "UnitedKingdom", "attributes": { "weight": 814423, "sourceWeight": "814423", "direction": "Imp", "source_type": "primary", "targetWeight": "814423" } }, { "key": "geid_107_3890", "source": "SomalilandRepublicBritishSomaliland", "target": "UnitedKingdom", "attributes": { "weight": 15963, "sourceWeight": "15963", "direction": "Imp", "source_type": "primary", "targetWeight": "15963" } }, { "key": "geid_107_3891", "source": "SudanAngloEgyptianSudanMahdistState", "target": "UnitedKingdom", "attributes": { "weight": 2697356, "sourceWeight": "2697356", "direction": "Imp", "source_type": "primary", "targetWeight": "2697356" } }, { "key": "geid_107_3892", "source": "Mauritius_MauritiusDependencies", "target": "UnitedKingdom", "attributes": { "weight": 3529991, "sourceWeight": "3529991", "direction": "Imp", "source_type": "primary", "targetWeight": "3529991" } }, { "key": "geid_107_3893", "source": "Seychelles", "target": "UnitedKingdom", "attributes": { "weight": 63644, "sourceWeight": "63644", "direction": "Imp", "source_type": "primary", "targetWeight": "63644" } }, { "key": "geid_107_3894", "source": "Aden_AdenDependencies", "target": "UnitedKingdom", "attributes": { "weight": 272453, "sourceWeight": "272453", "direction": "Imp", "source_type": "primary", "targetWeight": "272453" } }, { "key": "geid_107_3895", "source": "IraqMesopotamia", "target": "UnitedKingdom", "attributes": { "weight": 1911105, "sourceWeight": "1911105", "direction": "Imp", "source_type": "primary", "targetWeight": "1911105" } }, { "key": "geid_107_3896", "source": "India_MyanmarBurma", "target": "UnitedKingdom", "attributes": { "weight": 78872953, "sourceWeight": "78872953", "direction": "Imp", "source_type": "primary", "targetWeight": "78872953" } }, { "key": "geid_107_3897", "source": "StraitsSettlements_StraitsSettlementsDependencies", "target": "UnitedKingdom", "attributes": { "weight": 10563360, "sourceWeight": "10563360", "direction": "Imp", "source_type": "primary", "targetWeight": "10563360" } }, { "key": "geid_107_3898", "source": "FederatedMalayStates", "target": "UnitedKingdom", "attributes": { "weight": 1653020, "sourceWeight": "1653020", "direction": "Imp", "source_type": "primary", "targetWeight": "1653020" } }, { "key": "geid_107_3899", "source": "Johore_Kedah_Kelantan_Perlis_Trengganu", "target": "UnitedKingdom", "attributes": { "weight": 10420, "sourceWeight": "10420", "direction": "Imp", "source_type": "primary", "targetWeight": "10420" } }, { "key": "geid_107_3900", "source": "SriLankaCeylon_SriLankaCeylonDependencies", "target": "UnitedKingdom", "attributes": { "weight": 13596374, "sourceWeight": "13596374", "direction": "Imp", "source_type": "primary", "targetWeight": "13596374" } }, { "key": "geid_107_3901", "source": "SabahNorthBorneo", "target": "UnitedKingdom", "attributes": { "weight": 239497, "sourceWeight": "239497", "direction": "Imp", "source_type": "primary", "targetWeight": "239497" } }, { "key": "geid_107_3902", "source": "Sarawak", "target": "UnitedKingdom", "attributes": { "weight": 13038, "sourceWeight": "13038", "direction": "Imp", "source_type": "primary", "targetWeight": "13038" } }, { "key": "geid_107_3903", "source": "Weihaiwei", "target": "UnitedKingdom", "attributes": { "weight": 935, "sourceWeight": "935", "direction": "Imp", "source_type": "primary", "targetWeight": "935" } }, { "key": "geid_107_3904", "source": "HongKong", "target": "UnitedKingdom", "attributes": { "weight": 765341, "sourceWeight": "765341", "direction": "Imp", "source_type": "primary", "targetWeight": "765341" } }, { "key": "geid_107_3905", "source": "Australia", "target": "UnitedKingdom", "attributes": { "weight": 59022426, "sourceWeight": "59022426", "direction": "Imp", "source_type": "primary", "targetWeight": "59022426" } }, { "key": "geid_107_3906", "source": "PapuaBritishNewGuinea", "target": "UnitedKingdom", "attributes": { "weight": 154600, "sourceWeight": "154600", "direction": "Imp", "source_type": "primary", "targetWeight": "154600" } }, { "key": "geid_107_3907", "source": "NewZealand", "target": "UnitedKingdom", "attributes": { "weight": 46964167, "sourceWeight": "46964167", "direction": "Imp", "source_type": "primary", "targetWeight": "46964167" } }, { "key": "geid_107_3908", "source": "Nauru_SamoaWesternSamoaGermanSamoa", "target": "UnitedKingdom", "attributes": { "weight": 141485, "sourceWeight": "141485", "direction": "Imp", "source_type": "primary", "targetWeight": "141485" } }, { "key": "geid_107_3909", "source": "Fiji", "target": "UnitedKingdom", "attributes": { "weight": 43229, "sourceWeight": "43229", "direction": "Imp", "source_type": "primary", "targetWeight": "43229" } }, { "key": "geid_107_3910", "source": "BritishOceaniaother", "target": "UnitedKingdom", "attributes": { "weight": 5956, "sourceWeight": "5956", "direction": "Imp", "source_type": "primary", "targetWeight": "5956" } }, { "key": "geid_107_3911", "source": "CanadaProvinceofCanada", "target": "UnitedKingdom", "attributes": { "weight": 65899590, "sourceWeight": "65899590", "direction": "Imp", "source_type": "primary", "targetWeight": "65899590" } }, { "key": "geid_107_3912", "source": "NewfoundlandandLabradorNewfoundland", "target": "UnitedKingdom", "attributes": { "weight": 1862993, "sourceWeight": "1862993", "direction": "Imp", "source_type": "primary", "targetWeight": "1862993" } }, { "key": "geid_107_3913", "source": "Bermuda", "target": "UnitedKingdom", "attributes": { "weight": 1920, "sourceWeight": "1920", "direction": "Imp", "source_type": "primary", "targetWeight": "1920" } }, { "key": "geid_107_3914", "source": "Bahamas", "target": "UnitedKingdom", "attributes": { "weight": 31791, "sourceWeight": "31791", "direction": "Imp", "source_type": "primary", "targetWeight": "31791" } }, { "key": "geid_107_3915", "source": "BritishWestIndiesother_Jamaica_JamaicaDependencies_TrinidadandTobago", "target": "UnitedKingdom", "attributes": { "weight": 4791007, "sourceWeight": "4791007", "direction": "Imp", "source_type": "primary", "targetWeight": "4791007" } }, { "key": "geid_107_3916", "source": "BelizeBritishHonduras", "target": "UnitedKingdom", "attributes": { "weight": 164726, "sourceWeight": "164726", "direction": "Imp", "source_type": "primary", "targetWeight": "164726" } }, { "key": "geid_107_3917", "source": "GuyanaBritishGuiana", "target": "UnitedKingdom", "attributes": { "weight": 855644, "sourceWeight": "855644", "direction": "Imp", "source_type": "primary", "targetWeight": "855644" } }, { "key": "geid_107_3918", "source": "FalklandIs", "target": "UnitedKingdom", "attributes": { "weight": 398735, "sourceWeight": "398735", "direction": "Imp", "source_type": "primary", "targetWeight": "398735" } }, { "key": "geid_107_3919", "source": "UnitedKingdom", "target": "RussiaUSSR", "attributes": { "weight": 3860385, "sourceWeight": "3860385", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3920", "source": "UnitedKingdom", "target": "Finland", "attributes": { "weight": 4558482, "sourceWeight": "4558482", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3921", "source": "UnitedKingdom", "target": "Estonia", "attributes": { "weight": 628372, "sourceWeight": "628372", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3922", "source": "UnitedKingdom", "target": "Latvia", "attributes": { "weight": 2206955, "sourceWeight": "2206955", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3923", "source": "UnitedKingdom", "target": "Lithuania", "attributes": { "weight": 315057, "sourceWeight": "315057", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3924", "source": "UnitedKingdom", "target": "Sweden", "attributes": { "weight": 13868858, "sourceWeight": "13868858", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3925", "source": "UnitedKingdom", "target": "Norway", "attributes": { "weight": 8721045, "sourceWeight": "8721045", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3926", "source": "UnitedKingdom", "target": "Iceland", "attributes": { "weight": 454332, "sourceWeight": "454332", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3927", "source": "UnitedKingdom", "target": "Denmark_FaeroeIs", "attributes": { "weight": 13799397, "sourceWeight": "13799397", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3928", "source": "UnitedKingdom", "target": "Greenland", "attributes": { "weight": 1220, "sourceWeight": "1220", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3929", "source": "UnitedKingdom", "target": "DanzigFreeCityofDanzig_Poland", "attributes": { "weight": 3500429, "sourceWeight": "3500429", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3930", "source": "UnitedKingdom", "target": "GermanyZollverein", "attributes": { "weight": 42586928, "sourceWeight": "42586928", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3931", "source": "UnitedKingdom", "target": "Netherlands", "attributes": { "weight": 25220248, "sourceWeight": "25220248", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3932", "source": "UnitedKingdom", "target": "Java", "attributes": { "weight": 6884684, "sourceWeight": "6884684", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3933", "source": "UnitedKingdom", "target": "DutchBorneo", "attributes": { "weight": 242124, "sourceWeight": "242124", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3934", "source": "UnitedKingdom", "target": "WestIrianDutchNewGuinea", "attributes": { "weight": 7706, "sourceWeight": "7706", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3935", "source": "UnitedKingdom", "target": "DutchOceaniaother", "attributes": { "weight": 1937124, "sourceWeight": "1937124", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3936", "source": "UnitedKingdom", "target": "NetherlandsAntilles", "attributes": { "weight": 295018, "sourceWeight": "295018", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3937", "source": "UnitedKingdom", "target": "SurinamDutchGuiana", "attributes": { "weight": 71765, "sourceWeight": "71765", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3938", "source": "UnitedKingdom", "target": "Belgium", "attributes": { "weight": 22667817, "sourceWeight": "22667817", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3939", "source": "UnitedKingdom", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState_RuandaUrundi", "attributes": { "weight": 463329, "sourceWeight": "463329", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3940", "source": "UnitedKingdom", "target": "Luxemburg", "attributes": { "weight": 16575, "sourceWeight": "16575", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3941", "source": "UnitedKingdom", "target": "France", "attributes": { "weight": 41714860, "sourceWeight": "41714860", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3942", "source": "UnitedKingdom", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 2073107, "sourceWeight": "2073107", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3943", "source": "UnitedKingdom", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 381749, "sourceWeight": "381749", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3944", "source": "UnitedKingdom", "target": "FrenchEquatorialAfrica_FrenchWestAfrica", "attributes": { "weight": 2614496, "sourceWeight": "2614496", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3945", "source": "UnitedKingdom", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 78086, "sourceWeight": "78086", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3946", "source": "UnitedKingdom", "target": "MadagascarMalagasyRepublic", "attributes": { "weight": 92323, "sourceWeight": "92323", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3947", "source": "UnitedKingdom", "target": "ReunionBourbonI", "attributes": { "weight": 35648, "sourceWeight": "35648", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3948", "source": "UnitedKingdom", "target": "Syria", "attributes": { "weight": 1909968, "sourceWeight": "1909968", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3949", "source": "UnitedKingdom", "target": "FrenchIndia", "attributes": { "weight": 8733, "sourceWeight": "8733", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3950", "source": "UnitedKingdom", "target": "FrenchIndochina", "attributes": { "weight": 326359, "sourceWeight": "326359", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3951", "source": "UnitedKingdom", "target": "FrenchPolynesia", "attributes": { "weight": 46996, "sourceWeight": "46996", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3952", "source": "UnitedKingdom", "target": "StPierreandMiquelon", "attributes": { "weight": 660447, "sourceWeight": "660447", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3953", "source": "UnitedKingdom", "target": "FrenchWestIndies", "attributes": { "weight": 33223, "sourceWeight": "33223", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3954", "source": "UnitedKingdom", "target": "FrenchGuiana", "attributes": { "weight": 2544, "sourceWeight": "2544", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3955", "source": "UnitedKingdom", "target": "Switzerland", "attributes": { "weight": 11306816, "sourceWeight": "11306816", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3956", "source": "UnitedKingdom", "target": "Portugal", "attributes": { "weight": 4518788, "sourceWeight": "4518788", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3957", "source": "UnitedKingdom", "target": "AzoresWesternIsles", "attributes": { "weight": 76836, "sourceWeight": "76836", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3958", "source": "UnitedKingdom", "target": "MadeiraIsles", "attributes": { "weight": 579670, "sourceWeight": "579670", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3959", "source": "UnitedKingdom", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 1145222, "sourceWeight": "1145222", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3960", "source": "UnitedKingdom", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 2080808, "sourceWeight": "2080808", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3961", "source": "UnitedKingdom", "target": "PortugueseIndiainclGoaDiuDaman", "attributes": { "weight": 164317, "sourceWeight": "164317", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3962", "source": "UnitedKingdom", "target": "PortugueseIndiainclGoaDiuDaman", "attributes": { "weight": 2900, "sourceWeight": "2900", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3963", "source": "UnitedKingdom", "target": "Macao", "attributes": { "weight": 7114, "sourceWeight": "7114", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3964", "source": "UnitedKingdom", "target": "Spain", "attributes": { "weight": 10478899, "sourceWeight": "10478899", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3965", "source": "UnitedKingdom", "target": "CanaryIs", "attributes": { "weight": 2040727, "sourceWeight": "2040727", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3966", "source": "UnitedKingdom", "target": "SpanishNorthAfrica", "attributes": { "weight": 520403, "sourceWeight": "520403", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3967", "source": "UnitedKingdom", "target": "SpanishWestAfrica", "attributes": { "weight": 53699, "sourceWeight": "53699", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3968", "source": "UnitedKingdom", "target": "Italy", "attributes": { "weight": 17670065, "sourceWeight": "17670065", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3969", "source": "UnitedKingdom", "target": "TripolitaniaRegencyofTripoli", "attributes": { "weight": 86865, "sourceWeight": "86865", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3970", "source": "UnitedKingdom", "target": "ItalianEastAfrica", "attributes": { "weight": 37739, "sourceWeight": "37739", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3971", "source": "UnitedKingdom", "target": "Liechtenstein", "attributes": { "weight": 293, "sourceWeight": "293", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3972", "source": "UnitedKingdom", "target": "Austria", "attributes": { "weight": 2375016, "sourceWeight": "2375016", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3973", "source": "UnitedKingdom", "target": "Hungary", "attributes": { "weight": 376945, "sourceWeight": "376945", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3974", "source": "UnitedKingdom", "target": "Czechoslovakia", "attributes": { "weight": 1376223, "sourceWeight": "1376223", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3975", "source": "UnitedKingdom", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 1129472, "sourceWeight": "1129472", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3976", "source": "UnitedKingdom", "target": "Greece", "attributes": { "weight": 5867251, "sourceWeight": "5867251", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3977", "source": "UnitedKingdom", "target": "Crete", "attributes": { "weight": 23805, "sourceWeight": "23805", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3978", "source": "UnitedKingdom", "target": "Albania", "attributes": { "weight": 26749, "sourceWeight": "26749", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3979", "source": "UnitedKingdom", "target": "Bulgaria", "attributes": { "weight": 1101831, "sourceWeight": "1101831", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3980", "source": "UnitedKingdom", "target": "Romania", "attributes": { "weight": 2857170, "sourceWeight": "2857170", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3981", "source": "UnitedKingdom", "target": "EuropeanTurkey", "attributes": { "weight": 3321684, "sourceWeight": "3321684", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3982", "source": "UnitedKingdom", "target": "AsianTurkey", "attributes": { "weight": 894395, "sourceWeight": "894395", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3983", "source": "UnitedKingdom", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 15117525, "sourceWeight": "15117525", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3984", "source": "UnitedKingdom", "target": "Morocco", "attributes": { "weight": 2396083, "sourceWeight": "2396083", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3985", "source": "UnitedKingdom", "target": "Liberia", "attributes": { "weight": 143242, "sourceWeight": "143242", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3986", "source": "UnitedKingdom", "target": "EthiopiaAbyssinia", "attributes": { "weight": 12338, "sourceWeight": "12338", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3987", "source": "UnitedKingdom", "target": "OmanSultanateofMuscatandOman_UnitedArabEmiratesTrucialOman", "attributes": { "weight": 14052, "sourceWeight": "14052", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3988", "source": "UnitedKingdom", "target": "Arabiaother", "attributes": { "weight": 44396, "sourceWeight": "44396", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3989", "source": "UnitedKingdom", "target": "IranPersia", "attributes": { "weight": 1880246, "sourceWeight": "1880246", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3990", "source": "UnitedKingdom", "target": "Afghanistan", "attributes": { "weight": 5051, "sourceWeight": "5051", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3991", "source": "UnitedKingdom", "target": "IndianOceanIslands", "attributes": { "weight": 8941, "sourceWeight": "8941", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3992", "source": "UnitedKingdom", "target": "ThailandSiam", "attributes": { "weight": 1845767, "sourceWeight": "1845767", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3993", "source": "UnitedKingdom", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 20346613, "sourceWeight": "20346613", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3994", "source": "UnitedKingdom", "target": "Japan_JapaneseChinaLeasedTerritory_RepublicofChinaTaiwanFormosa", "attributes": { "weight": 26704904, "sourceWeight": "26704904", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3995", "source": "UnitedKingdom", "target": "KoreaChosen", "attributes": { "weight": 125963, "sourceWeight": "125963", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3996", "source": "UnitedKingdom", "target": "PacificIslandsother", "attributes": { "weight": 3258, "sourceWeight": "3258", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3997", "source": "UnitedKingdom", "target": "UnitedStatesofAmerica", "attributes": { "weight": 53980810, "sourceWeight": "53980810", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3998", "source": "UnitedKingdom", "target": "Guam_Philippines", "attributes": { "weight": 1209798, "sourceWeight": "1209798", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_3999", "source": "UnitedKingdom", "target": "PuertoRico", "attributes": { "weight": 110576, "sourceWeight": "110576", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4000", "source": "UnitedKingdom", "target": "HawaiiSandwichIs", "attributes": { "weight": 41391, "sourceWeight": "41391", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4001", "source": "UnitedKingdom", "target": "VirginIslandsDanishWestIndies", "attributes": { "weight": 7683, "sourceWeight": "7683", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4002", "source": "UnitedKingdom", "target": "Cuba", "attributes": { "weight": 3193924, "sourceWeight": "3193924", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4003", "source": "UnitedKingdom", "target": "Haiti", "attributes": { "weight": 253502, "sourceWeight": "253502", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4004", "source": "UnitedKingdom", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 234514, "sourceWeight": "234514", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4005", "source": "UnitedKingdom", "target": "Mexico", "attributes": { "weight": 2424883, "sourceWeight": "2424883", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4006", "source": "UnitedKingdom", "target": "Guatemala", "attributes": { "weight": 587286, "sourceWeight": "587286", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4007", "source": "UnitedKingdom", "target": "Honduras", "attributes": { "weight": 633192, "sourceWeight": "633192", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4008", "source": "UnitedKingdom", "target": "ElSalvador", "attributes": { "weight": 503696, "sourceWeight": "503696", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4009", "source": "UnitedKingdom", "target": "Nicaragua", "attributes": { "weight": 348581, "sourceWeight": "348581", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4010", "source": "UnitedKingdom", "target": "CostaRica", "attributes": { "weight": 434769, "sourceWeight": "434769", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4011", "source": "UnitedKingdom", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 2701964, "sourceWeight": "2701964", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4012", "source": "UnitedKingdom", "target": "Panama", "attributes": { "weight": 416143, "sourceWeight": "416143", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4013", "source": "UnitedKingdom", "target": "Venezuela", "attributes": { "weight": 1782394, "sourceWeight": "1782394", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4014", "source": "UnitedKingdom", "target": "Ecuador", "attributes": { "weight": 799946, "sourceWeight": "799946", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4015", "source": "UnitedKingdom", "target": "Peru", "attributes": { "weight": 2734281, "sourceWeight": "2734281", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4016", "source": "UnitedKingdom", "target": "Chile", "attributes": { "weight": 5355148, "sourceWeight": "5355148", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4017", "source": "UnitedKingdom", "target": "Brazil", "attributes": { "weight": 13611888, "sourceWeight": "13611888", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4018", "source": "UnitedKingdom", "target": "Uruguay", "attributes": { "weight": 3208160, "sourceWeight": "3208160", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4019", "source": "UnitedKingdom", "target": "Bolivia", "attributes": { "weight": 503330, "sourceWeight": "503330", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4020", "source": "UnitedKingdom", "target": "ArgentinaLaPlata", "attributes": { "weight": 27204123, "sourceWeight": "27204123", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4021", "source": "UnitedKingdom", "target": "Paraguay", "attributes": { "weight": 153043, "sourceWeight": "153043", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4022", "source": "UnitedKingdom", "target": "***NA", "attributes": { "weight": 9700, "sourceWeight": "9700", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4023", "source": "UnitedKingdom", "target": "***NA", "attributes": { "weight": 1601, "sourceWeight": "1601", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4024", "source": "UnitedKingdom", "target": "Ireland", "attributes": { "weight": 47296605, "sourceWeight": "47296605", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4025", "source": "UnitedKingdom", "target": "ChannelIs", "attributes": { "weight": 3017734, "sourceWeight": "3017734", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4026", "source": "UnitedKingdom", "target": "Gibraltar", "attributes": { "weight": 1327796, "sourceWeight": "1327796", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4027", "source": "UnitedKingdom", "target": "Gozo_Malta", "attributes": { "weight": 1336224, "sourceWeight": "1336224", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4028", "source": "UnitedKingdom", "target": "Cyprus", "attributes": { "weight": 287510, "sourceWeight": "287510", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4029", "source": "UnitedKingdom", "target": "Palestine", "attributes": { "weight": 580253, "sourceWeight": "580253", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4030", "source": "UnitedKingdom", "target": "Gambia", "attributes": { "weight": 222906, "sourceWeight": "222906", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4031", "source": "UnitedKingdom", "target": "SierraLeone", "attributes": { "weight": 752246, "sourceWeight": "752246", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4032", "source": "UnitedKingdom", "target": "GoldCoastTogolandNeutralZone", "attributes": { "weight": 3398832, "sourceWeight": "3398832", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4033", "source": "UnitedKingdom", "target": "BritishCameroons_Nigeria", "attributes": { "weight": 6112704, "sourceWeight": "6112704", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4034", "source": "UnitedKingdom", "target": "AscensionI", "attributes": { "weight": 26368, "sourceWeight": "26368", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4035", "source": "UnitedKingdom", "target": "StHelena", "attributes": { "weight": 33522, "sourceWeight": "33522", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4036", "source": "UnitedKingdom", "target": "SouthAfrica", "attributes": { "weight": 30405349, "sourceWeight": "30405349", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4037", "source": "UnitedKingdom", "target": "ZambiaNorthernRhodesia_ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 1063897, "sourceWeight": "1063897", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4038", "source": "UnitedKingdom", "target": "BotswanaBechuanaland", "attributes": { "weight": 3536, "sourceWeight": "3536", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4039", "source": "UnitedKingdom", "target": "LesothoBasutoland", "attributes": { "weight": 37307, "sourceWeight": "37307", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4040", "source": "UnitedKingdom", "target": "EswatiniSwaziland", "attributes": { "weight": 1771, "sourceWeight": "1771", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4041", "source": "UnitedKingdom", "target": "TanzaniaTanganyika", "attributes": { "weight": 411394, "sourceWeight": "411394", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4042", "source": "UnitedKingdom", "target": "PembaIsland_Zanzibar", "attributes": { "weight": 279241, "sourceWeight": "279241", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4043", "source": "UnitedKingdom", "target": "KenyaBritishEastAfricaProtectorate", "attributes": { "weight": 2632759, "sourceWeight": "2632759", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4044", "source": "UnitedKingdom", "target": "Uganda", "attributes": { "weight": 176753, "sourceWeight": "176753", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4045", "source": "UnitedKingdom", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 163358, "sourceWeight": "163358", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4046", "source": "UnitedKingdom", "target": "SomalilandRepublicBritishSomaliland", "attributes": { "weight": 6545, "sourceWeight": "6545", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4047", "source": "UnitedKingdom", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 1284937, "sourceWeight": "1284937", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4048", "source": "UnitedKingdom", "target": "Mauritius_MauritiusDependencies", "attributes": { "weight": 1233117, "sourceWeight": "1233117", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4049", "source": "UnitedKingdom", "target": "Seychelles", "attributes": { "weight": 31763, "sourceWeight": "31763", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4050", "source": "UnitedKingdom", "target": "Aden_AdenDependencies", "attributes": { "weight": 645324, "sourceWeight": "645324", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4051", "source": "UnitedKingdom", "target": "IraqMesopotamia", "attributes": { "weight": 3695464, "sourceWeight": "3695464", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4052", "source": "UnitedKingdom", "target": "India_MyanmarBurma", "attributes": { "weight": 90577148, "sourceWeight": "90577148", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4053", "source": "UnitedKingdom", "target": "StraitsSettlements_StraitsSettlementsDependencies", "attributes": { "weight": 8289458, "sourceWeight": "8289458", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4054", "source": "UnitedKingdom", "target": "FederatedMalayStates", "attributes": { "weight": 1128862, "sourceWeight": "1128862", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4055", "source": "UnitedKingdom", "target": "Johore_Kedah_Kelantan_Perlis_Trengganu", "attributes": { "weight": 44297, "sourceWeight": "44297", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4056", "source": "UnitedKingdom", "target": "SriLankaCeylon_SriLankaCeylonDependencies", "attributes": { "weight": 4309994, "sourceWeight": "4309994", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4057", "source": "UnitedKingdom", "target": "SabahNorthBorneo", "attributes": { "weight": 60463, "sourceWeight": "60463", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4058", "source": "UnitedKingdom", "target": "Brunei", "attributes": { "weight": 1338, "sourceWeight": "1338", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4059", "source": "UnitedKingdom", "target": "Sarawak", "attributes": { "weight": 76801, "sourceWeight": "76801", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4060", "source": "UnitedKingdom", "target": "Weihaiwei", "attributes": { "weight": 14129, "sourceWeight": "14129", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4061", "source": "UnitedKingdom", "target": "HongKong", "attributes": { "weight": 8554434, "sourceWeight": "8554434", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4062", "source": "UnitedKingdom", "target": "Australia", "attributes": { "weight": 60759614, "sourceWeight": "60759614", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4063", "source": "UnitedKingdom", "target": "PapuaBritishNewGuinea", "attributes": { "weight": 46926, "sourceWeight": "46926", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4064", "source": "UnitedKingdom", "target": "NewZealand", "attributes": { "weight": 20333219, "sourceWeight": "20333219", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4065", "source": "UnitedKingdom", "target": "Nauru_SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 16064, "sourceWeight": "16064", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4066", "source": "UnitedKingdom", "target": "Fiji", "attributes": { "weight": 320759, "sourceWeight": "320759", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4067", "source": "UnitedKingdom", "target": "BritishOceaniaother", "attributes": { "weight": 52620, "sourceWeight": "52620", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4068", "source": "UnitedKingdom", "target": "CanadaProvinceofCanada", "attributes": { "weight": 27993586, "sourceWeight": "27993586", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4069", "source": "UnitedKingdom", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 1957881, "sourceWeight": "1957881", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4070", "source": "UnitedKingdom", "target": "Bermuda", "attributes": { "weight": 493345, "sourceWeight": "493345", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4071", "source": "UnitedKingdom", "target": "Bahamas", "attributes": { "weight": 467921, "sourceWeight": "467921", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4072", "source": "UnitedKingdom", "target": "BritishWestIndiesother_Jamaica_JamaicaDependencies_TrinidadandTobago", "attributes": { "weight": 3778689, "sourceWeight": "3778689", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4073", "source": "UnitedKingdom", "target": "BelizeBritishHonduras", "attributes": { "weight": 181526, "sourceWeight": "181526", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4074", "source": "UnitedKingdom", "target": "GuyanaBritishGuiana", "attributes": { "weight": 1289077, "sourceWeight": "1289077", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4075", "source": "UnitedKingdom", "target": "FalklandIs", "attributes": { "weight": 250995, "sourceWeight": "250995", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4076", "source": "RepublicofChinaTaiwanFormosa", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 2089061.518326803, "sourceWeight": "2089061.518326803", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4077", "source": "RepublicofChinaTaiwanFormosa", "target": "KwangtungTerritoryLeased", "attributes": { "weight": 81210.32641405186, "sourceWeight": "81210.32641405186", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4078", "source": "RepublicofChinaTaiwanFormosa", "target": "HongKong", "attributes": { "weight": 543716.9615362895, "sourceWeight": "543716.9615362895", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4079", "source": "RepublicofChinaTaiwanFormosa", "target": "India", "attributes": { "weight": 30.363406897529334, "sourceWeight": "30.363406897529334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4080", "source": "RepublicofChinaTaiwanFormosa", "target": "BritishBorneo_StraitsSettlements", "attributes": { "weight": 29393.569506407937, "sourceWeight": "29393.569506407937", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4081", "source": "RepublicofChinaTaiwanFormosa", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 333792.7586170011, "sourceWeight": "333792.7586170011", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4082", "source": "RepublicofChinaTaiwanFormosa", "target": "FrenchIndochina", "attributes": { "weight": 5454.003389895029, "sourceWeight": "5454.003389895029", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4083", "source": "RepublicofChinaTaiwanFormosa", "target": "AsianRussia", "attributes": { "weight": 16242.536764283937, "sourceWeight": "16242.536764283937", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4084", "source": "RepublicofChinaTaiwanFormosa", "target": "Philippines", "attributes": { "weight": 56645.764456182354, "sourceWeight": "56645.764456182354", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4085", "source": "RepublicofChinaTaiwanFormosa", "target": "ThailandSiam", "attributes": { "weight": 131355.1157201427, "sourceWeight": "131355.1157201427", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4086", "source": "RepublicofChinaTaiwanFormosa", "target": "UnitedKingdom", "attributes": { "weight": 110136.1862986842, "sourceWeight": "110136.1862986842", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4087", "source": "RepublicofChinaTaiwanFormosa", "target": "France", "attributes": { "weight": 76300.88412612339, "sourceWeight": "76300.88412612339", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4088", "source": "RepublicofChinaTaiwanFormosa", "target": "GermanyZollverein", "attributes": { "weight": 21160.654311325987, "sourceWeight": "21160.654311325987", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4089", "source": "RepublicofChinaTaiwanFormosa", "target": "Belgium", "attributes": { "weight": 3.3946666096616647, "sourceWeight": "3.3946666096616647", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4090", "source": "RepublicofChinaTaiwanFormosa", "target": "Italy", "attributes": { "weight": 14049.487838147788, "sourceWeight": "14049.487838147788", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4091", "source": "RepublicofChinaTaiwanFormosa", "target": "Spain", "attributes": { "weight": 4000.520303191559, "sourceWeight": "4000.520303191559", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4092", "source": "RepublicofChinaTaiwanFormosa", "target": "Denmark", "attributes": { "weight": 446.4929554652217, "sourceWeight": "446.4929554652217", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4093", "source": "RepublicofChinaTaiwanFormosa", "target": "UnitedStatesofAmerica", "attributes": { "weight": 495727.97411992325, "sourceWeight": "495727.97411992325", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4094", "source": "RepublicofChinaTaiwanFormosa", "target": "BritishAmerica", "attributes": { "weight": 691.6633217185641, "sourceWeight": "691.6633217185641", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4095", "source": "RepublicofChinaTaiwanFormosa", "target": "Peru", "attributes": { "weight": 66.57318406725376, "sourceWeight": "66.57318406725376", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4096", "source": "RepublicofChinaTaiwanFormosa", "target": "Australia", "attributes": { "weight": 3574.9611251525844, "sourceWeight": "3574.9611251525844", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4097", "source": "RepublicofChinaTaiwanFormosa", "target": "Othercountries", "attributes": { "weight": 1692.9013789793296, "sourceWeight": "1692.9013789793296", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4098", "source": "PeoplesRepublicofChinaChina", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 2482782.778307824, "sourceWeight": "2482782.778307824", "direction": "Imp", "source_type": "primary", "targetWeight": "2482782.778307824" } }, { "key": "geid_107_4099", "source": "KwangtungTerritoryLeased", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 100279.48890864741, "sourceWeight": "100279.48890864741", "direction": "Imp", "source_type": "primary", "targetWeight": "100279.48890864741" } }, { "key": "geid_107_4100", "source": "HongKong", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 6759.064108720513, "sourceWeight": "6759.064108720513", "direction": "Imp", "source_type": "primary", "targetWeight": "6759.064108720513" } }, { "key": "geid_107_4101", "source": "India", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 255141.25645627646, "sourceWeight": "255141.25645627646", "direction": "Imp", "source_type": "primary", "targetWeight": "255141.25645627646" } }, { "key": "geid_107_4102", "source": "BritishBorneo_StraitsSettlements", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 25230.6709837209, "sourceWeight": "25230.6709837209", "direction": "Imp", "source_type": "primary", "targetWeight": "25230.6709837209" } }, { "key": "geid_107_4103", "source": "IndonesiaDutchEastIndies", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 286032.8169004923, "sourceWeight": "286032.8169004923", "direction": "Imp", "source_type": "primary", "targetWeight": "286032.8169004923" } }, { "key": "geid_107_4104", "source": "FrenchIndochina", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 13930.485914220206, "sourceWeight": "13930.485914220206", "direction": "Imp", "source_type": "primary", "targetWeight": "13930.485914220206" } }, { "key": "geid_107_4105", "source": "AsianRussia", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 12556.023122486082, "sourceWeight": "12556.023122486082", "direction": "Imp", "source_type": "primary", "targetWeight": "12556.023122486082" } }, { "key": "geid_107_4106", "source": "Philippines", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 1015.0996125835505, "sourceWeight": "1015.0996125835505", "direction": "Imp", "source_type": "primary", "targetWeight": "1015.0996125835505" } }, { "key": "geid_107_4107", "source": "ThailandSiam", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 43812.981708714135, "sourceWeight": "43812.981708714135", "direction": "Imp", "source_type": "primary", "targetWeight": "43812.981708714135" } }, { "key": "geid_107_4108", "source": "IranPersia", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 126894.80668393141, "sourceWeight": "126894.80668393141", "direction": "Imp", "source_type": "primary", "targetWeight": "126894.80668393141" } }, { "key": "geid_107_4109", "source": "AsianTurkey", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 0.5657777682769441, "sourceWeight": "0.5657777682769441", "direction": "Imp", "source_type": "primary", "targetWeight": "0.5657777682769441" } }, { "key": "geid_107_4110", "source": "UnitedKingdom", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 272004.4514323602, "sourceWeight": "272004.4514323602", "direction": "Imp", "source_type": "primary", "targetWeight": "272004.4514323602" } }, { "key": "geid_107_4111", "source": "France", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 6502.578187101632, "sourceWeight": "6502.578187101632", "direction": "Imp", "source_type": "primary", "targetWeight": "6502.578187101632" } }, { "key": "geid_107_4112", "source": "GermanyZollverein", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 63574.93908056481, "sourceWeight": "63574.93908056481", "direction": "Imp", "source_type": "primary", "targetWeight": "63574.93908056481" } }, { "key": "geid_107_4113", "source": "Belgium", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 1382.8551619635641, "sourceWeight": "1382.8551619635641", "direction": "Imp", "source_type": "primary", "targetWeight": "1382.8551619635641" } }, { "key": "geid_107_4114", "source": "Italy", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 23.76266626763165, "sourceWeight": "23.76266626763165", "direction": "Imp", "source_type": "primary", "targetWeight": "23.76266626763165" } }, { "key": "geid_107_4115", "source": "Switzerland", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 1317.5078297275772, "sourceWeight": "1317.5078297275772", "direction": "Imp", "source_type": "primary", "targetWeight": "1317.5078297275772" } }, { "key": "geid_107_4116", "source": "AustriaHungaryAustrianEmpire", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 59.87814714264325, "sourceWeight": "59.87814714264325", "direction": "Imp", "source_type": "primary", "targetWeight": "59.87814714264325" } }, { "key": "geid_107_4117", "source": "Netherlands", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 16665.172757186814, "sourceWeight": "16665.172757186814", "direction": "Imp", "source_type": "primary", "targetWeight": "16665.172757186814" } }, { "key": "geid_107_4118", "source": "Sweden", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 0.47148147356412007, "sourceWeight": "0.47148147356412007", "direction": "Imp", "source_type": "primary", "targetWeight": "0.47148147356412007" } }, { "key": "geid_107_4119", "source": "Spain", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 531.8311021803274, "sourceWeight": "531.8311021803274", "direction": "Imp", "source_type": "primary", "targetWeight": "531.8311021803274" } }, { "key": "geid_107_4120", "source": "Denmark", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 16.973333048308323, "sourceWeight": "16.973333048308323", "direction": "Imp", "source_type": "primary", "targetWeight": "16.973333048308323" } }, { "key": "geid_107_4121", "source": "TurkeyOttomanEmpire", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 2762.315657317467, "sourceWeight": "2762.315657317467", "direction": "Imp", "source_type": "primary", "targetWeight": "2762.315657317467" } }, { "key": "geid_107_4122", "source": "Portugal", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 7.73229616645157, "sourceWeight": "7.73229616645157", "direction": "Imp", "source_type": "primary", "targetWeight": "7.73229616645157" } }, { "key": "geid_107_4123", "source": "UnitedStatesofAmerica", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 330530.1068199374, "sourceWeight": "330530.1068199374", "direction": "Imp", "source_type": "primary", "targetWeight": "330530.1068199374" } }, { "key": "geid_107_4124", "source": "BritishAmerica", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 63234.057975177944, "sourceWeight": "63234.057975177944", "direction": "Imp", "source_type": "primary", "targetWeight": "63234.057975177944" } }, { "key": "geid_107_4125", "source": "Mexico", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 0.8486666524154162, "sourceWeight": "0.8486666524154162", "direction": "Imp", "source_type": "primary", "targetWeight": "0.8486666524154162" } }, { "key": "geid_107_4126", "source": "Australia", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 110803.33258377743, "sourceWeight": "110803.33258377743", "direction": "Imp", "source_type": "primary", "targetWeight": "110803.33258377743" } }, { "key": "geid_107_4127", "source": "HawaiiSandwichIs", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 8.580962818866986, "sourceWeight": "8.580962818866986", "direction": "Imp", "source_type": "primary", "targetWeight": "8.580962818866986" } }, { "key": "geid_107_4128", "source": "EgyptArabRepublicEgypt", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 209.6206631466078, "sourceWeight": "209.6206631466078", "direction": "Imp", "source_type": "primary", "targetWeight": "209.6206631466078" } }, { "key": "geid_107_4129", "source": "Othercountries", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 413.58354861044614, "sourceWeight": "413.58354861044614", "direction": "Imp", "source_type": "primary", "targetWeight": "413.58354861044614" } }, { "key": "geid_107_4130", "source": "***NA", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 153127.94157674434, "sourceWeight": "153127.94157674434", "direction": "Imp", "source_type": "primary", "targetWeight": "153127.94157674434" } }, { "key": "geid_107_4131", "source": "Austria", "target": "Hungary", "attributes": { "weight": 7488637.392489525, "sourceWeight": "7488637.392489525", "direction": "Imp", "source_type": "primary", "targetWeight": "7488637.392489525" } }, { "key": "geid_107_4132", "source": "Czechoslovakia", "target": "Hungary", "attributes": { "weight": 8123913.535541039, "sourceWeight": "8123913.535541039", "direction": "Imp", "source_type": "primary", "targetWeight": "8123913.535541039" } }, { "key": "geid_107_4133", "source": "Romania", "target": "Hungary", "attributes": { "weight": 2528270.710730267, "sourceWeight": "2528270.710730267", "direction": "Imp", "source_type": "primary", "targetWeight": "2528270.710730267" } }, { "key": "geid_107_4134", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Hungary", "attributes": { "weight": 1302201.2222732583, "sourceWeight": "1302201.2222732583", "direction": "Imp", "source_type": "primary", "targetWeight": "1302201.2222732583" } }, { "key": "geid_107_4135", "source": "GermanyZollverein", "target": "Hungary", "attributes": { "weight": 4046706.654597129, "sourceWeight": "4046706.654597129", "direction": "Imp", "source_type": "primary", "targetWeight": "4046706.654597129" } }, { "key": "geid_107_4136", "source": "Switzerland", "target": "Hungary", "attributes": { "weight": 1217711.6342243196, "sourceWeight": "1217711.6342243196", "direction": "Imp", "source_type": "primary", "targetWeight": "1217711.6342243196" } }, { "key": "geid_107_4137", "source": "Italy", "target": "Hungary", "attributes": { "weight": 1354289.2711641886, "sourceWeight": "1354289.2711641886", "direction": "Imp", "source_type": "primary", "targetWeight": "1354289.2711641886" } }, { "key": "geid_107_4138", "source": "France", "target": "Hungary", "attributes": { "weight": 520959.71027643787, "sourceWeight": "520959.71027643787", "direction": "Imp", "source_type": "primary", "targetWeight": "520959.71027643787" } }, { "key": "geid_107_4139", "source": "Netherlands", "target": "Hungary", "attributes": { "weight": 368458.57854253537, "sourceWeight": "368458.57854253537", "direction": "Imp", "source_type": "primary", "targetWeight": "368458.57854253537" } }, { "key": "geid_107_4140", "source": "UnitedKingdom", "target": "Hungary", "attributes": { "weight": 703287.6867364777, "sourceWeight": "703287.6867364777", "direction": "Imp", "source_type": "primary", "targetWeight": "703287.6867364777" } }, { "key": "geid_107_4141", "source": "Poland", "target": "Hungary", "attributes": { "weight": 1785372.340426542, "sourceWeight": "1785372.340426542", "direction": "Imp", "source_type": "primary", "targetWeight": "1785372.340426542" } }, { "key": "geid_107_4142", "source": "UnitedStatesofAmerica", "target": "Hungary", "attributes": { "weight": 814910.5930289808, "sourceWeight": "814910.5930289808", "direction": "Imp", "source_type": "primary", "targetWeight": "814910.5930289808" } }, { "key": "geid_107_4143", "source": "Othercountries", "target": "Hungary", "attributes": { "weight": 2038088.5015855806, "sourceWeight": "2038088.5015855806", "direction": "Imp", "source_type": "primary", "targetWeight": "2038088.5015855806" } }, { "key": "geid_107_4144", "source": "Hungary", "target": "Austria", "attributes": { "weight": 9631258.488009071, "sourceWeight": "9631258.488009071", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4145", "source": "Hungary", "target": "Czechoslovakia", "attributes": { "weight": 6356207.559985489, "sourceWeight": "6356207.559985489", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4146", "source": "Hungary", "target": "Romania", "attributes": { "weight": 1393226.573110793, "sourceWeight": "1393226.573110793", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4147", "source": "Hungary", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 1538597.781802591, "sourceWeight": "1538597.781802591", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4148", "source": "Hungary", "target": "GermanyZollverein", "attributes": { "weight": 2087166.1385254, "sourceWeight": "2087166.1385254", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4149", "source": "Hungary", "target": "Switzerland", "attributes": { "weight": 533793.571752226, "sourceWeight": "533793.571752226", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4150", "source": "Hungary", "target": "Italy", "attributes": { "weight": 955409.6876420074, "sourceWeight": "955409.6876420074", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4151", "source": "Hungary", "target": "France", "attributes": { "weight": 100175.41874156868, "sourceWeight": "100175.41874156868", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4152", "source": "Hungary", "target": "Netherlands", "attributes": { "weight": 177931.19058407535, "sourceWeight": "177931.19058407535", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4153", "source": "Hungary", "target": "UnitedKingdom", "attributes": { "weight": 433340.8782256866, "sourceWeight": "433340.8782256866", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4154", "source": "Hungary", "target": "Poland", "attributes": { "weight": 682848.574015778, "sourceWeight": "682848.574015778", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4155", "source": "Hungary", "target": "UnitedStatesofAmerica", "attributes": { "weight": 139389.99547314362, "sourceWeight": "139389.99547314362", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4156", "source": "Hungary", "target": "Othercountries", "attributes": { "weight": 2391455.4096889948, "sourceWeight": "2391455.4096889948", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4157", "source": "Japan", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 32852714.6965424, "sourceWeight": "32852714.6965424", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4158", "source": "Japan", "target": "KwangtungTerritoryLeased", "attributes": { "weight": 6846019.059704765, "sourceWeight": "6846019.059704765", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4159", "source": "Japan", "target": "HongKong", "attributes": { "weight": 7450409.369037011, "sourceWeight": "7450409.369037011", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4160", "source": "Japan", "target": "India", "attributes": { "weight": 12765184.468381144, "sourceWeight": "12765184.468381144", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4161", "source": "Japan", "target": "StraitsSettlements", "attributes": { "weight": 2144507.928210533, "sourceWeight": "2144507.928210533", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4162", "source": "Japan", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 5594731.274420742, "sourceWeight": "5594731.274420742", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4163", "source": "Japan", "target": "FrenchIndochina", "attributes": { "weight": 229924.1641389942, "sourceWeight": "229924.1641389942", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4164", "source": "Japan", "target": "AsianRussia", "attributes": { "weight": 335971.3802100462, "sourceWeight": "335971.3802100462", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4165", "source": "Japan", "target": "Philippines", "attributes": { "weight": 2216682.877961497, "sourceWeight": "2216682.877961497", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4166", "source": "Japan", "target": "ThailandSiam", "attributes": { "weight": 394272.8933050911, "sourceWeight": "394272.8933050911", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4167", "source": "Japan", "target": "Asiaother", "attributes": { "weight": 557623.1190064738, "sourceWeight": "557623.1190064738", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4168", "source": "Japan", "target": "UnitedKingdom", "attributes": { "weight": 5756224.806079228, "sourceWeight": "5756224.806079228", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4169", "source": "Japan", "target": "France", "attributes": { "weight": 8089674.502894731, "sourceWeight": "8089674.502894731", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4170", "source": "Japan", "target": "GermanyZollverein", "attributes": { "weight": 807371.193182945, "sourceWeight": "807371.193182945", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4171", "source": "Japan", "target": "Belgium", "attributes": { "weight": 322073.8979989755, "sourceWeight": "322073.8979989755", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4172", "source": "Japan", "target": "Italy", "attributes": { "weight": 587384.4440622617, "sourceWeight": "587384.4440622617", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4173", "source": "Japan", "target": "Switzerland", "attributes": { "weight": 15209.803744589088, "sourceWeight": "15209.803744589088", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4174", "source": "Japan", "target": "Austria", "attributes": { "weight": 46018.57204204709, "sourceWeight": "46018.57204204709", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4175", "source": "Japan", "target": "Czechoslovakia", "attributes": { "weight": 171.61925637733972, "sourceWeight": "171.61925637733972", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4176", "source": "Japan", "target": "Netherlands", "attributes": { "weight": 273351.37970603816, "sourceWeight": "273351.37970603816", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4177", "source": "Japan", "target": "Sweden", "attributes": { "weight": 30488.349488023825, "sourceWeight": "30488.349488023825", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4178", "source": "Japan", "target": "Norway", "attributes": { "weight": 1770.5072295279838, "sourceWeight": "1770.5072295279838", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4179", "source": "Japan", "target": "EuropeanRussia", "attributes": { "weight": 60.53822120563302, "sourceWeight": "60.53822120563302", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4180", "source": "Japan", "target": "Poland", "attributes": { "weight": 147.47940493085676, "sourceWeight": "147.47940493085676", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4181", "source": "Japan", "target": "Spain", "attributes": { "weight": 75223.45466273467, "sourceWeight": "75223.45466273467", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4182", "source": "Japan", "target": "Denmark", "attributes": { "weight": 33052.26574126551, "sourceWeight": "33052.26574126551", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4183", "source": "Japan", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 412180.13685623516, "sourceWeight": "412180.13685623516", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4184", "source": "Japan", "target": "Portugal", "attributes": { "weight": 873.8437631037401, "sourceWeight": "873.8437631037401", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4185", "source": "Japan", "target": "Europeother", "attributes": { "weight": 55147.4906294903, "sourceWeight": "55147.4906294903", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4186", "source": "Japan", "target": "UnitedStatesofAmerica", "attributes": { "weight": 70243480.5379906, "sourceWeight": "70243480.5379906", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4187", "source": "Japan", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1457198.3607151546, "sourceWeight": "1457198.3607151546", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4188", "source": "Japan", "target": "Mexico", "attributes": { "weight": 82440.70446746479, "sourceWeight": "82440.70446746479", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4189", "source": "Japan", "target": "Cuba", "attributes": { "weight": 63713.366041203226, "sourceWeight": "63713.366041203226", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4190", "source": "Japan", "target": "NorthernAmericaother", "attributes": { "weight": 273435.68059351144, "sourceWeight": "273435.68059351144", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4191", "source": "Japan", "target": "Peru", "attributes": { "weight": 193647.43660002368, "sourceWeight": "193647.43660002368", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4192", "source": "Japan", "target": "Chile", "attributes": { "weight": 174811.2802496635, "sourceWeight": "174811.2802496635", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4193", "source": "Japan", "target": "ArgentinaLaPlata", "attributes": { "weight": 774948.0723200034, "sourceWeight": "774948.0723200034", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4194", "source": "Japan", "target": "Brazil", "attributes": { "weight": 136483.51400439435, "sourceWeight": "136483.51400439435", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4195", "source": "Japan", "target": "SouthernAmericaother", "attributes": { "weight": 422765.9331969915, "sourceWeight": "422765.9331969915", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4196", "source": "Japan", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 2553581.0021559806, "sourceWeight": "2553581.0021559806", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4197", "source": "Japan", "target": "CapeColonyCapeofGoodHope_Natal", "attributes": { "weight": 543540.7217614712, "sourceWeight": "543540.7217614712", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4198", "source": "Japan", "target": "Africaother", "attributes": { "weight": 788070.6275811242, "sourceWeight": "788070.6275811242", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4199", "source": "Japan", "target": "Australia", "attributes": { "weight": 3951898.210452491, "sourceWeight": "3951898.210452491", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4200", "source": "Japan", "target": "NewZealand", "attributes": { "weight": 274466.6219836068, "sourceWeight": "274466.6219836068", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4201", "source": "Japan", "target": "HawaiiSandwichIs", "attributes": { "weight": 519712.99105048773, "sourceWeight": "519712.99105048773", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4202", "source": "Japan", "target": "Othercountries", "attributes": { "weight": 48028.9690453245, "sourceWeight": "48028.9690453245", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4203", "source": "PeoplesRepublicofChinaChina", "target": "Japan", "attributes": { "weight": 22399498.097485643, "sourceWeight": "22399498.097485643", "direction": "Imp", "source_type": "primary", "targetWeight": "22399498.097485643" } }, { "key": "geid_107_4204", "source": "KwangtungTerritoryLeased", "target": "Japan", "attributes": { "weight": 16572009.71534385, "sourceWeight": "16572009.71534385", "direction": "Imp", "source_type": "primary", "targetWeight": "16572009.71534385" } }, { "key": "geid_107_4205", "source": "HongKong", "target": "Japan", "attributes": { "weight": 103633.98529676141, "sourceWeight": "103633.98529676141", "direction": "Imp", "source_type": "primary", "targetWeight": "103633.98529676141" } }, { "key": "geid_107_4206", "source": "India", "target": "Japan", "attributes": { "weight": 36567346.36186808, "sourceWeight": "36567346.36186808", "direction": "Imp", "source_type": "primary", "targetWeight": "36567346.36186808" } }, { "key": "geid_107_4207", "source": "StraitsSettlements", "target": "Japan", "attributes": { "weight": 2996342.558943121, "sourceWeight": "2996342.558943121", "direction": "Imp", "source_type": "primary", "targetWeight": "2996342.558943121" } }, { "key": "geid_107_4208", "source": "IndonesiaDutchEastIndies", "target": "Japan", "attributes": { "weight": 8750682.382091042, "sourceWeight": "8750682.382091042", "direction": "Imp", "source_type": "primary", "targetWeight": "8750682.382091042" } }, { "key": "geid_107_4209", "source": "FrenchIndochina", "target": "Japan", "attributes": { "weight": 1617676.6984647636, "sourceWeight": "1617676.6984647636", "direction": "Imp", "source_type": "primary", "targetWeight": "1617676.6984647636" } }, { "key": "geid_107_4210", "source": "AsianRussia", "target": "Japan", "attributes": { "weight": 1431884.4261032024, "sourceWeight": "1431884.4261032024", "direction": "Imp", "source_type": "primary", "targetWeight": "1431884.4261032024" } }, { "key": "geid_107_4211", "source": "Philippines", "target": "Japan", "attributes": { "weight": 1682431.56708107, "sourceWeight": "1682431.56708107", "direction": "Imp", "source_type": "primary", "targetWeight": "1682431.56708107" } }, { "key": "geid_107_4212", "source": "ThailandSiam", "target": "Japan", "attributes": { "weight": 1742743.7600682764, "sourceWeight": "1742743.7600682764", "direction": "Imp", "source_type": "primary", "targetWeight": "1742743.7600682764" } }, { "key": "geid_107_4213", "source": "Asiaother", "target": "Japan", "attributes": { "weight": 300202.43821810425, "sourceWeight": "300202.43821810425", "direction": "Imp", "source_type": "primary", "targetWeight": "300202.43821810425" } }, { "key": "geid_107_4214", "source": "UnitedKingdom", "target": "Japan", "attributes": { "weight": 29490269.3193767, "sourceWeight": "29490269.3193767", "direction": "Imp", "source_type": "primary", "targetWeight": "29490269.3193767" } }, { "key": "geid_107_4215", "source": "France", "target": "Japan", "attributes": { "weight": 3090510.89358402, "sourceWeight": "3090510.89358402", "direction": "Imp", "source_type": "primary", "targetWeight": "3090510.89358402" } }, { "key": "geid_107_4216", "source": "GermanyZollverein", "target": "Japan", "attributes": { "weight": 13639310.743183844, "sourceWeight": "13639310.743183844", "direction": "Imp", "source_type": "primary", "targetWeight": "13639310.743183844" } }, { "key": "geid_107_4217", "source": "Belgium", "target": "Japan", "attributes": { "weight": 2770549.2325866115, "sourceWeight": "2770549.2325866115", "direction": "Imp", "source_type": "primary", "targetWeight": "2770549.2325866115" } }, { "key": "geid_107_4218", "source": "Italy", "target": "Japan", "attributes": { "weight": 416818.571593159, "sourceWeight": "416818.571593159", "direction": "Imp", "source_type": "primary", "targetWeight": "416818.571593159" } }, { "key": "geid_107_4219", "source": "Switzerland", "target": "Japan", "attributes": { "weight": 2172795.307883665, "sourceWeight": "2172795.307883665", "direction": "Imp", "source_type": "primary", "targetWeight": "2172795.307883665" } }, { "key": "geid_107_4220", "source": "Austria", "target": "Japan", "attributes": { "weight": 108526.642844231, "sourceWeight": "108526.642844231", "direction": "Imp", "source_type": "primary", "targetWeight": "108526.642844231" } }, { "key": "geid_107_4221", "source": "Czechoslovakia", "target": "Japan", "attributes": { "weight": 20045.694922641556, "sourceWeight": "20045.694922641556", "direction": "Imp", "source_type": "primary", "targetWeight": "20045.694922641556" } }, { "key": "geid_107_4222", "source": "Netherlands", "target": "Japan", "attributes": { "weight": 703303.0677453257, "sourceWeight": "703303.0677453257", "direction": "Imp", "source_type": "primary", "targetWeight": "703303.0677453257" } }, { "key": "geid_107_4223", "source": "Sweden", "target": "Japan", "attributes": { "weight": 1581577.625145032, "sourceWeight": "1581577.625145032", "direction": "Imp", "source_type": "primary", "targetWeight": "1581577.625145032" } }, { "key": "geid_107_4224", "source": "Norway", "target": "Japan", "attributes": { "weight": 356373.2322378181, "sourceWeight": "356373.2322378181", "direction": "Imp", "source_type": "primary", "targetWeight": "356373.2322378181" } }, { "key": "geid_107_4225", "source": "EuropeanRussia", "target": "Japan", "attributes": { "weight": 45284.098202528905, "sourceWeight": "45284.098202528905", "direction": "Imp", "source_type": "primary", "targetWeight": "45284.098202528905" } }, { "key": "geid_107_4226", "source": "Poland", "target": "Japan", "attributes": { "weight": 32469.420343645546, "sourceWeight": "32469.420343645546", "direction": "Imp", "source_type": "primary", "targetWeight": "32469.420343645546" } }, { "key": "geid_107_4227", "source": "Spain", "target": "Japan", "attributes": { "weight": 166798.16971755715, "sourceWeight": "166798.16971755715", "direction": "Imp", "source_type": "primary", "targetWeight": "166798.16971755715" } }, { "key": "geid_107_4228", "source": "Denmark", "target": "Japan", "attributes": { "weight": 101937.21776969887, "sourceWeight": "101937.21776969887", "direction": "Imp", "source_type": "primary", "targetWeight": "101937.21776969887" } }, { "key": "geid_107_4229", "source": "TurkeyOttomanEmpire", "target": "Japan", "attributes": { "weight": 45877.78767404085, "sourceWeight": "45877.78767404085", "direction": "Imp", "source_type": "primary", "targetWeight": "45877.78767404085" } }, { "key": "geid_107_4230", "source": "Portugal", "target": "Japan", "attributes": { "weight": 39772.38548026963, "sourceWeight": "39772.38548026963", "direction": "Imp", "source_type": "primary", "targetWeight": "39772.38548026963" } }, { "key": "geid_107_4231", "source": "Europeother", "target": "Japan", "attributes": { "weight": 14188.386280259778, "sourceWeight": "14188.386280259778", "direction": "Imp", "source_type": "primary", "targetWeight": "14188.386280259778" } }, { "key": "geid_107_4232", "source": "UnitedStatesofAmerica", "target": "Japan", "attributes": { "weight": 63273337.75681464, "sourceWeight": "63273337.75681464", "direction": "Imp", "source_type": "primary", "targetWeight": "63273337.75681464" } }, { "key": "geid_107_4233", "source": "CanadaProvinceofCanada", "target": "Japan", "attributes": { "weight": 3774419.0051365173, "sourceWeight": "3774419.0051365173", "direction": "Imp", "source_type": "primary", "targetWeight": "3774419.0051365173" } }, { "key": "geid_107_4234", "source": "Mexico", "target": "Japan", "attributes": { "weight": 2868.870470342958, "sourceWeight": "2868.870470342958", "direction": "Imp", "source_type": "primary", "targetWeight": "2868.870470342958" } }, { "key": "geid_107_4235", "source": "Cuba", "target": "Japan", "attributes": { "weight": 2.0745184836821284, "sourceWeight": "2.0745184836821284", "direction": "Imp", "source_type": "primary", "targetWeight": "2.0745184836821284" } }, { "key": "geid_107_4236", "source": "NorthernAmericaother", "target": "Japan", "attributes": { "weight": 164201.3440574607, "sourceWeight": "164201.3440574607", "direction": "Imp", "source_type": "primary", "targetWeight": "164201.3440574607" } }, { "key": "geid_107_4237", "source": "Peru", "target": "Japan", "attributes": { "weight": 33934.50187459869, "sourceWeight": "33934.50187459869", "direction": "Imp", "source_type": "primary", "targetWeight": "33934.50187459869" } }, { "key": "geid_107_4238", "source": "Chile", "target": "Japan", "attributes": { "weight": 496270.46070340613, "sourceWeight": "496270.46070340613", "direction": "Imp", "source_type": "primary", "targetWeight": "496270.46070340613" } }, { "key": "geid_107_4239", "source": "ArgentinaLaPlata", "target": "Japan", "attributes": { "weight": 253982.44929055058, "sourceWeight": "253982.44929055058", "direction": "Imp", "source_type": "primary", "targetWeight": "253982.44929055058" } }, { "key": "geid_107_4240", "source": "Brazil", "target": "Japan", "attributes": { "weight": 10666.70256161994, "sourceWeight": "10666.70256161994", "direction": "Imp", "source_type": "primary", "targetWeight": "10666.70256161994" } }, { "key": "geid_107_4241", "source": "SouthernAmericaother", "target": "Japan", "attributes": { "weight": 10015.398054038464, "sourceWeight": "10015.398054038464", "direction": "Imp", "source_type": "primary", "targetWeight": "10015.398054038464" } }, { "key": "geid_107_4242", "source": "EgyptArabRepublicEgypt", "target": "Japan", "attributes": { "weight": 1604392.4250582105, "sourceWeight": "1604392.4250582105", "direction": "Imp", "source_type": "primary", "targetWeight": "1604392.4250582105" } }, { "key": "geid_107_4243", "source": "CapeColonyCapeofGoodHope_Natal", "target": "Japan", "attributes": { "weight": 93478.74583766384, "sourceWeight": "93478.74583766384", "direction": "Imp", "source_type": "primary", "targetWeight": "93478.74583766384" } }, { "key": "geid_107_4244", "source": "Africaother", "target": "Japan", "attributes": { "weight": 383465.8778569384, "sourceWeight": "383465.8778569384", "direction": "Imp", "source_type": "primary", "targetWeight": "383465.8778569384" } }, { "key": "geid_107_4245", "source": "Australia", "target": "Japan", "attributes": { "weight": 11312621.053440008, "sourceWeight": "11312621.053440008", "direction": "Imp", "source_type": "primary", "targetWeight": "11312621.053440008" } }, { "key": "geid_107_4246", "source": "NewZealand", "target": "Japan", "attributes": { "weight": 10223.792865353806, "sourceWeight": "10223.792865353806", "direction": "Imp", "source_type": "primary", "targetWeight": "10223.792865353806" } }, { "key": "geid_107_4247", "source": "HawaiiSandwichIs", "target": "Japan", "attributes": { "weight": 14824.603380687202, "sourceWeight": "14824.603380687202", "direction": "Imp", "source_type": "primary", "targetWeight": "14824.603380687202" } }, { "key": "geid_107_4248", "source": "Othercountries", "target": "Japan", "attributes": { "weight": 426963.90994131175, "sourceWeight": "426963.90994131175", "direction": "Imp", "source_type": "primary", "targetWeight": "426963.90994131175" } }, { "key": "geid_107_4249", "source": "***NA", "target": "Japan", "attributes": { "weight": 156600.68551842822, "sourceWeight": "156600.68551842822", "direction": "Imp", "source_type": "primary", "targetWeight": "156600.68551842822" } }, { "key": "geid_107_4250", "source": "Unknown", "target": "Japan", "attributes": { "weight": 83458.25578371088, "sourceWeight": "83458.25578371088", "direction": "Imp", "source_type": "primary", "targetWeight": "83458.25578371088" } }, { "key": "geid_107_4251", "source": "GermanyZollverein", "target": "Denmark", "attributes": { "weight": 24525790.855553016, "sourceWeight": "24525790.855553016", "direction": "Imp", "source_type": "primary", "targetWeight": "24525790.855553016" } }, { "key": "geid_107_4252", "source": "UnitedKingdom", "target": "Denmark", "attributes": { "weight": 16853543.232205838, "sourceWeight": "16853543.232205838", "direction": "Imp", "source_type": "primary", "targetWeight": "16853543.232205838" } }, { "key": "geid_107_4253", "source": "Norway", "target": "Denmark", "attributes": { "weight": 1541933.9067427602, "sourceWeight": "1541933.9067427602", "direction": "Imp", "source_type": "primary", "targetWeight": "1541933.9067427602" } }, { "key": "geid_107_4254", "source": "Sweden", "target": "Denmark", "attributes": { "weight": 4887603.893156805, "sourceWeight": "4887603.893156805", "direction": "Imp", "source_type": "primary", "targetWeight": "4887603.893156805" } }, { "key": "geid_107_4255", "source": "Finland", "target": "Denmark", "attributes": { "weight": 1217686.2833842733, "sourceWeight": "1217686.2833842733", "direction": "Imp", "source_type": "primary", "targetWeight": "1217686.2833842733" } }, { "key": "geid_107_4256", "source": "RussiaUSSR", "target": "Denmark", "attributes": { "weight": 2747070.620185903, "sourceWeight": "2747070.620185903", "direction": "Imp", "source_type": "primary", "targetWeight": "2747070.620185903" } }, { "key": "geid_107_4257", "source": "Estonia", "target": "Denmark", "attributes": { "weight": 243620.41647766938, "sourceWeight": "243620.41647766938", "direction": "Imp", "source_type": "primary", "targetWeight": "243620.41647766938" } }, { "key": "geid_107_4258", "source": "Latvia", "target": "Denmark", "attributes": { "weight": 574445.2240824114, "sourceWeight": "574445.2240824114", "direction": "Imp", "source_type": "primary", "targetWeight": "574445.2240824114" } }, { "key": "geid_107_4259", "source": "Lithuania", "target": "Denmark", "attributes": { "weight": 27518.33408778019, "sourceWeight": "27518.33408778019", "direction": "Imp", "source_type": "primary", "targetWeight": "27518.33408778019" } }, { "key": "geid_107_4260", "source": "Memel", "target": "Denmark", "attributes": { "weight": 27367.13444993524, "sourceWeight": "27367.13444993524", "direction": "Imp", "source_type": "primary", "targetWeight": "27367.13444993524" } }, { "key": "geid_107_4261", "source": "Poland", "target": "Denmark", "attributes": { "weight": 224304.66274297753, "sourceWeight": "224304.66274297753", "direction": "Imp", "source_type": "primary", "targetWeight": "224304.66274297753" } }, { "key": "geid_107_4262", "source": "DanzigFreeCityofDanzig", "target": "Denmark", "attributes": { "weight": 756300.5885004203, "sourceWeight": "756300.5885004203", "direction": "Imp", "source_type": "primary", "targetWeight": "756300.5885004203" } }, { "key": "geid_107_4263", "source": "Netherlands", "target": "Denmark", "attributes": { "weight": 2805320.2806656687, "sourceWeight": "2805320.2806656687", "direction": "Imp", "source_type": "primary", "targetWeight": "2805320.2806656687" } }, { "key": "geid_107_4264", "source": "Belgium", "target": "Denmark", "attributes": { "weight": 1935166.3648680036, "sourceWeight": "1935166.3648680036", "direction": "Imp", "source_type": "primary", "targetWeight": "1935166.3648680036" } }, { "key": "geid_107_4265", "source": "Luxemburg", "target": "Denmark", "attributes": { "weight": 40483.70303298431, "sourceWeight": "40483.70303298431", "direction": "Imp", "source_type": "primary", "targetWeight": "40483.70303298431" } }, { "key": "geid_107_4266", "source": "France", "target": "Denmark", "attributes": { "weight": 3079709.823444784, "sourceWeight": "3079709.823444784", "direction": "Imp", "source_type": "primary", "targetWeight": "3079709.823444784" } }, { "key": "geid_107_4267", "source": "AzoresWesternIsles_MadeiraIsles_Portugal", "target": "Denmark", "attributes": { "weight": 299072.88365730335, "sourceWeight": "299072.88365730335", "direction": "Imp", "source_type": "primary", "targetWeight": "299072.88365730335" } }, { "key": "geid_107_4268", "source": "CanaryIs_Spain", "target": "Denmark", "attributes": { "weight": 403476.2335892386, "sourceWeight": "403476.2335892386", "direction": "Imp", "source_type": "primary", "targetWeight": "403476.2335892386" } }, { "key": "geid_107_4269", "source": "Cyprus", "target": "Denmark", "attributes": { "weight": 113.39972838370956, "sourceWeight": "113.39972838370956", "direction": "Imp", "source_type": "primary", "targetWeight": "113.39972838370956" } }, { "key": "geid_107_4270", "source": "Italy", "target": "Denmark", "attributes": { "weight": 652388.6373914811, "sourceWeight": "652388.6373914811", "direction": "Imp", "source_type": "primary", "targetWeight": "652388.6373914811" } }, { "key": "geid_107_4271", "source": "Switzerland", "target": "Denmark", "attributes": { "weight": 654203.0330456204, "sourceWeight": "654203.0330456204", "direction": "Imp", "source_type": "primary", "targetWeight": "654203.0330456204" } }, { "key": "geid_107_4272", "source": "Czechoslovakia", "target": "Denmark", "attributes": { "weight": 411981.21321801684, "sourceWeight": "411981.21321801684", "direction": "Imp", "source_type": "primary", "targetWeight": "411981.21321801684" } }, { "key": "geid_107_4273", "source": "Austria", "target": "Denmark", "attributes": { "weight": 233036.44182852315, "sourceWeight": "233036.44182852315", "direction": "Imp", "source_type": "primary", "targetWeight": "233036.44182852315" } }, { "key": "geid_107_4274", "source": "Hungary", "target": "Denmark", "attributes": { "weight": 64826.84472602064, "sourceWeight": "64826.84472602064", "direction": "Imp", "source_type": "primary", "targetWeight": "64826.84472602064" } }, { "key": "geid_107_4275", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Denmark", "attributes": { "weight": 30731.32639198529, "sourceWeight": "30731.32639198529", "direction": "Imp", "source_type": "primary", "targetWeight": "30731.32639198529" } }, { "key": "geid_107_4276", "source": "Bulgaria", "target": "Denmark", "attributes": { "weight": 3250.792213666341, "sourceWeight": "3250.792213666341", "direction": "Imp", "source_type": "primary", "targetWeight": "3250.792213666341" } }, { "key": "geid_107_4277", "source": "Romania", "target": "Denmark", "attributes": { "weight": 1954104.1195080832, "sourceWeight": "1954104.1195080832", "direction": "Imp", "source_type": "primary", "targetWeight": "1954104.1195080832" } }, { "key": "geid_107_4278", "source": "EuropeanTurkey", "target": "Denmark", "attributes": { "weight": 4082.3902218135445, "sourceWeight": "4082.3902218135445", "direction": "Imp", "source_type": "primary", "targetWeight": "4082.3902218135445" } }, { "key": "geid_107_4279", "source": "Greece", "target": "Denmark", "attributes": { "weight": 9979.176097766442, "sourceWeight": "9979.176097766442", "direction": "Imp", "source_type": "primary", "targetWeight": "9979.176097766442" } }, { "key": "geid_107_4280", "source": "BritishNorthAmerica", "target": "Denmark", "attributes": { "weight": 828838.6147565332, "sourceWeight": "828838.6147565332", "direction": "Imp", "source_type": "primary", "targetWeight": "828838.6147565332" } }, { "key": "geid_107_4281", "source": "UnitedStatesofAmerica", "target": "Denmark", "attributes": { "weight": 11095709.823432446, "sourceWeight": "11095709.823432446", "direction": "Imp", "source_type": "primary", "targetWeight": "11095709.823432446" } }, { "key": "geid_107_4282", "source": "Cuba", "target": "Denmark", "attributes": { "weight": 342656.1792661091, "sourceWeight": "342656.1792661091", "direction": "Imp", "source_type": "primary", "targetWeight": "342656.1792661091" } }, { "key": "geid_107_4283", "source": "WestIndies", "target": "Denmark", "attributes": { "weight": 270949.7510181434, "sourceWeight": "270949.7510181434", "direction": "Imp", "source_type": "primary", "targetWeight": "270949.7510181434" } }, { "key": "geid_107_4284", "source": "Mexico", "target": "Denmark", "attributes": { "weight": 1587.5961973719338, "sourceWeight": "1587.5961973719338", "direction": "Imp", "source_type": "primary", "targetWeight": "1587.5961973719338" } }, { "key": "geid_107_4285", "source": "CentralAmerica", "target": "Denmark", "attributes": { "weight": 91513.58080565362, "sourceWeight": "91513.58080565362", "direction": "Imp", "source_type": "primary", "targetWeight": "91513.58080565362" } }, { "key": "geid_107_4286", "source": "Brazil", "target": "Denmark", "attributes": { "weight": 1314378.4517861162, "sourceWeight": "1314378.4517861162", "direction": "Imp", "source_type": "primary", "targetWeight": "1314378.4517861162" } }, { "key": "geid_107_4287", "source": "ArgentinaLaPlata", "target": "Denmark", "attributes": { "weight": 2684436.170208634, "sourceWeight": "2684436.170208634", "direction": "Imp", "source_type": "primary", "targetWeight": "2684436.170208634" } }, { "key": "geid_107_4288", "source": "Uruguay", "target": "Denmark", "attributes": { "weight": 12322.770484363105, "sourceWeight": "12322.770484363105", "direction": "Imp", "source_type": "primary", "targetWeight": "12322.770484363105" } }, { "key": "geid_107_4289", "source": "Chile", "target": "Denmark", "attributes": { "weight": 250348.80036176948, "sourceWeight": "250348.80036176948", "direction": "Imp", "source_type": "primary", "targetWeight": "250348.80036176948" } }, { "key": "geid_107_4290", "source": "Peru", "target": "Denmark", "attributes": { "weight": 226.79945676741912, "sourceWeight": "226.79945676741912", "direction": "Imp", "source_type": "primary", "targetWeight": "226.79945676741912" } }, { "key": "geid_107_4291", "source": "ColombiaNewGranadaGranColombia", "target": "Denmark", "attributes": { "weight": 1663.196016294407, "sourceWeight": "1663.196016294407", "direction": "Imp", "source_type": "primary", "targetWeight": "1663.196016294407" } }, { "key": "geid_107_4292", "source": "Venezuela", "target": "Denmark", "attributes": { "weight": 332223.4042548078, "sourceWeight": "332223.4042548078", "direction": "Imp", "source_type": "primary", "targetWeight": "332223.4042548078" } }, { "key": "geid_107_4293", "source": "SouthernAmericaother", "target": "Denmark", "attributes": { "weight": 41164.10140328657, "sourceWeight": "41164.10140328657", "direction": "Imp", "source_type": "primary", "targetWeight": "41164.10140328657" } }, { "key": "geid_107_4294", "source": "EgyptArabRepublicEgypt", "target": "Denmark", "attributes": { "weight": 187638.75056557808, "sourceWeight": "187638.75056557808", "direction": "Imp", "source_type": "primary", "targetWeight": "187638.75056557808" } }, { "key": "geid_107_4295", "source": "Morocco", "target": "Denmark", "attributes": { "weight": 49442.28157529737, "sourceWeight": "49442.28157529737", "direction": "Imp", "source_type": "primary", "targetWeight": "49442.28157529737" } }, { "key": "geid_107_4296", "source": "AlgeriaRegencyofAlgiers_TunisiaRegencyofTunis", "target": "Denmark", "attributes": { "weight": 40823.902218135445, "sourceWeight": "40823.902218135445", "direction": "Imp", "source_type": "primary", "targetWeight": "40823.902218135445" } }, { "key": "geid_107_4297", "source": "FrenchAfricaother", "target": "Denmark", "attributes": { "weight": 26459.936622865564, "sourceWeight": "26459.936622865564", "direction": "Imp", "source_type": "primary", "targetWeight": "26459.936622865564" } }, { "key": "geid_107_4298", "source": "BritishSouthAfrica", "target": "Denmark", "attributes": { "weight": 10772.97419645241, "sourceWeight": "10772.97419645241", "direction": "Imp", "source_type": "primary", "targetWeight": "10772.97419645241" } }, { "key": "geid_107_4299", "source": "BritishAfricaother", "target": "Denmark", "attributes": { "weight": 62445.45042996274, "sourceWeight": "62445.45042996274", "direction": "Imp", "source_type": "primary", "targetWeight": "62445.45042996274" } }, { "key": "geid_107_4300", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Denmark", "attributes": { "weight": 6274.7849705652625, "sourceWeight": "6274.7849705652625", "direction": "Imp", "source_type": "primary", "targetWeight": "6274.7849705652625" } }, { "key": "geid_107_4301", "source": "Africaother", "target": "Denmark", "attributes": { "weight": 1776.5957446781165, "sourceWeight": "1776.5957446781165", "direction": "Imp", "source_type": "primary", "targetWeight": "1776.5957446781165" } }, { "key": "geid_107_4302", "source": "Syria_WesternAnatolia", "target": "Denmark", "attributes": { "weight": 17614.757808936218, "sourceWeight": "17614.757808936218", "direction": "Imp", "source_type": "primary", "targetWeight": "17614.757808936218" } }, { "key": "geid_107_4303", "source": "SouthWestAsiaother", "target": "Denmark", "attributes": { "weight": 52730.87369842495, "sourceWeight": "52730.87369842495", "direction": "Imp", "source_type": "primary", "targetWeight": "52730.87369842495" } }, { "key": "geid_107_4304", "source": "India_SriLankaCeylon", "target": "Denmark", "attributes": { "weight": 1094571.978269026, "sourceWeight": "1094571.978269026", "direction": "Imp", "source_type": "primary", "targetWeight": "1094571.978269026" } }, { "key": "geid_107_4305", "source": "StraitsSettlements_StraitsSettlementsDependencies", "target": "Denmark", "attributes": { "weight": 434094.1602528402, "sourceWeight": "434094.1602528402", "direction": "Imp", "source_type": "primary", "targetWeight": "434094.1602528402" } }, { "key": "geid_107_4306", "source": "ThailandSiam", "target": "Denmark", "attributes": { "weight": 54053.87052956822, "sourceWeight": "54053.87052956822", "direction": "Imp", "source_type": "primary", "targetWeight": "54053.87052956822" } }, { "key": "geid_107_4307", "source": "IndonesiaDutchEastIndies", "target": "Denmark", "attributes": { "weight": 702775.9167033094, "sourceWeight": "702775.9167033094", "direction": "Imp", "source_type": "primary", "targetWeight": "702775.9167033094" } }, { "key": "geid_107_4308", "source": "Philippines", "target": "Denmark", "attributes": { "weight": 75.59981892247305, "sourceWeight": "75.59981892247305", "direction": "Imp", "source_type": "primary", "targetWeight": "75.59981892247305" } }, { "key": "geid_107_4309", "source": "PeoplesRepublicofChinaChina", "target": "Denmark", "attributes": { "weight": 1109351.7428683694, "sourceWeight": "1109351.7428683694", "direction": "Imp", "source_type": "primary", "targetWeight": "1109351.7428683694" } }, { "key": "geid_107_4310", "source": "Japan", "target": "Denmark", "attributes": { "weight": 59383.657763602576, "sourceWeight": "59383.657763602576", "direction": "Imp", "source_type": "primary", "targetWeight": "59383.657763602576" } }, { "key": "geid_107_4311", "source": "Siberia", "target": "Denmark", "attributes": { "weight": 1145677.4558606178, "sourceWeight": "1145677.4558606178", "direction": "Imp", "source_type": "primary", "targetWeight": "1145677.4558606178" } }, { "key": "geid_107_4312", "source": "Australia", "target": "Denmark", "attributes": { "weight": 99262.56224520711, "sourceWeight": "99262.56224520711", "direction": "Imp", "source_type": "primary", "targetWeight": "99262.56224520711" } }, { "key": "geid_107_4313", "source": "NewZealand", "target": "Denmark", "attributes": { "weight": 12436.170212746816, "sourceWeight": "12436.170212746816", "direction": "Imp", "source_type": "primary", "targetWeight": "12436.170212746816" } }, { "key": "geid_107_4314", "source": "PacificIslands", "target": "Denmark", "attributes": { "weight": 30504.526935217873, "sourceWeight": "30504.526935217873", "direction": "Imp", "source_type": "primary", "targetWeight": "30504.526935217873" } }, { "key": "geid_107_4315", "source": "FaeroeIs", "target": "Denmark", "attributes": { "weight": 154223.630601845, "sourceWeight": "154223.630601845", "direction": "Imp", "source_type": "primary", "targetWeight": "154223.630601845" } }, { "key": "geid_107_4316", "source": "Iceland", "target": "Denmark", "attributes": { "weight": 393232.45812524355, "sourceWeight": "393232.45812524355", "direction": "Imp", "source_type": "primary", "targetWeight": "393232.45812524355" } }, { "key": "geid_107_4317", "source": "Greenland", "target": "Denmark", "attributes": { "weight": 208277.50113141324, "sourceWeight": "208277.50113141324", "direction": "Imp", "source_type": "primary", "targetWeight": "208277.50113141324" } }, { "key": "geid_107_4318", "source": "Unknown", "target": "Denmark", "attributes": { "weight": 15006.5640561109, "sourceWeight": "15006.5640561109", "direction": "Imp", "source_type": "primary", "targetWeight": "15006.5640561109" } }, { "key": "geid_107_4319", "source": "Denmark", "target": "GermanyZollverein", "attributes": { "weight": 12482550.701655753, "sourceWeight": "12482550.701655753", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4320", "source": "Denmark", "target": "UnitedKingdom", "attributes": { "weight": 44632054.09680772, "sourceWeight": "44632054.09680772", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4321", "source": "Denmark", "target": "Norway", "attributes": { "weight": 1824072.4309614296, "sourceWeight": "1824072.4309614296", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4322", "source": "Denmark", "target": "Sweden", "attributes": { "weight": 3538449.524666351, "sourceWeight": "3538449.524666351", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4323", "source": "Denmark", "target": "Finland", "attributes": { "weight": 797956.088726703, "sourceWeight": "797956.088726703", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4324", "source": "Denmark", "target": "RussiaUSSR", "attributes": { "weight": 62861.249434036334, "sourceWeight": "62861.249434036334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4325", "source": "Denmark", "target": "Estonia", "attributes": { "weight": 68720.23540052799, "sourceWeight": "68720.23540052799", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4326", "source": "Denmark", "target": "Latvia", "attributes": { "weight": 142505.6586688617, "sourceWeight": "142505.6586688617", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4327", "source": "Denmark", "target": "Lithuania", "attributes": { "weight": 20449.751018528958, "sourceWeight": "20449.751018528958", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4328", "source": "Denmark", "target": "Memel", "attributes": { "weight": 7748.981439553487, "sourceWeight": "7748.981439553487", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4329", "source": "Denmark", "target": "Poland", "attributes": { "weight": 152484.83476662813, "sourceWeight": "152484.83476662813", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4330", "source": "Denmark", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 327158.2163870021, "sourceWeight": "327158.2163870021", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4331", "source": "Denmark", "target": "Netherlands", "attributes": { "weight": 761554.7759155323, "sourceWeight": "761554.7759155323", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4332", "source": "Denmark", "target": "Belgium", "attributes": { "weight": 355697.14803023566, "sourceWeight": "355697.14803023566", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4333", "source": "Denmark", "target": "Luxemburg", "attributes": { "weight": 37.799909461236524, "sourceWeight": "37.799909461236524", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4334", "source": "Denmark", "target": "France", "attributes": { "weight": 466035.0837475851, "sourceWeight": "466035.0837475851", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4335", "source": "Denmark", "target": "AzoresWesternIsles_MadeiraIsles_Portugal", "attributes": { "weight": 19693.752829304227, "sourceWeight": "19693.752829304227", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4336", "source": "Denmark", "target": "CanaryIs_Spain", "attributes": { "weight": 151124.03802602363, "sourceWeight": "151124.03802602363", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4337", "source": "Denmark", "target": "Cyprus", "attributes": { "weight": 9865.776369382733, "sourceWeight": "9865.776369382733", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4338", "source": "Denmark", "target": "Italy", "attributes": { "weight": 505460.38931565476, "sourceWeight": "505460.38931565476", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4339", "source": "Denmark", "target": "Switzerland", "attributes": { "weight": 2414091.2177418703, "sourceWeight": "2414091.2177418703", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4340", "source": "Denmark", "target": "Czechoslovakia", "attributes": { "weight": 2068108.6464431726, "sourceWeight": "2068108.6464431726", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4341", "source": "Denmark", "target": "Austria", "attributes": { "weight": 241503.62154784013, "sourceWeight": "241503.62154784013", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4342", "source": "Denmark", "target": "Hungary", "attributes": { "weight": 34927.11634218255, "sourceWeight": "34927.11634218255", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4343", "source": "Denmark", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 10016.976007227679, "sourceWeight": "10016.976007227679", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4344", "source": "Denmark", "target": "Bulgaria", "attributes": { "weight": 26157.537347175672, "sourceWeight": "26157.537347175672", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4345", "source": "Denmark", "target": "Romania", "attributes": { "weight": 33377.32005427185, "sourceWeight": "33377.32005427185", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4346", "source": "Denmark", "target": "EuropeanTurkey", "attributes": { "weight": 13456.767768200201, "sourceWeight": "13456.767768200201", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4347", "source": "Denmark", "target": "Greece", "attributes": { "weight": 33490.71978265556, "sourceWeight": "33490.71978265556", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4348", "source": "Denmark", "target": "BritishNorthAmerica", "attributes": { "weight": 14023.76641011875, "sourceWeight": "14023.76641011875", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4349", "source": "Denmark", "target": "UnitedStatesofAmerica", "attributes": { "weight": 974821.8650958287, "sourceWeight": "974821.8650958287", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4350", "source": "Denmark", "target": "PuertoRico", "attributes": { "weight": 70118.83205059374, "sourceWeight": "70118.83205059374", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4351", "source": "Denmark", "target": "Cuba", "attributes": { "weight": 187525.3508371944, "sourceWeight": "187525.3508371944", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4352", "source": "Denmark", "target": "WestIndies", "attributes": { "weight": 147722.04617451233, "sourceWeight": "147722.04617451233", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4353", "source": "Denmark", "target": "Mexico", "attributes": { "weight": 12738.569488436708, "sourceWeight": "12738.569488436708", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4354", "source": "Denmark", "target": "CentralAmerica", "attributes": { "weight": 9638.976912615313, "sourceWeight": "9638.976912615313", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4355", "source": "Denmark", "target": "Brazil", "attributes": { "weight": 206085.10638266153, "sourceWeight": "206085.10638266153", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4356", "source": "Denmark", "target": "ArgentinaLaPlata", "attributes": { "weight": 264145.7673151208, "sourceWeight": "264145.7673151208", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4357", "source": "Denmark", "target": "Uruguay", "attributes": { "weight": 25552.73879579589, "sourceWeight": "25552.73879579589", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4358", "source": "Denmark", "target": "Chile", "attributes": { "weight": 42978.49705742593, "sourceWeight": "42978.49705742593", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4359", "source": "Denmark", "target": "Peru", "attributes": { "weight": 17954.956994087348, "sourceWeight": "17954.956994087348", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4360", "source": "Denmark", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 27442.734268857716, "sourceWeight": "27442.734268857716", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4361", "source": "Denmark", "target": "Venezuela", "attributes": { "weight": 62218.65097319531, "sourceWeight": "62218.65097319531", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4362", "source": "Denmark", "target": "SouthernAmericaother", "attributes": { "weight": 11566.772295138375, "sourceWeight": "11566.772295138375", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4363", "source": "Denmark", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 22944.545042970567, "sourceWeight": "22944.545042970567", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4364", "source": "Denmark", "target": "Morocco", "attributes": { "weight": 88035.98913521986, "sourceWeight": "88035.98913521986", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4365", "source": "Denmark", "target": "AlgeriaRegencyofAlgiers_TunisiaRegencyofTunis", "attributes": { "weight": 77792.21367122476, "sourceWeight": "77792.21367122476", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4366", "source": "Denmark", "target": "FrenchAfricaother", "attributes": { "weight": 4913.988229960748, "sourceWeight": "4913.988229960748", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4367", "source": "Denmark", "target": "BritishSouthAfrica", "attributes": { "weight": 50538.47894967323, "sourceWeight": "50538.47894967323", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4368", "source": "Denmark", "target": "BritishAfricaother", "attributes": { "weight": 33452.919873194325, "sourceWeight": "33452.919873194325", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4369", "source": "Denmark", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 2872.7931190539757, "sourceWeight": "2872.7931190539757", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4370", "source": "Denmark", "target": "Africaother", "attributes": { "weight": 11642.372114060849, "sourceWeight": "11642.372114060849", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4371", "source": "Denmark", "target": "Syria_WesternAnatolia", "attributes": { "weight": 5594.386600263005, "sourceWeight": "5594.386600263005", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4372", "source": "Denmark", "target": "SouthWestAsiaother", "attributes": { "weight": 1625.3961068331705, "sourceWeight": "1625.3961068331705", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4373", "source": "Denmark", "target": "India_SriLankaCeylon", "attributes": { "weight": 43545.49569934447, "sourceWeight": "43545.49569934447", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4374", "source": "Denmark", "target": "StraitsSettlements_StraitsSettlementsDependencies", "attributes": { "weight": 69173.83431406283, "sourceWeight": "69173.83431406283", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4375", "source": "Denmark", "target": "ThailandSiam", "attributes": { "weight": 139292.6663646566, "sourceWeight": "139292.6663646566", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4376", "source": "Denmark", "target": "FrenchIndochina", "attributes": { "weight": 2230.194658212955, "sourceWeight": "2230.194658212955", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4377", "source": "Denmark", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 32243.322770434752, "sourceWeight": "32243.322770434752", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4378", "source": "Denmark", "target": "Philippines", "attributes": { "weight": 8467.17971931698, "sourceWeight": "8467.17971931698", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4379", "source": "Denmark", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 90001.58442720416, "sourceWeight": "90001.58442720416", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4380", "source": "Denmark", "target": "Japan", "attributes": { "weight": 113210.72883640339, "sourceWeight": "113210.72883640339", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4381", "source": "Denmark", "target": "Siberia", "attributes": { "weight": 1360.7967406045148, "sourceWeight": "1360.7967406045148", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4382", "source": "Denmark", "target": "Australia", "attributes": { "weight": 54205.07016741317, "sourceWeight": "54205.07016741317", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4383", "source": "Denmark", "target": "NewZealand", "attributes": { "weight": 42978.49705742593, "sourceWeight": "42978.49705742593", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4384", "source": "Denmark", "target": "PacificIslands", "attributes": { "weight": 75.59981892247305, "sourceWeight": "75.59981892247305", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4385", "source": "Denmark", "target": "FaeroeIs", "attributes": { "weight": 135096.87641445932, "sourceWeight": "135096.87641445932", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4386", "source": "Denmark", "target": "Iceland", "attributes": { "weight": 339821.1860565163, "sourceWeight": "339821.1860565163", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4387", "source": "Denmark", "target": "Greenland", "attributes": { "weight": 47514.486192774304, "sourceWeight": "47514.486192774304", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4388", "source": "UnitedStatesofAmerica", "target": "Philippines", "attributes": { "weight": 13592078.646595726, "sourceWeight": "13592078.646595726", "direction": "Imp", "source_type": "primary", "targetWeight": "13592078.646595726" } }, { "key": "geid_107_4389", "source": "Japan", "target": "Philippines", "attributes": { "weight": 1922703.0665614407, "sourceWeight": "1922703.0665614407", "direction": "Imp", "source_type": "primary", "targetWeight": "1922703.0665614407" } }, { "key": "geid_107_4390", "source": "Ireland_UnitedKingdom", "target": "Philippines", "attributes": { "weight": 1256671.0824091537, "sourceWeight": "1256671.0824091537", "direction": "Imp", "source_type": "primary", "targetWeight": "1256671.0824091537" } }, { "key": "geid_107_4391", "source": "PeoplesRepublicofChinaChina", "target": "Philippines", "attributes": { "weight": 1570843.4944535973, "sourceWeight": "1570843.4944535973", "direction": "Imp", "source_type": "primary", "targetWeight": "1570843.4944535973" } }, { "key": "geid_107_4392", "source": "GermanyZollverein", "target": "Philippines", "attributes": { "weight": 475426.91442165856, "sourceWeight": "475426.91442165856", "direction": "Imp", "source_type": "primary", "targetWeight": "475426.91442165856" } }, { "key": "geid_107_4393", "source": "Spain", "target": "Philippines", "attributes": { "weight": 147228.57052301205, "sourceWeight": "147228.57052301205", "direction": "Imp", "source_type": "primary", "targetWeight": "147228.57052301205" } }, { "key": "geid_107_4394", "source": "FrenchIndia", "target": "Philippines", "attributes": { "weight": 2215698.575277829, "sourceWeight": "2215698.575277829", "direction": "Imp", "source_type": "primary", "targetWeight": "2215698.575277829" } }, { "key": "geid_107_4395", "source": "France", "target": "Philippines", "attributes": { "weight": 258704.19651352806, "sourceWeight": "258704.19651352806", "direction": "Imp", "source_type": "primary", "targetWeight": "258704.19651352806" } }, { "key": "geid_107_4396", "source": "BritishEastIndies", "target": "Philippines", "attributes": { "weight": 358206.5895404915, "sourceWeight": "358206.5895404915", "direction": "Imp", "source_type": "primary", "targetWeight": "358206.5895404915" } }, { "key": "geid_107_4397", "source": "Australia", "target": "Philippines", "attributes": { "weight": 548506.5055468729, "sourceWeight": "548506.5055468729", "direction": "Imp", "source_type": "primary", "targetWeight": "548506.5055468729" } }, { "key": "geid_107_4398", "source": "IndonesiaDutchEastIndies", "target": "Philippines", "attributes": { "weight": 761647.0427893924, "sourceWeight": "761647.0427893924", "direction": "Imp", "source_type": "primary", "targetWeight": "761647.0427893924" } }, { "key": "geid_107_4399", "source": "Italy", "target": "Philippines", "attributes": { "weight": 40571.38034866193, "sourceWeight": "40571.38034866193", "direction": "Imp", "source_type": "primary", "targetWeight": "40571.38034866193" } }, { "key": "geid_107_4400", "source": "Netherlands", "target": "Philippines", "attributes": { "weight": 92627.65768623291, "sourceWeight": "92627.65768623291", "direction": "Imp", "source_type": "primary", "targetWeight": "92627.65768623291" } }, { "key": "geid_107_4401", "source": "HongKong", "target": "Philippines", "attributes": { "weight": 97231.74326468084, "sourceWeight": "97231.74326468084", "direction": "Imp", "source_type": "primary", "targetWeight": "97231.74326468084" } }, { "key": "geid_107_4402", "source": "Belgium", "target": "Philippines", "attributes": { "weight": 76121.90174328155, "sourceWeight": "76121.90174328155", "direction": "Imp", "source_type": "primary", "targetWeight": "76121.90174328155" } }, { "key": "geid_107_4403", "source": "Switzerland", "target": "Philippines", "attributes": { "weight": 367355.2377179896, "sourceWeight": "367355.2377179896", "direction": "Imp", "source_type": "primary", "targetWeight": "367355.2377179896" } }, { "key": "geid_107_4404", "source": "HawaiiSandwichIs", "target": "Philippines", "attributes": { "weight": 209993.5832013144, "sourceWeight": "209993.5832013144", "direction": "Imp", "source_type": "primary", "targetWeight": "209993.5832013144" } }, { "key": "geid_107_4405", "source": "JapanChina", "target": "Philippines", "attributes": { "weight": 114826.91600636461, "sourceWeight": "114826.91600636461", "direction": "Imp", "source_type": "primary", "targetWeight": "114826.91600636461" } }, { "key": "geid_107_4406", "source": "CanadaProvinceofCanada", "target": "Philippines", "attributes": { "weight": 34566.31061807423, "sourceWeight": "34566.31061807423", "direction": "Imp", "source_type": "primary", "targetWeight": "34566.31061807423" } }, { "key": "geid_107_4407", "source": "ThailandSiam", "target": "Philippines", "attributes": { "weight": 23289.800316962377, "sourceWeight": "23289.800316962377", "direction": "Imp", "source_type": "primary", "targetWeight": "23289.800316962377" } }, { "key": "geid_107_4408", "source": "Norway", "target": "Philippines", "attributes": { "weight": 18310.911251985046, "sourceWeight": "18310.911251985046", "direction": "Imp", "source_type": "primary", "targetWeight": "18310.911251985046" } }, { "key": "geid_107_4409", "source": "Sweden", "target": "Philippines", "attributes": { "weight": 21133.358161652865, "sourceWeight": "21133.358161652865", "direction": "Imp", "source_type": "primary", "targetWeight": "21133.358161652865" } }, { "key": "geid_107_4410", "source": "Guam", "target": "Philippines", "attributes": { "weight": 100.81774960382585, "sourceWeight": "100.81774960382585", "direction": "Imp", "source_type": "primary", "targetWeight": "100.81774960382585" } }, { "key": "geid_107_4411", "source": "Denmark", "target": "Philippines", "attributes": { "weight": 11039.318541999279, "sourceWeight": "11039.318541999279", "direction": "Imp", "source_type": "primary", "targetWeight": "11039.318541999279" } }, { "key": "geid_107_4412", "source": "Austria", "target": "Philippines", "attributes": { "weight": 26138.12678289011, "sourceWeight": "26138.12678289011", "direction": "Imp", "source_type": "primary", "targetWeight": "26138.12678289011" } }, { "key": "geid_107_4413", "source": "AzoresWesternIsles_MadeiraIsles", "target": "Philippines", "attributes": { "weight": 39.269413629168774, "sourceWeight": "39.269413629168774", "direction": "Imp", "source_type": "primary", "targetWeight": "39.269413629168774" } }, { "key": "geid_107_4414", "source": "Czechoslovakia", "target": "Philippines", "attributes": { "weight": 13914.08716323605, "sourceWeight": "13914.08716323605", "direction": "Imp", "source_type": "primary", "targetWeight": "13914.08716323605" } }, { "key": "geid_107_4415", "source": "Finland", "target": "Philippines", "attributes": { "weight": 446.36608557854595, "sourceWeight": "446.36608557854595", "direction": "Imp", "source_type": "primary", "targetWeight": "446.36608557854595" } }, { "key": "geid_107_4416", "source": "Gibraltar", "target": "Philippines", "attributes": { "weight": 23.066561014268192, "sourceWeight": "23.066561014268192", "direction": "Imp", "source_type": "primary", "targetWeight": "23.066561014268192" } }, { "key": "geid_107_4417", "source": "Hungary", "target": "Philippines", "attributes": { "weight": 20.14104595880003, "sourceWeight": "20.14104595880003", "direction": "Imp", "source_type": "primary", "targetWeight": "20.14104595880003" } }, { "key": "geid_107_4418", "source": "Malta", "target": "Philippines", "attributes": { "weight": 44.782884310628, "sourceWeight": "44.782884310628", "direction": "Imp", "source_type": "primary", "targetWeight": "44.782884310628" } }, { "key": "geid_107_4419", "source": "Portugal", "target": "Philippines", "attributes": { "weight": 87.54041204439343, "sourceWeight": "87.54041204439343", "direction": "Imp", "source_type": "primary", "targetWeight": "87.54041204439343" } }, { "key": "geid_107_4420", "source": "EuropeanRussia", "target": "Philippines", "attributes": { "weight": 102.84310618068842, "sourceWeight": "102.84310618068842", "direction": "Imp", "source_type": "primary", "targetWeight": "102.84310618068842" } }, { "key": "geid_107_4421", "source": "EuropeanTurkey", "target": "Philippines", "attributes": { "weight": 0.225039619651397, "sourceWeight": "0.225039619651397", "direction": "Imp", "source_type": "primary", "targetWeight": "0.225039619651397" } }, { "key": "geid_107_4422", "source": "ArgentinaLaPlata", "target": "Philippines", "attributes": { "weight": 179.9191759112919, "sourceWeight": "179.9191759112919", "direction": "Imp", "source_type": "primary", "targetWeight": "179.9191759112919" } }, { "key": "geid_107_4423", "source": "BritishWestIndies", "target": "Philippines", "attributes": { "weight": 657.1156893820793, "sourceWeight": "657.1156893820793", "direction": "Imp", "source_type": "primary", "targetWeight": "657.1156893820793" } }, { "key": "geid_107_4424", "source": "Chile", "target": "Philippines", "attributes": { "weight": 68.63708399367609, "sourceWeight": "68.63708399367609", "direction": "Imp", "source_type": "primary", "targetWeight": "68.63708399367609" } }, { "key": "geid_107_4425", "source": "Cuba", "target": "Philippines", "attributes": { "weight": 1594.293185420322, "sourceWeight": "1594.293185420322", "direction": "Imp", "source_type": "primary", "targetWeight": "1594.293185420322" } }, { "key": "geid_107_4426", "source": "Ecuador", "target": "Philippines", "attributes": { "weight": 12.60221870047823, "sourceWeight": "12.60221870047823", "direction": "Imp", "source_type": "primary", "targetWeight": "12.60221870047823" } }, { "key": "geid_107_4427", "source": "Mexico", "target": "Philippines", "attributes": { "weight": 3.0380348652938594, "sourceWeight": "3.0380348652938594", "direction": "Imp", "source_type": "primary", "targetWeight": "3.0380348652938594" } }, { "key": "geid_107_4428", "source": "Panama", "target": "Philippines", "attributes": { "weight": 65.37400950873082, "sourceWeight": "65.37400950873082", "direction": "Imp", "source_type": "primary", "targetWeight": "65.37400950873082" } }, { "key": "geid_107_4429", "source": "Uruguay", "target": "Philippines", "attributes": { "weight": 4889.435816165902, "sourceWeight": "4889.435816165902", "direction": "Imp", "source_type": "primary", "targetWeight": "4889.435816165902" } }, { "key": "geid_107_4430", "source": "Arabia", "target": "Philippines", "attributes": { "weight": 46.47068145801348, "sourceWeight": "46.47068145801348", "direction": "Imp", "source_type": "primary", "targetWeight": "46.47068145801348" } }, { "key": "geid_107_4431", "source": "KoreaChosen", "target": "Philippines", "attributes": { "weight": 2040.5467511890422, "sourceWeight": "2040.5467511890422", "direction": "Imp", "source_type": "primary", "targetWeight": "2040.5467511890422" } }, { "key": "geid_107_4432", "source": "Palestine_Syria", "target": "Philippines", "attributes": { "weight": 91.59112519811858, "sourceWeight": "91.59112519811858", "direction": "Imp", "source_type": "primary", "targetWeight": "91.59112519811858" } }, { "key": "geid_107_4433", "source": "PortugueseAsia", "target": "Philippines", "attributes": { "weight": 1.350237717908382, "sourceWeight": "1.350237717908382", "direction": "Imp", "source_type": "primary", "targetWeight": "1.350237717908382" } }, { "key": "geid_107_4434", "source": "AsianTurkey", "target": "Philippines", "attributes": { "weight": 10.576862123615658, "sourceWeight": "10.576862123615658", "direction": "Imp", "source_type": "primary", "targetWeight": "10.576862123615658" } }, { "key": "geid_107_4435", "source": "NewZealand", "target": "Philippines", "attributes": { "weight": 26985.963549926746, "sourceWeight": "26985.963549926746", "direction": "Imp", "source_type": "primary", "targetWeight": "26985.963549926746" } }, { "key": "geid_107_4436", "source": "FrenchPolynesia", "target": "Philippines", "attributes": { "weight": 40.84469096672856, "sourceWeight": "40.84469096672856", "direction": "Imp", "source_type": "primary", "targetWeight": "40.84469096672856" } }, { "key": "geid_107_4437", "source": "BritishAfrica", "target": "Philippines", "attributes": { "weight": 14169.732171160038, "sourceWeight": "14169.732171160038", "direction": "Imp", "source_type": "primary", "targetWeight": "14169.732171160038" } }, { "key": "geid_107_4438", "source": "EgyptArabRepublicEgypt", "target": "Philippines", "attributes": { "weight": 22.166402535662602, "sourceWeight": "22.166402535662602", "direction": "Imp", "source_type": "primary", "targetWeight": "22.166402535662602" } }, { "key": "geid_107_4439", "source": "FrenchAfrica", "target": "Philippines", "attributes": { "weight": 151.0015847860874, "sourceWeight": "151.0015847860874", "direction": "Imp", "source_type": "primary", "targetWeight": "151.0015847860874" } }, { "key": "geid_107_4440", "source": "Philippines", "target": "UnitedStatesofAmerica", "attributes": { "weight": 21831511.288435906, "sourceWeight": "21831511.288435906", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4441", "source": "Philippines", "target": "HawaiiSandwichIs", "attributes": { "weight": 84831.72266245939, "sourceWeight": "84831.72266245939", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4442", "source": "Philippines", "target": "PuertoRico", "attributes": { "weight": 5.625990491284925, "sourceWeight": "5.625990491284925", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4443", "source": "Philippines", "target": "Guam", "attributes": { "weight": 19861.65927100282, "sourceWeight": "19861.65927100282", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4444", "source": "Philippines", "target": "UnitedKingdom", "attributes": { "weight": 2120632.163233434, "sourceWeight": "2120632.163233434", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4445", "source": "Philippines", "target": "Austria", "attributes": { "weight": 1755.3090332808965, "sourceWeight": "1755.3090332808965", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4446", "source": "Philippines", "target": "Belgium", "attributes": { "weight": 277183.0998415829, "sourceWeight": "277183.0998415829", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4447", "source": "Philippines", "target": "Denmark", "attributes": { "weight": 40.50713153725146, "sourceWeight": "40.50713153725146", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4448", "source": "Philippines", "target": "France", "attributes": { "weight": 527204.030111052, "sourceWeight": "527204.030111052", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4449", "source": "Philippines", "target": "GermanyZollverein", "attributes": { "weight": 594870.2931855519, "sourceWeight": "594870.2931855519", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4450", "source": "Philippines", "target": "Gibraltar", "attributes": { "weight": 2039.7591125202623, "sourceWeight": "2039.7591125202623", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4451", "source": "Philippines", "target": "Greece", "attributes": { "weight": 906.9096671951298, "sourceWeight": "906.9096671951298", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4452", "source": "Philippines", "target": "Italy", "attributes": { "weight": 321116.7971474563, "sourceWeight": "321116.7971474563", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4453", "source": "Philippines", "target": "Netherlands", "attributes": { "weight": 376915.8209192595, "sourceWeight": "376915.8209192595", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4454", "source": "Philippines", "target": "Portugal", "attributes": { "weight": 11059.684627577732, "sourceWeight": "11059.684627577732", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4455", "source": "Philippines", "target": "Spain", "attributes": { "weight": 1002126.4057054521, "sourceWeight": "1002126.4057054521", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4456", "source": "Philippines", "target": "Sweden", "attributes": { "weight": 841.6481774962248, "sourceWeight": "841.6481774962248", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4457", "source": "Philippines", "target": "Norway", "attributes": { "weight": 13288.364500795342, "sourceWeight": "13288.364500795342", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4458", "source": "Philippines", "target": "Switzerland", "attributes": { "weight": 6251.82567353546, "sourceWeight": "6251.82567353546", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4459", "source": "Philippines", "target": "CanadaProvinceofCanada", "attributes": { "weight": 74790.11727418458, "sourceWeight": "74790.11727418458", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4460", "source": "Philippines", "target": "ArgentinaLaPlata", "attributes": { "weight": 101.26782884312864, "sourceWeight": "101.26782884312864", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4461", "source": "Philippines", "target": "Cuba", "attributes": { "weight": 21526.38985737403, "sourceWeight": "21526.38985737403", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4462", "source": "Philippines", "target": "Panama", "attributes": { "weight": 3944.269413630035, "sourceWeight": "3944.269413630035", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4463", "source": "Philippines", "target": "Peru", "attributes": { "weight": 294.68938193350436, "sourceWeight": "294.68938193350436", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4464", "source": "Philippines", "target": "Uruguay", "attributes": { "weight": 5464.412044375222, "sourceWeight": "5464.412044375222", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4465", "source": "Philippines", "target": "Aden", "attributes": { "weight": 29.25515055468161, "sourceWeight": "29.25515055468161", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4466", "source": "Philippines", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 654034.1093503828, "sourceWeight": "654034.1093503828", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4467", "source": "Philippines", "target": "JapanChina", "attributes": { "weight": 2569.502377179651, "sourceWeight": "2569.502377179651", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4468", "source": "Philippines", "target": "BritishEastIndies", "attributes": { "weight": 175578.27416802628, "sourceWeight": "175578.27416802628", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4469", "source": "Philippines", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 25342.61172742242, "sourceWeight": "25342.61172742242", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4470", "source": "Philippines", "target": "FrenchIndia", "attributes": { "weight": 6720.245641839842, "sourceWeight": "6720.245641839842", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4471", "source": "Philippines", "target": "PortugueseAsia", "attributes": { "weight": 735.5419968305911, "sourceWeight": "735.5419968305911", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4472", "source": "Philippines", "target": "HongKong", "attributes": { "weight": 481147.0839937676, "sourceWeight": "481147.0839937676", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4473", "source": "Philippines", "target": "Japan", "attributes": { "weight": 1401836.9397784409, "sourceWeight": "1401836.9397784409", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4474", "source": "Philippines", "target": "ThailandSiam", "attributes": { "weight": 11157.01426307696, "sourceWeight": "11157.01426307696", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4475", "source": "Philippines", "target": "Asiaother", "attributes": { "weight": 2306.656101426819, "sourceWeight": "2306.656101426819", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4476", "source": "Philippines", "target": "Australia", "attributes": { "weight": 145701.78922348717, "sourceWeight": "145701.78922348717", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4477", "source": "Philippines", "target": "NewZealand", "attributes": { "weight": 20795.686212365945, "sourceWeight": "20795.686212365945", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4478", "source": "Philippines", "target": "Fiji", "attributes": { "weight": 5.400950871633528, "sourceWeight": "5.400950871633528", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4479", "source": "Philippines", "target": "CarolineIs", "attributes": { "weight": 90.0158478605588, "sourceWeight": "90.0158478605588", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4480", "source": "Philippines", "target": "SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 44.782884310628, "sourceWeight": "44.782884310628", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4481", "source": "Philippines", "target": "BritishAfrica", "attributes": { "weight": 830.3961965136549, "sourceWeight": "830.3961965136549", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4482", "source": "Philippines", "target": "CanaryIs", "attributes": { "weight": 5434.706814581237, "sourceWeight": "5434.706814581237", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4483", "source": "Philippines", "target": "FrenchAfrica", "attributes": { "weight": 10670.47860539064, "sourceWeight": "10670.47860539064", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4484", "source": "Philippines", "target": "SpanishAfrica", "attributes": { "weight": 8810.751188591496, "sourceWeight": "8810.751188591496", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4485", "source": "Philippines", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 646.5388272584636, "sourceWeight": "646.5388272584636", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4486", "source": "France", "target": "FrenchIndochina", "attributes": { "weight": 10322679.945676427, "sourceWeight": "10322679.945676427", "direction": "Imp", "source_type": "primary", "targetWeight": "10322679.945676427" } }, { "key": "geid_107_4487", "source": "FrenchColonies", "target": "FrenchIndochina", "attributes": { "weight": 816817.5645087998, "sourceWeight": "816817.5645087998", "direction": "Imp", "source_type": "primary", "targetWeight": "816817.5645087998" } }, { "key": "geid_107_4488", "source": "GermanyZollverein", "target": "FrenchIndochina", "attributes": { "weight": 23675.871435037676, "sourceWeight": "23675.871435037676", "direction": "Imp", "source_type": "primary", "targetWeight": "23675.871435037676" } }, { "key": "geid_107_4489", "source": "Belgium_Luxemburg", "target": "FrenchIndochina", "attributes": { "weight": 118379.35717518837, "sourceWeight": "118379.35717518837", "direction": "Imp", "source_type": "primary", "targetWeight": "118379.35717518837" } }, { "key": "geid_107_4490", "source": "UnitedKingdom", "target": "FrenchIndochina", "attributes": { "weight": 355138.0715255651, "sourceWeight": "355138.0715255651", "direction": "Imp", "source_type": "primary", "targetWeight": "355138.0715255651" } }, { "key": "geid_107_4491", "source": "Europeother", "target": "FrenchIndochina", "attributes": { "weight": 343300.13580804627, "sourceWeight": "343300.13580804627", "direction": "Imp", "source_type": "primary", "targetWeight": "343300.13580804627" } }, { "key": "geid_107_4492", "source": "PeoplesRepublicofChinaChina", "target": "FrenchIndochina", "attributes": { "weight": 2024287.0076957212, "sourceWeight": "2024287.0076957212", "direction": "Imp", "source_type": "primary", "targetWeight": "2024287.0076957212" } }, { "key": "geid_107_4493", "source": "HongKong", "target": "FrenchIndochina", "attributes": { "weight": 3586894.522408208, "sourceWeight": "3586894.522408208", "direction": "Imp", "source_type": "primary", "targetWeight": "3586894.522408208" } }, { "key": "geid_107_4494", "source": "India", "target": "FrenchIndochina", "attributes": { "weight": 982548.6645540636, "sourceWeight": "982548.6645540636", "direction": "Imp", "source_type": "primary", "targetWeight": "982548.6645540636" } }, { "key": "geid_107_4495", "source": "IndonesiaDutchEastIndies", "target": "FrenchIndochina", "attributes": { "weight": 970710.7288365447, "sourceWeight": "970710.7288365447", "direction": "Imp", "source_type": "primary", "targetWeight": "970710.7288365447" } }, { "key": "geid_107_4496", "source": "Japan", "target": "FrenchIndochina", "attributes": { "weight": 366976.00724308396, "sourceWeight": "366976.00724308396", "direction": "Imp", "source_type": "primary", "targetWeight": "366976.00724308396" } }, { "key": "geid_107_4497", "source": "ThailandSiam", "target": "FrenchIndochina", "attributes": { "weight": 82865.55002263187, "sourceWeight": "82865.55002263187", "direction": "Imp", "source_type": "primary", "targetWeight": "82865.55002263187" } }, { "key": "geid_107_4498", "source": "Singapore", "target": "FrenchIndochina", "attributes": { "weight": 781303.7573562433, "sourceWeight": "781303.7573562433", "direction": "Imp", "source_type": "primary", "targetWeight": "781303.7573562433" } }, { "key": "geid_107_4499", "source": "Africaother", "target": "FrenchIndochina", "attributes": { "weight": 11837.935717518838, "sourceWeight": "11837.935717518838", "direction": "Imp", "source_type": "primary", "targetWeight": "11837.935717518838" } }, { "key": "geid_107_4500", "source": "UnitedStatesofAmerica", "target": "FrenchIndochina", "attributes": { "weight": 651086.464463536, "sourceWeight": "651086.464463536", "direction": "Imp", "source_type": "primary", "targetWeight": "651086.464463536" } }, { "key": "geid_107_4501", "source": "FrenchIndochina", "target": "France", "attributes": { "weight": 5244205.522860846, "sourceWeight": "5244205.522860846", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4502", "source": "FrenchIndochina", "target": "FrenchColonies", "attributes": { "weight": 153893.1643277449, "sourceWeight": "153893.1643277449", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4503", "source": "FrenchIndochina", "target": "GermanyZollverein", "attributes": { "weight": 130217.29289270722, "sourceWeight": "130217.29289270722", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4504", "source": "FrenchIndochina", "target": "Belgium_Luxemburg", "attributes": { "weight": 307786.3286554898, "sourceWeight": "307786.3286554898", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4505", "source": "FrenchIndochina", "target": "UnitedKingdom", "attributes": { "weight": 106541.42145766954, "sourceWeight": "106541.42145766954", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4506", "source": "FrenchIndochina", "target": "Europeother", "attributes": { "weight": 71027.61430511302, "sourceWeight": "71027.61430511302", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4507", "source": "FrenchIndochina", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1905907.6505205329, "sourceWeight": "1905907.6505205329", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4508", "source": "FrenchIndochina", "target": "HongKong", "attributes": { "weight": 11624852.874603499, "sourceWeight": "11624852.874603499", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4509", "source": "FrenchIndochina", "target": "India", "attributes": { "weight": 11837.935717518838, "sourceWeight": "11837.935717518838", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4510", "source": "FrenchIndochina", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 1160117.7003168461, "sourceWeight": "1160117.7003168461", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4511", "source": "FrenchIndochina", "target": "Japan", "attributes": { "weight": 1704662.7433227126, "sourceWeight": "1704662.7433227126", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4512", "source": "FrenchIndochina", "target": "Philippines", "attributes": { "weight": 1941421.4576730893, "sourceWeight": "1941421.4576730893", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4513", "source": "FrenchIndochina", "target": "ThailandSiam", "attributes": { "weight": 236758.71435037674, "sourceWeight": "236758.71435037674", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4514", "source": "FrenchIndochina", "target": "Singapore", "attributes": { "weight": 2403100.950656324, "sourceWeight": "2403100.950656324", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4515", "source": "FrenchIndochina", "target": "Africaother", "attributes": { "weight": 82865.55002263187, "sourceWeight": "82865.55002263187", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4516", "source": "FrenchIndochina", "target": "UnitedStatesofAmerica", "attributes": { "weight": 603734.7215934608, "sourceWeight": "603734.7215934608", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4517", "source": "GermanyZollverein", "target": "Switzerland", "attributes": { "weight": 20038908.555928513, "sourceWeight": "20038908.555928513", "direction": "Imp", "source_type": "primary", "targetWeight": "20038908.555928513" } }, { "key": "geid_107_4518", "source": "Austria", "target": "Switzerland", "attributes": { "weight": 1403476.233591321, "sourceWeight": "1403476.233591321", "direction": "Imp", "source_type": "primary", "targetWeight": "1403476.233591321" } }, { "key": "geid_107_4519", "source": "France", "target": "Switzerland", "attributes": { "weight": 18698749.207805797, "sourceWeight": "18698749.207805797", "direction": "Imp", "source_type": "primary", "targetWeight": "18698749.207805797" } }, { "key": "geid_107_4520", "source": "Italy", "target": "Switzerland", "attributes": { "weight": 11884871.88774438, "sourceWeight": "11884871.88774438", "direction": "Imp", "source_type": "primary", "targetWeight": "11884871.88774438" } }, { "key": "geid_107_4521", "source": "Belgium", "target": "Switzerland", "attributes": { "weight": 3490173.3816242767, "sourceWeight": "3490173.3816242767", "direction": "Imp", "source_type": "primary", "targetWeight": "3490173.3816242767" } }, { "key": "geid_107_4522", "source": "Netherlands", "target": "Switzerland", "attributes": { "weight": 1710709.3707577793, "sourceWeight": "1710709.3707577793", "direction": "Imp", "source_type": "primary", "targetWeight": "1710709.3707577793" } }, { "key": "geid_107_4523", "source": "UnitedKingdom", "target": "Switzerland", "attributes": { "weight": 7578788.139437498, "sourceWeight": "7578788.139437498", "direction": "Imp", "source_type": "primary", "targetWeight": "7578788.139437498" } }, { "key": "geid_107_4524", "source": "Ireland", "target": "Switzerland", "attributes": { "weight": 158930.73789061364, "sourceWeight": "158930.73789061364", "direction": "Imp", "source_type": "primary", "targetWeight": "158930.73789061364" } }, { "key": "geid_107_4525", "source": "Spain", "target": "Switzerland", "attributes": { "weight": 1433795.8352210491, "sourceWeight": "1433795.8352210491", "direction": "Imp", "source_type": "primary", "targetWeight": "1433795.8352210491" } }, { "key": "geid_107_4526", "source": "Portugal", "target": "Switzerland", "attributes": { "weight": 46715.255771891105, "sourceWeight": "46715.255771891105", "direction": "Imp", "source_type": "primary", "targetWeight": "46715.255771891105" } }, { "key": "geid_107_4527", "source": "Denmark", "target": "Switzerland", "attributes": { "weight": 2680277.5011345246, "sourceWeight": "2680277.5011345246", "direction": "Imp", "source_type": "primary", "targetWeight": "2680277.5011345246" } }, { "key": "geid_107_4528", "source": "Norway", "target": "Switzerland", "attributes": { "weight": 166469.44318713577, "sourceWeight": "166469.44318713577", "direction": "Imp", "source_type": "primary", "targetWeight": "166469.44318713577" } }, { "key": "geid_107_4529", "source": "Sweden", "target": "Switzerland", "attributes": { "weight": 504928.4744233415, "sourceWeight": "504928.4744233415", "direction": "Imp", "source_type": "primary", "targetWeight": "504928.4744233415" } }, { "key": "geid_107_4530", "source": "Finland", "target": "Switzerland", "attributes": { "weight": 20927.116342258094, "sourceWeight": "20927.116342258094", "direction": "Imp", "source_type": "primary", "targetWeight": "20927.116342258094" } }, { "key": "geid_107_4531", "source": "Estonia_Latvia", "target": "Switzerland", "attributes": { "weight": 13264.825713006116, "sourceWeight": "13264.825713006116", "direction": "Imp", "source_type": "primary", "targetWeight": "13264.825713006116" } }, { "key": "geid_107_4532", "source": "Lithuania", "target": "Switzerland", "attributes": { "weight": 21256.677229537752, "sourceWeight": "21256.677229537752", "direction": "Imp", "source_type": "primary", "targetWeight": "21256.677229537752" } }, { "key": "geid_107_4533", "source": "Poland", "target": "Switzerland", "attributes": { "weight": 601119.0583980908, "sourceWeight": "601119.0583980908", "direction": "Imp", "source_type": "primary", "targetWeight": "601119.0583980908" } }, { "key": "geid_107_4534", "source": "Czechoslovakia", "target": "Switzerland", "attributes": { "weight": 3420471.25396463, "sourceWeight": "3420471.25396463", "direction": "Imp", "source_type": "primary", "targetWeight": "3420471.25396463" } }, { "key": "geid_107_4535", "source": "Hungary", "target": "Switzerland", "attributes": { "weight": 628431.4169313922, "sourceWeight": "628431.4169313922", "direction": "Imp", "source_type": "primary", "targetWeight": "628431.4169313922" } }, { "key": "geid_107_4536", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Switzerland", "attributes": { "weight": 851379.3571760788, "sourceWeight": "851379.3571760788", "direction": "Imp", "source_type": "primary", "targetWeight": "851379.3571760788" } }, { "key": "geid_107_4537", "source": "Greece", "target": "Switzerland", "attributes": { "weight": 87168.85468546876, "sourceWeight": "87168.85468546876", "direction": "Imp", "source_type": "primary", "targetWeight": "87168.85468546876" } }, { "key": "geid_107_4538", "source": "Bulgaria", "target": "Switzerland", "attributes": { "weight": 195058.85015864583, "sourceWeight": "195058.85015864583", "direction": "Imp", "source_type": "primary", "targetWeight": "195058.85015864583" } }, { "key": "geid_107_4539", "source": "Romania", "target": "Switzerland", "attributes": { "weight": 510654.59483982547, "sourceWeight": "510654.59483982547", "direction": "Imp", "source_type": "primary", "targetWeight": "510654.59483982547" } }, { "key": "geid_107_4540", "source": "Ukraine", "target": "Switzerland", "attributes": { "weight": 1153.4631054787926, "sourceWeight": "1153.4631054787926", "direction": "Imp", "source_type": "primary", "targetWeight": "1153.4631054787926" } }, { "key": "geid_107_4541", "source": "RussiaUSSR", "target": "Switzerland", "attributes": { "weight": 399057.0393847523, "sourceWeight": "399057.0393847523", "direction": "Imp", "source_type": "primary", "targetWeight": "399057.0393847523" } }, { "key": "geid_107_4542", "source": "TurkeyOttomanEmpire", "target": "Switzerland", "attributes": { "weight": 367377.99909499544, "sourceWeight": "367377.99909499544", "direction": "Imp", "source_type": "primary", "targetWeight": "367377.99909499544" } }, { "key": "geid_107_4543", "source": "EgyptArabRepublicEgypt", "target": "Switzerland", "attributes": { "weight": 2732883.6577665396, "sourceWeight": "2732883.6577665396", "direction": "Imp", "source_type": "primary", "targetWeight": "2732883.6577665396" } }, { "key": "geid_107_4544", "source": "AlgeriaRegencyofAlgiers_TunisiaRegencyofTunis", "target": "Switzerland", "attributes": { "weight": 155717.519239637, "sourceWeight": "155717.519239637", "direction": "Imp", "source_type": "primary", "targetWeight": "155717.519239637" } }, { "key": "geid_107_4545", "source": "Morocco", "target": "Switzerland", "attributes": { "weight": 236583.52195588237, "sourceWeight": "236583.52195588237", "direction": "Imp", "source_type": "primary", "targetWeight": "236583.52195588237" } }, { "key": "geid_107_4546", "source": "BritishSouthAfrica", "target": "Switzerland", "attributes": { "weight": 174008.14848365786, "sourceWeight": "174008.14848365786", "direction": "Imp", "source_type": "primary", "targetWeight": "174008.14848365786" } }, { "key": "geid_107_4547", "source": "WesternAfrica", "target": "Switzerland", "attributes": { "weight": 255780.44363992228, "sourceWeight": "255780.44363992228", "direction": "Imp", "source_type": "primary", "targetWeight": "255780.44363992228" } }, { "key": "geid_107_4548", "source": "EasternAfrica", "target": "Switzerland", "attributes": { "weight": 81772.2951562644, "sourceWeight": "81772.2951562644", "direction": "Imp", "source_type": "primary", "targetWeight": "81772.2951562644" } }, { "key": "geid_107_4549", "source": "IranPersia_IraqMesopotamia", "target": "Switzerland", "attributes": { "weight": 224554.54957017495, "sourceWeight": "224554.54957017495", "direction": "Imp", "source_type": "primary", "targetWeight": "224554.54957017495" } }, { "key": "geid_107_4550", "source": "WesternAnatolia", "target": "Switzerland", "attributes": { "weight": 49557.718424678125, "sourceWeight": "49557.718424678125", "direction": "Imp", "source_type": "primary", "targetWeight": "49557.718424678125" } }, { "key": "geid_107_4551", "source": "India", "target": "Switzerland", "attributes": { "weight": 1121578.089634486, "sourceWeight": "1121578.089634486", "direction": "Imp", "source_type": "primary", "targetWeight": "1121578.089634486" } }, { "key": "geid_107_4552", "source": "StraitsSettlements", "target": "Switzerland", "attributes": { "weight": 226614.3051156728, "sourceWeight": "226614.3051156728", "direction": "Imp", "source_type": "primary", "targetWeight": "226614.3051156728" } }, { "key": "geid_107_4553", "source": "ThailandSiam", "target": "Switzerland", "attributes": { "weight": 1194.6582163887495, "sourceWeight": "1194.6582163887495", "direction": "Imp", "source_type": "primary", "targetWeight": "1194.6582163887495" } }, { "key": "geid_107_4554", "source": "FrenchIndochina", "target": "Switzerland", "attributes": { "weight": 14418.288818484909, "sourceWeight": "14418.288818484909", "direction": "Imp", "source_type": "primary", "targetWeight": "14418.288818484909" } }, { "key": "geid_107_4555", "source": "IndonesiaDutchEastIndies", "target": "Switzerland", "attributes": { "weight": 691006.7904036167, "sourceWeight": "691006.7904036167", "direction": "Imp", "source_type": "primary", "targetWeight": "691006.7904036167" } }, { "key": "geid_107_4556", "source": "Philippines", "target": "Switzerland", "attributes": { "weight": 146448.6192848967, "sourceWeight": "146448.6192848967", "direction": "Imp", "source_type": "primary", "targetWeight": "146448.6192848967" } }, { "key": "geid_107_4557", "source": "PeoplesRepublicofChinaChina", "target": "Switzerland", "attributes": { "weight": 503404.2553196731, "sourceWeight": "503404.2553196731", "direction": "Imp", "source_type": "primary", "targetWeight": "503404.2553196731" } }, { "key": "geid_107_4558", "source": "Japan", "target": "Switzerland", "attributes": { "weight": 1419377.5464025643, "sourceWeight": "1419377.5464025643", "direction": "Imp", "source_type": "primary", "targetWeight": "1419377.5464025643" } }, { "key": "geid_107_4559", "source": "Switzerland", "target": "GermanyZollverein", "attributes": { "weight": 13500997.283852898, "sourceWeight": "13500997.283852898", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4560", "source": "Switzerland", "target": "Austria", "attributes": { "weight": 3703522.8610269437, "sourceWeight": "3703522.8610269437", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4561", "source": "Switzerland", "target": "France", "attributes": { "weight": 8502135.35537327, "sourceWeight": "8502135.35537327", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4562", "source": "Switzerland", "target": "Italy", "attributes": { "weight": 3890260.298781778, "sourceWeight": "3890260.298781778", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4563", "source": "Switzerland", "target": "Belgium", "attributes": { "weight": 1858970.5749227141, "sourceWeight": "1858970.5749227141", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4564", "source": "Switzerland", "target": "Netherlands", "attributes": { "weight": 1751204.164782267, "sourceWeight": "1751204.164782267", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4565", "source": "Switzerland", "target": "UnitedKingdom", "attributes": { "weight": 16287475.780913291, "sourceWeight": "16287475.780913291", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4566", "source": "Switzerland", "target": "Ireland", "attributes": { "weight": 67724.7623359691, "sourceWeight": "67724.7623359691", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4567", "source": "Switzerland", "target": "Spain", "attributes": { "weight": 2129334.0878247614, "sourceWeight": "2129334.0878247614", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4568", "source": "Switzerland", "target": "Portugal", "attributes": { "weight": 253926.6636489742, "sourceWeight": "253926.6636489742", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4569", "source": "Switzerland", "target": "Denmark", "attributes": { "weight": 708432.3223185284, "sourceWeight": "708432.3223185284", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4570", "source": "Switzerland", "target": "Norway", "attributes": { "weight": 330096.4237214845, "sourceWeight": "330096.4237214845", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4571", "source": "Switzerland", "target": "Sweden", "attributes": { "weight": 949464.9162526862, "sourceWeight": "949464.9162526862", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4572", "source": "Switzerland", "target": "Finland", "attributes": { "weight": 164492.07786345782, "sourceWeight": "164492.07786345782", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4573", "source": "Switzerland", "target": "Estonia_Latvia", "attributes": { "weight": 206305.11543706406, "sourceWeight": "206305.11543706406", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4574", "source": "Switzerland", "target": "Lithuania", "attributes": { "weight": 46385.69488461145, "sourceWeight": "46385.69488461145", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4575", "source": "Switzerland", "target": "Poland", "attributes": { "weight": 1257892.7116355333, "sourceWeight": "1257892.7116355333", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4576", "source": "Switzerland", "target": "Czechoslovakia", "attributes": { "weight": 1561912.6301510152, "sourceWeight": "1561912.6301510152", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4577", "source": "Switzerland", "target": "Hungary", "attributes": { "weight": 856940.6971489231, "sourceWeight": "856940.6971489231", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4578", "source": "Switzerland", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 290796.2879133856, "sourceWeight": "290796.2879133856", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4579", "source": "Switzerland", "target": "Greece", "attributes": { "weight": 331867.8134906126, "sourceWeight": "331867.8134906126", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4580", "source": "Switzerland", "target": "Bulgaria", "attributes": { "weight": 88857.854232777, "sourceWeight": "88857.854232777", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4581", "source": "Switzerland", "target": "Romania", "attributes": { "weight": 395637.8451792259, "sourceWeight": "395637.8451792259", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4582", "source": "Switzerland", "target": "Ukraine", "attributes": { "weight": 370.75599818961194, "sourceWeight": "370.75599818961194", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4583", "source": "Switzerland", "target": "RussiaUSSR", "attributes": { "weight": 65335.44590319161, "sourceWeight": "65335.44590319161", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4584", "source": "Switzerland", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 195141.24038046575, "sourceWeight": "195141.24038046575", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4585", "source": "Switzerland", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 661387.5056593578, "sourceWeight": "661387.5056593578", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4586", "source": "Switzerland", "target": "AlgeriaRegencyofAlgiers_TunisiaRegencyofTunis", "attributes": { "weight": 121401.99185164293, "sourceWeight": "121401.99185164293", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4587", "source": "Switzerland", "target": "Morocco", "attributes": { "weight": 94748.75509290083, "sourceWeight": "94748.75509290083", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4588", "source": "Switzerland", "target": "BritishSouthAfrica", "attributes": { "weight": 490221.8198284869, "sourceWeight": "490221.8198284869", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4589", "source": "Switzerland", "target": "WesternAfrica", "attributes": { "weight": 301836.5776372541, "sourceWeight": "301836.5776372541", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4590", "source": "Switzerland", "target": "EasternAfrica", "attributes": { "weight": 61380.715255835756, "sourceWeight": "61380.715255835756", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4591", "source": "Switzerland", "target": "IranPersia_IraqMesopotamia", "attributes": { "weight": 53306.473517484206, "sourceWeight": "53306.473517484206", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4592", "source": "Switzerland", "target": "WesternAnatolia", "attributes": { "weight": 126551.38071538754, "sourceWeight": "126551.38071538754", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4593", "source": "Switzerland", "target": "India", "attributes": { "weight": 2354671.3445022255, "sourceWeight": "2354671.3445022255", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4594", "source": "Switzerland", "target": "StraitsSettlements", "attributes": { "weight": 363258.48800399975, "sourceWeight": "363258.48800399975", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4595", "source": "Switzerland", "target": "ThailandSiam", "attributes": { "weight": 81937.07559990423, "sourceWeight": "81937.07559990423", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4596", "source": "Switzerland", "target": "FrenchIndochina", "attributes": { "weight": 110814.848347784, "sourceWeight": "110814.848347784", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4597", "source": "Switzerland", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 689400.1810781284, "sourceWeight": "689400.1810781284", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4598", "source": "Switzerland", "target": "Philippines", "attributes": { "weight": 239673.15527412912, "sourceWeight": "239673.15527412912", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4599", "source": "Switzerland", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1358408.7822558281, "sourceWeight": "1358408.7822558281", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4600", "source": "Switzerland", "target": "Japan", "attributes": { "weight": 2762914.8936198982, "sourceWeight": "2762914.8936198982", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4601", "source": "CanadaProvinceofCanada", "target": "Switzerland", "attributes": { "weight": 2970208.691718801, "sourceWeight": "2970208.691718801", "direction": "Imp", "source_type": "primary", "targetWeight": "2970208.691718801" } }, { "key": "geid_107_4602", "source": "UnitedStatesofAmerica", "target": "Switzerland", "attributes": { "weight": 8516965.595300855, "sourceWeight": "8516965.595300855", "direction": "Imp", "source_type": "primary", "targetWeight": "8516965.595300855" } }, { "key": "geid_107_4603", "source": "Mexico", "target": "Switzerland", "attributes": { "weight": 149373.47215950364, "sourceWeight": "149373.47215950364", "direction": "Imp", "source_type": "primary", "targetWeight": "149373.47215950364" } }, { "key": "geid_107_4604", "source": "CentralAmerica", "target": "Switzerland", "attributes": { "weight": 202721.1407878978, "sourceWeight": "202721.1407878978", "direction": "Imp", "source_type": "primary", "targetWeight": "202721.1407878978" } }, { "key": "geid_107_4605", "source": "Cuba", "target": "Switzerland", "attributes": { "weight": 215738.79583544418, "sourceWeight": "215738.79583544418", "direction": "Imp", "source_type": "primary", "targetWeight": "215738.79583544418" } }, { "key": "geid_107_4606", "source": "Jamaica", "target": "Switzerland", "attributes": { "weight": 118600.72430976586, "sourceWeight": "118600.72430976586", "direction": "Imp", "source_type": "primary", "targetWeight": "118600.72430976586" } }, { "key": "geid_107_4607", "source": "ColombiaNewGranadaGranColombia", "target": "Switzerland", "attributes": { "weight": 66612.49434140028, "sourceWeight": "66612.49434140028", "direction": "Imp", "source_type": "primary", "targetWeight": "66612.49434140028" } }, { "key": "geid_107_4608", "source": "Venezuela", "target": "Switzerland", "attributes": { "weight": 75428.24807613104, "sourceWeight": "75428.24807613104", "direction": "Imp", "source_type": "primary", "targetWeight": "75428.24807613104" } }, { "key": "geid_107_4609", "source": "Brazil", "target": "Switzerland", "attributes": { "weight": 1015583.069263167, "sourceWeight": "1015583.069263167", "direction": "Imp", "source_type": "primary", "targetWeight": "1015583.069263167" } }, { "key": "geid_107_4610", "source": "ArgentinaLaPlata", "target": "Switzerland", "attributes": { "weight": 3648527.387962151, "sourceWeight": "3648527.387962151", "direction": "Imp", "source_type": "primary", "targetWeight": "3648527.387962151" } }, { "key": "geid_107_4611", "source": "Chile", "target": "Switzerland", "attributes": { "weight": 45479.40244459239, "sourceWeight": "45479.40244459239", "direction": "Imp", "source_type": "primary", "targetWeight": "45479.40244459239" } }, { "key": "geid_107_4612", "source": "Paraguay_Uruguay", "target": "Switzerland", "attributes": { "weight": 51123.13263925649, "sourceWeight": "51123.13263925649", "direction": "Imp", "source_type": "primary", "targetWeight": "51123.13263925649" } }, { "key": "geid_107_4613", "source": "Peru", "target": "Switzerland", "attributes": { "weight": 2059.755545497844, "sourceWeight": "2059.755545497844", "direction": "Imp", "source_type": "primary", "targetWeight": "2059.755545497844" } }, { "key": "geid_107_4614", "source": "Ecuador", "target": "Switzerland", "attributes": { "weight": 61669.08103220545, "sourceWeight": "61669.08103220545", "direction": "Imp", "source_type": "primary", "targetWeight": "61669.08103220545" } }, { "key": "geid_107_4615", "source": "Bolivia", "target": "Switzerland", "attributes": { "weight": 741.5119963792239, "sourceWeight": "741.5119963792239", "direction": "Imp", "source_type": "primary", "targetWeight": "741.5119963792239" } }, { "key": "geid_107_4616", "source": "Australia", "target": "Switzerland", "attributes": { "weight": 1046973.7437765541, "sourceWeight": "1046973.7437765541", "direction": "Imp", "source_type": "primary", "targetWeight": "1046973.7437765541" } }, { "key": "geid_107_4617", "source": "NewZealand", "target": "Switzerland", "attributes": { "weight": 35015.84427346335, "sourceWeight": "35015.84427346335", "direction": "Imp", "source_type": "primary", "targetWeight": "35015.84427346335" } }, { "key": "geid_107_4618", "source": "Switzerland", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1836395.6541440578, "sourceWeight": "1836395.6541440578", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4619", "source": "Switzerland", "target": "UnitedStatesofAmerica", "attributes": { "weight": 8480301.946590994, "sourceWeight": "8480301.946590994", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4620", "source": "Switzerland", "target": "Mexico", "attributes": { "weight": 403712.0869175774, "sourceWeight": "403712.0869175774", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4621", "source": "Switzerland", "target": "CentralAmerica", "attributes": { "weight": 117982.79764611651, "sourceWeight": "117982.79764611651", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4622", "source": "Switzerland", "target": "Cuba", "attributes": { "weight": 548265.7311006162, "sourceWeight": "548265.7311006162", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4623", "source": "Switzerland", "target": "Jamaica", "attributes": { "weight": 41318.696242686754, "sourceWeight": "41318.696242686754", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4624", "source": "Switzerland", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 187149.38886393412, "sourceWeight": "187149.38886393412", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4625", "source": "Switzerland", "target": "Venezuela", "attributes": { "weight": 128034.40470814599, "sourceWeight": "128034.40470814599", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4626", "source": "Switzerland", "target": "Brazil", "attributes": { "weight": 793912.177456689, "sourceWeight": "793912.177456689", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4627", "source": "Switzerland", "target": "ArgentinaLaPlata", "attributes": { "weight": 1242279.7646006597, "sourceWeight": "1242279.7646006597", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4628", "source": "Switzerland", "target": "Chile", "attributes": { "weight": 248159.34812158026, "sourceWeight": "248159.34812158026", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4629", "source": "Switzerland", "target": "Paraguay_Uruguay", "attributes": { "weight": 159342.68899971322, "sourceWeight": "159342.68899971322", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4630", "source": "Switzerland", "target": "Peru", "attributes": { "weight": 194811.6794931861, "sourceWeight": "194811.6794931861", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4631", "source": "Switzerland", "target": "Ecuador", "attributes": { "weight": 17961.0683567412, "sourceWeight": "17961.0683567412", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4632", "source": "Switzerland", "target": "Bolivia", "attributes": { "weight": 30319.601629728266, "sourceWeight": "30319.601629728266", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4633", "source": "Switzerland", "target": "Australia", "attributes": { "weight": 1394784.0651893201, "sourceWeight": "1394784.0651893201", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4634", "source": "Switzerland", "target": "NewZealand", "attributes": { "weight": 182947.4875511185, "sourceWeight": "182947.4875511185", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4635", "source": "Switzerland", "target": "Unknown", "attributes": { "weight": 4407.876867365386, "sourceWeight": "4407.876867365386", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4636", "source": "UnitedKingdom", "target": "TrinidadandTobago", "attributes": { "weight": 1402313, "sourceWeight": "1402313", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1402313" } }, { "key": "geid_107_4637", "source": "BritishNorthAmerica", "target": "TrinidadandTobago", "attributes": { "weight": 814386, "sourceWeight": "814386", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "814386" } }, { "key": "geid_107_4638", "source": "BritishEastIndies", "target": "TrinidadandTobago", "attributes": { "weight": 229318, "sourceWeight": "229318", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "229318" } }, { "key": "geid_107_4639", "source": "GuyanaBritishGuiana", "target": "TrinidadandTobago", "attributes": { "weight": 29446, "sourceWeight": "29446", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "29446" } }, { "key": "geid_107_4640", "source": "BritishWestIndies", "target": "TrinidadandTobago", "attributes": { "weight": 58160, "sourceWeight": "58160", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "58160" } }, { "key": "geid_107_4641", "source": "BritishColoniesother", "target": "TrinidadandTobago", "attributes": { "weight": 1579, "sourceWeight": "1579", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1579" } }, { "key": "geid_107_4642", "source": "ArgentinaLaPlata", "target": "TrinidadandTobago", "attributes": { "weight": 20286, "sourceWeight": "20286", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "20286" } }, { "key": "geid_107_4643", "source": "Austria", "target": "TrinidadandTobago", "attributes": { "weight": 465, "sourceWeight": "465", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "465" } }, { "key": "geid_107_4644", "source": "Belgium", "target": "TrinidadandTobago", "attributes": { "weight": 5269, "sourceWeight": "5269", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5269" } }, { "key": "geid_107_4645", "source": "Denmark", "target": "TrinidadandTobago", "attributes": { "weight": 11026, "sourceWeight": "11026", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "11026" } }, { "key": "geid_107_4646", "source": "France", "target": "TrinidadandTobago", "attributes": { "weight": 74750, "sourceWeight": "74750", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "74750" } }, { "key": "geid_107_4647", "source": "FrenchWestIndies", "target": "TrinidadandTobago", "attributes": { "weight": 870, "sourceWeight": "870", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "870" } }, { "key": "geid_107_4648", "source": "GermanyZollverein", "target": "TrinidadandTobago", "attributes": { "weight": 58654, "sourceWeight": "58654", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "58654" } }, { "key": "geid_107_4649", "source": "Netherlands", "target": "TrinidadandTobago", "attributes": { "weight": 75361, "sourceWeight": "75361", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "75361" } }, { "key": "geid_107_4650", "source": "Hungary", "target": "TrinidadandTobago", "attributes": { "weight": 11, "sourceWeight": "11", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "11" } }, { "key": "geid_107_4651", "source": "Italy", "target": "TrinidadandTobago", "attributes": { "weight": 7516, "sourceWeight": "7516", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7516" } }, { "key": "geid_107_4652", "source": "Norway", "target": "TrinidadandTobago", "attributes": { "weight": 2614, "sourceWeight": "2614", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2614" } }, { "key": "geid_107_4653", "source": "Portugal", "target": "TrinidadandTobago", "attributes": { "weight": 12673, "sourceWeight": "12673", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "12673" } }, { "key": "geid_107_4654", "source": "Spain", "target": "TrinidadandTobago", "attributes": { "weight": 2423, "sourceWeight": "2423", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2423" } }, { "key": "geid_107_4655", "source": "Sweden", "target": "TrinidadandTobago", "attributes": { "weight": 2787, "sourceWeight": "2787", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2787" } }, { "key": "geid_107_4656", "source": "Switzerland", "target": "TrinidadandTobago", "attributes": { "weight": 2237, "sourceWeight": "2237", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2237" } }, { "key": "geid_107_4657", "source": "UnitedStatesofAmerica", "target": "TrinidadandTobago", "attributes": { "weight": 931652, "sourceWeight": "931652", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "931652" } }, { "key": "geid_107_4658", "source": "Venezuela", "target": "TrinidadandTobago", "attributes": { "weight": 282913, "sourceWeight": "282913", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "282913" } }, { "key": "geid_107_4659", "source": "Othercountries", "target": "TrinidadandTobago", "attributes": { "weight": 19451, "sourceWeight": "19451", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "19451" } }, { "key": "geid_107_4660", "source": "***NA", "target": "TrinidadandTobago", "attributes": { "weight": 226932, "sourceWeight": "226932", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "226932" } }, { "key": "geid_107_4661", "source": "TrinidadandTobago", "target": "UnitedKingdom", "attributes": { "weight": 2228609, "sourceWeight": "2228609", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4662", "source": "TrinidadandTobago", "target": "BritishNorthAmerica", "attributes": { "weight": 455980, "sourceWeight": "455980", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4663", "source": "TrinidadandTobago", "target": "Australia", "attributes": { "weight": 45873, "sourceWeight": "45873", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4664", "source": "TrinidadandTobago", "target": "GuyanaBritishGuiana", "attributes": { "weight": 38088, "sourceWeight": "38088", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4665", "source": "TrinidadandTobago", "target": "BritishWestIndies", "attributes": { "weight": 122816, "sourceWeight": "122816", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4666", "source": "TrinidadandTobago", "target": "NewZealand", "attributes": { "weight": 1802, "sourceWeight": "1802", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4667", "source": "TrinidadandTobago", "target": "SouthAfrica", "attributes": { "weight": 1028, "sourceWeight": "1028", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4668", "source": "TrinidadandTobago", "target": "BritishColoniesother", "attributes": { "weight": 47065, "sourceWeight": "47065", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4669", "source": "TrinidadandTobago", "target": "Austria", "attributes": { "weight": 2314, "sourceWeight": "2314", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4670", "source": "TrinidadandTobago", "target": "Belgium", "attributes": { "weight": 10789, "sourceWeight": "10789", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4671", "source": "TrinidadandTobago", "target": "Denmark", "attributes": { "weight": 4442, "sourceWeight": "4442", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4672", "source": "TrinidadandTobago", "target": "France", "attributes": { "weight": 184854, "sourceWeight": "184854", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4673", "source": "TrinidadandTobago", "target": "GermanyZollverein", "attributes": { "weight": 110367, "sourceWeight": "110367", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4674", "source": "TrinidadandTobago", "target": "Netherlands", "attributes": { "weight": 116091, "sourceWeight": "116091", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4675", "source": "TrinidadandTobago", "target": "Italy", "attributes": { "weight": 6294, "sourceWeight": "6294", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4676", "source": "TrinidadandTobago", "target": "Norway", "attributes": { "weight": 542, "sourceWeight": "542", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4677", "source": "TrinidadandTobago", "target": "Spain", "attributes": { "weight": 3700, "sourceWeight": "3700", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4678", "source": "TrinidadandTobago", "target": "UnitedStatesofAmerica", "attributes": { "weight": 926423, "sourceWeight": "926423", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4679", "source": "TrinidadandTobago", "target": "Venezuela", "attributes": { "weight": 2234, "sourceWeight": "2234", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4680", "source": "TrinidadandTobago", "target": "Othercountries", "attributes": { "weight": 90466, "sourceWeight": "90466", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4681", "source": "TrinidadandTobago", "target": "***NA", "attributes": { "weight": 401, "sourceWeight": "401", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4682", "source": "TrinidadandTobago", "target": "***NA", "attributes": { "weight": 121047, "sourceWeight": "121047", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4683", "source": "Portugal", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 532.2881672265771, "sourceWeight": "532.2881672265771", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4684", "source": "GermanyZollverein", "target": "Portugal", "attributes": { "weight": 3477218.3650615904, "sourceWeight": "3477218.3650615904", "direction": "Imp", "source_type": "primary", "targetWeight": "3477218.3650615904" } }, { "key": "geid_107_4685", "source": "ArgentinaLaPlata", "target": "Portugal", "attributes": { "weight": 684695.7820082121, "sourceWeight": "684695.7820082121", "direction": "Imp", "source_type": "primary", "targetWeight": "684695.7820082121" } }, { "key": "geid_107_4686", "source": "Austria", "target": "Portugal", "attributes": { "weight": 10233.669279581934, "sourceWeight": "10233.669279581934", "direction": "Imp", "source_type": "primary", "targetWeight": "10233.669279581934" } }, { "key": "geid_107_4687", "source": "Belgium", "target": "Portugal", "attributes": { "weight": 1778961.552818216, "sourceWeight": "1778961.552818216", "direction": "Imp", "source_type": "primary", "targetWeight": "1778961.552818216" } }, { "key": "geid_107_4688", "source": "PeoplesRepublicofChinaChina", "target": "Portugal", "attributes": { "weight": 11078.014184397163, "sourceWeight": "11078.014184397163", "direction": "Imp", "source_type": "primary", "targetWeight": "11078.014184397163" } }, { "key": "geid_107_4689", "source": "DanzigFreeCityofDanzig", "target": "Portugal", "attributes": { "weight": 206.04703247480404, "sourceWeight": "206.04703247480404", "direction": "Imp", "source_type": "primary", "targetWeight": "206.04703247480404" } }, { "key": "geid_107_4690", "source": "Denmark", "target": "Portugal", "attributes": { "weight": 66553.93803658082, "sourceWeight": "66553.93803658082", "direction": "Imp", "source_type": "primary", "targetWeight": "66553.93803658082" } }, { "key": "geid_107_4691", "source": "EgyptArabRepublicEgypt", "target": "Portugal", "attributes": { "weight": 81254.19932810751, "sourceWeight": "81254.19932810751", "direction": "Imp", "source_type": "primary", "targetWeight": "81254.19932810751" } }, { "key": "geid_107_4692", "source": "Spain", "target": "Portugal", "attributes": { "weight": 783424.412094065, "sourceWeight": "783424.412094065", "direction": "Imp", "source_type": "primary", "targetWeight": "783424.412094065" } }, { "key": "geid_107_4693", "source": "UnitedStatesofAmerica", "target": "Portugal", "attributes": { "weight": 2258608.4359835763, "sourceWeight": "2258608.4359835763", "direction": "Imp", "source_type": "primary", "targetWeight": "2258608.4359835763" } }, { "key": "geid_107_4694", "source": "Brazil", "target": "Portugal", "attributes": { "weight": 893396.0432997388, "sourceWeight": "893396.0432997388", "direction": "Imp", "source_type": "primary", "targetWeight": "893396.0432997388" } }, { "key": "geid_107_4695", "source": "France", "target": "Portugal", "attributes": { "weight": 810278.4621127287, "sourceWeight": "810278.4621127287", "direction": "Imp", "source_type": "primary", "targetWeight": "810278.4621127287" } }, { "key": "geid_107_4696", "source": "Netherlands", "target": "Portugal", "attributes": { "weight": 641160.8809257186, "sourceWeight": "641160.8809257186", "direction": "Imp", "source_type": "primary", "targetWeight": "641160.8809257186" } }, { "key": "geid_107_4697", "source": "UnitedKingdom", "target": "Portugal", "attributes": { "weight": 7308291.153415455, "sourceWeight": "7308291.153415455", "direction": "Imp", "source_type": "primary", "targetWeight": "7308291.153415455" } }, { "key": "geid_107_4698", "source": "Italy", "target": "Portugal", "attributes": { "weight": 347233.2960059724, "sourceWeight": "347233.2960059724", "direction": "Imp", "source_type": "primary", "targetWeight": "347233.2960059724" } }, { "key": "geid_107_4699", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Portugal", "attributes": { "weight": 68757.74542739829, "sourceWeight": "68757.74542739829", "direction": "Imp", "source_type": "primary", "targetWeight": "68757.74542739829" } }, { "key": "geid_107_4700", "source": "Morocco", "target": "Portugal", "attributes": { "weight": 11132.512131392312, "sourceWeight": "11132.512131392312", "direction": "Imp", "source_type": "primary", "targetWeight": "11132.512131392312" } }, { "key": "geid_107_4701", "source": "Norway", "target": "Portugal", "attributes": { "weight": 879114.5949981337, "sourceWeight": "879114.5949981337", "direction": "Imp", "source_type": "primary", "targetWeight": "879114.5949981337" } }, { "key": "geid_107_4702", "source": "RussiaUSSR", "target": "Portugal", "attributes": { "weight": 13.43784994400896, "sourceWeight": "13.43784994400896", "direction": "Imp", "source_type": "primary", "targetWeight": "13.43784994400896" } }, { "key": "geid_107_4703", "source": "Sweden", "target": "Portugal", "attributes": { "weight": 76193.3557297499, "sourceWeight": "76193.3557297499", "direction": "Imp", "source_type": "primary", "targetWeight": "76193.3557297499" } }, { "key": "geid_107_4704", "source": "Switzerland", "target": "Portugal", "attributes": { "weight": 196027.62224710715, "sourceWeight": "196027.62224710715", "direction": "Imp", "source_type": "primary", "targetWeight": "196027.62224710715" } }, { "key": "geid_107_4705", "source": "Czechoslovakia", "target": "Portugal", "attributes": { "weight": 38257.55879059351, "sourceWeight": "38257.55879059351", "direction": "Imp", "source_type": "primary", "targetWeight": "38257.55879059351" } }, { "key": "geid_107_4706", "source": "TurkeyOttomanEmpire", "target": "Portugal", "attributes": { "weight": 388.95110115714823, "sourceWeight": "388.95110115714823", "direction": "Imp", "source_type": "primary", "targetWeight": "388.95110115714823" } }, { "key": "geid_107_4707", "source": "Uruguay", "target": "Portugal", "attributes": { "weight": 20427.771556550953, "sourceWeight": "20427.771556550953", "direction": "Imp", "source_type": "primary", "targetWeight": "20427.771556550953" } }, { "key": "geid_107_4708", "source": "Othercountries", "target": "Portugal", "attributes": { "weight": 122473.31093691677, "sourceWeight": "122473.31093691677", "direction": "Imp", "source_type": "primary", "targetWeight": "122473.31093691677" } }, { "key": "geid_107_4709", "source": "AngolaPortugueseWestAfrica", "target": "Portugal", "attributes": { "weight": 754444.1955953714, "sourceWeight": "754444.1955953714", "direction": "Imp", "source_type": "primary", "targetWeight": "754444.1955953714" } }, { "key": "geid_107_4710", "source": "CapeVerde", "target": "Portugal", "attributes": { "weight": 26285.927584919747, "sourceWeight": "26285.927584919747", "direction": "Imp", "source_type": "primary", "targetWeight": "26285.927584919747" } }, { "key": "geid_107_4711", "source": "GuineaBissauPortugueseGuinea", "target": "Portugal", "attributes": { "weight": 57693.169092945136, "sourceWeight": "57693.169092945136", "direction": "Imp", "source_type": "primary", "targetWeight": "57693.169092945136" } }, { "key": "geid_107_4712", "source": "SaoTomePrincipe", "target": "Portugal", "attributes": { "weight": 67928.33146696529, "sourceWeight": "67928.33146696529", "direction": "Imp", "source_type": "primary", "targetWeight": "67928.33146696529" } }, { "key": "geid_107_4713", "source": "MozambiquePortugueseEastAfrica", "target": "Portugal", "attributes": { "weight": 561180.2911534155, "sourceWeight": "561180.2911534155", "direction": "Imp", "source_type": "primary", "targetWeight": "561180.2911534155" } }, { "key": "geid_107_4714", "source": "PortugueseIndiainclGoaDiuDaman", "target": "Portugal", "attributes": { "weight": 353.8633818589026, "sourceWeight": "353.8633818589026", "direction": "Imp", "source_type": "primary", "targetWeight": "353.8633818589026" } }, { "key": "geid_107_4715", "source": "EastTimorPortugueseTimor_Macao", "target": "Portugal", "attributes": { "weight": 195.59537140724152, "sourceWeight": "195.59537140724152", "direction": "Imp", "source_type": "primary", "targetWeight": "195.59537140724152" } }, { "key": "geid_107_4716", "source": "Unknown", "target": "Portugal", "attributes": { "weight": 49932.06420306085, "sourceWeight": "49932.06420306085", "direction": "Imp", "source_type": "primary", "targetWeight": "49932.06420306085" } }, { "key": "geid_107_4717", "source": "Portugal", "target": "GermanyZollverein", "attributes": { "weight": 624265.0242627846, "sourceWeight": "624265.0242627846", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4718", "source": "Portugal", "target": "ArgentinaLaPlata", "attributes": { "weight": 41336.319522209786, "sourceWeight": "41336.319522209786", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4719", "source": "Portugal", "target": "Austria", "attributes": { "weight": 263.5311683463979, "sourceWeight": "263.5311683463979", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4720", "source": "Portugal", "target": "Belgium", "attributes": { "weight": 516968.2717431878, "sourceWeight": "516968.2717431878", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4721", "source": "Portugal", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 848.0776409107876, "sourceWeight": "848.0776409107876", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4722", "source": "Portugal", "target": "Denmark", "attributes": { "weight": 139928.3314669653, "sourceWeight": "139928.3314669653", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4723", "source": "Portugal", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 36743.56103023516, "sourceWeight": "36743.56103023516", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4724", "source": "Portugal", "target": "Spain", "attributes": { "weight": 183394.5502053005, "sourceWeight": "183394.5502053005", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4725", "source": "Portugal", "target": "UnitedStatesofAmerica", "attributes": { "weight": 313700.6345651363, "sourceWeight": "313700.6345651363", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4726", "source": "Portugal", "target": "Brazil", "attributes": { "weight": 455683.46397909673, "sourceWeight": "455683.46397909673", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4727", "source": "Portugal", "target": "France", "attributes": { "weight": 543513.9977603584, "sourceWeight": "543513.9977603584", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4728", "source": "Portugal", "target": "Netherlands", "attributes": { "weight": 208425.53191489363, "sourceWeight": "208425.53191489363", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4729", "source": "Portugal", "target": "UnitedKingdom", "attributes": { "weight": 1904865.9947741695, "sourceWeight": "1904865.9947741695", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4730", "source": "Portugal", "target": "Italy", "attributes": { "weight": 277360.20903322136, "sourceWeight": "277360.20903322136", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4731", "source": "Portugal", "target": "Morocco", "attributes": { "weight": 6154.535274356103, "sourceWeight": "6154.535274356103", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4732", "source": "Portugal", "target": "Norway", "attributes": { "weight": 203912.65397536397, "sourceWeight": "203912.65397536397", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4733", "source": "Portugal", "target": "RussiaUSSR", "attributes": { "weight": 1463.979096677865, "sourceWeight": "1463.979096677865", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4734", "source": "Portugal", "target": "Sweden", "attributes": { "weight": 36924.972004479285, "sourceWeight": "36924.972004479285", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4735", "source": "Portugal", "target": "Switzerland", "attributes": { "weight": 2223.217618514371, "sourceWeight": "2223.217618514371", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4736", "source": "Portugal", "target": "Czechoslovakia", "attributes": { "weight": 177.6782381485629, "sourceWeight": "177.6782381485629", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4737", "source": "Portugal", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 13704.367301231805, "sourceWeight": "13704.367301231805", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4738", "source": "Portugal", "target": "Uruguay", "attributes": { "weight": 6859.275849197463, "sourceWeight": "6859.275849197463", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4739", "source": "Portugal", "target": "Othercountries", "attributes": { "weight": 54424.78536767451, "sourceWeight": "54424.78536767451", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4740", "source": "Portugal", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 554261.2915266891, "sourceWeight": "554261.2915266891", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4741", "source": "Portugal", "target": "CapeVerde", "attributes": { "weight": 53244.49421425906, "sourceWeight": "53244.49421425906", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4742", "source": "Portugal", "target": "GuineaBissauPortugueseGuinea", "attributes": { "weight": 66370.28742067936, "sourceWeight": "66370.28742067936", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4743", "source": "Portugal", "target": "SaoTomePrincipe", "attributes": { "weight": 90541.24673385592, "sourceWeight": "90541.24673385592", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4744", "source": "Portugal", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 197446.0619634192, "sourceWeight": "197446.0619634192", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4745", "source": "Portugal", "target": "PortugueseIndiainclGoaDiuDaman", "attributes": { "weight": 5611.795446061964, "sourceWeight": "5611.795446061964", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4746", "source": "Portugal", "target": "EastTimorPortugueseTimor_Macao", "attributes": { "weight": 6340.425531914894, "sourceWeight": "6340.425531914894", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4747", "source": "Portugal", "target": "Unknown", "attributes": { "weight": 535016.7973124301, "sourceWeight": "535016.7973124301", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4748", "source": "UnitedKingdom", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 316288, "sourceWeight": "316288", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "316288" } }, { "key": "geid_107_4749", "source": "SouthAfrica", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 20189, "sourceWeight": "20189", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "20189" } }, { "key": "geid_107_4750", "source": "India", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 60150, "sourceWeight": "60150", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "60150" } }, { "key": "geid_107_4751", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 15977, "sourceWeight": "15977", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "15977" } }, { "key": "geid_107_4752", "source": "ZambiaNorthernRhodesia", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 441, "sourceWeight": "441", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "441" } }, { "key": "geid_107_4753", "source": "KenyaBritishEastAfricaProtectorate", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 296, "sourceWeight": "296", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "296" } }, { "key": "geid_107_4754", "source": "Australia", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 773, "sourceWeight": "773", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "773" } }, { "key": "geid_107_4755", "source": "CanadaProvinceofCanada", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 1534, "sourceWeight": "1534", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1534" } }, { "key": "geid_107_4756", "source": "TanzaniaTanganyika", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 58, "sourceWeight": "58", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "58" } }, { "key": "geid_107_4757", "source": "BritishColoniesother", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 201, "sourceWeight": "201", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "201" } }, { "key": "geid_107_4758", "source": "MozambiquePortugueseEastAfrica", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 69823, "sourceWeight": "69823", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "69823" } }, { "key": "geid_107_4759", "source": "Portugal", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 305, "sourceWeight": "305", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "305" } }, { "key": "geid_107_4760", "source": "France", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 3856, "sourceWeight": "3856", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3856" } }, { "key": "geid_107_4761", "source": "Belgium", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 686, "sourceWeight": "686", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "686" } }, { "key": "geid_107_4762", "source": "Netherlands", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 23997, "sourceWeight": "23997", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "23997" } }, { "key": "geid_107_4763", "source": "Italy", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 2735, "sourceWeight": "2735", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2735" } }, { "key": "geid_107_4764", "source": "Sweden", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 258, "sourceWeight": "258", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "258" } }, { "key": "geid_107_4765", "source": "GermanyZollverein", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 21177, "sourceWeight": "21177", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "21177" } }, { "key": "geid_107_4766", "source": "Japan", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 315, "sourceWeight": "315", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "315" } }, { "key": "geid_107_4767", "source": "UnitedStatesofAmerica", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 5490, "sourceWeight": "5490", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5490" } }, { "key": "geid_107_4768", "source": "Othercountries", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 3607, "sourceWeight": "3607", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3607" } }, { "key": "geid_107_4769", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "UnitedKingdom", "attributes": { "weight": 555806, "sourceWeight": "555806", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4770", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "SouthAfrica", "attributes": { "weight": 286, "sourceWeight": "286", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4771", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 279, "sourceWeight": "279", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4772", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 323, "sourceWeight": "323", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4773", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "Zanzibar", "attributes": { "weight": 102, "sourceWeight": "102", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4774", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "India", "attributes": { "weight": 16, "sourceWeight": "16", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4775", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "TanzaniaTanganyika", "attributes": { "weight": 25, "sourceWeight": "25", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4776", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "Australia", "attributes": { "weight": 26, "sourceWeight": "26", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4777", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 4780, "sourceWeight": "4780", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4778", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "GermanyZollverein", "attributes": { "weight": 477, "sourceWeight": "477", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4779", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "Belgium", "attributes": { "weight": 1220, "sourceWeight": "1220", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4780", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "Spain", "attributes": { "weight": 600, "sourceWeight": "600", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4781", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 47, "sourceWeight": "47", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4782", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "Italy", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4783", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "UnitedStatesofAmerica", "attributes": { "weight": 6, "sourceWeight": "6", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4784", "source": "Portugal", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 805390.7443854336, "sourceWeight": "805390.7443854336", "direction": "Imp", "source_type": "primary", "targetWeight": "805390.7443854336" } }, { "key": "geid_107_4785", "source": "CapeVerde", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 0.23019465821605406, "sourceWeight": "0.23019465821605406", "direction": "Imp", "source_type": "primary", "targetWeight": "0.23019465821605406" } }, { "key": "geid_107_4786", "source": "SaoTomePrincipe", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 8767.247464903552, "sourceWeight": "8767.247464903552", "direction": "Imp", "source_type": "primary", "targetWeight": "8767.247464903552" } }, { "key": "geid_107_4787", "source": "MozambiquePortugueseEastAfrica", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 9878.005749193477, "sourceWeight": "9878.005749193477", "direction": "Imp", "source_type": "primary", "targetWeight": "9878.005749193477" } }, { "key": "geid_107_4788", "source": "AngolaPortugueseWestAfrica", "target": "Portugal", "attributes": { "weight": 1469194.0489793113, "sourceWeight": "1469194.0489793113", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4789", "source": "AngolaPortugueseWestAfrica", "target": "CapeVerde", "attributes": { "weight": 10285.327523751512, "sourceWeight": "10285.327523751512", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4790", "source": "AngolaPortugueseWestAfrica", "target": "GuineaBissauPortugueseGuinea", "attributes": { "weight": 202.11090991369545, "sourceWeight": "202.11090991369545", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4791", "source": "AngolaPortugueseWestAfrica", "target": "SaoTomePrincipe", "attributes": { "weight": 88617.20887266475, "sourceWeight": "88617.20887266475", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4792", "source": "AngolaPortugueseWestAfrica", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 11561.7952693359, "sourceWeight": "11561.7952693359", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4793", "source": "Albania", "target": "Greece", "attributes": { "weight": 145639.06745139477, "sourceWeight": "145639.06745139477", "direction": "Imp", "source_type": "primary", "targetWeight": "145639.06745139477" } }, { "key": "geid_107_4794", "source": "Austria", "target": "Greece", "attributes": { "weight": 150338.93164333876, "sourceWeight": "150338.93164333876", "direction": "Imp", "source_type": "primary", "targetWeight": "150338.93164333876" } }, { "key": "geid_107_4795", "source": "Belgium", "target": "Greece", "attributes": { "weight": 1229553.3499325968, "sourceWeight": "1229553.3499325968", "direction": "Imp", "source_type": "primary", "targetWeight": "1229553.3499325968" } }, { "key": "geid_107_4796", "source": "Bulgaria", "target": "Greece", "attributes": { "weight": 646081.4169310011, "sourceWeight": "646081.4169310011", "direction": "Imp", "source_type": "primary", "targetWeight": "646081.4169310011" } }, { "key": "geid_107_4797", "source": "France", "target": "Greece", "attributes": { "weight": 2689282.5486656497, "sourceWeight": "2689282.5486656497", "direction": "Imp", "source_type": "primary", "targetWeight": "2689282.5486656497" } }, { "key": "geid_107_4798", "source": "GermanyZollverein", "target": "Greece", "attributes": { "weight": 1905912.4264380783, "sourceWeight": "1905912.4264380783", "direction": "Imp", "source_type": "primary", "targetWeight": "1905912.4264380783" } }, { "key": "geid_107_4799", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Greece", "attributes": { "weight": 1249511.5663201106, "sourceWeight": "1249511.5663201106", "direction": "Imp", "source_type": "primary", "targetWeight": "1249511.5663201106" } }, { "key": "geid_107_4800", "source": "Denmark", "target": "Greece", "attributes": { "weight": 12519.465821643851, "sourceWeight": "12519.465821643851", "direction": "Imp", "source_type": "primary", "targetWeight": "12519.465821643851" } }, { "key": "geid_107_4801", "source": "Switzerland", "target": "Greece", "attributes": { "weight": 235592.84744237756, "sourceWeight": "235592.84744237756", "direction": "Imp", "source_type": "primary", "targetWeight": "235592.84744237756" } }, { "key": "geid_107_4802", "source": "Spain", "target": "Greece", "attributes": { "weight": 57881.2584880272, "sourceWeight": "57881.2584880272", "direction": "Imp", "source_type": "primary", "targetWeight": "57881.2584880272" } }, { "key": "geid_107_4803", "source": "Italy", "target": "Greece", "attributes": { "weight": 3569635.9891368095, "sourceWeight": "3569635.9891368095", "direction": "Imp", "source_type": "primary", "targetWeight": "3569635.9891368095" } }, { "key": "geid_107_4804", "source": "Netherlands", "target": "Greece", "attributes": { "weight": 847028.9723860399, "sourceWeight": "847028.9723860399", "direction": "Imp", "source_type": "primary", "targetWeight": "847028.9723860399" } }, { "key": "geid_107_4805", "source": "UnitedKingdom", "target": "Greece", "attributes": { "weight": 5158356.201903414, "sourceWeight": "5158356.201903414", "direction": "Imp", "source_type": "primary", "targetWeight": "5158356.201903414" } }, { "key": "geid_107_4806", "source": "Norway", "target": "Greece", "attributes": { "weight": 46557.016749679446, "sourceWeight": "46557.016749679446", "direction": "Imp", "source_type": "primary", "targetWeight": "46557.016749679446" } }, { "key": "geid_107_4807", "source": "Hungary", "target": "Greece", "attributes": { "weight": 37959.5065640716, "sourceWeight": "37959.5065640716", "direction": "Imp", "source_type": "primary", "targetWeight": "37959.5065640716" } }, { "key": "geid_107_4808", "source": "Poland", "target": "Greece", "attributes": { "weight": 5258.985966502822, "sourceWeight": "5258.985966502822", "direction": "Imp", "source_type": "primary", "targetWeight": "5258.985966502822" } }, { "key": "geid_107_4809", "source": "Portugal", "target": "Greece", "attributes": { "weight": 114891.42145771996, "sourceWeight": "114891.42145771996", "direction": "Imp", "source_type": "primary", "targetWeight": "114891.42145771996" } }, { "key": "geid_107_4810", "source": "Romania", "target": "Greece", "attributes": { "weight": 1459368.605704533, "sourceWeight": "1459368.605704533", "direction": "Imp", "source_type": "primary", "targetWeight": "1459368.605704533" } }, { "key": "geid_107_4811", "source": "RussiaUSSR", "target": "Greece", "attributes": { "weight": 333382.4354913083, "sourceWeight": "333382.4354913083", "direction": "Imp", "source_type": "primary", "targetWeight": "333382.4354913083" } }, { "key": "geid_107_4812", "source": "Sweden", "target": "Greece", "attributes": { "weight": 212879.5382526897, "sourceWeight": "212879.5382526897", "direction": "Imp", "source_type": "primary", "targetWeight": "212879.5382526897" } }, { "key": "geid_107_4813", "source": "Czechoslovakia", "target": "Greece", "attributes": { "weight": 881921.4124041619, "sourceWeight": "881921.4124041619", "direction": "Imp", "source_type": "primary", "targetWeight": "881921.4124041619" } }, { "key": "geid_107_4814", "source": "India", "target": "Greece", "attributes": { "weight": 366848.70982359897, "sourceWeight": "366848.70982359897", "direction": "Imp", "source_type": "primary", "targetWeight": "366848.70982359897" } }, { "key": "geid_107_4815", "source": "Aden", "target": "Greece", "attributes": { "weight": 409.212313264087, "sourceWeight": "409.212313264087", "direction": "Imp", "source_type": "primary", "targetWeight": "409.212313264087" } }, { "key": "geid_107_4816", "source": "Arabia", "target": "Greece", "attributes": { "weight": 64.82571299233062, "sourceWeight": "64.82571299233062", "direction": "Imp", "source_type": "primary", "targetWeight": "64.82571299233062" } }, { "key": "geid_107_4817", "source": "DodecaneseIsAegeanIs", "target": "Greece", "attributes": { "weight": 54818.24354913958, "sourceWeight": "54818.24354913958", "direction": "Imp", "source_type": "primary", "targetWeight": "54818.24354913958" } }, { "key": "geid_107_4818", "source": "Japan", "target": "Greece", "attributes": { "weight": 183529.696695412, "sourceWeight": "183529.696695412", "direction": "Imp", "source_type": "primary", "targetWeight": "183529.696695412" } }, { "key": "geid_107_4819", "source": "FrenchIndochina", "target": "Greece", "attributes": { "weight": 14018.560434591496, "sourceWeight": "14018.560434591496", "direction": "Imp", "source_type": "primary", "targetWeight": "14018.560434591496" } }, { "key": "geid_107_4820", "source": "PeoplesRepublicofChinaChina", "target": "Greece", "attributes": { "weight": 9241.715708469133, "sourceWeight": "9241.715708469133", "direction": "Imp", "source_type": "primary", "targetWeight": "9241.715708469133" } }, { "key": "geid_107_4821", "source": "Cyprus", "target": "Greece", "attributes": { "weight": 152068.96785882156, "sourceWeight": "152068.96785882156", "direction": "Imp", "source_type": "primary", "targetWeight": "152068.96785882156" } }, { "key": "geid_107_4822", "source": "IndonesiaDutchEastIndies", "target": "Greece", "attributes": { "weight": 436196.01629714464, "sourceWeight": "436196.01629714464", "direction": "Imp", "source_type": "primary", "targetWeight": "436196.01629714464" } }, { "key": "geid_107_4823", "source": "Palestine", "target": "Greece", "attributes": { "weight": 348.4382073337771, "sourceWeight": "348.4382073337771", "direction": "Imp", "source_type": "primary", "targetWeight": "348.4382073337771" } }, { "key": "geid_107_4824", "source": "IranPersia", "target": "Greece", "attributes": { "weight": 1199.2756903581164, "sourceWeight": "1199.2756903581164", "direction": "Imp", "source_type": "primary", "targetWeight": "1199.2756903581164" } }, { "key": "geid_107_4825", "source": "ThailandSiam", "target": "Greece", "attributes": { "weight": 1077.7274784974966, "sourceWeight": "1077.7274784974966", "direction": "Imp", "source_type": "primary", "targetWeight": "1077.7274784974966" } }, { "key": "geid_107_4826", "source": "Syria", "target": "Greece", "attributes": { "weight": 11194.590312363094, "sourceWeight": "11194.590312363094", "direction": "Imp", "source_type": "primary", "targetWeight": "11194.590312363094" } }, { "key": "geid_107_4827", "source": "TurkeyOttomanEmpire", "target": "Greece", "attributes": { "weight": 842122.4762339329, "sourceWeight": "842122.4762339329", "direction": "Imp", "source_type": "primary", "targetWeight": "842122.4762339329" } }, { "key": "geid_107_4828", "source": "EthiopiaAbyssinia", "target": "Greece", "attributes": { "weight": 4221.774558625531, "sourceWeight": "4221.774558625531", "direction": "Imp", "source_type": "primary", "targetWeight": "4221.774558625531" } }, { "key": "geid_107_4829", "source": "EgyptArabRepublicEgypt", "target": "Greece", "attributes": { "weight": 774570.0316888624, "sourceWeight": "774570.0316888624", "direction": "Imp", "source_type": "primary", "targetWeight": "774570.0316888624" } }, { "key": "geid_107_4830", "source": "AlgeriaRegencyofAlgiers", "target": "Greece", "attributes": { "weight": 21364.12403803496, "sourceWeight": "21364.12403803496", "direction": "Imp", "source_type": "primary", "targetWeight": "21364.12403803496" } }, { "key": "geid_107_4831", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Greece", "attributes": { "weight": 4.051607062020664, "sourceWeight": "4.051607062020664", "direction": "Imp", "source_type": "primary", "targetWeight": "4.051607062020664" } }, { "key": "geid_107_4832", "source": "BritishAfrica", "target": "Greece", "attributes": { "weight": 356.5414214578184, "sourceWeight": "356.5414214578184", "direction": "Imp", "source_type": "primary", "targetWeight": "356.5414214578184" } }, { "key": "geid_107_4833", "source": "FrenchAfrica", "target": "Greece", "attributes": { "weight": 3691.0140335008246, "sourceWeight": "3691.0140335008246", "direction": "Imp", "source_type": "primary", "targetWeight": "3691.0140335008246" } }, { "key": "geid_107_4834", "source": "SpanishAfrica", "target": "Greece", "attributes": { "weight": 2333.7256677239025, "sourceWeight": "2333.7256677239025", "direction": "Imp", "source_type": "primary", "targetWeight": "2333.7256677239025" } }, { "key": "geid_107_4835", "source": "ItalianAfrica", "target": "Greece", "attributes": { "weight": 10878.564961525482, "sourceWeight": "10878.564961525482", "direction": "Imp", "source_type": "primary", "targetWeight": "10878.564961525482" } }, { "key": "geid_107_4836", "source": "Morocco", "target": "Greece", "attributes": { "weight": 15764.803078322402, "sourceWeight": "15764.803078322402", "direction": "Imp", "source_type": "primary", "targetWeight": "15764.803078322402" } }, { "key": "geid_107_4837", "source": "Cyrenaica_TripolitaniaRegencyofTripoli", "target": "Greece", "attributes": { "weight": 8459.755545499145, "sourceWeight": "8459.755545499145", "direction": "Imp", "source_type": "primary", "targetWeight": "8459.755545499145" } }, { "key": "geid_107_4838", "source": "TunisiaRegencyofTunis", "target": "Greece", "attributes": { "weight": 33000.339520158304, "sourceWeight": "33000.339520158304", "direction": "Imp", "source_type": "primary", "targetWeight": "33000.339520158304" } }, { "key": "geid_107_4839", "source": "ArgentinaLaPlata", "target": "Greece", "attributes": { "weight": 9902.127659578502, "sourceWeight": "9902.127659578502", "direction": "Imp", "source_type": "primary", "targetWeight": "9902.127659578502" } }, { "key": "geid_107_4840", "source": "Brazil", "target": "Greece", "attributes": { "weight": 211951.72023548698, "sourceWeight": "211951.72023548698", "direction": "Imp", "source_type": "primary", "targetWeight": "211951.72023548698" } }, { "key": "geid_107_4841", "source": "BritishWestIndies", "target": "Greece", "attributes": { "weight": 206.63196016305383, "sourceWeight": "206.63196016305383", "direction": "Imp", "source_type": "primary", "targetWeight": "206.63196016305383" } }, { "key": "geid_107_4842", "source": "Guatemala", "target": "Greece", "attributes": { "weight": 449.72838388429363, "sourceWeight": "449.72838388429363", "direction": "Imp", "source_type": "primary", "targetWeight": "449.72838388429363" } }, { "key": "geid_107_4843", "source": "UnitedStatesofAmerica", "target": "Greece", "attributes": { "weight": 4497770.031690379, "sourceWeight": "4497770.031690379", "direction": "Imp", "source_type": "primary", "targetWeight": "4497770.031690379" } }, { "key": "geid_107_4844", "source": "Ecuador", "target": "Greece", "attributes": { "weight": 279.5608872794258, "sourceWeight": "279.5608872794258", "direction": "Imp", "source_type": "primary", "targetWeight": "279.5608872794258" } }, { "key": "geid_107_4845", "source": "CanadaProvinceofCanada", "target": "Greece", "attributes": { "weight": 3553826.618380805, "sourceWeight": "3553826.618380805", "direction": "Imp", "source_type": "primary", "targetWeight": "3553826.618380805" } }, { "key": "geid_107_4846", "source": "ColombiaNewGranadaGranColombia", "target": "Greece", "attributes": { "weight": 271.45767315538444, "sourceWeight": "271.45767315538444", "direction": "Imp", "source_type": "primary", "targetWeight": "271.45767315538444" } }, { "key": "geid_107_4847", "source": "Cuba", "target": "Greece", "attributes": { "weight": 2017.7003168862905, "sourceWeight": "2017.7003168862905", "direction": "Imp", "source_type": "primary", "targetWeight": "2017.7003168862905" } }, { "key": "geid_107_4848", "source": "NetherlandsAntilles", "target": "Greece", "attributes": { "weight": 652.3087369853268, "sourceWeight": "652.3087369853268", "direction": "Imp", "source_type": "primary", "targetWeight": "652.3087369853268" } }, { "key": "geid_107_4849", "source": "Uruguay", "target": "Greece", "attributes": { "weight": 17462.42643730906, "sourceWeight": "17462.42643730906", "direction": "Imp", "source_type": "primary", "targetWeight": "17462.42643730906" } }, { "key": "geid_107_4850", "source": "Chile", "target": "Greece", "attributes": { "weight": 303.87052965154976, "sourceWeight": "303.87052965154976", "direction": "Imp", "source_type": "primary", "targetWeight": "303.87052965154976" } }, { "key": "geid_107_4851", "source": "Australia", "target": "Greece", "attributes": { "weight": 338288.9316434153, "sourceWeight": "338288.9316434153", "direction": "Imp", "source_type": "primary", "targetWeight": "338288.9316434153" } }, { "key": "geid_107_4852", "source": "Greece", "target": "Albania", "attributes": { "weight": 5392.688999549503, "sourceWeight": "5392.688999549503", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4853", "source": "Greece", "target": "Austria", "attributes": { "weight": 38141.82888186253, "sourceWeight": "38141.82888186253", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4854", "source": "Greece", "target": "Belgium", "attributes": { "weight": 342903.71208705683, "sourceWeight": "342903.71208705683", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4855", "source": "Greece", "target": "Bulgaria", "attributes": { "weight": 169875.78089640237, "sourceWeight": "169875.78089640237", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4856", "source": "Greece", "target": "France", "attributes": { "weight": 634505.975554808, "sourceWeight": "634505.975554808", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4857", "source": "Greece", "target": "GermanyZollverein", "attributes": { "weight": 3466591.466728438, "sourceWeight": "3466591.466728438", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4858", "source": "Greece", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 147437.98098693194, "sourceWeight": "147437.98098693194", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4859", "source": "Greece", "target": "Denmark", "attributes": { "weight": 1381.5980081490463, "sourceWeight": "1381.5980081490463", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4860", "source": "Greece", "target": "Switzerland", "attributes": { "weight": 1661.158895428472, "sourceWeight": "1661.158895428472", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4861", "source": "Greece", "target": "Spain", "attributes": { "weight": 24856.60932549677, "sourceWeight": "24856.60932549677", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4862", "source": "Greece", "target": "Italy", "attributes": { "weight": 1983683.023993565, "sourceWeight": "1983683.023993565", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4863", "source": "Greece", "target": "Netherlands", "attributes": { "weight": 1028929.9230425196, "sourceWeight": "1028929.9230425196", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4864", "source": "Greece", "target": "UnitedKingdom", "attributes": { "weight": 1945237.324582051, "sourceWeight": "1945237.324582051", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4865", "source": "Greece", "target": "Norway", "attributes": { "weight": 13451.335445908604, "sourceWeight": "13451.335445908604", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4866", "source": "Greece", "target": "Hungary", "attributes": { "weight": 190.4255319149712, "sourceWeight": "190.4255319149712", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4867", "source": "Greece", "target": "Poland", "attributes": { "weight": 2653.802625623535, "sourceWeight": "2653.802625623535", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4868", "source": "Greece", "target": "Portugal", "attributes": { "weight": 1588.2299683121003, "sourceWeight": "1588.2299683121003", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4869", "source": "Greece", "target": "Romania", "attributes": { "weight": 137552.05975560154, "sourceWeight": "137552.05975560154", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4870", "source": "Greece", "target": "RussiaUSSR", "attributes": { "weight": 5445.359891355772, "sourceWeight": "5445.359891355772", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4871", "source": "Greece", "target": "Sweden", "attributes": { "weight": 13767.360796746216, "sourceWeight": "13767.360796746216", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4872", "source": "Greece", "target": "Czechoslovakia", "attributes": { "weight": 1770.55228610303, "sourceWeight": "1770.55228610303", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4873", "source": "Greece", "target": "Finland", "attributes": { "weight": 29195.880488920902, "sourceWeight": "29195.880488920902", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4874", "source": "Greece", "target": "India", "attributes": { "weight": 17976.980534185685, "sourceWeight": "17976.980534185685", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4875", "source": "Greece", "target": "Aden", "attributes": { "weight": 3824.7170665475064, "sourceWeight": "3824.7170665475064", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4876", "source": "Greece", "target": "Arabia", "attributes": { "weight": 60.77410593030996, "sourceWeight": "60.77410593030996", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4877", "source": "Greece", "target": "DodecaneseIsAegeanIs", "attributes": { "weight": 38486.215482134285, "sourceWeight": "38486.215482134285", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4878", "source": "Greece", "target": "Japan", "attributes": { "weight": 1835.3779990953606, "sourceWeight": "1835.3779990953606", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4879", "source": "Greece", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 3306.1113626088613, "sourceWeight": "3306.1113626088613", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4880", "source": "Greece", "target": "Cyprus", "attributes": { "weight": 45313.1733816391, "sourceWeight": "45313.1733816391", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4881", "source": "Greece", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 105.34178361253726, "sourceWeight": "105.34178361253726", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4882", "source": "Greece", "target": "Palestine", "attributes": { "weight": 81.03214124041327, "sourceWeight": "81.03214124041327", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4883", "source": "Greece", "target": "Syria", "attributes": { "weight": 1434.268899955315, "sourceWeight": "1434.268899955315", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4884", "source": "Greece", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 114316.09325491302, "sourceWeight": "114316.09325491302", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4885", "source": "Greece", "target": "EthiopiaAbyssinia", "attributes": { "weight": 226740.0860118624, "sourceWeight": "226740.0860118624", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4886", "source": "Greece", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1025.056586691228, "sourceWeight": "1025.056586691228", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4887", "source": "Greece", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 519991.353553856, "sourceWeight": "519991.353553856", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4888", "source": "Greece", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 976.4373019469799, "sourceWeight": "976.4373019469799", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4889", "source": "Greece", "target": "BritishAfrica", "attributes": { "weight": 24.30964237212398, "sourceWeight": "24.30964237212398", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4890", "source": "Greece", "target": "SpanishAfrica", "attributes": { "weight": 48.61928474424796, "sourceWeight": "48.61928474424796", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4891", "source": "Greece", "target": "Morocco", "attributes": { "weight": 27084.993209608136, "sourceWeight": "27084.993209608136", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4892", "source": "Greece", "target": "Cyrenaica_TripolitaniaRegencyofTripoli", "attributes": { "weight": 178.2707107289092, "sourceWeight": "178.2707107289092", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4893", "source": "Greece", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 680.6699864194715, "sourceWeight": "680.6699864194715", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4894", "source": "Greece", "target": "ArgentinaLaPlata", "attributes": { "weight": 13171.774558629177, "sourceWeight": "13171.774558629177", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4895", "source": "Greece", "target": "Bolivia", "attributes": { "weight": 563181.4848349963, "sourceWeight": "563181.4848349963", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4896", "source": "Greece", "target": "Brazil", "attributes": { "weight": 12681.530104124677, "sourceWeight": "12681.530104124677", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4897", "source": "Greece", "target": "Guatemala", "attributes": { "weight": 1438.3205070173356, "sourceWeight": "1438.3205070173356", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4898", "source": "Greece", "target": "CanadaProvinceofCanada", "attributes": { "weight": 5169.850611138367, "sourceWeight": "5169.850611138367", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4899", "source": "Greece", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 18746.78587596961, "sourceWeight": "18746.78587596961", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4900", "source": "Greece", "target": "Australia", "attributes": { "weight": 871.0955183344427, "sourceWeight": "871.0955183344427", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_4901", "source": "UnitedKingdom", "target": "Barbados", "attributes": { "weight": 840617, "sourceWeight": "840617", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "840617" } }, { "key": "geid_107_4902", "source": "CanadaProvinceofCanada", "target": "Barbados", "attributes": { "weight": 571710, "sourceWeight": "571710", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "571710" } }, { "key": "geid_107_4903", "source": "NewfoundlandandLabradorNewfoundland", "target": "Barbados", "attributes": { "weight": 64523, "sourceWeight": "64523", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "64523" } }, { "key": "geid_107_4904", "source": "AntiguaandBarbudaAntigua", "target": "Barbados", "attributes": { "weight": 2027, "sourceWeight": "2027", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2027" } }, { "key": "geid_107_4905", "source": "Bermuda", "target": "Barbados", "attributes": { "weight": 2793, "sourceWeight": "2793", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2793" } }, { "key": "geid_107_4906", "source": "GuyanaBritishGuiana", "target": "Barbados", "attributes": { "weight": 87499, "sourceWeight": "87499", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "87499" } }, { "key": "geid_107_4907", "source": "BritishColumbia", "target": "Barbados", "attributes": { "weight": 833, "sourceWeight": "833", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "833" } }, { "key": "geid_107_4908", "source": "Dominica", "target": "Barbados", "attributes": { "weight": 5047, "sourceWeight": "5047", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5047" } }, { "key": "geid_107_4909", "source": "Grenada", "target": "Barbados", "attributes": { "weight": 9364, "sourceWeight": "9364", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9364" } }, { "key": "geid_107_4910", "source": "India", "target": "Barbados", "attributes": { "weight": 91674, "sourceWeight": "91674", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "91674" } }, { "key": "geid_107_4911", "source": "Jamaica", "target": "Barbados", "attributes": { "weight": 1558, "sourceWeight": "1558", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1558" } }, { "key": "geid_107_4912", "source": "Montserrat", "target": "Barbados", "attributes": { "weight": 3989, "sourceWeight": "3989", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3989" } }, { "key": "geid_107_4913", "source": "StKitts", "target": "Barbados", "attributes": { "weight": 6730, "sourceWeight": "6730", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6730" } }, { "key": "geid_107_4914", "source": "StLucia", "target": "Barbados", "attributes": { "weight": 16575, "sourceWeight": "16575", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "16575" } }, { "key": "geid_107_4915", "source": "StVincent", "target": "Barbados", "attributes": { "weight": 18654, "sourceWeight": "18654", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "18654" } }, { "key": "geid_107_4916", "source": "Trinidad", "target": "Barbados", "attributes": { "weight": 73560, "sourceWeight": "73560", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "73560" } }, { "key": "geid_107_4917", "source": "UnitedStatesofAmerica", "target": "Barbados", "attributes": { "weight": 544659, "sourceWeight": "544659", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "544659" } }, { "key": "geid_107_4918", "source": "BritishVirginIs", "target": "Barbados", "attributes": { "weight": 2406, "sourceWeight": "2406", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2406" } }, { "key": "geid_107_4919", "source": "ArgentinaLaPlata", "target": "Barbados", "attributes": { "weight": 25676, "sourceWeight": "25676", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "25676" } }, { "key": "geid_107_4920", "source": "Austria", "target": "Barbados", "attributes": { "weight": 102, "sourceWeight": "102", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "102" } }, { "key": "geid_107_4921", "source": "Belgium", "target": "Barbados", "attributes": { "weight": 766, "sourceWeight": "766", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "766" } }, { "key": "geid_107_4922", "source": "Brazil", "target": "Barbados", "attributes": { "weight": 9342, "sourceWeight": "9342", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9342" } }, { "key": "geid_107_4923", "source": "PanamaCanalZone", "target": "Barbados", "attributes": { "weight": 1516, "sourceWeight": "1516", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1516" } }, { "key": "geid_107_4924", "source": "Chile", "target": "Barbados", "attributes": { "weight": 930, "sourceWeight": "930", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "930" } }, { "key": "geid_107_4925", "source": "PeoplesRepublicofChinaChina", "target": "Barbados", "attributes": { "weight": 711, "sourceWeight": "711", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "711" } }, { "key": "geid_107_4926", "source": "ColombiaNewGranadaGranColombia", "target": "Barbados", "attributes": { "weight": 1645, "sourceWeight": "1645", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1645" } }, { "key": "geid_107_4927", "source": "Colón", "target": "Barbados", "attributes": { "weight": 2533, "sourceWeight": "2533", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2533" } }, { "key": "geid_107_4928", "source": "Cuba", "target": "Barbados", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1" } }, { "key": "geid_107_4929", "source": "Denmark", "target": "Barbados", "attributes": { "weight": 937, "sourceWeight": "937", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "937" } }, { "key": "geid_107_4930", "source": "SurinamDutchGuiana", "target": "Barbados", "attributes": { "weight": 3853, "sourceWeight": "3853", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3853" } }, { "key": "geid_107_4931", "source": "NetherlandsAntilles", "target": "Barbados", "attributes": { "weight": 12697, "sourceWeight": "12697", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "12697" } }, { "key": "geid_107_4932", "source": "France", "target": "Barbados", "attributes": { "weight": 4493, "sourceWeight": "4493", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4493" } }, { "key": "geid_107_4933", "source": "FrenchWestIndies", "target": "Barbados", "attributes": { "weight": 2719, "sourceWeight": "2719", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2719" } }, { "key": "geid_107_4934", "source": "GermanyZollverein", "target": "Barbados", "attributes": { "weight": 18443, "sourceWeight": "18443", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "18443" } }, { "key": "geid_107_4935", "source": "Greece", "target": "Barbados", "attributes": { "weight": 38, "sourceWeight": "38", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "38" } }, { "key": "geid_107_4936", "source": "Haiti", "target": "Barbados", "attributes": { "weight": 12296, "sourceWeight": "12296", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "12296" } }, { "key": "geid_107_4937", "source": "Netherlands", "target": "Barbados", "attributes": { "weight": 65930, "sourceWeight": "65930", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "65930" } }, { "key": "geid_107_4938", "source": "Italy", "target": "Barbados", "attributes": { "weight": 286, "sourceWeight": "286", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "286" } }, { "key": "geid_107_4939", "source": "Japan", "target": "Barbados", "attributes": { "weight": 740, "sourceWeight": "740", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "740" } }, { "key": "geid_107_4940", "source": "MadeiraIsles", "target": "Barbados", "attributes": { "weight": 2748, "sourceWeight": "2748", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2748" } }, { "key": "geid_107_4941", "source": "Norway", "target": "Barbados", "attributes": { "weight": 34, "sourceWeight": "34", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "34" } }, { "key": "geid_107_4942", "source": "Portugal", "target": "Barbados", "attributes": { "weight": 1090, "sourceWeight": "1090", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1090" } }, { "key": "geid_107_4943", "source": "Spain", "target": "Barbados", "attributes": { "weight": 1070, "sourceWeight": "1070", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1070" } }, { "key": "geid_107_4944", "source": "Sweden", "target": "Barbados", "attributes": { "weight": 510, "sourceWeight": "510", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "510" } }, { "key": "geid_107_4945", "source": "Switzerland", "target": "Barbados", "attributes": { "weight": 1031, "sourceWeight": "1031", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1031" } }, { "key": "geid_107_4946", "source": "Uruguay", "target": "Barbados", "attributes": { "weight": 4922, "sourceWeight": "4922", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4922" } }, { "key": "geid_107_4947", "source": "Venezuela", "target": "Barbados", "attributes": { "weight": 26620, "sourceWeight": "26620", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "26620" } }, { "key": "geid_107_4948", "source": "Barbados", "target": "UnitedKingdom", "attributes": { "weight": 205921, "sourceWeight": "205921", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4949", "source": "Barbados", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1182971, "sourceWeight": "1182971", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4950", "source": "Barbados", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 29508, "sourceWeight": "29508", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4951", "source": "Barbados", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 3305, "sourceWeight": "3305", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4952", "source": "Barbados", "target": "Bermuda", "attributes": { "weight": 781, "sourceWeight": "781", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4953", "source": "Barbados", "target": "GuyanaBritishGuiana", "attributes": { "weight": 10610, "sourceWeight": "10610", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4954", "source": "Barbados", "target": "Dominica", "attributes": { "weight": 2007, "sourceWeight": "2007", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4955", "source": "Barbados", "target": "Grenada", "attributes": { "weight": 12991, "sourceWeight": "12991", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4956", "source": "Barbados", "target": "Jamaica", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4957", "source": "Barbados", "target": "Montserrat", "attributes": { "weight": 3707, "sourceWeight": "3707", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4958", "source": "Barbados", "target": "PrinceEdwardIs", "attributes": { "weight": 8064, "sourceWeight": "8064", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4959", "source": "Barbados", "target": "StKitts", "attributes": { "weight": 3519, "sourceWeight": "3519", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4960", "source": "Barbados", "target": "StLucia", "attributes": { "weight": 1017, "sourceWeight": "1017", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4961", "source": "Barbados", "target": "StVincent", "attributes": { "weight": 6111, "sourceWeight": "6111", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4962", "source": "Barbados", "target": "Trinidad", "attributes": { "weight": 1576, "sourceWeight": "1576", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4963", "source": "Barbados", "target": "TurksandCaicosIs", "attributes": { "weight": 99, "sourceWeight": "99", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4964", "source": "Barbados", "target": "UnitedStatesofAmerica", "attributes": { "weight": 101190, "sourceWeight": "101190", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4965", "source": "Barbados", "target": "BritishVirginIs", "attributes": { "weight": 12, "sourceWeight": "12", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4966", "source": "Barbados", "target": "NetherlandsAntilles", "attributes": { "weight": 422, "sourceWeight": "422", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4967", "source": "Barbados", "target": "France", "attributes": { "weight": 769, "sourceWeight": "769", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4968", "source": "Barbados", "target": "FrenchWestIndies", "attributes": { "weight": 81, "sourceWeight": "81", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4969", "source": "Barbados", "target": "Netherlands", "attributes": { "weight": 15978, "sourceWeight": "15978", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4970", "source": "Barbados", "target": "Tenerife", "attributes": { "weight": 700, "sourceWeight": "700", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_4971", "source": "UnitedKingdom", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 14426364.948453609, "sourceWeight": "14426364.948453609", "direction": "Imp", "source_type": "primary", "targetWeight": "14426364.948453609" } }, { "key": "geid_107_4972", "source": "Cyprus", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 275901.03092783503, "sourceWeight": "275901.03092783503", "direction": "Imp", "source_type": "primary", "targetWeight": "275901.03092783503" } }, { "key": "geid_107_4973", "source": "Gibraltar", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 218.55670103092785, "sourceWeight": "218.55670103092785", "direction": "Imp", "source_type": "primary", "targetWeight": "218.55670103092785" } }, { "key": "geid_107_4974", "source": "Malta", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 11937.113402061856, "sourceWeight": "11937.113402061856", "direction": "Imp", "source_type": "primary", "targetWeight": "11937.113402061856" } }, { "key": "geid_107_4975", "source": "Aden", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 115830.92783505155, "sourceWeight": "115830.92783505155", "direction": "Imp", "source_type": "primary", "targetWeight": "115830.92783505155" } }, { "key": "geid_107_4976", "source": "BritishBorneo", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 161573.19587628866, "sourceWeight": "161573.19587628866", "direction": "Imp", "source_type": "primary", "targetWeight": "161573.19587628866" } }, { "key": "geid_107_4977", "source": "India", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1721060.824742268, "sourceWeight": "1721060.824742268", "direction": "Imp", "source_type": "primary", "targetWeight": "1721060.824742268" } }, { "key": "geid_107_4978", "source": "SriLankaCeylon", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 409338.1443298969, "sourceWeight": "409338.1443298969", "direction": "Imp", "source_type": "primary", "targetWeight": "409338.1443298969" } }, { "key": "geid_107_4979", "source": "HongKong", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 9842.268041237114, "sourceWeight": "9842.268041237114", "direction": "Imp", "source_type": "primary", "targetWeight": "9842.268041237114" } }, { "key": "geid_107_4980", "source": "StraitsSettlements_StraitsSettlementsDependencies", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 106296.90721649484, "sourceWeight": "106296.90721649484", "direction": "Imp", "source_type": "primary", "targetWeight": "106296.90721649484" } }, { "key": "geid_107_4981", "source": "Trinidad", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 38659.79381443299, "sourceWeight": "38659.79381443299", "direction": "Imp", "source_type": "primary", "targetWeight": "38659.79381443299" } }, { "key": "geid_107_4982", "source": "BritishWestIndies", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1003.0927835051547, "sourceWeight": "1003.0927835051547", "direction": "Imp", "source_type": "primary", "targetWeight": "1003.0927835051547" } }, { "key": "geid_107_4983", "source": "CanadaProvinceofCanada", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 29969.072164948455, "sourceWeight": "29969.072164948455", "direction": "Imp", "source_type": "primary", "targetWeight": "29969.072164948455" } }, { "key": "geid_107_4984", "source": "BritishEastAfrica", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 106156.70103092784, "sourceWeight": "106156.70103092784", "direction": "Imp", "source_type": "primary", "targetWeight": "106156.70103092784" } }, { "key": "geid_107_4985", "source": "BritishWestAfrica", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 17.52577319587629, "sourceWeight": "17.52577319587629", "direction": "Imp", "source_type": "primary", "targetWeight": "17.52577319587629" } }, { "key": "geid_107_4986", "source": "SouthAfrica", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 2656.7010309278353, "sourceWeight": "2656.7010309278353", "direction": "Imp", "source_type": "primary", "targetWeight": "2656.7010309278353" } }, { "key": "geid_107_4987", "source": "Australia", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1692944.3298969073, "sourceWeight": "1692944.3298969073", "direction": "Imp", "source_type": "primary", "targetWeight": "1692944.3298969073" } }, { "key": "geid_107_4988", "source": "EthiopiaAbyssinia", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 127042.26804123711, "sourceWeight": "127042.26804123711", "direction": "Imp", "source_type": "primary", "targetWeight": "127042.26804123711" } }, { "key": "geid_107_4989", "source": "Albania", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 5348.453608247422, "sourceWeight": "5348.453608247422", "direction": "Imp", "source_type": "primary", "targetWeight": "5348.453608247422" } }, { "key": "geid_107_4990", "source": "Arabia", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 157960.82474226804, "sourceWeight": "157960.82474226804", "direction": "Imp", "source_type": "primary", "targetWeight": "157960.82474226804" } }, { "key": "geid_107_4991", "source": "ArgentinaLaPlata", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 17546.39175257732, "sourceWeight": "17546.39175257732", "direction": "Imp", "source_type": "primary", "targetWeight": "17546.39175257732" } }, { "key": "geid_107_4992", "source": "Austria", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 518875.25773195876, "sourceWeight": "518875.25773195876", "direction": "Imp", "source_type": "primary", "targetWeight": "518875.25773195876" } }, { "key": "geid_107_4993", "source": "Belgium", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1957065.9793814435, "sourceWeight": "1957065.9793814435", "direction": "Imp", "source_type": "primary", "targetWeight": "1957065.9793814435" } }, { "key": "geid_107_4994", "source": "BelgianAfrica", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 20.61855670103093, "sourceWeight": "20.61855670103093", "direction": "Imp", "source_type": "primary", "targetWeight": "20.61855670103093" } }, { "key": "geid_107_4995", "source": "Brazil", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 587622.6804123712, "sourceWeight": "587622.6804123712", "direction": "Imp", "source_type": "primary", "targetWeight": "587622.6804123712" } }, { "key": "geid_107_4996", "source": "Bulgaria", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 77382.47422680413, "sourceWeight": "77382.47422680413", "direction": "Imp", "source_type": "primary", "targetWeight": "77382.47422680413" } }, { "key": "geid_107_4997", "source": "Chile", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1432586.5979381443, "sourceWeight": "1432586.5979381443", "direction": "Imp", "source_type": "primary", "targetWeight": "1432586.5979381443" } }, { "key": "geid_107_4998", "source": "PeoplesRepublicofChinaChina", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 919847.4226804124, "sourceWeight": "919847.4226804124", "direction": "Imp", "source_type": "primary", "targetWeight": "919847.4226804124" } }, { "key": "geid_107_4999", "source": "ColombiaNewGranadaGranColombia", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 11.34020618556701, "sourceWeight": "11.34020618556701", "direction": "Imp", "source_type": "primary", "targetWeight": "11.34020618556701" } }, { "key": "geid_107_5000", "source": "Cuba", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1688.659793814433, "sourceWeight": "1688.659793814433", "direction": "Imp", "source_type": "primary", "targetWeight": "1688.659793814433" } }, { "key": "geid_107_5001", "source": "Czechoslovakia", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 928534.0206185568, "sourceWeight": "928534.0206185568", "direction": "Imp", "source_type": "primary", "targetWeight": "928534.0206185568" } }, { "key": "geid_107_5002", "source": "Denmark", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 16959.79381443299, "sourceWeight": "16959.79381443299", "direction": "Imp", "source_type": "primary", "targetWeight": "16959.79381443299" } }, { "key": "geid_107_5003", "source": "Finland", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 487092.78350515466, "sourceWeight": "487092.78350515466", "direction": "Imp", "source_type": "primary", "targetWeight": "487092.78350515466" } }, { "key": "geid_107_5004", "source": "France", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 4833729.896907217, "sourceWeight": "4833729.896907217", "direction": "Imp", "source_type": "primary", "targetWeight": "4833729.896907217" } }, { "key": "geid_107_5005", "source": "AlgeriaRegencyofAlgiers", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 3744.3298969072166, "sourceWeight": "3744.3298969072166", "direction": "Imp", "source_type": "primary", "targetWeight": "3744.3298969072166" } }, { "key": "geid_107_5006", "source": "Morocco", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 30741.23711340206, "sourceWeight": "30741.23711340206", "direction": "Imp", "source_type": "primary", "targetWeight": "30741.23711340206" } }, { "key": "geid_107_5007", "source": "TunisiaRegencyofTunis", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 94916.49484536082, "sourceWeight": "94916.49484536082", "direction": "Imp", "source_type": "primary", "targetWeight": "94916.49484536082" } }, { "key": "geid_107_5008", "source": "FrenchIndochina", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 2179.3814432989693, "sourceWeight": "2179.3814432989693", "direction": "Imp", "source_type": "primary", "targetWeight": "2179.3814432989693" } }, { "key": "geid_107_5009", "source": "FrenchAfrica", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 3962.8865979381444, "sourceWeight": "3962.8865979381444", "direction": "Imp", "source_type": "primary", "targetWeight": "3962.8865979381444" } }, { "key": "geid_107_5010", "source": "GermanyZollverein", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 3037875.2577319588, "sourceWeight": "3037875.2577319588", "direction": "Imp", "source_type": "primary", "targetWeight": "3037875.2577319588" } }, { "key": "geid_107_5011", "source": "Greece", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 816997.9381443299, "sourceWeight": "816997.9381443299", "direction": "Imp", "source_type": "primary", "targetWeight": "816997.9381443299" } }, { "key": "geid_107_5012", "source": "Crete", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 133337.11340206186, "sourceWeight": "133337.11340206186", "direction": "Imp", "source_type": "primary", "targetWeight": "133337.11340206186" } }, { "key": "geid_107_5013", "source": "Guatemala", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 5.154639175257732, "sourceWeight": "5.154639175257732", "direction": "Imp", "source_type": "primary", "targetWeight": "5.154639175257732" } }, { "key": "geid_107_5014", "source": "Netherlands", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 639795.8762886598, "sourceWeight": "639795.8762886598", "direction": "Imp", "source_type": "primary", "targetWeight": "639795.8762886598" } }, { "key": "geid_107_5015", "source": "IndonesiaDutchEastIndies", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 756991.7525773196, "sourceWeight": "756991.7525773196", "direction": "Imp", "source_type": "primary", "targetWeight": "756991.7525773196" } }, { "key": "geid_107_5016", "source": "NetherlandsAntilles", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1408.2474226804125, "sourceWeight": "1408.2474226804125", "direction": "Imp", "source_type": "primary", "targetWeight": "1408.2474226804125" } }, { "key": "geid_107_5017", "source": "Hungary", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 13842.268041237114, "sourceWeight": "13842.268041237114", "direction": "Imp", "source_type": "primary", "targetWeight": "13842.268041237114" } }, { "key": "geid_107_5018", "source": "Italy", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 5392548.453608247, "sourceWeight": "5392548.453608247", "direction": "Imp", "source_type": "primary", "targetWeight": "5392548.453608247" } }, { "key": "geid_107_5019", "source": "Eritrea", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 23755.670103092783, "sourceWeight": "23755.670103092783", "direction": "Imp", "source_type": "primary", "targetWeight": "23755.670103092783" } }, { "key": "geid_107_5020", "source": "TripolitaniaRegencyofTripoli", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 214200, "sourceWeight": "214200", "direction": "Imp", "source_type": "primary", "targetWeight": "214200" } }, { "key": "geid_107_5021", "source": "ItalianAfrica", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 14.43298969072165, "sourceWeight": "14.43298969072165", "direction": "Imp", "source_type": "primary", "targetWeight": "14.43298969072165" } }, { "key": "geid_107_5022", "source": "Japan", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1003427.8350515465, "sourceWeight": "1003427.8350515465", "direction": "Imp", "source_type": "primary", "targetWeight": "1003427.8350515465" } }, { "key": "geid_107_5023", "source": "IraqMesopotamia", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 90045.36082474227, "sourceWeight": "90045.36082474227", "direction": "Imp", "source_type": "primary", "targetWeight": "90045.36082474227" } }, { "key": "geid_107_5024", "source": "Mexico", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 94188.65979381444, "sourceWeight": "94188.65979381444", "direction": "Imp", "source_type": "primary", "targetWeight": "94188.65979381444" } }, { "key": "geid_107_5025", "source": "Norway", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 142815.46391752578, "sourceWeight": "142815.46391752578", "direction": "Imp", "source_type": "primary", "targetWeight": "142815.46391752578" } }, { "key": "geid_107_5026", "source": "Palestine", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 759660.8247422681, "sourceWeight": "759660.8247422681", "direction": "Imp", "source_type": "primary", "targetWeight": "759660.8247422681" } }, { "key": "geid_107_5027", "source": "IranPersia", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 449058.76288659795, "sourceWeight": "449058.76288659795", "direction": "Imp", "source_type": "primary", "targetWeight": "449058.76288659795" } }, { "key": "geid_107_5028", "source": "DanzigFreeCityofDanzig_Poland", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 7401.030927835051, "sourceWeight": "7401.030927835051", "direction": "Imp", "source_type": "primary", "targetWeight": "7401.030927835051" } }, { "key": "geid_107_5029", "source": "Portugal", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 99281.44329896907, "sourceWeight": "99281.44329896907", "direction": "Imp", "source_type": "primary", "targetWeight": "99281.44329896907" } }, { "key": "geid_107_5030", "source": "PortugueseAfrica", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 3.0927835051546393, "sourceWeight": "3.0927835051546393", "direction": "Imp", "source_type": "primary", "targetWeight": "3.0927835051546393" } }, { "key": "geid_107_5031", "source": "RhodeIs", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 45067.010309278354, "sourceWeight": "45067.010309278354", "direction": "Imp", "source_type": "primary", "targetWeight": "45067.010309278354" } }, { "key": "geid_107_5032", "source": "Romania", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1029647.4226804124, "sourceWeight": "1029647.4226804124", "direction": "Imp", "source_type": "primary", "targetWeight": "1029647.4226804124" } }, { "key": "geid_107_5033", "source": "RussiaUSSR", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 835379.381443299, "sourceWeight": "835379.381443299", "direction": "Imp", "source_type": "primary", "targetWeight": "835379.381443299" } }, { "key": "geid_107_5034", "source": "ThailandSiam", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 61469.072164948455, "sourceWeight": "61469.072164948455", "direction": "Imp", "source_type": "primary", "targetWeight": "61469.072164948455" } }, { "key": "geid_107_5035", "source": "Spain", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 138301.03092783506, "sourceWeight": "138301.03092783506", "direction": "Imp", "source_type": "primary", "targetWeight": "138301.03092783506" } }, { "key": "geid_107_5036", "source": "Sweden", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 594495.8762886598, "sourceWeight": "594495.8762886598", "direction": "Imp", "source_type": "primary", "targetWeight": "594495.8762886598" } }, { "key": "geid_107_5037", "source": "Switzerland", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 658040.2061855671, "sourceWeight": "658040.2061855671", "direction": "Imp", "source_type": "primary", "targetWeight": "658040.2061855671" } }, { "key": "geid_107_5038", "source": "Syria", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 874276.2886597938, "sourceWeight": "874276.2886597938", "direction": "Imp", "source_type": "primary", "targetWeight": "874276.2886597938" } }, { "key": "geid_107_5039", "source": "TurkeyOttomanEmpire", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 852871.1340206186, "sourceWeight": "852871.1340206186", "direction": "Imp", "source_type": "primary", "targetWeight": "852871.1340206186" } }, { "key": "geid_107_5040", "source": "UnitedStatesofAmerica", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1854167.0103092785, "sourceWeight": "1854167.0103092785", "direction": "Imp", "source_type": "primary", "targetWeight": "1854167.0103092785" } }, { "key": "geid_107_5041", "source": "Uruguay", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 826.8041237113403, "sourceWeight": "826.8041237113403", "direction": "Imp", "source_type": "primary", "targetWeight": "826.8041237113403" } }, { "key": "geid_107_5042", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 272800, "sourceWeight": "272800", "direction": "Imp", "source_type": "primary", "targetWeight": "272800" } }, { "key": "geid_107_5043", "source": "Othercountries", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 97462.88659793815, "sourceWeight": "97462.88659793815", "direction": "Imp", "source_type": "primary", "targetWeight": "97462.88659793815" } }, { "key": "geid_107_5044", "source": "EgyptArabRepublicEgypt", "target": "UnitedKingdom", "attributes": { "weight": 32943943.29896907, "sourceWeight": "32943943.29896907", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5045", "source": "EgyptArabRepublicEgypt", "target": "Cyprus", "attributes": { "weight": 41541.237113402065, "sourceWeight": "41541.237113402065", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5046", "source": "EgyptArabRepublicEgypt", "target": "Gibraltar", "attributes": { "weight": 1836.0824742268042, "sourceWeight": "1836.0824742268042", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5047", "source": "EgyptArabRepublicEgypt", "target": "Malta", "attributes": { "weight": 13339.175257731958, "sourceWeight": "13339.175257731958", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5048", "source": "EgyptArabRepublicEgypt", "target": "Aden", "attributes": { "weight": 10426.804123711341, "sourceWeight": "10426.804123711341", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5049", "source": "EgyptArabRepublicEgypt", "target": "BritishBorneo", "attributes": { "weight": 15.463917525773196, "sourceWeight": "15.463917525773196", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5050", "source": "EgyptArabRepublicEgypt", "target": "India", "attributes": { "weight": 212578.3505154639, "sourceWeight": "212578.3505154639", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5051", "source": "EgyptArabRepublicEgypt", "target": "SriLankaCeylon", "attributes": { "weight": 12739.175257731958, "sourceWeight": "12739.175257731958", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5052", "source": "EgyptArabRepublicEgypt", "target": "HongKong", "attributes": { "weight": 3969.0721649484535, "sourceWeight": "3969.0721649484535", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5053", "source": "EgyptArabRepublicEgypt", "target": "StraitsSettlements_StraitsSettlementsDependencies", "attributes": { "weight": 31518.556701030928, "sourceWeight": "31518.556701030928", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5054", "source": "EgyptArabRepublicEgypt", "target": "BritishWestIndies", "attributes": { "weight": 260.82474226804123, "sourceWeight": "260.82474226804123", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5055", "source": "EgyptArabRepublicEgypt", "target": "CanadaProvinceofCanada", "attributes": { "weight": 8406.185567010309, "sourceWeight": "8406.185567010309", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5056", "source": "EgyptArabRepublicEgypt", "target": "BritishEastAfrica", "attributes": { "weight": 10181.443298969072, "sourceWeight": "10181.443298969072", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5057", "source": "EgyptArabRepublicEgypt", "target": "BritishWestAfrica", "attributes": { "weight": 918.5567010309279, "sourceWeight": "918.5567010309279", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5058", "source": "EgyptArabRepublicEgypt", "target": "SouthAfrica", "attributes": { "weight": 1053.6082474226805, "sourceWeight": "1053.6082474226805", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5059", "source": "EgyptArabRepublicEgypt", "target": "Australia", "attributes": { "weight": 41196.907216494845, "sourceWeight": "41196.907216494845", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5060", "source": "EgyptArabRepublicEgypt", "target": "EthiopiaAbyssinia", "attributes": { "weight": 1761.8556701030927, "sourceWeight": "1761.8556701030927", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5061", "source": "EgyptArabRepublicEgypt", "target": "Albania", "attributes": { "weight": 1932.9896907216496, "sourceWeight": "1932.9896907216496", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5062", "source": "EgyptArabRepublicEgypt", "target": "Arabia", "attributes": { "weight": 83588.65979381444, "sourceWeight": "83588.65979381444", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5063", "source": "EgyptArabRepublicEgypt", "target": "ArgentinaLaPlata", "attributes": { "weight": 416.49484536082474, "sourceWeight": "416.49484536082474", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5064", "source": "EgyptArabRepublicEgypt", "target": "Austria", "attributes": { "weight": 210880.41237113404, "sourceWeight": "210880.41237113404", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5065", "source": "EgyptArabRepublicEgypt", "target": "Belgium", "attributes": { "weight": 293701.03092783503, "sourceWeight": "293701.03092783503", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5066", "source": "EgyptArabRepublicEgypt", "target": "BelgianAfrica", "attributes": { "weight": 753.6082474226804, "sourceWeight": "753.6082474226804", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5067", "source": "EgyptArabRepublicEgypt", "target": "Brazil", "attributes": { "weight": 484.5360824742268, "sourceWeight": "484.5360824742268", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5068", "source": "EgyptArabRepublicEgypt", "target": "Bulgaria", "attributes": { "weight": 15038.144329896908, "sourceWeight": "15038.144329896908", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5069", "source": "EgyptArabRepublicEgypt", "target": "Chile", "attributes": { "weight": 7.216494845360825, "sourceWeight": "7.216494845360825", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5070", "source": "EgyptArabRepublicEgypt", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 26843.298969072166, "sourceWeight": "26843.298969072166", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5071", "source": "EgyptArabRepublicEgypt", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 17.52577319587629, "sourceWeight": "17.52577319587629", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5072", "source": "EgyptArabRepublicEgypt", "target": "Cuba", "attributes": { "weight": 1222.680412371134, "sourceWeight": "1222.680412371134", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5073", "source": "EgyptArabRepublicEgypt", "target": "Czechoslovakia", "attributes": { "weight": 1153612.3711340206, "sourceWeight": "1153612.3711340206", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5074", "source": "EgyptArabRepublicEgypt", "target": "Denmark", "attributes": { "weight": 56015.463917525776, "sourceWeight": "56015.463917525776", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5075", "source": "EgyptArabRepublicEgypt", "target": "Ecuador", "attributes": { "weight": 8.247422680412372, "sourceWeight": "8.247422680412372", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5076", "source": "EgyptArabRepublicEgypt", "target": "Finland", "attributes": { "weight": 14.43298969072165, "sourceWeight": "14.43298969072165", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5077", "source": "EgyptArabRepublicEgypt", "target": "France", "attributes": { "weight": 8880487.62886598, "sourceWeight": "8880487.62886598", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5078", "source": "EgyptArabRepublicEgypt", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1957.7319587628867, "sourceWeight": "1957.7319587628867", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5079", "source": "EgyptArabRepublicEgypt", "target": "Morocco", "attributes": { "weight": 11923.711340206186, "sourceWeight": "11923.711340206186", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5080", "source": "EgyptArabRepublicEgypt", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 25379.38144329897, "sourceWeight": "25379.38144329897", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5081", "source": "EgyptArabRepublicEgypt", "target": "FrenchIndochina", "attributes": { "weight": 909.2783505154639, "sourceWeight": "909.2783505154639", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5082", "source": "EgyptArabRepublicEgypt", "target": "FrenchAfrica", "attributes": { "weight": 1204.1237113402062, "sourceWeight": "1204.1237113402062", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5083", "source": "EgyptArabRepublicEgypt", "target": "FrenchWestIndies", "attributes": { "weight": 1.0309278350515465, "sourceWeight": "1.0309278350515465", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5084", "source": "EgyptArabRepublicEgypt", "target": "GermanyZollverein", "attributes": { "weight": 4094490.7216494847, "sourceWeight": "4094490.7216494847", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5085", "source": "EgyptArabRepublicEgypt", "target": "Greece", "attributes": { "weight": 403442.26804123714, "sourceWeight": "403442.26804123714", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5086", "source": "EgyptArabRepublicEgypt", "target": "Crete", "attributes": { "weight": 14009.278350515464, "sourceWeight": "14009.278350515464", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5087", "source": "EgyptArabRepublicEgypt", "target": "Guatemala", "attributes": { "weight": 258.7628865979382, "sourceWeight": "258.7628865979382", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5088", "source": "EgyptArabRepublicEgypt", "target": "Netherlands", "attributes": { "weight": 446694.8453608248, "sourceWeight": "446694.8453608248", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5089", "source": "EgyptArabRepublicEgypt", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 89891.7525773196, "sourceWeight": "89891.7525773196", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5090", "source": "EgyptArabRepublicEgypt", "target": "NetherlandsAntilles", "attributes": { "weight": 20.61855670103093, "sourceWeight": "20.61855670103093", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5091", "source": "EgyptArabRepublicEgypt", "target": "Honduras", "attributes": { "weight": 8.247422680412372, "sourceWeight": "8.247422680412372", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5092", "source": "EgyptArabRepublicEgypt", "target": "Hungary", "attributes": { "weight": 1812.3711340206187, "sourceWeight": "1812.3711340206187", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5093", "source": "EgyptArabRepublicEgypt", "target": "Italy", "attributes": { "weight": 4194929.896907217, "sourceWeight": "4194929.896907217", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5094", "source": "EgyptArabRepublicEgypt", "target": "Eritrea", "attributes": { "weight": 3655.6701030927834, "sourceWeight": "3655.6701030927834", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5095", "source": "EgyptArabRepublicEgypt", "target": "TripolitaniaRegencyofTripoli", "attributes": { "weight": 61029.8969072165, "sourceWeight": "61029.8969072165", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5096", "source": "EgyptArabRepublicEgypt", "target": "ItalianAfrica", "attributes": { "weight": 512.3711340206186, "sourceWeight": "512.3711340206186", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5097", "source": "EgyptArabRepublicEgypt", "target": "Japan", "attributes": { "weight": 1556164.9484536082, "sourceWeight": "1556164.9484536082", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5098", "source": "EgyptArabRepublicEgypt", "target": "IraqMesopotamia", "attributes": { "weight": 200828.86597938146, "sourceWeight": "200828.86597938146", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5099", "source": "EgyptArabRepublicEgypt", "target": "Mexico", "attributes": { "weight": 121.64948453608248, "sourceWeight": "121.64948453608248", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5100", "source": "EgyptArabRepublicEgypt", "target": "Norway", "attributes": { "weight": 270.1030927835052, "sourceWeight": "270.1030927835052", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5101", "source": "EgyptArabRepublicEgypt", "target": "Palestine", "attributes": { "weight": 388135.05154639174, "sourceWeight": "388135.05154639174", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5102", "source": "EgyptArabRepublicEgypt", "target": "Panama", "attributes": { "weight": 364.9484536082474, "sourceWeight": "364.9484536082474", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5103", "source": "EgyptArabRepublicEgypt", "target": "IranPersia", "attributes": { "weight": 1734.020618556701, "sourceWeight": "1734.020618556701", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5104", "source": "EgyptArabRepublicEgypt", "target": "DanzigFreeCityofDanzig_Poland", "attributes": { "weight": 286100, "sourceWeight": "286100", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5105", "source": "EgyptArabRepublicEgypt", "target": "Portugal", "attributes": { "weight": 46292.78350515464, "sourceWeight": "46292.78350515464", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5106", "source": "EgyptArabRepublicEgypt", "target": "PortugueseAfrica", "attributes": { "weight": 689.6907216494845, "sourceWeight": "689.6907216494845", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5107", "source": "EgyptArabRepublicEgypt", "target": "RhodeIs", "attributes": { "weight": 29906.18556701031, "sourceWeight": "29906.18556701031", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5108", "source": "EgyptArabRepublicEgypt", "target": "Romania", "attributes": { "weight": 36740.20618556701, "sourceWeight": "36740.20618556701", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5109", "source": "EgyptArabRepublicEgypt", "target": "RussiaUSSR", "attributes": { "weight": 77807.21649484536, "sourceWeight": "77807.21649484536", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5110", "source": "EgyptArabRepublicEgypt", "target": "ElSalvador", "attributes": { "weight": 6.185567010309279, "sourceWeight": "6.185567010309279", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5111", "source": "EgyptArabRepublicEgypt", "target": "ThailandSiam", "attributes": { "weight": 964.9484536082474, "sourceWeight": "964.9484536082474", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5112", "source": "EgyptArabRepublicEgypt", "target": "Spain", "attributes": { "weight": 1527125.7731958763, "sourceWeight": "1527125.7731958763", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5113", "source": "EgyptArabRepublicEgypt", "target": "Sweden", "attributes": { "weight": 20163.917525773195, "sourceWeight": "20163.917525773195", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5114", "source": "EgyptArabRepublicEgypt", "target": "Switzerland", "attributes": { "weight": 2370591.7525773197, "sourceWeight": "2370591.7525773197", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5115", "source": "EgyptArabRepublicEgypt", "target": "Syria", "attributes": { "weight": 342991.7525773196, "sourceWeight": "342991.7525773196", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5116", "source": "EgyptArabRepublicEgypt", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 146580.41237113404, "sourceWeight": "146580.41237113404", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5117", "source": "EgyptArabRepublicEgypt", "target": "UnitedStatesofAmerica", "attributes": { "weight": 7305062.886597938, "sourceWeight": "7305062.886597938", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5118", "source": "EgyptArabRepublicEgypt", "target": "Uruguay", "attributes": { "weight": 82.47422680412372, "sourceWeight": "82.47422680412372", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5119", "source": "EgyptArabRepublicEgypt", "target": "Venezuela", "attributes": { "weight": 290.7216494845361, "sourceWeight": "290.7216494845361", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5120", "source": "EgyptArabRepublicEgypt", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 10069.072164948453, "sourceWeight": "10069.072164948453", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5121", "source": "EgyptArabRepublicEgypt", "target": "Othercountries", "attributes": { "weight": 5014.432989690722, "sourceWeight": "5014.432989690722", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5122", "source": "FranceFrenchproduce", "target": "Senegal", "attributes": { "weight": 2699803.8107513795, "sourceWeight": "2699803.8107513795", "direction": "Imp", "source_type": "secondary", "targetWeight": "2699803.8107513795" } }, { "key": "geid_107_5123", "source": "FranceFrenchproduce", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 261604.7894069626, "sourceWeight": "261604.7894069626", "direction": "Imp", "source_type": "secondary", "targetWeight": "261604.7894069626" } }, { "key": "geid_107_5124", "source": "FranceFrenchproduce", "target": "BurkinaFasoUpperVolta", "attributes": { "weight": 1908.83162064276, "sourceWeight": "1908.83162064276", "direction": "Imp", "source_type": "secondary", "targetWeight": "1908.83162064276" } }, { "key": "geid_107_5125", "source": "FranceFrenchproduce", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 261788.0406518698, "sourceWeight": "261788.0406518698", "direction": "Imp", "source_type": "secondary", "targetWeight": "261788.0406518698" } }, { "key": "geid_107_5126", "source": "FranceFrenchproduce", "target": "IvoryCoast", "attributes": { "weight": 383075.1381394166, "sourceWeight": "383075.1381394166", "direction": "Imp", "source_type": "secondary", "targetWeight": "383075.1381394166" } }, { "key": "geid_107_5127", "source": "FranceFrenchproduce", "target": "BeninDahomey", "attributes": { "weight": 246760.3731552655, "sourceWeight": "246760.3731552655", "direction": "Imp", "source_type": "secondary", "targetWeight": "246760.3731552655" } }, { "key": "geid_107_5128", "source": "FranceFrenchproduce", "target": "Gabon", "attributes": { "weight": 168187.37700316316, "sourceWeight": "168187.37700316316", "direction": "Imp", "source_type": "secondary", "targetWeight": "168187.37700316316" } }, { "key": "geid_107_5129", "source": "FranceFrenchproduce", "target": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "weight": 88519.12320054023, "sourceWeight": "88519.12320054023", "direction": "Imp", "source_type": "secondary", "targetWeight": "88519.12320054023" } }, { "key": "geid_107_5130", "source": "FranceFrenchproduce", "target": "CentralAfricanRepublicUbangiShari", "attributes": { "weight": 15030.177138976404, "sourceWeight": "15030.177138976404", "direction": "Imp", "source_type": "secondary", "targetWeight": "15030.177138976404" } }, { "key": "geid_107_5131", "source": "FranceFrenchproduce", "target": "Chad", "attributes": { "weight": 5642.291625169569, "sourceWeight": "5642.291625169569", "direction": "Imp", "source_type": "secondary", "targetWeight": "5642.291625169569" } }, { "key": "geid_107_5132", "source": "FranceFrenchproduce", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 2375479.5781121873, "sourceWeight": "2375479.5781121873", "direction": "Imp", "source_type": "secondary", "targetWeight": "2375479.5781121873" } }, { "key": "geid_107_5133", "source": "FranceFrenchproduce", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 154627.2939112668, "sourceWeight": "154627.2939112668", "direction": "Imp", "source_type": "secondary", "targetWeight": "154627.2939112668" } }, { "key": "geid_107_5134", "source": "FranceFrenchproduce", "target": "ReunionBourbonI", "attributes": { "weight": 710826.8556586449, "sourceWeight": "710826.8556586449", "direction": "Imp", "source_type": "secondary", "targetWeight": "710826.8556586449" } }, { "key": "geid_107_5135", "source": "FranceFrenchproduce", "target": "FrenchIndia", "attributes": { "weight": 13726.9032820276, "sourceWeight": "13726.9032820276", "direction": "Imp", "source_type": "secondary", "targetWeight": "13726.9032820276" } }, { "key": "geid_107_5136", "source": "FranceFrenchproduce", "target": "NewCaledoniaandDependencies", "attributes": { "weight": 422249.37707105855, "sourceWeight": "422249.37707105855", "direction": "Imp", "source_type": "secondary", "targetWeight": "422249.37707105855" } }, { "key": "geid_107_5137", "source": "FranceFrenchproduce", "target": "FrenchPolynesia", "attributes": { "weight": 105574.64092349121, "sourceWeight": "105574.64092349121", "direction": "Imp", "source_type": "secondary", "targetWeight": "105574.64092349121" } }, { "key": "geid_107_5138", "source": "FranceFrenchproduce", "target": "FrenchGuiana", "attributes": { "weight": 342508.61591216584, "sourceWeight": "342508.61591216584", "direction": "Imp", "source_type": "secondary", "targetWeight": "342508.61591216584" } }, { "key": "geid_107_5139", "source": "FranceFrenchproduce", "target": "Martinique", "attributes": { "weight": 971488.7534857072, "sourceWeight": "971488.7534857072", "direction": "Imp", "source_type": "secondary", "targetWeight": "971488.7534857072" } }, { "key": "geid_107_5140", "source": "FranceFrenchproduce", "target": "Guadeloupe_GuadeloupeDependencies", "attributes": { "weight": 853470.4770257745, "sourceWeight": "853470.4770257745", "direction": "Imp", "source_type": "secondary", "targetWeight": "853470.4770257745" } }, { "key": "geid_107_5141", "source": "FranceFrenchproduce", "target": "StPierreandMiquelon", "attributes": { "weight": 337135.09277952684, "sourceWeight": "337135.09277952684", "direction": "Imp", "source_type": "secondary", "targetWeight": "337135.09277952684" } }, { "key": "geid_107_5142", "source": "FrenchColoniesFrenchproduce", "target": "Senegal", "attributes": { "weight": 87766.55011317041, "sourceWeight": "87766.55011317041", "direction": "Imp", "source_type": "secondary", "targetWeight": "87766.55011317041" } }, { "key": "geid_107_5143", "source": "FrenchColoniesFrenchproduce", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 54785.93098687003, "sourceWeight": "54785.93098687003", "direction": "Imp", "source_type": "secondary", "targetWeight": "54785.93098687003" } }, { "key": "geid_107_5144", "source": "FrenchColoniesFrenchproduce", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 26892.889655952007, "sourceWeight": "26892.889655952007", "direction": "Imp", "source_type": "secondary", "targetWeight": "26892.889655952007" } }, { "key": "geid_107_5145", "source": "FrenchColoniesFrenchproduce", "target": "IvoryCoast", "attributes": { "weight": 512.8312132186336, "sourceWeight": "512.8312132186336", "direction": "Imp", "source_type": "secondary", "targetWeight": "512.8312132186336" } }, { "key": "geid_107_5146", "source": "FrenchColoniesFrenchproduce", "target": "BeninDahomey", "attributes": { "weight": 6088.09644635561, "sourceWeight": "6088.09644635561", "direction": "Imp", "source_type": "secondary", "targetWeight": "6088.09644635561" } }, { "key": "geid_107_5147", "source": "FrenchColoniesFrenchproduce", "target": "Gabon", "attributes": { "weight": 9742.692123132309, "sourceWeight": "9742.692123132309", "direction": "Imp", "source_type": "secondary", "targetWeight": "9742.692123132309" } }, { "key": "geid_107_5148", "source": "FrenchColoniesFrenchproduce", "target": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "weight": 3031.754526935162, "sourceWeight": "3031.754526935162", "direction": "Imp", "source_type": "secondary", "targetWeight": "3031.754526935162" } }, { "key": "geid_107_5149", "source": "FrenchColoniesFrenchproduce", "target": "CentralAfricanRepublicUbangiShari", "attributes": { "weight": 26.457786328654603, "sourceWeight": "26.457786328654603", "direction": "Imp", "source_type": "secondary", "targetWeight": "26.457786328654603" } }, { "key": "geid_107_5150", "source": "FrenchColoniesFrenchproduce", "target": "Chad", "attributes": { "weight": 1021.8387732005085, "sourceWeight": "1021.8387732005085", "direction": "Imp", "source_type": "secondary", "targetWeight": "1021.8387732005085" } }, { "key": "geid_107_5151", "source": "FrenchColoniesFrenchproduce", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 198813.24130827753, "sourceWeight": "198813.24130827753", "direction": "Imp", "source_type": "secondary", "targetWeight": "198813.24130827753" } }, { "key": "geid_107_5152", "source": "FrenchColoniesFrenchproduce", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 151001.54728383373, "sourceWeight": "151001.54728383373", "direction": "Imp", "source_type": "secondary", "targetWeight": "151001.54728383373" } }, { "key": "geid_107_5153", "source": "FrenchColoniesFrenchproduce", "target": "ReunionBourbonI", "attributes": { "weight": 382675.00407422875, "sourceWeight": "382675.00407422875", "direction": "Imp", "source_type": "secondary", "targetWeight": "382675.00407422875" } }, { "key": "geid_107_5154", "source": "FrenchColoniesFrenchproduce", "target": "FrenchIndia", "attributes": { "weight": 8592.352557718134, "sourceWeight": "8592.352557718134", "direction": "Imp", "source_type": "secondary", "targetWeight": "8592.352557718134" } }, { "key": "geid_107_5155", "source": "FrenchColoniesFrenchproduce", "target": "NewCaledoniaandDependencies", "attributes": { "weight": 48185.58338614594, "sourceWeight": "48185.58338614594", "direction": "Imp", "source_type": "secondary", "targetWeight": "48185.58338614594" } }, { "key": "geid_107_5156", "source": "FrenchColoniesFrenchproduce", "target": "FrenchPolynesia", "attributes": { "weight": 17629.657605250646, "sourceWeight": "17629.657605250646", "direction": "Imp", "source_type": "secondary", "targetWeight": "17629.657605250646" } }, { "key": "geid_107_5157", "source": "FrenchColoniesFrenchproduce", "target": "FrenchGuiana", "attributes": { "weight": 46138.01115889386, "sourceWeight": "46138.01115889386", "direction": "Imp", "source_type": "secondary", "targetWeight": "46138.01115889386" } }, { "key": "geid_107_5158", "source": "FrenchColoniesFrenchproduce", "target": "Martinique", "attributes": { "weight": 13259.15092802128, "sourceWeight": "13259.15092802128", "direction": "Imp", "source_type": "secondary", "targetWeight": "13259.15092802128" } }, { "key": "geid_107_5159", "source": "FrenchColoniesFrenchproduce", "target": "Guadeloupe_GuadeloupeDependencies", "attributes": { "weight": 28367.411090990438, "sourceWeight": "28367.411090990438", "direction": "Imp", "source_type": "secondary", "targetWeight": "28367.411090990438" } }, { "key": "geid_107_5160", "source": "FrenchColoniesFrenchproduce", "target": "StPierreandMiquelon", "attributes": { "weight": 2165.5727704843084, "sourceWeight": "2165.5727704843084", "direction": "Imp", "source_type": "secondary", "targetWeight": "2165.5727704843084" } }, { "key": "geid_107_5161", "source": "FranceForeignproduce", "target": "Senegal", "attributes": { "weight": 251507.4800814763, "sourceWeight": "251507.4800814763", "direction": "Imp", "source_type": "secondary", "targetWeight": "251507.4800814763" } }, { "key": "geid_107_5162", "source": "FranceForeignproduce", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 17927.476392031986, "sourceWeight": "17927.476392031986", "direction": "Imp", "source_type": "secondary", "targetWeight": "17927.476392031986" } }, { "key": "geid_107_5163", "source": "FranceForeignproduce", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 3945.7023540062037, "sourceWeight": "3945.7023540062037", "direction": "Imp", "source_type": "secondary", "targetWeight": "3945.7023540062037" } }, { "key": "geid_107_5164", "source": "FranceForeignproduce", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 8459.341511996092, "sourceWeight": "8459.341511996092", "direction": "Imp", "source_type": "secondary", "targetWeight": "8459.341511996092" } }, { "key": "geid_107_5165", "source": "FranceForeignproduce", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 6117.276957899295, "sourceWeight": "6117.276957899295", "direction": "Imp", "source_type": "secondary", "targetWeight": "6117.276957899295" } }, { "key": "geid_107_5166", "source": "FranceForeignproduce", "target": "NewCaledoniaandDependencies", "attributes": { "weight": 15275.75511543633, "sourceWeight": "15275.75511543633", "direction": "Imp", "source_type": "secondary", "targetWeight": "15275.75511543633" } }, { "key": "geid_107_5167", "source": "FranceForeignproduce", "target": "FrenchPolynesia", "attributes": { "weight": 9414.177569035443, "sourceWeight": "9414.177569035443", "direction": "Imp", "source_type": "secondary", "targetWeight": "9414.177569035443" } }, { "key": "geid_107_5168", "source": "FranceForeignproduce", "target": "Martinique", "attributes": { "weight": 11056.60828429116, "sourceWeight": "11056.60828429116", "direction": "Imp", "source_type": "secondary", "targetWeight": "11056.60828429116" } }, { "key": "geid_107_5169", "source": "FranceForeignproduce", "target": "Guadeloupe_GuadeloupeDependencies", "attributes": { "weight": 37218.74216840073, "sourceWeight": "37218.74216840073", "direction": "Imp", "source_type": "secondary", "targetWeight": "37218.74216840073" } }, { "key": "geid_107_5170", "source": "GermanyZollverein", "target": "Senegal", "attributes": { "weight": 95817.84981891933, "sourceWeight": "95817.84981891933", "direction": "Imp", "source_type": "secondary", "targetWeight": "95817.84981891933" } }, { "key": "geid_107_5171", "source": "GermanyZollverein", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 2809.5683114530507, "sourceWeight": "2809.5683114530507", "direction": "Imp", "source_type": "secondary", "targetWeight": "2809.5683114530507" } }, { "key": "geid_107_5172", "source": "GermanyZollverein", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 21074.982254413047, "sourceWeight": "21074.982254413047", "direction": "Imp", "source_type": "secondary", "targetWeight": "21074.982254413047" } }, { "key": "geid_107_5173", "source": "GermanyZollverein", "target": "IvoryCoast", "attributes": { "weight": 44976.31901312659, "sourceWeight": "44976.31901312659", "direction": "Imp", "source_type": "secondary", "targetWeight": "44976.31901312659" } }, { "key": "geid_107_5174", "source": "GermanyZollverein", "target": "BeninDahomey", "attributes": { "weight": 46460.346310546185, "sourceWeight": "46460.346310546185", "direction": "Imp", "source_type": "secondary", "targetWeight": "46460.346310546185" } }, { "key": "geid_107_5175", "source": "GermanyZollverein", "target": "Gabon", "attributes": { "weight": 7860.034178360983, "sourceWeight": "7860.034178360983", "direction": "Imp", "source_type": "secondary", "targetWeight": "7860.034178360983" } }, { "key": "geid_107_5176", "source": "GermanyZollverein", "target": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "weight": 2647.8857854231787, "sourceWeight": "2647.8857854231787", "direction": "Imp", "source_type": "secondary", "targetWeight": "2647.8857854231787" } }, { "key": "geid_107_5177", "source": "GermanyZollverein", "target": "CentralAfricanRepublicUbangiShari", "attributes": { "weight": 411.64053870528255, "sourceWeight": "411.64053870528255", "direction": "Imp", "source_type": "secondary", "targetWeight": "411.64053870528255" } }, { "key": "geid_107_5178", "source": "GermanyZollverein", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 1937.4083974648506, "sourceWeight": "1937.4083974648506", "direction": "Imp", "source_type": "secondary", "targetWeight": "1937.4083974648506" } }, { "key": "geid_107_5179", "source": "GermanyZollverein", "target": "ReunionBourbonI", "attributes": { "weight": 559.5200316885279, "sourceWeight": "559.5200316885279", "direction": "Imp", "source_type": "secondary", "targetWeight": "559.5200316885279" } }, { "key": "geid_107_5180", "source": "GermanyZollverein", "target": "FrenchIndia", "attributes": { "weight": 3060.094545042902, "sourceWeight": "3060.094545042902", "direction": "Imp", "source_type": "secondary", "targetWeight": "3060.094545042902" } }, { "key": "geid_107_5181", "source": "GermanyZollverein", "target": "FrenchPolynesia", "attributes": { "weight": 5121.244884562977, "sourceWeight": "5121.244884562977", "direction": "Imp", "source_type": "secondary", "targetWeight": "5121.244884562977" } }, { "key": "geid_107_5182", "source": "GermanyZollverein", "target": "FrenchGuiana", "attributes": { "weight": 15.152557718424113, "sourceWeight": "15.152557718424113", "direction": "Imp", "source_type": "secondary", "targetWeight": "15.152557718424113" } }, { "key": "geid_107_5183", "source": "GermanyZollverein", "target": "Martinique", "attributes": { "weight": 1324.665006790358, "sourceWeight": "1324.665006790358", "direction": "Imp", "source_type": "secondary", "targetWeight": "1324.665006790358" } }, { "key": "geid_107_5184", "source": "UnitedKingdom", "target": "Senegal", "attributes": { "weight": 1321136.4141013585, "sourceWeight": "1321136.4141013585", "direction": "Imp", "source_type": "secondary", "targetWeight": "1321136.4141013585" } }, { "key": "geid_107_5185", "source": "UnitedKingdom", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 209465.4420325868, "sourceWeight": "209465.4420325868", "direction": "Imp", "source_type": "secondary", "targetWeight": "209465.4420325868" } }, { "key": "geid_107_5186", "source": "UnitedKingdom", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 387006.01939790446, "sourceWeight": "387006.01939790446", "direction": "Imp", "source_type": "secondary", "targetWeight": "387006.01939790446" } }, { "key": "geid_107_5187", "source": "UnitedKingdom", "target": "IvoryCoast", "attributes": { "weight": 267380.30516069714, "sourceWeight": "267380.30516069714", "direction": "Imp", "source_type": "secondary", "targetWeight": "267380.30516069714" } }, { "key": "geid_107_5188", "source": "UnitedKingdom", "target": "BeninDahomey", "attributes": { "weight": 362011.42559980665, "sourceWeight": "362011.42559980665", "direction": "Imp", "source_type": "secondary", "targetWeight": "362011.42559980665" } }, { "key": "geid_107_5189", "source": "UnitedKingdom", "target": "Gabon", "attributes": { "weight": 31067.71525577079, "sourceWeight": "31067.71525577079", "direction": "Imp", "source_type": "secondary", "targetWeight": "31067.71525577079" } }, { "key": "geid_107_5190", "source": "UnitedKingdom", "target": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "weight": 16668.79603893108, "sourceWeight": "16668.79603893108", "direction": "Imp", "source_type": "secondary", "targetWeight": "16668.79603893108" } }, { "key": "geid_107_5191", "source": "UnitedKingdom", "target": "CentralAfricanRepublicUbangiShari", "attributes": { "weight": 2690.383974649071, "sourceWeight": "2690.383974649071", "direction": "Imp", "source_type": "secondary", "targetWeight": "2690.383974649071" } }, { "key": "geid_107_5192", "source": "UnitedKingdom", "target": "Chad", "attributes": { "weight": 733.7270937075351, "sourceWeight": "733.7270937075351", "direction": "Imp", "source_type": "secondary", "targetWeight": "733.7270937075351" } }, { "key": "geid_107_5193", "source": "UnitedKingdom", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 189667.5362833797, "sourceWeight": "189667.5362833797", "direction": "Imp", "source_type": "secondary", "targetWeight": "189667.5362833797" } }, { "key": "geid_107_5194", "source": "UnitedKingdom", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 78912.27138976645, "sourceWeight": "78912.27138976645", "direction": "Imp", "source_type": "secondary", "targetWeight": "78912.27138976645" } }, { "key": "geid_107_5195", "source": "UnitedKingdom", "target": "ReunionBourbonI", "attributes": { "weight": 53338.21063829606, "sourceWeight": "53338.21063829606", "direction": "Imp", "source_type": "secondary", "targetWeight": "53338.21063829606" } }, { "key": "geid_107_5196", "source": "UnitedKingdom", "target": "FrenchIndia", "attributes": { "weight": 85.82503395201158, "sourceWeight": "85.82503395201158", "direction": "Imp", "source_type": "secondary", "targetWeight": "85.82503395201158" } }, { "key": "geid_107_5197", "source": "UnitedKingdom", "target": "NewCaledoniaandDependencies", "attributes": { "weight": 27178.645586237195, "sourceWeight": "27178.645586237195", "direction": "Imp", "source_type": "secondary", "targetWeight": "27178.645586237195" } }, { "key": "geid_107_5198", "source": "UnitedKingdom", "target": "FrenchPolynesia", "attributes": { "weight": 14057.560502489338, "sourceWeight": "14057.560502489338", "direction": "Imp", "source_type": "secondary", "targetWeight": "14057.560502489338" } }, { "key": "geid_107_5199", "source": "UnitedKingdom", "target": "FrenchGuiana", "attributes": { "weight": 5332.978202806519, "sourceWeight": "5332.978202806519", "direction": "Imp", "source_type": "secondary", "targetWeight": "5332.978202806519" } }, { "key": "geid_107_5200", "source": "UnitedKingdom", "target": "Martinique", "attributes": { "weight": 20831.842892710927, "sourceWeight": "20831.842892710927", "direction": "Imp", "source_type": "secondary", "targetWeight": "20831.842892710927" } }, { "key": "geid_107_5201", "source": "UnitedKingdom", "target": "Guadeloupe_GuadeloupeDependencies", "attributes": { "weight": 2992.334200995824, "sourceWeight": "2992.334200995824", "direction": "Imp", "source_type": "secondary", "targetWeight": "2992.334200995824" } }, { "key": "geid_107_5202", "source": "UnitedKingdom", "target": "StPierreandMiquelon", "attributes": { "weight": 895608.6746264974, "sourceWeight": "895608.6746264974", "direction": "Imp", "source_type": "secondary", "targetWeight": "895608.6746264974" } }, { "key": "geid_107_5203", "source": "Belgium", "target": "Senegal", "attributes": { "weight": 202345.9062471638, "sourceWeight": "202345.9062471638", "direction": "Imp", "source_type": "secondary", "targetWeight": "202345.9062471638" } }, { "key": "geid_107_5204", "source": "Belgium", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 17295.18856948787, "sourceWeight": "17295.18856948787", "direction": "Imp", "source_type": "secondary", "targetWeight": "17295.18856948787" } }, { "key": "geid_107_5205", "source": "Belgium", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 30630.114124036987, "sourceWeight": "30630.114124036987", "direction": "Imp", "source_type": "secondary", "targetWeight": "30630.114124036987" } }, { "key": "geid_107_5206", "source": "Belgium", "target": "IvoryCoast", "attributes": { "weight": 53035.57381167769, "sourceWeight": "53035.57381167769", "direction": "Imp", "source_type": "secondary", "targetWeight": "53035.57381167769" } }, { "key": "geid_107_5207", "source": "Belgium", "target": "BeninDahomey", "attributes": { "weight": 26939.63766410049, "sourceWeight": "26939.63766410049", "direction": "Imp", "source_type": "secondary", "targetWeight": "26939.63766410049" } }, { "key": "geid_107_5208", "source": "Belgium", "target": "Gabon", "attributes": { "weight": 20330.269556359654, "sourceWeight": "20330.269556359654", "direction": "Imp", "source_type": "secondary", "targetWeight": "20330.269556359654" } }, { "key": "geid_107_5209", "source": "Belgium", "target": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "weight": 20376.9938886367, "sourceWeight": "20376.9938886367", "direction": "Imp", "source_type": "secondary", "targetWeight": "20376.9938886367" } }, { "key": "geid_107_5210", "source": "Belgium", "target": "CentralAfricanRepublicUbangiShari", "attributes": { "weight": 4166.14839293784, "sourceWeight": "4166.14839293784", "direction": "Imp", "source_type": "secondary", "targetWeight": "4166.14839293784" } }, { "key": "geid_107_5211", "source": "Belgium", "target": "Chad", "attributes": { "weight": 1.01806247170662, "sourceWeight": "1.01806247170662", "direction": "Imp", "source_type": "secondary", "targetWeight": "1.01806247170662" } }, { "key": "geid_107_5212", "source": "Belgium", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 7121.157582616327, "sourceWeight": "7121.157582616327", "direction": "Imp", "source_type": "secondary", "targetWeight": "7121.157582616327" } }, { "key": "geid_107_5213", "source": "Belgium", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 30923.517360795693, "sourceWeight": "30923.517360795693", "direction": "Imp", "source_type": "secondary", "targetWeight": "30923.517360795693" } }, { "key": "geid_107_5214", "source": "Belgium", "target": "NewCaledoniaandDependencies", "attributes": { "weight": 11046.841987324206, "sourceWeight": "11046.841987324206", "direction": "Imp", "source_type": "secondary", "targetWeight": "11046.841987324206" } }, { "key": "geid_107_5215", "source": "Belgium", "target": "FrenchGuiana", "attributes": { "weight": 2415.2821865096507, "sourceWeight": "2415.2821865096507", "direction": "Imp", "source_type": "secondary", "targetWeight": "2415.2821865096507" } }, { "key": "geid_107_5216", "source": "Belgium", "target": "Martinique", "attributes": { "weight": 37908.55052059627, "sourceWeight": "37908.55052059627", "direction": "Imp", "source_type": "secondary", "targetWeight": "37908.55052059627" } }, { "key": "geid_107_5217", "source": "Spain", "target": "Senegal", "attributes": { "weight": 64837.711611586754, "sourceWeight": "64837.711611586754", "direction": "Imp", "source_type": "secondary", "targetWeight": "64837.711611586754" } }, { "key": "geid_107_5218", "source": "Spain", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 266.5429606156541, "sourceWeight": "266.5429606156541", "direction": "Imp", "source_type": "secondary", "targetWeight": "266.5429606156541" } }, { "key": "geid_107_5219", "source": "Spain", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 2131.5031914892893, "sourceWeight": "2131.5031914892893", "direction": "Imp", "source_type": "secondary", "targetWeight": "2131.5031914892893" } }, { "key": "geid_107_5220", "source": "Spain", "target": "IvoryCoast", "attributes": { "weight": 532.8018107740878, "sourceWeight": "532.8018107740878", "direction": "Imp", "source_type": "secondary", "targetWeight": "532.8018107740878" } }, { "key": "geid_107_5221", "source": "Spain", "target": "BeninDahomey", "attributes": { "weight": 2569.412109551746, "sourceWeight": "2569.412109551746", "direction": "Imp", "source_type": "secondary", "targetWeight": "2569.412109551746" } }, { "key": "geid_107_5222", "source": "Spain", "target": "Gabon", "attributes": { "weight": 913.4743096423412, "sourceWeight": "913.4743096423412", "direction": "Imp", "source_type": "secondary", "targetWeight": "913.4743096423412" } }, { "key": "geid_107_5223", "source": "Spain", "target": "Chad", "attributes": { "weight": 0.7102761430511303, "sourceWeight": "0.7102761430511303", "direction": "Imp", "source_type": "secondary", "targetWeight": "0.7102761430511303" } }, { "key": "geid_107_5224", "source": "Spain", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 500.87489814393956, "sourceWeight": "500.87489814393956", "direction": "Imp", "source_type": "secondary", "targetWeight": "500.87489814393956" } }, { "key": "geid_107_5225", "source": "Spain", "target": "FrenchGuiana", "attributes": { "weight": 3.8473291081936223, "sourceWeight": "3.8473291081936223", "direction": "Imp", "source_type": "secondary", "targetWeight": "3.8473291081936223" } }, { "key": "geid_107_5226", "source": "Spain", "target": "Martinique", "attributes": { "weight": 64.49307378904263, "sourceWeight": "64.49307378904263", "direction": "Imp", "source_type": "secondary", "targetWeight": "64.49307378904263" } }, { "key": "geid_107_5227", "source": "Italy", "target": "Senegal", "attributes": { "weight": 75963.34689904677, "sourceWeight": "75963.34689904677", "direction": "Imp", "source_type": "secondary", "targetWeight": "75963.34689904677" } }, { "key": "geid_107_5228", "source": "Italy", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 2017.18424626521, "sourceWeight": "2017.18424626521", "direction": "Imp", "source_type": "secondary", "targetWeight": "2017.18424626521" } }, { "key": "geid_107_5229", "source": "Italy", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 7607.5073336348705, "sourceWeight": "7607.5073336348705", "direction": "Imp", "source_type": "secondary", "targetWeight": "7607.5073336348705" } }, { "key": "geid_107_5230", "source": "Italy", "target": "IvoryCoast", "attributes": { "weight": 6703.136396559302, "sourceWeight": "6703.136396559302", "direction": "Imp", "source_type": "secondary", "targetWeight": "6703.136396559302" } }, { "key": "geid_107_5231", "source": "Italy", "target": "BeninDahomey", "attributes": { "weight": 4154.535377998954, "sourceWeight": "4154.535377998954", "direction": "Imp", "source_type": "secondary", "targetWeight": "4154.535377998954" } }, { "key": "geid_107_5232", "source": "Italy", "target": "Gabon", "attributes": { "weight": 114.60305568129986, "sourceWeight": "114.60305568129986", "direction": "Imp", "source_type": "secondary", "targetWeight": "114.60305568129986" } }, { "key": "geid_107_5233", "source": "Italy", "target": "Chad", "attributes": { "weight": 21.095201448618567, "sourceWeight": "21.095201448618567", "direction": "Imp", "source_type": "secondary", "targetWeight": "21.095201448618567" } }, { "key": "geid_107_5234", "source": "Italy", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 2007.560004526867, "sourceWeight": "2007.560004526867", "direction": "Imp", "source_type": "secondary", "targetWeight": "2007.560004526867" } }, { "key": "geid_107_5235", "source": "Italy", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 13908.201267541403, "sourceWeight": "13908.201267541403", "direction": "Imp", "source_type": "secondary", "targetWeight": "13908.201267541403" } }, { "key": "geid_107_5236", "source": "Italy", "target": "FrenchGuiana", "attributes": { "weight": 214.20744680850336, "sourceWeight": "214.20744680850336", "direction": "Imp", "source_type": "secondary", "targetWeight": "214.20744680850336" } }, { "key": "geid_107_5237", "source": "Italy", "target": "Martinique", "attributes": { "weight": 503.45556813035864, "sourceWeight": "503.45556813035864", "direction": "Imp", "source_type": "secondary", "targetWeight": "503.45556813035864" } }, { "key": "geid_107_5238", "source": "Netherlands", "target": "Senegal", "attributes": { "weight": 167253.30468537234, "sourceWeight": "167253.30468537234", "direction": "Imp", "source_type": "secondary", "targetWeight": "167253.30468537234" } }, { "key": "geid_107_5239", "source": "Netherlands", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 29792.29606156531, "sourceWeight": "29792.29606156531", "direction": "Imp", "source_type": "secondary", "targetWeight": "29792.29606156531" } }, { "key": "geid_107_5240", "source": "Netherlands", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 7255.151177002923, "sourceWeight": "7255.151177002923", "direction": "Imp", "source_type": "secondary", "targetWeight": "7255.151177002923" } }, { "key": "geid_107_5241", "source": "Netherlands", "target": "IvoryCoast", "attributes": { "weight": 57886.72435490976, "sourceWeight": "57886.72435490976", "direction": "Imp", "source_type": "secondary", "targetWeight": "57886.72435490976" } }, { "key": "geid_107_5242", "source": "Netherlands", "target": "BeninDahomey", "attributes": { "weight": 57671.98420099397, "sourceWeight": "57671.98420099397", "direction": "Imp", "source_type": "secondary", "targetWeight": "57671.98420099397" } }, { "key": "geid_107_5243", "source": "Netherlands", "target": "Gabon", "attributes": { "weight": 1103.9822091443718, "sourceWeight": "1103.9822091443718", "direction": "Imp", "source_type": "secondary", "targetWeight": "1103.9822091443718" } }, { "key": "geid_107_5244", "source": "Netherlands", "target": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "weight": 390.02446808509313, "sourceWeight": "390.02446808509313", "direction": "Imp", "source_type": "secondary", "targetWeight": "390.02446808509313" } }, { "key": "geid_107_5245", "source": "Netherlands", "target": "CentralAfricanRepublicUbangiShari", "attributes": { "weight": 177.39146672701978, "sourceWeight": "177.39146672701978", "direction": "Imp", "source_type": "secondary", "targetWeight": "177.39146672701978" } }, { "key": "geid_107_5246", "source": "Netherlands", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 857.8715255771551, "sourceWeight": "857.8715255771551", "direction": "Imp", "source_type": "secondary", "targetWeight": "857.8715255771551" } }, { "key": "geid_107_5247", "source": "Netherlands", "target": "FrenchGuiana", "attributes": { "weight": 738.036102308712, "sourceWeight": "738.036102308712", "direction": "Imp", "source_type": "secondary", "targetWeight": "738.036102308712" } }, { "key": "geid_107_5248", "source": "Netherlands", "target": "Martinique", "attributes": { "weight": 33817.96367134335, "sourceWeight": "33817.96367134335", "direction": "Imp", "source_type": "secondary", "targetWeight": "33817.96367134335" } }, { "key": "geid_107_5249", "source": "Portugal", "target": "Senegal", "attributes": { "weight": 34216.6061566308, "sourceWeight": "34216.6061566308", "direction": "Imp", "source_type": "secondary", "targetWeight": "34216.6061566308" } }, { "key": "geid_107_5250", "source": "Portugal", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 224.11579900406664, "sourceWeight": "224.11579900406664", "direction": "Imp", "source_type": "secondary", "targetWeight": "224.11579900406664" } }, { "key": "geid_107_5251", "source": "Portugal", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 1376.527003168808, "sourceWeight": "1376.527003168808", "direction": "Imp", "source_type": "secondary", "targetWeight": "1376.527003168808" } }, { "key": "geid_107_5252", "source": "Portugal", "target": "BeninDahomey", "attributes": { "weight": 4842.946853779827, "sourceWeight": "4842.946853779827", "direction": "Imp", "source_type": "secondary", "targetWeight": "4842.946853779827" } }, { "key": "geid_107_5253", "source": "Portugal", "target": "Gabon", "attributes": { "weight": 1675.0087143503279, "sourceWeight": "1675.0087143503279", "direction": "Imp", "source_type": "secondary", "targetWeight": "1675.0087143503279" } }, { "key": "geid_107_5254", "source": "Portugal", "target": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "weight": 3180.888841104464, "sourceWeight": "3180.888841104464", "direction": "Imp", "source_type": "secondary", "targetWeight": "3180.888841104464" } }, { "key": "geid_107_5255", "source": "Portugal", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 659.3611815300817, "sourceWeight": "659.3611815300817", "direction": "Imp", "source_type": "secondary", "targetWeight": "659.3611815300817" } }, { "key": "geid_107_5256", "source": "Portugal", "target": "FrenchGuiana", "attributes": { "weight": 269.3603893164236, "sourceWeight": "269.3603893164236", "direction": "Imp", "source_type": "secondary", "targetWeight": "269.3603893164236" } }, { "key": "geid_107_5257", "source": "Portugal", "target": "StPierreandMiquelon", "attributes": { "weight": 18965.047781801077, "sourceWeight": "18965.047781801077", "direction": "Imp", "source_type": "secondary", "targetWeight": "18965.047781801077" } }, { "key": "geid_107_5258", "source": "Norway_Sweden", "target": "Senegal", "attributes": { "weight": 25417.657944770526, "sourceWeight": "25417.657944770526", "direction": "Imp", "source_type": "secondary", "targetWeight": "25417.657944770526" } }, { "key": "geid_107_5259", "source": "Norway_Sweden", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 1371.1052286101844, "sourceWeight": "1371.1052286101844", "direction": "Imp", "source_type": "secondary", "targetWeight": "1371.1052286101844" } }, { "key": "geid_107_5260", "source": "Norway_Sweden", "target": "BeninDahomey", "attributes": { "weight": 1697.595495699354, "sourceWeight": "1697.595495699354", "direction": "Imp", "source_type": "secondary", "targetWeight": "1697.595495699354" } }, { "key": "geid_107_5261", "source": "Norway_Sweden", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 9302.758918062156, "sourceWeight": "9302.758918062156", "direction": "Imp", "source_type": "secondary", "targetWeight": "9302.758918062156" } }, { "key": "geid_107_5262", "source": "Norway_Sweden", "target": "FrenchGuiana", "attributes": { "weight": 1218.1709370755584, "sourceWeight": "1218.1709370755584", "direction": "Imp", "source_type": "secondary", "targetWeight": "1218.1709370755584" } }, { "key": "geid_107_5263", "source": "Norway_Sweden", "target": "Martinique", "attributes": { "weight": 559.9343594386411, "sourceWeight": "559.9343594386411", "direction": "Imp", "source_type": "secondary", "targetWeight": "559.9343594386411" } }, { "key": "geid_107_5264", "source": "Norway_Sweden", "target": "Guadeloupe_GuadeloupeDependencies", "attributes": { "weight": 1337.6867360796286, "sourceWeight": "1337.6867360796286", "direction": "Imp", "source_type": "secondary", "targetWeight": "1337.6867360796286" } }, { "key": "geid_107_5265", "source": "Switzerland", "target": "Senegal", "attributes": { "weight": 41761.18302399134, "sourceWeight": "41761.18302399134", "direction": "Imp", "source_type": "secondary", "targetWeight": "41761.18302399134" } }, { "key": "geid_107_5266", "source": "Switzerland", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 4896.56086464447, "sourceWeight": "4896.56086464447", "direction": "Imp", "source_type": "secondary", "targetWeight": "4896.56086464447" } }, { "key": "geid_107_5267", "source": "Switzerland", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 11039.869443186588, "sourceWeight": "11039.869443186588", "direction": "Imp", "source_type": "secondary", "targetWeight": "11039.869443186588" } }, { "key": "geid_107_5268", "source": "Switzerland", "target": "IvoryCoast", "attributes": { "weight": 11810.104730646952, "sourceWeight": "11810.104730646952", "direction": "Imp", "source_type": "secondary", "targetWeight": "11810.104730646952" } }, { "key": "geid_107_5269", "source": "Switzerland", "target": "BeninDahomey", "attributes": { "weight": 2394.4710955182527, "sourceWeight": "2394.4710955182527", "direction": "Imp", "source_type": "secondary", "targetWeight": "2394.4710955182527" } }, { "key": "geid_107_5270", "source": "Switzerland", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 7687.022747849445, "sourceWeight": "7687.022747849445", "direction": "Imp", "source_type": "secondary", "targetWeight": "7687.022747849445" } }, { "key": "geid_107_5271", "source": "Switzerland", "target": "FrenchGuiana", "attributes": { "weight": 116.75755998188829, "sourceWeight": "116.75755998188829", "direction": "Imp", "source_type": "secondary", "targetWeight": "116.75755998188829" } }, { "key": "geid_107_5272", "source": "Czechoslovakia", "target": "Senegal", "attributes": { "weight": 1226.8599818922173, "sourceWeight": "1226.8599818922173", "direction": "Imp", "source_type": "secondary", "targetWeight": "1226.8599818922173" } }, { "key": "geid_107_5273", "source": "Czechoslovakia", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 808.8979855137798, "sourceWeight": "808.8979855137798", "direction": "Imp", "source_type": "secondary", "targetWeight": "808.8979855137798" } }, { "key": "geid_107_5274", "source": "Czechoslovakia", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 12478.095767315104, "sourceWeight": "12478.095767315104", "direction": "Imp", "source_type": "secondary", "targetWeight": "12478.095767315104" } }, { "key": "geid_107_5275", "source": "Czechoslovakia", "target": "BeninDahomey", "attributes": { "weight": 16013.743866002173, "sourceWeight": "16013.743866002173", "direction": "Imp", "source_type": "secondary", "targetWeight": "16013.743866002173" } }, { "key": "geid_107_5276", "source": "Czechoslovakia", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 285.2587369850514, "sourceWeight": "285.2587369850514", "direction": "Imp", "source_type": "secondary", "targetWeight": "285.2587369850514" } }, { "key": "geid_107_5277", "source": "Czechoslovakia", "target": "FrenchGuiana", "attributes": { "weight": 179.42759167043303, "sourceWeight": "179.42759167043303", "direction": "Imp", "source_type": "secondary", "targetWeight": "179.42759167043303" } }, { "key": "geid_107_5278", "source": "Czechoslovakia", "target": "Martinique", "attributes": { "weight": 130.13442734268457, "sourceWeight": "130.13442734268457", "direction": "Imp", "source_type": "secondary", "targetWeight": "130.13442734268457" } }, { "key": "geid_107_5279", "source": "Europeother", "target": "BeninDahomey", "attributes": { "weight": 576.4009280217098, "sourceWeight": "576.4009280217098", "direction": "Imp", "source_type": "secondary", "targetWeight": "576.4009280217098" } }, { "key": "geid_107_5280", "source": "Europeother", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 76.94658216387245, "sourceWeight": "76.94658216387245", "direction": "Imp", "source_type": "secondary", "targetWeight": "76.94658216387245" } }, { "key": "geid_107_5281", "source": "Europeother", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 118.37935717518837, "sourceWeight": "118.37935717518837", "direction": "Imp", "source_type": "secondary", "targetWeight": "118.37935717518837" } }, { "key": "geid_107_5282", "source": "Europeother", "target": "Martinique", "attributes": { "weight": 98.83492530556478, "sourceWeight": "98.83492530556478", "direction": "Imp", "source_type": "secondary", "targetWeight": "98.83492530556478" } }, { "key": "geid_107_5283", "source": "PeoplesRepublicofChinaChina", "target": "BeninDahomey", "attributes": { "weight": 90.97453598913226, "sourceWeight": "90.97453598913226", "direction": "Imp", "source_type": "secondary", "targetWeight": "90.97453598913226" } }, { "key": "geid_107_5284", "source": "PeoplesRepublicofChinaChina", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 1511.1006564055622, "sourceWeight": "1511.1006564055622", "direction": "Imp", "source_type": "secondary", "targetWeight": "1511.1006564055622" } }, { "key": "geid_107_5285", "source": "PeoplesRepublicofChinaChina", "target": "FrenchGuiana", "attributes": { "weight": 0.50903123585331, "sourceWeight": "0.50903123585331", "direction": "Imp", "source_type": "secondary", "targetWeight": "0.50903123585331" } }, { "key": "geid_107_5286", "source": "Japan", "target": "BeninDahomey", "attributes": { "weight": 92.0044363965564, "sourceWeight": "92.0044363965564", "direction": "Imp", "source_type": "secondary", "targetWeight": "92.0044363965564" } }, { "key": "geid_107_5287", "source": "Japan", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 327.2005432322207, "sourceWeight": "327.2005432322207", "direction": "Imp", "source_type": "secondary", "targetWeight": "327.2005432322207" } }, { "key": "geid_107_5288", "source": "Japan", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 250027.66708917214, "sourceWeight": "250027.66708917214", "direction": "Imp", "source_type": "secondary", "targetWeight": "250027.66708917214" } }, { "key": "geid_107_5289", "source": "Japan", "target": "ReunionBourbonI", "attributes": { "weight": 366.14735174285767, "sourceWeight": "366.14735174285767", "direction": "Imp", "source_type": "secondary", "targetWeight": "366.14735174285767" } }, { "key": "geid_107_5290", "source": "Asiaother", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 300.5770258035208, "sourceWeight": "300.5770258035208", "direction": "Imp", "source_type": "secondary", "targetWeight": "300.5770258035208" } }, { "key": "geid_107_5291", "source": "Asiaother", "target": "Martinique", "attributes": { "weight": 5.362584880036033, "sourceWeight": "5.362584880036033", "direction": "Imp", "source_type": "secondary", "targetWeight": "5.362584880036033" } }, { "key": "geid_107_5292", "source": "EthiopiaAbyssinia", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 852.3313716613563, "sourceWeight": "852.3313716613563", "direction": "Imp", "source_type": "secondary", "targetWeight": "852.3313716613563" } }, { "key": "geid_107_5293", "source": "EthiopiaAbyssinia", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 2168097.316817491, "sourceWeight": "2168097.316817491", "direction": "Imp", "source_type": "secondary", "targetWeight": "2168097.316817491" } }, { "key": "geid_107_5294", "source": "EgyptArabRepublicEgypt", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 4079.494703485602, "sourceWeight": "4079.494703485602", "direction": "Imp", "source_type": "secondary", "targetWeight": "4079.494703485602" } }, { "key": "geid_107_5295", "source": "EgyptArabRepublicEgypt", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 4718.127659574308, "sourceWeight": "4718.127659574308", "direction": "Imp", "source_type": "secondary", "targetWeight": "4718.127659574308" } }, { "key": "geid_107_5296", "source": "EgyptArabRepublicEgypt", "target": "Martinique", "attributes": { "weight": 6.510864644635361, "sourceWeight": "6.510864644635361", "direction": "Imp", "source_type": "secondary", "targetWeight": "6.510864644635361" } }, { "key": "geid_107_5297", "source": "Liberia", "target": "BeninDahomey", "attributes": { "weight": 131.8390900860073, "sourceWeight": "131.8390900860073", "direction": "Imp", "source_type": "secondary", "targetWeight": "131.8390900860073" } }, { "key": "geid_107_5298", "source": "Arabia", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 7413.010049796037, "sourceWeight": "7413.010049796037", "direction": "Imp", "source_type": "secondary", "targetWeight": "7413.010049796037" } }, { "key": "geid_107_5299", "source": "Africaother", "target": "BeninDahomey", "attributes": { "weight": 227.31204164779672, "sourceWeight": "227.31204164779672", "direction": "Imp", "source_type": "secondary", "targetWeight": "227.31204164779672" } }, { "key": "geid_107_5300", "source": "UnitedStatesofAmerica", "target": "Senegal", "attributes": { "weight": 300230.908239012, "sourceWeight": "300230.908239012", "direction": "Imp", "source_type": "secondary", "targetWeight": "300230.908239012" } }, { "key": "geid_107_5301", "source": "UnitedStatesofAmerica", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 13694.739610683102, "sourceWeight": "13694.739610683102", "direction": "Imp", "source_type": "secondary", "targetWeight": "13694.739610683102" } }, { "key": "geid_107_5302", "source": "UnitedStatesofAmerica", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 18705.15774105867, "sourceWeight": "18705.15774105867", "direction": "Imp", "source_type": "secondary", "targetWeight": "18705.15774105867" } }, { "key": "geid_107_5303", "source": "UnitedStatesofAmerica", "target": "IvoryCoast", "attributes": { "weight": 70807.47605251004, "sourceWeight": "70807.47605251004", "direction": "Imp", "source_type": "secondary", "targetWeight": "70807.47605251004" } }, { "key": "geid_107_5304", "source": "UnitedStatesofAmerica", "target": "BeninDahomey", "attributes": { "weight": 165697.64603892603, "sourceWeight": "165697.64603892603", "direction": "Imp", "source_type": "secondary", "targetWeight": "165697.64603892603" } }, { "key": "geid_107_5305", "source": "UnitedStatesofAmerica", "target": "Gabon", "attributes": { "weight": 20550.691919419856, "sourceWeight": "20550.691919419856", "direction": "Imp", "source_type": "secondary", "targetWeight": "20550.691919419856" } }, { "key": "geid_107_5306", "source": "UnitedStatesofAmerica", "target": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "weight": 1554.4630149388336, "sourceWeight": "1554.4630149388336", "direction": "Imp", "source_type": "secondary", "targetWeight": "1554.4630149388336" } }, { "key": "geid_107_5307", "source": "UnitedStatesofAmerica", "target": "CentralAfricanRepublicUbangiShari", "attributes": { "weight": 1626.4495020370657, "sourceWeight": "1626.4495020370657", "direction": "Imp", "source_type": "secondary", "targetWeight": "1626.4495020370657" } }, { "key": "geid_107_5308", "source": "UnitedStatesofAmerica", "target": "Chad", "attributes": { "weight": 295.94839293797094, "sourceWeight": "295.94839293797094", "direction": "Imp", "source_type": "secondary", "targetWeight": "295.94839293797094" } }, { "key": "geid_107_5309", "source": "UnitedStatesofAmerica", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 61444.225282931366, "sourceWeight": "61444.225282931366", "direction": "Imp", "source_type": "secondary", "targetWeight": "61444.225282931366" } }, { "key": "geid_107_5310", "source": "UnitedStatesofAmerica", "target": "ReunionBourbonI", "attributes": { "weight": 27901.12664101309, "sourceWeight": "27901.12664101309", "direction": "Imp", "source_type": "secondary", "targetWeight": "27901.12664101309" } }, { "key": "geid_107_5311", "source": "UnitedStatesofAmerica", "target": "FrenchIndia", "attributes": { "weight": 167686.32453598344, "sourceWeight": "167686.32453598344", "direction": "Imp", "source_type": "secondary", "targetWeight": "167686.32453598344" } }, { "key": "geid_107_5312", "source": "UnitedStatesofAmerica", "target": "NewCaledoniaandDependencies", "attributes": { "weight": 23717.434427341883, "sourceWeight": "23717.434427341883", "direction": "Imp", "source_type": "secondary", "targetWeight": "23717.434427341883" } }, { "key": "geid_107_5313", "source": "UnitedStatesofAmerica", "target": "FrenchPolynesia", "attributes": { "weight": 229540.80531914116, "sourceWeight": "229540.80531914116", "direction": "Imp", "source_type": "secondary", "targetWeight": "229540.80531914116" } }, { "key": "geid_107_5314", "source": "UnitedStatesofAmerica", "target": "FrenchGuiana", "attributes": { "weight": 74110.98223177656, "sourceWeight": "74110.98223177656", "direction": "Imp", "source_type": "secondary", "targetWeight": "74110.98223177656" } }, { "key": "geid_107_5315", "source": "UnitedStatesofAmerica", "target": "Martinique", "attributes": { "weight": 473807.41077408986, "sourceWeight": "473807.41077408986", "direction": "Imp", "source_type": "secondary", "targetWeight": "473807.41077408986" } }, { "key": "geid_107_5316", "source": "UnitedStatesofAmerica", "target": "Guadeloupe_GuadeloupeDependencies", "attributes": { "weight": 248154.14803077473, "sourceWeight": "248154.14803077473", "direction": "Imp", "source_type": "secondary", "targetWeight": "248154.14803077473" } }, { "key": "geid_107_5317", "source": "UnitedStatesofAmerica", "target": "StPierreandMiquelon", "attributes": { "weight": 43510.35640561192, "sourceWeight": "43510.35640561192", "direction": "Imp", "source_type": "secondary", "targetWeight": "43510.35640561192" } }, { "key": "geid_107_5318", "source": "Brazil", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 63.23825260298563, "sourceWeight": "63.23825260298563", "direction": "Imp", "source_type": "secondary", "targetWeight": "63.23825260298563" } }, { "key": "geid_107_5319", "source": "Brazil", "target": "BeninDahomey", "attributes": { "weight": 178.5870982344892, "sourceWeight": "178.5870982344892", "direction": "Imp", "source_type": "secondary", "targetWeight": "178.5870982344892" } }, { "key": "geid_107_5320", "source": "Brazil", "target": "FrenchGuiana", "attributes": { "weight": 10564.0317790852, "sourceWeight": "10564.0317790852", "direction": "Imp", "source_type": "secondary", "targetWeight": "10564.0317790852" } }, { "key": "geid_107_5321", "source": "Brazil", "target": "Martinique", "attributes": { "weight": 4867.21462200074, "sourceWeight": "4867.21462200074", "direction": "Imp", "source_type": "secondary", "targetWeight": "4867.21462200074" } }, { "key": "geid_107_5322", "source": "CanadaProvinceofCanada", "target": "BeninDahomey", "attributes": { "weight": 52.33551380715078, "sourceWeight": "52.33551380715078", "direction": "Imp", "source_type": "secondary", "targetWeight": "52.33551380715078" } }, { "key": "geid_107_5323", "source": "CanadaProvinceofCanada", "target": "FrenchGuiana", "attributes": { "weight": 1096.5243096423349, "sourceWeight": "1096.5243096423349", "direction": "Imp", "source_type": "secondary", "targetWeight": "1096.5243096423349" } }, { "key": "geid_107_5324", "source": "CanadaProvinceofCanada", "target": "Martinique", "attributes": { "weight": 3603.5860117699094, "sourceWeight": "3603.5860117699094", "direction": "Imp", "source_type": "secondary", "targetWeight": "3603.5860117699094" } }, { "key": "geid_107_5325", "source": "CanadaProvinceofCanada", "target": "StPierreandMiquelon", "attributes": { "weight": 383852.7129470218, "sourceWeight": "383852.7129470218", "direction": "Imp", "source_type": "secondary", "targetWeight": "383852.7129470218" } }, { "key": "geid_107_5326", "source": "Ecuador", "target": "Martinique", "attributes": { "weight": 335.01358080578314, "sourceWeight": "335.01358080578314", "direction": "Imp", "source_type": "secondary", "targetWeight": "335.01358080578314" } }, { "key": "geid_107_5327", "source": "Haiti", "target": "Martinique", "attributes": { "weight": 709.494839293774, "sourceWeight": "709.494839293774", "direction": "Imp", "source_type": "secondary", "targetWeight": "709.494839293774" } }, { "key": "geid_107_5328", "source": "Panama", "target": "Martinique", "attributes": { "weight": 750.1344726120162, "sourceWeight": "750.1344726120162", "direction": "Imp", "source_type": "secondary", "targetWeight": "750.1344726120162" } }, { "key": "geid_107_5329", "source": "Panama", "target": "Guadeloupe_GuadeloupeDependencies", "attributes": { "weight": 0.2959483929379709, "sourceWeight": "0.2959483929379709", "direction": "Imp", "source_type": "secondary", "targetWeight": "0.2959483929379709" } }, { "key": "geid_107_5330", "source": "Venezuela", "target": "FrenchGuiana", "attributes": { "weight": 10712.301923947123, "sourceWeight": "10712.301923947123", "direction": "Imp", "source_type": "secondary", "targetWeight": "10712.301923947123" } }, { "key": "geid_107_5331", "source": "Venezuela", "target": "Martinique", "attributes": { "weight": 23768.846582163067, "sourceWeight": "23768.846582163067", "direction": "Imp", "source_type": "secondary", "targetWeight": "23768.846582163067" } }, { "key": "geid_107_5332", "source": "Venezuela", "target": "Guadeloupe_GuadeloupeDependencies", "attributes": { "weight": 1.006224535989101, "sourceWeight": "1.006224535989101", "direction": "Imp", "source_type": "secondary", "targetWeight": "1.006224535989101" } }, { "key": "geid_107_5333", "source": "Americaother", "target": "Senegal", "attributes": { "weight": 39079.61831145182, "sourceWeight": "39079.61831145182", "direction": "Imp", "source_type": "secondary", "targetWeight": "39079.61831145182" } }, { "key": "geid_107_5334", "source": "Americaother", "target": "BeninDahomey", "attributes": { "weight": 388.0475328202675, "sourceWeight": "388.0475328202675", "direction": "Imp", "source_type": "secondary", "targetWeight": "388.0475328202675" } }, { "key": "geid_107_5335", "source": "Americaother", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 0.5918967858759419, "sourceWeight": "0.5918967858759419", "direction": "Imp", "source_type": "secondary", "targetWeight": "0.5918967858759419" } }, { "key": "geid_107_5336", "source": "Americaother", "target": "FrenchGuiana", "attributes": { "weight": 54.549207786326804, "sourceWeight": "54.549207786326804", "direction": "Imp", "source_type": "secondary", "targetWeight": "54.549207786326804" } }, { "key": "geid_107_5337", "source": "Americaother", "target": "Martinique", "attributes": { "weight": 41928.79635581569, "sourceWeight": "41928.79635581569", "direction": "Imp", "source_type": "secondary", "targetWeight": "41928.79635581569" } }, { "key": "geid_107_5338", "source": "VanuatuNewHebrides", "target": "NewCaledoniaandDependencies", "attributes": { "weight": 95201.60239927247, "sourceWeight": "95201.60239927247", "direction": "Imp", "source_type": "secondary", "targetWeight": "95201.60239927247" } }, { "key": "geid_107_5339", "source": "FrenchColoniesForeignproduce", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 160.58159800814303, "sourceWeight": "160.58159800814303", "direction": "Imp", "source_type": "secondary", "targetWeight": "160.58159800814303" } }, { "key": "geid_107_5340", "source": "FrenchColoniesForeignproduce", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 2935.9737890447173, "sourceWeight": "2935.9737890447173", "direction": "Imp", "source_type": "secondary", "targetWeight": "2935.9737890447173" } }, { "key": "geid_107_5341", "source": "FrenchColoniesForeignproduce", "target": "Martinique", "attributes": { "weight": 579.2893843367843, "sourceWeight": "579.2893843367843", "direction": "Imp", "source_type": "secondary", "targetWeight": "579.2893843367843" } }, { "key": "geid_107_5342", "source": "FrenchColoniesForeignproduce", "target": "Guadeloupe_GuadeloupeDependencies", "attributes": { "weight": 1834.1697600723687, "sourceWeight": "1834.1697600723687", "direction": "Imp", "source_type": "secondary", "targetWeight": "1834.1697600723687" } }, { "key": "geid_107_5343", "source": "BritishColonies", "target": "Senegal", "attributes": { "weight": 126670.0554549527, "sourceWeight": "126670.0554549527", "direction": "Imp", "source_type": "secondary", "targetWeight": "126670.0554549527" } }, { "key": "geid_107_5344", "source": "BritishColonies", "target": "BurkinaFasoUpperVolta", "attributes": { "weight": 56476.009393388755, "sourceWeight": "56476.009393388755", "direction": "Imp", "source_type": "secondary", "targetWeight": "56476.009393388755" } }, { "key": "geid_107_5345", "source": "BritishColonies", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 8484.78123585304, "sourceWeight": "8484.78123585304", "direction": "Imp", "source_type": "secondary", "targetWeight": "8484.78123585304" } }, { "key": "geid_107_5346", "source": "BritishColonies", "target": "IvoryCoast", "attributes": { "weight": 10092.810909913645, "sourceWeight": "10092.810909913645", "direction": "Imp", "source_type": "secondary", "targetWeight": "10092.810909913645" } }, { "key": "geid_107_5347", "source": "BritishColonies", "target": "BeninDahomey", "attributes": { "weight": 38542.329923040794, "sourceWeight": "38542.329923040794", "direction": "Imp", "source_type": "secondary", "targetWeight": "38542.329923040794" } }, { "key": "geid_107_5348", "source": "BritishColonies", "target": "CentralAfricanRepublicUbangiShari", "attributes": { "weight": 37.11192847442155, "sourceWeight": "37.11192847442155", "direction": "Imp", "source_type": "secondary", "targetWeight": "37.11192847442155" } }, { "key": "geid_107_5349", "source": "BritishColonies", "target": "Chad", "attributes": { "weight": 13556.827659574008, "sourceWeight": "13556.827659574008", "direction": "Imp", "source_type": "secondary", "targetWeight": "13556.827659574008" } }, { "key": "geid_107_5350", "source": "BritishColonies", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 175570.56729288676, "sourceWeight": "175570.56729288676", "direction": "Imp", "source_type": "secondary", "targetWeight": "175570.56729288676" } }, { "key": "geid_107_5351", "source": "BritishColonies", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 607724.3663648503, "sourceWeight": "607724.3663648503", "direction": "Imp", "source_type": "secondary", "targetWeight": "607724.3663648503" } }, { "key": "geid_107_5352", "source": "BritishColonies", "target": "ReunionBourbonI", "attributes": { "weight": 37856.404413760596, "sourceWeight": "37856.404413760596", "direction": "Imp", "source_type": "secondary", "targetWeight": "37856.404413760596" } }, { "key": "geid_107_5353", "source": "BritishColonies", "target": "FrenchIndia", "attributes": { "weight": 249871.1459031151, "sourceWeight": "249871.1459031151", "direction": "Imp", "source_type": "secondary", "targetWeight": "249871.1459031151" } }, { "key": "geid_107_5354", "source": "BritishColonies", "target": "NewCaledoniaandDependencies", "attributes": { "weight": 252690.3976459851, "sourceWeight": "252690.3976459851", "direction": "Imp", "source_type": "secondary", "targetWeight": "252690.3976459851" } }, { "key": "geid_107_5355", "source": "BritishColonies", "target": "FrenchPolynesia", "attributes": { "weight": 81853.51306020546, "sourceWeight": "81853.51306020546", "direction": "Imp", "source_type": "secondary", "targetWeight": "81853.51306020546" } }, { "key": "geid_107_5356", "source": "BritishColonies", "target": "FrenchGuiana", "attributes": { "weight": 10278.903259393042, "sourceWeight": "10278.903259393042", "direction": "Imp", "source_type": "secondary", "targetWeight": "10278.903259393042" } }, { "key": "geid_107_5357", "source": "BritishColonies", "target": "Martinique", "attributes": { "weight": 31194.86652331266, "sourceWeight": "31194.86652331266", "direction": "Imp", "source_type": "secondary", "targetWeight": "31194.86652331266" } }, { "key": "geid_107_5358", "source": "BritishColonies", "target": "Guadeloupe_GuadeloupeDependencies", "attributes": { "weight": 85634.47870076667, "sourceWeight": "85634.47870076667", "direction": "Imp", "source_type": "secondary", "targetWeight": "85634.47870076667" } }, { "key": "geid_107_5359", "source": "BritishColonies", "target": "StPierreandMiquelon", "attributes": { "weight": 9276.762811226485, "sourceWeight": "9276.762811226485", "direction": "Imp", "source_type": "secondary", "targetWeight": "9276.762811226485" } }, { "key": "geid_107_5360", "source": "BelgianColonies", "target": "BeninDahomey", "attributes": { "weight": 23.675871435037674, "sourceWeight": "23.675871435037674", "direction": "Imp", "source_type": "secondary", "targetWeight": "23.675871435037674" } }, { "key": "geid_107_5361", "source": "BelgianColonies", "target": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "weight": 71646.65547758924, "sourceWeight": "71646.65547758924", "direction": "Imp", "source_type": "secondary", "targetWeight": "71646.65547758924" } }, { "key": "geid_107_5362", "source": "BelgianColonies", "target": "CentralAfricanRepublicUbangiShari", "attributes": { "weight": 10906.633476685913, "sourceWeight": "10906.633476685913", "direction": "Imp", "source_type": "secondary", "targetWeight": "10906.633476685913" } }, { "key": "geid_107_5363", "source": "SpanishColonies", "target": "Senegal", "attributes": { "weight": 7170.107446808267, "sourceWeight": "7170.107446808267", "direction": "Imp", "source_type": "secondary", "targetWeight": "7170.107446808267" } }, { "key": "geid_107_5364", "source": "SpanishColonies", "target": "BeninDahomey", "attributes": { "weight": 14.300226346762756, "sourceWeight": "14.300226346762756", "direction": "Imp", "source_type": "secondary", "targetWeight": "14.300226346762756" } }, { "key": "geid_107_5365", "source": "PortugueseColonies", "target": "Senegal", "attributes": { "weight": 1448.1583521955145, "sourceWeight": "1448.1583521955145", "direction": "Imp", "source_type": "secondary", "targetWeight": "1448.1583521955145" } }, { "key": "geid_107_5366", "source": "PortugueseColonies", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 4611.763807152402, "sourceWeight": "4611.763807152402", "direction": "Imp", "source_type": "secondary", "targetWeight": "4611.763807152402" } }, { "key": "geid_107_5367", "source": "PortugueseColonies", "target": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "weight": 2464.9896785875126, "sourceWeight": "2464.9896785875126", "direction": "Imp", "source_type": "secondary", "targetWeight": "2464.9896785875126" } }, { "key": "geid_107_5368", "source": "PortugueseColonies", "target": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "attributes": { "weight": 16545.693345404597, "sourceWeight": "16545.693345404597", "direction": "Imp", "source_type": "secondary", "targetWeight": "16545.693345404597" } }, { "key": "geid_107_5369", "source": "ItalianColonies", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 961.2758940696822, "sourceWeight": "961.2758940696822", "direction": "Imp", "source_type": "secondary", "targetWeight": "961.2758940696822" } }, { "key": "geid_107_5370", "source": "AmericanColonies", "target": "Martinique", "attributes": { "weight": 2.012449071978202, "sourceWeight": "2.012449071978202", "direction": "Imp", "source_type": "secondary", "targetWeight": "2.012449071978202" } }, { "key": "geid_107_5371", "source": "AmericanColonies", "target": "Guadeloupe_GuadeloupeDependencies", "attributes": { "weight": 8.34574468085078, "sourceWeight": "8.34574468085078", "direction": "Imp", "source_type": "secondary", "targetWeight": "8.34574468085078" } }, { "key": "geid_107_5372", "source": "DutchColoniesother", "target": "BeninDahomey", "attributes": { "weight": 404.36020823900844, "sourceWeight": "404.36020823900844", "direction": "Imp", "source_type": "secondary", "targetWeight": "404.36020823900844" } }, { "key": "geid_107_5373", "source": "DutchColoniesother", "target": "ReunionBourbonI", "attributes": { "weight": 1940.3560434585127, "sourceWeight": "1940.3560434585127", "direction": "Imp", "source_type": "secondary", "targetWeight": "1940.3560434585127" } }, { "key": "geid_107_5374", "source": "DutchColoniesother", "target": "FrenchGuiana", "attributes": { "weight": 10517.840153915442, "sourceWeight": "10517.840153915442", "direction": "Imp", "source_type": "secondary", "targetWeight": "10517.840153915442" } }, { "key": "geid_107_5375", "source": "DutchColoniesother", "target": "Martinique", "attributes": { "weight": 12965.996287912643, "sourceWeight": "12965.996287912643", "direction": "Imp", "source_type": "secondary", "targetWeight": "12965.996287912643" } }, { "key": "geid_107_5376", "source": "DutchColoniesother", "target": "Guadeloupe_GuadeloupeDependencies", "attributes": { "weight": 15631.840221819297, "sourceWeight": "15631.840221819297", "direction": "Imp", "source_type": "secondary", "targetWeight": "15631.840221819297" } }, { "key": "geid_107_5377", "source": "Othercountries", "target": "Senegal", "attributes": { "weight": 110979.3570167459, "sourceWeight": "110979.3570167459", "direction": "Imp", "source_type": "secondary", "targetWeight": "110979.3570167459" } }, { "key": "geid_107_5378", "source": "Othercountries", "target": "MaliFrenchSudanUpperSenegalandNiger", "attributes": { "weight": 4279.212516975862, "sourceWeight": "4279.212516975862", "direction": "Imp", "source_type": "secondary", "targetWeight": "4279.212516975862" } }, { "key": "geid_107_5379", "source": "Othercountries", "target": "GuineaFrenchGuineaRivieresduSud", "attributes": { "weight": 8108.027093707285, "sourceWeight": "8108.027093707285", "direction": "Imp", "source_type": "secondary", "targetWeight": "8108.027093707285" } }, { "key": "geid_107_5380", "source": "Othercountries", "target": "IvoryCoast", "attributes": { "weight": 7358.93435943841, "sourceWeight": "7358.93435943841", "direction": "Imp", "source_type": "secondary", "targetWeight": "7358.93435943841" } }, { "key": "geid_107_5381", "source": "Othercountries", "target": "BeninDahomey", "attributes": { "weight": 130.09891353553203, "sourceWeight": "130.09891353553203", "direction": "Imp", "source_type": "secondary", "targetWeight": "130.09891353553203" } }, { "key": "geid_107_5382", "source": "Othercountries", "target": "Gabon", "attributes": { "weight": 21331.676052511724, "sourceWeight": "21331.676052511724", "direction": "Imp", "source_type": "secondary", "targetWeight": "21331.676052511724" } }, { "key": "geid_107_5383", "source": "Othercountries", "target": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "weight": 1053.836713444962, "sourceWeight": "1053.836713444962", "direction": "Imp", "source_type": "secondary", "targetWeight": "1053.836713444962" } }, { "key": "geid_107_5384", "source": "Othercountries", "target": "CentralAfricanRepublicUbangiShari", "attributes": { "weight": 193.26613852421255, "sourceWeight": "193.26613852421255", "direction": "Imp", "source_type": "secondary", "targetWeight": "193.26613852421255" } }, { "key": "geid_107_5385", "source": "Othercountries", "target": "ReunionBourbonI", "attributes": { "weight": 23477.668877319258, "sourceWeight": "23477.668877319258", "direction": "Imp", "source_type": "secondary", "targetWeight": "23477.668877319258" } }, { "key": "geid_107_5386", "source": "Othercountries", "target": "NewCaledoniaandDependencies", "attributes": { "weight": 28148.894635580757, "sourceWeight": "28148.894635580757", "direction": "Imp", "source_type": "secondary", "targetWeight": "28148.894635580757" } }, { "key": "geid_107_5387", "source": "Othercountries", "target": "FrenchPolynesia", "attributes": { "weight": 35271.34255319029, "sourceWeight": "35271.34255319029", "direction": "Imp", "source_type": "secondary", "targetWeight": "35271.34255319029" } }, { "key": "geid_107_5388", "source": "Othercountries", "target": "FrenchGuiana", "attributes": { "weight": 2.1426663648709097, "sourceWeight": "2.1426663648709097", "direction": "Imp", "source_type": "secondary", "targetWeight": "2.1426663648709097" } }, { "key": "geid_107_5389", "source": "Othercountries", "target": "Martinique", "attributes": { "weight": 632.145767315506, "sourceWeight": "632.145767315506", "direction": "Imp", "source_type": "secondary", "targetWeight": "632.145767315506" } }, { "key": "geid_107_5390", "source": "Othercountries", "target": "Guadeloupe_GuadeloupeDependencies", "attributes": { "weight": 0.8878451788139128, "sourceWeight": "0.8878451788139128", "direction": "Imp", "source_type": "secondary", "targetWeight": "0.8878451788139128" } }, { "key": "geid_107_5391", "source": "Othercountries", "target": "StPierreandMiquelon", "attributes": { "weight": 74232.61702127408, "sourceWeight": "74232.61702127408", "direction": "Imp", "source_type": "secondary", "targetWeight": "74232.61702127408" } }, { "key": "geid_107_5392", "source": "Senegal", "target": "France", "attributes": { "weight": 3321452.7620868045, "sourceWeight": "3321452.7620868045", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5393", "source": "MaliFrenchSudanUpperSenegalandNiger", "target": "France", "attributes": { "weight": 57446.32947034662, "sourceWeight": "57446.32947034662", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5394", "source": "GuineaFrenchGuineaRivieresduSud", "target": "France", "attributes": { "weight": 230784.3804662665, "sourceWeight": "230784.3804662665", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5395", "source": "IvoryCoast", "target": "France", "attributes": { "weight": 687624.9514938653, "sourceWeight": "687624.9514938653", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5396", "source": "BeninDahomey", "target": "France", "attributes": { "weight": 450401.9888184546, "sourceWeight": "450401.9888184546", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5397", "source": "Gabon", "target": "France", "attributes": { "weight": 108981.53963331455, "sourceWeight": "108981.53963331455", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5398", "source": "CongoBrazzavilleFrenchCongoMiddleCongo", "target": "France", "attributes": { "weight": 39322.295993660955, "sourceWeight": "39322.295993660955", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5399", "source": "CentralAfricanRepublicUbangiShari", "target": "France", "attributes": { "weight": 2385.462426437221, "sourceWeight": "2385.462426437221", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5400", "source": "Chad", "target": "France", "attributes": { "weight": 660.781733816184, "sourceWeight": "660.781733816184", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5401", "source": "ReunionBourbonI", "target": "France", "attributes": { "weight": 1648524.0322317232, "sourceWeight": "1648524.0322317232", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5402", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "France", "attributes": { "weight": 3455248.011860453, "sourceWeight": "3455248.011860453", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5403", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "France", "attributes": { "weight": 336531.20416476903, "sourceWeight": "336531.20416476903", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5404", "source": "FrenchIndia", "target": "France", "attributes": { "weight": 261398.53705295626, "sourceWeight": "261398.53705295626", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5405", "source": "StPierreandMiquelon", "target": "France", "attributes": { "weight": 330858.4772068697, "sourceWeight": "330858.4772068697", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5406", "source": "Guadeloupe_GuadeloupeDependencies", "target": "France", "attributes": { "weight": 2123306.4627432507, "sourceWeight": "2123306.4627432507", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5407", "source": "Martinique", "target": "France", "attributes": { "weight": 1887003.6628111629, "sourceWeight": "1887003.6628111629", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5408", "source": "FrenchGuiana", "target": "France", "attributes": { "weight": 415847.68186961015, "sourceWeight": "415847.68186961015", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5409", "source": "NewCaledoniaandDependencies", "target": "France", "attributes": { "weight": 249545.51980533332, "sourceWeight": "249545.51980533332", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5410", "source": "FrenchPolynesia", "target": "France", "attributes": { "weight": 200919.95586237434, "sourceWeight": "200919.95586237434", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5411", "source": "Senegal", "target": "FrenchColonies", "attributes": { "weight": 647.4522181982578, "sourceWeight": "647.4522181982578", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5412", "source": "GuineaFrenchGuineaRivieresduSud", "target": "FrenchColonies", "attributes": { "weight": 2877.6482797645017, "sourceWeight": "2877.6482797645017", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5413", "source": "IvoryCoast", "target": "FrenchColonies", "attributes": { "weight": 1959.711068356656, "sourceWeight": "1959.711068356656", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5414", "source": "BeninDahomey", "target": "FrenchColonies", "attributes": { "weight": 337.3338162064168, "sourceWeight": "337.3338162064168", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5415", "source": "Gabon", "target": "FrenchColonies", "attributes": { "weight": 2084.767021276525, "sourceWeight": "2084.767021276525", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5416", "source": "CongoBrazzavilleFrenchCongoMiddleCongo", "target": "FrenchColonies", "attributes": { "weight": 1407.057039384289, "sourceWeight": "1407.057039384289", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5417", "source": "CentralAfricanRepublicUbangiShari", "target": "FrenchColonies", "attributes": { "weight": 17.685875961973142, "sourceWeight": "17.685875961973142", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5418", "source": "Chad", "target": "FrenchColonies", "attributes": { "weight": 1270.364395654099, "sourceWeight": "1270.364395654099", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5419", "source": "ReunionBourbonI", "target": "FrenchColonies", "attributes": { "weight": 58324.07688999349, "sourceWeight": "58324.07688999349", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5420", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "FrenchColonies", "attributes": { "weight": 319437.2841783504, "sourceWeight": "319437.2841783504", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5421", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "FrenchColonies", "attributes": { "weight": 2688.9515844272514, "sourceWeight": "2688.9515844272514", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5422", "source": "FrenchIndia", "target": "FrenchColonies", "attributes": { "weight": 77362.44884562888, "sourceWeight": "77362.44884562888", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5423", "source": "StPierreandMiquelon", "target": "FrenchColonies", "attributes": { "weight": 5413.227569035579, "sourceWeight": "5413.227569035579", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5424", "source": "Guadeloupe_GuadeloupeDependencies", "target": "FrenchColonies", "attributes": { "weight": 18437.762449071353, "sourceWeight": "18437.762449071353", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5425", "source": "Martinique", "target": "FrenchColonies", "attributes": { "weight": 31255.40572657205, "sourceWeight": "31255.40572657205", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5426", "source": "FrenchGuiana", "target": "FrenchColonies", "attributes": { "weight": 6018.4893843366, "sourceWeight": "6018.4893843366", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5427", "source": "NewCaledoniaandDependencies", "target": "FrenchColonies", "attributes": { "weight": 5118.9246491623435, "sourceWeight": "5118.9246491623435", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5428", "source": "FrenchPolynesia", "target": "FrenchColonies", "attributes": { "weight": 151.22962879130316, "sourceWeight": "151.22962879130316", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5429", "source": "Senegal", "target": "GermanyZollverein", "attributes": { "weight": 92633.83576278544, "sourceWeight": "92633.83576278544", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5430", "source": "GuineaFrenchGuineaRivieresduSud", "target": "GermanyZollverein", "attributes": { "weight": 14470.290131280632, "sourceWeight": "14470.290131280632", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5431", "source": "IvoryCoast", "target": "GermanyZollverein", "attributes": { "weight": 56077.17750112983, "sourceWeight": "56077.17750112983", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5432", "source": "BeninDahomey", "target": "GermanyZollverein", "attributes": { "weight": 339162.51684018766, "sourceWeight": "339162.51684018766", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5433", "source": "Gabon", "target": "GermanyZollverein", "attributes": { "weight": 42397.03406518643, "sourceWeight": "42397.03406518643", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5434", "source": "CongoBrazzavilleFrenchCongoMiddleCongo", "target": "GermanyZollverein", "attributes": { "weight": 2516.543888637307, "sourceWeight": "2516.543888637307", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5435", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "GermanyZollverein", "attributes": { "weight": 68325.0254187392, "sourceWeight": "68325.0254187392", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5436", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "GermanyZollverein", "attributes": { "weight": 79802.80377998824, "sourceWeight": "79802.80377998824", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5437", "source": "FrenchGuiana", "target": "GermanyZollverein", "attributes": { "weight": 2675.2550928020823, "sourceWeight": "2675.2550928020823", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5438", "source": "FrenchPolynesia", "target": "GermanyZollverein", "attributes": { "weight": 19835.550384788825, "sourceWeight": "19835.550384788825", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5439", "source": "Senegal", "target": "UnitedKingdom", "attributes": { "weight": 243763.69443186134, "sourceWeight": "243763.69443186134", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5440", "source": "GuineaFrenchGuineaRivieresduSud", "target": "UnitedKingdom", "attributes": { "weight": 142341.95525124008, "sourceWeight": "142341.95525124008", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5441", "source": "IvoryCoast", "target": "UnitedKingdom", "attributes": { "weight": 185482.77865549392, "sourceWeight": "185482.77865549392", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5442", "source": "BeninDahomey", "target": "UnitedKingdom", "attributes": { "weight": 389466.9368266052, "sourceWeight": "389466.9368266052", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5443", "source": "Gabon", "target": "UnitedKingdom", "attributes": { "weight": 76340.33779990688, "sourceWeight": "76340.33779990688", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5444", "source": "CongoBrazzavilleFrenchCongoMiddleCongo", "target": "UnitedKingdom", "attributes": { "weight": 417.8909687641325, "sourceWeight": "417.8909687641325", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5445", "source": "Chad", "target": "UnitedKingdom", "attributes": { "weight": 40.7224988682648, "sourceWeight": "40.7224988682648", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5446", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "UnitedKingdom", "attributes": { "weight": 213442.57410592303, "sourceWeight": "213442.57410592303", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5447", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "UnitedKingdom", "attributes": { "weight": 40969.11858306787, "sourceWeight": "40969.11858306787", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5448", "source": "FrenchIndia", "target": "UnitedKingdom", "attributes": { "weight": 731.8211860570145, "sourceWeight": "731.8211860570145", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5449", "source": "Guadeloupe_GuadeloupeDependencies", "target": "UnitedKingdom", "attributes": { "weight": 782.6414440923229, "sourceWeight": "782.6414440923229", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5450", "source": "FrenchGuiana", "target": "UnitedKingdom", "attributes": { "weight": 14095.57211407829, "sourceWeight": "14095.57211407829", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5451", "source": "FrenchPolynesia", "target": "UnitedKingdom", "attributes": { "weight": 7415.945857853981, "sourceWeight": "7415.945857853981", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5452", "source": "Senegal", "target": "Belgium", "attributes": { "weight": 148107.01810773605, "sourceWeight": "148107.01810773605", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5453", "source": "GuineaFrenchGuineaRivieresduSud", "target": "Belgium", "attributes": { "weight": 3721.598392937855, "sourceWeight": "3721.598392937855", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5454", "source": "IvoryCoast", "target": "Belgium", "attributes": { "weight": 19327.146559528544, "sourceWeight": "19327.146559528544", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5455", "source": "BeninDahomey", "target": "Belgium", "attributes": { "weight": 2918.6193752828344, "sourceWeight": "2918.6193752828344", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5456", "source": "Gabon", "target": "Belgium", "attributes": { "weight": 2945.8939791759976, "sourceWeight": "2945.8939791759976", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5457", "source": "CongoBrazzavilleFrenchCongoMiddleCongo", "target": "Belgium", "attributes": { "weight": 59277.480556811024, "sourceWeight": "59277.480556811024", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5458", "source": "CentralAfricanRepublicUbangiShari", "target": "Belgium", "attributes": { "weight": 1122.307333635091, "sourceWeight": "1122.307333635091", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5459", "source": "Chad", "target": "Belgium", "attributes": { "weight": 249.70941602534236, "sourceWeight": "249.70941602534236", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5460", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "Belgium", "attributes": { "weight": 4852.867043911107, "sourceWeight": "4852.867043911107", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5461", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "Belgium", "attributes": { "weight": 7869.326957899235, "sourceWeight": "7869.326957899235", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5462", "source": "FrenchIndia", "target": "Belgium", "attributes": { "weight": 12858.105341783175, "sourceWeight": "12858.105341783175", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5463", "source": "Senegal", "target": "Netherlands", "attributes": { "weight": 251755.48483475833, "sourceWeight": "251755.48483475833", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5464", "source": "GuineaFrenchGuineaRivieresduSud", "target": "Netherlands", "attributes": { "weight": 2266.9646899048576, "sourceWeight": "2266.9646899048576", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5465", "source": "IvoryCoast", "target": "Netherlands", "attributes": { "weight": 16450.563693978616, "sourceWeight": "16450.563693978616", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5466", "source": "BeninDahomey", "target": "Netherlands", "attributes": { "weight": 14476.39850611087, "sourceWeight": "14476.39850611087", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5467", "source": "Gabon", "target": "Netherlands", "attributes": { "weight": 6474.782616568364, "sourceWeight": "6474.782616568364", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5468", "source": "CongoBrazzavilleFrenchCongoMiddleCongo", "target": "Netherlands", "attributes": { "weight": 3.953870529651292, "sourceWeight": "3.953870529651292", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5469", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "Netherlands", "attributes": { "weight": 260.4345857854144, "sourceWeight": "260.4345857854144", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5470", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "Netherlands", "attributes": { "weight": 8649.896763240991, "sourceWeight": "8649.896763240991", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5471", "source": "FrenchIndia", "target": "Netherlands", "attributes": { "weight": 1149.8423721140398, "sourceWeight": "1149.8423721140398", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5472", "source": "FrenchGuiana", "target": "Netherlands", "attributes": { "weight": 1229.6655726572692, "sourceWeight": "1229.6655726572692", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5473", "source": "IvoryCoast", "target": "Switzerland", "attributes": { "weight": 2.699049343594295, "sourceWeight": "2.699049343594295", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5474", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "Switzerland", "attributes": { "weight": 2685.518583069171, "sourceWeight": "2685.518583069171", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5475", "source": "CongoBrazzavilleFrenchCongoMiddleCongo", "target": "Portugal", "attributes": { "weight": 24.682095971026776, "sourceWeight": "24.682095971026776", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5476", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 947.697781801688, "sourceWeight": "947.697781801688", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5477", "source": "Senegal", "target": "Denmark", "attributes": { "weight": 29386.527138975915, "sourceWeight": "29386.527138975915", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5478", "source": "Senegal", "target": "Italy", "attributes": { "weight": 14726.060570393343, "sourceWeight": "14726.060570393343", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5479", "source": "GuineaFrenchGuineaRivieresduSud", "target": "Italy", "attributes": { "weight": 1654.3515165232575, "sourceWeight": "1654.3515165232575", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5480", "source": "IvoryCoast", "target": "Italy", "attributes": { "weight": 19225.399502036467, "sourceWeight": "19225.399502036467", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5481", "source": "BeninDahomey", "target": "Italy", "attributes": { "weight": 1254.8566998641493, "sourceWeight": "1254.8566998641493", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5482", "source": "Gabon", "target": "Italy", "attributes": { "weight": 7355.667089180375, "sourceWeight": "7355.667089180375", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5483", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "Italy", "attributes": { "weight": 52388.85554549392, "sourceWeight": "52388.85554549392", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5484", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "Italy", "attributes": { "weight": 64844.9682661816, "sourceWeight": "64844.9682661816", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5485", "source": "FrenchIndia", "target": "Italy", "attributes": { "weight": 7360.828429153214, "sourceWeight": "7360.828429153214", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5486", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "Norway_Sweden", "attributes": { "weight": 1687.8410366681185, "sourceWeight": "1687.8410366681185", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5487", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "Norway_Sweden", "attributes": { "weight": 27841.00176550381, "sourceWeight": "27841.00176550381", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5488", "source": "Senegal", "target": "Spain", "attributes": { "weight": 15798.766953372031, "sourceWeight": "15798.766953372031", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5489", "source": "Gabon", "target": "Spain", "attributes": { "weight": 1135.1633318243164, "sourceWeight": "1135.1633318243164", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5490", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "Spain", "attributes": { "weight": 356.6296514259725, "sourceWeight": "356.6296514259725", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5491", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "Spain", "attributes": { "weight": 19365.359416024694, "sourceWeight": "19365.359416024694", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5492", "source": "Martinique", "target": "Spain", "attributes": { "weight": 128.20484382072902, "sourceWeight": "128.20484382072902", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5493", "source": "ReunionBourbonI", "target": "Europeother", "attributes": { "weight": 5.883454051606862, "sourceWeight": "5.883454051606862", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5494", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "Europeother", "attributes": { "weight": 6.191240380262352, "sourceWeight": "6.191240380262352", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5495", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "Europeother", "attributes": { "weight": 165.31677229515057, "sourceWeight": "165.31677229515057", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5496", "source": "FrenchIndia", "target": "Europeother", "attributes": { "weight": 2285.1951109098363, "sourceWeight": "2285.1951109098363", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5497", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 852.1064508827235, "sourceWeight": "852.1064508827235", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5498", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 4600.281009506408, "sourceWeight": "4600.281009506408", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5499", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "Japan", "attributes": { "weight": 90.82064282480452, "sourceWeight": "90.82064282480452", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5500", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "Japan", "attributes": { "weight": 1081.288886373888, "sourceWeight": "1081.288886373888", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5501", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1010.6755998188883, "sourceWeight": "1010.6755998188883", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5502", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 137253.03976912165, "sourceWeight": "137253.03976912165", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5503", "source": "FrenchIndia", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 16479.992802172368, "sourceWeight": "16479.992802172368", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5504", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "Arabia", "attributes": { "weight": 1641.6138976912073, "sourceWeight": "1641.6138976912073", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5505", "source": "BeninDahomey", "target": "Liberia", "attributes": { "weight": 11.837935717518837, "sourceWeight": "11.837935717518837", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5506", "source": "IvoryCoast", "target": "UnitedStatesofAmerica", "attributes": { "weight": 325645.53567223885, "sourceWeight": "325645.53567223885", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5507", "source": "BeninDahomey", "target": "UnitedStatesofAmerica", "attributes": { "weight": 19200.741081936878, "sourceWeight": "19200.741081936878", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5508", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "UnitedStatesofAmerica", "attributes": { "weight": 98835.15022634341, "sourceWeight": "98835.15022634341", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5509", "source": "StPierreandMiquelon", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1070.2677682208782, "sourceWeight": "1070.2677682208782", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5510", "source": "Guadeloupe_GuadeloupeDependencies", "target": "UnitedStatesofAmerica", "attributes": { "weight": 23726.064282479954, "sourceWeight": "23726.064282479954", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5511", "source": "Martinique", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1374.976233589813, "sourceWeight": "1374.976233589813", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5512", "source": "FrenchGuiana", "target": "UnitedStatesofAmerica", "attributes": { "weight": 25847.801177002293, "sourceWeight": "25847.801177002293", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5513", "source": "FrenchPolynesia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 376995.7544137491, "sourceWeight": "376995.7544137491", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5514", "source": "Martinique", "target": "Haiti", "attributes": { "weight": 13.021729289270722, "sourceWeight": "13.021729289270722", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5515", "source": "Senegal", "target": "Americaother", "attributes": { "weight": 1268.5295156178836, "sourceWeight": "1268.5295156178836", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5516", "source": "Martinique", "target": "Americaother", "attributes": { "weight": 13.436057039383881, "sourceWeight": "13.436057039383881", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5517", "source": "FrenchGuiana", "target": "Americaother", "attributes": { "weight": 0.05918967858759419, "sourceWeight": "0.05918967858759419", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5518", "source": "NewCaledoniaandDependencies", "target": "VanuatuNewHebrides", "attributes": { "weight": 12295.708691715292, "sourceWeight": "12295.708691715292", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5519", "source": "Guadeloupe_GuadeloupeDependencies", "target": "AmericanColonies", "attributes": { "weight": 4.332684472611895, "sourceWeight": "4.332684472611895", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5520", "source": "Senegal", "target": "BritishColonies", "attributes": { "weight": 37110.31851516398, "sourceWeight": "37110.31851516398", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5521", "source": "GuineaFrenchGuineaRivieresduSud", "target": "BritishColonies", "attributes": { "weight": 40439.28809415888, "sourceWeight": "40439.28809415888", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5522", "source": "IvoryCoast", "target": "BritishColonies", "attributes": { "weight": 9957.219194205185, "sourceWeight": "9957.219194205185", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5523", "source": "BeninDahomey", "target": "BritishColonies", "attributes": { "weight": 19252.129560886628, "sourceWeight": "19252.129560886628", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5524", "source": "BurkinaFasoUpperVolta", "target": "BritishColonies", "attributes": { "weight": 141580.4208465321, "sourceWeight": "141580.4208465321", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5525", "source": "CentralAfricanRepublicUbangiShari", "target": "BritishColonies", "attributes": { "weight": 78.3671344499747, "sourceWeight": "78.3671344499747", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5526", "source": "Chad", "target": "BritishColonies", "attributes": { "weight": 62901.28576278646, "sourceWeight": "62901.28576278646", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5527", "source": "ReunionBourbonI", "target": "BritishColonies", "attributes": { "weight": 38006.414735173, "sourceWeight": "38006.414735173", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5528", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "BritishColonies", "attributes": { "weight": 102587.07741058955, "sourceWeight": "102587.07741058955", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5529", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "BritishColonies", "attributes": { "weight": 1089591.4107514343, "sourceWeight": "1089591.4107514343", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5530", "source": "FrenchIndia", "target": "BritishColonies", "attributes": { "weight": 136198.81240379802, "sourceWeight": "136198.81240379802", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5531", "source": "StPierreandMiquelon", "target": "BritishColonies", "attributes": { "weight": 5539.502829334352, "sourceWeight": "5539.502829334352", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5532", "source": "Guadeloupe_GuadeloupeDependencies", "target": "BritishColonies", "attributes": { "weight": 687.3105477591437, "sourceWeight": "687.3105477591437", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5533", "source": "Martinique", "target": "BritishColonies", "attributes": { "weight": 1130.7832956088344, "sourceWeight": "1130.7832956088344", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5534", "source": "FrenchGuiana", "target": "BritishColonies", "attributes": { "weight": 3216.7222725213937, "sourceWeight": "3216.7222725213937", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5535", "source": "NewCaledoniaandDependencies", "target": "BritishColonies", "attributes": { "weight": 35153.06973743656, "sourceWeight": "35153.06973743656", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5536", "source": "FrenchPolynesia", "target": "BritishColonies", "attributes": { "weight": 16475.17476233534, "sourceWeight": "16475.17476233534", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5537", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "ItalianColonies", "attributes": { "weight": 138747.49628790838, "sourceWeight": "138747.49628790838", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5538", "source": "BeninDahomey", "target": "BelgianColonies", "attributes": { "weight": 2.403100950656324, "sourceWeight": "2.403100950656324", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5539", "source": "CongoBrazzavilleFrenchCongoMiddleCongo", "target": "BelgianColonies", "attributes": { "weight": 70379.29791760739, "sourceWeight": "70379.29791760739", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5540", "source": "CentralAfricanRepublicUbangiShari", "target": "BelgianColonies", "attributes": { "weight": 16094.454911724217, "sourceWeight": "16094.454911724217", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5541", "source": "Senegal", "target": "SpanishColonies", "attributes": { "weight": 25.56994114984069, "sourceWeight": "25.56994114984069", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5542", "source": "Senegal", "target": "PortugueseColonies", "attributes": { "weight": 294.9895201448519, "sourceWeight": "294.9895201448519", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5543", "source": "GuineaFrenchGuineaRivieresduSud", "target": "PortugueseColonies", "attributes": { "weight": 3618.2295382524803, "sourceWeight": "3618.2295382524803", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5544", "source": "MadagascarMalagasyRepublic_MadagascarMalagasyRepublicDependencies", "target": "PortugueseColonies", "attributes": { "weight": 308.35454956993067, "sourceWeight": "308.35454956993067", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5545", "source": "FrenchIndia", "target": "DutchColoniesother", "attributes": { "weight": 3331.3253282026935, "sourceWeight": "3331.3253282026935", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5546", "source": "Guadeloupe_GuadeloupeDependencies", "target": "DutchColoniesother", "attributes": { "weight": 927.4193979175783, "sourceWeight": "927.4193979175783", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5547", "source": "Martinique", "target": "DutchColoniesother", "attributes": { "weight": 44.56982797645843, "sourceWeight": "44.56982797645843", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5548", "source": "FrenchGuiana", "target": "DutchColoniesother", "attributes": { "weight": 24818.49266636403, "sourceWeight": "24818.49266636403", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5549", "source": "Senegal", "target": "Othercountries", "attributes": { "weight": 14464.252784064696, "sourceWeight": "14464.252784064696", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5550", "source": "GuineaFrenchGuineaRivieresduSud", "target": "Othercountries", "attributes": { "weight": 4440.504391127056, "sourceWeight": "4440.504391127056", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5551", "source": "BeninDahomey", "target": "Othercountries", "attributes": { "weight": 1869.2100497962244, "sourceWeight": "1869.2100497962244", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5552", "source": "Gabon", "target": "Othercountries", "attributes": { "weight": 869.9817338161769, "sourceWeight": "869.9817338161769", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5553", "source": "CongoBrazzavilleFrenchCongoMiddleCongo", "target": "Othercountries", "attributes": { "weight": 81.57521502942231, "sourceWeight": "81.57521502942231", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5554", "source": "ReunionBourbonI", "target": "Othercountries", "attributes": { "weight": 13643.848325033488, "sourceWeight": "13643.848325033488", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5555", "source": "Martinique", "target": "Othercountries", "attributes": { "weight": 2488.61819827968, "sourceWeight": "2488.61819827968", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5556", "source": "NewCaledoniaandDependencies", "target": "Othercountries", "attributes": { "weight": 113471.73967858375, "sourceWeight": "113471.73967858375", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5557", "source": "FrenchPolynesia", "target": "Othercountries", "attributes": { "weight": 36040.3230194646, "sourceWeight": "36040.3230194646", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5558", "source": "UnitedKingdom", "target": "India", "attributes": { "weight": 96055346.46360166, "sourceWeight": "96055346.46360166", "direction": "Imp", "source_type": "primary", "targetWeight": "96055346.46360166" } }, { "key": "geid_107_5559", "source": "Gibraltar", "target": "India", "attributes": { "weight": 30599.90629245387, "sourceWeight": "30599.90629245387", "direction": "Imp", "source_type": "primary", "targetWeight": "30599.90629245387" } }, { "key": "geid_107_5560", "source": "Gozo_Malta", "target": "India", "attributes": { "weight": 255.52286102320306, "sourceWeight": "255.52286102320306", "direction": "Imp", "source_type": "primary", "targetWeight": "255.52286102320306" } }, { "key": "geid_107_5561", "source": "Cyprus", "target": "India", "attributes": { "weight": 114.80534178366447, "sourceWeight": "114.80534178366447", "direction": "Imp", "source_type": "primary", "targetWeight": "114.80534178366447" } }, { "key": "geid_107_5562", "source": "Palestine", "target": "India", "attributes": { "weight": 174.83521955643948, "sourceWeight": "174.83521955643948", "direction": "Imp", "source_type": "primary", "targetWeight": "174.83521955643948" } }, { "key": "geid_107_5563", "source": "Aden_AdenDependencies", "target": "India", "attributes": { "weight": 413111.72702599055, "sourceWeight": "413111.72702599055", "direction": "Imp", "source_type": "primary", "targetWeight": "413111.72702599055" } }, { "key": "geid_107_5564", "source": "IraqMesopotamia", "target": "India", "attributes": { "weight": 636020.2978726283, "sourceWeight": "636020.2978726283", "direction": "Imp", "source_type": "primary", "targetWeight": "636020.2978726283" } }, { "key": "geid_107_5565", "source": "Bahrain", "target": "India", "attributes": { "weight": 242996.41059313854, "sourceWeight": "242996.41059313854", "direction": "Imp", "source_type": "primary", "targetWeight": "242996.41059313854" } }, { "key": "geid_107_5566", "source": "MaldiveIslands", "target": "India", "attributes": { "weight": 3755.8981439582417, "sourceWeight": "3755.8981439582417", "direction": "Imp", "source_type": "primary", "targetWeight": "3755.8981439582417" } }, { "key": "geid_107_5567", "source": "SriLankaCeylon", "target": "India", "attributes": { "weight": 975665.1715712883, "sourceWeight": "975665.1715712883", "direction": "Imp", "source_type": "primary", "targetWeight": "975665.1715712883" } }, { "key": "geid_107_5568", "source": "LabuanI_StraitsSettlements", "target": "India", "attributes": { "weight": 3495220.631056358, "sourceWeight": "3495220.631056358", "direction": "Imp", "source_type": "primary", "targetWeight": "3495220.631056358" } }, { "key": "geid_107_5569", "source": "FederatedMalayStates", "target": "India", "attributes": { "weight": 7459.540063380471, "sourceWeight": "7459.540063380471", "direction": "Imp", "source_type": "primary", "targetWeight": "7459.540063380471" } }, { "key": "geid_107_5570", "source": "BritishBorneo", "target": "India", "attributes": { "weight": 200568.24309651452, "sourceWeight": "200568.24309651452", "direction": "Imp", "source_type": "primary", "targetWeight": "200568.24309651452" } }, { "key": "geid_107_5571", "source": "HongKong", "target": "India", "attributes": { "weight": 816237.6926214651, "sourceWeight": "816237.6926214651", "direction": "Imp", "source_type": "primary", "targetWeight": "816237.6926214651" } }, { "key": "geid_107_5572", "source": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "target": "India", "attributes": { "weight": 87.16568583073209, "sourceWeight": "87.16568583073209", "direction": "Imp", "source_type": "primary", "targetWeight": "87.16568583073209" } }, { "key": "geid_107_5573", "source": "CapeColonyCapeofGoodHope", "target": "India", "attributes": { "weight": 583.5278406521429, "sourceWeight": "583.5278406521429", "direction": "Imp", "source_type": "primary", "targetWeight": "583.5278406521429" } }, { "key": "geid_107_5574", "source": "Natal", "target": "India", "attributes": { "weight": 424116.9886828539, "sourceWeight": "424116.9886828539", "direction": "Imp", "source_type": "primary", "targetWeight": "424116.9886828539" } }, { "key": "geid_107_5575", "source": "TransvaalSouthAfricanRepublic", "target": "India", "attributes": { "weight": 1027.345857854698, "sourceWeight": "1027.345857854698", "direction": "Imp", "source_type": "primary", "targetWeight": "1027.345857854698" } }, { "key": "geid_107_5576", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "India", "attributes": { "weight": 4.174739701224163, "sourceWeight": "4.174739701224163", "direction": "Imp", "source_type": "primary", "targetWeight": "4.174739701224163" } }, { "key": "geid_107_5577", "source": "PembaIsland_Zanzibar", "target": "India", "attributes": { "weight": 441395.0126756186, "sourceWeight": "441395.0126756186", "direction": "Imp", "source_type": "primary", "targetWeight": "441395.0126756186" } }, { "key": "geid_107_5578", "source": "KenyaBritishEastAfricaProtectorate", "target": "India", "attributes": { "weight": 2670823.049797497, "sourceWeight": "2670823.049797497", "direction": "Imp", "source_type": "primary", "targetWeight": "2670823.049797497" } }, { "key": "geid_107_5579", "source": "TanzaniaTanganyika", "target": "India", "attributes": { "weight": 41005.085106401544, "sourceWeight": "41005.085106401544", "direction": "Imp", "source_type": "primary", "targetWeight": "41005.085106401544" } }, { "key": "geid_107_5580", "source": "Uganda", "target": "India", "attributes": { "weight": 50.528746038954516, "sourceWeight": "50.528746038954516", "direction": "Imp", "source_type": "primary", "targetWeight": "50.528746038954516" } }, { "key": "geid_107_5581", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "India", "attributes": { "weight": 0.7197827071076143, "sourceWeight": "0.7197827071076143", "direction": "Imp", "source_type": "primary", "targetWeight": "0.7197827071076143" } }, { "key": "geid_107_5582", "source": "SomalilandRepublicBritishSomaliland", "target": "India", "attributes": { "weight": 105.44816659126549, "sourceWeight": "105.44816659126549", "direction": "Imp", "source_type": "primary", "targetWeight": "105.44816659126549" } }, { "key": "geid_107_5583", "source": "SudanAngloEgyptianSudanMahdistState", "target": "India", "attributes": { "weight": 5953.682661840631, "sourceWeight": "5953.682661840631", "direction": "Imp", "source_type": "primary", "targetWeight": "5953.682661840631" } }, { "key": "geid_107_5584", "source": "Mauritius_MauritiusDependencies", "target": "India", "attributes": { "weight": 2638383.8107753005, "sourceWeight": "2638383.8107753005", "direction": "Imp", "source_type": "primary", "targetWeight": "2638383.8107753005" } }, { "key": "geid_107_5585", "source": "Seychelles", "target": "India", "attributes": { "weight": 3854.580353102696, "sourceWeight": "3854.580353102696", "direction": "Imp", "source_type": "primary", "targetWeight": "3854.580353102696" } }, { "key": "geid_107_5586", "source": "CanadaAtlanticCoast", "target": "India", "attributes": { "weight": 711248.31552771, "sourceWeight": "711248.31552771", "direction": "Imp", "source_type": "primary", "targetWeight": "711248.31552771" } }, { "key": "geid_107_5587", "source": "CanadaPacificCoast", "target": "India", "attributes": { "weight": 1451.729741965347, "sourceWeight": "1451.729741965347", "direction": "Imp", "source_type": "primary", "targetWeight": "1451.729741965347" } }, { "key": "geid_107_5588", "source": "BritishWestIndies", "target": "India", "attributes": { "weight": 14776.347215941501, "sourceWeight": "14776.347215941501", "direction": "Imp", "source_type": "primary", "targetWeight": "14776.347215941501" } }, { "key": "geid_107_5589", "source": "WesternAustralia", "target": "India", "attributes": { "weight": 31635.529651440305, "sourceWeight": "31635.529651440305", "direction": "Imp", "source_type": "primary", "targetWeight": "31635.529651440305" } }, { "key": "geid_107_5590", "source": "AustralianNorthernTerritory_SouthAustralia", "target": "India", "attributes": { "weight": 27515.92530558059, "sourceWeight": "27515.92530558059", "direction": "Imp", "source_type": "primary", "targetWeight": "27515.92530558059" } }, { "key": "geid_107_5591", "source": "Victoria", "target": "India", "attributes": { "weight": 274190.425532039, "sourceWeight": "274190.425532039", "direction": "Imp", "source_type": "primary", "targetWeight": "274190.425532039" } }, { "key": "geid_107_5592", "source": "Tasmania", "target": "India", "attributes": { "weight": 15944.986419201425, "sourceWeight": "15944.986419201425", "direction": "Imp", "source_type": "primary", "targetWeight": "15944.986419201425" } }, { "key": "geid_107_5593", "source": "NewSouthWales", "target": "India", "attributes": { "weight": 190337.10774114548, "sourceWeight": "190337.10774114548", "direction": "Imp", "source_type": "primary", "targetWeight": "190337.10774114548" } }, { "key": "geid_107_5594", "source": "Queensland", "target": "India", "attributes": { "weight": 6128.589859667782, "sourceWeight": "6128.589859667782", "direction": "Imp", "source_type": "primary", "targetWeight": "6128.589859667782" } }, { "key": "geid_107_5595", "source": "Nauru_NewZealand_SamoaWesternSamoaGermanSamoa", "target": "India", "attributes": { "weight": 99263.07378908976, "sourceWeight": "99263.07378908976", "direction": "Imp", "source_type": "primary", "targetWeight": "99263.07378908976" } }, { "key": "geid_107_5596", "source": "Fiji", "target": "India", "attributes": { "weight": 29.655047532833706, "sourceWeight": "29.655047532833706", "direction": "Imp", "source_type": "primary", "targetWeight": "29.655047532833706" } }, { "key": "geid_107_5597", "source": "NorthernRussia", "target": "India", "attributes": { "weight": 3032.5885015858003, "sourceWeight": "3032.5885015858003", "direction": "Imp", "source_type": "primary", "targetWeight": "3032.5885015858003" } }, { "key": "geid_107_5598", "source": "SouthernRussia", "target": "India", "attributes": { "weight": 1154.6754187420347, "sourceWeight": "1154.6754187420347", "direction": "Imp", "source_type": "primary", "targetWeight": "1154.6754187420347" } }, { "key": "geid_107_5599", "source": "Finland", "target": "India", "attributes": { "weight": 119678.70258040728, "sourceWeight": "119678.70258040728", "direction": "Imp", "source_type": "primary", "targetWeight": "119678.70258040728" } }, { "key": "geid_107_5600", "source": "Estonia", "target": "India", "attributes": { "weight": 14831.91444093021, "sourceWeight": "14831.91444093021", "direction": "Imp", "source_type": "primary", "targetWeight": "14831.91444093021" } }, { "key": "geid_107_5601", "source": "Latvia", "target": "India", "attributes": { "weight": 61.18153010414721, "sourceWeight": "61.18153010414721", "direction": "Imp", "source_type": "primary", "targetWeight": "61.18153010414721" } }, { "key": "geid_107_5602", "source": "Georgia", "target": "India", "attributes": { "weight": 243893.61973754817, "sourceWeight": "243893.61973754817", "direction": "Imp", "source_type": "primary", "targetWeight": "243893.61973754817" } }, { "key": "geid_107_5603", "source": "Sweden", "target": "India", "attributes": { "weight": 860475.033952404, "sourceWeight": "860475.033952404", "direction": "Imp", "source_type": "primary", "targetWeight": "860475.033952404" } }, { "key": "geid_107_5604", "source": "Norway", "target": "India", "attributes": { "weight": 469717.8143958668, "sourceWeight": "469717.8143958668", "direction": "Imp", "source_type": "primary", "targetWeight": "469717.8143958668" } }, { "key": "geid_107_5605", "source": "Denmark", "target": "India", "attributes": { "weight": 65954.26527843637, "sourceWeight": "65954.26527843637", "direction": "Imp", "source_type": "primary", "targetWeight": "65954.26527843637" } }, { "key": "geid_107_5606", "source": "DanzigFreeCityofDanzig_Poland", "target": "India", "attributes": { "weight": 4149.763241287528, "sourceWeight": "4149.763241287528", "direction": "Imp", "source_type": "primary", "targetWeight": "4149.763241287528" } }, { "key": "geid_107_5607", "source": "GermanyZollverein", "target": "India", "attributes": { "weight": 11134017.107293407, "sourceWeight": "11134017.107293407", "direction": "Imp", "source_type": "primary", "targetWeight": "11134017.107293407" } }, { "key": "geid_107_5608", "source": "Netherlands", "target": "India", "attributes": { "weight": 2143667.223178879, "sourceWeight": "2143667.223178879", "direction": "Imp", "source_type": "primary", "targetWeight": "2143667.223178879" } }, { "key": "geid_107_5609", "source": "Belgium", "target": "India", "attributes": { "weight": 4866193.272523706, "sourceWeight": "4866193.272523706", "direction": "Imp", "source_type": "primary", "targetWeight": "4866193.272523706" } }, { "key": "geid_107_5610", "source": "Luxemburg", "target": "India", "attributes": { "weight": 144215.0153916452, "sourceWeight": "144215.0153916452", "direction": "Imp", "source_type": "primary", "targetWeight": "144215.0153916452" } }, { "key": "geid_107_5611", "source": "France", "target": "India", "attributes": { "weight": 1861026.3327305845, "sourceWeight": "1861026.3327305845", "direction": "Imp", "source_type": "primary", "targetWeight": "1861026.3327305845" } }, { "key": "geid_107_5612", "source": "Spain", "target": "India", "attributes": { "weight": 111463.67858764666, "sourceWeight": "111463.67858764666", "direction": "Imp", "source_type": "primary", "targetWeight": "111463.67858764666" } }, { "key": "geid_107_5613", "source": "Portugal", "target": "India", "attributes": { "weight": 48166.2032594152, "sourceWeight": "48166.2032594152", "direction": "Imp", "source_type": "primary", "targetWeight": "48166.2032594152" } }, { "key": "geid_107_5614", "source": "Switzerland", "target": "India", "attributes": { "weight": 1305795.4535995047, "sourceWeight": "1305795.4535995047", "direction": "Imp", "source_type": "primary", "targetWeight": "1305795.4535995047" } }, { "key": "geid_107_5615", "source": "Italy", "target": "India", "attributes": { "weight": 2763641.6210967693, "sourceWeight": "2763641.6210967693", "direction": "Imp", "source_type": "primary", "targetWeight": "2763641.6210967693" } }, { "key": "geid_107_5616", "source": "Fiume", "target": "India", "attributes": { "weight": 32755.511543699755, "sourceWeight": "32755.511543699755", "direction": "Imp", "source_type": "primary", "targetWeight": "32755.511543699755" } }, { "key": "geid_107_5617", "source": "Austria", "target": "India", "attributes": { "weight": 498385.03214146604, "sourceWeight": "498385.03214146604", "direction": "Imp", "source_type": "primary", "targetWeight": "498385.03214146604" } }, { "key": "geid_107_5618", "source": "Hungary", "target": "India", "attributes": { "weight": 254771.11996389987, "sourceWeight": "254771.11996389987", "direction": "Imp", "source_type": "primary", "targetWeight": "254771.11996389987" } }, { "key": "geid_107_5619", "source": "Czechoslovakia", "target": "India", "attributes": { "weight": 823261.6921687747, "sourceWeight": "823261.6921687747", "direction": "Imp", "source_type": "primary", "targetWeight": "823261.6921687747" } }, { "key": "geid_107_5620", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "India", "attributes": { "weight": 2668.6663648721906, "sourceWeight": "2668.6663648721906", "direction": "Imp", "source_type": "primary", "targetWeight": "2668.6663648721906" } }, { "key": "geid_107_5621", "source": "Romania", "target": "India", "attributes": { "weight": 182.68085106391248, "sourceWeight": "182.68085106391248", "direction": "Imp", "source_type": "primary", "targetWeight": "182.68085106391248" } }, { "key": "geid_107_5622", "source": "Greece", "target": "India", "attributes": { "weight": 8405.76641014414, "sourceWeight": "8405.76641014414", "direction": "Imp", "source_type": "primary", "targetWeight": "8405.76641014414" } }, { "key": "geid_107_5623", "source": "EuropeanTurkey", "target": "India", "attributes": { "weight": 2039.2883657772927, "sourceWeight": "2039.2883657772927", "direction": "Imp", "source_type": "primary", "targetWeight": "2039.2883657772927" } }, { "key": "geid_107_5624", "source": "AsianTurkey", "target": "India", "attributes": { "weight": 203.26663648719025, "sourceWeight": "203.26663648719025", "direction": "Imp", "source_type": "primary", "targetWeight": "203.26663648719025" } }, { "key": "geid_107_5625", "source": "IzmirSmyrna", "target": "India", "attributes": { "weight": 63.34087822547005, "sourceWeight": "63.34087822547005", "direction": "Imp", "source_type": "primary", "targetWeight": "63.34087822547005" } }, { "key": "geid_107_5626", "source": "OmanSultanateofMuscatandOman_UnitedArabEmiratesTrucialOman", "target": "India", "attributes": { "weight": 359700.2512450701, "sourceWeight": "359700.2512450701", "direction": "Imp", "source_type": "primary", "targetWeight": "359700.2512450701" } }, { "key": "geid_107_5627", "source": "Arabiaother", "target": "India", "attributes": { "weight": 38327.70937077335, "sourceWeight": "38327.70937077335", "direction": "Imp", "source_type": "primary", "targetWeight": "38327.70937077335" } }, { "key": "geid_107_5628", "source": "IranPersia", "target": "India", "attributes": { "weight": 1606885.2385702159, "sourceWeight": "1606885.2385702159", "direction": "Imp", "source_type": "primary", "targetWeight": "1606885.2385702159" } }, { "key": "geid_107_5629", "source": "HengamIs", "target": "India", "attributes": { "weight": 190.81439565422852, "sourceWeight": "190.81439565422852", "direction": "Imp", "source_type": "primary", "targetWeight": "190.81439565422852" } }, { "key": "geid_107_5630", "source": "Sumatra", "target": "India", "attributes": { "weight": 1370.034404708633, "sourceWeight": "1370.034404708633", "direction": "Imp", "source_type": "primary", "targetWeight": "1370.034404708633" } }, { "key": "geid_107_5631", "source": "Java", "target": "India", "attributes": { "weight": 11130037.212770997, "sourceWeight": "11130037.212770997", "direction": "Imp", "source_type": "primary", "targetWeight": "11130037.212770997" } }, { "key": "geid_107_5632", "source": "DutchBorneo", "target": "India", "attributes": { "weight": 566816.9334543082, "sourceWeight": "566816.9334543082", "direction": "Imp", "source_type": "primary", "targetWeight": "566816.9334543082" } }, { "key": "geid_107_5633", "source": "Java_Sumatra_SulawesiCelebes", "target": "India", "attributes": { "weight": 64.564508827553, "sourceWeight": "64.564508827553", "direction": "Imp", "source_type": "primary", "targetWeight": "64.564508827553" } }, { "key": "geid_107_5634", "source": "ThailandSiam", "target": "India", "attributes": { "weight": 217618.74377556253, "sourceWeight": "217618.74377556253", "direction": "Imp", "source_type": "primary", "targetWeight": "217618.74377556253" } }, { "key": "geid_107_5635", "source": "FrenchIndochina", "target": "India", "attributes": { "weight": 4329.421004981589, "sourceWeight": "4329.421004981589", "direction": "Imp", "source_type": "primary", "targetWeight": "4329.421004981589" } }, { "key": "geid_107_5636", "source": "Guam_Philippines", "target": "India", "attributes": { "weight": 62926.427342717485, "sourceWeight": "62926.427342717485", "direction": "Imp", "source_type": "primary", "targetWeight": "62926.427342717485" } }, { "key": "geid_107_5637", "source": "PeoplesRepublicofChinaChina", "target": "India", "attributes": { "weight": 1991706.2661846953, "sourceWeight": "1991706.2661846953", "direction": "Imp", "source_type": "primary", "targetWeight": "1991706.2661846953" } }, { "key": "geid_107_5638", "source": "Japan", "target": "India", "attributes": { "weight": 12323217.479408024, "sourceWeight": "12323217.479408024", "direction": "Imp", "source_type": "primary", "targetWeight": "12323217.479408024" } }, { "key": "geid_107_5639", "source": "EgyptArabRepublicEgypt", "target": "India", "attributes": { "weight": 462775.65414235526, "sourceWeight": "462775.65414235526", "direction": "Imp", "source_type": "primary", "targetWeight": "462775.65414235526" } }, { "key": "geid_107_5640", "source": "TunisiaRegencyofTunis", "target": "India", "attributes": { "weight": 8737.44228157933, "sourceWeight": "8737.44228157933", "direction": "Imp", "source_type": "primary", "targetWeight": "8737.44228157933" } }, { "key": "geid_107_5641", "source": "AlgeriaRegencyofAlgiers", "target": "India", "attributes": { "weight": 0.21593481213228427, "sourceWeight": "0.21593481213228427", "direction": "Imp", "source_type": "primary", "targetWeight": "0.21593481213228427" } }, { "key": "geid_107_5642", "source": "CanaryIs", "target": "India", "attributes": { "weight": 1101.6274332282035, "sourceWeight": "1101.6274332282035", "direction": "Imp", "source_type": "primary", "targetWeight": "1101.6274332282035" } }, { "key": "geid_107_5643", "source": "AngolaPortugueseWestAfrica", "target": "India", "attributes": { "weight": 66.65187867816508, "sourceWeight": "66.65187867816508", "direction": "Imp", "source_type": "primary", "targetWeight": "66.65187867816508" } }, { "key": "geid_107_5644", "source": "MozambiquePortugueseEastAfrica", "target": "India", "attributes": { "weight": 240904.79402455452, "sourceWeight": "240904.79402455452", "direction": "Imp", "source_type": "primary", "targetWeight": "240904.79402455452" } }, { "key": "geid_107_5645", "source": "MadagascarMalagasyRepublic", "target": "India", "attributes": { "weight": 1351.032141240992, "sourceWeight": "1351.032141240992", "direction": "Imp", "source_type": "primary", "targetWeight": "1351.032141240992" } }, { "key": "geid_107_5646", "source": "Eritrea_ItalianSomaliland", "target": "India", "attributes": { "weight": 77734.37301950101, "sourceWeight": "77734.37301950101", "direction": "Imp", "source_type": "primary", "targetWeight": "77734.37301950101" } }, { "key": "geid_107_5647", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "India", "attributes": { "weight": 31168.174739715334, "sourceWeight": "31168.174739715334", "direction": "Imp", "source_type": "primary", "targetWeight": "31168.174739715334" } }, { "key": "geid_107_5648", "source": "UnitedStatesofAmericaAtlanticCoast", "target": "India", "attributes": { "weight": 9688968.604350245, "sourceWeight": "9688968.604350245", "direction": "Imp", "source_type": "primary", "targetWeight": "9688968.604350245" } }, { "key": "geid_107_5649", "source": "UnitedStatesofAmericaPacificCoast", "target": "India", "attributes": { "weight": 438589.73155293736, "sourceWeight": "438589.73155293736", "direction": "Imp", "source_type": "primary", "targetWeight": "438589.73155293736" } }, { "key": "geid_107_5650", "source": "Cuba", "target": "India", "attributes": { "weight": 0.50384789497533, "sourceWeight": "0.50384789497533", "direction": "Imp", "source_type": "primary", "targetWeight": "0.50384789497533" } }, { "key": "geid_107_5651", "source": "DominicanRepublicSantoDomingo_Haiti", "target": "India", "attributes": { "weight": 144.96423721147352, "sourceWeight": "144.96423721147352", "direction": "Imp", "source_type": "primary", "targetWeight": "144.96423721147352" } }, { "key": "geid_107_5652", "source": "Guatemala", "target": "India", "attributes": { "weight": 1.5835219556367512, "sourceWeight": "1.5835219556367512", "direction": "Imp", "source_type": "primary", "targetWeight": "1.5835219556367512" } }, { "key": "geid_107_5653", "source": "ColombiaNewGranadaGranColombia", "target": "India", "attributes": { "weight": 568.7722951564367, "sourceWeight": "568.7722951564367", "direction": "Imp", "source_type": "primary", "targetWeight": "568.7722951564367" } }, { "key": "geid_107_5654", "source": "Venezuela", "target": "India", "attributes": { "weight": 0.5758261656860914, "sourceWeight": "0.5758261656860914", "direction": "Imp", "source_type": "primary", "targetWeight": "0.5758261656860914" } }, { "key": "geid_107_5655", "source": "Brazil", "target": "India", "attributes": { "weight": 0.14395654142152284, "sourceWeight": "0.14395654142152284", "direction": "Imp", "source_type": "primary", "targetWeight": "0.14395654142152284" } }, { "key": "geid_107_5656", "source": "ArgentinaLaPlata_PatagoniaAtlanticCoast", "target": "India", "attributes": { "weight": 68.16342236309107, "sourceWeight": "68.16342236309107", "direction": "Imp", "source_type": "primary", "targetWeight": "68.16342236309107" } }, { "key": "geid_107_5657", "source": "India", "target": "UnitedKingdom", "attributes": { "weight": 70209950.59124953, "sourceWeight": "70209950.59124953", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5658", "source": "India", "target": "ChannelIs", "attributes": { "weight": 96.16296966957727, "sourceWeight": "96.16296966957727", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5659", "source": "India", "target": "Gibraltar", "attributes": { "weight": 3372.3259393405942, "sourceWeight": "3372.3259393405942", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5660", "source": "India", "target": "Gozo_Malta", "attributes": { "weight": 14129.5504753346, "sourceWeight": "14129.5504753346", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5661", "source": "India", "target": "Cyprus", "attributes": { "weight": 32129.084653703998, "sourceWeight": "32129.084653703998", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5662", "source": "India", "target": "Palestine", "attributes": { "weight": 14755.40153916467, "sourceWeight": "14755.40153916467", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5663", "source": "India", "target": "Aden_AdenDependencies", "attributes": { "weight": 1080194.8234500138, "sourceWeight": "1080194.8234500138", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5664", "source": "India", "target": "IraqMesopotamia", "attributes": { "weight": 1845929.7541882508, "sourceWeight": "1845929.7541882508", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5665", "source": "India", "target": "Bahrain", "attributes": { "weight": 661003.7397015216, "sourceWeight": "661003.7397015216", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5666", "source": "India", "target": "MaldiveIslands", "attributes": { "weight": 15629.073789051892, "sourceWeight": "15629.073789051892", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5667", "source": "India", "target": "SriLankaCeylon", "attributes": { "weight": 9791119.51833852, "sourceWeight": "9791119.51833852", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5668", "source": "India", "target": "LabuanI_StraitsSettlements", "attributes": { "weight": 5781212.288368394, "sourceWeight": "5781212.288368394", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5669", "source": "India", "target": "FederatedMalayStates", "attributes": { "weight": 579814.409687904, "sourceWeight": "579814.409687904", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5670", "source": "India", "target": "BritishBorneo", "attributes": { "weight": 22983.38162065323, "sourceWeight": "22983.38162065323", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5671", "source": "India", "target": "HongKong", "attributes": { "weight": 2415178.1856054394, "sourceWeight": "2415178.1856054394", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5672", "source": "India", "target": "GhanaGoldCoast_GoldCoastTogolandNeutralZone", "attributes": { "weight": 12267.832503400756, "sourceWeight": "12267.832503400756", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5673", "source": "India", "target": "NamibiaSouthWestAfricaGermanSouthWestAfrica", "attributes": { "weight": 237.5282933455127, "sourceWeight": "237.5282933455127", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5674", "source": "India", "target": "CapeColonyCapeofGoodHope", "attributes": { "weight": 570094.895880747, "sourceWeight": "570094.895880747", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5675", "source": "India", "target": "Natal", "attributes": { "weight": 1286414.6564061958, "sourceWeight": "1286414.6564061958", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5676", "source": "India", "target": "TransvaalSouthAfricanRepublic", "attributes": { "weight": 24508.16930739, "sourceWeight": "24508.16930739", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5677", "source": "India", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 29242.971933014596, "sourceWeight": "29242.971933014596", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5678", "source": "India", "target": "PembaIsland_Zanzibar", "attributes": { "weight": 432712.129923238, "sourceWeight": "432712.129923238", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5679", "source": "India", "target": "KenyaBritishEastAfricaProtectorate", "attributes": { "weight": 750915.8284294935, "sourceWeight": "750915.8284294935", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5680", "source": "India", "target": "TanzaniaTanganyika", "attributes": { "weight": 275997.36803996196, "sourceWeight": "275997.36803996196", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5681", "source": "India", "target": "Uganda", "attributes": { "weight": 54.703485740178685, "sourceWeight": "54.703485740178685", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5682", "source": "India", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 269.9904934360661, "sourceWeight": "269.9904934360661", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5683", "source": "India", "target": "SomalilandRepublicBritishSomaliland", "attributes": { "weight": 10998.063829792212, "sourceWeight": "10998.063829792212", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5684", "source": "India", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 155469.53779997985, "sourceWeight": "155469.53779997985", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5685", "source": "India", "target": "Mauritius_MauritiusDependencies", "attributes": { "weight": 1323549.4698964797, "sourceWeight": "1323549.4698964797", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5686", "source": "India", "target": "Seychelles", "attributes": { "weight": 48682.143503869935, "sourceWeight": "48682.143503869935", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5687", "source": "India", "target": "CanadaAtlanticCoast", "attributes": { "weight": 1391092.0076964197, "sourceWeight": "1391092.0076964197", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5688", "source": "India", "target": "CanadaPacificCoast", "attributes": { "weight": 213649.28610240546, "sourceWeight": "213649.28610240546", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5689", "source": "India", "target": "Bermuda", "attributes": { "weight": 179.94567677690355, "sourceWeight": "179.94567677690355", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5690", "source": "India", "target": "BritishWestIndies", "attributes": { "weight": 424043.1389771046, "sourceWeight": "424043.1389771046", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5691", "source": "India", "target": "GuyanaBritishGuiana", "attributes": { "weight": 39650.66998643715, "sourceWeight": "39650.66998643715", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5692", "source": "India", "target": "WesternAustralia", "attributes": { "weight": 531118.1584429747, "sourceWeight": "531118.1584429747", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5693", "source": "India", "target": "AustralianNorthernTerritory_SouthAustralia", "attributes": { "weight": 807514.5020374864, "sourceWeight": "807514.5020374864", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5694", "source": "India", "target": "Victoria", "attributes": { "weight": 1595631.4359445884, "sourceWeight": "1595631.4359445884", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5695", "source": "India", "target": "Tasmania", "attributes": { "weight": 392.35355364436055, "sourceWeight": "392.35355364436055", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5696", "source": "India", "target": "NewSouthWales", "attributes": { "weight": 2058506.060209171, "sourceWeight": "2058506.060209171", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5697", "source": "India", "target": "Queensland", "attributes": { "weight": 136628.43368046024, "sourceWeight": "136628.43368046024", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5698", "source": "India", "target": "Nauru_NewZealand_SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 545121.0271618584, "sourceWeight": "545121.0271618584", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5699", "source": "India", "target": "Fiji", "attributes": { "weight": 35561.152557734524, "sourceWeight": "35561.152557734524", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5700", "source": "India", "target": "NorthernRussia", "attributes": { "weight": 25879.355364430005, "sourceWeight": "25879.355364430005", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5701", "source": "India", "target": "SouthernRussia", "attributes": { "weight": 64400.25441379104, "sourceWeight": "64400.25441379104", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5702", "source": "India", "target": "Finland", "attributes": { "weight": 48810.26482573509, "sourceWeight": "48810.26482573509", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5703", "source": "India", "target": "Sweden", "attributes": { "weight": 254490.11679504506, "sourceWeight": "254490.11679504506", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5704", "source": "India", "target": "Norway", "attributes": { "weight": 427952.3508376768, "sourceWeight": "427952.3508376768", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5705", "source": "India", "target": "Denmark", "attributes": { "weight": 78120.53644186426, "sourceWeight": "78120.53644186426", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5706", "source": "India", "target": "GermanyZollverein", "attributes": { "weight": 20144691.999556426, "sourceWeight": "20144691.999556426", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5707", "source": "India", "target": "Netherlands", "attributes": { "weight": 5751561.631510073, "sourceWeight": "5751561.631510073", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5708", "source": "India", "target": "Belgium", "attributes": { "weight": 11050453.574020395, "sourceWeight": "11050453.574020395", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5709", "source": "India", "target": "Luxemburg", "attributes": { "weight": 503.84789497532995, "sourceWeight": "503.84789497532995", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5710", "source": "India", "target": "France", "attributes": { "weight": 14937939.009513328, "sourceWeight": "14937939.009513328", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5711", "source": "India", "target": "Spain", "attributes": { "weight": 4186693.6364889937, "sourceWeight": "4186693.6364889937", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5712", "source": "India", "target": "Portugal", "attributes": { "weight": 246866.1063830905, "sourceWeight": "246866.1063830905", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5713", "source": "India", "target": "Switzerland", "attributes": { "weight": 3603.0162969685844, "sourceWeight": "3603.0162969685844", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5714", "source": "India", "target": "Italy", "attributes": { "weight": 16691812.946137028, "sourceWeight": "16691812.946137028", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5715", "source": "India", "target": "Fiume", "attributes": { "weight": 208781.61158904879, "sourceWeight": "208781.61158904879", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5716", "source": "India", "target": "Austria", "attributes": { "weight": 604938.1371664124, "sourceWeight": "604938.1371664124", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5717", "source": "India", "target": "Czechoslovakia", "attributes": { "weight": 22544.74603894185, "sourceWeight": "22544.74603894185", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5718", "source": "India", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 3235.711181531569, "sourceWeight": "3235.711181531569", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5719", "source": "India", "target": "Bulgaria", "attributes": { "weight": 32740.82797647476, "sourceWeight": "32740.82797647476", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5720", "source": "India", "target": "Romania", "attributes": { "weight": 12150.07605251795, "sourceWeight": "12150.07605251795", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5721", "source": "India", "target": "Greece", "attributes": { "weight": 469531.46265299665, "sourceWeight": "469531.46265299665", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5722", "source": "India", "target": "Crete", "attributes": { "weight": 120.49162516981463, "sourceWeight": "120.49162516981463", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5723", "source": "India", "target": "EuropeanTurkey", "attributes": { "weight": 179903.49751026704, "sourceWeight": "179903.49751026704", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5724", "source": "India", "target": "AsianTurkey", "attributes": { "weight": 106362.14667275074, "sourceWeight": "106362.14667275074", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5725", "source": "India", "target": "Syria", "attributes": { "weight": 252517.3363514045, "sourceWeight": "252517.3363514045", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5726", "source": "India", "target": "Armenia", "attributes": { "weight": 24622.110909925137, "sourceWeight": "24622.110909925137", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5727", "source": "India", "target": "IzmirSmyrna", "attributes": { "weight": 159098.46627440432, "sourceWeight": "159098.46627440432", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5728", "source": "India", "target": "OmanSultanateofMuscatandOman_UnitedArabEmiratesTrucialOman", "attributes": { "weight": 538426.0402899677, "sourceWeight": "538426.0402899677", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5729", "source": "India", "target": "Arabiaother", "attributes": { "weight": 560466.3626077685, "sourceWeight": "560466.3626077685", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5730", "source": "India", "target": "IranPersia", "attributes": { "weight": 1869169.0905395516, "sourceWeight": "1869169.0905395516", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5731", "source": "India", "target": "HengamIs", "attributes": { "weight": 5686.499320962284, "sourceWeight": "5686.499320962284", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5732", "source": "India", "target": "Sumatra", "attributes": { "weight": 954082.9189682907, "sourceWeight": "954082.9189682907", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5733", "source": "India", "target": "Java", "attributes": { "weight": 1915866.505206843, "sourceWeight": "1915866.505206843", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5734", "source": "India", "target": "DutchBorneo", "attributes": { "weight": 187973.12539619193, "sourceWeight": "187973.12539619193", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5735", "source": "India", "target": "Java_Sumatra_SulawesiCelebes", "attributes": { "weight": 40427.459483947685, "sourceWeight": "40427.459483947685", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5736", "source": "India", "target": "ThailandSiam", "attributes": { "weight": 1256941.5699417188, "sourceWeight": "1256941.5699417188", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5737", "source": "India", "target": "FrenchIndochina", "attributes": { "weight": 1287373.191037251, "sourceWeight": "1287373.191037251", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5738", "source": "India", "target": "Guam_Philippines", "attributes": { "weight": 212489.71616125508, "sourceWeight": "212489.71616125508", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5739", "source": "India", "target": "Macao", "attributes": { "weight": 12.59619737438325, "sourceWeight": "12.59619737438325", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5740", "source": "India", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 75361.1054776258, "sourceWeight": "75361.1054776258", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5741", "source": "India", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 6884500.3322801655, "sourceWeight": "6884500.3322801655", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5742", "source": "India", "target": "KoreaChosen", "attributes": { "weight": 40455.96287914914, "sourceWeight": "40455.96287914914", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5743", "source": "India", "target": "Japan", "attributes": { "weight": 39692715.4454684, "sourceWeight": "39692715.4454684", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5744", "source": "India", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 4448688.423723155, "sourceWeight": "4448688.423723155", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5745", "source": "India", "target": "TripolitaniaRegencyofTripoli", "attributes": { "weight": 25246.522408340992, "sourceWeight": "25246.522408340992", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5746", "source": "India", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 10058.963331828909, "sourceWeight": "10058.963331828909", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5747", "source": "India", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1387.7410593034801, "sourceWeight": "1387.7410593034801", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5748", "source": "India", "target": "Morocco", "attributes": { "weight": 18917.61702128516, "sourceWeight": "18917.61702128516", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5749", "source": "India", "target": "FrenchWestAfrica", "attributes": { "weight": 1028.49751018607, "sourceWeight": "1028.49751018607", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5750", "source": "India", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 8659.921684023839, "sourceWeight": "8659.921684023839", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5751", "source": "India", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 822938.2937984712, "sourceWeight": "822938.2937984712", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5752", "source": "India", "target": "MadagascarMalagasyRepublic", "attributes": { "weight": 111634.55500231401, "sourceWeight": "111634.55500231401", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5753", "source": "India", "target": "ReunionBourbonI", "attributes": { "weight": 1403.7202354012693, "sourceWeight": "1403.7202354012693", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5754", "source": "India", "target": "Eritrea_ItalianSomaliland", "attributes": { "weight": 89592.64916255754, "sourceWeight": "89592.64916255754", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5755", "source": "India", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 13961.121321871418, "sourceWeight": "13961.121321871418", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5756", "source": "India", "target": "UnitedStatesofAmericaAtlanticCoast", "attributes": { "weight": 23030167.352658685, "sourceWeight": "23030167.352658685", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5757", "source": "India", "target": "UnitedStatesofAmericaPacificCoast", "attributes": { "weight": 1608795.181983526, "sourceWeight": "1608795.181983526", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5758", "source": "India", "target": "Cuba", "attributes": { "weight": 3323929.333636634, "sourceWeight": "3323929.333636634", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5759", "source": "India", "target": "DominicanRepublicSantoDomingo_Haiti", "attributes": { "weight": 124953.70212771614, "sourceWeight": "124953.70212771614", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5760", "source": "India", "target": "PuertoRico", "attributes": { "weight": 190392.24309650992, "sourceWeight": "190392.24309650992", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5761", "source": "India", "target": "Guadeloupe_Martinique", "attributes": { "weight": 63778.002263496506, "sourceWeight": "63778.002263496506", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5762", "source": "India", "target": "Mexico", "attributes": { "weight": 46237.40153917892, "sourceWeight": "46237.40153917892", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5763", "source": "India", "target": "Guatemala", "attributes": { "weight": 8715.8488003661, "sourceWeight": "8715.8488003661", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5764", "source": "India", "target": "ElSalvador", "attributes": { "weight": 9515.167496609107, "sourceWeight": "9515.167496609107", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5765", "source": "India", "target": "Nicaragua", "attributes": { "weight": 7072.009053873731, "sourceWeight": "7072.009053873731", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5766", "source": "India", "target": "CostaRica", "attributes": { "weight": 2607.1969216852003, "sourceWeight": "2607.1969216852003", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5767", "source": "India", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 4239.73607967598, "sourceWeight": "4239.73607967598", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5768", "source": "India", "target": "Panama", "attributes": { "weight": 734.1783612497666, "sourceWeight": "734.1783612497666", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5769", "source": "India", "target": "Venezuela", "attributes": { "weight": 1885.8306926219493, "sourceWeight": "1885.8306926219493", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5770", "source": "India", "target": "SurinamDutchGuiana", "attributes": { "weight": 2763.6776822103957, "sourceWeight": "2763.6776822103957", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5771", "source": "India", "target": "Brazil", "attributes": { "weight": 419899.1339974739, "sourceWeight": "419899.1339974739", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5772", "source": "India", "target": "Paraguay", "attributes": { "weight": 2591.217745587411, "sourceWeight": "2591.217745587411", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5773", "source": "India", "target": "Uruguay", "attributes": { "weight": 209266.31326401507, "sourceWeight": "209266.31326401507", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5774", "source": "India", "target": "ArgentinaLaPlata_PatagoniaAtlanticCoast", "attributes": { "weight": 3622525.647353383, "sourceWeight": "3622525.647353383", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5775", "source": "India", "target": "Chile_PatagoniaPacificCoast", "attributes": { "weight": 1337846.0099598633, "sourceWeight": "1337846.0099598633", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5776", "source": "India", "target": "Peru", "attributes": { "weight": 291573.8257131243, "sourceWeight": "291573.8257131243", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5777", "source": "India", "target": "Ecuador", "attributes": { "weight": 42017.31552740698, "sourceWeight": "42017.31552740698", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5778", "source": "India", "target": "Bolivia", "attributes": { "weight": 5465.598008150958, "sourceWeight": "5465.598008150958", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5779", "source": "India", "target": "HawaiiSandwichIs", "attributes": { "weight": 276963.3884111711, "sourceWeight": "276963.3884111711", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5780", "source": "India", "target": "PacificIslandsother", "attributes": { "weight": 511.0457220464061, "sourceWeight": "511.0457220464061", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5781", "source": "UnitedKingdom", "target": "StraitsSettlements", "attributes": { "weight": 9400659, "sourceWeight": "9400659", "direction": "Imp", "source_type": "secondary", "targetWeight": "9400659" } }, { "key": "geid_107_5782", "source": "Australia", "target": "StraitsSettlements", "attributes": { "weight": 1630440, "sourceWeight": "1630440", "direction": "Imp", "source_type": "secondary", "targetWeight": "1630440" } }, { "key": "geid_107_5783", "source": "NewZealand", "target": "StraitsSettlements", "attributes": { "weight": 9589, "sourceWeight": "9589", "direction": "Imp", "source_type": "secondary", "targetWeight": "9589" } }, { "key": "geid_107_5784", "source": "SouthAfrica", "target": "StraitsSettlements", "attributes": { "weight": 757517, "sourceWeight": "757517", "direction": "Imp", "source_type": "secondary", "targetWeight": "757517" } }, { "key": "geid_107_5785", "source": "Mauritius", "target": "StraitsSettlements", "attributes": { "weight": 1201, "sourceWeight": "1201", "direction": "Imp", "source_type": "secondary", "targetWeight": "1201" } }, { "key": "geid_107_5786", "source": "India", "target": "StraitsSettlements", "attributes": { "weight": 7374749, "sourceWeight": "7374749", "direction": "Imp", "source_type": "secondary", "targetWeight": "7374749" } }, { "key": "geid_107_5787", "source": "FederatedMalayStates", "target": "StraitsSettlements", "attributes": { "weight": 17539155, "sourceWeight": "17539155", "direction": "Imp", "source_type": "secondary", "targetWeight": "17539155" } }, { "key": "geid_107_5788", "source": "MalaysiaBritishMalayaother", "target": "StraitsSettlements", "attributes": { "weight": 8504648, "sourceWeight": "8504648", "direction": "Imp", "source_type": "secondary", "targetWeight": "8504648" } }, { "key": "geid_107_5789", "source": "SriLankaCeylon", "target": "StraitsSettlements", "attributes": { "weight": 113833, "sourceWeight": "113833", "direction": "Imp", "source_type": "secondary", "targetWeight": "113833" } }, { "key": "geid_107_5790", "source": "SabahNorthBorneo", "target": "StraitsSettlements", "attributes": { "weight": 454979, "sourceWeight": "454979", "direction": "Imp", "source_type": "secondary", "targetWeight": "454979" } }, { "key": "geid_107_5791", "source": "Brunei", "target": "StraitsSettlements", "attributes": { "weight": 121226, "sourceWeight": "121226", "direction": "Imp", "source_type": "secondary", "targetWeight": "121226" } }, { "key": "geid_107_5792", "source": "Sarawak", "target": "StraitsSettlements", "attributes": { "weight": 2638869, "sourceWeight": "2638869", "direction": "Imp", "source_type": "secondary", "targetWeight": "2638869" } }, { "key": "geid_107_5793", "source": "HongKong", "target": "StraitsSettlements", "attributes": { "weight": 4231089, "sourceWeight": "4231089", "direction": "Imp", "source_type": "secondary", "targetWeight": "4231089" } }, { "key": "geid_107_5794", "source": "BritishColoniesother", "target": "StraitsSettlements", "attributes": { "weight": 78427, "sourceWeight": "78427", "direction": "Imp", "source_type": "secondary", "targetWeight": "78427" } }, { "key": "geid_107_5795", "source": "RussiaUSSR", "target": "StraitsSettlements", "attributes": { "weight": 3420, "sourceWeight": "3420", "direction": "Imp", "source_type": "secondary", "targetWeight": "3420" } }, { "key": "geid_107_5796", "source": "GermanyZollverein", "target": "StraitsSettlements", "attributes": { "weight": 609875, "sourceWeight": "609875", "direction": "Imp", "source_type": "secondary", "targetWeight": "609875" } }, { "key": "geid_107_5797", "source": "Netherlands", "target": "StraitsSettlements", "attributes": { "weight": 582484, "sourceWeight": "582484", "direction": "Imp", "source_type": "secondary", "targetWeight": "582484" } }, { "key": "geid_107_5798", "source": "DutchColoniesother", "target": "StraitsSettlements", "attributes": { "weight": 26472590, "sourceWeight": "26472590", "direction": "Imp", "source_type": "secondary", "targetWeight": "26472590" } }, { "key": "geid_107_5799", "source": "Belgium", "target": "StraitsSettlements", "attributes": { "weight": 270803, "sourceWeight": "270803", "direction": "Imp", "source_type": "secondary", "targetWeight": "270803" } }, { "key": "geid_107_5800", "source": "France", "target": "StraitsSettlements", "attributes": { "weight": 705437, "sourceWeight": "705437", "direction": "Imp", "source_type": "secondary", "targetWeight": "705437" } }, { "key": "geid_107_5801", "source": "FrenchColonies", "target": "StraitsSettlements", "attributes": { "weight": 2051949, "sourceWeight": "2051949", "direction": "Imp", "source_type": "secondary", "targetWeight": "2051949" } }, { "key": "geid_107_5802", "source": "Italy", "target": "StraitsSettlements", "attributes": { "weight": 617318, "sourceWeight": "617318", "direction": "Imp", "source_type": "secondary", "targetWeight": "617318" } }, { "key": "geid_107_5803", "source": "AustriaHungaryAustrianEmpire", "target": "StraitsSettlements", "attributes": { "weight": 99, "sourceWeight": "99", "direction": "Imp", "source_type": "secondary", "targetWeight": "99" } }, { "key": "geid_107_5804", "source": "ThailandSiam", "target": "StraitsSettlements", "attributes": { "weight": 8165585, "sourceWeight": "8165585", "direction": "Imp", "source_type": "secondary", "targetWeight": "8165585" } }, { "key": "geid_107_5805", "source": "PeoplesRepublicofChinaChina", "target": "StraitsSettlements", "attributes": { "weight": 3071781, "sourceWeight": "3071781", "direction": "Imp", "source_type": "secondary", "targetWeight": "3071781" } }, { "key": "geid_107_5806", "source": "Japan", "target": "StraitsSettlements", "attributes": { "weight": 1918516, "sourceWeight": "1918516", "direction": "Imp", "source_type": "secondary", "targetWeight": "1918516" } }, { "key": "geid_107_5807", "source": "UnitedStatesofAmerica", "target": "StraitsSettlements", "attributes": { "weight": 2560965, "sourceWeight": "2560965", "direction": "Imp", "source_type": "secondary", "targetWeight": "2560965" } }, { "key": "geid_107_5808", "source": "Philippines_SuluSultanate", "target": "StraitsSettlements", "attributes": { "weight": 116831, "sourceWeight": "116831", "direction": "Imp", "source_type": "secondary", "targetWeight": "116831" } }, { "key": "geid_107_5809", "source": "Othercountries", "target": "StraitsSettlements", "attributes": { "weight": 517484, "sourceWeight": "517484", "direction": "Imp", "source_type": "secondary", "targetWeight": "517484" } }, { "key": "geid_107_5810", "source": "StraitsSettlements", "target": "UnitedKingdom", "attributes": { "weight": 8456627, "sourceWeight": "8456627", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5811", "source": "StraitsSettlements", "target": "CanadaProvinceofCanada", "attributes": { "weight": 315698, "sourceWeight": "315698", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5812", "source": "StraitsSettlements", "target": "Australia", "attributes": { "weight": 910089, "sourceWeight": "910089", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5813", "source": "StraitsSettlements", "target": "NewZealand", "attributes": { "weight": 325927, "sourceWeight": "325927", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5814", "source": "StraitsSettlements", "target": "Mauritius", "attributes": { "weight": 76700, "sourceWeight": "76700", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5815", "source": "StraitsSettlements", "target": "India", "attributes": { "weight": 3788169, "sourceWeight": "3788169", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5816", "source": "StraitsSettlements", "target": "FederatedMalayStates", "attributes": { "weight": 8510481, "sourceWeight": "8510481", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5817", "source": "StraitsSettlements", "target": "MalaysiaBritishMalayaother", "attributes": { "weight": 3662398, "sourceWeight": "3662398", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5818", "source": "StraitsSettlements", "target": "SriLankaCeylon", "attributes": { "weight": 275492, "sourceWeight": "275492", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5819", "source": "StraitsSettlements", "target": "SabahNorthBorneo", "attributes": { "weight": 472132, "sourceWeight": "472132", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5820", "source": "StraitsSettlements", "target": "Brunei", "attributes": { "weight": 78569, "sourceWeight": "78569", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5821", "source": "StraitsSettlements", "target": "Sarawak", "attributes": { "weight": 834984, "sourceWeight": "834984", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5822", "source": "StraitsSettlements", "target": "HongKong", "attributes": { "weight": 1860808, "sourceWeight": "1860808", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5823", "source": "StraitsSettlements", "target": "BritishColoniesother", "attributes": { "weight": 1120386, "sourceWeight": "1120386", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5824", "source": "StraitsSettlements", "target": "Denmark", "attributes": { "weight": 406237, "sourceWeight": "406237", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5825", "source": "StraitsSettlements", "target": "GermanyZollverein", "attributes": { "weight": 1273920, "sourceWeight": "1273920", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5826", "source": "StraitsSettlements", "target": "Netherlands", "attributes": { "weight": 1902282, "sourceWeight": "1902282", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5827", "source": "StraitsSettlements", "target": "DutchColoniesother", "attributes": { "weight": 9976368, "sourceWeight": "9976368", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5828", "source": "StraitsSettlements", "target": "Belgium", "attributes": { "weight": 164139, "sourceWeight": "164139", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5829", "source": "StraitsSettlements", "target": "France", "attributes": { "weight": 3202418, "sourceWeight": "3202418", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5830", "source": "StraitsSettlements", "target": "FrenchColonies", "attributes": { "weight": 997422, "sourceWeight": "997422", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5831", "source": "StraitsSettlements", "target": "Spain", "attributes": { "weight": 444641, "sourceWeight": "444641", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5832", "source": "StraitsSettlements", "target": "Italy", "attributes": { "weight": 1434496, "sourceWeight": "1434496", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5833", "source": "StraitsSettlements", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 228758, "sourceWeight": "228758", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5834", "source": "StraitsSettlements", "target": "ThailandSiam", "attributes": { "weight": 2843857, "sourceWeight": "2843857", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5835", "source": "StraitsSettlements", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1073867, "sourceWeight": "1073867", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5836", "source": "StraitsSettlements", "target": "Japan", "attributes": { "weight": 2901829, "sourceWeight": "2901829", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5837", "source": "StraitsSettlements", "target": "UnitedStatesofAmerica", "attributes": { "weight": 31765357, "sourceWeight": "31765357", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5838", "source": "StraitsSettlements", "target": "Philippines_SuluSultanate", "attributes": { "weight": 269944, "sourceWeight": "269944", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5839", "source": "StraitsSettlements", "target": "Othercountries", "attributes": { "weight": 417421, "sourceWeight": "417421", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5840", "source": "UnitedKingdom", "target": "FederatedMalayStates", "attributes": { "weight": 1260089, "sourceWeight": "1260089", "direction": "Imp", "source_type": "secondary", "targetWeight": "1260089" } }, { "key": "geid_107_5841", "source": "Australia", "target": "FederatedMalayStates", "attributes": { "weight": 112044, "sourceWeight": "112044", "direction": "Imp", "source_type": "secondary", "targetWeight": "112044" } }, { "key": "geid_107_5842", "source": "India", "target": "FederatedMalayStates", "attributes": { "weight": 704655, "sourceWeight": "704655", "direction": "Imp", "source_type": "secondary", "targetWeight": "704655" } }, { "key": "geid_107_5843", "source": "StraitsSettlements", "target": "FederatedMalayStates", "attributes": { "weight": 7829844, "sourceWeight": "7829844", "direction": "Imp", "source_type": "secondary", "targetWeight": "7829844" } }, { "key": "geid_107_5844", "source": "Johore_Kedah_Kelantan_Perlis_Trengganu", "target": "FederatedMalayStates", "attributes": { "weight": 348774, "sourceWeight": "348774", "direction": "Imp", "source_type": "secondary", "targetWeight": "348774" } }, { "key": "geid_107_5845", "source": "HongKong", "target": "FederatedMalayStates", "attributes": { "weight": 15535, "sourceWeight": "15535", "direction": "Imp", "source_type": "secondary", "targetWeight": "15535" } }, { "key": "geid_107_5846", "source": "BritishColoniesother", "target": "FederatedMalayStates", "attributes": { "weight": 16974, "sourceWeight": "16974", "direction": "Imp", "source_type": "secondary", "targetWeight": "16974" } }, { "key": "geid_107_5847", "source": "Netherlands", "target": "FederatedMalayStates", "attributes": { "weight": 51098, "sourceWeight": "51098", "direction": "Imp", "source_type": "secondary", "targetWeight": "51098" } }, { "key": "geid_107_5848", "source": "France", "target": "FederatedMalayStates", "attributes": { "weight": 62572, "sourceWeight": "62572", "direction": "Imp", "source_type": "secondary", "targetWeight": "62572" } }, { "key": "geid_107_5849", "source": "Sumatra", "target": "FederatedMalayStates", "attributes": { "weight": 550239, "sourceWeight": "550239", "direction": "Imp", "source_type": "secondary", "targetWeight": "550239" } }, { "key": "geid_107_5850", "source": "ThailandSiam", "target": "FederatedMalayStates", "attributes": { "weight": 61107, "sourceWeight": "61107", "direction": "Imp", "source_type": "secondary", "targetWeight": "61107" } }, { "key": "geid_107_5851", "source": "PeoplesRepublicofChinaChina", "target": "FederatedMalayStates", "attributes": { "weight": 82996, "sourceWeight": "82996", "direction": "Imp", "source_type": "secondary", "targetWeight": "82996" } }, { "key": "geid_107_5852", "source": "Japan", "target": "FederatedMalayStates", "attributes": { "weight": 12845, "sourceWeight": "12845", "direction": "Imp", "source_type": "secondary", "targetWeight": "12845" } }, { "key": "geid_107_5853", "source": "UnitedStatesofAmerica", "target": "FederatedMalayStates", "attributes": { "weight": 108583, "sourceWeight": "108583", "direction": "Imp", "source_type": "secondary", "targetWeight": "108583" } }, { "key": "geid_107_5854", "source": "Othercountries", "target": "FederatedMalayStates", "attributes": { "weight": 150214, "sourceWeight": "150214", "direction": "Imp", "source_type": "secondary", "targetWeight": "150214" } }, { "key": "geid_107_5855", "source": "FederatedMalayStates", "target": "UnitedKingdom", "attributes": { "weight": 2450139, "sourceWeight": "2450139", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5856", "source": "FederatedMalayStates", "target": "CanadaProvinceofCanada", "attributes": { "weight": 7041, "sourceWeight": "7041", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5857", "source": "FederatedMalayStates", "target": "StraitsSettlements", "attributes": { "weight": 18404361, "sourceWeight": "18404361", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5858", "source": "FederatedMalayStates", "target": "Johore_Kedah_Kelantan_Perlis_Trengganu", "attributes": { "weight": 75796, "sourceWeight": "75796", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5859", "source": "FederatedMalayStates", "target": "SriLankaCeylon", "attributes": { "weight": 97352, "sourceWeight": "97352", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5860", "source": "FederatedMalayStates", "target": "BritishColoniesother", "attributes": { "weight": 94987, "sourceWeight": "94987", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5861", "source": "FederatedMalayStates", "target": "Netherlands", "attributes": { "weight": 97988, "sourceWeight": "97988", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5862", "source": "FederatedMalayStates", "target": "France", "attributes": { "weight": 279325, "sourceWeight": "279325", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5863", "source": "FederatedMalayStates", "target": "Sumatra", "attributes": { "weight": 15710, "sourceWeight": "15710", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5864", "source": "FederatedMalayStates", "target": "UnitedStatesofAmerica", "attributes": { "weight": 3032578, "sourceWeight": "3032578", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5865", "source": "FederatedMalayStates", "target": "Othercountries", "attributes": { "weight": 281276, "sourceWeight": "281276", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_5866", "source": "UnitedStatesofAmerica", "target": "Iceland", "attributes": { "weight": 27161.611588954278, "sourceWeight": "27161.611588954278", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5867", "source": "CanadaProvinceofCanada", "target": "UnitedStatesofAmerica", "attributes": { "weight": 90345857.85423268, "sourceWeight": "90345857.85423268", "direction": "Imp", "source_type": "primary", "targetWeight": "90345857.85423268" } }, { "key": "geid_107_5868", "source": "NewfoundlandandLabradorNewfoundland", "target": "UnitedStatesofAmerica", "attributes": { "weight": 581484.8347668628, "sourceWeight": "581484.8347668628", "direction": "Imp", "source_type": "primary", "targetWeight": "581484.8347668628" } }, { "key": "geid_107_5869", "source": "StPierreandMiquelon", "target": "UnitedStatesofAmerica", "attributes": { "weight": 4300.588501584427, "sourceWeight": "4300.588501584427", "direction": "Imp", "source_type": "primary", "targetWeight": "4300.588501584427" } }, { "key": "geid_107_5870", "source": "Greenland", "target": "UnitedStatesofAmerica", "attributes": { "weight": 70393.84336803983, "sourceWeight": "70393.84336803983", "direction": "Imp", "source_type": "primary", "targetWeight": "70393.84336803983" } }, { "key": "geid_107_5871", "source": "Mexico", "target": "UnitedStatesofAmerica", "attributes": { "weight": 37819601.6296967, "sourceWeight": "37819601.6296967", "direction": "Imp", "source_type": "primary", "targetWeight": "37819601.6296967" } }, { "key": "geid_107_5872", "source": "BelizeBritishHonduras", "target": "UnitedStatesofAmerica", "attributes": { "weight": 487777.27478497056, "sourceWeight": "487777.27478497056", "direction": "Imp", "source_type": "primary", "targetWeight": "487777.27478497056" } }, { "key": "geid_107_5873", "source": "CostaRica", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1061339.9728383883, "sourceWeight": "1061339.9728383883", "direction": "Imp", "source_type": "primary", "targetWeight": "1061339.9728383883" } }, { "key": "geid_107_5874", "source": "Guatemala", "target": "UnitedStatesofAmerica", "attributes": { "weight": 2283612.494341331, "sourceWeight": "2283612.494341331", "direction": "Imp", "source_type": "primary", "targetWeight": "2283612.494341331" } }, { "key": "geid_107_5875", "source": "Honduras", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1349026.7089180625, "sourceWeight": "1349026.7089180625", "direction": "Imp", "source_type": "primary", "targetWeight": "1349026.7089180625" } }, { "key": "geid_107_5876", "source": "Nicaragua", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1234268.8999547306, "sourceWeight": "1234268.8999547306", "direction": "Imp", "source_type": "primary", "targetWeight": "1234268.8999547306" } }, { "key": "geid_107_5877", "source": "Panama", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1132639.2032593933, "sourceWeight": "1132639.2032593933", "direction": "Imp", "source_type": "primary", "targetWeight": "1132639.2032593933" } }, { "key": "geid_107_5878", "source": "ElSalvador", "target": "UnitedStatesofAmerica", "attributes": { "weight": 885468.5377999095, "sourceWeight": "885468.5377999095", "direction": "Imp", "source_type": "primary", "targetWeight": "885468.5377999095" } }, { "key": "geid_107_5879", "source": "Bermuda", "target": "UnitedStatesofAmerica", "attributes": { "weight": 270484.38207333634, "sourceWeight": "270484.38207333634", "direction": "Imp", "source_type": "primary", "targetWeight": "270484.38207333634" } }, { "key": "geid_107_5880", "source": "Barbados", "target": "UnitedStatesofAmerica", "attributes": { "weight": 46627.433227704845, "sourceWeight": "46627.433227704845", "direction": "Imp", "source_type": "primary", "targetWeight": "46627.433227704845" } }, { "key": "geid_107_5881", "source": "Jamaica", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1397464.9162516976, "sourceWeight": "1397464.9162516976", "direction": "Imp", "source_type": "primary", "targetWeight": "1397464.9162516976" } }, { "key": "geid_107_5882", "source": "TrinidadandTobago", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1100497.9628791308, "sourceWeight": "1100497.9628791308", "direction": "Imp", "source_type": "primary", "targetWeight": "1100497.9628791308" } }, { "key": "geid_107_5883", "source": "BritishWestIndiesother", "target": "UnitedStatesofAmerica", "attributes": { "weight": 647125.3961068357, "sourceWeight": "647125.3961068357", "direction": "Imp", "source_type": "primary", "targetWeight": "647125.3961068357" } }, { "key": "geid_107_5884", "source": "Cuba", "target": "UnitedStatesofAmerica", "attributes": { "weight": 81874377.54640108, "sourceWeight": "81874377.54640108", "direction": "Imp", "source_type": "primary", "targetWeight": "81874377.54640108" } }, { "key": "geid_107_5885", "source": "DominicanRepublicSantoDomingo", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1318469.895880489, "sourceWeight": "1318469.895880489", "direction": "Imp", "source_type": "primary", "targetWeight": "1318469.895880489" } }, { "key": "geid_107_5886", "source": "NetherlandsAntilles", "target": "UnitedStatesofAmerica", "attributes": { "weight": 937075.5998189226, "sourceWeight": "937075.5998189226", "direction": "Imp", "source_type": "primary", "targetWeight": "937075.5998189226" } }, { "key": "geid_107_5887", "source": "FrenchWestIndies", "target": "UnitedStatesofAmerica", "attributes": { "weight": 49343.59438660027, "sourceWeight": "49343.59438660027", "direction": "Imp", "source_type": "primary", "targetWeight": "49343.59438660027" } }, { "key": "geid_107_5888", "source": "Haiti", "target": "UnitedStatesofAmerica", "attributes": { "weight": 263920.32593933906, "sourceWeight": "263920.32593933906", "direction": "Imp", "source_type": "primary", "targetWeight": "263920.32593933906" } }, { "key": "geid_107_5889", "source": "VirginIslandsDanishWestIndies", "target": "UnitedStatesofAmerica", "attributes": { "weight": 89180.62471706654, "sourceWeight": "89180.62471706654", "direction": "Imp", "source_type": "primary", "targetWeight": "89180.62471706654" } }, { "key": "geid_107_5890", "source": "ColombiaNewGranadaGranColombia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 13066772.295156179, "sourceWeight": "13066772.295156179", "direction": "Imp", "source_type": "primary", "targetWeight": "13066772.295156179" } }, { "key": "geid_107_5891", "source": "GuyanaBritishGuiana", "target": "UnitedStatesofAmerica", "attributes": { "weight": 210728.83657763695, "sourceWeight": "210728.83657763695", "direction": "Imp", "source_type": "primary", "targetWeight": "210728.83657763695" } }, { "key": "geid_107_5892", "source": "SurinamDutchGuiana", "target": "UnitedStatesofAmerica", "attributes": { "weight": 138750.5658669081, "sourceWeight": "138750.5658669081", "direction": "Imp", "source_type": "primary", "targetWeight": "138750.5658669081" } }, { "key": "geid_107_5893", "source": "FrenchGuiana", "target": "UnitedStatesofAmerica", "attributes": { "weight": 34178.36124943413, "sourceWeight": "34178.36124943413", "direction": "Imp", "source_type": "primary", "targetWeight": "34178.36124943413" } }, { "key": "geid_107_5894", "source": "Venezuela", "target": "UnitedStatesofAmerica", "attributes": { "weight": 3726346.7632412855, "sourceWeight": "3726346.7632412855", "direction": "Imp", "source_type": "primary", "targetWeight": "3726346.7632412855" } }, { "key": "geid_107_5895", "source": "ArgentinaLaPlata", "target": "UnitedStatesofAmerica", "attributes": { "weight": 17043458.578542326, "sourceWeight": "17043458.578542326", "direction": "Imp", "source_type": "primary", "targetWeight": "17043458.578542326" } }, { "key": "geid_107_5896", "source": "FalklandIs", "target": "UnitedStatesofAmerica", "attributes": { "weight": 93028.5196921684, "sourceWeight": "93028.5196921684", "direction": "Imp", "source_type": "primary", "targetWeight": "93028.5196921684" } }, { "key": "geid_107_5897", "source": "Brazil", "target": "UnitedStatesofAmerica", "attributes": { "weight": 40592349.479402445, "sourceWeight": "40592349.479402445", "direction": "Imp", "source_type": "primary", "targetWeight": "40592349.479402445" } }, { "key": "geid_107_5898", "source": "Paraguay", "target": "UnitedStatesofAmerica", "attributes": { "weight": 25803.53100950656, "sourceWeight": "25803.53100950656", "direction": "Imp", "source_type": "primary", "targetWeight": "25803.53100950656" } }, { "key": "geid_107_5899", "source": "Uruguay", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1600271.6161158895, "sourceWeight": "1600271.6161158895", "direction": "Imp", "source_type": "primary", "targetWeight": "1600271.6161158895" } }, { "key": "geid_107_5900", "source": "Bolivia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 19013.128112267994, "sourceWeight": "19013.128112267994", "direction": "Imp", "source_type": "primary", "targetWeight": "19013.128112267994" } }, { "key": "geid_107_5901", "source": "Chile", "target": "UnitedStatesofAmerica", "attributes": { "weight": 22246265.27840652, "sourceWeight": "22246265.27840652", "direction": "Imp", "source_type": "primary", "targetWeight": "22246265.27840652" } }, { "key": "geid_107_5902", "source": "Ecuador", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1515844.27342689, "sourceWeight": "1515844.27342689", "direction": "Imp", "source_type": "primary", "targetWeight": "1515844.27342689" } }, { "key": "geid_107_5903", "source": "Peru", "target": "UnitedStatesofAmerica", "attributes": { "weight": 5181530.104119511, "sourceWeight": "5181530.104119511", "direction": "Imp", "source_type": "primary", "targetWeight": "5181530.104119511" } }, { "key": "geid_107_5904", "source": "Sweden", "target": "UnitedStatesofAmerica", "attributes": { "weight": 9060887.279311905, "sourceWeight": "9060887.279311905", "direction": "Imp", "source_type": "primary", "targetWeight": "9060887.279311905" } }, { "key": "geid_107_5905", "source": "Norway", "target": "UnitedStatesofAmerica", "attributes": { "weight": 4842009.959257582, "sourceWeight": "4842009.959257582", "direction": "Imp", "source_type": "primary", "targetWeight": "4842009.959257582" } }, { "key": "geid_107_5906", "source": "Denmark", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1396106.8356722498, "sourceWeight": "1396106.8356722498", "direction": "Imp", "source_type": "primary", "targetWeight": "1396106.8356722498" } }, { "key": "geid_107_5907", "source": "Iceland", "target": "UnitedStatesofAmerica", "attributes": { "weight": 7243.09642372114, "sourceWeight": "7243.09642372114", "direction": "Imp", "source_type": "primary", "targetWeight": "7243.09642372114" } }, { "key": "geid_107_5908", "source": "UnitedKingdom", "target": "UnitedStatesofAmerica", "attributes": { "weight": 82948392.93798098, "sourceWeight": "82948392.93798098", "direction": "Imp", "source_type": "primary", "targetWeight": "82948392.93798098" } }, { "key": "geid_107_5909", "source": "Belgium", "target": "UnitedStatesofAmerica", "attributes": { "weight": 14839067.451335445, "sourceWeight": "14839067.451335445", "direction": "Imp", "source_type": "primary", "targetWeight": "14839067.451335445" } }, { "key": "geid_107_5910", "source": "France", "target": "UnitedStatesofAmerica", "attributes": { "weight": 33416930.73789045, "sourceWeight": "33416930.73789045", "direction": "Imp", "source_type": "primary", "targetWeight": "33416930.73789045" } }, { "key": "geid_107_5911", "source": "Netherlands", "target": "UnitedStatesofAmerica", "attributes": { "weight": 16759619.737437755, "sourceWeight": "16759619.737437755", "direction": "Imp", "source_type": "primary", "targetWeight": "16759619.737437755" } }, { "key": "geid_107_5912", "source": "Austria", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1124264.3730194657, "sourceWeight": "1124264.3730194657", "direction": "Imp", "source_type": "primary", "targetWeight": "1124264.3730194657" } }, { "key": "geid_107_5913", "source": "Hungary", "target": "UnitedStatesofAmerica", "attributes": { "weight": 133091.89678587596, "sourceWeight": "133091.89678587596", "direction": "Imp", "source_type": "primary", "targetWeight": "133091.89678587596" } }, { "key": "geid_107_5914", "source": "Czechoslovakia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 5075373.4721593475, "sourceWeight": "5075373.4721593475", "direction": "Imp", "source_type": "primary", "targetWeight": "5075373.4721593475" } }, { "key": "geid_107_5915", "source": "GermanyZollverein", "target": "UnitedStatesofAmerica", "attributes": { "weight": 31520597.555454955, "sourceWeight": "31520597.555454955", "direction": "Imp", "source_type": "primary", "targetWeight": "31520597.555454955" } }, { "key": "geid_107_5916", "source": "Switzerland", "target": "UnitedStatesofAmerica", "attributes": { "weight": 8053870.529651426, "sourceWeight": "8053870.529651426", "direction": "Imp", "source_type": "primary", "targetWeight": "8053870.529651426" } }, { "key": "geid_107_5917", "source": "Estonia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 76731.55273879583, "sourceWeight": "76731.55273879583", "direction": "Imp", "source_type": "primary", "targetWeight": "76731.55273879583" } }, { "key": "geid_107_5918", "source": "Finland", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1867587.1435038478, "sourceWeight": "1867587.1435038478", "direction": "Imp", "source_type": "primary", "targetWeight": "1867587.1435038478" } }, { "key": "geid_107_5919", "source": "Latvia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1032820.2806699864, "sourceWeight": "1032820.2806699864", "direction": "Imp", "source_type": "primary", "targetWeight": "1032820.2806699864" } }, { "key": "geid_107_5920", "source": "Lithuania", "target": "UnitedStatesofAmerica", "attributes": { "weight": 71072.8836577637, "sourceWeight": "71072.8836577637", "direction": "Imp", "source_type": "primary", "targetWeight": "71072.8836577637" } }, { "key": "geid_107_5921", "source": "DanzigFreeCityofDanzig_Poland", "target": "UnitedStatesofAmerica", "attributes": { "weight": 644635.5817111816, "sourceWeight": "644635.5817111816", "direction": "Imp", "source_type": "primary", "targetWeight": "644635.5817111816" } }, { "key": "geid_107_5922", "source": "EuropeanRussia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1843368.0398370302, "sourceWeight": "1843368.0398370302", "direction": "Imp", "source_type": "primary", "targetWeight": "1843368.0398370302" } }, { "key": "geid_107_5923", "source": "AzoresWesternIsles_MadeiraIsles", "target": "UnitedStatesofAmerica", "attributes": { "weight": 670891.8062471707, "sourceWeight": "670891.8062471707", "direction": "Imp", "source_type": "primary", "targetWeight": "670891.8062471707" } }, { "key": "geid_107_5924", "source": "Gibraltar", "target": "UnitedStatesofAmerica", "attributes": { "weight": 2263.4676324128563, "sourceWeight": "2263.4676324128563", "direction": "Imp", "source_type": "primary", "targetWeight": "2263.4676324128563" } }, { "key": "geid_107_5925", "source": "Italy", "target": "UnitedStatesofAmerica", "attributes": { "weight": 16978497.057492077, "sourceWeight": "16978497.057492077", "direction": "Imp", "source_type": "primary", "targetWeight": "16978497.057492077" } }, { "key": "geid_107_5926", "source": "Portugal", "target": "UnitedStatesofAmerica", "attributes": { "weight": 688320.5070167496, "sourceWeight": "688320.5070167496", "direction": "Imp", "source_type": "primary", "targetWeight": "688320.5070167496" } }, { "key": "geid_107_5927", "source": "Spain", "target": "UnitedStatesofAmerica", "attributes": { "weight": 6562245.359891353, "sourceWeight": "6562245.359891353", "direction": "Imp", "source_type": "primary", "targetWeight": "6562245.359891353" } }, { "key": "geid_107_5928", "source": "Bulgaria", "target": "UnitedStatesofAmerica", "attributes": { "weight": 349479.402444545, "sourceWeight": "349479.402444545", "direction": "Imp", "source_type": "primary", "targetWeight": "349479.402444545" } }, { "key": "geid_107_5929", "source": "Greece", "target": "UnitedStatesofAmerica", "attributes": { "weight": 6276369.39791761, "sourceWeight": "6276369.39791761", "direction": "Imp", "source_type": "primary", "targetWeight": "6276369.39791761" } }, { "key": "geid_107_5930", "source": "Cyprus_Gozo_Malta", "target": "UnitedStatesofAmerica", "attributes": { "weight": 26708.918062471705, "sourceWeight": "26708.918062471705", "direction": "Imp", "source_type": "primary", "targetWeight": "26708.918062471705" } }, { "key": "geid_107_5931", "source": "Romania", "target": "UnitedStatesofAmerica", "attributes": { "weight": 22408.32956088728, "sourceWeight": "22408.32956088728", "direction": "Imp", "source_type": "primary", "targetWeight": "22408.32956088728" } }, { "key": "geid_107_5932", "source": "EuropeanTurkey", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1649615.2105024897, "sourceWeight": "1649615.2105024897", "direction": "Imp", "source_type": "primary", "targetWeight": "1649615.2105024897" } }, { "key": "geid_107_5933", "source": "Albania_YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "UnitedStatesofAmerica", "attributes": { "weight": 155273.87958352195, "sourceWeight": "155273.87958352195", "direction": "Imp", "source_type": "primary", "targetWeight": "155273.87958352195" } }, { "key": "geid_107_5934", "source": "Aden", "target": "UnitedStatesofAmerica", "attributes": { "weight": 494794.0244454504, "sourceWeight": "494794.0244454504", "direction": "Imp", "source_type": "primary", "targetWeight": "494794.0244454504" } }, { "key": "geid_107_5935", "source": "Arabia_HejazSultanate_IraqMesopotamia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 880941.6025350838, "sourceWeight": "880941.6025350838", "direction": "Imp", "source_type": "primary", "targetWeight": "880941.6025350838" } }, { "key": "geid_107_5936", "source": "Palestine_Syria", "target": "UnitedStatesofAmerica", "attributes": { "weight": 785423.2684472612, "sourceWeight": "785423.2684472612", "direction": "Imp", "source_type": "primary", "targetWeight": "785423.2684472612" } }, { "key": "geid_107_5937", "source": "IranPersia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1234947.9402444544, "sourceWeight": "1234947.9402444544", "direction": "Imp", "source_type": "primary", "targetWeight": "1234947.9402444544" } }, { "key": "geid_107_5938", "source": "AsianTurkey", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1659800.8148483476, "sourceWeight": "1659800.8148483476", "direction": "Imp", "source_type": "primary", "targetWeight": "1659800.8148483476" } }, { "key": "geid_107_5939", "source": "India", "target": "UnitedStatesofAmerica", "attributes": { "weight": 23376414.667270258, "sourceWeight": "23376414.667270258", "direction": "Imp", "source_type": "primary", "targetWeight": "23376414.667270258" } }, { "key": "geid_107_5940", "source": "SriLankaCeylon", "target": "UnitedStatesofAmerica", "attributes": { "weight": 5732231.779085559, "sourceWeight": "5732231.779085559", "direction": "Imp", "source_type": "primary", "targetWeight": "5732231.779085559" } }, { "key": "geid_107_5941", "source": "StraitsSettlements", "target": "UnitedStatesofAmerica", "attributes": { "weight": 33416478.044363964, "sourceWeight": "33416478.044363964", "direction": "Imp", "source_type": "primary", "targetWeight": "33416478.044363964" } }, { "key": "geid_107_5942", "source": "BritishEastIndiesother", "target": "UnitedStatesofAmerica", "attributes": { "weight": 11770.031688546853, "sourceWeight": "11770.031688546853", "direction": "Imp", "source_type": "primary", "targetWeight": "11770.031688546853" } }, { "key": "geid_107_5943", "source": "Java_Madura", "target": "UnitedStatesofAmerica", "attributes": { "weight": 8592802.172928927, "sourceWeight": "8592802.172928927", "direction": "Imp", "source_type": "primary", "targetWeight": "8592802.172928927" } }, { "key": "geid_107_5944", "source": "IndonesiaDutchEastIndiesother", "target": "UnitedStatesofAmerica", "attributes": { "weight": 4426663.648709823, "sourceWeight": "4426663.648709823", "direction": "Imp", "source_type": "primary", "targetWeight": "4426663.648709823" } }, { "key": "geid_107_5945", "source": "FrenchIndochina", "target": "UnitedStatesofAmerica", "attributes": { "weight": 38705.29651425985, "sourceWeight": "38705.29651425985", "direction": "Imp", "source_type": "primary", "targetWeight": "38705.29651425985" } }, { "key": "geid_107_5946", "source": "Philippines", "target": "UnitedStatesofAmerica", "attributes": { "weight": 21975554.549569942, "sourceWeight": "21975554.549569942", "direction": "Imp", "source_type": "primary", "targetWeight": "21975554.549569942" } }, { "key": "geid_107_5947", "source": "ThailandSiam", "target": "UnitedStatesofAmerica", "attributes": { "weight": 69488.4563150747, "sourceWeight": "69488.4563150747", "direction": "Imp", "source_type": "primary", "targetWeight": "69488.4563150747" } }, { "key": "geid_107_5948", "source": "Asiaother", "target": "UnitedStatesofAmerica", "attributes": { "weight": 13354.459031235852, "sourceWeight": "13354.459031235852", "direction": "Imp", "source_type": "primary", "targetWeight": "13354.459031235852" } }, { "key": "geid_107_5949", "source": "PeoplesRepublicofChinaChina", "target": "UnitedStatesofAmerica", "attributes": { "weight": 26683567.22498868, "sourceWeight": "26683567.22498868", "direction": "Imp", "source_type": "primary", "targetWeight": "26683567.22498868" } }, { "key": "geid_107_5950", "source": "HongKong", "target": "UnitedStatesofAmerica", "attributes": { "weight": 3732458.1258488004, "sourceWeight": "3732458.1258488004", "direction": "Imp", "source_type": "primary", "targetWeight": "3732458.1258488004" } }, { "key": "geid_107_5951", "source": "KwangtungTerritoryLeased", "target": "UnitedStatesofAmerica", "attributes": { "weight": 552738.7958352196, "sourceWeight": "552738.7958352196", "direction": "Imp", "source_type": "primary", "targetWeight": "552738.7958352196" } }, { "key": "geid_107_5952", "source": "Japan", "target": "UnitedStatesofAmerica", "attributes": { "weight": 76971706.65459484, "sourceWeight": "76971706.65459484", "direction": "Imp", "source_type": "primary", "targetWeight": "76971706.65459484" } }, { "key": "geid_107_5953", "source": "KoreaChosen", "target": "UnitedStatesofAmerica", "attributes": { "weight": 7695.789950203712, "sourceWeight": "7695.789950203712", "direction": "Imp", "source_type": "primary", "targetWeight": "7695.789950203712" } }, { "key": "geid_107_5954", "source": "AsianRussia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 5432.322317790856, "sourceWeight": "5432.322317790856", "direction": "Imp", "source_type": "primary", "targetWeight": "5432.322317790856" } }, { "key": "geid_107_5955", "source": "Australia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 7439565.414214577, "sourceWeight": "7439565.414214577", "direction": "Imp", "source_type": "primary", "targetWeight": "7439565.414214577" } }, { "key": "geid_107_5956", "source": "NewZealand", "target": "UnitedStatesofAmerica", "attributes": { "weight": 3061339.9728383883, "sourceWeight": "3061339.9728383883", "direction": "Imp", "source_type": "primary", "targetWeight": "3061339.9728383883" } }, { "key": "geid_107_5957", "source": "BritishOceania", "target": "UnitedStatesofAmerica", "attributes": { "weight": 146899.04934359438, "sourceWeight": "146899.04934359438", "direction": "Imp", "source_type": "primary", "targetWeight": "146899.04934359438" } }, { "key": "geid_107_5958", "source": "FrenchPolynesia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 397464.9162516976, "sourceWeight": "397464.9162516976", "direction": "Imp", "source_type": "primary", "targetWeight": "397464.9162516976" } }, { "key": "geid_107_5959", "source": "Oceaniaother", "target": "UnitedStatesofAmerica", "attributes": { "weight": 33272.97419646899, "sourceWeight": "33272.97419646899", "direction": "Imp", "source_type": "primary", "targetWeight": "33272.97419646899" } }, { "key": "geid_107_5960", "source": "AlgeriaRegencyofAlgiers_TunisiaRegencyofTunis", "target": "UnitedStatesofAmerica", "attributes": { "weight": 442960.615663196, "sourceWeight": "442960.615663196", "direction": "Imp", "source_type": "primary", "targetWeight": "442960.615663196" } }, { "key": "geid_107_5961", "source": "CanaryIs", "target": "UnitedStatesofAmerica", "attributes": { "weight": 43684.925305568126, "sourceWeight": "43684.925305568126", "direction": "Imp", "source_type": "primary", "targetWeight": "43684.925305568126" } }, { "key": "geid_107_5962", "source": "EgyptArabRepublicEgypt", "target": "UnitedStatesofAmerica", "attributes": { "weight": 6811905.839746491, "sourceWeight": "6811905.839746491", "direction": "Imp", "source_type": "primary", "targetWeight": "6811905.839746491" } }, { "key": "geid_107_5963", "source": "ItalianAfrica", "target": "UnitedStatesofAmerica", "attributes": { "weight": 226.34676324128563, "sourceWeight": "226.34676324128563", "direction": "Imp", "source_type": "primary", "targetWeight": "226.34676324128563" } }, { "key": "geid_107_5964", "source": "Morocco", "target": "UnitedStatesofAmerica", "attributes": { "weight": 105251.24490719782, "sourceWeight": "105251.24490719782", "direction": "Imp", "source_type": "primary", "targetWeight": "105251.24490719782" } }, { "key": "geid_107_5965", "source": "EthiopiaAbyssinia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 452.69352648257126, "sourceWeight": "452.69352648257126", "direction": "Imp", "source_type": "primary", "targetWeight": "452.69352648257126" } }, { "key": "geid_107_5966", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "UnitedStatesofAmerica", "attributes": { "weight": 268447.26120416477, "sourceWeight": "268447.26120416477", "direction": "Imp", "source_type": "primary", "targetWeight": "268447.26120416477" } }, { "key": "geid_107_5967", "source": "BritishWestAfrica", "target": "UnitedStatesofAmerica", "attributes": { "weight": 2760525.1244907198, "sourceWeight": "2760525.1244907198", "direction": "Imp", "source_type": "primary", "targetWeight": "2760525.1244907198" } }, { "key": "geid_107_5968", "source": "BritishSouthAfrica", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1748981.439565414, "sourceWeight": "1748981.439565414", "direction": "Imp", "source_type": "primary", "targetWeight": "1748981.439565414" } }, { "key": "geid_107_5969", "source": "BritishEastAfrica", "target": "UnitedStatesofAmerica", "attributes": { "weight": 375056.58669081033, "sourceWeight": "375056.58669081033", "direction": "Imp", "source_type": "primary", "targetWeight": "375056.58669081033" } }, { "key": "geid_107_5970", "source": "Liberia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1131.7338162064282, "sourceWeight": "1131.7338162064282", "direction": "Imp", "source_type": "primary", "targetWeight": "1131.7338162064282" } }, { "key": "geid_107_5971", "source": "MadagascarMalagasyRepublic", "target": "UnitedStatesofAmerica", "attributes": { "weight": 52286.10230873698, "sourceWeight": "52286.10230873698", "direction": "Imp", "source_type": "primary", "targetWeight": "52286.10230873698" } }, { "key": "geid_107_5972", "source": "FrenchAfricaother", "target": "UnitedStatesofAmerica", "attributes": { "weight": 210276.14305115436, "sourceWeight": "210276.14305115436", "direction": "Imp", "source_type": "primary", "targetWeight": "210276.14305115436" } }, { "key": "geid_107_5973", "source": "MozambiquePortugueseEastAfrica", "target": "UnitedStatesofAmerica", "attributes": { "weight": 435491.17247623357, "sourceWeight": "435491.17247623357", "direction": "Imp", "source_type": "primary", "targetWeight": "435491.17247623357" } }, { "key": "geid_107_5974", "source": "PortugueseAfricaother", "target": "UnitedStatesofAmerica", "attributes": { "weight": 2585785.423268447, "sourceWeight": "2585785.423268447", "direction": "Imp", "source_type": "primary", "targetWeight": "2585785.423268447" } }, { "key": "geid_107_5975", "source": "UnitedStatesofAmerica", "target": "CanadaProvinceofCanada", "attributes": { "weight": 134017428.70076957, "sourceWeight": "134017428.70076957", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5976", "source": "UnitedStatesofAmerica", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 2159574.4680851065, "sourceWeight": "2159574.4680851065", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5977", "source": "UnitedStatesofAmerica", "target": "StPierreandMiquelon", "attributes": { "weight": 32820.280669986416, "sourceWeight": "32820.280669986416", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5978", "source": "UnitedStatesofAmerica", "target": "Mexico", "attributes": { "weight": 29320733.3635129, "sourceWeight": "29320733.3635129", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5979", "source": "UnitedStatesofAmerica", "target": "BelizeBritishHonduras", "attributes": { "weight": 413082.8429153463, "sourceWeight": "413082.8429153463", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5980", "source": "UnitedStatesofAmerica", "target": "CostaRica", "attributes": { "weight": 1337709.3707559982, "sourceWeight": "1337709.3707559982", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5981", "source": "UnitedStatesofAmerica", "target": "Guatemala", "attributes": { "weight": 1982344.9524671796, "sourceWeight": "1982344.9524671796", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5982", "source": "UnitedStatesofAmerica", "target": "Honduras", "attributes": { "weight": 2042779.538252603, "sourceWeight": "2042779.538252603", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5983", "source": "UnitedStatesofAmerica", "target": "Nicaragua", "attributes": { "weight": 1388411.0457220462, "sourceWeight": "1388411.0457220462", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5984", "source": "UnitedStatesofAmerica", "target": "Panama", "attributes": { "weight": 5930737.890448166, "sourceWeight": "5930737.890448166", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5985", "source": "UnitedStatesofAmerica", "target": "ElSalvador", "attributes": { "weight": 1459483.9293798099, "sourceWeight": "1459483.9293798099", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5986", "source": "UnitedStatesofAmerica", "target": "Bermuda", "attributes": { "weight": 771616.1158895427, "sourceWeight": "771616.1158895427", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5987", "source": "UnitedStatesofAmerica", "target": "Barbados", "attributes": { "weight": 360117.7003168854, "sourceWeight": "360117.7003168854", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5988", "source": "UnitedStatesofAmerica", "target": "Jamaica", "attributes": { "weight": 1626754.18741512, "sourceWeight": "1626754.18741512", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5989", "source": "UnitedStatesofAmerica", "target": "TrinidadandTobago", "attributes": { "weight": 861702.1276595744, "sourceWeight": "861702.1276595744", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5990", "source": "UnitedStatesofAmerica", "target": "BritishWestIndiesother", "attributes": { "weight": 1140787.6867360796, "sourceWeight": "1140787.6867360796", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5991", "source": "UnitedStatesofAmerica", "target": "Cuba", "attributes": { "weight": 43790629.244001806, "sourceWeight": "43790629.244001806", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5992", "source": "UnitedStatesofAmerica", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 3467632.412856496, "sourceWeight": "3467632.412856496", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5993", "source": "UnitedStatesofAmerica", "target": "NetherlandsAntilles", "attributes": { "weight": 835219.556360344, "sourceWeight": "835219.556360344", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5994", "source": "UnitedStatesofAmerica", "target": "FrenchWestIndies", "attributes": { "weight": 565866.9081032141, "sourceWeight": "565866.9081032141", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5995", "source": "UnitedStatesofAmerica", "target": "Haiti", "attributes": { "weight": 2498189.2258940698, "sourceWeight": "2498189.2258940698", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5996", "source": "UnitedStatesofAmerica", "target": "VirginIslandsDanishWestIndies", "attributes": { "weight": 372793.1190583974, "sourceWeight": "372793.1190583974", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5997", "source": "UnitedStatesofAmerica", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 6171344.499773653, "sourceWeight": "6171344.499773653", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5998", "source": "UnitedStatesofAmerica", "target": "GuyanaBritishGuiana", "attributes": { "weight": 349932.0959710276, "sourceWeight": "349932.0959710276", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_5999", "source": "UnitedStatesofAmerica", "target": "SurinamDutchGuiana", "attributes": { "weight": 177682.20914440922, "sourceWeight": "177682.20914440922", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6000", "source": "UnitedStatesofAmerica", "target": "FrenchGuiana", "attributes": { "weight": 54549.56994114984, "sourceWeight": "54549.56994114984", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6001", "source": "UnitedStatesofAmerica", "target": "Venezuela", "attributes": { "weight": 3952014.486192847, "sourceWeight": "3952014.486192847", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6002", "source": "UnitedStatesofAmerica", "target": "ArgentinaLaPlata", "attributes": { "weight": 26370529.651425984, "sourceWeight": "26370529.651425984", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6003", "source": "UnitedStatesofAmerica", "target": "FalklandIs", "attributes": { "weight": 3621.54821186057, "sourceWeight": "3621.54821186057", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6004", "source": "UnitedStatesofAmerica", "target": "Brazil", "attributes": { "weight": 14640561.339972839, "sourceWeight": "14640561.339972839", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6005", "source": "UnitedStatesofAmerica", "target": "Paraguay", "attributes": { "weight": 185604.34585785423, "sourceWeight": "185604.34585785423", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6006", "source": "UnitedStatesofAmerica", "target": "Uruguay", "attributes": { "weight": 4104119.511090991, "sourceWeight": "4104119.511090991", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6007", "source": "UnitedStatesofAmerica", "target": "Bolivia", "attributes": { "weight": 928248.0760525124, "sourceWeight": "928248.0760525124", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6008", "source": "UnitedStatesofAmerica", "target": "Chile", "attributes": { "weight": 7076505.205975554, "sourceWeight": "7076505.205975554", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6009", "source": "UnitedStatesofAmerica", "target": "Ecuador", "attributes": { "weight": 1246944.3186962425, "sourceWeight": "1246944.3186962425", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6010", "source": "UnitedStatesofAmerica", "target": "Peru", "attributes": { "weight": 5371435.038478949, "sourceWeight": "5371435.038478949", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6011", "source": "UnitedStatesofAmerica", "target": "Sweden", "attributes": { "weight": 9507243.096423721, "sourceWeight": "9507243.096423721", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6012", "source": "UnitedStatesofAmerica", "target": "Norway", "attributes": { "weight": 5235626.980534178, "sourceWeight": "5235626.980534178", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6013", "source": "UnitedStatesofAmerica", "target": "Denmark", "attributes": { "weight": 9790176.550475327, "sourceWeight": "9790176.550475327", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6014", "source": "UnitedStatesofAmerica", "target": "FaeroeIs_Iceland", "attributes": { "weight": 27161.611588954278, "sourceWeight": "27161.611588954278", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6015", "source": "UnitedStatesofAmerica", "target": "UnitedKingdom", "attributes": { "weight": 218005432.32231778, "sourceWeight": "218005432.32231778", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6016", "source": "UnitedStatesofAmerica", "target": "Belgium", "attributes": { "weight": 25811679.492983248, "sourceWeight": "25811679.492983248", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6017", "source": "UnitedStatesofAmerica", "target": "France", "attributes": { "weight": 62685604.34585785, "sourceWeight": "62685604.34585785", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6018", "source": "UnitedStatesofAmerica", "target": "Netherlands", "attributes": { "weight": 33750339.52014486, "sourceWeight": "33750339.52014486", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6019", "source": "UnitedStatesofAmerica", "target": "Austria", "attributes": { "weight": 712313.2639203259, "sourceWeight": "712313.2639203259", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6020", "source": "UnitedStatesofAmerica", "target": "Hungary", "attributes": { "weight": 435491.17247623357, "sourceWeight": "435491.17247623357", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6021", "source": "UnitedStatesofAmerica", "target": "Czechoslovakia", "attributes": { "weight": 83069.26210955183, "sourceWeight": "83069.26210955183", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6022", "source": "UnitedStatesofAmerica", "target": "GermanyZollverein", "attributes": { "weight": 97485513.80715255, "sourceWeight": "97485513.80715255", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6023", "source": "UnitedStatesofAmerica", "target": "Switzerland", "attributes": { "weight": 1744001.8107741058, "sourceWeight": "1744001.8107741058", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6024", "source": "UnitedStatesofAmerica", "target": "Estonia", "attributes": { "weight": 312584.8800362155, "sourceWeight": "312584.8800362155", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6025", "source": "UnitedStatesofAmerica", "target": "Finland", "attributes": { "weight": 2117926.6636487097, "sourceWeight": "2117926.6636487097", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6026", "source": "UnitedStatesofAmerica", "target": "Latvia", "attributes": { "weight": 248981.4395654142, "sourceWeight": "248981.4395654142", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6027", "source": "UnitedStatesofAmerica", "target": "Lithuania", "attributes": { "weight": 23087.369850611136, "sourceWeight": "23087.369850611136", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6028", "source": "UnitedStatesofAmerica", "target": "DanzigFreeCityofDanzig_Poland", "attributes": { "weight": 1025803.5310095066, "sourceWeight": "1025803.5310095066", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6029", "source": "UnitedStatesofAmerica", "target": "EuropeanRussia", "attributes": { "weight": 9121095.518334087, "sourceWeight": "9121095.518334087", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6030", "source": "UnitedStatesofAmerica", "target": "Ukraine", "attributes": { "weight": 229515.61792666363, "sourceWeight": "229515.61792666363", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6031", "source": "UnitedStatesofAmerica", "target": "AzoresWesternIsles_MadeiraIsles", "attributes": { "weight": 200316.8854685378, "sourceWeight": "200316.8854685378", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6032", "source": "UnitedStatesofAmerica", "target": "Gibraltar", "attributes": { "weight": 205296.51425984607, "sourceWeight": "205296.51425984607", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6033", "source": "UnitedStatesofAmerica", "target": "Italy", "attributes": { "weight": 41876188.32050701, "sourceWeight": "41876188.32050701", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6034", "source": "UnitedStatesofAmerica", "target": "Portugal", "attributes": { "weight": 1829787.2340425532, "sourceWeight": "1829787.2340425532", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6035", "source": "UnitedStatesofAmerica", "target": "Spain", "attributes": { "weight": 15987550.928021729, "sourceWeight": "15987550.928021729", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6036", "source": "UnitedStatesofAmerica", "target": "Bulgaria", "attributes": { "weight": 73110.00452693526, "sourceWeight": "73110.00452693526", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6037", "source": "UnitedStatesofAmerica", "target": "Greece", "attributes": { "weight": 3739701.2222725214, "sourceWeight": "3739701.2222725214", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6038", "source": "UnitedStatesofAmerica", "target": "Cyprus_Gozo_Malta", "attributes": { "weight": 284970.5749207786, "sourceWeight": "284970.5749207786", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6039", "source": "UnitedStatesofAmerica", "target": "Romania", "attributes": { "weight": 269805.3417836125, "sourceWeight": "269805.3417836125", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6040", "source": "UnitedStatesofAmerica", "target": "EuropeanTurkey", "attributes": { "weight": 649841.557265731, "sourceWeight": "649841.557265731", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6041", "source": "UnitedStatesofAmerica", "target": "Albania_YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 108872.79311905839, "sourceWeight": "108872.79311905839", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6042", "source": "UnitedStatesofAmerica", "target": "Aden", "attributes": { "weight": 106609.32548664554, "sourceWeight": "106609.32548664554", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6043", "source": "UnitedStatesofAmerica", "target": "Arabia_HejazSultanate_IraqMesopotamia", "attributes": { "weight": 76731.55273879583, "sourceWeight": "76731.55273879583", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6044", "source": "UnitedStatesofAmerica", "target": "Palestine_Syria", "attributes": { "weight": 697827.0710728837, "sourceWeight": "697827.0710728837", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6045", "source": "UnitedStatesofAmerica", "target": "IranPersia", "attributes": { "weight": 200543.23223177908, "sourceWeight": "200543.23223177908", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6046", "source": "UnitedStatesofAmerica", "target": "AsianTurkey", "attributes": { "weight": 100497.96287913082, "sourceWeight": "100497.96287913082", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6047", "source": "UnitedStatesofAmerica", "target": "India", "attributes": { "weight": 7868718.877320054, "sourceWeight": "7868718.877320054", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6048", "source": "UnitedStatesofAmerica", "target": "SriLankaCeylon", "attributes": { "weight": 356496.1521050249, "sourceWeight": "356496.1521050249", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6049", "source": "UnitedStatesofAmerica", "target": "StraitsSettlements", "attributes": { "weight": 1698732.4581258488, "sourceWeight": "1698732.4581258488", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6050", "source": "UnitedStatesofAmerica", "target": "BritishEastIndiesother", "attributes": { "weight": 66093.2548664554, "sourceWeight": "66093.2548664554", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6051", "source": "UnitedStatesofAmerica", "target": "Java_Madura", "attributes": { "weight": 2155726.5731100044, "sourceWeight": "2155726.5731100044", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6052", "source": "UnitedStatesofAmerica", "target": "IndonesiaDutchEastIndiesother", "attributes": { "weight": 1120416.478044364, "sourceWeight": "1120416.478044364", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6053", "source": "UnitedStatesofAmerica", "target": "FrenchIndochina", "attributes": { "weight": 178134.9026708918, "sourceWeight": "178134.9026708918", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6054", "source": "UnitedStatesofAmerica", "target": "Philippines", "attributes": { "weight": 13435038.47894975, "sourceWeight": "13435038.47894975", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6055", "source": "UnitedStatesofAmerica", "target": "ThailandSiam", "attributes": { "weight": 209370.7559981892, "sourceWeight": "209370.7559981892", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6056", "source": "UnitedStatesofAmerica", "target": "Asiaother", "attributes": { "weight": 2489.814395654142, "sourceWeight": "2489.814395654142", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6057", "source": "UnitedStatesofAmerica", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 24667496.60479855, "sourceWeight": "24667496.60479855", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6058", "source": "UnitedStatesofAmerica", "target": "HongKong", "attributes": { "weight": 3933680.398370303, "sourceWeight": "3933680.398370303", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6059", "source": "UnitedStatesofAmerica", "target": "KwangtungTerritoryLeased", "attributes": { "weight": 1945450.4300588502, "sourceWeight": "1945450.4300588502", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6060", "source": "UnitedStatesofAmerica", "target": "Japan", "attributes": { "weight": 56538931.643277496, "sourceWeight": "56538931.643277496", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6061", "source": "UnitedStatesofAmerica", "target": "KoreaChosen", "attributes": { "weight": 611588.9542779538, "sourceWeight": "611588.9542779538", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6062", "source": "UnitedStatesofAmerica", "target": "AsianRussia", "attributes": { "weight": 143277.50113173382, "sourceWeight": "143277.50113173382", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6063", "source": "UnitedStatesofAmerica", "target": "Australia", "attributes": { "weight": 28286781.34902671, "sourceWeight": "28286781.34902671", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6064", "source": "UnitedStatesofAmerica", "target": "NewZealand", "attributes": { "weight": 6605930.285196922, "sourceWeight": "6605930.285196922", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6065", "source": "UnitedStatesofAmerica", "target": "BritishOceania", "attributes": { "weight": 130149.38886373924, "sourceWeight": "130149.38886373924", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6066", "source": "UnitedStatesofAmerica", "target": "FrenchPolynesia", "attributes": { "weight": 263241.2856496152, "sourceWeight": "263241.2856496152", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6067", "source": "UnitedStatesofAmerica", "target": "Oceaniaother", "attributes": { "weight": 50701.67496604798, "sourceWeight": "50701.67496604798", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6068", "source": "UnitedStatesofAmerica", "target": "AlgeriaRegencyofAlgiers_TunisiaRegencyofTunis", "attributes": { "weight": 1249886.8266183792, "sourceWeight": "1249886.8266183792", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6069", "source": "UnitedStatesofAmerica", "target": "CanaryIs", "attributes": { "weight": 452240.8329560887, "sourceWeight": "452240.8329560887", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6070", "source": "UnitedStatesofAmerica", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1325033.952014486, "sourceWeight": "1325033.952014486", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6071", "source": "UnitedStatesofAmerica", "target": "ItalianAfrica", "attributes": { "weight": 7016.749660479855, "sourceWeight": "7016.749660479855", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6072", "source": "UnitedStatesofAmerica", "target": "Morocco", "attributes": { "weight": 355364.41828881844, "sourceWeight": "355364.41828881844", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6073", "source": "UnitedStatesofAmerica", "target": "SpanishAfrica", "attributes": { "weight": 136260.75147125396, "sourceWeight": "136260.75147125396", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6074", "source": "UnitedStatesofAmerica", "target": "EthiopiaAbyssinia", "attributes": { "weight": 4753.2820280669985, "sourceWeight": "4753.2820280669985", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6075", "source": "UnitedStatesofAmerica", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 108646.44635581711, "sourceWeight": "108646.44635581711", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6076", "source": "UnitedStatesofAmerica", "target": "BritishWestAfrica", "attributes": { "weight": 1812132.1865097329, "sourceWeight": "1812132.1865097329", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6077", "source": "UnitedStatesofAmerica", "target": "BritishSouthAfrica", "attributes": { "weight": 8148709.823449524, "sourceWeight": "8148709.823449524", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6078", "source": "UnitedStatesofAmerica", "target": "BritishEastAfrica", "attributes": { "weight": 577410.5930285197, "sourceWeight": "577410.5930285197", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6079", "source": "UnitedStatesofAmerica", "target": "Liberia", "attributes": { "weight": 46853.779990946125, "sourceWeight": "46853.779990946125", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6080", "source": "UnitedStatesofAmerica", "target": "MadagascarMalagasyRepublic", "attributes": { "weight": 31462.200090538703, "sourceWeight": "31462.200090538703", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6081", "source": "UnitedStatesofAmerica", "target": "FrenchAfricaother", "attributes": { "weight": 588275.2376641014, "sourceWeight": "588275.2376641014", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6082", "source": "UnitedStatesofAmerica", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 890674.513354459, "sourceWeight": "890674.513354459", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6083", "source": "UnitedStatesofAmerica", "target": "PortugueseAfricaother", "attributes": { "weight": 157537.3472159348, "sourceWeight": "157537.3472159348", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6084", "source": "Sweden", "target": "Denmark", "attributes": { "weight": 4980020.374677701, "sourceWeight": "4980020.374677701", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6085", "source": "Sweden", "target": "FaeroeIs", "attributes": { "weight": 1551.8412337798934, "sourceWeight": "1551.8412337798934", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6086", "source": "Sweden", "target": "Finland", "attributes": { "weight": 1635289.0619834957, "sourceWeight": "1635289.0619834957", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6087", "source": "Sweden", "target": "Iceland", "attributes": { "weight": 28771.208597032146, "sourceWeight": "28771.208597032146", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6088", "source": "Sweden", "target": "Norway", "attributes": { "weight": 3299927.757042486, "sourceWeight": "3299927.757042486", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6089", "source": "Sweden", "target": "Belgium", "attributes": { "weight": 2515873.136077604, "sourceWeight": "2515873.136077604", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6090", "source": "Sweden", "target": "Bulgaria", "attributes": { "weight": 12546.774610386878, "sourceWeight": "12546.774610386878", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6091", "source": "Sweden", "target": "Ireland", "attributes": { "weight": 333785.84350564657, "sourceWeight": "333785.84350564657", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6092", "source": "Sweden", "target": "France", "attributes": { "weight": 5568304.033464957, "sourceWeight": "5568304.033464957", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6093", "source": "Sweden", "target": "Greece", "attributes": { "weight": 284500.7602940204, "sourceWeight": "284500.7602940204", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6094", "source": "Sweden", "target": "Crete", "attributes": { "weight": 118.40151938599496, "sourceWeight": "118.40151938599496", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6095", "source": "Sweden", "target": "Italy", "attributes": { "weight": 729855.2736757961, "sourceWeight": "729855.2736757961", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6096", "source": "Sweden", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 21301.515178834376, "sourceWeight": "21301.515178834376", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6097", "source": "Sweden", "target": "Luxemburg", "attributes": { "weight": 3838.072399223478, "sourceWeight": "3838.072399223478", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6098", "source": "Sweden", "target": "Netherlands", "attributes": { "weight": 2875935.341952002, "sourceWeight": "2875935.341952002", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6099", "source": "Sweden", "target": "Poland", "attributes": { "weight": 394232.70406231406, "sourceWeight": "394232.70406231406", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6100", "source": "Sweden", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 82653.33597783427, "sourceWeight": "82653.33597783427", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6101", "source": "Sweden", "target": "Portugal", "attributes": { "weight": 103433.70416448795, "sourceWeight": "103433.70416448795", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6102", "source": "Sweden", "target": "Gibraltar", "attributes": { "weight": 4000.288491011702, "sourceWeight": "4000.288491011702", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6103", "source": "Sweden", "target": "Malta", "attributes": { "weight": 545.4283189989361, "sourceWeight": "545.4283189989361", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6104", "source": "Sweden", "target": "Estonia", "attributes": { "weight": 207806.80718583026, "sourceWeight": "207806.80718583026", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6105", "source": "Sweden", "target": "Latvia", "attributes": { "weight": 334753.6106453183, "sourceWeight": "334753.6106453183", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6106", "source": "Sweden", "target": "Lithuania", "attributes": { "weight": 167587.67422152503, "sourceWeight": "167587.67422152503", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6107", "source": "Sweden", "target": "Romania", "attributes": { "weight": 34955.37404662736, "sourceWeight": "34955.37404662736", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6108", "source": "Sweden", "target": "Switzerland", "attributes": { "weight": 267512.366047012, "sourceWeight": "267512.366047012", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6109", "source": "Sweden", "target": "RussiaUSSR", "attributes": { "weight": 2632675.4536220646, "sourceWeight": "2632675.4536220646", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6110", "source": "Sweden", "target": "Spain", "attributes": { "weight": 2042917.2451512474, "sourceWeight": "2042917.2451512474", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6111", "source": "Sweden", "target": "UnitedKingdom", "attributes": { "weight": 21506840.662808098, "sourceWeight": "21506840.662808098", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6112", "source": "Sweden", "target": "Czechoslovakia", "attributes": { "weight": 272429.21452311834, "sourceWeight": "272429.21452311834", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6113", "source": "Sweden", "target": "EuropeanTurkey", "attributes": { "weight": 58771.26869932625, "sourceWeight": "58771.26869932625", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6114", "source": "Sweden", "target": "GermanyZollverein", "attributes": { "weight": 8007667.730477272, "sourceWeight": "8007667.730477272", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6115", "source": "Sweden", "target": "Hungary", "attributes": { "weight": 38594.32754548241, "sourceWeight": "38594.32754548241", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6116", "source": "Sweden", "target": "Austria", "attributes": { "weight": 197020.84948582487, "sourceWeight": "197020.84948582487", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6117", "source": "Sweden", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 100665.03188426701, "sourceWeight": "100665.03188426701", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6118", "source": "Sweden", "target": "BritishSouthAfrica", "attributes": { "weight": 952363.1019996032, "sourceWeight": "952363.1019996032", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6119", "source": "Sweden", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 310056.0754403995, "sourceWeight": "310056.0754403995", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6120", "source": "Sweden", "target": "Morocco", "attributes": { "weight": 22249.989482098532, "sourceWeight": "22249.989482098532", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6121", "source": "Sweden", "target": "CanaryIs", "attributes": { "weight": 98987.39654892626, "sourceWeight": "98987.39654892626", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6122", "source": "Sweden", "target": "FrenchWestAfrica", "attributes": { "weight": 7802.419718360649, "sourceWeight": "7802.419718360649", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6123", "source": "Sweden", "target": "Kamerun", "attributes": { "weight": 5.829922528142899, "sourceWeight": "5.829922528142899", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6124", "source": "Sweden", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 581.3694908734666, "sourceWeight": "581.3694908734666", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6125", "source": "Sweden", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 11780.350155965452, "sourceWeight": "11780.350155965452", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6126", "source": "Sweden", "target": "MadagascarMalagasyRepublic_ReunionBourbonI", "attributes": { "weight": 415.84777290949194, "sourceWeight": "415.84777290949194", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6127", "source": "Sweden", "target": "TripolitaniaRegencyofTripoli", "attributes": { "weight": 324.55238816465624, "sourceWeight": "324.55238816465624", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6128", "source": "Sweden", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 45139.407271175536, "sourceWeight": "45139.407271175536", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6129", "source": "Sweden", "target": "Africaother", "attributes": { "weight": 33083.06738068192, "sourceWeight": "33083.06738068192", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6130", "source": "Sweden", "target": "ArgentinaLaPlata", "attributes": { "weight": 1001144.6481912214, "sourceWeight": "1001144.6481912214", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6131", "source": "Sweden", "target": "Brazil", "attributes": { "weight": 336324.6245109176, "sourceWeight": "336324.6245109176", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6132", "source": "Sweden", "target": "Chile", "attributes": { "weight": 149266.8121142184, "sourceWeight": "149266.8121142184", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6133", "source": "Sweden", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 45098.83822265496, "sourceWeight": "45098.83822265496", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6134", "source": "Sweden", "target": "Cuba", "attributes": { "weight": 190093.6393742149, "sourceWeight": "190093.6393742149", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6135", "source": "Sweden", "target": "WestIndiesother", "attributes": { "weight": 5737.66550669239, "sourceWeight": "5737.66550669239", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6136", "source": "Sweden", "target": "BritishNorthAmerica", "attributes": { "weight": 210419.8145243204, "sourceWeight": "210419.8145243204", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6137", "source": "Sweden", "target": "UnitedStatesofAmerica", "attributes": { "weight": 9184422.086391037, "sourceWeight": "9184422.086391037", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6138", "source": "Sweden", "target": "Mexico", "attributes": { "weight": 139755.14325381798, "sourceWeight": "139755.14325381798", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6139", "source": "Sweden", "target": "Peru", "attributes": { "weight": 69179.30317400215, "sourceWeight": "69179.30317400215", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6140", "source": "Sweden", "target": "Uruguay", "attributes": { "weight": 59995.79283941268, "sourceWeight": "59995.79283941268", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6141", "source": "Sweden", "target": "Venezuela", "attributes": { "weight": 8922.786582763863, "sourceWeight": "8922.786582763863", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6142", "source": "Sweden", "target": "SouthernAmericaother", "attributes": { "weight": 39999.398977058954, "sourceWeight": "39999.398977058954", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6143", "source": "Sweden", "target": "CentralAmericaother", "attributes": { "weight": 20120.98591803249, "sourceWeight": "20120.98591803249", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6144", "source": "Sweden", "target": "Cyprus", "attributes": { "weight": 4458.628585853122, "sourceWeight": "4458.628585853122", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6145", "source": "Sweden", "target": "AsianTurkey", "attributes": { "weight": 95848.373932433, "sourceWeight": "95848.373932433", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6146", "source": "Sweden", "target": "Philippines", "attributes": { "weight": 32988.46636976133, "sourceWeight": "32988.46636976133", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6147", "source": "Sweden", "target": "Georgia", "attributes": { "weight": 4687.317814920995, "sourceWeight": "4687.317814920995", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6148", "source": "Sweden", "target": "India", "attributes": { "weight": 520978.34514343407, "sourceWeight": "520978.34514343407", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6149", "source": "Sweden", "target": "FrenchIndia", "attributes": { "weight": 4024.0889994771096, "sourceWeight": "4024.0889994771096", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6150", "source": "Sweden", "target": "IranPersia", "attributes": { "weight": 13662.934314202772, "sourceWeight": "13662.934314202772", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6151", "source": "Sweden", "target": "Japan", "attributes": { "weight": 1289119.2609821917, "sourceWeight": "1289119.2609821917", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6152", "source": "Sweden", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 506169.6206944219, "sourceWeight": "506169.6206944219", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6153", "source": "Sweden", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 208859.79937854226, "sourceWeight": "208859.79937854226", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6154", "source": "Sweden", "target": "ThailandSiam", "attributes": { "weight": 14566.15159000619, "sourceWeight": "14566.15159000619", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6155", "source": "Sweden", "target": "Siberia", "attributes": { "weight": 8854.209865190554, "sourceWeight": "8854.209865190554", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6156", "source": "Sweden", "target": "Asiaother", "attributes": { "weight": 2791.210640510148, "sourceWeight": "2791.210640510148", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6157", "source": "Sweden", "target": "Australia", "attributes": { "weight": 1268343.2802630076, "sourceWeight": "1268343.2802630076", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6158", "source": "Sweden", "target": "NewZealand", "attributes": { "weight": 120898.58939915735, "sourceWeight": "120898.58939915735", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6159", "source": "Denmark", "target": "Sweden", "attributes": { "weight": 7265697.877787995, "sourceWeight": "7265697.877787995", "direction": "Imp", "source_type": "primary", "targetWeight": "7265697.877787995" } }, { "key": "geid_107_6160", "source": "Finland", "target": "Sweden", "attributes": { "weight": 1317904.2330045737, "sourceWeight": "1317904.2330045737", "direction": "Imp", "source_type": "primary", "targetWeight": "1317904.2330045737" } }, { "key": "geid_107_6161", "source": "Iceland", "target": "Sweden", "attributes": { "weight": 183761.50207653426, "sourceWeight": "183761.50207653426", "direction": "Imp", "source_type": "primary", "targetWeight": "183761.50207653426" } }, { "key": "geid_107_6162", "source": "Norway", "target": "Sweden", "attributes": { "weight": 2285547.5619504396, "sourceWeight": "2285547.5619504396", "direction": "Imp", "source_type": "primary", "targetWeight": "2285547.5619504396" } }, { "key": "geid_107_6163", "source": "Spitsbergen", "target": "Sweden", "attributes": { "weight": 124755.59402102377, "sourceWeight": "124755.59402102377", "direction": "Imp", "source_type": "primary", "targetWeight": "124755.59402102377" } }, { "key": "geid_107_6164", "source": "Belgium", "target": "Sweden", "attributes": { "weight": 1513358.8167060337, "sourceWeight": "1513358.8167060337", "direction": "Imp", "source_type": "primary", "targetWeight": "1513358.8167060337" } }, { "key": "geid_107_6165", "source": "Bulgaria", "target": "Sweden", "attributes": { "weight": 17912.707428042526, "sourceWeight": "17912.707428042526", "direction": "Imp", "source_type": "primary", "targetWeight": "17912.707428042526" } }, { "key": "geid_107_6166", "source": "DanzigFreeCityofDanzig", "target": "Sweden", "attributes": { "weight": 145487.45965633506, "sourceWeight": "145487.45965633506", "direction": "Imp", "source_type": "primary", "targetWeight": "145487.45965633506" } }, { "key": "geid_107_6167", "source": "Ireland", "target": "Sweden", "attributes": { "weight": 1836.6059032473268, "sourceWeight": "1836.6059032473268", "direction": "Imp", "source_type": "primary", "targetWeight": "1836.6059032473268" } }, { "key": "geid_107_6168", "source": "France", "target": "Sweden", "attributes": { "weight": 2691276.8131359573, "sourceWeight": "2691276.8131359573", "direction": "Imp", "source_type": "primary", "targetWeight": "2691276.8131359573" } }, { "key": "geid_107_6169", "source": "Crete_Greece", "target": "Sweden", "attributes": { "weight": 349926.19438283955, "sourceWeight": "349926.19438283955", "direction": "Imp", "source_type": "primary", "targetWeight": "349926.19438283955" } }, { "key": "geid_107_6170", "source": "Crete", "target": "Sweden", "attributes": { "weight": 117.19947350390363, "sourceWeight": "117.19947350390363", "direction": "Imp", "source_type": "primary", "targetWeight": "117.19947350390363" } }, { "key": "geid_107_6171", "source": "Italy", "target": "Sweden", "attributes": { "weight": 896303.5887079809, "sourceWeight": "896303.5887079809", "direction": "Imp", "source_type": "primary", "targetWeight": "896303.5887079809" } }, { "key": "geid_107_6172", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Sweden", "attributes": { "weight": 6556.739570749415, "sourceWeight": "6556.739570749415", "direction": "Imp", "source_type": "primary", "targetWeight": "6556.739570749415" } }, { "key": "geid_107_6173", "source": "Luxemburg", "target": "Sweden", "attributes": { "weight": 14464.398406087159, "sourceWeight": "14464.398406087159", "direction": "Imp", "source_type": "primary", "targetWeight": "14464.398406087159" } }, { "key": "geid_107_6174", "source": "Netherlands", "target": "Sweden", "attributes": { "weight": 3401359.0931765866, "sourceWeight": "3401359.0931765866", "direction": "Imp", "source_type": "primary", "targetWeight": "3401359.0931765866" } }, { "key": "geid_107_6175", "source": "DanzigFreeCityofDanzig_Poland", "target": "Sweden", "attributes": { "weight": 145729.73200387057, "sourceWeight": "145729.73200387057", "direction": "Imp", "source_type": "primary", "targetWeight": "145729.73200387057" } }, { "key": "geid_107_6176", "source": "AzoresWesternIsles_MadeiraIsles_Portugal", "target": "Sweden", "attributes": { "weight": 278716.21499792644, "sourceWeight": "278716.21499792644", "direction": "Imp", "source_type": "primary", "targetWeight": "278716.21499792644" } }, { "key": "geid_107_6177", "source": "Estonia", "target": "Sweden", "attributes": { "weight": 372054.7171285528, "sourceWeight": "372054.7171285528", "direction": "Imp", "source_type": "primary", "targetWeight": "372054.7171285528" } }, { "key": "geid_107_6178", "source": "Latvia", "target": "Sweden", "attributes": { "weight": 162362.08026060354, "sourceWeight": "162362.08026060354", "direction": "Imp", "source_type": "primary", "targetWeight": "162362.08026060354" } }, { "key": "geid_107_6179", "source": "Lithuania", "target": "Sweden", "attributes": { "weight": 46849.55794762686, "sourceWeight": "46849.55794762686", "direction": "Imp", "source_type": "primary", "targetWeight": "46849.55794762686" } }, { "key": "geid_107_6180", "source": "Malta", "target": "Sweden", "attributes": { "weight": 5.108694998888107, "sourceWeight": "5.108694998888107", "direction": "Imp", "source_type": "primary", "targetWeight": "5.108694998888107" } }, { "key": "geid_107_6181", "source": "Romania", "target": "Sweden", "attributes": { "weight": 67527.63202971457, "sourceWeight": "67527.63202971457", "direction": "Imp", "source_type": "primary", "targetWeight": "67527.63202971457" } }, { "key": "geid_107_6182", "source": "RussiaUSSR", "target": "Sweden", "attributes": { "weight": 297527.39162053814, "sourceWeight": "297527.39162053814", "direction": "Imp", "source_type": "primary", "targetWeight": "297527.39162053814" } }, { "key": "geid_107_6183", "source": "Switzerland", "target": "Sweden", "attributes": { "weight": 775340.5095472494, "sourceWeight": "775340.5095472494", "direction": "Imp", "source_type": "primary", "targetWeight": "775340.5095472494" } }, { "key": "geid_107_6184", "source": "Spain", "target": "Sweden", "attributes": { "weight": 491580.2696188913, "sourceWeight": "491580.2696188913", "direction": "Imp", "source_type": "primary", "targetWeight": "491580.2696188913" } }, { "key": "geid_107_6185", "source": "UnitedKingdom", "target": "Sweden", "attributes": { "weight": 18491049.506259654, "sourceWeight": "18491049.506259654", "direction": "Imp", "source_type": "primary", "targetWeight": "18491049.506259654" } }, { "key": "geid_107_6186", "source": "Czechoslovakia", "target": "Sweden", "attributes": { "weight": 770915.658450683, "sourceWeight": "770915.658450683", "direction": "Imp", "source_type": "primary", "targetWeight": "770915.658450683" } }, { "key": "geid_107_6187", "source": "EuropeanTurkey", "target": "Sweden", "attributes": { "weight": 34298.63627894677, "sourceWeight": "34298.63627894677", "direction": "Imp", "source_type": "primary", "targetWeight": "34298.63627894677" } }, { "key": "geid_107_6188", "source": "GermanyZollverein", "target": "Sweden", "attributes": { "weight": 21203306.40750557, "sourceWeight": "21203306.40750557", "direction": "Imp", "source_type": "primary", "targetWeight": "21203306.40750557" } }, { "key": "geid_107_6189", "source": "Hungary", "target": "Sweden", "attributes": { "weight": 24464.759019851786, "sourceWeight": "24464.759019851786", "direction": "Imp", "source_type": "primary", "targetWeight": "24464.759019851786" } }, { "key": "geid_107_6190", "source": "Austria", "target": "Sweden", "attributes": { "weight": 220222.7391019515, "sourceWeight": "220222.7391019515", "direction": "Imp", "source_type": "primary", "targetWeight": "220222.7391019515" } }, { "key": "geid_107_6191", "source": "AlgeriaRegencyofAlgiers", "target": "Sweden", "attributes": { "weight": 17703.130728499906, "sourceWeight": "17703.130728499906", "direction": "Imp", "source_type": "primary", "targetWeight": "17703.130728499906" } }, { "key": "geid_107_6192", "source": "BritishSouthAfrica", "target": "Sweden", "attributes": { "weight": 90080.59717639422, "sourceWeight": "90080.59717639422", "direction": "Imp", "source_type": "primary", "targetWeight": "90080.59717639422" } }, { "key": "geid_107_6193", "source": "EgyptArabRepublicEgypt_SudanAngloEgyptianSudanMahdistState", "target": "Sweden", "attributes": { "weight": 33510.09418029486, "sourceWeight": "33510.09418029486", "direction": "Imp", "source_type": "primary", "targetWeight": "33510.09418029486" } }, { "key": "geid_107_6194", "source": "Morocco", "target": "Sweden", "attributes": { "weight": 316.01786240180786, "sourceWeight": "316.01786240180786", "direction": "Imp", "source_type": "primary", "targetWeight": "316.01786240180786" } }, { "key": "geid_107_6195", "source": "MozambiquePortugueseEastAfrica", "target": "Sweden", "attributes": { "weight": 4.507672057842448, "sourceWeight": "4.507672057842448", "direction": "Imp", "source_type": "primary", "targetWeight": "4.507672057842448" } }, { "key": "geid_107_6196", "source": "TunisiaRegencyofTunis", "target": "Sweden", "attributes": { "weight": 11531.346351490236, "sourceWeight": "11531.346351490236", "direction": "Imp", "source_type": "primary", "targetWeight": "11531.346351490236" } }, { "key": "geid_107_6197", "source": "TripolitaniaRegencyofTripoli", "target": "Sweden", "attributes": { "weight": 134.62913879422777, "sourceWeight": "134.62913879422777", "direction": "Imp", "source_type": "primary", "targetWeight": "134.62913879422777" } }, { "key": "geid_107_6198", "source": "CanaryIs", "target": "Sweden", "attributes": { "weight": 149.7749169085784, "sourceWeight": "149.7749169085784", "direction": "Imp", "source_type": "primary", "targetWeight": "149.7749169085784" } }, { "key": "geid_107_6199", "source": "FrenchWestAfrica", "target": "Sweden", "attributes": { "weight": 1125.1750479315795, "sourceWeight": "1125.1750479315795", "direction": "Imp", "source_type": "primary", "targetWeight": "1125.1750479315795" } }, { "key": "geid_107_6200", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Sweden", "attributes": { "weight": 783.6738128294356, "sourceWeight": "783.6738128294356", "direction": "Imp", "source_type": "primary", "targetWeight": "783.6738128294356" } }, { "key": "geid_107_6201", "source": "MadagascarMalagasyRepublic_ReunionBourbonI", "target": "Sweden", "attributes": { "weight": 0.7212275292547916, "sourceWeight": "0.7212275292547916", "direction": "Imp", "source_type": "primary", "targetWeight": "0.7212275292547916" } }, { "key": "geid_107_6202", "source": "Africaother", "target": "Sweden", "attributes": { "weight": 8950.433638051963, "sourceWeight": "8950.433638051963", "direction": "Imp", "source_type": "primary", "targetWeight": "8950.433638051963" } }, { "key": "geid_107_6203", "source": "ArgentinaLaPlata", "target": "Sweden", "attributes": { "weight": 2797881.574439696, "sourceWeight": "2797881.574439696", "direction": "Imp", "source_type": "primary", "targetWeight": "2797881.574439696" } }, { "key": "geid_107_6204", "source": "Brazil", "target": "Sweden", "attributes": { "weight": 2270772.7952975966, "sourceWeight": "2270772.7952975966", "direction": "Imp", "source_type": "primary", "targetWeight": "2270772.7952975966" } }, { "key": "geid_107_6205", "source": "Chile", "target": "Sweden", "attributes": { "weight": 186816.0809698106, "sourceWeight": "186816.0809698106", "direction": "Imp", "source_type": "primary", "targetWeight": "186816.0809698106" } }, { "key": "geid_107_6206", "source": "ColombiaNewGranadaGranColombia", "target": "Sweden", "attributes": { "weight": 3865.779556805683, "sourceWeight": "3865.779556805683", "direction": "Imp", "source_type": "primary", "targetWeight": "3865.779556805683" } }, { "key": "geid_107_6207", "source": "Cuba", "target": "Sweden", "attributes": { "weight": 5408.545344175787, "sourceWeight": "5408.545344175787", "direction": "Imp", "source_type": "primary", "targetWeight": "5408.545344175787" } }, { "key": "geid_107_6208", "source": "WestIndiesother", "target": "Sweden", "attributes": { "weight": 13312.177325808525, "sourceWeight": "13312.177325808525", "direction": "Imp", "source_type": "primary", "targetWeight": "13312.177325808525" } }, { "key": "geid_107_6209", "source": "BritishNorthAmerica", "target": "Sweden", "attributes": { "weight": 1052916.9446397768, "sourceWeight": "1052916.9446397768", "direction": "Imp", "source_type": "primary", "targetWeight": "1052916.9446397768" } }, { "key": "geid_107_6210", "source": "UnitedStatesofAmerica", "target": "Sweden", "attributes": { "weight": 13660373.475655565, "sourceWeight": "13660373.475655565", "direction": "Imp", "source_type": "primary", "targetWeight": "13660373.475655565" } }, { "key": "geid_107_6211", "source": "Mexico", "target": "Sweden", "attributes": { "weight": 6282.793314220803, "sourceWeight": "6282.793314220803", "direction": "Imp", "source_type": "primary", "targetWeight": "6282.793314220803" } }, { "key": "geid_107_6212", "source": "Peru", "target": "Sweden", "attributes": { "weight": 113.59333585762968, "sourceWeight": "113.59333585762968", "direction": "Imp", "source_type": "primary", "targetWeight": "113.59333585762968" } }, { "key": "geid_107_6213", "source": "Uruguay", "target": "Sweden", "attributes": { "weight": 214621.62600746469, "sourceWeight": "214621.62600746469", "direction": "Imp", "source_type": "primary", "targetWeight": "214621.62600746469" } }, { "key": "geid_107_6214", "source": "Venezuela", "target": "Sweden", "attributes": { "weight": 36081.93144732334, "sourceWeight": "36081.93144732334", "direction": "Imp", "source_type": "primary", "targetWeight": "36081.93144732334" } }, { "key": "geid_107_6215", "source": "CentralAmericaother", "target": "Sweden", "attributes": { "weight": 594081.2462811705, "sourceWeight": "594081.2462811705", "direction": "Imp", "source_type": "primary", "targetWeight": "594081.2462811705" } }, { "key": "geid_107_6216", "source": "SouthernAmericaother", "target": "Sweden", "attributes": { "weight": 50209.45649495441, "sourceWeight": "50209.45649495441", "direction": "Imp", "source_type": "primary", "targetWeight": "50209.45649495441" } }, { "key": "geid_107_6217", "source": "Cyprus", "target": "Sweden", "attributes": { "weight": 16.948846937487602, "sourceWeight": "16.948846937487602", "direction": "Imp", "source_type": "primary", "targetWeight": "16.948846937487602" } }, { "key": "geid_107_6218", "source": "AsianTurkey", "target": "Sweden", "attributes": { "weight": 38724.989932865734, "sourceWeight": "38724.989932865734", "direction": "Imp", "source_type": "primary", "targetWeight": "38724.989932865734" } }, { "key": "geid_107_6219", "source": "Philippines", "target": "Sweden", "attributes": { "weight": 420.71605873196177, "sourceWeight": "420.71605873196177", "direction": "Imp", "source_type": "primary", "targetWeight": "420.71605873196177" } }, { "key": "geid_107_6220", "source": "FrenchIndia", "target": "Sweden", "attributes": { "weight": 4.207160587319618, "sourceWeight": "4.207160587319618", "direction": "Imp", "source_type": "primary", "targetWeight": "4.207160587319618" } }, { "key": "geid_107_6221", "source": "India", "target": "Sweden", "attributes": { "weight": 303286.7540554023, "sourceWeight": "303286.7540554023", "direction": "Imp", "source_type": "primary", "targetWeight": "303286.7540554023" } }, { "key": "geid_107_6222", "source": "IranPersia", "target": "Sweden", "attributes": { "weight": 1455.497256330274, "sourceWeight": "1455.497256330274", "direction": "Imp", "source_type": "primary", "targetWeight": "1455.497256330274" } }, { "key": "geid_107_6223", "source": "Japan", "target": "Sweden", "attributes": { "weight": 55881.97111483745, "sourceWeight": "55881.97111483745", "direction": "Imp", "source_type": "primary", "targetWeight": "55881.97111483745" } }, { "key": "geid_107_6224", "source": "PeoplesRepublicofChinaChina", "target": "Sweden", "attributes": { "weight": 14476.89968326091, "sourceWeight": "14476.89968326091", "direction": "Imp", "source_type": "primary", "targetWeight": "14476.89968326091" } }, { "key": "geid_107_6225", "source": "IndonesiaDutchEastIndies", "target": "Sweden", "attributes": { "weight": 163465.918994128, "sourceWeight": "163465.918994128", "direction": "Imp", "source_type": "primary", "targetWeight": "163465.918994128" } }, { "key": "geid_107_6226", "source": "ThailandSiam", "target": "Sweden", "attributes": { "weight": 301.83372099313027, "sourceWeight": "301.83372099313027", "direction": "Imp", "source_type": "primary", "targetWeight": "301.83372099313027" } }, { "key": "geid_107_6227", "source": "Asiaother", "target": "Sweden", "attributes": { "weight": 9155.803177007267, "sourceWeight": "9155.803177007267", "direction": "Imp", "source_type": "primary", "targetWeight": "9155.803177007267" } }, { "key": "geid_107_6228", "source": "Australia", "target": "Sweden", "attributes": { "weight": 372655.2592512456, "sourceWeight": "372655.2592512456", "direction": "Imp", "source_type": "primary", "targetWeight": "372655.2592512456" } }, { "key": "geid_107_6229", "source": "NewZealand", "target": "Sweden", "attributes": { "weight": 49.52429034216236, "sourceWeight": "49.52429034216236", "direction": "Imp", "source_type": "primary", "targetWeight": "49.52429034216236" } }, { "key": "geid_107_6230", "source": "DominicanRepublicSantoDomingo", "target": "UnitedStatesofAmerica", "attributes": { "weight": 2101671.344499774, "sourceWeight": "2101671.344499774", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6231", "source": "DominicanRepublicSantoDomingo", "target": "PuertoRico", "attributes": { "weight": 177895.4277953825, "sourceWeight": "177895.4277953825", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6232", "source": "DominicanRepublicSantoDomingo", "target": "Cuba", "attributes": { "weight": 102424.8528746039, "sourceWeight": "102424.8528746039", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6233", "source": "DominicanRepublicSantoDomingo", "target": "UnitedKingdom", "attributes": { "weight": 773438.8863739248, "sourceWeight": "773438.8863739248", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6234", "source": "DominicanRepublicSantoDomingo", "target": "Scotland", "attributes": { "weight": 191461.0683567225, "sourceWeight": "191461.0683567225", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6235", "source": "DominicanRepublicSantoDomingo", "target": "Ireland", "attributes": { "weight": 1749187.4151199637, "sourceWeight": "1749187.4151199637", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6236", "source": "DominicanRepublicSantoDomingo", "target": "France", "attributes": { "weight": 362346.76324128563, "sourceWeight": "362346.76324128563", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6237", "source": "DominicanRepublicSantoDomingo", "target": "GermanyZollverein", "attributes": { "weight": 102312.35853327297, "sourceWeight": "102312.35853327297", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6238", "source": "DominicanRepublicSantoDomingo", "target": "Italy", "attributes": { "weight": 25515.165233137166, "sourceWeight": "25515.165233137166", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6239", "source": "DominicanRepublicSantoDomingo", "target": "Spain", "attributes": { "weight": 2172.702580353101, "sourceWeight": "2172.702580353101", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6240", "source": "DominicanRepublicSantoDomingo", "target": "Netherlands", "attributes": { "weight": 324774.33227704844, "sourceWeight": "324774.33227704844", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6241", "source": "DominicanRepublicSantoDomingo", "target": "Denmark", "attributes": { "weight": 1131.7338162064282, "sourceWeight": "1131.7338162064282", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6242", "source": "DominicanRepublicSantoDomingo", "target": "Haiti", "attributes": { "weight": 46275.91670439112, "sourceWeight": "46275.91670439112", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6243", "source": "DominicanRepublicSantoDomingo", "target": "CanadaProvinceofCanada", "attributes": { "weight": 730869.3979176098, "sourceWeight": "730869.3979176098", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6244", "source": "DominicanRepublicSantoDomingo", "target": "NetherlandsAntilles", "attributes": { "weight": 15136.939791760977, "sourceWeight": "15136.939791760977", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6245", "source": "DominicanRepublicSantoDomingo", "target": "VirginIslandsDanishWestIndies", "attributes": { "weight": 12977.591670439113, "sourceWeight": "12977.591670439113", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6246", "source": "DominicanRepublicSantoDomingo", "target": "Barbados", "attributes": { "weight": 410.81937528293344, "sourceWeight": "410.81937528293344", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6247", "source": "DominicanRepublicSantoDomingo", "target": "Jamaica", "attributes": { "weight": 322.9968311453146, "sourceWeight": "322.9968311453146", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6248", "source": "DominicanRepublicSantoDomingo", "target": "Trinidad", "attributes": { "weight": 16.976007243096422, "sourceWeight": "16.976007243096422", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6249", "source": "DominicanRepublicSantoDomingo", "target": "BritishWestIndiesother", "attributes": { "weight": 4500.905387052965, "sourceWeight": "4500.905387052965", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6250", "source": "DominicanRepublicSantoDomingo", "target": "Belgium", "attributes": { "weight": 83704.84382073337, "sourceWeight": "83704.84382073337", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6251", "source": "DominicanRepublicSantoDomingo", "target": "Australia", "attributes": { "weight": 294.25079221367133, "sourceWeight": "294.25079221367133", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6252", "source": "DominicanRepublicSantoDomingo", "target": "Norway", "attributes": { "weight": 122.22725215029425, "sourceWeight": "122.22725215029425", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6253", "source": "DominicanRepublicSantoDomingo", "target": "Uruguay", "attributes": { "weight": 1087.3698506111361, "sourceWeight": "1087.3698506111361", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6254", "source": "DominicanRepublicSantoDomingo", "target": "FrenchAfrica", "attributes": { "weight": 10705.296514259846, "sourceWeight": "10705.296514259846", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6255", "source": "DominicanRepublicSantoDomingo", "target": "ArgentinaLaPlata", "attributes": { "weight": 16.976007243096422, "sourceWeight": "16.976007243096422", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6256", "source": "DominicanRepublicSantoDomingo", "target": "Sweden", "attributes": { "weight": 196.01629696695338, "sourceWeight": "196.01629696695338", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6257", "source": "DominicanRepublicSantoDomingo", "target": "Guatemala", "attributes": { "weight": 1547.0801267541874, "sourceWeight": "1547.0801267541874", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6258", "source": "DominicanRepublicSantoDomingo", "target": "Greece", "attributes": { "weight": 4300.588501584427, "sourceWeight": "4300.588501584427", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6259", "source": "DominicanRepublicSantoDomingo", "target": "Panama", "attributes": { "weight": 215.02942507922137, "sourceWeight": "215.02942507922137", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6260", "source": "DominicanRepublicSantoDomingo", "target": "CostaRica", "attributes": { "weight": 182.8881846989588, "sourceWeight": "182.8881846989588", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6261", "source": "DominicanRepublicSantoDomingo", "target": "CanaryIs", "attributes": { "weight": 16013.807152557718, "sourceWeight": "16013.807152557718", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6262", "source": "DominicanRepublicSantoDomingo", "target": "Gibraltar", "attributes": { "weight": 6678.587596197374, "sourceWeight": "6678.587596197374", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6263", "source": "GermanyZollverein", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 285399.7283838841, "sourceWeight": "285399.7283838841", "direction": "Imp", "source_type": "primary", "targetWeight": "285399.7283838841" } }, { "key": "geid_107_6264", "source": "ArgentinaLaPlata", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 1.131733816206428, "sourceWeight": "1.131733816206428", "direction": "Imp", "source_type": "primary", "targetWeight": "1.131733816206428" } }, { "key": "geid_107_6265", "source": "Austria", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 4.526935264825712, "sourceWeight": "4.526935264825712", "direction": "Imp", "source_type": "primary", "targetWeight": "4.526935264825712" } }, { "key": "geid_107_6266", "source": "Barbados", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 2.037120869171571, "sourceWeight": "2.037120869171571", "direction": "Imp", "source_type": "primary", "targetWeight": "2.037120869171571" } }, { "key": "geid_107_6267", "source": "Belgium", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 17830.466274332277, "sourceWeight": "17830.466274332277", "direction": "Imp", "source_type": "primary", "targetWeight": "17830.466274332277" } }, { "key": "geid_107_6268", "source": "CanadaProvinceofCanada", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 16948.392937980985, "sourceWeight": "16948.392937980985", "direction": "Imp", "source_type": "primary", "targetWeight": "16948.392937980985" } }, { "key": "geid_107_6269", "source": "Czechoslovakia", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 296.96695337256676, "sourceWeight": "296.96695337256676", "direction": "Imp", "source_type": "primary", "targetWeight": "296.96695337256676" } }, { "key": "geid_107_6270", "source": "PeoplesRepublicofChinaChina", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 102.08239022181982, "sourceWeight": "102.08239022181982", "direction": "Imp", "source_type": "primary", "targetWeight": "102.08239022181982" } }, { "key": "geid_107_6271", "source": "ColombiaNewGranadaGranColombia", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 40.742417383431416, "sourceWeight": "40.742417383431416", "direction": "Imp", "source_type": "primary", "targetWeight": "40.742417383431416" } }, { "key": "geid_107_6272", "source": "Cuba", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 10473.064735174286, "sourceWeight": "10473.064735174286", "direction": "Imp", "source_type": "primary", "targetWeight": "10473.064735174286" } }, { "key": "geid_107_6273", "source": "Denmark", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 85625.84880036215, "sourceWeight": "85625.84880036215", "direction": "Imp", "source_type": "primary", "targetWeight": "85625.84880036215" } }, { "key": "geid_107_6274", "source": "NetherlandsAntilles", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 52451.10909913988, "sourceWeight": "52451.10909913988", "direction": "Imp", "source_type": "primary", "targetWeight": "52451.10909913988" } }, { "key": "geid_107_6275", "source": "Ecuador", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 356.9488456315075, "sourceWeight": "356.9488456315075", "direction": "Imp", "source_type": "primary", "targetWeight": "356.9488456315075" } }, { "key": "geid_107_6276", "source": "EgyptArabRepublicEgypt", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 1.5844273426889994, "sourceWeight": "1.5844273426889994", "direction": "Imp", "source_type": "primary", "targetWeight": "1.5844273426889994" } }, { "key": "geid_107_6277", "source": "UnitedKingdom", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 219208.9180624717, "sourceWeight": "219208.9180624717", "direction": "Imp", "source_type": "primary", "targetWeight": "219208.9180624717" } }, { "key": "geid_107_6278", "source": "Scotland", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 34963.784517881395, "sourceWeight": "34963.784517881395", "direction": "Imp", "source_type": "primary", "targetWeight": "34963.784517881395" } }, { "key": "geid_107_6279", "source": "Spain", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 51580.5794477139, "sourceWeight": "51580.5794477139", "direction": "Imp", "source_type": "primary", "targetWeight": "51580.5794477139" } }, { "key": "geid_107_6280", "source": "UnitedStatesofAmerica", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 3308289.271163422, "sourceWeight": "3308289.271163422", "direction": "Imp", "source_type": "primary", "targetWeight": "3308289.271163422" } }, { "key": "geid_107_6281", "source": "France", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 86047.53282028067, "sourceWeight": "86047.53282028067", "direction": "Imp", "source_type": "primary", "targetWeight": "86047.53282028067" } }, { "key": "geid_107_6282", "source": "FrenchWestIndies", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 0.22634676324128564, "sourceWeight": "0.22634676324128564", "direction": "Imp", "source_type": "primary", "targetWeight": "0.22634676324128564" } }, { "key": "geid_107_6283", "source": "Greece", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 1.131733816206428, "sourceWeight": "1.131733816206428", "direction": "Imp", "source_type": "primary", "targetWeight": "1.131733816206428" } }, { "key": "geid_107_6284", "source": "Haiti", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 5098.008148483476, "sourceWeight": "5098.008148483476", "direction": "Imp", "source_type": "primary", "targetWeight": "5098.008148483476" } }, { "key": "geid_107_6285", "source": "Arabia_HejazSultanate_IraqMesopotamia", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 2.942507922136713, "sourceWeight": "2.942507922136713", "direction": "Imp", "source_type": "primary", "targetWeight": "2.942507922136713" } }, { "key": "geid_107_6286", "source": "Netherlands", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 138048.43820733362, "sourceWeight": "138048.43820733362", "direction": "Imp", "source_type": "primary", "targetWeight": "138048.43820733362" } }, { "key": "geid_107_6287", "source": "HongKong", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 15954.730647351742, "sourceWeight": "15954.730647351742", "direction": "Imp", "source_type": "primary", "targetWeight": "15954.730647351742" } }, { "key": "geid_107_6288", "source": "India", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 127228.83657763693, "sourceWeight": "127228.83657763693", "direction": "Imp", "source_type": "primary", "targetWeight": "127228.83657763693" } }, { "key": "geid_107_6289", "source": "Ireland", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 1264.8257129923043, "sourceWeight": "1264.8257129923043", "direction": "Imp", "source_type": "primary", "targetWeight": "1264.8257129923043" } }, { "key": "geid_107_6290", "source": "Bermuda", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 0.4526935264825713, "sourceWeight": "0.4526935264825713", "direction": "Imp", "source_type": "primary", "targetWeight": "0.4526935264825713" } }, { "key": "geid_107_6291", "source": "VirginIslandsDanishWestIndies", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 3990.9461294703483, "sourceWeight": "3990.9461294703483", "direction": "Imp", "source_type": "primary", "targetWeight": "3990.9461294703483" } }, { "key": "geid_107_6292", "source": "Italy", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 60682.88818469895, "sourceWeight": "60682.88818469895", "direction": "Imp", "source_type": "primary", "targetWeight": "60682.88818469895" } }, { "key": "geid_107_6293", "source": "Jamaica", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 52.738795835219555, "sourceWeight": "52.738795835219555", "direction": "Imp", "source_type": "primary", "targetWeight": "52.738795835219555" } }, { "key": "geid_107_6294", "source": "Japan", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 9.732910819375283, "sourceWeight": "9.732910819375283", "direction": "Imp", "source_type": "primary", "targetWeight": "9.732910819375283" } }, { "key": "geid_107_6295", "source": "Mexico", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 28900.633770937075, "sourceWeight": "28900.633770937075", "direction": "Imp", "source_type": "primary", "targetWeight": "28900.633770937075" } }, { "key": "geid_107_6296", "source": "Nicaragua", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 15.844273426889995, "sourceWeight": "15.844273426889995", "direction": "Imp", "source_type": "primary", "targetWeight": "15.844273426889995" } }, { "key": "geid_107_6297", "source": "Norway", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 6589.85966500679, "sourceWeight": "6589.85966500679", "direction": "Imp", "source_type": "primary", "targetWeight": "6589.85966500679" } }, { "key": "geid_107_6298", "source": "BritishWestIndiesother", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 33.952014486192844, "sourceWeight": "33.952014486192844", "direction": "Imp", "source_type": "primary", "targetWeight": "33.952014486192844" } }, { "key": "geid_107_6299", "source": "Palestine_Syria", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 84.42734268899954, "sourceWeight": "84.42734268899954", "direction": "Imp", "source_type": "primary", "targetWeight": "84.42734268899954" } }, { "key": "geid_107_6300", "source": "Panama", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 2.037120869171571, "sourceWeight": "2.037120869171571", "direction": "Imp", "source_type": "primary", "targetWeight": "2.037120869171571" } }, { "key": "geid_107_6301", "source": "Peru", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 0.22634676324128564, "sourceWeight": "0.22634676324128564", "direction": "Imp", "source_type": "primary", "targetWeight": "0.22634676324128564" } }, { "key": "geid_107_6302", "source": "Portugal", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 207.78632865550023, "sourceWeight": "207.78632865550023", "direction": "Imp", "source_type": "primary", "targetWeight": "207.78632865550023" } }, { "key": "geid_107_6303", "source": "PuertoRico", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 282704.84382073337, "sourceWeight": "282704.84382073337", "direction": "Imp", "source_type": "primary", "targetWeight": "282704.84382073337" } }, { "key": "geid_107_6304", "source": "ThailandSiam", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 19098.008148483477, "sourceWeight": "19098.008148483477", "direction": "Imp", "source_type": "primary", "targetWeight": "19098.008148483477" } }, { "key": "geid_107_6305", "source": "Sweden", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 964.4635581711182, "sourceWeight": "964.4635581711182", "direction": "Imp", "source_type": "primary", "targetWeight": "964.4635581711182" } }, { "key": "geid_107_6306", "source": "Switzerland", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 11031.462200090538, "sourceWeight": "11031.462200090538", "direction": "Imp", "source_type": "primary", "targetWeight": "11031.462200090538" } }, { "key": "geid_107_6307", "source": "AsianTurkey", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 0.22634676324128564, "sourceWeight": "0.22634676324128564", "direction": "Imp", "source_type": "primary", "targetWeight": "0.22634676324128564" } }, { "key": "geid_107_6308", "source": "Uruguay", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 13087.822544137618, "sourceWeight": "13087.822544137618", "direction": "Imp", "source_type": "primary", "targetWeight": "13087.822544137618" } }, { "key": "geid_107_6309", "source": "Venezuela", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 10.185604345857854, "sourceWeight": "10.185604345857854", "direction": "Imp", "source_type": "primary", "targetWeight": "10.185604345857854" } }, { "key": "geid_107_6310", "source": "UnitedStatesofAmerica", "target": "Cuba", "attributes": { "weight": 40023554.16666667, "sourceWeight": "40023554.16666667", "direction": "Imp", "source_type": "primary", "targetWeight": "40023554.16666667" } }, { "key": "geid_107_6311", "source": "NetherlandsAntilles", "target": "Cuba", "attributes": { "weight": 2221.041666666667, "sourceWeight": "2221.041666666667", "direction": "Imp", "source_type": "primary", "targetWeight": "2221.041666666667" } }, { "key": "geid_107_6312", "source": "BritishWestIndies", "target": "Cuba", "attributes": { "weight": 22209.166666666668, "sourceWeight": "22209.166666666668", "direction": "Imp", "source_type": "primary", "targetWeight": "22209.166666666668" } }, { "key": "geid_107_6313", "source": "ArgentinaLaPlata", "target": "Cuba", "attributes": { "weight": 363379.5833333334, "sourceWeight": "363379.5833333334", "direction": "Imp", "source_type": "primary", "targetWeight": "363379.5833333334" } }, { "key": "geid_107_6314", "source": "Brazil", "target": "Cuba", "attributes": { "weight": 272391.25, "sourceWeight": "272391.25", "direction": "Imp", "source_type": "primary", "targetWeight": "272391.25" } }, { "key": "geid_107_6315", "source": "CanadaProvinceofCanada", "target": "Cuba", "attributes": { "weight": 1143672.9166666667, "sourceWeight": "1143672.9166666667", "direction": "Imp", "source_type": "primary", "targetWeight": "1143672.9166666667" } }, { "key": "geid_107_6316", "source": "ColombiaNewGranadaGranColombia", "target": "Cuba", "attributes": { "weight": 33442.91666666667, "sourceWeight": "33442.91666666667", "direction": "Imp", "source_type": "primary", "targetWeight": "33442.91666666667" } }, { "key": "geid_107_6317", "source": "CostaRica", "target": "Cuba", "attributes": { "weight": 10998.958333333334, "sourceWeight": "10998.958333333334", "direction": "Imp", "source_type": "primary", "targetWeight": "10998.958333333334" } }, { "key": "geid_107_6318", "source": "Chile", "target": "Cuba", "attributes": { "weight": 136418.33333333334, "sourceWeight": "136418.33333333334", "direction": "Imp", "source_type": "primary", "targetWeight": "136418.33333333334" } }, { "key": "geid_107_6319", "source": "Ecuador", "target": "Cuba", "attributes": { "weight": 28345, "sourceWeight": "28345", "direction": "Imp", "source_type": "primary", "targetWeight": "28345" } }, { "key": "geid_107_6320", "source": "Guatemala", "target": "Cuba", "attributes": { "weight": 27573.125, "sourceWeight": "27573.125", "direction": "Imp", "source_type": "primary", "targetWeight": "27573.125" } }, { "key": "geid_107_6321", "source": "Haiti", "target": "Cuba", "attributes": { "weight": 11879.791666666668, "sourceWeight": "11879.791666666668", "direction": "Imp", "source_type": "primary", "targetWeight": "11879.791666666668" } }, { "key": "geid_107_6322", "source": "Honduras", "target": "Cuba", "attributes": { "weight": 9206.875, "sourceWeight": "9206.875", "direction": "Imp", "source_type": "primary", "targetWeight": "9206.875" } }, { "key": "geid_107_6323", "source": "Mexico", "target": "Cuba", "attributes": { "weight": 1367473.75, "sourceWeight": "1367473.75", "direction": "Imp", "source_type": "primary", "targetWeight": "1367473.75" } }, { "key": "geid_107_6324", "source": "Nicaragua", "target": "Cuba", "attributes": { "weight": 38223.958333333336, "sourceWeight": "38223.958333333336", "direction": "Imp", "source_type": "primary", "targetWeight": "38223.958333333336" } }, { "key": "geid_107_6325", "source": "Panama", "target": "Cuba", "attributes": { "weight": 10199.791666666668, "sourceWeight": "10199.791666666668", "direction": "Imp", "source_type": "primary", "targetWeight": "10199.791666666668" } }, { "key": "geid_107_6326", "source": "Peru", "target": "Cuba", "attributes": { "weight": 370.83333333333337, "sourceWeight": "370.83333333333337", "direction": "Imp", "source_type": "primary", "targetWeight": "370.83333333333337" } }, { "key": "geid_107_6327", "source": "PuertoRico", "target": "Cuba", "attributes": { "weight": 547114.7916666667, "sourceWeight": "547114.7916666667", "direction": "Imp", "source_type": "primary", "targetWeight": "547114.7916666667" } }, { "key": "geid_107_6328", "source": "DominicanRepublicSantoDomingo", "target": "Cuba", "attributes": { "weight": 126591.25, "sourceWeight": "126591.25", "direction": "Imp", "source_type": "primary", "targetWeight": "126591.25" } }, { "key": "geid_107_6329", "source": "ElSalvador", "target": "Cuba", "attributes": { "weight": 138086.6666666667, "sourceWeight": "138086.6666666667", "direction": "Imp", "source_type": "primary", "targetWeight": "138086.6666666667" } }, { "key": "geid_107_6330", "source": "Uruguay", "target": "Cuba", "attributes": { "weight": 1110967.2916666667, "sourceWeight": "1110967.2916666667", "direction": "Imp", "source_type": "primary", "targetWeight": "1110967.2916666667" } }, { "key": "geid_107_6331", "source": "Venezuela", "target": "Cuba", "attributes": { "weight": 137976.25, "sourceWeight": "137976.25", "direction": "Imp", "source_type": "primary", "targetWeight": "137976.25" } }, { "key": "geid_107_6332", "source": "GermanyZollverein", "target": "Cuba", "attributes": { "weight": 2051324.7916666667, "sourceWeight": "2051324.7916666667", "direction": "Imp", "source_type": "primary", "targetWeight": "2051324.7916666667" } }, { "key": "geid_107_6333", "source": "Austria", "target": "Cuba", "attributes": { "weight": 20943.958333333336, "sourceWeight": "20943.958333333336", "direction": "Imp", "source_type": "primary", "targetWeight": "20943.958333333336" } }, { "key": "geid_107_6334", "source": "Belgium", "target": "Cuba", "attributes": { "weight": 647005.4166666667, "sourceWeight": "647005.4166666667", "direction": "Imp", "source_type": "primary", "targetWeight": "647005.4166666667" } }, { "key": "geid_107_6335", "source": "Denmark", "target": "Cuba", "attributes": { "weight": 137526.6666666667, "sourceWeight": "137526.6666666667", "direction": "Imp", "source_type": "primary", "targetWeight": "137526.6666666667" } }, { "key": "geid_107_6336", "source": "Spain", "target": "Cuba", "attributes": { "weight": 3025211.041666667, "sourceWeight": "3025211.041666667", "direction": "Imp", "source_type": "primary", "targetWeight": "3025211.041666667" } }, { "key": "geid_107_6337", "source": "France", "target": "Cuba", "attributes": { "weight": 1980884.5833333335, "sourceWeight": "1980884.5833333335", "direction": "Imp", "source_type": "primary", "targetWeight": "1980884.5833333335" } }, { "key": "geid_107_6338", "source": "Netherlands", "target": "Cuba", "attributes": { "weight": 503936.0416666667, "sourceWeight": "503936.0416666667", "direction": "Imp", "source_type": "primary", "targetWeight": "503936.0416666667" } }, { "key": "geid_107_6339", "source": "Hungary", "target": "Cuba", "attributes": { "weight": 397.70833333333337, "sourceWeight": "397.70833333333337", "direction": "Imp", "source_type": "primary", "targetWeight": "397.70833333333337" } }, { "key": "geid_107_6340", "source": "Ireland", "target": "Cuba", "attributes": { "weight": 178425, "sourceWeight": "178425", "direction": "Imp", "source_type": "primary", "targetWeight": "178425" } }, { "key": "geid_107_6341", "source": "Italy", "target": "Cuba", "attributes": { "weight": 485866.875, "sourceWeight": "485866.875", "direction": "Imp", "source_type": "primary", "targetWeight": "485866.875" } }, { "key": "geid_107_6342", "source": "Norway", "target": "Cuba", "attributes": { "weight": 391696.25, "sourceWeight": "391696.25", "direction": "Imp", "source_type": "primary", "targetWeight": "391696.25" } }, { "key": "geid_107_6343", "source": "Portugal", "target": "Cuba", "attributes": { "weight": 19678.125, "sourceWeight": "19678.125", "direction": "Imp", "source_type": "primary", "targetWeight": "19678.125" } }, { "key": "geid_107_6344", "source": "UnitedKingdom", "target": "Cuba", "attributes": { "weight": 2517840, "sourceWeight": "2517840", "direction": "Imp", "source_type": "primary", "targetWeight": "2517840" } }, { "key": "geid_107_6345", "source": "Romania", "target": "Cuba", "attributes": { "weight": 11302.708333333334, "sourceWeight": "11302.708333333334", "direction": "Imp", "source_type": "primary", "targetWeight": "11302.708333333334" } }, { "key": "geid_107_6346", "source": "RussiaUSSR", "target": "Cuba", "attributes": { "weight": 99.79166666666667, "sourceWeight": "99.79166666666667", "direction": "Imp", "source_type": "primary", "targetWeight": "99.79166666666667" } }, { "key": "geid_107_6347", "source": "Sweden", "target": "Cuba", "attributes": { "weight": 121261.04166666667, "sourceWeight": "121261.04166666667", "direction": "Imp", "source_type": "primary", "targetWeight": "121261.04166666667" } }, { "key": "geid_107_6348", "source": "Switzerland", "target": "Cuba", "attributes": { "weight": 141280.83333333334, "sourceWeight": "141280.83333333334", "direction": "Imp", "source_type": "primary", "targetWeight": "141280.83333333334" } }, { "key": "geid_107_6349", "source": "TurkeyOttomanEmpire", "target": "Cuba", "attributes": { "weight": 4323.541666666667, "sourceWeight": "4323.541666666667", "direction": "Imp", "source_type": "primary", "targetWeight": "4323.541666666667" } }, { "key": "geid_107_6350", "source": "PeoplesRepublicofChinaChina", "target": "Cuba", "attributes": { "weight": 316718.75, "sourceWeight": "316718.75", "direction": "Imp", "source_type": "primary", "targetWeight": "316718.75" } }, { "key": "geid_107_6351", "source": "Kwanchowan", "target": "Cuba", "attributes": { "weight": 27841.458333333336, "sourceWeight": "27841.458333333336", "direction": "Imp", "source_type": "primary", "targetWeight": "27841.458333333336" } }, { "key": "geid_107_6352", "source": "India", "target": "Cuba", "attributes": { "weight": 1975648.3333333335, "sourceWeight": "1975648.3333333335", "direction": "Imp", "source_type": "primary", "targetWeight": "1975648.3333333335" } }, { "key": "geid_107_6353", "source": "Japan", "target": "Cuba", "attributes": { "weight": 191341.45833333334, "sourceWeight": "191341.45833333334", "direction": "Imp", "source_type": "primary", "targetWeight": "191341.45833333334" } }, { "key": "geid_107_6354", "source": "ThailandSiam", "target": "Cuba", "attributes": { "weight": 93461.45833333334, "sourceWeight": "93461.45833333334", "direction": "Imp", "source_type": "primary", "targetWeight": "93461.45833333334" } }, { "key": "geid_107_6355", "source": "SpanishAfrica", "target": "Cuba", "attributes": { "weight": 3954.791666666667, "sourceWeight": "3954.791666666667", "direction": "Imp", "source_type": "primary", "targetWeight": "3954.791666666667" } }, { "key": "geid_107_6356", "source": "BritishAfrica", "target": "Cuba", "attributes": { "weight": 20, "sourceWeight": "20", "direction": "Imp", "source_type": "primary", "targetWeight": "20" } }, { "key": "geid_107_6357", "source": "FrenchAfrica", "target": "Cuba", "attributes": { "weight": 1497.7083333333335, "sourceWeight": "1497.7083333333335", "direction": "Imp", "source_type": "primary", "targetWeight": "1497.7083333333335" } }, { "key": "geid_107_6358", "source": "Arabia", "target": "Cuba", "attributes": { "weight": 80.625, "sourceWeight": "80.625", "direction": "Imp", "source_type": "primary", "targetWeight": "80.625" } }, { "key": "geid_107_6359", "source": "AlgeriaRegencyofAlgiers", "target": "Cuba", "attributes": { "weight": 8300.416666666668, "sourceWeight": "8300.416666666668", "direction": "Imp", "source_type": "primary", "targetWeight": "8300.416666666668" } }, { "key": "geid_107_6360", "source": "EgyptArabRepublicEgypt", "target": "Cuba", "attributes": { "weight": 15063.125, "sourceWeight": "15063.125", "direction": "Imp", "source_type": "primary", "targetWeight": "15063.125" } }, { "key": "geid_107_6361", "source": "IranPersia", "target": "Cuba", "attributes": { "weight": 1578.9583333333335, "sourceWeight": "1578.9583333333335", "direction": "Imp", "source_type": "primary", "targetWeight": "1578.9583333333335" } }, { "key": "geid_107_6362", "source": "CanaryIs", "target": "Cuba", "attributes": { "weight": 57520.41666666667, "sourceWeight": "57520.41666666667", "direction": "Imp", "source_type": "primary", "targetWeight": "57520.41666666667" } }, { "key": "geid_107_6363", "source": "Cuba", "target": "UnitedStatesofAmerica", "attributes": { "weight": 75471855.83333334, "sourceWeight": "75471855.83333334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6364", "source": "Cuba", "target": "NetherlandsAntilles", "attributes": { "weight": 3450.2083333333335, "sourceWeight": "3450.2083333333335", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6365", "source": "Cuba", "target": "BritishWestIndies", "attributes": { "weight": 194005.4166666667, "sourceWeight": "194005.4166666667", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6366", "source": "Cuba", "target": "ArgentinaLaPlata", "attributes": { "weight": 466618.75, "sourceWeight": "466618.75", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6367", "source": "Cuba", "target": "Bolivia", "attributes": { "weight": 2347.5, "sourceWeight": "2347.5", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6368", "source": "Cuba", "target": "Brazil", "attributes": { "weight": 14533.333333333334, "sourceWeight": "14533.333333333334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6369", "source": "Cuba", "target": "CanadaProvinceofCanada", "attributes": { "weight": 695515.625, "sourceWeight": "695515.625", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6370", "source": "Cuba", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 24485, "sourceWeight": "24485", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6371", "source": "Cuba", "target": "CostaRica", "attributes": { "weight": 4203.75, "sourceWeight": "4203.75", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6372", "source": "Cuba", "target": "Chile", "attributes": { "weight": 45553.333333333336, "sourceWeight": "45553.333333333336", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6373", "source": "Cuba", "target": "Guatemala", "attributes": { "weight": 1259.7916666666667, "sourceWeight": "1259.7916666666667", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6374", "source": "Cuba", "target": "Ecuador", "attributes": { "weight": 20.208333333333336, "sourceWeight": "20.208333333333336", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6375", "source": "Cuba", "target": "Haiti", "attributes": { "weight": 114.58333333333334, "sourceWeight": "114.58333333333334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6376", "source": "Cuba", "target": "Honduras", "attributes": { "weight": 108122.91666666667, "sourceWeight": "108122.91666666667", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6377", "source": "Cuba", "target": "FrenchWestIndies", "attributes": { "weight": 5208.75, "sourceWeight": "5208.75", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6378", "source": "Cuba", "target": "Mexico", "attributes": { "weight": 5399.791666666667, "sourceWeight": "5399.791666666667", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6379", "source": "Cuba", "target": "Nicaragua", "attributes": { "weight": 378.95833333333337, "sourceWeight": "378.95833333333337", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6380", "source": "Cuba", "target": "Panama", "attributes": { "weight": 15940.833333333334, "sourceWeight": "15940.833333333334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6381", "source": "Cuba", "target": "Paraguay", "attributes": { "weight": 78.75, "sourceWeight": "78.75", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6382", "source": "Cuba", "target": "Peru", "attributes": { "weight": 26146.458333333336, "sourceWeight": "26146.458333333336", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6383", "source": "Cuba", "target": "PuertoRico", "attributes": { "weight": 29606.041666666668, "sourceWeight": "29606.041666666668", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6384", "source": "Cuba", "target": "ElSalvador", "attributes": { "weight": 333.95833333333337, "sourceWeight": "333.95833333333337", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6385", "source": "Cuba", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 16857.083333333336, "sourceWeight": "16857.083333333336", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6386", "source": "Cuba", "target": "Uruguay", "attributes": { "weight": 164836.6666666667, "sourceWeight": "164836.6666666667", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6387", "source": "Cuba", "target": "Venezuela", "attributes": { "weight": 1469.375, "sourceWeight": "1469.375", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6388", "source": "Cuba", "target": "GermanyZollverein", "attributes": { "weight": 356817.5, "sourceWeight": "356817.5", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6389", "source": "Cuba", "target": "Austria", "attributes": { "weight": 3168.125, "sourceWeight": "3168.125", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6390", "source": "Cuba", "target": "Belgium", "attributes": { "weight": 61862.083333333336, "sourceWeight": "61862.083333333336", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6391", "source": "Cuba", "target": "Denmark", "attributes": { "weight": 16837.083333333336, "sourceWeight": "16837.083333333336", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6392", "source": "Cuba", "target": "Spain", "attributes": { "weight": 281337.2916666667, "sourceWeight": "281337.2916666667", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6393", "source": "Cuba", "target": "France", "attributes": { "weight": 885187.5, "sourceWeight": "885187.5", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6394", "source": "Cuba", "target": "Gibraltar", "attributes": { "weight": 5084.166666666667, "sourceWeight": "5084.166666666667", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6395", "source": "Cuba", "target": "Greece", "attributes": { "weight": 21268.333333333336, "sourceWeight": "21268.333333333336", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6396", "source": "Cuba", "target": "Netherlands", "attributes": { "weight": 886201.875, "sourceWeight": "886201.875", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6397", "source": "Cuba", "target": "Finland", "attributes": { "weight": 223.95833333333334, "sourceWeight": "223.95833333333334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6398", "source": "Cuba", "target": "Italy", "attributes": { "weight": 18941.666666666668, "sourceWeight": "18941.666666666668", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6399", "source": "Cuba", "target": "Norway", "attributes": { "weight": 7694.375, "sourceWeight": "7694.375", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6400", "source": "Cuba", "target": "Poland", "attributes": { "weight": 2531.041666666667, "sourceWeight": "2531.041666666667", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6401", "source": "Cuba", "target": "Portugal", "attributes": { "weight": 37031.04166666667, "sourceWeight": "37031.04166666667", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6402", "source": "Cuba", "target": "UnitedKingdom", "attributes": { "weight": 10262907.083333334, "sourceWeight": "10262907.083333334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6403", "source": "Cuba", "target": "Romania", "attributes": { "weight": 20.833333333333336, "sourceWeight": "20.833333333333336", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6404", "source": "Cuba", "target": "Sweden", "attributes": { "weight": 25590, "sourceWeight": "25590", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6405", "source": "Cuba", "target": "Switzerland", "attributes": { "weight": 7217.708333333334, "sourceWeight": "7217.708333333334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6406", "source": "Cuba", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 257529.58333333334, "sourceWeight": "257529.58333333334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6407", "source": "Cuba", "target": "India", "attributes": { "weight": 733.9583333333334, "sourceWeight": "733.9583333333334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6408", "source": "Cuba", "target": "Japan", "attributes": { "weight": 1033.125, "sourceWeight": "1033.125", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6409", "source": "Cuba", "target": "SpanishAfrica", "attributes": { "weight": 14096.666666666668, "sourceWeight": "14096.666666666668", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6410", "source": "Cuba", "target": "FrenchAfrica", "attributes": { "weight": 9735.208333333334, "sourceWeight": "9735.208333333334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6411", "source": "Cuba", "target": "BritishAfrica", "attributes": { "weight": 12375, "sourceWeight": "12375", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6412", "source": "Cuba", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 4291.25, "sourceWeight": "4291.25", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6413", "source": "Cuba", "target": "CanaryIs", "attributes": { "weight": 45040, "sourceWeight": "45040", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6414", "source": "Cuba", "target": "Australia", "attributes": { "weight": 73837.08333333334, "sourceWeight": "73837.08333333334", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6415", "source": "Albania", "target": "Italy", "attributes": { "weight": 311535.71752033953, "sourceWeight": "311535.71752033953", "direction": "Imp", "source_type": "primary", "targetWeight": "311535.71752033953" } }, { "key": "geid_107_6416", "source": "Belgium_Luxemburg", "target": "Italy", "attributes": { "weight": 4312343.956556649, "sourceWeight": "4312343.956556649", "direction": "Imp", "source_type": "primary", "targetWeight": "4312343.956556649" } }, { "key": "geid_107_6417", "source": "Bulgaria", "target": "Italy", "attributes": { "weight": 533177.2747868532, "sourceWeight": "533177.2747868532", "direction": "Imp", "source_type": "primary", "targetWeight": "533177.2747868532" } }, { "key": "geid_107_6418", "source": "Czechoslovakia", "target": "Italy", "attributes": { "weight": 3018002.2634782894, "sourceWeight": "3018002.2634782894", "direction": "Imp", "source_type": "primary", "targetWeight": "3018002.2634782894" } }, { "key": "geid_107_6419", "source": "Denmark", "target": "Italy", "attributes": { "weight": 725479.1308309908, "sourceWeight": "725479.1308309908", "direction": "Imp", "source_type": "primary", "targetWeight": "725479.1308309908" } }, { "key": "geid_107_6420", "source": "Ireland", "target": "Italy", "attributes": { "weight": 55659.574468281644, "sourceWeight": "55659.574468281644", "direction": "Imp", "source_type": "primary", "targetWeight": "55659.574468281644" } }, { "key": "geid_107_6421", "source": "Estonia", "target": "Italy", "attributes": { "weight": 60505.1154370629, "sourceWeight": "60505.1154370629", "direction": "Imp", "source_type": "primary", "targetWeight": "60505.1154370629" } }, { "key": "geid_107_6422", "source": "Finland", "target": "Italy", "attributes": { "weight": 33415.482118723696, "sourceWeight": "33415.482118723696", "direction": "Imp", "source_type": "primary", "targetWeight": "33415.482118723696" } }, { "key": "geid_107_6423", "source": "France", "target": "Italy", "attributes": { "weight": 14543955.364469644, "sourceWeight": "14543955.364469644", "direction": "Imp", "source_type": "primary", "targetWeight": "14543955.364469644" } }, { "key": "geid_107_6424", "source": "GermanyZollverein", "target": "Italy", "attributes": { "weight": 19648984.42741207, "sourceWeight": "19648984.42741207", "direction": "Imp", "source_type": "primary", "targetWeight": "19648984.42741207" } }, { "key": "geid_107_6425", "source": "Gibraltar", "target": "Italy", "attributes": { "weight": 276.32412856593726, "sourceWeight": "276.32412856593726", "direction": "Imp", "source_type": "primary", "targetWeight": "276.32412856593726" } }, { "key": "geid_107_6426", "source": "Greece", "target": "Italy", "attributes": { "weight": 662279.8551404101, "sourceWeight": "662279.8551404101", "direction": "Imp", "source_type": "primary", "targetWeight": "662279.8551404101" } }, { "key": "geid_107_6427", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Italy", "attributes": { "weight": 5260096.242662304, "sourceWeight": "5260096.242662304", "direction": "Imp", "source_type": "primary", "targetWeight": "5260096.242662304" } }, { "key": "geid_107_6428", "source": "Latvia", "target": "Italy", "attributes": { "weight": 51485.10638316052, "sourceWeight": "51485.10638316052", "direction": "Imp", "source_type": "primary", "targetWeight": "51485.10638316052" } }, { "key": "geid_107_6429", "source": "Lithuania", "target": "Italy", "attributes": { "weight": 2151.3807152633685, "sourceWeight": "2151.3807152633685", "direction": "Imp", "source_type": "primary", "targetWeight": "2151.3807152633685" } }, { "key": "geid_107_6430", "source": "Malta", "target": "Italy", "attributes": { "weight": 32872.70258046917, "sourceWeight": "32872.70258046917", "direction": "Imp", "source_type": "primary", "targetWeight": "32872.70258046917" } }, { "key": "geid_107_6431", "source": "Norway", "target": "Italy", "attributes": { "weight": 1383781.892263827, "sourceWeight": "1383781.892263827", "direction": "Imp", "source_type": "primary", "targetWeight": "1383781.892263827" } }, { "key": "geid_107_6432", "source": "Netherlands", "target": "Italy", "attributes": { "weight": 1448007.5147176527, "sourceWeight": "1448007.5147176527", "direction": "Imp", "source_type": "primary", "targetWeight": "1448007.5147176527" } }, { "key": "geid_107_6433", "source": "DanzigFreeCityofDanzig_Poland", "target": "Italy", "attributes": { "weight": 174419.73743837053, "sourceWeight": "174419.73743837053", "direction": "Imp", "source_type": "primary", "targetWeight": "174419.73743837053" } }, { "key": "geid_107_6434", "source": "Portugal", "target": "Italy", "attributes": { "weight": 361461.566320878, "sourceWeight": "361461.566320878", "direction": "Imp", "source_type": "primary", "targetWeight": "361461.566320878" } }, { "key": "geid_107_6435", "source": "UnitedKingdom", "target": "Italy", "attributes": { "weight": 21409771.11822861, "sourceWeight": "21409771.11822861", "direction": "Imp", "source_type": "primary", "targetWeight": "21409771.11822861" } }, { "key": "geid_107_6436", "source": "Romania", "target": "Italy", "attributes": { "weight": 1476616.9307431045, "sourceWeight": "1476616.9307431045", "direction": "Imp", "source_type": "primary", "targetWeight": "1476616.9307431045" } }, { "key": "geid_107_6437", "source": "Spain", "target": "Italy", "attributes": { "weight": 1711058.2163935476, "sourceWeight": "1711058.2163935476", "direction": "Imp", "source_type": "primary", "targetWeight": "1711058.2163935476" } }, { "key": "geid_107_6438", "source": "Sweden", "target": "Italy", "attributes": { "weight": 734568.2209170348, "sourceWeight": "734568.2209170348", "direction": "Imp", "source_type": "primary", "targetWeight": "734568.2209170348" } }, { "key": "geid_107_6439", "source": "Switzerland", "target": "Italy", "attributes": { "weight": 4028470.258049535, "sourceWeight": "4028470.258049535", "direction": "Imp", "source_type": "primary", "targetWeight": "4028470.258049535" } }, { "key": "geid_107_6440", "source": "TurkeyOttomanEmpire", "target": "Italy", "attributes": { "weight": 1237705.1154412196, "sourceWeight": "1237705.1154412196", "direction": "Imp", "source_type": "primary", "targetWeight": "1237705.1154412196" } }, { "key": "geid_107_6441", "source": "Hungary", "target": "Italy", "attributes": { "weight": 530591.6704409863, "sourceWeight": "530591.6704409863", "direction": "Imp", "source_type": "primary", "targetWeight": "530591.6704409863" } }, { "key": "geid_107_6442", "source": "RussiaUSSR", "target": "Italy", "attributes": { "weight": 1598554.8211917016, "sourceWeight": "1598554.8211917016", "direction": "Imp", "source_type": "primary", "targetWeight": "1598554.8211917016" } }, { "key": "geid_107_6443", "source": "Aden", "target": "Italy", "attributes": { "weight": 30622.63467643226, "sourceWeight": "30622.63467643226", "direction": "Imp", "source_type": "primary", "targetWeight": "30622.63467643226" } }, { "key": "geid_107_6444", "source": "PeoplesRepublicofChinaChina", "target": "Italy", "attributes": { "weight": 1850897.9628856664, "sourceWeight": "1850897.9628856664", "direction": "Imp", "source_type": "primary", "targetWeight": "1850897.9628856664" } }, { "key": "geid_107_6445", "source": "Cyprus", "target": "Italy", "attributes": { "weight": 65232.2317793159, "sourceWeight": "65232.2317793159", "direction": "Imp", "source_type": "primary", "targetWeight": "65232.2317793159" } }, { "key": "geid_107_6446", "source": "Philippines", "target": "Italy", "attributes": { "weight": 148622.90629296482, "sourceWeight": "148622.90629296482", "direction": "Imp", "source_type": "primary", "targetWeight": "148622.90629296482" } }, { "key": "geid_107_6447", "source": "Japan", "target": "Italy", "attributes": { "weight": 1900093.5264892806, "sourceWeight": "1900093.5264892806", "direction": "Imp", "source_type": "primary", "targetWeight": "1900093.5264892806" } }, { "key": "geid_107_6448", "source": "HongKong", "target": "Italy", "attributes": { "weight": 3236.9397917724077, "sourceWeight": "3236.9397917724077", "direction": "Imp", "source_type": "primary", "targetWeight": "3236.9397917724077" } }, { "key": "geid_107_6449", "source": "India", "target": "Italy", "attributes": { "weight": 14294296.51431032, "sourceWeight": "14294296.51431032", "direction": "Imp", "source_type": "primary", "targetWeight": "14294296.51431032" } }, { "key": "geid_107_6450", "source": "IndonesiaDutchEastIndies", "target": "Italy", "attributes": { "weight": 280814.3956551337, "sourceWeight": "280814.3956551337", "direction": "Imp", "source_type": "primary", "targetWeight": "280814.3956551337" } }, { "key": "geid_107_6451", "source": "FrenchIndochina", "target": "Italy", "attributes": { "weight": 13006.97148035376, "sourceWeight": "13006.97148035376", "direction": "Imp", "source_type": "primary", "targetWeight": "13006.97148035376" } }, { "key": "geid_107_6452", "source": "IraqMesopotamia", "target": "Italy", "attributes": { "weight": 1391.489361707041, "sourceWeight": "1391.489361707041", "direction": "Imp", "source_type": "primary", "targetWeight": "1391.489361707041" } }, { "key": "geid_107_6453", "source": "IranPersia", "target": "Italy", "attributes": { "weight": 934133.4540549056, "sourceWeight": "934133.4540549056", "direction": "Imp", "source_type": "primary", "targetWeight": "934133.4540549056" } }, { "key": "geid_107_6454", "source": "StraitsSettlements", "target": "Italy", "attributes": { "weight": 1182361.3399770134, "sourceWeight": "1182361.3399770134", "direction": "Imp", "source_type": "primary", "targetWeight": "1182361.3399770134" } }, { "key": "geid_107_6455", "source": "Palestine", "target": "Italy", "attributes": { "weight": 5891.625169780876, "sourceWeight": "5891.625169780876", "direction": "Imp", "source_type": "primary", "targetWeight": "5891.625169780876" } }, { "key": "geid_107_6456", "source": "ThailandSiam", "target": "Italy", "attributes": { "weight": 10806.247170703617, "sourceWeight": "10806.247170703617", "direction": "Imp", "source_type": "primary", "targetWeight": "10806.247170703617" } }, { "key": "geid_107_6457", "source": "WesternAsiaother", "target": "Italy", "attributes": { "weight": 118128.56496193817, "sourceWeight": "118128.56496193817", "direction": "Imp", "source_type": "primary", "targetWeight": "118128.56496193817" } }, { "key": "geid_107_6458", "source": "BritishEquatorialEastAfrica", "target": "Italy", "attributes": { "weight": 535259.5744699752, "sourceWeight": "535259.5744699752", "direction": "Imp", "source_type": "primary", "targetWeight": "535259.5744699752" } }, { "key": "geid_107_6459", "source": "FrenchEquatorialWestAfrica", "target": "Italy", "attributes": { "weight": 138981.1679497891, "sourceWeight": "138981.1679497891", "direction": "Imp", "source_type": "primary", "targetWeight": "138981.1679497891" } }, { "key": "geid_107_6460", "source": "PortugueseEquatorialWestAfrica", "target": "Italy", "attributes": { "weight": 183074.60389381077, "sourceWeight": "183074.60389381077", "direction": "Imp", "source_type": "primary", "targetWeight": "183074.60389381077" } }, { "key": "geid_107_6461", "source": "EquatorialGuineaSpanishGuinea", "target": "Italy", "attributes": { "weight": 59084.019918723796, "sourceWeight": "59084.019918723796", "direction": "Imp", "source_type": "primary", "targetWeight": "59084.019918723796" } }, { "key": "geid_107_6462", "source": "BritishSouthAfrica", "target": "Italy", "attributes": { "weight": 415285.5590779716, "sourceWeight": "415285.5590779716", "direction": "Imp", "source_type": "primary", "targetWeight": "415285.5590779716" } }, { "key": "geid_107_6463", "source": "AlgeriaRegencyofAlgiers", "target": "Italy", "attributes": { "weight": 313361.4305126502, "sourceWeight": "313361.4305126502", "direction": "Imp", "source_type": "primary", "targetWeight": "313361.4305126502" } }, { "key": "geid_107_6464", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Italy", "attributes": { "weight": 77074.69443214178, "sourceWeight": "77074.69443214178", "direction": "Imp", "source_type": "primary", "targetWeight": "77074.69443214178" } }, { "key": "geid_107_6465", "source": "EgyptArabRepublicEgypt", "target": "Italy", "attributes": { "weight": 4074912.449086367, "sourceWeight": "4074912.449086367", "direction": "Imp", "source_type": "primary", "targetWeight": "4074912.449086367" } }, { "key": "geid_107_6466", "source": "Morocco", "target": "Italy", "attributes": { "weight": 117733.81620684397, "sourceWeight": "117733.81620684397", "direction": "Imp", "source_type": "primary", "targetWeight": "117733.81620684397" } }, { "key": "geid_107_6467", "source": "TunisiaRegencyofTunis", "target": "Italy", "attributes": { "weight": 1211148.3929422577, "sourceWeight": "1211148.3929422577", "direction": "Imp", "source_type": "primary", "targetWeight": "1211148.3929422577" } }, { "key": "geid_107_6468", "source": "Zanzibar", "target": "Italy", "attributes": { "weight": 49580.44363983103, "sourceWeight": "49580.44363983103", "direction": "Imp", "source_type": "primary", "targetWeight": "49580.44363983103" } }, { "key": "geid_107_6469", "source": "EquatorialWestAfricaother", "target": "Italy", "attributes": { "weight": 3661.2947034986682, "sourceWeight": "3661.2947034986682", "direction": "Imp", "source_type": "primary", "targetWeight": "3661.2947034986682" } }, { "key": "geid_107_6470", "source": "ArgentinaLaPlata", "target": "Italy", "attributes": { "weight": 10918128.83661619, "sourceWeight": "10918128.83661619", "direction": "Imp", "source_type": "primary", "targetWeight": "10918128.83661619" } }, { "key": "geid_107_6471", "source": "Brazil", "target": "Italy", "attributes": { "weight": 4731359.89137026, "sourceWeight": "4731359.89137026", "direction": "Imp", "source_type": "primary", "targetWeight": "4731359.89137026" } }, { "key": "geid_107_6472", "source": "CanadaProvinceofCanada", "target": "Italy", "attributes": { "weight": 5726235.310115285, "sourceWeight": "5726235.310115285", "direction": "Imp", "source_type": "primary", "targetWeight": "5726235.310115285" } }, { "key": "geid_107_6473", "source": "Chile", "target": "Italy", "attributes": { "weight": 1449122.6799507937, "sourceWeight": "1449122.6799507937", "direction": "Imp", "source_type": "primary", "targetWeight": "1449122.6799507937" } }, { "key": "geid_107_6474", "source": "ColombiaNewGranadaGranColombia", "target": "Italy", "attributes": { "weight": 73956.17926689763, "sourceWeight": "73956.17926689763", "direction": "Imp", "source_type": "primary", "targetWeight": "73956.17926689763" } }, { "key": "geid_107_6475", "source": "BritishCentralAmerica", "target": "Italy", "attributes": { "weight": 69288.27523790876, "sourceWeight": "69288.27523790876", "direction": "Imp", "source_type": "primary", "targetWeight": "69288.27523790876" } }, { "key": "geid_107_6476", "source": "CostaRica", "target": "Italy", "attributes": { "weight": 424.35491172626075, "sourceWeight": "424.35491172626075", "direction": "Imp", "source_type": "primary", "targetWeight": "424.35491172626075" } }, { "key": "geid_107_6477", "source": "Cuba", "target": "Italy", "attributes": { "weight": 31382.526029988585, "sourceWeight": "31382.526029988585", "direction": "Imp", "source_type": "primary", "targetWeight": "31382.526029988585" } }, { "key": "geid_107_6478", "source": "Ecuador", "target": "Italy", "attributes": { "weight": 185304.93436009297, "sourceWeight": "185304.93436009297", "direction": "Imp", "source_type": "primary", "targetWeight": "185304.93436009297" } }, { "key": "geid_107_6479", "source": "Guatemala", "target": "Italy", "attributes": { "weight": 4618.560434602094, "sourceWeight": "4618.560434602094", "direction": "Imp", "source_type": "primary", "targetWeight": "4618.560434602094" } }, { "key": "geid_107_6480", "source": "Haiti", "target": "Italy", "attributes": { "weight": 87575.0113176474, "sourceWeight": "87575.0113176474", "direction": "Imp", "source_type": "primary", "targetWeight": "87575.0113176474" } }, { "key": "geid_107_6481", "source": "Mexico", "target": "Italy", "attributes": { "weight": 322134.7215946187, "sourceWeight": "322134.7215946187", "direction": "Imp", "source_type": "primary", "targetWeight": "322134.7215946187" } }, { "key": "geid_107_6482", "source": "Nicaragua", "target": "Italy", "attributes": { "weight": 6839.022182006946, "sourceWeight": "6839.022182006946", "direction": "Imp", "source_type": "primary", "targetWeight": "6839.022182006946" } }, { "key": "geid_107_6483", "source": "Panama", "target": "Italy", "attributes": { "weight": 34866.183793694865, "sourceWeight": "34866.183793694865", "direction": "Imp", "source_type": "primary", "targetWeight": "34866.183793694865" } }, { "key": "geid_107_6484", "source": "Paraguay", "target": "Italy", "attributes": { "weight": 4401.448619300286, "sourceWeight": "4401.448619300286", "direction": "Imp", "source_type": "primary", "targetWeight": "4401.448619300286" } }, { "key": "geid_107_6485", "source": "Peru", "target": "Italy", "attributes": { "weight": 6029.787234063845, "sourceWeight": "6029.787234063845", "direction": "Imp", "source_type": "primary", "targetWeight": "6029.787234063845" } }, { "key": "geid_107_6486", "source": "PuertoRico", "target": "Italy", "attributes": { "weight": 27306.745133641012, "sourceWeight": "27306.745133641012", "direction": "Imp", "source_type": "primary", "targetWeight": "27306.745133641012" } }, { "key": "geid_107_6487", "source": "ElSalvador", "target": "Italy", "attributes": { "weight": 52995.02037139582, "sourceWeight": "52995.02037139582", "direction": "Imp", "source_type": "primary", "targetWeight": "52995.02037139582" } }, { "key": "geid_107_6488", "source": "UnitedStatesofAmerica", "target": "Italy", "attributes": { "weight": 45872696.87657665, "sourceWeight": "45872696.87657665", "direction": "Imp", "source_type": "primary", "targetWeight": "45872696.87657665" } }, { "key": "geid_107_6489", "source": "Uruguay", "target": "Italy", "attributes": { "weight": 954236.0344080775, "sourceWeight": "954236.0344080775", "direction": "Imp", "source_type": "primary", "targetWeight": "954236.0344080775" } }, { "key": "geid_107_6490", "source": "Venezuela", "target": "Italy", "attributes": { "weight": 59044.54504321438, "sourceWeight": "59044.54504321438", "direction": "Imp", "source_type": "primary", "targetWeight": "59044.54504321438" } }, { "key": "geid_107_6491", "source": "NorthernAmericaother", "target": "Italy", "attributes": { "weight": 138083.11453194977, "sourceWeight": "138083.11453194977", "direction": "Imp", "source_type": "primary", "targetWeight": "138083.11453194977" } }, { "key": "geid_107_6492", "source": "Australia", "target": "Italy", "attributes": { "weight": 5833528.021749888, "sourceWeight": "5833528.021749888", "direction": "Imp", "source_type": "primary", "targetWeight": "5833528.021749888" } }, { "key": "geid_107_6493", "source": "NewZealand", "target": "Italy", "attributes": { "weight": 41645.993662437686, "sourceWeight": "41645.993662437686", "direction": "Imp", "source_type": "primary", "targetWeight": "41645.993662437686" } }, { "key": "geid_107_6494", "source": "Oceaniaother", "target": "Italy", "attributes": { "weight": 355.27387958477647, "sourceWeight": "355.27387958477647", "direction": "Imp", "source_type": "primary", "targetWeight": "355.27387958477647" } }, { "key": "geid_107_6495", "source": "ItalianColonies", "target": "Italy", "attributes": { "weight": 792556.8130403721, "sourceWeight": "792556.8130403721", "direction": "Imp", "source_type": "primary", "targetWeight": "792556.8130403721" } }, { "key": "geid_107_6496", "source": "Italy", "target": "Albania", "attributes": { "weight": 380537.799910805, "sourceWeight": "380537.799910805", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6497", "source": "Italy", "target": "Belgium_Luxemburg", "attributes": { "weight": 2965372.3857053556, "sourceWeight": "2965372.3857053556", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6498", "source": "Italy", "target": "Bulgaria", "attributes": { "weight": 1213428.0670029267, "sourceWeight": "1213428.0670029267", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6499", "source": "Italy", "target": "Czechoslovakia", "attributes": { "weight": 1391203.1688595978, "sourceWeight": "1391203.1688595978", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6500", "source": "Italy", "target": "Denmark", "attributes": { "weight": 485442.2815770876, "sourceWeight": "485442.2815770876", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6501", "source": "Italy", "target": "Ireland", "attributes": { "weight": 174834.22363121944, "sourceWeight": "174834.22363121944", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6502", "source": "Italy", "target": "Estonia", "attributes": { "weight": 177.63693979238823, "sourceWeight": "177.63693979238823", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6503", "source": "Italy", "target": "Finland", "attributes": { "weight": 37402.44454517508, "sourceWeight": "37402.44454517508", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6504", "source": "Italy", "target": "France", "attributes": { "weight": 17990427.795446053, "sourceWeight": "17990427.795446053", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6505", "source": "Italy", "target": "GermanyZollverein", "attributes": { "weight": 22208111.00053111, "sourceWeight": "22208111.00053111", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6506", "source": "Italy", "target": "Gibraltar", "attributes": { "weight": 38241.28564975024, "sourceWeight": "38241.28564975024", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6507", "source": "Italy", "target": "Greece", "attributes": { "weight": 3219827.4332390744, "sourceWeight": "3219827.4332390744", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6508", "source": "Italy", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 3667413.3092026287, "sourceWeight": "3667413.3092026287", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6509", "source": "Italy", "target": "Latvia", "attributes": { "weight": 12701.041195155758, "sourceWeight": "12701.041195155758", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6510", "source": "Italy", "target": "Lithuania", "attributes": { "weight": 2210.593028527498, "sourceWeight": "2210.593028527498", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6511", "source": "Italy", "target": "Malta", "attributes": { "weight": 459635.58171280456, "sourceWeight": "459635.58171280456", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6512", "source": "Italy", "target": "Norway", "attributes": { "weight": 421522.5894084599, "sourceWeight": "421522.5894084599", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6513", "source": "Italy", "target": "Netherlands", "attributes": { "weight": 1223089.542783857, "sourceWeight": "1223089.542783857", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6514", "source": "Italy", "target": "DanzigFreeCityofDanzig_Poland", "attributes": { "weight": 1113448.076056444, "sourceWeight": "1113448.076056444", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6515", "source": "Italy", "target": "Portugal", "attributes": { "weight": 322539.33906859026, "sourceWeight": "322539.33906859026", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6516", "source": "Italy", "target": "UnitedKingdom", "attributes": { "weight": 14729141.874203209, "sourceWeight": "14729141.874203209", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6517", "source": "Italy", "target": "Romania", "attributes": { "weight": 2449958.804897741, "sourceWeight": "2449958.804897741", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6518", "source": "Italy", "target": "Spain", "attributes": { "weight": 1811975.7356333788, "sourceWeight": "1811975.7356333788", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6519", "source": "Italy", "target": "Sweden", "attributes": { "weight": 473540.6066109976, "sourceWeight": "473540.6066109976", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6520", "source": "Italy", "target": "Switzerland", "attributes": { "weight": 15904901.041251272, "sourceWeight": "15904901.041251272", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6521", "source": "Italy", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 4778167.225005555, "sourceWeight": "4778167.225005555", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6522", "source": "Italy", "target": "Hungary", "attributes": { "weight": 517199.8189244157, "sourceWeight": "517199.8189244157", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6523", "source": "Italy", "target": "RussiaUSSR", "attributes": { "weight": 140579.90040792056, "sourceWeight": "140579.90040792056", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6524", "source": "Italy", "target": "Aden", "attributes": { "weight": 13431.32639208002, "sourceWeight": "13431.32639208002", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6525", "source": "Italy", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 552075.8714369879, "sourceWeight": "552075.8714369879", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6526", "source": "Italy", "target": "Cyprus", "attributes": { "weight": 51307.46944336813, "sourceWeight": "51307.46944336813", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6527", "source": "Italy", "target": "Philippines", "attributes": { "weight": 60189.31643298754, "sourceWeight": "60189.31643298754", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6528", "source": "Italy", "target": "Japan", "attributes": { "weight": 335980.5341795476, "sourceWeight": "335980.5341795476", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6529", "source": "Italy", "target": "HongKong", "attributes": { "weight": 112661.29470388356, "sourceWeight": "112661.29470388356", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6530", "source": "Italy", "target": "India", "attributes": { "weight": 2396628.2480845153, "sourceWeight": "2396628.2480845153", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6531", "source": "Italy", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 1025024.3549153442, "sourceWeight": "1025024.3549153442", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6532", "source": "Italy", "target": "FrenchIndochina", "attributes": { "weight": 23073.06473525576, "sourceWeight": "23073.06473525576", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6533", "source": "Italy", "target": "IraqMesopotamia", "attributes": { "weight": 118523.31371703236, "sourceWeight": "118523.31371703236", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6534", "source": "Italy", "target": "IranPersia", "attributes": { "weight": 17132.095971088107, "sourceWeight": "17132.095971088107", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6535", "source": "Italy", "target": "StraitsSettlements", "attributes": { "weight": 246392.30421091983, "sourceWeight": "246392.30421091983", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6536", "source": "Italy", "target": "Palestine", "attributes": { "weight": 160050.8827529418, "sourceWeight": "160050.8827529418", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6537", "source": "Italy", "target": "ThailandSiam", "attributes": { "weight": 83923.58533302609, "sourceWeight": "83923.58533302609", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6538", "source": "Italy", "target": "WesternAsiaother", "attributes": { "weight": 5950.837483045006, "sourceWeight": "5950.837483045006", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6539", "source": "Italy", "target": "BritishEquatorialEastAfrica", "attributes": { "weight": 93634.40470834331, "sourceWeight": "93634.40470834331", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6540", "source": "Italy", "target": "FrenchEquatorialWestAfrica", "attributes": { "weight": 120694.43187005044, "sourceWeight": "120694.43187005044", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6541", "source": "Italy", "target": "PortugueseEquatorialWestAfrica", "attributes": { "weight": 29793.662290734446, "sourceWeight": "29793.662290734446", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6542", "source": "Italy", "target": "EquatorialGuineaSpanishGuinea", "attributes": { "weight": 118819.37528335302, "sourceWeight": "118819.37528335302", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6543", "source": "Italy", "target": "BritishSouthAfrica", "attributes": { "weight": 490366.7722968877, "sourceWeight": "490366.7722968877", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6544", "source": "Italy", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 177666.54594902028, "sourceWeight": "177666.54594902028", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6545", "source": "Italy", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 6217.292892733588, "sourceWeight": "6217.292892733588", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6546", "source": "Italy", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 4814444.635598712, "sourceWeight": "4814444.635598712", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6547", "source": "Italy", "target": "Morocco", "attributes": { "weight": 355964.6899061913, "sourceWeight": "355964.6899061913", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6548", "source": "Italy", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 463671.8877336427, "sourceWeight": "463671.8877336427", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6549", "source": "Italy", "target": "Zanzibar", "attributes": { "weight": 5003.440470818935, "sourceWeight": "5003.440470818935", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6550", "source": "Italy", "target": "EquatorialWestAfricaother", "attributes": { "weight": 1105.296514263749, "sourceWeight": "1105.296514263749", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6551", "source": "Italy", "target": "ArgentinaLaPlata", "attributes": { "weight": 8232643.186991496, "sourceWeight": "8232643.186991496", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6552", "source": "Italy", "target": "Bolivia", "attributes": { "weight": 29497.6007244138, "sourceWeight": "29497.6007244138", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6553", "source": "Italy", "target": "Brazil", "attributes": { "weight": 2282822.1819908586, "sourceWeight": "2282822.1819908586", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6554", "source": "Italy", "target": "CanadaProvinceofCanada", "attributes": { "weight": 127148.57401584055, "sourceWeight": "127148.57401584055", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6555", "source": "Italy", "target": "Chile", "attributes": { "weight": 793435.1290204567, "sourceWeight": "793435.1290204567", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6556", "source": "Italy", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 389962.42643867893, "sourceWeight": "389962.42643867893", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6557", "source": "Italy", "target": "BritishCentralAmerica", "attributes": { "weight": 18711.090991464895, "sourceWeight": "18711.090991464895", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6558", "source": "Italy", "target": "CostaRica", "attributes": { "weight": 28836.396559631023, "sourceWeight": "28836.396559631023", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6559", "source": "Italy", "target": "Cuba", "attributes": { "weight": 482007.96740776807, "sourceWeight": "482007.96740776807", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6560", "source": "Italy", "target": "Ecuador", "attributes": { "weight": 155126.3920331417, "sourceWeight": "155126.3920331417", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6561", "source": "Italy", "target": "Guatemala", "attributes": { "weight": 27385.69488465985, "sourceWeight": "27385.69488465985", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6562", "source": "Italy", "target": "Haiti", "attributes": { "weight": 64265.09732933512, "sourceWeight": "64265.09732933512", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6563", "source": "Italy", "target": "Honduras", "attributes": { "weight": 6197.5554549788785, "sourceWeight": "6197.5554549788785", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6564", "source": "Italy", "target": "Mexico", "attributes": { "weight": 149412.4038031532, "sourceWeight": "149412.4038031532", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6565", "source": "Italy", "target": "Nicaragua", "attributes": { "weight": 13964.237211457186, "sourceWeight": "13964.237211457186", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6566", "source": "Italy", "target": "Panama", "attributes": { "weight": 98716.79493018107, "sourceWeight": "98716.79493018107", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6567", "source": "Italy", "target": "Paraguay", "attributes": { "weight": 5289.6333182622275, "sourceWeight": "5289.6333182622275", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6568", "source": "Italy", "target": "Peru", "attributes": { "weight": 536108.2842934277, "sourceWeight": "536108.2842934277", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6569", "source": "Italy", "target": "PuertoRico", "attributes": { "weight": 5792.937981007327, "sourceWeight": "5792.937981007327", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6570", "source": "Italy", "target": "ElSalvador", "attributes": { "weight": 22145.405160784398, "sourceWeight": "22145.405160784398", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6571", "source": "Italy", "target": "UnitedStatesofAmerica", "attributes": { "weight": 12223750.475371366, "sourceWeight": "12223750.475371366", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6572", "source": "Italy", "target": "Uruguay", "attributes": { "weight": 760513.0828456008, "sourceWeight": "760513.0828456008", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6573", "source": "Italy", "target": "Venezuela", "attributes": { "weight": 196584.88003690963, "sourceWeight": "196584.88003690963", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6574", "source": "Italy", "target": "NorthernAmericaother", "attributes": { "weight": 5881.756450903521, "sourceWeight": "5881.756450903521", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6575", "source": "Italy", "target": "Australia", "attributes": { "weight": 940636.9397950824, "sourceWeight": "940636.9397950824", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6576", "source": "Italy", "target": "NewZealand", "attributes": { "weight": 45228.33861491751, "sourceWeight": "45228.33861491751", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6577", "source": "Italy", "target": "Oceaniaother", "attributes": { "weight": 1302.670891810847, "sourceWeight": "1302.670891810847", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6578", "source": "Italy", "target": "ItalianColonies", "attributes": { "weight": 2527645.359900279, "sourceWeight": "2527645.359900279", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6579", "source": "Italy", "target": "Trieste", "attributes": { "weight": 575119.3300156116, "sourceWeight": "575119.3300156116", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6580", "source": "Italy", "target": "***NA", "attributes": { "weight": 69673.1552741256, "sourceWeight": "69673.1552741256", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6581", "source": "Belgium_Luxemburg", "target": "Czechoslovakia", "attributes": { "weight": 756803.870531707, "sourceWeight": "756803.870531707", "direction": "Imp", "source_type": "primary", "targetWeight": "756803.870531707" } }, { "key": "geid_107_6582", "source": "UnitedKingdom", "target": "Czechoslovakia", "attributes": { "weight": 2991685.9438741286, "sourceWeight": "2991685.9438741286", "direction": "Imp", "source_type": "primary", "targetWeight": "2991685.9438741286" } }, { "key": "geid_107_6583", "source": "Bulgaria", "target": "Czechoslovakia", "attributes": { "weight": 1028279.9909489224, "sourceWeight": "1028279.9909489224", "direction": "Imp", "source_type": "primary", "targetWeight": "1028279.9909489224" } }, { "key": "geid_107_6584", "source": "Denmark", "target": "Czechoslovakia", "attributes": { "weight": 2150047.8723462652, "sourceWeight": "2150047.8723462652", "direction": "Imp", "source_type": "primary", "targetWeight": "2150047.8723462652" } }, { "key": "geid_107_6585", "source": "France", "target": "Czechoslovakia", "attributes": { "weight": 3577479.2892808802, "sourceWeight": "3577479.2892808802", "direction": "Imp", "source_type": "primary", "targetWeight": "3577479.2892808802" } }, { "key": "geid_107_6586", "source": "Hamburg", "target": "Czechoslovakia", "attributes": { "weight": 4671997.397024912, "sourceWeight": "4671997.397024912", "direction": "Imp", "source_type": "primary", "targetWeight": "4671997.397024912" } }, { "key": "geid_107_6587", "source": "Italy", "target": "Czechoslovakia", "attributes": { "weight": 6604861.702145599, "sourceWeight": "6604861.702145599", "direction": "Imp", "source_type": "primary", "targetWeight": "6604861.702145599" } }, { "key": "geid_107_6588", "source": "Hungary", "target": "Czechoslovakia", "attributes": { "weight": 5874005.545511654, "sourceWeight": "5874005.545511654", "direction": "Imp", "source_type": "primary", "targetWeight": "5874005.545511654" } }, { "key": "geid_107_6589", "source": "GermanyZollverein", "target": "Czechoslovakia", "attributes": { "weight": 37282644.86202974, "sourceWeight": "37282644.86202974", "direction": "Imp", "source_type": "primary", "targetWeight": "37282644.86202974" } }, { "key": "geid_107_6590", "source": "Netherlands", "target": "Czechoslovakia", "attributes": { "weight": 3195288.026264903, "sourceWeight": "3195288.026264903", "direction": "Imp", "source_type": "primary", "targetWeight": "3195288.026264903" } }, { "key": "geid_107_6591", "source": "Norway", "target": "Czechoslovakia", "attributes": { "weight": 95137.16613878262, "sourceWeight": "95137.16613878262", "direction": "Imp", "source_type": "primary", "targetWeight": "95137.16613878262" } }, { "key": "geid_107_6592", "source": "Poland", "target": "Czechoslovakia", "attributes": { "weight": 4827663.6487229355, "sourceWeight": "4827663.6487229355", "direction": "Imp", "source_type": "primary", "targetWeight": "4827663.6487229355" } }, { "key": "geid_107_6593", "source": "Austria", "target": "Czechoslovakia", "attributes": { "weight": 8305338.388433604, "sourceWeight": "8305338.388433604", "direction": "Imp", "source_type": "primary", "targetWeight": "8305338.388433604" } }, { "key": "geid_107_6594", "source": "Romania", "target": "Czechoslovakia", "attributes": { "weight": 3119120.8691800428, "sourceWeight": "3119120.8691800428", "direction": "Imp", "source_type": "primary", "targetWeight": "3119120.8691800428" } }, { "key": "geid_107_6595", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Czechoslovakia", "attributes": { "weight": 2789646.3331900123, "sourceWeight": "2789646.3331900123", "direction": "Imp", "source_type": "primary", "targetWeight": "2789646.3331900123" } }, { "key": "geid_107_6596", "source": "RussiaUSSR", "target": "Czechoslovakia", "attributes": { "weight": 536949.411499874, "sourceWeight": "536949.411499874", "direction": "Imp", "source_type": "primary", "targetWeight": "536949.411499874" } }, { "key": "geid_107_6597", "source": "Spain", "target": "Czechoslovakia", "attributes": { "weight": 121952.91987357705, "sourceWeight": "121952.91987357705", "direction": "Imp", "source_type": "primary", "targetWeight": "121952.91987357705" } }, { "key": "geid_107_6598", "source": "Sweden", "target": "Czechoslovakia", "attributes": { "weight": 1225799.1172509526, "sourceWeight": "1225799.1172509526", "direction": "Imp", "source_type": "primary", "targetWeight": "1225799.1172509526" } }, { "key": "geid_107_6599", "source": "Switzerland", "target": "Czechoslovakia", "attributes": { "weight": 2465713.89769796, "sourceWeight": "2465713.89769796", "direction": "Imp", "source_type": "primary", "targetWeight": "2465713.89769796" } }, { "key": "geid_107_6600", "source": "Europeother", "target": "Czechoslovakia", "attributes": { "weight": 5606128.451803366, "sourceWeight": "5606128.451803366", "direction": "Imp", "source_type": "primary", "targetWeight": "5606128.451803366" } }, { "key": "geid_107_6601", "source": "PeoplesRepublicofChinaChina", "target": "Czechoslovakia", "attributes": { "weight": 16673.042100543247, "sourceWeight": "16673.042100543247", "direction": "Imp", "source_type": "primary", "targetWeight": "16673.042100543247" } }, { "key": "geid_107_6602", "source": "Japan", "target": "Czechoslovakia", "attributes": { "weight": 6864.191942073872, "sourceWeight": "6864.191942073872", "direction": "Imp", "source_type": "primary", "targetWeight": "6864.191942073872" } }, { "key": "geid_107_6603", "source": "TurkeyOttomanEmpire", "target": "Czechoslovakia", "attributes": { "weight": 205518.44726176237, "sourceWeight": "205518.44726176237", "direction": "Imp", "source_type": "primary", "targetWeight": "205518.44726176237" } }, { "key": "geid_107_6604", "source": "BritishAsiaother", "target": "Czechoslovakia", "attributes": { "weight": 1080515.9574497433, "sourceWeight": "1080515.9574497433", "direction": "Imp", "source_type": "primary", "targetWeight": "1080515.9574497433" } }, { "key": "geid_107_6605", "source": "FrenchAsia", "target": "Czechoslovakia", "attributes": { "weight": 994.9071978297733, "sourceWeight": "994.9071978297733", "direction": "Imp", "source_type": "primary", "targetWeight": "994.9071978297733" } }, { "key": "geid_107_6606", "source": "DutchAsia", "target": "Czechoslovakia", "attributes": { "weight": 80667.60977839927, "sourceWeight": "80667.60977839927", "direction": "Imp", "source_type": "primary", "targetWeight": "80667.60977839927" } }, { "key": "geid_107_6607", "source": "Asiaother", "target": "Czechoslovakia", "attributes": { "weight": 79819.6016299135, "sourceWeight": "79819.6016299135", "direction": "Imp", "source_type": "primary", "targetWeight": "79819.6016299135" } }, { "key": "geid_107_6608", "source": "EgyptArabRepublicEgypt", "target": "Czechoslovakia", "attributes": { "weight": 211808.39746549155, "sourceWeight": "211808.39746549155", "direction": "Imp", "source_type": "primary", "targetWeight": "211808.39746549155" } }, { "key": "geid_107_6609", "source": "BritishAfrica", "target": "Czechoslovakia", "attributes": { "weight": 42841.104572320975, "sourceWeight": "42841.104572320975", "direction": "Imp", "source_type": "primary", "targetWeight": "42841.104572320975" } }, { "key": "geid_107_6610", "source": "FrenchAfricaother", "target": "Czechoslovakia", "attributes": { "weight": 51187.64146686606, "sourceWeight": "51187.64146686606", "direction": "Imp", "source_type": "primary", "targetWeight": "51187.64146686606" } }, { "key": "geid_107_6611", "source": "Africaother", "target": "Czechoslovakia", "attributes": { "weight": 5395.2014486339385, "sourceWeight": "5395.2014486339385", "direction": "Imp", "source_type": "primary", "targetWeight": "5395.2014486339385" } }, { "key": "geid_107_6612", "source": "ArgentinaLaPlata", "target": "Czechoslovakia", "attributes": { "weight": 513679.2666378823, "sourceWeight": "513679.2666378823", "direction": "Imp", "source_type": "primary", "targetWeight": "513679.2666378823" } }, { "key": "geid_107_6613", "source": "Brazil", "target": "Czechoslovakia", "attributes": { "weight": 111583.18243579424, "sourceWeight": "111583.18243579424", "direction": "Imp", "source_type": "primary", "targetWeight": "111583.18243579424" } }, { "key": "geid_107_6614", "source": "Chile", "target": "Czechoslovakia", "attributes": { "weight": 152574.69443228404, "sourceWeight": "152574.69443228404", "direction": "Imp", "source_type": "primary", "targetWeight": "152574.69443228404" } }, { "key": "geid_107_6615", "source": "UnitedStatesofAmerica", "target": "Czechoslovakia", "attributes": { "weight": 5938941.602551214, "sourceWeight": "5938941.602551214", "direction": "Imp", "source_type": "primary", "targetWeight": "5938941.602551214" } }, { "key": "geid_107_6616", "source": "Americaother", "target": "Czechoslovakia", "attributes": { "weight": 104572.09144437638, "sourceWeight": "104572.09144437638", "direction": "Imp", "source_type": "primary", "targetWeight": "104572.09144437638" } }, { "key": "geid_107_6617", "source": "Australia_Oceania", "target": "Czechoslovakia", "attributes": { "weight": 35309.1896786835, "sourceWeight": "35309.1896786835", "direction": "Imp", "source_type": "primary", "targetWeight": "35309.1896786835" } }, { "key": "geid_107_6618", "source": "Czechoslovakia", "target": "Belgium_Luxemburg", "attributes": { "weight": 676797.3064753556, "sourceWeight": "676797.3064753556", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6619", "source": "Czechoslovakia", "target": "UnitedKingdom", "attributes": { "weight": 10591595.06566933, "sourceWeight": "10591595.06566933", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6620", "source": "Czechoslovakia", "target": "Bulgaria", "attributes": { "weight": 732772.5215049328, "sourceWeight": "732772.5215049328", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6621", "source": "Czechoslovakia", "target": "Denmark", "attributes": { "weight": 857696.8085129679, "sourceWeight": "857696.8085129679", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6622", "source": "Czechoslovakia", "target": "France", "attributes": { "weight": 1943120.5296567036, "sourceWeight": "1943120.5296567036", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6623", "source": "Czechoslovakia", "target": "Hamburg", "attributes": { "weight": 5388597.668642974, "sourceWeight": "5388597.668642974", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6624", "source": "Czechoslovakia", "target": "Italy", "attributes": { "weight": 5553405.047547904, "sourceWeight": "5553405.047547904", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6625", "source": "Czechoslovakia", "target": "Hungary", "attributes": { "weight": 7577159.800835429, "sourceWeight": "7577159.800835429", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6626", "source": "Czechoslovakia", "target": "GermanyZollverein", "attributes": { "weight": 22165757.809023537, "sourceWeight": "22165757.809023537", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6627", "source": "Czechoslovakia", "target": "Netherlands", "attributes": { "weight": 1681413.196020864, "sourceWeight": "1681413.196020864", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6628", "source": "Czechoslovakia", "target": "Norway", "attributes": { "weight": 398897.6912640984, "sourceWeight": "398897.6912640984", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6629", "source": "Czechoslovakia", "target": "Poland", "attributes": { "weight": 3727576.731562863, "sourceWeight": "3727576.731562863", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6630", "source": "Czechoslovakia", "target": "Austria", "attributes": { "weight": 23528934.246329185, "sourceWeight": "23528934.246329185", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6631", "source": "Czechoslovakia", "target": "Romania", "attributes": { "weight": 5316683.906759574, "sourceWeight": "5316683.906759574", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6632", "source": "Czechoslovakia", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 5539416.251712646, "sourceWeight": "5539416.251712646", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6633", "source": "Czechoslovakia", "target": "RussiaUSSR", "attributes": { "weight": 485047.30647483486, "sourceWeight": "485047.30647483486", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6634", "source": "Czechoslovakia", "target": "Spain", "attributes": { "weight": 162537.12086961305, "sourceWeight": "162537.12086961305", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6635", "source": "Czechoslovakia", "target": "Sweden", "attributes": { "weight": 1201841.2177488506, "sourceWeight": "1201841.2177488506", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6636", "source": "Czechoslovakia", "target": "Switzerland", "attributes": { "weight": 3007864.8709905148, "sourceWeight": "3007864.8709905148", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6637", "source": "Czechoslovakia", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 847106.7225011691, "sourceWeight": "847106.7225011691", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6638", "source": "Czechoslovakia", "target": "Europeother", "attributes": { "weight": 2374222.4988747146, "sourceWeight": "2374222.4988747146", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6639", "source": "Czechoslovakia", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 244039.38433746682, "sourceWeight": "244039.38433746682", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6640", "source": "Czechoslovakia", "target": "Japan", "attributes": { "weight": 692896.1068375543, "sourceWeight": "692896.1068375543", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6641", "source": "Czechoslovakia", "target": "BritishAsia", "attributes": { "weight": 1232569.8279798077, "sourceWeight": "1232569.8279798077", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6642", "source": "Czechoslovakia", "target": "FrenchAsia", "attributes": { "weight": 72942.05522880834, "sourceWeight": "72942.05522880834", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6643", "source": "Czechoslovakia", "target": "DutchAsia", "attributes": { "weight": 79245.35989156879, "sourceWeight": "79245.35989156879", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6644", "source": "Czechoslovakia", "target": "Asiaother", "attributes": { "weight": 127661.95110944589, "sourceWeight": "127661.95110944589", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6645", "source": "Czechoslovakia", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 802596.310549939, "sourceWeight": "802596.310549939", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6646", "source": "Czechoslovakia", "target": "BritishAfrica", "attributes": { "weight": 152547.98551422148, "sourceWeight": "152547.98551422148", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6647", "source": "Czechoslovakia", "target": "FrenchAfrica", "attributes": { "weight": 128449.86419229093, "sourceWeight": "128449.86419229093", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6648", "source": "Czechoslovakia", "target": "Africaother", "attributes": { "weight": 32351.177003256722, "sourceWeight": "32351.177003256722", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6649", "source": "Czechoslovakia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 4801135.015857314, "sourceWeight": "4801135.015857314", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6650", "source": "Czechoslovakia", "target": "ArgentinaLaPlata", "attributes": { "weight": 730321.9782726944, "sourceWeight": "730321.9782726944", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6651", "source": "Czechoslovakia", "target": "Brazil", "attributes": { "weight": 165468.42462697727, "sourceWeight": "165468.42462697727", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6652", "source": "Czechoslovakia", "target": "Chile", "attributes": { "weight": 76561.1136262831, "sourceWeight": "76561.1136262831", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6653", "source": "Czechoslovakia", "target": "Americaother", "attributes": { "weight": 519014.3730208755, "sourceWeight": "519014.3730208755", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6654", "source": "Czechoslovakia", "target": "Australia_Oceania", "attributes": { "weight": 132863.5129021264, "sourceWeight": "132863.5129021264", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6655", "source": "Austria", "target": "Bulgaria", "attributes": { "weight": 959923.9063056732, "sourceWeight": "959923.9063056732", "direction": "Imp", "source_type": "primary", "targetWeight": "959923.9063056732" } }, { "key": "geid_107_6656", "source": "UnitedKingdom", "target": "Bulgaria", "attributes": { "weight": 1177204.361273402, "sourceWeight": "1177204.361273402", "direction": "Imp", "source_type": "primary", "targetWeight": "1177204.361273402" } }, { "key": "geid_107_6657", "source": "Belgium", "target": "Bulgaria", "attributes": { "weight": 498888.84658749803, "sourceWeight": "498888.84658749803", "direction": "Imp", "source_type": "primary", "targetWeight": "498888.84658749803" } }, { "key": "geid_107_6658", "source": "GermanyZollverein", "target": "Bulgaria", "attributes": { "weight": 1832215.6768954685, "sourceWeight": "1832215.6768954685", "direction": "Imp", "source_type": "primary", "targetWeight": "1832215.6768954685" } }, { "key": "geid_107_6659", "source": "Greece", "target": "Bulgaria", "attributes": { "weight": 181558.9738333358, "sourceWeight": "181558.9738333358", "direction": "Imp", "source_type": "primary", "targetWeight": "181558.9738333358" } }, { "key": "geid_107_6660", "source": "Denmark", "target": "Bulgaria", "attributes": { "weight": 3005.4308478012226, "sourceWeight": "3005.4308478012226", "direction": "Imp", "source_type": "primary", "targetWeight": "3005.4308478012226" } }, { "key": "geid_107_6661", "source": "EgyptArabRepublicEgypt", "target": "Bulgaria", "attributes": { "weight": 54218.432993783324, "sourceWeight": "54218.432993783324", "direction": "Imp", "source_type": "primary", "targetWeight": "54218.432993783324" } }, { "key": "geid_107_6662", "source": "Spain", "target": "Bulgaria", "attributes": { "weight": 7759.246514609436, "sourceWeight": "7759.246514609436", "direction": "Imp", "source_type": "primary", "targetWeight": "7759.246514609436" } }, { "key": "geid_107_6663", "source": "Italy", "target": "Bulgaria", "attributes": { "weight": 1283060.7724559375, "sourceWeight": "1283060.7724559375", "direction": "Imp", "source_type": "primary", "targetWeight": "1283060.7724559375" } }, { "key": "geid_107_6664", "source": "Norway", "target": "Bulgaria", "attributes": { "weight": 4266.97383984368, "sourceWeight": "4266.97383984368", "direction": "Imp", "source_type": "primary", "targetWeight": "4266.97383984368" } }, { "key": "geid_107_6665", "source": "Poland", "target": "Bulgaria", "attributes": { "weight": 13283.463247412701, "sourceWeight": "13283.463247412701", "direction": "Imp", "source_type": "primary", "targetWeight": "13283.463247412701" } }, { "key": "geid_107_6666", "source": "Romania", "target": "Bulgaria", "attributes": { "weight": 665889.803249723, "sourceWeight": "665889.803249723", "direction": "Imp", "source_type": "primary", "targetWeight": "665889.803249723" } }, { "key": "geid_107_6667", "source": "RussiaUSSR", "target": "Bulgaria", "attributes": { "weight": 30121.48959467133, "sourceWeight": "30121.48959467133", "direction": "Imp", "source_type": "primary", "targetWeight": "30121.48959467133" } }, { "key": "geid_107_6668", "source": "UnitedStatesofAmerica", "target": "Bulgaria", "attributes": { "weight": 111918.13867372125, "sourceWeight": "111918.13867372125", "direction": "Imp", "source_type": "primary", "targetWeight": "111918.13867372125" } }, { "key": "geid_107_6669", "source": "TurkeyOttomanEmpire", "target": "Bulgaria", "attributes": { "weight": 286938.09842232085, "sourceWeight": "286938.09842232085", "direction": "Imp", "source_type": "primary", "targetWeight": "286938.09842232085" } }, { "key": "geid_107_6670", "source": "Hungary", "target": "Bulgaria", "attributes": { "weight": 173399.6570333384, "sourceWeight": "173399.6570333384", "direction": "Imp", "source_type": "primary", "targetWeight": "173399.6570333384" } }, { "key": "geid_107_6671", "source": "France", "target": "Bulgaria", "attributes": { "weight": 681180.5830107853, "sourceWeight": "681180.5830107853", "direction": "Imp", "source_type": "primary", "targetWeight": "681180.5830107853" } }, { "key": "geid_107_6672", "source": "Netherlands", "target": "Bulgaria", "attributes": { "weight": 189858.98668645072, "sourceWeight": "189858.98668645072", "direction": "Imp", "source_type": "primary", "targetWeight": "189858.98668645072" } }, { "key": "geid_107_6673", "source": "Czechoslovakia", "target": "Bulgaria", "attributes": { "weight": 514141.68525487406, "sourceWeight": "514141.68525487406", "direction": "Imp", "source_type": "primary", "targetWeight": "514141.68525487406" } }, { "key": "geid_107_6674", "source": "Switzerland", "target": "Bulgaria", "attributes": { "weight": 77159.92040830605, "sourceWeight": "77159.92040830605", "direction": "Imp", "source_type": "primary", "targetWeight": "77159.92040830605" } }, { "key": "geid_107_6675", "source": "Sweden", "target": "Bulgaria", "attributes": { "weight": 15473.645419979599, "sourceWeight": "15473.645419979599", "direction": "Imp", "source_type": "primary", "targetWeight": "15473.645419979599" } }, { "key": "geid_107_6676", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Bulgaria", "attributes": { "weight": 240809.44036886815, "sourceWeight": "240809.44036886815", "direction": "Imp", "source_type": "primary", "targetWeight": "240809.44036886815" } }, { "key": "geid_107_6677", "source": "Othercountries", "target": "Bulgaria", "attributes": { "weight": 39337.9311691291, "sourceWeight": "39337.9311691291", "direction": "Imp", "source_type": "primary", "targetWeight": "39337.9311691291" } }, { "key": "geid_107_6678", "source": "Bulgaria", "target": "Austria", "attributes": { "weight": 863788.6476082632, "sourceWeight": "863788.6476082632", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6679", "source": "Bulgaria", "target": "UnitedKingdom", "attributes": { "weight": 42297.424333387025, "sourceWeight": "42297.424333387025", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6680", "source": "Bulgaria", "target": "Belgium", "attributes": { "weight": 333961.528511951, "sourceWeight": "333961.528511951", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6681", "source": "Bulgaria", "target": "GermanyZollverein", "attributes": { "weight": 1410271.173066379, "sourceWeight": "1410271.173066379", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6682", "source": "Bulgaria", "target": "Greece", "attributes": { "weight": 750184.3689852711, "sourceWeight": "750184.3689852711", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6683", "source": "Bulgaria", "target": "Denmark", "attributes": { "weight": 0.24404648597464848, "sourceWeight": "0.24404648597464848", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6684", "source": "Bulgaria", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 27046.383475124345, "sourceWeight": "27046.383475124345", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6685", "source": "Bulgaria", "target": "Spain", "attributes": { "weight": 197.36852809056404, "sourceWeight": "197.36852809056404", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6686", "source": "Bulgaria", "target": "Italy", "attributes": { "weight": 816271.1909631214, "sourceWeight": "816271.1909631214", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6687", "source": "Bulgaria", "target": "Norway", "attributes": { "weight": 6.09302726650039, "sourceWeight": "6.09302726650039", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6688", "source": "Bulgaria", "target": "Poland", "attributes": { "weight": 178081.2593449467, "sourceWeight": "178081.2593449467", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6689", "source": "Bulgaria", "target": "Romania", "attributes": { "weight": 44460.24889487617, "sourceWeight": "44460.24889487617", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6690", "source": "Bulgaria", "target": "RussiaUSSR", "attributes": { "weight": 1256.1121442412352, "sourceWeight": "1256.1121442412352", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6691", "source": "Bulgaria", "target": "UnitedStatesofAmerica", "attributes": { "weight": 144755.03264528495, "sourceWeight": "144755.03264528495", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6692", "source": "Bulgaria", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 366436.9326936062, "sourceWeight": "366436.9326936062", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6693", "source": "Bulgaria", "target": "Hungary", "attributes": { "weight": 203566.65804369084, "sourceWeight": "203566.65804369084", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6694", "source": "Bulgaria", "target": "France", "attributes": { "weight": 1027913.073895649, "sourceWeight": "1027913.073895649", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6695", "source": "Bulgaria", "target": "Netherlands", "attributes": { "weight": 212377.10225710462, "sourceWeight": "212377.10225710462", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6696", "source": "Bulgaria", "target": "Czechoslovakia", "attributes": { "weight": 625960.4872469442, "sourceWeight": "625960.4872469442", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6697", "source": "Bulgaria", "target": "Switzerland", "attributes": { "weight": 324694.7775678978, "sourceWeight": "324694.7775678978", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6698", "source": "Bulgaria", "target": "Sweden", "attributes": { "weight": 1268.6024433934176, "sourceWeight": "1268.6024433934176", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6699", "source": "Bulgaria", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 15409.358694644157, "sourceWeight": "15409.358694644157", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6700", "source": "Bulgaria", "target": "Othercountries", "attributes": { "weight": 23852.724453620594, "sourceWeight": "23852.724453620594", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6701", "source": "Bulgaria", "target": "Unknown", "attributes": { "weight": 561750.7585778272, "sourceWeight": "561750.7585778272", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6702", "source": "UnitedKingdom", "target": "Bermuda", "attributes": { "weight": 666316, "sourceWeight": "666316", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "666316" } }, { "key": "geid_107_6703", "source": "CanadaProvinceofCanada", "target": "Bermuda", "attributes": { "weight": 331397, "sourceWeight": "331397", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "331397" } }, { "key": "geid_107_6704", "source": "BritishWestIndies", "target": "Bermuda", "attributes": { "weight": 25627, "sourceWeight": "25627", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "25627" } }, { "key": "geid_107_6705", "source": "India", "target": "Bermuda", "attributes": { "weight": 418, "sourceWeight": "418", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "418" } }, { "key": "geid_107_6706", "source": "UnitedStatesofAmerica", "target": "Bermuda", "attributes": { "weight": 790809, "sourceWeight": "790809", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "790809" } }, { "key": "geid_107_6707", "source": "Tenerife", "target": "Bermuda", "attributes": { "weight": 99, "sourceWeight": "99", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "99" } }, { "key": "geid_107_6708", "source": "Cuba", "target": "Bermuda", "attributes": { "weight": 357, "sourceWeight": "357", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "357" } }, { "key": "geid_107_6709", "source": "Bermuda", "target": "CanadaProvinceofCanada", "attributes": { "weight": 10466, "sourceWeight": "10466", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6710", "source": "Bermuda", "target": "BritishWestIndies", "attributes": { "weight": 5416, "sourceWeight": "5416", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6711", "source": "Bermuda", "target": "UnitedStatesofAmerica", "attributes": { "weight": 179432, "sourceWeight": "179432", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6712", "source": "UnitedKingdom", "target": "HongKong", "attributes": { "weight": 9451151, "sourceWeight": "9451151", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9451151" } }, { "key": "geid_107_6713", "source": "Australia", "target": "HongKong", "attributes": { "weight": 1042297, "sourceWeight": "1042297", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1042297" } }, { "key": "geid_107_6714", "source": "NewZealand", "target": "HongKong", "attributes": { "weight": 54063, "sourceWeight": "54063", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "54063" } }, { "key": "geid_107_6715", "source": "CanadaProvinceofCanada", "target": "HongKong", "attributes": { "weight": 733939, "sourceWeight": "733939", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "733939" } }, { "key": "geid_107_6716", "source": "India", "target": "HongKong", "attributes": { "weight": 1998663, "sourceWeight": "1998663", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1998663" } }, { "key": "geid_107_6717", "source": "SriLankaCeylon", "target": "HongKong", "attributes": { "weight": 21104, "sourceWeight": "21104", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "21104" } }, { "key": "geid_107_6718", "source": "MyanmarBurma", "target": "HongKong", "attributes": { "weight": 1051308, "sourceWeight": "1051308", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1051308" } }, { "key": "geid_107_6719", "source": "SouthAfrica", "target": "HongKong", "attributes": { "weight": 12710, "sourceWeight": "12710", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "12710" } }, { "key": "geid_107_6720", "source": "BritishEastAfrica", "target": "HongKong", "attributes": { "weight": 47541, "sourceWeight": "47541", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "47541" } }, { "key": "geid_107_6721", "source": "FederatedMalayStates_StraitsSettlements", "target": "HongKong", "attributes": { "weight": 1728965, "sourceWeight": "1728965", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1728965" } }, { "key": "geid_107_6722", "source": "SabahNorthBorneo", "target": "HongKong", "attributes": { "weight": 277228, "sourceWeight": "277228", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "277228" } }, { "key": "geid_107_6723", "source": "EgyptArabRepublicEgypt", "target": "HongKong", "attributes": { "weight": 6110, "sourceWeight": "6110", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6110" } }, { "key": "geid_107_6724", "source": "Gibraltar", "target": "HongKong", "attributes": { "weight": 132, "sourceWeight": "132", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "132" } }, { "key": "geid_107_6725", "source": "Mauritius", "target": "HongKong", "attributes": { "weight": 16434, "sourceWeight": "16434", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "16434" } }, { "key": "geid_107_6726", "source": "Aden", "target": "HongKong", "attributes": { "weight": 21746, "sourceWeight": "21746", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "21746" } }, { "key": "geid_107_6727", "source": "IraqMesopotamia", "target": "HongKong", "attributes": { "weight": 723, "sourceWeight": "723", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "723" } }, { "key": "geid_107_6728", "source": "PeoplesRepublicofChinaChina", "target": "HongKong", "attributes": { "weight": 10673830, "sourceWeight": "10673830", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "10673830" } }, { "key": "geid_107_6729", "source": "Japan_KoreaChosen_RepublicofChinaTaiwanFormosa", "target": "HongKong", "attributes": { "weight": 9127732, "sourceWeight": "9127732", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9127732" } }, { "key": "geid_107_6730", "source": "IndonesiaDutchEastIndies", "target": "HongKong", "attributes": { "weight": 9460131, "sourceWeight": "9460131", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9460131" } }, { "key": "geid_107_6731", "source": "FrenchIndochina", "target": "HongKong", "attributes": { "weight": 11008677, "sourceWeight": "11008677", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "11008677" } }, { "key": "geid_107_6732", "source": "ThailandSiam", "target": "HongKong", "attributes": { "weight": 6264606, "sourceWeight": "6264606", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6264606" } }, { "key": "geid_107_6733", "source": "Philippines", "target": "HongKong", "attributes": { "weight": 827813, "sourceWeight": "827813", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "827813" } }, { "key": "geid_107_6734", "source": "UnitedStatesofAmerica", "target": "HongKong", "attributes": { "weight": 7063206, "sourceWeight": "7063206", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7063206" } }, { "key": "geid_107_6735", "source": "CentralAmerica", "target": "HongKong", "attributes": { "weight": 5840, "sourceWeight": "5840", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5840" } }, { "key": "geid_107_6736", "source": "SouthernAmerica", "target": "HongKong", "attributes": { "weight": 6143, "sourceWeight": "6143", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6143" } }, { "key": "geid_107_6737", "source": "France", "target": "HongKong", "attributes": { "weight": 319739, "sourceWeight": "319739", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "319739" } }, { "key": "geid_107_6738", "source": "Italy", "target": "HongKong", "attributes": { "weight": 259021, "sourceWeight": "259021", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "259021" } }, { "key": "geid_107_6739", "source": "Spain", "target": "HongKong", "attributes": { "weight": 6109, "sourceWeight": "6109", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6109" } }, { "key": "geid_107_6740", "source": "Norway", "target": "HongKong", "attributes": { "weight": 79067, "sourceWeight": "79067", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "79067" } }, { "key": "geid_107_6741", "source": "Sweden", "target": "HongKong", "attributes": { "weight": 173164, "sourceWeight": "173164", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "173164" } }, { "key": "geid_107_6742", "source": "Denmark", "target": "HongKong", "attributes": { "weight": 65996, "sourceWeight": "65996", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "65996" } }, { "key": "geid_107_6743", "source": "Netherlands", "target": "HongKong", "attributes": { "weight": 326347, "sourceWeight": "326347", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "326347" } }, { "key": "geid_107_6744", "source": "Belgium", "target": "HongKong", "attributes": { "weight": 696822, "sourceWeight": "696822", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "696822" } }, { "key": "geid_107_6745", "source": "Switzerland", "target": "HongKong", "attributes": { "weight": 39689, "sourceWeight": "39689", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "39689" } }, { "key": "geid_107_6746", "source": "GermanyZollverein", "target": "HongKong", "attributes": { "weight": 1835884, "sourceWeight": "1835884", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1835884" } }, { "key": "geid_107_6747", "source": "Cuba", "target": "HongKong", "attributes": { "weight": 157155, "sourceWeight": "157155", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "157155" } }, { "key": "geid_107_6748", "source": "Othercountries", "target": "HongKong", "attributes": { "weight": 195000, "sourceWeight": "195000", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "195000" } }, { "key": "geid_107_6749", "source": "HongKong", "target": "UnitedKingdom", "attributes": { "weight": 745200, "sourceWeight": "745200", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6750", "source": "HongKong", "target": "Australia", "attributes": { "weight": 428463, "sourceWeight": "428463", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6751", "source": "HongKong", "target": "NewZealand", "attributes": { "weight": 62807, "sourceWeight": "62807", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6752", "source": "HongKong", "target": "CanadaProvinceofCanada", "attributes": { "weight": 410971, "sourceWeight": "410971", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6753", "source": "HongKong", "target": "India", "attributes": { "weight": 837992, "sourceWeight": "837992", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6754", "source": "HongKong", "target": "SriLankaCeylon", "attributes": { "weight": 133455, "sourceWeight": "133455", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6755", "source": "HongKong", "target": "MyanmarBurma", "attributes": { "weight": 331696, "sourceWeight": "331696", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6756", "source": "HongKong", "target": "SouthAfrica", "attributes": { "weight": 61588, "sourceWeight": "61588", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6757", "source": "HongKong", "target": "BritishEastAfrica", "attributes": { "weight": 4513, "sourceWeight": "4513", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6758", "source": "HongKong", "target": "BritishWestAfrica", "attributes": { "weight": 24, "sourceWeight": "24", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6759", "source": "HongKong", "target": "FederatedMalayStates_StraitsSettlements", "attributes": { "weight": 3846981, "sourceWeight": "3846981", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6760", "source": "HongKong", "target": "SabahNorthBorneo", "attributes": { "weight": 129144, "sourceWeight": "129144", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6761", "source": "HongKong", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 45867, "sourceWeight": "45867", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6762", "source": "HongKong", "target": "Gibraltar", "attributes": { "weight": 11713, "sourceWeight": "11713", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6763", "source": "HongKong", "target": "Malta", "attributes": { "weight": 184, "sourceWeight": "184", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6764", "source": "HongKong", "target": "Mauritius", "attributes": { "weight": 85114, "sourceWeight": "85114", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6765", "source": "HongKong", "target": "Aden", "attributes": { "weight": 6887, "sourceWeight": "6887", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6766", "source": "HongKong", "target": "BritishWestIndies", "attributes": { "weight": 23122, "sourceWeight": "23122", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6767", "source": "HongKong", "target": "IraqMesopotamia", "attributes": { "weight": 53243, "sourceWeight": "53243", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6768", "source": "HongKong", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 43497580, "sourceWeight": "43497580", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6769", "source": "HongKong", "target": "Japan_KoreaChosen_RepublicofChinaTaiwanFormosa", "attributes": { "weight": 3523793, "sourceWeight": "3523793", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6770", "source": "HongKong", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 1071788, "sourceWeight": "1071788", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6771", "source": "HongKong", "target": "FrenchIndochina", "attributes": { "weight": 5603488, "sourceWeight": "5603488", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6772", "source": "HongKong", "target": "ThailandSiam", "attributes": { "weight": 3193991, "sourceWeight": "3193991", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6773", "source": "HongKong", "target": "Philippines", "attributes": { "weight": 2150923, "sourceWeight": "2150923", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6774", "source": "HongKong", "target": "UnitedStatesofAmerica", "attributes": { "weight": 3066518, "sourceWeight": "3066518", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6775", "source": "HongKong", "target": "CentralAmerica", "attributes": { "weight": 223099, "sourceWeight": "223099", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6776", "source": "HongKong", "target": "SouthernAmerica", "attributes": { "weight": 584879, "sourceWeight": "584879", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6777", "source": "HongKong", "target": "France", "attributes": { "weight": 79008, "sourceWeight": "79008", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6778", "source": "HongKong", "target": "Italy", "attributes": { "weight": 6060, "sourceWeight": "6060", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6779", "source": "HongKong", "target": "Spain", "attributes": { "weight": 14083, "sourceWeight": "14083", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6780", "source": "HongKong", "target": "Norway", "attributes": { "weight": 1060, "sourceWeight": "1060", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6781", "source": "HongKong", "target": "Sweden", "attributes": { "weight": 2303, "sourceWeight": "2303", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6782", "source": "HongKong", "target": "Denmark", "attributes": { "weight": 4201, "sourceWeight": "4201", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6783", "source": "HongKong", "target": "Netherlands", "attributes": { "weight": 107351, "sourceWeight": "107351", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6784", "source": "HongKong", "target": "Belgium", "attributes": { "weight": 19984, "sourceWeight": "19984", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6785", "source": "HongKong", "target": "Switzerland", "attributes": { "weight": 795, "sourceWeight": "795", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6786", "source": "HongKong", "target": "GermanyZollverein", "attributes": { "weight": 132756, "sourceWeight": "132756", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6787", "source": "HongKong", "target": "Cuba", "attributes": { "weight": 126028, "sourceWeight": "126028", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6788", "source": "HongKong", "target": "IranPersia", "attributes": { "weight": 3615, "sourceWeight": "3615", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6789", "source": "HongKong", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 1131, "sourceWeight": "1131", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6790", "source": "HongKong", "target": "Othercountries", "attributes": { "weight": 38594, "sourceWeight": "38594", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6791", "source": "Ecuador", "target": "ArgentinaLaPlata", "attributes": { "weight": 457.2204617476661, "sourceWeight": "457.2204617476661", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6792", "source": "Ecuador", "target": "Bolivia", "attributes": { "weight": 365.7763693981329, "sourceWeight": "365.7763693981329", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6793", "source": "Ecuador", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 74225.16976011611, "sourceWeight": "74225.16976011611", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6794", "source": "Ecuador", "target": "Chile", "attributes": { "weight": 91366.36487103612, "sourceWeight": "91366.36487103612", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6795", "source": "Ecuador", "target": "Peru", "attributes": { "weight": 57340.018107774806, "sourceWeight": "57340.018107774806", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6796", "source": "Ecuador", "target": "Venezuela", "attributes": { "weight": 1659.7102761440278, "sourceWeight": "1659.7102761440278", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6797", "source": "Ecuador", "target": "CostaRica", "attributes": { "weight": 1394.5224083303815, "sourceWeight": "1394.5224083303815", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6798", "source": "Ecuador", "target": "Cuba", "attributes": { "weight": 15609.50656406532, "sourceWeight": "15609.50656406532", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6799", "source": "Ecuador", "target": "ElSalvador", "attributes": { "weight": 667.5418741515924, "sourceWeight": "667.5418741515924", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6800", "source": "Ecuador", "target": "Haiti", "attributes": { "weight": 118.87732005439318, "sourceWeight": "118.87732005439318", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6801", "source": "Ecuador", "target": "Mexico", "attributes": { "weight": 544.0923494797227, "sourceWeight": "544.0923494797227", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6802", "source": "Ecuador", "target": "Panama", "attributes": { "weight": 6483.386147581905, "sourceWeight": "6483.386147581905", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6803", "source": "Ecuador", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 320.0543232233662, "sourceWeight": "320.0543232233662", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6804", "source": "Ecuador", "target": "UnitedStatesofAmerica", "attributes": { "weight": 868709.7329113305, "sourceWeight": "868709.7329113305", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6805", "source": "Ecuador", "target": "WestIndiesother", "attributes": { "weight": 333.7709370757962, "sourceWeight": "333.7709370757962", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6806", "source": "Ecuador", "target": "CanadaProvinceofCanada", "attributes": { "weight": 9.144409234953322, "sourceWeight": "9.144409234953322", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6807", "source": "Ecuador", "target": "BelizeBritishHonduras", "attributes": { "weight": 27.433227704859963, "sourceWeight": "27.433227704859963", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6808", "source": "Ecuador", "target": "GermanyZollverein", "attributes": { "weight": 363261.6568585207, "sourceWeight": "363261.6568585207", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6809", "source": "Ecuador", "target": "Belgium_Luxemburg", "attributes": { "weight": 20140.56133998469, "sourceWeight": "20140.56133998469", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6810", "source": "Ecuador", "target": "Denmark", "attributes": { "weight": 21059.5744680975, "sourceWeight": "21059.5744680975", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6811", "source": "Ecuador", "target": "Spain", "attributes": { "weight": 284843.77546417847, "sourceWeight": "284843.77546417847", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6812", "source": "Ecuador", "target": "Estonia", "attributes": { "weight": 169.17157084663646, "sourceWeight": "169.17157084663646", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6813", "source": "Ecuador", "target": "France", "attributes": { "weight": 263674.4680852615, "sourceWeight": "263674.4680852615", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6814", "source": "Ecuador", "target": "UnitedKingdom", "attributes": { "weight": 220864.91625182758, "sourceWeight": "220864.91625182758", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6815", "source": "Ecuador", "target": "Netherlands", "attributes": { "weight": 249802.39927583735, "sourceWeight": "249802.39927583735", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6816", "source": "Ecuador", "target": "Italy", "attributes": { "weight": 215140.5160707468, "sourceWeight": "215140.5160707468", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6817", "source": "Ecuador", "target": "Norway", "attributes": { "weight": 8906.654594844535, "sourceWeight": "8906.654594844535", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6818", "source": "Ecuador", "target": "Portugal", "attributes": { "weight": 128.0217292893465, "sourceWeight": "128.0217292893465", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6819", "source": "Ecuador", "target": "Sweden", "attributes": { "weight": 24141.24038027677, "sourceWeight": "24141.24038027677", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6820", "source": "Ecuador", "target": "Switzerland", "attributes": { "weight": 525.803531009816, "sourceWeight": "525.803531009816", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6821", "source": "Ecuador", "target": "Japan", "attributes": { "weight": 237.75464010878636, "sourceWeight": "237.75464010878636", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6822", "source": "Ecuador", "target": "Australia", "attributes": { "weight": 8362.562245364812, "sourceWeight": "8362.562245364812", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6823", "source": "Ecuador", "target": "NewZealand", "attributes": { "weight": 310.90991398841294, "sourceWeight": "310.90991398841294", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_6824", "source": "SierraLeone", "target": "UnitedKingdom", "attributes": { "weight": 1203323, "sourceWeight": "1203323", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6825", "source": "SierraLeone", "target": "Gambia", "attributes": { "weight": 61390, "sourceWeight": "61390", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6826", "source": "SierraLeone", "target": "GhanaGoldCoast", "attributes": { "weight": 2586, "sourceWeight": "2586", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6827", "source": "SierraLeone", "target": "Nigeria", "attributes": { "weight": 57379, "sourceWeight": "57379", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6828", "source": "SierraLeone", "target": "France", "attributes": { "weight": 8441, "sourceWeight": "8441", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6829", "source": "SierraLeone", "target": "FrenchWestAfrica", "attributes": { "weight": 67573, "sourceWeight": "67573", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6830", "source": "SierraLeone", "target": "GermanyZollverein", "attributes": { "weight": 25030, "sourceWeight": "25030", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6831", "source": "SierraLeone", "target": "Internationalwaters", "attributes": { "weight": 66, "sourceWeight": "66", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6832", "source": "SierraLeone", "target": "Netherlands", "attributes": { "weight": 7104, "sourceWeight": "7104", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6833", "source": "SierraLeone", "target": "UnitedStatesofAmerica", "attributes": { "weight": 69944, "sourceWeight": "69944", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6834", "source": "SierraLeone", "target": "Liberia", "attributes": { "weight": 1422, "sourceWeight": "1422", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6835", "source": "SierraLeone", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 5937, "sourceWeight": "5937", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6836", "source": "SierraLeone", "target": "SpanishWestAfrica", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6837", "source": "SierraLeone", "target": "Belgium", "attributes": { "weight": 100, "sourceWeight": "100", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6838", "source": "SierraLeone", "target": "CanaryIs", "attributes": { "weight": 55, "sourceWeight": "55", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_6839", "source": "UnitedKingdom", "target": "SierraLeone", "attributes": { "weight": 1124103, "sourceWeight": "1124103", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1124103" } }, { "key": "geid_107_6840", "source": "CanadaProvinceofCanada", "target": "SierraLeone", "attributes": { "weight": 2680, "sourceWeight": "2680", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2680" } }, { "key": "geid_107_6841", "source": "Gambia", "target": "SierraLeone", "attributes": { "weight": 6268, "sourceWeight": "6268", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6268" } }, { "key": "geid_107_6842", "source": "GhanaGoldCoast", "target": "SierraLeone", "attributes": { "weight": 5391, "sourceWeight": "5391", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5391" } }, { "key": "geid_107_6843", "source": "Nigeria", "target": "SierraLeone", "attributes": { "weight": 21240, "sourceWeight": "21240", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "21240" } }, { "key": "geid_107_6844", "source": "VictoriaCameroun", "target": "SierraLeone", "attributes": { "weight": 19, "sourceWeight": "19", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "19" } }, { "key": "geid_107_6845", "source": "Gibraltar", "target": "SierraLeone", "attributes": { "weight": 5, "sourceWeight": "5", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5" } }, { "key": "geid_107_6846", "source": "Belgium", "target": "SierraLeone", "attributes": { "weight": 13732, "sourceWeight": "13732", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "13732" } }, { "key": "geid_107_6847", "source": "Cuba", "target": "SierraLeone", "attributes": { "weight": 9, "sourceWeight": "9", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9" } }, { "key": "geid_107_6848", "source": "Denmark", "target": "SierraLeone", "attributes": { "weight": 80, "sourceWeight": "80", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "80" } }, { "key": "geid_107_6849", "source": "France", "target": "SierraLeone", "attributes": { "weight": 71895, "sourceWeight": "71895", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "71895" } }, { "key": "geid_107_6850", "source": "GermanyZollverein", "target": "SierraLeone", "attributes": { "weight": 101523, "sourceWeight": "101523", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "101523" } }, { "key": "geid_107_6851", "source": "Netherlands", "target": "SierraLeone", "attributes": { "weight": 46223, "sourceWeight": "46223", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "46223" } }, { "key": "geid_107_6852", "source": "Italy", "target": "SierraLeone", "attributes": { "weight": 556, "sourceWeight": "556", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "556" } }, { "key": "geid_107_6853", "source": "Japan", "target": "SierraLeone", "attributes": { "weight": 82, "sourceWeight": "82", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "82" } }, { "key": "geid_107_6854", "source": "Liberia", "target": "SierraLeone", "attributes": { "weight": 1529, "sourceWeight": "1529", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1529" } }, { "key": "geid_107_6855", "source": "Portugal", "target": "SierraLeone", "attributes": { "weight": 47, "sourceWeight": "47", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "47" } }, { "key": "geid_107_6856", "source": "Spain", "target": "SierraLeone", "attributes": { "weight": 71, "sourceWeight": "71", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "71" } }, { "key": "geid_107_6857", "source": "Sweden", "target": "SierraLeone", "attributes": { "weight": 304, "sourceWeight": "304", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "304" } }, { "key": "geid_107_6858", "source": "UnitedStatesofAmerica", "target": "SierraLeone", "attributes": { "weight": 208725, "sourceWeight": "208725", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "208725" } }, { "key": "geid_107_6859", "source": "FrenchColonies", "target": "SierraLeone", "attributes": { "weight": 23460, "sourceWeight": "23460", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "23460" } }, { "key": "geid_107_6860", "source": "SpanishColonies", "target": "SierraLeone", "attributes": { "weight": 7411, "sourceWeight": "7411", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7411" } }, { "key": "geid_107_6861", "source": "PortugueseColonies", "target": "SierraLeone", "attributes": { "weight": 594, "sourceWeight": "594", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "594" } }, { "key": "geid_107_6862", "source": "UnitedKingdom", "target": "Kamerun", "attributes": { "weight": 30000, "sourceWeight": "30000", "direction": "Imp", "source_type": "secondary", "targetWeight": "30000" } }, { "key": "geid_107_6863", "source": "GermanyZollverein", "target": "Kamerun", "attributes": { "weight": 3000, "sourceWeight": "3000", "direction": "Imp", "source_type": "secondary", "targetWeight": "3000" } }, { "key": "geid_107_6864", "source": "Kamerun", "target": "UnitedKingdom", "attributes": { "weight": 99000, "sourceWeight": "99000", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_6865", "source": "Kamerun", "target": "GermanyZollverein", "attributes": { "weight": 6000, "sourceWeight": "6000", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_6866", "source": "Kamerun", "target": "Othercountries", "attributes": { "weight": 7000, "sourceWeight": "7000", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_6867", "source": "UnitedKingdom", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 1789692, "sourceWeight": "1789692", "direction": "Imp", "source_type": "primary", "targetWeight": "1789692" } }, { "key": "geid_107_6868", "source": "CanadaProvinceofCanada", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 152323, "sourceWeight": "152323", "direction": "Imp", "source_type": "primary", "targetWeight": "152323" } }, { "key": "geid_107_6869", "source": "India", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 125058, "sourceWeight": "125058", "direction": "Imp", "source_type": "primary", "targetWeight": "125058" } }, { "key": "geid_107_6870", "source": "SriLankaCeylon", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 13028, "sourceWeight": "13028", "direction": "Imp", "source_type": "primary", "targetWeight": "13028" } }, { "key": "geid_107_6871", "source": "Australia", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 49466, "sourceWeight": "49466", "direction": "Imp", "source_type": "primary", "targetWeight": "49466" } }, { "key": "geid_107_6872", "source": "NewZealand", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 541, "sourceWeight": "541", "direction": "Imp", "source_type": "primary", "targetWeight": "541" } }, { "key": "geid_107_6873", "source": "Malta", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Imp", "source_type": "primary", "targetWeight": "2" } }, { "key": "geid_107_6874", "source": "BritishEastIndies", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 6, "sourceWeight": "6", "direction": "Imp", "source_type": "primary", "targetWeight": "6" } }, { "key": "geid_107_6875", "source": "HongKong", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 243, "sourceWeight": "243", "direction": "Imp", "source_type": "primary", "targetWeight": "243" } }, { "key": "geid_107_6876", "source": "StraitsSettlements", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 687, "sourceWeight": "687", "direction": "Imp", "source_type": "primary", "targetWeight": "687" } }, { "key": "geid_107_6877", "source": "KenyaBritishEastAfricaProtectorate", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 918, "sourceWeight": "918", "direction": "Imp", "source_type": "primary", "targetWeight": "918" } }, { "key": "geid_107_6878", "source": "MalawiNyasalandBritishCentralAfricaProtectorate", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 989, "sourceWeight": "989", "direction": "Imp", "source_type": "primary", "targetWeight": "989" } }, { "key": "geid_107_6879", "source": "Zanzibar", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 25, "sourceWeight": "25", "direction": "Imp", "source_type": "primary", "targetWeight": "25" } }, { "key": "geid_107_6880", "source": "BritishWestIndies", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 295, "sourceWeight": "295", "direction": "Imp", "source_type": "primary", "targetWeight": "295" } }, { "key": "geid_107_6881", "source": "BritishColoniesother", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 873, "sourceWeight": "873", "direction": "Imp", "source_type": "primary", "targetWeight": "873" } }, { "key": "geid_107_6882", "source": "Austria", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 9760, "sourceWeight": "9760", "direction": "Imp", "source_type": "primary", "targetWeight": "9760" } }, { "key": "geid_107_6883", "source": "Belgium", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 51785, "sourceWeight": "51785", "direction": "Imp", "source_type": "primary", "targetWeight": "51785" } }, { "key": "geid_107_6884", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 57, "sourceWeight": "57", "direction": "Imp", "source_type": "primary", "targetWeight": "57" } }, { "key": "geid_107_6885", "source": "Czechoslovakia", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 5343, "sourceWeight": "5343", "direction": "Imp", "source_type": "primary", "targetWeight": "5343" } }, { "key": "geid_107_6886", "source": "Denmark", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 1657, "sourceWeight": "1657", "direction": "Imp", "source_type": "primary", "targetWeight": "1657" } }, { "key": "geid_107_6887", "source": "Finland", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 2073, "sourceWeight": "2073", "direction": "Imp", "source_type": "primary", "targetWeight": "2073" } }, { "key": "geid_107_6888", "source": "France", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 34526, "sourceWeight": "34526", "direction": "Imp", "source_type": "primary", "targetWeight": "34526" } }, { "key": "geid_107_6889", "source": "MadagascarMalagasyRepublic", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 29, "sourceWeight": "29", "direction": "Imp", "source_type": "primary", "targetWeight": "29" } }, { "key": "geid_107_6890", "source": "Morocco", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 38, "sourceWeight": "38", "direction": "Imp", "source_type": "primary", "targetWeight": "38" } }, { "key": "geid_107_6891", "source": "FrenchColoniesother", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 93, "sourceWeight": "93", "direction": "Imp", "source_type": "primary", "targetWeight": "93" } }, { "key": "geid_107_6892", "source": "GermanyZollverein", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 107820, "sourceWeight": "107820", "direction": "Imp", "source_type": "primary", "targetWeight": "107820" } }, { "key": "geid_107_6893", "source": "Greece", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 667, "sourceWeight": "667", "direction": "Imp", "source_type": "primary", "targetWeight": "667" } }, { "key": "geid_107_6894", "source": "Netherlands", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 25138, "sourceWeight": "25138", "direction": "Imp", "source_type": "primary", "targetWeight": "25138" } }, { "key": "geid_107_6895", "source": "IndonesiaDutchEastIndies", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 30032, "sourceWeight": "30032", "direction": "Imp", "source_type": "primary", "targetWeight": "30032" } }, { "key": "geid_107_6896", "source": "NetherlandsAntilles", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 1, "sourceWeight": "1", "direction": "Imp", "source_type": "primary", "targetWeight": "1" } }, { "key": "geid_107_6897", "source": "Hungary", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Imp", "source_type": "primary", "targetWeight": "14" } }, { "key": "geid_107_6898", "source": "Italy", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 42375, "sourceWeight": "42375", "direction": "Imp", "source_type": "primary", "targetWeight": "42375" } }, { "key": "geid_107_6899", "source": "Norway", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 7787, "sourceWeight": "7787", "direction": "Imp", "source_type": "primary", "targetWeight": "7787" } }, { "key": "geid_107_6900", "source": "Poland", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 277, "sourceWeight": "277", "direction": "Imp", "source_type": "primary", "targetWeight": "277" } }, { "key": "geid_107_6901", "source": "Portugal", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 1759, "sourceWeight": "1759", "direction": "Imp", "source_type": "primary", "targetWeight": "1759" } }, { "key": "geid_107_6902", "source": "MadeiraIsles", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 178, "sourceWeight": "178", "direction": "Imp", "source_type": "primary", "targetWeight": "178" } }, { "key": "geid_107_6903", "source": "MozambiquePortugueseEastAfrica", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 19032, "sourceWeight": "19032", "direction": "Imp", "source_type": "primary", "targetWeight": "19032" } }, { "key": "geid_107_6904", "source": "AngolaPortugueseWestAfrica", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 31, "sourceWeight": "31", "direction": "Imp", "source_type": "primary", "targetWeight": "31" } }, { "key": "geid_107_6905", "source": "RussiaUSSR", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 1947, "sourceWeight": "1947", "direction": "Imp", "source_type": "primary", "targetWeight": "1947" } }, { "key": "geid_107_6906", "source": "Spain", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 3394, "sourceWeight": "3394", "direction": "Imp", "source_type": "primary", "targetWeight": "3394" } }, { "key": "geid_107_6907", "source": "Sweden", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 50565, "sourceWeight": "50565", "direction": "Imp", "source_type": "primary", "targetWeight": "50565" } }, { "key": "geid_107_6908", "source": "Switzerland", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 12588, "sourceWeight": "12588", "direction": "Imp", "source_type": "primary", "targetWeight": "12588" } }, { "key": "geid_107_6909", "source": "TurkeyOttomanEmpire", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 217, "sourceWeight": "217", "direction": "Imp", "source_type": "primary", "targetWeight": "217" } }, { "key": "geid_107_6910", "source": "PeoplesRepublicofChinaChina", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 2435, "sourceWeight": "2435", "direction": "Imp", "source_type": "primary", "targetWeight": "2435" } }, { "key": "geid_107_6911", "source": "Japan_RepublicofChinaTaiwanFormosa", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 59880, "sourceWeight": "59880", "direction": "Imp", "source_type": "primary", "targetWeight": "59880" } }, { "key": "geid_107_6912", "source": "IranPersia", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 166, "sourceWeight": "166", "direction": "Imp", "source_type": "primary", "targetWeight": "166" } }, { "key": "geid_107_6913", "source": "ThailandSiam", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 862, "sourceWeight": "862", "direction": "Imp", "source_type": "primary", "targetWeight": "862" } }, { "key": "geid_107_6914", "source": "EgyptArabRepublicEgypt", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 133, "sourceWeight": "133", "direction": "Imp", "source_type": "primary", "targetWeight": "133" } }, { "key": "geid_107_6915", "source": "UnitedStatesofAmerica", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 462399, "sourceWeight": "462399", "direction": "Imp", "source_type": "primary", "targetWeight": "462399" } }, { "key": "geid_107_6916", "source": "Philippines", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 21, "sourceWeight": "21", "direction": "Imp", "source_type": "primary", "targetWeight": "21" } }, { "key": "geid_107_6917", "source": "Mexico", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 5, "sourceWeight": "5", "direction": "Imp", "source_type": "primary", "targetWeight": "5" } }, { "key": "geid_107_6918", "source": "ArgentinaLaPlata", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 1848, "sourceWeight": "1848", "direction": "Imp", "source_type": "primary", "targetWeight": "1848" } }, { "key": "geid_107_6919", "source": "Brazil", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 4539, "sourceWeight": "4539", "direction": "Imp", "source_type": "primary", "targetWeight": "4539" } }, { "key": "geid_107_6920", "source": "Cuba", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 882, "sourceWeight": "882", "direction": "Imp", "source_type": "primary", "targetWeight": "882" } }, { "key": "geid_107_6921", "source": "Peru", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Imp", "source_type": "primary", "targetWeight": "3" } }, { "key": "geid_107_6922", "source": "Othercountries", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 1051, "sourceWeight": "1051", "direction": "Imp", "source_type": "primary", "targetWeight": "1051" } }, { "key": "geid_107_6923", "source": "SouthAfrica", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 824771, "sourceWeight": "824771", "direction": "Imp", "source_type": "primary", "targetWeight": "824771" } }, { "key": "geid_107_6924", "source": "Albania", "target": "Netherlands", "attributes": { "weight": 17.292892711601343, "sourceWeight": "17.292892711601343", "direction": "Imp", "source_type": "primary", "targetWeight": "17.292892711601343" } }, { "key": "geid_107_6925", "source": "Belgium", "target": "Netherlands", "attributes": { "weight": 21683408.933412824, "sourceWeight": "21683408.933412824", "direction": "Imp", "source_type": "primary", "targetWeight": "21683408.933412824" } }, { "key": "geid_107_6926", "source": "Bulgaria", "target": "Netherlands", "attributes": { "weight": 192644.0353097288, "sourceWeight": "192644.0353097288", "direction": "Imp", "source_type": "primary", "targetWeight": "192644.0353097288" } }, { "key": "geid_107_6927", "source": "BritishMediterranean", "target": "Netherlands", "attributes": { "weight": 111159.75192373613, "sourceWeight": "111159.75192373613", "direction": "Imp", "source_type": "primary", "targetWeight": "111159.75192373613" } }, { "key": "geid_107_6928", "source": "Denmark_Iceland", "target": "Netherlands", "attributes": { "weight": 591840.3472148095, "sourceWeight": "591840.3472148095", "direction": "Imp", "source_type": "primary", "targetWeight": "591840.3472148095" } }, { "key": "geid_107_6929", "source": "GermanyZollverein", "target": "Netherlands", "attributes": { "weight": 49867744.36206, "sourceWeight": "49867744.36206", "direction": "Imp", "source_type": "primary", "targetWeight": "49867744.36206" } }, { "key": "geid_107_6930", "source": "Estonia", "target": "Netherlands", "attributes": { "weight": 123579.24807581754, "sourceWeight": "123579.24807581754", "direction": "Imp", "source_type": "primary", "targetWeight": "123579.24807581754" } }, { "key": "geid_107_6931", "source": "Finland", "target": "Netherlands", "attributes": { "weight": 2824097.6396505833, "sourceWeight": "2824097.6396505833", "direction": "Imp", "source_type": "primary", "targetWeight": "2824097.6396505833" } }, { "key": "geid_107_6932", "source": "France", "target": "Netherlands", "attributes": { "weight": 8657450.861006627, "sourceWeight": "8657450.861006627", "direction": "Imp", "source_type": "primary", "targetWeight": "8657450.861006627" } }, { "key": "geid_107_6933", "source": "Greece", "target": "Netherlands", "attributes": { "weight": 841301.5649599214, "sourceWeight": "841301.5649599214", "direction": "Imp", "source_type": "primary", "targetWeight": "841301.5649599214" } }, { "key": "geid_107_6934", "source": "UnitedKingdom", "target": "Netherlands", "attributes": { "weight": 26423565.051556822, "sourceWeight": "26423565.051556822", "direction": "Imp", "source_type": "primary", "targetWeight": "26423565.051556822" } }, { "key": "geid_107_6935", "source": "Hungary", "target": "Netherlands", "attributes": { "weight": 119458.17881371583, "sourceWeight": "119458.17881371583", "direction": "Imp", "source_type": "primary", "targetWeight": "119458.17881371583" } }, { "key": "geid_107_6936", "source": "Ireland", "target": "Netherlands", "attributes": { "weight": 104995.78678114939, "sourceWeight": "104995.78678114939", "direction": "Imp", "source_type": "primary", "targetWeight": "104995.78678114939" } }, { "key": "geid_107_6937", "source": "Fiume_Italy", "target": "Netherlands", "attributes": { "weight": 1248903.865547648, "sourceWeight": "1248903.865547648", "direction": "Imp", "source_type": "primary", "targetWeight": "1248903.865547648" } }, { "key": "geid_107_6938", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Netherlands", "attributes": { "weight": 81435.6038930095, "sourceWeight": "81435.6038930095", "direction": "Imp", "source_type": "primary", "targetWeight": "81435.6038930095" } }, { "key": "geid_107_6939", "source": "Latvia", "target": "Netherlands", "attributes": { "weight": 531337.2711624121, "sourceWeight": "531337.2711624121", "direction": "Imp", "source_type": "primary", "targetWeight": "531337.2711624121" } }, { "key": "geid_107_6940", "source": "Lithuania", "target": "Netherlands", "attributes": { "weight": 129701.1914891151, "sourceWeight": "129701.1914891151", "direction": "Imp", "source_type": "primary", "targetWeight": "129701.1914891151" } }, { "key": "geid_107_6941", "source": "Luxemburg", "target": "Netherlands", "attributes": { "weight": 390631.40153841523, "sourceWeight": "390631.40153841523", "direction": "Imp", "source_type": "primary", "targetWeight": "390631.40153841523" } }, { "key": "geid_107_6942", "source": "Norway", "target": "Netherlands", "attributes": { "weight": 578141.5228599238, "sourceWeight": "578141.5228599238", "direction": "Imp", "source_type": "primary", "targetWeight": "578141.5228599238" } }, { "key": "geid_107_6943", "source": "Austria", "target": "Netherlands", "attributes": { "weight": 413818.74965969304, "sourceWeight": "413818.74965969304", "direction": "Imp", "source_type": "primary", "targetWeight": "413818.74965969304" } }, { "key": "geid_107_6944", "source": "Poland", "target": "Netherlands", "attributes": { "weight": 1786347.5165199172, "sourceWeight": "1786347.5165199172", "direction": "Imp", "source_type": "primary", "targetWeight": "1786347.5165199172" } }, { "key": "geid_107_6945", "source": "Portugal", "target": "Netherlands", "attributes": { "weight": 527079.6745123523, "sourceWeight": "527079.6745123523", "direction": "Imp", "source_type": "primary", "targetWeight": "527079.6745123523" } }, { "key": "geid_107_6946", "source": "Romania", "target": "Netherlands", "attributes": { "weight": 2415736.00814389, "sourceWeight": "2415736.00814389", "direction": "Imp", "source_type": "primary", "targetWeight": "2415736.00814389" } }, { "key": "geid_107_6947", "source": "EuropeanRussia", "target": "Netherlands", "attributes": { "weight": 3811297.9569868683, "sourceWeight": "3811297.9569868683", "direction": "Imp", "source_type": "primary", "targetWeight": "3811297.9569868683" } }, { "key": "geid_107_6948", "source": "Spain", "target": "Netherlands", "attributes": { "weight": 1788154.7102727431, "sourceWeight": "1788154.7102727431", "direction": "Imp", "source_type": "primary", "targetWeight": "1788154.7102727431" } }, { "key": "geid_107_6949", "source": "Czechoslovakia", "target": "Netherlands", "attributes": { "weight": 1296802.3250314863, "sourceWeight": "1296802.3250314863", "direction": "Imp", "source_type": "primary", "targetWeight": "1296802.3250314863" } }, { "key": "geid_107_6950", "source": "EuropeanTurkey", "target": "Netherlands", "attributes": { "weight": 79102.100950506, "sourceWeight": "79102.100950506", "direction": "Imp", "source_type": "primary", "targetWeight": "79102.100950506" } }, { "key": "geid_107_6951", "source": "Sweden", "target": "Netherlands", "attributes": { "weight": 2538284.6862785597, "sourceWeight": "2538284.6862785597", "direction": "Imp", "source_type": "primary", "targetWeight": "2538284.6862785597" } }, { "key": "geid_107_6952", "source": "Switzerland", "target": "Netherlands", "attributes": { "weight": 1535132.7129893852, "sourceWeight": "1535132.7129893852", "direction": "Imp", "source_type": "primary", "targetWeight": "1535132.7129893852" } }, { "key": "geid_107_6953", "source": "***NA", "target": "Netherlands", "attributes": { "weight": 1618.6147578058858, "sourceWeight": "1618.6147578058858", "direction": "Imp", "source_type": "primary", "targetWeight": "1618.6147578058858" } }, { "key": "geid_107_6954", "source": "EthiopiaAbyssinia", "target": "Netherlands", "attributes": { "weight": 5374.631054765698, "sourceWeight": "5374.631054765698", "direction": "Imp", "source_type": "primary", "targetWeight": "5374.631054765698" } }, { "key": "geid_107_6955", "source": "BritishEastAfrica", "target": "Netherlands", "attributes": { "weight": 289692.52738740755, "sourceWeight": "289692.52738740755", "direction": "Imp", "source_type": "primary", "targetWeight": "289692.52738740755" } }, { "key": "geid_107_6956", "source": "BritishWestAfrica", "target": "Netherlands", "attributes": { "weight": 1560380.8551351046, "sourceWeight": "1560380.8551351046", "direction": "Imp", "source_type": "primary", "targetWeight": "1560380.8551351046" } }, { "key": "geid_107_6957", "source": "FrenchEastAfrica", "target": "Netherlands", "attributes": { "weight": 6819.192847429315, "sourceWeight": "6819.192847429315", "direction": "Imp", "source_type": "primary", "targetWeight": "6819.192847429315" } }, { "key": "geid_107_6958", "source": "FrenchWestAfrica", "target": "Netherlands", "attributes": { "weight": 769864.7116327598, "sourceWeight": "769864.7116327598", "direction": "Imp", "source_type": "primary", "targetWeight": "769864.7116327598" } }, { "key": "geid_107_6959", "source": "MozambiquePortugueseEastAfrica", "target": "Netherlands", "attributes": { "weight": 207476.58171078702, "sourceWeight": "207476.58171078702", "direction": "Imp", "source_type": "primary", "targetWeight": "207476.58171078702" } }, { "key": "geid_107_6960", "source": "AngolaPortugueseWestAfrica", "target": "Netherlands", "attributes": { "weight": 48034.81394286928, "sourceWeight": "48034.81394286928", "direction": "Imp", "source_type": "primary", "targetWeight": "48034.81394286928" } }, { "key": "geid_107_6961", "source": "SpanishWestAfrica", "target": "Netherlands", "attributes": { "weight": 60.5251244906047, "sourceWeight": "60.5251244906047", "direction": "Imp", "source_type": "primary", "targetWeight": "60.5251244906047" } }, { "key": "geid_107_6962", "source": "SouthAfrica", "target": "Netherlands", "attributes": { "weight": 277687.7148025503, "sourceWeight": "277687.7148025503", "direction": "Imp", "source_type": "primary", "targetWeight": "277687.7148025503" } }, { "key": "geid_107_6963", "source": "AlgeriaRegencyofAlgiers_TunisiaRegencyofTunis", "target": "Netherlands", "attributes": { "weight": 359063.31235785055, "sourceWeight": "359063.31235785055", "direction": "Imp", "source_type": "primary", "targetWeight": "359063.31235785055" } }, { "key": "geid_107_6964", "source": "AmiranteIs_Mauritius_Seychelles", "target": "Netherlands", "attributes": { "weight": 1321.9551833383646, "sourceWeight": "1321.9551833383646", "direction": "Imp", "source_type": "primary", "targetWeight": "1321.9551833383646" } }, { "key": "geid_107_6965", "source": "AngolaPortugueseWestAfrica", "target": "Netherlands", "attributes": { "weight": 14797.095970999479, "sourceWeight": "14797.095970999479", "direction": "Imp", "source_type": "primary", "targetWeight": "14797.095970999479" } }, { "key": "geid_107_6966", "source": "EgyptArabRepublicEgypt", "target": "Netherlands", "attributes": { "weight": 233358.42190992297, "sourceWeight": "233358.42190992297", "direction": "Imp", "source_type": "primary", "targetWeight": "233358.42190992297" } }, { "key": "geid_107_6967", "source": "DjiboutiAfarandIssasFrenchSomaliland_Eritrea", "target": "Netherlands", "attributes": { "weight": 2682.5599818871583, "sourceWeight": "2682.5599818871583", "direction": "Imp", "source_type": "primary", "targetWeight": "2682.5599818871583" } }, { "key": "geid_107_6968", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Netherlands", "attributes": { "weight": 200644.6785872147, "sourceWeight": "200644.6785872147", "direction": "Imp", "source_type": "primary", "targetWeight": "200644.6785872147" } }, { "key": "geid_107_6969", "source": "CongoBrazzavilleFrenchCongoMiddleCongo", "target": "Netherlands", "attributes": { "weight": 9624.013580787496, "sourceWeight": "9624.013580787496", "direction": "Imp", "source_type": "primary", "targetWeight": "9624.013580787496" } }, { "key": "geid_107_6970", "source": "Liberia", "target": "Netherlands", "attributes": { "weight": 4616.770031679768, "sourceWeight": "4616.770031679768", "direction": "Imp", "source_type": "primary", "targetWeight": "4616.770031679768" } }, { "key": "geid_107_6971", "source": "Morocco", "target": "Netherlands", "attributes": { "weight": 193203.89271126688, "sourceWeight": "193203.89271126688", "direction": "Imp", "source_type": "primary", "targetWeight": "193203.89271126688" } }, { "key": "geid_107_6972", "source": "Aden_Othercountries", "target": "Netherlands", "attributes": { "weight": 1245.0882752352968, "sourceWeight": "1245.0882752352968", "direction": "Imp", "source_type": "primary", "targetWeight": "1245.0882752352968" } }, { "key": "geid_107_6973", "source": "ArabiaAsia", "target": "Netherlands", "attributes": { "weight": 3634.0149388794644, "sourceWeight": "3634.0149388794644", "direction": "Imp", "source_type": "primary", "targetWeight": "3634.0149388794644" } }, { "key": "geid_107_6974", "source": "BritishAsia", "target": "Netherlands", "attributes": { "weight": 59.66047985502463, "sourceWeight": "59.66047985502463", "direction": "Imp", "source_type": "primary", "targetWeight": "59.66047985502463" } }, { "key": "geid_107_6975", "source": "SriLankaCeylon", "target": "Netherlands", "attributes": { "weight": 100995.940696956, "sourceWeight": "100995.940696956", "direction": "Imp", "source_type": "primary", "targetWeight": "100995.940696956" } }, { "key": "geid_107_6976", "source": "PeoplesRepublicofChinaChina", "target": "Netherlands", "attributes": { "weight": 1224589.1072860374, "sourceWeight": "1224589.1072860374", "direction": "Imp", "source_type": "primary", "targetWeight": "1224589.1072860374" } }, { "key": "geid_107_6977", "source": "HongKong", "target": "Netherlands", "attributes": { "weight": 26783.491625118833, "sourceWeight": "26783.491625118833", "direction": "Imp", "source_type": "primary", "targetWeight": "26783.491625118833" } }, { "key": "geid_107_6978", "source": "FrenchAsia_FrenchIndia", "target": "Netherlands", "attributes": { "weight": 12800.977365299337, "sourceWeight": "12800.977365299337", "direction": "Imp", "source_type": "primary", "targetWeight": "12800.977365299337" } }, { "key": "geid_107_6979", "source": "India", "target": "Netherlands", "attributes": { "weight": 3855595.9497436876, "sourceWeight": "3855595.9497436876", "direction": "Imp", "source_type": "primary", "targetWeight": "3855595.9497436876" } }, { "key": "geid_107_6980", "source": "IndonesiaDutchEastIndies", "target": "Netherlands", "attributes": { "weight": 11660378.973268911, "sourceWeight": "11660378.973268911", "direction": "Imp", "source_type": "primary", "targetWeight": "11660378.973268911" } }, { "key": "geid_107_6981", "source": "Japan_KoreaChosen", "target": "Netherlands", "attributes": { "weight": 1420959.7609751162, "sourceWeight": "1420959.7609751162", "direction": "Imp", "source_type": "primary", "targetWeight": "1420959.7609751162" } }, { "key": "geid_107_6982", "source": "Malacca", "target": "Netherlands", "attributes": { "weight": 969944.4314150865, "sourceWeight": "969944.4314150865", "direction": "Imp", "source_type": "primary", "targetWeight": "969944.4314150865" } }, { "key": "geid_107_6983", "source": "Palestine", "target": "Netherlands", "attributes": { "weight": 6650.500679027645, "sourceWeight": "6650.500679027645", "direction": "Imp", "source_type": "primary", "targetWeight": "6650.500679027645" } }, { "key": "geid_107_6984", "source": "Afghanistan_IranPersia", "target": "Netherlands", "attributes": { "weight": 381.30828429080964, "sourceWeight": "381.30828429080964", "direction": "Imp", "source_type": "primary", "targetWeight": "381.30828429080964" } }, { "key": "geid_107_6985", "source": "Philippines", "target": "Netherlands", "attributes": { "weight": 387183.63105403975, "sourceWeight": "387183.63105403975", "direction": "Imp", "source_type": "primary", "targetWeight": "387183.63105403975" } }, { "key": "geid_107_6986", "source": "AsianRussia", "target": "Netherlands", "attributes": { "weight": 132544.57537322014, "sourceWeight": "132544.57537322014", "direction": "Imp", "source_type": "primary", "targetWeight": "132544.57537322014" } }, { "key": "geid_107_6987", "source": "ThailandSiam", "target": "Netherlands", "attributes": { "weight": 15694.337709340914, "sourceWeight": "15694.337709340914", "direction": "Imp", "source_type": "primary", "targetWeight": "15694.337709340914" } }, { "key": "geid_107_6988", "source": "Syria", "target": "Netherlands", "attributes": { "weight": 471.75011317248465, "sourceWeight": "471.75011317248465", "direction": "Imp", "source_type": "primary", "targetWeight": "471.75011317248465" } }, { "key": "geid_107_6989", "source": "AsianTurkey", "target": "Netherlands", "attributes": { "weight": 246407.03349885246, "sourceWeight": "246407.03349885246", "direction": "Imp", "source_type": "primary", "targetWeight": "246407.03349885246" } }, { "key": "geid_107_6990", "source": "BritishAmerica", "target": "Netherlands", "attributes": { "weight": 571606.7116331368, "sourceWeight": "571606.7116331368", "direction": "Imp", "source_type": "primary", "targetWeight": "571606.7116331368" } }, { "key": "geid_107_6991", "source": "CostaRica_ElSalvador_Guatemala_Honduras", "target": "Netherlands", "attributes": { "weight": 655911.8116782459, "sourceWeight": "655911.8116782459", "direction": "Imp", "source_type": "primary", "targetWeight": "655911.8116782459" } }, { "key": "geid_107_6992", "source": "FrenchAmerica", "target": "Netherlands", "attributes": { "weight": 9878.564961502267, "sourceWeight": "9878.564961502267", "direction": "Imp", "source_type": "primary", "targetWeight": "9878.564961502267" } }, { "key": "geid_107_6993", "source": "UnitedStatesofAmerica", "target": "Netherlands", "attributes": { "weight": 23399674.40828507, "sourceWeight": "23399674.40828507", "direction": "Imp", "source_type": "primary", "targetWeight": "23399674.40828507" } }, { "key": "geid_107_6994", "source": "ArgentinaLaPlata", "target": "Netherlands", "attributes": { "weight": 12876757.15570209, "sourceWeight": "12876757.15570209", "direction": "Imp", "source_type": "primary", "targetWeight": "12876757.15570209" } }, { "key": "geid_107_6995", "source": "Bolivia", "target": "Netherlands", "attributes": { "weight": 2286.2933454008135, "sourceWeight": "2286.2933454008135", "direction": "Imp", "source_type": "primary", "targetWeight": "2286.2933454008135" } }, { "key": "geid_107_6996", "source": "Brazil", "target": "Netherlands", "attributes": { "weight": 2789832.2915293267, "sourceWeight": "2789832.2915293267", "direction": "Imp", "source_type": "primary", "targetWeight": "2789832.2915293267" } }, { "key": "geid_107_6997", "source": "CanadaProvinceofCanada", "target": "Netherlands", "attributes": { "weight": 2033076.8030744502, "sourceWeight": "2033076.8030744502", "direction": "Imp", "source_type": "primary", "targetWeight": "2033076.8030744502" } }, { "key": "geid_107_6998", "source": "Chile", "target": "Netherlands", "attributes": { "weight": 1698350.2109519541, "sourceWeight": "1698350.2109519541", "direction": "Imp", "source_type": "primary", "targetWeight": "1698350.2109519541" } }, { "key": "geid_107_6999", "source": "ColombiaNewGranadaGranColombia", "target": "Netherlands", "attributes": { "weight": 519902.86464364704, "sourceWeight": "519902.86464364704", "direction": "Imp", "source_type": "primary", "targetWeight": "519902.86464364704" } }, { "key": "geid_107_7000", "source": "Cuba", "target": "Netherlands", "attributes": { "weight": 1681051.9574436122, "sourceWeight": "1681051.9574436122", "direction": "Imp", "source_type": "primary", "targetWeight": "1681051.9574436122" } }, { "key": "geid_107_7001", "source": "Curacao", "target": "Netherlands", "attributes": { "weight": 39910.526482495414, "sourceWeight": "39910.526482495414", "direction": "Imp", "source_type": "primary", "targetWeight": "39910.526482495414" } }, { "key": "geid_107_7002", "source": "DominicanRepublicSantoDomingo", "target": "Netherlands", "attributes": { "weight": 436625.3947479249, "sourceWeight": "436625.3947479249", "direction": "Imp", "source_type": "primary", "targetWeight": "436625.3947479249" } }, { "key": "geid_107_7003", "source": "Ecuador", "target": "Netherlands", "attributes": { "weight": 176804.86962392819, "sourceWeight": "176804.86962392819", "direction": "Imp", "source_type": "primary", "targetWeight": "176804.86962392819" } }, { "key": "geid_107_7004", "source": "Haiti", "target": "Netherlands", "attributes": { "weight": 38014.966047913236, "sourceWeight": "38014.966047913236", "direction": "Imp", "source_type": "primary", "targetWeight": "38014.966047913236" } }, { "key": "geid_107_7005", "source": "Mexico", "target": "Netherlands", "attributes": { "weight": 915454.8723386849, "sourceWeight": "915454.8723386849", "direction": "Imp", "source_type": "primary", "targetWeight": "915454.8723386849" } }, { "key": "geid_107_7006", "source": "Nicaragua", "target": "Netherlands", "attributes": { "weight": 99970.90448147582, "sourceWeight": "99970.90448147582", "direction": "Imp", "source_type": "primary", "targetWeight": "99970.90448147582" } }, { "key": "geid_107_7007", "source": "Panama", "target": "Netherlands", "attributes": { "weight": 2463.3725667676113, "sourceWeight": "2463.3725667676113", "direction": "Imp", "source_type": "primary", "targetWeight": "2463.3725667676113" } }, { "key": "geid_107_7008", "source": "Paraguay", "target": "Netherlands", "attributes": { "weight": 25541.25667718095, "sourceWeight": "25541.25667718095", "direction": "Imp", "source_type": "primary", "targetWeight": "25541.25667718095" } }, { "key": "geid_107_7009", "source": "Peru", "target": "Netherlands", "attributes": { "weight": 10176.95382524095, "sourceWeight": "10176.95382524095", "direction": "Imp", "source_type": "primary", "targetWeight": "10176.95382524095" } }, { "key": "geid_107_7010", "source": "SurinamDutchGuiana", "target": "Netherlands", "attributes": { "weight": 177343.54323189458, "sourceWeight": "177343.54323189458", "direction": "Imp", "source_type": "primary", "targetWeight": "177343.54323189458" } }, { "key": "geid_107_7011", "source": "Uruguay", "target": "Netherlands", "attributes": { "weight": 106448.30330446035, "sourceWeight": "106448.30330446035", "direction": "Imp", "source_type": "primary", "targetWeight": "106448.30330446035" } }, { "key": "geid_107_7012", "source": "Venezuela", "target": "Netherlands", "attributes": { "weight": 286225.8211855128, "sourceWeight": "286225.8211855128", "direction": "Imp", "source_type": "primary", "targetWeight": "286225.8211855128" } }, { "key": "geid_107_7013", "source": "Australia", "target": "Netherlands", "attributes": { "weight": 804435.2793103763, "sourceWeight": "804435.2793103763", "direction": "Imp", "source_type": "primary", "targetWeight": "804435.2793103763" } }, { "key": "geid_107_7014", "source": "Polynesia", "target": "Netherlands", "attributes": { "weight": 17.292892711601343, "sourceWeight": "17.292892711601343", "direction": "Imp", "source_type": "primary", "targetWeight": "17.292892711601343" } }, { "key": "geid_107_7015", "source": "NewZealand", "target": "Netherlands", "attributes": { "weight": 57953.152557608235, "sourceWeight": "57953.152557608235", "direction": "Imp", "source_type": "primary", "targetWeight": "57953.152557608235" } }, { "key": "geid_107_7016", "source": "Netherlands", "target": "Albania", "attributes": { "weight": 28.96559529193225, "sourceWeight": "28.96559529193225", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7017", "source": "Netherlands", "target": "Belgium", "attributes": { "weight": 13011485.90988925, "sourceWeight": "13011485.90988925", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7018", "source": "Netherlands", "target": "Bulgaria", "attributes": { "weight": 116069.11770009619, "sourceWeight": "116069.11770009619", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7019", "source": "Netherlands", "target": "BritishMediterranean", "attributes": { "weight": 104721.52150274339, "sourceWeight": "104721.52150274339", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7020", "source": "Netherlands", "target": "Denmark_Iceland", "attributes": { "weight": 2031643.74105544, "sourceWeight": "2031643.74105544", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7021", "source": "Netherlands", "target": "GermanyZollverein", "attributes": { "weight": 40620328.56805314, "sourceWeight": "40620328.56805314", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7022", "source": "Netherlands", "target": "Estonia", "attributes": { "weight": 46204.620642736954, "sourceWeight": "46204.620642736954", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7023", "source": "Netherlands", "target": "Finland", "attributes": { "weight": 879556.1240363539, "sourceWeight": "879556.1240363539", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7024", "source": "Netherlands", "target": "France", "attributes": { "weight": 9729474.805775978, "sourceWeight": "9729474.805775978", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7025", "source": "Netherlands", "target": "Greece", "attributes": { "weight": 557814.6785865356, "sourceWeight": "557814.6785865356", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7026", "source": "Netherlands", "target": "UnitedKingdom", "attributes": { "weight": 35789656.5209822, "sourceWeight": "35789656.5209822", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7027", "source": "Netherlands", "target": "Hungary", "attributes": { "weight": 110445.03666796564, "sourceWeight": "110445.03666796564", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7028", "source": "Netherlands", "target": "Ireland", "attributes": { "weight": 1463597.981889476, "sourceWeight": "1463597.981889476", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7029", "source": "Netherlands", "target": "Fiume_Italy", "attributes": { "weight": 1511149.5459455196, "sourceWeight": "1511149.5459455196", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7030", "source": "Netherlands", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 75303.19827962141, "sourceWeight": "75303.19827962141", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7031", "source": "Netherlands", "target": "Latvia", "attributes": { "weight": 126845.27025779412, "sourceWeight": "126845.27025779412", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7032", "source": "Netherlands", "target": "Lithuania", "attributes": { "weight": 71100.16070606672, "sourceWeight": "71100.16070606672", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7033", "source": "Netherlands", "target": "Luxemburg", "attributes": { "weight": 251061.3291077164, "sourceWeight": "251061.3291077164", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7034", "source": "Netherlands", "target": "Norway", "attributes": { "weight": 1837436.7741024366, "sourceWeight": "1837436.7741024366", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7035", "source": "Netherlands", "target": "Austria", "attributes": { "weight": 1042314.9280197475, "sourceWeight": "1042314.9280197475", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7036", "source": "Netherlands", "target": "Poland", "attributes": { "weight": 462165.7867804703, "sourceWeight": "462165.7867804703", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7037", "source": "Netherlands", "target": "Portugal", "attributes": { "weight": 198931.3852418128, "sourceWeight": "198931.3852418128", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7038", "source": "Netherlands", "target": "Romania", "attributes": { "weight": 216898.8736980937, "sourceWeight": "216898.8736980937", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7039", "source": "Netherlands", "target": "EuropeanRussia", "attributes": { "weight": 871525.6505189404, "sourceWeight": "871525.6505189404", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7040", "source": "Netherlands", "target": "Spain", "attributes": { "weight": 1563276.2906262716, "sourceWeight": "1563276.2906262716", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7041", "source": "Netherlands", "target": "Czechoslovakia", "attributes": { "weight": 681115.1652318421, "sourceWeight": "681115.1652318421", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7042", "source": "Netherlands", "target": "EuropeanTurkey", "attributes": { "weight": 450013.98460756446, "sourceWeight": "450013.98460756446", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7043", "source": "Netherlands", "target": "Sweden", "attributes": { "weight": 2299346.798999702, "sourceWeight": "2299346.798999702", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7044", "source": "Netherlands", "target": "Switzerland", "attributes": { "weight": 1736051.5703905425, "sourceWeight": "1736051.5703905425", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7045", "source": "Netherlands", "target": "EthiopiaAbyssinia", "attributes": { "weight": 3902.660027154191, "sourceWeight": "3902.660027154191", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7046", "source": "Netherlands", "target": "BritishEastAfrica", "attributes": { "weight": 502448.71570751, "sourceWeight": "502448.71570751", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7047", "source": "Netherlands", "target": "BritishWestAfrica", "attributes": { "weight": 754169.2498853926, "sourceWeight": "754169.2498853926", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7048", "source": "Netherlands", "target": "FrenchEastAfrica", "attributes": { "weight": 863.001810772465, "sourceWeight": "863.001810772465", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7049", "source": "Netherlands", "target": "FrenchWestAfrica", "attributes": { "weight": 307328.51109040703, "sourceWeight": "307328.51109040703", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7050", "source": "Netherlands", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 104257.98551360892, "sourceWeight": "104257.98551360892", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7051", "source": "Netherlands", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 13391.961973718313, "sourceWeight": "13391.961973718313", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7052", "source": "Netherlands", "target": "SpanishWestAfrica", "attributes": { "weight": 6612.629243989238, "sourceWeight": "6612.629243989238", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7053", "source": "Netherlands", "target": "SouthAfrica", "attributes": { "weight": 738778.1430497497, "sourceWeight": "738778.1430497497", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7054", "source": "Netherlands", "target": "AlgeriaRegencyofAlgiers_TunisiaRegencyofTunis", "attributes": { "weight": 105380.20778612829, "sourceWeight": "105380.20778612829", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7055", "source": "Netherlands", "target": "AmiranteIs_Mauritius_Seychelles", "attributes": { "weight": 18669.92575822616, "sourceWeight": "18669.92575822616", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7056", "source": "Netherlands", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 12271.382526006546, "sourceWeight": "12271.382526006546", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7057", "source": "Netherlands", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 571504.5971016748, "sourceWeight": "571504.5971016748", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7058", "source": "Netherlands", "target": "DjiboutiAfarandIssasFrenchSomaliland_Eritrea", "attributes": { "weight": 1586.5364418258653, "sourceWeight": "1586.5364418258653", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7059", "source": "Netherlands", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 45065.62426428733, "sourceWeight": "45065.62426428733", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7060", "source": "Netherlands", "target": "CongoBrazzavilleFrenchCongoMiddleCongo", "attributes": { "weight": 9857.727025784789, "sourceWeight": "9857.727025784789", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7061", "source": "Netherlands", "target": "Liberia", "attributes": { "weight": 53333.18334077682, "sourceWeight": "53333.18334077682", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7062", "source": "Netherlands", "target": "Morocco", "attributes": { "weight": 79672.85287445241, "sourceWeight": "79672.85287445241", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7063", "source": "Netherlands", "target": "TripolitaniaRegencyofTripoli", "attributes": { "weight": 1763.702127656221, "sourceWeight": "1763.702127656221", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7064", "source": "Netherlands", "target": "Aden_Othercountries", "attributes": { "weight": 2582.866455404777, "sourceWeight": "2582.866455404777", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7065", "source": "Netherlands", "target": "ArabiaAsia", "attributes": { "weight": 32645.955183278806, "sourceWeight": "32645.955183278806", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7066", "source": "Netherlands", "target": "BritishAsia", "attributes": { "weight": 1782.2919873211924, "sourceWeight": "1782.2919873211924", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7067", "source": "Netherlands", "target": "SriLankaCeylon", "attributes": { "weight": 241051.94341285084, "sourceWeight": "241051.94341285084", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7068", "source": "Netherlands", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 384962.9642364794, "sourceWeight": "384962.9642364794", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7069", "source": "Netherlands", "target": "HongKong", "attributes": { "weight": 122769.76776798748, "sourceWeight": "122769.76776798748", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7070", "source": "Netherlands", "target": "FrenchAsia_FrenchIndia", "attributes": { "weight": 26719.507922085908, "sourceWeight": "26719.507922085908", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7071", "source": "Netherlands", "target": "India", "attributes": { "weight": 1466854.4065159978, "sourceWeight": "1466854.4065159978", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7072", "source": "Netherlands", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 9215003.292875191, "sourceWeight": "9215003.292875191", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7073", "source": "Netherlands", "target": "Japan_KoreaChosen", "attributes": { "weight": 407179.40289646434, "sourceWeight": "407179.40289646434", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7074", "source": "Netherlands", "target": "Malacca", "attributes": { "weight": 394494.2014478692, "sourceWeight": "394494.2014478692", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7075", "source": "Netherlands", "target": "Palestine", "attributes": { "weight": 48771.83703023773, "sourceWeight": "48771.83703023773", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7076", "source": "Netherlands", "target": "Afghanistan_IranPersia", "attributes": { "weight": 11927.426889972794, "sourceWeight": "11927.426889972794", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7077", "source": "Netherlands", "target": "Philippines", "attributes": { "weight": 69974.56631946858, "sourceWeight": "69974.56631946858", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7078", "source": "Netherlands", "target": "AsianRussia", "attributes": { "weight": 2359.269352643771, "sourceWeight": "2359.269352643771", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7079", "source": "Netherlands", "target": "ThailandSiam", "attributes": { "weight": 114645.22091422294, "sourceWeight": "114645.22091422294", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7080", "source": "Netherlands", "target": "Syria", "attributes": { "weight": 39192.00679032838, "sourceWeight": "39192.00679032838", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7081", "source": "Netherlands", "target": "AsianTurkey", "attributes": { "weight": 184866.81620607674, "sourceWeight": "184866.81620607674", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7082", "source": "Netherlands", "target": "BritishAmerica", "attributes": { "weight": 142813.095065369, "sourceWeight": "142813.095065369", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7083", "source": "Netherlands", "target": "CostaRica_ElSalvador_Guatemala_Honduras", "attributes": { "weight": 62894.769578875435, "sourceWeight": "62894.769578875435", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7084", "source": "Netherlands", "target": "FrenchAmerica", "attributes": { "weight": 43767.96559520877, "sourceWeight": "43767.96559520877", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7085", "source": "Netherlands", "target": "UnitedStatesofAmerica", "attributes": { "weight": 5028475.503385641, "sourceWeight": "5028475.503385641", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7086", "source": "Netherlands", "target": "ArgentinaLaPlata", "attributes": { "weight": 951312.0312340445, "sourceWeight": "951312.0312340445", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7087", "source": "Netherlands", "target": "Bolivia", "attributes": { "weight": 10087.54956992197, "sourceWeight": "10087.54956992197", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7088", "source": "Netherlands", "target": "Brazil", "attributes": { "weight": 366990.11498345796, "sourceWeight": "366990.11498345796", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7089", "source": "Netherlands", "target": "CanadaProvinceofCanada", "attributes": { "weight": 608191.7283827277, "sourceWeight": "608191.7283827277", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7090", "source": "Netherlands", "target": "Chile", "attributes": { "weight": 207893.42688960017, "sourceWeight": "207893.42688960017", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7091", "source": "Netherlands", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 52694.816206328054, "sourceWeight": "52694.816206328054", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7092", "source": "Netherlands", "target": "Cuba", "attributes": { "weight": 417839.8660019217, "sourceWeight": "417839.8660019217", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7093", "source": "Netherlands", "target": "Curacao", "attributes": { "weight": 336082.6143044764, "sourceWeight": "336082.6143044764", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7094", "source": "Netherlands", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 54589.07967395687, "sourceWeight": "54589.07967395687", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7095", "source": "Netherlands", "target": "Ecuador", "attributes": { "weight": 17087.626075114636, "sourceWeight": "17087.626075114636", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7096", "source": "Netherlands", "target": "Haiti", "attributes": { "weight": 20233.11679489136, "sourceWeight": "20233.11679489136", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7097", "source": "Netherlands", "target": "Mexico", "attributes": { "weight": 113739.07333613503, "sourceWeight": "113739.07333613503", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7098", "source": "Netherlands", "target": "Nicaragua", "attributes": { "weight": 902.3431416913581, "sourceWeight": "902.3431416913581", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7099", "source": "Netherlands", "target": "Panama", "attributes": { "weight": 12277.867360773396, "sourceWeight": "12277.867360773396", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7100", "source": "Netherlands", "target": "Paraguay", "attributes": { "weight": 6246.106382966847, "sourceWeight": "6246.106382966847", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7101", "source": "Netherlands", "target": "Peru", "attributes": { "weight": 60277.49026697457, "sourceWeight": "60277.49026697457", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7102", "source": "Netherlands", "target": "SurinamDutchGuiana", "attributes": { "weight": 188355.91670403298, "sourceWeight": "188355.91670403298", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7103", "source": "Netherlands", "target": "Uruguay", "attributes": { "weight": 128012.7999092179, "sourceWeight": "128012.7999092179", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7104", "source": "Netherlands", "target": "Venezuela", "attributes": { "weight": 131179.733815957, "sourceWeight": "131179.733815957", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7105", "source": "Netherlands", "target": "Australia", "attributes": { "weight": 469419.89587959636, "sourceWeight": "469419.89587959636", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7106", "source": "Netherlands", "target": "Polynesia", "attributes": { "weight": 2218.505205971336, "sourceWeight": "2218.505205971336", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7107", "source": "Netherlands", "target": "NewZealand", "attributes": { "weight": 113516.3408780096, "sourceWeight": "113516.3408780096", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7108", "source": "Denmark", "target": "Iceland", "attributes": { "weight": 665304.6227929374, "sourceWeight": "665304.6227929374", "direction": "Imp", "source_type": "primary", "targetWeight": "665304.6227929374" } }, { "key": "geid_107_7109", "source": "FaeroeIs", "target": "Iceland", "attributes": { "weight": 883.6597110754415, "sourceWeight": "883.6597110754415", "direction": "Imp", "source_type": "primary", "targetWeight": "883.6597110754415" } }, { "key": "geid_107_7110", "source": "UnitedKingdom", "target": "Iceland", "attributes": { "weight": 730378.9406099519, "sourceWeight": "730378.9406099519", "direction": "Imp", "source_type": "primary", "targetWeight": "730378.9406099519" } }, { "key": "geid_107_7111", "source": "Ireland", "target": "Iceland", "attributes": { "weight": 251.74959871589087, "sourceWeight": "251.74959871589087", "direction": "Imp", "source_type": "primary", "targetWeight": "251.74959871589087" } }, { "key": "geid_107_7112", "source": "Norway", "target": "Iceland", "attributes": { "weight": 304392.0385232745, "sourceWeight": "304392.0385232745", "direction": "Imp", "source_type": "primary", "targetWeight": "304392.0385232745" } }, { "key": "geid_107_7113", "source": "Sweden", "target": "Iceland", "attributes": { "weight": 43266.00321027287, "sourceWeight": "43266.00321027287", "direction": "Imp", "source_type": "primary", "targetWeight": "43266.00321027287" } }, { "key": "geid_107_7114", "source": "Finland", "target": "Iceland", "attributes": { "weight": 251.30016051364368, "sourceWeight": "251.30016051364368", "direction": "Imp", "source_type": "primary", "targetWeight": "251.30016051364368" } }, { "key": "geid_107_7115", "source": "DanzigFreeCityofDanzig", "target": "Iceland", "attributes": { "weight": 1013.9325842696629, "sourceWeight": "1013.9325842696629", "direction": "Imp", "source_type": "primary", "targetWeight": "1013.9325842696629" } }, { "key": "geid_107_7116", "source": "GermanyZollverein", "target": "Iceland", "attributes": { "weight": 81087.76886035313, "sourceWeight": "81087.76886035313", "direction": "Imp", "source_type": "primary", "targetWeight": "81087.76886035313" } }, { "key": "geid_107_7117", "source": "Netherlands", "target": "Iceland", "attributes": { "weight": 29027.672552166936, "sourceWeight": "29027.672552166936", "direction": "Imp", "source_type": "primary", "targetWeight": "29027.672552166936" } }, { "key": "geid_107_7118", "source": "Belgium", "target": "Iceland", "attributes": { "weight": 9594.093097913323, "sourceWeight": "9594.093097913323", "direction": "Imp", "source_type": "primary", "targetWeight": "9594.093097913323" } }, { "key": "geid_107_7119", "source": "Luxemburg", "target": "Iceland", "attributes": { "weight": 5.521669341894062, "sourceWeight": "5.521669341894062", "direction": "Imp", "source_type": "primary", "targetWeight": "5.521669341894062" } }, { "key": "geid_107_7120", "source": "France", "target": "Iceland", "attributes": { "weight": 5240.930979133226, "sourceWeight": "5240.930979133226", "direction": "Imp", "source_type": "primary", "targetWeight": "5240.930979133226" } }, { "key": "geid_107_7121", "source": "Portugal", "target": "Iceland", "attributes": { "weight": 1475.4414125200642, "sourceWeight": "1475.4414125200642", "direction": "Imp", "source_type": "primary", "targetWeight": "1475.4414125200642" } }, { "key": "geid_107_7122", "source": "Spain", "target": "Iceland", "attributes": { "weight": 101074.31781701445, "sourceWeight": "101074.31781701445", "direction": "Imp", "source_type": "primary", "targetWeight": "101074.31781701445" } }, { "key": "geid_107_7123", "source": "Malta", "target": "Iceland", "attributes": { "weight": 25.746388443017658, "sourceWeight": "25.746388443017658", "direction": "Imp", "source_type": "primary", "targetWeight": "25.746388443017658" } }, { "key": "geid_107_7124", "source": "Italy", "target": "Iceland", "attributes": { "weight": 28155.120385232745, "sourceWeight": "28155.120385232745", "direction": "Imp", "source_type": "primary", "targetWeight": "28155.120385232745" } }, { "key": "geid_107_7125", "source": "Switzerland", "target": "Iceland", "attributes": { "weight": 533.5473515248797, "sourceWeight": "533.5473515248797", "direction": "Imp", "source_type": "primary", "targetWeight": "533.5473515248797" } }, { "key": "geid_107_7126", "source": "Austria", "target": "Iceland", "attributes": { "weight": 363.0497592295345, "sourceWeight": "363.0497592295345", "direction": "Imp", "source_type": "primary", "targetWeight": "363.0497592295345" } }, { "key": "geid_107_7127", "source": "Czechoslovakia", "target": "Iceland", "attributes": { "weight": 1450.3370786516855, "sourceWeight": "1450.3370786516855", "direction": "Imp", "source_type": "primary", "targetWeight": "1450.3370786516855" } }, { "key": "geid_107_7128", "source": "Poland", "target": "Iceland", "attributes": { "weight": 3.852327447833066, "sourceWeight": "3.852327447833066", "direction": "Imp", "source_type": "primary", "targetWeight": "3.852327447833066" } }, { "key": "geid_107_7129", "source": "CanadaProvinceofCanada", "target": "Iceland", "attributes": { "weight": 867.8972712680578, "sourceWeight": "867.8972712680578", "direction": "Imp", "source_type": "primary", "targetWeight": "867.8972712680578" } }, { "key": "geid_107_7130", "source": "UnitedStatesofAmerica", "target": "Iceland", "attributes": { "weight": 37233.22632423756, "sourceWeight": "37233.22632423756", "direction": "Imp", "source_type": "primary", "targetWeight": "37233.22632423756" } }, { "key": "geid_107_7131", "source": "Brazil", "target": "Iceland", "attributes": { "weight": 5675.2808988764045, "sourceWeight": "5675.2808988764045", "direction": "Imp", "source_type": "primary", "targetWeight": "5675.2808988764045" } }, { "key": "geid_107_7132", "source": "StraitsSettlements", "target": "Iceland", "attributes": { "weight": 1.476725521669342, "sourceWeight": "1.476725521669342", "direction": "Imp", "source_type": "primary", "targetWeight": "1.476725521669342" } }, { "key": "geid_107_7133", "source": "Iceland", "target": "Denmark", "attributes": { "weight": 418605.9069020867, "sourceWeight": "418605.9069020867", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7134", "source": "Iceland", "target": "FaeroeIs", "attributes": { "weight": 22012.841091492777, "sourceWeight": "22012.841091492777", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7135", "source": "Iceland", "target": "UnitedKingdom", "attributes": { "weight": 404377.7528089888, "sourceWeight": "404377.7528089888", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7136", "source": "Iceland", "target": "Norway", "attributes": { "weight": 300528.7961476726, "sourceWeight": "300528.7961476726", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7137", "source": "Iceland", "target": "Sweden", "attributes": { "weight": 145643.0818619583, "sourceWeight": "145643.0818619583", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7138", "source": "Iceland", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 5.778491171749599, "sourceWeight": "5.778491171749599", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7139", "source": "Iceland", "target": "GermanyZollverein", "attributes": { "weight": 46691.396468699844, "sourceWeight": "46691.396468699844", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7140", "source": "Iceland", "target": "Netherlands", "attributes": { "weight": 5196.0513643659715, "sourceWeight": "5196.0513643659715", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7141", "source": "Iceland", "target": "Belgium", "attributes": { "weight": 1271.8138041733548, "sourceWeight": "1271.8138041733548", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7142", "source": "Iceland", "target": "France", "attributes": { "weight": 553.9325842696629, "sourceWeight": "553.9325842696629", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7143", "source": "Iceland", "target": "Portugal", "attributes": { "weight": 28355.66613162119, "sourceWeight": "28355.66613162119", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7144", "source": "Iceland", "target": "Gibraltar", "attributes": { "weight": 266.16372391653294, "sourceWeight": "266.16372391653294", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7145", "source": "Iceland", "target": "Spain", "attributes": { "weight": 981455.3130016052, "sourceWeight": "981455.3130016052", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7146", "source": "Iceland", "target": "Italy", "attributes": { "weight": 392634.7672552167, "sourceWeight": "392634.7672552167", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7147", "source": "Iceland", "target": "Austria", "attributes": { "weight": 6.420545746388443, "sourceWeight": "6.420545746388443", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7148", "source": "Iceland", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 5.778491171749599, "sourceWeight": "5.778491171749599", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7149", "source": "Iceland", "target": "Greece", "attributes": { "weight": 2854.1252006420546, "sourceWeight": "2854.1252006420546", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7150", "source": "Iceland", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 305.97110754414126, "sourceWeight": "305.97110754414126", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7151", "source": "Iceland", "target": "Morocco", "attributes": { "weight": 108.08988764044945, "sourceWeight": "108.08988764044945", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7152", "source": "Iceland", "target": "CanadaProvinceofCanada", "attributes": { "weight": 83.59550561797754, "sourceWeight": "83.59550561797754", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7153", "source": "Iceland", "target": "UnitedStatesofAmerica", "attributes": { "weight": 18524.686998394864, "sourceWeight": "18524.686998394864", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7154", "source": "Iceland", "target": "Japan", "attributes": { "weight": 1281.5409309791332, "sourceWeight": "1281.5409309791332", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7155", "source": "Iceland", "target": "Jamaica", "attributes": { "weight": 2.664526484751204, "sourceWeight": "2.664526484751204", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7156", "source": "UnitedKingdom", "target": "CanadaProvinceofCanada", "attributes": { "weight": 34381744.30838799, "sourceWeight": "34381744.30838799", "direction": "Imp", "source_type": "primary", "targetWeight": "34381744.30838799" } }, { "key": "geid_107_7157", "source": "Aden", "target": "CanadaProvinceofCanada", "attributes": { "weight": 8794.743793512569, "sourceWeight": "8794.743793512569", "direction": "Imp", "source_type": "primary", "targetWeight": "8794.743793512569" } }, { "key": "geid_107_7158", "source": "BritishEastAfrica", "target": "CanadaProvinceofCanada", "attributes": { "weight": 3904.994291598576, "sourceWeight": "3904.994291598576", "direction": "Imp", "source_type": "primary", "targetWeight": "3904.994291598576" } }, { "key": "geid_107_7159", "source": "BritishSouthAfrica", "target": "CanadaProvinceofCanada", "attributes": { "weight": 22029.952318058695, "sourceWeight": "22029.952318058695", "direction": "Imp", "source_type": "primary", "targetWeight": "22029.952318058695" } }, { "key": "geid_107_7160", "source": "GhanaGoldCoast", "target": "CanadaProvinceofCanada", "attributes": { "weight": 51204.13691209062, "sourceWeight": "51204.13691209062", "direction": "Imp", "source_type": "primary", "targetWeight": "51204.13691209062" } }, { "key": "geid_107_7161", "source": "SierraLeone", "target": "CanadaProvinceofCanada", "attributes": { "weight": 5.148754225336347, "sourceWeight": "5.148754225336347", "direction": "Imp", "source_type": "primary", "targetWeight": "5.148754225336347" } }, { "key": "geid_107_7162", "source": "BritishWestAfricaother", "target": "CanadaProvinceofCanada", "attributes": { "weight": 12432.45058315238, "sourceWeight": "12432.45058315238", "direction": "Imp", "source_type": "primary", "targetWeight": "12432.45058315238" } }, { "key": "geid_107_7163", "source": "Bermuda", "target": "CanadaProvinceofCanada", "attributes": { "weight": 11536.343489064493, "sourceWeight": "11536.343489064493", "direction": "Imp", "source_type": "primary", "targetWeight": "11536.343489064493" } }, { "key": "geid_107_7164", "source": "India", "target": "CanadaProvinceofCanada", "attributes": { "weight": 2076257.974972577, "sourceWeight": "2076257.974972577", "direction": "Imp", "source_type": "primary", "targetWeight": "2076257.974972577" } }, { "key": "geid_107_7165", "source": "SriLankaCeylon", "target": "CanadaProvinceofCanada", "attributes": { "weight": 690001.1192943967, "sourceWeight": "690001.1192943967", "direction": "Imp", "source_type": "primary", "targetWeight": "690001.1192943967" } }, { "key": "geid_107_7166", "source": "StraitsSettlements", "target": "CanadaProvinceofCanada", "attributes": { "weight": 449974.70394663204, "sourceWeight": "449974.70394663204", "direction": "Imp", "source_type": "primary", "targetWeight": "449974.70394663204" } }, { "key": "geid_107_7167", "source": "BritishEastIndiesother", "target": "CanadaProvinceofCanada", "attributes": { "weight": 5427.234671263235, "sourceWeight": "5427.234671263235", "direction": "Imp", "source_type": "primary", "targetWeight": "5427.234671263235" } }, { "key": "geid_107_7168", "source": "GuyanaBritishGuiana", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1392814.3538313445, "sourceWeight": "1392814.3538313445", "direction": "Imp", "source_type": "primary", "targetWeight": "1392814.3538313445" } }, { "key": "geid_107_7169", "source": "BelizeBritishHonduras", "target": "CanadaProvinceofCanada", "attributes": { "weight": 38159.20843500257, "sourceWeight": "38159.20843500257", "direction": "Imp", "source_type": "primary", "targetWeight": "38159.20843500257" } }, { "key": "geid_107_7170", "source": "Barbados", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1571582.2345593337, "sourceWeight": "1571582.2345593337", "direction": "Imp", "source_type": "primary", "targetWeight": "1571582.2345593337" } }, { "key": "geid_107_7171", "source": "Jamaica", "target": "CanadaProvinceofCanada", "attributes": { "weight": 738093.8416422287, "sourceWeight": "738093.8416422287", "direction": "Imp", "source_type": "primary", "targetWeight": "738093.8416422287" } }, { "key": "geid_107_7172", "source": "TrinidadandTobago", "target": "CanadaProvinceofCanada", "attributes": { "weight": 327670.5245013543, "sourceWeight": "327670.5245013543", "direction": "Imp", "source_type": "primary", "targetWeight": "327670.5245013543" } }, { "key": "geid_107_7173", "source": "BritishWestIndiesother", "target": "CanadaProvinceofCanada", "attributes": { "weight": 459167.69268653035, "sourceWeight": "459167.69268653035", "direction": "Imp", "source_type": "primary", "targetWeight": "459167.69268653035" } }, { "key": "geid_107_7174", "source": "HongKong", "target": "CanadaProvinceofCanada", "attributes": { "weight": 441304.2018311656, "sourceWeight": "441304.2018311656", "direction": "Imp", "source_type": "primary", "targetWeight": "441304.2018311656" } }, { "key": "geid_107_7175", "source": "Malta", "target": "CanadaProvinceofCanada", "attributes": { "weight": 117.30205278592375, "sourceWeight": "117.30205278592375", "direction": "Imp", "source_type": "primary", "targetWeight": "117.30205278592375" } }, { "key": "geid_107_7176", "source": "NewfoundlandandLabradorNewfoundland", "target": "CanadaProvinceofCanada", "attributes": { "weight": 330173.9383492646, "sourceWeight": "330173.9383492646", "direction": "Imp", "source_type": "primary", "targetWeight": "330173.9383492646" } }, { "key": "geid_107_7177", "source": "Australia", "target": "CanadaProvinceofCanada", "attributes": { "weight": 232242.618253453, "sourceWeight": "232242.618253453", "direction": "Imp", "source_type": "primary", "targetWeight": "232242.618253453" } }, { "key": "geid_107_7178", "source": "Fiji", "target": "CanadaProvinceofCanada", "attributes": { "weight": 5354.256676591077, "sourceWeight": "5354.256676591077", "direction": "Imp", "source_type": "primary", "targetWeight": "5354.256676591077" } }, { "key": "geid_107_7179", "source": "NewZealand", "target": "CanadaProvinceofCanada", "attributes": { "weight": 488242.48393812537, "sourceWeight": "488242.48393812537", "direction": "Imp", "source_type": "primary", "targetWeight": "488242.48393812537" } }, { "key": "geid_107_7180", "source": "Palestine", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1707.5955317767678, "sourceWeight": "1707.5955317767678", "direction": "Imp", "source_type": "primary", "targetWeight": "1707.5955317767678" } }, { "key": "geid_107_7181", "source": "ArgentinaLaPlata", "target": "CanadaProvinceofCanada", "attributes": { "weight": 938365.8301806541, "sourceWeight": "938365.8301806541", "direction": "Imp", "source_type": "primary", "targetWeight": "938365.8301806541" } }, { "key": "geid_107_7182", "source": "Austria", "target": "CanadaProvinceofCanada", "attributes": { "weight": 37782.00622327685, "sourceWeight": "37782.00622327685", "direction": "Imp", "source_type": "primary", "targetWeight": "37782.00622327685" } }, { "key": "geid_107_7183", "source": "Belgium", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1196474.8942266793, "sourceWeight": "1196474.8942266793", "direction": "Imp", "source_type": "primary", "targetWeight": "1196474.8942266793" } }, { "key": "geid_107_7184", "source": "Bolivia", "target": "CanadaProvinceofCanada", "attributes": { "weight": 678.0685455888607, "sourceWeight": "678.0685455888607", "direction": "Imp", "source_type": "primary", "targetWeight": "678.0685455888607" } }, { "key": "geid_107_7185", "source": "Brazil", "target": "CanadaProvinceofCanada", "attributes": { "weight": 322244.18526560854, "sourceWeight": "322244.18526560854", "direction": "Imp", "source_type": "primary", "targetWeight": "322244.18526560854" } }, { "key": "geid_107_7186", "source": "Bulgaria", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1273.0854469342526, "sourceWeight": "1273.0854469342526", "direction": "Imp", "source_type": "primary", "targetWeight": "1273.0854469342526" } }, { "key": "geid_107_7187", "source": "Chile", "target": "CanadaProvinceofCanada", "attributes": { "weight": 21928.99196346623, "sourceWeight": "21928.99196346623", "direction": "Imp", "source_type": "primary", "targetWeight": "21928.99196346623" } }, { "key": "geid_107_7188", "source": "PeoplesRepublicofChinaChina", "target": "CanadaProvinceofCanada", "attributes": { "weight": 608979.4273689865, "sourceWeight": "608979.4273689865", "direction": "Imp", "source_type": "primary", "targetWeight": "608979.4273689865" } }, { "key": "geid_107_7189", "source": "ColombiaNewGranadaGranColombia", "target": "CanadaProvinceofCanada", "attributes": { "weight": 107454.05296501085, "sourceWeight": "107454.05296501085", "direction": "Imp", "source_type": "primary", "targetWeight": "107454.05296501085" } }, { "key": "geid_107_7190", "source": "CostaRica", "target": "CanadaProvinceofCanada", "attributes": { "weight": 16472.431779006514, "sourceWeight": "16472.431779006514", "direction": "Imp", "source_type": "primary", "targetWeight": "16472.431779006514" } }, { "key": "geid_107_7191", "source": "Cuba", "target": "CanadaProvinceofCanada", "attributes": { "weight": 2413433.0997739024, "sourceWeight": "2413433.0997739024", "direction": "Imp", "source_type": "primary", "targetWeight": "2413433.0997739024" } }, { "key": "geid_107_7192", "source": "Czechoslovakia", "target": "CanadaProvinceofCanada", "attributes": { "weight": 172292.3149246715, "sourceWeight": "172292.3149246715", "direction": "Imp", "source_type": "primary", "targetWeight": "172292.3149246715" } }, { "key": "geid_107_7193", "source": "Denmark", "target": "CanadaProvinceofCanada", "attributes": { "weight": 21220.254751404715, "sourceWeight": "21220.254751404715", "direction": "Imp", "source_type": "primary", "targetWeight": "21220.254751404715" } }, { "key": "geid_107_7194", "source": "Greenland", "target": "CanadaProvinceofCanada", "attributes": { "weight": 2.9101654317118486, "sourceWeight": "2.9101654317118486", "direction": "Imp", "source_type": "primary", "targetWeight": "2.9101654317118486" } }, { "key": "geid_107_7195", "source": "Ecuador", "target": "CanadaProvinceofCanada", "attributes": { "weight": 55.29314320252512, "sourceWeight": "55.29314320252512", "direction": "Imp", "source_type": "primary", "targetWeight": "55.29314320252512" } }, { "key": "geid_107_7196", "source": "EgyptArabRepublicEgypt", "target": "CanadaProvinceofCanada", "attributes": { "weight": 7665.151888249647, "sourceWeight": "7665.151888249647", "direction": "Imp", "source_type": "primary", "targetWeight": "7665.151888249647" } }, { "key": "geid_107_7197", "source": "Finland", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1363.30057531732, "sourceWeight": "1363.30057531732", "direction": "Imp", "source_type": "primary", "targetWeight": "1363.30057531732" } }, { "key": "geid_107_7198", "source": "France", "target": "CanadaProvinceofCanada", "attributes": { "weight": 3529773.454814085, "sourceWeight": "3529773.454814085", "direction": "Imp", "source_type": "primary", "targetWeight": "3529773.454814085" } }, { "key": "geid_107_7199", "source": "FrenchAfrica", "target": "CanadaProvinceofCanada", "attributes": { "weight": 90475.25240088647, "sourceWeight": "90475.25240088647", "direction": "Imp", "source_type": "primary", "targetWeight": "90475.25240088647" } }, { "key": "geid_107_7200", "source": "MadagascarMalagasyRepublic", "target": "CanadaProvinceofCanada", "attributes": { "weight": 114.16802847484945, "sourceWeight": "114.16802847484945", "direction": "Imp", "source_type": "primary", "targetWeight": "114.16802847484945" } }, { "key": "geid_107_7201", "source": "StPierreandMiquelon", "target": "CanadaProvinceofCanada", "attributes": { "weight": 6753.598531485751, "sourceWeight": "6753.598531485751", "direction": "Imp", "source_type": "primary", "targetWeight": "6753.598531485751" } }, { "key": "geid_107_7202", "source": "GermanyZollverein", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1204921.7613216627, "sourceWeight": "1204921.7613216627", "direction": "Imp", "source_type": "primary", "targetWeight": "1204921.7613216627" } }, { "key": "geid_107_7203", "source": "Greece", "target": "CanadaProvinceofCanada", "attributes": { "weight": 113701.5065702581, "sourceWeight": "113701.5065702581", "direction": "Imp", "source_type": "primary", "targetWeight": "113701.5065702581" } }, { "key": "geid_107_7204", "source": "Guatemala", "target": "CanadaProvinceofCanada", "attributes": { "weight": 72718.98994873631, "sourceWeight": "72718.98994873631", "direction": "Imp", "source_type": "primary", "targetWeight": "72718.98994873631" } }, { "key": "geid_107_7205", "source": "Haiti", "target": "CanadaProvinceofCanada", "attributes": { "weight": 36097.244297195044, "sourceWeight": "36097.244297195044", "direction": "Imp", "source_type": "primary", "targetWeight": "36097.244297195044" } }, { "key": "geid_107_7206", "source": "Honduras", "target": "CanadaProvinceofCanada", "attributes": { "weight": 2771.5967853864922, "sourceWeight": "2771.5967853864922", "direction": "Imp", "source_type": "primary", "targetWeight": "2771.5967853864922" } }, { "key": "geid_107_7207", "source": "Hungary", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1848.8504846544738, "sourceWeight": "1848.8504846544738", "direction": "Imp", "source_type": "primary", "targetWeight": "1848.8504846544738" } }, { "key": "geid_107_7208", "source": "Iceland", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1795.348212486848, "sourceWeight": "1795.348212486848", "direction": "Imp", "source_type": "primary", "targetWeight": "1795.348212486848" } }, { "key": "geid_107_7209", "source": "Italy", "target": "CanadaProvinceofCanada", "attributes": { "weight": 414104.0048353518, "sourceWeight": "414104.0048353518", "direction": "Imp", "source_type": "primary", "targetWeight": "414104.0048353518" } }, { "key": "geid_107_7210", "source": "Japan", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1409908.2178594612, "sourceWeight": "1409908.2178594612", "direction": "Imp", "source_type": "primary", "targetWeight": "1409908.2178594612" } }, { "key": "geid_107_7211", "source": "KoreaChosen", "target": "CanadaProvinceofCanada", "attributes": { "weight": 35.59356181862953, "sourceWeight": "35.59356181862953", "direction": "Imp", "source_type": "primary", "targetWeight": "35.59356181862953" } }, { "key": "geid_107_7212", "source": "Lithuania", "target": "CanadaProvinceofCanada", "attributes": { "weight": 117.5259116652862, "sourceWeight": "117.5259116652862", "direction": "Imp", "source_type": "primary", "targetWeight": "117.5259116652862" } }, { "key": "geid_107_7213", "source": "Mexico", "target": "CanadaProvinceofCanada", "attributes": { "weight": 592595.6437062075, "sourceWeight": "592595.6437062075", "direction": "Imp", "source_type": "primary", "targetWeight": "592595.6437062075" } }, { "key": "geid_107_7214", "source": "Morocco", "target": "CanadaProvinceofCanada", "attributes": { "weight": 370.4864453448546, "sourceWeight": "370.4864453448546", "direction": "Imp", "source_type": "primary", "targetWeight": "370.4864453448546" } }, { "key": "geid_107_7215", "source": "Netherlands", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1199879.1162051442, "sourceWeight": "1199879.1162051442", "direction": "Imp", "source_type": "primary", "targetWeight": "1199879.1162051442" } }, { "key": "geid_107_7216", "source": "IndonesiaDutchEastIndies", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1079005.1711401131, "sourceWeight": "1079005.1711401131", "direction": "Imp", "source_type": "primary", "targetWeight": "1079005.1711401131" } }, { "key": "geid_107_7217", "source": "NetherlandsAntilles", "target": "CanadaProvinceofCanada", "attributes": { "weight": 185.57901099147097, "sourceWeight": "185.57901099147097", "direction": "Imp", "source_type": "primary", "targetWeight": "185.57901099147097" } }, { "key": "geid_107_7218", "source": "Nicaragua", "target": "CanadaProvinceofCanada", "attributes": { "weight": 3714.490385261131, "sourceWeight": "3714.490385261131", "direction": "Imp", "source_type": "primary", "targetWeight": "3714.490385261131" } }, { "key": "geid_107_7219", "source": "Norway", "target": "CanadaProvinceofCanada", "attributes": { "weight": 156375.9486020013, "sourceWeight": "156375.9486020013", "direction": "Imp", "source_type": "primary", "targetWeight": "156375.9486020013" } }, { "key": "geid_107_7220", "source": "Panama", "target": "CanadaProvinceofCanada", "attributes": { "weight": 381.9032481923395, "sourceWeight": "381.9032481923395", "direction": "Imp", "source_type": "primary", "targetWeight": "381.9032481923395" } }, { "key": "geid_107_7221", "source": "IranPersia", "target": "CanadaProvinceofCanada", "attributes": { "weight": 29663.316245438873, "sourceWeight": "29663.316245438873", "direction": "Imp", "source_type": "primary", "targetWeight": "29663.316245438873" } }, { "key": "geid_107_7222", "source": "Peru", "target": "CanadaProvinceofCanada", "attributes": { "weight": 904091.6925969868, "sourceWeight": "904091.6925969868", "direction": "Imp", "source_type": "primary", "targetWeight": "904091.6925969868" } }, { "key": "geid_107_7223", "source": "DanzigFreeCityofDanzig_Poland", "target": "CanadaProvinceofCanada", "attributes": { "weight": 8995.097490541963, "sourceWeight": "8995.097490541963", "direction": "Imp", "source_type": "primary", "targetWeight": "8995.097490541963" } }, { "key": "geid_107_7224", "source": "Portugal", "target": "CanadaProvinceofCanada", "attributes": { "weight": 58293.076044861315, "sourceWeight": "58293.076044861315", "direction": "Imp", "source_type": "primary", "targetWeight": "58293.076044861315" } }, { "key": "geid_107_7225", "source": "AzoresWesternIsles_MadeiraIsles", "target": "CanadaProvinceofCanada", "attributes": { "weight": 19966.19730921627, "sourceWeight": "19966.19730921627", "direction": "Imp", "source_type": "primary", "targetWeight": "19966.19730921627" } }, { "key": "geid_107_7226", "source": "Romania", "target": "CanadaProvinceofCanada", "attributes": { "weight": 434.2862259631528, "sourceWeight": "434.2862259631528", "direction": "Imp", "source_type": "primary", "targetWeight": "434.2862259631528" } }, { "key": "geid_107_7227", "source": "RussiaUSSR", "target": "CanadaProvinceofCanada", "attributes": { "weight": 77179.82583779185, "sourceWeight": "77179.82583779185", "direction": "Imp", "source_type": "primary", "targetWeight": "77179.82583779185" } }, { "key": "geid_107_7228", "source": "ElSalvador", "target": "CanadaProvinceofCanada", "attributes": { "weight": 21082.80539947617, "sourceWeight": "21082.80539947617", "direction": "Imp", "source_type": "primary", "targetWeight": "21082.80539947617" } }, { "key": "geid_107_7229", "source": "DominicanRepublicSantoDomingo", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1969971.5699223208, "sourceWeight": "1969971.5699223208", "direction": "Imp", "source_type": "primary", "targetWeight": "1969971.5699223208" } }, { "key": "geid_107_7230", "source": "ThailandSiam", "target": "CanadaProvinceofCanada", "attributes": { "weight": 10406.080007163484, "sourceWeight": "10406.080007163484", "direction": "Imp", "source_type": "primary", "targetWeight": "10406.080007163484" } }, { "key": "geid_107_7231", "source": "Spain", "target": "CanadaProvinceofCanada", "attributes": { "weight": 373076.2687201988, "sourceWeight": "373076.2687201988", "direction": "Imp", "source_type": "primary", "targetWeight": "373076.2687201988" } }, { "key": "geid_107_7232", "source": "CanaryIs", "target": "CanadaProvinceofCanada", "attributes": { "weight": 253.63211031765573, "sourceWeight": "253.63211031765573", "direction": "Imp", "source_type": "primary", "targetWeight": "253.63211031765573" } }, { "key": "geid_107_7233", "source": "Sweden", "target": "CanadaProvinceofCanada", "attributes": { "weight": 236518.3228492758, "sourceWeight": "236518.3228492758", "direction": "Imp", "source_type": "primary", "targetWeight": "236518.3228492758" } }, { "key": "geid_107_7234", "source": "Switzerland", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1885042.421257639, "sourceWeight": "1885042.421257639", "direction": "Imp", "source_type": "primary", "targetWeight": "1885042.421257639" } }, { "key": "geid_107_7235", "source": "Syria", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1144.5904501802063, "sourceWeight": "1144.5904501802063", "direction": "Imp", "source_type": "primary", "targetWeight": "1144.5904501802063" } }, { "key": "geid_107_7236", "source": "TurkeyOttomanEmpire", "target": "CanadaProvinceofCanada", "attributes": { "weight": 74166.01374493519, "sourceWeight": "74166.01374493519", "direction": "Imp", "source_type": "primary", "targetWeight": "74166.01374493519" } }, { "key": "geid_107_7237", "source": "UnitedStatesofAmerica", "target": "CanadaProvinceofCanada", "attributes": { "weight": 134596594.43486825, "sourceWeight": "134596594.43486825", "direction": "Imp", "source_type": "primary", "targetWeight": "134596594.43486825" } }, { "key": "geid_107_7238", "source": "Alaska", "target": "CanadaProvinceofCanada", "attributes": { "weight": 59769.20149537731, "sourceWeight": "59769.20149537731", "direction": "Imp", "source_type": "primary", "targetWeight": "59769.20149537731" } }, { "key": "geid_107_7239", "source": "VirginIslandsDanishWestIndies", "target": "CanadaProvinceofCanada", "attributes": { "weight": 11.640661726847394, "sourceWeight": "11.640661726847394", "direction": "Imp", "source_type": "primary", "targetWeight": "11.640661726847394" } }, { "key": "geid_107_7240", "source": "HawaiiSandwichIs", "target": "CanadaProvinceofCanada", "attributes": { "weight": 34280.85335004813, "sourceWeight": "34280.85335004813", "direction": "Imp", "source_type": "primary", "targetWeight": "34280.85335004813" } }, { "key": "geid_107_7241", "source": "Philippines", "target": "CanadaProvinceofCanada", "attributes": { "weight": 24346.89171946005, "sourceWeight": "24346.89171946005", "direction": "Imp", "source_type": "primary", "targetWeight": "24346.89171946005" } }, { "key": "geid_107_7242", "source": "PuertoRico", "target": "CanadaProvinceofCanada", "attributes": { "weight": 207.51718116899104, "sourceWeight": "207.51718116899104", "direction": "Imp", "source_type": "primary", "targetWeight": "207.51718116899104" } }, { "key": "geid_107_7243", "source": "Uruguay", "target": "CanadaProvinceofCanada", "attributes": { "weight": 39147.99310514651, "sourceWeight": "39147.99310514651", "direction": "Imp", "source_type": "primary", "targetWeight": "39147.99310514651" } }, { "key": "geid_107_7244", "source": "Venezuela", "target": "CanadaProvinceofCanada", "attributes": { "weight": 38187.862371560965, "sourceWeight": "38187.862371560965", "direction": "Imp", "source_type": "primary", "targetWeight": "38187.862371560965" } }, { "key": "geid_107_7245", "source": "CanadaProvinceofCanada", "target": "UnitedKingdom", "attributes": { "weight": 80602131.58424929, "sourceWeight": "80602131.58424929", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7246", "source": "CanadaProvinceofCanada", "target": "Aden", "attributes": { "weight": 7567.997134606344, "sourceWeight": "7567.997134606344", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7247", "source": "CanadaProvinceofCanada", "target": "BritishEastAfrica", "attributes": { "weight": 71845.04488370531, "sourceWeight": "71845.04488370531", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7248", "source": "CanadaProvinceofCanada", "target": "BritishSouthAfrica", "attributes": { "weight": 1795315.305231582, "sourceWeight": "1795315.305231582", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7249", "source": "CanadaProvinceofCanada", "target": "Gambia", "attributes": { "weight": 1666.853215732802, "sourceWeight": "1666.853215732802", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7250", "source": "CanadaProvinceofCanada", "target": "GhanaGoldCoast", "attributes": { "weight": 21910.63553535851, "sourceWeight": "21910.63553535851", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7251", "source": "CanadaProvinceofCanada", "target": "Nigeria", "attributes": { "weight": 19813.301694611717, "sourceWeight": "19813.301694611717", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7252", "source": "CanadaProvinceofCanada", "target": "SierraLeone", "attributes": { "weight": 3588.905553938797, "sourceWeight": "3588.905553938797", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7253", "source": "CanadaProvinceofCanada", "target": "BritishWestAfricaother", "attributes": { "weight": 23002.619148888538, "sourceWeight": "23002.619148888538", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7254", "source": "CanadaProvinceofCanada", "target": "Bermuda", "attributes": { "weight": 318908.46410422865, "sourceWeight": "318908.46410422865", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7255", "source": "CanadaProvinceofCanada", "target": "India", "attributes": { "weight": 698569.0940431152, "sourceWeight": "698569.0940431152", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7256", "source": "CanadaProvinceofCanada", "target": "SriLankaCeylon", "attributes": { "weight": 99646.07911172796, "sourceWeight": "99646.07911172796", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7257", "source": "CanadaProvinceofCanada", "target": "StraitsSettlements", "attributes": { "weight": 286660.92095542967, "sourceWeight": "286660.92095542967", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7258", "source": "CanadaProvinceofCanada", "target": "BritishEastIndiesother", "attributes": { "weight": 361.0843724116317, "sourceWeight": "361.0843724116317", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7259", "source": "CanadaProvinceofCanada", "target": "GuyanaBritishGuiana", "attributes": { "weight": 566130.1515524613, "sourceWeight": "566130.1515524613", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7260", "source": "CanadaProvinceofCanada", "target": "BelizeBritishHonduras", "attributes": { "weight": 78232.18642967472, "sourceWeight": "78232.18642967472", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7261", "source": "CanadaProvinceofCanada", "target": "Barbados", "attributes": { "weight": 396187.90714333684, "sourceWeight": "396187.90714333684", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7262", "source": "CanadaProvinceofCanada", "target": "Jamaica", "attributes": { "weight": 701135.4122361263, "sourceWeight": "701135.4122361263", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7263", "source": "CanadaProvinceofCanada", "target": "TrinidadandTobago", "attributes": { "weight": 771644.4673277965, "sourceWeight": "771644.4673277965", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7264", "source": "CanadaProvinceofCanada", "target": "BritishWestIndiesother", "attributes": { "weight": 605056.0766492803, "sourceWeight": "605056.0766492803", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7265", "source": "CanadaProvinceofCanada", "target": "Gibraltar", "attributes": { "weight": 8326.878735645048, "sourceWeight": "8326.878735645048", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7266", "source": "CanadaProvinceofCanada", "target": "HongKong", "attributes": { "weight": 852897.1816167088, "sourceWeight": "852897.1816167088", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7267", "source": "CanadaProvinceofCanada", "target": "Malta", "attributes": { "weight": 61415.90741196749, "sourceWeight": "61415.90741196749", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7268", "source": "CanadaProvinceofCanada", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 2352300.821562087, "sourceWeight": "2352300.821562087", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7269", "source": "CanadaProvinceofCanada", "target": "Australia", "attributes": { "weight": 4460163.6408408135, "sourceWeight": "4460163.6408408135", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7270", "source": "CanadaProvinceofCanada", "target": "Fiji", "attributes": { "weight": 60340.04163775156, "sourceWeight": "60340.04163775156", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7271", "source": "CanadaProvinceofCanada", "target": "NewZealand", "attributes": { "weight": 2850981.621186004, "sourceWeight": "2850981.621186004", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7272", "source": "CanadaProvinceofCanada", "target": "BritishOceaniaother", "attributes": { "weight": 14236.977009693088, "sourceWeight": "14236.977009693088", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7273", "source": "CanadaProvinceofCanada", "target": "Palestine", "attributes": { "weight": 5936.737480692172, "sourceWeight": "5936.737480692172", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7274", "source": "CanadaProvinceofCanada", "target": "EthiopiaAbyssinia", "attributes": { "weight": 179.75868012804727, "sourceWeight": "179.75868012804727", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7275", "source": "CanadaProvinceofCanada", "target": "ArgentinaLaPlata", "attributes": { "weight": 1635482.9755322244, "sourceWeight": "1635482.9755322244", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7276", "source": "CanadaProvinceofCanada", "target": "Austria", "attributes": { "weight": 11743.189093595396, "sourceWeight": "11743.189093595396", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7277", "source": "CanadaProvinceofCanada", "target": "Belgium", "attributes": { "weight": 3906884.108258154, "sourceWeight": "3906884.108258154", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7278", "source": "CanadaProvinceofCanada", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 441.8974278614761, "sourceWeight": "441.8974278614761", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7279", "source": "CanadaProvinceofCanada", "target": "Bolivia", "attributes": { "weight": 13931.85735712207, "sourceWeight": "13931.85735712207", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7280", "source": "CanadaProvinceofCanada", "target": "Brazil", "attributes": { "weight": 587475.0956996708, "sourceWeight": "587475.0956996708", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7281", "source": "CanadaProvinceofCanada", "target": "Bulgaria", "attributes": { "weight": 444.3598755344631, "sourceWeight": "444.3598755344631", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7282", "source": "CanadaProvinceofCanada", "target": "Chile", "attributes": { "weight": 139062.92673098878, "sourceWeight": "139062.92673098878", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7283", "source": "CanadaProvinceofCanada", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 2909773.230955206, "sourceWeight": "2909773.230955206", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7284", "source": "CanadaProvinceofCanada", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 53763.29162096214, "sourceWeight": "53763.29162096214", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7285", "source": "CanadaProvinceofCanada", "target": "CostaRica", "attributes": { "weight": 30038.50372725034, "sourceWeight": "30038.50372725034", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7286", "source": "CanadaProvinceofCanada", "target": "Cuba", "attributes": { "weight": 1517003.2011819747, "sourceWeight": "1517003.2011819747", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7287", "source": "CanadaProvinceofCanada", "target": "Czechoslovakia", "attributes": { "weight": 21258.53461977569, "sourceWeight": "21258.53461977569", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7288", "source": "CanadaProvinceofCanada", "target": "Denmark", "attributes": { "weight": 839425.8019744352, "sourceWeight": "839425.8019744352", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7289", "source": "CanadaProvinceofCanada", "target": "Ecuador", "attributes": { "weight": 12544.827740592329, "sourceWeight": "12544.827740592329", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7290", "source": "CanadaProvinceofCanada", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 213411.161603725, "sourceWeight": "213411.161603725", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7291", "source": "CanadaProvinceofCanada", "target": "Estonia", "attributes": { "weight": 52881.287636274086, "sourceWeight": "52881.287636274086", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7292", "source": "CanadaProvinceofCanada", "target": "Finland", "attributes": { "weight": 392710.93102907925, "sourceWeight": "392710.93102907925", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7293", "source": "CanadaProvinceofCanada", "target": "France", "attributes": { "weight": 4226253.4977949895, "sourceWeight": "4226253.4977949895", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7294", "source": "CanadaProvinceofCanada", "target": "FrenchAfrica", "attributes": { "weight": 17347.048420675605, "sourceWeight": "17347.048420675605", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7295", "source": "CanadaProvinceofCanada", "target": "FrenchIndia", "attributes": { "weight": 1852.4322267242728, "sourceWeight": "1852.4322267242728", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7296", "source": "CanadaProvinceofCanada", "target": "FrenchPolynesia", "attributes": { "weight": 2564.527321976226, "sourceWeight": "2564.527321976226", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7297", "source": "CanadaProvinceofCanada", "target": "FrenchWestIndies", "attributes": { "weight": 14200.711871236372, "sourceWeight": "14200.711871236372", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7298", "source": "CanadaProvinceofCanada", "target": "MadagascarMalagasyRepublic", "attributes": { "weight": 23.28132345369479, "sourceWeight": "23.28132345369479", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7299", "source": "CanadaProvinceofCanada", "target": "StPierreandMiquelon", "attributes": { "weight": 398778.84981307783, "sourceWeight": "398778.84981307783", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7300", "source": "CanadaProvinceofCanada", "target": "GermanyZollverein", "attributes": { "weight": 3616137.9866132387, "sourceWeight": "3616137.9866132387", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7301", "source": "CanadaProvinceofCanada", "target": "Greece", "attributes": { "weight": 1364487.2512368201, "sourceWeight": "1364487.2512368201", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7302", "source": "CanadaProvinceofCanada", "target": "Guatemala", "attributes": { "weight": 17113.115891741843, "sourceWeight": "17113.115891741843", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7303", "source": "CanadaProvinceofCanada", "target": "Haiti", "attributes": { "weight": 89914.93362584227, "sourceWeight": "89914.93362584227", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7304", "source": "CanadaProvinceofCanada", "target": "Honduras", "attributes": { "weight": 43977.076850753285, "sourceWeight": "43977.076850753285", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7305", "source": "CanadaProvinceofCanada", "target": "Hungary", "attributes": { "weight": 6134.852588927939, "sourceWeight": "6134.852588927939", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7306", "source": "CanadaProvinceofCanada", "target": "Iceland", "attributes": { "weight": 4342.862259631528, "sourceWeight": "4342.862259631528", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7307", "source": "CanadaProvinceofCanada", "target": "Italy", "attributes": { "weight": 4141742.517516957, "sourceWeight": "4141742.517516957", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7308", "source": "CanadaProvinceofCanada", "target": "ItalianAfricaother", "attributes": { "weight": 8.282778536410646, "sourceWeight": "8.282778536410646", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7309", "source": "CanadaProvinceofCanada", "target": "Japan", "attributes": { "weight": 6042367.531508137, "sourceWeight": "6042367.531508137", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7310", "source": "CanadaProvinceofCanada", "target": "KoreaChosen", "attributes": { "weight": 2688.0974233842985, "sourceWeight": "2688.0974233842985", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7311", "source": "CanadaProvinceofCanada", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 14912.583107608962, "sourceWeight": "14912.583107608962", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7312", "source": "CanadaProvinceofCanada", "target": "Latvia", "attributes": { "weight": 35849.43251774082, "sourceWeight": "35849.43251774082", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7313", "source": "CanadaProvinceofCanada", "target": "Liberia", "attributes": { "weight": 790.8934207875354, "sourceWeight": "790.8934207875354", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7314", "source": "CanadaProvinceofCanada", "target": "Lithuania", "attributes": { "weight": 1317.8572228067426, "sourceWeight": "1317.8572228067426", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7315", "source": "CanadaProvinceofCanada", "target": "Mexico", "attributes": { "weight": 785833.538537306, "sourceWeight": "785833.538537306", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7316", "source": "CanadaProvinceofCanada", "target": "Morocco", "attributes": { "weight": 3364.598956817622, "sourceWeight": "3364.598956817622", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7317", "source": "CanadaProvinceofCanada", "target": "Netherlands", "attributes": { "weight": 2124170.267063643, "sourceWeight": "2124170.267063643", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7318", "source": "CanadaProvinceofCanada", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 247156.76837321752, "sourceWeight": "247156.76837321752", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7319", "source": "CanadaProvinceofCanada", "target": "SurinamDutchGuiana", "attributes": { "weight": 24211.904815204492, "sourceWeight": "24211.904815204492", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7320", "source": "CanadaProvinceofCanada", "target": "NetherlandsAntilles", "attributes": { "weight": 6608.537977658883, "sourceWeight": "6608.537977658883", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7321", "source": "CanadaProvinceofCanada", "target": "Nicaragua", "attributes": { "weight": 27307.20154014909, "sourceWeight": "27307.20154014909", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7322", "source": "CanadaProvinceofCanada", "target": "Norway", "attributes": { "weight": 1175760.3366837546, "sourceWeight": "1175760.3366837546", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7323", "source": "CanadaProvinceofCanada", "target": "Panama", "attributes": { "weight": 46259.98970249155, "sourceWeight": "46259.98970249155", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7324", "source": "CanadaProvinceofCanada", "target": "Paraguay", "attributes": { "weight": 16.117839314096393, "sourceWeight": "16.117839314096393", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7325", "source": "CanadaProvinceofCanada", "target": "IranPersia", "attributes": { "weight": 269.97380851111456, "sourceWeight": "269.97380851111456", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7326", "source": "CanadaProvinceofCanada", "target": "Peru", "attributes": { "weight": 127217.88184728347, "sourceWeight": "127217.88184728347", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7327", "source": "CanadaProvinceofCanada", "target": "DanzigFreeCityofDanzig_Poland", "attributes": { "weight": 412343.5786080455, "sourceWeight": "412343.5786080455", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7328", "source": "CanadaProvinceofCanada", "target": "Portugal", "attributes": { "weight": 227327.79655705043, "sourceWeight": "227327.79655705043", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7329", "source": "CanadaProvinceofCanada", "target": "AzoresWesternIsles_MadeiraIsles", "attributes": { "weight": 67648.1386134181, "sourceWeight": "67648.1386134181", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7330", "source": "CanadaProvinceofCanada", "target": "PortugueseAfrica", "attributes": { "weight": 72309.77591726175, "sourceWeight": "72309.77591726175", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7331", "source": "CanadaProvinceofCanada", "target": "Romania", "attributes": { "weight": 2878.8251886011058, "sourceWeight": "2878.8251886011058", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7332", "source": "CanadaProvinceofCanada", "target": "RussiaUSSR", "attributes": { "weight": 25963.15282845694, "sourceWeight": "25963.15282845694", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7333", "source": "CanadaProvinceofCanada", "target": "ElSalvador", "attributes": { "weight": 18355.980389962166, "sourceWeight": "18355.980389962166", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7334", "source": "CanadaProvinceofCanada", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 66766.35848760941, "sourceWeight": "66766.35848760941", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7335", "source": "CanadaProvinceofCanada", "target": "ThailandSiam", "attributes": { "weight": 25918.60491146381, "sourceWeight": "25918.60491146381", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7336", "source": "CanadaProvinceofCanada", "target": "Spain", "attributes": { "weight": 177905.12860692618, "sourceWeight": "177905.12860692618", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7337", "source": "CanadaProvinceofCanada", "target": "CanaryIs", "attributes": { "weight": 14786.550558527902, "sourceWeight": "14786.550558527902", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7338", "source": "CanadaProvinceofCanada", "target": "SpanishAfrica", "attributes": { "weight": 1331.9603322065768, "sourceWeight": "1331.9603322065768", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7339", "source": "CanadaProvinceofCanada", "target": "Sweden", "attributes": { "weight": 831994.5826151194, "sourceWeight": "831994.5826151194", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7340", "source": "CanadaProvinceofCanada", "target": "Switzerland", "attributes": { "weight": 288684.1575071075, "sourceWeight": "288684.1575071075", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7341", "source": "CanadaProvinceofCanada", "target": "Syria", "attributes": { "weight": 4731.481274204741, "sourceWeight": "4731.481274204741", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7342", "source": "CanadaProvinceofCanada", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 38012.13315126144, "sourceWeight": "38012.13315126144", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7343", "source": "CanadaProvinceofCanada", "target": "UnitedStatesofAmerica", "attributes": { "weight": 96417708.13279308, "sourceWeight": "96417708.13279308", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7344", "source": "CanadaProvinceofCanada", "target": "Alaska", "attributes": { "weight": 68566.63159544223, "sourceWeight": "68566.63159544223", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7345", "source": "CanadaProvinceofCanada", "target": "VirginIslandsDanishWestIndies", "attributes": { "weight": 480.17729623245503, "sourceWeight": "480.17729623245503", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7346", "source": "CanadaProvinceofCanada", "target": "Guam", "attributes": { "weight": 137.67321080790668, "sourceWeight": "137.67321080790668", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7347", "source": "CanadaProvinceofCanada", "target": "HawaiiSandwichIs", "attributes": { "weight": 41008.26039264847, "sourceWeight": "41008.26039264847", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7348", "source": "CanadaProvinceofCanada", "target": "Philippines", "attributes": { "weight": 67343.91439636453, "sourceWeight": "67343.91439636453", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7349", "source": "CanadaProvinceofCanada", "target": "PuertoRico", "attributes": { "weight": 155058.76295583264, "sourceWeight": "155058.76295583264", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7350", "source": "CanadaProvinceofCanada", "target": "Uruguay", "attributes": { "weight": 103056.79299769424, "sourceWeight": "103056.79299769424", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7351", "source": "CanadaProvinceofCanada", "target": "Venezuela", "attributes": { "weight": 195383.8060486669, "sourceWeight": "195383.8060486669", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7352", "source": "AlgeriaRegencyofAlgiers", "target": "Bangkok", "attributes": { "weight": 176.64, "sourceWeight": "176.64", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "176.64" } }, { "key": "geid_107_7353", "source": "EgyptArabRepublicEgypt", "target": "Bangkok", "attributes": { "weight": 1051.76, "sourceWeight": "1051.76", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1051.76" } }, { "key": "geid_107_7354", "source": "SouthAfrica", "target": "Bangkok", "attributes": { "weight": 3613.84, "sourceWeight": "3613.84", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3613.84" } }, { "key": "geid_107_7355", "source": "CanadaProvinceofCanada", "target": "Bangkok", "attributes": { "weight": 262.24, "sourceWeight": "262.24", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "262.24" } }, { "key": "geid_107_7356", "source": "UnitedStatesofAmerica", "target": "Bangkok", "attributes": { "weight": 326258.08, "sourceWeight": "326258.08", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "326258.08" } }, { "key": "geid_107_7357", "source": "MyanmarBurma", "target": "Bangkok", "attributes": { "weight": 26686.8, "sourceWeight": "26686.8", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "26686.8" } }, { "key": "geid_107_7358", "source": "SriLankaCeylon", "target": "Bangkok", "attributes": { "weight": 473.68, "sourceWeight": "473.68", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "473.68" } }, { "key": "geid_107_7359", "source": "PeoplesRepublicofChinaChina", "target": "Bangkok", "attributes": { "weight": 1000838.8, "sourceWeight": "1000838.8", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1000838.8" } }, { "key": "geid_107_7360", "source": "RepublicofChinaTaiwanFormosa", "target": "Bangkok", "attributes": { "weight": 4691.84, "sourceWeight": "4691.84", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4691.84" } }, { "key": "geid_107_7361", "source": "HongKong", "target": "Bangkok", "attributes": { "weight": 2970033.36, "sourceWeight": "2970033.36", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2970033.36" } }, { "key": "geid_107_7362", "source": "India", "target": "Bangkok", "attributes": { "weight": 1135922.56, "sourceWeight": "1135922.56", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1135922.56" } }, { "key": "geid_107_7363", "source": "DutchIndia", "target": "Bangkok", "attributes": { "weight": 436615.44, "sourceWeight": "436615.44", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "436615.44" } }, { "key": "geid_107_7364", "source": "FrenchIndochina", "target": "Bangkok", "attributes": { "weight": 95013.44, "sourceWeight": "95013.44", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "95013.44" } }, { "key": "geid_107_7365", "source": "Japan", "target": "Bangkok", "attributes": { "weight": 417634, "sourceWeight": "417634", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "417634" } }, { "key": "geid_107_7366", "source": "CambodiaKampuchea", "target": "Bangkok", "attributes": { "weight": 25433.36, "sourceWeight": "25433.36", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "25433.36" } }, { "key": "geid_107_7367", "source": "FederatedMalayStates_StraitsSettlements", "target": "Bangkok", "attributes": { "weight": 1910798.64, "sourceWeight": "1910798.64", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1910798.64" } }, { "key": "geid_107_7368", "source": "Austria", "target": "Bangkok", "attributes": { "weight": 16295.84, "sourceWeight": "16295.84", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "16295.84" } }, { "key": "geid_107_7369", "source": "Belgium", "target": "Bangkok", "attributes": { "weight": 360542.32, "sourceWeight": "360542.32", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "360542.32" } }, { "key": "geid_107_7370", "source": "Czechoslovakia", "target": "Bangkok", "attributes": { "weight": 955.6, "sourceWeight": "955.6", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "955.6" } }, { "key": "geid_107_7371", "source": "Denmark", "target": "Bangkok", "attributes": { "weight": 124690.16, "sourceWeight": "124690.16", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "124690.16" } }, { "key": "geid_107_7372", "source": "France", "target": "Bangkok", "attributes": { "weight": 414303.2, "sourceWeight": "414303.2", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "414303.2" } }, { "key": "geid_107_7373", "source": "GermanyZollverein", "target": "Bangkok", "attributes": { "weight": 413434.24, "sourceWeight": "413434.24", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "413434.24" } }, { "key": "geid_107_7374", "source": "Italy", "target": "Bangkok", "attributes": { "weight": 142241.2, "sourceWeight": "142241.2", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "142241.2" } }, { "key": "geid_107_7375", "source": "Netherlands", "target": "Bangkok", "attributes": { "weight": 138218.72, "sourceWeight": "138218.72", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "138218.72" } }, { "key": "geid_107_7376", "source": "Norway", "target": "Bangkok", "attributes": { "weight": 3620.88, "sourceWeight": "3620.88", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3620.88" } }, { "key": "geid_107_7377", "source": "Portugal", "target": "Bangkok", "attributes": { "weight": 173.76, "sourceWeight": "173.76", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "173.76" } }, { "key": "geid_107_7378", "source": "Spain", "target": "Bangkok", "attributes": { "weight": 683.52, "sourceWeight": "683.52", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "683.52" } }, { "key": "geid_107_7379", "source": "Sweden", "target": "Bangkok", "attributes": { "weight": 9602.88, "sourceWeight": "9602.88", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9602.88" } }, { "key": "geid_107_7380", "source": "Switzerland", "target": "Bangkok", "attributes": { "weight": 121327.36, "sourceWeight": "121327.36", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "121327.36" } }, { "key": "geid_107_7381", "source": "UnitedKingdom", "target": "Bangkok", "attributes": { "weight": 2091145.28, "sourceWeight": "2091145.28", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2091145.28" } }, { "key": "geid_107_7382", "source": "Australia", "target": "Bangkok", "attributes": { "weight": 21131.28, "sourceWeight": "21131.28", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "21131.28" } }, { "key": "geid_107_7383", "source": "Borneo", "target": "Bangkok", "attributes": { "weight": 12804.64, "sourceWeight": "12804.64", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "12804.64" } }, { "key": "geid_107_7384", "source": "NewZealand", "target": "Bangkok", "attributes": { "weight": 0.8, "sourceWeight": "0.8", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "0.8" } }, { "key": "geid_107_7385", "source": "Philippines", "target": "Bangkok", "attributes": { "weight": 13855.28, "sourceWeight": "13855.28", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "13855.28" } }, { "key": "geid_107_7386", "source": "Bangkok", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 219462.56, "sourceWeight": "219462.56", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7387", "source": "Bangkok", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 5077.04, "sourceWeight": "5077.04", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7388", "source": "Bangkok", "target": "SouthAfrica", "attributes": { "weight": 42185.92, "sourceWeight": "42185.92", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7389", "source": "Bangkok", "target": "CanadaProvinceofCanada", "attributes": { "weight": 289.6, "sourceWeight": "289.6", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7390", "source": "Bangkok", "target": "Mexico", "attributes": { "weight": 6048, "sourceWeight": "6048", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7391", "source": "Bangkok", "target": "UnitedStatesofAmerica", "attributes": { "weight": 130948.64, "sourceWeight": "130948.64", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7392", "source": "Bangkok", "target": "WestIndies", "attributes": { "weight": 580144.08, "sourceWeight": "580144.08", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7393", "source": "Bangkok", "target": "MyanmarBurma", "attributes": { "weight": 1468.4, "sourceWeight": "1468.4", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7394", "source": "Bangkok", "target": "SriLankaCeylon", "attributes": { "weight": 26274.24, "sourceWeight": "26274.24", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7395", "source": "Bangkok", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 116570.24, "sourceWeight": "116570.24", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7396", "source": "Bangkok", "target": "RepublicofChinaTaiwanFormosa", "attributes": { "weight": 26440.56, "sourceWeight": "26440.56", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7397", "source": "Bangkok", "target": "HongKong", "attributes": { "weight": 4908140.4, "sourceWeight": "4908140.4", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7398", "source": "Bangkok", "target": "India", "attributes": { "weight": 104106.4, "sourceWeight": "104106.4", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7399", "source": "Bangkok", "target": "DutchIndia", "attributes": { "weight": 498095.6, "sourceWeight": "498095.6", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7400", "source": "Bangkok", "target": "FrenchIndochina", "attributes": { "weight": 45036.32, "sourceWeight": "45036.32", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7401", "source": "Bangkok", "target": "Japan", "attributes": { "weight": 485758.48, "sourceWeight": "485758.48", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7402", "source": "Bangkok", "target": "CambodiaKampuchea", "attributes": { "weight": 315.2, "sourceWeight": "315.2", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7403", "source": "Bangkok", "target": "FederatedMalayStates_StraitsSettlements", "attributes": { "weight": 4695439.76, "sourceWeight": "4695439.76", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7404", "source": "Bangkok", "target": "Asiaother", "attributes": { "weight": 3669.6, "sourceWeight": "3669.6", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7405", "source": "Bangkok", "target": "Austria", "attributes": { "weight": 5.28, "sourceWeight": "5.28", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7406", "source": "Bangkok", "target": "Belgium", "attributes": { "weight": 222880.96, "sourceWeight": "222880.96", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7407", "source": "Bangkok", "target": "Denmark", "attributes": { "weight": 49266.88, "sourceWeight": "49266.88", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7408", "source": "Bangkok", "target": "France", "attributes": { "weight": 10742.4, "sourceWeight": "10742.4", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7409", "source": "Bangkok", "target": "GermanyZollverein", "attributes": { "weight": 431262.64, "sourceWeight": "431262.64", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7410", "source": "Bangkok", "target": "Italy", "attributes": { "weight": 106964, "sourceWeight": "106964", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7411", "source": "Bangkok", "target": "Netherlands", "attributes": { "weight": 248682.88, "sourceWeight": "248682.88", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7412", "source": "Bangkok", "target": "Norway", "attributes": { "weight": 641.84, "sourceWeight": "641.84", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7413", "source": "Bangkok", "target": "Sweden", "attributes": { "weight": 476, "sourceWeight": "476", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7414", "source": "Bangkok", "target": "Switzerland", "attributes": { "weight": 7252.8, "sourceWeight": "7252.8", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7415", "source": "Bangkok", "target": "UnitedKingdom", "attributes": { "weight": 292691.84, "sourceWeight": "292691.84", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7416", "source": "Bangkok", "target": "Europeother", "attributes": { "weight": 400, "sourceWeight": "400", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7417", "source": "Bangkok", "target": "Australia", "attributes": { "weight": 906.16, "sourceWeight": "906.16", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7418", "source": "Bangkok", "target": "Borneo", "attributes": { "weight": 318.08, "sourceWeight": "318.08", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7419", "source": "Bangkok", "target": "NewZealand", "attributes": { "weight": 834.56, "sourceWeight": "834.56", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7420", "source": "Bangkok", "target": "Philippines", "attributes": { "weight": 2522.32, "sourceWeight": "2522.32", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7421", "source": "ArgentinaLaPlata", "target": "SouthAfrica", "attributes": { "weight": 141907.31360344053, "sourceWeight": "141907.31360344053", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7422", "source": "ArgentinaLaPlata", "target": "GermanyZollverein", "attributes": { "weight": 17957649.632865556, "sourceWeight": "17957649.632865556", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7423", "source": "ArgentinaLaPlata", "target": "Australia", "attributes": { "weight": 1251.3289950203716, "sourceWeight": "1251.3289950203716", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7424", "source": "ArgentinaLaPlata", "target": "Austria", "attributes": { "weight": 763.5468537799912, "sourceWeight": "763.5468537799912", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7425", "source": "ArgentinaLaPlata", "target": "Belgium", "attributes": { "weight": 12679260.886826623, "sourceWeight": "12679260.886826623", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7426", "source": "ArgentinaLaPlata", "target": "Bolivia", "attributes": { "weight": 190046.10162969676, "sourceWeight": "190046.10162969676", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7427", "source": "ArgentinaLaPlata", "target": "Brazil", "attributes": { "weight": 5684209.637166141, "sourceWeight": "5684209.637166141", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7428", "source": "ArgentinaLaPlata", "target": "CanadaProvinceofCanada", "attributes": { "weight": 125150.12369850616, "sourceWeight": "125150.12369850616", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7429", "source": "ArgentinaLaPlata", "target": "Cuba", "attributes": { "weight": 502474.38082842936, "sourceWeight": "502474.38082842936", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7430", "source": "ArgentinaLaPlata", "target": "Chile", "attributes": { "weight": 919223.7582616572, "sourceWeight": "919223.7582616572", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7431", "source": "ArgentinaLaPlata", "target": "Chileother", "attributes": { "weight": 20.065301041195116, "sourceWeight": "20.065301041195116", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7432", "source": "ArgentinaLaPlata", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 4921.680964237214, "sourceWeight": "4921.680964237214", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7433", "source": "ArgentinaLaPlata", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 159715.7122000906, "sourceWeight": "159715.7122000906", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7434", "source": "ArgentinaLaPlata", "target": "Denmark", "attributes": { "weight": 1328414.0218424632, "sourceWeight": "1328414.0218424632", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7435", "source": "ArgentinaLaPlata", "target": "Spain", "attributes": { "weight": 2469223.1611588965, "sourceWeight": "2469223.1611588965", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7436", "source": "ArgentinaLaPlata", "target": "UnitedStatesofAmerica", "attributes": { "weight": 12756599.837369855, "sourceWeight": "12756599.837369855", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7437", "source": "ArgentinaLaPlata", "target": "Estonia", "attributes": { "weight": 4551.0943866002735, "sourceWeight": "4551.0943866002735", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7438", "source": "ArgentinaLaPlata", "target": "Finland", "attributes": { "weight": 75673.8856948846, "sourceWeight": "75673.8856948846", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7439", "source": "ArgentinaLaPlata", "target": "France", "attributes": { "weight": 12175125.702806704, "sourceWeight": "12175125.702806704", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7440", "source": "ArgentinaLaPlata", "target": "Greece", "attributes": { "weight": 942.7140108646449, "sourceWeight": "942.7140108646449", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7441", "source": "ArgentinaLaPlata", "target": "Italy", "attributes": { "weight": 7078512.780556816, "sourceWeight": "7078512.780556816", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7442", "source": "ArgentinaLaPlata", "target": "Japan", "attributes": { "weight": 117905.6621774559, "sourceWeight": "117905.6621774559", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7443", "source": "ArgentinaLaPlata", "target": "Latvia", "attributes": { "weight": 5630.714124038028, "sourceWeight": "5630.714124038028", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7444", "source": "ArgentinaLaPlata", "target": "Mexico", "attributes": { "weight": 788.0513807152561, "sourceWeight": "788.0513807152561", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7445", "source": "ArgentinaLaPlata", "target": "Norway", "attributes": { "weight": 557230.2789723859, "sourceWeight": "557230.2789723859", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7446", "source": "ArgentinaLaPlata", "target": "Netherlands", "attributes": { "weight": 9705153.55545496, "sourceWeight": "9705153.55545496", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7447", "source": "ArgentinaLaPlata", "target": "Panama", "attributes": { "weight": 5384.070733363515, "sourceWeight": "5384.070733363515", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7448", "source": "ArgentinaLaPlata", "target": "Paraguay", "attributes": { "weight": 845554.271842463, "sourceWeight": "845554.271842463", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7449", "source": "ArgentinaLaPlata", "target": "Peru", "attributes": { "weight": 86377.39203259397, "sourceWeight": "86377.39203259397", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7450", "source": "ArgentinaLaPlata", "target": "Poland", "attributes": { "weight": 2538.1717971933012, "sourceWeight": "2538.1717971933012", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7451", "source": "ArgentinaLaPlata", "target": "Portugal", "attributes": { "weight": 17327.008940697153, "sourceWeight": "17327.008940697153", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7452", "source": "ArgentinaLaPlata", "target": "SpanishColoniesother", "attributes": { "weight": 4556311.009732912, "sourceWeight": "4556311.009732912", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7453", "source": "ArgentinaLaPlata", "target": "FrenchColonies", "attributes": { "weight": 461838.7724083297, "sourceWeight": "461838.7724083297", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7454", "source": "ArgentinaLaPlata", "target": "BritishOceania", "attributes": { "weight": 113818.91081937532, "sourceWeight": "113818.91081937532", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7455", "source": "ArgentinaLaPlata", "target": "BritishNorthAmerica", "attributes": { "weight": 176.6811905839747, "sourceWeight": "176.6811905839747", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7456", "source": "ArgentinaLaPlata", "target": "PortugueseColoniesother", "attributes": { "weight": 43192267.81745135, "sourceWeight": "43192267.81745135", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7457", "source": "ArgentinaLaPlata", "target": "UnitedKingdom", "attributes": { "weight": 41593578.45224085, "sourceWeight": "41593578.45224085", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7458", "source": "ArgentinaLaPlata", "target": "Romania", "attributes": { "weight": 129.44782707107294, "sourceWeight": "129.44782707107294", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7459", "source": "ArgentinaLaPlata", "target": "Sweden", "attributes": { "weight": 1447988.8329560892, "sourceWeight": "1447988.8329560892", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7460", "source": "ArgentinaLaPlata", "target": "Switzerland", "attributes": { "weight": 2627.4890221819837, "sourceWeight": "2627.4890221819837", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7461", "source": "ArgentinaLaPlata", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 877.3686057039388, "sourceWeight": "877.3686057039388", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7462", "source": "ArgentinaLaPlata", "target": "Uruguay", "attributes": { "weight": 1033229.1165685834, "sourceWeight": "1033229.1165685834", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7463", "source": "ArgentinaLaPlata", "target": "Uruguayother", "attributes": { "weight": 330341.08838841115, "sourceWeight": "330341.08838841115", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7464", "source": "SouthAfrica", "target": "ArgentinaLaPlata", "attributes": { "weight": 2034.4084427342696, "sourceWeight": "2034.4084427342696", "direction": "Imp", "source_type": "primary", "targetWeight": "2034.4084427342696" } }, { "key": "geid_107_7465", "source": "Africaother", "target": "ArgentinaLaPlata", "attributes": { "weight": 20375.51414667271, "sourceWeight": "20375.51414667271", "direction": "Imp", "source_type": "primary", "targetWeight": "20375.51414667271" } }, { "key": "geid_107_7466", "source": "GermanyZollverein", "target": "ArgentinaLaPlata", "attributes": { "weight": 13682471.957899507, "sourceWeight": "13682471.957899507", "direction": "Imp", "source_type": "primary", "targetWeight": "13682471.957899507" } }, { "key": "geid_107_7467", "source": "Australia", "target": "ArgentinaLaPlata", "attributes": { "weight": 5354.416704391129, "sourceWeight": "5354.416704391129", "direction": "Imp", "source_type": "primary", "targetWeight": "5354.416704391129" } }, { "key": "geid_107_7468", "source": "Austria", "target": "ArgentinaLaPlata", "attributes": { "weight": 230408.2537347217, "sourceWeight": "230408.2537347217", "direction": "Imp", "source_type": "primary", "targetWeight": "230408.2537347217" } }, { "key": "geid_107_7469", "source": "Belgium", "target": "ArgentinaLaPlata", "attributes": { "weight": 5850834.20540969, "sourceWeight": "5850834.20540969", "direction": "Imp", "source_type": "primary", "targetWeight": "5850834.20540969" } }, { "key": "geid_107_7470", "source": "Bolivia", "target": "ArgentinaLaPlata", "attributes": { "weight": 93518.50837483027, "sourceWeight": "93518.50837483027", "direction": "Imp", "source_type": "primary", "targetWeight": "93518.50837483027" } }, { "key": "geid_107_7471", "source": "Brazil", "target": "ArgentinaLaPlata", "attributes": { "weight": 3529006.128904483, "sourceWeight": "3529006.128904483", "direction": "Imp", "source_type": "primary", "targetWeight": "3529006.128904483" } }, { "key": "geid_107_7472", "source": "Bulgaria", "target": "ArgentinaLaPlata", "attributes": { "weight": 1.065414214576732, "sourceWeight": "1.065414214576732", "direction": "Imp", "source_type": "primary", "targetWeight": "1.065414214576732" } }, { "key": "geid_107_7473", "source": "CanadaProvinceofCanada", "target": "ArgentinaLaPlata", "attributes": { "weight": 646014.0865776371, "sourceWeight": "646014.0865776371", "direction": "Imp", "source_type": "primary", "targetWeight": "646014.0865776371" } }, { "key": "geid_107_7474", "source": "ColombiaNewGranadaGranColombia", "target": "ArgentinaLaPlata", "attributes": { "weight": 744.9021050248984, "sourceWeight": "744.9021050248984", "direction": "Imp", "source_type": "primary", "targetWeight": "744.9021050248984" } }, { "key": "geid_107_7475", "source": "Cuba", "target": "ArgentinaLaPlata", "attributes": { "weight": 124261.92338162068, "sourceWeight": "124261.92338162068", "direction": "Imp", "source_type": "primary", "targetWeight": "124261.92338162068" } }, { "key": "geid_107_7476", "source": "Czechoslovakia", "target": "ArgentinaLaPlata", "attributes": { "weight": 249717.82095971037, "sourceWeight": "249717.82095971037", "direction": "Imp", "source_type": "primary", "targetWeight": "249717.82095971037" } }, { "key": "geid_107_7477", "source": "Chile", "target": "ArgentinaLaPlata", "attributes": { "weight": 492893.1107967408, "sourceWeight": "492893.1107967408", "direction": "Imp", "source_type": "primary", "targetWeight": "492893.1107967408" } }, { "key": "geid_107_7478", "source": "PeoplesRepublicofChinaChina", "target": "ArgentinaLaPlata", "attributes": { "weight": 41709.01324128566, "sourceWeight": "41709.01324128566", "direction": "Imp", "source_type": "primary", "targetWeight": "41709.01324128566" } }, { "key": "geid_107_7479", "source": "Denmark", "target": "ArgentinaLaPlata", "attributes": { "weight": 233122.3964463559, "sourceWeight": "233122.3964463559", "direction": "Imp", "source_type": "primary", "targetWeight": "233122.3964463559" } }, { "key": "geid_107_7480", "source": "Ecuador", "target": "ArgentinaLaPlata", "attributes": { "weight": 486.5391579900409, "sourceWeight": "486.5391579900409", "direction": "Imp", "source_type": "primary", "targetWeight": "486.5391579900409" } }, { "key": "geid_107_7481", "source": "EgyptArabRepublicEgypt", "target": "ArgentinaLaPlata", "attributes": { "weight": 3179.0184472612054, "sourceWeight": "3179.0184472612054", "direction": "Imp", "source_type": "primary", "targetWeight": "3179.0184472612054" } }, { "key": "geid_107_7482", "source": "Spain", "target": "ArgentinaLaPlata", "attributes": { "weight": 2637584.354572206, "sourceWeight": "2637584.354572206", "direction": "Imp", "source_type": "primary", "targetWeight": "2637584.354572206" } }, { "key": "geid_107_7483", "source": "UnitedStatesofAmerica", "target": "ArgentinaLaPlata", "attributes": { "weight": 24230364.250565875, "sourceWeight": "24230364.250565875", "direction": "Imp", "source_type": "primary", "targetWeight": "24230364.250565875" } }, { "key": "geid_107_7484", "source": "Estonia", "target": "ArgentinaLaPlata", "attributes": { "weight": 198.34461294703493, "sourceWeight": "198.34461294703493", "direction": "Imp", "source_type": "primary", "targetWeight": "198.34461294703493" } }, { "key": "geid_107_7485", "source": "Finland", "target": "ArgentinaLaPlata", "attributes": { "weight": 127237.27014486198, "sourceWeight": "127237.27014486198", "direction": "Imp", "source_type": "primary", "targetWeight": "127237.27014486198" } }, { "key": "geid_107_7486", "source": "France", "target": "ArgentinaLaPlata", "attributes": { "weight": 6796894.859891356, "sourceWeight": "6796894.859891356", "direction": "Imp", "source_type": "primary", "targetWeight": "6796894.859891356" } }, { "key": "geid_107_7487", "source": "Greece", "target": "ArgentinaLaPlata", "attributes": { "weight": 24715.47894975103, "sourceWeight": "24715.47894975103", "direction": "Imp", "source_type": "primary", "targetWeight": "24715.47894975103" } }, { "key": "geid_107_7488", "source": "Hungary", "target": "ArgentinaLaPlata", "attributes": { "weight": 1697.3824128564968, "sourceWeight": "1697.3824128564968", "direction": "Imp", "source_type": "primary", "targetWeight": "1697.3824128564968" } }, { "key": "geid_107_7489", "source": "Italy", "target": "ArgentinaLaPlata", "attributes": { "weight": 7956449.9623132665, "sourceWeight": "7956449.9623132665", "direction": "Imp", "source_type": "primary", "targetWeight": "7956449.9623132665" } }, { "key": "geid_107_7490", "source": "Japan", "target": "ArgentinaLaPlata", "attributes": { "weight": 739946.153236759, "sourceWeight": "739946.153236759", "direction": "Imp", "source_type": "primary", "targetWeight": "739946.153236759" } }, { "key": "geid_107_7491", "source": "Lithuania", "target": "ArgentinaLaPlata", "attributes": { "weight": 2191.5570393843377, "sourceWeight": "2191.5570393843377", "direction": "Imp", "source_type": "primary", "targetWeight": "2191.5570393843377" } }, { "key": "geid_107_7492", "source": "Luxemburg", "target": "ArgentinaLaPlata", "attributes": { "weight": 197636.46763241294, "sourceWeight": "197636.46763241294", "direction": "Imp", "source_type": "primary", "targetWeight": "197636.46763241294" } }, { "key": "geid_107_7493", "source": "Morocco", "target": "ArgentinaLaPlata", "attributes": { "weight": 16.869058397464922, "sourceWeight": "16.869058397464922", "direction": "Imp", "source_type": "primary", "targetWeight": "16.869058397464922" } }, { "key": "geid_107_7494", "source": "Mexico", "target": "ArgentinaLaPlata", "attributes": { "weight": 3327300.311679494, "sourceWeight": "3327300.311679494", "direction": "Imp", "source_type": "primary", "targetWeight": "3327300.311679494" } }, { "key": "geid_107_7495", "source": "Norway", "target": "ArgentinaLaPlata", "attributes": { "weight": 350171.1104572206, "sourceWeight": "350171.1104572206", "direction": "Imp", "source_type": "primary", "targetWeight": "350171.1104572206" } }, { "key": "geid_107_7496", "source": "NewZealand", "target": "ArgentinaLaPlata", "attributes": { "weight": 12593.551154368497, "sourceWeight": "12593.551154368497", "direction": "Imp", "source_type": "primary", "targetWeight": "12593.551154368497" } }, { "key": "geid_107_7497", "source": "Netherlands", "target": "ArgentinaLaPlata", "attributes": { "weight": 1118690.0748076057, "sourceWeight": "1118690.0748076057", "direction": "Imp", "source_type": "primary", "targetWeight": "1118690.0748076057" } }, { "key": "geid_107_7498", "source": "Panama", "target": "ArgentinaLaPlata", "attributes": { "weight": 23.971819827976468, "sourceWeight": "23.971819827976468", "direction": "Imp", "source_type": "primary", "targetWeight": "23.971819827976468" } }, { "key": "geid_107_7499", "source": "Paraguay", "target": "ArgentinaLaPlata", "attributes": { "weight": 594636.9720461749, "sourceWeight": "594636.9720461749", "direction": "Imp", "source_type": "primary", "targetWeight": "594636.9720461749" } }, { "key": "geid_107_7500", "source": "IranPersia", "target": "ArgentinaLaPlata", "attributes": { "weight": 1418.243888637393, "sourceWeight": "1418.243888637393", "direction": "Imp", "source_type": "primary", "targetWeight": "1418.243888637393" } }, { "key": "geid_107_7501", "source": "Peru", "target": "ArgentinaLaPlata", "attributes": { "weight": 1971557.8825260305, "sourceWeight": "1971557.8825260305", "direction": "Imp", "source_type": "primary", "targetWeight": "1971557.8825260305" } }, { "key": "geid_107_7502", "source": "Poland", "target": "ArgentinaLaPlata", "attributes": { "weight": 21430.274219103674, "sourceWeight": "21430.274219103674", "direction": "Imp", "source_type": "primary", "targetWeight": "21430.274219103674" } }, { "key": "geid_107_7503", "source": "Portugal", "target": "ArgentinaLaPlata", "attributes": { "weight": 126467.86351290181, "sourceWeight": "126467.86351290181", "direction": "Imp", "source_type": "primary", "targetWeight": "126467.86351290181" } }, { "key": "geid_107_7504", "source": "SpanishColonies", "target": "ArgentinaLaPlata", "attributes": { "weight": 3.5513807152557733, "sourceWeight": "3.5513807152557733", "direction": "Imp", "source_type": "primary", "targetWeight": "3.5513807152557733" } }, { "key": "geid_107_7505", "source": "FrenchColonies", "target": "ArgentinaLaPlata", "attributes": { "weight": 1227.534744228158, "sourceWeight": "1227.534744228158", "direction": "Imp", "source_type": "primary", "targetWeight": "1227.534744228158" } }, { "key": "geid_107_7506", "source": "DutchColonies", "target": "ArgentinaLaPlata", "attributes": { "weight": 4017.4994341330935, "sourceWeight": "4017.4994341330935", "direction": "Imp", "source_type": "primary", "targetWeight": "4017.4994341330935" } }, { "key": "geid_107_7507", "source": "BritishOceania", "target": "ArgentinaLaPlata", "attributes": { "weight": 2762901.925871436, "sourceWeight": "2762901.925871436", "direction": "Imp", "source_type": "primary", "targetWeight": "2762901.925871436" } }, { "key": "geid_107_7508", "source": "JapaneseColonies", "target": "ArgentinaLaPlata", "attributes": { "weight": 8.523313716613856, "sourceWeight": "8.523313716613856", "direction": "Imp", "source_type": "primary", "targetWeight": "8.523313716613856" } }, { "key": "geid_107_7509", "source": "BritishNorthAmerica", "target": "ArgentinaLaPlata", "attributes": { "weight": 2450.4526935264835, "sourceWeight": "2450.4526935264835", "direction": "Imp", "source_type": "primary", "targetWeight": "2450.4526935264835" } }, { "key": "geid_107_7510", "source": "PortugueseColonies", "target": "ArgentinaLaPlata", "attributes": { "weight": 222.67157084653698, "sourceWeight": "222.67157084653698", "direction": "Imp", "source_type": "primary", "targetWeight": "222.67157084653698" } }, { "key": "geid_107_7511", "source": "UnitedKingdom", "target": "ArgentinaLaPlata", "attributes": { "weight": 24796597.634789508, "sourceWeight": "24796597.634789508", "direction": "Imp", "source_type": "primary", "targetWeight": "24796597.634789508" } }, { "key": "geid_107_7512", "source": "Romania", "target": "ArgentinaLaPlata", "attributes": { "weight": 999.7136713445001, "sourceWeight": "999.7136713445001", "direction": "Imp", "source_type": "primary", "targetWeight": "999.7136713445001" } }, { "key": "geid_107_7513", "source": "RussiaUSSR", "target": "ArgentinaLaPlata", "attributes": { "weight": 786.0981213218654, "sourceWeight": "786.0981213218654", "direction": "Imp", "source_type": "primary", "targetWeight": "786.0981213218654" } }, { "key": "geid_107_7514", "source": "ElSalvador", "target": "ArgentinaLaPlata", "attributes": { "weight": 74.57899502037124, "sourceWeight": "74.57899502037124", "direction": "Imp", "source_type": "primary", "targetWeight": "74.57899502037124" } }, { "key": "geid_107_7515", "source": "Sweden", "target": "ArgentinaLaPlata", "attributes": { "weight": 834434.0109778183, "sourceWeight": "834434.0109778183", "direction": "Imp", "source_type": "primary", "targetWeight": "834434.0109778183" } }, { "key": "geid_107_7516", "source": "Switzerland", "target": "ArgentinaLaPlata", "attributes": { "weight": 649145.5165233139, "sourceWeight": "649145.5165233139", "direction": "Imp", "source_type": "primary", "targetWeight": "649145.5165233139" } }, { "key": "geid_107_7517", "source": "TurkeyOttomanEmpire", "target": "ArgentinaLaPlata", "attributes": { "weight": 16465.088841104578, "sourceWeight": "16465.088841104578", "direction": "Imp", "source_type": "primary", "targetWeight": "16465.088841104578" } }, { "key": "geid_107_7518", "source": "Uruguay", "target": "ArgentinaLaPlata", "attributes": { "weight": 559524.4709144412, "sourceWeight": "559524.4709144412", "direction": "Imp", "source_type": "primary", "targetWeight": "559524.4709144412" } }, { "key": "geid_107_7519", "source": "Venezuela", "target": "ArgentinaLaPlata", "attributes": { "weight": 4278.525916704392, "sourceWeight": "4278.525916704392", "direction": "Imp", "source_type": "primary", "targetWeight": "4278.525916704392" } }, { "key": "geid_107_7520", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "ArgentinaLaPlata", "attributes": { "weight": 30958.806247170676, "sourceWeight": "30958.806247170676", "direction": "Imp", "source_type": "primary", "targetWeight": "30958.806247170676" } }, { "key": "geid_107_7521", "source": "Aden", "target": "SriLankaCeylon", "attributes": { "weight": 19257.138524227823, "sourceWeight": "19257.138524227823", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "19257.138524227823" } }, { "key": "geid_107_7522", "source": "Australia", "target": "SriLankaCeylon", "attributes": { "weight": 369603.0937077273, "sourceWeight": "369603.0937077273", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "369603.0937077273" } }, { "key": "geid_107_7523", "source": "BritishEastAfrica", "target": "SriLankaCeylon", "attributes": { "weight": 300.797193300272, "sourceWeight": "300.797193300272", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "300.797193300272" } }, { "key": "geid_107_7524", "source": "BritishWestIndies", "target": "SriLankaCeylon", "attributes": { "weight": 520.3309189680944, "sourceWeight": "520.3309189680944", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "520.3309189680944" } }, { "key": "geid_107_7525", "source": "CanadaProvinceofCanada", "target": "SriLankaCeylon", "attributes": { "weight": 124864.73698511765, "sourceWeight": "124864.73698511765", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "124864.73698511765" } }, { "key": "geid_107_7526", "source": "CapeColonyCapeofGoodHope", "target": "SriLankaCeylon", "attributes": { "weight": 58.014486192873704, "sourceWeight": "58.014486192873704", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "58.014486192873704" } }, { "key": "geid_107_7527", "source": "Fiji", "target": "SriLankaCeylon", "attributes": { "weight": 1.4395654142152285, "sourceWeight": "1.4395654142152285", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1.4395654142152285" } }, { "key": "geid_107_7528", "source": "Gibraltar", "target": "SriLankaCeylon", "attributes": { "weight": 114.22951561797838, "sourceWeight": "114.22951561797838", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "114.22951561797838" } }, { "key": "geid_107_7529", "source": "HongKong", "target": "SriLankaCeylon", "attributes": { "weight": 130390.5088275828, "sourceWeight": "130390.5088275828", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "130390.5088275828" } }, { "key": "geid_107_7530", "source": "India", "target": "SriLankaCeylon", "attributes": { "weight": 6774522.717069613, "sourceWeight": "6774522.717069613", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6774522.717069613" } }, { "key": "geid_107_7531", "source": "MalaysiaBritishMalaya", "target": "SriLankaCeylon", "attributes": { "weight": 290844.9017656364, "sourceWeight": "290844.9017656364", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "290844.9017656364" } }, { "key": "geid_107_7532", "source": "MaldiveIslands", "target": "SriLankaCeylon", "attributes": { "weight": 284553.4250793502, "sourceWeight": "284553.4250793502", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "284553.4250793502" } }, { "key": "geid_107_7533", "source": "Malta", "target": "SriLankaCeylon", "attributes": { "weight": 76.65685830696091, "sourceWeight": "76.65685830696091", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "76.65685830696091" } }, { "key": "geid_107_7534", "source": "Mauritius", "target": "SriLankaCeylon", "attributes": { "weight": 19354.16523314593, "sourceWeight": "19354.16523314593", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "19354.16523314593" } }, { "key": "geid_107_7535", "source": "Natal", "target": "SriLankaCeylon", "attributes": { "weight": 419914.1774560525, "sourceWeight": "419914.1774560525", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "419914.1774560525" } }, { "key": "geid_107_7536", "source": "NewZealand", "target": "SriLankaCeylon", "attributes": { "weight": 98.61023087374315, "sourceWeight": "98.61023087374315", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "98.61023087374315" } }, { "key": "geid_107_7537", "source": "UnitedKingdom", "target": "SriLankaCeylon", "attributes": { "weight": 4907287.466729248, "sourceWeight": "4907287.466729248", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4907287.466729248" } }, { "key": "geid_107_7538", "source": "Zanzibar", "target": "SriLankaCeylon", "attributes": { "weight": 4.678587596199493, "sourceWeight": "4.678587596199493", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4.678587596199493" } }, { "key": "geid_107_7539", "source": "BritishAsiaother", "target": "SriLankaCeylon", "attributes": { "weight": 1485.9913988236697, "sourceWeight": "1485.9913988236697", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1485.9913988236697" } }, { "key": "geid_107_7540", "source": "BritishAfricaother", "target": "SriLankaCeylon", "attributes": { "weight": 139364.25577190556, "sourceWeight": "139364.25577190556", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "139364.25577190556" } }, { "key": "geid_107_7541", "source": "AlgeriaRegencyofAlgiers", "target": "SriLankaCeylon", "attributes": { "weight": 4.894522408331777, "sourceWeight": "4.894522408331777", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4.894522408331777" } }, { "key": "geid_107_7542", "source": "Arabia", "target": "SriLankaCeylon", "attributes": { "weight": 2323.1706654605355, "sourceWeight": "2323.1706654605355", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2323.1706654605355" } }, { "key": "geid_107_7543", "source": "Austria", "target": "SriLankaCeylon", "attributes": { "weight": 27726.389769138856, "sourceWeight": "27726.389769138856", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "27726.389769138856" } }, { "key": "geid_107_7544", "source": "Belgium", "target": "SriLankaCeylon", "attributes": { "weight": 193182.6966954247, "sourceWeight": "193182.6966954247", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "193182.6966954247" } }, { "key": "geid_107_7545", "source": "DutchBorneo", "target": "SriLankaCeylon", "attributes": { "weight": 633240.3531012373, "sourceWeight": "633240.3531012373", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "633240.3531012373" } }, { "key": "geid_107_7546", "source": "MyanmarBurma", "target": "SriLankaCeylon", "attributes": { "weight": 3313023.3300150805, "sourceWeight": "3313023.3300150805", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3313023.3300150805" } }, { "key": "geid_107_7547", "source": "CentralAmerica", "target": "SriLankaCeylon", "attributes": { "weight": 484.05387052987055, "sourceWeight": "484.05387052987055", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "484.05387052987055" } }, { "key": "geid_107_7548", "source": "Chile", "target": "SriLankaCeylon", "attributes": { "weight": 20500.779085568356, "sourceWeight": "20500.779085568356", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "20500.779085568356" } }, { "key": "geid_107_7549", "source": "PeoplesRepublicofChinaChina", "target": "SriLankaCeylon", "attributes": { "weight": 46025.857401559995, "sourceWeight": "46025.857401559995", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "46025.857401559995" } }, { "key": "geid_107_7550", "source": "CochinChina", "target": "SriLankaCeylon", "attributes": { "weight": 1560.2009959264647, "sourceWeight": "1560.2009959264647", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1560.2009959264647" } }, { "key": "geid_107_7551", "source": "Denmark", "target": "SriLankaCeylon", "attributes": { "weight": 11997.554096881846, "sourceWeight": "11997.554096881846", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "11997.554096881846" } }, { "key": "geid_107_7552", "source": "EgyptArabRepublicEgypt", "target": "SriLankaCeylon", "attributes": { "weight": 11579.720235405875, "sourceWeight": "11579.720235405875", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "11579.720235405875" } }, { "key": "geid_107_7553", "source": "France", "target": "SriLankaCeylon", "attributes": { "weight": 137491.38116801155, "sourceWeight": "137491.38116801155", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "137491.38116801155" } }, { "key": "geid_107_7554", "source": "GermanyZollverein", "target": "SriLankaCeylon", "attributes": { "weight": 390601.242643907, "sourceWeight": "390601.242643907", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "390601.242643907" } }, { "key": "geid_107_7555", "source": "Greece", "target": "SriLankaCeylon", "attributes": { "weight": 153.09778180178955, "sourceWeight": "153.09778180178955", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "153.09778180178955" } }, { "key": "geid_107_7556", "source": "Netherlands", "target": "SriLankaCeylon", "attributes": { "weight": 294942.40878238797, "sourceWeight": "294942.40878238797", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "294942.40878238797" } }, { "key": "geid_107_7557", "source": "Indiaother", "target": "SriLankaCeylon", "attributes": { "weight": 104310.90991403545, "sourceWeight": "104310.90991403545", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "104310.90991403545" } }, { "key": "geid_107_7558", "source": "IranPersia", "target": "SriLankaCeylon", "attributes": { "weight": 144112.95020377732, "sourceWeight": "144112.95020377732", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "144112.95020377732" } }, { "key": "geid_107_7559", "source": "Italy", "target": "SriLankaCeylon", "attributes": { "weight": 143770.76550481838, "sourceWeight": "143770.76550481838", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "143770.76550481838" } }, { "key": "geid_107_7560", "source": "Japan", "target": "SriLankaCeylon", "attributes": { "weight": 462473.12947055796, "sourceWeight": "462473.12947055796", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "462473.12947055796" } }, { "key": "geid_107_7561", "source": "Java", "target": "SriLankaCeylon", "attributes": { "weight": 844382.4920782456, "sourceWeight": "844382.4920782456", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "844382.4920782456" } }, { "key": "geid_107_7562", "source": "MadagascarMalagasyRepublic", "target": "SriLankaCeylon", "attributes": { "weight": 8.63739248529137, "sourceWeight": "8.63739248529137", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "8.63739248529137" } }, { "key": "geid_107_7563", "source": "MozambiquePortugueseEastAfrica", "target": "SriLankaCeylon", "attributes": { "weight": 21354.513354468698, "sourceWeight": "21354.513354468698", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "21354.513354468698" } }, { "key": "geid_107_7564", "source": "Norway", "target": "SriLankaCeylon", "attributes": { "weight": 19414.339067460125, "sourceWeight": "19414.339067460125", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "19414.339067460125" } }, { "key": "geid_107_7565", "source": "Philippines", "target": "SriLankaCeylon", "attributes": { "weight": 2097.66274332372, "sourceWeight": "2097.66274332372", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2097.66274332372" } }, { "key": "geid_107_7566", "source": "Portugal", "target": "SriLankaCeylon", "attributes": { "weight": 5130.17926663881, "sourceWeight": "5130.17926663881", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5130.17926663881" } }, { "key": "geid_107_7567", "source": "RussiaUSSR", "target": "SriLankaCeylon", "attributes": { "weight": 1951.7627885930067, "sourceWeight": "1951.7627885930067", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1951.7627885930067" } }, { "key": "geid_107_7568", "source": "AsianRussia", "target": "SriLankaCeylon", "attributes": { "weight": 231019.0823903264, "sourceWeight": "231019.0823903264", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "231019.0823903264" } }, { "key": "geid_107_7569", "source": "SouthernAmerica", "target": "SriLankaCeylon", "attributes": { "weight": 22174.057944781427, "sourceWeight": "22174.057944781427", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "22174.057944781427" } }, { "key": "geid_107_7570", "source": "Spain", "target": "SriLankaCeylon", "attributes": { "weight": 14189.436396565954, "sourceWeight": "14189.436396565954", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "14189.436396565954" } }, { "key": "geid_107_7571", "source": "Sumatra", "target": "SriLankaCeylon", "attributes": { "weight": 297835.43141706556, "sourceWeight": "297835.43141706556", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "297835.43141706556" } }, { "key": "geid_107_7572", "source": "Sweden", "target": "SriLankaCeylon", "attributes": { "weight": 44295.283838861156, "sourceWeight": "44295.283838861156", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "44295.283838861156" } }, { "key": "geid_107_7573", "source": "Switzerland", "target": "SriLankaCeylon", "attributes": { "weight": 137595.4617474593, "sourceWeight": "137595.4617474593", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "137595.4617474593" } }, { "key": "geid_107_7574", "source": "ThailandSiam", "target": "SriLankaCeylon", "attributes": { "weight": 23346.871887742574, "sourceWeight": "23346.871887742574", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "23346.871887742574" } }, { "key": "geid_107_7575", "source": "TurkeyOttomanEmpire", "target": "SriLankaCeylon", "attributes": { "weight": 108.47125396111747, "sourceWeight": "108.47125396111747", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "108.47125396111747" } }, { "key": "geid_107_7576", "source": "UnitedStatesofAmerica", "target": "SriLankaCeylon", "attributes": { "weight": 643420.5998192139, "sourceWeight": "643420.5998192139", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "643420.5998192139" } }, { "key": "geid_107_7577", "source": "Europeother", "target": "SriLankaCeylon", "attributes": { "weight": 33807.9058397618, "sourceWeight": "33807.9058397618", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "33807.9058397618" } }, { "key": "geid_107_7578", "source": "Africaother", "target": "SriLankaCeylon", "attributes": { "weight": 25.91217745587411, "sourceWeight": "25.91217745587411", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "25.91217745587411" } }, { "key": "geid_107_7579", "source": "SriLankaCeylon", "target": "Aden", "attributes": { "weight": 4245.638297874262, "sourceWeight": "4245.638297874262", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7580", "source": "SriLankaCeylon", "target": "Australia", "attributes": { "weight": 1328628.1127212895, "sourceWeight": "1328628.1127212895", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7581", "source": "SriLankaCeylon", "target": "BritishEastAfrica", "attributes": { "weight": 6768.620642827872, "sourceWeight": "6768.620642827872", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7582", "source": "SriLankaCeylon", "target": "GuyanaBritishGuiana", "attributes": { "weight": 46.21004979630884, "sourceWeight": "46.21004979630884", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7583", "source": "SriLankaCeylon", "target": "PapuaBritishNewGuinea", "attributes": { "weight": 80.25577184249899, "sourceWeight": "80.25577184249899", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7584", "source": "SriLankaCeylon", "target": "BritishWestIndies", "attributes": { "weight": 1981.561792667262, "sourceWeight": "1981.561792667262", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7585", "source": "SriLankaCeylon", "target": "CanadaProvinceofCanada", "attributes": { "weight": 665901.3571754938, "sourceWeight": "665901.3571754938", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7586", "source": "SriLankaCeylon", "target": "CapeColonyCapeofGoodHope", "attributes": { "weight": 254528.98506122886, "sourceWeight": "254528.98506122886", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7587", "source": "SriLankaCeylon", "target": "Gibraltar", "attributes": { "weight": 1373.921231327014, "sourceWeight": "1373.921231327014", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7588", "source": "SriLankaCeylon", "target": "HongKong", "attributes": { "weight": 22505.373924863063, "sourceWeight": "22505.373924863063", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7589", "source": "SriLankaCeylon", "target": "India", "attributes": { "weight": 648494.0602085326, "sourceWeight": "648494.0602085326", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7590", "source": "SriLankaCeylon", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 109911.89904939335, "sourceWeight": "109911.89904939335", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7591", "source": "SriLankaCeylon", "target": "MaldiveIslands", "attributes": { "weight": 9074.660479859247, "sourceWeight": "9074.660479859247", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7592", "source": "SriLankaCeylon", "target": "Malta", "attributes": { "weight": 6109.443639658719, "sourceWeight": "6109.443639658719", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7593", "source": "SriLankaCeylon", "target": "Mauritius", "attributes": { "weight": 27054.400633783185, "sourceWeight": "27054.400633783185", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7594", "source": "SriLankaCeylon", "target": "Natal", "attributes": { "weight": 273826.07152570115, "sourceWeight": "273826.07152570115", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7595", "source": "SriLankaCeylon", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 51782.46355819456, "sourceWeight": "51782.46355819456", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7596", "source": "SriLankaCeylon", "target": "NewZealand", "attributes": { "weight": 462357.9642374207, "sourceWeight": "462357.9642374207", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7597", "source": "SriLankaCeylon", "target": "UnitedKingdom", "attributes": { "weight": 12370718.819380883, "sourceWeight": "12370718.819380883", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7598", "source": "SriLankaCeylon", "target": "Zanzibar", "attributes": { "weight": 10676.536894527242, "sourceWeight": "10676.536894527242", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7599", "source": "SriLankaCeylon", "target": "BritishAsiaother", "attributes": { "weight": 340569.6505207517, "sourceWeight": "340569.6505207517", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7600", "source": "SriLankaCeylon", "target": "BritishAfricaother", "attributes": { "weight": 49849.0552286328, "sourceWeight": "49849.0552286328", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7601", "source": "SriLankaCeylon", "target": "BritishOceaniaother", "attributes": { "weight": 56.502942507947715, "sourceWeight": "56.502942507947715", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7602", "source": "SriLankaCeylon", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 80.11181530107747, "sourceWeight": "80.11181530107747", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7603", "source": "SriLankaCeylon", "target": "Austria", "attributes": { "weight": 2872.0769579008024, "sourceWeight": "2872.0769579008024", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7604", "source": "SriLankaCeylon", "target": "Belgium", "attributes": { "weight": 323175.8134904134, "sourceWeight": "323175.8134904134", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7605", "source": "SriLankaCeylon", "target": "MyanmarBurma", "attributes": { "weight": 4808.076505208152, "sourceWeight": "4808.076505208152", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7606", "source": "SriLankaCeylon", "target": "CentralAmerica", "attributes": { "weight": 22072.640561349966, "sourceWeight": "22072.640561349966", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7607", "source": "SriLankaCeylon", "target": "Chile", "attributes": { "weight": 18150.760525132708, "sourceWeight": "18150.760525132708", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7608", "source": "SriLankaCeylon", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 12413.012675424361, "sourceWeight": "12413.012675424361", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7609", "source": "SriLankaCeylon", "target": "CochinChina", "attributes": { "weight": 727.700316885798, "sourceWeight": "727.700316885798", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7610", "source": "SriLankaCeylon", "target": "Denmark", "attributes": { "weight": 746072.3386150956, "sourceWeight": "746072.3386150956", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7611", "source": "SriLankaCeylon", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 506868.4631057071, "sourceWeight": "506868.4631057071", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7612", "source": "SriLankaCeylon", "target": "France", "attributes": { "weight": 253299.66817575975, "sourceWeight": "253299.66817575975", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7613", "source": "SriLankaCeylon", "target": "GermanyZollverein", "attributes": { "weight": 1191315.3816211822, "sourceWeight": "1191315.3816211822", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7614", "source": "SriLankaCeylon", "target": "Greece", "attributes": { "weight": 7129.159800818076, "sourceWeight": "7129.159800818076", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7615", "source": "SriLankaCeylon", "target": "Netherlands", "attributes": { "weight": 395829.88818487816, "sourceWeight": "395829.88818487816", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7616", "source": "SriLankaCeylon", "target": "Indiaother", "attributes": { "weight": 10454.555907655254, "sourceWeight": "10454.555907655254", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7617", "source": "SriLankaCeylon", "target": "IranPersia", "attributes": { "weight": 552.2892711636724, "sourceWeight": "552.2892711636724", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7618", "source": "SriLankaCeylon", "target": "Italy", "attributes": { "weight": 696584.9741967843, "sourceWeight": "696584.9741967843", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7619", "source": "SriLankaCeylon", "target": "Japan", "attributes": { "weight": 137429.26392038816, "sourceWeight": "137429.26392038816", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7620", "source": "SriLankaCeylon", "target": "Java", "attributes": { "weight": 422.94431869643415, "sourceWeight": "422.94431869643415", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7621", "source": "SriLankaCeylon", "target": "MadagascarMalagasyRepublic", "attributes": { "weight": 2067.2879130837787, "sourceWeight": "2067.2879130837787", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7622", "source": "SriLankaCeylon", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 34198.5319149091, "sourceWeight": "34198.5319149091", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7623", "source": "SriLankaCeylon", "target": "NewCaledoniaandDependencies", "attributes": { "weight": 7.917609778183756, "sourceWeight": "7.917609778183756", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7624", "source": "SriLankaCeylon", "target": "Norway", "attributes": { "weight": 498536.90629266575, "sourceWeight": "498536.90629266575", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7625", "source": "SriLankaCeylon", "target": "Philippines", "attributes": { "weight": 60430.14893619757, "sourceWeight": "60430.14893619757", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7626", "source": "SriLankaCeylon", "target": "Portugal", "attributes": { "weight": 170.9483929380584, "sourceWeight": "170.9483929380584", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7627", "source": "SriLankaCeylon", "target": "Romania", "attributes": { "weight": 9409.935264829974, "sourceWeight": "9409.935264829974", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7628", "source": "SriLankaCeylon", "target": "RussiaUSSR", "attributes": { "weight": 8067.0366681792975, "sourceWeight": "8067.0366681792975", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7629", "source": "SriLankaCeylon", "target": "AsianRussia", "attributes": { "weight": 1586.4730647358924, "sourceWeight": "1586.4730647358924", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7630", "source": "SriLankaCeylon", "target": "SouthernAmerica", "attributes": { "weight": 139531.1014034131, "sourceWeight": "139531.1014034131", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7631", "source": "SriLankaCeylon", "target": "Spain", "attributes": { "weight": 61034.26256227299, "sourceWeight": "61034.26256227299", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7632", "source": "SriLankaCeylon", "target": "Sumatra", "attributes": { "weight": 472.9692168404133, "sourceWeight": "472.9692168404133", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7633", "source": "SriLankaCeylon", "target": "Sweden", "attributes": { "weight": 72680.13082846206, "sourceWeight": "72680.13082846206", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7634", "source": "SriLankaCeylon", "target": "Switzerland", "attributes": { "weight": 3736.535989137047, "sourceWeight": "3736.535989137047", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7635", "source": "SriLankaCeylon", "target": "ThailandSiam", "attributes": { "weight": 3186.0461747411437, "sourceWeight": "3186.0461747411437", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7636", "source": "SriLankaCeylon", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 61066.07695792715, "sourceWeight": "61066.07695792715", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7637", "source": "SriLankaCeylon", "target": "EuropeanTurkey", "attributes": { "weight": 12306.340878231013, "sourceWeight": "12306.340878231013", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7638", "source": "SriLankaCeylon", "target": "UnitedStatesofAmerica", "attributes": { "weight": 5048396.691717994, "sourceWeight": "5048396.691717994", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7639", "source": "SriLankaCeylon", "target": "Europeother", "attributes": { "weight": 448.5685830694652, "sourceWeight": "448.5685830694652", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7640", "source": "SriLankaCeylon", "target": "Africaother", "attributes": { "weight": 23170.021276606236, "sourceWeight": "23170.021276606236", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7641", "source": "SriLankaCeylon", "target": "Asiaother", "attributes": { "weight": 489.8121321867315, "sourceWeight": "489.8121321867315", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7642", "source": "SriLankaCeylon", "target": "Oceaniaother", "attributes": { "weight": 1570.7818017209465, "sourceWeight": "1570.7818017209465", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7643", "source": "UnitedKingdom", "target": "Bahamas", "attributes": { "weight": 507209, "sourceWeight": "507209", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "507209" } }, { "key": "geid_107_7644", "source": "Bermuda", "target": "Bahamas", "attributes": { "weight": 58, "sourceWeight": "58", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "58" } }, { "key": "geid_107_7645", "source": "GuyanaBritishGuiana", "target": "Bahamas", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "14" } }, { "key": "geid_107_7646", "source": "BelizeBritishHonduras", "target": "Bahamas", "attributes": { "weight": 77, "sourceWeight": "77", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "77" } }, { "key": "geid_107_7647", "source": "CanadaProvinceofCanada", "target": "Bahamas", "attributes": { "weight": 173181, "sourceWeight": "173181", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "173181" } }, { "key": "geid_107_7648", "source": "India", "target": "Bahamas", "attributes": { "weight": 8294, "sourceWeight": "8294", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "8294" } }, { "key": "geid_107_7649", "source": "Jamaica", "target": "Bahamas", "attributes": { "weight": 22247, "sourceWeight": "22247", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "22247" } }, { "key": "geid_107_7650", "source": "Malta", "target": "Bahamas", "attributes": { "weight": 138, "sourceWeight": "138", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "138" } }, { "key": "geid_107_7651", "source": "StLucia", "target": "Bahamas", "attributes": { "weight": 326, "sourceWeight": "326", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "326" } }, { "key": "geid_107_7652", "source": "Trinidad", "target": "Bahamas", "attributes": { "weight": 13, "sourceWeight": "13", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "13" } }, { "key": "geid_107_7653", "source": "TurksandCaicosIs", "target": "Bahamas", "attributes": { "weight": 164, "sourceWeight": "164", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "164" } }, { "key": "geid_107_7654", "source": "ArgentinaLaPlata", "target": "Bahamas", "attributes": { "weight": 4915, "sourceWeight": "4915", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4915" } }, { "key": "geid_107_7655", "source": "Austria", "target": "Bahamas", "attributes": { "weight": 46, "sourceWeight": "46", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "46" } }, { "key": "geid_107_7656", "source": "Belgium", "target": "Bahamas", "attributes": { "weight": 709, "sourceWeight": "709", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "709" } }, { "key": "geid_107_7657", "source": "PeoplesRepublicofChinaChina", "target": "Bahamas", "attributes": { "weight": 942, "sourceWeight": "942", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "942" } }, { "key": "geid_107_7658", "source": "Cuba", "target": "Bahamas", "attributes": { "weight": 17832, "sourceWeight": "17832", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "17832" } }, { "key": "geid_107_7659", "source": "Czechoslovakia", "target": "Bahamas", "attributes": { "weight": 52, "sourceWeight": "52", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "52" } }, { "key": "geid_107_7660", "source": "Denmark", "target": "Bahamas", "attributes": { "weight": 1953, "sourceWeight": "1953", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1953" } }, { "key": "geid_107_7661", "source": "EgyptArabRepublicEgypt", "target": "Bahamas", "attributes": { "weight": 167, "sourceWeight": "167", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "167" } }, { "key": "geid_107_7662", "source": "France", "target": "Bahamas", "attributes": { "weight": 28411, "sourceWeight": "28411", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "28411" } }, { "key": "geid_107_7663", "source": "GermanyZollverein", "target": "Bahamas", "attributes": { "weight": 18960, "sourceWeight": "18960", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "18960" } }, { "key": "geid_107_7664", "source": "Greece", "target": "Bahamas", "attributes": { "weight": 50, "sourceWeight": "50", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "50" } }, { "key": "geid_107_7665", "source": "Haiti", "target": "Bahamas", "attributes": { "weight": 58, "sourceWeight": "58", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "58" } }, { "key": "geid_107_7666", "source": "Netherlands", "target": "Bahamas", "attributes": { "weight": 13668, "sourceWeight": "13668", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "13668" } }, { "key": "geid_107_7667", "source": "Italy", "target": "Bahamas", "attributes": { "weight": 1627, "sourceWeight": "1627", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1627" } }, { "key": "geid_107_7668", "source": "Japan", "target": "Bahamas", "attributes": { "weight": 922, "sourceWeight": "922", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "922" } }, { "key": "geid_107_7669", "source": "Norway", "target": "Bahamas", "attributes": { "weight": 321, "sourceWeight": "321", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "321" } }, { "key": "geid_107_7670", "source": "Palestine", "target": "Bahamas", "attributes": { "weight": 15, "sourceWeight": "15", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "15" } }, { "key": "geid_107_7671", "source": "IranPersia", "target": "Bahamas", "attributes": { "weight": 46, "sourceWeight": "46", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "46" } }, { "key": "geid_107_7672", "source": "Portugal", "target": "Bahamas", "attributes": { "weight": 837, "sourceWeight": "837", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "837" } }, { "key": "geid_107_7673", "source": "Spain", "target": "Bahamas", "attributes": { "weight": 285, "sourceWeight": "285", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "285" } }, { "key": "geid_107_7674", "source": "Sweden", "target": "Bahamas", "attributes": { "weight": 84, "sourceWeight": "84", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "84" } }, { "key": "geid_107_7675", "source": "Switzerland", "target": "Bahamas", "attributes": { "weight": 1636, "sourceWeight": "1636", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1636" } }, { "key": "geid_107_7676", "source": "UnitedStatesofAmerica", "target": "Bahamas", "attributes": { "weight": 746611, "sourceWeight": "746611", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "746611" } }, { "key": "geid_107_7677", "source": "Bahamas", "target": "UnitedKingdom", "attributes": { "weight": 48167, "sourceWeight": "48167", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7678", "source": "Bahamas", "target": "Bermuda", "attributes": { "weight": 401, "sourceWeight": "401", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7679", "source": "Bahamas", "target": "CanadaProvinceofCanada", "attributes": { "weight": 3589, "sourceWeight": "3589", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7680", "source": "Bahamas", "target": "Jamaica", "attributes": { "weight": 392, "sourceWeight": "392", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7681", "source": "Bahamas", "target": "TurksandCaicosIs", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7682", "source": "Bahamas", "target": "ArgentinaLaPlata", "attributes": { "weight": 153, "sourceWeight": "153", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7683", "source": "Bahamas", "target": "Belgium", "attributes": { "weight": 1220, "sourceWeight": "1220", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7684", "source": "Bahamas", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 5, "sourceWeight": "5", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7685", "source": "Bahamas", "target": "Cuba", "attributes": { "weight": 35949, "sourceWeight": "35949", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7686", "source": "Bahamas", "target": "Denmark", "attributes": { "weight": 853, "sourceWeight": "853", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7687", "source": "Bahamas", "target": "France", "attributes": { "weight": 21087, "sourceWeight": "21087", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7688", "source": "Bahamas", "target": "GermanyZollverein", "attributes": { "weight": 7347, "sourceWeight": "7347", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7689", "source": "Bahamas", "target": "Netherlands", "attributes": { "weight": 6779, "sourceWeight": "6779", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7690", "source": "Bahamas", "target": "Italy", "attributes": { "weight": 1437, "sourceWeight": "1437", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7691", "source": "Bahamas", "target": "Japan", "attributes": { "weight": 170, "sourceWeight": "170", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7692", "source": "Bahamas", "target": "Spain", "attributes": { "weight": 290, "sourceWeight": "290", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7693", "source": "Bahamas", "target": "UnitedStatesofAmerica", "attributes": { "weight": 146458, "sourceWeight": "146458", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_7694", "source": "France", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 7126689.284246024, "sourceWeight": "7126689.284246024", "direction": "Imp", "source_type": "primary", "targetWeight": "7126689.284246024" } }, { "key": "geid_107_7695", "source": "AlgeriaRegencyofAlgiers", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 880125.6727704545, "sourceWeight": "880125.6727704545", "direction": "Imp", "source_type": "primary", "targetWeight": "880125.6727704545" } }, { "key": "geid_107_7696", "source": "Italy", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 638487.0653689236, "sourceWeight": "638487.0653689236", "direction": "Imp", "source_type": "primary", "targetWeight": "638487.0653689236" } }, { "key": "geid_107_7697", "source": "UnitedKingdom", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 465752.2400633613, "sourceWeight": "465752.2400633613", "direction": "Imp", "source_type": "primary", "targetWeight": "465752.2400633613" } }, { "key": "geid_107_7698", "source": "Belgium", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 235159.4447487471, "sourceWeight": "235159.4447487471", "direction": "Imp", "source_type": "primary", "targetWeight": "235159.4447487471" } }, { "key": "geid_107_7699", "source": "UnitedStatesofAmerica", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 414092.49481664505, "sourceWeight": "414092.49481664505", "direction": "Imp", "source_type": "primary", "targetWeight": "414092.49481664505" } }, { "key": "geid_107_7700", "source": "Netherlands", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 35314.58653236639, "sourceWeight": "35314.58653236639", "direction": "Imp", "source_type": "primary", "targetWeight": "35314.58653236639" } }, { "key": "geid_107_7701", "source": "Malta", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 14938.314757808457, "sourceWeight": "14938.314757808457", "direction": "Imp", "source_type": "primary", "targetWeight": "14938.314757808457" } }, { "key": "geid_107_7702", "source": "TripolitaniaRegencyofTripoli", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 61100.19119510883, "sourceWeight": "61100.19119510883", "direction": "Imp", "source_type": "primary", "targetWeight": "61100.19119510883" } }, { "key": "geid_107_7703", "source": "EgyptArabRepublicEgypt", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 16156.757967405518, "sourceWeight": "16156.757967405518", "direction": "Imp", "source_type": "primary", "targetWeight": "16156.757967405518" } }, { "key": "geid_107_7704", "source": "Spain", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 34895.997125394926, "sourceWeight": "34895.997125394926", "direction": "Imp", "source_type": "primary", "targetWeight": "34895.997125394926" } }, { "key": "geid_107_7705", "source": "PeoplesRepublicofChinaChina", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 124084.52007695369, "sourceWeight": "124084.52007695369", "direction": "Imp", "source_type": "primary", "targetWeight": "124084.52007695369" } }, { "key": "geid_107_7706", "source": "ArgentinaLaPlata", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 119647.53155273474, "sourceWeight": "119647.53155273474", "direction": "Imp", "source_type": "primary", "targetWeight": "119647.53155273474" } }, { "key": "geid_107_7707", "source": "GermanyZollverein", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 10125.826912629806, "sourceWeight": "10125.826912629806", "direction": "Imp", "source_type": "primary", "targetWeight": "10125.826912629806" } }, { "key": "geid_107_7708", "source": "Greece", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 16177.154730646804, "sourceWeight": "16177.154730646804", "direction": "Imp", "source_type": "primary", "targetWeight": "16177.154730646804" } }, { "key": "geid_107_7709", "source": "Romania", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 71075.9722725191, "sourceWeight": "71075.9722725191", "direction": "Imp", "source_type": "primary", "targetWeight": "71075.9722725191" } }, { "key": "geid_107_7710", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 68224.84096876183, "sourceWeight": "68224.84096876183", "direction": "Imp", "source_type": "primary", "targetWeight": "68224.84096876183" } }, { "key": "geid_107_7711", "source": "Switzerland", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 36150.759121773335, "sourceWeight": "36150.759121773335", "direction": "Imp", "source_type": "primary", "targetWeight": "36150.759121773335" } }, { "key": "geid_107_7712", "source": "Sweden", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 54879.048189224035, "sourceWeight": "54879.048189224035", "direction": "Imp", "source_type": "primary", "targetWeight": "54879.048189224035" } }, { "key": "geid_107_7713", "source": "Brazil", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 60036.422453596875, "sourceWeight": "60036.422453596875", "direction": "Imp", "source_type": "primary", "targetWeight": "60036.422453596875" } }, { "key": "geid_107_7714", "source": "IndonesiaDutchEastIndies", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 59141.474513352456, "sourceWeight": "59141.474513352456", "direction": "Imp", "source_type": "primary", "targetWeight": "59141.474513352456" } }, { "key": "geid_107_7715", "source": "Portugal", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 5708.74979628772, "sourceWeight": "5708.74979628772", "direction": "Imp", "source_type": "primary", "targetWeight": "5708.74979628772" } }, { "key": "geid_107_7716", "source": "India", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 45336.298800360615, "sourceWeight": "45336.298800360615", "direction": "Imp", "source_type": "primary", "targetWeight": "45336.298800360615" } }, { "key": "geid_107_7717", "source": "Morocco", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 43792.655658667594, "sourceWeight": "43792.655658667594", "direction": "Imp", "source_type": "primary", "targetWeight": "43792.655658667594" } }, { "key": "geid_107_7718", "source": "Czechoslovakia", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 42033.49105930143, "sourceWeight": "42033.49105930143", "direction": "Imp", "source_type": "primary", "targetWeight": "42033.49105930143" } }, { "key": "geid_107_7719", "source": "IranPersia", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 39727.99388863605, "sourceWeight": "39727.99388863605", "direction": "Imp", "source_type": "primary", "targetWeight": "39727.99388863605" } }, { "key": "geid_107_7720", "source": "FrenchColoniesother", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 38392.402467178414, "sourceWeight": "38392.402467178414", "direction": "Imp", "source_type": "primary", "targetWeight": "38392.402467178414" } }, { "key": "geid_107_7721", "source": "TurkeyOttomanEmpire", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 29311.095812583884, "sourceWeight": "29311.095812583884", "direction": "Imp", "source_type": "primary", "targetWeight": "29311.095812583884" } }, { "key": "geid_107_7722", "source": "Saar", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 27740.23725667629, "sourceWeight": "27740.23725667629", "direction": "Imp", "source_type": "primary", "targetWeight": "27740.23725667629" } }, { "key": "geid_107_7723", "source": "Norway", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 20992.649411497703, "sourceWeight": "20992.649411497703", "direction": "Imp", "source_type": "primary", "targetWeight": "20992.649411497703" } }, { "key": "geid_107_7724", "source": "Austria", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 22866.535445902347, "sourceWeight": "22866.535445902347", "direction": "Imp", "source_type": "primary", "targetWeight": "22866.535445902347" } }, { "key": "geid_107_7725", "source": "CanadaProvinceofCanada", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 15296.554368492012, "sourceWeight": "15296.554368492012", "direction": "Imp", "source_type": "primary", "targetWeight": "15296.554368492012" } }, { "key": "geid_107_7726", "source": "Denmark", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 8837.421502942208, "sourceWeight": "8837.421502942208", "direction": "Imp", "source_type": "primary", "targetWeight": "8837.421502942208" } }, { "key": "geid_107_7727", "source": "Syria", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 3109.4824128563905, "sourceWeight": "3109.4824128563905", "direction": "Imp", "source_type": "primary", "targetWeight": "3109.4824128563905" } }, { "key": "geid_107_7728", "source": "Hungary", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 4949.109461294535, "sourceWeight": "4949.109461294535", "direction": "Imp", "source_type": "primary", "targetWeight": "4949.109461294535" } }, { "key": "geid_107_7729", "source": "Finland", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 4093.2858985965113, "sourceWeight": "4093.2858985965113", "direction": "Imp", "source_type": "primary", "targetWeight": "4093.2858985965113" } }, { "key": "geid_107_7730", "source": "Japan", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 1822.2134449976747, "sourceWeight": "1822.2134449976747", "direction": "Imp", "source_type": "primary", "targetWeight": "1822.2134449976747" } }, { "key": "geid_107_7731", "source": "Bulgaria", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 2585.132888184611, "sourceWeight": "2585.132888184611", "direction": "Imp", "source_type": "primary", "targetWeight": "2585.132888184611" } }, { "key": "geid_107_7732", "source": "Zanzibar", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 2890.042598460744, "sourceWeight": "2890.042598460744", "direction": "Imp", "source_type": "primary", "targetWeight": "2890.042598460744" } }, { "key": "geid_107_7733", "source": "Luxemburg", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 1673.4934585784856, "sourceWeight": "1673.4934585784856", "direction": "Imp", "source_type": "primary", "targetWeight": "1673.4934585784856" } }, { "key": "geid_107_7734", "source": "Poland", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 1102.3722498867892, "sourceWeight": "1102.3722498867892", "direction": "Imp", "source_type": "primary", "targetWeight": "1102.3722498867892" } }, { "key": "geid_107_7735", "source": "Palestine", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 119.63417836124538, "sourceWeight": "119.63417836124538", "direction": "Imp", "source_type": "primary", "targetWeight": "119.63417836124538" } }, { "key": "geid_107_7736", "source": "Othercountries", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 80303.57213671072, "sourceWeight": "80303.57213671072", "direction": "Imp", "source_type": "primary", "targetWeight": "80303.57213671072" } }, { "key": "geid_107_7737", "source": "TunisiaRegencyofTunis", "target": "France", "attributes": { "weight": 3105564.979492878, "sourceWeight": "3105564.979492878", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7738", "source": "TunisiaRegencyofTunis", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 375277.738478937, "sourceWeight": "375277.738478937", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7739", "source": "TunisiaRegencyofTunis", "target": "Italy", "attributes": { "weight": 1207113.4882978313, "sourceWeight": "1207113.4882978313", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7740", "source": "TunisiaRegencyofTunis", "target": "UnitedKingdom", "attributes": { "weight": 525699.6767541696, "sourceWeight": "525699.6767541696", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7741", "source": "TunisiaRegencyofTunis", "target": "Belgium", "attributes": { "weight": 468208.126369382, "sourceWeight": "468208.126369382", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7742", "source": "TunisiaRegencyofTunis", "target": "UnitedStatesofAmerica", "attributes": { "weight": 85083.42279311617, "sourceWeight": "85083.42279311617", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7743", "source": "TunisiaRegencyofTunis", "target": "Netherlands", "attributes": { "weight": 283575.0037120773, "sourceWeight": "283575.0037120773", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7744", "source": "TunisiaRegencyofTunis", "target": "Malta", "attributes": { "weight": 207660.67770483677, "sourceWeight": "207660.67770483677", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7745", "source": "TunisiaRegencyofTunis", "target": "TripolitaniaRegencyofTripoli", "attributes": { "weight": 119576.10144861523, "sourceWeight": "119576.10144861523", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7746", "source": "TunisiaRegencyofTunis", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 121841.66926210542, "sourceWeight": "121841.66926210542", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7747", "source": "TunisiaRegencyofTunis", "target": "Spain", "attributes": { "weight": 89976.88211860265, "sourceWeight": "89976.88211860265", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7748", "source": "TunisiaRegencyofTunis", "target": "GermanyZollverein", "attributes": { "weight": 86581.95156178973, "sourceWeight": "86581.95156178973", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7749", "source": "TunisiaRegencyofTunis", "target": "Greece", "attributes": { "weight": 60765.66296966747, "sourceWeight": "60765.66296966747", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7750", "source": "TunisiaRegencyofTunis", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 1581.4298325033415, "sourceWeight": "1581.4298325033415", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7751", "source": "TunisiaRegencyofTunis", "target": "Switzerland", "attributes": { "weight": 31562.37523766303, "sourceWeight": "31562.37523766303", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7752", "source": "TunisiaRegencyofTunis", "target": "Sweden", "attributes": { "weight": 8428.740448166305, "sourceWeight": "8428.740448166305", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7753", "source": "TunisiaRegencyofTunis", "target": "Brazil", "attributes": { "weight": 4.971933001357912, "sourceWeight": "4.971933001357912", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7754", "source": "TunisiaRegencyofTunis", "target": "Portugal", "attributes": { "weight": 49572.18447261036, "sourceWeight": "49572.18447261036", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7755", "source": "TunisiaRegencyofTunis", "target": "India", "attributes": { "weight": 2159.417043911199, "sourceWeight": "2159.417043911199", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7756", "source": "TunisiaRegencyofTunis", "target": "Morocco", "attributes": { "weight": 465.7754187414962, "sourceWeight": "465.7754187414962", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7757", "source": "TunisiaRegencyofTunis", "target": "Czechoslovakia", "attributes": { "weight": 8.286555002263187, "sourceWeight": "8.286555002263187", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7758", "source": "TunisiaRegencyofTunis", "target": "FrenchColoniesother", "attributes": { "weight": 280.91421457672203, "sourceWeight": "280.91421457672203", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7759", "source": "TunisiaRegencyofTunis", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 5257.712607514534, "sourceWeight": "5257.712607514534", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7760", "source": "TunisiaRegencyofTunis", "target": "Norway", "attributes": { "weight": 5519.591421457486, "sourceWeight": "5519.591421457486", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7761", "source": "TunisiaRegencyofTunis", "target": "Austria", "attributes": { "weight": 1462.5769578994525, "sourceWeight": "1462.5769578994525", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7762", "source": "TunisiaRegencyofTunis", "target": "Denmark", "attributes": { "weight": 1596.499524671743, "sourceWeight": "1596.499524671743", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7763", "source": "TunisiaRegencyofTunis", "target": "Ireland", "attributes": { "weight": 7229.190583974404, "sourceWeight": "7229.190583974404", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7764", "source": "TunisiaRegencyofTunis", "target": "Syria", "attributes": { "weight": 3801.1729968310165, "sourceWeight": "3801.1729968310165", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7765", "source": "TunisiaRegencyofTunis", "target": "Finland", "attributes": { "weight": 798.3503847894705, "sourceWeight": "798.3503847894705", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7766", "source": "TunisiaRegencyofTunis", "target": "Japan", "attributes": { "weight": 2381.4138524218297, "sourceWeight": "2381.4138524218297", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7767", "source": "TunisiaRegencyofTunis", "target": "Bulgaria", "attributes": { "weight": 917.3216387505347, "sourceWeight": "917.3216387505347", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7768", "source": "TunisiaRegencyofTunis", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 2164.921684019845, "sourceWeight": "2164.921684019845", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7769", "source": "TunisiaRegencyofTunis", "target": "***NA", "attributes": { "weight": 30573.966794928794, "sourceWeight": "30573.966794928794", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7770", "source": "TunisiaRegencyofTunis", "target": "Othercountries", "attributes": { "weight": 1171.636011769992, "sourceWeight": "1171.636011769992", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7771", "source": "GermanyZollverein", "target": "Lithuania", "attributes": { "weight": 2895581.9375258684, "sourceWeight": "2895581.9375258684", "direction": "Imp", "source_type": "secondary", "targetWeight": "2895581.9375258684" } }, { "key": "geid_107_7772", "source": "Lithuania", "target": "GermanyZollverein", "attributes": { "weight": 2569383.8841083054, "sourceWeight": "2569383.8841083054", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7773", "source": "Belgium", "target": "Lithuania", "attributes": { "weight": 24111.36260749452, "sourceWeight": "24111.36260749452", "direction": "Imp", "source_type": "secondary", "targetWeight": "24111.36260749452" } }, { "key": "geid_107_7774", "source": "Lithuania", "target": "Belgium", "attributes": { "weight": 62317.56450877534, "sourceWeight": "62317.56450877534", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7775", "source": "Denmark", "target": "Lithuania", "attributes": { "weight": 28929.153463081253, "sourceWeight": "28929.153463081253", "direction": "Imp", "source_type": "secondary", "targetWeight": "28929.153463081253" } }, { "key": "geid_107_7776", "source": "Lithuania", "target": "Denmark", "attributes": { "weight": 111279.76459927304, "sourceWeight": "111279.76459927304", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7777", "source": "DanzigFreeCityofDanzig", "target": "Lithuania", "attributes": { "weight": 18486.871887716523, "sourceWeight": "18486.871887716523", "direction": "Imp", "source_type": "secondary", "targetWeight": "18486.871887716523" } }, { "key": "geid_107_7778", "source": "Lithuania", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 27674.287007672614, "sourceWeight": "27674.287007672614", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7779", "source": "Spain", "target": "Lithuania", "attributes": { "weight": 7618.832050695295, "sourceWeight": "7618.832050695295", "direction": "Imp", "source_type": "secondary", "targetWeight": "7618.832050695295" } }, { "key": "geid_107_7780", "source": "Lithuania", "target": "Spain", "attributes": { "weight": 112400.18107731646, "sourceWeight": "112400.18107731646", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7781", "source": "France", "target": "Lithuania", "attributes": { "weight": 49432.77501127594, "sourceWeight": "49432.77501127594", "direction": "Imp", "source_type": "secondary", "targetWeight": "49432.77501127594" } }, { "key": "geid_107_7782", "source": "Lithuania", "target": "France", "attributes": { "weight": 93375.5092801391, "sourceWeight": "93375.5092801391", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7783", "source": "Latvia", "target": "Lithuania", "attributes": { "weight": 166426.66364857045, "sourceWeight": "166426.66364857045", "direction": "Imp", "source_type": "secondary", "targetWeight": "166426.66364857045" } }, { "key": "geid_107_7784", "source": "Lithuania", "target": "Latvia", "attributes": { "weight": 562830.0135803345, "sourceWeight": "562830.0135803345", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7785", "source": "Netherlands", "target": "Lithuania", "attributes": { "weight": 111414.21457663825, "sourceWeight": "111414.21457663825", "direction": "Imp", "source_type": "secondary", "targetWeight": "111414.21457663825" } }, { "key": "geid_107_7786", "source": "Lithuania", "target": "Netherlands", "attributes": { "weight": 183255.3191487827, "sourceWeight": "183255.3191487827", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7787", "source": "UnitedKingdom", "target": "Lithuania", "attributes": { "weight": 375294.70348542585, "sourceWeight": "375294.70348542585", "direction": "Imp", "source_type": "secondary", "targetWeight": "375294.70348542585" } }, { "key": "geid_107_7788", "source": "Lithuania", "target": "UnitedKingdom", "attributes": { "weight": 1668658.6690796348, "sourceWeight": "1668658.6690796348", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7789", "source": "Sweden", "target": "Lithuania", "attributes": { "weight": 165664.78044350093, "sourceWeight": "165664.78044350093", "direction": "Imp", "source_type": "secondary", "targetWeight": "165664.78044350093" } }, { "key": "geid_107_7790", "source": "Lithuania", "target": "Sweden", "attributes": { "weight": 12391.806247160288, "sourceWeight": "12391.806247160288", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7791", "source": "Czechoslovakia", "target": "Lithuania", "attributes": { "weight": 199747.84970558193, "sourceWeight": "199747.84970558193", "direction": "Imp", "source_type": "secondary", "targetWeight": "199747.84970558193" } }, { "key": "geid_107_7792", "source": "Lithuania", "target": "Czechoslovakia", "attributes": { "weight": 232912.17745566735, "sourceWeight": "232912.17745566735", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7793", "source": "UnitedStatesofAmerica", "target": "Lithuania", "attributes": { "weight": 221416.7043909418, "sourceWeight": "221416.7043909418", "direction": "Imp", "source_type": "secondary", "targetWeight": "221416.7043909418" } }, { "key": "geid_107_7794", "source": "Lithuania", "target": "UnitedStatesofAmerica", "attributes": { "weight": 181866.00271600886, "sourceWeight": "181866.00271600886", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7795", "source": "Othercountries", "target": "Lithuania", "attributes": { "weight": 363888.8637389438, "sourceWeight": "363888.8637389438", "direction": "Imp", "source_type": "secondary", "targetWeight": "363888.8637389438" } }, { "key": "geid_107_7796", "source": "Lithuania", "target": "Othercountries", "attributes": { "weight": 154841.55726560144, "sourceWeight": "154841.55726560144", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7797", "source": "GermanyZollverein", "target": "Panama", "attributes": { "weight": 126527.84065187868, "sourceWeight": "126527.84065187868", "direction": "Imp", "source_type": "secondary", "targetWeight": "126527.84065187868" } }, { "key": "geid_107_7798", "source": "Panama", "target": "GermanyZollverein", "attributes": { "weight": 18560.434585785424, "sourceWeight": "18560.434585785424", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7799", "source": "Belgium", "target": "Panama", "attributes": { "weight": 10638.297872340425, "sourceWeight": "10638.297872340425", "direction": "Imp", "source_type": "secondary", "targetWeight": "10638.297872340425" } }, { "key": "geid_107_7800", "source": "Panama", "target": "Belgium", "attributes": { "weight": 679.040289723857, "sourceWeight": "679.040289723857", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7801", "source": "Spain", "target": "Panama", "attributes": { "weight": 41195.11090991399, "sourceWeight": "41195.11090991399", "direction": "Imp", "source_type": "secondary", "targetWeight": "41195.11090991399" } }, { "key": "geid_107_7802", "source": "France", "target": "Panama", "attributes": { "weight": 181303.7573562698, "sourceWeight": "181303.7573562698", "direction": "Imp", "source_type": "secondary", "targetWeight": "181303.7573562698" } }, { "key": "geid_107_7803", "source": "Panama", "target": "France", "attributes": { "weight": 21729.289271163423, "sourceWeight": "21729.289271163423", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7804", "source": "Italy", "target": "Panama", "attributes": { "weight": 22634.676324128563, "sourceWeight": "22634.676324128563", "direction": "Imp", "source_type": "secondary", "targetWeight": "22634.676324128563" } }, { "key": "geid_107_7805", "source": "Panama", "target": "Italy", "attributes": { "weight": 8827.52376641014, "sourceWeight": "8827.52376641014", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7806", "source": "UnitedKingdom", "target": "Panama", "attributes": { "weight": 297419.64689904934, "sourceWeight": "297419.64689904934", "direction": "Imp", "source_type": "secondary", "targetWeight": "297419.64689904934" } }, { "key": "geid_107_7807", "source": "Panama", "target": "UnitedKingdom", "attributes": { "weight": 27840.651878678134, "sourceWeight": "27840.651878678134", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7808", "source": "PeoplesRepublicofChinaChina", "target": "Panama", "attributes": { "weight": 162290.62924400182, "sourceWeight": "162290.62924400182", "direction": "Imp", "source_type": "secondary", "targetWeight": "162290.62924400182" } }, { "key": "geid_107_7809", "source": "Japan", "target": "Panama", "attributes": { "weight": 54549.56994114984, "sourceWeight": "54549.56994114984", "direction": "Imp", "source_type": "secondary", "targetWeight": "54549.56994114984" } }, { "key": "geid_107_7810", "source": "UnitedStatesofAmerica", "target": "Panama", "attributes": { "weight": 2031462.2000905387, "sourceWeight": "2031462.2000905387", "direction": "Imp", "source_type": "secondary", "targetWeight": "2031462.2000905387" } }, { "key": "geid_107_7811", "source": "Panama", "target": "UnitedStatesofAmerica", "attributes": { "weight": 591670.4391127207, "sourceWeight": "591670.4391127207", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7812", "source": "Jamaica", "target": "Panama", "attributes": { "weight": 11770.031688546853, "sourceWeight": "11770.031688546853", "direction": "Imp", "source_type": "secondary", "targetWeight": "11770.031688546853" } }, { "key": "geid_107_7813", "source": "Peru", "target": "Panama", "attributes": { "weight": 19918.515165233137, "sourceWeight": "19918.515165233137", "direction": "Imp", "source_type": "secondary", "targetWeight": "19918.515165233137" } }, { "key": "geid_107_7814", "source": "Othercountries", "target": "Panama", "attributes": { "weight": 156858.30692621096, "sourceWeight": "156858.30692621096", "direction": "Imp", "source_type": "secondary", "targetWeight": "156858.30692621096" } }, { "key": "geid_107_7815", "source": "Panama", "target": "Othercountries", "attributes": { "weight": 11543.684925305568, "sourceWeight": "11543.684925305568", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7816", "source": "GermanyZollverein", "target": "IranPersia", "attributes": { "weight": 461380, "sourceWeight": "461380", "direction": "Imp", "source_type": "secondary", "targetWeight": "461380" } }, { "key": "geid_107_7817", "source": "IranPersia", "target": "GermanyZollverein", "attributes": { "weight": 38160, "sourceWeight": "38160", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7818", "source": "Belgium", "target": "IranPersia", "attributes": { "weight": 874720, "sourceWeight": "874720", "direction": "Imp", "source_type": "secondary", "targetWeight": "874720" } }, { "key": "geid_107_7819", "source": "IranPersia", "target": "Belgium", "attributes": { "weight": 2160, "sourceWeight": "2160", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7820", "source": "France", "target": "IranPersia", "attributes": { "weight": 647280, "sourceWeight": "647280", "direction": "Imp", "source_type": "secondary", "targetWeight": "647280" } }, { "key": "geid_107_7821", "source": "IranPersia", "target": "France", "attributes": { "weight": 162080, "sourceWeight": "162080", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7822", "source": "Italy", "target": "IranPersia", "attributes": { "weight": 243280, "sourceWeight": "243280", "direction": "Imp", "source_type": "secondary", "targetWeight": "243280" } }, { "key": "geid_107_7823", "source": "IranPersia", "target": "Italy", "attributes": { "weight": 1120, "sourceWeight": "1120", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7824", "source": "Netherlands", "target": "IranPersia", "attributes": { "weight": 534340, "sourceWeight": "534340", "direction": "Imp", "source_type": "secondary", "targetWeight": "534340" } }, { "key": "geid_107_7825", "source": "IranPersia", "target": "Netherlands", "attributes": { "weight": 680, "sourceWeight": "680", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7826", "source": "UnitedKingdom", "target": "IranPersia", "attributes": { "weight": 4617540, "sourceWeight": "4617540", "direction": "Imp", "source_type": "secondary", "targetWeight": "4617540" } }, { "key": "geid_107_7827", "source": "IranPersia", "target": "UnitedKingdom", "attributes": { "weight": 5975320, "sourceWeight": "5975320", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7828", "source": "RussiaUSSR", "target": "IranPersia", "attributes": { "weight": 2513400, "sourceWeight": "2513400", "direction": "Imp", "source_type": "secondary", "targetWeight": "2513400" } }, { "key": "geid_107_7829", "source": "IranPersia", "target": "RussiaUSSR", "attributes": { "weight": 4893380, "sourceWeight": "4893380", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7830", "source": "Afghanistan", "target": "IranPersia", "attributes": { "weight": 160640, "sourceWeight": "160640", "direction": "Imp", "source_type": "secondary", "targetWeight": "160640" } }, { "key": "geid_107_7831", "source": "IranPersia", "target": "Afghanistan", "attributes": { "weight": 38740, "sourceWeight": "38740", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7832", "source": "PeoplesRepublicofChinaChina", "target": "IranPersia", "attributes": { "weight": 52820, "sourceWeight": "52820", "direction": "Imp", "source_type": "secondary", "targetWeight": "52820" } }, { "key": "geid_107_7833", "source": "IranPersia", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 205540, "sourceWeight": "205540", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7834", "source": "India", "target": "IranPersia", "attributes": { "weight": 4287300, "sourceWeight": "4287300", "direction": "Imp", "source_type": "secondary", "targetWeight": "4287300" } }, { "key": "geid_107_7835", "source": "IranPersia", "target": "India", "attributes": { "weight": 3085620, "sourceWeight": "3085620", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7836", "source": "IraqMesopotamia_Kuwait", "target": "IranPersia", "attributes": { "weight": 148520, "sourceWeight": "148520", "direction": "Imp", "source_type": "secondary", "targetWeight": "148520" } }, { "key": "geid_107_7837", "source": "IranPersia", "target": "IraqMesopotamia_Kuwait", "attributes": { "weight": 706820, "sourceWeight": "706820", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7838", "source": "TurkeyOttomanEmpire", "target": "IranPersia", "attributes": { "weight": 369120, "sourceWeight": "369120", "direction": "Imp", "source_type": "secondary", "targetWeight": "369120" } }, { "key": "geid_107_7839", "source": "IranPersia", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 592280, "sourceWeight": "592280", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7840", "source": "EgyptArabRepublicEgypt", "target": "IranPersia", "attributes": { "weight": 64560, "sourceWeight": "64560", "direction": "Imp", "source_type": "secondary", "targetWeight": "64560" } }, { "key": "geid_107_7841", "source": "IranPersia", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 2802520, "sourceWeight": "2802520", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7842", "source": "UnitedStatesofAmerica", "target": "IranPersia", "attributes": { "weight": 124680, "sourceWeight": "124680", "direction": "Imp", "source_type": "secondary", "targetWeight": "124680" } }, { "key": "geid_107_7843", "source": "IranPersia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1070980, "sourceWeight": "1070980", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7844", "source": "Othercountries", "target": "IranPersia", "attributes": { "weight": 329320, "sourceWeight": "329320", "direction": "Imp", "source_type": "secondary", "targetWeight": "329320" } }, { "key": "geid_107_7845", "source": "IranPersia", "target": "Othercountries", "attributes": { "weight": 427860, "sourceWeight": "427860", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7846", "source": "GermanyZollverein", "target": "ThailandSiam", "attributes": { "weight": 413440, "sourceWeight": "413440", "direction": "Imp", "source_type": "secondary", "targetWeight": "413440" } }, { "key": "geid_107_7847", "source": "ThailandSiam", "target": "GermanyZollverein", "attributes": { "weight": 431280, "sourceWeight": "431280", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7848", "source": "Belgium", "target": "ThailandSiam", "attributes": { "weight": 360560, "sourceWeight": "360560", "direction": "Imp", "source_type": "secondary", "targetWeight": "360560" } }, { "key": "geid_107_7849", "source": "ThailandSiam", "target": "Belgium", "attributes": { "weight": 222880, "sourceWeight": "222880", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7850", "source": "France", "target": "ThailandSiam", "attributes": { "weight": 414320, "sourceWeight": "414320", "direction": "Imp", "source_type": "secondary", "targetWeight": "414320" } }, { "key": "geid_107_7851", "source": "ThailandSiam", "target": "France", "attributes": { "weight": 10720, "sourceWeight": "10720", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7852", "source": "Netherlands", "target": "ThailandSiam", "attributes": { "weight": 138240, "sourceWeight": "138240", "direction": "Imp", "source_type": "secondary", "targetWeight": "138240" } }, { "key": "geid_107_7853", "source": "ThailandSiam", "target": "Netherlands", "attributes": { "weight": 248720, "sourceWeight": "248720", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7854", "source": "UnitedKingdom", "target": "ThailandSiam", "attributes": { "weight": 2091120, "sourceWeight": "2091120", "direction": "Imp", "source_type": "secondary", "targetWeight": "2091120" } }, { "key": "geid_107_7855", "source": "ThailandSiam", "target": "UnitedKingdom", "attributes": { "weight": 292720, "sourceWeight": "292720", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7856", "source": "SriLankaCeylon", "target": "ThailandSiam", "attributes": { "weight": 480, "sourceWeight": "480", "direction": "Imp", "source_type": "secondary", "targetWeight": "480" } }, { "key": "geid_107_7857", "source": "ThailandSiam", "target": "SriLankaCeylon", "attributes": { "weight": 26240, "sourceWeight": "26240", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7858", "source": "PeoplesRepublicofChinaChina", "target": "ThailandSiam", "attributes": { "weight": 1000800, "sourceWeight": "1000800", "direction": "Imp", "source_type": "secondary", "targetWeight": "1000800" } }, { "key": "geid_107_7859", "source": "ThailandSiam", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 116560, "sourceWeight": "116560", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7860", "source": "HongKong", "target": "ThailandSiam", "attributes": { "weight": 2970000, "sourceWeight": "2970000", "direction": "Imp", "source_type": "secondary", "targetWeight": "2970000" } }, { "key": "geid_107_7861", "source": "ThailandSiam", "target": "HongKong", "attributes": { "weight": 4908160, "sourceWeight": "4908160", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7862", "source": "India", "target": "ThailandSiam", "attributes": { "weight": 1135920, "sourceWeight": "1135920", "direction": "Imp", "source_type": "secondary", "targetWeight": "1135920" } }, { "key": "geid_107_7863", "source": "ThailandSiam", "target": "India", "attributes": { "weight": 104080, "sourceWeight": "104080", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7864", "source": "FrenchIndochina", "target": "ThailandSiam", "attributes": { "weight": 95040, "sourceWeight": "95040", "direction": "Imp", "source_type": "secondary", "targetWeight": "95040" } }, { "key": "geid_107_7865", "source": "ThailandSiam", "target": "FrenchIndochina", "attributes": { "weight": 45040, "sourceWeight": "45040", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7866", "source": "IndonesiaDutchEastIndies", "target": "ThailandSiam", "attributes": { "weight": 436640, "sourceWeight": "436640", "direction": "Imp", "source_type": "secondary", "targetWeight": "436640" } }, { "key": "geid_107_7867", "source": "ThailandSiam", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 498080, "sourceWeight": "498080", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7868", "source": "Japan", "target": "ThailandSiam", "attributes": { "weight": 415440, "sourceWeight": "415440", "direction": "Imp", "source_type": "secondary", "targetWeight": "415440" } }, { "key": "geid_107_7869", "source": "ThailandSiam", "target": "Japan", "attributes": { "weight": 485760, "sourceWeight": "485760", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7870", "source": "MalaysiaBritishMalaya", "target": "ThailandSiam", "attributes": { "weight": 7600, "sourceWeight": "7600", "direction": "Imp", "source_type": "secondary", "targetWeight": "7600" } }, { "key": "geid_107_7871", "source": "ThailandSiam", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 220720, "sourceWeight": "220720", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7872", "source": "Singapore", "target": "ThailandSiam", "attributes": { "weight": 1769520, "sourceWeight": "1769520", "direction": "Imp", "source_type": "secondary", "targetWeight": "1769520" } }, { "key": "geid_107_7873", "source": "ThailandSiam", "target": "Singapore", "attributes": { "weight": 4360000, "sourceWeight": "4360000", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7874", "source": "UnitedStatesofAmerica", "target": "ThailandSiam", "attributes": { "weight": 326240, "sourceWeight": "326240", "direction": "Imp", "source_type": "secondary", "targetWeight": "326240" } }, { "key": "geid_107_7875", "source": "ThailandSiam", "target": "UnitedStatesofAmerica", "attributes": { "weight": 130960, "sourceWeight": "130960", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7876", "source": "Othercountries", "target": "ThailandSiam", "attributes": { "weight": 665120, "sourceWeight": "665120", "direction": "Imp", "source_type": "secondary", "targetWeight": "665120" } }, { "key": "geid_107_7877", "source": "ThailandSiam", "target": "Othercountries", "attributes": { "weight": 1172560, "sourceWeight": "1172560", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_7878", "source": "HongKong", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 44655028.10087555, "sourceWeight": "44655028.10087555", "direction": "Imp", "source_type": "primary", "targetWeight": "44655028.10087555" } }, { "key": "geid_107_7879", "source": "PeoplesRepublicofChinaChina", "target": "HongKong", "attributes": { "weight": 31701441.909589134, "sourceWeight": "31701441.909589134", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7880", "source": "Macao", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1410562.7257785955, "sourceWeight": "1410562.7257785955", "direction": "Imp", "source_type": "primary", "targetWeight": "1410562.7257785955" } }, { "key": "geid_107_7881", "source": "PeoplesRepublicofChinaChina", "target": "Macao", "attributes": { "weight": 931331.1043418646, "sourceWeight": "931331.1043418646", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7882", "source": "FrenchIndochina", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1864409.2735268308, "sourceWeight": "1864409.2735268308", "direction": "Imp", "source_type": "primary", "targetWeight": "1864409.2735268308" } }, { "key": "geid_107_7883", "source": "PeoplesRepublicofChinaChina", "target": "FrenchIndochina", "attributes": { "weight": 672716.9932399248, "sourceWeight": "672716.9932399248", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7884", "source": "ThailandSiam", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 435332.38369260624, "sourceWeight": "435332.38369260624", "direction": "Imp", "source_type": "primary", "targetWeight": "435332.38369260624" } }, { "key": "geid_107_7885", "source": "PeoplesRepublicofChinaChina", "target": "ThailandSiam", "attributes": { "weight": 599194.5437880437, "sourceWeight": "599194.5437880437", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7886", "source": "Singapore_StraitsSettlements", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1706544.2160333344, "sourceWeight": "1706544.2160333344", "direction": "Imp", "source_type": "primary", "targetWeight": "1706544.2160333344" } }, { "key": "geid_107_7887", "source": "PeoplesRepublicofChinaChina", "target": "Singapore_StraitsSettlements", "attributes": { "weight": 3591380.216375501, "sourceWeight": "3591380.216375501", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7888", "source": "IndonesiaDutchEastIndies", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 3795641.0769767794, "sourceWeight": "3795641.0769767794", "direction": "Imp", "source_type": "primary", "targetWeight": "3795641.0769767794" } }, { "key": "geid_107_7889", "source": "PeoplesRepublicofChinaChina", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 1705672.2397315747, "sourceWeight": "1705672.2397315747", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7890", "source": "India", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 7108298.086945304, "sourceWeight": "7108298.086945304", "direction": "Imp", "source_type": "primary", "targetWeight": "7108298.086945304" } }, { "key": "geid_107_7891", "source": "PeoplesRepublicofChinaChina", "target": "India", "attributes": { "weight": 2093664.3471396663, "sourceWeight": "2093664.3471396663", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7892", "source": "Aden_AlgeriaRegencyofAlgiers_TurkeyOttomanEmpire_EgyptArabRepublicEgypt_IranPersia_Morocco", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 142787.72130117533, "sourceWeight": "142787.72130117533", "direction": "Imp", "source_type": "primary", "targetWeight": "142787.72130117533" } }, { "key": "geid_107_7893", "source": "PeoplesRepublicofChinaChina", "target": "Aden_AlgeriaRegencyofAlgiers_TurkeyOttomanEmpire_EgyptArabRepublicEgypt_IranPersia_Morocco", "attributes": { "weight": 3397183.606291321, "sourceWeight": "3397183.606291321", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7894", "source": "UnitedKingdom", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 23069205.87034481, "sourceWeight": "23069205.87034481", "direction": "Imp", "source_type": "primary", "targetWeight": "23069205.87034481" } }, { "key": "geid_107_7895", "source": "PeoplesRepublicofChinaChina", "target": "UnitedKingdom", "attributes": { "weight": 9199569.85413794, "sourceWeight": "9199569.85413794", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7896", "source": "Norway", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 343266.66159135697, "sourceWeight": "343266.66159135697", "direction": "Imp", "source_type": "primary", "targetWeight": "343266.66159135697" } }, { "key": "geid_107_7897", "source": "PeoplesRepublicofChinaChina", "target": "Norway", "attributes": { "weight": 8586.669007229984, "sourceWeight": "8586.669007229984", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7898", "source": "Sweden", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 541203.0852158155, "sourceWeight": "541203.0852158155", "direction": "Imp", "source_type": "primary", "targetWeight": "541203.0852158155" } }, { "key": "geid_107_7899", "source": "PeoplesRepublicofChinaChina", "target": "Sweden", "attributes": { "weight": 90810.0249662986, "sourceWeight": "90810.0249662986", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7900", "source": "Denmark", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 74798.10153474094, "sourceWeight": "74798.10153474094", "direction": "Imp", "source_type": "primary", "targetWeight": "74798.10153474094" } }, { "key": "geid_107_7901", "source": "PeoplesRepublicofChinaChina", "target": "Denmark", "attributes": { "weight": 190133.1236273545, "sourceWeight": "190133.1236273545", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7902", "source": "Finland", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 20430.57134658448, "sourceWeight": "20430.57134658448", "direction": "Imp", "source_type": "primary", "targetWeight": "20430.57134658448" } }, { "key": "geid_107_7903", "source": "Poland", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 2150.37447836862, "sourceWeight": "2150.37447836862", "direction": "Imp", "source_type": "primary", "targetWeight": "2150.37447836862" } }, { "key": "geid_107_7904", "source": "PeoplesRepublicofChinaChina", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 8643.970830125385, "sourceWeight": "8643.970830125385", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7905", "source": "GermanyZollverein", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 7082658.175756902, "sourceWeight": "7082658.175756902", "direction": "Imp", "source_type": "primary", "targetWeight": "7082658.175756902" } }, { "key": "geid_107_7906", "source": "PeoplesRepublicofChinaChina", "target": "GermanyZollverein", "attributes": { "weight": 2919831.228343476, "sourceWeight": "2919831.228343476", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7907", "source": "Netherlands", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 3745649.172568249, "sourceWeight": "3745649.172568249", "direction": "Imp", "source_type": "primary", "targetWeight": "3745649.172568249" } }, { "key": "geid_107_7908", "source": "PeoplesRepublicofChinaChina", "target": "Netherlands", "attributes": { "weight": 2471646.942832723, "sourceWeight": "2471646.942832723", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7909", "source": "Belgium_Luxemburg", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 3346264.4375602184, "sourceWeight": "3346264.4375602184", "direction": "Imp", "source_type": "primary", "targetWeight": "3346264.4375602184" } }, { "key": "geid_107_7910", "source": "PeoplesRepublicofChinaChina", "target": "Belgium_Luxemburg", "attributes": { "weight": 626146.3554967914, "sourceWeight": "626146.3554967914", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7911", "source": "France", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1933253.2945950315, "sourceWeight": "1933253.2945950315", "direction": "Imp", "source_type": "primary", "targetWeight": "1933253.2945950315" } }, { "key": "geid_107_7912", "source": "PeoplesRepublicofChinaChina", "target": "France", "attributes": { "weight": 8255885.172456911, "sourceWeight": "8255885.172456911", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7913", "source": "Gibraltar_Spain", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 5889.272654064374, "sourceWeight": "5889.272654064374", "direction": "Imp", "source_type": "primary", "targetWeight": "5889.272654064374" } }, { "key": "geid_107_7914", "source": "PeoplesRepublicofChinaChina", "target": "Gibraltar_Spain", "attributes": { "weight": 504544.7474690035, "sourceWeight": "504544.7474690035", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7915", "source": "Portugal", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1284.80572868985, "sourceWeight": "1284.80572868985", "direction": "Imp", "source_type": "primary", "targetWeight": "1284.80572868985" } }, { "key": "geid_107_7916", "source": "Switzerland", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 648780.7586133913, "sourceWeight": "648780.7586133913", "direction": "Imp", "source_type": "primary", "targetWeight": "648780.7586133913" } }, { "key": "geid_107_7917", "source": "PeoplesRepublicofChinaChina", "target": "Switzerland", "attributes": { "weight": 11025.566402158194, "sourceWeight": "11025.566402158194", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7918", "source": "Italy", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1148390.9586883928, "sourceWeight": "1148390.9586883928", "direction": "Imp", "source_type": "primary", "targetWeight": "1148390.9586883928" } }, { "key": "geid_107_7919", "source": "PeoplesRepublicofChinaChina", "target": "Italy", "attributes": { "weight": 1638167.3970482936, "sourceWeight": "1638167.3970482936", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7920", "source": "AustriaHungaryAustrianEmpire", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 66793.23825646171, "sourceWeight": "66793.23825646171", "direction": "Imp", "source_type": "primary", "targetWeight": "66793.23825646171" } }, { "key": "geid_107_7921", "source": "PeoplesRepublicofChinaChina", "target": "AustriaHungaryAustrianEmpire", "attributes": { "weight": 16023.457025303378, "sourceWeight": "16023.457025303378", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7922", "source": "EuropeanRussia", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 16167.169264833377, "sourceWeight": "16167.169264833377", "direction": "Imp", "source_type": "primary", "targetWeight": "16167.169264833377" } }, { "key": "geid_107_7923", "source": "PeoplesRepublicofChinaChina", "target": "EuropeanRussia", "attributes": { "weight": 1432.1794265518233, "sourceWeight": "1432.1794265518233", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7924", "source": "RussiaandSiberia", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 692892.7270866038, "sourceWeight": "692892.7270866038", "direction": "Imp", "source_type": "primary", "targetWeight": "692892.7270866038" } }, { "key": "geid_107_7925", "source": "PeoplesRepublicofChinaChina", "target": "RussiaandSiberia", "attributes": { "weight": 59722.962217418964, "sourceWeight": "59722.962217418964", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7926", "source": "RussiaAmurRiver", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 7351.476038938388, "sourceWeight": "7351.476038938388", "direction": "Imp", "source_type": "primary", "targetWeight": "7351.476038938388" } }, { "key": "geid_107_7927", "source": "PeoplesRepublicofChinaChina", "target": "RussiaAmurRiver", "attributes": { "weight": 1145.4872391582203, "sourceWeight": "1145.4872391582203", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7928", "source": "RussiaPacificPorts", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1132357.4326526765, "sourceWeight": "1132357.4326526765", "direction": "Imp", "source_type": "primary", "targetWeight": "1132357.4326526765" } }, { "key": "geid_107_7929", "source": "PeoplesRepublicofChinaChina", "target": "RussiaPacificPorts", "attributes": { "weight": 8424755.109112991, "sourceWeight": "8424755.109112991", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7930", "source": "KoreaChosen", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 2106361.1861974546, "sourceWeight": "2106361.1861974546", "direction": "Imp", "source_type": "primary", "targetWeight": "2106361.1861974546" } }, { "key": "geid_107_7931", "source": "PeoplesRepublicofChinaChina", "target": "KoreaChosen", "attributes": { "weight": 5648759.511445301, "sourceWeight": "5648759.511445301", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7932", "source": "Japan_RepublicofChinaTaiwanFormosa", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 42978538.96556023, "sourceWeight": "42978538.96556023", "direction": "Imp", "source_type": "primary", "targetWeight": "42978538.96556023" } }, { "key": "geid_107_7933", "source": "PeoplesRepublicofChinaChina", "target": "Japan_RepublicofChinaTaiwanFormosa", "attributes": { "weight": 36829863.52226921, "sourceWeight": "36829863.52226921", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7934", "source": "Philippines", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 607491.2252953813, "sourceWeight": "607491.2252953813", "direction": "Imp", "source_type": "primary", "targetWeight": "607491.2252953813" } }, { "key": "geid_107_7935", "source": "PeoplesRepublicofChinaChina", "target": "Philippines", "attributes": { "weight": 784250.3231464492, "sourceWeight": "784250.3231464492", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7936", "source": "CanadaProvinceofCanada", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 2851492.8546709213, "sourceWeight": "2851492.8546709213", "direction": "Imp", "source_type": "primary", "targetWeight": "2851492.8546709213" } }, { "key": "geid_107_7937", "source": "PeoplesRepublicofChinaChina", "target": "CanadaProvinceofCanada", "attributes": { "weight": 202694.671799776, "sourceWeight": "202694.671799776", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7938", "source": "HawaiiSandwichIs_UnitedStatesofAmerica", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 34959044.316713504, "sourceWeight": "34959044.316713504", "direction": "Imp", "source_type": "primary", "targetWeight": "34959044.316713504" } }, { "key": "geid_107_7939", "source": "PeoplesRepublicofChinaChina", "target": "HawaiiSandwichIs_UnitedStatesofAmerica", "attributes": { "weight": 18445403.88195663, "sourceWeight": "18445403.88195663", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7940", "source": "CentralAmerica_Mexico_Panama", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 126025.1989115629, "sourceWeight": "126025.1989115629", "direction": "Imp", "source_type": "primary", "targetWeight": "126025.1989115629" } }, { "key": "geid_107_7941", "source": "PeoplesRepublicofChinaChina", "target": "CentralAmerica_Mexico_Panama", "attributes": { "weight": 3268.0346342038342, "sourceWeight": "3268.0346342038342", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7942", "source": "SouthernAmerica", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 223475.27856289723, "sourceWeight": "223475.27856289723", "direction": "Imp", "source_type": "primary", "targetWeight": "223475.27856289723" } }, { "key": "geid_107_7943", "source": "PeoplesRepublicofChinaChina", "target": "SouthernAmerica", "attributes": { "weight": 46978.15805548214, "sourceWeight": "46978.15805548214", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7944", "source": "Australia_NewZealand", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1375452.635687459, "sourceWeight": "1375452.635687459", "direction": "Imp", "source_type": "primary", "targetWeight": "1375452.635687459" } }, { "key": "geid_107_7945", "source": "PeoplesRepublicofChinaChina", "target": "Australia_NewZealand", "attributes": { "weight": 188452.88039881142, "sourceWeight": "188452.88039881142", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7946", "source": "Mauritius_SouthAfrica", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 6189.512237286283, "sourceWeight": "6189.512237286283", "direction": "Imp", "source_type": "primary", "targetWeight": "6189.512237286283" } }, { "key": "geid_107_7947", "source": "PeoplesRepublicofChinaChina", "target": "Mauritius_SouthAfrica", "attributes": { "weight": 22507.35051248041, "sourceWeight": "22507.35051248041", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_7948", "source": "Australia", "target": "Australia", "attributes": { "weight": 111682, "sourceWeight": "111682", "direction": "Imp", "source_type": "primary", "targetWeight": "111682" } }, { "key": "geid_107_7949", "source": "UnitedKingdom", "target": "Australia", "attributes": { "weight": 69047807, "sourceWeight": "69047807", "direction": "Imp", "source_type": "primary", "targetWeight": "69047807" } }, { "key": "geid_107_7950", "source": "Aden", "target": "Australia", "attributes": { "weight": 2805, "sourceWeight": "2805", "direction": "Imp", "source_type": "primary", "targetWeight": "2805" } }, { "key": "geid_107_7951", "source": "BritishEastAfrica", "target": "Australia", "attributes": { "weight": 12910, "sourceWeight": "12910", "direction": "Imp", "source_type": "primary", "targetWeight": "12910" } }, { "key": "geid_107_7952", "source": "BritishWestAfrica", "target": "Australia", "attributes": { "weight": 77673, "sourceWeight": "77673", "direction": "Imp", "source_type": "primary", "targetWeight": "77673" } }, { "key": "geid_107_7953", "source": "BritishBorneo", "target": "Australia", "attributes": { "weight": 26066, "sourceWeight": "26066", "direction": "Imp", "source_type": "primary", "targetWeight": "26066" } }, { "key": "geid_107_7954", "source": "CanadaProvinceofCanada", "target": "Australia", "attributes": { "weight": 3384712, "sourceWeight": "3384712", "direction": "Imp", "source_type": "primary", "targetWeight": "3384712" } }, { "key": "geid_107_7955", "source": "SriLankaCeylon", "target": "Australia", "attributes": { "weight": 1587738, "sourceWeight": "1587738", "direction": "Imp", "source_type": "primary", "targetWeight": "1587738" } }, { "key": "geid_107_7956", "source": "ChannelIs", "target": "Australia", "attributes": { "weight": 191, "sourceWeight": "191", "direction": "Imp", "source_type": "primary", "targetWeight": "191" } }, { "key": "geid_107_7957", "source": "Cyprus", "target": "Australia", "attributes": { "weight": 209, "sourceWeight": "209", "direction": "Imp", "source_type": "primary", "targetWeight": "209" } }, { "key": "geid_107_7958", "source": "Gibraltar", "target": "Australia", "attributes": { "weight": 115, "sourceWeight": "115", "direction": "Imp", "source_type": "primary", "targetWeight": "115" } }, { "key": "geid_107_7959", "source": "GuyanaBritishGuiana", "target": "Australia", "attributes": { "weight": 17789, "sourceWeight": "17789", "direction": "Imp", "source_type": "primary", "targetWeight": "17789" } }, { "key": "geid_107_7960", "source": "BelizeBritishHonduras", "target": "Australia", "attributes": { "weight": 479, "sourceWeight": "479", "direction": "Imp", "source_type": "primary", "targetWeight": "479" } }, { "key": "geid_107_7961", "source": "HongKong", "target": "Australia", "attributes": { "weight": 3742, "sourceWeight": "3742", "direction": "Imp", "source_type": "primary", "targetWeight": "3742" } }, { "key": "geid_107_7962", "source": "India", "target": "Australia", "attributes": { "weight": 6423364, "sourceWeight": "6423364", "direction": "Imp", "source_type": "primary", "targetWeight": "6423364" } }, { "key": "geid_107_7963", "source": "IraqMesopotamia", "target": "Australia", "attributes": { "weight": 88870, "sourceWeight": "88870", "direction": "Imp", "source_type": "primary", "targetWeight": "88870" } }, { "key": "geid_107_7964", "source": "Ireland", "target": "Australia", "attributes": { "weight": 55055, "sourceWeight": "55055", "direction": "Imp", "source_type": "primary", "targetWeight": "55055" } }, { "key": "geid_107_7965", "source": "MalaysiaBritishMalaya", "target": "Australia", "attributes": { "weight": 612314, "sourceWeight": "612314", "direction": "Imp", "source_type": "primary", "targetWeight": "612314" } }, { "key": "geid_107_7966", "source": "Malta", "target": "Australia", "attributes": { "weight": 875, "sourceWeight": "875", "direction": "Imp", "source_type": "primary", "targetWeight": "875" } }, { "key": "geid_107_7967", "source": "Mauritius", "target": "Australia", "attributes": { "weight": 229, "sourceWeight": "229", "direction": "Imp", "source_type": "primary", "targetWeight": "229" } }, { "key": "geid_107_7968", "source": "NewfoundlandandLabradorNewfoundland", "target": "Australia", "attributes": { "weight": 2870, "sourceWeight": "2870", "direction": "Imp", "source_type": "primary", "targetWeight": "2870" } }, { "key": "geid_107_7969", "source": "NewZealand", "target": "Australia", "attributes": { "weight": 2196566, "sourceWeight": "2196566", "direction": "Imp", "source_type": "primary", "targetWeight": "2196566" } }, { "key": "geid_107_7970", "source": "Fiji", "target": "Australia", "attributes": { "weight": 26241, "sourceWeight": "26241", "direction": "Imp", "source_type": "primary", "targetWeight": "26241" } }, { "key": "geid_107_7971", "source": "GilbertandElliceIs", "target": "Australia", "attributes": { "weight": 465001, "sourceWeight": "465001", "direction": "Imp", "source_type": "primary", "targetWeight": "465001" } }, { "key": "geid_107_7972", "source": "Nauru", "target": "Australia", "attributes": { "weight": 391954, "sourceWeight": "391954", "direction": "Imp", "source_type": "primary", "targetWeight": "391954" } }, { "key": "geid_107_7973", "source": "NorfolkI", "target": "Australia", "attributes": { "weight": 3991, "sourceWeight": "3991", "direction": "Imp", "source_type": "primary", "targetWeight": "3991" } }, { "key": "geid_107_7974", "source": "Samoa", "target": "Australia", "attributes": { "weight": 5721, "sourceWeight": "5721", "direction": "Imp", "source_type": "primary", "targetWeight": "5721" } }, { "key": "geid_107_7975", "source": "SolomonIslandsBritishSolomonIslandsProtectorate", "target": "Australia", "attributes": { "weight": 266658, "sourceWeight": "266658", "direction": "Imp", "source_type": "primary", "targetWeight": "266658" } }, { "key": "geid_107_7976", "source": "NewGuineaGermanNewGuineaKaiserWilhelmsland", "target": "Australia", "attributes": { "weight": 261032, "sourceWeight": "261032", "direction": "Imp", "source_type": "primary", "targetWeight": "261032" } }, { "key": "geid_107_7977", "source": "TongaHaʻapai", "target": "Australia", "attributes": { "weight": 163, "sourceWeight": "163", "direction": "Imp", "source_type": "primary", "targetWeight": "163" } }, { "key": "geid_107_7978", "source": "Palestine", "target": "Australia", "attributes": { "weight": 918, "sourceWeight": "918", "direction": "Imp", "source_type": "primary", "targetWeight": "918" } }, { "key": "geid_107_7979", "source": "PapuaBritishNewGuinea", "target": "Australia", "attributes": { "weight": 295199, "sourceWeight": "295199", "direction": "Imp", "source_type": "primary", "targetWeight": "295199" } }, { "key": "geid_107_7980", "source": "StHelena", "target": "Australia", "attributes": { "weight": 124, "sourceWeight": "124", "direction": "Imp", "source_type": "primary", "targetWeight": "124" } }, { "key": "geid_107_7981", "source": "Seychelles", "target": "Australia", "attributes": { "weight": 12, "sourceWeight": "12", "direction": "Imp", "source_type": "primary", "targetWeight": "12" } }, { "key": "geid_107_7982", "source": "SouthAfrica", "target": "Australia", "attributes": { "weight": 5197215, "sourceWeight": "5197215", "direction": "Imp", "source_type": "primary", "targetWeight": "5197215" } }, { "key": "geid_107_7983", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Australia", "attributes": { "weight": 22312, "sourceWeight": "22312", "direction": "Imp", "source_type": "primary", "targetWeight": "22312" } }, { "key": "geid_107_7984", "source": "WestIndies", "target": "Australia", "attributes": { "weight": 102091, "sourceWeight": "102091", "direction": "Imp", "source_type": "primary", "targetWeight": "102091" } }, { "key": "geid_107_7985", "source": "EthiopiaAbyssinia", "target": "Australia", "attributes": { "weight": 3064, "sourceWeight": "3064", "direction": "Imp", "source_type": "primary", "targetWeight": "3064" } }, { "key": "geid_107_7986", "source": "FrenchWestAfrica", "target": "Australia", "attributes": { "weight": 310, "sourceWeight": "310", "direction": "Imp", "source_type": "primary", "targetWeight": "310" } }, { "key": "geid_107_7987", "source": "MozambiquePortugueseEastAfrica", "target": "Australia", "attributes": { "weight": 476, "sourceWeight": "476", "direction": "Imp", "source_type": "primary", "targetWeight": "476" } }, { "key": "geid_107_7988", "source": "Alaska", "target": "Australia", "attributes": { "weight": 146585, "sourceWeight": "146585", "direction": "Imp", "source_type": "primary", "targetWeight": "146585" } }, { "key": "geid_107_7989", "source": "AlgeriaRegencyofAlgiers", "target": "Australia", "attributes": { "weight": 2189, "sourceWeight": "2189", "direction": "Imp", "source_type": "primary", "targetWeight": "2189" } }, { "key": "geid_107_7990", "source": "Arabia", "target": "Australia", "attributes": { "weight": 19865, "sourceWeight": "19865", "direction": "Imp", "source_type": "primary", "targetWeight": "19865" } }, { "key": "geid_107_7991", "source": "ArgentinaLaPlata", "target": "Australia", "attributes": { "weight": 18316, "sourceWeight": "18316", "direction": "Imp", "source_type": "primary", "targetWeight": "18316" } }, { "key": "geid_107_7992", "source": "Armenia", "target": "Australia", "attributes": { "weight": 340, "sourceWeight": "340", "direction": "Imp", "source_type": "primary", "targetWeight": "340" } }, { "key": "geid_107_7993", "source": "Austria", "target": "Australia", "attributes": { "weight": 86150, "sourceWeight": "86150", "direction": "Imp", "source_type": "primary", "targetWeight": "86150" } }, { "key": "geid_107_7994", "source": "Belgium", "target": "Australia", "attributes": { "weight": 901324, "sourceWeight": "901324", "direction": "Imp", "source_type": "primary", "targetWeight": "901324" } }, { "key": "geid_107_7995", "source": "Bolivia", "target": "Australia", "attributes": { "weight": 54, "sourceWeight": "54", "direction": "Imp", "source_type": "primary", "targetWeight": "54" } }, { "key": "geid_107_7996", "source": "Brazil", "target": "Australia", "attributes": { "weight": 74609, "sourceWeight": "74609", "direction": "Imp", "source_type": "primary", "targetWeight": "74609" } }, { "key": "geid_107_7997", "source": "Bulgaria", "target": "Australia", "attributes": { "weight": 68, "sourceWeight": "68", "direction": "Imp", "source_type": "primary", "targetWeight": "68" } }, { "key": "geid_107_7998", "source": "CanaryIs", "target": "Australia", "attributes": { "weight": 2080, "sourceWeight": "2080", "direction": "Imp", "source_type": "primary", "targetWeight": "2080" } }, { "key": "geid_107_7999", "source": "Chile", "target": "Australia", "attributes": { "weight": 123147, "sourceWeight": "123147", "direction": "Imp", "source_type": "primary", "targetWeight": "123147" } }, { "key": "geid_107_8000", "source": "PeoplesRepublicofChinaChina", "target": "Australia", "attributes": { "weight": 751960, "sourceWeight": "751960", "direction": "Imp", "source_type": "primary", "targetWeight": "751960" } }, { "key": "geid_107_8001", "source": "ColombiaNewGranadaGranColombia", "target": "Australia", "attributes": { "weight": 2933, "sourceWeight": "2933", "direction": "Imp", "source_type": "primary", "targetWeight": "2933" } }, { "key": "geid_107_8002", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Australia", "attributes": { "weight": 6938, "sourceWeight": "6938", "direction": "Imp", "source_type": "primary", "targetWeight": "6938" } }, { "key": "geid_107_8003", "source": "CostaRica", "target": "Australia", "attributes": { "weight": 599, "sourceWeight": "599", "direction": "Imp", "source_type": "primary", "targetWeight": "599" } }, { "key": "geid_107_8004", "source": "Czechoslovakia", "target": "Australia", "attributes": { "weight": 437257, "sourceWeight": "437257", "direction": "Imp", "source_type": "primary", "targetWeight": "437257" } }, { "key": "geid_107_8005", "source": "DanzigFreeCityofDanzig", "target": "Australia", "attributes": { "weight": 14258, "sourceWeight": "14258", "direction": "Imp", "source_type": "primary", "targetWeight": "14258" } }, { "key": "geid_107_8006", "source": "Denmark", "target": "Australia", "attributes": { "weight": 85644, "sourceWeight": "85644", "direction": "Imp", "source_type": "primary", "targetWeight": "85644" } }, { "key": "geid_107_8007", "source": "Ecuador", "target": "Australia", "attributes": { "weight": 19678, "sourceWeight": "19678", "direction": "Imp", "source_type": "primary", "targetWeight": "19678" } }, { "key": "geid_107_8008", "source": "EgyptArabRepublicEgypt", "target": "Australia", "attributes": { "weight": 13777, "sourceWeight": "13777", "direction": "Imp", "source_type": "primary", "targetWeight": "13777" } }, { "key": "geid_107_8009", "source": "Estonia", "target": "Australia", "attributes": { "weight": 3971, "sourceWeight": "3971", "direction": "Imp", "source_type": "primary", "targetWeight": "3971" } }, { "key": "geid_107_8010", "source": "Finland", "target": "Australia", "attributes": { "weight": 73644, "sourceWeight": "73644", "direction": "Imp", "source_type": "primary", "targetWeight": "73644" } }, { "key": "geid_107_8011", "source": "France", "target": "Australia", "attributes": { "weight": 4216457, "sourceWeight": "4216457", "direction": "Imp", "source_type": "primary", "targetWeight": "4216457" } }, { "key": "geid_107_8012", "source": "FrenchIndochina", "target": "Australia", "attributes": { "weight": 666, "sourceWeight": "666", "direction": "Imp", "source_type": "primary", "targetWeight": "666" } }, { "key": "geid_107_8013", "source": "GermanyZollverein", "target": "Australia", "attributes": { "weight": 2259691, "sourceWeight": "2259691", "direction": "Imp", "source_type": "primary", "targetWeight": "2259691" } }, { "key": "geid_107_8014", "source": "Greece", "target": "Australia", "attributes": { "weight": 7550, "sourceWeight": "7550", "direction": "Imp", "source_type": "primary", "targetWeight": "7550" } }, { "key": "geid_107_8015", "source": "Greenland", "target": "Australia", "attributes": { "weight": 149, "sourceWeight": "149", "direction": "Imp", "source_type": "primary", "targetWeight": "149" } }, { "key": "geid_107_8016", "source": "Guatemala", "target": "Australia", "attributes": { "weight": 1735, "sourceWeight": "1735", "direction": "Imp", "source_type": "primary", "targetWeight": "1735" } }, { "key": "geid_107_8017", "source": "Hungary", "target": "Australia", "attributes": { "weight": 7807, "sourceWeight": "7807", "direction": "Imp", "source_type": "primary", "targetWeight": "7807" } }, { "key": "geid_107_8018", "source": "Italy", "target": "Australia", "attributes": { "weight": 1506383, "sourceWeight": "1506383", "direction": "Imp", "source_type": "primary", "targetWeight": "1506383" } }, { "key": "geid_107_8019", "source": "Japan", "target": "Australia", "attributes": { "weight": 4146234, "sourceWeight": "4146234", "direction": "Imp", "source_type": "primary", "targetWeight": "4146234" } }, { "key": "geid_107_8020", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Australia", "attributes": { "weight": 7835, "sourceWeight": "7835", "direction": "Imp", "source_type": "primary", "targetWeight": "7835" } }, { "key": "geid_107_8021", "source": "Latvia", "target": "Australia", "attributes": { "weight": 2075, "sourceWeight": "2075", "direction": "Imp", "source_type": "primary", "targetWeight": "2075" } }, { "key": "geid_107_8022", "source": "Liberia", "target": "Australia", "attributes": { "weight": 108, "sourceWeight": "108", "direction": "Imp", "source_type": "primary", "targetWeight": "108" } }, { "key": "geid_107_8023", "source": "Lithuania", "target": "Australia", "attributes": { "weight": 192, "sourceWeight": "192", "direction": "Imp", "source_type": "primary", "targetWeight": "192" } }, { "key": "geid_107_8024", "source": "Luxemburg", "target": "Australia", "attributes": { "weight": 7877, "sourceWeight": "7877", "direction": "Imp", "source_type": "primary", "targetWeight": "7877" } }, { "key": "geid_107_8025", "source": "MadagascarMalagasyRepublic", "target": "Australia", "attributes": { "weight": 5023, "sourceWeight": "5023", "direction": "Imp", "source_type": "primary", "targetWeight": "5023" } }, { "key": "geid_107_8026", "source": "MadeiraIsles", "target": "Australia", "attributes": { "weight": 14631, "sourceWeight": "14631", "direction": "Imp", "source_type": "primary", "targetWeight": "14631" } }, { "key": "geid_107_8027", "source": "Mexico", "target": "Australia", "attributes": { "weight": 37614, "sourceWeight": "37614", "direction": "Imp", "source_type": "primary", "targetWeight": "37614" } }, { "key": "geid_107_8028", "source": "Morocco", "target": "Australia", "attributes": { "weight": 8669, "sourceWeight": "8669", "direction": "Imp", "source_type": "primary", "targetWeight": "8669" } }, { "key": "geid_107_8029", "source": "Netherlands", "target": "Australia", "attributes": { "weight": 705880, "sourceWeight": "705880", "direction": "Imp", "source_type": "primary", "targetWeight": "705880" } }, { "key": "geid_107_8030", "source": "IndonesiaDutchEastIndies", "target": "Australia", "attributes": { "weight": 5640881, "sourceWeight": "5640881", "direction": "Imp", "source_type": "primary", "targetWeight": "5640881" } }, { "key": "geid_107_8031", "source": "Nicaragua", "target": "Australia", "attributes": { "weight": 25, "sourceWeight": "25", "direction": "Imp", "source_type": "primary", "targetWeight": "25" } }, { "key": "geid_107_8032", "source": "Norway", "target": "Australia", "attributes": { "weight": 1458112, "sourceWeight": "1458112", "direction": "Imp", "source_type": "primary", "targetWeight": "1458112" } }, { "key": "geid_107_8033", "source": "HawaiiSandwichIs", "target": "Australia", "attributes": { "weight": 1879, "sourceWeight": "1879", "direction": "Imp", "source_type": "primary", "targetWeight": "1879" } }, { "key": "geid_107_8034", "source": "NewCaledoniaandDependencies", "target": "Australia", "attributes": { "weight": 71070, "sourceWeight": "71070", "direction": "Imp", "source_type": "primary", "targetWeight": "71070" } }, { "key": "geid_107_8035", "source": "VanuatuNewHebrides", "target": "Australia", "attributes": { "weight": 32205, "sourceWeight": "32205", "direction": "Imp", "source_type": "primary", "targetWeight": "32205" } }, { "key": "geid_107_8036", "source": "AmericanSamoa", "target": "Australia", "attributes": { "weight": 17, "sourceWeight": "17", "direction": "Imp", "source_type": "primary", "targetWeight": "17" } }, { "key": "geid_107_8037", "source": "SocietyIs", "target": "Australia", "attributes": { "weight": 22228, "sourceWeight": "22228", "direction": "Imp", "source_type": "primary", "targetWeight": "22228" } }, { "key": "geid_107_8038", "source": "Oceaniaother", "target": "Australia", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Imp", "source_type": "primary", "targetWeight": "3" } }, { "key": "geid_107_8039", "source": "Panama", "target": "Australia", "attributes": { "weight": 11, "sourceWeight": "11", "direction": "Imp", "source_type": "primary", "targetWeight": "11" } }, { "key": "geid_107_8040", "source": "Paraguay", "target": "Australia", "attributes": { "weight": 2402, "sourceWeight": "2402", "direction": "Imp", "source_type": "primary", "targetWeight": "2402" } }, { "key": "geid_107_8041", "source": "IranPersia", "target": "Australia", "attributes": { "weight": 128772, "sourceWeight": "128772", "direction": "Imp", "source_type": "primary", "targetWeight": "128772" } }, { "key": "geid_107_8042", "source": "Peru", "target": "Australia", "attributes": { "weight": 333, "sourceWeight": "333", "direction": "Imp", "source_type": "primary", "targetWeight": "333" } }, { "key": "geid_107_8043", "source": "Philippines", "target": "Australia", "attributes": { "weight": 249168, "sourceWeight": "249168", "direction": "Imp", "source_type": "primary", "targetWeight": "249168" } }, { "key": "geid_107_8044", "source": "Poland", "target": "Australia", "attributes": { "weight": 10316, "sourceWeight": "10316", "direction": "Imp", "source_type": "primary", "targetWeight": "10316" } }, { "key": "geid_107_8045", "source": "Portugal", "target": "Australia", "attributes": { "weight": 50805, "sourceWeight": "50805", "direction": "Imp", "source_type": "primary", "targetWeight": "50805" } }, { "key": "geid_107_8046", "source": "ReunionBourbonI", "target": "Australia", "attributes": { "weight": 4205, "sourceWeight": "4205", "direction": "Imp", "source_type": "primary", "targetWeight": "4205" } }, { "key": "geid_107_8047", "source": "Romania", "target": "Australia", "attributes": { "weight": 1537, "sourceWeight": "1537", "direction": "Imp", "source_type": "primary", "targetWeight": "1537" } }, { "key": "geid_107_8048", "source": "RussiaUSSR", "target": "Australia", "attributes": { "weight": 35418, "sourceWeight": "35418", "direction": "Imp", "source_type": "primary", "targetWeight": "35418" } }, { "key": "geid_107_8049", "source": "ElSalvador", "target": "Australia", "attributes": { "weight": 58, "sourceWeight": "58", "direction": "Imp", "source_type": "primary", "targetWeight": "58" } }, { "key": "geid_107_8050", "source": "StThomas", "target": "Australia", "attributes": { "weight": 7764, "sourceWeight": "7764", "direction": "Imp", "source_type": "primary", "targetWeight": "7764" } }, { "key": "geid_107_8051", "source": "KingdomofSerbia", "target": "Australia", "attributes": { "weight": 118, "sourceWeight": "118", "direction": "Imp", "source_type": "primary", "targetWeight": "118" } }, { "key": "geid_107_8052", "source": "ThailandSiam", "target": "Australia", "attributes": { "weight": 7318, "sourceWeight": "7318", "direction": "Imp", "source_type": "primary", "targetWeight": "7318" } }, { "key": "geid_107_8053", "source": "Spain", "target": "Australia", "attributes": { "weight": 156459, "sourceWeight": "156459", "direction": "Imp", "source_type": "primary", "targetWeight": "156459" } }, { "key": "geid_107_8054", "source": "Sweden", "target": "Australia", "attributes": { "weight": 1638004, "sourceWeight": "1638004", "direction": "Imp", "source_type": "primary", "targetWeight": "1638004" } }, { "key": "geid_107_8055", "source": "Switzerland", "target": "Australia", "attributes": { "weight": 2327565, "sourceWeight": "2327565", "direction": "Imp", "source_type": "primary", "targetWeight": "2327565" } }, { "key": "geid_107_8056", "source": "Syria", "target": "Australia", "attributes": { "weight": 3398, "sourceWeight": "3398", "direction": "Imp", "source_type": "primary", "targetWeight": "3398" } }, { "key": "geid_107_8057", "source": "TripolitaniaRegencyofTripoli", "target": "Australia", "attributes": { "weight": 21, "sourceWeight": "21", "direction": "Imp", "source_type": "primary", "targetWeight": "21" } }, { "key": "geid_107_8058", "source": "TunisiaRegencyofTunis", "target": "Australia", "attributes": { "weight": 35, "sourceWeight": "35", "direction": "Imp", "source_type": "primary", "targetWeight": "35" } }, { "key": "geid_107_8059", "source": "TurkeyOttomanEmpire", "target": "Australia", "attributes": { "weight": 39976, "sourceWeight": "39976", "direction": "Imp", "source_type": "primary", "targetWeight": "39976" } }, { "key": "geid_107_8060", "source": "UnitedStatesofAmerica", "target": "Australia", "attributes": { "weight": 38728814, "sourceWeight": "38728814", "direction": "Imp", "source_type": "primary", "targetWeight": "38728814" } }, { "key": "geid_107_8061", "source": "Venezuela", "target": "Australia", "attributes": { "weight": 22483, "sourceWeight": "22483", "direction": "Imp", "source_type": "primary", "targetWeight": "22483" } }, { "key": "geid_107_8062", "source": "Cuba", "target": "Australia", "attributes": { "weight": 78472, "sourceWeight": "78472", "direction": "Imp", "source_type": "primary", "targetWeight": "78472" } }, { "key": "geid_107_8063", "source": "WestIndiesother", "target": "Australia", "attributes": { "weight": 4919, "sourceWeight": "4919", "direction": "Imp", "source_type": "primary", "targetWeight": "4919" } }, { "key": "geid_107_8064", "source": "Australia", "target": "UnitedKingdom", "attributes": { "weight": 69147229, "sourceWeight": "69147229", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8065", "source": "Australia", "target": "Aden", "attributes": { "weight": 109, "sourceWeight": "109", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8066", "source": "Australia", "target": "BritishEastAfrica", "attributes": { "weight": 2189, "sourceWeight": "2189", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8067", "source": "Australia", "target": "BritishWestAfrica", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8068", "source": "Australia", "target": "Bermuda", "attributes": { "weight": 2, "sourceWeight": "2", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8069", "source": "Australia", "target": "BritishBorneo", "attributes": { "weight": 24126, "sourceWeight": "24126", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8070", "source": "Australia", "target": "CanadaProvinceofCanada", "attributes": { "weight": 716953, "sourceWeight": "716953", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8071", "source": "Australia", "target": "SriLankaCeylon", "attributes": { "weight": 831911, "sourceWeight": "831911", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8072", "source": "Australia", "target": "CocosKeelingIs", "attributes": { "weight": 852, "sourceWeight": "852", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8073", "source": "Australia", "target": "Cyprus", "attributes": { "weight": 52, "sourceWeight": "52", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8074", "source": "Australia", "target": "FalklandIs", "attributes": { "weight": 114, "sourceWeight": "114", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8075", "source": "Australia", "target": "Gibraltar", "attributes": { "weight": 34280, "sourceWeight": "34280", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8076", "source": "Australia", "target": "BelizeBritishHonduras", "attributes": { "weight": 643, "sourceWeight": "643", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8077", "source": "Australia", "target": "HongKong", "attributes": { "weight": 635174, "sourceWeight": "635174", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8078", "source": "Australia", "target": "India", "attributes": { "weight": 2002562, "sourceWeight": "2002562", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8079", "source": "Australia", "target": "IraqMesopotamia", "attributes": { "weight": 608, "sourceWeight": "608", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8080", "source": "Australia", "target": "Ireland", "attributes": { "weight": 666867, "sourceWeight": "666867", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8081", "source": "Australia", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 1528303, "sourceWeight": "1528303", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8082", "source": "Australia", "target": "Malta", "attributes": { "weight": 247868, "sourceWeight": "247868", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8083", "source": "Australia", "target": "Mauritius", "attributes": { "weight": 123299, "sourceWeight": "123299", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8084", "source": "Australia", "target": "NewZealand", "attributes": { "weight": 5812565, "sourceWeight": "5812565", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8085", "source": "Australia", "target": "Fiji", "attributes": { "weight": 435072, "sourceWeight": "435072", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8086", "source": "Australia", "target": "GilbertandElliceIs", "attributes": { "weight": 98454, "sourceWeight": "98454", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8087", "source": "Australia", "target": "Nauru", "attributes": { "weight": 51099, "sourceWeight": "51099", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8088", "source": "Australia", "target": "NorfolkI", "attributes": { "weight": 13760, "sourceWeight": "13760", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8089", "source": "Australia", "target": "Samoa", "attributes": { "weight": 76503, "sourceWeight": "76503", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8090", "source": "Australia", "target": "SolomonIslandsBritishSolomonIslandsProtectorate", "attributes": { "weight": 186975, "sourceWeight": "186975", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8091", "source": "Australia", "target": "NewGuineaGermanNewGuineaKaiserWilhelmsland", "attributes": { "weight": 340895, "sourceWeight": "340895", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8092", "source": "Australia", "target": "TongaHaʻapai", "attributes": { "weight": 59063, "sourceWeight": "59063", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8093", "source": "Australia", "target": "Palestine", "attributes": { "weight": 1845, "sourceWeight": "1845", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8094", "source": "Australia", "target": "PapuaBritishNewGuinea", "attributes": { "weight": 259302, "sourceWeight": "259302", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8095", "source": "Australia", "target": "ZimbabweRhodesiaSouthernRhodesia", "attributes": { "weight": 545, "sourceWeight": "545", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8096", "source": "Australia", "target": "SouthAfrica", "attributes": { "weight": 2657232, "sourceWeight": "2657232", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8097", "source": "Australia", "target": "SudanAngloEgyptianSudanMahdistState", "attributes": { "weight": 2655, "sourceWeight": "2655", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8098", "source": "Australia", "target": "TanzaniaTanganyika", "attributes": { "weight": 177, "sourceWeight": "177", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8099", "source": "Australia", "target": "WestIndies", "attributes": { "weight": 945, "sourceWeight": "945", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8100", "source": "Australia", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 53531, "sourceWeight": "53531", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8101", "source": "Australia", "target": "ArgentinaLaPlata", "attributes": { "weight": 9739, "sourceWeight": "9739", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8102", "source": "Australia", "target": "Armenia", "attributes": { "weight": 1876, "sourceWeight": "1876", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8103", "source": "Australia", "target": "Austria", "attributes": { "weight": 10863, "sourceWeight": "10863", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8104", "source": "Australia", "target": "Belgium", "attributes": { "weight": 7182703, "sourceWeight": "7182703", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8105", "source": "Australia", "target": "Brazil", "attributes": { "weight": 63, "sourceWeight": "63", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8106", "source": "Australia", "target": "Bulgaria", "attributes": { "weight": 602, "sourceWeight": "602", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8107", "source": "Australia", "target": "CanaryIs", "attributes": { "weight": 139333, "sourceWeight": "139333", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8108", "source": "Australia", "target": "Chile", "attributes": { "weight": 36581, "sourceWeight": "36581", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8109", "source": "Australia", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 524812, "sourceWeight": "524812", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8110", "source": "Australia", "target": "Czechoslovakia", "attributes": { "weight": 38178, "sourceWeight": "38178", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8111", "source": "Australia", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 3655, "sourceWeight": "3655", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8112", "source": "Australia", "target": "Denmark", "attributes": { "weight": 19202, "sourceWeight": "19202", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8113", "source": "Australia", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 3008741, "sourceWeight": "3008741", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8114", "source": "Australia", "target": "Finland", "attributes": { "weight": 122278, "sourceWeight": "122278", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8115", "source": "Australia", "target": "France", "attributes": { "weight": 19932721, "sourceWeight": "19932721", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8116", "source": "Australia", "target": "FrenchIndochina", "attributes": { "weight": 26645, "sourceWeight": "26645", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8117", "source": "Australia", "target": "GermanyZollverein", "attributes": { "weight": 7372049, "sourceWeight": "7372049", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8118", "source": "Australia", "target": "Greece", "attributes": { "weight": 36696, "sourceWeight": "36696", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8119", "source": "Australia", "target": "Hungary", "attributes": { "weight": 3, "sourceWeight": "3", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8120", "source": "Australia", "target": "Italy", "attributes": { "weight": 10014185, "sourceWeight": "10014185", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8121", "source": "Australia", "target": "Japan", "attributes": { "weight": 11646516, "sourceWeight": "11646516", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8122", "source": "Australia", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 466, "sourceWeight": "466", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8123", "source": "Australia", "target": "KoreaChosen", "attributes": { "weight": 2049, "sourceWeight": "2049", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8124", "source": "Australia", "target": "MadagascarMalagasyRepublic", "attributes": { "weight": 2864, "sourceWeight": "2864", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8125", "source": "Australia", "target": "MadeiraIsles", "attributes": { "weight": 33, "sourceWeight": "33", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8126", "source": "Australia", "target": "Mexico", "attributes": { "weight": 98, "sourceWeight": "98", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8127", "source": "Australia", "target": "Morocco", "attributes": { "weight": 210, "sourceWeight": "210", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8128", "source": "Australia", "target": "Netherlands", "attributes": { "weight": 1819371, "sourceWeight": "1819371", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8129", "source": "Australia", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 2045882, "sourceWeight": "2045882", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8130", "source": "Australia", "target": "Norway", "attributes": { "weight": 122812, "sourceWeight": "122812", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8131", "source": "Australia", "target": "HawaiiSandwichIs", "attributes": { "weight": 62481, "sourceWeight": "62481", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8132", "source": "Australia", "target": "NewCaledoniaandDependencies", "attributes": { "weight": 219651, "sourceWeight": "219651", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8133", "source": "Australia", "target": "VanuatuNewHebrides", "attributes": { "weight": 94437, "sourceWeight": "94437", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8134", "source": "Australia", "target": "AmericanSamoa", "attributes": { "weight": 15466, "sourceWeight": "15466", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8135", "source": "Australia", "target": "SocietyIs", "attributes": { "weight": 13917, "sourceWeight": "13917", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8136", "source": "Australia", "target": "Oceaniaother", "attributes": { "weight": 1210, "sourceWeight": "1210", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8137", "source": "Australia", "target": "Peru", "attributes": { "weight": 195841, "sourceWeight": "195841", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8138", "source": "Australia", "target": "Philippines", "attributes": { "weight": 529405, "sourceWeight": "529405", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8139", "source": "Australia", "target": "Poland", "attributes": { "weight": 78, "sourceWeight": "78", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8140", "source": "Australia", "target": "Portugal", "attributes": { "weight": 178797, "sourceWeight": "178797", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8141", "source": "Australia", "target": "ReunionBourbonI", "attributes": { "weight": 18761, "sourceWeight": "18761", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8142", "source": "Australia", "target": "Romania", "attributes": { "weight": 53, "sourceWeight": "53", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8143", "source": "Australia", "target": "RussiaUSSR", "attributes": { "weight": 8, "sourceWeight": "8", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8144", "source": "Australia", "target": "ThailandSiam", "attributes": { "weight": 29897, "sourceWeight": "29897", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8145", "source": "Australia", "target": "Spain", "attributes": { "weight": 466517, "sourceWeight": "466517", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8146", "source": "Australia", "target": "Sweden", "attributes": { "weight": 470006, "sourceWeight": "470006", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8147", "source": "Australia", "target": "Switzerland", "attributes": { "weight": 4140, "sourceWeight": "4140", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8148", "source": "Australia", "target": "Syria", "attributes": { "weight": 240, "sourceWeight": "240", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8149", "source": "Australia", "target": "EastTimorPortugueseTimor", "attributes": { "weight": 1953, "sourceWeight": "1953", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8150", "source": "Australia", "target": "TripolitaniaRegencyofTripoli", "attributes": { "weight": 749, "sourceWeight": "749", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8151", "source": "Australia", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 61340, "sourceWeight": "61340", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8152", "source": "Australia", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 375895, "sourceWeight": "375895", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8153", "source": "Australia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 9153279, "sourceWeight": "9153279", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8154", "source": "Australia", "target": "Uruguay", "attributes": { "weight": 44, "sourceWeight": "44", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8155", "source": "Australia", "target": "WestIndiesother", "attributes": { "weight": 1006, "sourceWeight": "1006", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8156", "source": "UnitedKingdom", "target": "Malta", "attributes": { "weight": 1367291, "sourceWeight": "1367291", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1367291" } }, { "key": "geid_107_8157", "source": "Australia", "target": "Malta", "attributes": { "weight": 122705, "sourceWeight": "122705", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "122705" } }, { "key": "geid_107_8158", "source": "India", "target": "Malta", "attributes": { "weight": 8934, "sourceWeight": "8934", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "8934" } }, { "key": "geid_107_8159", "source": "CanadaProvinceofCanada", "target": "Malta", "attributes": { "weight": 100894, "sourceWeight": "100894", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "100894" } }, { "key": "geid_107_8160", "source": "SriLankaCeylon_SriLankaCeylonDependencies", "target": "Malta", "attributes": { "weight": 8429, "sourceWeight": "8429", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "8429" } }, { "key": "geid_107_8161", "source": "Cyprus", "target": "Malta", "attributes": { "weight": 2761, "sourceWeight": "2761", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2761" } }, { "key": "geid_107_8162", "source": "Gibraltar", "target": "Malta", "attributes": { "weight": 3049, "sourceWeight": "3049", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3049" } }, { "key": "geid_107_8163", "source": "NewfoundlandandLabradorNewfoundland", "target": "Malta", "attributes": { "weight": 847, "sourceWeight": "847", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "847" } }, { "key": "geid_107_8164", "source": "SudanAngloEgyptianSudanMahdistState", "target": "Malta", "attributes": { "weight": 7851, "sourceWeight": "7851", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7851" } }, { "key": "geid_107_8165", "source": "BritishColoniesother", "target": "Malta", "attributes": { "weight": 1567, "sourceWeight": "1567", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1567" } }, { "key": "geid_107_8166", "source": "Albania", "target": "Malta", "attributes": { "weight": 2156, "sourceWeight": "2156", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2156" } }, { "key": "geid_107_8167", "source": "ArgentinaLaPlata", "target": "Malta", "attributes": { "weight": 356, "sourceWeight": "356", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "356" } }, { "key": "geid_107_8168", "source": "Austria", "target": "Malta", "attributes": { "weight": 2542, "sourceWeight": "2542", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2542" } }, { "key": "geid_107_8169", "source": "Belgium", "target": "Malta", "attributes": { "weight": 55009, "sourceWeight": "55009", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "55009" } }, { "key": "geid_107_8170", "source": "Brazil", "target": "Malta", "attributes": { "weight": 19867, "sourceWeight": "19867", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "19867" } }, { "key": "geid_107_8171", "source": "PeoplesRepublicofChinaChina", "target": "Malta", "attributes": { "weight": 254, "sourceWeight": "254", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "254" } }, { "key": "geid_107_8172", "source": "Czechoslovakia", "target": "Malta", "attributes": { "weight": 9754, "sourceWeight": "9754", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9754" } }, { "key": "geid_107_8173", "source": "Denmark", "target": "Malta", "attributes": { "weight": 2460, "sourceWeight": "2460", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2460" } }, { "key": "geid_107_8174", "source": "EgyptArabRepublicEgypt", "target": "Malta", "attributes": { "weight": 436528, "sourceWeight": "436528", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "436528" } }, { "key": "geid_107_8175", "source": "France", "target": "Malta", "attributes": { "weight": 98411, "sourceWeight": "98411", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "98411" } }, { "key": "geid_107_8176", "source": "AlgeriaRegencyofAlgiers", "target": "Malta", "attributes": { "weight": 18076, "sourceWeight": "18076", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "18076" } }, { "key": "geid_107_8177", "source": "TunisiaRegencyofTunis", "target": "Malta", "attributes": { "weight": 262255, "sourceWeight": "262255", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "262255" } }, { "key": "geid_107_8178", "source": "FrenchColoniesother", "target": "Malta", "attributes": { "weight": 19325, "sourceWeight": "19325", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "19325" } }, { "key": "geid_107_8179", "source": "GermanyZollverein", "target": "Malta", "attributes": { "weight": 152510, "sourceWeight": "152510", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "152510" } }, { "key": "geid_107_8180", "source": "Greece", "target": "Malta", "attributes": { "weight": 53143, "sourceWeight": "53143", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "53143" } }, { "key": "geid_107_8181", "source": "Crete", "target": "Malta", "attributes": { "weight": 895, "sourceWeight": "895", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "895" } }, { "key": "geid_107_8182", "source": "Italy", "target": "Malta", "attributes": { "weight": 676505, "sourceWeight": "676505", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "676505" } }, { "key": "geid_107_8183", "source": "Libya", "target": "Malta", "attributes": { "weight": 2018, "sourceWeight": "2018", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2018" } }, { "key": "geid_107_8184", "source": "Sardinia", "target": "Malta", "attributes": { "weight": 799, "sourceWeight": "799", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "799" } }, { "key": "geid_107_8185", "source": "Japan", "target": "Malta", "attributes": { "weight": 1182, "sourceWeight": "1182", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1182" } }, { "key": "geid_107_8186", "source": "Mexico", "target": "Malta", "attributes": { "weight": 67893, "sourceWeight": "67893", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "67893" } }, { "key": "geid_107_8187", "source": "Morocco", "target": "Malta", "attributes": { "weight": 45697, "sourceWeight": "45697", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "45697" } }, { "key": "geid_107_8188", "source": "Netherlands", "target": "Malta", "attributes": { "weight": 141039, "sourceWeight": "141039", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "141039" } }, { "key": "geid_107_8189", "source": "DutchColonies", "target": "Malta", "attributes": { "weight": 23968, "sourceWeight": "23968", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "23968" } }, { "key": "geid_107_8190", "source": "Norway", "target": "Malta", "attributes": { "weight": 9631, "sourceWeight": "9631", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9631" } }, { "key": "geid_107_8191", "source": "Portugal", "target": "Malta", "attributes": { "weight": 232, "sourceWeight": "232", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "232" } }, { "key": "geid_107_8192", "source": "Romania", "target": "Malta", "attributes": { "weight": 86265, "sourceWeight": "86265", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "86265" } }, { "key": "geid_107_8193", "source": "RussiaUSSR", "target": "Malta", "attributes": { "weight": 21893, "sourceWeight": "21893", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "21893" } }, { "key": "geid_107_8194", "source": "Spain", "target": "Malta", "attributes": { "weight": 59857, "sourceWeight": "59857", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "59857" } }, { "key": "geid_107_8195", "source": "IzmirSmyrna", "target": "Malta", "attributes": { "weight": 36, "sourceWeight": "36", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "36" } }, { "key": "geid_107_8196", "source": "Sweden", "target": "Malta", "attributes": { "weight": 1527, "sourceWeight": "1527", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1527" } }, { "key": "geid_107_8197", "source": "Switzerland", "target": "Malta", "attributes": { "weight": 28594, "sourceWeight": "28594", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "28594" } }, { "key": "geid_107_8198", "source": "TurkeyOttomanEmpire", "target": "Malta", "attributes": { "weight": 6985, "sourceWeight": "6985", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6985" } }, { "key": "geid_107_8199", "source": "UnitedStatesofAmerica", "target": "Malta", "attributes": { "weight": 320470, "sourceWeight": "320470", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "320470" } }, { "key": "geid_107_8200", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Malta", "attributes": { "weight": 15200, "sourceWeight": "15200", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "15200" } }, { "key": "geid_107_8201", "source": "Othercountries", "target": "Malta", "attributes": { "weight": 111832, "sourceWeight": "111832", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "111832" } }, { "key": "geid_107_8202", "source": "Malta", "target": "UnitedKingdom", "attributes": { "weight": 73532, "sourceWeight": "73532", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8203", "source": "Malta", "target": "Australia", "attributes": { "weight": 5, "sourceWeight": "5", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8204", "source": "Malta", "target": "India", "attributes": { "weight": 175, "sourceWeight": "175", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8205", "source": "Malta", "target": "CanadaProvinceofCanada", "attributes": { "weight": 18, "sourceWeight": "18", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8206", "source": "Malta", "target": "Cyprus", "attributes": { "weight": 152, "sourceWeight": "152", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8207", "source": "Malta", "target": "BritishEastAfrica", "attributes": { "weight": 13, "sourceWeight": "13", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8208", "source": "Malta", "target": "Gibraltar", "attributes": { "weight": 1248, "sourceWeight": "1248", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8209", "source": "Malta", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 110, "sourceWeight": "110", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8210", "source": "Malta", "target": "NewZealand", "attributes": { "weight": 20, "sourceWeight": "20", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8211", "source": "Malta", "target": "BritishColoniesother", "attributes": { "weight": 1462, "sourceWeight": "1462", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8212", "source": "Malta", "target": "ArgentinaLaPlata", "attributes": { "weight": 1011, "sourceWeight": "1011", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8213", "source": "Malta", "target": "Austria", "attributes": { "weight": 10, "sourceWeight": "10", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8214", "source": "Malta", "target": "Belgium", "attributes": { "weight": 1732, "sourceWeight": "1732", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8215", "source": "Malta", "target": "Brazil", "attributes": { "weight": 947, "sourceWeight": "947", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8216", "source": "Malta", "target": "Denmark", "attributes": { "weight": 90, "sourceWeight": "90", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8217", "source": "Malta", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 7782, "sourceWeight": "7782", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8218", "source": "Malta", "target": "France", "attributes": { "weight": 34620, "sourceWeight": "34620", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8219", "source": "Malta", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 448, "sourceWeight": "448", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8220", "source": "Malta", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 7208, "sourceWeight": "7208", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8221", "source": "Malta", "target": "FrenchColoniesother", "attributes": { "weight": 201, "sourceWeight": "201", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8222", "source": "Malta", "target": "GermanyZollverein", "attributes": { "weight": 19657, "sourceWeight": "19657", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8223", "source": "Malta", "target": "Greece", "attributes": { "weight": 11347, "sourceWeight": "11347", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8224", "source": "Malta", "target": "Italy", "attributes": { "weight": 61294, "sourceWeight": "61294", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8225", "source": "Malta", "target": "Libya", "attributes": { "weight": 2557, "sourceWeight": "2557", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8226", "source": "Malta", "target": "Japan", "attributes": { "weight": 5123, "sourceWeight": "5123", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8227", "source": "Malta", "target": "Netherlands", "attributes": { "weight": 90967, "sourceWeight": "90967", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8228", "source": "Malta", "target": "DutchColonies", "attributes": { "weight": 9, "sourceWeight": "9", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8229", "source": "Malta", "target": "Norway", "attributes": { "weight": 450, "sourceWeight": "450", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8230", "source": "Malta", "target": "Portugal", "attributes": { "weight": 10, "sourceWeight": "10", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8231", "source": "Malta", "target": "Romania", "attributes": { "weight": 117, "sourceWeight": "117", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8232", "source": "Malta", "target": "IzmirSmyrna", "attributes": { "weight": 54, "sourceWeight": "54", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8233", "source": "Malta", "target": "Spain", "attributes": { "weight": 842, "sourceWeight": "842", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8234", "source": "Malta", "target": "Switzerland", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8235", "source": "Malta", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 1054, "sourceWeight": "1054", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8236", "source": "Malta", "target": "UnitedStatesofAmerica", "attributes": { "weight": 17134, "sourceWeight": "17134", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8237", "source": "Malta", "target": "Othercountries", "attributes": { "weight": 1991, "sourceWeight": "1991", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8238", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "UnitedKingdom", "attributes": { "weight": 3188210, "sourceWeight": "3188210", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8239", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "India", "attributes": { "weight": 329, "sourceWeight": "329", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8240", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "Australia", "attributes": { "weight": 7959, "sourceWeight": "7959", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8241", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "NewZealand", "attributes": { "weight": 10, "sourceWeight": "10", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8242", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "KenyaBritishEastAfricaProtectorate", "attributes": { "weight": 6, "sourceWeight": "6", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8243", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "TanzaniaTanganyika", "attributes": { "weight": 10, "sourceWeight": "10", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8244", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "MalawiNyasalandBritishCentralAfricaProtectorate", "attributes": { "weight": 351, "sourceWeight": "351", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8245", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "SouthAfrica", "attributes": { "weight": 738291, "sourceWeight": "738291", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8246", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "ZambiaNorthernRhodesia", "attributes": { "weight": 143842, "sourceWeight": "143842", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8247", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "Belgium", "attributes": { "weight": 18088, "sourceWeight": "18088", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8248", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 235460, "sourceWeight": "235460", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8249", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "France", "attributes": { "weight": 11177, "sourceWeight": "11177", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8250", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "GermanyZollverein", "attributes": { "weight": 8812, "sourceWeight": "8812", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8251", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "Netherlands", "attributes": { "weight": 19193, "sourceWeight": "19193", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8252", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "Norway", "attributes": { "weight": 3500, "sourceWeight": "3500", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8253", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 120563, "sourceWeight": "120563", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8254", "source": "ZimbabweRhodesiaSouthernRhodesia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 624257, "sourceWeight": "624257", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8255", "source": "EthiopiaAbyssinia", "target": "Latvia", "attributes": { "weight": 59.97283838832417, "sourceWeight": "59.97283838832417", "direction": "Imp", "source_type": "primary", "targetWeight": "59.97283838832417" } }, { "key": "geid_107_8256", "source": "UnitedKingdom", "target": "Latvia", "attributes": { "weight": 1802636.0669960307, "sourceWeight": "1802636.0669960307", "direction": "Imp", "source_type": "primary", "targetWeight": "1802636.0669960307" } }, { "key": "geid_107_8257", "source": "ArgentinaLaPlata", "target": "Latvia", "attributes": { "weight": 2996.382073332011, "sourceWeight": "2996.382073332011", "direction": "Imp", "source_type": "primary", "targetWeight": "2996.382073332011" } }, { "key": "geid_107_8258", "source": "Australia", "target": "Latvia", "attributes": { "weight": 61.32005432313435, "sourceWeight": "61.32005432313435", "direction": "Imp", "source_type": "primary", "targetWeight": "61.32005432313435" } }, { "key": "geid_107_8259", "source": "Austria", "target": "Latvia", "attributes": { "weight": 75014.9823448438, "sourceWeight": "75014.9823448438", "direction": "Imp", "source_type": "primary", "targetWeight": "75014.9823448438" } }, { "key": "geid_107_8260", "source": "Belgium", "target": "Latvia", "attributes": { "weight": 181180.8130373111, "sourceWeight": "181180.8130373111", "direction": "Imp", "source_type": "primary", "targetWeight": "181180.8130373111" } }, { "key": "geid_107_8261", "source": "Brazil", "target": "Latvia", "attributes": { "weight": 1273.0755998170785, "sourceWeight": "1273.0755998170785", "direction": "Imp", "source_type": "primary", "targetWeight": "1273.0755998170785" } }, { "key": "geid_107_8262", "source": "Bulgaria", "target": "Latvia", "attributes": { "weight": 15309.588048868723, "sourceWeight": "15309.588048868723", "direction": "Imp", "source_type": "primary", "targetWeight": "15309.588048868723" } }, { "key": "geid_107_8263", "source": "Czechoslovakia", "target": "Latvia", "attributes": { "weight": 317846.4825708388, "sourceWeight": "317846.4825708388", "direction": "Imp", "source_type": "primary", "targetWeight": "317846.4825708388" } }, { "key": "geid_107_8264", "source": "DanzigFreeCityofDanzig", "target": "Latvia", "attributes": { "weight": 205532.4363962618, "sourceWeight": "205532.4363962618", "direction": "Imp", "source_type": "primary", "targetWeight": "205532.4363962618" } }, { "key": "geid_107_8265", "source": "Denmark", "target": "Latvia", "attributes": { "weight": 504509.2476226282, "sourceWeight": "504509.2476226282", "direction": "Imp", "source_type": "primary", "targetWeight": "504509.2476226282" } }, { "key": "geid_107_8266", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Latvia", "attributes": { "weight": 238.1964689901484, "sourceWeight": "238.1964689901484", "direction": "Imp", "source_type": "primary", "targetWeight": "238.1964689901484" } }, { "key": "geid_107_8267", "source": "EgyptArabRepublicEgypt", "target": "Latvia", "attributes": { "weight": 2.4771389769090417, "sourceWeight": "2.4771389769090417", "direction": "Imp", "source_type": "primary", "targetWeight": "2.4771389769090417" } }, { "key": "geid_107_8268", "source": "France", "target": "Latvia", "attributes": { "weight": 197180.08872764555, "sourceWeight": "197180.08872764555", "direction": "Imp", "source_type": "primary", "targetWeight": "197180.08872764555" } }, { "key": "geid_107_8269", "source": "Greece", "target": "Latvia", "attributes": { "weight": 93.00135808044473, "sourceWeight": "93.00135808044473", "direction": "Imp", "source_type": "primary", "targetWeight": "93.00135808044473" } }, { "key": "geid_107_8270", "source": "Netherlands", "target": "Latvia", "attributes": { "weight": 471874.41919352196, "sourceWeight": "471874.41919352196", "direction": "Imp", "source_type": "primary", "targetWeight": "471874.41919352196" } }, { "key": "geid_107_8271", "source": "Estonia", "target": "Latvia", "attributes": { "weight": 330378.54594791436, "sourceWeight": "330378.54594791436", "direction": "Imp", "source_type": "primary", "targetWeight": "330378.54594791436" } }, { "key": "geid_107_8272", "source": "India", "target": "Latvia", "attributes": { "weight": 346.7559981887236, "sourceWeight": "346.7559981887236", "direction": "Imp", "source_type": "primary", "targetWeight": "346.7559981887236" } }, { "key": "geid_107_8273", "source": "Italy", "target": "Latvia", "attributes": { "weight": 29748.65731095736, "sourceWeight": "29748.65731095736", "direction": "Imp", "source_type": "primary", "targetWeight": "29748.65731095736" } }, { "key": "geid_107_8274", "source": "Japan", "target": "Latvia", "attributes": { "weight": 17.383431416905555, "sourceWeight": "17.383431416905555", "direction": "Imp", "source_type": "primary", "targetWeight": "17.383431416905555" } }, { "key": "geid_107_8275", "source": "CanadaProvinceofCanada", "target": "Latvia", "attributes": { "weight": 2.0860117700286667, "sourceWeight": "2.0860117700286667", "direction": "Imp", "source_type": "primary", "targetWeight": "2.0860117700286667" } }, { "key": "geid_107_8276", "source": "PeoplesRepublicofChinaChina", "target": "Latvia", "attributes": { "weight": 46.10955183334199, "sourceWeight": "46.10955183334199", "direction": "Imp", "source_type": "primary", "targetWeight": "46.10955183334199" } }, { "key": "geid_107_8277", "source": "Lithuania", "target": "Latvia", "attributes": { "weight": 559827.9764591256, "sourceWeight": "559827.9764591256", "direction": "Imp", "source_type": "primary", "targetWeight": "559827.9764591256" } }, { "key": "geid_107_8278", "source": "Luxemburg", "target": "Latvia", "attributes": { "weight": 4114.571299224461, "sourceWeight": "4114.571299224461", "direction": "Imp", "source_type": "primary", "targetWeight": "4114.571299224461" } }, { "key": "geid_107_8279", "source": "Mexico", "target": "Latvia", "attributes": { "weight": 68.44726120406563, "sourceWeight": "68.44726120406563", "direction": "Imp", "source_type": "primary", "targetWeight": "68.44726120406563" } }, { "key": "geid_107_8280", "source": "Norway", "target": "Latvia", "attributes": { "weight": 18982.142145739817, "sourceWeight": "18982.142145739817", "direction": "Imp", "source_type": "primary", "targetWeight": "18982.142145739817" } }, { "key": "geid_107_8281", "source": "RussiaUSSR", "target": "Latvia", "attributes": { "weight": 713462.4825702658, "sourceWeight": "713462.4825702658", "direction": "Imp", "source_type": "primary", "targetWeight": "713462.4825702658" } }, { "key": "geid_107_8282", "source": "Palestine", "target": "Latvia", "attributes": { "weight": 33.55002263462772, "sourceWeight": "33.55002263462772", "direction": "Imp", "source_type": "primary", "targetWeight": "33.55002263462772" } }, { "key": "geid_107_8283", "source": "Africaother", "target": "Latvia", "attributes": { "weight": 475.1326392025711, "sourceWeight": "475.1326392025711", "direction": "Imp", "source_type": "primary", "targetWeight": "475.1326392025711" } }, { "key": "geid_107_8284", "source": "IranPersia", "target": "Latvia", "attributes": { "weight": 217.29289271131947, "sourceWeight": "217.29289271131947", "direction": "Imp", "source_type": "primary", "targetWeight": "217.29289271131947" } }, { "key": "geid_107_8285", "source": "Poland", "target": "Latvia", "attributes": { "weight": 348079.9203254351, "sourceWeight": "348079.9203254351", "direction": "Imp", "source_type": "primary", "targetWeight": "348079.9203254351" } }, { "key": "geid_107_8286", "source": "Portugal", "target": "Latvia", "attributes": { "weight": 1304.105024896255, "sourceWeight": "1304.105024896255", "direction": "Imp", "source_type": "primary", "targetWeight": "1304.105024896255" } }, { "key": "geid_107_8287", "source": "Romania", "target": "Latvia", "attributes": { "weight": 806.5912177444178, "sourceWeight": "806.5912177444178", "direction": "Imp", "source_type": "primary", "targetWeight": "806.5912177444178" } }, { "key": "geid_107_8288", "source": "Finland", "target": "Latvia", "attributes": { "weight": 90569.85061100507, "sourceWeight": "90569.85061100507", "direction": "Imp", "source_type": "primary", "targetWeight": "90569.85061100507" } }, { "key": "geid_107_8289", "source": "Spain", "target": "Latvia", "attributes": { "weight": 518.0262562237856, "sourceWeight": "518.0262562237856", "direction": "Imp", "source_type": "primary", "targetWeight": "518.0262562237856" } }, { "key": "geid_107_8290", "source": "Switzerland", "target": "Latvia", "attributes": { "weight": 159549.2621093207, "sourceWeight": "159549.2621093207", "direction": "Imp", "source_type": "primary", "targetWeight": "159549.2621093207" } }, { "key": "geid_107_8291", "source": "TurkeyOttomanEmpire", "target": "Latvia", "attributes": { "weight": 764.5233137155063, "sourceWeight": "764.5233137155063", "direction": "Imp", "source_type": "primary", "targetWeight": "764.5233137155063" } }, { "key": "geid_107_8292", "source": "Hungary", "target": "Latvia", "attributes": { "weight": 2661.5337256638672, "sourceWeight": "2661.5337256638672", "direction": "Imp", "source_type": "primary", "targetWeight": "2661.5337256638672" } }, { "key": "geid_107_8293", "source": "GermanyZollverein", "target": "Latvia", "attributes": { "weight": 4333498.973284804, "sourceWeight": "4333498.973284804", "direction": "Imp", "source_type": "primary", "targetWeight": "4333498.973284804" } }, { "key": "geid_107_8294", "source": "UnitedStatesofAmerica", "target": "Latvia", "attributes": { "weight": 451283.7446801973, "sourceWeight": "451283.7446801973", "direction": "Imp", "source_type": "primary", "targetWeight": "451283.7446801973" } }, { "key": "geid_107_8295", "source": "Sweden", "target": "Latvia", "attributes": { "weight": 298679.59800771583, "sourceWeight": "298679.59800771583", "direction": "Imp", "source_type": "primary", "targetWeight": "298679.59800771583" } }, { "key": "geid_107_8296", "source": "Latvia", "target": "GermanyZollverein", "attributes": { "weight": 1206060.4726102946, "sourceWeight": "1206060.4726102946", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8297", "source": "Latvia", "target": "UnitedKingdom", "attributes": { "weight": 3057359.7175148106, "sourceWeight": "3057359.7175148106", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8298", "source": "Latvia", "target": "Lithuania", "attributes": { "weight": 145375.72476212532, "sourceWeight": "145375.72476212532", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8299", "source": "Latvia", "target": "Netherlands", "attributes": { "weight": 234920.17021242564, "sourceWeight": "234920.17021242564", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8300", "source": "Latvia", "target": "Poland", "attributes": { "weight": 210753.20235370105, "sourceWeight": "210753.20235370105", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8301", "source": "Latvia", "target": "RussiaUSSR", "attributes": { "weight": 188531.13626047838, "sourceWeight": "188531.13626047838", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8302", "source": "Latvia", "target": "Denmark", "attributes": { "weight": 164372.81665888368, "sourceWeight": "164372.81665888368", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8303", "source": "Latvia", "target": "Estonia", "attributes": { "weight": 94566.17111801602, "sourceWeight": "94566.17111801602", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8304", "source": "Latvia", "target": "Sweden", "attributes": { "weight": 82805.5409686442, "sourceWeight": "82805.5409686442", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8305", "source": "Latvia", "target": "Belgium", "attributes": { "weight": 1369890.7523746565, "sourceWeight": "1369890.7523746565", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8306", "source": "Latvia", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 6366.551380706033, "sourceWeight": "6366.551380706033", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8307", "source": "Latvia", "target": "France", "attributes": { "weight": 236521.83612460078, "sourceWeight": "236521.83612460078", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8308", "source": "Latvia", "target": "Czechoslovakia", "attributes": { "weight": 91568.9633316917, "sourceWeight": "91568.9633316917", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8309", "source": "Latvia", "target": "Switzerland", "attributes": { "weight": 3305.850611131472, "sourceWeight": "3305.850611131472", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8310", "source": "Latvia", "target": "Finland", "attributes": { "weight": 59893.439565327455, "sourceWeight": "59893.439565327455", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8311", "source": "Latvia", "target": "Norway", "attributes": { "weight": 16165.417836101526, "sourceWeight": "16165.417836101526", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8312", "source": "Latvia", "target": "Austria", "attributes": { "weight": 1699.1000452668914, "sourceWeight": "1699.1000452668914", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8313", "source": "Latvia", "target": "Italy", "attributes": { "weight": 1266.1222272503162, "sourceWeight": "1266.1222272503162", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8314", "source": "Latvia", "target": "Bulgaria", "attributes": { "weight": 137.41602535063842, "sourceWeight": "137.41602535063842", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8315", "source": "Latvia", "target": "Portugal", "attributes": { "weight": 10.125848800347487, "sourceWeight": "10.125848800347487", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8316", "source": "Latvia", "target": "Hungary", "attributes": { "weight": 2416.383884106957, "sourceWeight": "2416.383884106957", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8317", "source": "Latvia", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 1147.3064735157668, "sourceWeight": "1147.3064735157668", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8318", "source": "Latvia", "target": "Romania", "attributes": { "weight": 9559.583521941788, "sourceWeight": "9559.583521941788", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8319", "source": "Latvia", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 7198.956994104556, "sourceWeight": "7198.956994104556", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8320", "source": "Latvia", "target": "Greece", "attributes": { "weight": 558.9207786320559, "sourceWeight": "558.9207786320559", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8321", "source": "Latvia", "target": "UnitedStatesofAmerica", "attributes": { "weight": 166267.78451764054, "sourceWeight": "166267.78451764054", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8322", "source": "Latvia", "target": "ArgentinaLaPlata", "attributes": { "weight": 2.6944318696203613, "sourceWeight": "2.6944318696203613", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8323", "source": "Latvia", "target": "CanadaProvinceofCanada", "attributes": { "weight": 179.04934359412724, "sourceWeight": "179.04934359412724", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8324", "source": "Latvia", "target": "Brazil", "attributes": { "weight": 112.12313263904083, "sourceWeight": "112.12313263904083", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8325", "source": "Latvia", "target": "India", "attributes": { "weight": 2522.248981435912, "sourceWeight": "2522.248981435912", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8326", "source": "Latvia", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 524.0669986411602, "sourceWeight": "524.0669986411602", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8327", "source": "Latvia", "target": "ThailandSiam", "attributes": { "weight": 9.865097329093903, "sourceWeight": "9.865097329093903", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8328", "source": "Latvia", "target": "Palestine", "attributes": { "weight": 374.5694884557725, "sourceWeight": "374.5694884557725", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8329", "source": "Latvia", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 719.4133091886365, "sourceWeight": "719.4133091886365", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8330", "source": "Latvia", "target": "Morocco", "attributes": { "weight": 1100.414667268664, "sourceWeight": "1100.414667268664", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8331", "source": "Latvia", "target": "Africaother", "attributes": { "weight": 7402.9081032034, "sourceWeight": "7402.9081032034", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8332", "source": "Latvia", "target": "Australia", "attributes": { "weight": 955.6976007229252, "sourceWeight": "955.6976007229252", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8333", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Belgium_Luxemburg", "attributes": { "weight": 1440066.5459479366, "sourceWeight": "1440066.5459479366", "direction": "Imp", "source_type": "primary", "targetWeight": "1440066.5459479366" } }, { "key": "geid_107_8334", "source": "Aden", "target": "Belgium_Luxemburg", "attributes": { "weight": 1665.9121774553344, "sourceWeight": "1665.9121774553344", "direction": "Imp", "source_type": "primary", "targetWeight": "1665.9121774553344" } }, { "key": "geid_107_8335", "source": "AlgeriaRegencyofAlgiers", "target": "Belgium_Luxemburg", "attributes": { "weight": 283413.30918958876, "sourceWeight": "283413.30918958876", "direction": "Imp", "source_type": "primary", "targetWeight": "283413.30918958876" } }, { "key": "geid_107_8336", "source": "BritishWestIndies", "target": "Belgium_Luxemburg", "attributes": { "weight": 12723.404255315118, "sourceWeight": "12723.404255315118", "direction": "Imp", "source_type": "primary", "targetWeight": "12723.404255315118" } }, { "key": "geid_107_8337", "source": "FrenchWestIndies", "target": "Belgium_Luxemburg", "attributes": { "weight": 478.9497510184087, "sourceWeight": "478.9497510184087", "direction": "Imp", "source_type": "primary", "targetWeight": "478.9497510184087" } }, { "key": "geid_107_8338", "source": "NetherlandsAntilles", "target": "Belgium_Luxemburg", "attributes": { "weight": 19803.53100950029, "sourceWeight": "19803.53100950029", "direction": "Imp", "source_type": "primary", "targetWeight": "19803.53100950029" } }, { "key": "geid_107_8339", "source": "Arabia", "target": "Belgium_Luxemburg", "attributes": { "weight": 3508.8275237652983, "sourceWeight": "3508.8275237652983", "direction": "Imp", "source_type": "primary", "targetWeight": "3508.8275237652983" } }, { "key": "geid_107_8340", "source": "ArgentinaLaPlata", "target": "Belgium_Luxemburg", "attributes": { "weight": 15296561.792661518, "sourceWeight": "15296561.792661518", "direction": "Imp", "source_type": "primary", "targetWeight": "15296561.792661518" } }, { "key": "geid_107_8341", "source": "Australia", "target": "Belgium_Luxemburg", "attributes": { "weight": 4825314.621999376, "sourceWeight": "4825314.621999376", "direction": "Imp", "source_type": "primary", "targetWeight": "4825314.621999376" } }, { "key": "geid_107_8342", "source": "Austria", "target": "Belgium_Luxemburg", "attributes": { "weight": 349029.4250791108, "sourceWeight": "349029.4250791108", "direction": "Imp", "source_type": "primary", "targetWeight": "349029.4250791108" } }, { "key": "geid_107_8343", "source": "Bolivia", "target": "Belgium_Luxemburg", "attributes": { "weight": 229.06292440010847, "sourceWeight": "229.06292440010847", "direction": "Imp", "source_type": "primary", "targetWeight": "229.06292440010847" } }, { "key": "geid_107_8344", "source": "Brazil", "target": "Belgium_Luxemburg", "attributes": { "weight": 1886177.003168257, "sourceWeight": "1886177.003168257", "direction": "Imp", "source_type": "primary", "targetWeight": "1886177.003168257" } }, { "key": "geid_107_8345", "source": "Bulgaria", "target": "Belgium_Luxemburg", "attributes": { "weight": 70717.97193297895, "sourceWeight": "70717.97193297895", "direction": "Imp", "source_type": "primary", "targetWeight": "70717.97193297895" } }, { "key": "geid_107_8346", "source": "CanadaProvinceofCanada", "target": "Belgium_Luxemburg", "attributes": { "weight": 3274131.733815169, "sourceWeight": "3274131.733815169", "direction": "Imp", "source_type": "primary", "targetWeight": "3274131.733815169" } }, { "key": "geid_107_8347", "source": "CanaryIs", "target": "Belgium_Luxemburg", "attributes": { "weight": 13275.237664097196, "sourceWeight": "13275.237664097196", "direction": "Imp", "source_type": "primary", "targetWeight": "13275.237664097196" } }, { "key": "geid_107_8348", "source": "SriLankaCeylon", "target": "Belgium_Luxemburg", "attributes": { "weight": 161947.48755087669, "sourceWeight": "161947.48755087669", "direction": "Imp", "source_type": "primary", "targetWeight": "161947.48755087669" } }, { "key": "geid_107_8349", "source": "Chile", "target": "Belgium_Luxemburg", "attributes": { "weight": 1934228.1575367341, "sourceWeight": "1934228.1575367341", "direction": "Imp", "source_type": "primary", "targetWeight": "1934228.1575367341" } }, { "key": "geid_107_8350", "source": "PeoplesRepublicofChinaChina", "target": "Belgium_Luxemburg", "attributes": { "weight": 239776.8220913681, "sourceWeight": "239776.8220913681", "direction": "Imp", "source_type": "primary", "targetWeight": "239776.8220913681" } }, { "key": "geid_107_8351", "source": "Cyprus", "target": "Belgium_Luxemburg", "attributes": { "weight": 24311.905839738785, "sourceWeight": "24311.905839738785", "direction": "Imp", "source_type": "primary", "targetWeight": "24311.905839738785" } }, { "key": "geid_107_8352", "source": "ColombiaNewGranadaGranColombia", "target": "Belgium_Luxemburg", "attributes": { "weight": 4341.783612492965, "sourceWeight": "4341.783612492965", "direction": "Imp", "source_type": "primary", "targetWeight": "4341.783612492965" } }, { "key": "geid_107_8353", "source": "CostaRica", "target": "Belgium_Luxemburg", "attributes": { "weight": 5205.97555454792, "sourceWeight": "5205.97555454792", "direction": "Imp", "source_type": "primary", "targetWeight": "5205.97555454792" } }, { "key": "geid_107_8354", "source": "BritishWestAfrica", "target": "Belgium_Luxemburg", "attributes": { "weight": 622291.0819373311, "sourceWeight": "622291.0819373311", "direction": "Imp", "source_type": "primary", "targetWeight": "622291.0819373311" } }, { "key": "geid_107_8355", "source": "FrenchWestAfrica", "target": "Belgium_Luxemburg", "attributes": { "weight": 357515.1652330239, "sourceWeight": "357515.1652330239", "direction": "Imp", "source_type": "primary", "targetWeight": "357515.1652330239" } }, { "key": "geid_107_8356", "source": "AngolaPortugueseWestAfrica", "target": "Belgium_Luxemburg", "attributes": { "weight": 2530.1041195102894, "sourceWeight": "2530.1041195102894", "direction": "Imp", "source_type": "primary", "targetWeight": "2530.1041195102894" } }, { "key": "geid_107_8357", "source": "BritishEastAfrica", "target": "Belgium_Luxemburg", "attributes": { "weight": 76475.78089630895, "sourceWeight": "76475.78089630895", "direction": "Imp", "source_type": "primary", "targetWeight": "76475.78089630895" } }, { "key": "geid_107_8358", "source": "DjiboutiAfarandIssasFrenchSomaliland", "target": "Belgium_Luxemburg", "attributes": { "weight": 3165.2331371651353, "sourceWeight": "3165.2331371651353", "direction": "Imp", "source_type": "primary", "targetWeight": "3165.2331371651353" } }, { "key": "geid_107_8359", "source": "MozambiquePortugueseEastAfrica", "target": "Belgium_Luxemburg", "attributes": { "weight": 136625.6224535556, "sourceWeight": "136625.6224535556", "direction": "Imp", "source_type": "primary", "targetWeight": "136625.6224535556" } }, { "key": "geid_107_8360", "source": "Crete", "target": "Belgium_Luxemburg", "attributes": { "weight": 1770.0316885462928, "sourceWeight": "1770.0316885462928", "direction": "Imp", "source_type": "primary", "targetWeight": "1770.0316885462928" } }, { "key": "geid_107_8361", "source": "Cuba", "target": "Belgium_Luxemburg", "attributes": { "weight": 452315.98008134146, "sourceWeight": "452315.98008134146", "direction": "Imp", "source_type": "primary", "targetWeight": "452315.98008134146" } }, { "key": "geid_107_8362", "source": "Denmark", "target": "Belgium_Luxemburg", "attributes": { "weight": 311483.92937971116, "sourceWeight": "311483.92937971116", "direction": "Imp", "source_type": "primary", "targetWeight": "311483.92937971116" } }, { "key": "geid_107_8363", "source": "DanzigFreeCityofDanzig", "target": "Belgium_Luxemburg", "attributes": { "weight": 1248434.5857850276, "sourceWeight": "1248434.5857850276", "direction": "Imp", "source_type": "primary", "targetWeight": "1248434.5857850276" } }, { "key": "geid_107_8364", "source": "DominicanRepublicSantoDomingo", "target": "Belgium_Luxemburg", "attributes": { "weight": 64554.09687639421, "sourceWeight": "64554.09687639421", "direction": "Imp", "source_type": "primary", "targetWeight": "64554.09687639421" } }, { "key": "geid_107_8365", "source": "EgyptArabRepublicEgypt", "target": "Belgium_Luxemburg", "attributes": { "weight": 308933.0013579827, "sourceWeight": "308933.0013579827", "direction": "Imp", "source_type": "primary", "targetWeight": "308933.0013579827" } }, { "key": "geid_107_8366", "source": "Ecuador", "target": "Belgium_Luxemburg", "attributes": { "weight": 16482.118605698714, "sourceWeight": "16482.118605698714", "direction": "Imp", "source_type": "primary", "targetWeight": "16482.118605698714" } }, { "key": "geid_107_8367", "source": "Spain", "target": "Belgium_Luxemburg", "attributes": { "weight": 1558471.2539605745, "sourceWeight": "1558471.2539605745", "direction": "Imp", "source_type": "primary", "targetWeight": "1558471.2539605745" } }, { "key": "geid_107_8368", "source": "Estonia", "target": "Belgium_Luxemburg", "attributes": { "weight": 374569.94114972284, "sourceWeight": "374569.94114972284", "direction": "Imp", "source_type": "primary", "targetWeight": "374569.94114972284" } }, { "key": "geid_107_8369", "source": "StraitsSettlements", "target": "Belgium_Luxemburg", "attributes": { "weight": 55401.99185149897, "sourceWeight": "55401.99185149897", "direction": "Imp", "source_type": "primary", "targetWeight": "55401.99185149897" } }, { "key": "geid_107_8370", "source": "UnitedStatesofAmerica", "target": "Belgium_Luxemburg", "attributes": { "weight": 20669243.09641717, "sourceWeight": "20669243.09641717", "direction": "Imp", "source_type": "primary", "targetWeight": "20669243.09641717" } }, { "key": "geid_107_8371", "source": "EthiopiaAbyssinia", "target": "Belgium_Luxemburg", "attributes": { "weight": 156.1792666364376, "sourceWeight": "156.1792666364376", "direction": "Imp", "source_type": "primary", "targetWeight": "156.1792666364376" } }, { "key": "geid_107_8372", "source": "Finland", "target": "Belgium_Luxemburg", "attributes": { "weight": 2439759.6197366645, "sourceWeight": "2439759.6197366645", "direction": "Imp", "source_type": "primary", "targetWeight": "2439759.6197366645" } }, { "key": "geid_107_8373", "source": "Fiume", "target": "Belgium_Luxemburg", "attributes": { "weight": 531.0095065638878, "sourceWeight": "531.0095065638878", "direction": "Imp", "source_type": "primary", "targetWeight": "531.0095065638878" } }, { "key": "geid_107_8374", "source": "France", "target": "Belgium_Luxemburg", "attributes": { "weight": 39468489.36168962, "sourceWeight": "39468489.36168962", "direction": "Imp", "source_type": "primary", "targetWeight": "39468489.36168962" } }, { "key": "geid_107_8375", "source": "Gibraltar", "target": "Belgium_Luxemburg", "attributes": { "weight": 2124.0380262555514, "sourceWeight": "2124.0380262555514", "direction": "Imp", "source_type": "primary", "targetWeight": "2124.0380262555514" } }, { "key": "geid_107_8376", "source": "UnitedKingdom", "target": "Belgium_Luxemburg", "attributes": { "weight": 24983528.746031012, "sourceWeight": "24983528.746031012", "direction": "Imp", "source_type": "primary", "targetWeight": "24983528.746031012" } }, { "key": "geid_107_8377", "source": "Greece", "target": "Belgium_Luxemburg", "attributes": { "weight": 194287.0076957284, "sourceWeight": "194287.0076957284", "direction": "Imp", "source_type": "primary", "targetWeight": "194287.0076957284" } }, { "key": "geid_107_8378", "source": "Guatemala", "target": "Belgium_Luxemburg", "attributes": { "weight": 447.71389769112113, "sourceWeight": "447.71389769112113", "direction": "Imp", "source_type": "primary", "targetWeight": "447.71389769112113" } }, { "key": "geid_107_8379", "source": "GuyanaBritishGuiana", "target": "Belgium_Luxemburg", "attributes": { "weight": 119393.843368002, "sourceWeight": "119393.843368002", "direction": "Imp", "source_type": "primary", "targetWeight": "119393.843368002" } }, { "key": "geid_107_8380", "source": "FrenchGuiana", "target": "Belgium_Luxemburg", "attributes": { "weight": 2155.273879582839, "sourceWeight": "2155.273879582839", "direction": "Imp", "source_type": "primary", "targetWeight": "2155.273879582839" } }, { "key": "geid_107_8381", "source": "SurinamDutchGuiana", "target": "Belgium_Luxemburg", "attributes": { "weight": 9162.516976004339, "sourceWeight": "9162.516976004339", "direction": "Imp", "source_type": "primary", "targetWeight": "9162.516976004339" } }, { "key": "geid_107_8382", "source": "Haiti", "target": "Belgium_Luxemburg", "attributes": { "weight": 40304.66274331, "sourceWeight": "40304.66274331", "direction": "Imp", "source_type": "primary", "targetWeight": "40304.66274331" } }, { "key": "geid_107_8383", "source": "Honduras", "target": "Belgium_Luxemburg", "attributes": { "weight": 187.41511996372512, "sourceWeight": "187.41511996372512", "direction": "Imp", "source_type": "primary", "targetWeight": "187.41511996372512" } }, { "key": "geid_107_8384", "source": "HongKong", "target": "Belgium_Luxemburg", "attributes": { "weight": 4758.261656856799, "sourceWeight": "4758.261656856799", "direction": "Imp", "source_type": "primary", "targetWeight": "4758.261656856799" } }, { "key": "geid_107_8385", "source": "Hungary", "target": "Belgium_Luxemburg", "attributes": { "weight": 90521.50294247923, "sourceWeight": "90521.50294247923", "direction": "Imp", "source_type": "primary", "targetWeight": "90521.50294247923" } }, { "key": "geid_107_8386", "source": "India", "target": "Belgium_Luxemburg", "attributes": { "weight": 6620657.763691881, "sourceWeight": "6620657.763691881", "direction": "Imp", "source_type": "primary", "targetWeight": "6620657.763691881" } }, { "key": "geid_107_8387", "source": "PortugueseIndiainclGoaDiuDaman", "target": "Belgium_Luxemburg", "attributes": { "weight": 11630.149388860054, "sourceWeight": "11630.149388860054", "direction": "Imp", "source_type": "primary", "targetWeight": "11630.149388860054" } }, { "key": "geid_107_8388", "source": "IndonesiaDutchEastIndies", "target": "Belgium_Luxemburg", "attributes": { "weight": 507665.91217729496, "sourceWeight": "507665.91217729496", "direction": "Imp", "source_type": "primary", "targetWeight": "507665.91217729496" } }, { "key": "geid_107_8389", "source": "FrenchIndochina", "target": "Belgium_Luxemburg", "attributes": { "weight": 62315.5273879386, "sourceWeight": "62315.5273879386", "direction": "Imp", "source_type": "primary", "targetWeight": "62315.5273879386" } }, { "key": "geid_107_8390", "source": "Ireland", "target": "Belgium_Luxemburg", "attributes": { "weight": 107753.28202803285, "sourceWeight": "107753.28202803285", "direction": "Imp", "source_type": "primary", "targetWeight": "107753.28202803285" } }, { "key": "geid_107_8391", "source": "Italy", "target": "Belgium_Luxemburg", "attributes": { "weight": 2579925.305567313, "sourceWeight": "2579925.305567313", "direction": "Imp", "source_type": "primary", "targetWeight": "2579925.305567313" } }, { "key": "geid_107_8392", "source": "Jamaica", "target": "Belgium_Luxemburg", "attributes": { "weight": 68656.40561337797, "sourceWeight": "68656.40561337797", "direction": "Imp", "source_type": "primary", "targetWeight": "68656.40561337797" } }, { "key": "geid_107_8393", "source": "Japan", "target": "Belgium_Luxemburg", "attributes": { "weight": 142071.07288361274, "sourceWeight": "142071.07288361274", "direction": "Imp", "source_type": "primary", "targetWeight": "142071.07288361274" } }, { "key": "geid_107_8394", "source": "Latvia", "target": "Belgium_Luxemburg", "attributes": { "weight": 1542395.2014481304, "sourceWeight": "1542395.2014481304", "direction": "Imp", "source_type": "primary", "targetWeight": "1542395.2014481304" } }, { "key": "geid_107_8395", "source": "Liberia", "target": "Belgium_Luxemburg", "attributes": { "weight": 17866.90810320846, "sourceWeight": "17866.90810320846", "direction": "Imp", "source_type": "primary", "targetWeight": "17866.90810320846" } }, { "key": "geid_107_8396", "source": "Lithuania", "target": "Belgium_Luxemburg", "attributes": { "weight": 1426.4373019461302, "sourceWeight": "1426.4373019461302", "direction": "Imp", "source_type": "primary", "targetWeight": "1426.4373019461302" } }, { "key": "geid_107_8397", "source": "MadagascarMalagasyRepublic", "target": "Belgium_Luxemburg", "attributes": { "weight": 12161.158895423941, "sourceWeight": "12161.158895423941", "direction": "Imp", "source_type": "primary", "targetWeight": "12161.158895423941" } }, { "key": "geid_107_8398", "source": "Malta", "target": "Belgium_Luxemburg", "attributes": { "weight": 666.3648709821338, "sourceWeight": "666.3648709821338", "direction": "Imp", "source_type": "primary", "targetWeight": "666.3648709821338" } }, { "key": "geid_107_8399", "source": "Morocco", "target": "Belgium_Luxemburg", "attributes": { "weight": 153430.5115436363, "sourceWeight": "153430.5115436363", "direction": "Imp", "source_type": "primary", "targetWeight": "153430.5115436363" } }, { "key": "geid_107_8400", "source": "Mauritius", "target": "Belgium_Luxemburg", "attributes": { "weight": 718.424626527613, "sourceWeight": "718.424626527613", "direction": "Imp", "source_type": "primary", "targetWeight": "718.424626527613" } }, { "key": "geid_107_8401", "source": "Memel", "target": "Belgium_Luxemburg", "attributes": { "weight": 42262.109551820016, "sourceWeight": "42262.109551820016", "direction": "Imp", "source_type": "primary", "targetWeight": "42262.109551820016" } }, { "key": "geid_107_8402", "source": "IraqMesopotamia", "target": "Belgium_Luxemburg", "attributes": { "weight": 8110.90991398566, "sourceWeight": "8110.90991398566", "direction": "Imp", "source_type": "primary", "targetWeight": "8110.90991398566" } }, { "key": "geid_107_8403", "source": "Mexico", "target": "Belgium_Luxemburg", "attributes": { "weight": 61482.57129921093, "sourceWeight": "61482.57129921093", "direction": "Imp", "source_type": "primary", "targetWeight": "61482.57129921093" } }, { "key": "geid_107_8404", "source": "Nicaragua", "target": "Belgium_Luxemburg", "attributes": { "weight": 260.298777727396, "sourceWeight": "260.298777727396", "direction": "Imp", "source_type": "primary", "targetWeight": "260.298777727396" } }, { "key": "geid_107_8405", "source": "Norway", "target": "Belgium_Luxemburg", "attributes": { "weight": 1733652.331371112, "sourceWeight": "1733652.331371112", "direction": "Imp", "source_type": "primary", "targetWeight": "1733652.331371112" } }, { "key": "geid_107_8406", "source": "NewZealand", "target": "Belgium_Luxemburg", "attributes": { "weight": 218.65097329101263, "sourceWeight": "218.65097329101263", "direction": "Imp", "source_type": "primary", "targetWeight": "218.65097329101263" } }, { "key": "geid_107_8407", "source": "FrenchPolynesia", "target": "Belgium_Luxemburg", "attributes": { "weight": 100798.09868715683, "sourceWeight": "100798.09868715683", "direction": "Imp", "source_type": "primary", "targetWeight": "100798.09868715683" } }, { "key": "geid_107_8408", "source": "Palestine", "target": "Belgium_Luxemburg", "attributes": { "weight": 916.2516976004339, "sourceWeight": "916.2516976004339", "direction": "Imp", "source_type": "primary", "targetWeight": "916.2516976004339" } }, { "key": "geid_107_8409", "source": "Paraguay", "target": "Belgium_Luxemburg", "attributes": { "weight": 4789.497510184086, "sourceWeight": "4789.497510184086", "direction": "Imp", "source_type": "primary", "targetWeight": "4789.497510184086" } }, { "key": "geid_107_8410", "source": "Netherlands", "target": "Belgium_Luxemburg", "attributes": { "weight": 18897430.964231223, "sourceWeight": "18897430.964231223", "direction": "Imp", "source_type": "primary", "targetWeight": "18897430.964231223" } }, { "key": "geid_107_8411", "source": "Peru", "target": "Belgium_Luxemburg", "attributes": { "weight": 19772.295156173, "sourceWeight": "19772.295156173", "direction": "Imp", "source_type": "primary", "targetWeight": "19772.295156173" } }, { "key": "geid_107_8412", "source": "IranPersia", "target": "Belgium_Luxemburg", "attributes": { "weight": 5143.503847893345, "sourceWeight": "5143.503847893345", "direction": "Imp", "source_type": "primary", "targetWeight": "5143.503847893345" } }, { "key": "geid_107_8413", "source": "Philippines", "target": "Belgium_Luxemburg", "attributes": { "weight": 39430.05885014595, "sourceWeight": "39430.05885014595", "direction": "Imp", "source_type": "primary", "targetWeight": "39430.05885014595" } }, { "key": "geid_107_8414", "source": "Poland", "target": "Belgium_Luxemburg", "attributes": { "weight": 203553.6441828237, "sourceWeight": "203553.6441828237", "direction": "Imp", "source_type": "primary", "targetWeight": "203553.6441828237" } }, { "key": "geid_107_8415", "source": "Portugal", "target": "Belgium_Luxemburg", "attributes": { "weight": 1034573.1100041991, "sourceWeight": "1034573.1100041991", "direction": "Imp", "source_type": "primary", "targetWeight": "1034573.1100041991" } }, { "key": "geid_107_8416", "source": "Romania", "target": "Belgium_Luxemburg", "attributes": { "weight": 1675376.6410135026, "sourceWeight": "1675376.6410135026", "direction": "Imp", "source_type": "primary", "targetWeight": "1675376.6410135026" } }, { "key": "geid_107_8417", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Belgium_Luxemburg", "attributes": { "weight": 130992.75690353477, "sourceWeight": "130992.75690353477", "direction": "Imp", "source_type": "primary", "targetWeight": "130992.75690353477" } }, { "key": "geid_107_8418", "source": "RussiaUSSR", "target": "Belgium_Luxemburg", "attributes": { "weight": 1247174.739700827, "sourceWeight": "1247174.739700827", "direction": "Imp", "source_type": "primary", "targetWeight": "1247174.739700827" } }, { "key": "geid_107_8419", "source": "ThailandSiam", "target": "Belgium_Luxemburg", "attributes": { "weight": 2550.928021728481, "sourceWeight": "2550.928021728481", "direction": "Imp", "source_type": "primary", "targetWeight": "2550.928021728481" } }, { "key": "geid_107_8420", "source": "Sweden", "target": "Belgium_Luxemburg", "attributes": { "weight": 1928668.1756444771, "sourceWeight": "1928668.1756444771", "direction": "Imp", "source_type": "primary", "targetWeight": "1928668.1756444771" } }, { "key": "geid_107_8421", "source": "Switzerland", "target": "Belgium_Luxemburg", "attributes": { "weight": 2048790.8555901158, "sourceWeight": "2048790.8555901158", "direction": "Imp", "source_type": "primary", "targetWeight": "2048790.8555901158" } }, { "key": "geid_107_8422", "source": "Syria", "target": "Belgium_Luxemburg", "attributes": { "weight": 2509.2802172920974, "sourceWeight": "2509.2802172920974", "direction": "Imp", "source_type": "primary", "targetWeight": "2509.2802172920974" } }, { "key": "geid_107_8423", "source": "Czechoslovakia", "target": "Belgium_Luxemburg", "attributes": { "weight": 559486.1928472649, "sourceWeight": "559486.1928472649", "direction": "Imp", "source_type": "primary", "targetWeight": "559486.1928472649" } }, { "key": "geid_107_8424", "source": "TripolitaniaRegencyofTripoli", "target": "Belgium_Luxemburg", "attributes": { "weight": 10.41195110909584, "sourceWeight": "10.41195110909584", "direction": "Imp", "source_type": "primary", "targetWeight": "10.41195110909584" } }, { "key": "geid_107_8425", "source": "TunisiaRegencyofTunis", "target": "Belgium_Luxemburg", "attributes": { "weight": 370550.9280216119, "sourceWeight": "370550.9280216119", "direction": "Imp", "source_type": "primary", "targetWeight": "370550.9280216119" } }, { "key": "geid_107_8426", "source": "TurkeyOttomanEmpire", "target": "Belgium_Luxemburg", "attributes": { "weight": 222472.15934805083, "sourceWeight": "222472.15934805083", "direction": "Imp", "source_type": "primary", "targetWeight": "222472.15934805083" } }, { "key": "geid_107_8427", "source": "SouthAfrica", "target": "Belgium_Luxemburg", "attributes": { "weight": 734979.6287910753, "sourceWeight": "734979.6287910753", "direction": "Imp", "source_type": "primary", "targetWeight": "734979.6287910753" } }, { "key": "geid_107_8428", "source": "Uruguay", "target": "Belgium_Luxemburg", "attributes": { "weight": 1201205.975554169, "sourceWeight": "1201205.975554169", "direction": "Imp", "source_type": "primary", "targetWeight": "1201205.975554169" } }, { "key": "geid_107_8429", "source": "Venezuela", "target": "Belgium_Luxemburg", "attributes": { "weight": 7090.538705294267, "sourceWeight": "7090.538705294267", "direction": "Imp", "source_type": "primary", "targetWeight": "7090.538705294267" } }, { "key": "geid_107_8430", "source": "GermanyZollverein", "target": "Belgium_Luxemburg", "attributes": { "weight": 16807471.25395574, "sourceWeight": "16807471.25395574", "direction": "Imp", "source_type": "primary", "targetWeight": "16807471.25395574" } }, { "key": "geid_107_8431", "source": "Belgium_Luxemburg", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 1973928.9271157167, "sourceWeight": "1973928.9271157167", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8432", "source": "Belgium_Luxemburg", "target": "Aden", "attributes": { "weight": 13035.762788587992, "sourceWeight": "13035.762788587992", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8433", "source": "Belgium_Luxemburg", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 122996.37845174916, "sourceWeight": "122996.37845174916", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8434", "source": "Belgium_Luxemburg", "target": "BritishWestIndies", "attributes": { "weight": 4487.550928020307, "sourceWeight": "4487.550928020307", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8435", "source": "Belgium_Luxemburg", "target": "FrenchWestIndies", "attributes": { "weight": 33078.768673597486, "sourceWeight": "33078.768673597486", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8436", "source": "Belgium_Luxemburg", "target": "NetherlandsAntilles", "attributes": { "weight": 2675.871435037631, "sourceWeight": "2675.871435037631", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8437", "source": "Belgium_Luxemburg", "target": "Arabia", "attributes": { "weight": 1603.4404708007594, "sourceWeight": "1603.4404708007594", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8438", "source": "Belgium_Luxemburg", "target": "ArgentinaLaPlata", "attributes": { "weight": 4520765.052058323, "sourceWeight": "4520765.052058323", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8439", "source": "Belgium_Luxemburg", "target": "Australia", "attributes": { "weight": 536007.2430962538, "sourceWeight": "536007.2430962538", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8440", "source": "Belgium_Luxemburg", "target": "Austria", "attributes": { "weight": 247544.1376187536, "sourceWeight": "247544.1376187536", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8441", "source": "Belgium_Luxemburg", "target": "Bahamas", "attributes": { "weight": 20.82390221819168, "sourceWeight": "20.82390221819168", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8442", "source": "Belgium_Luxemburg", "target": "Bolivia", "attributes": { "weight": 5528.746038929891, "sourceWeight": "5528.746038929891", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8443", "source": "Belgium_Luxemburg", "target": "Brazil", "attributes": { "weight": 2298979.6287905797, "sourceWeight": "2298979.6287905797", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8444", "source": "Belgium_Luxemburg", "target": "Bulgaria", "attributes": { "weight": 409626.9805340485, "sourceWeight": "409626.9805340485", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8445", "source": "Belgium_Luxemburg", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1039904.0289720561, "sourceWeight": "1039904.0289720561", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8446", "source": "Belgium_Luxemburg", "target": "CanaryIs", "attributes": { "weight": 182677.68220908652, "sourceWeight": "182677.68220908652", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8447", "source": "Belgium_Luxemburg", "target": "SriLankaCeylon", "attributes": { "weight": 101058.39746488423, "sourceWeight": "101058.39746488423", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8448", "source": "Belgium_Luxemburg", "target": "Chile", "attributes": { "weight": 860433.2277045711, "sourceWeight": "860433.2277045711", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8449", "source": "Belgium_Luxemburg", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1854076.9578989143, "sourceWeight": "1854076.9578989143", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8450", "source": "Belgium_Luxemburg", "target": "Cyprus", "attributes": { "weight": 6736.532367585009, "sourceWeight": "6736.532367585009", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8451", "source": "Belgium_Luxemburg", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 109138.0715255426, "sourceWeight": "109138.0715255426", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8452", "source": "Belgium_Luxemburg", "target": "KoreaChosen", "attributes": { "weight": 93.70755998186256, "sourceWeight": "93.70755998186256", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8453", "source": "Belgium_Luxemburg", "target": "CostaRica", "attributes": { "weight": 22999.99999999271, "sourceWeight": "22999.99999999271", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8454", "source": "Belgium_Luxemburg", "target": "BritishWestAfrica", "attributes": { "weight": 76350.83748299979, "sourceWeight": "76350.83748299979", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8455", "source": "Belgium_Luxemburg", "target": "FrenchWestAfrica", "attributes": { "weight": 367312.811226683, "sourceWeight": "367312.811226683", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8456", "source": "Belgium_Luxemburg", "target": "AngolaPortugueseWestAfrica", "attributes": { "weight": 38232.684472599925, "sourceWeight": "38232.684472599925", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8457", "source": "Belgium_Luxemburg", "target": "BritishEastAfrica", "attributes": { "weight": 101776.82209141184, "sourceWeight": "101776.82209141184", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8458", "source": "Belgium_Luxemburg", "target": "DjiboutiAfarandIssasFrenchSomaliland", "attributes": { "weight": 22614.757808956165, "sourceWeight": "22614.757808956165", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8459", "source": "Belgium_Luxemburg", "target": "ItalianEastAfrica", "attributes": { "weight": 41.64780443638336, "sourceWeight": "41.64780443638336", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8460", "source": "Belgium_Luxemburg", "target": "MozambiquePortugueseEastAfrica", "attributes": { "weight": 277988.68266174983, "sourceWeight": "277988.68266174983", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8461", "source": "Belgium_Luxemburg", "target": "Crete", "attributes": { "weight": 8204.617473967523, "sourceWeight": "8204.617473967523", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8462", "source": "Belgium_Luxemburg", "target": "Cuba", "attributes": { "weight": 408773.2005431027, "sourceWeight": "408773.2005431027", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8463", "source": "Belgium_Luxemburg", "target": "Denmark", "attributes": { "weight": 1419471.706654145, "sourceWeight": "1419471.706654145", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8464", "source": "Belgium_Luxemburg", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 239443.63965587705, "sourceWeight": "239443.63965587705", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8465", "source": "Belgium_Luxemburg", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 3665.0067904017355, "sourceWeight": "3665.0067904017355", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8466", "source": "Belgium_Luxemburg", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 1753882.7523760851, "sourceWeight": "1753882.7523760851", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8467", "source": "Belgium_Luxemburg", "target": "Ecuador", "attributes": { "weight": 50102.308736969186, "sourceWeight": "50102.308736969186", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8468", "source": "Belgium_Luxemburg", "target": "Spain", "attributes": { "weight": 1835731.1000446875, "sourceWeight": "1835731.1000446875", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8469", "source": "Belgium_Luxemburg", "target": "Estonia", "attributes": { "weight": 48165.68583067736, "sourceWeight": "48165.68583067736", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8470", "source": "Belgium_Luxemburg", "target": "StraitsSettlements", "attributes": { "weight": 136552.73879579196, "sourceWeight": "136552.73879579196", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8471", "source": "Belgium_Luxemburg", "target": "UnitedStatesofAmerica", "attributes": { "weight": 11320279.311902253, "sourceWeight": "11320279.311902253", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8472", "source": "Belgium_Luxemburg", "target": "EthiopiaAbyssinia", "attributes": { "weight": 343.59438660016275, "sourceWeight": "343.59438660016275", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8473", "source": "Belgium_Luxemburg", "target": "Finland", "attributes": { "weight": 383846.98958792724, "sourceWeight": "383846.98958792724", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8474", "source": "Belgium_Luxemburg", "target": "Fiume", "attributes": { "weight": 426.88999547292946, "sourceWeight": "426.88999547292946", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8475", "source": "Belgium_Luxemburg", "target": "France", "attributes": { "weight": 22862489.361694884, "sourceWeight": "22862489.361694884", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8476", "source": "Belgium_Luxemburg", "target": "Gibraltar", "attributes": { "weight": 18637.392485281554, "sourceWeight": "18637.392485281554", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8477", "source": "Belgium_Luxemburg", "target": "UnitedKingdom", "attributes": { "weight": 30362998.641909797, "sourceWeight": "30362998.641909797", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8478", "source": "Belgium_Luxemburg", "target": "Greece", "attributes": { "weight": 1059051.6070616834, "sourceWeight": "1059051.6070616834", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8479", "source": "Belgium_Luxemburg", "target": "Guatemala", "attributes": { "weight": 14857.854232679763, "sourceWeight": "14857.854232679763", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8480", "source": "Belgium_Luxemburg", "target": "GuyanaBritishGuiana", "attributes": { "weight": 583.0692621093671, "sourceWeight": "583.0692621093671", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8481", "source": "Belgium_Luxemburg", "target": "FrenchGuiana", "attributes": { "weight": 1509.732910818897, "sourceWeight": "1509.732910818897", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8482", "source": "Belgium_Luxemburg", "target": "SurinamDutchGuiana", "attributes": { "weight": 114.53146220005424, "sourceWeight": "114.53146220005424", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8483", "source": "Belgium_Luxemburg", "target": "Haiti", "attributes": { "weight": 1103.6668175641591, "sourceWeight": "1103.6668175641591", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8484", "source": "Belgium_Luxemburg", "target": "Honduras", "attributes": { "weight": 1457.6731552734177, "sourceWeight": "1457.6731552734177", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8485", "source": "Belgium_Luxemburg", "target": "HongKong", "attributes": { "weight": 232363.51290169187, "sourceWeight": "232363.51290169187", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8486", "source": "Belgium_Luxemburg", "target": "Hungary", "attributes": { "weight": 24384.789497502457, "sourceWeight": "24384.789497502457", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8487", "source": "Belgium_Luxemburg", "target": "India", "attributes": { "weight": 3741857.401537972, "sourceWeight": "3741857.401537972", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8488", "source": "Belgium_Luxemburg", "target": "FrenchIndia", "attributes": { "weight": 562.2453598911753, "sourceWeight": "562.2453598911753", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8489", "source": "Belgium_Luxemburg", "target": "PortugueseIndiainclGoaDiuDaman", "attributes": { "weight": 52.0597555454792, "sourceWeight": "52.0597555454792", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8490", "source": "Belgium_Luxemburg", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 663168.4019916414, "sourceWeight": "663168.4019916414", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8491", "source": "Belgium_Luxemburg", "target": "FrenchIndochina", "attributes": { "weight": 42501.58442732922, "sourceWeight": "42501.58442732922", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8492", "source": "Belgium_Luxemburg", "target": "Ireland", "attributes": { "weight": 661377.5464008768, "sourceWeight": "661377.5464008768", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8493", "source": "Belgium_Luxemburg", "target": "Italy", "attributes": { "weight": 2883183.7935708384, "sourceWeight": "2883183.7935708384", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8494", "source": "Belgium_Luxemburg", "target": "Jamaica", "attributes": { "weight": 2269.8053417828933, "sourceWeight": "2269.8053417828933", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8495", "source": "Belgium_Luxemburg", "target": "Japan", "attributes": { "weight": 1908281.5753728675, "sourceWeight": "1908281.5753728675", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8496", "source": "Belgium_Luxemburg", "target": "Latvia", "attributes": { "weight": 152847.44228152692, "sourceWeight": "152847.44228152692", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8497", "source": "Belgium_Luxemburg", "target": "Liberia", "attributes": { "weight": 655.9529198730379, "sourceWeight": "655.9529198730379", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8498", "source": "Belgium_Luxemburg", "target": "Lithuania", "attributes": { "weight": 11234.495246714412, "sourceWeight": "11234.495246714412", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8499", "source": "Belgium_Luxemburg", "target": "MadagascarMalagasyRepublic", "attributes": { "weight": 1176.5504753278299, "sourceWeight": "1176.5504753278299", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8500", "source": "Belgium_Luxemburg", "target": "Malta", "attributes": { "weight": 44813.0375735485, "sourceWeight": "44813.0375735485", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8501", "source": "Belgium_Luxemburg", "target": "Morocco", "attributes": { "weight": 678963.3318241397, "sourceWeight": "678963.3318241397", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8502", "source": "Belgium_Luxemburg", "target": "Mauritius", "attributes": { "weight": 17637.845178808355, "sourceWeight": "17637.845178808355", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8503", "source": "Belgium_Luxemburg", "target": "Memel", "attributes": { "weight": 20490.719782700613, "sourceWeight": "20490.719782700613", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8504", "source": "Belgium_Luxemburg", "target": "IraqMesopotamia", "attributes": { "weight": 175378.90448161034, "sourceWeight": "175378.90448161034", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8505", "source": "Belgium_Luxemburg", "target": "Mexico", "attributes": { "weight": 133897.6912629725, "sourceWeight": "133897.6912629725", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8506", "source": "Belgium_Luxemburg", "target": "Nicaragua", "attributes": { "weight": 1051.60706201868, "sourceWeight": "1051.60706201868", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8507", "source": "Belgium_Luxemburg", "target": "Norway", "attributes": { "weight": 892106.3829784407, "sourceWeight": "892106.3829784407", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8508", "source": "Belgium_Luxemburg", "target": "NewGuineaGermanNewGuineaKaiserWilhelmsland", "attributes": { "weight": 291.53463105468353, "sourceWeight": "291.53463105468353", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8509", "source": "Belgium_Luxemburg", "target": "NewZealand", "attributes": { "weight": 76350.83748299979, "sourceWeight": "76350.83748299979", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8510", "source": "Belgium_Luxemburg", "target": "BritishOceania", "attributes": { "weight": 41.64780443638336, "sourceWeight": "41.64780443638336", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8511", "source": "Belgium_Luxemburg", "target": "FrenchPolynesia", "attributes": { "weight": 7007.243096421501, "sourceWeight": "7007.243096421501", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8512", "source": "Belgium_Luxemburg", "target": "Palestine", "attributes": { "weight": 109700.31688543377, "sourceWeight": "109700.31688543377", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8513", "source": "Belgium_Luxemburg", "target": "Panama", "attributes": { "weight": 5882.75237663915, "sourceWeight": "5882.75237663915", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8514", "source": "Belgium_Luxemburg", "target": "Paraguay", "attributes": { "weight": 52.0597555454792, "sourceWeight": "52.0597555454792", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8515", "source": "Belgium_Luxemburg", "target": "Netherlands", "attributes": { "weight": 17737133.54458469, "sourceWeight": "17737133.54458469", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8516", "source": "Belgium_Luxemburg", "target": "Peru", "attributes": { "weight": 176982.3449524111, "sourceWeight": "176982.3449524111", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8517", "source": "Belgium_Luxemburg", "target": "IranPersia", "attributes": { "weight": 318928.4744227147, "sourceWeight": "318928.4744227147", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8518", "source": "Belgium_Luxemburg", "target": "Philippines", "attributes": { "weight": 83524.67179716683, "sourceWeight": "83524.67179716683", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8519", "source": "Belgium_Luxemburg", "target": "Poland", "attributes": { "weight": 362023.5400632624, "sourceWeight": "362023.5400632624", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8520", "source": "Belgium_Luxemburg", "target": "PuertoRico", "attributes": { "weight": 23593.481213211173, "sourceWeight": "23593.481213211173", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8521", "source": "Belgium_Luxemburg", "target": "Portugal", "attributes": { "weight": 1029179.7193296874, "sourceWeight": "1029179.7193296874", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8522", "source": "Belgium_Luxemburg", "target": "Romania", "attributes": { "weight": 501814.3956539831, "sourceWeight": "501814.3956539831", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8523", "source": "Belgium_Luxemburg", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 66469.89588046784, "sourceWeight": "66469.89588046784", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8524", "source": "Belgium_Luxemburg", "target": "RussiaUSSR", "attributes": { "weight": 41085.55907649219, "sourceWeight": "41085.55907649219", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8525", "source": "Belgium_Luxemburg", "target": "StPierreandMiquelon", "attributes": { "weight": 364.4182888183544, "sourceWeight": "364.4182888183544", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8526", "source": "Belgium_Luxemburg", "target": "ElSalvador", "attributes": { "weight": 9391.579900404447, "sourceWeight": "9391.579900404447", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8527", "source": "Belgium_Luxemburg", "target": "ThailandSiam", "attributes": { "weight": 109939.79176094297, "sourceWeight": "109939.79176094297", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8528", "source": "Belgium_Luxemburg", "target": "Sweden", "attributes": { "weight": 909546.4010861762, "sourceWeight": "909546.4010861762", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8529", "source": "Belgium_Luxemburg", "target": "Switzerland", "attributes": { "weight": 3747677.682207957, "sourceWeight": "3747677.682207957", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8530", "source": "Belgium_Luxemburg", "target": "Syria", "attributes": { "weight": 340564.5088274158, "sourceWeight": "340564.5088274158", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8531", "source": "Belgium_Luxemburg", "target": "Czechoslovakia", "attributes": { "weight": 132294.25079217175, "sourceWeight": "132294.25079217175", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8532", "source": "Belgium_Luxemburg", "target": "TripolitaniaRegencyofTripoli", "attributes": { "weight": 50529.19873244211, "sourceWeight": "50529.19873244211", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8533", "source": "Belgium_Luxemburg", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 173348.57401533664, "sourceWeight": "173348.57401533664", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8534", "source": "Belgium_Luxemburg", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 915679.0402894337, "sourceWeight": "915679.0402894337", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8535", "source": "Belgium_Luxemburg", "target": "SouthAfrica", "attributes": { "weight": 737166.1385239855, "sourceWeight": "737166.1385239855", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8536", "source": "Belgium_Luxemburg", "target": "Uruguay", "attributes": { "weight": 421121.7745584904, "sourceWeight": "421121.7745584904", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8537", "source": "Belgium_Luxemburg", "target": "Venezuela", "attributes": { "weight": 19022.6346763181, "sourceWeight": "19022.6346763181", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8538", "source": "Belgium_Luxemburg", "target": "GermanyZollverein", "attributes": { "weight": 16413462.200085336, "sourceWeight": "16413462.200085336", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8539", "source": "UnitedKingdom", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 1284796, "sourceWeight": "1284796", "direction": "Imp", "source_type": "secondary", "targetWeight": "1284796" } }, { "key": "geid_107_8540", "source": "CanadaProvinceofCanada", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 2376812, "sourceWeight": "2376812", "direction": "Imp", "source_type": "secondary", "targetWeight": "2376812" } }, { "key": "geid_107_8541", "source": "SriLankaCeylon", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 52462, "sourceWeight": "52462", "direction": "Imp", "source_type": "secondary", "targetWeight": "52462" } }, { "key": "geid_107_8542", "source": "BritishWestIndies", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 135624, "sourceWeight": "135624", "direction": "Imp", "source_type": "secondary", "targetWeight": "135624" } }, { "key": "geid_107_8543", "source": "BritishColoniesother", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 812, "sourceWeight": "812", "direction": "Imp", "source_type": "secondary", "targetWeight": "812" } }, { "key": "geid_107_8544", "source": "Norway", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 3748, "sourceWeight": "3748", "direction": "Imp", "source_type": "secondary", "targetWeight": "3748" } }, { "key": "geid_107_8545", "source": "GermanyZollverein", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 591, "sourceWeight": "591", "direction": "Imp", "source_type": "secondary", "targetWeight": "591" } }, { "key": "geid_107_8546", "source": "Netherlands", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 3840, "sourceWeight": "3840", "direction": "Imp", "source_type": "secondary", "targetWeight": "3840" } }, { "key": "geid_107_8547", "source": "Belgium", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 608, "sourceWeight": "608", "direction": "Imp", "source_type": "secondary", "targetWeight": "608" } }, { "key": "geid_107_8548", "source": "France", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 9254, "sourceWeight": "9254", "direction": "Imp", "source_type": "secondary", "targetWeight": "9254" } }, { "key": "geid_107_8549", "source": "StPierreandMiquelon", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 2916, "sourceWeight": "2916", "direction": "Imp", "source_type": "secondary", "targetWeight": "2916" } }, { "key": "geid_107_8550", "source": "Portugal", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 12192, "sourceWeight": "12192", "direction": "Imp", "source_type": "secondary", "targetWeight": "12192" } }, { "key": "geid_107_8551", "source": "Spain", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 18052, "sourceWeight": "18052", "direction": "Imp", "source_type": "secondary", "targetWeight": "18052" } }, { "key": "geid_107_8552", "source": "Greece", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 13739, "sourceWeight": "13739", "direction": "Imp", "source_type": "secondary", "targetWeight": "13739" } }, { "key": "geid_107_8553", "source": "UnitedStatesofAmerica", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 1765320, "sourceWeight": "1765320", "direction": "Imp", "source_type": "secondary", "targetWeight": "1765320" } }, { "key": "geid_107_8554", "source": "NewfoundlandandLabradorNewfoundland", "target": "UnitedKingdom", "attributes": { "weight": 1548278, "sourceWeight": "1548278", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8555", "source": "NewfoundlandandLabradorNewfoundland", "target": "CanadaProvinceofCanada", "attributes": { "weight": 361905, "sourceWeight": "361905", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8556", "source": "NewfoundlandandLabradorNewfoundland", "target": "BritishWestIndies", "attributes": { "weight": 160943, "sourceWeight": "160943", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8557", "source": "NewfoundlandandLabradorNewfoundland", "target": "BritishColoniesother", "attributes": { "weight": 1948, "sourceWeight": "1948", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8558", "source": "NewfoundlandandLabradorNewfoundland", "target": "GermanyZollverein", "attributes": { "weight": 21190, "sourceWeight": "21190", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8559", "source": "NewfoundlandandLabradorNewfoundland", "target": "Netherlands", "attributes": { "weight": 73217, "sourceWeight": "73217", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8560", "source": "NewfoundlandandLabradorNewfoundland", "target": "Portugal", "attributes": { "weight": 414912, "sourceWeight": "414912", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8561", "source": "NewfoundlandandLabradorNewfoundland", "target": "Spain", "attributes": { "weight": 443594, "sourceWeight": "443594", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8562", "source": "NewfoundlandandLabradorNewfoundland", "target": "Italy", "attributes": { "weight": 214875, "sourceWeight": "214875", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8563", "source": "NewfoundlandandLabradorNewfoundland", "target": "Greece", "attributes": { "weight": 71050, "sourceWeight": "71050", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8564", "source": "NewfoundlandandLabradorNewfoundland", "target": "UnitedStatesofAmerica", "attributes": { "weight": 375462, "sourceWeight": "375462", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8565", "source": "NewfoundlandandLabradorNewfoundland", "target": "WestIndiesother", "attributes": { "weight": 119133, "sourceWeight": "119133", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8566", "source": "NewfoundlandandLabradorNewfoundland", "target": "Brazil", "attributes": { "weight": 202540, "sourceWeight": "202540", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8567", "source": "UnitedKingdom", "target": "StHelena", "attributes": { "weight": 36466, "sourceWeight": "36466", "direction": "Imp", "source_type": "secondary", "targetWeight": "36466" } }, { "key": "geid_107_8568", "source": "SouthAfrica", "target": "StHelena", "attributes": { "weight": 14955, "sourceWeight": "14955", "direction": "Imp", "source_type": "secondary", "targetWeight": "14955" } }, { "key": "geid_107_8569", "source": "StHelena", "target": "UnitedKingdom", "attributes": { "weight": 32936, "sourceWeight": "32936", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8570", "source": "StHelena", "target": "SouthAfrica", "attributes": { "weight": 1475, "sourceWeight": "1475", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8571", "source": "StHelena", "target": "AscensionI", "attributes": { "weight": 1629, "sourceWeight": "1629", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8572", "source": "TanzaniaTanganyika", "target": "KenyaBritishEastAfricaProtectorate_Uganda", "attributes": { "weight": 882615, "sourceWeight": "882615", "direction": "Imp", "source_type": "secondary", "targetWeight": "882615" } }, { "key": "geid_107_8573", "source": "UnitedKingdom", "target": "SomalilandRepublicBritishSomaliland", "attributes": { "weight": 1679, "sourceWeight": "1679", "direction": "Imp", "source_type": "secondary", "targetWeight": "1679" } }, { "key": "geid_107_8574", "source": "Aden_AdenDependencies", "target": "SomalilandRepublicBritishSomaliland", "attributes": { "weight": 359907, "sourceWeight": "359907", "direction": "Imp", "source_type": "secondary", "targetWeight": "359907" } }, { "key": "geid_107_8575", "source": "SomalilandRepublicBritishSomaliland", "target": "Aden", "attributes": { "weight": 249650, "sourceWeight": "249650", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8576", "source": "UnitedKingdom", "target": "Mauritius", "attributes": { "weight": 1824654, "sourceWeight": "1824654", "direction": "Imp", "source_type": "secondary", "targetWeight": "1824654" } }, { "key": "geid_107_8577", "source": "CanadaProvinceofCanada", "target": "Mauritius", "attributes": { "weight": 34089, "sourceWeight": "34089", "direction": "Imp", "source_type": "secondary", "targetWeight": "34089" } }, { "key": "geid_107_8578", "source": "Australia_NewZealand", "target": "Mauritius", "attributes": { "weight": 123560, "sourceWeight": "123560", "direction": "Imp", "source_type": "secondary", "targetWeight": "123560" } }, { "key": "geid_107_8579", "source": "SouthAfrica", "target": "Mauritius", "attributes": { "weight": 171360, "sourceWeight": "171360", "direction": "Imp", "source_type": "secondary", "targetWeight": "171360" } }, { "key": "geid_107_8580", "source": "India", "target": "Mauritius", "attributes": { "weight": 1640396, "sourceWeight": "1640396", "direction": "Imp", "source_type": "secondary", "targetWeight": "1640396" } }, { "key": "geid_107_8581", "source": "MauritiusDependencies", "target": "Mauritius", "attributes": { "weight": 57013, "sourceWeight": "57013", "direction": "Imp", "source_type": "secondary", "targetWeight": "57013" } }, { "key": "geid_107_8582", "source": "Seychelles", "target": "Mauritius", "attributes": { "weight": 14940, "sourceWeight": "14940", "direction": "Imp", "source_type": "secondary", "targetWeight": "14940" } }, { "key": "geid_107_8583", "source": "StraitsSettlements", "target": "Mauritius", "attributes": { "weight": 78069, "sourceWeight": "78069", "direction": "Imp", "source_type": "secondary", "targetWeight": "78069" } }, { "key": "geid_107_8584", "source": "SriLankaCeylon", "target": "Mauritius", "attributes": { "weight": 33730, "sourceWeight": "33730", "direction": "Imp", "source_type": "secondary", "targetWeight": "33730" } }, { "key": "geid_107_8585", "source": "BritishColoniesother", "target": "Mauritius", "attributes": { "weight": 12951, "sourceWeight": "12951", "direction": "Imp", "source_type": "secondary", "targetWeight": "12951" } }, { "key": "geid_107_8586", "source": "GermanyZollverein", "target": "Mauritius", "attributes": { "weight": 127050, "sourceWeight": "127050", "direction": "Imp", "source_type": "secondary", "targetWeight": "127050" } }, { "key": "geid_107_8587", "source": "Netherlands", "target": "Mauritius", "attributes": { "weight": 40012, "sourceWeight": "40012", "direction": "Imp", "source_type": "secondary", "targetWeight": "40012" } }, { "key": "geid_107_8588", "source": "DutchColonies", "target": "Mauritius", "attributes": { "weight": 113355, "sourceWeight": "113355", "direction": "Imp", "source_type": "secondary", "targetWeight": "113355" } }, { "key": "geid_107_8589", "source": "Belgium", "target": "Mauritius", "attributes": { "weight": 45176, "sourceWeight": "45176", "direction": "Imp", "source_type": "secondary", "targetWeight": "45176" } }, { "key": "geid_107_8590", "source": "France", "target": "Mauritius", "attributes": { "weight": 655797, "sourceWeight": "655797", "direction": "Imp", "source_type": "secondary", "targetWeight": "655797" } }, { "key": "geid_107_8591", "source": "ReunionBourbonI", "target": "Mauritius", "attributes": { "weight": 113529, "sourceWeight": "113529", "direction": "Imp", "source_type": "secondary", "targetWeight": "113529" } }, { "key": "geid_107_8592", "source": "MadagascarMalagasyRepublic", "target": "Mauritius", "attributes": { "weight": 146455, "sourceWeight": "146455", "direction": "Imp", "source_type": "secondary", "targetWeight": "146455" } }, { "key": "geid_107_8593", "source": "Spain", "target": "Mauritius", "attributes": { "weight": 49695, "sourceWeight": "49695", "direction": "Imp", "source_type": "secondary", "targetWeight": "49695" } }, { "key": "geid_107_8594", "source": "Italy", "target": "Mauritius", "attributes": { "weight": 16667, "sourceWeight": "16667", "direction": "Imp", "source_type": "secondary", "targetWeight": "16667" } }, { "key": "geid_107_8595", "source": "PeoplesRepublicofChinaChina", "target": "Mauritius", "attributes": { "weight": 93486, "sourceWeight": "93486", "direction": "Imp", "source_type": "secondary", "targetWeight": "93486" } }, { "key": "geid_107_8596", "source": "UnitedStatesofAmerica", "target": "Mauritius", "attributes": { "weight": 260194, "sourceWeight": "260194", "direction": "Imp", "source_type": "secondary", "targetWeight": "260194" } }, { "key": "geid_107_8597", "source": "Chile", "target": "Mauritius", "attributes": { "weight": 33739, "sourceWeight": "33739", "direction": "Imp", "source_type": "secondary", "targetWeight": "33739" } }, { "key": "geid_107_8598", "source": "Mauritius", "target": "UnitedKingdom", "attributes": { "weight": 920933, "sourceWeight": "920933", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8599", "source": "Mauritius", "target": "CanadaProvinceofCanada", "attributes": { "weight": 172576, "sourceWeight": "172576", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8600", "source": "Mauritius", "target": "SouthAfrica", "attributes": { "weight": 12962, "sourceWeight": "12962", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8601", "source": "Mauritius", "target": "India", "attributes": { "weight": 2492472, "sourceWeight": "2492472", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8602", "source": "Mauritius", "target": "MauritiusDependencies", "attributes": { "weight": 4732, "sourceWeight": "4732", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8603", "source": "Mauritius", "target": "Seychelles", "attributes": { "weight": 3216, "sourceWeight": "3216", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8604", "source": "Mauritius", "target": "HongKong", "attributes": { "weight": 1822, "sourceWeight": "1822", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8605", "source": "Mauritius", "target": "BritishColoniesother", "attributes": { "weight": 2041, "sourceWeight": "2041", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8606", "source": "Mauritius", "target": "Belgium", "attributes": { "weight": 13086, "sourceWeight": "13086", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8607", "source": "Mauritius", "target": "France", "attributes": { "weight": 4609, "sourceWeight": "4609", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8608", "source": "Mauritius", "target": "FrenchColonies", "attributes": { "weight": 6394, "sourceWeight": "6394", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8609", "source": "UnitedKingdom", "target": "Seychelles", "attributes": { "weight": 34391, "sourceWeight": "34391", "direction": "Imp", "source_type": "secondary", "targetWeight": "34391" } }, { "key": "geid_107_8610", "source": "India", "target": "Seychelles", "attributes": { "weight": 45958, "sourceWeight": "45958", "direction": "Imp", "source_type": "secondary", "targetWeight": "45958" } }, { "key": "geid_107_8611", "source": "Mauritius", "target": "Seychelles", "attributes": { "weight": 3086, "sourceWeight": "3086", "direction": "Imp", "source_type": "secondary", "targetWeight": "3086" } }, { "key": "geid_107_8612", "source": "BritishColoniesother", "target": "Seychelles", "attributes": { "weight": 4383, "sourceWeight": "4383", "direction": "Imp", "source_type": "secondary", "targetWeight": "4383" } }, { "key": "geid_107_8613", "source": "GermanyZollverein", "target": "Seychelles", "attributes": { "weight": 1254, "sourceWeight": "1254", "direction": "Imp", "source_type": "secondary", "targetWeight": "1254" } }, { "key": "geid_107_8614", "source": "DutchColonies", "target": "Seychelles", "attributes": { "weight": 7589, "sourceWeight": "7589", "direction": "Imp", "source_type": "secondary", "targetWeight": "7589" } }, { "key": "geid_107_8615", "source": "France", "target": "Seychelles", "attributes": { "weight": 8772, "sourceWeight": "8772", "direction": "Imp", "source_type": "secondary", "targetWeight": "8772" } }, { "key": "geid_107_8616", "source": "FrenchColonies", "target": "Seychelles", "attributes": { "weight": 7855, "sourceWeight": "7855", "direction": "Imp", "source_type": "secondary", "targetWeight": "7855" } }, { "key": "geid_107_8617", "source": "Arabia", "target": "Seychelles", "attributes": { "weight": 2390, "sourceWeight": "2390", "direction": "Imp", "source_type": "secondary", "targetWeight": "2390" } }, { "key": "geid_107_8618", "source": "Japan", "target": "Seychelles", "attributes": { "weight": 3552, "sourceWeight": "3552", "direction": "Imp", "source_type": "secondary", "targetWeight": "3552" } }, { "key": "geid_107_8619", "source": "UnitedStatesofAmerica", "target": "Seychelles", "attributes": { "weight": 2169, "sourceWeight": "2169", "direction": "Imp", "source_type": "secondary", "targetWeight": "2169" } }, { "key": "geid_107_8620", "source": "Seychelles", "target": "UnitedKingdom", "attributes": { "weight": 77570, "sourceWeight": "77570", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8621", "source": "Seychelles", "target": "SouthAfrica", "attributes": { "weight": 15326, "sourceWeight": "15326", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8622", "source": "Seychelles", "target": "India", "attributes": { "weight": 6346, "sourceWeight": "6346", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8623", "source": "Seychelles", "target": "Mauritius", "attributes": { "weight": 5244, "sourceWeight": "5244", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8624", "source": "Seychelles", "target": "BritishColoniesother", "attributes": { "weight": 554, "sourceWeight": "554", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8625", "source": "Seychelles", "target": "GermanyZollverein", "attributes": { "weight": 47, "sourceWeight": "47", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8626", "source": "Seychelles", "target": "Belgium", "attributes": { "weight": 16020, "sourceWeight": "16020", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8627", "source": "Seychelles", "target": "France", "attributes": { "weight": 25363, "sourceWeight": "25363", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8628", "source": "Seychelles", "target": "FrenchColonies", "attributes": { "weight": 862, "sourceWeight": "862", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8629", "source": "UnitedKingdom", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 10255427, "sourceWeight": "10255427", "direction": "Imp", "source_type": "secondary", "targetWeight": "10255427" } }, { "key": "geid_107_8630", "source": "UnitedKingdom", "target": "TongaHaʻapai", "attributes": { "weight": 30024, "sourceWeight": "30024", "direction": "Imp", "source_type": "secondary", "targetWeight": "30024" } }, { "key": "geid_107_8631", "source": "CanadaProvinceofCanada", "target": "TongaHaʻapai", "attributes": { "weight": 7734, "sourceWeight": "7734", "direction": "Imp", "source_type": "secondary", "targetWeight": "7734" } }, { "key": "geid_107_8632", "source": "Australia", "target": "TongaHaʻapai", "attributes": { "weight": 77727, "sourceWeight": "77727", "direction": "Imp", "source_type": "secondary", "targetWeight": "77727" } }, { "key": "geid_107_8633", "source": "NewZealand", "target": "TongaHaʻapai", "attributes": { "weight": 87357, "sourceWeight": "87357", "direction": "Imp", "source_type": "secondary", "targetWeight": "87357" } }, { "key": "geid_107_8634", "source": "Fiji", "target": "TongaHaʻapai", "attributes": { "weight": 20514, "sourceWeight": "20514", "direction": "Imp", "source_type": "secondary", "targetWeight": "20514" } }, { "key": "geid_107_8635", "source": "BritishColoniesother", "target": "TongaHaʻapai", "attributes": { "weight": 68, "sourceWeight": "68", "direction": "Imp", "source_type": "secondary", "targetWeight": "68" } }, { "key": "geid_107_8636", "source": "GermanyZollverein", "target": "TongaHaʻapai", "attributes": { "weight": 379, "sourceWeight": "379", "direction": "Imp", "source_type": "secondary", "targetWeight": "379" } }, { "key": "geid_107_8637", "source": "UnitedStatesofAmerica", "target": "TongaHaʻapai", "attributes": { "weight": 6535, "sourceWeight": "6535", "direction": "Imp", "source_type": "secondary", "targetWeight": "6535" } }, { "key": "geid_107_8638", "source": "Japan", "target": "TongaHaʻapai", "attributes": { "weight": 1715, "sourceWeight": "1715", "direction": "Imp", "source_type": "secondary", "targetWeight": "1715" } }, { "key": "geid_107_8639", "source": "TongaHaʻapai", "target": "UnitedKingdom", "attributes": { "weight": 157908, "sourceWeight": "157908", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8640", "source": "TongaHaʻapai", "target": "Australia", "attributes": { "weight": 849, "sourceWeight": "849", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8641", "source": "TongaHaʻapai", "target": "NewZealand", "attributes": { "weight": 2462, "sourceWeight": "2462", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8642", "source": "TongaHaʻapai", "target": "Fiji", "attributes": { "weight": 1337, "sourceWeight": "1337", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8643", "source": "TongaHaʻapai", "target": "SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 3782, "sourceWeight": "3782", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8644", "source": "TongaHaʻapai", "target": "BritishColoniesother", "attributes": { "weight": 673, "sourceWeight": "673", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8645", "source": "TongaHaʻapai", "target": "Europe", "attributes": { "weight": 139580, "sourceWeight": "139580", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8646", "source": "TongaHaʻapai", "target": "America", "attributes": { "weight": 68, "sourceWeight": "68", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8647", "source": "UnitedKingdom", "target": "CaymanIs", "attributes": { "weight": 1211, "sourceWeight": "1211", "direction": "Imp", "source_type": "secondary", "targetWeight": "1211" } }, { "key": "geid_107_8648", "source": "Jamaica", "target": "CaymanIs", "attributes": { "weight": 14762, "sourceWeight": "14762", "direction": "Imp", "source_type": "secondary", "targetWeight": "14762" } }, { "key": "geid_107_8649", "source": "BritishColoniesother", "target": "CaymanIs", "attributes": { "weight": 16, "sourceWeight": "16", "direction": "Imp", "source_type": "secondary", "targetWeight": "16" } }, { "key": "geid_107_8650", "source": "UnitedStatesofAmerica", "target": "CaymanIs", "attributes": { "weight": 25145, "sourceWeight": "25145", "direction": "Imp", "source_type": "secondary", "targetWeight": "25145" } }, { "key": "geid_107_8651", "source": "Cuba", "target": "CaymanIs", "attributes": { "weight": 7500, "sourceWeight": "7500", "direction": "Imp", "source_type": "secondary", "targetWeight": "7500" } }, { "key": "geid_107_8652", "source": "CaymanIs", "target": "Jamaica", "attributes": { "weight": 5949, "sourceWeight": "5949", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8653", "source": "CaymanIs", "target": "UnitedStatesofAmerica", "attributes": { "weight": 3842, "sourceWeight": "3842", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8654", "source": "UnitedKingdom", "target": "TurksandCaicosIs", "attributes": { "weight": 4282, "sourceWeight": "4282", "direction": "Imp", "source_type": "secondary", "targetWeight": "4282" } }, { "key": "geid_107_8655", "source": "CanadaProvinceofCanada", "target": "TurksandCaicosIs", "attributes": { "weight": 684, "sourceWeight": "684", "direction": "Imp", "source_type": "secondary", "targetWeight": "684" } }, { "key": "geid_107_8656", "source": "Jamaica", "target": "TurksandCaicosIs", "attributes": { "weight": 1532, "sourceWeight": "1532", "direction": "Imp", "source_type": "secondary", "targetWeight": "1532" } }, { "key": "geid_107_8657", "source": "BritishColoniesother", "target": "TurksandCaicosIs", "attributes": { "weight": 1014, "sourceWeight": "1014", "direction": "Imp", "source_type": "secondary", "targetWeight": "1014" } }, { "key": "geid_107_8658", "source": "UnitedStatesofAmerica", "target": "TurksandCaicosIs", "attributes": { "weight": 31814, "sourceWeight": "31814", "direction": "Imp", "source_type": "secondary", "targetWeight": "31814" } }, { "key": "geid_107_8659", "source": "Haiti", "target": "TurksandCaicosIs", "attributes": { "weight": 734, "sourceWeight": "734", "direction": "Imp", "source_type": "secondary", "targetWeight": "734" } }, { "key": "geid_107_8660", "source": "DominicanRepublicSantoDomingo", "target": "TurksandCaicosIs", "attributes": { "weight": 2618, "sourceWeight": "2618", "direction": "Imp", "source_type": "secondary", "targetWeight": "2618" } }, { "key": "geid_107_8661", "source": "TurksandCaicosIs", "target": "UnitedKingdom", "attributes": { "weight": 131, "sourceWeight": "131", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8662", "source": "TurksandCaicosIs", "target": "CanadaProvinceofCanada", "attributes": { "weight": 9844, "sourceWeight": "9844", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8663", "source": "TurksandCaicosIs", "target": "NewfoundlandandLabradorNewfoundland", "attributes": { "weight": 563, "sourceWeight": "563", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8664", "source": "TurksandCaicosIs", "target": "Bahamas", "attributes": { "weight": 616, "sourceWeight": "616", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8665", "source": "TurksandCaicosIs", "target": "Jamaica", "attributes": { "weight": 744, "sourceWeight": "744", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8666", "source": "TurksandCaicosIs", "target": "BritishColoniesother", "attributes": { "weight": 57, "sourceWeight": "57", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8667", "source": "TurksandCaicosIs", "target": "UnitedStatesofAmerica", "attributes": { "weight": 14917, "sourceWeight": "14917", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8668", "source": "TurksandCaicosIs", "target": "Haiti", "attributes": { "weight": 1231, "sourceWeight": "1231", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8669", "source": "UnitedKingdom", "target": "FalklandIs", "attributes": { "weight": 270850, "sourceWeight": "270850", "direction": "Imp", "source_type": "secondary", "targetWeight": "270850" } }, { "key": "geid_107_8670", "source": "SouthAfrica", "target": "FalklandIs", "attributes": { "weight": 48611, "sourceWeight": "48611", "direction": "Imp", "source_type": "secondary", "targetWeight": "48611" } }, { "key": "geid_107_8671", "source": "BritishColoniesother", "target": "FalklandIs", "attributes": { "weight": 900, "sourceWeight": "900", "direction": "Imp", "source_type": "secondary", "targetWeight": "900" } }, { "key": "geid_107_8672", "source": "Norway", "target": "FalklandIs", "attributes": { "weight": 98387, "sourceWeight": "98387", "direction": "Imp", "source_type": "secondary", "targetWeight": "98387" } }, { "key": "geid_107_8673", "source": "UnitedStatesofAmerica", "target": "FalklandIs", "attributes": { "weight": 11825, "sourceWeight": "11825", "direction": "Imp", "source_type": "secondary", "targetWeight": "11825" } }, { "key": "geid_107_8674", "source": "Chile", "target": "FalklandIs", "attributes": { "weight": 14839, "sourceWeight": "14839", "direction": "Imp", "source_type": "secondary", "targetWeight": "14839" } }, { "key": "geid_107_8675", "source": "Uruguay", "target": "FalklandIs", "attributes": { "weight": 9557, "sourceWeight": "9557", "direction": "Imp", "source_type": "secondary", "targetWeight": "9557" } }, { "key": "geid_107_8676", "source": "ArgentinaLaPlata", "target": "FalklandIs", "attributes": { "weight": 19302, "sourceWeight": "19302", "direction": "Imp", "source_type": "secondary", "targetWeight": "19302" } }, { "key": "geid_107_8677", "source": "FalklandIs", "target": "UnitedKingdom", "attributes": { "weight": 359897, "sourceWeight": "359897", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8678", "source": "FalklandIs", "target": "SouthAfrica", "attributes": { "weight": 20000, "sourceWeight": "20000", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8679", "source": "FalklandIs", "target": "Norway", "attributes": { "weight": 618332, "sourceWeight": "618332", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8680", "source": "FalklandIs", "target": "CanaryIs", "attributes": { "weight": 409124, "sourceWeight": "409124", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8681", "source": "FalklandIs", "target": "UnitedStatesofAmerica", "attributes": { "weight": 45000, "sourceWeight": "45000", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8682", "source": "FalklandIs", "target": "Chile", "attributes": { "weight": 140, "sourceWeight": "140", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8683", "source": "FalklandIs", "target": "Brazil", "attributes": { "weight": 554628, "sourceWeight": "554628", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8684", "source": "FalklandIs", "target": "Uruguay", "attributes": { "weight": 468122, "sourceWeight": "468122", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8685", "source": "FalklandIs", "target": "ArgentinaLaPlata", "attributes": { "weight": 16495, "sourceWeight": "16495", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8686", "source": "UnitedKingdom", "target": "SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 25340, "sourceWeight": "25340", "direction": "Imp", "source_type": "secondary", "targetWeight": "25340" } }, { "key": "geid_107_8687", "source": "CanadaProvinceofCanada", "target": "SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 6181, "sourceWeight": "6181", "direction": "Imp", "source_type": "secondary", "targetWeight": "6181" } }, { "key": "geid_107_8688", "source": "Australia", "target": "SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 99448, "sourceWeight": "99448", "direction": "Imp", "source_type": "secondary", "targetWeight": "99448" } }, { "key": "geid_107_8689", "source": "NewZealand", "target": "SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 87541, "sourceWeight": "87541", "direction": "Imp", "source_type": "secondary", "targetWeight": "87541" } }, { "key": "geid_107_8690", "source": "Fiji", "target": "SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 7972, "sourceWeight": "7972", "direction": "Imp", "source_type": "secondary", "targetWeight": "7972" } }, { "key": "geid_107_8691", "source": "BritishColoniesother", "target": "SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 3345, "sourceWeight": "3345", "direction": "Imp", "source_type": "secondary", "targetWeight": "3345" } }, { "key": "geid_107_8692", "source": "UnitedStatesofAmerica", "target": "SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 42582, "sourceWeight": "42582", "direction": "Imp", "source_type": "secondary", "targetWeight": "42582" } }, { "key": "geid_107_8693", "source": "OthercountriesnonBritish", "target": "SamoaWesternSamoaGermanSamoa", "attributes": { "weight": 2394, "sourceWeight": "2394", "direction": "Imp", "source_type": "secondary", "targetWeight": "2394" } }, { "key": "geid_107_8694", "source": "SamoaWesternSamoaGermanSamoa", "target": "UnitedKingdom", "attributes": { "weight": 109273, "sourceWeight": "109273", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8695", "source": "SamoaWesternSamoaGermanSamoa", "target": "Australia", "attributes": { "weight": 104, "sourceWeight": "104", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8696", "source": "SamoaWesternSamoaGermanSamoa", "target": "NewZealand", "attributes": { "weight": 7054, "sourceWeight": "7054", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8697", "source": "SamoaWesternSamoaGermanSamoa", "target": "BritishColoniesother", "attributes": { "weight": 121, "sourceWeight": "121", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8698", "source": "SamoaWesternSamoaGermanSamoa", "target": "GermanyZollverein", "attributes": { "weight": 37513, "sourceWeight": "37513", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8699", "source": "SamoaWesternSamoaGermanSamoa", "target": "Netherlands", "attributes": { "weight": 21906, "sourceWeight": "21906", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8700", "source": "SamoaWesternSamoaGermanSamoa", "target": "Europe", "attributes": { "weight": 151629, "sourceWeight": "151629", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8701", "source": "SamoaWesternSamoaGermanSamoa", "target": "UnitedStatesofAmerica", "attributes": { "weight": 7895, "sourceWeight": "7895", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8702", "source": "SamoaWesternSamoaGermanSamoa", "target": "OthercountriesnonBritish", "attributes": { "weight": 8557, "sourceWeight": "8557", "direction": "Exp", "source_type": "secondary" } }, { "key": "geid_107_8703", "source": "UnitedKingdom", "target": "Nigeria", "attributes": { "weight": 7568815, "sourceWeight": "7568815", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7568815" } }, { "key": "geid_107_8704", "source": "CanadaProvinceofCanada", "target": "Nigeria", "attributes": { "weight": 852, "sourceWeight": "852", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "852" } }, { "key": "geid_107_8705", "source": "Gambia", "target": "Nigeria", "attributes": { "weight": 466, "sourceWeight": "466", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "466" } }, { "key": "geid_107_8706", "source": "SierraLeone", "target": "Nigeria", "attributes": { "weight": 74908, "sourceWeight": "74908", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "74908" } }, { "key": "geid_107_8707", "source": "GhanaGoldCoast", "target": "Nigeria", "attributes": { "weight": 672906, "sourceWeight": "672906", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "672906" } }, { "key": "geid_107_8708", "source": "France", "target": "Nigeria", "attributes": { "weight": 97367, "sourceWeight": "97367", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "97367" } }, { "key": "geid_107_8709", "source": "UnitedStatesofAmerica", "target": "Nigeria", "attributes": { "weight": 826230, "sourceWeight": "826230", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "826230" } }, { "key": "geid_107_8710", "source": "Netherlands", "target": "Nigeria", "attributes": { "weight": 424052, "sourceWeight": "424052", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "424052" } }, { "key": "geid_107_8711", "source": "GermanyZollverein", "target": "Nigeria", "attributes": { "weight": 821715, "sourceWeight": "821715", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "821715" } }, { "key": "geid_107_8712", "source": "Belgium", "target": "Nigeria", "attributes": { "weight": 49914, "sourceWeight": "49914", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "49914" } }, { "key": "geid_107_8713", "source": "Denmark", "target": "Nigeria", "attributes": { "weight": 5452, "sourceWeight": "5452", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5452" } }, { "key": "geid_107_8714", "source": "Portugal", "target": "Nigeria", "attributes": { "weight": 1165, "sourceWeight": "1165", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1165" } }, { "key": "geid_107_8715", "source": "Norway", "target": "Nigeria", "attributes": { "weight": 276868, "sourceWeight": "276868", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "276868" } }, { "key": "geid_107_8716", "source": "Switzerland", "target": "Nigeria", "attributes": { "weight": 17, "sourceWeight": "17", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "17" } }, { "key": "geid_107_8717", "source": "Italy", "target": "Nigeria", "attributes": { "weight": 47987, "sourceWeight": "47987", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "47987" } }, { "key": "geid_107_8718", "source": "Liberia", "target": "Nigeria", "attributes": { "weight": 549, "sourceWeight": "549", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "549" } }, { "key": "geid_107_8719", "source": "Sweden", "target": "Nigeria", "attributes": { "weight": 17440, "sourceWeight": "17440", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "17440" } }, { "key": "geid_107_8720", "source": "Japan", "target": "Nigeria", "attributes": { "weight": 166, "sourceWeight": "166", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "166" } }, { "key": "geid_107_8721", "source": "CamerounFrenchCameroons", "target": "Nigeria", "attributes": { "weight": 1241, "sourceWeight": "1241", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1241" } }, { "key": "geid_107_8722", "source": "FrenchColonies", "target": "Nigeria", "attributes": { "weight": 41250, "sourceWeight": "41250", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "41250" } }, { "key": "geid_107_8723", "source": "TogoFrenchTogoland", "target": "Nigeria", "attributes": { "weight": 92, "sourceWeight": "92", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "92" } }, { "key": "geid_107_8724", "source": "PortugueseColonies", "target": "Nigeria", "attributes": { "weight": 228, "sourceWeight": "228", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "228" } }, { "key": "geid_107_8725", "source": "SpanishColonies", "target": "Nigeria", "attributes": { "weight": 11688, "sourceWeight": "11688", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "11688" } }, { "key": "geid_107_8726", "source": "TripolitaniaRegencyofTripoli", "target": "Nigeria", "attributes": { "weight": 3614, "sourceWeight": "3614", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3614" } }, { "key": "geid_107_8727", "source": "Nigeria", "target": "UnitedKingdom", "attributes": { "weight": 8658694, "sourceWeight": "8658694", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8728", "source": "Nigeria", "target": "Gambia", "attributes": { "weight": 200, "sourceWeight": "200", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8729", "source": "Nigeria", "target": "SierraLeone", "attributes": { "weight": 11484, "sourceWeight": "11484", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8730", "source": "Nigeria", "target": "GhanaGoldCoast", "attributes": { "weight": 124952, "sourceWeight": "124952", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8731", "source": "Nigeria", "target": "CanadaProvinceofCanada", "attributes": { "weight": 651, "sourceWeight": "651", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8732", "source": "Nigeria", "target": "SouthAfrica", "attributes": { "weight": 13888, "sourceWeight": "13888", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8733", "source": "Nigeria", "target": "Spain", "attributes": { "weight": 1251, "sourceWeight": "1251", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8734", "source": "Nigeria", "target": "UnitedStatesofAmerica", "attributes": { "weight": 812797, "sourceWeight": "812797", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8735", "source": "Nigeria", "target": "France", "attributes": { "weight": 496714, "sourceWeight": "496714", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8736", "source": "Nigeria", "target": "Netherlands", "attributes": { "weight": 817585, "sourceWeight": "817585", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8737", "source": "Nigeria", "target": "Belgium", "attributes": { "weight": 154817, "sourceWeight": "154817", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8738", "source": "Nigeria", "target": "GermanyZollverein", "attributes": { "weight": 2938231, "sourceWeight": "2938231", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8739", "source": "Nigeria", "target": "Liberia", "attributes": { "weight": 139, "sourceWeight": "139", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8740", "source": "Nigeria", "target": "CamerounFrenchCameroons", "attributes": { "weight": 1729, "sourceWeight": "1729", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8741", "source": "Nigeria", "target": "SpanishColonies", "attributes": { "weight": 698, "sourceWeight": "698", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8742", "source": "Nigeria", "target": "FrenchColonies", "attributes": { "weight": 9447, "sourceWeight": "9447", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8743", "source": "Nigeria", "target": "TogoFrenchTogoland", "attributes": { "weight": 1402, "sourceWeight": "1402", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8744", "source": "Nigeria", "target": "Italy", "attributes": { "weight": 346172, "sourceWeight": "346172", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8745", "source": "Nigeria", "target": "Sweden", "attributes": { "weight": 83, "sourceWeight": "83", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_8746", "source": "Nicaragua", "target": "UnitedStatesofAmerica", "attributes": { "weight": 1684474.1964689905, "sourceWeight": "1684474.1964689905", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8747", "source": "Nicaragua", "target": "UnitedKingdom", "attributes": { "weight": 97591.44409234947, "sourceWeight": "97591.44409234947", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8748", "source": "Nicaragua", "target": "France", "attributes": { "weight": 477065.86690810317, "sourceWeight": "477065.86690810317", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8749", "source": "Nicaragua", "target": "Netherlands", "attributes": { "weight": 164739.0221819828, "sourceWeight": "164739.0221819828", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8750", "source": "Nicaragua", "target": "Italy", "attributes": { "weight": 49518.56043458579, "sourceWeight": "49518.56043458579", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8751", "source": "Nicaragua", "target": "Spain", "attributes": { "weight": 134849.7057492078, "sourceWeight": "134849.7057492078", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8752", "source": "Nicaragua", "target": "GermanyZollverein", "attributes": { "weight": 92577.41059302851, "sourceWeight": "92577.41059302851", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8753", "source": "Nicaragua", "target": "Belgium", "attributes": { "weight": 9188.32050701675, "sourceWeight": "9188.32050701675", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8754", "source": "Nicaragua", "target": "Denmark", "attributes": { "weight": 18639.65595291987, "sourceWeight": "18639.65595291987", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8755", "source": "Nicaragua", "target": "Sweden", "attributes": { "weight": 17872.114078768675, "sourceWeight": "17872.114078768675", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8756", "source": "Nicaragua", "target": "Finland", "attributes": { "weight": 20507.01674966048, "sourceWeight": "20507.01674966048", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8757", "source": "Nicaragua", "target": "Norway", "attributes": { "weight": 30454.051607062018, "sourceWeight": "30454.051607062018", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8758", "source": "Nicaragua", "target": "Europeother", "attributes": { "weight": 4923.042100497963, "sourceWeight": "4923.042100497963", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8759", "source": "Nicaragua", "target": "CanadaProvinceofCanada", "attributes": { "weight": 17904.255319148935, "sourceWeight": "17904.255319148935", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8760", "source": "Nicaragua", "target": "Panama", "attributes": { "weight": 10890.67451335446, "sourceWeight": "10890.67451335446", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8761", "source": "Nicaragua", "target": "Guatemala", "attributes": { "weight": 9197.3743775464, "sourceWeight": "9197.3743775464", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8762", "source": "Nicaragua", "target": "Honduras", "attributes": { "weight": 9166.364870982345, "sourceWeight": "9166.364870982345", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8763", "source": "Nicaragua", "target": "CostaRica", "attributes": { "weight": 7023.992756903576, "sourceWeight": "7023.992756903576", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8764", "source": "Nicaragua", "target": "ElSalvador", "attributes": { "weight": 6827.0710728836575, "sourceWeight": "6827.0710728836575", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8765", "source": "Nicaragua", "target": "Mexico", "attributes": { "weight": 300.36215482118604, "sourceWeight": "300.36215482118604", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8766", "source": "Nicaragua", "target": "BelizeBritishHonduras", "attributes": { "weight": 50.92802172928927, "sourceWeight": "50.92802172928927", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8767", "source": "Nicaragua", "target": "WestIndies", "attributes": { "weight": 71991.1724762336, "sourceWeight": "71991.1724762336", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8768", "source": "Nicaragua", "target": "Chile", "attributes": { "weight": 226.34676324128563, "sourceWeight": "226.34676324128563", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8769", "source": "Nicaragua", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 3087.5961973743774, "sourceWeight": "3087.5961973743774", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8770", "source": "Nicaragua", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 1183.793571751924, "sourceWeight": "1183.793571751924", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8771", "source": "UnitedStatesofAmerica", "target": "Nicaragua", "attributes": { "weight": 1454332.7297419647, "sourceWeight": "1454332.7297419647", "direction": "Imp", "source_type": "primary", "targetWeight": "1454332.7297419647" } }, { "key": "geid_107_8772", "source": "UnitedKingdom", "target": "Nicaragua", "attributes": { "weight": 236047.53282028067, "sourceWeight": "236047.53282028067", "direction": "Imp", "source_type": "primary", "targetWeight": "236047.53282028067" } }, { "key": "geid_107_8773", "source": "France", "target": "Nicaragua", "attributes": { "weight": 45110.68356722499, "sourceWeight": "45110.68356722499", "direction": "Imp", "source_type": "primary", "targetWeight": "45110.68356722499" } }, { "key": "geid_107_8774", "source": "Italy", "target": "Nicaragua", "attributes": { "weight": 24994.79402444545, "sourceWeight": "24994.79402444545", "direction": "Imp", "source_type": "primary", "targetWeight": "24994.79402444545" } }, { "key": "geid_107_8775", "source": "Spain", "target": "Nicaragua", "attributes": { "weight": 7260.9778180172025, "sourceWeight": "7260.9778180172025", "direction": "Imp", "source_type": "primary", "targetWeight": "7260.9778180172025" } }, { "key": "geid_107_8776", "source": "GermanyZollverein", "target": "Nicaragua", "attributes": { "weight": 89521.50294250791, "sourceWeight": "89521.50294250791", "direction": "Imp", "source_type": "primary", "targetWeight": "89521.50294250791" } }, { "key": "geid_107_8777", "source": "Europeother", "target": "Nicaragua", "attributes": { "weight": 26774.558623811678, "sourceWeight": "26774.558623811678", "direction": "Imp", "source_type": "primary", "targetWeight": "26774.558623811678" } }, { "key": "geid_107_8778", "source": "Panama", "target": "Nicaragua", "attributes": { "weight": 15367.813490267088, "sourceWeight": "15367.813490267088", "direction": "Imp", "source_type": "primary", "targetWeight": "15367.813490267088" } }, { "key": "geid_107_8779", "source": "Guatemala", "target": "Nicaragua", "attributes": { "weight": 1381.3942960615664, "sourceWeight": "1381.3942960615664", "direction": "Imp", "source_type": "primary", "targetWeight": "1381.3942960615664" } }, { "key": "geid_107_8780", "source": "Honduras", "target": "Nicaragua", "attributes": { "weight": 12149.84155726573, "sourceWeight": "12149.84155726573", "direction": "Imp", "source_type": "primary", "targetWeight": "12149.84155726573" } }, { "key": "geid_107_8781", "source": "CostaRica", "target": "Nicaragua", "attributes": { "weight": 3967.1797193300135, "sourceWeight": "3967.1797193300135", "direction": "Imp", "source_type": "primary", "targetWeight": "3967.1797193300135" } }, { "key": "geid_107_8782", "source": "ElSalvador", "target": "Nicaragua", "attributes": { "weight": 12820.054323223178, "sourceWeight": "12820.054323223178", "direction": "Imp", "source_type": "primary", "targetWeight": "12820.054323223178" } }, { "key": "geid_107_8783", "source": "Mexico", "target": "Nicaragua", "attributes": { "weight": 8847.894975101855, "sourceWeight": "8847.894975101855", "direction": "Imp", "source_type": "primary", "targetWeight": "8847.894975101855" } }, { "key": "geid_107_8784", "source": "WestIndies", "target": "Nicaragua", "attributes": { "weight": 6317.790855590765, "sourceWeight": "6317.790855590765", "direction": "Imp", "source_type": "primary", "targetWeight": "6317.790855590765" } }, { "key": "geid_107_8785", "source": "Chile", "target": "Nicaragua", "attributes": { "weight": 0.22634676324128564, "sourceWeight": "0.22634676324128564", "direction": "Imp", "source_type": "primary", "targetWeight": "0.22634676324128564" } }, { "key": "geid_107_8786", "source": "Peru", "target": "Nicaragua", "attributes": { "weight": 39715.708465368945, "sourceWeight": "39715.708465368945", "direction": "Imp", "source_type": "primary", "targetWeight": "39715.708465368945" } }, { "key": "geid_107_8787", "source": "Americaother", "target": "Nicaragua", "attributes": { "weight": 398.596650067904, "sourceWeight": "398.596650067904", "direction": "Imp", "source_type": "primary", "targetWeight": "398.596650067904" } }, { "key": "geid_107_8788", "source": "PeoplesRepublicofChinaChina", "target": "Nicaragua", "attributes": { "weight": 684.4726120416478, "sourceWeight": "684.4726120416478", "direction": "Imp", "source_type": "primary", "targetWeight": "684.4726120416478" } }, { "key": "geid_107_8789", "source": "Japan", "target": "Nicaragua", "attributes": { "weight": 7535.083748302399, "sourceWeight": "7535.083748302399", "direction": "Imp", "source_type": "primary", "targetWeight": "7535.083748302399" } }, { "key": "geid_107_8790", "source": "India", "target": "Nicaragua", "attributes": { "weight": 181.98279764599366, "sourceWeight": "181.98279764599366", "direction": "Imp", "source_type": "primary", "targetWeight": "181.98279764599366" } }, { "key": "geid_107_8791", "source": "Asiaother", "target": "Nicaragua", "attributes": { "weight": 1.5844273426889994, "sourceWeight": "1.5844273426889994", "direction": "Imp", "source_type": "primary", "targetWeight": "1.5844273426889994" } }, { "key": "geid_107_8792", "source": "EthiopiaAbyssinia", "target": "Poland", "attributes": { "weight": 2306.903576274766, "sourceWeight": "2306.903576274766", "direction": "Imp", "source_type": "primary", "targetWeight": "2306.903576274766" } }, { "key": "geid_107_8793", "source": "Afghanistan", "target": "Poland", "attributes": { "weight": 43.52648257122199, "sourceWeight": "43.52648257122199", "direction": "Imp", "source_type": "primary", "targetWeight": "43.52648257122199" } }, { "key": "geid_107_8794", "source": "Albania", "target": "Poland", "attributes": { "weight": 1436.3739248503257, "sourceWeight": "1436.3739248503257", "direction": "Imp", "source_type": "primary", "targetWeight": "1436.3739248503257" } }, { "key": "geid_107_8795", "source": "AlgeriaRegencyofAlgiers", "target": "Poland", "attributes": { "weight": 59370.1222271468, "sourceWeight": "59370.1222271468", "direction": "Imp", "source_type": "primary", "targetWeight": "59370.1222271468" } }, { "key": "geid_107_8796", "source": "UnitedKingdom", "target": "Poland", "attributes": { "weight": 5191447.102752218, "sourceWeight": "5191447.102752218", "direction": "Imp", "source_type": "primary", "targetWeight": "5191447.102752218" } }, { "key": "geid_107_8797", "source": "BritishWestIndies_GuyanaBritishGuiana", "target": "Poland", "attributes": { "weight": 5832.548664543747, "sourceWeight": "5832.548664543747", "direction": "Imp", "source_type": "primary", "targetWeight": "5832.548664543747" } }, { "key": "geid_107_8798", "source": "FrenchGuiana_FrenchWestIndies", "target": "Poland", "attributes": { "weight": 87.05296514244398, "sourceWeight": "87.05296514244398", "direction": "Imp", "source_type": "primary", "targetWeight": "87.05296514244398" } }, { "key": "geid_107_8799", "source": "NetherlandsAntilles_SurinamDutchGuiana", "target": "Poland", "attributes": { "weight": 174.10593028488796, "sourceWeight": "174.10593028488796", "direction": "Imp", "source_type": "primary", "targetWeight": "174.10593028488796" } }, { "key": "geid_107_8800", "source": "VirginIslandsDanishWestIndies", "target": "Poland", "attributes": { "weight": 217.63241285610997, "sourceWeight": "217.63241285610997", "direction": "Imp", "source_type": "primary", "targetWeight": "217.63241285610997" } }, { "key": "geid_107_8801", "source": "Arabia", "target": "Poland", "attributes": { "weight": 10228.723404237167, "sourceWeight": "10228.723404237167", "direction": "Imp", "source_type": "primary", "targetWeight": "10228.723404237167" } }, { "key": "geid_107_8802", "source": "ArgentinaLaPlata", "target": "Poland", "attributes": { "weight": 561578.6781339061, "sourceWeight": "561578.6781339061", "direction": "Imp", "source_type": "primary", "targetWeight": "561578.6781339061" } }, { "key": "geid_107_8803", "source": "Australia", "target": "Poland", "attributes": { "weight": 474482.18650889094, "sourceWeight": "474482.18650889094", "direction": "Imp", "source_type": "primary", "targetWeight": "474482.18650889094" } }, { "key": "geid_107_8804", "source": "Austria", "target": "Poland", "attributes": { "weight": 7541659.52918535, "sourceWeight": "7541659.52918535", "direction": "Imp", "source_type": "primary", "targetWeight": "7541659.52918535" } }, { "key": "geid_107_8805", "source": "Belgium", "target": "Poland", "attributes": { "weight": 1299744.29605926, "sourceWeight": "1299744.29605926", "direction": "Imp", "source_type": "primary", "targetWeight": "1299744.29605926" } }, { "key": "geid_107_8806", "source": "Bolivia", "target": "Poland", "attributes": { "weight": 6485.445903112077, "sourceWeight": "6485.445903112077", "direction": "Imp", "source_type": "primary", "targetWeight": "6485.445903112077" } }, { "key": "geid_107_8807", "source": "Brazil", "target": "Poland", "attributes": { "weight": 472915.23313632695, "sourceWeight": "472915.23313632695", "direction": "Imp", "source_type": "primary", "targetWeight": "472915.23313632695" } }, { "key": "geid_107_8808", "source": "Bulgaria", "target": "Poland", "attributes": { "weight": 320920.75599761977, "sourceWeight": "320920.75599761977", "direction": "Imp", "source_type": "primary", "targetWeight": "320920.75599761977" } }, { "key": "geid_107_8809", "source": "SriLankaCeylon", "target": "Poland", "attributes": { "weight": 13275.577184222708, "sourceWeight": "13275.577184222708", "direction": "Imp", "source_type": "primary", "targetWeight": "13275.577184222708" } }, { "key": "geid_107_8810", "source": "Chile", "target": "Poland", "attributes": { "weight": 499684.01991762844, "sourceWeight": "499684.01991762844", "direction": "Imp", "source_type": "primary", "targetWeight": "499684.01991762844" } }, { "key": "geid_107_8811", "source": "PeoplesRepublicofChinaChina", "target": "Poland", "attributes": { "weight": 102983.65776351123, "sourceWeight": "102983.65776351123", "direction": "Imp", "source_type": "primary", "targetWeight": "102983.65776351123" } }, { "key": "geid_107_8812", "source": "CostaRica", "target": "Poland", "attributes": { "weight": 2829.2213671294294, "sourceWeight": "2829.2213671294294", "direction": "Imp", "source_type": "primary", "targetWeight": "2829.2213671294294" } }, { "key": "geid_107_8813", "source": "Czechoslovakia", "target": "Poland", "attributes": { "weight": 3685996.6500613634, "sourceWeight": "3685996.6500613634", "direction": "Imp", "source_type": "primary", "targetWeight": "3685996.6500613634" } }, { "key": "geid_107_8814", "source": "Denmark", "target": "Poland", "attributes": { "weight": 644235.4685366567, "sourceWeight": "644235.4685366567", "direction": "Imp", "source_type": "primary", "targetWeight": "644235.4685366567" } }, { "key": "geid_107_8815", "source": "DominicanRepublicSantoDomingo", "target": "Poland", "attributes": { "weight": 130.57944771366599, "sourceWeight": "130.57944771366599", "direction": "Imp", "source_type": "primary", "targetWeight": "130.57944771366599" } }, { "key": "geid_107_8816", "source": "EgyptArabRepublicEgypt", "target": "Poland", "attributes": { "weight": 159785.71751895593, "sourceWeight": "159785.71751895593", "direction": "Imp", "source_type": "primary", "targetWeight": "159785.71751895593" } }, { "key": "geid_107_8817", "source": "Ecuador", "target": "Poland", "attributes": { "weight": 827.0031688532179, "sourceWeight": "827.0031688532179", "direction": "Imp", "source_type": "primary", "targetWeight": "827.0031688532179" } }, { "key": "geid_107_8818", "source": "Estonia", "target": "Poland", "attributes": { "weight": 11316.885468517718, "sourceWeight": "11316.885468517718", "direction": "Imp", "source_type": "primary", "targetWeight": "11316.885468517718" } }, { "key": "geid_107_8819", "source": "Philippines", "target": "Poland", "attributes": { "weight": 348.2118605697759, "sourceWeight": "348.2118605697759", "direction": "Imp", "source_type": "primary", "targetWeight": "348.2118605697759" } }, { "key": "geid_107_8820", "source": "Finland", "target": "Poland", "attributes": { "weight": 90186.87188757196, "sourceWeight": "90186.87188757196", "direction": "Imp", "source_type": "primary", "targetWeight": "90186.87188757196" } }, { "key": "geid_107_8821", "source": "France", "target": "Poland", "attributes": { "weight": 3170817.2023483794, "sourceWeight": "3170817.2023483794", "direction": "Imp", "source_type": "primary", "targetWeight": "3170817.2023483794" } }, { "key": "geid_107_8822", "source": "DanzigFreeCityofDanzig", "target": "Poland", "attributes": { "weight": 97107.58261639626, "sourceWeight": "97107.58261639626", "direction": "Imp", "source_type": "primary", "targetWeight": "97107.58261639626" } }, { "key": "geid_107_8823", "source": "Crete_Greece", "target": "Poland", "attributes": { "weight": 31600.226346707164, "sourceWeight": "31600.226346707164", "direction": "Imp", "source_type": "primary", "targetWeight": "31600.226346707164" } }, { "key": "geid_107_8824", "source": "Guatemala", "target": "Poland", "attributes": { "weight": 30512.064282426618, "sourceWeight": "30512.064282426618", "direction": "Imp", "source_type": "primary", "targetWeight": "30512.064282426618" } }, { "key": "geid_107_8825", "source": "Haiti", "target": "Poland", "attributes": { "weight": 652.8972385683298, "sourceWeight": "652.8972385683298", "direction": "Imp", "source_type": "primary", "targetWeight": "652.8972385683298" } }, { "key": "geid_107_8826", "source": "Spain", "target": "Poland", "attributes": { "weight": 385470.52965074196, "sourceWeight": "385470.52965074196", "direction": "Imp", "source_type": "primary", "targetWeight": "385470.52965074196" } }, { "key": "geid_107_8827", "source": "Netherlands", "target": "Poland", "attributes": { "weight": 1078194.49977174, "sourceWeight": "1078194.49977174", "direction": "Imp", "source_type": "primary", "targetWeight": "1078194.49977174" } }, { "key": "geid_107_8828", "source": "Honduras", "target": "Poland", "attributes": { "weight": 4178.5423268373115, "sourceWeight": "4178.5423268373115", "direction": "Imp", "source_type": "primary", "targetWeight": "4178.5423268373115" } }, { "key": "geid_107_8829", "source": "HongKong", "target": "Poland", "attributes": { "weight": 130.57944771366599, "sourceWeight": "130.57944771366599", "direction": "Imp", "source_type": "primary", "targetWeight": "130.57944771366599" } }, { "key": "geid_107_8830", "source": "India", "target": "Poland", "attributes": { "weight": 847330.0362139785, "sourceWeight": "847330.0362139785", "direction": "Imp", "source_type": "primary", "targetWeight": "847330.0362139785" } }, { "key": "geid_107_8831", "source": "FrenchIndia", "target": "Poland", "attributes": { "weight": 1175.2150294229937, "sourceWeight": "1175.2150294229937", "direction": "Imp", "source_type": "primary", "targetWeight": "1175.2150294229937" } }, { "key": "geid_107_8832", "source": "IndonesiaDutchEastIndies", "target": "Poland", "attributes": { "weight": 60980.602082282014, "sourceWeight": "60980.602082282014", "direction": "Imp", "source_type": "primary", "targetWeight": "60980.602082282014" } }, { "key": "geid_107_8833", "source": "PortugueseIndiainclGoaDiuDaman", "target": "Poland", "attributes": { "weight": 174.10593028488796, "sourceWeight": "174.10593028488796", "direction": "Imp", "source_type": "primary", "targetWeight": "174.10593028488796" } }, { "key": "geid_107_8834", "source": "FrenchIndochina", "target": "Poland", "attributes": { "weight": 435.26482571221993, "sourceWeight": "435.26482571221993", "direction": "Imp", "source_type": "primary", "targetWeight": "435.26482571221993" } }, { "key": "geid_107_8835", "source": "Japan_KoreaChosen", "target": "Poland", "attributes": { "weight": 19064.59936619523, "sourceWeight": "19064.59936619523", "direction": "Imp", "source_type": "primary", "targetWeight": "19064.59936619523" } }, { "key": "geid_107_8836", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Poland", "attributes": { "weight": 147032.4581255879, "sourceWeight": "147032.4581255879", "direction": "Imp", "source_type": "primary", "targetWeight": "147032.4581255879" } }, { "key": "geid_107_8837", "source": "CanadaProvinceofCanada", "target": "Poland", "attributes": { "weight": 26464.10140330297, "sourceWeight": "26464.10140330297", "direction": "Imp", "source_type": "primary", "targetWeight": "26464.10140330297" } }, { "key": "geid_107_8838", "source": "BritishWestAfrica", "target": "Poland", "attributes": { "weight": 21719.714803039773, "sourceWeight": "21719.714803039773", "direction": "Imp", "source_type": "primary", "targetWeight": "21719.714803039773" } }, { "key": "geid_107_8839", "source": "BritishEastAfrica", "target": "Poland", "attributes": { "weight": 44527.591670360096, "sourceWeight": "44527.591670360096", "direction": "Imp", "source_type": "primary", "targetWeight": "44527.591670360096" } }, { "key": "geid_107_8840", "source": "FrenchWestAfrica", "target": "Poland", "attributes": { "weight": 2045.7446808474335, "sourceWeight": "2045.7446808474335", "direction": "Imp", "source_type": "primary", "targetWeight": "2045.7446808474335" } }, { "key": "geid_107_8841", "source": "FrenchEastAfrica", "target": "Poland", "attributes": { "weight": 1175.2150294229937, "sourceWeight": "1175.2150294229937", "direction": "Imp", "source_type": "primary", "targetWeight": "1175.2150294229937" } }, { "key": "geid_107_8842", "source": "SpanishWestAfrica", "target": "Poland", "attributes": { "weight": 348.2118605697759, "sourceWeight": "348.2118605697759", "direction": "Imp", "source_type": "primary", "targetWeight": "348.2118605697759" } }, { "key": "geid_107_8843", "source": "AngolaPortugueseWestAfrica", "target": "Poland", "attributes": { "weight": 739.9502037107738, "sourceWeight": "739.9502037107738", "direction": "Imp", "source_type": "primary", "targetWeight": "739.9502037107738" } }, { "key": "geid_107_8844", "source": "MozambiquePortugueseEastAfrica", "target": "Poland", "attributes": { "weight": 87.05296514244398, "sourceWeight": "87.05296514244398", "direction": "Imp", "source_type": "primary", "targetWeight": "87.05296514244398" } }, { "key": "geid_107_8845", "source": "ItalianEastAfrica", "target": "Poland", "attributes": { "weight": 2916.2743322718734, "sourceWeight": "2916.2743322718734", "direction": "Imp", "source_type": "primary", "targetWeight": "2916.2743322718734" } }, { "key": "geid_107_8846", "source": "ColombiaNewGranadaGranColombia", "target": "Poland", "attributes": { "weight": 1044.6355817093279, "sourceWeight": "1044.6355817093279", "direction": "Imp", "source_type": "primary", "targetWeight": "1044.6355817093279" } }, { "key": "geid_107_8847", "source": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "target": "Poland", "attributes": { "weight": 739.9502037107738, "sourceWeight": "739.9502037107738", "direction": "Imp", "source_type": "primary", "targetWeight": "739.9502037107738" } }, { "key": "geid_107_8848", "source": "Cuba", "target": "Poland", "attributes": { "weight": 6224.287007684745, "sourceWeight": "6224.287007684745", "direction": "Imp", "source_type": "primary", "targetWeight": "6224.287007684745" } }, { "key": "geid_107_8849", "source": "Liberia", "target": "Poland", "attributes": { "weight": 1305.7944771366597, "sourceWeight": "1305.7944771366597", "direction": "Imp", "source_type": "primary", "targetWeight": "1305.7944771366597" } }, { "key": "geid_107_8850", "source": "Lithuania", "target": "Poland", "attributes": { "weight": 19456.33770933623, "sourceWeight": "19456.33770933623", "direction": "Imp", "source_type": "primary", "targetWeight": "19456.33770933623" } }, { "key": "geid_107_8851", "source": "Luxemburg", "target": "Poland", "attributes": { "weight": 4831.439565405641, "sourceWeight": "4831.439565405641", "direction": "Imp", "source_type": "primary", "targetWeight": "4831.439565405641" } }, { "key": "geid_107_8852", "source": "Latvia", "target": "Poland", "attributes": { "weight": 295718.9225888822, "sourceWeight": "295718.9225888822", "direction": "Imp", "source_type": "primary", "targetWeight": "295718.9225888822" } }, { "key": "geid_107_8853", "source": "MadagascarMalagasyRepublic", "target": "Poland", "attributes": { "weight": 4613.807152549532, "sourceWeight": "4613.807152549532", "direction": "Imp", "source_type": "primary", "targetWeight": "4613.807152549532" } }, { "key": "geid_107_8854", "source": "Malta", "target": "Poland", "attributes": { "weight": 43.52648257122199, "sourceWeight": "43.52648257122199", "direction": "Imp", "source_type": "primary", "targetWeight": "43.52648257122199" } }, { "key": "geid_107_8855", "source": "Morocco", "target": "Poland", "attributes": { "weight": 3699.7510185538695, "sourceWeight": "3699.7510185538695", "direction": "Imp", "source_type": "primary", "targetWeight": "3699.7510185538695" } }, { "key": "geid_107_8856", "source": "Mexico", "target": "Poland", "attributes": { "weight": 19021.07288362401, "sourceWeight": "19021.07288362401", "direction": "Imp", "source_type": "primary", "targetWeight": "19021.07288362401" } }, { "key": "geid_107_8857", "source": "IraqMesopotamia", "target": "Poland", "attributes": { "weight": 652.8972385683298, "sourceWeight": "652.8972385683298", "direction": "Imp", "source_type": "primary", "targetWeight": "652.8972385683298" } }, { "key": "geid_107_8858", "source": "GermanyZollverein", "target": "Poland", "attributes": { "weight": 22036108.804849986, "sourceWeight": "22036108.804849986", "direction": "Imp", "source_type": "primary", "targetWeight": "22036108.804849986" } }, { "key": "geid_107_8859", "source": "Norway", "target": "Poland", "attributes": { "weight": 169056.8583066262, "sourceWeight": "169056.8583066262", "direction": "Imp", "source_type": "primary", "targetWeight": "169056.8583066262" } }, { "key": "geid_107_8860", "source": "Nicaragua", "target": "Poland", "attributes": { "weight": 1131.688546851772, "sourceWeight": "1131.688546851772", "direction": "Imp", "source_type": "primary", "targetWeight": "1131.688546851772" } }, { "key": "geid_107_8861", "source": "NewZealand", "target": "Poland", "attributes": { "weight": 2785.6948845582074, "sourceWeight": "2785.6948845582074", "direction": "Imp", "source_type": "primary", "targetWeight": "2785.6948845582074" } }, { "key": "geid_107_8862", "source": "FrenchPolynesia", "target": "Poland", "attributes": { "weight": 565.844273425886, "sourceWeight": "565.844273425886", "direction": "Imp", "source_type": "primary", "targetWeight": "565.844273425886" } }, { "key": "geid_107_8863", "source": "AmericanOceania", "target": "Poland", "attributes": { "weight": 827.0031688532179, "sourceWeight": "827.0031688532179", "direction": "Imp", "source_type": "primary", "targetWeight": "827.0031688532179" } }, { "key": "geid_107_8864", "source": "Palestine", "target": "Poland", "attributes": { "weight": 1392.8474422791037, "sourceWeight": "1392.8474422791037", "direction": "Imp", "source_type": "primary", "targetWeight": "1392.8474422791037" } }, { "key": "geid_107_8865", "source": "Paraguay", "target": "Poland", "attributes": { "weight": 87.05296514244398, "sourceWeight": "87.05296514244398", "direction": "Imp", "source_type": "primary", "targetWeight": "87.05296514244398" } }, { "key": "geid_107_8866", "source": "IranPersia", "target": "Poland", "attributes": { "weight": 12230.94160251338, "sourceWeight": "12230.94160251338", "direction": "Imp", "source_type": "primary", "targetWeight": "12230.94160251338" } }, { "key": "geid_107_8867", "source": "Peru", "target": "Poland", "attributes": { "weight": 1349.3209597078817, "sourceWeight": "1349.3209597078817", "direction": "Imp", "source_type": "primary", "targetWeight": "1349.3209597078817" } }, { "key": "geid_107_8868", "source": "Portugal", "target": "Poland", "attributes": { "weight": 35561.13626068837, "sourceWeight": "35561.13626068837", "direction": "Imp", "source_type": "primary", "targetWeight": "35561.13626068837" } }, { "key": "geid_107_8869", "source": "MalaysiaBritishMalaya", "target": "Poland", "attributes": { "weight": 1392.8474422791037, "sourceWeight": "1392.8474422791037", "direction": "Imp", "source_type": "primary", "targetWeight": "1392.8474422791037" } }, { "key": "geid_107_8870", "source": "EastPrussia", "target": "Poland", "attributes": { "weight": 159611.61158867105, "sourceWeight": "159611.61158867105", "direction": "Imp", "source_type": "primary", "targetWeight": "159611.61158867105" } }, { "key": "geid_107_8871", "source": "RussiaUSSR", "target": "Poland", "attributes": { "weight": 216108.98596611718, "sourceWeight": "216108.98596611718", "direction": "Imp", "source_type": "primary", "targetWeight": "216108.98596611718" } }, { "key": "geid_107_8872", "source": "Romania", "target": "Poland", "attributes": { "weight": 897472.5441360263, "sourceWeight": "897472.5441360263", "direction": "Imp", "source_type": "primary", "targetWeight": "897472.5441360263" } }, { "key": "geid_107_8873", "source": "ElSalvador", "target": "Poland", "attributes": { "weight": 4744.386600263197, "sourceWeight": "4744.386600263197", "direction": "Imp", "source_type": "primary", "targetWeight": "4744.386600263197" } }, { "key": "geid_107_8874", "source": "ThailandSiam", "target": "Poland", "attributes": { "weight": 914.0561339956619, "sourceWeight": "914.0561339956619", "direction": "Imp", "source_type": "primary", "targetWeight": "914.0561339956619" } }, { "key": "geid_107_8875", "source": "UnitedStatesofAmerica", "target": "Poland", "attributes": { "weight": 8006652.942493714, "sourceWeight": "8006652.942493714", "direction": "Imp", "source_type": "primary", "targetWeight": "8006652.942493714" } }, { "key": "geid_107_8876", "source": "Syria", "target": "Poland", "attributes": { "weight": 1915.1652331337677, "sourceWeight": "1915.1652331337677", "direction": "Imp", "source_type": "primary", "targetWeight": "1915.1652331337677" } }, { "key": "geid_107_8877", "source": "Switzerland", "target": "Poland", "attributes": { "weight": 1003546.5821620942, "sourceWeight": "1003546.5821620942", "direction": "Imp", "source_type": "primary", "targetWeight": "1003546.5821620942" } }, { "key": "geid_107_8878", "source": "Sweden", "target": "Poland", "attributes": { "weight": 537290.9008591643, "sourceWeight": "537290.9008591643", "direction": "Imp", "source_type": "primary", "targetWeight": "537290.9008591643" } }, { "key": "geid_107_8879", "source": "TripolitaniaRegencyofTripoli", "target": "Poland", "attributes": { "weight": 1958.6917157049895, "sourceWeight": "1958.6917157049895", "direction": "Imp", "source_type": "primary", "targetWeight": "1958.6917157049895" } }, { "key": "geid_107_8880", "source": "TunisiaRegencyofTunis", "target": "Poland", "attributes": { "weight": 51927.09370746784, "sourceWeight": "51927.09370746784", "direction": "Imp", "source_type": "primary", "targetWeight": "51927.09370746784" } }, { "key": "geid_107_8881", "source": "TurkeyOttomanEmpire", "target": "Poland", "attributes": { "weight": 227599.9773649198, "sourceWeight": "227599.9773649198", "direction": "Imp", "source_type": "primary", "targetWeight": "227599.9773649198" } }, { "key": "geid_107_8882", "source": "Uruguay", "target": "Poland", "attributes": { "weight": 2959.8008148430954, "sourceWeight": "2959.8008148430954", "direction": "Imp", "source_type": "primary", "targetWeight": "2959.8008148430954" } }, { "key": "geid_107_8883", "source": "Venezuela", "target": "Poland", "attributes": { "weight": 2698.6419194157634, "sourceWeight": "2698.6419194157634", "direction": "Imp", "source_type": "primary", "targetWeight": "2698.6419194157634" } }, { "key": "geid_107_8884", "source": "Hungary", "target": "Poland", "attributes": { "weight": 608064.9615199713, "sourceWeight": "608064.9615199713", "direction": "Imp", "source_type": "primary", "targetWeight": "608064.9615199713" } }, { "key": "geid_107_8885", "source": "Italy", "target": "Poland", "attributes": { "weight": 3244115.7989983177, "sourceWeight": "3244115.7989983177", "direction": "Imp", "source_type": "primary", "targetWeight": "3244115.7989983177" } }, { "key": "geid_107_8886", "source": "SouthAfrica", "target": "Poland", "attributes": { "weight": 26942.892711586413, "sourceWeight": "26942.892711586413", "direction": "Imp", "source_type": "primary", "targetWeight": "26942.892711586413" } }, { "key": "geid_107_8887", "source": "Othercountries", "target": "Poland", "attributes": { "weight": 1566.9533725639917, "sourceWeight": "1566.9533725639917", "direction": "Imp", "source_type": "primary", "targetWeight": "1566.9533725639917" } }, { "key": "geid_107_8888", "source": "Poland", "target": "Albania", "attributes": { "weight": 217.63241285610997, "sourceWeight": "217.63241285610997", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8889", "source": "Poland", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 1218.7415119942157, "sourceWeight": "1218.7415119942157", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8890", "source": "Poland", "target": "UnitedKingdom", "attributes": { "weight": 5790589.135345089, "sourceWeight": "5790589.135345089", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8891", "source": "Poland", "target": "BritishWestIndies_GuyanaBritishGuiana", "attributes": { "weight": 261.15889542733197, "sourceWeight": "261.15889542733197", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8892", "source": "Poland", "target": "Arabia", "attributes": { "weight": 870.5296514244399, "sourceWeight": "870.5296514244399", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8893", "source": "Poland", "target": "ArgentinaLaPlata", "attributes": { "weight": 29206.269805289958, "sourceWeight": "29206.269805289958", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8894", "source": "Poland", "target": "Australia", "attributes": { "weight": 783.4766862819959, "sourceWeight": "783.4766862819959", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8895", "source": "Poland", "target": "Austria", "attributes": { "weight": 5558941.195101045, "sourceWeight": "5558941.195101045", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8896", "source": "Poland", "target": "Belgium", "attributes": { "weight": 965852.648255416, "sourceWeight": "965852.648255416", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8897", "source": "Poland", "target": "Bolivia", "attributes": { "weight": 522.3177908546639, "sourceWeight": "522.3177908546639", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8898", "source": "Poland", "target": "Brazil", "attributes": { "weight": 29946.22000900073, "sourceWeight": "29946.22000900073", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8899", "source": "Poland", "target": "Bulgaria", "attributes": { "weight": 10794.567677663053, "sourceWeight": "10794.567677663053", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8900", "source": "Poland", "target": "SriLankaCeylon", "attributes": { "weight": 696.4237211395518, "sourceWeight": "696.4237211395518", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8901", "source": "Poland", "target": "Chile", "attributes": { "weight": 7138.343141680407, "sourceWeight": "7138.343141680407", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8902", "source": "Poland", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 112907.69578974985, "sourceWeight": "112907.69578974985", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8903", "source": "Poland", "target": "CostaRica", "attributes": { "weight": 609.3707559971078, "sourceWeight": "609.3707559971078", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8904", "source": "Poland", "target": "Czechoslovakia", "attributes": { "weight": 4332800.181069722, "sourceWeight": "4332800.181069722", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8905", "source": "Poland", "target": "Denmark", "attributes": { "weight": 886416.8175629359, "sourceWeight": "886416.8175629359", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8906", "source": "Poland", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 87.05296514244398, "sourceWeight": "87.05296514244398", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8907", "source": "Poland", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 25637.098234449753, "sourceWeight": "25637.098234449753", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8908", "source": "Poland", "target": "Estonia", "attributes": { "weight": 87749.38886358353, "sourceWeight": "87749.38886358353", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8909", "source": "Poland", "target": "Philippines", "attributes": { "weight": 174.10593028488796, "sourceWeight": "174.10593028488796", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8910", "source": "Poland", "target": "Finland", "attributes": { "weight": 448409.82344872894, "sourceWeight": "448409.82344872894", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8911", "source": "Poland", "target": "France", "attributes": { "weight": 2301201.6070579356, "sourceWeight": "2301201.6070579356", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8912", "source": "Poland", "target": "DanzigFreeCityofDanzig", "attributes": { "weight": 312346.038931089, "sourceWeight": "312346.038931089", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8913", "source": "Poland", "target": "Crete_Greece", "attributes": { "weight": 3830.3304662675355, "sourceWeight": "3830.3304662675355", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8914", "source": "Poland", "target": "Guatemala", "attributes": { "weight": 2045.7446808474335, "sourceWeight": "2045.7446808474335", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8915", "source": "Poland", "target": "Spain", "attributes": { "weight": 6964.237211395519, "sourceWeight": "6964.237211395519", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8916", "source": "Poland", "target": "Netherlands", "attributes": { "weight": 1726826.1430480902, "sourceWeight": "1726826.1430480902", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8917", "source": "Poland", "target": "HongKong", "attributes": { "weight": 304.6853779985539, "sourceWeight": "304.6853779985539", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8918", "source": "Poland", "target": "India", "attributes": { "weight": 51491.82888175562, "sourceWeight": "51491.82888175562", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8919", "source": "Poland", "target": "IndonesiaDutchEastIndies", "attributes": { "weight": 2089.2711634186558, "sourceWeight": "2089.2711634186558", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8920", "source": "Poland", "target": "Japan_KoreaChosen", "attributes": { "weight": 271518.1982792828, "sourceWeight": "271518.1982792828", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8921", "source": "Poland", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 135584.9932093565, "sourceWeight": "135584.9932093565", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8922", "source": "Poland", "target": "CanadaProvinceofCanada", "attributes": { "weight": 4918.492530548085, "sourceWeight": "4918.492530548085", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8923", "source": "Poland", "target": "BritishWestAfrica", "attributes": { "weight": 2524.5359891308754, "sourceWeight": "2524.5359891308754", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8924", "source": "Poland", "target": "BritishEastAfrica", "attributes": { "weight": 10576.935264806943, "sourceWeight": "10576.935264806943", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8925", "source": "Poland", "target": "FrenchEastAfrica", "attributes": { "weight": 9488.773200526393, "sourceWeight": "9488.773200526393", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8926", "source": "Poland", "target": "ItalianEastAfrica", "attributes": { "weight": 43.52648257122199, "sourceWeight": "43.52648257122199", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8927", "source": "Poland", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 174.10593028488796, "sourceWeight": "174.10593028488796", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8928", "source": "Poland", "target": "DemocraticRepublicoftheCongoZaireKinshasaBelgianCongoCongoFreeState", "attributes": { "weight": 43.52648257122199, "sourceWeight": "43.52648257122199", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8929", "source": "Poland", "target": "Cuba", "attributes": { "weight": 304.6853779985539, "sourceWeight": "304.6853779985539", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8930", "source": "Poland", "target": "Lithuania", "attributes": { "weight": 333848.1213212727, "sourceWeight": "333848.1213212727", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8931", "source": "Poland", "target": "Luxemburg", "attributes": { "weight": 43.52648257122199, "sourceWeight": "43.52648257122199", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8932", "source": "Poland", "target": "Latvia", "attributes": { "weight": 1143484.223628573, "sourceWeight": "1143484.223628573", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8933", "source": "Poland", "target": "Morocco", "attributes": { "weight": 13580.262562221262, "sourceWeight": "13580.262562221262", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8934", "source": "Poland", "target": "Mexico", "attributes": { "weight": 2959.8008148430954, "sourceWeight": "2959.8008148430954", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8935", "source": "Poland", "target": "IraqMesopotamia", "attributes": { "weight": 1436.3739248503257, "sourceWeight": "1436.3739248503257", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8936", "source": "Poland", "target": "GermanyZollverein", "attributes": { "weight": 23335635.46849639, "sourceWeight": "23335635.46849639", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8937", "source": "Poland", "target": "Norway", "attributes": { "weight": 235826.48257088076, "sourceWeight": "235826.48257088076", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8938", "source": "Poland", "target": "NewZealand", "attributes": { "weight": 130.57944771366599, "sourceWeight": "130.57944771366599", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8939", "source": "Poland", "target": "Palestine", "attributes": { "weight": 38607.9900406739, "sourceWeight": "38607.9900406739", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8940", "source": "Poland", "target": "IranPersia", "attributes": { "weight": 348.2118605697759, "sourceWeight": "348.2118605697759", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8941", "source": "Poland", "target": "Peru", "attributes": { "weight": 304.6853779985539, "sourceWeight": "304.6853779985539", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8942", "source": "Poland", "target": "Portugal", "attributes": { "weight": 3830.3304662675355, "sourceWeight": "3830.3304662675355", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8943", "source": "Poland", "target": "MalaysiaBritishMalaya", "attributes": { "weight": 87.05296514244398, "sourceWeight": "87.05296514244398", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8944", "source": "Poland", "target": "EastPrussia", "attributes": { "weight": 455635.2195555518, "sourceWeight": "455635.2195555518", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8945", "source": "Poland", "target": "RussiaUSSR", "attributes": { "weight": 496985.3779982127, "sourceWeight": "496985.3779982127", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8946", "source": "Poland", "target": "Romania", "attributes": { "weight": 3421790.9008540455, "sourceWeight": "3421790.9008540455", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8947", "source": "Poland", "target": "UnitedStatesofAmerica", "attributes": { "weight": 310866.13852366747, "sourceWeight": "310866.13852366747", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8948", "source": "Poland", "target": "Syria", "attributes": { "weight": 3395.0656405553154, "sourceWeight": "3395.0656405553154", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8949", "source": "Poland", "target": "Switzerland", "attributes": { "weight": 244792.9379805525, "sourceWeight": "244792.9379805525", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8950", "source": "Poland", "target": "Sweden", "attributes": { "weight": 579468.0624706784, "sourceWeight": "579468.0624706784", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8951", "source": "Poland", "target": "TripolitaniaRegencyofTripoli", "attributes": { "weight": 43.52648257122199, "sourceWeight": "43.52648257122199", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8952", "source": "Poland", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 348.2118605697759, "sourceWeight": "348.2118605697759", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8953", "source": "Poland", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 14973.110004500366, "sourceWeight": "14973.110004500366", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8954", "source": "Poland", "target": "Hungary", "attributes": { "weight": 1028835.4685359743, "sourceWeight": "1028835.4685359743", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8955", "source": "Poland", "target": "Italy", "attributes": { "weight": 290713.37709319167, "sourceWeight": "290713.37709319167", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8956", "source": "Poland", "target": "SouthAfrica", "attributes": { "weight": 6398.392937969633, "sourceWeight": "6398.392937969633", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8957", "source": "Poland", "target": "Othercountries", "attributes": { "weight": 174.10593028488796, "sourceWeight": "174.10593028488796", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_8958", "source": "UnitedKingdom", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 71905, "sourceWeight": "71905", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "71905" } }, { "key": "geid_107_8959", "source": "CanadaProvinceofCanada", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 49914, "sourceWeight": "49914", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "49914" } }, { "key": "geid_107_8960", "source": "Barbados", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 6386, "sourceWeight": "6386", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6386" } }, { "key": "geid_107_8961", "source": "Bermuda", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 9, "sourceWeight": "9", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "9" } }, { "key": "geid_107_8962", "source": "GuyanaBritishGuiana", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 8520, "sourceWeight": "8520", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "8520" } }, { "key": "geid_107_8963", "source": "India", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 3611, "sourceWeight": "3611", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3611" } }, { "key": "geid_107_8964", "source": "Jamaica", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 96, "sourceWeight": "96", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "96" } }, { "key": "geid_107_8965", "source": "LeewardIs", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 2966, "sourceWeight": "2966", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2966" } }, { "key": "geid_107_8966", "source": "WindwardIs", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 825, "sourceWeight": "825", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "825" } }, { "key": "geid_107_8967", "source": "BritishColoniesother", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 11, "sourceWeight": "11", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "11" } }, { "key": "geid_107_8968", "source": "UnitedStatesofAmerica", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 70075, "sourceWeight": "70075", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "70075" } }, { "key": "geid_107_8969", "source": "VirginIslandsDanishWestIndies", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 414, "sourceWeight": "414", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "414" } }, { "key": "geid_107_8970", "source": "France", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 557, "sourceWeight": "557", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "557" } }, { "key": "geid_107_8971", "source": "FrenchWestIndies", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 322, "sourceWeight": "322", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "322" } }, { "key": "geid_107_8972", "source": "Netherlands", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 952, "sourceWeight": "952", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "952" } }, { "key": "geid_107_8973", "source": "Spain", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 115, "sourceWeight": "115", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "115" } }, { "key": "geid_107_8974", "source": "GermanyZollverein", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 329, "sourceWeight": "329", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "329" } }, { "key": "geid_107_8975", "source": "Norway_Sweden", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 116, "sourceWeight": "116", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "116" } }, { "key": "geid_107_8976", "source": "Italy", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 58, "sourceWeight": "58", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "58" } }, { "key": "geid_107_8977", "source": "Denmark", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 137, "sourceWeight": "137", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "137" } }, { "key": "geid_107_8978", "source": "Switzerland", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 24, "sourceWeight": "24", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "24" } }, { "key": "geid_107_8979", "source": "Venezuela", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 59, "sourceWeight": "59", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "59" } }, { "key": "geid_107_8980", "source": "Othercountries", "target": "AntiguaandBarbudaAntigua", "attributes": { "weight": 892, "sourceWeight": "892", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "892" } }, { "key": "geid_107_8981", "source": "UnitedKingdom", "target": "StKittsNevis", "attributes": { "weight": 107354, "sourceWeight": "107354", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "107354" } }, { "key": "geid_107_8982", "source": "CanadaProvinceofCanada", "target": "StKittsNevis", "attributes": { "weight": 78105, "sourceWeight": "78105", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "78105" } }, { "key": "geid_107_8983", "source": "India", "target": "StKittsNevis", "attributes": { "weight": 3844, "sourceWeight": "3844", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3844" } }, { "key": "geid_107_8984", "source": "Bermuda", "target": "StKittsNevis", "attributes": { "weight": 321, "sourceWeight": "321", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "321" } }, { "key": "geid_107_8985", "source": "GuyanaBritishGuiana", "target": "StKittsNevis", "attributes": { "weight": 4014, "sourceWeight": "4014", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4014" } }, { "key": "geid_107_8986", "source": "Trinidad", "target": "StKittsNevis", "attributes": { "weight": 3817, "sourceWeight": "3817", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3817" } }, { "key": "geid_107_8987", "source": "Barbados", "target": "StKittsNevis", "attributes": { "weight": 8093, "sourceWeight": "8093", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "8093" } }, { "key": "geid_107_8988", "source": "Jamaica", "target": "StKittsNevis", "attributes": { "weight": 82, "sourceWeight": "82", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "82" } }, { "key": "geid_107_8989", "source": "WindwardIs", "target": "StKittsNevis", "attributes": { "weight": 228, "sourceWeight": "228", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "228" } }, { "key": "geid_107_8990", "source": "LeewardIs", "target": "StKittsNevis", "attributes": { "weight": 2552, "sourceWeight": "2552", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2552" } }, { "key": "geid_107_8991", "source": "BritishColoniesother", "target": "StKittsNevis", "attributes": { "weight": 94, "sourceWeight": "94", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "94" } }, { "key": "geid_107_8992", "source": "UnitedStatesofAmerica", "target": "StKittsNevis", "attributes": { "weight": 75017, "sourceWeight": "75017", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "75017" } }, { "key": "geid_107_8993", "source": "Denmark", "target": "StKittsNevis", "attributes": { "weight": 787, "sourceWeight": "787", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "787" } }, { "key": "geid_107_8994", "source": "Netherlands", "target": "StKittsNevis", "attributes": { "weight": 2867, "sourceWeight": "2867", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2867" } }, { "key": "geid_107_8995", "source": "Belgium", "target": "StKittsNevis", "attributes": { "weight": 131, "sourceWeight": "131", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "131" } }, { "key": "geid_107_8996", "source": "France", "target": "StKittsNevis", "attributes": { "weight": 3589, "sourceWeight": "3589", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3589" } }, { "key": "geid_107_8997", "source": "Spain", "target": "StKittsNevis", "attributes": { "weight": 245, "sourceWeight": "245", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "245" } }, { "key": "geid_107_8998", "source": "Portugal", "target": "StKittsNevis", "attributes": { "weight": 127, "sourceWeight": "127", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "127" } }, { "key": "geid_107_8999", "source": "Italy", "target": "StKittsNevis", "attributes": { "weight": 95, "sourceWeight": "95", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "95" } }, { "key": "geid_107_9000", "source": "Switzerland", "target": "StKittsNevis", "attributes": { "weight": 339, "sourceWeight": "339", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "339" } }, { "key": "geid_107_9001", "source": "Austria", "target": "StKittsNevis", "attributes": { "weight": 55, "sourceWeight": "55", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "55" } }, { "key": "geid_107_9002", "source": "GermanyZollverein", "target": "StKittsNevis", "attributes": { "weight": 2251, "sourceWeight": "2251", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2251" } }, { "key": "geid_107_9003", "source": "Japan", "target": "StKittsNevis", "attributes": { "weight": 76, "sourceWeight": "76", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "76" } }, { "key": "geid_107_9004", "source": "FrenchWestIndies", "target": "StKittsNevis", "attributes": { "weight": 224, "sourceWeight": "224", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "224" } }, { "key": "geid_107_9005", "source": "NetherlandsAntilles", "target": "StKittsNevis", "attributes": { "weight": 356, "sourceWeight": "356", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "356" } }, { "key": "geid_107_9006", "source": "VirginIslandsDanishWestIndies", "target": "StKittsNevis", "attributes": { "weight": 659, "sourceWeight": "659", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "659" } }, { "key": "geid_107_9007", "source": "DominicanRepublicSantoDomingo", "target": "StKittsNevis", "attributes": { "weight": 726, "sourceWeight": "726", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "726" } }, { "key": "geid_107_9008", "source": "Venezuela", "target": "StKittsNevis", "attributes": { "weight": 23, "sourceWeight": "23", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "23" } }, { "key": "geid_107_9009", "source": "Othercountries", "target": "StKittsNevis", "attributes": { "weight": 1109, "sourceWeight": "1109", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1109" } }, { "key": "geid_107_9010", "source": "UnitedKingdom", "target": "Dominica", "attributes": { "weight": 47696, "sourceWeight": "47696", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "47696" } }, { "key": "geid_107_9011", "source": "CanadaProvinceofCanada", "target": "Dominica", "attributes": { "weight": 32670, "sourceWeight": "32670", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "32670" } }, { "key": "geid_107_9012", "source": "Barbados", "target": "Dominica", "attributes": { "weight": 5190, "sourceWeight": "5190", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5190" } }, { "key": "geid_107_9013", "source": "Bermuda", "target": "Dominica", "attributes": { "weight": 491, "sourceWeight": "491", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "491" } }, { "key": "geid_107_9014", "source": "GuyanaBritishGuiana", "target": "Dominica", "attributes": { "weight": 708, "sourceWeight": "708", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "708" } }, { "key": "geid_107_9015", "source": "India", "target": "Dominica", "attributes": { "weight": 1168, "sourceWeight": "1168", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1168" } }, { "key": "geid_107_9016", "source": "Jamaica", "target": "Dominica", "attributes": { "weight": 19, "sourceWeight": "19", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "19" } }, { "key": "geid_107_9017", "source": "LeewardIs", "target": "Dominica", "attributes": { "weight": 7607, "sourceWeight": "7607", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "7607" } }, { "key": "geid_107_9018", "source": "NewfoundlandandLabradorNewfoundland", "target": "Dominica", "attributes": { "weight": 2230, "sourceWeight": "2230", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2230" } }, { "key": "geid_107_9019", "source": "Trinidad", "target": "Dominica", "attributes": { "weight": 2030, "sourceWeight": "2030", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2030" } }, { "key": "geid_107_9020", "source": "WindwardIs", "target": "Dominica", "attributes": { "weight": 900, "sourceWeight": "900", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "900" } }, { "key": "geid_107_9021", "source": "Belgium", "target": "Dominica", "attributes": { "weight": 137, "sourceWeight": "137", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "137" } }, { "key": "geid_107_9022", "source": "DanishColonies", "target": "Dominica", "attributes": { "weight": 306, "sourceWeight": "306", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "306" } }, { "key": "geid_107_9023", "source": "DutchColonies", "target": "Dominica", "attributes": { "weight": 747, "sourceWeight": "747", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "747" } }, { "key": "geid_107_9024", "source": "FrenchColonies", "target": "Dominica", "attributes": { "weight": 2183, "sourceWeight": "2183", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "2183" } }, { "key": "geid_107_9025", "source": "GermanyZollverein", "target": "Dominica", "attributes": { "weight": 446, "sourceWeight": "446", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "446" } }, { "key": "geid_107_9026", "source": "UnitedStatesofAmerica", "target": "Dominica", "attributes": { "weight": 38177, "sourceWeight": "38177", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "38177" } }, { "key": "geid_107_9027", "source": "VirginIslandsDanishWestIndies", "target": "Dominica", "attributes": { "weight": 775, "sourceWeight": "775", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "775" } }, { "key": "geid_107_9028", "source": "Othercountries", "target": "Dominica", "attributes": { "weight": 99, "sourceWeight": "99", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "99" } }, { "key": "geid_107_9029", "source": "UnitedKingdom", "target": "Montserrat", "attributes": { "weight": 8500, "sourceWeight": "8500", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "8500" } }, { "key": "geid_107_9030", "source": "CanadaProvinceofCanada", "target": "Montserrat", "attributes": { "weight": 18272, "sourceWeight": "18272", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "18272" } }, { "key": "geid_107_9031", "source": "Bermuda", "target": "Montserrat", "attributes": { "weight": 50, "sourceWeight": "50", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "50" } }, { "key": "geid_107_9032", "source": "Barbados", "target": "Montserrat", "attributes": { "weight": 5866, "sourceWeight": "5866", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "5866" } }, { "key": "geid_107_9033", "source": "Trinidad", "target": "Montserrat", "attributes": { "weight": 1123, "sourceWeight": "1123", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1123" } }, { "key": "geid_107_9034", "source": "GuyanaBritishGuiana", "target": "Montserrat", "attributes": { "weight": 995, "sourceWeight": "995", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "995" } }, { "key": "geid_107_9035", "source": "LeewardIs", "target": "Montserrat", "attributes": { "weight": 3870, "sourceWeight": "3870", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "3870" } }, { "key": "geid_107_9036", "source": "BritishColoniesother", "target": "Montserrat", "attributes": { "weight": 1969, "sourceWeight": "1969", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1969" } }, { "key": "geid_107_9037", "source": "UnitedStatesofAmerica", "target": "Montserrat", "attributes": { "weight": 10836, "sourceWeight": "10836", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "10836" } }, { "key": "geid_107_9038", "source": "FrenchWestIndies", "target": "Montserrat", "attributes": { "weight": 110, "sourceWeight": "110", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "110" } }, { "key": "geid_107_9039", "source": "Othercountries", "target": "Montserrat", "attributes": { "weight": 604, "sourceWeight": "604", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "604" } }, { "key": "geid_107_9040", "source": "UnitedKingdom", "target": "BritishVirginIs", "attributes": { "weight": 1708, "sourceWeight": "1708", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "1708" } }, { "key": "geid_107_9041", "source": "CanadaProvinceofCanada", "target": "BritishVirginIs", "attributes": { "weight": 258, "sourceWeight": "258", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "258" } }, { "key": "geid_107_9042", "source": "LeewardIs", "target": "BritishVirginIs", "attributes": { "weight": 13648, "sourceWeight": "13648", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "13648" } }, { "key": "geid_107_9043", "source": "BritishColoniesother", "target": "BritishVirginIs", "attributes": { "weight": 175, "sourceWeight": "175", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "175" } }, { "key": "geid_107_9044", "source": "UnitedStatesofAmerica", "target": "BritishVirginIs", "attributes": { "weight": 6395, "sourceWeight": "6395", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "6395" } }, { "key": "geid_107_9045", "source": "VirginIslandsDanishWestIndies", "target": "BritishVirginIs", "attributes": { "weight": 10392, "sourceWeight": "10392", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "10392" } }, { "key": "geid_107_9046", "source": "Othercountries", "target": "BritishVirginIs", "attributes": { "weight": 4387, "sourceWeight": "4387", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "4387" } }, { "key": "geid_107_9047", "source": "UnitedKingdom", "target": "LeewardIs", "attributes": { "weight": 237163, "sourceWeight": "237163", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "237163" } }, { "key": "geid_107_9048", "source": "CanadaProvinceofCanada", "target": "LeewardIs", "attributes": { "weight": 179219, "sourceWeight": "179219", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "179219" } }, { "key": "geid_107_9049", "source": "BritishColoniesother", "target": "LeewardIs", "attributes": { "weight": 67825, "sourceWeight": "67825", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "67825" } }, { "key": "geid_107_9050", "source": "UnitedStatesofAmerica", "target": "LeewardIs", "attributes": { "weight": 200500, "sourceWeight": "200500", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "200500" } }, { "key": "geid_107_9051", "source": "Othercountries", "target": "LeewardIs", "attributes": { "weight": 37820, "sourceWeight": "37820", "direction": "Imp", "source_type": "primary_yearbook", "targetWeight": "37820" } }, { "key": "geid_107_9052", "source": "AntiguaandBarbudaAntigua", "target": "UnitedKingdom", "attributes": { "weight": 39567, "sourceWeight": "39567", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9053", "source": "AntiguaandBarbudaAntigua", "target": "CanadaProvinceofCanada", "attributes": { "weight": 111939, "sourceWeight": "111939", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9054", "source": "AntiguaandBarbudaAntigua", "target": "Bermuda", "attributes": { "weight": 237, "sourceWeight": "237", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9055", "source": "AntiguaandBarbudaAntigua", "target": "Barbados", "attributes": { "weight": 733, "sourceWeight": "733", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9056", "source": "AntiguaandBarbudaAntigua", "target": "Trinidad", "attributes": { "weight": 344, "sourceWeight": "344", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9057", "source": "AntiguaandBarbudaAntigua", "target": "GuyanaBritishGuiana", "attributes": { "weight": 25, "sourceWeight": "25", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9058", "source": "AntiguaandBarbudaAntigua", "target": "LeewardIs", "attributes": { "weight": 7168, "sourceWeight": "7168", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9059", "source": "AntiguaandBarbudaAntigua", "target": "WindwardIs", "attributes": { "weight": 12, "sourceWeight": "12", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9060", "source": "AntiguaandBarbudaAntigua", "target": "UnitedStatesofAmerica", "attributes": { "weight": 4587, "sourceWeight": "4587", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9061", "source": "StKittsNevis", "target": "UnitedKingdom", "attributes": { "weight": 25094, "sourceWeight": "25094", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9062", "source": "StKittsNevis", "target": "CanadaProvinceofCanada", "attributes": { "weight": 168965, "sourceWeight": "168965", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9063", "source": "StKittsNevis", "target": "BritishColumbia", "attributes": { "weight": 32213, "sourceWeight": "32213", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9064", "source": "StKittsNevis", "target": "Bermuda", "attributes": { "weight": 389, "sourceWeight": "389", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9065", "source": "StKittsNevis", "target": "Barbados", "attributes": { "weight": 1613, "sourceWeight": "1613", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9066", "source": "StKittsNevis", "target": "Trinidad", "attributes": { "weight": 64, "sourceWeight": "64", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9067", "source": "StKittsNevis", "target": "WindwardIs", "attributes": { "weight": 1311, "sourceWeight": "1311", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9068", "source": "StKittsNevis", "target": "LeewardIs", "attributes": { "weight": 1539, "sourceWeight": "1539", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9069", "source": "StKittsNevis", "target": "Tobago", "attributes": { "weight": 54, "sourceWeight": "54", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9070", "source": "StKittsNevis", "target": "UnitedStatesofAmerica", "attributes": { "weight": 446, "sourceWeight": "446", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9071", "source": "StKittsNevis", "target": "FrenchWestIndies", "attributes": { "weight": 1533, "sourceWeight": "1533", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9072", "source": "StKittsNevis", "target": "NetherlandsAntilles", "attributes": { "weight": 500, "sourceWeight": "500", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9073", "source": "StKittsNevis", "target": "VirginIslandsDanishWestIndies", "attributes": { "weight": 764, "sourceWeight": "764", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9074", "source": "StKittsNevis", "target": "Othercountries", "attributes": { "weight": 2546, "sourceWeight": "2546", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9075", "source": "Dominica", "target": "UnitedKingdom", "attributes": { "weight": 37565, "sourceWeight": "37565", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9076", "source": "Dominica", "target": "CanadaProvinceofCanada", "attributes": { "weight": 2921, "sourceWeight": "2921", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9077", "source": "Dominica", "target": "Bermuda", "attributes": { "weight": 2331, "sourceWeight": "2331", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9078", "source": "Dominica", "target": "Barbados", "attributes": { "weight": 3370, "sourceWeight": "3370", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9079", "source": "Dominica", "target": "WindwardIs", "attributes": { "weight": 31, "sourceWeight": "31", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9080", "source": "Dominica", "target": "GuyanaBritishGuiana", "attributes": { "weight": 40, "sourceWeight": "40", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9081", "source": "Dominica", "target": "LeewardIs", "attributes": { "weight": 4873, "sourceWeight": "4873", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9082", "source": "Dominica", "target": "BritishColoniesother", "attributes": { "weight": 532, "sourceWeight": "532", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9083", "source": "Dominica", "target": "UnitedStatesofAmerica", "attributes": { "weight": 115889, "sourceWeight": "115889", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9084", "source": "Dominica", "target": "VirginIslandsDanishWestIndies", "attributes": { "weight": 374, "sourceWeight": "374", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9085", "source": "Dominica", "target": "NetherlandsAntilles", "attributes": { "weight": 14, "sourceWeight": "14", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9086", "source": "Dominica", "target": "FrenchWestIndies", "attributes": { "weight": 118, "sourceWeight": "118", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9087", "source": "Montserrat", "target": "UnitedKingdom", "attributes": { "weight": 49428, "sourceWeight": "49428", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9088", "source": "Montserrat", "target": "CanadaProvinceofCanada", "attributes": { "weight": 1549, "sourceWeight": "1549", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9089", "source": "Montserrat", "target": "Bermuda", "attributes": { "weight": 242, "sourceWeight": "242", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9090", "source": "Montserrat", "target": "Barbados", "attributes": { "weight": 3009, "sourceWeight": "3009", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9091", "source": "Montserrat", "target": "Trinidad", "attributes": { "weight": 59, "sourceWeight": "59", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9092", "source": "Montserrat", "target": "WindwardIs", "attributes": { "weight": 408, "sourceWeight": "408", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9093", "source": "Montserrat", "target": "LeewardIs", "attributes": { "weight": 2409, "sourceWeight": "2409", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9094", "source": "Montserrat", "target": "UnitedStatesofAmerica", "attributes": { "weight": 683, "sourceWeight": "683", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9095", "source": "Montserrat", "target": "FrenchWestIndies", "attributes": { "weight": 16, "sourceWeight": "16", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9096", "source": "Montserrat", "target": "VirginIslandsDanishWestIndies", "attributes": { "weight": 17, "sourceWeight": "17", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9097", "source": "BritishVirginIs", "target": "UnitedKingdom", "attributes": { "weight": 97, "sourceWeight": "97", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9098", "source": "BritishVirginIs", "target": "LeewardIs", "attributes": { "weight": 202, "sourceWeight": "202", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9099", "source": "BritishVirginIs", "target": "Barbados", "attributes": { "weight": 92, "sourceWeight": "92", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9100", "source": "BritishVirginIs", "target": "VirginIslandsDanishWestIndies", "attributes": { "weight": 11538, "sourceWeight": "11538", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9101", "source": "BritishVirginIs", "target": "PuertoRico", "attributes": { "weight": 1169, "sourceWeight": "1169", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9102", "source": "LeewardIs", "target": "UnitedKingdom", "attributes": { "weight": 151751, "sourceWeight": "151751", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9103", "source": "LeewardIs", "target": "CanadaProvinceofCanada", "attributes": { "weight": 285374, "sourceWeight": "285374", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9104", "source": "LeewardIs", "target": "BritishColoniesother", "attributes": { "weight": 63330, "sourceWeight": "63330", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9105", "source": "LeewardIs", "target": "UnitedStatesofAmerica", "attributes": { "weight": 121605, "sourceWeight": "121605", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9106", "source": "LeewardIs", "target": "Othercountries", "attributes": { "weight": 18589, "sourceWeight": "18589", "direction": "Exp", "source_type": "primary_yearbook" } }, { "key": "geid_107_9107", "source": "CanaryIs", "target": "Spain", "attributes": { "weight": 425612.04164757323, "sourceWeight": "425612.04164757323", "direction": "Imp", "source_type": "primary", "targetWeight": "425612.04164757323" } }, { "key": "geid_107_9108", "source": "Ceuta", "target": "Spain", "attributes": { "weight": 4997.28383883839, "sourceWeight": "4997.28383883839", "direction": "Imp", "source_type": "primary", "targetWeight": "4997.28383883839" } }, { "key": "geid_107_9109", "source": "FernandoPoBioko", "target": "Spain", "attributes": { "weight": 751609.5518330005, "sourceWeight": "751609.5518330005", "direction": "Imp", "source_type": "primary", "targetWeight": "751609.5518330005" } }, { "key": "geid_107_9110", "source": "Melilla", "target": "Spain", "attributes": { "weight": 21644.861928462666, "sourceWeight": "21644.861928462666", "direction": "Imp", "source_type": "primary", "targetWeight": "21644.861928462666" } }, { "key": "geid_107_9111", "source": "RíodeOro", "target": "Spain", "attributes": { "weight": 361.24943413289566, "sourceWeight": "361.24943413289566", "direction": "Imp", "source_type": "primary", "targetWeight": "361.24943413289566" } }, { "key": "geid_107_9112", "source": "GermanyZollverein", "target": "Spain", "attributes": { "weight": 4505894.296059119, "sourceWeight": "4505894.296059119", "direction": "Imp", "source_type": "primary", "targetWeight": "4505894.296059119" } }, { "key": "geid_107_9113", "source": "Andorra", "target": "Spain", "attributes": { "weight": 25468.085106369144, "sourceWeight": "25468.085106369144", "direction": "Imp", "source_type": "primary", "targetWeight": "25468.085106369144" } }, { "key": "geid_107_9114", "source": "Arabia", "target": "Spain", "attributes": { "weight": 5779.9909461263305, "sourceWeight": "5779.9909461263305", "direction": "Imp", "source_type": "primary", "targetWeight": "5779.9909461263305" } }, { "key": "geid_107_9115", "source": "ArgentinaLaPlata", "target": "Spain", "attributes": { "weight": 3586665.0067884545, "sourceWeight": "3586665.0067884545", "direction": "Imp", "source_type": "primary", "targetWeight": "3586665.0067884545" } }, { "key": "geid_107_9116", "source": "Austria", "target": "Spain", "attributes": { "weight": 70834.99320955863, "sourceWeight": "70834.99320955863", "direction": "Imp", "source_type": "primary", "targetWeight": "70834.99320955863" } }, { "key": "geid_107_9117", "source": "Belgium", "target": "Spain", "attributes": { "weight": 3029829.108192107, "sourceWeight": "3029829.108192107", "direction": "Imp", "source_type": "primary", "targetWeight": "3029829.108192107" } }, { "key": "geid_107_9118", "source": "BelgianAfrica", "target": "Spain", "attributes": { "weight": 4545.722046172271, "sourceWeight": "4545.722046172271", "direction": "Imp", "source_type": "primary", "targetWeight": "4545.722046172271" } }, { "key": "geid_107_9119", "source": "Bolivia", "target": "Spain", "attributes": { "weight": 90.31235853322391, "sourceWeight": "90.31235853322391", "direction": "Imp", "source_type": "primary", "targetWeight": "90.31235853322391" } }, { "key": "geid_107_9120", "source": "Brazil", "target": "Spain", "attributes": { "weight": 37750.5658668876, "sourceWeight": "37750.5658668876", "direction": "Imp", "source_type": "primary", "targetWeight": "37750.5658668876" } }, { "key": "geid_107_9121", "source": "Bulgaria", "target": "Spain", "attributes": { "weight": 34258.48800360294, "sourceWeight": "34258.48800360294", "direction": "Imp", "source_type": "primary", "targetWeight": "34258.48800360294" } }, { "key": "geid_107_9122", "source": "ColombiaNewGranadaGranColombia", "target": "Spain", "attributes": { "weight": 94406.51878673007, "sourceWeight": "94406.51878673007", "direction": "Imp", "source_type": "primary", "targetWeight": "94406.51878673007" } }, { "key": "geid_107_9123", "source": "CostaRica", "target": "Spain", "attributes": { "weight": 7827.0710728794065, "sourceWeight": "7827.0710728794065", "direction": "Imp", "source_type": "primary", "targetWeight": "7827.0710728794065" } }, { "key": "geid_107_9124", "source": "Cuba", "target": "Spain", "attributes": { "weight": 23691.942055215743, "sourceWeight": "23691.942055215743", "direction": "Imp", "source_type": "primary", "targetWeight": "23691.942055215743" } }, { "key": "geid_107_9125", "source": "Czechoslovakia", "target": "Spain", "attributes": { "weight": 158889.54277945193, "sourceWeight": "158889.54277945193", "direction": "Imp", "source_type": "primary", "targetWeight": "158889.54277945193" } }, { "key": "geid_107_9126", "source": "Chile", "target": "Spain", "attributes": { "weight": 1525526.2562237072, "sourceWeight": "1525526.2562237072", "direction": "Imp", "source_type": "primary", "targetWeight": "1525526.2562237072" } }, { "key": "geid_107_9127", "source": "PeoplesRepublicofChinaChina", "target": "Spain", "attributes": { "weight": 1034287.2340419914, "sourceWeight": "1034287.2340419914", "direction": "Imp", "source_type": "primary", "targetWeight": "1034287.2340419914" } }, { "key": "geid_107_9128", "source": "Denmark", "target": "Spain", "attributes": { "weight": 297519.01312795066, "sourceWeight": "297519.01312795066", "direction": "Imp", "source_type": "primary", "targetWeight": "297519.01312795066" } }, { "key": "geid_107_9129", "source": "DanishEurope", "target": "Spain", "attributes": { "weight": 1340656.858306198, "sourceWeight": "1340656.858306198", "direction": "Imp", "source_type": "primary", "targetWeight": "1340656.858306198" } }, { "key": "geid_107_9130", "source": "Ecuador", "target": "Spain", "attributes": { "weight": 351646.22000886285, "sourceWeight": "351646.22000886285", "direction": "Imp", "source_type": "primary", "targetWeight": "351646.22000886285" } }, { "key": "geid_107_9131", "source": "EgyptArabRepublicEgypt", "target": "Spain", "attributes": { "weight": 907940.2444540111, "sourceWeight": "907940.2444540111", "direction": "Imp", "source_type": "primary", "targetWeight": "907940.2444540111" } }, { "key": "geid_107_9132", "source": "UnitedStatesofAmerica", "target": "Spain", "attributes": { "weight": 12710952.693519577, "sourceWeight": "12710952.693519577", "direction": "Imp", "source_type": "primary", "targetWeight": "12710952.693519577" } }, { "key": "geid_107_9133", "source": "Philippines", "target": "Spain", "attributes": { "weight": 405773.4268897751, "sourceWeight": "405773.4268897751", "direction": "Imp", "source_type": "primary", "targetWeight": "405773.4268897751" } }, { "key": "geid_107_9134", "source": "PuertoRico", "target": "Spain", "attributes": { "weight": 114455.86238110578, "sourceWeight": "114455.86238110578", "direction": "Imp", "source_type": "primary", "targetWeight": "114455.86238110578" } }, { "key": "geid_107_9135", "source": "Finland", "target": "Spain", "attributes": { "weight": 488830.69262082997, "sourceWeight": "488830.69262082997", "direction": "Imp", "source_type": "primary", "targetWeight": "488830.69262082997" } }, { "key": "geid_107_9136", "source": "France", "target": "Spain", "attributes": { "weight": 10494115.436843554, "sourceWeight": "10494115.436843554", "direction": "Imp", "source_type": "primary", "targetWeight": "10494115.436843554" } }, { "key": "geid_107_9137", "source": "AlgeriaRegencyofAlgiers", "target": "Spain", "attributes": { "weight": 271448.84563136, "sourceWeight": "271448.84563136", "direction": "Imp", "source_type": "primary", "targetWeight": "271448.84563136" } }, { "key": "geid_107_9138", "source": "FrenchAfrica", "target": "Spain", "attributes": { "weight": 36094.839293778496, "sourceWeight": "36094.839293778496", "direction": "Imp", "source_type": "primary", "targetWeight": "36094.839293778496" } }, { "key": "geid_107_9139", "source": "FrenchAmerica", "target": "Spain", "attributes": { "weight": 180.62471706644783, "sourceWeight": "180.62471706644783", "direction": "Imp", "source_type": "primary", "targetWeight": "180.62471706644783" } }, { "key": "geid_107_9140", "source": "FrenchAsia", "target": "Spain", "attributes": { "weight": 11800.814848341259, "sourceWeight": "11800.814848341259", "direction": "Imp", "source_type": "primary", "targetWeight": "11800.814848341259" } }, { "key": "geid_107_9141", "source": "FrenchPolynesia", "target": "Spain", "attributes": { "weight": 150.5205975553732, "sourceWeight": "150.5205975553732", "direction": "Imp", "source_type": "primary", "targetWeight": "150.5205975553732" } }, { "key": "geid_107_9142", "source": "UnitedKingdom", "target": "Spain", "attributes": { "weight": 13101463.331817238, "sourceWeight": "13101463.331817238", "direction": "Imp", "source_type": "primary", "targetWeight": "13101463.331817238" } }, { "key": "geid_107_9143", "source": "BritishAfrica", "target": "Spain", "attributes": { "weight": 101932.54866449872, "sourceWeight": "101932.54866449872", "direction": "Imp", "source_type": "primary", "targetWeight": "101932.54866449872" } }, { "key": "geid_107_9144", "source": "BritishAmerica", "target": "Spain", "attributes": { "weight": 1563638.0715247279, "sourceWeight": "1563638.0715247279", "direction": "Imp", "source_type": "primary", "targetWeight": "1563638.0715247279" } }, { "key": "geid_107_9145", "source": "BritishAsia", "target": "Spain", "attributes": { "weight": 4348509.95925522, "sourceWeight": "4348509.95925522", "direction": "Imp", "source_type": "primary", "targetWeight": "4348509.95925522" } }, { "key": "geid_107_9146", "source": "Gibraltar", "target": "Spain", "attributes": { "weight": 5268.220914438062, "sourceWeight": "5268.220914438062", "direction": "Imp", "source_type": "primary", "targetWeight": "5268.220914438062" } }, { "key": "geid_107_9147", "source": "BritishEuropeother", "target": "Spain", "attributes": { "weight": 209223.63060196873, "sourceWeight": "209223.63060196873", "direction": "Imp", "source_type": "primary", "targetWeight": "209223.63060196873" } }, { "key": "geid_107_9148", "source": "BritishOceania", "target": "Spain", "attributes": { "weight": 111866.90810315336, "sourceWeight": "111866.90810315336", "direction": "Imp", "source_type": "primary", "targetWeight": "111866.90810315336" } }, { "key": "geid_107_9149", "source": "Greece", "target": "Spain", "attributes": { "weight": 38653.689452219834, "sourceWeight": "38653.689452219834", "direction": "Imp", "source_type": "primary", "targetWeight": "38653.689452219834" } }, { "key": "geid_107_9150", "source": "Guatemala", "target": "Spain", "attributes": { "weight": 301.0411951107464, "sourceWeight": "301.0411951107464", "direction": "Imp", "source_type": "primary", "targetWeight": "301.0411951107464" } }, { "key": "geid_107_9151", "source": "Haiti", "target": "Spain", "attributes": { "weight": 8007.695789945854, "sourceWeight": "8007.695789945854", "direction": "Imp", "source_type": "primary", "targetWeight": "8007.695789945854" } }, { "key": "geid_107_9152", "source": "Netherlands", "target": "Spain", "attributes": { "weight": 2059904.4816647933, "sourceWeight": "2059904.4816647933", "direction": "Imp", "source_type": "primary", "targetWeight": "2059904.4816647933" } }, { "key": "geid_107_9153", "source": "DutchAmerica", "target": "Spain", "attributes": { "weight": 2468.53779990812, "sourceWeight": "2468.53779990812", "direction": "Imp", "source_type": "primary", "targetWeight": "2468.53779990812" } }, { "key": "geid_107_9154", "source": "DutchOceania", "target": "Spain", "attributes": { "weight": 794116.5685826379, "sourceWeight": "794116.5685826379", "direction": "Imp", "source_type": "primary", "targetWeight": "794116.5685826379" } }, { "key": "geid_107_9155", "source": "Honduras", "target": "Spain", "attributes": { "weight": 842.91534631009, "sourceWeight": "842.91534631009", "direction": "Imp", "source_type": "primary", "targetWeight": "842.91534631009" } }, { "key": "geid_107_9156", "source": "Hungary", "target": "Spain", "attributes": { "weight": 782.7071072879406, "sourceWeight": "782.7071072879406", "direction": "Imp", "source_type": "primary", "targetWeight": "782.7071072879406" } }, { "key": "geid_107_9157", "source": "Italy", "target": "Spain", "attributes": { "weight": 2738933.001356593, "sourceWeight": "2738933.001356593", "direction": "Imp", "source_type": "primary", "targetWeight": "2738933.001356593" } }, { "key": "geid_107_9158", "source": "Japan", "target": "Spain", "attributes": { "weight": 58582.616568551246, "sourceWeight": "58582.616568551246", "direction": "Imp", "source_type": "primary", "targetWeight": "58582.616568551246" } }, { "key": "geid_107_9159", "source": "Liberia", "target": "Spain", "attributes": { "weight": 451.5617926661196, "sourceWeight": "451.5617926661196", "direction": "Imp", "source_type": "primary", "targetWeight": "451.5617926661196" } }, { "key": "geid_107_9160", "source": "Lithuania", "target": "Spain", "attributes": { "weight": 32301.720235383087, "sourceWeight": "32301.720235383087", "direction": "Imp", "source_type": "primary", "targetWeight": "32301.720235383087" } }, { "key": "geid_107_9161", "source": "SpanishMorocco", "target": "Spain", "attributes": { "weight": 152989.13535528132, "sourceWeight": "152989.13535528132", "direction": "Imp", "source_type": "primary", "targetWeight": "152989.13535528132" } }, { "key": "geid_107_9162", "source": "Morocco", "target": "Spain", "attributes": { "weight": 1203231.5527381422, "sourceWeight": "1203231.5527381422", "direction": "Imp", "source_type": "primary", "targetWeight": "1203231.5527381422" } }, { "key": "geid_107_9163", "source": "Tangier", "target": "Spain", "attributes": { "weight": 50484.60842007217, "sourceWeight": "50484.60842007217", "direction": "Imp", "source_type": "primary", "targetWeight": "50484.60842007217" } }, { "key": "geid_107_9164", "source": "Mexico", "target": "Spain", "attributes": { "weight": 419410.5930282919, "sourceWeight": "419410.5930282919", "direction": "Imp", "source_type": "primary", "targetWeight": "419410.5930282919" } }, { "key": "geid_107_9165", "source": "Nicaragua", "target": "Spain", "attributes": { "weight": 68968.53779987199, "sourceWeight": "68968.53779987199", "direction": "Imp", "source_type": "primary", "targetWeight": "68968.53779987199" } }, { "key": "geid_107_9166", "source": "Norway", "target": "Spain", "attributes": { "weight": 964084.4273421653, "sourceWeight": "964084.4273421653", "direction": "Imp", "source_type": "primary", "targetWeight": "964084.4273421653" } }, { "key": "geid_107_9167", "source": "Panama", "target": "Spain", "attributes": { "weight": 8188.320507012302, "sourceWeight": "8188.320507012302", "direction": "Imp", "source_type": "primary", "targetWeight": "8188.320507012302" } }, { "key": "geid_107_9168", "source": "Paraguay", "target": "Spain", "attributes": { "weight": 30.10411951107464, "sourceWeight": "30.10411951107464", "direction": "Imp", "source_type": "primary", "targetWeight": "30.10411951107464" } }, { "key": "geid_107_9169", "source": "IranPersia", "target": "Spain", "attributes": { "weight": 14389.769126293677, "sourceWeight": "14389.769126293677", "direction": "Imp", "source_type": "primary", "targetWeight": "14389.769126293677" } }, { "key": "geid_107_9170", "source": "Peru", "target": "Spain", "attributes": { "weight": 12583.5219556292, "sourceWeight": "12583.5219556292", "direction": "Imp", "source_type": "primary", "targetWeight": "12583.5219556292" } }, { "key": "geid_107_9171", "source": "Portugal", "target": "Spain", "attributes": { "weight": 547533.7256674255, "sourceWeight": "547533.7256674255", "direction": "Imp", "source_type": "primary", "targetWeight": "547533.7256674255" } }, { "key": "geid_107_9172", "source": "PortugueseAfrica", "target": "Spain", "attributes": { "weight": 30.10411951107464, "sourceWeight": "30.10411951107464", "direction": "Imp", "source_type": "primary", "targetWeight": "30.10411951107464" } }, { "key": "geid_107_9173", "source": "Romania", "target": "Spain", "attributes": { "weight": 82304.66274327807, "sourceWeight": "82304.66274327807", "direction": "Imp", "source_type": "primary", "targetWeight": "82304.66274327807" } }, { "key": "geid_107_9174", "source": "RussiaUSSR", "target": "Spain", "attributes": { "weight": 421.457673155045, "sourceWeight": "421.457673155045", "direction": "Imp", "source_type": "primary", "targetWeight": "421.457673155045" } }, { "key": "geid_107_9175", "source": "ElSalvador", "target": "Spain", "attributes": { "weight": 104160.25350831824, "sourceWeight": "104160.25350831824", "direction": "Imp", "source_type": "primary", "targetWeight": "104160.25350831824" } }, { "key": "geid_107_9176", "source": "DominicanRepublicSantoDomingo", "target": "Spain", "attributes": { "weight": 2077.1842462641503, "sourceWeight": "2077.1842462641503", "direction": "Imp", "source_type": "primary", "targetWeight": "2077.1842462641503" } }, { "key": "geid_107_9177", "source": "KingdomofSerbia", "target": "Spain", "attributes": { "weight": 180.62471706644783, "sourceWeight": "180.62471706644783", "direction": "Imp", "source_type": "primary", "targetWeight": "180.62471706644783" } }, { "key": "geid_107_9178", "source": "ThailandSiam", "target": "Spain", "attributes": { "weight": 541.8741511993435, "sourceWeight": "541.8741511993435", "direction": "Imp", "source_type": "primary", "targetWeight": "541.8741511993435" } }, { "key": "geid_107_9179", "source": "Sweden", "target": "Spain", "attributes": { "weight": 2288635.5817099386, "sourceWeight": "2288635.5817099386", "direction": "Imp", "source_type": "primary", "targetWeight": "2288635.5817099386" } }, { "key": "geid_107_9180", "source": "Switzerland", "target": "Spain", "attributes": { "weight": 1063307.6052506673, "sourceWeight": "1063307.6052506673", "direction": "Imp", "source_type": "primary", "targetWeight": "1063307.6052506673" } }, { "key": "geid_107_9181", "source": "TunisiaRegencyofTunis", "target": "Spain", "attributes": { "weight": 57498.86826615256, "sourceWeight": "57498.86826615256", "direction": "Imp", "source_type": "primary", "targetWeight": "57498.86826615256" } }, { "key": "geid_107_9182", "source": "TurkeyOttomanEmpire", "target": "Spain", "attributes": { "weight": 167168.17564499748, "sourceWeight": "167168.17564499748", "direction": "Imp", "source_type": "primary", "targetWeight": "167168.17564499748" } }, { "key": "geid_107_9183", "source": "Uruguay", "target": "Spain", "attributes": { "weight": 185381.16794919764, "sourceWeight": "185381.16794919764", "direction": "Imp", "source_type": "primary", "targetWeight": "185381.16794919764" } }, { "key": "geid_107_9184", "source": "Venezuela", "target": "Spain", "attributes": { "weight": 971219.1036662901, "sourceWeight": "971219.1036662901", "direction": "Imp", "source_type": "primary", "targetWeight": "971219.1036662901" } }, { "key": "geid_107_9185", "source": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "target": "Spain", "attributes": { "weight": 6261.656858303525, "sourceWeight": "6261.656858303525", "direction": "Imp", "source_type": "primary", "targetWeight": "6261.656858303525" } }, { "key": "geid_107_9186", "source": "Spain", "target": "CanaryIs", "attributes": { "weight": 872417.383430943, "sourceWeight": "872417.383430943", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9187", "source": "Spain", "target": "Ceuta", "attributes": { "weight": 727044.5903119636, "sourceWeight": "727044.5903119636", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9188", "source": "Spain", "target": "FernandoPoBioko", "attributes": { "weight": 51718.87732002623, "sourceWeight": "51718.87732002623", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9189", "source": "Spain", "target": "Melilla", "attributes": { "weight": 730175.4187411154, "sourceWeight": "730175.4187411154", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9190", "source": "Spain", "target": "GermanyZollverein", "attributes": { "weight": 2980368.0398354116, "sourceWeight": "2980368.0398354116", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9191", "source": "Spain", "target": "Andorra", "attributes": { "weight": 24534.85740152583, "sourceWeight": "24534.85740152583", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9192", "source": "Spain", "target": "ArgentinaLaPlata", "attributes": { "weight": 3002855.817110184, "sourceWeight": "3002855.817110184", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9193", "source": "Spain", "target": "Austria", "attributes": { "weight": 73905.61339968824, "sourceWeight": "73905.61339968824", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9194", "source": "Spain", "target": "Belgium", "attributes": { "weight": 2091844.9524660434, "sourceWeight": "2091844.9524660434", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9195", "source": "Spain", "target": "Bolivia", "attributes": { "weight": 2799.6831145299416, "sourceWeight": "2799.6831145299416", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9196", "source": "Spain", "target": "Brazil", "attributes": { "weight": 361430.05884996214, "sourceWeight": "361430.05884996214", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9197", "source": "Spain", "target": "Bulgaria", "attributes": { "weight": 1204.1647804429856, "sourceWeight": "1204.1647804429856", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9198", "source": "Spain", "target": "ColombiaNewGranadaGranColombia", "attributes": { "weight": 85194.65821634122, "sourceWeight": "85194.65821634122", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9199", "source": "Spain", "target": "CostaRica", "attributes": { "weight": 2619.0583974634937, "sourceWeight": "2619.0583974634937", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9200", "source": "Spain", "target": "Cuba", "attributes": { "weight": 3171619.5110892686, "sourceWeight": "3171619.5110892686", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9201", "source": "Spain", "target": "Chile", "attributes": { "weight": 185742.41738333052, "sourceWeight": "185742.41738333052", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9202", "source": "Spain", "target": "PeoplesRepublicofChinaChina", "attributes": { "weight": 6201.448619281376, "sourceWeight": "6201.448619281376", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9203", "source": "Spain", "target": "Denmark", "attributes": { "weight": 408272.06880919426, "sourceWeight": "408272.06880919426", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9204", "source": "Spain", "target": "DanishEurope", "attributes": { "weight": 12914.66727025102, "sourceWeight": "12914.66727025102", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9205", "source": "Spain", "target": "Ecuador", "attributes": { "weight": 27515.16523312222, "sourceWeight": "27515.16523312222", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9206", "source": "Spain", "target": "EgyptArabRepublicEgypt", "attributes": { "weight": 113462.42643724031, "sourceWeight": "113462.42643724031", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9207", "source": "Spain", "target": "UnitedStatesofAmerica", "attributes": { "weight": 5268732.68446975, "sourceWeight": "5268732.68446975", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9208", "source": "Spain", "target": "Philippines", "attributes": { "weight": 146576.9578994224, "sourceWeight": "146576.9578994224", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9209", "source": "Spain", "target": "PuertoRico", "attributes": { "weight": 44794.929832479065, "sourceWeight": "44794.929832479065", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9210", "source": "Spain", "target": "Finland", "attributes": { "weight": 7676.550475324033, "sourceWeight": "7676.550475324033", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9211", "source": "Spain", "target": "France", "attributes": { "weight": 10406964.010858992, "sourceWeight": "10406964.010858992", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9212", "source": "Spain", "target": "AlgeriaRegencyofAlgiers", "attributes": { "weight": 224817.5645087054, "sourceWeight": "224817.5645087054", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9213", "source": "Spain", "target": "FrenchAfrica", "attributes": { "weight": 210.7288365775225, "sourceWeight": "210.7288365775225", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9214", "source": "Spain", "target": "FrenchAsia", "attributes": { "weight": 1625.6224535980305, "sourceWeight": "1625.6224535980305", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9215", "source": "Spain", "target": "UnitedKingdom", "attributes": { "weight": 11475028.06699241, "sourceWeight": "11475028.06699241", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9216", "source": "Spain", "target": "BritishAmerica", "attributes": { "weight": 166806.92621086456, "sourceWeight": "166806.92621086456", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9217", "source": "Spain", "target": "BritishAsia", "attributes": { "weight": 81190.8103213683, "sourceWeight": "81190.8103213683", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9218", "source": "Spain", "target": "Gibraltar", "attributes": { "weight": 105785.87596191629, "sourceWeight": "105785.87596191629", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9219", "source": "Spain", "target": "BritishEuropeother", "attributes": { "weight": 34017.655047514345, "sourceWeight": "34017.655047514345", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9220", "source": "Spain", "target": "BritishOceania", "attributes": { "weight": 23150.067904016396, "sourceWeight": "23150.067904016396", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9221", "source": "Spain", "target": "Greece", "attributes": { "weight": 66801.04119507462, "sourceWeight": "66801.04119507462", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9222", "source": "Spain", "target": "Guatemala", "attributes": { "weight": 2318.017202352747, "sourceWeight": "2318.017202352747", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9223", "source": "Spain", "target": "Haiti", "attributes": { "weight": 240.83295608859711, "sourceWeight": "240.83295608859711", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9224", "source": "Spain", "target": "Netherlands", "attributes": { "weight": 2603916.025349423, "sourceWeight": "2603916.025349423", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9225", "source": "Spain", "target": "DutchAmerica", "attributes": { "weight": 2197.6007243084487, "sourceWeight": "2197.6007243084487", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9226", "source": "Spain", "target": "DutchOceania", "attributes": { "weight": 30.10411951107464, "sourceWeight": "30.10411951107464", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9227", "source": "Spain", "target": "Honduras", "attributes": { "weight": 571.9782707104181, "sourceWeight": "571.9782707104181", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9228", "source": "Spain", "target": "Italy", "attributes": { "weight": 2579501.5844259416, "sourceWeight": "2579501.5844259416", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9229", "source": "Spain", "target": "Japan", "attributes": { "weight": 60268.44726117143, "sourceWeight": "60268.44726117143", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9230", "source": "Spain", "target": "Liberia", "attributes": { "weight": 331.14531462182106, "sourceWeight": "331.14531462182106", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9231", "source": "Spain", "target": "SpanishMorocco", "attributes": { "weight": 727255.3191485411, "sourceWeight": "727255.3191485411", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9232", "source": "Spain", "target": "Morocco", "attributes": { "weight": 212113.6260750319, "sourceWeight": "212113.6260750319", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9233", "source": "Spain", "target": "Tangier", "attributes": { "weight": 110903.57627879897, "sourceWeight": "110903.57627879897", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9234", "source": "Spain", "target": "Mexico", "attributes": { "weight": 517098.4608417291, "sourceWeight": "517098.4608417291", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9235", "source": "Spain", "target": "Nicaragua", "attributes": { "weight": 30.10411951107464, "sourceWeight": "30.10411951107464", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9236", "source": "Spain", "target": "Norway", "attributes": { "weight": 379643.05115416227, "sourceWeight": "379643.05115416227", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9237", "source": "Spain", "target": "Panama", "attributes": { "weight": 480973.5174284395, "sourceWeight": "480973.5174284395", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9238", "source": "Spain", "target": "Paraguay", "attributes": { "weight": 120.41647804429856, "sourceWeight": "120.41647804429856", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9239", "source": "Spain", "target": "Peru", "attributes": { "weight": 84502.26346758651, "sourceWeight": "84502.26346758651", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9240", "source": "Spain", "target": "Poland", "attributes": { "weight": 8128.112267990153, "sourceWeight": "8128.112267990153", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9241", "source": "Spain", "target": "Portugal", "attributes": { "weight": 750676.3241281572, "sourceWeight": "750676.3241281572", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9242", "source": "Spain", "target": "Romania", "attributes": { "weight": 2348.121321863822, "sourceWeight": "2348.121321863822", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9243", "source": "Spain", "target": "RussiaUSSR", "attributes": { "weight": 49792.213671317455, "sourceWeight": "49792.213671317455", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9244", "source": "Spain", "target": "ElSalvador", "attributes": { "weight": 2558.8501584413443, "sourceWeight": "2558.8501584413443", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9245", "source": "Spain", "target": "DominicanRepublicSantoDomingo", "attributes": { "weight": 1715.9348121312544, "sourceWeight": "1715.9348121312544", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9246", "source": "Spain", "target": "KingdomofSerbia", "attributes": { "weight": 270.93707559967174, "sourceWeight": "270.93707559967174", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9247", "source": "Spain", "target": "Sweden", "attributes": { "weight": 224787.46038919434, "sourceWeight": "224787.46038919434", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9248", "source": "Spain", "target": "Switzerland", "attributes": { "weight": 17219.556360334693, "sourceWeight": "17219.556360334693", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9249", "source": "Spain", "target": "TunisiaRegencyofTunis", "attributes": { "weight": 903.1235853322391, "sourceWeight": "903.1235853322391", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9250", "source": "Spain", "target": "TurkeyOttomanEmpire", "attributes": { "weight": 7917.38343141263, "sourceWeight": "7917.38343141263", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9251", "source": "Spain", "target": "Uruguay", "attributes": { "weight": 681798.0986868184, "sourceWeight": "681798.0986868184", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9252", "source": "Spain", "target": "Venezuela", "attributes": { "weight": 119122.00090532235, "sourceWeight": "119122.00090532235", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9253", "source": "Spain", "target": "YugoslaviaKingdomofSerbsCroatsandSlovenes", "attributes": { "weight": 180.62471706644783, "sourceWeight": "180.62471706644783", "direction": "Exp", "source_type": "primary" } }, { "key": "geid_107_9254", "source": "WestIndiesother", "target": "Ecuador", "attributes": { "weight": 28.804889090102964, "sourceWeight": "28.804889090102964", "direction": "Imp", "source_type": "primary", "targetWeight": "28.804889090102964" } }, { "key": "geid_107_9255", "source": "ArgentinaLaPlata", "target": "Ecuador", "attributes": { "weight": 1545.862381168859, "sourceWeight": "1545.862381168859", "direction": "Imp", "source_type": "primary", "targetWeight": "1545.862381168859" } }, { "key": "geid_107_9256", "source": "ColombiaNewGranadaGranColombia", "target": "Ecuador", "attributes": { "weight": 256.4092349480911, "sourceWeight": "256.4092349480911", "direction": "Imp", "source_type": "primary", "targetWeight": "256.4092349480911" } }, { "key": "geid_107_9257", "source": "Cuba", "target": "Ecuador", "attributes": { "weight": 17.740153915809444, "sourceWeight": "17.740153915809444", "direction": "Imp", "source_type": "primary", "targetWeight": "17.740153915809444" } }, { "key": "geid_107_9258", "source": "Chile", "target": "Ecuador", "attributes": { "weight": 25249.405613414587, "sourceWeight": "25249.405613414587", "direction": "Imp", "source_type": "primary", "targetWeight": "25249.405613414587" } }, { "key": "geid_107_9259", "source": "ElSalvador", "target": "Ecuador", "attributes": { "weight": 1066.6038931649555, "sourceWeight": "1066.6038931649555", "direction": "Imp", "source_type": "primary", "targetWeight": "1066.6038931649555" } }, { "key": "geid_107_9260", "source": "UnitedStatesofAmerica", "target": "Ecuador", "attributes": { "weight": 958169.6256230174, "sourceWeight": "958169.6256230174", "direction": "Imp", "source_type": "primary", "targetWeight": "958169.6256230174" } }, { "key": "geid_107_9261", "source": "Honduras", "target": "Ecuador", "attributes": { "weight": 1158.73381620711, "sourceWeight": "1158.73381620711", "direction": "Imp", "source_type": "primary", "targetWeight": "1158.73381620711" } }, { "key": "geid_107_9262", "source": "Jamaica", "target": "Ecuador", "attributes": { "weight": 613.5441376191931, "sourceWeight": "613.5441376191931", "direction": "Imp", "source_type": "primary", "targetWeight": "613.5441376191931" } }, { "key": "geid_107_9263", "source": "Panama", "target": "Ecuador", "attributes": { "weight": 10078.464916257628, "sourceWeight": "10078.464916257628", "direction": "Imp", "source_type": "primary", "targetWeight": "10078.464916257628" } }, { "key": "geid_107_9264", "source": "Peru", "target": "Ecuador", "attributes": { "weight": 62255.91534634718, "sourceWeight": "62255.91534634718", "direction": "Imp", "source_type": "primary", "targetWeight": "62255.91534634718" } }, { "key": "geid_107_9265", "source": "Uruguay", "target": "Ecuador", "attributes": { "weight": 531.0158442737394, "sourceWeight": "531.0158442737394", "direction": "Imp", "source_type": "primary", "targetWeight": "531.0158442737394" } }, { "key": "geid_107_9266", "source": "Vancouver", "target": "Ecuador", "attributes": { "weight": 1758.3784517891743, "sourceWeight": "1758.3784517891743", "direction": "Imp", "source_type": "primary", "targetWeight": "1758.3784517891743" } }, { "key": "geid_107_9267", "source": "Venezuela", "target": "Ecuador", "attributes": { "weight": 116.95699411505298, "sourceWeight": "116.95699411505298", "direction": "Imp", "source_type": "primary", "targetWeight": "116.95699411505298" } }, { "key": "geid_107_9268", "source": "GermanyZollverein", "target": "Ecuador", "attributes": { "weight": 284448.7369852285, "sourceWeight": "284448.7369852285", "direction": "Imp", "source_type": "primary", "targetWeight": "284448.7369852285" } }, { "key": "geid_107_9269", "source": "Austria", "target": "Ecuador", "attributes": { "weight": 69.81756450886861, "sourceWeight": "69.81756450886861", "direction": "Imp", "source_type": "primary", "targetWeight": "69.81756450886861" } }, { "key": "geid_107_9270", "source": "Belgium", "target": "Ecuador", "attributes": { "weight": 74194.90176554842, "sourceWeight": "74194.90176554842", "direction": "Imp", "source_type": "primary", "targetWeight": "74194.90176554842" } }, { "key": "geid_107_9271", "source": "Denmark", "target": "Ecuador", "attributes": { "weight": 4571.930285199612, "sourceWeight": "4571.930285199612", "direction": "Imp", "source_type": "primary", "targetWeight": "4571.930285199612" } }, { "key": "geid_107_9272", "source": "Scotland", "target": "Ecuador", "attributes": { "weight": 36856.58714352554, "sourceWeight": "36856.58714352554", "direction": "Imp", "source_type": "primary", "targetWeight": "36856.58714352554" } }, { "key": "geid_107_9273", "source": "Spain", "target": "Ecuador", "attributes": { "weight": 47593.449524699805, "sourceWeight": "47593.449524699805", "direction": "Imp", "source_type": "primary", "targetWeight": "47593.449524699805" } }, { "key": "geid_107_9274", "source": "France", "target": "Ecuador", "attributes": { "weight": 101305.51471259922, "sourceWeight": "101305.51471259922", "direction": "Imp", "source_type": "primary", "targetWeight": "101305.51471259922" } }, { "key": "geid_107_9275", "source": "Netherlands", "target": "Ecuador", "attributes": { "weight": 75994.29289275635, "sourceWeight": "75994.29289275635", "direction": "Imp", "source_type": "primary", "targetWeight": "75994.29289275635" } }, { "key": "geid_107_9276", "source": "UnitedKingdom", "target": "Ecuador", "attributes": { "weight": 553538.935717845, "sourceWeight": "553538.935717845", "direction": "Imp", "source_type": "primary", "targetWeight": "553538.935717845" } }, { "key": "geid_107_9277", "source": "Ireland", "target": "Ecuador", "attributes": { "weight": 16.414214576741212, "sourceWeight": "16.414214576741212", "direction": "Imp", "source_type": "primary", "targetWeight": "16.414214576741212" } }, { "key": "geid_107_9278", "source": "Italy", "target": "Ecuador", "attributes": { "weight": 104163.27976466066, "sourceWeight": "104163.27976466066", "direction": "Imp", "source_type": "primary", "targetWeight": "104163.27976466066" } }, { "key": "geid_107_9279", "source": "Norway", "target": "Ecuador", "attributes": { "weight": 8627.430058855236, "sourceWeight": "8627.430058855236", "direction": "Imp", "source_type": "primary", "targetWeight": "8627.430058855236" } }, { "key": "geid_107_9280", "source": "Portugal", "target": "Ecuador", "attributes": { "weight": 96.74784970580615, "sourceWeight": "96.74784970580615", "direction": "Imp", "source_type": "primary", "targetWeight": "96.74784970580615" } }, { "key": "geid_107_9281", "source": "Sweden", "target": "Ecuador", "attributes": { "weight": 2820.5015844290024, "sourceWeight": "2820.5015844290024", "direction": "Imp", "source_type": "primary", "targetWeight": "2820.5015844290024" } }, { "key": "geid_107_9282", "source": "PeoplesRepublicofChinaChina", "target": "Ecuador", "attributes": { "weight": 3399.1598008168485, "sourceWeight": "3399.1598008168485", "direction": "Imp", "source_type": "primary", "targetWeight": "3399.1598008168485" } }, { "key": "geid_107_9283", "source": "India", "target": "Ecuador", "attributes": { "weight": 15157.361249443053, "sourceWeight": "15157.361249443053", "direction": "Imp", "source_type": "primary", "targetWeight": "15157.361249443053" } }, { "key": "geid_107_9284", "source": "Japan", "target": "Ecuador", "attributes": { "weight": 1982.0049796299577, "sourceWeight": "1982.0049796299577", "direction": "Imp", "source_type": "primary", "targetWeight": "1982.0049796299577" } } ] } ================================================ FILE: packages/storybook/stories/3-additional-packages/edge-curve/data/les-miserables.json ================================================ { "nodes": [ { "key": "0.0", "attributes": { "x": 268.72385, "y": 91.18155, "size": 22.714287, "label": "Myriel", "color": "#D8482D" } }, { "key": "1.0", "attributes": { "x": 296.39902, "y": 57.118374, "size": 15, "label": "Napoleon", "color": "#B30000" } }, { "key": "2.0", "attributes": { "x": 248.45229, "y": 52.22656, "size": 16.714285, "label": "MlleBaptistine", "color": "#BB100A" } }, { "key": "3.0", "attributes": { "x": 224.83313, "y": 98.01885, "size": 16.714285, "label": "MmeMagloire", "color": "#BB100A" } }, { "key": "4.0", "attributes": { "x": 270.9098, "y": 149.2961, "size": 15, "label": "CountessDeLo", "color": "#B30000" } }, { "key": "5.0", "attributes": { "x": 318.6509, "y": 85.41602, "size": 15, "label": "Geborand", "color": "#B30000" } }, { "key": "6.0", "attributes": { "x": 330.3126, "y": 117.94921, "size": 15, "label": "Champtercier", "color": "#B30000" } }, { "key": "7.0", "attributes": { "x": 310.513, "y": 155.66956, "size": 15, "label": "Cravatte", "color": "#B30000" } }, { "key": "8.0", "attributes": { "x": 295.74683, "y": 124.78035, "size": 15, "label": "Count", "color": "#B30000" } }, { "key": "9.0", "attributes": { "x": 241.03372, "y": 131.8897, "size": 15, "label": "OldMan", "color": "#B30000" } }, { "key": "10.0", "attributes": { "x": -55.532795, "y": -246.75798, "size": 15, "label": "Labarre", "color": "#B30000" } }, { "key": "11.0", "attributes": { "x": -8.81755, "y": -60.480377, "size": 45, "label": "Valjean", "color": "#FEF0D9" } }, { "key": "12.0", "attributes": { "x": 116.85369, "y": -100.77216, "size": 15.857142, "label": "Marguerite", "color": "#B70805" } }, { "key": "13.0", "attributes": { "x": 78.10812, "y": -16.99423, "size": 15, "label": "MmeDeR", "color": "#B30000" } }, { "key": "14.0", "attributes": { "x": 47.669666, "y": -96.23158, "size": 15, "label": "Isabeau", "color": "#B30000" } }, { "key": "15.0", "attributes": { "x": 20.945133, "y": -118.35298, "size": 15, "label": "Gervais", "color": "#B30000" } }, { "key": "16.0", "attributes": { "x": 232.50653, "y": -165.75543, "size": 21.857143, "label": "Tholomyes", "color": "#D44028" } }, { "key": "17.0", "attributes": { "x": 322.50223, "y": -210.94756, "size": 20.142857, "label": "Listolier", "color": "#CC301E" } }, { "key": "18.0", "attributes": { "x": 322.0389, "y": -162.5361, "size": 20.142857, "label": "Fameuil", "color": "#CC301E" } }, { "key": "19.0", "attributes": { "x": 282.84045, "y": -234.37758, "size": 20.142857, "label": "Blacheville", "color": "#CC301E" } }, { "key": "20.0", "attributes": { "x": 282.14212, "y": -141.3707, "size": 20.142857, "label": "Favourite", "color": "#CC301E" } }, { "key": "21.0", "attributes": { "x": 279.24896, "y": -186.69917, "size": 20.142857, "label": "Dahlia", "color": "#CC301E" } }, { "key": "22.0", "attributes": { "x": 240.49136, "y": -212.45226, "size": 20.142857, "label": "Zephine", "color": "#CC301E" } }, { "key": "23.0", "attributes": { "x": 185.86234, "y": -128.47615, "size": 27, "label": "Fantine", "color": "#ED7047" } }, { "key": "24.0", "attributes": { "x": -15.730793, "y": 46.37429, "size": 23.57143, "label": "MmeThenardier", "color": "#DC5032" } }, { "key": "25.0", "attributes": { "x": 3.6068764, "y": 98.60965, "size": 27.857143, "label": "Thenardier", "color": "#F1784C" } }, { "key": "26.0", "attributes": { "x": -69.92912, "y": -15.777599, "size": 23.57143, "label": "Cosette", "color": "#DC5032" } }, { "key": "27.0", "attributes": { "x": 54.198936, "y": 49.115128, "size": 28.714287, "label": "Javert", "color": "#F58051" } }, { "key": "28.0", "attributes": { "x": 58.138313, "y": -56.714897, "size": 17.571428, "label": "Fauchelevent", "color": "#BF180F" } }, { "key": "29.0", "attributes": { "x": 97.39532, "y": -157.35661, "size": 21, "label": "Bamatabois", "color": "#D03823" } }, { "key": "30.0", "attributes": { "x": 157.66608, "y": -88.86034, "size": 15.857142, "label": "Perpetue", "color": "#B70805" } }, { "key": "31.0", "attributes": { "x": 130.24326, "y": -62.113045, "size": 17.571428, "label": "Simplice", "color": "#BF180F" } }, { "key": "32.0", "attributes": { "x": -31.725157, "y": -124.8531, "size": 15, "label": "Scaufflaire", "color": "#B30000" } }, { "key": "33.0", "attributes": { "x": 45.4282, "y": -2.6807823, "size": 15.857142, "label": "Woman1", "color": "#B70805" } }, { "key": "34.0", "attributes": { "x": -2.146402, "y": -152.7878, "size": 19.285715, "label": "Judge", "color": "#C72819" } }, { "key": "35.0", "attributes": { "x": 54.183117, "y": -142.10239, "size": 19.285715, "label": "Champmathieu", "color": "#C72819" } }, { "key": "36.0", "attributes": { "x": -21.096437, "y": -192.47128, "size": 19.285715, "label": "Brevet", "color": "#C72819" } }, { "key": "37.0", "attributes": { "x": 56.919018, "y": -184.99847, "size": 19.285715, "label": "Chenildieu", "color": "#C72819" } }, { "key": "38.0", "attributes": { "x": 21.456747, "y": -211.19899, "size": 19.285715, "label": "Cochepaille", "color": "#C72819" } }, { "key": "39.0", "attributes": { "x": -69.42261, "y": 66.22773, "size": 16.714285, "label": "Pontmercy", "color": "#BB100A" } }, { "key": "40.0", "attributes": { "x": 52.13746, "y": 97.863976, "size": 15, "label": "Boulatruelle", "color": "#B30000" } }, { "key": "41.0", "attributes": { "x": -84.15585, "y": 140.50175, "size": 23.57143, "label": "Eponine", "color": "#DC5032" } }, { "key": "42.0", "attributes": { "x": -47.696083, "y": 112.90357, "size": 16.714285, "label": "Anzelma", "color": "#BB100A" } }, { "key": "43.0", "attributes": { "x": 10.037987, "y": 7.8234367, "size": 16.714285, "label": "Woman2", "color": "#BB100A" } }, { "key": "44.0", "attributes": { "x": 82.99555, "y": -87.651726, "size": 15.857142, "label": "MotherInnocent", "color": "#B70805" } }, { "key": "45.0", "attributes": { "x": 94.93769, "y": -47.799778, "size": 15, "label": "Gribier", "color": "#B30000" } }, { "key": "46.0", "attributes": { "x": -293.23438, "y": -146.10257, "size": 15, "label": "Jondrette", "color": "#B30000" } }, { "key": "47.0", "attributes": { "x": -294.94247, "y": -108.07895, "size": 15.857142, "label": "MmeBurgon", "color": "#B70805" } }, { "key": "48.0", "attributes": { "x": -215.57619, "y": 34.40003, "size": 33, "label": "Gavroche", "color": "#FCA072" } }, { "key": "49.0", "attributes": { "x": -119.18742, "y": -17.39732, "size": 20.142857, "label": "Gillenormand", "color": "#CC301E" } }, { "key": "50.0", "attributes": { "x": -57.473045, "y": 29.63873, "size": 15.857142, "label": "Magnon", "color": "#B70805" } }, { "key": "51.0", "attributes": { "x": -93.255005, "y": -60.657784, "size": 20.142857, "label": "MlleGillenormand", "color": "#CC301E" } }, { "key": "52.0", "attributes": { "x": -93.764046, "y": 22.565668, "size": 15.857142, "label": "MmePontmercy", "color": "#B70805" } }, { "key": "53.0", "attributes": { "x": -132.14008, "y": -66.85538, "size": 15, "label": "MlleVaubois", "color": "#B30000" } }, { "key": "54.0", "attributes": { "x": -95.75337, "y": -102.71505, "size": 17.571428, "label": "LtGillenormand", "color": "#BF180F" } }, { "key": "55.0", "attributes": { "x": -142.15263, "y": 36.388676, "size": 30.428574, "label": "Marius", "color": "#FC8F5C" } }, { "key": "56.0", "attributes": { "x": -160.2533, "y": -24.29684, "size": 15.857142, "label": "BaronessT", "color": "#B70805" } }, { "key": "57.0", "attributes": { "x": -267.16248, "y": 196.98003, "size": 23.57143, "label": "Mabeuf", "color": "#DC5032" } }, { "key": "58.0", "attributes": { "x": -190.88988, "y": 96.44671, "size": 27, "label": "Enjolras", "color": "#ED7047" } }, { "key": "59.0", "attributes": { "x": -222.5417, "y": 144.66484, "size": 23.57143, "label": "Combeferre", "color": "#DC5032" } }, { "key": "60.0", "attributes": { "x": -325.61102, "y": 166.71417, "size": 21.857143, "label": "Prouvaire", "color": "#D44028" } }, { "key": "61.0", "attributes": { "x": -276.3468, "y": 145.79153, "size": 23.57143, "label": "Feuilly", "color": "#DC5032" } }, { "key": "62.0", "attributes": { "x": -251.45561, "y": 97.83937, "size": 25.285713, "label": "Courfeyrac", "color": "#E5603D" } }, { "key": "63.0", "attributes": { "x": -318.40936, "y": 114.202415, "size": 24.428572, "label": "Bahorel", "color": "#E05837" } }, { "key": "64.0", "attributes": { "x": -278.9682, "y": 45.932438, "size": 25.285713, "label": "Bossuet", "color": "#E5603D" } }, { "key": "65.0", "attributes": { "x": -333.04984, "y": 62.438156, "size": 24.428572, "label": "Joly", "color": "#E05837" } }, { "key": "66.0", "attributes": { "x": -370.2446, "y": 101.73884, "size": 22.714287, "label": "Grantaire", "color": "#D8482D" } }, { "key": "67.0", "attributes": { "x": -253.54378, "y": 237.9443, "size": 15, "label": "MotherPlutarch", "color": "#B30000" } }, { "key": "68.0", "attributes": { "x": -16.550194, "y": 152.69055, "size": 22.714287, "label": "Gueulemer", "color": "#D8482D" } }, { "key": "69.0", "attributes": { "x": 35.653145, "y": 144.49445, "size": 22.714287, "label": "Babet", "color": "#D8482D" } }, { "key": "70.0", "attributes": { "x": 58.97649, "y": 188.46011, "size": 22.714287, "label": "Claquesous", "color": "#D8482D" } }, { "key": "71.0", "attributes": { "x": -2.9325058, "y": 200.66508, "size": 21.857143, "label": "Montparnasse", "color": "#D44028" } }, { "key": "72.0", "attributes": { "x": -30.056648, "y": 3.5053203, "size": 16.714285, "label": "Toussaint", "color": "#BB100A" } }, { "key": "73.0", "attributes": { "x": -244.859, "y": -11.3161335, "size": 15.857142, "label": "Child1", "color": "#B70805" } }, { "key": "74.0", "attributes": { "x": -280.33203, "y": -1.466383, "size": 15.857142, "label": "Child2", "color": "#B70805" } }, { "key": "75.0", "attributes": { "x": -56.819256, "y": 182.0544, "size": 20.142857, "label": "Brujon", "color": "#CC301E" } }, { "key": "76.0", "attributes": { "x": -382.06223, "y": 47.045475, "size": 20.142857, "label": "MmeHucheloup", "color": "#CC301E" } } ], "edges": [ { "key": "0", "source": "1.0", "target": "0.0", "attributes": { "size": 1 } }, { "key": "1", "source": "2.0", "target": "0.0", "attributes": { "size": 8 } }, { "key": "2", "source": "3.0", "target": "0.0", "attributes": { "size": 10 } }, { "key": "3", "source": "3.0", "target": "2.0", "attributes": { "size": 6 } }, { "key": "4", "source": "4.0", "target": "0.0", "attributes": { "size": 1 } }, { "key": "5", "source": "5.0", "target": "0.0", "attributes": { "size": 1 } }, { "key": "6", "source": "6.0", "target": "0.0", "attributes": { "size": 1 } }, { "key": "7", "source": "7.0", "target": "0.0", "attributes": { "size": 1 } }, { "key": "8", "source": "8.0", "target": "0.0", "attributes": { "size": 2 } }, { "key": "9", "source": "9.0", "target": "0.0", "attributes": { "size": 1 } }, { "key": "13", "source": "11.0", "target": "0.0", "attributes": { "size": 5 } }, { "key": "12", "source": "11.0", "target": "2.0", "attributes": { "size": 3 } }, { "key": "11", "source": "11.0", "target": "3.0", "attributes": { "size": 3 } }, { "key": "10", "source": "11.0", "target": "10.0", "attributes": { "size": 1 } }, { "key": "14", "source": "12.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "15", "source": "13.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "16", "source": "14.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "17", "source": "15.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "18", "source": "17.0", "target": "16.0", "attributes": { "size": 4 } }, { "key": "19", "source": "18.0", "target": "16.0", "attributes": { "size": 4 } }, { "key": "20", "source": "18.0", "target": "17.0", "attributes": { "size": 4 } }, { "key": "21", "source": "19.0", "target": "16.0", "attributes": { "size": 4 } }, { "key": "22", "source": "19.0", "target": "17.0", "attributes": { "size": 4 } }, { "key": "23", "source": "19.0", "target": "18.0", "attributes": { "size": 4 } }, { "key": "24", "source": "20.0", "target": "16.0", "attributes": { "size": 3 } }, { "key": "25", "source": "20.0", "target": "17.0", "attributes": { "size": 3 } }, { "key": "26", "source": "20.0", "target": "18.0", "attributes": { "size": 3 } }, { "key": "27", "source": "20.0", "target": "19.0", "attributes": { "size": 4 } }, { "key": "28", "source": "21.0", "target": "16.0", "attributes": { "size": 3 } }, { "key": "29", "source": "21.0", "target": "17.0", "attributes": { "size": 3 } }, { "key": "30", "source": "21.0", "target": "18.0", "attributes": { "size": 3 } }, { "key": "31", "source": "21.0", "target": "19.0", "attributes": { "size": 3 } }, { "key": "32", "source": "21.0", "target": "20.0", "attributes": { "size": 5 } }, { "key": "33", "source": "22.0", "target": "16.0", "attributes": { "size": 3 } }, { "key": "34", "source": "22.0", "target": "17.0", "attributes": { "size": 3 } }, { "key": "35", "source": "22.0", "target": "18.0", "attributes": { "size": 3 } }, { "key": "36", "source": "22.0", "target": "19.0", "attributes": { "size": 3 } }, { "key": "37", "source": "22.0", "target": "20.0", "attributes": { "size": 4 } }, { "key": "38", "source": "22.0", "target": "21.0", "attributes": { "size": 4 } }, { "key": "47", "source": "23.0", "target": "11.0", "attributes": { "size": 9 } }, { "key": "46", "source": "23.0", "target": "12.0", "attributes": { "size": 2 } }, { "key": "39", "source": "23.0", "target": "16.0", "attributes": { "size": 3 } }, { "key": "40", "source": "23.0", "target": "17.0", "attributes": { "size": 3 } }, { "key": "41", "source": "23.0", "target": "18.0", "attributes": { "size": 3 } }, { "key": "42", "source": "23.0", "target": "19.0", "attributes": { "size": 3 } }, { "key": "43", "source": "23.0", "target": "20.0", "attributes": { "size": 4 } }, { "key": "44", "source": "23.0", "target": "21.0", "attributes": { "size": 4 } }, { "key": "45", "source": "23.0", "target": "22.0", "attributes": { "size": 4 } }, { "key": "49", "source": "24.0", "target": "11.0", "attributes": { "size": 7 } }, { "key": "48", "source": "24.0", "target": "23.0", "attributes": { "size": 2 } }, { "key": "52", "source": "25.0", "target": "11.0", "attributes": { "size": 12 } }, { "key": "51", "source": "25.0", "target": "23.0", "attributes": { "size": 1 } }, { "key": "50", "source": "25.0", "target": "24.0", "attributes": { "size": 13 } }, { "key": "54", "source": "26.0", "target": "11.0", "attributes": { "size": 31 } }, { "key": "55", "source": "26.0", "target": "16.0", "attributes": { "size": 1 } }, { "key": "53", "source": "26.0", "target": "24.0", "attributes": { "size": 4 } }, { "key": "56", "source": "26.0", "target": "25.0", "attributes": { "size": 1 } }, { "key": "57", "source": "27.0", "target": "11.0", "attributes": { "size": 17 } }, { "key": "58", "source": "27.0", "target": "23.0", "attributes": { "size": 5 } }, { "key": "60", "source": "27.0", "target": "24.0", "attributes": { "size": 1 } }, { "key": "59", "source": "27.0", "target": "25.0", "attributes": { "size": 5 } }, { "key": "61", "source": "27.0", "target": "26.0", "attributes": { "size": 1 } }, { "key": "62", "source": "28.0", "target": "11.0", "attributes": { "size": 8 } }, { "key": "63", "source": "28.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "66", "source": "29.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "64", "source": "29.0", "target": "23.0", "attributes": { "size": 1 } }, { "key": "65", "source": "29.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "67", "source": "30.0", "target": "23.0", "attributes": { "size": 1 } }, { "key": "69", "source": "31.0", "target": "11.0", "attributes": { "size": 3 } }, { "key": "70", "source": "31.0", "target": "23.0", "attributes": { "size": 2 } }, { "key": "71", "source": "31.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "68", "source": "31.0", "target": "30.0", "attributes": { "size": 2 } }, { "key": "72", "source": "32.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "73", "source": "33.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "74", "source": "33.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "75", "source": "34.0", "target": "11.0", "attributes": { "size": 3 } }, { "key": "76", "source": "34.0", "target": "29.0", "attributes": { "size": 2 } }, { "key": "77", "source": "35.0", "target": "11.0", "attributes": { "size": 3 } }, { "key": "79", "source": "35.0", "target": "29.0", "attributes": { "size": 2 } }, { "key": "78", "source": "35.0", "target": "34.0", "attributes": { "size": 3 } }, { "key": "82", "source": "36.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "83", "source": "36.0", "target": "29.0", "attributes": { "size": 1 } }, { "key": "80", "source": "36.0", "target": "34.0", "attributes": { "size": 2 } }, { "key": "81", "source": "36.0", "target": "35.0", "attributes": { "size": 2 } }, { "key": "87", "source": "37.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "88", "source": "37.0", "target": "29.0", "attributes": { "size": 1 } }, { "key": "84", "source": "37.0", "target": "34.0", "attributes": { "size": 2 } }, { "key": "85", "source": "37.0", "target": "35.0", "attributes": { "size": 2 } }, { "key": "86", "source": "37.0", "target": "36.0", "attributes": { "size": 2 } }, { "key": "93", "source": "38.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "94", "source": "38.0", "target": "29.0", "attributes": { "size": 1 } }, { "key": "89", "source": "38.0", "target": "34.0", "attributes": { "size": 2 } }, { "key": "90", "source": "38.0", "target": "35.0", "attributes": { "size": 2 } }, { "key": "91", "source": "38.0", "target": "36.0", "attributes": { "size": 2 } }, { "key": "92", "source": "38.0", "target": "37.0", "attributes": { "size": 2 } }, { "key": "95", "source": "39.0", "target": "25.0", "attributes": { "size": 1 } }, { "key": "96", "source": "40.0", "target": "25.0", "attributes": { "size": 1 } }, { "key": "97", "source": "41.0", "target": "24.0", "attributes": { "size": 2 } }, { "key": "98", "source": "41.0", "target": "25.0", "attributes": { "size": 3 } }, { "key": "101", "source": "42.0", "target": "24.0", "attributes": { "size": 1 } }, { "key": "100", "source": "42.0", "target": "25.0", "attributes": { "size": 2 } }, { "key": "99", "source": "42.0", "target": "41.0", "attributes": { "size": 2 } }, { "key": "102", "source": "43.0", "target": "11.0", "attributes": { "size": 3 } }, { "key": "103", "source": "43.0", "target": "26.0", "attributes": { "size": 1 } }, { "key": "104", "source": "43.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "106", "source": "44.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "105", "source": "44.0", "target": "28.0", "attributes": { "size": 3 } }, { "key": "107", "source": "45.0", "target": "28.0", "attributes": { "size": 2 } }, { "key": "108", "source": "47.0", "target": "46.0", "attributes": { "size": 1 } }, { "key": "112", "source": "48.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "110", "source": "48.0", "target": "25.0", "attributes": { "size": 1 } }, { "key": "111", "source": "48.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "109", "source": "48.0", "target": "47.0", "attributes": { "size": 2 } }, { "key": "114", "source": "49.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "113", "source": "49.0", "target": "26.0", "attributes": { "size": 3 } }, { "key": "116", "source": "50.0", "target": "24.0", "attributes": { "size": 1 } }, { "key": "115", "source": "50.0", "target": "49.0", "attributes": { "size": 1 } }, { "key": "119", "source": "51.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "118", "source": "51.0", "target": "26.0", "attributes": { "size": 2 } }, { "key": "117", "source": "51.0", "target": "49.0", "attributes": { "size": 9 } }, { "key": "121", "source": "52.0", "target": "39.0", "attributes": { "size": 1 } }, { "key": "120", "source": "52.0", "target": "51.0", "attributes": { "size": 1 } }, { "key": "122", "source": "53.0", "target": "51.0", "attributes": { "size": 1 } }, { "key": "125", "source": "54.0", "target": "26.0", "attributes": { "size": 1 } }, { "key": "124", "source": "54.0", "target": "49.0", "attributes": { "size": 1 } }, { "key": "123", "source": "54.0", "target": "51.0", "attributes": { "size": 2 } }, { "key": "131", "source": "55.0", "target": "11.0", "attributes": { "size": 19 } }, { "key": "132", "source": "55.0", "target": "16.0", "attributes": { "size": 1 } }, { "key": "133", "source": "55.0", "target": "25.0", "attributes": { "size": 2 } }, { "key": "130", "source": "55.0", "target": "26.0", "attributes": { "size": 21 } }, { "key": "128", "source": "55.0", "target": "39.0", "attributes": { "size": 1 } }, { "key": "134", "source": "55.0", "target": "41.0", "attributes": { "size": 5 } }, { "key": "135", "source": "55.0", "target": "48.0", "attributes": { "size": 4 } }, { "key": "127", "source": "55.0", "target": "49.0", "attributes": { "size": 12 } }, { "key": "126", "source": "55.0", "target": "51.0", "attributes": { "size": 6 } }, { "key": "129", "source": "55.0", "target": "54.0", "attributes": { "size": 1 } }, { "key": "136", "source": "56.0", "target": "49.0", "attributes": { "size": 1 } }, { "key": "137", "source": "56.0", "target": "55.0", "attributes": { "size": 1 } }, { "key": "139", "source": "57.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "140", "source": "57.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "138", "source": "57.0", "target": "55.0", "attributes": { "size": 1 } }, { "key": "145", "source": "58.0", "target": "11.0", "attributes": { "size": 4 } }, { "key": "143", "source": "58.0", "target": "27.0", "attributes": { "size": 6 } }, { "key": "142", "source": "58.0", "target": "48.0", "attributes": { "size": 7 } }, { "key": "141", "source": "58.0", "target": "55.0", "attributes": { "size": 7 } }, { "key": "144", "source": "58.0", "target": "57.0", "attributes": { "size": 1 } }, { "key": "148", "source": "59.0", "target": "48.0", "attributes": { "size": 6 } }, { "key": "147", "source": "59.0", "target": "55.0", "attributes": { "size": 5 } }, { "key": "149", "source": "59.0", "target": "57.0", "attributes": { "size": 2 } }, { "key": "146", "source": "59.0", "target": "58.0", "attributes": { "size": 15 } }, { "key": "150", "source": "60.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "151", "source": "60.0", "target": "58.0", "attributes": { "size": 4 } }, { "key": "152", "source": "60.0", "target": "59.0", "attributes": { "size": 2 } }, { "key": "153", "source": "61.0", "target": "48.0", "attributes": { "size": 2 } }, { "key": "158", "source": "61.0", "target": "55.0", "attributes": { "size": 1 } }, { "key": "157", "source": "61.0", "target": "57.0", "attributes": { "size": 1 } }, { "key": "154", "source": "61.0", "target": "58.0", "attributes": { "size": 6 } }, { "key": "156", "source": "61.0", "target": "59.0", "attributes": { "size": 5 } }, { "key": "155", "source": "61.0", "target": "60.0", "attributes": { "size": 2 } }, { "key": "164", "source": "62.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "162", "source": "62.0", "target": "48.0", "attributes": { "size": 7 } }, { "key": "159", "source": "62.0", "target": "55.0", "attributes": { "size": 9 } }, { "key": "163", "source": "62.0", "target": "57.0", "attributes": { "size": 2 } }, { "key": "160", "source": "62.0", "target": "58.0", "attributes": { "size": 17 } }, { "key": "161", "source": "62.0", "target": "59.0", "attributes": { "size": 13 } }, { "key": "166", "source": "62.0", "target": "60.0", "attributes": { "size": 3 } }, { "key": "165", "source": "62.0", "target": "61.0", "attributes": { "size": 6 } }, { "key": "168", "source": "63.0", "target": "48.0", "attributes": { "size": 5 } }, { "key": "174", "source": "63.0", "target": "55.0", "attributes": { "size": 1 } }, { "key": "170", "source": "63.0", "target": "57.0", "attributes": { "size": 2 } }, { "key": "171", "source": "63.0", "target": "58.0", "attributes": { "size": 4 } }, { "key": "167", "source": "63.0", "target": "59.0", "attributes": { "size": 5 } }, { "key": "173", "source": "63.0", "target": "60.0", "attributes": { "size": 2 } }, { "key": "172", "source": "63.0", "target": "61.0", "attributes": { "size": 3 } }, { "key": "169", "source": "63.0", "target": "62.0", "attributes": { "size": 6 } }, { "key": "184", "source": "64.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "177", "source": "64.0", "target": "48.0", "attributes": { "size": 5 } }, { "key": "175", "source": "64.0", "target": "55.0", "attributes": { "size": 5 } }, { "key": "183", "source": "64.0", "target": "57.0", "attributes": { "size": 1 } }, { "key": "179", "source": "64.0", "target": "58.0", "attributes": { "size": 10 } }, { "key": "182", "source": "64.0", "target": "59.0", "attributes": { "size": 9 } }, { "key": "181", "source": "64.0", "target": "60.0", "attributes": { "size": 2 } }, { "key": "180", "source": "64.0", "target": "61.0", "attributes": { "size": 6 } }, { "key": "176", "source": "64.0", "target": "62.0", "attributes": { "size": 12 } }, { "key": "178", "source": "64.0", "target": "63.0", "attributes": { "size": 4 } }, { "key": "187", "source": "65.0", "target": "48.0", "attributes": { "size": 3 } }, { "key": "194", "source": "65.0", "target": "55.0", "attributes": { "size": 2 } }, { "key": "193", "source": "65.0", "target": "57.0", "attributes": { "size": 1 } }, { "key": "189", "source": "65.0", "target": "58.0", "attributes": { "size": 5 } }, { "key": "192", "source": "65.0", "target": "59.0", "attributes": { "size": 5 } }, { "key": "191", "source": "65.0", "target": "60.0", "attributes": { "size": 2 } }, { "key": "190", "source": "65.0", "target": "61.0", "attributes": { "size": 5 } }, { "key": "188", "source": "65.0", "target": "62.0", "attributes": { "size": 5 } }, { "key": "185", "source": "65.0", "target": "63.0", "attributes": { "size": 5 } }, { "key": "186", "source": "65.0", "target": "64.0", "attributes": { "size": 7 } }, { "key": "200", "source": "66.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "196", "source": "66.0", "target": "58.0", "attributes": { "size": 3 } }, { "key": "197", "source": "66.0", "target": "59.0", "attributes": { "size": 1 } }, { "key": "203", "source": "66.0", "target": "60.0", "attributes": { "size": 1 } }, { "key": "202", "source": "66.0", "target": "61.0", "attributes": { "size": 1 } }, { "key": "198", "source": "66.0", "target": "62.0", "attributes": { "size": 2 } }, { "key": "201", "source": "66.0", "target": "63.0", "attributes": { "size": 1 } }, { "key": "195", "source": "66.0", "target": "64.0", "attributes": { "size": 3 } }, { "key": "199", "source": "66.0", "target": "65.0", "attributes": { "size": 2 } }, { "key": "204", "source": "67.0", "target": "57.0", "attributes": { "size": 3 } }, { "key": "206", "source": "68.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "207", "source": "68.0", "target": "24.0", "attributes": { "size": 1 } }, { "key": "205", "source": "68.0", "target": "25.0", "attributes": { "size": 5 } }, { "key": "208", "source": "68.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "210", "source": "68.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "209", "source": "68.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "213", "source": "69.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "214", "source": "69.0", "target": "24.0", "attributes": { "size": 1 } }, { "key": "211", "source": "69.0", "target": "25.0", "attributes": { "size": 6 } }, { "key": "215", "source": "69.0", "target": "27.0", "attributes": { "size": 2 } }, { "key": "217", "source": "69.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "216", "source": "69.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "212", "source": "69.0", "target": "68.0", "attributes": { "size": 6 } }, { "key": "221", "source": "70.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "222", "source": "70.0", "target": "24.0", "attributes": { "size": 1 } }, { "key": "218", "source": "70.0", "target": "25.0", "attributes": { "size": 4 } }, { "key": "223", "source": "70.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "224", "source": "70.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "225", "source": "70.0", "target": "58.0", "attributes": { "size": 1 } }, { "key": "220", "source": "70.0", "target": "68.0", "attributes": { "size": 4 } }, { "key": "219", "source": "70.0", "target": "69.0", "attributes": { "size": 4 } }, { "key": "230", "source": "71.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "233", "source": "71.0", "target": "25.0", "attributes": { "size": 1 } }, { "key": "226", "source": "71.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "232", "source": "71.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "231", "source": "71.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "228", "source": "71.0", "target": "68.0", "attributes": { "size": 2 } }, { "key": "227", "source": "71.0", "target": "69.0", "attributes": { "size": 2 } }, { "key": "229", "source": "71.0", "target": "70.0", "attributes": { "size": 2 } }, { "key": "236", "source": "72.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "234", "source": "72.0", "target": "26.0", "attributes": { "size": 2 } }, { "key": "235", "source": "72.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "237", "source": "73.0", "target": "48.0", "attributes": { "size": 2 } }, { "key": "238", "source": "74.0", "target": "48.0", "attributes": { "size": 2 } }, { "key": "239", "source": "74.0", "target": "73.0", "attributes": { "size": 3 } }, { "key": "242", "source": "75.0", "target": "25.0", "attributes": { "size": 3 } }, { "key": "244", "source": "75.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "243", "source": "75.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "241", "source": "75.0", "target": "68.0", "attributes": { "size": 3 } }, { "key": "240", "source": "75.0", "target": "69.0", "attributes": { "size": 3 } }, { "key": "245", "source": "75.0", "target": "70.0", "attributes": { "size": 1 } }, { "key": "246", "source": "75.0", "target": "71.0", "attributes": { "size": 1 } }, { "key": "252", "source": "76.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "253", "source": "76.0", "target": "58.0", "attributes": { "size": 1 } }, { "key": "251", "source": "76.0", "target": "62.0", "attributes": { "size": 1 } }, { "key": "250", "source": "76.0", "target": "63.0", "attributes": { "size": 1 } }, { "key": "247", "source": "76.0", "target": "64.0", "attributes": { "size": 1 } }, { "key": "248", "source": "76.0", "target": "65.0", "attributes": { "size": 1 } }, { "key": "249", "source": "76.0", "target": "66.0", "attributes": { "size": 1 } } ] } ================================================ FILE: packages/storybook/stories/3-additional-packages/edge-curve/index.html ================================================
================================================ FILE: packages/storybook/stories/3-additional-packages/edge-curve/index.ts ================================================ import { createNodeImageProgram } from "@sigma/node-image"; import chroma from "chroma-js"; import Graph from "graphology"; import Sigma from "sigma"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const IMAGES = [ // Images "https://upload.wikimedia.org/wikipedia/commons/5/5b/6n-graf.svg", "https://upload.wikimedia.org/wikipedia/commons/a/ae/R%C3%A9seaux_d%C3%A9centralis%C3%A9s.png", "https://upload.wikimedia.org/wikipedia/commons/4/49/Confluence_of_Erdre_and_Loire%2C_Nantes%2C_France%2C_1890s.jpg", "https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Johnny_Hallyday_en_2009_%C3%A0_Bruxelles.jpg/640px-Johnny_Hallyday_en_2009_%C3%A0_Bruxelles.jpg", // Icons "https://icons.getbootstrap.com/assets/icons/person.svg", "https://icons.getbootstrap.com/assets/icons/building.svg", "https://icons.getbootstrap.com/assets/icons/chat.svg", "https://icons.getbootstrap.com/assets/icons/database.svg", // Weird cases: undefined, 123, "/404.png", ]; const COLORS = chroma.scale(["yellow", "red", "teal"]).mode("lch").colors(IMAGES.length); const RENDERERS = [ { type: "default", renderer: createNodeImageProgram() }, { type: "color", renderer: createNodeImageProgram() }, { type: "padding", renderer: createNodeImageProgram({ padding: 0.25, }), }, { type: "padding-color", renderer: createNodeImageProgram({ padding: 0.25, drawingMode: "color", }), }, { type: "center", renderer: createNodeImageProgram({ keepWithinCircle: true, correctCentering: true, }), }, { type: "scaled-no-crop", renderer: createNodeImageProgram({ size: { mode: "force", value: 256 }, drawingMode: "color", keepWithinCircle: false, }), }, { type: "scaled-no-crop-centered", renderer: createNodeImageProgram({ size: { mode: "force", value: 256 }, drawingMode: "color", keepWithinCircle: false, correctCentering: true, }), }, { type: "center-color", renderer: createNodeImageProgram({ keepWithinCircle: true, correctCentering: true, drawingMode: "color", }), }, { type: "scaled", renderer: createNodeImageProgram({ size: { mode: "force", value: 256 }, }), }, { type: "scaled-color", renderer: createNodeImageProgram({ size: { mode: "force", value: 256 }, drawingMode: "color", }), }, { type: "center-scaled", renderer: createNodeImageProgram({ size: { mode: "force", value: 256 }, correctCentering: true, }), }, { type: "center-scaled-color", renderer: createNodeImageProgram({ size: { mode: "force", value: 256 }, correctCentering: true, drawingMode: "color", }), }, ]; const graph = new Graph(); IMAGES.forEach((image, i) => { RENDERERS.forEach(({ type }, j) => { graph.addNode(`${i}-${j}`, { x: 10 * i, y: -10 * j, size: 3, color: COLORS[i], type, image, }); if (i) graph.addEdge(`${i - 1}-${j}`, `${i}-${j}`, { color: COLORS[i - 1], }); if (j) graph.addEdge(`${i}-${j - 1}`, `${i}-${j}`, { color: COLORS[i], }); }); }); const renderer = new Sigma(graph, container, { allowInvalidContainer: true, stagePadding: 50, itemSizesReference: "positions", zoomToSizeRatioFunction: (x) => x, nodeProgramClasses: RENDERERS.reduce( (iter, { type, renderer }) => ({ ...iter, [type]: renderer, }), {}, ), }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/edge-curve/interactions.ts ================================================ import EdgeCurveProgram from "@sigma/edge-curve"; import Graph from "graphology"; import Sigma from "sigma"; import { EdgeDisplayData, NodeDisplayData } from "sigma/types"; import data from "./data/les-miserables.json"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.import(data); let state: { type: "idle" } | { type: "hovered"; edge: string; source: string; target: string } = { type: "idle" }; const sigma = new Sigma(graph, container, { allowInvalidContainer: true, enableEdgeEvents: true, defaultEdgeType: "curve", zIndex: true, edgeProgramClasses: { curve: EdgeCurveProgram, }, edgeReducer: (edge, attributes) => { const res: Partial = { ...attributes }; if (state.type === "hovered") { if (edge === state.edge) { res.size = (res.size || 1) * 1.5; res.zIndex = 1; } else { res.color = "#f0f0f0"; res.zIndex = 0; } } return res; }, nodeReducer: (node, attributes) => { const res: Partial = { ...attributes }; if (state.type === "hovered") { if (node === state.source || node === state.target) { res.highlighted = true; res.zIndex = 1; } else { res.label = undefined; res.zIndex = 0; } } return res; }, }); sigma.on("enterEdge", ({ edge }) => { state = { type: "hovered", edge, source: graph.source(edge), target: graph.target(edge) }; sigma.refresh(); }); sigma.on("leaveEdge", () => { state = { type: "idle" }; sigma.refresh(); }); return () => { sigma.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/edge-curve/labels.ts ================================================ import EdgeCurveProgram from "@sigma/edge-curve"; import { MultiGraph } from "graphology"; import Sigma from "sigma"; import { EdgeArrowProgram } from "sigma/rendering"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; // Create a graph, with various parallel edges: const graph = new MultiGraph(); graph.addNode("a", { x: 0, y: 0, size: 10, label: "Alexandra" }); graph.addNode("b", { x: 1, y: -1, size: 20, label: "Bastian" }); graph.addNode("c", { x: 3, y: -2, size: 10, label: "Charles" }); graph.addNode("d", { x: 1, y: -3, size: 10, label: "Dorothea" }); graph.addNode("e", { x: 3, y: -4, size: 20, label: "Ernestine" }); graph.addNode("f", { x: 4, y: -5, size: 10, label: "Fabian" }); graph.addEdge("a", "b", { forceLabel: true, size: 2, label: "works with" }); graph.addEdge("b", "c", { forceLabel: true, label: "works with", type: "curved", curvature: 0.5 }); graph.addEdge("b", "d", { forceLabel: true, label: "works with" }); graph.addEdge("c", "b", { forceLabel: true, size: 3, label: "works with", type: "curved" }); graph.addEdge("c", "e", { forceLabel: true, size: 3, label: "works with" }); graph.addEdge("d", "c", { forceLabel: true, label: "works with", type: "curved", curvature: 0.1 }); graph.addEdge("d", "e", { forceLabel: true, label: "works with", type: "curved", curvature: 1 }); graph.addEdge("e", "d", { forceLabel: true, size: 2, label: "works with", type: "curved" }); graph.addEdge("f", "e", { forceLabel: true, label: "works with", type: "curved" }); const renderer = new Sigma(graph, container, { allowInvalidContainer: true, defaultEdgeType: "straight", renderEdgeLabels: true, edgeProgramClasses: { straight: EdgeArrowProgram, curved: EdgeCurveProgram, }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/edge-curve/parallel-edges.ts ================================================ import { DEFAULT_EDGE_CURVATURE, EdgeCurvedArrowProgram, indexParallelEdgesIndex } from "@sigma/edge-curve"; import { MultiGraph } from "graphology"; import Sigma from "sigma"; import { EdgeArrowProgram } from "sigma/rendering"; function getCurvature(index: number, maxIndex: number): number { if (maxIndex <= 0) throw new Error("Invalid maxIndex"); if (index < 0) return -getCurvature(-index, maxIndex); const amplitude = 3.5; const maxCurvature = amplitude * (1 - Math.exp(-maxIndex / amplitude)) * DEFAULT_EDGE_CURVATURE; return (maxCurvature * index) / maxIndex; } export default () => { const container = document.getElementById("sigma-container") as HTMLElement; // Create a graph, with various parallel edges: const graph = new MultiGraph(); graph.addNode("a1", { x: 0, y: 0, size: 10 }); graph.addNode("b1", { x: 10, y: 0, size: 20 }); graph.addNode("c1", { x: 20, y: 0, size: 10 }); graph.addNode("d1", { x: 30, y: 0, size: 10 }); graph.addNode("e1", { x: 40, y: 0, size: 20 }); graph.addNode("a2", { x: 0, y: -10, size: 20 }); graph.addNode("b2", { x: 10, y: -10, size: 10 }); graph.addNode("c2", { x: 20, y: -10, size: 10 }); graph.addNode("d2", { x: 30, y: -10, size: 20 }); graph.addNode("e2", { x: 40, y: -10, size: 10 }); // Parallel edges in the same direction: graph.addEdge("a1", "b1", { size: 6 }); graph.addEdge("b1", "c1", { size: 3 }); graph.addEdge("b1", "c1", { size: 6 }); graph.addEdge("c1", "d1", { size: 3 }); graph.addEdge("c1", "d1", { size: 6 }); graph.addEdge("c1", "d1", { size: 10 }); graph.addEdge("d1", "e1", { size: 3 }); graph.addEdge("d1", "e1", { size: 6 }); graph.addEdge("d1", "e1", { size: 10 }); graph.addEdge("d1", "e1", { size: 3 }); graph.addEdge("d1", "e1", { size: 10 }); // Parallel edges in both directions: graph.addEdge("a2", "b2", { size: 3 }); graph.addEdge("b2", "a2", { size: 6 }); graph.addEdge("b2", "c2", { size: 6 }); graph.addEdge("b2", "c2", { size: 10 }); graph.addEdge("c2", "b2", { size: 3 }); graph.addEdge("c2", "b2", { size: 3 }); graph.addEdge("c2", "d2", { size: 3 }); graph.addEdge("c2", "d2", { size: 6 }); graph.addEdge("c2", "d2", { size: 6 }); graph.addEdge("c2", "d2", { size: 10 }); graph.addEdge("d2", "c2", { size: 3 }); graph.addEdge("d2", "e2", { size: 3 }); graph.addEdge("d2", "e2", { size: 3 }); graph.addEdge("d2", "e2", { size: 3 }); graph.addEdge("d2", "e2", { size: 6 }); graph.addEdge("d2", "e2", { size: 10 }); graph.addEdge("e2", "d2", { size: 3 }); graph.addEdge("e2", "d2", { size: 3 }); graph.addEdge("e2", "d2", { size: 6 }); graph.addEdge("e2", "d2", { size: 6 }); graph.addEdge("e2", "d2", { size: 10 }); // Use dedicated helper to identify parallel edges: indexParallelEdgesIndex(graph, { edgeIndexAttribute: "parallelIndex", edgeMinIndexAttribute: "parallelMinIndex", edgeMaxIndexAttribute: "parallelMaxIndex", }); // Adapt types and curvature of parallel edges for rendering: graph.forEachEdge( ( edge, { parallelIndex, parallelMinIndex, parallelMaxIndex, }: | { parallelIndex: number; parallelMinIndex?: number; parallelMaxIndex: number } | { parallelIndex?: null; parallelMinIndex?: null; parallelMaxIndex?: null }, ) => { if (typeof parallelMinIndex === "number") { graph.mergeEdgeAttributes(edge, { type: parallelIndex ? "curved" : "straight", curvature: getCurvature(parallelIndex, parallelMaxIndex), }); } else if (typeof parallelIndex === "number") { graph.mergeEdgeAttributes(edge, { type: "curved", curvature: getCurvature(parallelIndex, parallelMaxIndex), }); } else { graph.setEdgeAttribute(edge, "type", "straight"); } }, ); const renderer = new Sigma(graph, container, { allowInvalidContainer: true, defaultEdgeType: "straight", edgeProgramClasses: { straight: EdgeArrowProgram, curved: EdgeCurvedArrowProgram, }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/edge-curve/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import arrowHeadsPlay from "./arrow-heads"; import arrowHeadsSource from "./arrow-heads?raw"; import basicPlay from "./basic"; import basicSource from "./basic?raw"; import template from "./index.html?raw"; import interactionsPlay from "./interactions"; import interactionsSource from "./interactions?raw"; import labelsPlay from "./labels"; import labelsSource from "./labels?raw"; import parallelEdgesPlay from "./parallel-edges"; import parallelEdgesSource from "./parallel-edges?raw"; const meta: Meta = { id: "@sigma/edge-curve", title: "Satellite packages/@sigma--edge-curve", }; export default meta; type Story = StoryObj; export const basic: Story = { name: "Basic example", render: () => template, play: wrapStory(basicPlay), args: {}, parameters: { storySource: { source: basicSource, }, }, }; export const interactions: Story = { name: "Interactions", render: () => template, play: wrapStory(interactionsPlay), args: {}, parameters: { storySource: { source: interactionsSource, }, }, }; export const labels: Story = { name: "Labels", render: () => template, play: wrapStory(labelsPlay), args: {}, parameters: { storySource: { source: labelsSource, }, }, }; export const parallelEdges: Story = { name: "Parallel edges", render: () => template, play: wrapStory(parallelEdgesPlay), args: {}, parameters: { storySource: { source: parallelEdgesSource, }, }, }; export const arrowHeads: Story = { name: "Arrow heads", render: () => template, play: wrapStory(arrowHeadsPlay), args: {}, parameters: { storySource: { source: arrowHeadsSource, }, }, }; ================================================ FILE: packages/storybook/stories/3-additional-packages/export-image/available-options.ts ================================================ /** * This is an example of sigma showing how to download an image snapshot of a rendered graph. * More specifically, this story showcases the various options of @sigma/export-image downloadAsImage * function. */ import { downloadAsImage } from "@sigma/export-image"; import Graph from "graphology"; import ForceSupervisor from "graphology-layout-force/worker"; import Sigma from "sigma"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; // Instantiate graph: const graph = new Graph(); const RED = "#FA4F40"; const BLUE = "#727EE0"; const GREEN = "#5DB346"; graph.addNode("John", { size: 15, label: "John", color: RED }); graph.addNode("Mary", { size: 15, label: "Mary", color: RED }); graph.addNode("Suzan", { size: 15, label: "Suzan", color: RED }); graph.addNode("Nantes", { size: 15, label: "Nantes", color: BLUE }); graph.addNode("New-York", { size: 15, label: "New-York", color: BLUE }); graph.addNode("Sushis", { size: 7, label: "Sushis", color: GREEN }); graph.addNode("Falafels", { size: 7, label: "Falafels", color: GREEN }); graph.addNode("Kouign Amann", { size: 7, label: "Kouign Amann", color: GREEN }); graph.addEdge("John", "Mary", { type: "line", label: "works with", size: 5 }); graph.addEdge("Mary", "Suzan", { type: "line", label: "works with", size: 5 }); graph.addEdge("Mary", "Nantes", { type: "arrow", label: "lives in", size: 5 }); graph.addEdge("John", "New-York", { type: "arrow", label: "lives in", size: 5 }); graph.addEdge("Suzan", "New-York", { type: "arrow", label: "lives in", size: 5 }); graph.addEdge("John", "Falafels", { type: "arrow", label: "eats", size: 5 }); graph.addEdge("Mary", "Sushis", { type: "arrow", label: "eats", size: 5 }); graph.addEdge("Suzan", "Kouign Amann", { type: "arrow", label: "eats", size: 5 }); graph.nodes().forEach((node, i) => { const angle = (i * 2 * Math.PI) / graph.order; graph.setNodeAttribute(node, "x", 100 * Math.cos(angle)); graph.setNodeAttribute(node, "y", 100 * Math.sin(angle)); }); const renderer = new Sigma(graph, container, { renderEdgeLabels: true, }); // Create the spring layout and start it: const layout = new ForceSupervisor(graph); layout.start(); // Create form: const form = document.createElement("form"); form.style.position = "absolute"; form.style.top = "0"; form.style.left = "0"; form.style.maxWidth = "100%"; form.style.maxHeight = "100%"; form.style.padding = "1em"; form.style.background = "#ffffff99"; form.innerHTML = `

Layers to save


Dimensions


Additional options


`; document.body.appendChild(form); // Bind save button: const saveBtn = document.getElementById("save-as-png") as HTMLButtonElement; saveBtn.addEventListener("click", () => { const layers = ["edges", "nodes", "edgeLabels", "labels"].filter( (id) => !!(document.getElementById(`layer-${id}`) as HTMLInputElement).checked, ); const width = +(document.getElementById(`width`) as HTMLInputElement).value; const height = +(document.getElementById(`height`) as HTMLInputElement).value; const fileName = (document.getElementById(`filename`) as HTMLInputElement).value; const format = (document.getElementById(`format`) as HTMLInputElement).value as "png" | "jpeg"; const resetCameraState = !!(document.getElementById(`reset-camera-state`) as HTMLInputElement).checked; const backgroundColor = (document.getElementById(`backgroundColor`) as HTMLInputElement).value; downloadAsImage(renderer, { layers, format, fileName, backgroundColor, width: !width || isNaN(width) ? undefined : width, height: !height || isNaN(height) ? undefined : height, cameraState: resetCameraState ? { x: 0.5, y: 0.5, angle: 0, ratio: 1 } : undefined, }); }); return () => { layout.kill(); renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/export-image/custom-layers-and-renderers.ts ================================================ /** * This story shows how @sigma/export-image interacts with other custom rendering features, such as * custom nodes renderer (with @sigma/node-image) and custom layers (with @sigma/layer-webgl). */ import { downloadAsPNG } from "@sigma/export-image"; import { bindWebGLLayer, createContoursProgram } from "@sigma/layer-webgl"; import { NodeImageProgram } from "@sigma/node-image"; import Graph from "graphology"; import { startCase } from "lodash"; import Sigma from "sigma"; import { DEFAULT_NODE_PROGRAM_CLASSES } from "sigma/settings"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; // Instantiate graph: const graph = new Graph(); graph.addNode("a", { x: 0, y: 0, size: 20, label: "Jim", image: "https://upload.wikimedia.org/wikipedia/commons/7/7f/Jim_Morrison_1969.JPG", }); graph.addNode("b", { x: 1, y: -1, size: 40, label: "Johnny", image: "https://upload.wikimedia.org/wikipedia/commons/a/a8/Johnny_Hallyday_%E2%80%94_Milan%2C_1973.jpg", }); graph.addNode("c", { x: 3, y: -2, size: 20, label: "Jimi", image: "https://upload.wikimedia.org/wikipedia/commons/6/6c/Jimi-Hendrix-1967-Helsinki-d.jpg", }); graph.addNode("d", { x: 1, y: -3, size: 20, label: "Bob", image: "https://upload.wikimedia.org/wikipedia/commons/c/c5/Bob-Dylan-arrived-at-Arlanda-surrounded-by-twenty-bodyguards-and-assistants-391770740297_%28cropped%29.jpg", }); graph.addNode("e", { x: 3, y: -4, size: 40, label: "Eric", image: "https://upload.wikimedia.org/wikipedia/commons/b/b1/Eric_Clapton_1.jpg", }); graph.addNode("f", { x: 4, y: -5, size: 20, label: "Mick", image: "https://upload.wikimedia.org/wikipedia/commons/6/66/Mick-Jagger-1965b.jpg", }); graph.addEdge("a", "b", { size: 10 }); graph.addEdge("b", "c", { size: 10 }); graph.addEdge("b", "d", { size: 10 }); graph.addEdge("c", "b", { size: 10 }); graph.addEdge("c", "e", { size: 10 }); graph.addEdge("d", "c", { size: 10 }); graph.addEdge("d", "e", { size: 10 }); graph.addEdge("e", "d", { size: 10 }); graph.addEdge("f", "e", { size: 10 }); const renderer = new Sigma(graph, container, { defaultNodeType: "image", nodeProgramClasses: { image: NodeImageProgram, }, }); // Bind custom layer const contoursProgram = createContoursProgram(graph.nodes(), { radius: 400, border: { color: "#666666", thickness: 8, }, levels: [ { color: "#00000000", threshold: 0.8, }, ], }); bindWebGLLayer(`graphContour`, renderer, contoursProgram); const SKIPPED_LAYERS = new Set(["mouse", "edgeLabels", "hovers", "hoverNodes"]); const allLayers = [...document.querySelectorAll("#sigma-container canvas")] .map((layer) => (layer.className || "").replace("sigma-", "")) .filter((name) => name && !SKIPPED_LAYERS.has(name)); // Create form: const form = document.createElement("form"); form.style.position = "absolute"; form.style.top = "0"; form.style.left = "0"; form.style.maxWidth = "100%"; form.style.maxHeight = "100%"; form.style.padding = "1em"; form.style.background = "#ffffff99"; form.innerHTML = `

Layers to save

${allLayers .map( (name) => `
`, ) .join("")}

Additional options


`; document.body.appendChild(form); // Bind save button: const saveBtn = document.getElementById("save-as-png") as HTMLButtonElement; saveBtn.addEventListener("click", () => { const layers = allLayers.filter((id) => (document.getElementById(`layer-${id}`) as HTMLInputElement).checked); const includeNodeImages = (document.getElementById(`include-images`) as HTMLInputElement).checked; downloadAsPNG(renderer, { layers, backgroundColor: "#ffffff", withTempRenderer: (tempRenderer) => { bindWebGLLayer(`graphContour`, tempRenderer, contoursProgram); }, sigmaSettings: !includeNodeImages ? { defaultNodeType: "circle", nodeProgramClasses: DEFAULT_NODE_PROGRAM_CLASSES } : {}, }); }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/export-image/index.html ================================================ Sigma example: PNG snapshot
================================================ FILE: packages/storybook/stories/3-additional-packages/export-image/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import OptionsPlay from "./available-options"; import OptionsSource from "./available-options?raw"; import CustomLayersAndRenderersPlay from "./custom-layers-and-renderers"; import CustomLayersAndRenderersSource from "./custom-layers-and-renderers?raw"; import template from "./index.html?raw"; const meta: Meta = { id: "@sigma/export-image", title: "Satellite packages/@sigma--export-image", }; export default meta; type Story = StoryObj; export const availableOptions: Story = { name: "Available options", render: () => template, play: wrapStory(OptionsPlay), args: {}, parameters: { storySource: { source: OptionsSource, }, }, }; export const customLayersAndRenderers: Story = { name: "Custom layers and renderers", render: () => template, play: wrapStory(CustomLayersAndRenderersPlay), args: {}, parameters: { storySource: { source: CustomLayersAndRenderersSource, }, }, }; ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-leaflet/basic.ts ================================================ /** * This story presents a basic use case of @sigma/layer-leaflet. */ import bindLeafletLayer from "@sigma/layer-leaflet"; import Graph from "graphology"; import { Attributes, SerializedGraph } from "graphology-types"; import Sigma from "sigma"; import data from "./data/airports.json"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = Graph.from(data as SerializedGraph); graph.updateEachNodeAttributes((_node, attributes) => ({ ...attributes, label: attributes.fullName, x: 0, y: 0, })); // initiate sigma const renderer = new Sigma(graph, container, { labelRenderedSizeThreshold: 20, defaultNodeColor: "#e22352", defaultEdgeColor: "#ffaeaf", minEdgeThickness: 1, nodeReducer: (node, attrs) => { return { ...attrs, size: Math.sqrt(graph.degree(node)) / 2, }; }, }); bindLeafletLayer(renderer, { getNodeLatLng: (attrs: Attributes) => ({ lat: attrs.latitude, lng: attrs.longitude }), }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-leaflet/data/airports.json ================================================ { "attributes": {}, "nodes": [ { "key": "0", "attributes": { "latitude": 43.449902, "longitude": 39.9566, "fullName": "Sochi International Airport" } }, { "key": "693", "attributes": { "latitude": 40.1473007202, "longitude": 44.3959007263, "fullName": "Zvartnots International Airport" } }, { "key": "352", "attributes": { "latitude": 55.5914993286, "longitude": 37.2615013123, "fullName": "Vnukovo International Airport" } }, { "key": "1742", "attributes": { "latitude": 53.882499694824, "longitude": 28.030700683594, "fullName": "Minsk National Airport" } }, { "key": "8", "attributes": { "latitude": 59.80030059814453, "longitude": 30.262500762939453, "fullName": "Pulkovo Airport" } }, { "key": "14", "attributes": { "latitude": 56.743099212646, "longitude": 60.802700042725, "fullName": "Koltsovo Airport" } }, { "key": "595", "attributes": { "latitude": 55.972599, "longitude": 37.4146, "fullName": "Sheremetyevo International Airport" } }, { "key": "1774", "attributes": { "latitude": 41.257900238, "longitude": 69.2811965942, "fullName": "Tashkent International Airport" } }, { "key": "681", "attributes": { "latitude": 56.172901, "longitude": 92.493301, "fullName": "Yemelyanovo Airport" } }, { "key": "2505", "attributes": { "latitude": 54.96699905395508, "longitude": 73.31050109863281, "fullName": "Omsk Central Airport" } }, { "key": "682", "attributes": { "latitude": 45.034698486328, "longitude": 39.170501708984, "fullName": "Krasnodar Pashkovsky International Airport" } }, { "key": "1025", "attributes": { "latitude": 46.92770004272461, "longitude": 28.930999755859375, "fullName": "Chişinău International Airport" } }, { "key": "869", "attributes": { "latitude": 40.99509811401367, "longitude": 39.78969955444336, "fullName": "Trabzon International Airport" } }, { "key": "3", "attributes": { "latitude": 55.40879821777344, "longitude": 37.90629959106445, "fullName": "Domodedovo International Airport" } }, { "key": "791", "attributes": { "latitude": 41.275278, "longitude": 28.751944, "fullName": "Istanbul Airport" } }, { "key": "792", "attributes": { "latitude": 40.21540069580078, "longitude": 69.6947021484375, "fullName": "Khudzhand Airport" } }, { "key": "788", "attributes": { "latitude": 38.543300628699996, "longitude": 68.8249969482, "fullName": "Dushanbe Airport" } }, { "key": "7", "attributes": { "latitude": 55.606201171875, "longitude": 49.278701782227, "fullName": "Kazan International Airport" } }, { "key": "1", "attributes": { "latitude": 46.2832984924, "longitude": 48.0063018799, "fullName": "Astrakhan Airport" } }, { "key": "232", "attributes": { "latitude": 40.898601532, "longitude": 29.3092002869, "fullName": "Sabiha Gökçen International Airport" } }, { "key": "2077", "attributes": { "latitude": 43.8601, "longitude": 51.091999, "fullName": "Aktau Airport" } }, { "key": "9", "attributes": { "latitude": 44.225101470947266, "longitude": 43.08190155029297, "fullName": "Mineralnyye Vody Airport" } }, { "key": "2", "attributes": { "latitude": 55.305801, "longitude": 61.5033, "fullName": "Chelyabinsk Balandino Airport" } }, { "key": "244", "attributes": { "latitude": 40.9846000671, "longitude": 71.5567016602, "fullName": "Namangan Airport" } }, { "key": "89", "attributes": { "latitude": 24.896356, "longitude": 55.161389, "fullName": "Al Maktoum International Airport" } }, { "key": "1988", "attributes": { "latitude": 40.6090011597, "longitude": 72.793296814, "fullName": "Osh Airport" } }, { "key": "789", "attributes": { "latitude": 43.0612983704, "longitude": 74.4776000977, "fullName": "Manas International Airport" } }, { "key": "479", "attributes": { "latitude": 50.1008, "longitude": 14.26, "fullName": "Václav Havel Airport Prague" } }, { "key": "13", "attributes": { "latitude": 55.012599945068, "longitude": 82.650703430176, "fullName": "Tolmachevo Airport" } }, { "key": "474", "attributes": { "latitude": 43.6584014893, "longitude": 7.215869903560001, "fullName": "Nice-Côte d'Azur Airport" } }, { "key": "2828", "attributes": { "latitude": 57.914501190186, "longitude": 56.021198272705, "fullName": "Bolshoye Savino Airport" } }, { "key": "3021", "attributes": { "latitude": 45.05220031738281, "longitude": 33.975101470947266, "fullName": "Simferopol International Airport" } }, { "key": "347", "attributes": { "latitude": 65.48090362548828, "longitude": 72.69889831542969, "fullName": "Nadym Airport" } }, { "key": "3017", "attributes": { "latitude": 69.31109619140625, "longitude": 87.33219909667969, "fullName": "Norilsk-Alykel Airport" } }, { "key": "25", "attributes": { "latitude": 62.093299865722656, "longitude": 129.77099609375, "fullName": "Yakutsk Airport" } }, { "key": "17", "attributes": { "latitude": 56.370601654052734, "longitude": 101.697998046875, "fullName": "Bratsk Airport" } }, { "key": "3174", "attributes": { "latitude": 50.01340103149414, "longitude": 15.73859977722168, "fullName": "Pardubice Airport" } }, { "key": "169", "attributes": { "latitude": 8.1132, "longitude": 98.316902, "fullName": "Phuket International Airport" } }, { "key": "2500", "attributes": { "latitude": 50.42539978027344, "longitude": 127.41200256347656, "fullName": "Ignatyevo Airport" } }, { "key": "223", "attributes": { "latitude": 50.901401519800004, "longitude": 4.48443984985, "fullName": "Brussels Airport" } }, { "key": "793", "attributes": { "latitude": 61.34370040893555, "longitude": 73.40180206298828, "fullName": "Surgut Airport" } }, { "key": "3013", "attributes": { "latitude": 45.002101898193, "longitude": 37.347301483154, "fullName": "Anapa Vityazevo Airport" } }, { "key": "1233", "attributes": { "latitude": 29.984399795532227, "longitude": -95.34140014648438, "fullName": "George Bush Intercontinental Houston Airport" } }, { "key": "487", "attributes": { "latitude": 40.51969909667969, "longitude": 22.97089958190918, "fullName": "Thessaloniki Macedonia International Airport" } }, { "key": "1993", "attributes": { "latitude": 67.46330261230469, "longitude": 33.58829879760742, "fullName": "Kirovsk-Apatity Airport" } }, { "key": "794", "attributes": { "latitude": 25.32859992980957, "longitude": 55.5172004699707, "fullName": "Sharjah International Airport" } }, { "key": "3020", "attributes": { "latitude": 51.9667015076, "longitude": 85.8332977295, "fullName": "Gorno-Altaysk Airport" } }, { "key": "1780", "attributes": { "latitude": 51.02220153808594, "longitude": 71.46690368652344, "fullName": "Astana International Airport" } }, { "key": "177", "attributes": { "latitude": 10.8187999725, "longitude": 106.652000427, "fullName": "Tan Son Nhat International Airport" } }, { "key": "823", "attributes": { "latitude": 47.493888, "longitude": 39.924722, "fullName": "Platov International Airport" } }, { "key": "5", "attributes": { "latitude": 40.467498779296875, "longitude": 50.04669952392578, "fullName": "Heydar Aliyev International Airport" } }, { "key": "53", "attributes": { "latitude": 34.875099182128906, "longitude": 33.624900817871094, "fullName": "Larnaca International Airport" } }, { "key": "1965", "attributes": { "latitude": 48.52799987793, "longitude": 135.18800354004, "fullName": "Khabarovsk-Novy Airport" } }, { "key": "2104", "attributes": { "latitude": 37.98809814453125, "longitude": 69.80500030517578, "fullName": "Kulob Airport" } }, { "key": "1367", "attributes": { "latitude": 35.857498, "longitude": 14.4775, "fullName": "Malta International Airport" } }, { "key": "827", "attributes": { "latitude": 67.48860168457031, "longitude": 63.993099212646484, "fullName": "Vorkuta Airport" } }, { "key": "787", "attributes": { "latitude": 43.35210037231445, "longitude": 77.04049682617188, "fullName": "Almaty Airport" } }, { "key": "11", "attributes": { "latitude": 60.94929885864258, "longitude": 76.48359680175781, "fullName": "Nizhnevartovsk Airport" } }, { "key": "6", "attributes": { "latitude": 54.88999938964844, "longitude": 20.592599868774414, "fullName": "Khrabrovo Airport" } }, { "key": "468", "attributes": { "latitude": 51.4706, "longitude": -0.461941, "fullName": "London Heathrow Airport" } }, { "key": "817", "attributes": { "latitude": 53.504901885986, "longitude": 50.16429901123, "fullName": "Kurumoch International Airport" } }, { "key": "224", "attributes": { "latitude": 50.8658981323, "longitude": 7.1427397728, "fullName": "Cologne Bonn Airport" } }, { "key": "2103", "attributes": { "latitude": 51.795799255371094, "longitude": 55.45669937133789, "fullName": "Orenburg Central Airport" } }, { "key": "483", "attributes": { "latitude": 36.405399322509766, "longitude": 28.086200714111328, "fullName": "Diagoras Airport" } }, { "key": "1779", "attributes": { "latitude": 37.986801, "longitude": 58.361, "fullName": "Ashgabat International Airport" } }, { "key": "178", "attributes": { "latitude": 1.35019, "longitude": 103.994003, "fullName": "Singapore Changi Airport" } }, { "key": "822", "attributes": { "latitude": 53.110599517822266, "longitude": 45.02109909057617, "fullName": "Penza Airport" } }, { "key": "3018", "attributes": { "latitude": 43.2051010132, "longitude": 44.6066017151, "fullName": "Beslan Airport" } }, { "key": "2612", "attributes": { "latitude": 52.19499969482422, "longitude": 77.07389831542969, "fullName": "Pavlodar Airport" } }, { "key": "829", "attributes": { "latitude": 51.81420135498047, "longitude": 39.22959899902344, "fullName": "Voronezh International Airport" } }, { "key": "189", "attributes": { "latitude": 48.353802, "longitude": 11.7861, "fullName": "Munich Airport" } }, { "key": "3376", "attributes": { "latitude": 44.688999176, "longitude": 33.570999145500004, "fullName": "Belbek Airport" } }, { "key": "4", "attributes": { "latitude": 50.643798828125, "longitude": 36.5900993347168, "fullName": "Belgorod International Airport" } }, { "key": "135", "attributes": { "latitude": 51.148102, "longitude": -0.190278, "fullName": "London Gatwick Airport" } }, { "key": "650", "attributes": { "latitude": 15.3808002472, "longitude": 73.8313980103, "fullName": "Dabolim Airport" } }, { "key": "1354", "attributes": { "latitude": 38.28219985961914, "longitude": -0.5581560134887695, "fullName": "Alicante International Airport" } }, { "key": "473", "attributes": { "latitude": 45.6306, "longitude": 8.72811, "fullName": "Malpensa International Airport" } }, { "key": "443", "attributes": { "latitude": 39.601898193359375, "longitude": 19.911699295043945, "fullName": "Ioannis Kapodistrias International Airport" } }, { "key": "245", "attributes": { "latitude": 40.1171989440918, "longitude": 65.1707992553711, "fullName": "Navoi Airport" } }, { "key": "3128", "attributes": { "latitude": 40.7504005432, "longitude": 43.859298706100006, "fullName": "Gyumri Shirak Airport" } }, { "key": "496", "attributes": { "latitude": 45.395699, "longitude": 10.8885, "fullName": "Verona Villafranca Airport" } }, { "key": "819", "attributes": { "latitude": 42.81679916381836, "longitude": 47.65230178833008, "fullName": "Uytash Airport" } }, { "key": "828", "attributes": { "latitude": 48.782501220703125, "longitude": 44.34550094604492, "fullName": "Volgograd International Airport" } }, { "key": "2506", "attributes": { "latitude": 66.5907974243164, "longitude": 66.61100006103516, "fullName": "Salekhard Airport" } }, { "key": "470", "attributes": { "latitude": 38.7813, "longitude": -9.13592, "fullName": "Humberto Delgado Airport (Lisbon Portela Airport)" } }, { "key": "2456", "attributes": { "latitude": 41.58430099487305, "longitude": 60.641700744628906, "fullName": "Urgench Airport" } }, { "key": "3085", "attributes": { "latitude": 61.028499603271484, "longitude": 69.08609771728516, "fullName": "Khanty Mansiysk Airport" } }, { "key": "811", "attributes": { "latitude": 56.090301513671875, "longitude": 47.3473014831543, "fullName": "Cheboksary Airport" } }, { "key": "673", "attributes": { "latitude": 41.6692008972, "longitude": 44.95470047, "fullName": "Tbilisi International Airport" } }, { "key": "56", "attributes": { "latitude": 28.044500351, "longitude": -16.5725002289, "fullName": "Tenerife South Airport" } }, { "key": "467", "attributes": { "latitude": 51.423889, "longitude": 12.236389, "fullName": "Leipzig/Halle Airport" } }, { "key": "868", "attributes": { "latitude": 46.42679977416992, "longitude": 30.67650032043457, "fullName": "Odessa International Airport" } }, { "key": "452", "attributes": { "latitude": 41.8002778, "longitude": 12.2388889, "fullName": "Leonardo da Vinci–Fiumicino Airport" } }, { "key": "683", "attributes": { "latitude": 66.4003982544, "longitude": 112.029998779, "fullName": "Polyarny Airport" } }, { "key": "481", "attributes": { "latitude": 44.89350128173828, "longitude": 13.922200202941895, "fullName": "Pula Airport" } }, { "key": "810", "attributes": { "latitude": 50.2458, "longitude": 57.206699, "fullName": "Aktobe Airport" } }, { "key": "3023", "attributes": { "latitude": 56.380298614502, "longitude": 85.208297729492, "fullName": "Bogashevo Airport" } }, { "key": "241", "attributes": { "latitude": 39.775001525878906, "longitude": 64.4832992553711, "fullName": "Bukhara Airport" } }, { "key": "815", "attributes": { "latitude": 56.82809829711914, "longitude": 53.45750045776367, "fullName": "Izhevsk Airport" } }, { "key": "2122", "attributes": { "latitude": 48.07360076904297, "longitude": 37.73970031738281, "fullName": "Donetsk International Airport" } }, { "key": "1072", "attributes": { "latitude": 50.40194, "longitude": 30.45194, "fullName": "Kiev Zhuliany International Airport" } }, { "key": "349", "attributes": { "latitude": 57.189601898199996, "longitude": 65.3243026733, "fullName": "Roshchino International Airport" } }, { "key": "457", "attributes": { "latitude": 60.317199707031, "longitude": 24.963300704956, "fullName": "Helsinki Vantaa Airport" } }, { "key": "860", "attributes": { "latitude": 36.7131004333, "longitude": 28.7924995422, "fullName": "Dalaman International Airport" } }, { "key": "246", "attributes": { "latitude": 39.70050048828125, "longitude": 66.98380279541016, "fullName": "Samarkand Airport" } }, { "key": "454", "attributes": { "latitude": 50.033333, "longitude": 8.570556, "fullName": "Frankfurt am Main Airport" } }, { "key": "2102", "attributes": { "latitude": 37.86640167236328, "longitude": 68.86470031738281, "fullName": "Qurghonteppa International Airport" } }, { "key": "493", "attributes": { "latitude": 36.85100173950195, "longitude": 10.22719955444336, "fullName": "Tunis Carthage International Airport" } }, { "key": "1967", "attributes": { "latitude": 43.39899826049805, "longitude": 132.1479949951172, "fullName": "Vladivostok International Airport" } }, { "key": "1375", "attributes": { "latitude": 39.4893, "longitude": -0.481625, "fullName": "Valencia Airport" } }, { "key": "2072", "attributes": { "latitude": 53.329102, "longitude": 69.594597, "fullName": "Kokshetau Airport" } }, { "key": "3016", "attributes": { "latitude": 53.811401, "longitude": 86.877197, "fullName": "Spichenkovo Airport" } }, { "key": "247", "attributes": { "latitude": 42.404701232910156, "longitude": 18.72330093383789, "fullName": "Tivat Airport" } }, { "key": "2208", "attributes": { "latitude": 43.232101, "longitude": 27.8251, "fullName": "Varna Airport" } }, { "key": "242", "attributes": { "latitude": 40.358798980699994, "longitude": 71.7450027466, "fullName": "Fergana International Airport" } }, { "key": "812", "attributes": { "latitude": 46.3739013671875, "longitude": 44.33089828491211, "fullName": "Elista Airport" } }, { "key": "574", "attributes": { "latitude": 21.221200942993164, "longitude": 105.80699920654297, "fullName": "Noi Bai International Airport" } }, { "key": "1992", "attributes": { "latitude": 59.273601532, "longitude": 38.015800476100004, "fullName": "Cherepovets Airport" } }, { "key": "52", "attributes": { "latitude": 46.23809814453125, "longitude": 6.108950138092041, "fullName": "Geneva Cointrin International Airport" } }, { "key": "694", "attributes": { "latitude": 51.564998626708984, "longitude": 46.04669952392578, "fullName": "Saratov Central Airport" } }, { "key": "2461", "attributes": { "latitude": 46.88869857788086, "longitude": 142.71800231933594, "fullName": "Yuzhno-Sakhalinsk Airport" } }, { "key": "453", "attributes": { "latitude": 48.7793998718, "longitude": 8.08049964905, "fullName": "Karlsruhe Baden-Baden Airport" } }, { "key": "351", "attributes": { "latitude": 54.557498931885, "longitude": 55.874401092529, "fullName": "Ufa International Airport" } }, { "key": "339", "attributes": { "latitude": 30.12190055847168, "longitude": 31.40559959411621, "fullName": "Cairo International Airport" } }, { "key": "193", "attributes": { "latitude": 52.5597, "longitude": 13.2877, "fullName": "Berlin-Tegel Airport" } }, { "key": "2079", "attributes": { "latitude": 50.036598205566406, "longitude": 82.49420166015625, "fullName": "Ust-Kamennogorsk Airport" } }, { "key": "3127", "attributes": { "latitude": 38.746398925799994, "longitude": 48.8180007935, "fullName": "Lankaran International Airport" } }, { "key": "429", "attributes": { "latitude": 36.67490005493164, "longitude": -4.499110221862793, "fullName": "Málaga Airport" } }, { "key": "164", "attributes": { "latitude": 13.681099891662598, "longitude": 100.74700164794922, "fullName": "Suvarnabhumi Airport" } }, { "key": "1046", "attributes": { "latitude": 25.273056, "longitude": 51.608056, "fullName": "Hamad International Airport" } }, { "key": "2455", "attributes": { "latitude": 37.28670120239258, "longitude": 67.30999755859375, "fullName": "Termez Airport" } }, { "key": "18", "attributes": { "latitude": 52.026299, "longitude": 113.306, "fullName": "Chita-Kadala Airport" } }, { "key": "231", "attributes": { "latitude": 39.551700592, "longitude": 2.73881006241, "fullName": "Palma De Mallorca Airport" } }, { "key": "2513", "attributes": { "latitude": 40.737701416015625, "longitude": 46.31760025024414, "fullName": "Ganja Airport" } }, { "key": "3351", "attributes": { "latitude": 63.18330001831055, "longitude": 75.2699966430664, "fullName": "Noyabrsk Airport" } }, { "key": "3019", "attributes": { "latitude": 53.16790008544922, "longitude": 158.45399475097656, "fullName": "Yelizovo Airport" } }, { "key": "1136", "attributes": { "latitude": 41.6102981567, "longitude": 41.5997009277, "fullName": "Batumi International Airport" } }, { "key": "2989", "attributes": { "latitude": 64.734902, "longitude": 177.740997, "fullName": "Ugolny Airport" } }, { "key": "1775", "attributes": { "latitude": 42.359402, "longitude": 19.2519, "fullName": "Podgorica Airport" } }, { "key": "821", "attributes": { "latitude": 61.88520050048828, "longitude": 34.154701232910156, "fullName": "Petrozavodsk Airport" } }, { "key": "2831", "attributes": { "latitude": 48.357200622558594, "longitude": 35.10060119628906, "fullName": "Dnipropetrovsk International Airport" } }, { "key": "1042", "attributes": { "latitude": 7.180759906768799, "longitude": 79.88410186767578, "fullName": "Bandaranaike International Colombo Airport" } }, { "key": "168", "attributes": { "latitude": 22.308901, "longitude": 113.915001, "fullName": "Hong Kong International Airport" } }, { "key": "2071", "attributes": { "latitude": 49.670799255371094, "longitude": 73.33439636230469, "fullName": "Sary-Arka Airport" } }, { "key": "1368", "attributes": { "latitude": 36.075833, "longitude": 10.438611, "fullName": "Enfidha - Hammamet International Airport" } }, { "key": "472", "attributes": { "latitude": 53.35369873046875, "longitude": -2.2749500274658203, "fullName": "Manchester Airport" } }, { "key": "311", "attributes": { "latitude": 18.302900314331055, "longitude": 109.41200256347656, "fullName": "Sanya Phoenix International Airport" } }, { "key": "130", "attributes": { "latitude": 41.2971, "longitude": 2.07846, "fullName": "Barcelona International Airport" } }, { "key": "2670", "attributes": { "latitude": 27.9773006439, "longitude": 34.3950004578, "fullName": "Sharm El Sheikh International Airport" } }, { "key": "462", "attributes": { "latitude": 36.79330062866211, "longitude": 27.091699600219727, "fullName": "Kos Airport" } }, { "key": "372", "attributes": { "latitude": 18.567399978599997, "longitude": -68.36340332030001, "fullName": "Punta Cana International Airport" } }, { "key": "1036", "attributes": { "latitude": 24.433000564575195, "longitude": 54.651100158691406, "fullName": "Abu Dhabi International Airport" } }, { "key": "12", "attributes": { "latitude": 66.06939697265625, "longitude": 76.52030181884766, "fullName": "Novy Urengoy Airport" } }, { "key": "2086", "attributes": { "latitude": 42.56959915161133, "longitude": 27.515199661254883, "fullName": "Burgas Airport" } }, { "key": "1024", "attributes": { "latitude": 50.345001220703125, "longitude": 30.894699096679688, "fullName": "Boryspil International Airport" } }, { "key": "825", "attributes": { "latitude": 54.26829910279999, "longitude": 48.226699829100006, "fullName": "Ulyanovsk Baratayevka Airport" } }, { "key": "1390", "attributes": { "latitude": 54.634102, "longitude": 25.285801, "fullName": "Vilnius International Airport" } }, { "key": "695", "attributes": { "latitude": 56.92359924316406, "longitude": 23.971099853515625, "fullName": "Riga International Airport" } }, { "key": "580", "attributes": { "latitude": 35.7647018433, "longitude": 140.386001587, "fullName": "Narita International Airport" } }, { "key": "3015", "attributes": { "latitude": 55.27009963989258, "longitude": 86.1072006225586, "fullName": "Kemerovo Airport" } }, { "key": "495", "attributes": { "latitude": 48.110298156738, "longitude": 16.569700241089, "fullName": "Vienna International Airport" } }, { "key": "2992", "attributes": { "latitude": 44.020302, "longitude": 12.6117, "fullName": "Federico Fellini International Airport" } }, { "key": "358", "attributes": { "latitude": 25.2527999878, "longitude": 55.3643989563, "fullName": "Dubai International Airport" } }, { "key": "816", "attributes": { "latitude": 55.47529983520508, "longitude": 65.41560363769531, "fullName": "Kurgan Airport" } }, { "key": "432", "attributes": { "latitude": 37.9364013672, "longitude": 23.9444999695, "fullName": "Eleftherios Venizelos International Airport" } }, { "key": "1856", "attributes": { "latitude": 11.998200416564941, "longitude": 109.21900177001953, "fullName": "Cam Ranh Airport" } }, { "key": "2646", "attributes": { "latitude": 56.230098724365, "longitude": 43.784000396729, "fullName": "Nizhny Novgorod Strigino International Airport" } }, { "key": "57", "attributes": { "latitude": 47.464699, "longitude": 8.54917, "fullName": "Zürich Airport" } }, { "key": "1812", "attributes": { "latitude": 34.71799850463867, "longitude": 32.48569869995117, "fullName": "Paphos International Airport" } }, { "key": "1536", "attributes": { "latitude": 44.4133, "longitude": 8.8375, "fullName": "Genoa Cristoforo Colombo Airport" } }, { "key": "10", "attributes": { "latitude": 55.564701080322266, "longitude": 52.092498779296875, "fullName": "Begishevo Airport" } }, { "key": "15", "attributes": { "latitude": 47.1983333, "longitude": 38.8491667, "fullName": "Taganrog Yuzhny Airport" } }, { "key": "16", "attributes": { "latitude": 54.63999938964844, "longitude": 52.801700592041016, "fullName": "Bugulma Airport" } }, { "key": "426", "attributes": { "latitude": 27.178300857543945, "longitude": 33.799400329589844, "fullName": "Hurghada International Airport" } }, { "key": "824", "attributes": { "latitude": 54.12512969970703, "longitude": 45.212257385253906, "fullName": "Saransk Airport" } }, { "key": "3126", "attributes": { "latitude": 40.826667, "longitude": 47.7125, "fullName": "Gabala International Airport" } }, { "key": "2499", "attributes": { "latitude": 53.7400016784668, "longitude": 91.38500213623047, "fullName": "Abakan Airport" } }, { "key": "2507", "attributes": { "latitude": 51.80780029296875, "longitude": 107.43800354003906, "fullName": "Ulan-Ude Airport (Mukhino)" } }, { "key": "889", "attributes": { "latitude": 31.7226009369, "longitude": 35.9931983948, "fullName": "Queen Alia International Airport" } }, { "key": "2454", "attributes": { "latitude": 40.7276992798, "longitude": 72.2939987183, "fullName": "Andizhan Airport" } }, { "key": "3014", "attributes": { "latitude": 53.363800048828125, "longitude": 83.53849792480469, "fullName": "Barnaul Airport" } }, { "key": "3022", "attributes": { "latitude": 45.10919952392578, "longitude": 42.11280059814453, "fullName": "Stavropol Shpakovskoye Airport" } }, { "key": "21", "attributes": { "latitude": 62.534698486328125, "longitude": 114.03900146484375, "fullName": "Mirny Airport" } }, { "key": "2988", "attributes": { "latitude": 51.0724983215332, "longitude": 58.59560012817383, "fullName": "Orsk Airport" } }, { "key": "458", "attributes": { "latitude": 35.3396987915, "longitude": 25.180299758900002, "fullName": "Heraklion International Nikos Kazantzakis Airport" } }, { "key": "346", "attributes": { "latitude": 42.488399505615234, "longitude": 59.62329864501953, "fullName": "Nukus Airport" } }, { "key": "2501", "attributes": { "latitude": 59.9109992980957, "longitude": 150.72000122070312, "fullName": "Sokol Airport" } }, { "key": "2067", "attributes": { "latitude": 42.364200592041016, "longitude": 69.47889709472656, "fullName": "Shymkent Airport" } }, { "key": "19", "attributes": { "latitude": 52.268001556396, "longitude": 104.38899993896, "fullName": "Irkutsk Airport" } }, { "key": "1377", "attributes": { "latitude": 23.034400939941406, "longitude": -81.435302734375, "fullName": "Juan Gualberto Gomez International Airport" } }, { "key": "471", "attributes": { "latitude": 40.471926, "longitude": -3.56264, "fullName": "Adolfo Suárez Madrid–Barajas Airport" } }, { "key": "243", "attributes": { "latitude": 38.8335990906, "longitude": 65.9215011597, "fullName": "Karshi Khanabad Airport" } }, { "key": "340", "attributes": { "latitude": 32.01139831542969, "longitude": 34.88669967651367, "fullName": "Ben Gurion International Airport" } }, { "key": "183", "attributes": { "latitude": 51.289501, "longitude": 6.76678, "fullName": "Düsseldorf Airport" } }, { "key": "442", "attributes": { "latitude": 49.012798, "longitude": 2.55, "fullName": "Charles de Gaulle International Airport" } }, { "key": "2211", "attributes": { "latitude": 40.128101348899996, "longitude": 32.995098114, "fullName": "Esenboğa International Airport" } }, { "key": "1805", "attributes": { "latitude": 38.1338996887207, "longitude": 46.23500061035156, "fullName": "Tabriz International Airport" } }, { "key": "790", "attributes": { "latitude": 35.416099548339844, "longitude": 51.152198791503906, "fullName": "Imam Khomeini International Airport" } }, { "key": "304", "attributes": { "latitude": 40.080101013183594, "longitude": 116.58499908447266, "fullName": "Beijing Capital International Airport" } }, { "key": "319", "attributes": { "latitude": 43.907100677490234, "longitude": 87.47419738769531, "fullName": "Ürümqi Diwopu International Airport" } }, { "key": "422", "attributes": { "latitude": 34.565899, "longitude": 69.212303, "fullName": "Hamid Karzai International Airport" } }, { "key": "440", "attributes": { "latitude": 47.42976, "longitude": 19.261093, "fullName": "Budapest Liszt Ferenc International Airport" } }, { "key": "424", "attributes": { "latitude": 36.898701, "longitude": 30.800501, "fullName": "Antalya International Airport" } }, { "key": "594", "attributes": { "latitude": 61.64699935913086, "longitude": 50.84510040283203, "fullName": "Syktyvkar Airport" } }, { "key": "1750", "attributes": { "latitude": 59.41329956049999, "longitude": 24.832799911499997, "fullName": "Lennart Meri Tallinn Airport" } }, { "key": "494", "attributes": { "latitude": 45.505299, "longitude": 12.3519, "fullName": "Venice Marco Polo Airport" } }, { "key": "350", "attributes": { "latitude": 63.566898345947266, "longitude": 53.8046989440918, "fullName": "Ukhta Airport" } }, { "key": "590", "attributes": { "latitude": 64.60030364990234, "longitude": 40.71670150756836, "fullName": "Talagi Airport" } }, { "key": "2827", "attributes": { "latitude": 50.202999114990234, "longitude": 12.914999961853027, "fullName": "Karlovy Vary International Airport" } }, { "key": "814", "attributes": { "latitude": 57.560699462890625, "longitude": 40.15739822387695, "fullName": "Tunoshna Airport" } }, { "key": "188", "attributes": { "latitude": 53.630401611328, "longitude": 9.9882297515869, "fullName": "Hamburg Airport" } }, { "key": "220", "attributes": { "latitude": 52.308601, "longitude": 4.76389, "fullName": "Amsterdam Airport Schiphol" } }, { "key": "592", "attributes": { "latitude": 68.78170013427734, "longitude": 32.75080108642578, "fullName": "Murmansk Airport" } }, { "key": "70", "attributes": { "latitude": 60.121, "longitude": 11.0502, "fullName": "Oslo Lufthavn" } }, { "key": "672", "attributes": { "latitude": 52.380001, "longitude": 13.5225, "fullName": "Berlin-Schönefeld Airport" } }, { "key": "59", "attributes": { "latitude": 59.651901245117, "longitude": 17.918600082397, "fullName": "Stockholm-Arlanda Airport" } }, { "key": "278", "attributes": { "latitude": 37.46910095214844, "longitude": 126.45099639892578, "fullName": "Incheon International Airport" } }, { "key": "497", "attributes": { "latitude": 52.1656990051, "longitude": 20.967100143399996, "fullName": "Warsaw Chopin Airport" } }, { "key": "674", "attributes": { "latitude": 55.617900848389, "longitude": 12.656000137329, "fullName": "Copenhagen Kastrup Airport" } }, { "key": "818", "attributes": { "latitude": 58.503299713135, "longitude": 49.348300933838, "fullName": "Pobedilovo Airport" } }, { "key": "303", "attributes": { "latitude": 49.566667, "longitude": 117.33, "fullName": "Manzhouli Xijiao Airport" } }, { "key": "277", "attributes": { "latitude": 45.6234016418457, "longitude": 126.25, "fullName": "Taiping Airport" } }, { "key": "3350", "attributes": { "latitude": 62.190399169921875, "longitude": 74.53379821777344, "fullName": "Kogalym International Airport" } }, { "key": "348", "attributes": { "latitude": 61.326622009277344, "longitude": 63.60191345214844, "fullName": "Sovetskiy Airport" } }, { "key": "826", "attributes": { "latitude": 60.10329818725586, "longitude": 64.82669830322266, "fullName": "Uray Airport" } }, { "key": "820", "attributes": { "latitude": 53.39310073852539, "longitude": 58.755699157714844, "fullName": "Magnitogorsk International Airport" } }, { "key": "3179", "attributes": { "latitude": 62.110001, "longitude": 65.614998, "fullName": "Nyagan Airport" } }, { "key": "345", "attributes": { "latitude": 63.686901, "longitude": 66.698601, "fullName": "Beloyarskiy Airport" } }, { "key": "1906", "attributes": { "latitude": 49.2050018311, "longitude": 119.824996948, "fullName": "Dongshan Airport" } }, { "key": "2878", "attributes": { "latitude": 56.913898468018, "longitude": 124.91400146484, "fullName": "Chulman Airport" } }, { "key": "2503", "attributes": { "latitude": 51.66939926147461, "longitude": 94.40059661865234, "fullName": "Kyzyl Airport" } }, { "key": "23", "attributes": { "latitude": 56.8567008972168, "longitude": 105.7300033569336, "fullName": "Ust-Kut Airport" } }, { "key": "22", "attributes": { "latitude": 57.866100311299995, "longitude": 114.242996216, "fullName": "Bodaybo Airport" } }, { "key": "24", "attributes": { "latitude": 60.7206001282, "longitude": 114.825996399, "fullName": "Lensk Airport" } }, { "key": "20", "attributes": { "latitude": 57.773, "longitude": 108.064, "fullName": "Kirensk Airport" } }, { "key": "2875", "attributes": { "latitude": 68.7406005859375, "longitude": 161.33799743652344, "fullName": "Cherskiy Airport" } }, { "key": "2879", "attributes": { "latitude": 67.792, "longitude": 130.394, "fullName": "Sakkyryr Airport" } }, { "key": "2874", "attributes": { "latitude": 70.62310028076172, "longitude": 147.90199279785156, "fullName": "Chokurdakh Airport" } }, { "key": "2877", "attributes": { "latitude": 66.450861, "longitude": 143.261551, "fullName": "Moma Airport" } }, { "key": "2876", "attributes": { "latitude": 71.697700500488, "longitude": 128.90299987793, "fullName": "Tiksi Airport" } }, { "key": "26", "attributes": { "latitude": -13.154800415039062, "longitude": -74.20439910888672, "fullName": "Coronel FAP Alfredo Mendivil Duarte Airport" } }, { "key": "30", "attributes": { "latitude": -12.0219, "longitude": -77.114305, "fullName": "Jorge Chávez International Airport" } }, { "key": "27", "attributes": { "latitude": -13.535699844400002, "longitude": -71.9387969971, "fullName": "Alejandro Velasco Astete International Airport" } }, { "key": "1149", "attributes": { "latitude": -16.3411006927, "longitude": -71.5830993652, "fullName": "Rodríguez Ballón International Airport" } }, { "key": "1244", "attributes": { "latitude": -15.467100143432617, "longitude": -70.158203125, "fullName": "Inca Manco Capac International Airport" } }, { "key": "1099", "attributes": { "latitude": -16.5132999420166, "longitude": -68.19229888916016, "fullName": "El Alto International Airport" } }, { "key": "32", "attributes": { "latitude": -12.6135997772, "longitude": -69.2285995483, "fullName": "Padre Aldamiz International Airport" } }, { "key": "28", "attributes": { "latitude": -9.878809928894043, "longitude": -76.20480346679688, "fullName": "Alferez Fap David Figueroa Fernandini Airport" } }, { "key": "29", "attributes": { "latitude": -3.7847399711608887, "longitude": -73.30879974365234, "fullName": "Coronel FAP Francisco Secada Vignetta International Airport" } }, { "key": "31", "attributes": { "latitude": -8.37794017791748, "longitude": -74.57430267333984, "fullName": "Cap FAP David Abenzur Rengifo International Airport" } }, { "key": "1031", "attributes": { "latitude": 9.0713596344, "longitude": -79.3834991455, "fullName": "Tocumen International Airport" } }, { "key": "33", "attributes": { "latitude": -6.508739948272705, "longitude": -76.37319946289062, "fullName": "Cadete FAP Guillermo Del Castillo Paredes Airport" } }, { "key": "3266", "attributes": { "latitude": -9.347439765930176, "longitude": -77.59839630126953, "fullName": "Comandante FAP German Arias Graziani Airport" } }, { "key": "407", "attributes": { "latitude": 9.993860244750977, "longitude": -84.20880126953125, "fullName": "Juan Santamaria International Airport" } }, { "key": "43", "attributes": { "latitude": 4.70159, "longitude": -74.1469, "fullName": "El Dorado International Airport" } }, { "key": "338", "attributes": { "latitude": 33.94250107, "longitude": -118.4079971, "fullName": "Los Angeles International Airport" } }, { "key": "1349", "attributes": { "latitude": -17.6448, "longitude": -63.135399, "fullName": "Viru Viru International Airport" } }, { "key": "778", "attributes": { "latitude": 10.601194, "longitude": -66.991222, "fullName": "Simón Bolívar International Airport" } }, { "key": "108", "attributes": { "latitude": -22.8099994659, "longitude": -43.2505569458, "fullName": "Rio Galeão – Tom Jobim International Airport" } }, { "key": "369", "attributes": { "latitude": -34.8222, "longitude": -58.5358, "fullName": "Ministro Pistarini International Airport" } }, { "key": "392", "attributes": { "latitude": 22.989200592041016, "longitude": -82.40910339355469, "fullName": "José Martí International Airport" } }, { "key": "2632", "attributes": { "latitude": -6.787479877471924, "longitude": -79.8281021118164, "fullName": "Capitan FAP Jose A Quinones Gonzales International Airport" } }, { "key": "1047", "attributes": { "latitude": 40.692501068115234, "longitude": -74.168701171875, "fullName": "Newark Liberty International Airport" } }, { "key": "3268", "attributes": { "latitude": -9.133000373840332, "longitude": -75.94999694824219, "fullName": "Tingo Maria Airport" } }, { "key": "254", "attributes": { "latitude": 18.42970085144, "longitude": -69.668899536133, "fullName": "Las Américas International Airport" } }, { "key": "3267", "attributes": { "latitude": -11.7831001282, "longitude": -75.47339630130001, "fullName": "Francisco Carle Airport" } }, { "key": "603", "attributes": { "latitude": -25.239999771118164, "longitude": -57.52000045776367, "fullName": "Silvio Pettirossi International Airport" } }, { "key": "2639", "attributes": { "latitude": -18.053300857500002, "longitude": -70.2758026123, "fullName": "Coronel FAP Carlos Ciriani Santa Rosa International Airport" } }, { "key": "2633", "attributes": { "latitude": -7.1391801834106445, "longitude": -78.4894027709961, "fullName": "Mayor General FAP Armando Revoredo Iglesias Airport" } }, { "key": "1314", "attributes": { "latitude": 13.4409, "longitude": -89.055702, "fullName": "Monseñor Óscar Arnulfo Romero International Airport" } }, { "key": "1457", "attributes": { "latitude": -25.600278854370117, "longitude": -54.48500061035156, "fullName": "Cataratas International Airport" } }, { "key": "1063", "attributes": { "latitude": 43.6772003174, "longitude": -79.63059997559999, "fullName": "Lester B. Pearson International Airport" } }, { "key": "387", "attributes": { "latitude": 21.036500930800003, "longitude": -86.8770980835, "fullName": "Cancún International Airport" } }, { "key": "3265", "attributes": { "latitude": -13.706399917602539, "longitude": -73.35040283203125, "fullName": "Andahuaylas Airport" } }, { "key": "44", "attributes": { "latitude": 3.54322, "longitude": -76.3816, "fullName": "Alfonso Bonilla Aragon International Airport" } }, { "key": "607", "attributes": { "latitude": -29.994400024414062, "longitude": -51.1713981628418, "fullName": "Salgado Filho Airport" } }, { "key": "48", "attributes": { "latitude": -0.129166666667, "longitude": -78.3575, "fullName": "Mariscal Sucre International Airport" } }, { "key": "45", "attributes": { "latitude": -2.1574199199699997, "longitude": -79.88359832760001, "fullName": "José Joaquín de Olmedo International Airport" } }, { "key": "368", "attributes": { "latitude": 32.896801, "longitude": -97.038002, "fullName": "Dallas Fort Worth International Airport" } }, { "key": "2637", "attributes": { "latitude": -5.20574998856, "longitude": -80.61640167239999, "fullName": "Capitán FAP Guillermo Concha Iberico International Airport" } }, { "key": "371", "attributes": { "latitude": 25.79319953918457, "longitude": -80.29060363769531, "fullName": "Miami International Airport" } }, { "key": "601", "attributes": { "latitude": -33.393001556396484, "longitude": -70.78579711914062, "fullName": "Comodoro Arturo Merino Benítez International Airport" } }, { "key": "2640", "attributes": { "latitude": -8.08141040802002, "longitude": -79.10880279541016, "fullName": "Capitan FAP Carlos Martinez De Pinillos International Airport" } }, { "key": "396", "attributes": { "latitude": 19.4363, "longitude": -99.072098, "fullName": "Licenciado Benito Juarez International Airport" } }, { "key": "2638", "attributes": { "latitude": -3.55253005027771, "longitude": -80.38140106201172, "fullName": "Capitan FAP Pedro Canga Rodriguez Airport" } }, { "key": "872", "attributes": { "latitude": -31.323601, "longitude": -64.208, "fullName": "Ingeniero Ambrosio Taravella Airport" } }, { "key": "598", "attributes": { "latitude": -23.444501, "longitude": -70.445099, "fullName": "Andrés Sabella Gálvez International Airport" } }, { "key": "109", "attributes": { "latitude": -23.435556411743164, "longitude": -46.47305679321289, "fullName": "Guarulhos - Governador André Franco Montoro International Airport" } }, { "key": "370", "attributes": { "latitude": 40.63980103, "longitude": -73.77890015, "fullName": "John F Kennedy International Airport" } }, { "key": "605", "attributes": { "latitude": -34.838402, "longitude": -56.0308, "fullName": "Carrasco International /General C L Berisso Airport" } }, { "key": "782", "attributes": { "latitude": 6.16454, "longitude": -75.4231, "fullName": "Jose Maria Córdova International Airport" } }, { "key": "195", "attributes": { "latitude": 33.6367, "longitude": -84.428101, "fullName": "Hartsfield Jackson Atlanta International Airport" } }, { "key": "199", "attributes": { "latitude": 26.072599, "longitude": -80.152702, "fullName": "Fort Lauderdale Hollywood International Airport" } }, { "key": "34", "attributes": { "latitude": 5.261390209197998, "longitude": -3.9262900352478027, "fullName": "Port Bouet Airport" } }, { "key": "136", "attributes": { "latitude": 6.5773701667785645, "longitude": 3.321160078048706, "fullName": "Murtala Muhammed International Airport" } }, { "key": "39", "attributes": { "latitude": 14.739700317382812, "longitude": -17.49020004272461, "fullName": "Léopold Sédar Senghor International Airport" } }, { "key": "40", "attributes": { "latitude": 6.165609836578369, "longitude": 1.2545100450515747, "fullName": "Lomé-Tokoin Airport" } }, { "key": "133", "attributes": { "latitude": 4.0060801506, "longitude": 9.719479560849999, "fullName": "Douala International Airport" } }, { "key": "163", "attributes": { "latitude": -1.31923997402, "longitude": 36.9277992249, "fullName": "Jomo Kenyatta International Airport" } }, { "key": "138", "attributes": { "latitude": 6.23379, "longitude": -10.3623, "fullName": "Roberts International Airport" } }, { "key": "38", "attributes": { "latitude": 6.357230186462402, "longitude": 2.384350061416626, "fullName": "Cadjehoun Airport" } }, { "key": "35", "attributes": { "latitude": 5.605189800262451, "longitude": -0.16678600013256073, "fullName": "Kotoka International Airport" } }, { "key": "225", "attributes": { "latitude": 33.36750030517578, "longitude": -7.589970111846924, "fullName": "Mohammed V International Airport" } }, { "key": "37", "attributes": { "latitude": 11.160099983215332, "longitude": -4.33096981048584, "fullName": "Bobo Dioulasso Airport" } }, { "key": "430", "attributes": { "latitude": 36.691001892089844, "longitude": 3.215409994125366, "fullName": "Houari Boumediene Airport" } }, { "key": "1125", "attributes": { "latitude": 48.7233333, "longitude": 2.3794444, "fullName": "Paris-Orly Airport" } }, { "key": "134", "attributes": { "latitude": 8.61644, "longitude": -13.1955, "fullName": "Lungi International Airport" } }, { "key": "42", "attributes": { "latitude": 12.3532, "longitude": -1.51242, "fullName": "Ouagadougou Airport" } }, { "key": "132", "attributes": { "latitude": 9.57689, "longitude": -13.612, "fullName": "Conakry International Airport" } }, { "key": "36", "attributes": { "latitude": 12.5335, "longitude": -7.94994, "fullName": "Modibo Keita International Airport" } }, { "key": "1544", "attributes": { "latitude": 0.458600014448, "longitude": 9.412280082699999, "fullName": "Libreville Leon M'ba International Airport" } }, { "key": "2825", "attributes": { "latitude": 4.896059989929199, "longitude": -1.7747600078582764, "fullName": "Takoradi Airport" } }, { "key": "638", "attributes": { "latitude": -26.1392, "longitude": 28.246, "fullName": "OR Tambo International Airport" } }, { "key": "1516", "attributes": { "latitude": 9.006790161132812, "longitude": 7.263169765472412, "fullName": "Nnamdi Azikiwe International Airport" } }, { "key": "1380", "attributes": { "latitude": 8.97789001465, "longitude": 38.799301147499996, "fullName": "Addis Ababa Bole International Airport" } }, { "key": "554", "attributes": { "latitude": 6.714560031890869, "longitude": -1.5908199548721313, "fullName": "Kumasi Airport" } }, { "key": "1520", "attributes": { "latitude": 33.820899963378906, "longitude": 35.488399505615234, "fullName": "Beirut Rafic Hariri International Airport" } }, { "key": "1732", "attributes": { "latitude": 9.55718994140625, "longitude": -0.8632140159606934, "fullName": "Tamale Airport" } }, { "key": "1816", "attributes": { "latitude": -22.4799, "longitude": 17.4709, "fullName": "Hosea Kutako International Airport" } }, { "key": "2176", "attributes": { "latitude": 6.289060115814209, "longitude": -10.758700370788574, "fullName": "Spriggs Payne Airport" } }, { "key": "2824", "attributes": { "latitude": 7.361830234527588, "longitude": -2.3287599086761475, "fullName": "Sunyani Airport" } }, { "key": "1556", "attributes": { "latitude": 18.31, "longitude": -15.9697222, "fullName": "Nouakchott–Oumtounsy International Airport" } }, { "key": "41", "attributes": { "latitude": 13.4815, "longitude": 2.18361, "fullName": "Diori Hamani International Airport" } }, { "key": "1524", "attributes": { "latitude": -4.251699924468994, "longitude": 15.253000259399414, "fullName": "Maya-Maya Airport" } }, { "key": "1893", "attributes": { "latitude": 1.9054700136184692, "longitude": 9.805680274963379, "fullName": "Bata Airport" } }, { "key": "1565", "attributes": { "latitude": 3.755270004272461, "longitude": 8.708720207214355, "fullName": "Malabo Airport" } }, { "key": "1559", "attributes": { "latitude": -4.816030025482178, "longitude": 11.88659954071045, "fullName": "Pointe Noire Airport" } }, { "key": "1711", "attributes": { "latitude": 28.4827003479, "longitude": -16.3414993286, "fullName": "Tenerife Norte Airport" } }, { "key": "1232", "attributes": { "latitude": 38.94449997, "longitude": -77.45580292, "fullName": "Washington Dulles International Airport" } }, { "key": "1710", "attributes": { "latitude": 14.924500465393066, "longitude": -23.493499755859375, "fullName": "Praia International Airport" } }, { "key": "137", "attributes": { "latitude": 11.894800186157227, "longitude": -15.65369987487793, "fullName": "Osvaldo Vieira International Airport" } }, { "key": "54", "attributes": { "latitude": 27.931900024414062, "longitude": -15.38659954071045, "fullName": "Gran Canaria Airport" } }, { "key": "131", "attributes": { "latitude": 13.338000297546387, "longitude": -16.65220069885254, "fullName": "Banjul International Airport" } }, { "key": "2053", "attributes": { "latitude": 12.5556, "longitude": -16.281799, "fullName": "Ziguinchor Airport" } }, { "key": "1555", "attributes": { "latitude": 12.1337, "longitude": 15.034, "fullName": "N'Djamena International Airport" } }, { "key": "1731", "attributes": { "latitude": 10.435, "longitude": -73.2495, "fullName": "Alfonso López Pumarejo Airport" } }, { "key": "1719", "attributes": { "latitude": 7.92757, "longitude": -72.5115, "fullName": "Camilo Daza International Airport" } }, { "key": "1715", "attributes": { "latitude": 4.45278, "longitude": -75.7664, "fullName": "El Eden Airport" } }, { "key": "1724", "attributes": { "latitude": 5.0296, "longitude": -75.4647, "fullName": "La Nubia Airport" } }, { "key": "208", "attributes": { "latitude": 28.429399490356445, "longitude": -81.30899810791016, "fullName": "Orlando International Airport" } }, { "key": "1725", "attributes": { "latitude": 2.95015, "longitude": -75.294, "fullName": "Benito Salas Airport" } }, { "key": "1728", "attributes": { "latitude": 11.5262, "longitude": -72.926, "fullName": "Almirante Padilla Airport" } }, { "key": "1729", "attributes": { "latitude": 11.1196, "longitude": -74.2306, "fullName": "Simón Bolívar International Airport" } }, { "key": "1717", "attributes": { "latitude": 7.1265, "longitude": -73.1848, "fullName": "Palonegro Airport" } }, { "key": "1716", "attributes": { "latitude": 10.8896, "longitude": -74.7808, "fullName": "Ernesto Cortissoz International Airport" } }, { "key": "1020", "attributes": { "latitude": 5.69076, "longitude": -76.6412, "fullName": "El Caraño Airport" } }, { "key": "1722", "attributes": { "latitude": 4.42161, "longitude": -75.1333, "fullName": "Perales Airport" } }, { "key": "961", "attributes": { "latitude": 18.4393997192, "longitude": -66.0018005371, "fullName": "Luis Munoz Marin International Airport" } }, { "key": "1013", "attributes": { "latitude": 0.505228, "longitude": -76.5008, "fullName": "Tres De Mayo Airport" } }, { "key": "1019", "attributes": { "latitude": 6.45108, "longitude": -71.7603, "fullName": "Gustavo Vargas Airport" } }, { "key": "1012", "attributes": { "latitude": 1.39625, "longitude": -77.2915, "fullName": "Antonio Narino Airport" } }, { "key": "997", "attributes": { "latitude": 3.81963, "longitude": -76.9898, "fullName": "Gerardo Tobar López Airport" } }, { "key": "236", "attributes": { "latitude": 12.5014, "longitude": -70.015198, "fullName": "Queen Beatrix International Airport" } }, { "key": "1721", "attributes": { "latitude": 5.31911, "longitude": -72.384, "fullName": "El Yopal Airport" } }, { "key": "1726", "attributes": { "latitude": 4.81267, "longitude": -75.7395, "fullName": "Matecaña International Airport" } }, { "key": "1720", "attributes": { "latitude": 7.02433, "longitude": -73.8068, "fullName": "Yariguíes Airport" } }, { "key": "238", "attributes": { "latitude": 12.1889, "longitude": -68.959801, "fullName": "Hato International Airport" } }, { "key": "1021", "attributes": { "latitude": 0.978767, "longitude": -76.6056, "fullName": "Villa Garzón Airport" } }, { "key": "391", "attributes": { "latitude": 14.5833, "longitude": -90.527496, "fullName": "La Aurora Airport" } }, { "key": "1016", "attributes": { "latitude": 2.57969, "longitude": -72.6394, "fullName": "Jorge E. Gonzalez Torres Airport" } }, { "key": "1727", "attributes": { "latitude": 2.4544, "longitude": -76.6093, "fullName": "Guillermo León Valencia Airport" } }, { "key": "994", "attributes": { "latitude": 7.81196, "longitude": -76.7164, "fullName": "Antonio Roldan Betancourt Airport" } }, { "key": "1008", "attributes": { "latitude": 1.25366, "longitude": -70.2339, "fullName": "Fabio Alberto Leon Bentley Airport" } }, { "key": "1002", "attributes": { "latitude": 0.861925, "longitude": -77.6718, "fullName": "San Luis Airport" } }, { "key": "999", "attributes": { "latitude": 6.220549, "longitude": -75.590582, "fullName": "Enrique Olaya Herrera Airport" } }, { "key": "1015", "attributes": { "latitude": 6.951868, "longitude": -71.857179, "fullName": "Los Colonizadores Airport" } }, { "key": "1011", "attributes": { "latitude": 3.85353, "longitude": -67.9062, "fullName": "Obando Airport" } }, { "key": "993", "attributes": { "latitude": 12.5836, "longitude": -81.7112, "fullName": "Gustavo Rojas Pinilla International Airport" } }, { "key": "1000", "attributes": { "latitude": 1.58919, "longitude": -75.5644, "fullName": "Gustavo Artunduaga Paredes Airport" } }, { "key": "1004", "attributes": { "latitude": -4.19355, "longitude": -69.9432, "fullName": "Alfredo Vásquez Cobo International Airport" } }, { "key": "995", "attributes": { "latitude": 7.06888, "longitude": -70.7369, "fullName": "Santiago Perez Airport" } }, { "key": "998", "attributes": { "latitude": 9.33274, "longitude": -75.2856, "fullName": "Las Brujas Airport" } }, { "key": "1010", "attributes": { "latitude": 6.18472, "longitude": -67.4932, "fullName": "German Olano Airport" } }, { "key": "1017", "attributes": { "latitude": 2.15217, "longitude": -74.7663, "fullName": "Eduardo Falla Solano Airport" } }, { "key": "1718", "attributes": { "latitude": 10.4424, "longitude": -75.513, "fullName": "Rafael Nuñez International Airport" } }, { "key": "1723", "attributes": { "latitude": 8.82374, "longitude": -75.8258, "fullName": "Los Garzones Airport" } }, { "key": "1022", "attributes": { "latitude": 4.16787, "longitude": -73.6138, "fullName": "Vanguardia Airport" } }, { "key": "1001", "attributes": { "latitude": 2.57013, "longitude": -77.8986, "fullName": "Juan Casiano Airport" } }, { "key": "2154", "attributes": { "latitude": 0.9785190224647522, "longitude": -79.62660217285156, "fullName": "General Rivadeneira Airport" } }, { "key": "1730", "attributes": { "latitude": 1.81442, "longitude": -78.7492, "fullName": "La Florida Airport" } }, { "key": "2153", "attributes": { "latitude": -2.88947, "longitude": -78.984398, "fullName": "Mariscal Lamar Airport" } }, { "key": "2159", "attributes": { "latitude": -0.906833, "longitude": -78.615799, "fullName": "Cotopaxi International Airport" } }, { "key": "2158", "attributes": { "latitude": -3.99589, "longitude": -79.371902, "fullName": "Camilo Ponce Enriquez Airport" } }, { "key": "2156", "attributes": { "latitude": -0.45375800132751465, "longitude": -90.26589965820312, "fullName": "Seymour Airport" } }, { "key": "47", "attributes": { "latitude": -0.910206, "longitude": -89.617401, "fullName": "San Cristóbal Airport" } }, { "key": "46", "attributes": { "latitude": -0.4628860056400299, "longitude": -76.98680114746094, "fullName": "Francisco De Orellana Airport" } }, { "key": "2155", "attributes": { "latitude": -3.441986, "longitude": -79.996957, "fullName": "Santa Rosa International Airport" } }, { "key": "3415", "attributes": { "latitude": 0.8095059990882874, "longitude": -77.70809936523438, "fullName": "Teniente Coronel Luis a Mantilla Airport" } }, { "key": "2160", "attributes": { "latitude": -0.9460780024528503, "longitude": -80.67880249023438, "fullName": "Eloy Alfaro International Airport" } }, { "key": "2162", "attributes": { "latitude": -2.2991700172424316, "longitude": -78.12079620361328, "fullName": "Coronel E Carvajal Airport" } }, { "key": "49", "attributes": { "latitude": 40.6576, "longitude": 17.947001, "fullName": "Brindisi – Salento Airport" } }, { "key": "469", "attributes": { "latitude": 45.445099, "longitude": 9.27674, "fullName": "Milano Linate Airport" } }, { "key": "425", "attributes": { "latitude": 47.59, "longitude": 7.5291667, "fullName": "EuroAirport Basel-Mulhouse-Freiburg Airport" } }, { "key": "492", "attributes": { "latitude": 45.200802, "longitude": 7.64963, "fullName": "Turin Airport" } }, { "key": "489", "attributes": { "latitude": 51.8849983215, "longitude": 0.234999999404, "fullName": "London Stansted Airport" } }, { "key": "221", "attributes": { "latitude": 45.673901, "longitude": 9.70417, "fullName": "Il Caravaggio International Airport" } }, { "key": "235", "attributes": { "latitude": 45.648399, "longitude": 12.1944, "fullName": "Treviso-Sant'Angelo Airport" } }, { "key": "222", "attributes": { "latitude": 44.5354, "longitude": 11.2887, "fullName": "Bologna Guglielmo Marconi Airport" } }, { "key": "2251", "attributes": { "latitude": 41.901000977, "longitude": 2.7605500221, "fullName": "Girona Airport" } }, { "key": "480", "attributes": { "latitude": 43.683899, "longitude": 10.3927, "fullName": "Pisa International Airport" } }, { "key": "1023", "attributes": { "latitude": 49.45439910888672, "longitude": 2.1127800941467285, "fullName": "Paris Beauvais Tillé Airport" } }, { "key": "2245", "attributes": { "latitude": 50.459202, "longitude": 4.45382, "fullName": "Brussels South Charleroi Airport" } }, { "key": "2248", "attributes": { "latitude": 51.4500999451, "longitude": 5.37452983856, "fullName": "Eindhoven Airport" } }, { "key": "2244", "attributes": { "latitude": 41.7994, "longitude": 12.5949, "fullName": "Ciampino–G. B. Pastine International Airport" } }, { "key": "490", "attributes": { "latitude": 48.689899444599995, "longitude": 9.22196006775, "fullName": "Stuttgart Airport" } }, { "key": "50", "attributes": { "latitude": 44.828300476100004, "longitude": -0.715556025505, "fullName": "Bordeaux-Mérignac Airport" } }, { "key": "477", "attributes": { "latitude": 38.175999, "longitude": 13.091, "fullName": "Falcone–Borsellino Airport" } }, { "key": "1088", "attributes": { "latitude": 47.153198242200006, "longitude": -1.61073005199, "fullName": "Nantes Atlantique Airport" } }, { "key": "2258", "attributes": { "latitude": 51.874698638916016, "longitude": -0.36833301186561584, "fullName": "London Luton Airport" } }, { "key": "1107", "attributes": { "latitude": 41.92359924316406, "longitude": 8.8029203414917, "fullName": "Ajaccio-Napoléon Bonaparte Airport" } }, { "key": "1744", "attributes": { "latitude": 41.2481002808, "longitude": -8.68138980865, "fullName": "Francisco de Sá Carneiro Airport" } }, { "key": "482", "attributes": { "latitude": 31.606899261499997, "longitude": -8.03629970551, "fullName": "Menara Airport" } }, { "key": "444", "attributes": { "latitude": 42.5244444, "longitude": 8.7930556, "fullName": "Calvi-Sainte-Catherine Airport" } }, { "key": "1130", "attributes": { "latitude": 48.069499969499994, "longitude": -1.73478996754, "fullName": "Rennes-Saint-Jacques Airport" } }, { "key": "228", "attributes": { "latitude": 45.725556, "longitude": 5.081111, "fullName": "Lyon Saint-Exupéry Airport" } }, { "key": "436", "attributes": { "latitude": 42.55270004272461, "longitude": 9.48373031616211, "fullName": "Bastia-Poretta Airport" } }, { "key": "191", "attributes": { "latitude": 40.898701, "longitude": 9.51763, "fullName": "Olbia Costa Smeralda Airport" } }, { "key": "1087", "attributes": { "latitude": 43.439271922, "longitude": 5.22142410278, "fullName": "Marseille Provence Airport" } }, { "key": "1109", "attributes": { "latitude": 48.447898864746094, "longitude": -4.418540000915527, "fullName": "Brest Bretagne Airport" } }, { "key": "1117", "attributes": { "latitude": 41.5005989074707, "longitude": 9.097780227661133, "fullName": "Figari Sud-Corse Airport" } }, { "key": "1121", "attributes": { "latitude": 50.563332, "longitude": 3.086886, "fullName": "Lille-Lesquin Airport" } }, { "key": "1374", "attributes": { "latitude": 37.417999267578125, "longitude": -5.8931097984313965, "fullName": "Sevilla Airport" } }, { "key": "154", "attributes": { "latitude": 45.4706001282, "longitude": -73.7407989502, "fullName": "Montreal / Pierre Elliott Trudeau International Airport" } }, { "key": "51", "attributes": { "latitude": 51.382702, "longitude": -2.71909, "fullName": "Bristol Airport" } }, { "key": "450", "attributes": { "latitude": 55.95000076293945, "longitude": -3.372499942779541, "fullName": "Edinburgh Airport" } }, { "key": "1116", "attributes": { "latitude": 43.810001, "longitude": 11.2051, "fullName": "Peretola Airport" } }, { "key": "449", "attributes": { "latitude": 53.421299, "longitude": -6.27007, "fullName": "Dublin Airport" } }, { "key": "1131", "attributes": { "latitude": 48.538299560546875, "longitude": 7.628230094909668, "fullName": "Strasbourg Airport" } }, { "key": "1738", "attributes": { "latitude": 63.985000610352, "longitude": -22.605600357056, "fullName": "Keflavik International Airport" } }, { "key": "464", "attributes": { "latitude": 50.077702, "longitude": 19.7848, "fullName": "Kraków John Paul II International Airport" } }, { "key": "3057", "attributes": { "latitude": 53.1781005859375, "longitude": -2.9777801036834717, "fullName": "Hawarden Airport" } }, { "key": "1533", "attributes": { "latitude": 44.82529830932617, "longitude": 0.5186110138893127, "fullName": "Bergerac-Roumanière Airport" } }, { "key": "478", "attributes": { "latitude": 52.421001434299995, "longitude": 16.8262996674, "fullName": "Poznań-Ławica Airport" } }, { "key": "459", "attributes": { "latitude": 38.872898101800004, "longitude": 1.3731199502899998, "fullName": "Ibiza Airport" } }, { "key": "1353", "attributes": { "latitude": 28.945499, "longitude": -13.6052, "fullName": "Lanzarote Airport" } }, { "key": "1219", "attributes": { "latitude": 55.8718986511, "longitude": -4.43306016922, "fullName": "Glasgow International Airport" } }, { "key": "1360", "attributes": { "latitude": 54.377601623535156, "longitude": 18.46619987487793, "fullName": "Gdańsk Lech Wałęsa Airport" } }, { "key": "2276", "attributes": { "latitude": 52.451099, "longitude": 20.6518, "fullName": "Modlin Airport" } }, { "key": "2108", "attributes": { "latitude": 51.84130096435547, "longitude": -8.491109848022461, "fullName": "Cork Airport" } }, { "key": "451", "attributes": { "latitude": 37.0144004822, "longitude": -7.96590995789, "fullName": "Faro Airport" } }, { "key": "1834", "attributes": { "latitude": 57.54249954223633, "longitude": -4.047500133514404, "fullName": "Inverness Airport" } }, { "key": "2254", "attributes": { "latitude": 54.96390151977539, "longitude": 24.084800720214844, "fullName": "Kaunas International Airport" } }, { "key": "1546", "attributes": { "latitude": 45.86280059814453, "longitude": 1.1794400215148926, "fullName": "Limoges Airport" } }, { "key": "2111", "attributes": { "latitude": 52.702, "longitude": -8.92482, "fullName": "Shannon Airport" } }, { "key": "1362", "attributes": { "latitude": 49.20790100097656, "longitude": -2.195509910583496, "fullName": "Jersey Airport" } }, { "key": "2242", "attributes": { "latitude": 43.32350158691406, "longitude": 3.3538999557495117, "fullName": "Béziers-Vias Airport" } }, { "key": "1282", "attributes": { "latitude": 55.037498474121094, "longitude": -1.6916699409484863, "fullName": "Newcastle Airport" } }, { "key": "2269", "attributes": { "latitude": 41.14739990234375, "longitude": 1.1671700477600098, "fullName": "Reus Air Base" } }, { "key": "2270", "attributes": { "latitude": 50.1100006104, "longitude": 22.0189990997, "fullName": "Rzeszów-Jasionka Airport" } }, { "key": "1366", "attributes": { "latitude": 39.86259841918945, "longitude": 4.218649864196777, "fullName": "Menorca Airport" } }, { "key": "858", "attributes": { "latitude": 37.25059890749999, "longitude": 27.6643009186, "fullName": "Milas Bodrum International Airport" } }, { "key": "498", "attributes": { "latitude": 51.1026992798, "longitude": 16.885799408, "fullName": "Copernicus Wrocław Airport" } }, { "key": "1838", "attributes": { "latitude": 53.910301208496094, "longitude": -8.818490028381348, "fullName": "Ireland West Knock Airport" } }, { "key": "2645", "attributes": { "latitude": 54.6575012207, "longitude": -6.2158298492399995, "fullName": "Belfast International Airport" } }, { "key": "233", "attributes": { "latitude": 43.629101, "longitude": 1.36382, "fullName": "Toulouse-Blagnac Airport" } }, { "key": "1358", "attributes": { "latitude": 28.452699661254883, "longitude": -13.863800048828125, "fullName": "Fuerteventura Airport" } }, { "key": "1359", "attributes": { "latitude": 49.435001373291016, "longitude": -2.6019699573516846, "fullName": "Guernsey Airport" } }, { "key": "1070", "attributes": { "latitude": 35.531700134277344, "longitude": 24.149700164794922, "fullName": "Chania International Airport" } }, { "key": "2094", "attributes": { "latitude": 37.775001525878906, "longitude": -0.8123890161514282, "fullName": "San Javier Airport" } }, { "key": "1141", "attributes": { "latitude": 57.201900482177734, "longitude": -2.197779893875122, "fullName": "Aberdeen Dyce Airport" } }, { "key": "1357", "attributes": { "latitude": 32.697899, "longitude": -16.7745, "fullName": "Madeira Airport" } }, { "key": "488", "attributes": { "latitude": 43.53889846801758, "longitude": 16.29800033569336, "fullName": "Split Airport" } }, { "key": "1060", "attributes": { "latitude": 24.957599639892578, "longitude": 46.69879913330078, "fullName": "King Khaled International Airport" } }, { "key": "427", "attributes": { "latitude": 42.5728, "longitude": 21.035801, "fullName": "Priština International Airport" } }, { "key": "190", "attributes": { "latitude": 40.886002, "longitude": 14.2908, "fullName": "Naples International Airport" } }, { "key": "460", "attributes": { "latitude": 37.43510055541992, "longitude": 25.348100662231445, "fullName": "Mikonos Airport" } }, { "key": "441", "attributes": { "latitude": 39.251499, "longitude": 9.05428, "fullName": "Cagliari Elmas Airport" } }, { "key": "1355", "attributes": { "latitude": 33.875, "longitude": 10.775500297546387, "fullName": "Djerba Zarzis International Airport" } }, { "key": "1836", "attributes": { "latitude": 53.33359909057617, "longitude": -2.849720001220703, "fullName": "Liverpool John Lennon Airport" } }, { "key": "1845", "attributes": { "latitude": 35.75809860229492, "longitude": 10.75469970703125, "fullName": "Monastir Habib Bourguiba International Airport" } }, { "key": "437", "attributes": { "latitude": 43.30110168457031, "longitude": -2.9106099605560303, "fullName": "Bilbao Airport" } }, { "key": "445", "attributes": { "latitude": 37.466801, "longitude": 15.0664, "fullName": "Catania-Fontanarossa Airport" } }, { "key": "2187", "attributes": { "latitude": 46.00429916379999, "longitude": 8.9105796814, "fullName": "Lugano Airport" } }, { "key": "447", "attributes": { "latitude": 42.5614013671875, "longitude": 18.268199920654297, "fullName": "Dubrovnik Airport" } }, { "key": "2109", "attributes": { "latitude": 42.89630126953125, "longitude": -8.415140151977539, "fullName": "Santiago de Compostela Airport" } }, { "key": "1110", "attributes": { "latitude": 43.4683333, "longitude": -1.5311111, "fullName": "Biarritz-Anglet-Bayonne Airport" } }, { "key": "433", "attributes": { "latitude": 44.8184013367, "longitude": 20.3090991974, "fullName": "Belgrade Nikola Tesla Airport" } }, { "key": "2110", "attributes": { "latitude": 51.5713996887207, "longitude": 0.6955559849739075, "fullName": "Southend Airport" } }, { "key": "359", "attributes": { "latitude": 21.6796, "longitude": 39.156502, "fullName": "King Abdulaziz International Airport" } }, { "key": "1363", "attributes": { "latitude": 51.505299, "longitude": 0.055278, "fullName": "London City Airport" } }, { "key": "1258", "attributes": { "latitude": 49.6233333, "longitude": 6.2044444, "fullName": "Luxembourg-Findel International Airport" } }, { "key": "1026", "attributes": { "latitude": 44.5711111, "longitude": 26.085, "fullName": "Henri Coandă International Airport" } }, { "key": "1092", "attributes": { "latitude": 42.696693420410156, "longitude": 23.411436080932617, "fullName": "Sofia Airport" } }, { "key": "455", "attributes": { "latitude": 52.461101532, "longitude": 9.685079574580001, "fullName": "Hannover Airport" } }, { "key": "1832", "attributes": { "latitude": 52.8311004639, "longitude": -1.32806003094, "fullName": "East Midlands Airport" } }, { "key": "1037", "attributes": { "latitude": 26.27079963684082, "longitude": 50.63359832763672, "fullName": "Bahrain International Airport" } }, { "key": "1247", "attributes": { "latitude": 53.86589813232422, "longitude": -1.6605700254440308, "fullName": "Leeds Bradford Airport" } }, { "key": "446", "attributes": { "latitude": 51.39670181274414, "longitude": -3.343329906463623, "fullName": "Cardiff International Airport" } }, { "key": "2647", "attributes": { "latitude": 49.8125, "longitude": 23.956100463867188, "fullName": "Lviv International Airport" } }, { "key": "435", "attributes": { "latitude": 52.453899383499994, "longitude": -1.74802994728, "fullName": "Birmingham International Airport" } }, { "key": "73", "attributes": { "latitude": 59.1866989136, "longitude": 10.258600235, "fullName": "Sandefjord Airport, Torp" } }, { "key": "2106", "attributes": { "latitude": 50.779998779296875, "longitude": -1.8424999713897705, "fullName": "Bournemouth Airport" } }, { "key": "3058", "attributes": { "latitude": 50.979801177978516, "longitude": 10.958100318908691, "fullName": "Erfurt Airport" } }, { "key": "2267", "attributes": { "latitude": 55.5093994140625, "longitude": -4.586669921875, "fullName": "Glasgow Prestwick Airport" } }, { "key": "2784", "attributes": { "latitude": 27.814800262451172, "longitude": -17.887100219726562, "fullName": "Hierro Airport" } }, { "key": "1369", "attributes": { "latitude": 51.614101409899995, "longitude": 8.616319656369999, "fullName": "Paderborn Lippstadt Airport" } }, { "key": "2261", "attributes": { "latitude": 51.6024017334, "longitude": 6.14216995239, "fullName": "Weeze Airport" } }, { "key": "438", "attributes": { "latitude": 53.0475006104, "longitude": 8.78666973114, "fullName": "Bremen Airport" } }, { "key": "476", "attributes": { "latitude": 49.498699, "longitude": 11.078056, "fullName": "Nuremberg Airport" } }, { "key": "434", "attributes": { "latitude": 60.29339981, "longitude": 5.218140125, "fullName": "Bergen Airport Flesland" } }, { "key": "1373", "attributes": { "latitude": 28.626499, "longitude": -17.7556, "fullName": "La Palma Airport" } }, { "key": "2630", "attributes": { "latitude": 20.9330997467041, "longitude": -17.030000686645508, "fullName": "Nouadhibou International Airport" } }, { "key": "1706", "attributes": { "latitude": 27.151699, "longitude": -13.2192, "fullName": "Hassan I Airport" } }, { "key": "192", "attributes": { "latitude": 47.793300628699996, "longitude": 13.0043001175, "fullName": "Salzburg Airport" } }, { "key": "1714", "attributes": { "latitude": 23.7183, "longitude": -15.932, "fullName": "Dakhla Airport" } }, { "key": "1703", "attributes": { "latitude": 30.325000762939453, "longitude": -9.413069725036621, "fullName": "Al Massira Airport" } }, { "key": "2271", "attributes": { "latitude": 43.427101135253906, "longitude": -3.82000994682312, "fullName": "Santander Airport" } }, { "key": "55", "attributes": { "latitude": 25.557100296, "longitude": 34.5836982727, "fullName": "Marsa Alam International Airport" } }, { "key": "1522", "attributes": { "latitude": 55.7402992249, "longitude": 9.15178012848, "fullName": "Billund Airport" } }, { "key": "1568", "attributes": { "latitude": 42.2318000793457, "longitude": -8.62677001953125, "fullName": "Vigo Airport" } }, { "key": "187", "attributes": { "latitude": 46.9911003112793, "longitude": 15.439599990844727, "fullName": "Graz Airport" } }, { "key": "2105", "attributes": { "latitude": 53.77170181274414, "longitude": -3.0286099910736084, "fullName": "Blackpool International Airport" } }, { "key": "2253", "attributes": { "latitude": 49.9487, "longitude": 7.26389, "fullName": "Frankfurt-Hahn Airport" } }, { "key": "2470", "attributes": { "latitude": 43.5635986328125, "longitude": -6.0346198081970215, "fullName": "Asturias Airport" } }, { "key": "182", "attributes": { "latitude": 51.1328010559082, "longitude": 13.767200469970703, "fullName": "Dresden Airport" } }, { "key": "3341", "attributes": { "latitude": 49.2094, "longitude": 7.40056, "fullName": "Zweibrücken Airport" } }, { "key": "2260", "attributes": { "latitude": 50.911701, "longitude": 5.77014, "fullName": "Maastricht Aachen Airport" } }, { "key": "186", "attributes": { "latitude": 47.988800048799995, "longitude": 10.2395000458, "fullName": "Memmingen Allgau Airport" } }, { "key": "218", "attributes": { "latitude": 27.975500106811523, "longitude": -82.533203125, "fullName": "Tampa International Airport" } }, { "key": "419", "attributes": { "latitude": 28.5665, "longitude": 77.103104, "fullName": "Indira Gandhi International Airport" } }, { "key": "1090", "attributes": { "latitude": 39.87189865112305, "longitude": -75.24109649658203, "fullName": "Philadelphia International Airport" } }, { "key": "1547", "attributes": { "latitude": 46.223701, "longitude": 14.4576, "fullName": "Ljubljana Jože Pučnik Airport" } }, { "key": "1356", "attributes": { "latitude": 52.134601593, "longitude": 7.68483018875, "fullName": "Münster Osnabrück Airport" } }, { "key": "938", "attributes": { "latitude": 42.36429977, "longitude": -71.00520325, "fullName": "General Edward Lawrence Logan International Airport" } }, { "key": "305", "attributes": { "latitude": 31.143400192260742, "longitude": 121.80500030517578, "fullName": "Shanghai Pudong International Airport" } }, { "key": "500", "attributes": { "latitude": 45.7429008484, "longitude": 16.0687999725, "fullName": "Zagreb Airport" } }, { "key": "645", "attributes": { "latitude": 19.0886993408, "longitude": 72.8678970337, "fullName": "Chhatrapati Shivaji International Airport" } }, { "key": "701", "attributes": { "latitude": 54.9132003784, "longitude": 8.34047031403, "fullName": "Westerland Sylt Airport" } }, { "key": "428", "attributes": { "latitude": 41.961601, "longitude": 21.621401, "fullName": "Skopje Alexander the Great Airport" } }, { "key": "2529", "attributes": { "latitude": 44.94139862060547, "longitude": 17.297500610351562, "fullName": "Banja Luka International Airport" } }, { "key": "337", "attributes": { "latitude": 36.08010101, "longitude": -115.1520004, "fullName": "McCarran International Airport" } }, { "key": "184", "attributes": { "latitude": 42.7603, "longitude": 10.2394, "fullName": "Marina Di Campo Airport" } }, { "key": "491", "attributes": { "latitude": 38.905399, "longitude": 16.2423, "fullName": "Lamezia Terme Airport" } }, { "key": "123", "attributes": { "latitude": 41.9786, "longitude": -87.9048, "fullName": "Chicago O'Hare International Airport" } }, { "key": "1323", "attributes": { "latitude": 37.61899948120117, "longitude": -122.375, "fullName": "San Francisco International Airport" } }, { "key": "857", "attributes": { "latitude": 38.2924003601, "longitude": 27.156999588, "fullName": "Adnan Menderes International Airport" } }, { "key": "362", "attributes": { "latitude": 23.593299865722656, "longitude": 58.284400939941406, "fullName": "Muscat International Airport" } }, { "key": "58", "attributes": { "latitude": 65.59030151367188, "longitude": 19.28190040588379, "fullName": "Arvidsjaur Airport" } }, { "key": "67", "attributes": { "latitude": 64.54830169677734, "longitude": 18.71619987487793, "fullName": "Lycksele Airport" } }, { "key": "2447", "attributes": { "latitude": 63.194400787354, "longitude": 14.50030040741, "fullName": "Åre Östersund Airport" } }, { "key": "71", "attributes": { "latitude": 61.461700439453, "longitude": 21.799999237061, "fullName": "Pori Airport" } }, { "key": "486", "attributes": { "latitude": 43.82460021972656, "longitude": 18.331499099731445, "fullName": "Sarajevo International Airport" } }, { "key": "1999", "attributes": { "latitude": 56.68550109863281, "longitude": 16.287599563598633, "fullName": "Kalmar Airport" } }, { "key": "3245", "attributes": { "latitude": 55.92169952392578, "longitude": 14.08549976348877, "fullName": "Kristianstad Airport" } }, { "key": "1753", "attributes": { "latitude": 63.050701141357, "longitude": 21.762199401855, "fullName": "Vaasa Airport" } }, { "key": "68", "attributes": { "latitude": 60.122200012207, "longitude": 19.898199081421, "fullName": "Mariehamn Airport" } }, { "key": "2272", "attributes": { "latitude": 64.62480163574219, "longitude": 21.076900482177734, "fullName": "Skellefteå Airport" } }, { "key": "2000", "attributes": { "latitude": 56.266700744629, "longitude": 15.265000343323, "fullName": "Ronneby Airport" } }, { "key": "66", "attributes": { "latitude": 59.444698333699996, "longitude": 13.337400436400001, "fullName": "Karlstad Airport" } }, { "key": "1745", "attributes": { "latitude": 64.930099487305, "longitude": 25.354600906372, "fullName": "Oulu Airport" } }, { "key": "65", "attributes": { "latitude": 63.04859924316406, "longitude": 17.76889991760254, "fullName": "Kramfors Sollefteå Airport" } }, { "key": "1741", "attributes": { "latitude": 55.536305364, "longitude": 13.376197814900001, "fullName": "Malmö Sturup Airport" } }, { "key": "2112", "attributes": { "latitude": 33.262500762900004, "longitude": 44.2346000671, "fullName": "Baghdad International Airport" } }, { "key": "75", "attributes": { "latitude": 64.5791015625, "longitude": 16.833599090576172, "fullName": "Vilhelmina Airport" } }, { "key": "3247", "attributes": { "latitude": 60.957901, "longitude": 14.5114, "fullName": "Mora Airport" } }, { "key": "2090", "attributes": { "latitude": 67.821998596191, "longitude": 20.336799621582, "fullName": "Kiruna Airport" } }, { "key": "1754", "attributes": { "latitude": 57.0927589138, "longitude": 9.84924316406, "fullName": "Aalborg Airport" } }, { "key": "3243", "attributes": { "latitude": 62.04779815673828, "longitude": 14.422900199890137, "fullName": "Sveg Airport" } }, { "key": "3244", "attributes": { "latitude": 60.02009963989258, "longitude": 13.578900337219238, "fullName": "Hagfors Airport" } }, { "key": "1752", "attributes": { "latitude": 63.791801452637, "longitude": 20.282800674438, "fullName": "Umeå Airport" } }, { "key": "1389", "attributes": { "latitude": 63.4578018, "longitude": 10.9239998, "fullName": "Trondheim Airport Værnes" } }, { "key": "1751", "attributes": { "latitude": 61.414100646973, "longitude": 23.604400634766, "fullName": "Tampere-Pirkkala Airport" } }, { "key": "1066", "attributes": { "latitude": 37.06829833984375, "longitude": 22.02549934387207, "fullName": "Kalamata Airport" } }, { "key": "69", "attributes": { "latitude": 63.40829849243164, "longitude": 18.989999771118164, "fullName": "Örnsköldsvik Airport" } }, { "key": "2001", "attributes": { "latitude": 62.528099060058594, "longitude": 17.443899154663086, "fullName": "Sundsvall-Härnösand Airport" } }, { "key": "1284", "attributes": { "latitude": 37.721298, "longitude": -122.221001, "fullName": "Metropolitan Oakland International Airport" } }, { "key": "596", "attributes": { "latitude": 69.68329620361328, "longitude": 18.918899536132812, "fullName": "Tromsø Airport," } }, { "key": "1337", "attributes": { "latitude": 58.876701354, "longitude": 5.6377801895, "fullName": "Stavanger Airport Sola" } }, { "key": "63", "attributes": { "latitude": 57.757598876953125, "longitude": 14.068699836730957, "fullName": "Jönköping Airport" } }, { "key": "76", "attributes": { "latitude": 56.929100036621094, "longitude": 14.727999687194824, "fullName": "Växjö Kronoberg Airport" } }, { "key": "1118", "attributes": { "latitude": 57.662799835205, "longitude": 12.279800415039, "fullName": "Gothenburg-Landvetter Airport" } }, { "key": "72", "attributes": { "latitude": 60.514099121094, "longitude": 22.262800216675, "fullName": "Turku Airport" } }, { "key": "2092", "attributes": { "latitude": 65.543800354004, "longitude": 22.121999740601, "fullName": "Luleå Airport" } }, { "key": "2114", "attributes": { "latitude": 36.23759841918945, "longitude": 43.963199615478516, "fullName": "Erbil International Airport" } }, { "key": "60", "attributes": { "latitude": 67.13240051269531, "longitude": 20.814599990844727, "fullName": "Gällivare Airport" } }, { "key": "1997", "attributes": { "latitude": 56.29610061645508, "longitude": 12.847100257873535, "fullName": "Ängelholm-Helsingborg Airport" } }, { "key": "61", "attributes": { "latitude": 56.69110107421875, "longitude": 12.820199966430664, "fullName": "Halmstad Airport" } }, { "key": "2139", "attributes": { "latitude": 35.5617485046, "longitude": 45.316738128699996, "fullName": "Sulaymaniyah International Airport" } }, { "key": "74", "attributes": { "latitude": 57.662799835205, "longitude": 18.346200942993, "fullName": "Visby Airport" } }, { "key": "1733", "attributes": { "latitude": 59.354400634765625, "longitude": 17.941699981689453, "fullName": "Stockholm-Bromma Airport" } }, { "key": "62", "attributes": { "latitude": 65.80609893798828, "longitude": 15.082799911499023, "fullName": "Hemavan Airport" } }, { "key": "64", "attributes": { "latitude": 63.721199035645, "longitude": 23.143100738525, "fullName": "Kokkola-Pietarsaari Airport" } }, { "key": "2083", "attributes": { "latitude": 59.791900634765625, "longitude": 5.340849876403809, "fullName": "Stord Airport" } }, { "key": "3280", "attributes": { "latitude": 65.461097717285, "longitude": 12.217499732971, "fullName": "Brønnøysund Airport" } }, { "key": "2085", "attributes": { "latitude": 69.055801391602, "longitude": 18.540399551392, "fullName": "Bardufoss Airport" } }, { "key": "1764", "attributes": { "latitude": 58.204201, "longitude": 8.08537, "fullName": "Kristiansand Airport" } }, { "key": "2025", "attributes": { "latitude": 48.17020034790039, "longitude": 17.21269989013672, "fullName": "M. R. Štefánik Airport" } }, { "key": "2667", "attributes": { "latitude": 63.69889831542969, "longitude": 9.604000091552734, "fullName": "Ørland Airport" } }, { "key": "421", "attributes": { "latitude": 33.560713, "longitude": 72.851613, "fullName": "New Islamabad International Airport" } }, { "key": "3301", "attributes": { "latitude": 61.156101, "longitude": 7.13778, "fullName": "Sogndal Airport" } }, { "key": "865", "attributes": { "latitude": 36.299217, "longitude": 32.300598, "fullName": "Gazipaşa Airport" } }, { "key": "1755", "attributes": { "latitude": 62.5625, "longitude": 6.119699954986572, "fullName": "Ålesund Airport" } }, { "key": "3283", "attributes": { "latitude": 61.583599090576, "longitude": 5.0247201919556, "fullName": "Florø Airport" } }, { "key": "2096", "attributes": { "latitude": 53.584701538100006, "longitude": 14.902199745199999, "fullName": "Szczecin-Goleniów \"Solidarność\" Airport" } }, { "key": "1873", "attributes": { "latitude": 55.973201751708984, "longitude": 21.093900680541992, "fullName": "Palanga International Airport" } }, { "key": "1808", "attributes": { "latitude": 56.2999992371, "longitude": 10.619000434899998, "fullName": "Aarhus Airport" } }, { "key": "2089", "attributes": { "latitude": 69.725799560547, "longitude": 29.891300201416, "fullName": "Kirkenes Airport (Høybuktmoen)" } }, { "key": "3303", "attributes": { "latitude": 65.956802368164, "longitude": 12.468899726868, "fullName": "Sandnessjøen Airport (Stokka)" } }, { "key": "2084", "attributes": { "latitude": 69.976097106934, "longitude": 23.371700286865, "fullName": "Alta Airport" } }, { "key": "2668", "attributes": { "latitude": 61.015598297119, "longitude": 9.2880601882935, "fullName": "Leirin Airport" } }, { "key": "3298", "attributes": { "latitude": 61.830001831055, "longitude": 6.1058301925659, "fullName": "Sandane Airport (Anda)" } }, { "key": "2093", "attributes": { "latitude": 78.246101379395, "longitude": 15.465600013733, "fullName": "Svalbard Airport, Longyear" } }, { "key": "2088", "attributes": { "latitude": 59.34529876709, "longitude": 5.2083601951599, "fullName": "Haugesund Airport" } }, { "key": "1863", "attributes": { "latitude": 63.111801147461, "longitude": 7.824520111084, "fullName": "Kristiansund Airport (Kvernberget)" } }, { "key": "2081", "attributes": { "latitude": 62.744701385498, "longitude": 7.2624998092651, "fullName": "Molde Airport" } }, { "key": "2087", "attributes": { "latitude": 67.26920318603516, "longitude": 14.365300178527832, "fullName": "Bodø Airport" } }, { "key": "3286", "attributes": { "latitude": 62.180000305176, "longitude": 6.0741000175476, "fullName": "Ørsta-Volda Airport, Hovden" } }, { "key": "1862", "attributes": { "latitude": 68.491302490234, "longitude": 16.678100585938, "fullName": "Harstad/Narvik Airport, Evenes" } }, { "key": "3296", "attributes": { "latitude": 62.578399658203, "longitude": 11.342300415039, "fullName": "Røros Airport" } }, { "key": "465", "attributes": { "latitude": 50.4743, "longitude": 19.08, "fullName": "Katowice International Airport" } }, { "key": "1756", "attributes": { "latitude": 40.632099, "longitude": 8.29077, "fullName": "Alghero-Fertilia Airport" } }, { "key": "2259", "attributes": { "latitude": 51.240278, "longitude": 22.713611, "fullName": "Lublin Airport" } }, { "key": "1998", "attributes": { "latitude": 57.7747, "longitude": 11.8704, "fullName": "Gothenburg City Airport" } }, { "key": "77", "attributes": { "latitude": 57.75, "longitude": -152.4940033, "fullName": "Kodiak Airport" } }, { "key": "711", "attributes": { "latitude": 61.174400329589844, "longitude": -149.99600219726562, "fullName": "Ted Stevens Anchorage International Airport" } }, { "key": "831", "attributes": { "latitude": 56.9387016296, "longitude": -154.182998657, "fullName": "Akhiok Airport" } }, { "key": "80", "attributes": { "latitude": 57.5350990295, "longitude": -153.977996826, "fullName": "Larsen Bay Airport" } }, { "key": "3410", "attributes": { "latitude": 57.5671005249, "longitude": -154.449996948, "fullName": "Karluk Airport" } }, { "key": "83", "attributes": { "latitude": 20.4513, "longitude": 121.980003, "fullName": "Basco Airport" } }, { "key": "93", "attributes": { "latitude": 14.5086, "longitude": 121.019997, "fullName": "Ninoy Aquino International Airport" } }, { "key": "84", "attributes": { "latitude": 8.9515, "longitude": 125.4788, "fullName": "Bancasi Airport" } }, { "key": "566", "attributes": { "latitude": 10.307499885559, "longitude": 123.97899627686, "fullName": "Mactan Cebu International Airport" } }, { "key": "85", "attributes": { "latitude": 7.1652398109436035, "longitude": 124.20999908447266, "fullName": "Awang Airport" } }, { "key": "86", "attributes": { "latitude": 8.612203, "longitude": 124.456496, "fullName": "Laguindingan Airport" } }, { "key": "573", "attributes": { "latitude": 7.1255202293396, "longitude": 125.64600372314453, "fullName": "Francisco Bangoy International Airport" } }, { "key": "576", "attributes": { "latitude": 10.833017, "longitude": 122.493358, "fullName": "Iloilo International Airport" } }, { "key": "563", "attributes": { "latitude": 10.7764, "longitude": 123.014999, "fullName": "Bacolod-Silay Airport" } }, { "key": "87", "attributes": { "latitude": 12.502400398254395, "longitude": 124.63600158691406, "fullName": "Catarman National Airport" } }, { "key": "88", "attributes": { "latitude": 9.3337097168, "longitude": 123.300003052, "fullName": "Sibulan Airport" } }, { "key": "1045", "attributes": { "latitude": 26.471200942993164, "longitude": 49.79790115356445, "fullName": "King Fahd International Airport" } }, { "key": "641", "attributes": { "latitude": 23.0771999359, "longitude": 72.63469696039999, "fullName": "Sardar Vallabhbhai Patel International Airport" } }, { "key": "1765", "attributes": { "latitude": 15.589500427246094, "longitude": 32.553199768066406, "fullName": "Khartoum International Airport" } }, { "key": "171", "attributes": { "latitude": 2.745579957962, "longitude": 101.70999908447, "fullName": "Kuala Lumpur International Airport" } }, { "key": "361", "attributes": { "latitude": 27.6966, "longitude": 85.3591, "fullName": "Tribhuvan International Airport" } }, { "key": "1056", "attributes": { "latitude": 29.226600646972656, "longitude": 47.96889877319336, "fullName": "Kuwait International Airport" } }, { "key": "355", "attributes": { "latitude": 22.24959945678711, "longitude": 91.81330108642578, "fullName": "Shah Amanat International Airport" } }, { "key": "1611", "attributes": { "latitude": 4.191830158233643, "longitude": 73.52909851074219, "fullName": "Malé International Airport" } }, { "key": "90", "attributes": { "latitude": 6.05800008774, "longitude": 125.096000671, "fullName": "General Santos International Airport" } }, { "key": "91", "attributes": { "latitude": 11.679400444, "longitude": 122.375999451, "fullName": "Kalibo International Airport" } }, { "key": "582", "attributes": { "latitude": 35.1795005798, "longitude": 128.93800354, "fullName": "Gimhae International Airport" } }, { "key": "569", "attributes": { "latitude": 15.186, "longitude": 120.559998, "fullName": "Diosdado Macapagal International Airport" } }, { "key": "180", "attributes": { "latitude": 25.0777, "longitude": 121.233002, "fullName": "Taiwan Taoyuan International Airport" } }, { "key": "92", "attributes": { "latitude": 13.1575, "longitude": 123.735, "fullName": "Legazpi City International Airport" } }, { "key": "327", "attributes": { "latitude": 24.54400062561035, "longitude": 118.12799835205078, "fullName": "Xiamen Gaoqi International Airport" } }, { "key": "96", "attributes": { "latitude": 9.742119789123535, "longitude": 118.75900268554688, "fullName": "Puerto Princesa Airport" } }, { "key": "567", "attributes": { "latitude": -6.1255698204, "longitude": 106.65599823, "fullName": "Soekarno-Hatta International Airport" } }, { "key": "94", "attributes": { "latitude": 11.9245, "longitude": 121.954002, "fullName": "Godofredo P. Ramos Airport" } }, { "key": "577", "attributes": { "latitude": 18.1781005859375, "longitude": 120.53199768066406, "fullName": "Laoag International Airport" } }, { "key": "1629", "attributes": { "latitude": 4.322010040283203, "longitude": 113.98699951171875, "fullName": "Miri Airport" } }, { "key": "587", "attributes": { "latitude": 13.576399803161621, "longitude": 124.20600128173828, "fullName": "Virac Airport" } }, { "key": "259", "attributes": { "latitude": 23.39240074157715, "longitude": 113.29900360107422, "fullName": "Guangzhou Baiyun International Airport" } }, { "key": "165", "attributes": { "latitude": -12.41469955444336, "longitude": 130.8769989013672, "fullName": "Darwin International Airport" } }, { "key": "1227", "attributes": { "latitude": 21.32062, "longitude": -157.924228, "fullName": "Daniel K Inouye International Airport" } }, { "key": "570", "attributes": { "latitude": 16.9298992157, "longitude": 121.752998352, "fullName": "Cauayan Airport" } }, { "key": "97", "attributes": { "latitude": 11.597700119018555, "longitude": 122.75199890136719, "fullName": "Roxas Airport" } }, { "key": "578", "attributes": { "latitude": 22.149599, "longitude": 113.592003, "fullName": "Macau International Airport" } }, { "key": "98", "attributes": { "latitude": 9.755838325629998, "longitude": 125.480947495, "fullName": "Surigao Airport" } }, { "key": "572", "attributes": { "latitude": -8.7481698989868, "longitude": 115.16699981689, "fullName": "Ngurah Rai (Bali) International Airport" } }, { "key": "564", "attributes": { "latitude": 5.9372100830078125, "longitude": 116.0510025024414, "fullName": "Kota Kinabalu International Airport" } }, { "key": "581", "attributes": { "latitude": 7.83073144787, "longitude": 123.461179733, "fullName": "Pagadian Airport" } }, { "key": "565", "attributes": { "latitude": 4.944200038909912, "longitude": 114.9280014038086, "fullName": "Brunei International Airport" } }, { "key": "700", "attributes": { "latitude": 13.4834003448, "longitude": 144.796005249, "fullName": "Antonio B. Won Pat International Airport" } }, { "key": "698", "attributes": { "latitude": 33.585899353027344, "longitude": 130.4510040283203, "fullName": "Fukuoka Airport" } }, { "key": "310", "attributes": { "latitude": -33.94609832763672, "longitude": 151.177001953125, "fullName": "Sydney Kingsford Smith International Airport" } }, { "key": "1561", "attributes": { "latitude": 7.36731, "longitude": 134.544236, "fullName": "Babelthuap Airport" } }, { "key": "583", "attributes": { "latitude": 12.361499786399998, "longitude": 121.04699707, "fullName": "San Jose Airport" } }, { "key": "2901", "attributes": { "latitude": 12.369682, "longitude": 123.630095, "fullName": "Moises R. Espinosa Airport" } }, { "key": "584", "attributes": { "latitude": 11.228035, "longitude": 125.027761, "fullName": "Daniel Z. Romualdez Airport" } }, { "key": "588", "attributes": { "latitude": 13.58489990234375, "longitude": 123.2699966430664, "fullName": "Naga Airport" } }, { "key": "175", "attributes": { "latitude": 13.410699844400002, "longitude": 103.81300354, "fullName": "Siem Reap International Airport" } }, { "key": "1952", "attributes": { "latitude": -9.443380355834961, "longitude": 147.22000122070312, "fullName": "Port Moresby Jacksons International Airport" } }, { "key": "170", "attributes": { "latitude": 34.42729949951172, "longitude": 135.24400329589844, "fullName": "Kansai International Airport" } }, { "key": "585", "attributes": { "latitude": 9.665442, "longitude": 123.853533, "fullName": "Tagbilaran Airport" } }, { "key": "100", "attributes": { "latitude": 6.922420024871826, "longitude": 122.05999755859375, "fullName": "Zamboanga International Airport" } }, { "key": "571", "attributes": { "latitude": 8.60198349877, "longitude": 123.341875076, "fullName": "Dipolog Airport" } }, { "key": "586", "attributes": { "latitude": 12.1215000153, "longitude": 120.099998474, "fullName": "Francisco B. Reyes Airport" } }, { "key": "579", "attributes": { "latitude": 34.8583984375, "longitude": 136.80499267578125, "fullName": "Chubu Centrair International Airport" } }, { "key": "2899", "attributes": { "latitude": 12.072699546813965, "longitude": 124.54499816894531, "fullName": "Calbayog Airport" } }, { "key": "333", "attributes": { "latitude": 49.193901062, "longitude": -123.183998108, "fullName": "Vancouver International Airport" } }, { "key": "297", "attributes": { "latitude": -37.673302, "longitude": 144.843002, "fullName": "Melbourne International Airport" } }, { "key": "707", "attributes": { "latitude": 35.552299, "longitude": 139.779999, "fullName": "Tokyo Haneda International Airport" } }, { "key": "95", "attributes": { "latitude": 8.178509712219238, "longitude": 123.84200286865234, "fullName": "Labo Airport" } }, { "key": "905", "attributes": { "latitude": 22.57710075378418, "longitude": 120.3499984741211, "fullName": "Kaohsiung International Airport" } }, { "key": "99", "attributes": { "latitude": 17.6433676823, "longitude": 121.733150482, "fullName": "Tuguegarao Airport" } }, { "key": "2900", "attributes": { "latitude": 6.0536699295043945, "longitude": 121.01100158691406, "fullName": "Jolo Airport" } }, { "key": "101", "attributes": { "latitude": -7.22787, "longitude": -48.240501, "fullName": "Araguaína Airport" } }, { "key": "113", "attributes": { "latitude": -10.291500091600001, "longitude": -48.35699844359999, "fullName": "Brigadeiro Lysias Rodrigues Airport" } }, { "key": "103", "attributes": { "latitude": -15.86916732788086, "longitude": -47.920833587646484, "fullName": "Presidente Juscelino Kubistschek International Airport" } }, { "key": "1471", "attributes": { "latitude": -5.36858987808, "longitude": -49.138000488299994, "fullName": "João Correa da Rocha Airport" } }, { "key": "102", "attributes": { "latitude": -12.078900337219238, "longitude": -45.00899887084961, "fullName": "Barreiras Airport" } }, { "key": "116", "attributes": { "latitude": -12.9086112976, "longitude": -38.3224983215, "fullName": "Deputado Luiz Eduardo Magalhães International Airport" } }, { "key": "1186", "attributes": { "latitude": -19.62444305419922, "longitude": -43.97194290161133, "fullName": "Tancredo Neves International Airport" } }, { "key": "1306", "attributes": { "latitude": -8.126489639282227, "longitude": -34.92359924316406, "fullName": "Guararapes - Gilberto Freyre International Airport" } }, { "key": "1502", "attributes": { "latitude": -5.0599398613, "longitude": -42.8235015869, "fullName": "Senador Petrônio Portela Airport" } }, { "key": "1487", "attributes": { "latitude": -9.362409591674805, "longitude": -40.56909942626953, "fullName": "Senador Nilo Coelho Airport" } }, { "key": "114", "attributes": { "latitude": -21.136388778686523, "longitude": -47.776668548583984, "fullName": "Leite Lopes Airport" } }, { "key": "1458", "attributes": { "latitude": -5.53129, "longitude": -47.459999, "fullName": "Prefeito Renato Moreira Airport" } }, { "key": "1454", "attributes": { "latitude": -27.670278549194336, "longitude": -48.5525016784668, "fullName": "Hercílio Luz International Airport" } }, { "key": "1490", "attributes": { "latitude": -8.70928955078125, "longitude": -63.90230178833008, "fullName": "Governador Jorge Teixeira de Oliveira Airport" } }, { "key": "1498", "attributes": { "latitude": -2.585360050201416, "longitude": -44.234100341796875, "fullName": "Marechal Cunha Machado International Airport" } }, { "key": "118", "attributes": { "latitude": -18.883612, "longitude": -48.225277, "fullName": "Ten. Cel. Aviador César Bombonato Airport" } }, { "key": "105", "attributes": { "latitude": -15.6528997421, "longitude": -56.1166992188, "fullName": "Marechal Rondon Airport" } }, { "key": "1491", "attributes": { "latitude": -9.868888854980469, "longitude": -67.89805603027344, "fullName": "Plácido de Castro Airport" } }, { "key": "1506", "attributes": { "latitude": -20.258057, "longitude": -40.286388, "fullName": "Eurico de Aguiar Salles Airport" } }, { "key": "1261", "attributes": { "latitude": -3.0386099815368652, "longitude": -60.04970169067383, "fullName": "Eduardo Gomes International Airport" } }, { "key": "1505", "attributes": { "latitude": -23.0074005127, "longitude": -47.1344985962, "fullName": "Viracopos International Airport" } }, { "key": "1495", "attributes": { "latitude": -22.910499572799996, "longitude": -43.1631011963, "fullName": "Santos Dumont Airport" } }, { "key": "110", "attributes": { "latitude": -16.631999969482422, "longitude": -49.220699310302734, "fullName": "Santa Genoveva Airport" } }, { "key": "1432", "attributes": { "latitude": -10.984000206, "longitude": -37.0703010559, "fullName": "Santa Maria Airport" } }, { "key": "1466", "attributes": { "latitude": -7.145833015440001, "longitude": -34.9486122131, "fullName": "Presidente Castro Pinto International Airport" } }, { "key": "604", "attributes": { "latitude": -25.5284996033, "longitude": -49.1758003235, "fullName": "Afonso Pena Airport" } }, { "key": "1445", "attributes": { "latitude": -23.626110076904297, "longitude": -46.65638732910156, "fullName": "Congonhas Airport" } }, { "key": "1478", "attributes": { "latitude": -5.768056, "longitude": -35.376111, "fullName": "Governador Aluízio Alves International Airport" } }, { "key": "1464", "attributes": { "latitude": -7.21895980835, "longitude": -39.270099639899996, "fullName": "Orlando Bezerra de Menezes Airport" } }, { "key": "111", "attributes": { "latitude": -11.885000228881836, "longitude": -55.58610916137695, "fullName": "Presidente João Batista Figueiredo Airport" } }, { "key": "115", "attributes": { "latitude": -20.816600799599996, "longitude": -49.40650177, "fullName": "Prof. Eribelto Manoel Reino State Airport" } }, { "key": "106", "attributes": { "latitude": -20.468700408900002, "longitude": -54.6725006104, "fullName": "Campo Grande Airport" } }, { "key": "1459", "attributes": { "latitude": -14.815999984741, "longitude": -39.033199310303, "fullName": "Bahia - Jorge Amado Airport" } }, { "key": "1455", "attributes": { "latitude": -3.776279926300049, "longitude": -38.53260040283203, "fullName": "Pinto Martins International Airport" } }, { "key": "1473", "attributes": { "latitude": -9.510809898376465, "longitude": -35.79169845581055, "fullName": "Zumbi dos Palmares Airport" } }, { "key": "1437", "attributes": { "latitude": -1.3792500495900002, "longitude": -48.4762992859, "fullName": "Val de Cans/Júlio Cezar Ribeiro International Airport" } }, { "key": "104", "attributes": { "latitude": -25.0002994537, "longitude": -53.500801086399996, "fullName": "Cascavel Airport" } }, { "key": "1469", "attributes": { "latitude": -23.333599090599996, "longitude": -51.1301002502, "fullName": "Governador José Richa Airport" } }, { "key": "1467", "attributes": { "latitude": -10.870800018299999, "longitude": -61.8465003967, "fullName": "Ji-Paraná Airport" } }, { "key": "1440", "attributes": { "latitude": -12.694399833679, "longitude": -60.098300933838, "fullName": "Brigadeiro Camarão Airport" } }, { "key": "1431", "attributes": { "latitude": -9.8663892746, "longitude": -56.1049995422, "fullName": "Piloto Osvaldo Marques Dias Airport" } }, { "key": "1475", "attributes": { "latitude": -23.479444503799996, "longitude": -52.01222229, "fullName": "Regional de Maringá - Sílvio Nane Junior Airport" } }, { "key": "1493", "attributes": { "latitude": -16.586, "longitude": -54.7248, "fullName": "Maestro Marinho Franco Airport" } }, { "key": "1480", "attributes": { "latitude": -11.496, "longitude": -61.4508, "fullName": "Cacoal Airport" } }, { "key": "1449", "attributes": { "latitude": -19.0119438171, "longitude": -57.6713905334, "fullName": "Corumbá International Airport" } }, { "key": "107", "attributes": { "latitude": -22.2019, "longitude": -54.926601, "fullName": "Dourados Airport" } }, { "key": "602", "attributes": { "latitude": -34.5592, "longitude": -58.4156, "fullName": "Jorge Newbery Airpark" } }, { "key": "779", "attributes": { "latitude": 35.2140007019043, "longitude": -80.94309997558594, "fullName": "Charlotte Douglas International Airport" } }, { "key": "1479", "attributes": { "latitude": -26.879999, "longitude": -48.651402, "fullName": "Ministro Victor Konder International Airport" } }, { "key": "1387", "attributes": { "latitude": -8.85837, "longitude": 13.2312, "fullName": "Quatro de Fevereiro Airport" } }, { "key": "112", "attributes": { "latitude": -19.851200103759766, "longitude": -43.950599670410156, "fullName": "Pampulha - Carlos Drummond de Andrade Airport" } }, { "key": "1484", "attributes": { "latitude": -28.243999, "longitude": -52.326599, "fullName": "Lauro Kurtz Airport" } }, { "key": "2543", "attributes": { "latitude": -25.454516, "longitude": -54.842682, "fullName": "Guarani International Airport" } }, { "key": "1465", "attributes": { "latitude": -26.22450065612793, "longitude": -48.797401428222656, "fullName": "Lauro Carneiro de Loyola Airport" } }, { "key": "1438", "attributes": { "latitude": -16.438601, "longitude": -39.080898, "fullName": "Porto Seguro Airport" } }, { "key": "913", "attributes": { "latitude": 42.212398529052734, "longitude": -83.35340118408203, "fullName": "Detroit Metropolitan Wayne County Airport" } }, { "key": "1158", "attributes": { "latitude": 13.0746002197, "longitude": -59.4925003052, "fullName": "Sir Grantley Adams International Airport" } }, { "key": "1096", "attributes": { "latitude": -17.421100616455078, "longitude": -66.1771011352539, "fullName": "Jorge Wilsterman International Airport" } }, { "key": "1434", "attributes": { "latitude": -21.1413002014, "longitude": -50.4247016907, "fullName": "Araçatuba Airport" } }, { "key": "117", "attributes": { "latitude": -19.764722824097, "longitude": -47.966110229492, "fullName": "Mário de Almeida Franco Airport" } }, { "key": "119", "attributes": { "latitude": -14.8627996445, "longitude": -40.8630981445, "fullName": "Vitória da Conquista Airport" } }, { "key": "882", "attributes": { "latitude": -32.9036, "longitude": -60.785, "fullName": "Islas Malvinas Airport" } }, { "key": "1460", "attributes": { "latitude": -19.470699310303, "longitude": -42.487598419189, "fullName": "Usiminas Airport" } }, { "key": "1488", "attributes": { "latitude": -18.672800064086914, "longitude": -46.4911994934082, "fullName": "Patos de Minas Airport" } }, { "key": "1477", "attributes": { "latitude": -16.706899642899998, "longitude": -43.818901062, "fullName": "Mário Ribeiro Airport" } }, { "key": "1444", "attributes": { "latitude": -22.921699523900003, "longitude": -42.074298858599995, "fullName": "Cabo Frio Airport" } }, { "key": "1496", "attributes": { "latitude": -23.22920036315918, "longitude": -45.86149978637695, "fullName": "Professor Urbano Ernesto Stumpf Airport" } }, { "key": "1456", "attributes": { "latitude": -18.89520072937, "longitude": -41.982200622559, "fullName": "Coronel Altino Machado de Oliveira Airport" } }, { "key": "1430", "attributes": { "latitude": -19.563199996948, "longitude": -46.960399627686, "fullName": "Romeu Zema Airport" } }, { "key": "1379", "attributes": { "latitude": -13.2621002197, "longitude": -43.4081001282, "fullName": "Bom Jesus da Lapa Airport" } }, { "key": "1482", "attributes": { "latitude": -9.4008798599243, "longitude": -38.250598907471, "fullName": "Paulo Afonso Airport" } }, { "key": "1470", "attributes": { "latitude": -12.4822998047, "longitude": -41.2770004272, "fullName": "Coronel Horácio de Mattos Airport" } }, { "key": "1450", "attributes": { "latitude": -7.26992, "longitude": -35.8964, "fullName": "Presidente João Suassuna Airport" } }, { "key": "120", "attributes": { "latitude": 40.783199310302734, "longitude": -91.12550354003906, "fullName": "Southeast Iowa Regional Airport" } }, { "key": "124", "attributes": { "latitude": 38.748697, "longitude": -90.370003, "fullName": "St Louis Lambert International Airport" } }, { "key": "121", "attributes": { "latitude": 39.834598541259766, "longitude": -88.8656997680664, "fullName": "Decatur Airport" } }, { "key": "122", "attributes": { "latitude": 35.83169937133789, "longitude": -90.64640045166016, "fullName": "Jonesboro Municipal Airport" } }, { "key": "377", "attributes": { "latitude": 51.113899231, "longitude": -114.019996643, "fullName": "Calgary International Airport" } }, { "key": "1326", "attributes": { "latitude": 37.362598, "longitude": -121.929001, "fullName": "Norman Y. Mineta San Jose International Airport" } }, { "key": "1351", "attributes": { "latitude": 43.460800170899994, "longitude": -80.3786010742, "fullName": "Waterloo Airport" } }, { "key": "914", "attributes": { "latitude": 38.0369987488, "longitude": -87.5324020386, "fullName": "Evansville Regional Airport" } }, { "key": "1275", "attributes": { "latitude": 30.691200256348, "longitude": -88.242797851562, "fullName": "Mobile Regional Airport" } }, { "key": "1214", "attributes": { "latitude": 19.292800903299998, "longitude": -81.3576965332, "fullName": "Owen Roberts International Airport" } }, { "key": "215", "attributes": { "latitude": 26.53619956970215, "longitude": -81.75520324707031, "fullName": "Southwest Florida International Airport" } }, { "key": "945", "attributes": { "latitude": 41.06700134277344, "longitude": -73.70760345458984, "fullName": "Westchester County Airport" } }, { "key": "1269", "attributes": { "latitude": 42.947200775146484, "longitude": -87.89659881591797, "fullName": "General Mitchell International Airport" } }, { "key": "1257", "attributes": { "latitude": 43.879002, "longitude": -91.256699, "fullName": "La Crosse Municipal Airport" } }, { "key": "3153", "attributes": { "latitude": 43.16949844, "longitude": -86.23819733, "fullName": "Muskegon County Airport" } }, { "key": "1167", "attributes": { "latitude": 43.5644, "longitude": -116.223, "fullName": "Boise Air Terminal/Gowen Field" } }, { "key": "2780", "attributes": { "latitude": 39.45759963989258, "longitude": -74.57720184326172, "fullName": "Atlantic City International Airport" } }, { "key": "1281", "attributes": { "latitude": 25.0389995575, "longitude": -77.46620178219999, "fullName": "Lynden Pindling International Airport" } }, { "key": "1316", "attributes": { "latitude": 32.12760162, "longitude": -81.20210266, "fullName": "Savannah Hilton Head International Airport" } }, { "key": "927", "attributes": { "latitude": 37.3255, "longitude": -79.975403, "fullName": "Roanoke–Blacksburg Regional Airport" } }, { "key": "911", "attributes": { "latitude": 38.37310028076172, "longitude": -81.59320068359375, "fullName": "Yeager Airport" } }, { "key": "1171", "attributes": { "latitude": 44.471900939899996, "longitude": -73.15329742429999, "fullName": "Burlington International Airport" } }, { "key": "390", "attributes": { "latitude": 20.521799087524414, "longitude": -103.31099700927734, "fullName": "Don Miguel Hidalgo Y Costilla International Airport" } }, { "key": "2032", "attributes": { "latitude": 46.8420982361, "longitude": -92.19360351559999, "fullName": "Duluth International Airport" } }, { "key": "1162", "attributes": { "latitude": 33.56290054, "longitude": -86.75350189, "fullName": "Birmingham-Shuttlesworth International Airport" } }, { "key": "1285", "attributes": { "latitude": 20.8986, "longitude": -156.429993, "fullName": "Kahului Airport" } }, { "key": "1184", "attributes": { "latitude": 39.998001, "longitude": -82.891899, "fullName": "John Glenn Columbus International Airport" } }, { "key": "917", "attributes": { "latitude": 36.097801208496094, "longitude": -79.93730163574219, "fullName": "Piedmont Triad International Airport" } }, { "key": "1150", "attributes": { "latitude": 43.99190139770508, "longitude": -76.02169799804688, "fullName": "Watertown International Airport" } }, { "key": "920", "attributes": { "latitude": 38.0364990234375, "longitude": -84.60590362548828, "fullName": "Blue Grass Airport" } }, { "key": "1303", "attributes": { "latitude": 44.0452995300293, "longitude": -103.05699920654297, "fullName": "Rapid City Regional Airport" } }, { "key": "1165", "attributes": { "latitude": 36.1245002746582, "longitude": -86.6781997680664, "fullName": "Nashville International Airport" } }, { "key": "918", "attributes": { "latitude": 34.8956985474, "longitude": -82.2189025879, "fullName": "Greenville Spartanburg International Airport" } }, { "key": "1792", "attributes": { "latitude": 43.64619827, "longitude": -70.30930328, "fullName": "Portland International Jetport Airport" } }, { "key": "1271", "attributes": { "latitude": 41.44850158691406, "longitude": -90.50749969482422, "fullName": "Quad City International Airport" } }, { "key": "1195", "attributes": { "latitude": 42.40200043, "longitude": -90.70950317, "fullName": "Dubuque Regional Airport" } }, { "key": "963", "attributes": { "latitude": 18.337299346923828, "longitude": -64.97339630126953, "fullName": "Cyril E. King Airport" } }, { "key": "1301", "attributes": { "latitude": 41.732601, "longitude": -71.420403, "fullName": "Theodore Francis Green State Airport" } }, { "key": "1210", "attributes": { "latitude": 42.96540069580078, "longitude": -83.74359893798828, "fullName": "Bishop International Airport" } }, { "key": "1336", "attributes": { "latitude": 42.40259933, "longitude": -96.38439941, "fullName": "Sioux Gateway Col. Bud Day Field" } }, { "key": "1278", "attributes": { "latitude": 43.13990020751953, "longitude": -89.3375015258789, "fullName": "Dane County Regional Truax Field" } }, { "key": "922", "attributes": { "latitude": 43.532901763916016, "longitude": -84.07959747314453, "fullName": "MBS International Airport" } }, { "key": "928", "attributes": { "latitude": 43.11119842529297, "longitude": -76.1063003540039, "fullName": "Syracuse Hancock International Airport" } }, { "key": "1229", "attributes": { "latitude": 34.637199401855, "longitude": -86.775100708008, "fullName": "Huntsville International Carl T Jones Field" } }, { "key": "1189", "attributes": { "latitude": 38.81809997558594, "longitude": -92.21959686279297, "fullName": "Columbia Regional Airport" } }, { "key": "1175", "attributes": { "latitude": 33.93880081176758, "longitude": -81.11949920654297, "fullName": "Columbia Metropolitan Airport" } }, { "key": "919", "attributes": { "latitude": 42.77870178222656, "longitude": -84.58740234375, "fullName": "Capital City Airport" } }, { "key": "1321", "attributes": { "latitude": 38.1744, "longitude": -85.736, "fullName": "Louisville International Standiford Field" } }, { "key": "1156", "attributes": { "latitude": 41.9388999939, "longitude": -72.68319702149999, "fullName": "Bradley International Airport" } }, { "key": "1188", "attributes": { "latitude": 38.805801, "longitude": -104.700996, "fullName": "City of Colorado Springs Municipal Airport" } }, { "key": "1324", "attributes": { "latitude": 37.24570084, "longitude": -93.38860321, "fullName": "Springfield Branson National Airport" } }, { "key": "2307", "attributes": { "latitude": 45.546600341796875, "longitude": -94.05989837646484, "fullName": "St Cloud Regional Airport" } }, { "key": "1322", "attributes": { "latitude": 47.449001, "longitude": -122.308998, "fullName": "Seattle Tacoma International Airport" } }, { "key": "1305", "attributes": { "latitude": 35.877601623535156, "longitude": -78.7874984741211, "fullName": "Raleigh Durham International Airport" } }, { "key": "373", "attributes": { "latitude": 53.309700012200004, "longitude": -113.580001831, "fullName": "Edmonton International Airport" } }, { "key": "1339", "attributes": { "latitude": 41.58679962, "longitude": -83.80780029, "fullName": "Toledo Express Airport" } }, { "key": "1287", "attributes": { "latitude": 41.3032, "longitude": -95.894096, "fullName": "Eppley Airfield" } }, { "key": "1172", "attributes": { "latitude": 42.94049835, "longitude": -78.73220062, "fullName": "Buffalo Niagara International Airport" } }, { "key": "1268", "attributes": { "latitude": 42.932598, "longitude": -71.435699, "fullName": "Manchester-Boston Regional Airport" } }, { "key": "1344", "attributes": { "latitude": 44.74140167236328, "longitude": -85.58219909667969, "fullName": "Cherry Capital Airport" } }, { "key": "1222", "attributes": { "latitude": 44.48509979248047, "longitude": -88.12960052490234, "fullName": "Austin Straubel International Airport" } }, { "key": "403", "attributes": { "latitude": 20.680099487304688, "longitude": -105.25399780273438, "fullName": "Licenciado Gustavo Díaz Ordaz International Airport" } }, { "key": "214", "attributes": { "latitude": 30.473400115967, "longitude": -87.186599731445, "fullName": "Pensacola Regional Airport" } }, { "key": "625", "attributes": { "latitude": 49.909999847399995, "longitude": -97.2398986816, "fullName": "Winnipeg / James Armstrong Richardson International Airport" } }, { "key": "3413", "attributes": { "latitude": 39.84410095, "longitude": -89.67790222, "fullName": "Abraham Lincoln Capital Airport" } }, { "key": "912", "attributes": { "latitude": 39.0488014221, "longitude": -84.6678009033, "fullName": "Cincinnati Northern Kentucky International Airport" } }, { "key": "924", "attributes": { "latitude": 35.04240036010742, "longitude": -89.97669982910156, "fullName": "Memphis International Airport" } }, { "key": "1320", "attributes": { "latitude": 40.8493003845, "longitude": -77.84870147710001, "fullName": "University Park Airport" } }, { "key": "915", "attributes": { "latitude": 40.97850037, "longitude": -85.19509888, "fullName": "Fort Wayne International Airport" } }, { "key": "1308", "attributes": { "latitude": 39.49909973144531, "longitude": -119.76799774169922, "fullName": "Reno Tahoe International Airport" } }, { "key": "1154", "attributes": { "latitude": 41.338500976599995, "longitude": -75.72339630130001, "fullName": "Wilkes Barre Scranton International Airport" } }, { "key": "1236", "attributes": { "latitude": 39.7173, "longitude": -86.294403, "fullName": "Indianapolis International Airport" } }, { "key": "1180", "attributes": { "latitude": 32.89860153, "longitude": -80.04049683, "fullName": "Charleston Air Force Base-International Airport" } }, { "key": "1140", "attributes": { "latitude": 35.040199, "longitude": -106.609001, "fullName": "Albuquerque International Sunport" } }, { "key": "1309", "attributes": { "latitude": 43.118900299072266, "longitude": -77.67240142822266, "fullName": "Greater Rochester International Airport" } }, { "key": "1152", "attributes": { "latitude": 30.194499969482422, "longitude": -97.6698989868164, "fullName": "Austin Bergstrom International Airport" } }, { "key": "149", "attributes": { "latitude": 46.7911, "longitude": -71.393303, "fullName": "Quebec Jean Lesage International Airport" } }, { "key": "1342", "attributes": { "latitude": 36.19839859008789, "longitude": -95.88809967041016, "fullName": "Tulsa International Airport" } }, { "key": "1519", "attributes": { "latitude": 44.258098602299995, "longitude": -88.5190963745, "fullName": "Appleton International Airport" } }, { "key": "1234", "attributes": { "latitude": 37.649899, "longitude": -97.433098, "fullName": "Wichita Eisenhower National Airport" } }, { "key": "212", "attributes": { "latitude": 26.68320083618164, "longitude": -80.09559631347656, "fullName": "Palm Beach International Airport" } }, { "key": "1329", "attributes": { "latitude": 40.78839874267578, "longitude": -111.97799682617188, "fullName": "Salt Lake City International Airport" } }, { "key": "1681", "attributes": { "latitude": 45.77750015, "longitude": -111.1529999, "fullName": "Gallatin Field" } }, { "key": "909", "attributes": { "latitude": 42.234901428222656, "longitude": -85.5521011352539, "fullName": "Kalamazoo Battle Creek International Airport" } }, { "key": "1350", "attributes": { "latitude": 44.8807983398, "longitude": -63.5085983276, "fullName": "Halifax / Stanfield International Airport" } }, { "key": "1147", "attributes": { "latitude": 42.557098388671875, "longitude": -92.40029907226562, "fullName": "Waterloo Regional Airport" } }, { "key": "931", "attributes": { "latitude": 36.281898, "longitude": -94.306801, "fullName": "Northwest Arkansas Regional Airport" } }, { "key": "1333", "attributes": { "latitude": 27.39539909362793, "longitude": -82.55439758300781, "fullName": "Sarasota Bradenton International Airport" } }, { "key": "1563", "attributes": { "latitude": 41.70869827270508, "longitude": -86.31729888916016, "fullName": "South Bend Regional Airport" } }, { "key": "406", "attributes": { "latitude": 23.15180015563965, "longitude": -109.72100067138672, "fullName": "Los Cabos International Airport" } }, { "key": "1311", "attributes": { "latitude": 43.90829849243164, "longitude": -92.5, "fullName": "Rochester International Airport" } }, { "key": "375", "attributes": { "latitude": 45.3224983215332, "longitude": -75.66919708251953, "fullName": "Ottawa Macdonald-Cartier International Airport" } }, { "key": "1192", "attributes": { "latitude": 44.7775993347, "longitude": -89.6668014526, "fullName": "Central Wisconsin Airport" } }, { "key": "1200", "attributes": { "latitude": 42.1599006652832, "longitude": -76.8916015625, "fullName": "Elmira Corning Regional Airport" } }, { "key": "408", "attributes": { "latitude": 33.67570114, "longitude": -117.8679962, "fullName": "John Wayne Airport-Orange County Airport" } }, { "key": "1164", "attributes": { "latitude": 40.47710037, "longitude": -88.91590118, "fullName": "Central Illinois Regional Airport at Bloomington-Normal" } }, { "key": "1289", "attributes": { "latitude": 36.89459991455078, "longitude": -76.20120239257812, "fullName": "Norfolk International Airport" } }, { "key": "1300", "attributes": { "latitude": 33.8297004699707, "longitude": -116.50700378417969, "fullName": "Palm Springs International Airport" } }, { "key": "1263", "attributes": { "latitude": 39.2976, "longitude": -94.713898, "fullName": "Kansas City International Airport" } }, { "key": "1419", "attributes": { "latitude": 43.035599, "longitude": -81.1539, "fullName": "London Airport" } }, { "key": "925", "attributes": { "latitude": 44.882, "longitude": -93.221802, "fullName": "Minneapolis-St Paul International/Wold-Chamberlain Airport" } }, { "key": "1262", "attributes": { "latitude": 18.503700256347656, "longitude": -77.91339874267578, "fullName": "Sangster International Airport" } }, { "key": "1174", "attributes": { "latitude": 39.1754, "longitude": -76.668297, "fullName": "Baltimore/Washington International Thurgood Marshall Airport" } }, { "key": "910", "attributes": { "latitude": 35.035301208496094, "longitude": -85.20379638671875, "fullName": "Lovell Field" } }, { "key": "1179", "attributes": { "latitude": 38.13859939575195, "longitude": -78.4529037475586, "fullName": "Charlottesville Albemarle Airport" } }, { "key": "1181", "attributes": { "latitude": 41.884700775146484, "longitude": -91.71080017089844, "fullName": "The Eastern Iowa Airport" } }, { "key": "1197", "attributes": { "latitude": 39.861698150635, "longitude": -104.672996521, "fullName": "Denver International Airport" } }, { "key": "1286", "attributes": { "latitude": 35.39310073852539, "longitude": -97.60070037841797, "fullName": "Will Rogers World Airport" } }, { "key": "1294", "attributes": { "latitude": 33.43429946899414, "longitude": -112.01200103759766, "fullName": "Phoenix Sky Harbor International Airport" } }, { "key": "1255", "attributes": { "latitude": 34.729400634799994, "longitude": -92.2242965698, "fullName": "Bill & Hillary Clinton National Airport/Adams Field" } }, { "key": "1201", "attributes": { "latitude": 31.80719948, "longitude": -106.3779984, "fullName": "El Paso International Airport" } }, { "key": "1331", "attributes": { "latitude": 38.69540023803711, "longitude": -121.59100341796875, "fullName": "Sacramento International Airport" } }, { "key": "405", "attributes": { "latitude": 29.533700942993164, "longitude": -98.46980285644531, "fullName": "San Antonio International Airport" } }, { "key": "921", "attributes": { "latitude": 40.77719879, "longitude": -73.87259674, "fullName": "La Guardia Airport" } }, { "key": "1417", "attributes": { "latitude": 52.170799255371094, "longitude": -106.69999694824219, "fullName": "Saskatoon John G. Diefenbaker International Airport" } }, { "key": "3142", "attributes": { "latitude": 38.950901031499995, "longitude": -95.66359710690001, "fullName": "Topeka Regional Airport - Forbes Field" } }, { "key": "3137", "attributes": { "latitude": 47.168399810791016, "longitude": -88.48909759521484, "fullName": "Houghton County Memorial Airport" } }, { "key": "1153", "attributes": { "latitude": 35.43619918823242, "longitude": -82.54180145263672, "fullName": "Asheville Regional Airport" } }, { "key": "205", "attributes": { "latitude": 30.49410057067871, "longitude": -81.68789672851562, "fullName": "Jacksonville International Airport" } }, { "key": "257", "attributes": { "latitude": 18.041000366200002, "longitude": -63.1088981628, "fullName": "Princess Juliana International Airport" } }, { "key": "1138", "attributes": { "latitude": 40.652099609375, "longitude": -75.44080352783203, "fullName": "Lehigh Valley International Airport" } }, { "key": "1315", "attributes": { "latitude": 32.7336006165, "longitude": -117.190002441, "fullName": "San Diego International Airport" } }, { "key": "1182", "attributes": { "latitude": 41.4117012024, "longitude": -81.8498001099, "fullName": "Cleveland Hopkins International Airport" } }, { "key": "1196", "attributes": { "latitude": 38.8521, "longitude": -77.037697, "fullName": "Ronald Reagan Washington National Airport" } }, { "key": "1307", "attributes": { "latitude": 37.50519943237305, "longitude": -77.3197021484375, "fullName": "Richmond International Airport" } }, { "key": "1296", "attributes": { "latitude": 40.49150085, "longitude": -80.23290253, "fullName": "Pittsburgh International Airport" } }, { "key": "1279", "attributes": { "latitude": 33.6796989441, "longitude": -78.9282989502, "fullName": "Myrtle Beach International Airport" } }, { "key": "1295", "attributes": { "latitude": 40.664199829100006, "longitude": -89.6932983398, "fullName": "General Wayne A. Downing Peoria International Airport" } }, { "key": "1211", "attributes": { "latitude": 43.582000732400004, "longitude": -96.741897583, "fullName": "Joe Foss Field Airport" } }, { "key": "933", "attributes": { "latitude": 42.74829864501953, "longitude": -73.80169677734375, "fullName": "Albany International Airport" } }, { "key": "399", "attributes": { "latitude": 25.7784996033, "longitude": -100.107002258, "fullName": "General Mariano Escobedo International Airport" } }, { "key": "1407", "attributes": { "latitude": 50.43190002441406, "longitude": -104.66600036621094, "fullName": "Regina International Airport" } }, { "key": "1194", "attributes": { "latitude": 39.902400970458984, "longitude": -84.21939849853516, "fullName": "James M Cox Dayton International Airport" } }, { "key": "1267", "attributes": { "latitude": 39.14099884033203, "longitude": -96.6707992553711, "fullName": "Manhattan Regional Airport" } }, { "key": "930", "attributes": { "latitude": 35.81100082, "longitude": -83.9940033, "fullName": "McGhee Tyson Airport" } }, { "key": "3156", "attributes": { "latitude": 37.06079864501953, "longitude": -88.7738037109375, "fullName": "Barkley Regional Airport" } }, { "key": "1276", "attributes": { "latitude": 46.353599548300004, "longitude": -87.395401001, "fullName": "Sawyer International Airport" } }, { "key": "1291", "attributes": { "latitude": 45.58869934, "longitude": -122.5979996, "fullName": "Portland International Airport" } }, { "key": "1199", "attributes": { "latitude": 41.534000396728516, "longitude": -93.66310119628906, "fullName": "Des Moines International Airport" } }, { "key": "1225", "attributes": { "latitude": 42.88079834, "longitude": -85.52279663, "fullName": "Gerald R. Ford International Airport" } }, { "key": "1185", "attributes": { "latitude": 40.03919983, "longitude": -88.27809906, "fullName": "University of Illinois Willard Airport" } }, { "key": "1176", "attributes": { "latitude": 40.916099548339844, "longitude": -81.44219970703125, "fullName": "Akron Canton Regional Airport" } }, { "key": "2043", "attributes": { "latitude": 40.85100173950195, "longitude": -96.75920104980469, "fullName": "Lincoln Airport" } }, { "key": "1205", "attributes": { "latitude": 46.92070007324219, "longitude": -96.81580352783203, "fullName": "Hector International Airport" } }, { "key": "923", "attributes": { "latitude": 40.1935005188, "longitude": -76.7633972168, "fullName": "Harrisburg International Airport" } }, { "key": "3139", "attributes": { "latitude": 44.86579895019531, "longitude": -91.48429870605469, "fullName": "Chippewa Valley Regional Airport" } }, { "key": "1343", "attributes": { "latitude": 32.1161003112793, "longitude": -110.94100189208984, "fullName": "Tucson International Airport" } }, { "key": "926", "attributes": { "latitude": 29.99340057373047, "longitude": -90.25800323486328, "fullName": "Louis Armstrong New Orleans International Airport" } }, { "key": "1241", "attributes": { "latitude": 32.3111991882, "longitude": -90.0758972168, "fullName": "Jackson-Medgar Wiley Evers International Airport" } }, { "key": "1228", "attributes": { "latitude": 29.64539909, "longitude": -95.27890015, "fullName": "William P Hobby Airport" } }, { "key": "956", "attributes": { "latitude": 37.74010086, "longitude": -87.16680145, "fullName": "Owensboro Daviess County Airport" } }, { "key": "953", "attributes": { "latitude": 37.75500107, "longitude": -89.01110077, "fullName": "Williamson County Regional Airport" } }, { "key": "939", "attributes": { "latitude": 37.22529983520508, "longitude": -89.57080078125, "fullName": "Cape Girardeau Regional Airport" } }, { "key": "1552", "attributes": { "latitude": 41.785999, "longitude": -87.752403, "fullName": "Chicago Midway International Airport" } }, { "key": "966", "attributes": { "latitude": 39.94269943, "longitude": -91.19460297, "fullName": "Quincy Regional Baldwin Field" } }, { "key": "948", "attributes": { "latitude": 40.09349822998047, "longitude": -92.5448989868164, "fullName": "Kirksville Regional Airport" } }, { "key": "1532", "attributes": { "latitude": 30.357106, "longitude": -85.795414, "fullName": "Northwest Florida Beaches International Airport" } }, { "key": "965", "attributes": { "latitude": 37.74160004, "longitude": -92.14070129, "fullName": "Waynesville-St. Robert Regional Forney field" } }, { "key": "1526", "attributes": { "latitude": 32.847099, "longitude": -96.851799, "fullName": "Dallas Love Field" } }, { "key": "128", "attributes": { "latitude": 55.35559845, "longitude": -131.7140045, "fullName": "Ketchikan International Airport" } }, { "key": "1243", "attributes": { "latitude": 58.35499954223633, "longitude": -134.5760040283203, "fullName": "Juneau International Airport" } }, { "key": "2593", "attributes": { "latitude": 55.206298828125, "longitude": -132.8280029296875, "fullName": "Hydaburg Seaplane Base" } }, { "key": "2462", "attributes": { "latitude": 55.579200744599994, "longitude": -133.076004028, "fullName": "Klawock Airport" } }, { "key": "1700", "attributes": { "latitude": 56.48429871, "longitude": -132.3699951, "fullName": "Wrangell Airport" } }, { "key": "1697", "attributes": { "latitude": 57.04710006713867, "longitude": -135.36199951171875, "fullName": "Sitka Rocky Gutierrez Airport" } }, { "key": "129", "attributes": { "latitude": 55.131001, "longitude": -131.578003, "fullName": "Metlakatla Seaplane Base" } }, { "key": "227", "attributes": { "latitude": 33.9272994995, "longitude": -4.977960109709999, "fullName": "Saïss Airport" } }, { "key": "499", "attributes": { "latitude": 36.744598388671875, "longitude": -6.060110092163086, "fullName": "Jerez Airport" } }, { "key": "3183", "attributes": { "latitude": 38.891300201416016, "longitude": -6.8213300704956055, "fullName": "Badajoz Airport" } }, { "key": "439", "attributes": { "latitude": 41.138901, "longitude": 16.760599, "fullName": "Bari Karol Wojtyła Airport" } }, { "key": "2262", "attributes": { "latitude": 58.78860092163086, "longitude": 16.912200927734375, "fullName": "Stockholm Skavsta Airport" } }, { "key": "1253", "attributes": { "latitude": 31.5216007232666, "longitude": 74.40360260009766, "fullName": "Alama Iqbal International Airport" } }, { "key": "2466", "attributes": { "latitude": 43.35649871826172, "longitude": -1.7906099557876587, "fullName": "San Sebastian Airport" } }, { "key": "1766", "attributes": { "latitude": 43.302101, "longitude": -8.37726, "fullName": "A Coruña Airport" } }, { "key": "2095", "attributes": { "latitude": 59.378817, "longitude": 10.785439, "fullName": "Moss Airport, Rygge" } }, { "key": "1778", "attributes": { "latitude": 45.809898376464844, "longitude": 21.337900161743164, "fullName": "Timişoara Traian Vuia Airport" } }, { "key": "1760", "attributes": { "latitude": 46.78519821166992, "longitude": 23.686199188232422, "fullName": "Cluj-Napoca International Airport" } }, { "key": "234", "attributes": { "latitude": 35.726898193400004, "longitude": -5.91689014435, "fullName": "Ibn Batouta Airport" } }, { "key": "1592", "attributes": { "latitude": 35.6239013672, "longitude": -0.6211829781529999, "fullName": "Es Senia Airport" } }, { "key": "2274", "attributes": { "latitude": 41.7061004639, "longitude": -4.85194015503, "fullName": "Valladolid Airport" } }, { "key": "1364", "attributes": { "latitude": 36.84389877319336, "longitude": -2.3701000213623047, "fullName": "Almería International Airport" } }, { "key": "2471", "attributes": { "latitude": 42.357601, "longitude": -3.62076, "fullName": "Burgos Airport" } }, { "key": "2468", "attributes": { "latitude": 42.5890007019043, "longitude": -5.65556001663208, "fullName": "Leon Airport" } }, { "key": "2473", "attributes": { "latitude": 40.95209884643555, "longitude": -5.501989841461182, "fullName": "Salamanca Airport" } }, { "key": "230", "attributes": { "latitude": 34.988800048799995, "longitude": -3.0282099247, "fullName": "Nador International Airport" } }, { "key": "1810", "attributes": { "latitude": 37.18870162963867, "longitude": -3.777359962463379, "fullName": "Federico Garcia Lorca Airport" } }, { "key": "1312", "attributes": { "latitude": 51.956902, "longitude": 4.43722, "fullName": "Rotterdam The Hague Airport" } }, { "key": "3084", "attributes": { "latitude": 46.914100647, "longitude": 7.497149944309999, "fullName": "Bern Belp Airport" } }, { "key": "448", "attributes": { "latitude": 51.51829910279999, "longitude": 7.61223983765, "fullName": "Dortmund Airport" } }, { "key": "1557", "attributes": { "latitude": 3.722559928894043, "longitude": 11.553299903869629, "fullName": "Yaoundé Nsimalen International Airport" } }, { "key": "1384", "attributes": { "latitude": -4.38575, "longitude": 15.4446, "fullName": "Ndjili International Airport" } }, { "key": "1521", "attributes": { "latitude": 4.39847993850708, "longitude": 18.518800735473633, "fullName": "Bangui M'Poko International Airport" } }, { "key": "2950", "attributes": { "latitude": 9.33588981628418, "longitude": 13.370100021362305, "fullName": "Garoua International Airport" } }, { "key": "2951", "attributes": { "latitude": 10.451399803161621, "longitude": 14.257399559020996, "fullName": "Salak Airport" } }, { "key": "1093", "attributes": { "latitude": 41.4146995544, "longitude": 19.7206001282, "fullName": "Tirana International Airport Mother Teresa" } }, { "key": "1811", "attributes": { "latitude": 54.08330154418945, "longitude": -4.623889923095703, "fullName": "Isle of Man Airport" } }, { "key": "248", "attributes": { "latitude": 17.1367, "longitude": -61.792702, "fullName": "V.C. Bird International Airport" } }, { "key": "1155", "attributes": { "latitude": 32.36399841308594, "longitude": -64.67870330810547, "fullName": "L.F. Wade International International Airport" } }, { "key": "780", "attributes": { "latitude": 17.935699462890625, "longitude": -76.7874984741211, "fullName": "Norman Manley International Airport" } }, { "key": "461", "attributes": { "latitude": 36.399200439453125, "longitude": 25.479299545288086, "fullName": "Santorini Airport" } }, { "key": "1071", "attributes": { "latitude": 38.12009811401367, "longitude": 20.500499725341797, "fullName": "Kefallinia Airport" } }, { "key": "1553", "attributes": { "latitude": -20.430201, "longitude": 57.683601, "fullName": "Sir Seewoosagur Ramgoolam International Airport" } }, { "key": "475", "attributes": { "latitude": 50.44060134887695, "longitude": -4.995409965515137, "fullName": "Newquay Cornwall Airport" } }, { "key": "2450", "attributes": { "latitude": 16.7414, "longitude": -22.9494, "fullName": "Amílcar Cabral International Airport" } }, { "key": "2644", "attributes": { "latitude": 16.136499404907227, "longitude": -22.888900756835938, "fullName": "Rabil Airport" } }, { "key": "229", "attributes": { "latitude": 43.57619857788086, "longitude": 3.96301007270813, "fullName": "Montpellier-Méditerranée Airport" } }, { "key": "1371", "attributes": { "latitude": 38.925498962402344, "longitude": 20.765300750732422, "fullName": "Aktion National Airport" } }, { "key": "785", "attributes": { "latitude": 10.595399856567383, "longitude": -61.33720016479492, "fullName": "Piarco International Airport" } }, { "key": "1094", "attributes": { "latitude": 37.7509, "longitude": 20.8843, "fullName": "Zakynthos International Airport \"Dionysios Solomos\"" } }, { "key": "1347", "attributes": { "latitude": 13.7332, "longitude": -60.952599, "fullName": "Hewanorra International Airport" } }, { "key": "1161", "attributes": { "latitude": 54.618099212646484, "longitude": -5.872499942779541, "fullName": "George Best Belfast City Airport" } }, { "key": "1361", "attributes": { "latitude": 47.260201, "longitude": 11.344, "fullName": "Innsbruck Airport" } }, { "key": "1370", "attributes": { "latitude": 37.7411994934, "longitude": -25.6979007721, "fullName": "João Paulo II Airport" } }, { "key": "1585", "attributes": { "latitude": 31.673000335699996, "longitude": 6.140439987180001, "fullName": "Oued Irara Airport" } }, { "key": "1217", "attributes": { "latitude": 36.1511993408, "longitude": -5.3496599197400005, "fullName": "Gibraltar Airport" } }, { "key": "1386", "attributes": { "latitude": -1.96863, "longitude": 30.1395, "fullName": "Kigali International Airport" } }, { "key": "3253", "attributes": { "latitude": 6.316979885101318, "longitude": 5.5995001792907715, "fullName": "Benin Airport" } }, { "key": "3259", "attributes": { "latitude": 10.696000099182129, "longitude": 7.320109844207764, "fullName": "Kaduna Airport" } }, { "key": "1558", "attributes": { "latitude": 5.0154900550842285, "longitude": 6.94959020614624, "fullName": "Port Harcourt International Airport" } }, { "key": "3252", "attributes": { "latitude": 6.204167, "longitude": 6.665278, "fullName": "Asaba International Airport" } }, { "key": "3261", "attributes": { "latitude": 5.59611, "longitude": 5.81778, "fullName": "Warri Airport" } }, { "key": "2696", "attributes": { "latitude": 12.0476, "longitude": 8.52462, "fullName": "Mallam Aminu International Airport" } }, { "key": "3262", "attributes": { "latitude": 4.8725, "longitude": 8.093, "fullName": "Akwa Ibom International Airport" } }, { "key": "3254", "attributes": { "latitude": 4.976019859313965, "longitude": 8.347200393676758, "fullName": "Margaret Ekpo International Airport" } }, { "key": "3258", "attributes": { "latitude": 9.639829635620117, "longitude": 8.869050025939941, "fullName": "Yakubu Gowon Airport" } }, { "key": "2169", "attributes": { "latitude": 6.474269866943359, "longitude": 7.561960220336914, "fullName": "Akanu Ibiam International Airport" } }, { "key": "3260", "attributes": { "latitude": 5.427060127258301, "longitude": 7.206029891967773, "fullName": "Sam Mbakwe International Airport" } }, { "key": "139", "attributes": { "latitude": 60.818599700927734, "longitude": -78.14859771728516, "fullName": "Akulivik Airport" } }, { "key": "148", "attributes": { "latitude": 60.05059814453125, "longitude": -77.28690338134766, "fullName": "Puvirnituq Airport" } }, { "key": "143", "attributes": { "latitude": 62.417301177978516, "longitude": -77.92530059814453, "fullName": "Ivujivik Airport" } }, { "key": "140", "attributes": { "latitude": 58.71139907836914, "longitude": -65.9927978515625, "fullName": "Kangiqsualujjuaq (Georges River) Airport" } }, { "key": "156", "attributes": { "latitude": 58.096099853515625, "longitude": -68.4269027709961, "fullName": "Kuujjuaq Airport" } }, { "key": "141", "attributes": { "latitude": 53.625301361083984, "longitude": -77.7042007446289, "fullName": "La Grande Rivière Airport" } }, { "key": "142", "attributes": { "latitude": 55.281898498535156, "longitude": -77.76529693603516, "fullName": "Kuujjuarapik Airport" } }, { "key": "155", "attributes": { "latitude": 48.20610046386719, "longitude": -78.83560180664062, "fullName": "Rouyn Noranda Airport" } }, { "key": "3356", "attributes": { "latitude": 53.805599212646484, "longitude": -78.91690063476562, "fullName": "Chisasibi Airport" } }, { "key": "151", "attributes": { "latitude": 56.5377998352, "longitude": -79.2466964722, "fullName": "Sanikiluaq Airport" } }, { "key": "146", "attributes": { "latitude": 58.471900939941406, "longitude": -78.07689666748047, "fullName": "Inukjuak Airport" } }, { "key": "153", "attributes": { "latitude": 56.53609848022461, "longitude": -76.51830291748047, "fullName": "Umiujaq Airport" } }, { "key": "159", "attributes": { "latitude": 62.17940139770508, "longitude": -75.66719818115234, "fullName": "Salluit Airport" } }, { "key": "144", "attributes": { "latitude": 60.027198791503906, "longitude": -69.99919891357422, "fullName": "Kangirsuk Airport" } }, { "key": "147", "attributes": { "latitude": 59.29669952392578, "longitude": -69.59970092773438, "fullName": "Aupaluk Airport" } }, { "key": "150", "attributes": { "latitude": 61.0463981628418, "longitude": -69.6177978515625, "fullName": "Quaqtaq Airport" } }, { "key": "145", "attributes": { "latitude": 54.805301666259766, "longitude": -66.8052978515625, "fullName": "Schefferville Airport" } }, { "key": "160", "attributes": { "latitude": 50.22330093383789, "longitude": -66.2656021118164, "fullName": "Sept-Îles Airport" } }, { "key": "158", "attributes": { "latitude": 52.92190170288086, "longitude": -66.8644027709961, "fullName": "Wabush Airport" } }, { "key": "152", "attributes": { "latitude": 58.66780090332031, "longitude": -69.95580291748047, "fullName": "Tasiujaq Airport" } }, { "key": "2844", "attributes": { "latitude": 45.5175018311, "longitude": -73.4169006348, "fullName": "Montréal / Saint-Hubert Airport" } }, { "key": "2845", "attributes": { "latitude": 48.07109832763672, "longitude": -65.46029663085938, "fullName": "Bonaventure Airport" } }, { "key": "1400", "attributes": { "latitude": 47.42470169067383, "longitude": -61.778099060058594, "fullName": "Îles-de-la-Madeleine Airport" } }, { "key": "1415", "attributes": { "latitude": 43.627499, "longitude": -79.396202, "fullName": "Billy Bishop Toronto City Centre Airport" } }, { "key": "1392", "attributes": { "latitude": 49.13249969482422, "longitude": -68.20439910888672, "fullName": "Baie Comeau Airport" } }, { "key": "1425", "attributes": { "latitude": 48.60860061645508, "longitude": -68.20809936523438, "fullName": "Mont Joli Airport" } }, { "key": "1399", "attributes": { "latitude": 48.7752990723, "longitude": -64.4785995483, "fullName": "Gaspé (Michel-Pouliot) Airport" } }, { "key": "157", "attributes": { "latitude": 61.5886001587, "longitude": -71.929397583, "fullName": "Kangiqsujuaq (Wakeham Bay) Airport" } }, { "key": "1298", "attributes": { "latitude": 19.75790023803711, "longitude": -70.56999969482422, "fullName": "Gregorio Luperon International Airport" } }, { "key": "1424", "attributes": { "latitude": 47.618598938, "longitude": -52.7518997192, "fullName": "St. John's International Airport" } }, { "key": "1429", "attributes": { "latitude": 24.06329917907715, "longitude": -74.52400207519531, "fullName": "San Salvador Airport" } }, { "key": "1428", "attributes": { "latitude": 47.629699707, "longitude": -65.738899231, "fullName": "Bathurst Airport" } }, { "key": "1388", "attributes": { "latitude": 22.49220085144043, "longitude": -79.943603515625, "fullName": "Abel Santamaria Airport" } }, { "key": "1890", "attributes": { "latitude": 21.6165008545, "longitude": -81.5459976196, "fullName": "Vilo Acuña International Airport" } }, { "key": "251", "attributes": { "latitude": 14.590999603271484, "longitude": -61.00320053100586, "fullName": "Martinique Aimé Césaire International Airport" } }, { "key": "1381", "attributes": { "latitude": 19.2670001984, "longitude": -69.7419967651, "fullName": "Samaná El Catey International Airport" } }, { "key": "1406", "attributes": { "latitude": 46.11220169067383, "longitude": -64.67859649658203, "fullName": "Greater Moncton International Airport" } }, { "key": "1416", "attributes": { "latitude": 48.0532989502, "longitude": -77.7827987671, "fullName": "Val-d'Or Airport" } }, { "key": "2880", "attributes": { "latitude": 46.762901306152344, "longitude": -56.173099517822266, "fullName": "St Pierre Airport" } }, { "key": "783", "attributes": { "latitude": 18.579999923706055, "longitude": -72.2925033569336, "fullName": "Toussaint Louverture International Airport" } }, { "key": "1393", "attributes": { "latitude": 48.33060073852539, "longitude": -70.99639892578125, "fullName": "CFB Bagotville" } }, { "key": "1383", "attributes": { "latitude": 22.461000442499998, "longitude": -78.32839965820001, "fullName": "Jardines Del Rey Airport" } }, { "key": "252", "attributes": { "latitude": 16.265301, "longitude": -61.531799, "fullName": "Pointe-à-Pitre Le Raizet" } }, { "key": "1413", "attributes": { "latitude": 45.31610107421875, "longitude": -65.89029693603516, "fullName": "Saint John Airport" } }, { "key": "1422", "attributes": { "latitude": 46.290000915527344, "longitude": -63.12110137939453, "fullName": "Charlottetown Airport" } }, { "key": "1963", "attributes": { "latitude": 21.420299530029297, "longitude": -77.84750366210938, "fullName": "Ignacio Agramonte International Airport" } }, { "key": "3358", "attributes": { "latitude": 49.77190017700195, "longitude": -74.5280990600586, "fullName": "Chapais Airport" } }, { "key": "389", "attributes": { "latitude": 20.52239990234375, "longitude": -86.92559814453125, "fullName": "Cozumel International Airport" } }, { "key": "1385", "attributes": { "latitude": 20.785600662231445, "longitude": -76.31510162353516, "fullName": "Frank Pais International Airport" } }, { "key": "1397", "attributes": { "latitude": 45.868900299072266, "longitude": -66.53720092773438, "fullName": "Fredericton Airport" } }, { "key": "615", "attributes": { "latitude": 63.756402, "longitude": -68.555801, "fullName": "Iqaluit Airport" } }, { "key": "1423", "attributes": { "latitude": 53.3191986084, "longitude": -60.4258003235, "fullName": "Goose Bay Airport" } }, { "key": "2855", "attributes": { "latitude": 53.5619010925293, "longitude": -64.10639953613281, "fullName": "Churchill Falls Airport" } }, { "key": "2848", "attributes": { "latitude": 47.990799, "longitude": -66.330299, "fullName": "Charlo Airport" } }, { "key": "2946", "attributes": { "latitude": 50.189998626708984, "longitude": -61.78919982910156, "fullName": "Natashquan Airport" } }, { "key": "2843", "attributes": { "latitude": 50.281898498535156, "longitude": -63.61140060424805, "fullName": "Havre St Pierre Airport" } }, { "key": "2947", "attributes": { "latitude": 49.83639907836914, "longitude": -64.2885971069336, "fullName": "Port Menier Airport" } }, { "key": "2948", "attributes": { "latitude": 50.259701, "longitude": -60.679401, "fullName": "La Romaine Airport" } }, { "key": "161", "attributes": { "latitude": 11.547300338745117, "longitude": 43.15950012207031, "fullName": "Djibouti-Ambouli Airport" } }, { "key": "162", "attributes": { "latitude": 2.0144400596618652, "longitude": 45.3046989440918, "fullName": "Aden Adde International Airport" } }, { "key": "1538", "attributes": { "latitude": -11.5337, "longitude": 43.2719, "fullName": "Prince Said Ibrahim International Airport" } }, { "key": "2239", "attributes": { "latitude": 13.6859998703, "longitude": 44.139099121099996, "fullName": "Ta'izz International Airport" } }, { "key": "2168", "attributes": { "latitude": 9.624699592590332, "longitude": 41.85419845581055, "fullName": "Aba Tenna Dejazmach Yilma International Airport" } }, { "key": "2118", "attributes": { "latitude": 15.476300239562988, "longitude": 44.21969985961914, "fullName": "Sana'a International Airport" } }, { "key": "1782", "attributes": { "latitude": 9.518170356750488, "longitude": 44.08879852294922, "fullName": "Egal International Airport" } }, { "key": "2581", "attributes": { "latitude": 6.78082990646, "longitude": 47.45470047, "fullName": "Galcaio Airport" } }, { "key": "1788", "attributes": { "latitude": 1.73324, "longitude": 40.091599, "fullName": "Wajir Airport" } }, { "key": "2579", "attributes": { "latitude": 10.389200210571289, "longitude": 44.94110107421875, "fullName": "Berbera Airport" } }, { "key": "1133", "attributes": { "latitude": 0.042386, "longitude": 32.443501, "fullName": "Entebbe International Airport" } }, { "key": "2625", "attributes": { "latitude": -2.4444899559020996, "longitude": 32.932701110839844, "fullName": "Mwanza Airport" } }, { "key": "2167", "attributes": { "latitude": -15.679100036621094, "longitude": 34.9739990234375, "fullName": "Chileka International Airport" } }, { "key": "1551", "attributes": { "latitude": -17.821800231933594, "longitude": 25.82270050048828, "fullName": "Livingstone Airport" } }, { "key": "555", "attributes": { "latitude": 0.4044579863548279, "longitude": 35.23889923095703, "fullName": "Eldoret International Airport" } }, { "key": "2624", "attributes": { "latitude": -15.105600357055664, "longitude": 39.28179931640625, "fullName": "Nampula Airport" } }, { "key": "1541", "attributes": { "latitude": -3.42940998077, "longitude": 37.0745010376, "fullName": "Kilimanjaro International Airport" } }, { "key": "1772", "attributes": { "latitude": -4.67434, "longitude": 55.521801, "fullName": "Seychelles International Airport" } }, { "key": "559", "attributes": { "latitude": 3.1219699382781982, "longitude": 35.608699798583984, "fullName": "Lodwar Airport" } }, { "key": "1527", "attributes": { "latitude": -6.87811, "longitude": 39.202599, "fullName": "Julius Nyerere International Airport" } }, { "key": "2511", "attributes": { "latitude": 15.291899681091309, "longitude": 38.910701751708984, "fullName": "Asmara International Airport" } }, { "key": "1539", "attributes": { "latitude": -17.931801, "longitude": 31.0928, "fullName": "Robert Gabriel Mugabe International Airport" } }, { "key": "1567", "attributes": { "latitude": -18.7969, "longitude": 47.478802, "fullName": "Ivato Airport" } }, { "key": "556", "attributes": { "latitude": 4.87201023102, "longitude": 31.6011009216, "fullName": "Juba International Airport" } }, { "key": "1382", "attributes": { "latitude": -3.3240199089050293, "longitude": 29.318500518798828, "fullName": "Bujumbura International Airport" } }, { "key": "1550", "attributes": { "latitude": -15.3308000565, "longitude": 28.4526004791, "fullName": "Kenneth Kaunda International Airport Lusaka" } }, { "key": "1548", "attributes": { "latitude": -13.7894001007, "longitude": 33.78099823, "fullName": "Lilongwe International Airport" } }, { "key": "2626", "attributes": { "latitude": -12.991762161254883, "longitude": 40.52401351928711, "fullName": "Pemba Airport" } }, { "key": "560", "attributes": { "latitude": -4.034830093383789, "longitude": 39.594200134277344, "fullName": "Mombasa Moi International Airport" } }, { "key": "1866", "attributes": { "latitude": -24.555201, "longitude": 25.9182, "fullName": "Sir Seretse Khama International Airport" } }, { "key": "2177", "attributes": { "latitude": -25.920799, "longitude": 32.572601, "fullName": "Maputo Airport" } }, { "key": "562", "attributes": { "latitude": -6.22202, "longitude": 39.224899, "fullName": "Abeid Amani Karume International Airport" } }, { "key": "1530", "attributes": { "latitude": -12.804699897766113, "longitude": 45.28110122680664, "fullName": "Dzaoudzi Pamandzi International Airport" } }, { "key": "1878", "attributes": { "latitude": -11.5913000107, "longitude": 27.5308990479, "fullName": "Lubumbashi International Airport" } }, { "key": "561", "attributes": { "latitude": -3.2293100357055664, "longitude": 40.10169982910156, "fullName": "Malindi Airport" } }, { "key": "557", "attributes": { "latitude": -0.0861390009522438, "longitude": 34.72890090942383, "fullName": "Kisumu Airport" } }, { "key": "1995", "attributes": { "latitude": -12.998100280762, "longitude": 28.66489982605, "fullName": "Simon Mwansa Kapwepwe International Airport" } }, { "key": "1622", "attributes": { "latitude": 6.93320989609, "longitude": 100.392997742, "fullName": "Hat Yai International Airport" } }, { "key": "1191", "attributes": { "latitude": 42.77519989013672, "longitude": 141.69200134277344, "fullName": "New Chitose Airport" } }, { "key": "1641", "attributes": { "latitude": 9.13259983063, "longitude": 99.135597229, "fullName": "Surat Thani Airport" } }, { "key": "262", "attributes": { "latitude": 29.719200134277344, "longitude": 106.64199829101562, "fullName": "Chongqing Jiangbei International Airport" } }, { "key": "299", "attributes": { "latitude": 29.82670021057129, "longitude": 121.46199798583984, "fullName": "Ningbo Lishe International Airport" } }, { "key": "260", "attributes": { "latitude": 34.519699096699995, "longitude": 113.841003418, "fullName": "Zhengzhou Xinzheng International Airport" } }, { "key": "179", "attributes": { "latitude": 23.552, "longitude": 116.5033, "fullName": "Jieyang Chaoshan International Airport" } }, { "key": "287", "attributes": { "latitude": 25.1019444, "longitude": 102.9291667, "fullName": "Kunming Changshui International Airport" } }, { "key": "264", "attributes": { "latitude": 30.578500747680664, "longitude": 103.9469985961914, "fullName": "Chengdu Shuangliu International Airport" } }, { "key": "2209", "attributes": { "latitude": 16.466600418099997, "longitude": 102.783996582, "fullName": "Khon Kaen Airport" } }, { "key": "172", "attributes": { "latitude": 5.297140121459961, "longitude": 100.2770004272461, "fullName": "Penang International Airport" } }, { "key": "2016", "attributes": { "latitude": 15.2512998581, "longitude": 104.870002747, "fullName": "Ubon Ratchathani Airport" } }, { "key": "354", "attributes": { "latitude": 22.654699325561523, "longitude": 88.44670104980469, "fullName": "Netaji Subhash Chandra Bose International Airport" } }, { "key": "263", "attributes": { "latitude": 28.189199447599997, "longitude": 113.220001221, "fullName": "Changsha Huanghua International Airport" } }, { "key": "2004", "attributes": { "latitude": 19.952299118, "longitude": 99.88289642330001, "fullName": "Chiang Rai International Airport" } }, { "key": "2722", "attributes": { "latitude": 19.623501, "longitude": 96.200996, "fullName": "Naypyidaw Airport" } }, { "key": "314", "attributes": { "latitude": 36.857200622558594, "longitude": 117.21600341796875, "fullName": "Yaoqiang Airport" } }, { "key": "1166", "attributes": { "latitude": -27.384199142456055, "longitude": 153.11700439453125, "fullName": "Brisbane International Airport" } }, { "key": "1763", "attributes": { "latitude": 24.9065, "longitude": 67.160797, "fullName": "Jinnah International Airport" } }, { "key": "176", "attributes": { "latitude": 16.907300949099998, "longitude": 96.1332015991, "fullName": "Yangon International Airport" } }, { "key": "655", "attributes": { "latitude": 26.68120002746582, "longitude": 88.32859802246094, "fullName": "Bagdogra Airport" } }, { "key": "1966", "attributes": { "latitude": 9.547789573669998, "longitude": 100.06199646, "fullName": "Samui Airport" } }, { "key": "1146", "attributes": { "latitude": -37.008098602299995, "longitude": 174.792007446, "fullName": "Auckland International Airport" } }, { "key": "357", "attributes": { "latitude": 23.843347, "longitude": 90.397783, "fullName": "Hazrat Shahjalal International Airport" } }, { "key": "661", "attributes": { "latitude": 12.990005493164062, "longitude": 80.16929626464844, "fullName": "Chennai International Airport" } }, { "key": "1549", "attributes": { "latitude": 19.897300720214844, "longitude": 102.16100311279297, "fullName": "Luang Phabang International Airport" } }, { "key": "301", "attributes": { "latitude": 22.608299255371094, "longitude": 108.1719970703125, "fullName": "Nanning Wuxu Airport" } }, { "key": "2987", "attributes": { "latitude": 16.55660057067871, "longitude": 104.76000213623047, "fullName": "Savannakhet Airport" } }, { "key": "1542", "attributes": { "latitude": 8.09912014008, "longitude": 98.9861984253, "fullName": "Krabi Airport" } }, { "key": "830", "attributes": { "latitude": 18.766799926799997, "longitude": 98.962600708, "fullName": "Chiang Mai International Airport" } }, { "key": "174", "attributes": { "latitude": 11.546600341796875, "longitude": 104.84400177001953, "fullName": "Phnom Penh International Airport" } }, { "key": "272", "attributes": { "latitude": 25.935100555419922, "longitude": 119.66300201416016, "fullName": "Fuzhou Changle International Airport" } }, { "key": "1642", "attributes": { "latitude": 17.988300323500003, "longitude": 102.56300354, "fullName": "Wattay International Airport" } }, { "key": "644", "attributes": { "latitude": 13.1979, "longitude": 77.706299, "fullName": "Kempegowda International Airport" } }, { "key": "2018", "attributes": { "latitude": 17.386400222800003, "longitude": 102.788002014, "fullName": "Udon Thani Airport" } }, { "key": "2870", "attributes": { "latitude": 18.27090072631836, "longitude": 99.50420379638672, "fullName": "Lampang Airport" } }, { "key": "2872", "attributes": { "latitude": 17.238000869750977, "longitude": 99.81819915771484, "fullName": "Sukhothai Airport" } }, { "key": "649", "attributes": { "latitude": 26.10610008239746, "longitude": 91.58589935302734, "fullName": "Lokpriya Gopinath Bordoloi International Airport" } }, { "key": "2871", "attributes": { "latitude": 12.274600029, "longitude": 102.319000244, "fullName": "Trat Airport" } }, { "key": "1926", "attributes": { "latitude": 47.843102, "longitude": 106.766998, "fullName": "Chinggis Khaan International Airport" } }, { "key": "313", "attributes": { "latitude": 36.2661018372, "longitude": 120.374000549, "fullName": "Liuting Airport" } }, { "key": "173", "attributes": { "latitude": -31.94029998779297, "longitude": 115.96700286865234, "fullName": "Perth International Airport" } }, { "key": "651", "attributes": { "latitude": 17.2313175201, "longitude": 78.4298553467, "fullName": "Rajiv Gandhi International Airport" } }, { "key": "312", "attributes": { "latitude": 22.639299392700195, "longitude": 113.81099700927734, "fullName": "Shenzhen Bao'an International Airport" } }, { "key": "687", "attributes": { "latitude": 21.702199935913086, "longitude": 95.97789764404297, "fullName": "Mandalay International Airport" } }, { "key": "322", "attributes": { "latitude": 30.7838, "longitude": 114.208, "fullName": "Wuhan Tianhe International Airport" } }, { "key": "1143", "attributes": { "latitude": -34.945, "longitude": 138.531006, "fullName": "Adelaide International Airport" } }, { "key": "2958", "attributes": { "latitude": -17.944700241088867, "longitude": 122.23200225830078, "fullName": "Broome International Airport" } }, { "key": "1341", "attributes": { "latitude": -19.252500534057617, "longitude": 146.76499938964844, "fullName": "Townsville Airport" } }, { "key": "2710", "attributes": { "latitude": -8.54640007019, "longitude": 125.526000977, "fullName": "Presidente Nicolau Lobato International Airport" } }, { "key": "1151", "attributes": { "latitude": -23.806699752807617, "longitude": 133.90199279785156, "fullName": "Alice Springs Airport" } }, { "key": "1843", "attributes": { "latitude": -13.975000381500001, "longitude": 136.460006714, "fullName": "Groote Eylandt Airport" } }, { "key": "1187", "attributes": { "latitude": -16.885799408, "longitude": 145.755004883, "fullName": "Cairns International Airport" } }, { "key": "2964", "attributes": { "latitude": -12.269399642899998, "longitude": 136.817993164, "fullName": "Gove Airport" } }, { "key": "3109", "attributes": { "latitude": -12.0560998917, "longitude": 134.23399353, "fullName": "Maningrida Airport" } }, { "key": "2805", "attributes": { "latitude": -15.7781000137, "longitude": 128.707992554, "fullName": "Kununurra Airport" } }, { "key": "2934", "attributes": { "latitude": -20.663900375399997, "longitude": 139.488998413, "fullName": "Mount Isa Airport" } }, { "key": "3107", "attributes": { "latitude": -16.4424991608, "longitude": 136.083999634, "fullName": "McArthur River Mine Airport" } }, { "key": "166", "attributes": { "latitude": 19.934900283813477, "longitude": 110.45899963378906, "fullName": "Haikou Meilan International Airport" } }, { "key": "300", "attributes": { "latitude": 31.742000579833984, "longitude": 118.86199951171875, "fullName": "Nanjing Lukou Airport" } }, { "key": "1971", "attributes": { "latitude": 30.582199, "longitude": 117.050003, "fullName": "Anqing Tianzhushan Airport" } }, { "key": "334", "attributes": { "latitude": 21.214399, "longitude": 110.358002, "fullName": "Zhanjiang Airport" } }, { "key": "316", "attributes": { "latitude": 39.124401092499994, "longitude": 117.346000671, "fullName": "Tianjin Binhai International Airport" } }, { "key": "167", "attributes": { "latitude": 30.22949981689453, "longitude": 120.43399810791016, "fullName": "Hangzhou Xiaoshan International Airport" } }, { "key": "289", "attributes": { "latitude": 26.53849983215332, "longitude": 106.8010025024414, "fullName": "Longdongbao Airport" } }, { "key": "1919", "attributes": { "latitude": 28.85219955444336, "longitude": 105.39299774169922, "fullName": "Luzhou Airport" } }, { "key": "258", "attributes": { "latitude": 21.5394, "longitude": 109.293999, "fullName": "Beihai Airport" } }, { "key": "1872", "attributes": { "latitude": 29.733299255371094, "longitude": 118.25599670410156, "fullName": "Tunxi International Airport" } }, { "key": "286", "attributes": { "latitude": 28.864999771118164, "longitude": 115.9000015258789, "fullName": "Nanchang Changbei International Airport" } }, { "key": "318", "attributes": { "latitude": 37.74689865112305, "longitude": 112.62799835205078, "fullName": "Taiyuan Wusu Airport" } }, { "key": "326", "attributes": { "latitude": 34.447102, "longitude": 108.751999, "fullName": "Xi'an Xianyang International Airport" } }, { "key": "1898", "attributes": { "latitude": 36.247501, "longitude": 113.125999, "fullName": "Changzhi Airport" } }, { "key": "336", "attributes": { "latitude": 22.006399, "longitude": 113.375999, "fullName": "Zhuhai Jinwan Airport" } }, { "key": "290", "attributes": { "latitude": 25.21809959411621, "longitude": 110.03900146484375, "fullName": "Guilin Liangjiang International Airport" } }, { "key": "901", "attributes": { "latitude": 28.9188995361, "longitude": 111.63999939, "fullName": "Changde Airport" } }, { "key": "321", "attributes": { "latitude": 27.912201, "longitude": 120.851997, "fullName": "Wenzhou Longwan International Airport" } }, { "key": "839", "attributes": { "latitude": 31.197900772094727, "longitude": 121.33599853515625, "fullName": "Shanghai Hongqiao International Airport" } }, { "key": "276", "attributes": { "latitude": 31.780000686645508, "longitude": 117.2979965209961, "fullName": "Hefei Luogang International Airport" } }, { "key": "908", "attributes": { "latitude": 27.5895, "longitude": 107.0007, "fullName": "Zunyi Xinzhou Airport" } }, { "key": "1903", "attributes": { "latitude": 32.882157, "longitude": 115.734364, "fullName": "Fuyang Xiguan Airport" } }, { "key": "1513", "attributes": { "latitude": 24.264699935913086, "longitude": 120.62100219726562, "fullName": "Taichung Ching Chuang Kang Airport" } }, { "key": "292", "attributes": { "latitude": 26.6800003052, "longitude": 100.246002197, "fullName": "Lijiang Airport" } }, { "key": "295", "attributes": { "latitude": 35.04610061645508, "longitude": 118.41200256347656, "fullName": "Shubuling Airport" } }, { "key": "1925", "attributes": { "latitude": 43.556702, "longitude": 122.199997, "fullName": "Tongliao Airport" } }, { "key": "1621", "attributes": { "latitude": 13.9125995636, "longitude": 100.607002258, "fullName": "Don Mueang International Airport" } }, { "key": "261", "attributes": { "latitude": 43.9962005615, "longitude": 125.684997559, "fullName": "Longjia Airport" } }, { "key": "1987", "attributes": { "latitude": 32.980801, "longitude": 112.614998, "fullName": "Nanyang Jiangying Airport" } }, { "key": "696", "attributes": { "latitude": 36.717008, "longitude": 127.498741, "fullName": "Cheongju International Airport/Cheongju Air Base (K-59/G-513)" } }, { "key": "1929", "attributes": { "latitude": 32.1506, "longitude": 112.291, "fullName": "Xiangyang Liuji Airport" } }, { "key": "1915", "attributes": { "latitude": 41.10139846801758, "longitude": 121.06199645996094, "fullName": "Jinzhou Airport" } }, { "key": "270", "attributes": { "latitude": 39.49, "longitude": 109.861388889, "fullName": "Ordos Ejin Horo Airport" } }, { "key": "1857", "attributes": { "latitude": 16.043899536132812, "longitude": 108.1989974975586, "fullName": "Da Nang International Airport" } }, { "key": "1904", "attributes": { "latitude": 32.3911018371582, "longitude": 105.7020034790039, "fullName": "Guangyuan Airport" } }, { "key": "1854", "attributes": { "latitude": 37.40169906616211, "longitude": 121.37200164794922, "fullName": "Yantai Laishan Airport" } }, { "key": "275", "attributes": { "latitude": 40.851398, "longitude": 111.823997, "fullName": "Baita International Airport" } }, { "key": "1984", "attributes": { "latitude": 34.571667, "longitude": 118.873611, "fullName": "Lianyungang Airport" } }, { "key": "269", "attributes": { "latitude": 40.16109848022461, "longitude": 94.80919647216797, "fullName": "Dunhuang Airport" } }, { "key": "1931", "attributes": { "latitude": 35.116391, "longitude": 111.031388889, "fullName": "Yuncheng Guangong Airport" } }, { "key": "283", "attributes": { "latitude": 24.7964, "longitude": 118.589996, "fullName": "Quanzhou Jinjiang International Airport" } }, { "key": "308", "attributes": { "latitude": 38.28070068359375, "longitude": 114.6969985961914, "fullName": "Shijiazhuang Daguocun International Airport" } }, { "key": "331", "attributes": { "latitude": 30.55655, "longitude": 111.479988, "fullName": "Yichang Sanxia Airport" } }, { "key": "281", "attributes": { "latitude": 21.973899841308594, "longitude": 100.76000213623047, "fullName": "Xishuangbanna Gasa Airport" } }, { "key": "315", "attributes": { "latitude": 25.069400787353516, "longitude": 121.552001953125, "fullName": "Taipei Songshan Airport" } }, { "key": "288", "attributes": { "latitude": 25.853333, "longitude": 114.778889, "fullName": "Ganzhou Airport" } }, { "key": "2449", "attributes": { "latitude": 36.646702, "longitude": 119.119003, "fullName": "Weifang Airport" } }, { "key": "268", "attributes": { "latitude": 38.9656982421875, "longitude": 121.53900146484375, "fullName": "Zhoushuizi Airport" } }, { "key": "291", "attributes": { "latitude": 36.5152015686, "longitude": 103.620002747, "fullName": "Lanzhou Zhongchuan Airport" } }, { "key": "307", "attributes": { "latitude": 41.639801025390625, "longitude": 123.48300170898438, "fullName": "Taoxian Airport" } }, { "key": "697", "attributes": { "latitude": 33.51129913330078, "longitude": 126.49299621582031, "fullName": "Jeju International Airport" } }, { "key": "1637", "attributes": { "latitude": -7.3798298835754395, "longitude": 112.78700256347656, "fullName": "Juanda International Airport" } }, { "key": "1280", "attributes": { "latitude": -17.755399703979492, "longitude": 177.4429931640625, "fullName": "Nadi International Airport" } }, { "key": "323", "attributes": { "latitude": 31.494400024399997, "longitude": 120.429000854, "fullName": "Sunan Shuofang International Airport" } }, { "key": "1512", "attributes": { "latitude": 26.1958007812, "longitude": 127.646003723, "fullName": "Naha Airport" } }, { "key": "1820", "attributes": { "latitude": 31.80340003967285, "longitude": 130.718994140625, "fullName": "Kagoshima Airport" } }, { "key": "1510", "attributes": { "latitude": 24.350000381469727, "longitude": 116.13300323486328, "fullName": "Meixian Airport" } }, { "key": "1928", "attributes": { "latitude": 27.7019, "longitude": 118.000999, "fullName": "Nanping Wuyishan Airport" } }, { "key": "329", "attributes": { "latitude": 34.059056, "longitude": 117.555278, "fullName": "Xuzhou Guanyin Airport" } }, { "key": "1961", "attributes": { "latitude": 22.95039939880371, "longitude": 120.20600128173828, "fullName": "Tainan Airport" } }, { "key": "902", "attributes": { "latitude": 33.7908333333, "longitude": 119.125, "fullName": "Lianshui Airport" } }, { "key": "1515", "attributes": { "latitude": 33.425833, "longitude": 120.203056, "fullName": "Yancheng Airport" } }, { "key": "2873", "attributes": { "latitude": 12.679900169372559, "longitude": 101.00499725341797, "fullName": "U-Tapao International Airport" } }, { "key": "2745", "attributes": { "latitude": -22.01460075378418, "longitude": 166.21299743652344, "fullName": "La Tontouta International Airport" } }, { "key": "1996", "attributes": { "latitude": -28.1644001007, "longitude": 153.505004883, "fullName": "Gold Coast Airport" } }, { "key": "1822", "attributes": { "latitude": 32.916900634799994, "longitude": 129.914001465, "fullName": "Nagasaki Airport" } }, { "key": "699", "attributes": { "latitude": 37.5583, "longitude": 126.791, "fullName": "Gimpo International Airport" } }, { "key": "1823", "attributes": { "latitude": 38.1397018433, "longitude": 140.917007446, "fullName": "Sendai Airport" } }, { "key": "2345", "attributes": { "latitude": 33.82720184326172, "longitude": 132.6999969482422, "fullName": "Matsuyama Airport" } }, { "key": "1819", "attributes": { "latitude": 24.396389, "longitude": 124.245, "fullName": "New Ishigaki Airport" } }, { "key": "1869", "attributes": { "latitude": 41.7700004578, "longitude": 140.822006226, "fullName": "Hakodate Airport" } }, { "key": "309", "attributes": { "latitude": 15.119, "longitude": 145.729004, "fullName": "Saipan International Airport" } }, { "key": "1618", "attributes": { "latitude": -1.26827001572, "longitude": 116.893997192, "fullName": "Sultan Aji Muhamad Sulaiman Airport" } }, { "key": "1627", "attributes": { "latitude": 5.300680160522461, "longitude": 115.25, "fullName": "Labuan Airport" } }, { "key": "1631", "attributes": { "latitude": 0.46078601479530334, "longitude": 101.44499969482422, "fullName": "Sultan Syarif Kasim Ii (Simpang Tiga) Airport" } }, { "key": "1252", "attributes": { "latitude": 6.329730033874512, "longitude": 99.72869873046875, "fullName": "Langkawi International Airport" } }, { "key": "1623", "attributes": { "latitude": 1.64131, "longitude": 103.669998, "fullName": "Senai International Airport" } }, { "key": "1633", "attributes": { "latitude": 2.2616000175476074, "longitude": 111.98500061035156, "fullName": "Sibu Airport" } }, { "key": "2115", "attributes": { "latitude": 24.5534, "longitude": 39.705101, "fullName": "Prince Mohammad Bin Abdulaziz Airport" } }, { "key": "1638", "attributes": { "latitude": 5.3826398849487305, "longitude": 103.10299682617188, "fullName": "Sultan Mahmud Airport" } }, { "key": "1061", "attributes": { "latitude": 10.765399932861328, "longitude": 78.70970153808594, "fullName": "Tiruchirapally Civil Airport Airport" } }, { "key": "1640", "attributes": { "latitude": -5.061629772186279, "longitude": 119.55400085449219, "fullName": "Hasanuddin International Airport" } }, { "key": "1634", "attributes": { "latitude": 5.900899887084961, "longitude": 118.05899810791016, "fullName": "Sandakan Airport" } }, { "key": "1624", "attributes": { "latitude": -7.788179874420166, "longitude": 110.43199920654297, "fullName": "Adi Sutjipto International Airport" } }, { "key": "2116", "attributes": { "latitude": 33.993900299072266, "longitude": 71.51460266113281, "fullName": "Peshawar International Airport" } }, { "key": "2284", "attributes": { "latitude": 3.7753899097442627, "longitude": 103.20899963378906, "fullName": "Kuantan Airport" } }, { "key": "1628", "attributes": { "latitude": -8.757322, "longitude": 116.276675, "fullName": "Lombok International Airport" } }, { "key": "1632", "attributes": { "latitude": -2.8982501029968, "longitude": 104.69999694824, "fullName": "Sultan Mahmud Badaruddin II Airport" } }, { "key": "1625", "attributes": { "latitude": 6.1668500900268555, "longitude": 102.29299926757812, "fullName": "Sultan Ismail Petra Airport" } }, { "key": "1617", "attributes": { "latitude": -6.900629997253418, "longitude": 107.57599639892578, "fullName": "Husein Sastranegara International Airport" } }, { "key": "1619", "attributes": { "latitude": 5.522872024010001, "longitude": 95.42063713070002, "fullName": "Sultan Iskandar Muda International Airport" } }, { "key": "647", "attributes": { "latitude": 10.152, "longitude": 76.401901, "fullName": "Cochin International Airport" } }, { "key": "1630", "attributes": { "latitude": -0.786917, "longitude": 100.280998, "fullName": "Minangkabau International Airport" } }, { "key": "1639", "attributes": { "latitude": 4.320159912109375, "longitude": 118.12799835205078, "fullName": "Tawau Airport" } }, { "key": "1636", "attributes": { "latitude": -6.97273, "longitude": 110.375, "fullName": "Achmad Yani Airport" } }, { "key": "1902", "attributes": { "latitude": 39.224098, "longitude": 125.669998, "fullName": "Pyongyang Sunan International Airport" } }, { "key": "1626", "attributes": { "latitude": 1.4846999645233154, "longitude": 110.34700012207031, "fullName": "Kuching International Airport" } }, { "key": "1616", "attributes": { "latitude": 6.189670085906982, "longitude": 100.39800262451172, "fullName": "Sultan Abdul Halim Airport" } }, { "key": "1635", "attributes": { "latitude": -7.516089916229248, "longitude": 110.75700378417969, "fullName": "Adi Sumarmo Wiryokusumo Airport" } }, { "key": "1620", "attributes": { "latitude": 3.12385010719, "longitude": 113.019996643, "fullName": "Bintulu Airport" } }, { "key": "2285", "attributes": { "latitude": 3.130579948425293, "longitude": 101.54900360107422, "fullName": "Sultan Abdul Aziz Shah International Airport" } }, { "key": "3197", "attributes": { "latitude": -10.450599670410156, "longitude": 105.69000244140625, "fullName": "Christmas Island Airport" } }, { "key": "2803", "attributes": { "latitude": -30.789400100699996, "longitude": 121.461997986, "fullName": "Kalgoorlie Boulder Airport" } }, { "key": "2974", "attributes": { "latitude": -20.3777999878, "longitude": 118.625999451, "fullName": "Port Hedland International Airport" } }, { "key": "2967", "attributes": { "latitude": -20.712200164799995, "longitude": 116.773002625, "fullName": "Karratha Airport" } }, { "key": "2816", "attributes": { "latitude": -33.7971992493, "longitude": 120.208000183, "fullName": "Ravensthorpe Airport" } }, { "key": "2792", "attributes": { "latitude": -33.6884231567, "longitude": 115.401596069, "fullName": "Busselton Regional Airport" } }, { "key": "2795", "attributes": { "latitude": -33.684399, "longitude": 121.822998, "fullName": "Esperance Airport" } }, { "key": "2790", "attributes": { "latitude": -34.94329833984375, "longitude": 117.80899810791016, "fullName": "Albany Airport" } }, { "key": "1177", "attributes": { "latitude": -35.30690002441406, "longitude": 149.19500732421875, "fullName": "Canberra International Airport" } }, { "key": "2811", "attributes": { "latitude": -23.1711006165, "longitude": 117.745002747, "fullName": "Paraburdoo Airport" } }, { "key": "2979", "attributes": { "latitude": -23.417800903299998, "longitude": 119.803001404, "fullName": "Newman Airport" } }, { "key": "2806", "attributes": { "latitude": -22.235599517799997, "longitude": 114.088996887, "fullName": "Learmonth Airport" } }, { "key": "2794", "attributes": { "latitude": -17.5813999176, "longitude": 123.82800293, "fullName": "RAAF Base Curtin" } }, { "key": "2796", "attributes": { "latitude": -28.796101, "longitude": 114.707001, "fullName": "Geraldton Airport" } }, { "key": "2608", "attributes": { "latitude": 10.57970047, "longitude": 103.637001038, "fullName": "Sihanoukville International Airport" } }, { "key": "2985", "attributes": { "latitude": 15.132100105285645, "longitude": 105.78099822998047, "fullName": "Pakse International Airport" } }, { "key": "3274", "attributes": { "latitude": 19.42639923095703, "longitude": 93.53479766845703, "fullName": "Kyaukpyu Airport" } }, { "key": "692", "attributes": { "latitude": 14.103899955749512, "longitude": 98.20359802246094, "fullName": "Dawei Airport" } }, { "key": "691", "attributes": { "latitude": 20.483800888061523, "longitude": 99.9354019165039, "fullName": "Tachileik Airport" } }, { "key": "685", "attributes": { "latitude": 20.746999740600586, "longitude": 96.79199981689453, "fullName": "Heho Airport" } }, { "key": "684", "attributes": { "latitude": 20.132699966430664, "longitude": 92.87259674072266, "fullName": "Sittwe Airport" } }, { "key": "689", "attributes": { "latitude": 21.178800582885742, "longitude": 94.9301986694336, "fullName": "Bagan Airport" } }, { "key": "690", "attributes": { "latitude": 18.4606990814209, "longitude": 94.30010223388672, "fullName": "Thandwe Airport" } }, { "key": "3275", "attributes": { "latitude": 25.38360023498535, "longitude": 97.35189819335938, "fullName": "Myitkyina Airport" } }, { "key": "3200", "attributes": { "latitude": 13.955, "longitude": 109.042, "fullName": "Phu Cat Airport" } }, { "key": "3201", "attributes": { "latitude": 9.177667, "longitude": 105.177778, "fullName": "Cà Mau Airport" } }, { "key": "1858", "attributes": { "latitude": 20.819400787353516, "longitude": 106.7249984741211, "fullName": "Cat Bi International Airport" } }, { "key": "3199", "attributes": { "latitude": 16.401500701899998, "longitude": 107.70300293, "fullName": "Phu Bai Airport" } }, { "key": "3209", "attributes": { "latitude": 17.515, "longitude": 106.590556, "fullName": "Dong Hoi Airport" } }, { "key": "3198", "attributes": { "latitude": 11.75, "longitude": 108.366997, "fullName": "Lien Khuong Airport" } }, { "key": "3210", "attributes": { "latitude": 9.95802997234, "longitude": 105.132379532, "fullName": "Rach Gia Airport" } }, { "key": "3208", "attributes": { "latitude": 8.73183, "longitude": 106.633003, "fullName": "Co Ong Airport" } }, { "key": "3207", "attributes": { "latitude": 15.403300285299999, "longitude": 108.706001282, "fullName": "Chu Lai International Airport" } }, { "key": "1859", "attributes": { "latitude": 10.1698, "longitude": 103.9931, "fullName": "Phu Quoc International Airport" } }, { "key": "3203", "attributes": { "latitude": 14.004500389099121, "longitude": 108.01699829101562, "fullName": "Pleiku Airport" } }, { "key": "1855", "attributes": { "latitude": 12.668299675, "longitude": 108.120002747, "fullName": "Buon Ma Thuot Airport" } }, { "key": "1860", "attributes": { "latitude": 18.7376003265, "longitude": 105.67099762, "fullName": "Vinh Airport" } }, { "key": "3204", "attributes": { "latitude": 13.049599647500001, "longitude": 109.333999634, "fullName": "Dong Tac Airport" } }, { "key": "669", "attributes": { "latitude": 17.721200943, "longitude": 83.2245025635, "fullName": "Vishakhapatnam Airport" } }, { "key": "646", "attributes": { "latitude": 11.029999733, "longitude": 77.0434036255, "fullName": "Coimbatore International Airport" } }, { "key": "2527", "attributes": { "latitude": 5.765279769897461, "longitude": 103.00700378417969, "fullName": "LTS Pulau Redang Airport" } }, { "key": "2282", "attributes": { "latitude": 4.567969799041748, "longitude": 101.09200286865234, "fullName": "Sultan Azlan Shah Airport" } }, { "key": "2328", "attributes": { "latitude": 1.5492600202560425, "longitude": 124.9260025024414, "fullName": "Sam Ratulangi Airport" } }, { "key": "667", "attributes": { "latitude": 8.48211956024, "longitude": 76.9200973511, "fullName": "Trivandrum International Airport" } }, { "key": "1178", "attributes": { "latitude": -43.48939895629883, "longitude": 172.53199768066406, "fullName": "Christchurch International Airport" } }, { "key": "1933", "attributes": { "latitude": 29.3446998596, "longitude": 120.031997681, "fullName": "Yiwu Airport" } }, { "key": "271", "attributes": { "latitude": 29.1028, "longitude": 110.443001, "fullName": "Dayong Airport" } }, { "key": "2344", "attributes": { "latitude": 43.041000366199995, "longitude": 144.192993164, "fullName": "Kushiro Airport" } }, { "key": "1871", "attributes": { "latitude": 34.7569007874, "longitude": 133.854995728, "fullName": "Okayama Airport" } }, { "key": "1905", "attributes": { "latitude": 34.4361000061, "longitude": 132.919006348, "fullName": "Hiroshima Airport" } }, { "key": "1962", "attributes": { "latitude": 36.64830017089844, "longitude": 137.18800354003906, "fullName": "Toyama Airport" } }, { "key": "1960", "attributes": { "latitude": 31.877199173, "longitude": 131.449005127, "fullName": "Miyazaki Airport" } }, { "key": "1870", "attributes": { "latitude": 36.39459991455078, "longitude": 136.40699768066406, "fullName": "Komatsu Airport" } }, { "key": "907", "attributes": { "latitude": 34.214199066199996, "longitude": 134.01600647, "fullName": "Takamatsu Airport" } }, { "key": "1868", "attributes": { "latitude": 43.670799255371094, "longitude": 142.44700622558594, "fullName": "Asahikawa Airport" } }, { "key": "181", "attributes": { "latitude": 47.4850006104, "longitude": 9.560770034789998, "fullName": "St Gallen Altenrhein Airport" } }, { "key": "3060", "attributes": { "latitude": 41.506401062, "longitude": 32.0886001587, "fullName": "Zonguldak Airport" } }, { "key": "2856", "attributes": { "latitude": 38.770401001, "longitude": 35.4953994751, "fullName": "Kayseri Erkilet Airport" } }, { "key": "1085", "attributes": { "latitude": 39.0567016602, "longitude": 26.5983009338, "fullName": "Mytilene International Airport" } }, { "key": "2250", "attributes": { "latitude": 38.1511, "longitude": 21.4256, "fullName": "Araxos Airport" } }, { "key": "1535", "attributes": { "latitude": 50.73440170288086, "longitude": -3.4138898849487305, "fullName": "Exeter International Airport" } }, { "key": "466", "attributes": { "latitude": 40.913299560546875, "longitude": 24.619199752807617, "fullName": "Alexander the Great International Airport" } }, { "key": "185", "attributes": { "latitude": 47.671298980699994, "longitude": 9.51148986816, "fullName": "Friedrichshafen Airport" } }, { "key": "456", "attributes": { "latitude": 53.8787002563, "longitude": 14.152299881, "fullName": "Heringsdorf Airport" } }, { "key": "1067", "attributes": { "latitude": 37.689998626708984, "longitude": 26.911699295043945, "fullName": "Samos Airport" } }, { "key": "431", "attributes": { "latitude": 43.616299, "longitude": 13.3623, "fullName": "Ancona Falconara Airport" } }, { "key": "1365", "attributes": { "latitude": 48.2332, "longitude": 14.1875, "fullName": "Linz Hörsching Airport" } }, { "key": "194", "attributes": { "latitude": 44.108299, "longitude": 15.3467, "fullName": "Zadar Airport" } }, { "key": "2189", "attributes": { "latitude": 37.9114, "longitude": 12.488, "fullName": "Vincenzo Florio Airport Trapani-Birgi" } }, { "key": "1372", "attributes": { "latitude": 49.214599609400004, "longitude": 7.10950994492, "fullName": "Saarbrücken Airport" } }, { "key": "484", "attributes": { "latitude": 45.21689987182617, "longitude": 14.570300102233887, "fullName": "Rijeka Airport" } }, { "key": "463", "attributes": { "latitude": 46.642502, "longitude": 14.3377, "fullName": "Klagenfurt Airport" } }, { "key": "2648", "attributes": { "latitude": 45.78559875488281, "longitude": 24.091299057006836, "fullName": "Sibiu International Airport" } }, { "key": "485", "attributes": { "latitude": 53.9182014465, "longitude": 12.278300285299999, "fullName": "Rostock-Laage Airport" } }, { "key": "1777", "attributes": { "latitude": 45.827499, "longitude": 13.4722, "fullName": "Trieste–Friuli Venezia Giulia Airport" } }, { "key": "1068", "attributes": { "latitude": 35.4213981628418, "longitude": 27.145999908447266, "fullName": "Karpathos Airport" } }, { "key": "3246", "attributes": { "latitude": 49.473057, "longitude": 8.514167, "fullName": "Mannheim-City Airport" } }, { "key": "1528", "attributes": { "latitude": 31.321300506591797, "longitude": -85.44960021972656, "fullName": "Dothan Regional Airport" } }, { "key": "1525", "attributes": { "latitude": 32.516300201416016, "longitude": -84.93890380859375, "fullName": "Columbus Metropolitan Airport" } }, { "key": "1212", "attributes": { "latitude": 35.33660125732422, "longitude": -94.36740112304688, "fullName": "Fort Smith Regional Airport" } }, { "key": "1325", "attributes": { "latitude": 32.446602, "longitude": -93.8256, "fullName": "Shreveport Regional Airport" } }, { "key": "217", "attributes": { "latitude": 30.396499633789062, "longitude": -84.35030364990234, "fullName": "Tallahassee Regional Airport" } }, { "key": "1283", "attributes": { "latitude": 34.8292007446, "longitude": -77.61209869380001, "fullName": "Albert J Ellis Airport" } }, { "key": "201", "attributes": { "latitude": 23.5625991821, "longitude": -75.8779983521, "fullName": "Exuma International Airport" } }, { "key": "1537", "attributes": { "latitude": 33.450298309299995, "longitude": -88.5914001465, "fullName": "Golden Triangle Regional Airport" } }, { "key": "219", "attributes": { "latitude": 34.26810073852539, "longitude": -88.7698974609375, "fullName": "Tupelo Regional Airport" } }, { "key": "1250", "attributes": { "latitude": 30.20529938, "longitude": -91.98760223, "fullName": "Lafayette Regional Airport" } }, { "key": "1170", "attributes": { "latitude": 30.533199, "longitude": -91.149597, "fullName": "Baton Rouge Metropolitan Airport" } }, { "key": "1145", "attributes": { "latitude": 33.36989974975586, "longitude": -81.9645004272461, "fullName": "Augusta Regional At Bush Field" } }, { "key": "1340", "attributes": { "latitude": 36.475201, "longitude": -82.407401, "fullName": "Tri-Cities Regional TN/VA Airport" } }, { "key": "634", "attributes": { "latitude": 15.4526, "longitude": -87.923599, "fullName": "Ramón Villeda Morales International Airport" } }, { "key": "1569", "attributes": { "latitude": 30.782499313354492, "longitude": -83.27670288085938, "fullName": "Valdosta Regional Airport" } }, { "key": "1224", "attributes": { "latitude": 31.067199707, "longitude": -97.82890319820001, "fullName": "Robert Gray Army Air Field Airport" } }, { "key": "213", "attributes": { "latitude": 31.467100143432617, "longitude": -89.33709716796875, "fullName": "Hattiesburg Laurel Regional Airport" } }, { "key": "633", "attributes": { "latitude": 16.316799, "longitude": -86.523003, "fullName": "Juan Manuel Galvez International Airport" } }, { "key": "200", "attributes": { "latitude": 26.5587005615, "longitude": -78.695602417, "fullName": "Grand Bahama International Airport" } }, { "key": "209", "attributes": { "latitude": 32.33259963989258, "longitude": -88.75189971923828, "fullName": "Key Field" } }, { "key": "1193", "attributes": { "latitude": 29.179899, "longitude": -81.058098, "fullName": "Daytona Beach International Airport" } }, { "key": "1517", "attributes": { "latitude": 31.535499572753906, "longitude": -84.19450378417969, "fullName": "Southwest Georgia Regional Airport" } }, { "key": "1266", "attributes": { "latitude": 32.30059814, "longitude": -86.39399719, "fullName": "Montgomery Regional (Dannelly Field) Airport" } }, { "key": "237", "attributes": { "latitude": 12.130999565124512, "longitude": -68.26850128173828, "fullName": "Flamingo International Airport" } }, { "key": "635", "attributes": { "latitude": 14.06089973449707, "longitude": -87.21720123291016, "fullName": "Toncontín International Airport" } }, { "key": "1273", "attributes": { "latitude": 32.51089859008789, "longitude": -92.0376968383789, "fullName": "Monroe Regional Airport" } }, { "key": "207", "attributes": { "latitude": 32.69279861450195, "longitude": -83.64920043945312, "fullName": "Middle Georgia Regional Airport" } }, { "key": "544", "attributes": { "latitude": 10.5933, "longitude": -85.544403, "fullName": "Daniel Oduber Quiros International Airport" } }, { "key": "204", "attributes": { "latitude": 29.6900997162, "longitude": -82.2717971802, "fullName": "Gainesville Regional Airport" } }, { "key": "1144", "attributes": { "latitude": 31.32740020751953, "longitude": -92.54979705810547, "fullName": "Alexandria International Airport" } }, { "key": "198", "attributes": { "latitude": 24.556100845336914, "longitude": -81.75959777832031, "fullName": "Key West International Airport" } }, { "key": "1270", "attributes": { "latitude": 28.102800369262695, "longitude": -80.64530181884766, "fullName": "Melbourne International Airport" } }, { "key": "1163", "attributes": { "latitude": 20.9935, "longitude": -101.481003, "fullName": "Del Bajío International Airport" } }, { "key": "1207", "attributes": { "latitude": 34.9911994934082, "longitude": -78.88030242919922, "fullName": "Fayetteville Regional Grannis Field" } }, { "key": "1523", "attributes": { "latitude": 31.258800506591797, "longitude": -81.46649932861328, "fullName": "Brunswick Golden Isles Airport" } }, { "key": "631", "attributes": { "latitude": 17.539100646972656, "longitude": -88.30819702148438, "fullName": "Philip S. W. Goldson International Airport" } }, { "key": "2205", "attributes": { "latitude": 40.27669906616211, "longitude": -74.8134994506836, "fullName": "Trenton Mercer Airport" } }, { "key": "1293", "attributes": { "latitude": 37.13190079, "longitude": -76.49299622, "fullName": "Newport News Williamsburg International Airport" } }, { "key": "545", "attributes": { "latitude": 12.141500473022461, "longitude": -86.16819763183594, "fullName": "Augusto C. Sandino (Managua) International Airport" } }, { "key": "206", "attributes": { "latitude": 37.8582992554, "longitude": -80.3994979858, "fullName": "Greenbrier Valley Airport" } }, { "key": "211", "attributes": { "latitude": 34.74530029, "longitude": -87.61019897, "fullName": "Northwest Alabama Regional Airport" } }, { "key": "1348", "attributes": { "latitude": 30.4832, "longitude": -86.525398, "fullName": "Destin-Ft Walton Beach Airport" } }, { "key": "1235", "attributes": { "latitude": 34.270599365234375, "longitude": -77.90260314941406, "fullName": "Wilmington International Airport" } }, { "key": "1221", "attributes": { "latitude": 30.40730094909668, "longitude": -89.07009887695312, "fullName": "Gulfport Biloxi International Airport" } }, { "key": "990", "attributes": { "latitude": 21.77359962463379, "longitude": -72.26589965820312, "fullName": "Providenciales Airport" } }, { "key": "1204", "attributes": { "latitude": 35.0730018616, "longitude": -77.04290008539999, "fullName": "Coastal Carolina Regional Airport" } }, { "key": "196", "attributes": { "latitude": 25.6998996735, "longitude": -79.2647018433, "fullName": "South Bimini Airport" } }, { "key": "197", "attributes": { "latitude": 25.474899292, "longitude": -76.6835021973, "fullName": "North Eleuthera Airport" } }, { "key": "210", "attributes": { "latitude": 26.5114, "longitude": -77.083503, "fullName": "Leonard M Thompson International Airport" } }, { "key": "1338", "attributes": { "latitude": 41.50410079956055, "longitude": -74.10479736328125, "fullName": "Stewart International Airport" } }, { "key": "1789", "attributes": { "latitude": 18.49489974975586, "longitude": -67.12940216064453, "fullName": "Rafael Hernandez Airport" } }, { "key": "1790", "attributes": { "latitude": 42.26729965209961, "longitude": -71.87570190429688, "fullName": "Worcester Regional Airport" } }, { "key": "202", "attributes": { "latitude": 25.2847003937, "longitude": -76.3310012817, "fullName": "Governor's Harbour Airport" } }, { "key": "2297", "attributes": { "latitude": 43.1072998046875, "longitude": -78.94619750976562, "fullName": "Niagara Falls International Airport" } }, { "key": "1334", "attributes": { "latitude": 19.406099319458008, "longitude": -70.60469818115234, "fullName": "Cibao International Airport" } }, { "key": "216", "attributes": { "latitude": 26.745300293, "longitude": -77.3912963867, "fullName": "Treasure Cay Airport" } }, { "key": "1691", "attributes": { "latitude": 44.650901794433594, "longitude": -73.46810150146484, "fullName": "Plattsburgh International Airport" } }, { "key": "2781", "attributes": { "latitude": 40.27590179, "longitude": -79.40480042, "fullName": "Arnold Palmer Regional Airport" } }, { "key": "1238", "attributes": { "latitude": 40.79520035, "longitude": -73.10019684, "fullName": "Long Island Mac Arthur Airport" } }, { "key": "412", "attributes": { "latitude": 19.3370990753, "longitude": -99.56600189210002, "fullName": "Licenciado Adolfo Lopez Mateos International Airport" } }, { "key": "203", "attributes": { "latitude": 33.4828987121582, "longitude": -90.98560333251953, "fullName": "Mid Delta Regional Airport" } }, { "key": "2200", "attributes": { "latitude": 39.67869949, "longitude": -75.60649872, "fullName": "New Castle Airport" } }, { "key": "1791", "attributes": { "latitude": 18.00830078125, "longitude": -66.56300354003906, "fullName": "Mercedita Airport" } }, { "key": "2620", "attributes": { "latitude": 58.4062004089, "longitude": 15.680500030500001, "fullName": "Linköping City Airport" } }, { "key": "636", "attributes": { "latitude": -33.9648017883, "longitude": 18.6016998291, "fullName": "Cape Town International Airport" } }, { "key": "1564", "attributes": { "latitude": 50.95029830932617, "longitude": -1.3567999601364136, "fullName": "Southampton Airport" } }, { "key": "1761", "attributes": { "latitude": 53.57440185546875, "longitude": -0.350832998752594, "fullName": "Humberside Airport" } }, { "key": "2863", "attributes": { "latitude": 37.979, "longitude": 32.561901, "fullName": "Konya Airport" } }, { "key": "1767", "attributes": { "latitude": 54.50920104980469, "longitude": -1.4294099807739258, "fullName": "Durham Tees Valley Airport" } }, { "key": "784", "attributes": { "latitude": 5.4528298377999995, "longitude": -55.1878013611, "fullName": "Johan Adolf Pengel International Airport" } }, { "key": "2070", "attributes": { "latitude": 47.12189865112305, "longitude": 51.8213996887207, "fullName": "Atyrau Airport" } }, { "key": "1112", "attributes": { "latitude": 45.7867012024, "longitude": 3.1691699028, "fullName": "Clermont-Ferrand Auvergne Airport" } }, { "key": "1768", "attributes": { "latitude": 52.6758003235, "longitude": 1.28278005123, "fullName": "Norwich International Airport" } }, { "key": "1080", "attributes": { "latitude": 36.2742996216, "longitude": 23.0170001984, "fullName": "Kithira Airport" } }, { "key": "3114", "attributes": { "latitude": 16.833200454711914, "longitude": -25.055299758911133, "fullName": "São Pedro Airport" } }, { "key": "1064", "attributes": { "latitude": 38.34320068359375, "longitude": 26.140600204467773, "fullName": "Chios Island National Airport" } }, { "key": "2212", "attributes": { "latitude": 28.777599334716797, "longitude": -81.23750305175781, "fullName": "Orlando Sanford International Airport" } }, { "key": "1120", "attributes": { "latitude": 43.1786994934082, "longitude": -0.006438999902456999, "fullName": "Tarbes-Lourdes-Pyrénées Airport" } }, { "key": "3269", "attributes": { "latitude": 46.17660140991211, "longitude": 21.261999130249023, "fullName": "Arad International Airport" } }, { "key": "1770", "attributes": { "latitude": 42.431702, "longitude": 14.1811, "fullName": "Pescara International Airport" } }, { "key": "2255", "attributes": { "latitude": 53.8054008484, "longitude": 10.7192001343, "fullName": "Lübeck Blankensee Airport" } }, { "key": "2491", "attributes": { "latitude": 43.282901763916016, "longitude": 17.84589958190918, "fullName": "Mostar International Airport" } }, { "key": "3270", "attributes": { "latitude": 44.31809997558594, "longitude": 23.888599395751953, "fullName": "Craiova Airport" } }, { "key": "2278", "attributes": { "latitude": 41.66619873046875, "longitude": -1.0415500402450562, "fullName": "Zaragoza Air Base" } }, { "key": "2257", "attributes": { "latitude": 61.044601, "longitude": 28.144743, "fullName": "Lappeenranta Airport" } }, { "key": "1762", "attributes": { "latitude": 47.17850112915039, "longitude": 27.6205997467041, "fullName": "Iaşi Airport" } }, { "key": "1708", "attributes": { "latitude": 34.787200927734375, "longitude": -1.92399001121521, "fullName": "Angads Airport" } }, { "key": "3093", "attributes": { "latitude": 39.809898, "longitude": 30.5194, "fullName": "Anadolu Airport" } }, { "key": "1713", "attributes": { "latitude": 35.594299316406, "longitude": -5.320020198822, "fullName": "Saniat R'mel Airport" } }, { "key": "890", "attributes": { "latitude": 32.096801757799994, "longitude": 20.2695007324, "fullName": "Benina International Airport" } }, { "key": "1709", "attributes": { "latitude": 30.9391002655, "longitude": -6.909430027010001, "fullName": "Ouarzazate Airport" } }, { "key": "2631", "attributes": { "latitude": 22.756399154663086, "longitude": -12.483599662780762, "fullName": "Tazadit Airport" } }, { "key": "1560", "attributes": { "latitude": 34.051498, "longitude": -6.75152, "fullName": "Rabat-Salé Airport" } }, { "key": "894", "attributes": { "latitude": 32.6635017395, "longitude": 13.1590003967, "fullName": "Tripoli International Airport" } }, { "key": "226", "attributes": { "latitude": 44.547001, "longitude": 7.62322, "fullName": "Cuneo International Airport" } }, { "key": "1531", "attributes": { "latitude": 45.54059982299805, "longitude": 4.296390056610107, "fullName": "Saint-Étienne-Bouthéon Airport" } }, { "key": "2249", "attributes": { "latitude": 43.75740051269531, "longitude": 4.4163498878479, "fullName": "Nîmes-Arles-Camargue Airport" } }, { "key": "1576", "attributes": { "latitude": 34.793300628699996, "longitude": 5.73823022842, "fullName": "Biskra Airport" } }, { "key": "3087", "attributes": { "latitude": 49.53390121459961, "longitude": 0.08805599808692932, "fullName": "Le Havre Octeville Airport" } }, { "key": "1123", "attributes": { "latitude": 47.76060104370117, "longitude": -3.440000057220459, "fullName": "Lorient South Brittany (Bretagne Sud) Airport" } }, { "key": "1597", "attributes": { "latitude": 35.0167007446, "longitude": -1.45000004768, "fullName": "Zenata – Messali El Hadj Airport" } }, { "key": "1571", "attributes": { "latitude": 36.822201, "longitude": 7.809174, "fullName": "Rabah Bitat Airport" } }, { "key": "1128", "attributes": { "latitude": 43.380001068115234, "longitude": -0.41861099004745483, "fullName": "Pau Pyrénées Airport" } }, { "key": "1574", "attributes": { "latitude": 35.752101898199996, "longitude": 6.308589935300001, "fullName": "Batna Airport" } }, { "key": "1573", "attributes": { "latitude": 36.7120018005, "longitude": 5.0699200630200005, "fullName": "Soummam Airport" } }, { "key": "1127", "attributes": { "latitude": 46.58769989013672, "longitude": 0.30666598677635193, "fullName": "Poitiers-Biard Airport" } }, { "key": "1113", "attributes": { "latitude": 49.173301696777344, "longitude": -0.44999998807907104, "fullName": "Caen-Carpiquet Airport" } }, { "key": "1593", "attributes": { "latitude": 36.178100585900005, "longitude": 5.3244900703399995, "fullName": "Ain Arnat Airport" } }, { "key": "1579", "attributes": { "latitude": 36.2760009765625, "longitude": 6.620389938354492, "fullName": "Mohamed Boudiaf International Airport" } }, { "key": "1115", "attributes": { "latitude": 48.9821014404, "longitude": 6.25131988525, "fullName": "Metz-Nancy-Lorraine Airport" } }, { "key": "1831", "attributes": { "latitude": 53.4805378105, "longitude": -1.01065635681, "fullName": "Robin Hood Doncaster Sheffield Airport" } }, { "key": "1545", "attributes": { "latitude": 50.63740158081055, "longitude": 5.443220138549805, "fullName": "Liège Airport" } }, { "key": "3059", "attributes": { "latitude": 51.417273, "longitude": 9.384967, "fullName": "Kassel-Calden Airport" } }, { "key": "2252", "attributes": { "latitude": 53.1197013855, "longitude": 6.57944011688, "fullName": "Eelde Airport" } }, { "key": "2467", "attributes": { "latitude": 41.728185, "longitude": 0.535023, "fullName": "Lleida-Alguaire Airport" } }, { "key": "2444", "attributes": { "latitude": 51.198898315399994, "longitude": 2.8622200489, "fullName": "Ostend-Bruges International Airport" } }, { "key": "2287", "attributes": { "latitude": 49.924800872802734, "longitude": 36.290000915527344, "fullName": "Kharkiv International Airport" } }, { "key": "2864", "attributes": { "latitude": 37.223300933800004, "longitude": 40.6316986084, "fullName": "Mardin Airport" } }, { "key": "2858", "attributes": { "latitude": 37.7855987549, "longitude": 29.7012996674, "fullName": "Çardak Airport" } }, { "key": "2860", "attributes": { "latitude": 39.7102012634, "longitude": 39.527000427199994, "fullName": "Erzincan Airport" } }, { "key": "2867", "attributes": { "latitude": 38.7719, "longitude": 34.5345, "fullName": "Nevşehir Kapadokya Airport" } }, { "key": "864", "attributes": { "latitude": 37.445663, "longitude": 38.895592, "fullName": "Şanlıurfa GAP Airport" } }, { "key": "2866", "attributes": { "latitude": 40.829399, "longitude": 35.521999, "fullName": "Amasya Merzifon Airport" } }, { "key": "867", "attributes": { "latitude": 38.435298919699996, "longitude": 38.0909996033, "fullName": "Malatya Erhaç Airport" } }, { "key": "862", "attributes": { "latitude": 39.9565010071, "longitude": 41.17020034789999, "fullName": "Erzurum International Airport" } }, { "key": "3101", "attributes": { "latitude": 40.562198638916016, "longitude": 43.1150016784668, "fullName": "Kars Airport" } }, { "key": "866", "attributes": { "latitude": 36.9472007751, "longitude": 37.4786987305, "fullName": "Gaziantep International Airport" } }, { "key": "2859", "attributes": { "latitude": 39.554599762, "longitude": 27.0137996674, "fullName": "Balıkesir Körfez Airport" } }, { "key": "2868", "attributes": { "latitude": 38.46820068359375, "longitude": 43.332298278808594, "fullName": "Van Ferit Melen Airport" } }, { "key": "859", "attributes": { "latitude": 37.893901825, "longitude": 40.201000213600004, "fullName": "Diyarbakir Airport" } }, { "key": "863", "attributes": { "latitude": 38.6068992615, "longitude": 39.2914009094, "fullName": "Elazığ Airport" } }, { "key": "2865", "attributes": { "latitude": 38.747798919677734, "longitude": 41.66120147705078, "fullName": "Muş Airport" } }, { "key": "2861", "attributes": { "latitude": 36.36277771, "longitude": 36.282222747800006, "fullName": "Hatay Airport" } }, { "key": "2857", "attributes": { "latitude": 37.929000854499996, "longitude": 41.1166000366, "fullName": "Batman Airport" } }, { "key": "2862", "attributes": { "latitude": 37.5388259888, "longitude": 36.9535217285, "fullName": "Kahramanmaraş Airport" } }, { "key": "856", "attributes": { "latitude": 36.9822006226, "longitude": 35.280399322499996, "fullName": "Adana Airport" } }, { "key": "861", "attributes": { "latitude": 35.154701232910156, "longitude": 33.49610137939453, "fullName": "Ercan International Airport" } }, { "key": "2869", "attributes": { "latitude": 39.813801, "longitude": 36.9035, "fullName": "Sivas Nuri Demirağ Airport" } }, { "key": "3086", "attributes": { "latitude": 47.268902, "longitude": 5.09, "fullName": "Dijon-Bourgogne Airport" } }, { "key": "3061", "attributes": { "latitude": 53.5352783203125, "longitude": 9.835556030273438, "fullName": "Hamburg-Finkenwerder Airport" } }, { "key": "786", "attributes": { "latitude": 10.14973258972168, "longitude": -67.92839813232422, "fullName": "Arturo Michelena International Airport" } }, { "key": "239", "attributes": { "latitude": 11.78077507019043, "longitude": -70.15149688720703, "fullName": "Josefa Camejo International Airport" } }, { "key": "781", "attributes": { "latitude": 18.450700759887695, "longitude": -68.91179656982422, "fullName": "Casa De Campo International Airport" } }, { "key": "240", "attributes": { "latitude": 10.5582084656, "longitude": -71.7278594971, "fullName": "La Chinita International Airport" } }, { "key": "2731", "attributes": { "latitude": 18.572500228881836, "longitude": -69.98560333251953, "fullName": "La Isabela International Airport" } }, { "key": "777", "attributes": { "latitude": 10.042746543884277, "longitude": -69.3586196899414, "fullName": "Barquisimeto International Airport" } }, { "key": "1030", "attributes": { "latitude": 10.912603378295898, "longitude": -63.96659851074219, "fullName": "Del Caribe Santiago Mariño International Airport" } }, { "key": "3189", "attributes": { "latitude": 10.480500221252441, "longitude": -68.072998046875, "fullName": "General Bartolome Salom International Airport" } }, { "key": "935", "attributes": { "latitude": 18.2048, "longitude": -63.055099, "fullName": "Clayton J Lloyd International Airport" } }, { "key": "589", "attributes": { "latitude": 17.205699920654297, "longitude": -62.589900970458984, "fullName": "Vance W. Amory International Airport" } }, { "key": "1328", "attributes": { "latitude": 17.311199188232422, "longitude": -62.71870040893555, "fullName": "Robert L. Bradshaw International Airport" } }, { "key": "253", "attributes": { "latitude": 17.904399871826172, "longitude": -62.84360122680664, "fullName": "Gustaf III Airport" } }, { "key": "256", "attributes": { "latitude": 14.0202, "longitude": -60.992901, "fullName": "George F. L. Charles Airport" } }, { "key": "1814", "attributes": { "latitude": 11.149700164794922, "longitude": -60.83219909667969, "fullName": "Tobago-Crown Point Airport" } }, { "key": "250", "attributes": { "latitude": 15.547, "longitude": -61.299999, "fullName": "Douglas-Charles Airport" } }, { "key": "249", "attributes": { "latitude": 4.819809913639999, "longitude": -52.360401153599994, "fullName": "Cayenne-Rochambeau Airport" } }, { "key": "2650", "attributes": { "latitude": 13.156695, "longitude": -61.149945, "fullName": "Argyle International Airport" } }, { "key": "941", "attributes": { "latitude": 18.444799423217773, "longitude": -64.54299926757812, "fullName": "Terrance B. Lettsome International Airport" } }, { "key": "255", "attributes": { "latitude": 18.099899291992, "longitude": -63.047199249268, "fullName": "L'Espérance Airport" } }, { "key": "3313", "attributes": { "latitude": 17.645000457763672, "longitude": -63.220001220703125, "fullName": "Juancho E. Yrausquin Airport" } }, { "key": "1891", "attributes": { "latitude": 19.96980094909668, "longitude": -75.83540344238281, "fullName": "Antonio Maceo International Airport" } }, { "key": "3312", "attributes": { "latitude": 17.49650001525879, "longitude": -62.979400634765625, "fullName": "F. D. Roosevelt Airport" } }, { "key": "964", "attributes": { "latitude": 17.701900482177734, "longitude": -64.79859924316406, "fullName": "Henry E Rohlsen Airport" } }, { "key": "906", "attributes": { "latitude": 34.741100311299995, "longitude": 112.388000488, "fullName": "Luoyang Airport" } }, { "key": "2310", "attributes": { "latitude": 37.5085983276, "longitude": 118.788002014, "fullName": "Dongying Shengli Airport" } }, { "key": "2309", "attributes": { "latitude": 23.7206001282, "longitude": 106.959999084, "fullName": "Baise Youjiang Airport" } }, { "key": "1985", "attributes": { "latitude": 30.79545, "longitude": 106.1626, "fullName": "Nanchong Airport" } }, { "key": "1972", "attributes": { "latitude": 26.2605555556, "longitude": 105.873333333, "fullName": "Anshun Huangguoshu Airport" } }, { "key": "1977", "attributes": { "latitude": 30.7403, "longitude": 117.6856, "fullName": "Jiuhuashan Airport" } }, { "key": "1918", "attributes": { "latitude": 24.2075, "longitude": 109.390999, "fullName": "Liuzhou Bailian Airport" } }, { "key": "1847", "attributes": { "latitude": 27.4411111111, "longitude": 109.7, "fullName": "Zhijiang Airport" } }, { "key": "837", "attributes": { "latitude": 27.7936, "longitude": 99.6772, "fullName": "Diqing Airport" } }, { "key": "274", "attributes": { "latitude": 36.5258333333, "longitude": 114.425555556, "fullName": "Handan Airport" } }, { "key": "1982", "attributes": { "latitude": 25.4525, "longitude": 107.961667, "fullName": "Libo Airport" } }, { "key": "1976", "attributes": { "latitude": 35.292778, "longitude": 116.346667, "fullName": "Jining Qufu Airport" } }, { "key": "293", "attributes": { "latitude": 24.4011, "longitude": 98.5317, "fullName": "Mangshi Airport" } }, { "key": "1973", "attributes": { "latitude": 27.267066, "longitude": 105.472097, "fullName": "Bijie Feixiong Airport" } }, { "key": "1913", "attributes": { "latitude": 26.856899261499997, "longitude": 114.736999512, "fullName": "Jinggangshan Airport" } }, { "key": "1914", "attributes": { "latitude": 29.476944, "longitude": 115.801111, "fullName": "Jiujiang Lushan Airport" } }, { "key": "284", "attributes": { "latitude": 32.8533333333, "longitude": 103.682222222, "fullName": "Jiuzhai Huanglong Airport" } }, { "key": "836", "attributes": { "latitude": 40.560001373291016, "longitude": 109.99700164794922, "fullName": "Baotou Airport" } }, { "key": "1899", "attributes": { "latitude": 31.1302, "longitude": 107.4295, "fullName": "Dachuan Airport" } }, { "key": "1969", "attributes": { "latitude": 25.0863888889, "longitude": 104.959444444, "fullName": "Xingyi Airport" } }, { "key": "330", "attributes": { "latitude": 28.8005555556, "longitude": 104.545, "fullName": "Yibin Caiba Airport" } }, { "key": "265", "attributes": { "latitude": 31.919701, "longitude": 119.778999, "fullName": "Changzhou Benniu Airport" } }, { "key": "1912", "attributes": { "latitude": 29.3386001587, "longitude": 117.176002502, "fullName": "Jingdezhen Airport" } }, { "key": "2622", "attributes": { "latitude": 39.782798767089844, "longitude": 116.38800048828125, "fullName": "Beijing Nanyuan Airport" } }, { "key": "324", "attributes": { "latitude": 30.8017, "longitude": 108.433, "fullName": "Wanxian Airport" } }, { "key": "1853", "attributes": { "latitude": 27.883333, "longitude": 109.308889, "fullName": "Tongren Fenghuang Airport" } }, { "key": "1911", "attributes": { "latitude": 28.56220054626465, "longitude": 121.42900085449219, "fullName": "Huangyan Luqiao Airport" } }, { "key": "332", "attributes": { "latitude": 32.5634, "longitude": 119.7198, "fullName": "Yangzhou Taizhou Airport" } }, { "key": "282", "attributes": { "latitude": 29.5133333333, "longitude": 108.831111111, "fullName": "Qianjiang Wulingshan Airport" } }, { "key": "1975", "attributes": { "latitude": 26.32217, "longitude": 109.1499, "fullName": "Liping Airport" } }, { "key": "298", "attributes": { "latitude": 31.4281005859375, "longitude": 104.74099731445312, "fullName": "Mianyang Airport" } }, { "key": "328", "attributes": { "latitude": 36.5275, "longitude": 102.042999, "fullName": "Xining Caojiabu Airport" } }, { "key": "1908", "attributes": { "latitude": 42.8414, "longitude": 93.669197, "fullName": "Hami Airport" } }, { "key": "1917", "attributes": { "latitude": 41.69779968261719, "longitude": 86.12889862060547, "fullName": "Korla Airport" } }, { "key": "320", "attributes": { "latitude": 38.35971, "longitude": 109.590927, "fullName": "Yulin Yuyang Airport" } }, { "key": "1554", "attributes": { "latitude": 42.066944, "longitude": 127.602222, "fullName": "Changbaishan Airport" } }, { "key": "1934", "attributes": { "latitude": 42.8828010559, "longitude": 129.451004028, "fullName": "Yanji Chaoyangchuan Airport" } }, { "key": "1991", "attributes": { "latitude": 27.325599670410156, "longitude": 103.75499725341797, "fullName": "Zhaotong Airport" } }, { "key": "325", "attributes": { "latitude": 27.989099502563477, "longitude": 102.18399810791016, "fullName": "Xichang Qingshan Airport" } }, { "key": "306", "attributes": { "latitude": 26.54, "longitude": 101.79852, "fullName": "Bao'anying Airport" } }, { "key": "294", "attributes": { "latitude": 29.2978000641, "longitude": 90.91190338130001, "fullName": "Lhasa Gonggar Airport" } }, { "key": "2448", "attributes": { "latitude": 36.636902, "longitude": 109.554001, "fullName": "Yan'an Ershilipu Airport" } }, { "key": "1851", "attributes": { "latitude": 26.338661, "longitude": 111.610043, "fullName": "Lingling Airport" } }, { "key": "296", "attributes": { "latitude": 29.303300857543945, "longitude": 94.33529663085938, "fullName": "Nyingchi Airport" } }, { "key": "1894", "attributes": { "latitude": 41.262501, "longitude": 80.291702, "fullName": "Aksu Airport" } }, { "key": "841", "attributes": { "latitude": 24.9380555556, "longitude": 98.48583333330001, "fullName": "Tengchong Tuofeng Airport" } }, { "key": "2720", "attributes": { "latitude": 30.1575, "longitude": 101.734722, "fullName": "Kangding Airport" } }, { "key": "285", "attributes": { "latitude": 39.5429000854, "longitude": 76.0199966431, "fullName": "Kashgar Airport" } }, { "key": "1895", "attributes": { "latitude": 30.553600311279297, "longitude": 97.1082992553711, "fullName": "Qamdo Bangda Airport" } }, { "key": "838", "attributes": { "latitude": 25.649401, "longitude": 100.319, "fullName": "Dali Airport" } }, { "key": "267", "attributes": { "latitude": 29.323056, "longitude": 100.053333, "fullName": "Daocheng Yading Airport" } }, { "key": "1932", "attributes": { "latitude": 43.955799, "longitude": 81.330299, "fullName": "Yining Airport" } }, { "key": "266", "attributes": { "latitude": 40.060299, "longitude": 113.482002, "fullName": "Datong Airport" } }, { "key": "2230", "attributes": { "latitude": 39.968102, "longitude": 119.731003, "fullName": "Shanhaiguan Airport" } }, { "key": "1897", "attributes": { "latitude": 42.23500061035156, "longitude": 118.90799713134766, "fullName": "Chifeng Airport" } }, { "key": "1896", "attributes": { "latitude": 41.538101, "longitude": 120.434998, "fullName": "Chaoyang Airport" } }, { "key": "1920", "attributes": { "latitude": 44.5241012573, "longitude": 129.569000244, "fullName": "Mudanjiang Hailang International Airport" } }, { "key": "1981", "attributes": { "latitude": 47.7520555556, "longitude": 129.019125, "fullName": "Lindu Airport" } }, { "key": "1849", "attributes": { "latitude": 46.84339904789999, "longitude": 130.464996338, "fullName": "Jiamusi Airport" } }, { "key": "273", "attributes": { "latitude": 34.8105, "longitude": 102.6447, "fullName": "Gannan Xiahe Airport" } }, { "key": "1923", "attributes": { "latitude": 40.926, "longitude": 107.7428, "fullName": "Bayannur Tianjitai Airport" } }, { "key": "1927", "attributes": { "latitude": 39.7934, "longitude": 106.7993, "fullName": "Wuhai Airport" } }, { "key": "1930", "attributes": { "latitude": 43.91559982299805, "longitude": 115.96399688720703, "fullName": "Xilinhot Airport" } }, { "key": "1907", "attributes": { "latitude": 46.195333, "longitude": 122.008333, "fullName": "Ulanhot Airport" } }, { "key": "2396", "attributes": { "latitude": 43.4225, "longitude": 112.096667, "fullName": "Erenhot Saiwusu International Airport" } }, { "key": "2532", "attributes": { "latitude": 47.3106, "longitude": 119.9117, "fullName": "Arxan Yi'ershi Airport" } }, { "key": "1846", "attributes": { "latitude": 50.1716209371, "longitude": 127.308883667, "fullName": "Heihe Airport" } }, { "key": "1850", "attributes": { "latitude": 45.293, "longitude": 131.193, "fullName": "Jixi Xingkaihu Airport" } }, { "key": "1979", "attributes": { "latitude": 37.9558982849, "longitude": 139.121002197, "fullName": "Niigata Airport" } }, { "key": "1852", "attributes": { "latitude": 52.912777777799995, "longitude": 122.43, "fullName": "Gu-Lian Airport" } }, { "key": "1848", "attributes": { "latitude": 50.371389, "longitude": 124.1175, "fullName": "Jiagedaqi Airport" } }, { "key": "2280", "attributes": { "latitude": 33.479400634799994, "longitude": 131.736999512, "fullName": "Oita Airport" } }, { "key": "2546", "attributes": { "latitude": 39.6156005859375, "longitude": 140.218994140625, "fullName": "Akita Airport" } }, { "key": "2551", "attributes": { "latitude": 33.930000305200004, "longitude": 131.279006958, "fullName": "Yamaguchi Ube Airport" } }, { "key": "1924", "attributes": { "latitude": 35.896872, "longitude": 128.65531, "fullName": "Daegu Airport" } }, { "key": "2536", "attributes": { "latitude": 40.73469924926758, "longitude": 140.6909942626953, "fullName": "Aomori Airport" } }, { "key": "2540", "attributes": { "latitude": 32.83729934692383, "longitude": 130.85499572753906, "fullName": "Kumamoto Airport" } }, { "key": "1825", "attributes": { "latitude": 35.4921989440918, "longitude": 133.23599243164062, "fullName": "Miho Yonago Airport" } }, { "key": "903", "attributes": { "latitude": 33.149700164799995, "longitude": 130.302001953, "fullName": "Saga Airport" } }, { "key": "280", "attributes": { "latitude": 39.856899, "longitude": 98.3414, "fullName": "Jiayuguan Airport" } }, { "key": "2398", "attributes": { "latitude": 38.542222222199996, "longitude": 102.348333333, "fullName": "Jinchuan Airport" } }, { "key": "1909", "attributes": { "latitude": 29.9342002869, "longitude": 122.361999512, "fullName": "Zhoushan Airport" } }, { "key": "2721", "attributes": { "latitude": 32.1, "longitude": 80.0530555556, "fullName": "Ngari Gunsa Airport" } }, { "key": "840", "attributes": { "latitude": 22.793301, "longitude": 100.959, "fullName": "Pu'er Simao Airport" } }, { "key": "1974", "attributes": { "latitude": 25.053301, "longitude": 99.168297, "fullName": "Baoshan Yunduan Airport" } }, { "key": "842", "attributes": { "latitude": 27.8025, "longitude": 114.3062, "fullName": "Yichun Mingyueshan Airport" } }, { "key": "1983", "attributes": { "latitude": 23.738100051900002, "longitude": 100.025001526, "fullName": "Lintsang Airfield" } }, { "key": "2311", "attributes": { "latitude": 23.456699, "longitude": 111.248001, "fullName": "Wuzhou Changzhoudao Airport" } }, { "key": "2397", "attributes": { "latitude": 35.799702, "longitude": 107.602997, "fullName": "Qingyang Airport" } }, { "key": "2399", "attributes": { "latitude": 38.8018989563, "longitude": 100.675003052, "fullName": "Zhangye Ganzhou Airport" } }, { "key": "2556", "attributes": { "latitude": -42.836101532, "longitude": 147.509994507, "fullName": "Hobart International Airport" } }, { "key": "2560", "attributes": { "latitude": -21.171699523900003, "longitude": 149.179992676, "fullName": "Mackay Airport" } }, { "key": "2559", "attributes": { "latitude": -26.6033, "longitude": 153.091003, "fullName": "Sunshine Coast Airport" } }, { "key": "2561", "attributes": { "latitude": -32.79499816894531, "longitude": 151.83399963378906, "fullName": "Newcastle Airport" } }, { "key": "3046", "attributes": { "latitude": -40.9989013671875, "longitude": 145.7310028076172, "fullName": "Wynyard Airport" } }, { "key": "2959", "attributes": { "latitude": -30.3206005096, "longitude": 153.115997314, "fullName": "Coffs Harbour Airport" } }, { "key": "3399", "attributes": { "latitude": -37.745601654052734, "longitude": 140.78500366210938, "fullName": "Mount Gambier Airport" } }, { "key": "3400", "attributes": { "latitude": -36.9085998535, "longitude": 149.901000977, "fullName": "Merimbula Airport" } }, { "key": "2554", "attributes": { "latitude": -28.8339004517, "longitude": 153.56199646, "fullName": "Ballina Byron Gateway Airport" } }, { "key": "2977", "attributes": { "latitude": -35.1652984619, "longitude": 147.466003418, "fullName": "Wagga Wagga City Airport" } }, { "key": "2557", "attributes": { "latitude": -20.3581008911, "longitude": 148.95199585, "fullName": "Hamilton Island Airport" } }, { "key": "3048", "attributes": { "latitude": -39.877498626708984, "longitude": 143.8780059814453, "fullName": "King Island Airport" } }, { "key": "2953", "attributes": { "latitude": -36.06779861450195, "longitude": 146.95799255371094, "fullName": "Albury Airport" } }, { "key": "2120", "attributes": { "latitude": -41.3272018433, "longitude": 174.804992676, "fullName": "Wellington International Airport" } }, { "key": "2558", "attributes": { "latitude": -41.54529953, "longitude": 147.214004517, "fullName": "Launceston Airport" } }, { "key": "2971", "attributes": { "latitude": -34.229198455799995, "longitude": 142.085998535, "fullName": "Mildura Airport" } }, { "key": "2961", "attributes": { "latitude": -41.1697006226, "longitude": 146.429992676, "fullName": "Devonport Airport" } }, { "key": "2121", "attributes": { "latitude": -45.0210990906, "longitude": 168.738998413, "fullName": "Queenstown International Airport" } }, { "key": "2098", "attributes": { "latitude": 48.13570022583008, "longitude": 114.64600372314453, "fullName": "Choibalsan Airport" } }, { "key": "1970", "attributes": { "latitude": 41.105301, "longitude": 122.853996, "fullName": "Anshan Air Base" } }, { "key": "1922", "attributes": { "latitude": 47.239601135253906, "longitude": 123.91799926757812, "fullName": "Qiqihar Sanjiazi Airport" } }, { "key": "1921", "attributes": { "latitude": 34.991406, "longitude": 126.382814, "fullName": "Muan International Airport" } }, { "key": "1900", "attributes": { "latitude": 40.0247, "longitude": 124.286003, "fullName": "Dandong Airport" } }, { "key": "335", "attributes": { "latitude": 37.573125, "longitude": 105.154454, "fullName": "Zhongwei Shapotou Airport" } }, { "key": "1901", "attributes": { "latitude": 46.7463888889, "longitude": 125.140555556, "fullName": "Saertu Airport" } }, { "key": "411", "attributes": { "latitude": 32.541099548339844, "longitude": -116.97000122070312, "fullName": "General Abelardo L. Rodríguez International Airport" } }, { "key": "904", "attributes": { "latitude": 36.181098938, "longitude": 140.414993286, "fullName": "Hyakuri Airport" } }, { "key": "2443", "attributes": { "latitude": 38.061298, "longitude": 128.669006, "fullName": "Yangyang International Airport" } }, { "key": "2724", "attributes": { "latitude": 40.7386016846, "longitude": 114.930000305, "fullName": "Zhangjiakou Ningyuan Airport" } }, { "key": "3161", "attributes": { "latitude": 14.174300193786621, "longitude": 145.2429962158203, "fullName": "Rota International Airport" } }, { "key": "2976", "attributes": { "latitude": -31.0839004517, "longitude": 150.847000122, "fullName": "Tamworth Airport" } }, { "key": "2807", "attributes": { "latitude": -29.04159927368164, "longitude": 167.93899536132812, "fullName": "Norfolk Island International Airport" } }, { "key": "2968", "attributes": { "latitude": -31.5382995605, "longitude": 159.07699585, "fullName": "Lord Howe Island Airport" } }, { "key": "2228", "attributes": { "latitude": -17.699300765991, "longitude": 168.32000732422, "fullName": "Bauerfield International Airport" } }, { "key": "2562", "attributes": { "latitude": -20.4950008392, "longitude": 148.552001953, "fullName": "Proserpine Whitsunday Coast Airport" } }, { "key": "2814", "attributes": { "latitude": -31.4358005524, "longitude": 152.863006592, "fullName": "Port Macquarie Airport" } }, { "key": "2423", "attributes": { "latitude": -21.2026996613, "longitude": -159.805999756, "fullName": "Rarotonga International Airport" } }, { "key": "2954", "attributes": { "latitude": -30.528099060099997, "longitude": 151.617004395, "fullName": "Armidale Airport" } }, { "key": "2224", "attributes": { "latitude": -21.241199493408203, "longitude": -175.14999389648438, "fullName": "Fua'amotu International Airport" } }, { "key": "2966", "attributes": { "latitude": -25.3188991547, "longitude": 152.880004883, "fullName": "Hervey Bay Airport" } }, { "key": "3403", "attributes": { "latitude": -33.3816986084, "longitude": 149.132995605, "fullName": "Orange Airport" } }, { "key": "2963", "attributes": { "latitude": -23.869699, "longitude": 151.223007, "fullName": "Gladstone Airport" } }, { "key": "3390", "attributes": { "latitude": -32.0013999939, "longitude": 141.472000122, "fullName": "Broken Hill Airport" } }, { "key": "2222", "attributes": { "latitude": -18.04330062866211, "longitude": 178.5590057373047, "fullName": "Nausori International Airport" } }, { "key": "3404", "attributes": { "latitude": -33.131401062, "longitude": 148.238998413, "fullName": "Parkes Airport" } }, { "key": "3401", "attributes": { "latitude": -35.8978004456, "longitude": 150.143997192, "fullName": "Moruya Airport" } }, { "key": "2213", "attributes": { "latitude": -13.829999923706055, "longitude": -172.00799560546875, "fullName": "Faleolo International Airport" } }, { "key": "2960", "attributes": { "latitude": -32.2167015076, "longitude": 148.574996948, "fullName": "Dubbo City Regional Airport" } }, { "key": "2552", "attributes": { "latitude": -38.039398, "longitude": 144.468994, "fullName": "Avalon Airport" } }, { "key": "3406", "attributes": { "latitude": -31.8885993958, "longitude": 152.514007568, "fullName": "Taree Airport" } }, { "key": "3394", "attributes": { "latitude": -34.2508010864, "longitude": 146.067001343, "fullName": "Griffith Airport" } }, { "key": "3398", "attributes": { "latitude": -28.8302993774, "longitude": 153.259994507, "fullName": "Lismore Airport" } }, { "key": "2972", "attributes": { "latitude": -29.498899459799997, "longitude": 149.845001221, "fullName": "Moree Airport" } }, { "key": "3391", "attributes": { "latitude": -33.4094009399, "longitude": 149.651992798, "fullName": "Bathurst Airport" } }, { "key": "3402", "attributes": { "latitude": -34.7022018433, "longitude": 146.511993408, "fullName": "Narrandera Airport" } }, { "key": "2553", "attributes": { "latitude": -25.1861, "longitude": 130.975998, "fullName": "Ayers Rock Connellan Airport" } }, { "key": "2940", "attributes": { "latitude": -27.542801, "longitude": 151.916, "fullName": "Toowoomba Airport" } }, { "key": "1916", "attributes": { "latitude": 28.965799, "longitude": 118.899002, "fullName": "Quzhou Airport" } }, { "key": "1508", "attributes": { "latitude": 24.023099899291992, "longitude": 121.61799621582031, "fullName": "Hualien Airport" } }, { "key": "1514", "attributes": { "latitude": 22.7549991607666, "longitude": 121.10199737548828, "fullName": "Taitung Airport" } }, { "key": "1509", "attributes": { "latitude": 24.4279, "longitude": 118.359001, "fullName": "Kinmen Airport" } }, { "key": "1511", "attributes": { "latitude": 23.568700790405273, "longitude": 119.62799835205078, "fullName": "Makung Airport" } }, { "key": "1910", "attributes": { "latitude": 37.03850173950195, "longitude": 79.86489868164062, "fullName": "Hotan Airport" } }, { "key": "1989", "attributes": { "latitude": 46.67250061035156, "longitude": 83.3407974243164, "fullName": "Tacheng Airport" } }, { "key": "1968", "attributes": { "latitude": 47.7498855591, "longitude": 88.08580780030002, "fullName": "Altay Air Base" } }, { "key": "1978", "attributes": { "latitude": 41.677856, "longitude": 82.872917, "fullName": "Kuqa Airport" } }, { "key": "1980", "attributes": { "latitude": 45.46655, "longitude": 84.9527, "fullName": "Karamay Airport" } }, { "key": "1986", "attributes": { "latitude": 43.4318, "longitude": 83.3786, "fullName": "Xinyuan Nalati Airport" } }, { "key": "2395", "attributes": { "latitude": 44.895, "longitude": 82.3, "fullName": "Alashankou Bole (Bortala) airport" } }, { "key": "1534", "attributes": { "latitude": 30.3202991486, "longitude": 109.48500061, "fullName": "Enshi Airport" } }, { "key": "2719", "attributes": { "latitude": 36.4006, "longitude": 94.786102, "fullName": "Golmud Airport" } }, { "key": "2723", "attributes": { "latitude": 32.836388888900004, "longitude": 97.0363888889, "fullName": "Yushu Batang Airport" } }, { "key": "845", "attributes": { "latitude": 49.950801849365234, "longitude": -125.27100372314453, "fullName": "Campbell River Airport" } }, { "key": "849", "attributes": { "latitude": 52.1831016541, "longitude": -122.054000854, "fullName": "Williams Lake Airport" } }, { "key": "853", "attributes": { "latitude": 49.0555992126, "longitude": -117.60900116, "fullName": "Trail Airport" } }, { "key": "976", "attributes": { "latitude": 53.8894004822, "longitude": -122.679000854, "fullName": "Prince George Airport" } }, { "key": "850", "attributes": { "latitude": 49.610801696777, "longitude": -115.78199768066, "fullName": "Cranbrook/Canadian Rockies International Airport" } }, { "key": "1254", "attributes": { "latitude": 21.97599983215332, "longitude": -159.33900451660156, "fullName": "Lihue Airport" } }, { "key": "969", "attributes": { "latitude": 55.7422981262207, "longitude": -120.18299865722656, "fullName": "Dawson Creek Airport" } }, { "key": "1426", "attributes": { "latitude": 53.25429916379999, "longitude": -131.813995361, "fullName": "Sandspit Airport" } }, { "key": "843", "attributes": { "latitude": 52.387501, "longitude": -126.596001, "fullName": "Bella Coola Airport" } }, { "key": "970", "attributes": { "latitude": 50.7022018433, "longitude": -120.444000244, "fullName": "Kamloops Airport" } }, { "key": "1421", "attributes": { "latitude": 49.46310043334961, "longitude": -119.60199737548828, "fullName": "Penticton Airport" } }, { "key": "1402", "attributes": { "latitude": 54.286098480199996, "longitude": -130.445007324, "fullName": "Prince Rupert Airport" } }, { "key": "1245", "attributes": { "latitude": 19.738783, "longitude": -156.045603, "fullName": "Ellison Onizuka Kona International At Keahole Airport" } }, { "key": "1401", "attributes": { "latitude": 56.653301239, "longitude": -111.222000122, "fullName": "Fort McMurray Airport" } }, { "key": "852", "attributes": { "latitude": 50.680599212646484, "longitude": -127.36699676513672, "fullName": "Port Hardy Airport" } }, { "key": "855", "attributes": { "latitude": 54.02750015258789, "longitude": -132.125, "fullName": "Masset Airport" } }, { "key": "848", "attributes": { "latitude": 49.71080017089844, "longitude": -124.88700103759766, "fullName": "Comox Airport" } }, { "key": "1394", "attributes": { "latitude": 49.054970224899996, "longitude": -123.869862556, "fullName": "Nanaimo Airport" } }, { "key": "376", "attributes": { "latitude": 60.7095985413, "longitude": -135.067001343, "fullName": "Whitehorse / Erik Nielsen International Airport" } }, { "key": "975", "attributes": { "latitude": 56.23809814453125, "longitude": -120.73999786376953, "fullName": "Fort St John Airport" } }, { "key": "978", "attributes": { "latitude": 54.82469940185547, "longitude": -127.18299865722656, "fullName": "Smithers Airport" } }, { "key": "1395", "attributes": { "latitude": 49.2963981628, "longitude": -117.632003784, "fullName": "Castlegar/West Kootenay Regional Airport" } }, { "key": "974", "attributes": { "latitude": 53.026100158691406, "longitude": -122.51000213623047, "fullName": "Quesnel Airport" } }, { "key": "977", "attributes": { "latitude": 54.468498, "longitude": -128.576009, "fullName": "Northwest Regional Airport Terrace-Kitimat" } }, { "key": "847", "attributes": { "latitude": 49.83420181274414, "longitude": -124.5, "fullName": "Powell River Airport" } }, { "key": "374", "attributes": { "latitude": 49.9561004639, "longitude": -119.377998352, "fullName": "Kelowna International Airport" } }, { "key": "851", "attributes": { "latitude": 48.646900177, "longitude": -123.426002502, "fullName": "Victoria International Airport" } }, { "key": "1260", "attributes": { "latitude": 31.9424991607666, "longitude": -102.2020034790039, "fullName": "Midland International Airport" } }, { "key": "1203", "attributes": { "latitude": 44.12459945678711, "longitude": -123.21199798583984, "fullName": "Mahlon Sweet Field" } }, { "key": "2304", "attributes": { "latitude": 42.19540023803711, "longitude": -89.09719848632812, "fullName": "Chicago Rockford International Airport" } }, { "key": "2044", "attributes": { "latitude": 48.2593994140625, "longitude": -101.27999877929688, "fullName": "Minot International Airport" } }, { "key": "1206", "attributes": { "latitude": 36.77619934082031, "longitude": -119.71800231933594, "fullName": "Fresno Yosemite International Airport" } }, { "key": "1693", "attributes": { "latitude": 46.26470184326172, "longitude": -119.11900329589844, "fullName": "Tri Cities Airport" } }, { "key": "1264", "attributes": { "latitude": 26.17580032, "longitude": -98.23860168, "fullName": "Mc Allen Miller International Airport" } }, { "key": "1288", "attributes": { "latitude": 34.055999755859375, "longitude": -117.60099792480469, "fullName": "Ontario International Airport" } }, { "key": "937", "attributes": { "latitude": 45.807701110839844, "longitude": -108.54299926757812, "fullName": "Billings Logan International Airport" } }, { "key": "1173", "attributes": { "latitude": 34.20069885253906, "longitude": -118.35900115966797, "fullName": "Bob Hope Airport" } }, { "key": "1148", "attributes": { "latitude": 35.219398, "longitude": -101.706001, "fullName": "Rick Husband Amarillo International Airport" } }, { "key": "1215", "attributes": { "latitude": 47.61989974975586, "longitude": -117.53399658203125, "fullName": "Spokane International Airport" } }, { "key": "1265", "attributes": { "latitude": 42.37419891357422, "longitude": -122.87300109863281, "fullName": "Rogue Valley International Medford Airport" } }, { "key": "2037", "attributes": { "latitude": 43.514599, "longitude": -112.070999, "fullName": "Idaho Falls Regional Airport" } }, { "key": "1277", "attributes": { "latitude": 36.58700180053711, "longitude": -121.84300231933594, "fullName": "Monterey Peninsula Airport" } }, { "key": "2021", "attributes": { "latitude": 46.772701263427734, "longitude": -100.74600219726562, "fullName": "Bismarck Municipal Airport" } }, { "key": "1223", "attributes": { "latitude": 40.967498779296875, "longitude": -98.30960083007812, "fullName": "Central Nebraska Regional Airport" } }, { "key": "1686", "attributes": { "latitude": 47.48199844, "longitude": -111.3710022, "fullName": "Great Falls International Airport" } }, { "key": "1690", "attributes": { "latitude": 46.91630173, "longitude": -114.0910034, "fullName": "Missoula International Airport" } }, { "key": "1685", "attributes": { "latitude": 48.31050109863281, "longitude": -114.25599670410156, "fullName": "Glacier Park International Airport" } }, { "key": "2293", "attributes": { "latitude": 33.30780029, "longitude": -111.6549988, "fullName": "Phoenix-Mesa-Gateway Airport" } }, { "key": "2306", "attributes": { "latitude": 34.89889908, "longitude": -120.4570007, "fullName": "Santa Maria Pub/Capt G Allan Hancock Field" } }, { "key": "916", "attributes": { "latitude": 47.949299, "longitude": -97.176102, "fullName": "Grand Forks International Airport" } }, { "key": "1251", "attributes": { "latitude": 33.81769943, "longitude": -118.1520004, "fullName": "Long Beach /Daugherty Field/ Airport" } }, { "key": "2030", "attributes": { "latitude": 42.908001, "longitude": -106.463997, "fullName": "Casper-Natrona County International Airport" } }, { "key": "1218", "attributes": { "latitude": 39.1223983765, "longitude": -108.527000427, "fullName": "Grand Junction Regional Airport" } }, { "key": "1256", "attributes": { "latitude": 27.543800354003906, "longitude": -99.46160125732422, "fullName": "Laredo International Airport" } }, { "key": "1248", "attributes": { "latitude": 33.663601, "longitude": -101.822998, "fullName": "Lubbock Preston Smith International Airport" } }, { "key": "1680", "attributes": { "latitude": 48.79280090332031, "longitude": -122.53800201416016, "fullName": "Bellingham International Airport" } }, { "key": "2305", "attributes": { "latitude": 37.894199371338, "longitude": -121.2379989624, "fullName": "Stockton Metropolitan Airport" } }, { "key": "3136", "attributes": { "latitude": 33.12829971, "longitude": -117.2799988, "fullName": "Mc Clellan-Palomar Airport" } }, { "key": "1352", "attributes": { "latitude": 32.65660095, "longitude": -114.6060028, "fullName": "Yuma MCAS/Yuma International Airport" } }, { "key": "2433", "attributes": { "latitude": 19.721399307250977, "longitude": -155.04800415039062, "fullName": "Hilo International Airport" } }, { "key": "1274", "attributes": { "latitude": 37.62409973, "longitude": -118.8379974, "fullName": "Mammoth Yosemite Airport" } }, { "key": "3385", "attributes": { "latitude": 34.65449905, "longitude": -112.4199982, "fullName": "Ernest A. Love Field" } }, { "key": "1335", "attributes": { "latitude": 38.50899887, "longitude": -122.8130035, "fullName": "Charles M. Schulz Sonoma County Airport" } }, { "key": "393", "attributes": { "latitude": 29.095899581900003, "longitude": -111.047996521, "fullName": "General Ignacio P. Garcia International Airport" } }, { "key": "1317", "attributes": { "latitude": 34.42620087, "longitude": -119.8399963, "fullName": "Santa Barbara Municipal Airport" } }, { "key": "1299", "attributes": { "latitude": -17.553699, "longitude": -149.606995, "fullName": "Faa'a International Airport" } }, { "key": "417", "attributes": { "latitude": 17.601600647, "longitude": -101.460998535, "fullName": "Ixtapa Zihuatanejo International Airport" } }, { "key": "1688", "attributes": { "latitude": 25.989200592041016, "longitude": -111.3479995727539, "fullName": "Loreto International Airport" } }, { "key": "3389", "attributes": { "latitude": 36.3186988831, "longitude": -119.392997742, "fullName": "Visalia Municipal Airport" } }, { "key": "1645", "attributes": { "latitude": 24.1242008209, "longitude": -104.527999878, "fullName": "General Guadalupe Victoria International Airport" } }, { "key": "1272", "attributes": { "latitude": 19.849899292, "longitude": -101.025001526, "fullName": "General Francisco J. Mujica International Airport" } }, { "key": "1157", "attributes": { "latitude": 35.43360138, "longitude": -119.0569992, "fullName": "Meadows Field" } }, { "key": "1304", "attributes": { "latitude": 44.2541008, "longitude": -121.1500015, "fullName": "Roberts Field" } }, { "key": "3131", "attributes": { "latitude": 39.22320175, "longitude": -106.8690033, "fullName": "Aspen-Pitkin Co/Sardy Field" } }, { "key": "400", "attributes": { "latitude": 23.1613998413, "longitude": -106.26599884, "fullName": "General Rafael Buelna International Airport" } }, { "key": "3345", "attributes": { "latitude": 19.396699905395508, "longitude": -102.03900146484375, "fullName": "Licenciado y General Ignacio Lopez Rayon Airport" } }, { "key": "2303", "attributes": { "latitude": 40.219200134277, "longitude": -111.72299957275, "fullName": "Provo Municipal Airport" } }, { "key": "416", "attributes": { "latitude": 22.8971004486, "longitude": -102.68699646, "fullName": "General Leobardo C. Ruiz International Airport" } }, { "key": "418", "attributes": { "latitude": 19.144800186199998, "longitude": -104.558998108, "fullName": "Playa De Oro International Airport" } }, { "key": "380", "attributes": { "latitude": 21.705601, "longitude": -102.318001, "fullName": "Jesús Terán Paredo International Airport" } }, { "key": "3383", "attributes": { "latitude": 37.28469849, "longitude": -120.5139999, "fullName": "Merced Regional Macready Field" } }, { "key": "1318", "attributes": { "latitude": 35.236801147499996, "longitude": -120.641998291, "fullName": "San Luis County Regional Airport" } }, { "key": "1313", "attributes": { "latitude": 35.617099762, "longitude": -106.088996887, "fullName": "Santa Fe Municipal Airport" } }, { "key": "2232", "attributes": { "latitude": 12.829500198364258, "longitude": 45.02880096435547, "fullName": "Aden International Airport" } }, { "key": "2126", "attributes": { "latitude": 24.144199, "longitude": 38.0634, "fullName": "Prince Abdulmohsin Bin Abdulaziz Airport" } }, { "key": "2233", "attributes": { "latitude": 18.240400314299997, "longitude": 42.65660095210001, "fullName": "Abha Regional Airport" } }, { "key": "2290", "attributes": { "latitude": 19.4335994720459, "longitude": 37.234100341796875, "fullName": "Port Sudan New International Airport" } }, { "key": "2528", "attributes": { "latitude": 25.671, "longitude": 32.7066, "fullName": "Luxor International Airport" } }, { "key": "2313", "attributes": { "latitude": 26.342778, "longitude": 31.742778, "fullName": "Sohag International Airport" } }, { "key": "2123", "attributes": { "latitude": 26.302799224853516, "longitude": 43.77439880371094, "fullName": "Gassim Airport" } }, { "key": "2125", "attributes": { "latitude": 28.3654, "longitude": 36.6189, "fullName": "Tabuk Airport" } }, { "key": "2669", "attributes": { "latitude": 23.9643993378, "longitude": 32.8199996948, "fullName": "Aswan International Airport" } }, { "key": "2124", "attributes": { "latitude": 21.483001, "longitude": 40.543442, "fullName": "Ta’if Regional Airport" } }, { "key": "2312", "attributes": { "latitude": 27.0464992523, "longitude": 31.0119991302, "fullName": "Assiut International Airport" } }, { "key": "2237", "attributes": { "latitude": 14.662599563598633, "longitude": 49.375, "fullName": "Mukalla International Airport" } }, { "key": "891", "attributes": { "latitude": 30.917699813842773, "longitude": 29.696399688720703, "fullName": "Borg El Arab International Airport" } }, { "key": "670", "attributes": { "latitude": 29.56130027770996, "longitude": 34.96009826660156, "fullName": "Eilat Airport" } }, { "key": "3251", "attributes": { "latitude": 49.242531, "longitude": 28.613778, "fullName": "Vinnytsia/Gavyryshivka Airport" } }, { "key": "341", "attributes": { "latitude": 62.95289993, "longitude": -155.6060028, "fullName": "McGrath Airport" } }, { "key": "342", "attributes": { "latitude": 63.0186, "longitude": -154.358002, "fullName": "Nikolai Airport" } }, { "key": "712", "attributes": { "latitude": 61.581600189208984, "longitude": -159.54299926757812, "fullName": "Aniak Airport" } }, { "key": "344", "attributes": { "latitude": 62.894401550299996, "longitude": -155.977005005, "fullName": "Tatalina LRRS Airport" } }, { "key": "597", "attributes": { "latitude": 66.00469970703125, "longitude": 57.3671989440918, "fullName": "Usinsk Airport" } }, { "key": "2991", "attributes": { "latitude": 69.783302307129, "longitude": 170.59700012207, "fullName": "Pevek Airport" } }, { "key": "2073", "attributes": { "latitude": 53.20690155029297, "longitude": 63.55030059814453, "fullName": "Kostanay West Airport" } }, { "key": "2682", "attributes": { "latitude": 47.867000579833984, "longitude": 35.31570053100586, "fullName": "Zaporizhzhia International Airport" } }, { "key": "3181", "attributes": { "latitude": 51.7505989074707, "longitude": 36.29560089111328, "fullName": "Kursk East Airport" } }, { "key": "1137", "attributes": { "latitude": 42.176700592, "longitude": 42.4826011658, "fullName": "Kopitnari Airport" } }, { "key": "3180", "attributes": { "latitude": 52.806098937988, "longitude": 41.482799530029, "fullName": "Donskoye Airport" } }, { "key": "353", "attributes": { "latitude": 22.801000595092773, "longitude": 90.30120086669922, "fullName": "Barisal Airport" } }, { "key": "1612", "attributes": { "latitude": 25.70359992980957, "longitude": 91.97869873046875, "fullName": "Shillong Airport" } }, { "key": "642", "attributes": { "latitude": 20.244400024399997, "longitude": 85.8178024292, "fullName": "Biju Patnaik Airport" } }, { "key": "665", "attributes": { "latitude": 21.180401, "longitude": 81.7388, "fullName": "Raipur Airport" } }, { "key": "1602", "attributes": { "latitude": 25.883899688699998, "longitude": 93.77110290530001, "fullName": "Dimapur Airport" } }, { "key": "1034", "attributes": { "latitude": 23.840599060099997, "longitude": 92.6196975708, "fullName": "Lengpui Airport" } }, { "key": "668", "attributes": { "latitude": 25.4524002075, "longitude": 82.8592987061, "fullName": "Lal Bahadur Shastri Airport" } }, { "key": "1054", "attributes": { "latitude": 11.641200065612793, "longitude": 92.72969818115234, "fullName": "Vir Savarkar International Airport" } }, { "key": "648", "attributes": { "latitude": 27.4839000702, "longitude": 95.0168991089, "fullName": "Dibrugarh Airport" } }, { "key": "663", "attributes": { "latitude": 25.591299057, "longitude": 85.0879974365, "fullName": "Lok Nayak Jayaprakash Airport" } }, { "key": "662", "attributes": { "latitude": 21.092199325561523, "longitude": 79.04720306396484, "fullName": "Dr. Babasaheb Ambedkar International Airport" } }, { "key": "664", "attributes": { "latitude": 18.58209991455078, "longitude": 73.9197006225586, "fullName": "Pune Airport" } }, { "key": "658", "attributes": { "latitude": 23.314300537100003, "longitude": 85.3217010498, "fullName": "Birsa Munda Airport" } }, { "key": "1052", "attributes": { "latitude": 24.9129009247, "longitude": 92.97869873050001, "fullName": "Silchar Airport" } }, { "key": "2611", "attributes": { "latitude": 27.403200149499998, "longitude": 89.42459869380001, "fullName": "Paro Airport" } }, { "key": "659", "attributes": { "latitude": 26.8242, "longitude": 75.812202, "fullName": "Jaipur International Airport" } }, { "key": "653", "attributes": { "latitude": 24.7600002289, "longitude": 93.896697998, "fullName": "Imphal Airport" } }, { "key": "654", "attributes": { "latitude": 23.8869991302, "longitude": 91.24040222170001, "fullName": "Agartala Airport" } }, { "key": "356", "attributes": { "latitude": 21.452199935913086, "longitude": 91.96389770507812, "fullName": "Cox's Bazar Airport" } }, { "key": "364", "attributes": { "latitude": 25.759199142456055, "longitude": 88.90889739990234, "fullName": "Saidpur Airport" } }, { "key": "360", "attributes": { "latitude": 23.183799743652344, "longitude": 89.16079711914062, "fullName": "Jessore Airport" } }, { "key": "365", "attributes": { "latitude": 24.963199615478516, "longitude": 91.8667984008789, "fullName": "Osmany International Airport" } }, { "key": "2291", "attributes": { "latitude": 17.038700103759766, "longitude": 54.09130096435547, "fullName": "Salalah Airport" } }, { "key": "1049", "attributes": { "latitude": 12.9612998962, "longitude": 74.8900985718, "fullName": "Mangalore International Airport" } }, { "key": "2119", "attributes": { "latitude": 32.5355567932, "longitude": 74.3638916016, "fullName": "Sialkot Airport" } }, { "key": "1794", "attributes": { "latitude": 31.337400436399996, "longitude": 48.7620010376, "fullName": "Ahwaz Airport" } }, { "key": "2113", "attributes": { "latitude": 30.549100875854492, "longitude": 47.66210174560547, "fullName": "Basrah International Airport" } }, { "key": "2997", "attributes": { "latitude": 24.283611, "longitude": 52.580278, "fullName": "Sir Bani Yas Airport" } }, { "key": "2132", "attributes": { "latitude": 28.9447994232, "longitude": 50.8345985413, "fullName": "Bushehr Airport" } }, { "key": "1796", "attributes": { "latitude": 27.218299865722656, "longitude": 56.37779998779297, "fullName": "Bandar Abbas International Airport" } }, { "key": "1801", "attributes": { "latitude": 36.235198974609375, "longitude": 59.64099884033203, "fullName": "Mashhad International Airport" } }, { "key": "1804", "attributes": { "latitude": 29.539199829101562, "longitude": 52.58980178833008, "fullName": "Shiraz Shahid Dastghaib International Airport" } }, { "key": "1807", "attributes": { "latitude": 29.47570037841797, "longitude": 60.90620040893555, "fullName": "Zahedan International Airport" } }, { "key": "1041", "attributes": { "latitude": 11.1367998123, "longitude": 75.95529937740001, "fullName": "Calicut International Airport" } }, { "key": "2143", "attributes": { "latitude": 27.3726997375, "longitude": 53.18880081179999, "fullName": "Lamerd Airport" } }, { "key": "2995", "attributes": { "latitude": 24.428300857543945, "longitude": 54.458099365234375, "fullName": "Bateen Airport" } }, { "key": "2289", "attributes": { "latitude": 31.989853, "longitude": 44.404317, "fullName": "Al Najaf International Airport" } }, { "key": "2140", "attributes": { "latitude": 31.505800247192383, "longitude": 65.8478012084961, "fullName": "Kandahar Airport" } }, { "key": "1809", "attributes": { "latitude": -29.6144444444, "longitude": 31.1197222222, "fullName": "King Shaka International Airport" } }, { "key": "2288", "attributes": { "latitude": 30.20319938659668, "longitude": 71.41909790039062, "fullName": "Multan International Airport" } }, { "key": "2286", "attributes": { "latitude": 27.437901, "longitude": 41.686298, "fullName": "Ha'il Airport" } }, { "key": "2130", "attributes": { "latitude": 26.531999588, "longitude": 54.824798584, "fullName": "Bandar Lengeh Airport" } }, { "key": "1798", "attributes": { "latitude": 32.75080108642578, "longitude": 51.86130142211914, "fullName": "Esfahan Shahid Beheshti International Airport" } }, { "key": "1799", "attributes": { "latitude": 26.5261993408, "longitude": 53.980201721200004, "fullName": "Kish International Airport" } }, { "key": "2152", "attributes": { "latitude": 25.443300247199996, "longitude": 60.3820991516, "fullName": "Konarak Airport" } }, { "key": "2144", "attributes": { "latitude": 27.6746997833, "longitude": 54.3833007812, "fullName": "Lar Airport" } }, { "key": "660", "attributes": { "latitude": 26.7605991364, "longitude": 80.8892974854, "fullName": "Chaudhary Charan Singh International Airport" } }, { "key": "2135", "attributes": { "latitude": 36.909400939899996, "longitude": 54.4012985229, "fullName": "Gorgan Airport" } }, { "key": "3064", "attributes": { "latitude": 29.78510093688965, "longitude": 40.099998474121094, "fullName": "Al-Jawf Domestic Airport" } }, { "key": "3067", "attributes": { "latitude": 24.4499, "longitude": 44.121201, "fullName": "King Salman Abdulaziz Airport" } }, { "key": "3063", "attributes": { "latitude": 20.2961006165, "longitude": 41.6343002319, "fullName": "Al Baha Airport" } }, { "key": "2146", "attributes": { "latitude": 37.6680984497, "longitude": 45.0686988831, "fullName": "Urmia Airport" } }, { "key": "3073", "attributes": { "latitude": 17.466899871826172, "longitude": 47.12139892578125, "fullName": "Sharurah Airport" } }, { "key": "2314", "attributes": { "latitude": 25.28529930114746, "longitude": 49.485198974609375, "fullName": "Al Ahsa Airport" } }, { "key": "3065", "attributes": { "latitude": 28.335199, "longitude": 46.125099, "fullName": "Al Qaisumah/Hafr Al Batin Airport" } }, { "key": "3070", "attributes": { "latitude": 16.901100158691406, "longitude": 42.58580017089844, "fullName": "Jizan Regional Airport" } }, { "key": "3071", "attributes": { "latitude": 30.906600952148438, "longitude": 41.13819885253906, "fullName": "Arar Domestic Airport" } }, { "key": "3068", "attributes": { "latitude": 17.611400604248047, "longitude": 44.4192008972168, "fullName": "Nejran Airport" } }, { "key": "3066", "attributes": { "latitude": 19.984399795532227, "longitude": 42.62089920043945, "fullName": "Bisha Airport" } }, { "key": "3076", "attributes": { "latitude": 31.412413, "longitude": 37.278898, "fullName": "Gurayat Domestic Airport" } }, { "key": "1795", "attributes": { "latitude": 31.9048995972, "longitude": 54.2765007019, "fullName": "Shahid Sadooghi Airport" } }, { "key": "2236", "attributes": { "latitude": 14.753000259399414, "longitude": 42.97629928588867, "fullName": "Hodeidah International Airport" } }, { "key": "3069", "attributes": { "latitude": 26.19860076904297, "longitude": 36.47639846801758, "fullName": "Al Wajh Domestic Airport" } }, { "key": "1806", "attributes": { "latitude": 35.68920135498047, "longitude": 51.31340026855469, "fullName": "Mehrabad International Airport" } }, { "key": "1802", "attributes": { "latitude": 37.323333, "longitude": 49.617778, "fullName": "Sardar-e-Jangal Airport" } }, { "key": "2235", "attributes": { "latitude": 15.9660997391, "longitude": 48.78829956049999, "fullName": "Sayun International Airport" } }, { "key": "3077", "attributes": { "latitude": 20.504299163800003, "longitude": 45.199600219699995, "fullName": "Wadi Al Dawasir Airport" } }, { "key": "3367", "attributes": { "latitude": 27.678101, "longitude": 84.429398, "fullName": "Bharatpur Airport" } }, { "key": "3366", "attributes": { "latitude": 26.5708007812, "longitude": 88.07959747310001, "fullName": "Bhadrapur Airport" } }, { "key": "3374", "attributes": { "latitude": 27.315001, "longitude": 87.193298, "fullName": "Tumling Tar Airport" } }, { "key": "3371", "attributes": { "latitude": 26.708799362199997, "longitude": 85.9224014282, "fullName": "Janakpur Airport" } }, { "key": "3370", "attributes": { "latitude": 28.753299713134766, "longitude": 80.58190155029297, "fullName": "Dhangarhi Airport" } }, { "key": "3368", "attributes": { "latitude": 26.48150062561035, "longitude": 87.26399993896484, "fullName": "Biratnagar Airport" } }, { "key": "3373", "attributes": { "latitude": 28.200899124145508, "longitude": 83.98210144042969, "fullName": "Pokhara Airport" } }, { "key": "3369", "attributes": { "latitude": 27.505685, "longitude": 83.416293, "fullName": "Gautam Buddha Airport" } }, { "key": "3372", "attributes": { "latitude": 28.103599548339844, "longitude": 81.66699981689453, "fullName": "Nepalgunj Airport" } }, { "key": "2886", "attributes": { "latitude": 25.233299255371094, "longitude": 62.329498291015625, "fullName": "Gwadar International Airport" } }, { "key": "2892", "attributes": { "latitude": 25.986400604248047, "longitude": 63.03020095825195, "fullName": "Turbat International Airport" } }, { "key": "3340", "attributes": { "latitude": 26.17099952697754, "longitude": 56.2406005859375, "fullName": "Khasab Air Base" } }, { "key": "363", "attributes": { "latitude": 24.43720054626465, "longitude": 88.61650085449219, "fullName": "Shah Mokhdum Airport" } }, { "key": "366", "attributes": { "latitude": 76.4261016846, "longitude": -82.90920257570001, "fullName": "Grise Fiord Airport" } }, { "key": "367", "attributes": { "latitude": 74.7169036865, "longitude": -94.9693984985, "fullName": "Resolute Bay Airport" } }, { "key": "702", "attributes": { "latitude": 73.0058922479, "longitude": -85.0325489044, "fullName": "Old Arctic Bay Airport" } }, { "key": "1183", "attributes": { "latitude": 30.58860016, "longitude": -96.36380005, "fullName": "Easterwood Field" } }, { "key": "1190", "attributes": { "latitude": 27.77039909362793, "longitude": -97.5011978149414, "fullName": "Corpus Christi International Airport" } }, { "key": "1216", "attributes": { "latitude": 32.38399887084961, "longitude": -94.71150207519531, "fullName": "East Texas Regional Airport" } }, { "key": "1246", "attributes": { "latitude": 34.5676994324, "longitude": -98.4166030884, "fullName": "Lawton Fort Sill Regional Airport" } }, { "key": "1332", "attributes": { "latitude": 33.9888, "longitude": -98.491898, "fullName": "Sheppard Air Force Base-Wichita Falls Municipal Airport" } }, { "key": "388", "attributes": { "latitude": 28.702899932900003, "longitude": -105.964996338, "fullName": "General Roberto Fierro Villalobos International Airport" } }, { "key": "1198", "attributes": { "latitude": 37.1515007019, "longitude": -107.753997803, "fullName": "Durango La Plata County Airport" } }, { "key": "1242", "attributes": { "latitude": 37.151798248291016, "longitude": -94.49829864501953, "fullName": "Joplin Regional Airport" } }, { "key": "1169", "attributes": { "latitude": 25.90679931640625, "longitude": -97.4259033203125, "fullName": "Brownsville South Padre Island International Airport" } }, { "key": "413", "attributes": { "latitude": 25.568300247199996, "longitude": -103.411003113, "fullName": "Francisco Sarabia International Airport" } }, { "key": "1142", "attributes": { "latitude": 31.611299514770508, "longitude": -97.23049926757812, "fullName": "Waco Regional Airport" } }, { "key": "1249", "attributes": { "latitude": 30.126100540161133, "longitude": -93.22329711914062, "fullName": "Lake Charles Regional Airport" } }, { "key": "1330", "attributes": { "latitude": 22.254299163800003, "longitude": -100.930999756, "fullName": "Ponciano Arriaga International Airport" } }, { "key": "1346", "attributes": { "latitude": 32.35409927368164, "longitude": -95.40239715576172, "fullName": "Tyler Pounds Regional Airport" } }, { "key": "1302", "attributes": { "latitude": 20.6173, "longitude": -100.185997, "fullName": "Querétaro Intercontinental Airport" } }, { "key": "1139", "attributes": { "latitude": 32.4113006592, "longitude": -99.68190002440001, "fullName": "Abilene Regional Airport" } }, { "key": "1213", "attributes": { "latitude": 37.9275016785, "longitude": -100.723999023, "fullName": "Garden City Regional Airport" } }, { "key": "1345", "attributes": { "latitude": 33.45370101928711, "longitude": -93.99099731445312, "fullName": "Texarkana Regional Webb Field" } }, { "key": "1310", "attributes": { "latitude": 33.30160140991211, "longitude": -104.53099822998047, "fullName": "Roswell International Air Center Airport" } }, { "key": "1290", "attributes": { "latitude": 19.1581001282, "longitude": -98.3713989258, "fullName": "Hermanos Serdán International Airport" } }, { "key": "1168", "attributes": { "latitude": 29.9507999420166, "longitude": -94.02069854736328, "fullName": "Southeast Texas Regional Airport" } }, { "key": "1327", "attributes": { "latitude": 31.35770034790039, "longitude": -100.49600219726562, "fullName": "San Angelo Regional Mathis Field" } }, { "key": "876", "attributes": { "latitude": -32.8316993713, "longitude": -68.7929000854, "fullName": "El Plumerillo Airport" } }, { "key": "1662", "attributes": { "latitude": -50.2803, "longitude": -72.053101, "fullName": "El Calafate Airport" } }, { "key": "1675", "attributes": { "latitude": -54.8433, "longitude": -68.2958, "fullName": "Malvinas Argentinas Airport" } }, { "key": "879", "attributes": { "latitude": -43.2105, "longitude": -65.2703, "fullName": "Almirante Marco Andres Zar Airport" } }, { "key": "1663", "attributes": { "latitude": -25.737301, "longitude": -54.4734, "fullName": "Cataratas Del Iguazú International Airport" } }, { "key": "871", "attributes": { "latitude": -41.151199, "longitude": -71.157501, "fullName": "San Carlos De Bariloche Airport" } }, { "key": "1220", "attributes": { "latitude": 12.004199981689453, "longitude": -61.78620147705078, "fullName": "Point Salines International Airport" } }, { "key": "1892", "attributes": { "latitude": 6.498549938201904, "longitude": -58.25410079956055, "fullName": "Cheddi Jagan International Airport" } }, { "key": "397", "attributes": { "latitude": 20.937000274699997, "longitude": -89.657699585, "fullName": "Licenciado Manuel Crescencio Rejon Int Airport" } }, { "key": "3344", "attributes": { "latitude": 26.1525993347, "longitude": -81.7752990723, "fullName": "Naples Municipal Airport" } }, { "key": "1027", "attributes": { "latitude": 10.111111, "longitude": -64.692222, "fullName": "General José Antonio Anzoategui International Airport" } }, { "key": "2627", "attributes": { "latitude": 19.687000274658203, "longitude": -79.88279724121094, "fullName": "Gerrard Smith International Airport" } }, { "key": "1409", "attributes": { "latitude": 55.1796989441, "longitude": -118.885002136, "fullName": "Grande Prairie Airport" } }, { "key": "972", "attributes": { "latitude": 58.62139892578125, "longitude": -117.16500091552734, "fullName": "High Level Airport" } }, { "key": "704", "attributes": { "latitude": 60.8396987915, "longitude": -115.782997131, "fullName": "Hay River / Merlyn Carter Airport" } }, { "key": "2515", "attributes": { "latitude": 60.020301818847656, "longitude": -111.96199798583984, "fullName": "Fort Smith Airport" } }, { "key": "3316", "attributes": { "latitude": 49.025299072265625, "longitude": -122.36100006103516, "fullName": "Abbotsford Airport" } }, { "key": "3315", "attributes": { "latitude": 43.173599243199995, "longitude": -79.93499755859999, "fullName": "John C. Munro Hamilton International Airport" } }, { "key": "378", "attributes": { "latitude": 62.462799072265625, "longitude": -114.44000244140625, "fullName": "Yellowknife Airport" } }, { "key": "973", "attributes": { "latitude": 58.49140167236328, "longitude": -119.40799713134766, "fullName": "Rainbow Lake Airport" } }, { "key": "1403", "attributes": { "latitude": 52.18220138549805, "longitude": -113.89399719238281, "fullName": "Red Deer Regional Airport" } }, { "key": "971", "attributes": { "latitude": 53.309200286865234, "longitude": -110.072998046875, "fullName": "Lloydminster Airport" } }, { "key": "3314", "attributes": { "latitude": 49.91, "longitude": -99.951897, "fullName": "Brandon Municipal Airport" } }, { "key": "1404", "attributes": { "latitude": 42.27560043334961, "longitude": -82.95559692382812, "fullName": "Windsor Airport" } }, { "key": "1405", "attributes": { "latitude": 49.6302986145, "longitude": -112.800003052, "fullName": "Lethbridge County Airport" } }, { "key": "1418", "attributes": { "latitude": 50.01890182495117, "longitude": -110.72100067138672, "fullName": "Medicine Hat Airport" } }, { "key": "884", "attributes": { "latitude": 64.190804, "longitude": -114.077002, "fullName": "Wekweètì Airport" } }, { "key": "624", "attributes": { "latitude": 65.28160095214844, "longitude": -126.7979965209961, "fullName": "Norman Wells Airport" } }, { "key": "887", "attributes": { "latitude": 62.418303, "longitude": -110.681998, "fullName": "Lutselk'e Airport" } }, { "key": "886", "attributes": { "latitude": 64.11609649658203, "longitude": -117.30999755859375, "fullName": "Rae Lakes Airport" } }, { "key": "885", "attributes": { "latitude": 63.13169860839844, "longitude": -117.24600219726562, "fullName": "Whatì Airport" } }, { "key": "703", "attributes": { "latitude": 61.76020050048828, "longitude": -121.23699951171875, "fullName": "Fort Simpson Airport" } }, { "key": "617", "attributes": { "latitude": 68.635597229, "longitude": -95.84970092770001, "fullName": "Gjoa Haven Airport" } }, { "key": "610", "attributes": { "latitude": 67.816704, "longitude": -115.143997, "fullName": "Kugluktuk Airport" } }, { "key": "609", "attributes": { "latitude": 69.1081008911, "longitude": -105.138000488, "fullName": "Cambridge Bay Airport" } }, { "key": "628", "attributes": { "latitude": 69.5466995239, "longitude": -93.5766983032, "fullName": "Taloyoak Airport" } }, { "key": "2452", "attributes": { "latitude": 65.21109771728516, "longitude": -123.43599700927734, "fullName": "Déline Airport" } }, { "key": "619", "attributes": { "latitude": 62.8114013672, "longitude": -92.1157989502, "fullName": "Rankin Inlet Airport" } }, { "key": "379", "attributes": { "latitude": 16.757099151611328, "longitude": -99.75399780273438, "fullName": "General Juan N Alvarez International Airport" } }, { "key": "381", "attributes": { "latitude": 27.39259910583496, "longitude": -109.83300018310547, "fullName": "Ciudad Obregón International Airport" } }, { "key": "382", "attributes": { "latitude": 31.63610076904297, "longitude": -106.42900085449219, "fullName": "Abraham González International Airport" } }, { "key": "383", "attributes": { "latitude": 18.65369987487793, "longitude": -91.79900360107422, "fullName": "Ciudad del Carmen International Airport" } }, { "key": "384", "attributes": { "latitude": 19.816799163800003, "longitude": -90.5002975464, "fullName": "Ingeniero Alberto Acuña Ongay International Airport" } }, { "key": "385", "attributes": { "latitude": 18.50469970703125, "longitude": -88.32679748535156, "fullName": "Chetumal International Airport" } }, { "key": "386", "attributes": { "latitude": 24.7644996643, "longitude": -107.474998474, "fullName": "Bachigualato Federal International Airport" } }, { "key": "395", "attributes": { "latitude": 24.072700500499998, "longitude": -110.361999512, "fullName": "Manuel Márquez de León International Airport" } }, { "key": "410", "attributes": { "latitude": 16.5636005402, "longitude": -93.02249908450001, "fullName": "Angel Albino Corzo International Airport" } }, { "key": "414", "attributes": { "latitude": 19.1459007263, "longitude": -96.1873016357, "fullName": "General Heriberto Jara International Airport" } }, { "key": "404", "attributes": { "latitude": 26.0089, "longitude": -98.2285, "fullName": "General Lucio Blanco International Airport" } }, { "key": "409", "attributes": { "latitude": 22.2964000702, "longitude": -97.8658981323, "fullName": "General Francisco Javier Mina International Airport" } }, { "key": "401", "attributes": { "latitude": 16.9999008179, "longitude": -96.726600647, "fullName": "Xoxocotlán International Airport" } }, { "key": "415", "attributes": { "latitude": 17.996999740600586, "longitude": -92.81739807128906, "fullName": "Carlos Rovirosa Pérez International Airport" } }, { "key": "1647", "attributes": { "latitude": 25.6851997375, "longitude": -109.081001282, "fullName": "Valle del Fuerte International Airport" } }, { "key": "1650", "attributes": { "latitude": 32.6306, "longitude": -115.241997, "fullName": "General Rodolfo Sánchez Taboada International Airport" } }, { "key": "1656", "attributes": { "latitude": 14.7943000793, "longitude": -92.3700027466, "fullName": "Tapachula International Airport" } }, { "key": "632", "attributes": { "latitude": 16.913799285899998, "longitude": -89.86640167239999, "fullName": "Mundo Maya International Airport" } }, { "key": "1964", "attributes": { "latitude": 20.08530044555664, "longitude": -75.1583023071289, "fullName": "Mariana Grajales Airport" } }, { "key": "394", "attributes": { "latitude": 15.7753, "longitude": -96.262604, "fullName": "Bahías de Huatulco International Airport" } }, { "key": "1653", "attributes": { "latitude": 28.627399, "longitude": -100.535004, "fullName": "Piedras Negras International Airport" } }, { "key": "1646", "attributes": { "latitude": 19.4750995636, "longitude": -96.7975006104, "fullName": "El Lencero Airport" } }, { "key": "1654", "attributes": { "latitude": 15.8769, "longitude": -97.089103, "fullName": "Puerto Escondido International Airport" } }, { "key": "1652", "attributes": { "latitude": 20.6026992798, "longitude": -97.46080017090001, "fullName": "El Tajín National Airport" } }, { "key": "1651", "attributes": { "latitude": 27.4438991547, "longitude": -99.5705032349, "fullName": "Quetzalcóatl International Airport" } }, { "key": "398", "attributes": { "latitude": 18.1033992767, "longitude": -94.58070373540001, "fullName": "Minatitlán/Coatzacoalcos National Airport" } }, { "key": "1648", "attributes": { "latitude": 18.0016994476, "longitude": -102.221000671, "fullName": "Lázaro Cárdenas Airport" } }, { "key": "1643", "attributes": { "latitude": 19.277, "longitude": -103.577002, "fullName": "Licenciado Miguel de la Madrid Airport" } }, { "key": "1657", "attributes": { "latitude": 21.4195, "longitude": -104.843002, "fullName": "Amado Nervo National Airport" } }, { "key": "402", "attributes": { "latitude": 17.533153, "longitude": -92.015484, "fullName": "Palenque International Airport" } }, { "key": "1649", "attributes": { "latitude": 25.7698993683, "longitude": -97.5252990723, "fullName": "General Servando Canales International Airport" } }, { "key": "1644", "attributes": { "latitude": 23.7033004761, "longitude": -98.9564971924, "fullName": "General Pedro Jose Mendez International Airport" } }, { "key": "1655", "attributes": { "latitude": 25.54949951171875, "longitude": -100.92900085449219, "fullName": "Plan De Guadalupe International Airport" } }, { "key": "2229", "attributes": { "latitude": 26.228500366210938, "longitude": -97.65440368652344, "fullName": "Valley International Airport" } }, { "key": "547", "attributes": { "latitude": 8.533329963684082, "longitude": -83.30000305175781, "fullName": "Puerto Jimenez Airport" } }, { "key": "543", "attributes": { "latitude": 8.654009819030762, "longitude": -83.18219757080078, "fullName": "Golfito Airport" } }, { "key": "552", "attributes": { "latitude": 10.42, "longitude": -83.6095, "fullName": "Aerotortuguero Airport" } }, { "key": "541", "attributes": { "latitude": 8.71889019012, "longitude": -83.6417007446, "fullName": "Drake Bay Airport" } }, { "key": "550", "attributes": { "latitude": 9.73852, "longitude": -85.013802, "fullName": "Tambor Airport" } }, { "key": "548", "attributes": { "latitude": 8.951029777526855, "longitude": -83.46859741210938, "fullName": "Palmar Sur Airport" } }, { "key": "546", "attributes": { "latitude": 9.976490020750001, "longitude": -85.65299987790002, "fullName": "Nosara Airport" } }, { "key": "540", "attributes": { "latitude": 9.340849876403809, "longitude": -82.25080108642578, "fullName": "Bocas Del Toro International Airport" } }, { "key": "542", "attributes": { "latitude": 10.478, "longitude": -84.634499, "fullName": "Arenal Airport" } }, { "key": "798", "attributes": { "latitude": 8.390999794006348, "longitude": -82.43499755859375, "fullName": "Enrique Malek International Airport" } }, { "key": "553", "attributes": { "latitude": 9.443160057067871, "longitude": -84.12979888916016, "fullName": "Quepos Managua Airport" } }, { "key": "1035", "attributes": { "latitude": 31.7096004486, "longitude": 74.7973022461, "fullName": "Sri Guru Ram Dass Jee International Airport" } }, { "key": "666", "attributes": { "latitude": 33.987098693847656, "longitude": 74.77420043945312, "fullName": "Sheikh ul Alam Airport" } }, { "key": "1048", "attributes": { "latitude": 26.739700317399997, "longitude": 83.4496994019, "fullName": "Gorakhpur Airport" } }, { "key": "1062", "attributes": { "latitude": 24.617700576799997, "longitude": 73.89610290530001, "fullName": "Maharana Pratap Airport" } }, { "key": "652", "attributes": { "latitude": 22.7217998505, "longitude": 75.8011016846, "fullName": "Devi Ahilyabai Holkar Airport" } }, { "key": "657", "attributes": { "latitude": 32.6890983582, "longitude": 74.8374023438, "fullName": "Jammu Airport" } }, { "key": "1050", "attributes": { "latitude": 34.1358985901, "longitude": 77.5465011597, "fullName": "Leh Kushok Bakula Rimpochee Airport" } }, { "key": "1039", "attributes": { "latitude": 23.2875003815, "longitude": 77.3374023438, "fullName": "Raja Bhoj International Airport" } }, { "key": "643", "attributes": { "latitude": 22.336201, "longitude": 73.226303, "fullName": "Vadodara Airport" } }, { "key": "1605", "attributes": { "latitude": 25.440099716186523, "longitude": 81.73390197753906, "fullName": "Allahabad Airport" } }, { "key": "420", "attributes": { "latitude": 34.209999084472656, "longitude": 62.22829818725586, "fullName": "Herat Airport" } }, { "key": "1601", "attributes": { "latitude": 32.16510009765625, "longitude": 76.26339721679688, "fullName": "Kangra Airport" } }, { "key": "656", "attributes": { "latitude": 30.673500061035156, "longitude": 76.78849792480469, "fullName": "Chandigarh Airport" } }, { "key": "1610", "attributes": { "latitude": 30.854700088500977, "longitude": 75.95259857177734, "fullName": "Ludhiana Airport" } }, { "key": "1609", "attributes": { "latitude": 31.876699447631836, "longitude": 77.15440368652344, "fullName": "Kullu Manali Airport" } }, { "key": "1613", "attributes": { "latitude": 21.1140995026, "longitude": 72.7417984009, "fullName": "Surat Airport" } }, { "key": "1607", "attributes": { "latitude": 23.177799224853516, "longitude": 80.052001953125, "fullName": "Jabalpur Airport" } }, { "key": "1608", "attributes": { "latitude": 26.404301, "longitude": 80.410103, "fullName": "Kanpur Airport" } }, { "key": "1053", "attributes": { "latitude": 19.862699508666992, "longitude": 75.39810180664062, "fullName": "Aurangabad Airport" } }, { "key": "1055", "attributes": { "latitude": 26.251100540161133, "longitude": 73.04889678955078, "fullName": "Jodhpur Airport" } }, { "key": "1043", "attributes": { "latitude": 30.189699, "longitude": 78.180298, "fullName": "Dehradun Airport" } }, { "key": "2885", "attributes": { "latitude": 35.918800354003906, "longitude": 74.33360290527344, "fullName": "Gilgit Airport" } }, { "key": "2463", "attributes": { "latitude": 29.348100662231445, "longitude": 71.71800231933594, "fullName": "Bahawalpur Airport" } }, { "key": "2782", "attributes": { "latitude": 27.722000122070312, "longitude": 68.79170227050781, "fullName": "Sukkur Airport" } }, { "key": "2887", "attributes": { "latitude": 35.33549880981445, "longitude": 75.53600311279297, "fullName": "Skardu Airport" } }, { "key": "2881", "attributes": { "latitude": 35.886600494384766, "longitude": 71.80059814453125, "fullName": "Chitral Airport" } }, { "key": "2465", "attributes": { "latitude": 30.251399993896484, "longitude": 66.93779754638672, "fullName": "Quetta International Airport" } }, { "key": "423", "attributes": { "latitude": 36.70690155029297, "longitude": 67.20970153808594, "fullName": "Mazar I Sharif Airport" } }, { "key": "2469", "attributes": { "latitude": 35.279800415, "longitude": -2.9562599659, "fullName": "Melilla Airport" } }, { "key": "1111", "attributes": { "latitude": 45.039722, "longitude": 1.485556, "fullName": "Brive Souillac Airport" } }, { "key": "2275", "attributes": { "latitude": 59.58940124511719, "longitude": 16.63360023498535, "fullName": "Stockholm Västerås Airport" } }, { "key": "1590", "attributes": { "latitude": 33.535900116, "longitude": -0.242353007197, "fullName": "Mecheria Airport" } }, { "key": "1583", "attributes": { "latitude": 33.5113983154, "longitude": 6.77679014206, "fullName": "Guemar Airport" } }, { "key": "1588", "attributes": { "latitude": 27.250999450699997, "longitude": 2.51202011108, "fullName": "In Salah Airport" } }, { "key": "1596", "attributes": { "latitude": 35.3410987854, "longitude": 1.46315002441, "fullName": "Bou Chekif Airport" } }, { "key": "1586", "attributes": { "latitude": 32.93040084838867, "longitude": 3.311539888381958, "fullName": "Hassi R'Mel Airport" } }, { "key": "1591", "attributes": { "latitude": 31.917200088500977, "longitude": 5.412779808044434, "fullName": "Ain el Beida Airport" } }, { "key": "1581", "attributes": { "latitude": 33.721666666699996, "longitude": 1.0925, "fullName": "El Bayadh Airport" } }, { "key": "1572", "attributes": { "latitude": 27.837600708007812, "longitude": -0.18641400337219238, "fullName": "Touat Cheikh Sidi Mohamed Belkebir Airport" } }, { "key": "1589", "attributes": { "latitude": 35.207698822021484, "longitude": 0.14714199304580688, "fullName": "Ghriss Airport" } }, { "key": "1580", "attributes": { "latitude": 24.292801, "longitude": 9.45244, "fullName": "Djanet Inedbirene Airport" } }, { "key": "1584", "attributes": { "latitude": 32.38410186767578, "longitude": 3.794110059738159, "fullName": "Noumérat - Moufdi Zakaria Airport" } }, { "key": "1595", "attributes": { "latitude": 33.06779861450195, "longitude": 6.088669776916504, "fullName": "Touggourt Sidi Madhi Airport" } }, { "key": "1594", "attributes": { "latitude": 35.4315986633, "longitude": 8.12071990967, "fullName": "Cheikh Larbi Tébessi Airport" } }, { "key": "1065", "attributes": { "latitude": 35.21609878540039, "longitude": 26.101299285888672, "fullName": "Sitia Airport" } }, { "key": "1078", "attributes": { "latitude": 37.4227981567, "longitude": 24.950899124099998, "fullName": "Syros Airport" } }, { "key": "3417", "attributes": { "latitude": 40.28609848022461, "longitude": 21.84079933166504, "fullName": "Filippos Airport" } }, { "key": "1086", "attributes": { "latitude": 36.696899, "longitude": 24.4769, "fullName": "Milos Airport" } }, { "key": "1089", "attributes": { "latitude": 37.020495, "longitude": 25.113195, "fullName": "Paros National Airport" } }, { "key": "1073", "attributes": { "latitude": 39.6963996887207, "longitude": 20.822500228881836, "fullName": "Ioannina Airport" } }, { "key": "1091", "attributes": { "latitude": 38.9676017761, "longitude": 24.4871997833, "fullName": "Skiros Airport" } }, { "key": "1076", "attributes": { "latitude": 37.0811004639, "longitude": 25.3680992126, "fullName": "Naxos Airport" } }, { "key": "1083", "attributes": { "latitude": 37.184898, "longitude": 26.800301, "fullName": "Leros Airport" } }, { "key": "1084", "attributes": { "latitude": 39.917098999, "longitude": 25.236299514799995, "fullName": "Limnos Airport" } }, { "key": "1069", "attributes": { "latitude": 40.855899810791016, "longitude": 25.956300735473633, "fullName": "Dimokritos Airport" } }, { "key": "1075", "attributes": { "latitude": 36.9632987976, "longitude": 26.9405994415, "fullName": "Kalymnos Airport" } }, { "key": "2393", "attributes": { "latitude": 40.4463005066, "longitude": 21.2821998596, "fullName": "Kastoria National Airport" } }, { "key": "1077", "attributes": { "latitude": 39.177101135253906, "longitude": 23.503700256347656, "fullName": "Skiathos Island National Airport" } }, { "key": "1074", "attributes": { "latitude": 37.6827011108, "longitude": 26.3470993042, "fullName": "Ikaria Airport" } }, { "key": "1079", "attributes": { "latitude": 36.5798988342, "longitude": 26.3757991791, "fullName": "Astypalaia Airport" } }, { "key": "2994", "attributes": { "latitude": 62.0635986328125, "longitude": -7.277219772338867, "fullName": "Vagar Airport" } }, { "key": "3299", "attributes": { "latitude": 59.185001373291016, "longitude": 9.566940307617188, "fullName": "Skien Airport" } }, { "key": "2241", "attributes": { "latitude": 53.096801757799994, "longitude": 17.9776992798, "fullName": "Bydgoszcz Ignacy Jan Paderewski Airport" } }, { "key": "1841", "attributes": { "latitude": 52.187198638916016, "longitude": -7.0869598388671875, "fullName": "Waterford Airport" } }, { "key": "2256", "attributes": { "latitude": 55.04280090332031, "longitude": -7.161109924316406, "fullName": "City of Derry Airport" } }, { "key": "2268", "attributes": { "latitude": 44.824501, "longitude": 10.2964, "fullName": "Parma Airport" } }, { "key": "2266", "attributes": { "latitude": 43.095901, "longitude": 12.5132, "fullName": "Perugia San Francesco d'Assisi – Umbria International Airport" } }, { "key": "893", "attributes": { "latitude": 34.71799850463867, "longitude": 10.690999984741211, "fullName": "Sfax Thyna International Airport" } }, { "key": "1562", "attributes": { "latitude": -20.887100219726562, "longitude": 55.51029968261719, "fullName": "Roland Garros Airport" } }, { "key": "2264", "attributes": { "latitude": 49.6963005065918, "longitude": 18.111099243164062, "fullName": "Ostrava Leos Janáček Airport" } }, { "key": "2186", "attributes": { "latitude": 35.497898, "longitude": 12.6181, "fullName": "Lampedusa Airport" } }, { "key": "3195", "attributes": { "latitude": 53.2481002808, "longitude": -4.53533983231, "fullName": "Anglesey Airport" } }, { "key": "2263", "attributes": { "latitude": 45.46269989013672, "longitude": 18.810199737548828, "fullName": "Osijek Airport" } }, { "key": "2273", "attributes": { "latitude": 47.4322013855, "longitude": 0.727605998516, "fullName": "Tours-Val-de-Loire Airport" } }, { "key": "1759", "attributes": { "latitude": 36.994601, "longitude": 14.607182, "fullName": "Comiso Airport" } }, { "key": "2107", "attributes": { "latitude": 52.18090057373047, "longitude": -9.52377986907959, "fullName": "Kerry Airport" } }, { "key": "1122", "attributes": { "latitude": 46.17919921875, "longitude": -1.1952799558639526, "fullName": "La Rochelle-Île de Ré Airport" } }, { "key": "1129", "attributes": { "latitude": 44.407901763916016, "longitude": 2.4826700687408447, "fullName": "Rodez-Marcillac Airport" } }, { "key": "1126", "attributes": { "latitude": 42.74039840698242, "longitude": 2.8706700801849365, "fullName": "Perpignan-Rivesaltes (Llabanère) Airport" } }, { "key": "2243", "attributes": { "latitude": 43.215999603271484, "longitude": 2.3063199520111084, "fullName": "Carcassonne Airport" } }, { "key": "1829", "attributes": { "latitude": 55.0442008972168, "longitude": -8.340999603271484, "fullName": "Donegal Airport" } }, { "key": "1839", "attributes": { "latitude": 58.215599060058594, "longitude": -6.331110000610352, "fullName": "Stornoway Airport" } }, { "key": "1837", "attributes": { "latitude": 59.87889862060547, "longitude": -1.2955600023269653, "fullName": "Sumburgh Airport" } }, { "key": "1842", "attributes": { "latitude": 58.458900451660156, "longitude": -3.09306001663208, "fullName": "Wick Airport" } }, { "key": "1835", "attributes": { "latitude": 58.957801818847656, "longitude": -2.9049999713897705, "fullName": "Kirkwall Airport" } }, { "key": "1771", "attributes": { "latitude": 38.071201, "longitude": 15.6516, "fullName": "Reggio Calabria Airport" } }, { "key": "1758", "attributes": { "latitude": 46.460201, "longitude": 11.3264, "fullName": "Bolzano Airport" } }, { "key": "1540", "attributes": { "latitude": 68.607299804688, "longitude": 27.405300140381, "fullName": "Ivalo Airport" } }, { "key": "1737", "attributes": { "latitude": 65.987602233887, "longitude": 29.239400863647, "fullName": "Kuusamo Airport" } }, { "key": "1749", "attributes": { "latitude": 58.3074989319, "longitude": 26.690399169900004, "fullName": "Tartu Airport" } }, { "key": "1736", "attributes": { "latitude": 64.285499572754, "longitude": 27.692399978638, "fullName": "Kajaani Airport" } }, { "key": "1735", "attributes": { "latitude": 62.399501800537, "longitude": 25.678300857544, "fullName": "Jyvaskyla Airport" } }, { "key": "1743", "attributes": { "latitude": 58.586299896240234, "longitude": 16.250600814819336, "fullName": "Norrköping Airport" } }, { "key": "1747", "attributes": { "latitude": 66.564796447754, "longitude": 25.830400466919, "fullName": "Rovaniemi Airport" } }, { "key": "1748", "attributes": { "latitude": 61.943099975586, "longitude": 28.945100784302, "fullName": "Savonlinna Airport" } }, { "key": "1739", "attributes": { "latitude": 65.778701782227, "longitude": 24.582099914551, "fullName": "Kemi-Tornio Airport" } }, { "key": "1740", "attributes": { "latitude": 63.007099151611, "longitude": 27.797800064087, "fullName": "Kuopio Airport" } }, { "key": "1734", "attributes": { "latitude": 62.662899017334, "longitude": 29.607500076294, "fullName": "Joensuu Airport" } }, { "key": "1376", "attributes": { "latitude": 39.219600677490234, "longitude": 22.794300079345703, "fullName": "Nea Anchialos Airport" } }, { "key": "2182", "attributes": { "latitude": 33.0733985901, "longitude": -16.3500003815, "fullName": "Porto Santo Airport" } }, { "key": "2064", "attributes": { "latitude": 0.3781749904155731, "longitude": 6.7121500968933105, "fullName": "São Tomé International Airport" } }, { "key": "3003", "attributes": { "latitude": 36.97140121459961, "longitude": -25.17060089111328, "fullName": "Santa Maria Airport" } }, { "key": "3004", "attributes": { "latitude": 38.761799, "longitude": -27.090799, "fullName": "Lajes Airport" } }, { "key": "3002", "attributes": { "latitude": 38.554298, "longitude": -28.441299, "fullName": "Pico Airport" } }, { "key": "3001", "attributes": { "latitude": 38.519901275634766, "longitude": -28.715900421142578, "fullName": "Horta Airport" } }, { "key": "2246", "attributes": { "latitude": 47.042686, "longitude": 5.435063, "fullName": "Dole-Tavaux Airport" } }, { "key": "1746", "attributes": { "latitude": 42.77000045776367, "longitude": -1.6463299989700317, "fullName": "Pamplona Airport" } }, { "key": "2472", "attributes": { "latitude": 42.4609534888, "longitude": -2.32223510742, "fullName": "Logroño-Agoncillo Airport" } }, { "key": "2502", "attributes": { "latitude": 49.913299560546875, "longitude": -6.291669845581055, "fullName": "St. Mary's Airport" } }, { "key": "2188", "attributes": { "latitude": 36.816502, "longitude": 11.9689, "fullName": "Pantelleria Airport" } }, { "key": "2042", "attributes": { "latitude": 48.66310119628906, "longitude": 21.241100311279297, "fullName": "Košice Airport" } }, { "key": "2277", "attributes": { "latitude": 48.7733333333, "longitude": 4.206111111, "fullName": "Châlons-Vatry Airport" } }, { "key": "1082", "attributes": { "latitude": 36.1417007446, "longitude": 29.576400756799995, "fullName": "Kastelorizo Airport" } }, { "key": "2247", "attributes": { "latitude": 48.58769989013672, "longitude": -2.0799601078033447, "fullName": "Dinard-Pleurtuit-Saint-Malo Airport" } }, { "key": "1830", "attributes": { "latitude": 56.45249938964844, "longitude": -3.025830030441284, "fullName": "Dundee Airport" } }, { "key": "2240", "attributes": { "latitude": 49.15129852294922, "longitude": 16.694400787353516, "fullName": "Brno-Tuřany Airport" } }, { "key": "2265", "attributes": { "latitude": 42.067799, "longitude": 24.8508, "fullName": "Plovdiv International Airport" } }, { "key": "1566", "attributes": { "latitude": 43.0973014832, "longitude": 6.14602994919, "fullName": "Toulon-Hyères Airport" } }, { "key": "3168", "attributes": { "latitude": 34.422000885009766, "longitude": 8.822500228881836, "fullName": "Gafsa Ksar International Airport" } }, { "key": "3167", "attributes": { "latitude": 33.87689971923828, "longitude": 10.103300094604492, "fullName": "Gabès Matmata International Airport" } }, { "key": "2658", "attributes": { "latitude": 32.788700103759766, "longitude": 21.96430015563965, "fullName": "La Abraq Airport" } }, { "key": "2662", "attributes": { "latitude": 31.861, "longitude": 23.907, "fullName": "Gamal Abdel Nasser Airport" } }, { "key": "2661", "attributes": { "latitude": 31.063499450699997, "longitude": 16.5949993134, "fullName": "Gardabya Airport" } }, { "key": "3115", "attributes": { "latitude": 33.939701080322266, "longitude": 8.110560417175293, "fullName": "Tozeur Nefta International Airport" } }, { "key": "2832", "attributes": { "latitude": 43.285701751708984, "longitude": 16.67970085144043, "fullName": "Bol Airport" } }, { "key": "501", "attributes": { "latitude": 68.13359833, "longitude": -151.7429962, "fullName": "Anaktuvuk Pass Airport" } }, { "key": "502", "attributes": { "latitude": 66.91390228, "longitude": -151.529007, "fullName": "Bettles Airport" } }, { "key": "506", "attributes": { "latitude": 64.81510162, "longitude": -147.8560028, "fullName": "Fairbanks International Airport" } }, { "key": "895", "attributes": { "latitude": 66.5518035889, "longitude": -152.621994019, "fullName": "Allakaket Airport" } }, { "key": "503", "attributes": { "latitude": 65.57379913, "longitude": -144.7830048, "fullName": "Central Airport" } }, { "key": "508", "attributes": { "latitude": 65.830498, "longitude": -144.076008, "fullName": "Circle City /New/ Airport" } }, { "key": "504", "attributes": { "latitude": 66.6449966431, "longitude": -143.740005493, "fullName": "Chalkyitsik Airport" } }, { "key": "507", "attributes": { "latitude": 66.57150268554688, "longitude": -145.25, "fullName": "Fort Yukon Airport" } }, { "key": "514", "attributes": { "latitude": 66.362197876, "longitude": -147.406997681, "fullName": "Beaver Airport" } }, { "key": "509", "attributes": { "latitude": 64.99759674069999, "longitude": -150.643997192, "fullName": "Manley Hot Springs Airport" } }, { "key": "756", "attributes": { "latitude": 70.19470215, "longitude": -148.4649963, "fullName": "Deadhorse Airport" } }, { "key": "726", "attributes": { "latitude": 64.73619843, "longitude": -156.9369965, "fullName": "Edward G. Pitka Sr Airport" } }, { "key": "899", "attributes": { "latitude": 63.886002, "longitude": -152.302002, "fullName": "Minchumina Airport" } }, { "key": "753", "attributes": { "latitude": 64.72720337, "longitude": -155.4700012, "fullName": "Ruby Airport" } }, { "key": "900", "attributes": { "latitude": 67.0086975098, "longitude": -146.365997314, "fullName": "Venetie Airport" } }, { "key": "718", "attributes": { "latitude": 70.1340026855, "longitude": -143.582000732, "fullName": "Barter Island LRRS Airport" } }, { "key": "517", "attributes": { "latitude": 60.77980042, "longitude": -161.8379974, "fullName": "Bethel Airport" } }, { "key": "524", "attributes": { "latitude": 60.87440109, "longitude": -162.5240021, "fullName": "Kasigluk Airport" } }, { "key": "731", "attributes": { "latitude": 61.52389908, "longitude": -166.1470032, "fullName": "Hooper Bay Airport" } }, { "key": "770", "attributes": { "latitude": 61.5409, "longitude": -165.6005, "fullName": "Chevak Airport" } }, { "key": "519", "attributes": { "latitude": 60.21367264, "longitude": -162.0438843, "fullName": "Eek Airport" } }, { "key": "529", "attributes": { "latitude": 60.471000671387, "longitude": -164.70100402832, "fullName": "Nightmute Airport" } }, { "key": "724", "attributes": { "latitude": 62.78609848, "longitude": -164.4909973, "fullName": "Emmonak Airport" } }, { "key": "527", "attributes": { "latitude": 60.790298461899994, "longitude": -161.444000244, "fullName": "Kwethluk Airport" } }, { "key": "525", "attributes": { "latitude": 59.876499, "longitude": -163.169005, "fullName": "Kwigillingok Airport" } }, { "key": "528", "attributes": { "latitude": 61.8642997742, "longitude": -162.026000977, "fullName": "Marshall Don Hunter Sr Airport" } }, { "key": "518", "attributes": { "latitude": 60.1492004395, "longitude": -164.285995483, "fullName": "Chefornak Airport" } }, { "key": "737", "attributes": { "latitude": 61.53630065917969, "longitude": -160.34100341796875, "fullName": "Kalskag Airport" } }, { "key": "521", "attributes": { "latitude": 59.960800170899994, "longitude": -162.880996704, "fullName": "Kongiganak Airport" } }, { "key": "526", "attributes": { "latitude": 59.7551, "longitude": -161.845, "fullName": "Quinhagak Airport" } }, { "key": "523", "attributes": { "latitude": 59.932998657199995, "longitude": -164.031005859, "fullName": "Kipnuk Airport" } }, { "key": "537", "attributes": { "latitude": 60.69029998779297, "longitude": -161.97900390625, "fullName": "Napakiak Airport" } }, { "key": "531", "attributes": { "latitude": 60.54140091, "longitude": -165.0870056, "fullName": "Toksook Bay Airport" } }, { "key": "768", "attributes": { "latitude": 59.052799224853516, "longitude": -160.39700317382812, "fullName": "Togiak Airport" } }, { "key": "755", "attributes": { "latitude": 61.7788848877, "longitude": -161.319458008, "fullName": "Russian Mission Airport" } }, { "key": "744", "attributes": { "latitude": 60.37139892578125, "longitude": -166.27099609375, "fullName": "Mekoryuk Airport" } }, { "key": "532", "attributes": { "latitude": 60.70289993, "longitude": -161.7779999, "fullName": "Napaskiak Airport" } }, { "key": "534", "attributes": { "latitude": 59.01139831542969, "longitude": -161.82000732421875, "fullName": "Platinum Airport" } }, { "key": "804", "attributes": { "latitude": 8.973340034484863, "longitude": -79.55560302734375, "fullName": "Marcos A. Gelabert International Airport" } }, { "key": "549", "attributes": { "latitude": 9.957050323486328, "longitude": -84.13980102539062, "fullName": "Tobias Bolanos International Airport" } }, { "key": "558", "attributes": { "latitude": -2.252419948577881, "longitude": 40.91310119628906, "fullName": "Manda Airstrip" } }, { "key": "1787", "attributes": { "latitude": -1.321720004081726, "longitude": 36.81480026245117, "fullName": "Nairobi Wilson Airport" } }, { "key": "2701", "attributes": { "latitude": 5.032249927520752, "longitude": 118.3239974975586, "fullName": "Lahad Datu Airport" } }, { "key": "2705", "attributes": { "latitude": 4.84917, "longitude": 115.407997, "fullName": "Lawas Airport" } }, { "key": "1844", "attributes": { "latitude": 4.048329830169678, "longitude": 114.80500030517578, "fullName": "Mulu Airport" } }, { "key": "2699", "attributes": { "latitude": 6.922500133514404, "longitude": 116.83599853515625, "fullName": "Kudat Airport" } }, { "key": "575", "attributes": { "latitude": 9.8591, "longitude": 126.014, "fullName": "Siargao Airport" } }, { "key": "568", "attributes": { "latitude": 9.253520011901855, "longitude": 124.70700073242188, "fullName": "Camiguin Airport" } }, { "key": "2316", "attributes": { "latitude": -3.4423599243164062, "longitude": 114.76300048828125, "fullName": "Syamsudin Noor Airport" } }, { "key": "2339", "attributes": { "latitude": -5.240556, "longitude": 105.175556, "fullName": "Radin Inten II (Branti) Airport" } }, { "key": "2322", "attributes": { "latitude": -2.5769500733, "longitude": 140.5160064698, "fullName": "Sentani International Airport" } }, { "key": "2338", "attributes": { "latitude": -2.74571990967, "longitude": 107.754997253, "fullName": "Buluh Tumbang (H A S Hanandjoeddin) Airport" } }, { "key": "2342", "attributes": { "latitude": 3.326667, "longitude": 117.569444, "fullName": "Juwata Airport" } }, { "key": "2335", "attributes": { "latitude": -0.15071099996566772, "longitude": 109.40399932861328, "fullName": "Supadio Airport" } }, { "key": "2334", "attributes": { "latitude": -0.9185420274734497, "longitude": 119.91000366210938, "fullName": "Mutiara Airport" } }, { "key": "2496", "attributes": { "latitude": -2.70519995689, "longitude": 111.672996521, "fullName": "Iskandar Airport" } }, { "key": "2315", "attributes": { "latitude": -3.7102599144, "longitude": 128.089004517, "fullName": "Pattimura Airport, Ambon" } }, { "key": "2321", "attributes": { "latitude": -1.6380200386047363, "longitude": 103.64399719238281, "fullName": "Sultan Thaha Airport" } }, { "key": "2341", "attributes": { "latitude": 0.922683000565, "longitude": 104.531997681, "fullName": "Raja Haji Fisabilillah International Airport" } }, { "key": "2332", "attributes": { "latitude": -2.16219997406, "longitude": 106.138999939, "fullName": "Pangkal Pinang (Depati Amir) Airport" } }, { "key": "2343", "attributes": { "latitude": 0.831413984298706, "longitude": 127.38099670410156, "fullName": "Sultan Khairun Babullah Airport" } }, { "key": "2325", "attributes": { "latitude": -4.081610202789307, "longitude": 122.41799926757812, "fullName": "Wolter Monginsidi Airport" } }, { "key": "2281", "attributes": { "latitude": 1.12102997303, "longitude": 104.119003296, "fullName": "Hang Nadim International Airport" } }, { "key": "2333", "attributes": { "latitude": -2.22513008118, "longitude": 113.943000793, "fullName": "Tjilik Riwut Airport" } }, { "key": "2319", "attributes": { "latitude": -3.8637, "longitude": 102.338997, "fullName": "Fatmawati Soekarno Airport" } }, { "key": "2331", "attributes": { "latitude": -7.926559925079999, "longitude": 112.714996338, "fullName": "Abdul Rachman Saleh Airport" } }, { "key": "2578", "attributes": { "latitude": -9.66922, "longitude": 120.302002, "fullName": "Umbu Mehang Kunda Airport" } }, { "key": "2326", "attributes": { "latitude": -10.171600341796875, "longitude": 123.6709976196289, "fullName": "El Tari Airport" } }, { "key": "2320", "attributes": { "latitude": -8.5396499633789, "longitude": 118.68699645996, "fullName": "Muhammad Salahuddin Airport" } }, { "key": "2572", "attributes": { "latitude": -8.64064979553, "longitude": 122.236999512, "fullName": "Maumere(Wai Oti) Airport" } }, { "key": "2337", "attributes": { "latitude": -4.528279781341553, "longitude": 136.88699340820312, "fullName": "Moses Kilangin Airport" } }, { "key": "2327", "attributes": { "latitude": -8.48666, "longitude": 119.889, "fullName": "Komodo Airport" } }, { "key": "2340", "attributes": { "latitude": -9.40972, "longitude": 119.244003, "fullName": "Tambolaka Airport" } }, { "key": "3202", "attributes": { "latitude": 21.3974990845, "longitude": 103.008003235, "fullName": "Dien Bien Phu Airport" } }, { "key": "3206", "attributes": { "latitude": 10.085100174, "longitude": 105.711997986, "fullName": "Can Tho International Airport" } }, { "key": "2437", "attributes": { "latitude": 43.8805999756, "longitude": 144.164001465, "fullName": "Memanbetsu Airport" } }, { "key": "1240", "attributes": { "latitude": 34.785499572753906, "longitude": 135.43800354003906, "fullName": "Osaka International Airport" } }, { "key": "593", "attributes": { "latitude": 67.63999938964844, "longitude": 53.12189865112305, "fullName": "Naryan Mar Airport" } }, { "key": "591", "attributes": { "latitude": 65.0299987793, "longitude": 35.7333335876, "fullName": "Solovki Airport" } }, { "key": "3182", "attributes": { "latitude": 65.43729400630001, "longitude": 52.20033645629999, "fullName": "Ust-Tsylma Airport" } }, { "key": "3062", "attributes": { "latitude": 44.5820926295, "longitude": 38.0124807358, "fullName": "Gelendzhik Airport" } }, { "key": "3302", "attributes": { "latitude": 69.786796569824, "longitude": 20.959400177002, "fullName": "Sørkjosen Airport" } }, { "key": "3278", "attributes": { "latitude": 69.292503356934, "longitude": 16.144199371338, "fullName": "Andøya Airport" } }, { "key": "3300", "attributes": { "latitude": 68.578826904297, "longitude": 15.033416748047, "fullName": "Stokmarknes Skagen Airport" } }, { "key": "3306", "attributes": { "latitude": 70.065299987793, "longitude": 29.844699859619, "fullName": "Vadsø Airport" } }, { "key": "3285", "attributes": { "latitude": 70.679702758789, "longitude": 23.668600082397, "fullName": "Hammerfest Airport" } }, { "key": "3284", "attributes": { "latitude": 70.486701965332, "longitude": 22.139699935913, "fullName": "Hasvik Airport" } }, { "key": "3288", "attributes": { "latitude": 70.068801879883, "longitude": 24.973499298096, "fullName": "Banak Airport" } }, { "key": "2428", "attributes": { "latitude": -29.916201, "longitude": -71.199501, "fullName": "La Florida Airport" } }, { "key": "2426", "attributes": { "latitude": -22.498199462890625, "longitude": -68.90360260009766, "fullName": "El Loa Airport" } }, { "key": "600", "attributes": { "latitude": -20.535200119018555, "longitude": -70.1812973022461, "fullName": "Diego Aracena Airport" } }, { "key": "599", "attributes": { "latitude": -36.772701, "longitude": -73.063103, "fullName": "Carriel Sur Airport" } }, { "key": "2431", "attributes": { "latitude": -38.9259, "longitude": -72.6515, "fullName": "La Araucanía Airport" } }, { "key": "1297", "attributes": { "latitude": -41.438899993896484, "longitude": -73.09400177001953, "fullName": "El Tepual Airport" } }, { "key": "2430", "attributes": { "latitude": -39.6500015259, "longitude": -73.0860977173, "fullName": "Pichoy Airport" } }, { "key": "2424", "attributes": { "latitude": -18.348499, "longitude": -70.338699, "fullName": "Chacalluta Airport" } }, { "key": "2425", "attributes": { "latitude": -45.916099548339844, "longitude": -71.68949890136719, "fullName": "Balmaceda Airport" } }, { "key": "2429", "attributes": { "latitude": -53.002602, "longitude": -70.854599, "fullName": "Pdte. Carlos Ibañez del Campo Airport" } }, { "key": "2427", "attributes": { "latitude": -27.2611999512, "longitude": -70.7791976929, "fullName": "Desierto de Atacama Airport" } }, { "key": "2641", "attributes": { "latitude": -40.61119842529297, "longitude": -73.06099700927734, "fullName": "Cañal Bajo Carlos - Hott Siebert Airport" } }, { "key": "2634", "attributes": { "latitude": -27.1648006439, "longitude": -109.42199707, "fullName": "Mataveri Airport" } }, { "key": "874", "attributes": { "latitude": -42.908000946, "longitude": -71.139503479, "fullName": "Brigadier Antonio Parodi Airport" } }, { "key": "1676", "attributes": { "latitude": -40.8692, "longitude": -63.0004, "fullName": "Gobernador Castello Airport" } }, { "key": "1674", "attributes": { "latitude": -31.571501, "longitude": -68.418198, "fullName": "Domingo Faustino Sarmiento Airport" } }, { "key": "1673", "attributes": { "latitude": -26.8409, "longitude": -65.104897, "fullName": "Teniente Benjamin Matienzo Airport" } }, { "key": "1666", "attributes": { "latitude": -33.2732009888, "longitude": -66.3563995361, "fullName": "Brigadier Mayor D Cesar Raul Ojeda Airport" } }, { "key": "881", "attributes": { "latitude": -51.6089, "longitude": -69.3126, "fullName": "Piloto Civil N. Fernández Airport" } }, { "key": "1667", "attributes": { "latitude": -27.3858, "longitude": -55.9707, "fullName": "Libertador Gral D Jose De San Martin Airport" } }, { "key": "1664", "attributes": { "latitude": -29.3815994263, "longitude": -66.7957992554, "fullName": "Capitan V A Almonacid Airport" } }, { "key": "870", "attributes": { "latitude": -38.725, "longitude": -62.1693, "fullName": "Comandante Espora Airport" } }, { "key": "606", "attributes": { "latitude": -34.855098724365234, "longitude": -55.09429931640625, "fullName": "Capitan Corbeta CA Curbelo International Airport" } }, { "key": "1665", "attributes": { "latitude": -24.392799, "longitude": -65.097801, "fullName": "Gobernador Horacio Guzman International Airport" } }, { "key": "880", "attributes": { "latitude": -53.7777, "longitude": -67.7494, "fullName": "Hermes Quijada International Airport" } }, { "key": "1671", "attributes": { "latitude": -27.765556335399996, "longitude": -64.3099975586, "fullName": "Vicecomodoro Angel D. La Paz Aragonés Airport" } }, { "key": "878", "attributes": { "latitude": -31.7948, "longitude": -60.4804, "fullName": "General Urquiza Airport" } }, { "key": "1670", "attributes": { "latitude": -36.588299, "longitude": -64.275703, "fullName": "Santa Rosa Airport" } }, { "key": "1668", "attributes": { "latitude": -27.45, "longitude": -59.0561, "fullName": "Resistencia International Airport" } }, { "key": "1660", "attributes": { "latitude": -28.5956001282, "longitude": -65.751701355, "fullName": "Catamarca Airport" } }, { "key": "877", "attributes": { "latitude": -38.949001, "longitude": -68.155701, "fullName": "Presidente Peron Airport" } }, { "key": "1669", "attributes": { "latitude": -27.4966, "longitude": -64.93595, "fullName": "Termas de Río Hondo international Airport" } }, { "key": "873", "attributes": { "latitude": -45.7853, "longitude": -67.4655, "fullName": "General E. Mosconi Airport" } }, { "key": "1661", "attributes": { "latitude": -26.2127, "longitude": -58.2281, "fullName": "Formosa Airport" } }, { "key": "875", "attributes": { "latitude": -37.9342, "longitude": -57.5733, "fullName": "Ástor Piazzola International Airport" } }, { "key": "1659", "attributes": { "latitude": -40.075401, "longitude": -71.137299, "fullName": "Aviador C. Campos Airport" } }, { "key": "1658", "attributes": { "latitude": -34.588299, "longitude": -68.4039, "fullName": "Suboficial Ay Santiago Germano Airport" } }, { "key": "1672", "attributes": { "latitude": -24.856000900299996, "longitude": -65.4861984253, "fullName": "Martin Miguel De Guemes International Airport" } }, { "key": "2833", "attributes": { "latitude": -42.7592, "longitude": -65.1027, "fullName": "El Tehuelche Airport" } }, { "key": "883", "attributes": { "latitude": -31.7117, "longitude": -60.8117, "fullName": "Sauce Viejo Airport" } }, { "key": "2773", "attributes": { "latitude": -26.78840065, "longitude": -50.9398002625, "fullName": "Caçador Airport" } }, { "key": "2776", "attributes": { "latitude": -25.3875007629, "longitude": -51.520198822, "fullName": "Tancredo Thomas de Faria Airport" } }, { "key": "1451", "attributes": { "latitude": -29.197099685699996, "longitude": -51.1875, "fullName": "Hugo Cantergiani Regional Airport" } }, { "key": "1507", "attributes": { "latitude": -27.134199142456, "longitude": -52.656600952148, "fullName": "Serafin Enoss Bertaso Airport" } }, { "key": "2778", "attributes": { "latitude": -27.9067, "longitude": -54.520401, "fullName": "Santa Rosa Airport" } }, { "key": "2774", "attributes": { "latitude": -27.66189956665039, "longitude": -52.2682991027832, "fullName": "Erechim Airport" } }, { "key": "1492", "attributes": { "latitude": -29.711399, "longitude": -53.688202, "fullName": "Santa Maria Airport" } }, { "key": "1483", "attributes": { "latitude": -31.718399, "longitude": -52.327702, "fullName": "João Simões Lopes Neto International Airport" } }, { "key": "608", "attributes": { "latitude": 64.29889678960001, "longitude": -96.077796936, "fullName": "Baker Lake Airport" } }, { "key": "706", "attributes": { "latitude": 66.5214004517, "longitude": -86.22470092770001, "fullName": "Repulse Bay Airport" } }, { "key": "611", "attributes": { "latitude": 63.346900939899996, "longitude": -90.73110198970001, "fullName": "Chesterfield Inlet Airport" } }, { "key": "626", "attributes": { "latitude": 62.24000167849999, "longitude": -92.59809875490001, "fullName": "Whale Cove Airport" } }, { "key": "676", "attributes": { "latitude": 70.76280212402344, "longitude": -117.80599975585938, "fullName": "Ulukhaktok Holman Airport" } }, { "key": "630", "attributes": { "latitude": 64.1932983398, "longitude": -83.3593978882, "fullName": "Coral Harbour Airport" } }, { "key": "612", "attributes": { "latitude": 70.4860992432, "longitude": -68.5167007446, "fullName": "Clyde River Airport" } }, { "key": "618", "attributes": { "latitude": 72.6832962036, "longitude": -77.9666976929, "fullName": "Pond Inlet Airport" } }, { "key": "613", "attributes": { "latitude": 61.0942001343, "longitude": -94.07080078119999, "fullName": "Arviat Airport" } }, { "key": "629", "attributes": { "latitude": 58.739200592041016, "longitude": -94.06500244140625, "fullName": "Churchill Airport" } }, { "key": "614", "attributes": { "latitude": 68.30419921880001, "longitude": -133.483001709, "fullName": "Inuvik Mike Zubko Airport" } }, { "key": "678", "attributes": { "latitude": 71.9938964844, "longitude": -125.242996216, "fullName": "Sachs Harbour (David Nasogaluak Jr. Saaryuaq) Airport" } }, { "key": "679", "attributes": { "latitude": 69.43329620361328, "longitude": -133.0260009765625, "fullName": "Tuktoyaktuk Airport" } }, { "key": "2451", "attributes": { "latitude": 66.24079895019531, "longitude": -128.6510009765625, "fullName": "Fort Good Hope Airport" } }, { "key": "680", "attributes": { "latitude": 67.40750122070312, "longitude": -134.86099243164062, "fullName": "Fort Mcpherson Airport" } }, { "key": "677", "attributes": { "latitude": 69.3608381154, "longitude": -124.075469971, "fullName": "Paulatuk (Nora Aliqatchialuk Ruben) Airport" } }, { "key": "620", "attributes": { "latitude": 64.2300033569, "longitude": -76.5267028809, "fullName": "Cape Dorset Airport" } }, { "key": "616", "attributes": { "latitude": 69.3647003174, "longitude": -81.8161010742, "fullName": "Igloolik Airport" } }, { "key": "627", "attributes": { "latitude": 66.1449966431, "longitude": -65.71360015869999, "fullName": "Pangnirtung Airport" } }, { "key": "622", "attributes": { "latitude": 68.77610015869999, "longitude": -81.2425, "fullName": "Hall Beach Airport" } }, { "key": "705", "attributes": { "latitude": 62.8499984741, "longitude": -69.88330078119999, "fullName": "Kimmirut Airport" } }, { "key": "621", "attributes": { "latitude": 55.80110168457031, "longitude": -97.86419677734375, "fullName": "Thompson Airport" } }, { "key": "2713", "attributes": { "latitude": 56.35749816894531, "longitude": -94.71060180664062, "fullName": "Gillam Airport" } }, { "key": "2583", "attributes": { "latitude": 54.6781005859375, "longitude": -101.68199920654297, "fullName": "Flin Flon Airport" } }, { "key": "2585", "attributes": { "latitude": 53.97140121459961, "longitude": -101.09100341796875, "fullName": "The Pas Airport" } }, { "key": "623", "attributes": { "latitude": 67.5457992554, "longitude": -64.03140258789999, "fullName": "Qikiqtarjuaq Airport" } }, { "key": "2453", "attributes": { "latitude": 64.909697, "longitude": -125.572998, "fullName": "Tulita Airport" } }, { "key": "1408", "attributes": { "latitude": 48.37189865112305, "longitude": -89.32389831542969, "fullName": "Thunder Bay Airport" } }, { "key": "2587", "attributes": { "latitude": 51.066898345947266, "longitude": -93.79309844970703, "fullName": "Red Lake Airport" } }, { "key": "2586", "attributes": { "latitude": 49.788299560546875, "longitude": -94.36309814453125, "fullName": "Kenora Airport" } }, { "key": "986", "attributes": { "latitude": 17.9139, "longitude": -87.9711, "fullName": "San Pedro Airport" } }, { "key": "2628", "attributes": { "latitude": 15.7425, "longitude": -86.852997, "fullName": "Goloson International Airport" } }, { "key": "1935", "attributes": { "latitude": 15.2622, "longitude": -83.781197, "fullName": "Puerto Lempira Airport" } }, { "key": "3026", "attributes": { "latitude": -24.368600845299998, "longitude": 31.0487003326, "fullName": "Hoedspruit Air Force Base Airport" } }, { "key": "3028", "attributes": { "latitude": -25.3831996918, "longitude": 31.1056003571, "fullName": "Kruger Mpumalanga International Airport" } }, { "key": "3027", "attributes": { "latitude": -28.802799224900003, "longitude": 24.7651996613, "fullName": "Kimberley Airport" } }, { "key": "3036", "attributes": { "latitude": -28.39909935, "longitude": 21.260200500499998, "fullName": "Pierre Van Ryneveld Airport" } }, { "key": "2534", "attributes": { "latitude": -34.0056, "longitude": 22.378902, "fullName": "George Airport" } }, { "key": "2535", "attributes": { "latitude": -25.938499450699997, "longitude": 27.9260997772, "fullName": "Lanseria Airport" } }, { "key": "2533", "attributes": { "latitude": -29.092699050900002, "longitude": 26.302400589, "fullName": "Bram Fischer International Airport" } }, { "key": "1867", "attributes": { "latitude": -19.97260093688965, "longitude": 23.431100845336914, "fullName": "Maun Airport" } }, { "key": "1813", "attributes": { "latitude": -33.9849014282, "longitude": 25.6173000336, "fullName": "Port Elizabeth Airport" } }, { "key": "3039", "attributes": { "latitude": -22.9799, "longitude": 14.6453, "fullName": "Walvis Bay Airport" } }, { "key": "2712", "attributes": { "latitude": -33.0355987549, "longitude": 27.825899124099998, "fullName": "Ben Schoeman Airport" } }, { "key": "640", "attributes": { "latitude": -34.0881601675, "longitude": 23.3287234306, "fullName": "Plettenberg Bay Airport" } }, { "key": "3029", "attributes": { "latitude": -29.462299346923828, "longitude": 27.552499771118164, "fullName": "Moshoeshoe I International Airport" } }, { "key": "3034", "attributes": { "latitude": -28.740999221800003, "longitude": 32.0920982361, "fullName": "Richards Bay Airport" } }, { "key": "3033", "attributes": { "latitude": -29.649000167799997, "longitude": 30.3987007141, "fullName": "Pietermaritzburg Airport" } }, { "key": "3024", "attributes": { "latitude": -19.79640007019043, "longitude": 34.90760040283203, "fullName": "Beira Airport" } }, { "key": "3032", "attributes": { "latitude": -23.845269, "longitude": 29.458615, "fullName": "Polokwane International Airport" } }, { "key": "3031", "attributes": { "latitude": -23.937200546299998, "longitude": 31.1553993225, "fullName": "Hendrik Van Eck Airport" } }, { "key": "3110", "attributes": { "latitude": -23.876399993896484, "longitude": 35.40850067138672, "fullName": "Inhambane Airport" } }, { "key": "1864", "attributes": { "latitude": -17.83289909362793, "longitude": 25.162399291992188, "fullName": "Kasane Airport" } }, { "key": "3037", "attributes": { "latitude": -31.546363184900002, "longitude": 28.6733551025, "fullName": "K. D. Matanzima Airport" } }, { "key": "3038", "attributes": { "latitude": -22.018400192260742, "longitude": 35.31330108642578, "fullName": "Vilankulo Airport" } }, { "key": "3035", "attributes": { "latitude": -16.104799270629883, "longitude": 33.640201568603516, "fullName": "Chingozi Airport" } }, { "key": "3030", "attributes": { "latitude": -26.52899932861328, "longitude": 31.3075008392334, "fullName": "Matsapha Airport" } }, { "key": "1865", "attributes": { "latitude": -21.15959930419922, "longitude": 27.47450065612793, "fullName": "Francistown Airport" } }, { "key": "1815", "attributes": { "latitude": -18.09589958190918, "longitude": 25.839000701904297, "fullName": "Victoria Falls International Airport" } }, { "key": "3025", "attributes": { "latitude": -20.017401, "longitude": 28.617901, "fullName": "Joshua Mqabuko Nkomo International Airport" } }, { "key": "639", "attributes": { "latitude": -30.8574008942, "longitude": 30.343000412, "fullName": "Margate Airport" } }, { "key": "1615", "attributes": { "latitude": 16.530399322509766, "longitude": 80.79679870605469, "fullName": "Vijayawada Airport" } }, { "key": "3042", "attributes": { "latitude": 15.361700058, "longitude": 75.08489990230001, "fullName": "Hubli Airport" } }, { "key": "3044", "attributes": { "latitude": 12.23, "longitude": 76.655833, "fullName": "Mysore Airport" } }, { "key": "3043", "attributes": { "latitude": 15.859299659700001, "longitude": 74.6183013916, "fullName": "Belgaum Airport" } }, { "key": "1038", "attributes": { "latitude": 23.2877998352, "longitude": 69.6701965332, "fullName": "Bhuj Airport" } }, { "key": "1044", "attributes": { "latitude": 20.71310043334961, "longitude": 70.92109680175781, "fullName": "Diu Airport" } }, { "key": "1606", "attributes": { "latitude": 22.465499877929688, "longitude": 70.01260375976562, "fullName": "Jamnagar Airport" } }, { "key": "1058", "attributes": { "latitude": 22.3092002869, "longitude": 70.77950286869999, "fullName": "Rajkot Airport" } }, { "key": "1603", "attributes": { "latitude": 26.29330062866211, "longitude": 78.22779846191406, "fullName": "Gwalior Airport" } }, { "key": "1599", "attributes": { "latitude": 27.155799865722656, "longitude": 77.96089935302734, "fullName": "Agra Airport" } }, { "key": "1040", "attributes": { "latitude": 21.752199173, "longitude": 72.1852035522, "fullName": "Bhavnagar Airport" } }, { "key": "1600", "attributes": { "latitude": 10.823699951171875, "longitude": 72.1760025024414, "fullName": "Agatti Airport" } }, { "key": "1614", "attributes": { "latitude": 13.632499694800002, "longitude": 79.543296814, "fullName": "Tirupati Airport" } }, { "key": "1059", "attributes": { "latitude": 17.1103992462, "longitude": 81.81819915770001, "fullName": "Rajahmundry Airport" } }, { "key": "1051", "attributes": { "latitude": 9.83450984955, "longitude": 78.09339904790001, "fullName": "Madurai Airport" } }, { "key": "2181", "attributes": { "latitude": 6.284467, "longitude": 81.124128, "fullName": "Mattala Rajapaksa International Airport" } }, { "key": "2916", "attributes": { "latitude": 6.744229793548584, "longitude": 73.17050170898438, "fullName": "Hanimaadhoo Airport" } }, { "key": "671", "attributes": { "latitude": 32.11470031738281, "longitude": 34.78219985961914, "fullName": "Sde Dov Airport" } }, { "key": "2512", "attributes": { "latitude": 32.80939865112305, "longitude": 35.04309844970703, "fullName": "Haifa International Airport" } }, { "key": "2382", "attributes": { "latitude": 67.0122218992, "longitude": -50.7116031647, "fullName": "Kangerlussuaq Airport" } }, { "key": "675", "attributes": { "latitude": 54.96440124511719, "longitude": 9.791729927062988, "fullName": "Sønderborg Airport" } }, { "key": "2082", "attributes": { "latitude": 55.06330108642578, "longitude": 14.759599685668945, "fullName": "Bornholm Airport" } }, { "key": "2091", "attributes": { "latitude": 56.29750061035156, "longitude": 9.124629974365234, "fullName": "Karup Airport" } }, { "key": "3346", "attributes": { "latitude": 67.43720245361328, "longitude": 86.62190246582031, "fullName": "Igarka Airport" } }, { "key": "3348", "attributes": { "latitude": 65.797203064, "longitude": 87.9353027344, "fullName": "Turukhansk Airport" } }, { "key": "3347", "attributes": { "latitude": 61.589699, "longitude": 89.994003, "fullName": "Podkamennaya Tunguska Airport" } }, { "key": "686", "attributes": { "latitude": 10.049300193786621, "longitude": 98.53800201416016, "fullName": "Kawthoung Airport" } }, { "key": "688", "attributes": { "latitude": 12.439800262451172, "longitude": 98.62149810791016, "fullName": "Myeik Airport" } }, { "key": "3273", "attributes": { "latitude": 21.301599502563477, "longitude": 99.63600158691406, "fullName": "Kengtung Airport" } }, { "key": "2618", "attributes": { "latitude": 35.59349823, "longitude": 129.352005005, "fullName": "Ulsan Airport" } }, { "key": "2615", "attributes": { "latitude": 35.90380096435547, "longitude": 126.61599731445312, "fullName": "Kunsan Air Base" } }, { "key": "2614", "attributes": { "latitude": 35.987955, "longitude": 129.420383, "fullName": "Pohang Airport (G-815/K-3)" } }, { "key": "2613", "attributes": { "latitude": 35.088591, "longitude": 128.071747, "fullName": "Sacheon Air Base/Airport" } }, { "key": "2617", "attributes": { "latitude": 34.84230041503906, "longitude": 127.61699676513672, "fullName": "Yeosu Airport" } }, { "key": "2616", "attributes": { "latitude": 35.123173, "longitude": 126.805444, "fullName": "Gwangju Airport" } }, { "key": "2619", "attributes": { "latitude": 37.441201, "longitude": 127.963858, "fullName": "Wonju/Hoengseong Air Base (K-38/K-46)" } }, { "key": "2770", "attributes": { "latitude": 34.2849006653, "longitude": 129.330993652, "fullName": "Tsushima Airport" } }, { "key": "2759", "attributes": { "latitude": 32.66630172729492, "longitude": 128.83299255371094, "fullName": "Fukue Airport" } }, { "key": "2538", "attributes": { "latitude": 39.4286003112793, "longitude": 141.13499450683594, "fullName": "Hanamaki Airport" } }, { "key": "2541", "attributes": { "latitude": 36.16680145263672, "longitude": 137.92300415039062, "fullName": "Matsumoto Airport" } }, { "key": "3163", "attributes": { "latitude": 7.461870193481445, "longitude": 151.84300231933594, "fullName": "Chuuk International Airport" } }, { "key": "3164", "attributes": { "latitude": 9.49891, "longitude": 138.082993, "fullName": "Yap International Airport" } }, { "key": "1824", "attributes": { "latitude": 34.6328010559082, "longitude": 135.2239990234375, "fullName": "Kobe Airport" } }, { "key": "2764", "attributes": { "latitude": 44.303901672399995, "longitude": 143.404006958, "fullName": "Monbetsu Airport" } }, { "key": "2762", "attributes": { "latitude": 34.676399231, "longitude": 131.789993286, "fullName": "Iwami Airport" } }, { "key": "2769", "attributes": { "latitude": 38.81219863889999, "longitude": 139.787002563, "fullName": "Shonai Airport" } }, { "key": "2537", "attributes": { "latitude": 38.411899566699994, "longitude": 140.371002197, "fullName": "Yamagata Airport" } }, { "key": "2547", "attributes": { "latitude": 35.4136009216, "longitude": 132.88999939, "fullName": "Izumo Airport" } }, { "key": "2438", "attributes": { "latitude": 42.7332992554, "longitude": 143.216995239, "fullName": "Tokachi-Obihiro Airport" } }, { "key": "708", "attributes": { "latitude": 33.8459014893, "longitude": 131.035003662, "fullName": "Kitakyūshū Airport" } }, { "key": "2539", "attributes": { "latitude": 33.546101, "longitude": 133.669006, "fullName": "Kōchi Ryōma Airport" } }, { "key": "2772", "attributes": { "latitude": 45.4042015076, "longitude": 141.800994873, "fullName": "Wakkanai Airport" } }, { "key": "2763", "attributes": { "latitude": 34.143902, "longitude": 132.235992, "fullName": "Iwakuni Marine Corps Air Station" } }, { "key": "2767", "attributes": { "latitude": 40.1918983459, "longitude": 140.371002197, "fullName": "Odate Noshiro Airport" } }, { "key": "2548", "attributes": { "latitude": 40.703201293899994, "longitude": 141.367996216, "fullName": "Misawa Air Base" } }, { "key": "2765", "attributes": { "latitude": 37.2930984497, "longitude": 136.962005615, "fullName": "Noto Airport" } }, { "key": "2760", "attributes": { "latitude": 33.1150016785, "longitude": 139.785995483, "fullName": "Hachijojima Airport" } }, { "key": "2768", "attributes": { "latitude": 43.5774993896, "longitude": 144.960006714, "fullName": "Nakashibetsu Airport" } }, { "key": "1821", "attributes": { "latitude": 24.782800674399997, "longitude": 125.294998169, "fullName": "Miyako Airport" } }, { "key": "2766", "attributes": { "latitude": 34.782001495399996, "longitude": 139.36000061, "fullName": "Oshima Airport" } }, { "key": "2545", "attributes": { "latitude": 28.430599212646484, "longitude": 129.71299743652344, "fullName": "Amami Airport" } }, { "key": "2549", "attributes": { "latitude": 33.6622009277, "longitude": 135.363998413, "fullName": "Nanki Shirahama Airport" } }, { "key": "2550", "attributes": { "latitude": 34.132801, "longitude": 134.606995, "fullName": "Tokushima Airport/JMSDF Air Base" } }, { "key": "2771", "attributes": { "latitude": 35.5301017761, "longitude": 134.167007446, "fullName": "Tottori Airport" } }, { "key": "709", "attributes": { "latitude": 67.1063, "longitude": -157.856989, "fullName": "Ambler Airport" } }, { "key": "750", "attributes": { "latitude": 66.88469696, "longitude": -162.598999, "fullName": "Ralph Wien Memorial Airport" } }, { "key": "758", "attributes": { "latitude": 66.88809967041, "longitude": -157.16200256348, "fullName": "Shungnak Airport" } }, { "key": "710", "attributes": { "latitude": 70.6380004883, "longitude": -159.994995117, "fullName": "Wainwright Airport" } }, { "key": "714", "attributes": { "latitude": 70.46730041503906, "longitude": -157.43600463867188, "fullName": "Atqasuk Edward Burnell Sr Memorial Airport" } }, { "key": "717", "attributes": { "latitude": 71.285402, "longitude": -156.766008, "fullName": "Wiley Post Will Rogers Memorial Airport" } }, { "key": "725", "attributes": { "latitude": 60.57310104370117, "longitude": -151.2449951171875, "fullName": "Kenai Municipal Airport" } }, { "key": "719", "attributes": { "latitude": 60.4917984, "longitude": -145.4779968, "fullName": "Merle K (Mudhole) Smith Airport" } }, { "key": "2623", "attributes": { "latitude": 59.75439835, "longitude": -154.9109955, "fullName": "Iliamna Airport" } }, { "key": "1698", "attributes": { "latitude": 57.167301177978516, "longitude": -170.22000122070312, "fullName": "St Paul Island Airport" } }, { "key": "748", "attributes": { "latitude": 64.51219940185547, "longitude": -165.44500732421875, "fullName": "Nome Airport" } }, { "key": "739", "attributes": { "latitude": 62.0605011, "longitude": -163.302002, "fullName": "St Mary's Airport" } }, { "key": "1682", "attributes": { "latitude": 55.20610046386719, "longitude": -162.72500610351562, "fullName": "Cold Bay Airport" } }, { "key": "1683", "attributes": { "latitude": 59.04470062, "longitude": -158.5050049, "fullName": "Dillingham Airport" } }, { "key": "1677", "attributes": { "latitude": 51.87799835205078, "longitude": -176.64599609375, "fullName": "Adak Airport" } }, { "key": "730", "attributes": { "latitude": 59.645599365234375, "longitude": -151.4770050048828, "fullName": "Homer Airport" } }, { "key": "771", "attributes": { "latitude": 61.13389969, "longitude": -146.2480011, "fullName": "Valdez Pioneer Field" } }, { "key": "1678", "attributes": { "latitude": 58.67679977, "longitude": -156.6490021, "fullName": "King Salmon Airport" } }, { "key": "1699", "attributes": { "latitude": 56.578300476100004, "longitude": -169.662002563, "fullName": "St George Airport" } }, { "key": "769", "attributes": { "latitude": 63.88840103, "longitude": -160.798996, "fullName": "Unalakleet Airport" } }, { "key": "1696", "attributes": { "latitude": 55.314998626708984, "longitude": -160.5229949951172, "fullName": "Sand Point Airport" } }, { "key": "720", "attributes": { "latitude": 61.579102, "longitude": -159.216003, "fullName": "Chuathbaluk Airport" } }, { "key": "729", "attributes": { "latitude": 62.18830108642578, "longitude": -159.77499389648438, "fullName": "Holy Cross Airport" } }, { "key": "760", "attributes": { "latitude": 62.6922988892, "longitude": -159.569000244, "fullName": "Shageluk Airport" } }, { "key": "713", "attributes": { "latitude": 62.646702, "longitude": -160.190994, "fullName": "Anvik Airport" } }, { "key": "715", "attributes": { "latitude": 62.680042266799994, "longitude": -164.659927368, "fullName": "Alakanuk Airport" } }, { "key": "716", "attributes": { "latitude": 65.9815979004, "longitude": -161.149002075, "fullName": "Buckland Airport" } }, { "key": "722", "attributes": { "latitude": 66.0696029663, "longitude": -162.76600647, "fullName": "Deering Airport" } }, { "key": "752", "attributes": { "latitude": 69.73290253, "longitude": -163.0050049, "fullName": "Point Lay LRRS Airport" } }, { "key": "745", "attributes": { "latitude": 70.2099990845, "longitude": -151.005996704, "fullName": "Nuiqsut Airport" } }, { "key": "1701", "attributes": { "latitude": 59.5032997131, "longitude": -139.660003662, "fullName": "Yakutat Airport" } }, { "key": "723", "attributes": { "latitude": 64.61470032, "longitude": -162.2720032, "fullName": "Elim Airport" } }, { "key": "728", "attributes": { "latitude": 64.5504989624, "longitude": -163.007003784, "fullName": "Golovin Airport" } }, { "key": "736", "attributes": { "latitude": 64.9394989014, "longitude": -161.154006958, "fullName": "Koyuk Alfred Adams Airport" } }, { "key": "738", "attributes": { "latitude": 63.0306015015, "longitude": -163.533004761, "fullName": "Kotlik Airport" } }, { "key": "732", "attributes": { "latitude": 65.69789886, "longitude": -156.3509979, "fullName": "Huslia Airport" } }, { "key": "746", "attributes": { "latitude": 64.729301, "longitude": -158.074005, "fullName": "Nulato Airport" } }, { "key": "734", "attributes": { "latitude": 64.31909943, "longitude": -158.7409973, "fullName": "Kaltag Airport" } }, { "key": "727", "attributes": { "latitude": 63.76679992675781, "longitude": -171.73300170898438, "fullName": "Gambell Airport" } }, { "key": "765", "attributes": { "latitude": 63.6864013671875, "longitude": -170.4929962158203, "fullName": "Savoonga Airport" } }, { "key": "775", "attributes": { "latitude": 64.689201355, "longitude": -163.412994385, "fullName": "White Mountain Airport" } }, { "key": "757", "attributes": { "latitude": 61.845298767100005, "longitude": -165.570999146, "fullName": "Scammon Bay Airport" } }, { "key": "742", "attributes": { "latitude": 64.8760986328, "longitude": -157.727005005, "fullName": "Koyukuk Airport" } }, { "key": "897", "attributes": { "latitude": 66.04109955, "longitude": -154.2630005, "fullName": "Hughes Airport" } }, { "key": "733", "attributes": { "latitude": 66.9759979248, "longitude": -160.43699646, "fullName": "Bob Baker Memorial Airport" } }, { "key": "749", "attributes": { "latitude": 66.81790161, "longitude": -161.0189972, "fullName": "Robert (Bob) Curtis Memorial Airport" } }, { "key": "761", "attributes": { "latitude": 64.37110138, "longitude": -161.223999, "fullName": "Shaktoolik Airport" } }, { "key": "743", "attributes": { "latitude": 62.095401763916016, "longitude": -163.6820068359375, "fullName": "Mountain Village Airport" } }, { "key": "740", "attributes": { "latitude": 65.3312988281, "longitude": -166.466003418, "fullName": "Brevig Mission Airport" } }, { "key": "767", "attributes": { "latitude": 65.2404022217, "longitude": -166.339004517, "fullName": "Teller Airport" } }, { "key": "772", "attributes": { "latitude": 65.622593, "longitude": -168.095, "fullName": "Wales Airport" } }, { "key": "741", "attributes": { "latitude": 67.73619842529297, "longitude": -164.56300354003906, "fullName": "Kivalina Airport" } }, { "key": "747", "attributes": { "latitude": 66.9123001099, "longitude": -156.897003174, "fullName": "Kobuk Airport" } }, { "key": "759", "attributes": { "latitude": 66.249604, "longitude": -166.089112, "fullName": "Shishmaref Airport" } }, { "key": "835", "attributes": { "latitude": 65.56310272, "longitude": -167.9219971, "fullName": "Tin City Long Range Radar Station Airport" } }, { "key": "774", "attributes": { "latitude": 66.60009766, "longitude": -159.9859924, "fullName": "Selawik Airport" } }, { "key": "776", "attributes": { "latitude": 67.56610107421875, "longitude": -162.97500610351562, "fullName": "Noatak Airport" } }, { "key": "762", "attributes": { "latitude": 61.7005004883, "longitude": -157.166000366, "fullName": "Sleetmute Airport" } }, { "key": "763", "attributes": { "latitude": 63.49010086, "longitude": -162.1100006, "fullName": "St Michael Airport" } }, { "key": "2980", "attributes": { "latitude": 7.56538, "longitude": -72.035103, "fullName": "Mayor Buenaventura Vivas International Airport" } }, { "key": "1032", "attributes": { "latitude": 8.288530349731445, "longitude": -62.760398864746094, "fullName": "General Manuel Carlos Piar International Airport" } }, { "key": "3193", "attributes": { "latitude": 7.840829849243164, "longitude": -72.439697265625, "fullName": "San Antonio Del Tachira Airport" } }, { "key": "3186", "attributes": { "latitude": 10.450332641601562, "longitude": -64.1304702758789, "fullName": "Cumaná (Antonio José de Sucre) Airport" } }, { "key": "1033", "attributes": { "latitude": 9.34047794342041, "longitude": -70.58406066894531, "fullName": "Dr. Antonio Nicolás Briceño Airport" } }, { "key": "1029", "attributes": { "latitude": 8.582078, "longitude": -71.161041, "fullName": "Alberto Carnevalli Airport" } }, { "key": "3188", "attributes": { "latitude": 8.239167213439941, "longitude": -72.27102661132812, "fullName": "La Fria Airport" } }, { "key": "1028", "attributes": { "latitude": 8.615, "longitude": -70.21416667, "fullName": "Barinas Airport" } }, { "key": "2981", "attributes": { "latitude": 8.624139, "longitude": -71.672668, "fullName": "Juan Pablo Pérez Alfonso Airport" } }, { "key": "2993", "attributes": { "latitude": 9.75452995300293, "longitude": -63.14739990234375, "fullName": "Maturín Airport" } }, { "key": "3192", "attributes": { "latitude": 8.9451465606689, "longitude": -64.151084899902, "fullName": "San Tomé Airport" } }, { "key": "3187", "attributes": { "latitude": 11.41494369506836, "longitude": -69.68090057373047, "fullName": "José Leonardo Chirinos Airport" } }, { "key": "3190", "attributes": { "latitude": 5.6199898719788, "longitude": -67.606101989746, "fullName": "Cacique Aramare Airport" } }, { "key": "1209", "attributes": { "latitude": 34.18539810180664, "longitude": -79.7238998413086, "fullName": "Florence Regional Airport" } }, { "key": "1292", "attributes": { "latitude": 35.6352005, "longitude": -77.38529968, "fullName": "Pitt Greenville Airport" } }, { "key": "1230", "attributes": { "latitude": 38.36669922, "longitude": -82.55799866, "fullName": "Tri-State/Milton J. Ferguson Field" } }, { "key": "1226", "attributes": { "latitude": 32.2243995667, "longitude": -80.6975021362, "fullName": "Hilton Head Airport" } }, { "key": "1319", "attributes": { "latitude": 38.34049987792969, "longitude": -75.51029968261719, "fullName": "Salisbury Ocean City Wicomico Regional Airport" } }, { "key": "2839", "attributes": { "latitude": 39.10329819, "longitude": -84.41860199, "fullName": "Cincinnati Municipal Airport Lunken Field" } }, { "key": "1259", "attributes": { "latitude": 37.326698303222656, "longitude": -79.20040130615234, "fullName": "Lynchburg Regional Preston Glenn Field" } }, { "key": "2590", "attributes": { "latitude": 19.733, "longitude": -72.194702, "fullName": "Cap Haitien International Airport" } }, { "key": "2068", "attributes": { "latitude": 42.853599548339844, "longitude": 71.30359649658203, "fullName": "Taraz Airport" } }, { "key": "2074", "attributes": { "latitude": 44.706902, "longitude": 65.592499, "fullName": "Kzyl-Orda Southwest Airport" } }, { "key": "2069", "attributes": { "latitude": 47.708302, "longitude": 67.733299, "fullName": "Zhezkazgan Airport" } }, { "key": "2076", "attributes": { "latitude": 54.77470016479492, "longitude": 69.18389892578125, "fullName": "Petropavlosk South Airport" } }, { "key": "2075", "attributes": { "latitude": 50.351295, "longitude": 80.234398, "fullName": "Semipalatinsk Airport" } }, { "key": "3097", "attributes": { "latitude": 39.9766273499, "longitude": 43.8766479492, "fullName": "Iğdır Airport" } }, { "key": "3092", "attributes": { "latitude": 39.654541015625, "longitude": 43.025978088378906, "fullName": "Ağrı Airport" } }, { "key": "1800", "attributes": { "latitude": 34.3459014893, "longitude": 47.1581001282, "fullName": "Shahid Ashrafi Esfahani Airport" } }, { "key": "3104", "attributes": { "latitude": 42.015800476074, "longitude": 35.066398620605, "fullName": "Sinop Airport" } }, { "key": "3103", "attributes": { "latitude": 39.18880081176758, "longitude": 45.45840072631836, "fullName": "Nakhchivan Airport" } }, { "key": "3000", "attributes": { "latitude": 36.305801, "longitude": 43.1474, "fullName": "Mosul International Airport" } }, { "key": "3094", "attributes": { "latitude": 38.8592605591, "longitude": 40.5959625244, "fullName": "Bingöl Çeltiksuyu Airport" } }, { "key": "3096", "attributes": { "latitude": 44.36220169067383, "longitude": 28.488300323486328, "fullName": "Mihail Kogălniceanu International Airport" } }, { "key": "3098", "attributes": { "latitude": 37.8554000854, "longitude": 30.368400573699997, "fullName": "Süleyman Demirel International Airport" } }, { "key": "3100", "attributes": { "latitude": 41.31420135498047, "longitude": 33.795799255371094, "fullName": "Kastamonu Airport" } }, { "key": "3102", "attributes": { "latitude": 39.113079, "longitude": 30.128111, "fullName": "Zafer Airport" } }, { "key": "3091", "attributes": { "latitude": 37.7313995361, "longitude": 38.4688987732, "fullName": "Adıyaman Airport" } }, { "key": "2999", "attributes": { "latitude": 29.611600875854492, "longitude": 35.01810073852539, "fullName": "Aqaba King Hussein International Airport" } }, { "key": "2883", "attributes": { "latitude": 29.961000442504883, "longitude": 70.48590087890625, "fullName": "Dera Ghazi Khan Airport" } }, { "key": "797", "attributes": { "latitude": 9.458962, "longitude": -82.515062, "fullName": "Cap Manuel Niño International Airport" } }, { "key": "800", "attributes": { "latitude": 7.51777982711792, "longitude": -78.1572036743164, "fullName": "Jaqué Airport" } }, { "key": "805", "attributes": { "latitude": 8.667, "longitude": -77.418, "fullName": "Puerto Obaldia Airport" } }, { "key": "2610", "attributes": { "latitude": 19.3719997406, "longitude": 98.43699646, "fullName": "Mae Hong Son Airport" } }, { "key": "2609", "attributes": { "latitude": 19.301300048828125, "longitude": 97.97579956054688, "fullName": "Mae Hong Son Airport" } }, { "key": "2009", "attributes": { "latitude": 18.807899475097656, "longitude": 100.78299713134766, "fullName": "Nan Airport" } }, { "key": "2011", "attributes": { "latitude": 16.782899856567383, "longitude": 100.27899932861328, "fullName": "Phitsanulok Airport" } }, { "key": "834", "attributes": { "latitude": 68.87509918, "longitude": -166.1100006, "fullName": "Cape Lisburne LRRS Airport" } }, { "key": "2442", "attributes": { "latitude": 25.6746997833, "longitude": 116.747001648, "fullName": "Longyan Guanzhishan Airport" } }, { "key": "844", "attributes": { "latitude": 52.45249938964844, "longitude": -125.3030014038086, "fullName": "Anahim Lake Airport" } }, { "key": "2636", "attributes": { "latitude": -51.82279968261719, "longitude": -58.447200775146484, "fullName": "Mount Pleasant Airport" } }, { "key": "888", "attributes": { "latitude": 24.178699493408203, "longitude": 23.31399917602539, "fullName": "Kufra Airport" } }, { "key": "2657", "attributes": { "latitude": 25.1455993652, "longitude": 10.142600059500001, "fullName": "Ghat Airport" } }, { "key": "2659", "attributes": { "latitude": 30.15169906616211, "longitude": 9.715310096740723, "fullName": "Ghadames East Airport" } }, { "key": "896", "attributes": { "latitude": 68.1147, "longitude": -145.578995, "fullName": "Arctic Village Airport" } }, { "key": "2301", "attributes": { "latitude": 27.91020012, "longitude": -82.68740082, "fullName": "St Petersburg Clearwater International Airport" } }, { "key": "2300", "attributes": { "latitude": 26.92020035, "longitude": -81.9905014, "fullName": "Charlotte County Airport" } }, { "key": "2841", "attributes": { "latitude": 40.799400329589844, "longitude": -74.41490173339844, "fullName": "Morristown Municipal Airport" } }, { "key": "2027", "attributes": { "latitude": 46.25080108642578, "longitude": -84.47239685058594, "fullName": "Chippewa County International Airport" } }, { "key": "2020", "attributes": { "latitude": 45.0780983, "longitude": -83.56030273, "fullName": "Alpena County Regional Airport" } }, { "key": "1159", "attributes": { "latitude": 42.20869827, "longitude": -75.97979736, "fullName": "Greater Binghamton/Edwin A Link field" } }, { "key": "2034", "attributes": { "latitude": 45.7226982117, "longitude": -87.0936965942, "fullName": "Delta County Airport" } }, { "key": "1239", "attributes": { "latitude": 42.49100112915039, "longitude": -76.4583969116211, "fullName": "Ithaca Tompkins Regional Airport" } }, { "key": "1202", "attributes": { "latitude": 42.0831270134, "longitude": -80.1738667488, "fullName": "Erie International Tom Ridge Field" } }, { "key": "2046", "attributes": { "latitude": 45.57089996, "longitude": -84.79669952, "fullName": "Pellston Regional Airport of Emmet County Airport" } }, { "key": "1160", "attributes": { "latitude": 44.80739974975586, "longitude": -68.8281021118164, "fullName": "Bangor International Airport" } }, { "key": "929", "attributes": { "latitude": 48.06570053, "longitude": -96.18499756, "fullName": "Thief River Falls Regional Airport" } }, { "key": "2600", "attributes": { "latitude": 33.22100067138672, "longitude": -92.81330108642578, "fullName": "South Arkansas Regional At Goodwin Field" } }, { "key": "2602", "attributes": { "latitude": 36.26150131225586, "longitude": -93.15470123291016, "fullName": "Boone County Airport" } }, { "key": "2601", "attributes": { "latitude": 34.47800064086914, "longitude": -93.09619903564453, "fullName": "Memorial Field" } }, { "key": "2604", "attributes": { "latitude": 35.599899, "longitude": -88.915604, "fullName": "McKellar-Sipes Regional Airport" } }, { "key": "1687", "attributes": { "latitude": 46.6068000793457, "longitude": -111.98300170898438, "fullName": "Helena Regional Airport" } }, { "key": "2023", "attributes": { "latitude": 46.39830017, "longitude": -94.13809967, "fullName": "Brainerd Lakes Regional Airport" } }, { "key": "2022", "attributes": { "latitude": 47.50939941, "longitude": -94.93370056, "fullName": "Bemidji Regional Airport" } }, { "key": "2047", "attributes": { "latitude": 45.63119888305664, "longitude": -89.46749877929688, "fullName": "Rhinelander Oneida County Airport" } }, { "key": "2192", "attributes": { "latitude": 44.91400146, "longitude": -97.15470123, "fullName": "Watertown Regional Airport" } }, { "key": "2031", "attributes": { "latitude": 46.7974014282, "longitude": -102.802001953, "fullName": "Dickinson Theodore Roosevelt Regional Airport" } }, { "key": "2038", "attributes": { "latitude": 45.8184013367, "longitude": -88.1145019531, "fullName": "Ford Airport" } }, { "key": "2039", "attributes": { "latitude": 48.566200256347656, "longitude": -93.4030990600586, "fullName": "Falls International Airport" } }, { "key": "2040", "attributes": { "latitude": 48.177898407, "longitude": -103.641998291, "fullName": "Sloulin Field International Airport" } }, { "key": "2036", "attributes": { "latitude": 47.38660049, "longitude": -92.83899689, "fullName": "Range Regional Airport" } }, { "key": "2019", "attributes": { "latitude": 45.449100494384766, "longitude": -98.42179870605469, "fullName": "Aberdeen Regional Airport" } }, { "key": "932", "attributes": { "latitude": 41.25310135, "longitude": -70.06020355, "fullName": "Nantucket Memorial Airport" } }, { "key": "952", "attributes": { "latitude": 41.3931007385, "longitude": -70.6143035889, "fullName": "Martha's Vineyard Airport" } }, { "key": "942", "attributes": { "latitude": 41.67610168457031, "longitude": -70.95690155029297, "fullName": "New Bedford Regional Airport" } }, { "key": "947", "attributes": { "latitude": 41.66930008, "longitude": -70.28040314, "fullName": "Barnstable Municipal Boardman Polando Field" } }, { "key": "3090", "attributes": { "latitude": 40.85010147089999, "longitude": -74.060798645, "fullName": "Teterboro Airport" } }, { "key": "951", "attributes": { "latitude": 44.93579864501953, "longitude": -74.84559631347656, "fullName": "Massena International Richards Field" } }, { "key": "954", "attributes": { "latitude": 44.6819000244, "longitude": -75.46549987790002, "fullName": "Ogdensburg International Airport" } }, { "key": "934", "attributes": { "latitude": 44.320598602299995, "longitude": -69.7973022461, "fullName": "Augusta State Airport" } }, { "key": "936", "attributes": { "latitude": 44.45000076, "longitude": -68.3615036, "fullName": "Hancock County-Bar Harbor Airport" } }, { "key": "955", "attributes": { "latitude": 48.094501495399996, "longitude": -105.574996948, "fullName": "L M Clayton Airport" } }, { "key": "943", "attributes": { "latitude": 47.13869858, "longitude": -104.8069992, "fullName": "Dawson Community Airport" } }, { "key": "960", "attributes": { "latitude": 47.706902, "longitude": -104.193001, "fullName": "Sidney - Richland Regional Airport" } }, { "key": "944", "attributes": { "latitude": 48.212502, "longitude": -106.614998, "fullName": "Wokal Field Glasgow International Airport" } }, { "key": "946", "attributes": { "latitude": 48.54299927, "longitude": -109.762001, "fullName": "Havre City County Airport" } }, { "key": "958", "attributes": { "latitude": 44.06010056, "longitude": -69.09919739, "fullName": "Knox County Regional Airport" } }, { "key": "957", "attributes": { "latitude": 42.0718994141, "longitude": -70.2213973999, "fullName": "Provincetown Municipal Airport" } }, { "key": "1692", "attributes": { "latitude": 46.68899918, "longitude": -68.0447998, "fullName": "Northern Maine Regional Airport at Presque Isle" } }, { "key": "962", "attributes": { "latitude": 44.38529968261719, "longitude": -74.2061996459961, "fullName": "Adirondack Regional Airport" } }, { "key": "949", "attributes": { "latitude": 43.626098632799994, "longitude": -72.30419921880001, "fullName": "Lebanon Municipal Airport" } }, { "key": "959", "attributes": { "latitude": 43.52939987, "longitude": -72.94960022, "fullName": "Rutland - Southern Vermont Regional Airport" } }, { "key": "940", "attributes": { "latitude": 18.313289, "longitude": -65.304324, "fullName": "Benjamin Rivera Noriega Airport" } }, { "key": "950", "attributes": { "latitude": 18.255699157714844, "longitude": -67.14849853515625, "fullName": "Eugenio Maria De Hostos Airport" } }, { "key": "967", "attributes": { "latitude": 18.446399688720703, "longitude": -64.42749786376953, "fullName": "Virgin Gorda Airport" } }, { "key": "968", "attributes": { "latitude": 18.115800857500002, "longitude": -65.4226989746, "fullName": "Vieques Airport" } }, { "key": "979", "attributes": { "latitude": 58.8363990784, "longitude": -122.597000122, "fullName": "Fort Nelson Airport" } }, { "key": "989", "attributes": { "latitude": 21.444499969482422, "longitude": -71.14230346679688, "fullName": "JAGS McCartney International Airport" } }, { "key": "991", "attributes": { "latitude": 21.333000183099998, "longitude": -71.1999969482, "fullName": "Salt Cay Airport" } }, { "key": "2591", "attributes": { "latitude": 21.515699386599998, "longitude": -71.528503418, "fullName": "South Caicos Airport" } }, { "key": "992", "attributes": { "latitude": -0.5833, "longitude": -72.4083, "fullName": "Araracuara Airport" } }, { "key": "1014", "attributes": { "latitude": 13.3569, "longitude": -81.3583, "fullName": "El Embrujo Airport" } }, { "key": "996", "attributes": { "latitude": 6.20292, "longitude": -77.3947, "fullName": "José Celestino Mutis Airport" } }, { "key": "1009", "attributes": { "latitude": 5.6964, "longitude": -77.2806, "fullName": "Reyes Murillo Airport" } }, { "key": "1006", "attributes": { "latitude": -1.32861, "longitude": -69.5797, "fullName": "La Pedrera Airport" } }, { "key": "1007", "attributes": { "latitude": -0.182278, "longitude": -74.7708, "fullName": "Caucaya Airport" } }, { "key": "1776", "attributes": { "latitude": 46.46770095825195, "longitude": 24.412500381469727, "fullName": "Transilvania Târgu Mureş International Airport" } }, { "key": "2902", "attributes": { "latitude": 48.88420104980469, "longitude": 24.686100006103516, "fullName": "Ivano-Frankivsk International Airport" } }, { "key": "1773", "attributes": { "latitude": 47.70330047607422, "longitude": 22.885700225830078, "fullName": "Satu Mare Airport" } }, { "key": "1769", "attributes": { "latitude": 47.025299072265625, "longitude": 21.90250015258789, "fullName": "Oradea International Airport" } }, { "key": "1757", "attributes": { "latitude": 47.65840148925781, "longitude": 23.469999313354492, "fullName": "Tautii Magheraus Airport" } }, { "key": "3191", "attributes": { "latitude": 4.554999828338623, "longitude": -61.150001525878906, "fullName": "Santa Elena de Uairen Airport" } }, { "key": "3184", "attributes": { "latitude": 6.231988906860352, "longitude": -62.85443115234375, "fullName": "Canaima Airport" } }, { "key": "2891", "attributes": { "latitude": 28.383899688720703, "longitude": 70.27960205078125, "fullName": "Shaikh Zaid Airport" } }, { "key": "2510", "attributes": { "latitude": 24.261699676513672, "longitude": 55.60919952392578, "fullName": "Al Ain International Airport" } }, { "key": "2914", "attributes": { "latitude": -0.693342, "longitude": 73.155602, "fullName": "Gan International Airport" } }, { "key": "3171", "attributes": { "latitude": 7.956669807430001, "longitude": 80.7285003662, "fullName": "Sigiriya Air Force Base" } }, { "key": "3172", "attributes": { "latitude": 5.993680000305176, "longitude": 80.32029724121094, "fullName": "Koggala Airport" } }, { "key": "1057", "attributes": { "latitude": 21.6487007141, "longitude": 69.65720367429999, "fullName": "Porbandar Airport" } }, { "key": "3074", "attributes": { "latitude": 31.692188, "longitude": 38.731544, "fullName": "Turaif Domestic Airport" } }, { "key": "3075", "attributes": { "latitude": 26.48, "longitude": 38.1288888889, "fullName": "Majeed Bin Abdulaziz Airport" } }, { "key": "3072", "attributes": { "latitude": 29.626399993896484, "longitude": 43.4906005859375, "fullName": "Rafha Domestic Airport" } }, { "key": "1391", "attributes": { "latitude": 46.48500061035156, "longitude": -84.5093994140625, "fullName": "Sault Ste Marie Airport" } }, { "key": "1414", "attributes": { "latitude": 48.569698333699996, "longitude": -81.376701355, "fullName": "Timmins/Victor M. Power" } }, { "key": "1412", "attributes": { "latitude": 46.625, "longitude": -80.79889678955078, "fullName": "Sudbury Airport" } }, { "key": "1427", "attributes": { "latitude": 42.9994010925293, "longitude": -82.30889892578125, "fullName": "Chris Hadfield Airport" } }, { "key": "1398", "attributes": { "latitude": 44.22529983520508, "longitude": -76.5969009399414, "fullName": "Kingston Norman Rogers Airport" } }, { "key": "1396", "attributes": { "latitude": 49.21080017089844, "longitude": -57.39139938354492, "fullName": "Deer Lake Airport" } }, { "key": "1411", "attributes": { "latitude": 46.1614, "longitude": -60.047798, "fullName": "Sydney / J.A. Douglas McCurdy Airport" } }, { "key": "1420", "attributes": { "latitude": 46.363602, "longitude": -79.422798, "fullName": "North Bay Jack Garland Airport" } }, { "key": "1081", "attributes": { "latitude": 35.4213981628, "longitude": 26.909999847399998, "fullName": "Kasos Airport" } }, { "key": "2683", "attributes": { "latitude": 48.634300231933594, "longitude": 22.263399124145508, "fullName": "Uzhhorod International Airport" } }, { "key": "3056", "attributes": { "latitude": 48.425278, "longitude": 10.931667, "fullName": "Augsburg Airport" } }, { "key": "1578", "attributes": { "latitude": 36.2126998901, "longitude": 1.33176994324, "fullName": "Ech Cheliff Airport" } }, { "key": "1705", "attributes": { "latitude": 31.3974990845, "longitude": -9.6816701889, "fullName": "Mogador Airport" } }, { "key": "1237", "attributes": { "latitude": 41.241798400878906, "longitude": -76.92109680175781, "fullName": "Williamsport Regional Airport" } }, { "key": "1231", "attributes": { "latitude": 41.26369858, "longitude": -72.88680267, "fullName": "Tweed New Haven Airport" } }, { "key": "1095", "attributes": { "latitude": -21.960899353027344, "longitude": -63.65169906616211, "fullName": "Yacuiba Airport" } }, { "key": "1103", "attributes": { "latitude": -17.8115997314, "longitude": -63.1715011597, "fullName": "El Trompillo Airport" } }, { "key": "1105", "attributes": { "latitude": -21.5557003021, "longitude": -64.7013015747, "fullName": "Capitan Oriel Lea Plaza Airport" } }, { "key": "1097", "attributes": { "latitude": -11.040399551400002, "longitude": -68.7829971313, "fullName": "Capitán Aníbal Arab Airport" } }, { "key": "1104", "attributes": { "latitude": -14.8186998367, "longitude": -64.9179992676, "fullName": "Teniente Av. Jorge Henrich Arauz Airport" } }, { "key": "2826", "attributes": { "latitude": -19.007099151611328, "longitude": -65.2886962890625, "fullName": "Juana Azurduy De Padilla Airport" } }, { "key": "1098", "attributes": { "latitude": -10.820599556, "longitude": -65.3455963135, "fullName": "Capitán de Av. Emilio Beltrán Airport" } }, { "key": "1101", "attributes": { "latitude": -19.5431003571, "longitude": -65.72370147710001, "fullName": "Capitan Nicolas Rojas Airport" } }, { "key": "3377", "attributes": { "latitude": -14.427900314299999, "longitude": -67.4968032837, "fullName": "Rurenabaque Airport" } }, { "key": "3378", "attributes": { "latitude": -20.446300506599997, "longitude": -66.8483963013, "fullName": "Uyuni Airport" } }, { "key": "1100", "attributes": { "latitude": -17.962600708, "longitude": -67.0762023926, "fullName": "Juan Mendoza Airport" } }, { "key": "1102", "attributes": { "latitude": -11, "longitude": -66, "fullName": "Capitán Av. Selin Zeitun Lopez Airport" } }, { "key": "1106", "attributes": { "latitude": 44.17470169067383, "longitude": 0.5905560255050659, "fullName": "Agen-La Garenne Airport" } }, { "key": "1114", "attributes": { "latitude": 43.55630111694336, "longitude": 2.289180040359497, "fullName": "Castres-Mazamet Airport" } }, { "key": "1936", "attributes": { "latitude": 43.90729904174805, "longitude": 4.901830196380615, "fullName": "Avignon-Caumont Airport" } }, { "key": "1108", "attributes": { "latitude": 44.89139938354492, "longitude": 2.4219400882720947, "fullName": "Aurillac Airport" } }, { "key": "2643", "attributes": { "latitude": 45.72919845581055, "longitude": 0.22145600616931915, "fullName": "Angoulême-Brie-Champniers Airport" } }, { "key": "2445", "attributes": { "latitude": 60.422000885009766, "longitude": 15.515199661254883, "fullName": "Borlange Airport" } }, { "key": "1119", "attributes": { "latitude": 48.754398, "longitude": -3.47166, "fullName": "Lannion-Côte de Granit Airport" } }, { "key": "1132", "attributes": { "latitude": 47.974998474121094, "longitude": -4.167789936065674, "fullName": "Quimper-Cornouaille Airport" } }, { "key": "3088", "attributes": { "latitude": 45.19810104370117, "longitude": 0.815555989742279, "fullName": "Périgueux-Bassillac Airport" } }, { "key": "3165", "attributes": { "latitude": 45.0806999206543, "longitude": 3.762890100479126, "fullName": "Le Puy-Loudes Airport" } }, { "key": "2432", "attributes": { "latitude": 3.049999952316284, "longitude": 30.91699981689453, "fullName": "Arua Airport" } }, { "key": "1134", "attributes": { "latitude": 0.18299999833106995, "longitude": 30.100000381469727, "fullName": "Kasese Airport" } }, { "key": "2664", "attributes": { "latitude": 35.8797988892, "longitude": -106.268997192, "fullName": "Los Alamos Airport" } }, { "key": "2663", "attributes": { "latitude": 32.337501525878906, "longitude": -104.26300048828125, "fullName": "Cavern City Air Terminal" } }, { "key": "1861", "attributes": { "latitude": 55.525902, "longitude": 8.5534, "fullName": "Esbjerg Airport" } }, { "key": "3397", "attributes": { "latitude": -35.71390151977539, "longitude": 137.52099609375, "fullName": "Kingscote Airport" } }, { "key": "3051", "attributes": { "latitude": -32.506900787353516, "longitude": 137.7169952392578, "fullName": "Port Augusta Airport" } }, { "key": "2973", "attributes": { "latitude": -30.485000610399997, "longitude": 136.876998901, "fullName": "Olympic Dam Airport" } }, { "key": "3392", "attributes": { "latitude": -32.13059997558594, "longitude": 133.7100067138672, "fullName": "Ceduna Airport" } }, { "key": "3408", "attributes": { "latitude": -33.05889892578125, "longitude": 137.51400756835938, "fullName": "Whyalla Airport" } }, { "key": "3393", "attributes": { "latitude": -29.040000915527344, "longitude": 134.7209930419922, "fullName": "Coober Pedy Airport" } }, { "key": "2975", "attributes": { "latitude": -34.6053009033, "longitude": 135.880004883, "fullName": "Port Lincoln Airport" } }, { "key": "2808", "attributes": { "latitude": -39.465801, "longitude": 176.869995, "fullName": "Hawke's Bay Airport" } }, { "key": "2822", "attributes": { "latitude": -35.7682991027832, "longitude": 174.36500549316406, "fullName": "Whangarei Airport" } }, { "key": "2821", "attributes": { "latitude": -37.92060089111328, "longitude": 176.91400146484375, "fullName": "Whakatane Airport" } }, { "key": "2812", "attributes": { "latitude": -40.32059860229492, "longitude": 175.61700439453125, "fullName": "Palmerston North Airport" } }, { "key": "2809", "attributes": { "latitude": -39.00859832763672, "longitude": 174.1790008544922, "fullName": "New Plymouth Airport" } }, { "key": "2791", "attributes": { "latitude": -41.5182991027832, "longitude": 173.8699951171875, "fullName": "Woodbourne Airport" } }, { "key": "2804", "attributes": { "latitude": -35.26279830932617, "longitude": 173.91200256347656, "fullName": "Kerikeri Airport" } }, { "key": "2819", "attributes": { "latitude": -38.73970031738281, "longitude": 176.08399963378906, "fullName": "Taupo Airport" } }, { "key": "2818", "attributes": { "latitude": -37.67190170288086, "longitude": 176.1959991455078, "fullName": "Tauranga Airport" } }, { "key": "2555", "attributes": { "latitude": -45.9281005859375, "longitude": 170.197998046875, "fullName": "Dunedin Airport" } }, { "key": "2797", "attributes": { "latitude": -38.663299560546875, "longitude": 177.97799682617188, "fullName": "Gisborne Airport" } }, { "key": "2815", "attributes": { "latitude": -38.10919952392578, "longitude": 176.31700134277344, "fullName": "Rotorua Regional Airport" } }, { "key": "2813", "attributes": { "latitude": -40.904701232910156, "longitude": 174.98899841308594, "fullName": "Paraparaumu Airport" } }, { "key": "2799", "attributes": { "latitude": -37.8666992188, "longitude": 175.332000732, "fullName": "Hamilton International Airport" } }, { "key": "2810", "attributes": { "latitude": -41.298301696777344, "longitude": 173.2209930419922, "fullName": "Nelson Airport" } }, { "key": "2802", "attributes": { "latitude": -35.06999969482422, "longitude": 173.28500366210938, "fullName": "Kaitaia Airport" } }, { "key": "2820", "attributes": { "latitude": -39.96220016479492, "longitude": 175.02499389648438, "fullName": "Wanganui Airport" } }, { "key": "2649", "attributes": { "latitude": 6.80628, "longitude": -58.1059, "fullName": "Eugene F. Correira International Airport" } }, { "key": "2599", "attributes": { "latitude": 33.94860076904297, "longitude": -83.32630157470703, "fullName": "Athens Ben Epps Airport" } }, { "key": "2793", "attributes": { "latitude": -20.668600082399998, "longitude": 140.503997803, "fullName": "Cloncurry Airport" } }, { "key": "2216", "attributes": { "latitude": -9.4280004501343, "longitude": 160.05499267578, "fullName": "Honiara International Airport" } }, { "key": "2962", "attributes": { "latitude": -23.5674991608, "longitude": 148.179000854, "fullName": "Emerald Airport" } }, { "key": "2955", "attributes": { "latitude": -23.5652999878, "longitude": 145.307006836, "fullName": "Barcaldine Airport" } }, { "key": "2956", "attributes": { "latitude": -24.903900146499996, "longitude": 152.319000244, "fullName": "Bundaberg Airport" } }, { "key": "2829", "attributes": { "latitude": -0.547458, "longitude": 166.919006, "fullName": "Nauru International Airport" } }, { "key": "2970", "attributes": { "latitude": -22.057800293, "longitude": 148.07699585, "fullName": "Moranbah Airport" } }, { "key": "2749", "attributes": { "latitude": -15.505000114399998, "longitude": 167.220001221, "fullName": "Santo Pekoa International Airport" } }, { "key": "2957", "attributes": { "latitude": -24.427799224900003, "longitude": 145.429000854, "fullName": "Blackall Airport" } }, { "key": "2969", "attributes": { "latitude": -23.4342002869, "longitude": 144.279998779, "fullName": "Longreach Airport" } }, { "key": "2117", "attributes": { "latitude": -23.3819007874, "longitude": 150.475006104, "fullName": "Rockhampton Airport" } }, { "key": "2938", "attributes": { "latitude": -26.545000076300003, "longitude": 148.774993896, "fullName": "Roma Airport" } }, { "key": "2929", "attributes": { "latitude": -26.4132995605, "longitude": 146.261993408, "fullName": "Charleville Airport" } }, { "key": "1689", "attributes": { "latitude": 46.3745002746582, "longitude": -117.01499938964844, "fullName": "Lewiston Nez Perce County Airport" } }, { "key": "2603", "attributes": { "latitude": 32.834201812699995, "longitude": -115.57900238, "fullName": "Imperial County Airport" } }, { "key": "2798", "attributes": { "latitude": -42.713600158691406, "longitude": 170.98500061035156, "fullName": "Hokitika Airfield" } }, { "key": "2801", "attributes": { "latitude": -46.41239929199219, "longitude": 168.31300354003906, "fullName": "Invercargill Airport" } }, { "key": "3138", "attributes": { "latitude": 41.17829895, "longitude": -78.8986969, "fullName": "DuBois Regional Airport" } }, { "key": "3132", "attributes": { "latitude": 41.8031005859375, "longitude": -78.64009857177734, "fullName": "Bradford Regional Airport" } }, { "key": "3146", "attributes": { "latitude": 42.15340042, "longitude": -79.25800323, "fullName": "Chautauqua County-Jamestown Airport" } }, { "key": "3157", "attributes": { "latitude": 39.34510040283203, "longitude": -81.43920135498047, "fullName": "Mid Ohio Valley Regional Airport" } }, { "key": "3141", "attributes": { "latitude": 41.3778991699, "longitude": -79.8603973389, "fullName": "Venango Regional Airport" } }, { "key": "1447", "attributes": { "latitude": -6.11527776718, "longitude": -50.0013885498, "fullName": "Carajás Airport" } }, { "key": "1463", "attributes": { "latitude": -21.5130558014, "longitude": -43.1730575562, "fullName": "Zona da Mata Regional Airport" } }, { "key": "2965", "attributes": { "latitude": -10.586400032, "longitude": 142.289993286, "fullName": "Horn Island Airport" } }, { "key": "2935", "attributes": { "latitude": -15.485600471496582, "longitude": 141.75100708007812, "fullName": "Kowanyama Airport" } }, { "key": "2933", "attributes": { "latitude": -12.7869, "longitude": 143.304993, "fullName": "Lockhart River Airport" } }, { "key": "2930", "attributes": { "latitude": -13.761133, "longitude": 143.113311, "fullName": "Coen Airport" } }, { "key": "2923", "attributes": { "latitude": -13.354067, "longitude": 141.72065, "fullName": "Aurukun Airport" } }, { "key": "2936", "attributes": { "latitude": -17.68409, "longitude": 141.069664, "fullName": "Normanton Airport" } }, { "key": "2922", "attributes": { "latitude": -10.9508, "longitude": 142.459, "fullName": "Northern Peninsula Airport" } }, { "key": "2942", "attributes": { "latitude": -12.6786003113, "longitude": 141.925003052, "fullName": "Weipa Airport" } }, { "key": "1953", "attributes": { "latitude": -4.34045982361, "longitude": 152.380004883, "fullName": "Tokua Airport" } }, { "key": "2932", "attributes": { "latitude": -14.896451, "longitude": 141.60908, "fullName": "Pormpuraaw Airport" } }, { "key": "2279", "attributes": { "latitude": 37.22740173339844, "longitude": 140.43099975585938, "fullName": "Fukushima Airport" } }, { "key": "3382", "attributes": { "latitude": 41.12620163, "longitude": -100.6839981, "fullName": "North Platte Regional Airport Lee Bird Field" } }, { "key": "2203", "attributes": { "latitude": 44.38270187, "longitude": -100.2860031, "fullName": "Pierre Regional Airport" } }, { "key": "2049", "attributes": { "latitude": 37.036389, "longitude": -113.510306, "fullName": "St George Municipal Airport" } }, { "key": "3159", "attributes": { "latitude": 38.289100646972656, "longitude": -104.49700164794922, "fullName": "Pueblo Memorial Airport" } }, { "key": "3379", "attributes": { "latitude": 41.87400055, "longitude": -103.5960007, "fullName": "Western Neb. Rgnl/William B. Heilig Airport" } }, { "key": "3155", "attributes": { "latitude": 38.509799957300004, "longitude": -107.893997192, "fullName": "Montrose Regional Airport" } }, { "key": "2035", "attributes": { "latitude": 44.348899841299996, "longitude": -105.539001465, "fullName": "Gillette Campbell County Airport" } }, { "key": "3387", "attributes": { "latitude": 44.76919937133789, "longitude": -106.9800033569336, "fullName": "Sheridan County Airport" } }, { "key": "2197", "attributes": { "latitude": 36.741199493399996, "longitude": -108.230003357, "fullName": "Four Corners Regional Airport" } }, { "key": "3144", "attributes": { "latitude": 40.48120117, "longitude": -107.2180023, "fullName": "Yampa Valley Airport" } }, { "key": "2191", "attributes": { "latitude": 37.434898, "longitude": -105.866997, "fullName": "San Luis Valley Regional Bergman Field" } }, { "key": "3143", "attributes": { "latitude": 38.53390121, "longitude": -106.9329987, "fullName": "Gunnison Crested Butte Regional Airport" } }, { "key": "2029", "attributes": { "latitude": 44.520198822, "longitude": -109.024002075, "fullName": "Yellowstone Regional Airport" } }, { "key": "2193", "attributes": { "latitude": 36.532082, "longitude": -93.200544, "fullName": "Branson Airport" } }, { "key": "2196", "attributes": { "latitude": 37.76340103149414, "longitude": -99.9655990600586, "fullName": "Dodge City Regional Airport" } }, { "key": "2195", "attributes": { "latitude": 41.15570068, "longitude": -104.8119965, "fullName": "Cheyenne Regional Jerry Olson Field" } }, { "key": "2048", "attributes": { "latitude": 41.5942, "longitude": -109.065001, "fullName": "Southwest Wyoming Regional Airport" } }, { "key": "3386", "attributes": { "latitude": 43.064201355, "longitude": -108.459999084, "fullName": "Riverton Regional Airport" } }, { "key": "2201", "attributes": { "latitude": 37.0442009, "longitude": -100.9599991, "fullName": "Liberal Mid-America Regional Airport" } }, { "key": "2202", "attributes": { "latitude": 36.92610168, "longitude": -111.447998, "fullName": "Page Municipal Airport" } }, { "key": "3380", "attributes": { "latitude": 37.3030014038, "longitude": -108.627998352, "fullName": "Cortez Municipal Airport" } }, { "key": "3140", "attributes": { "latitude": 39.64260101, "longitude": -106.9179993, "fullName": "Eagle County Regional Airport" } }, { "key": "2041", "attributes": { "latitude": 43.6072998046875, "longitude": -110.73799896240234, "fullName": "Jackson Hole Airport" } }, { "key": "3384", "attributes": { "latitude": 40.20629883, "longitude": -100.5920029, "fullName": "Mc Cook Ben Nelson Regional Airport" } }, { "key": "3150", "attributes": { "latitude": 41.31209945678711, "longitude": -105.67500305175781, "fullName": "Laramie Regional Airport" } }, { "key": "2190", "attributes": { "latitude": 42.0531997681, "longitude": -102.804000854, "fullName": "Alliance Municipal Airport" } }, { "key": "1208", "attributes": { "latitude": 35.13850021, "longitude": -111.6709976, "fullName": "Flagstaff Pulliam Airport" } }, { "key": "2629", "attributes": { "latitude": 19.660161, "longitude": -80.088826, "fullName": "Edward Bodden Airfield" } }, { "key": "1833", "attributes": { "latitude": 55.68190002441406, "longitude": -6.256669998168945, "fullName": "Islay Airport" } }, { "key": "1840", "attributes": { "latitude": 56.49919891357422, "longitude": -6.869170188903809, "fullName": "Tiree Airport" } }, { "key": "1828", "attributes": { "latitude": 55.437198638916016, "longitude": -5.686389923095703, "fullName": "Campbeltown Airport" } }, { "key": "1827", "attributes": { "latitude": 57.0228, "longitude": -7.44306, "fullName": "Barra Airport" } }, { "key": "1826", "attributes": { "latitude": 57.48109817504883, "longitude": -7.3627800941467285, "fullName": "Benbecula Airport" } }, { "key": "2436", "attributes": { "latitude": -14.3310003281, "longitude": -170.710006714, "fullName": "Pago Pago International Airport" } }, { "key": "2435", "attributes": { "latitude": 21.15290069580078, "longitude": -157.0959930419922, "fullName": "Molokai Airport" } }, { "key": "2214", "attributes": { "latitude": 1.9861600399017334, "longitude": -157.35000610351562, "fullName": "Cassidy International Airport" } }, { "key": "2726", "attributes": { "latitude": 20.962900161743164, "longitude": -156.67300415039062, "fullName": "Kapalua Airport" } }, { "key": "2830", "attributes": { "latitude": 7.064760208129883, "longitude": 171.27200317382812, "fullName": "Marshall Islands International Airport" } }, { "key": "2434", "attributes": { "latitude": 20.785600662231445, "longitude": -156.9510040283203, "fullName": "Lanai Airport" } }, { "key": "3147", "attributes": { "latitude": 40.31610107421875, "longitude": -78.83390045166016, "fullName": "John Murtha Johnstown Cambria County Airport" } }, { "key": "3130", "attributes": { "latitude": 40.29639816, "longitude": -78.31999969, "fullName": "Altoona Blair County Airport" } }, { "key": "3152", "attributes": { "latitude": 39.64289856, "longitude": -79.91629791, "fullName": "Morgantown Municipal Walter L. Bill Hart Field" } }, { "key": "3162", "attributes": { "latitude": 38.2638015747, "longitude": -78.8964004517, "fullName": "Shenandoah Valley Regional Airport" } }, { "key": "2665", "attributes": { "latitude": 40.121700286865234, "longitude": -76.29609680175781, "fullName": "Lancaster Airport" } }, { "key": "3133", "attributes": { "latitude": 37.787300109899995, "longitude": -81.1241989136, "fullName": "Raleigh County Memorial Airport" } }, { "key": "2296", "attributes": { "latitude": 39.707901, "longitude": -77.72949982, "fullName": "Hagerstown Regional Richard A Henson Field" } }, { "key": "2666", "attributes": { "latitude": 28.85260009765625, "longitude": -96.91850280761719, "fullName": "Victoria Regional Airport" } }, { "key": "3145", "attributes": { "latitude": 32.6875, "longitude": -103.2170029, "fullName": "Lea County Regional Airport" } }, { "key": "2525", "attributes": { "latitude": 59.46009826660156, "longitude": -135.3159942626953, "fullName": "Skagway Airport" } }, { "key": "2523", "attributes": { "latitude": 59.24380111694336, "longitude": -135.5240020751953, "fullName": "Haines Airport" } }, { "key": "1694", "attributes": { "latitude": 56.80170059, "longitude": -132.9450073, "fullName": "Petersburg James A Johnson Airport" } }, { "key": "2521", "attributes": { "latitude": 58.4253006, "longitude": -135.7070007, "fullName": "Gustavus Airport" } }, { "key": "2522", "attributes": { "latitude": 58.0961, "longitude": -135.410111, "fullName": "Hoonah Airport" } }, { "key": "2519", "attributes": { "latitude": 57.503601, "longitude": -134.585007, "fullName": "Angoon Seaplane Base" } }, { "key": "1439", "attributes": { "latitude": 2.84138894081, "longitude": -60.6922225952, "fullName": "Atlas Brasil Cantanhede Airport" } }, { "key": "1501", "attributes": { "latitude": -3.38294005394, "longitude": -64.7240982056, "fullName": "Tefé Airport" } }, { "key": "1436", "attributes": { "latitude": -0.981292, "longitude": -62.919601, "fullName": "Barcelos Airport" } }, { "key": "1446", "attributes": { "latitude": -4.134059906005859, "longitude": -63.132598876953125, "fullName": "Coari Airport" } }, { "key": "1500", "attributes": { "latitude": -4.2556700706482, "longitude": -69.93579864502, "fullName": "Tabatinga Airport" } }, { "key": "1499", "attributes": { "latitude": -2.4247219562530518, "longitude": -54.785831451416016, "fullName": "Maestro Wilson Fonseca Airport" } }, { "key": "1486", "attributes": { "latitude": -2.6730198860168457, "longitude": -56.777198791503906, "fullName": "Parintins Airport" } }, { "key": "2607", "attributes": { "latitude": 38.79100036621094, "longitude": -97.6521987915039, "fullName": "Salina Municipal Airport" } }, { "key": "2308", "attributes": { "latitude": 41.26070023, "longitude": -80.67910004, "fullName": "Youngstown Warren Regional Airport" } }, { "key": "2223", "attributes": { "latitude": -16.8027992249, "longitude": 179.341003418, "fullName": "Savusavu Airport" } }, { "key": "2225", "attributes": { "latitude": 1.3816399574279785, "longitude": 173.14700317382812, "fullName": "Bonriki International Airport" } }, { "key": "2219", "attributes": { "latitude": -16.466699600219727, "longitude": 179.33999633789062, "fullName": "Labasa Airport" } }, { "key": "2226", "attributes": { "latitude": -16.6905994415, "longitude": -179.876998901, "fullName": "Matei Airport" } }, { "key": "2221", "attributes": { "latitude": -12.482500076293945, "longitude": 177.0709991455078, "fullName": "Rotuma Airport" } }, { "key": "3041", "attributes": { "latitude": -13.2383003235, "longitude": -176.199005127, "fullName": "Hihifo Airport" } }, { "key": "2218", "attributes": { "latitude": -19.058099746699998, "longitude": 178.156997681, "fullName": "Vunisea Airport" } }, { "key": "2898", "attributes": { "latitude": 24.3153, "longitude": -75.452301, "fullName": "New Bight Airport" } }, { "key": "2894", "attributes": { "latitude": 23.1790008545, "longitude": -75.09359741210001, "fullName": "Deadman's Cay Airport" } }, { "key": "2896", "attributes": { "latitude": 24.8950787333, "longitude": -76.1768817902, "fullName": "Rock Sound Airport" } }, { "key": "2895", "attributes": { "latitude": 23.68440055847168, "longitude": -74.83619689941406, "fullName": "Rum Cay Airport" } }, { "key": "2893", "attributes": { "latitude": 24.6294, "longitude": -75.673797, "fullName": "Arthur's Town Airport" } }, { "key": "3178", "attributes": { "latitude": 22.379499, "longitude": -73.013494, "fullName": "Mayaguana Airport" } }, { "key": "3177", "attributes": { "latitude": 20.975000381469727, "longitude": -73.66690063476562, "fullName": "Inagua Airport" } }, { "key": "3176", "attributes": { "latitude": 22.745599746699998, "longitude": -74.1824035645, "fullName": "Colonel Hill Airport" } }, { "key": "3175", "attributes": { "latitude": 22.441799163800003, "longitude": -73.97090148930002, "fullName": "Spring Point Airport" } }, { "key": "2897", "attributes": { "latitude": 23.582317, "longitude": -75.268621, "fullName": "Stella Maris Airport" } }, { "key": "2727", "attributes": { "latitude": 20.001300811767578, "longitude": -155.66799926757812, "fullName": "Waimea Kohala Airport" } }, { "key": "2725", "attributes": { "latitude": 20.79560089111328, "longitude": -156.01400756835938, "fullName": "Hana Airport" } }, { "key": "2606", "attributes": { "latitude": 45.695098877, "longitude": -118.841003418, "fullName": "Eastern Oregon Regional At Pendleton Airport" } }, { "key": "2605", "attributes": { "latitude": 43.41709899902344, "longitude": -124.24600219726562, "fullName": "Southwest Oregon Regional Airport" } }, { "key": "3151", "attributes": { "latitude": 42.156101, "longitude": -121.733002, "fullName": "Crater Lake-Klamath Regional Airport" } }, { "key": "2204", "attributes": { "latitude": 34.265499115, "longitude": -110.005996704, "fullName": "Show Low Regional Airport" } }, { "key": "2635", "attributes": { "latitude": -42.340388, "longitude": -73.715693, "fullName": "Mocopulli Airport" } }, { "key": "3216", "attributes": { "latitude": -15.248299598693848, "longitude": -146.61700439453125, "fullName": "Arutua Airport" } }, { "key": "3238", "attributes": { "latitude": -14.45580005645752, "longitude": -145.02499389648438, "fullName": "Takaroa Airport" } }, { "key": "3225", "attributes": { "latitude": -16.42650032043457, "longitude": -152.24400329589844, "fullName": "Maupiti Airport" } }, { "key": "3234", "attributes": { "latitude": -22.434099197387695, "longitude": -151.36099243164062, "fullName": "Rurutu Airport" } }, { "key": "3221", "attributes": { "latitude": -16.68720054626465, "longitude": -151.02200317382812, "fullName": "Huahine-Fare Airport" } }, { "key": "3242", "attributes": { "latitude": -14.436800003051758, "longitude": -146.07000732421875, "fullName": "Manihi Airport" } }, { "key": "3215", "attributes": { "latitude": -9.76879024506, "longitude": -139.011001587, "fullName": "Hiva Oa-Atuona Airport" } }, { "key": "3233", "attributes": { "latitude": -22.63725, "longitude": -152.8059, "fullName": "Rimatara Airport" } }, { "key": "3236", "attributes": { "latitude": -15.119600296020508, "longitude": -148.2310028076172, "fullName": "Tikehau Airport" } }, { "key": "3230", "attributes": { "latitude": -16.7229, "longitude": -151.466003, "fullName": "Raiatea Airport" } }, { "key": "3228", "attributes": { "latitude": -14.8681001663208, "longitude": -148.7169952392578, "fullName": "Mataiva Airport" } }, { "key": "3217", "attributes": { "latitude": -16.444400787353516, "longitude": -151.75100708007812, "fullName": "Bora Bora Airport" } }, { "key": "3220", "attributes": { "latitude": -18.074800491333008, "longitude": -140.9459991455078, "fullName": "Hao Airport" } }, { "key": "3229", "attributes": { "latitude": -8.795599937438965, "longitude": -140.22900390625, "fullName": "Nuku Hiva Airport" } }, { "key": "3227", "attributes": { "latitude": -17.49, "longitude": -149.761993, "fullName": "Moorea Airport" } }, { "key": "3239", "attributes": { "latitude": -23.365400314331055, "longitude": -149.5240020751953, "fullName": "Tubuai Airport" } }, { "key": "3235", "attributes": { "latitude": -23.885200500499998, "longitude": -147.662002563, "fullName": "Raivavae Airport" } }, { "key": "3231", "attributes": { "latitude": -14.954299926757812, "longitude": -147.66099548339844, "fullName": "Rangiroa Airport" } }, { "key": "3218", "attributes": { "latitude": -16.054100036621094, "longitude": -145.65699768066406, "fullName": "Fakarava Airport" } }, { "key": "3214", "attributes": { "latitude": -14.428099632263184, "longitude": -146.2570037841797, "fullName": "Ahe Airport" } }, { "key": "1453", "attributes": { "latitude": -3.85493, "longitude": -32.423302, "fullName": "Fernando de Noronha Airport" } }, { "key": "1684", "attributes": { "latitude": 47.3988990784, "longitude": -120.207000732, "fullName": "Pangborn Memorial Airport" } }, { "key": "1679", "attributes": { "latitude": 46.09489822, "longitude": -118.288002, "fullName": "Walla Walla Regional Airport" } }, { "key": "1702", "attributes": { "latitude": 46.56819916, "longitude": -120.5439987, "fullName": "Yakima Air Terminal McAllister Field" } }, { "key": "1695", "attributes": { "latitude": 46.7439, "longitude": -117.110001, "fullName": "Pullman Moscow Regional Airport" } }, { "key": "3135", "attributes": { "latitude": 39.79539871, "longitude": -121.8580017, "fullName": "Chico Municipal Airport" } }, { "key": "3129", "attributes": { "latitude": 40.978101, "longitude": -124.109, "fullName": "California Redwood Coast-Humboldt County Airport" } }, { "key": "3160", "attributes": { "latitude": 40.50899887, "longitude": -122.2929993, "fullName": "Redding Municipal Airport" } }, { "key": "3134", "attributes": { "latitude": 41.78020096, "longitude": -124.2369995, "fullName": "Jack Mc Namara Field Airport" } }, { "key": "3154", "attributes": { "latitude": 37.62580109, "longitude": -120.9540024, "fullName": "Modesto City Co-Harry Sham Field" } }, { "key": "2026", "attributes": { "latitude": 37.70100021362305, "longitude": -113.0989990234375, "fullName": "Cedar City Regional Airport" } }, { "key": "2024", "attributes": { "latitude": 45.95479965209961, "longitude": -112.49700164794922, "fullName": "Bert Mooney Airport" } }, { "key": "2028", "attributes": { "latitude": 38.75500107, "longitude": -109.7549973, "fullName": "Canyonlands Field" } }, { "key": "2045", "attributes": { "latitude": 42.9098014831543, "longitude": -112.59600067138672, "fullName": "Pocatello Regional Airport" } }, { "key": "2050", "attributes": { "latitude": 42.4818, "longitude": -114.487999, "fullName": "Joslin Field Magic Valley Regional Airport" } }, { "key": "2033", "attributes": { "latitude": 40.82490158081055, "longitude": -115.79199981689453, "fullName": "Elko Regional Airport" } }, { "key": "2051", "attributes": { "latitude": 40.4408989, "longitude": -109.5100021, "fullName": "Vernal Regional Airport" } }, { "key": "3407", "attributes": { "latitude": -22.36359977722168, "longitude": 143.08599853515625, "fullName": "Winton Airport" } }, { "key": "1410", "attributes": { "latitude": 48.9369010925293, "longitude": -54.56809997558594, "fullName": "Gander International Airport" } }, { "key": "2394", "attributes": { "latitude": 49.706104, "longitude": -2.21472, "fullName": "Alderney Airport" } }, { "key": "1529", "attributes": { "latitude": 49.3652992249, "longitude": 0.154305994511, "fullName": "Deauville-Saint-Gatien Airport" } }, { "key": "1518", "attributes": { "latitude": 51.1893997192, "longitude": 4.46027994156, "fullName": "Antwerp International Airport (Deurne)" } }, { "key": "3053", "attributes": { "latitude": 39.455299377441406, "longitude": -31.131399154663086, "fullName": "Flores Airport" } }, { "key": "3055", "attributes": { "latitude": 38.66550064086914, "longitude": -28.175800323486328, "fullName": "São Jorge Airport" } }, { "key": "1378", "attributes": { "latitude": -14.208200454711914, "longitude": -42.74610137939453, "fullName": "Guanambi Airport" } }, { "key": "2165", "attributes": { "latitude": 14.14680004119873, "longitude": 38.77280044555664, "fullName": "Axum Airport" } }, { "key": "2178", "attributes": { "latitude": 13.467399597167969, "longitude": 39.53350067138672, "fullName": "Mekele Airport" } }, { "key": "2166", "attributes": { "latitude": 11.608099937438965, "longitude": 37.32160186767578, "fullName": "Bahir Dar Airport" } }, { "key": "2171", "attributes": { "latitude": 12.51990032196045, "longitude": 37.433998107910156, "fullName": "Gonder Airport" } }, { "key": "2173", "attributes": { "latitude": 9.3325, "longitude": 42.9121, "fullName": "Wilwal International Airport" } }, { "key": "2163", "attributes": { "latitude": 6.0393900871276855, "longitude": 37.59049987792969, "fullName": "Arba Minch Airport" } }, { "key": "2172", "attributes": { "latitude": 8.12876033782959, "longitude": 34.5630989074707, "fullName": "Gambella Airport" } }, { "key": "2164", "attributes": { "latitude": 10.018500328063965, "longitude": 34.586299896240234, "fullName": "Asosa Airport" } }, { "key": "2174", "attributes": { "latitude": 7.66609001159668, "longitude": 36.81660079956055, "fullName": "Jimma Airport" } }, { "key": "1875", "attributes": { "latitude": -0.21699999272823334, "longitude": 20.850000381469727, "fullName": "Boende Airport" } }, { "key": "1888", "attributes": { "latitude": -6.121240139010001, "longitude": 23.569000244099996, "fullName": "Mbuji Mayi Airport" } }, { "key": "1887", "attributes": { "latitude": 0.0226000007242, "longitude": 18.2887001038, "fullName": "Mbandaka Airport" } }, { "key": "1889", "attributes": { "latitude": -6.43833, "longitude": 20.794701, "fullName": "Tshikapa Airport" } }, { "key": "1884", "attributes": { "latitude": -2.91917991638, "longitude": 25.915399551399997, "fullName": "Kindu Airport" } }, { "key": "1883", "attributes": { "latitude": -5.90005016327, "longitude": 22.4692001343, "fullName": "Kananga Airport" } }, { "key": "1879", "attributes": { "latitude": 0.481638997793, "longitude": 25.3379993439, "fullName": "Bangoka International Airport" } }, { "key": "3277", "attributes": { "latitude": -2.462239980697632, "longitude": 28.907899856567383, "fullName": "Kamembe Airport" } }, { "key": "2058", "attributes": { "latitude": -15.261199951171875, "longitude": 12.14680004119873, "fullName": "Namibe Airport" } }, { "key": "2065", "attributes": { "latitude": -9.689069747924805, "longitude": 20.431900024414062, "fullName": "Saurimo Airport" } }, { "key": "2060", "attributes": { "latitude": -14.924699783325195, "longitude": 13.574999809265137, "fullName": "Lubango Airport" } }, { "key": "2066", "attributes": { "latitude": -17.0435009003, "longitude": 15.683799743700002, "fullName": "Ngjiva Pereira Airport" } }, { "key": "2055", "attributes": { "latitude": -12.4792, "longitude": 13.4869, "fullName": "Catumbela Airport" } }, { "key": "2056", "attributes": { "latitude": -11.768099784851074, "longitude": 19.8976993560791, "fullName": "Luena Airport" } }, { "key": "2185", "attributes": { "latitude": -6.269899845123291, "longitude": 14.246999740600586, "fullName": "Mbanza Congo Airport" } }, { "key": "2054", "attributes": { "latitude": -5.59699010848999, "longitude": 12.188400268554688, "fullName": "Cabinda Airport" } }, { "key": "2063", "attributes": { "latitude": -6.141089916229248, "longitude": 12.371800422668457, "fullName": "Soyo Airport" } }, { "key": "2062", "attributes": { "latitude": -12.404600143433, "longitude": 16.947399139404, "fullName": "Kuito Airport" } }, { "key": "2061", "attributes": { "latitude": -14.657600402832031, "longitude": 17.71980094909668, "fullName": "Menongue Airport" } }, { "key": "2057", "attributes": { "latitude": -9.525090217590332, "longitude": 16.312400817871094, "fullName": "Malanje Airport" } }, { "key": "2059", "attributes": { "latitude": -12.808899879455566, "longitude": 15.760499954223633, "fullName": "Nova Lisboa Airport" } }, { "key": "3292", "attributes": { "latitude": 66.363899230957, "longitude": 14.301400184631, "fullName": "Mo i Rana Airport, Røssvoll" } }, { "key": "3297", "attributes": { "latitude": 64.838302612305, "longitude": 11.14610004425, "fullName": "Rørvik Airport, Ryum" } }, { "key": "3291", "attributes": { "latitude": 65.783996582031, "longitude": 13.214900016785, "fullName": "Mosjøen Airport (Kjærstad)" } }, { "key": "3294", "attributes": { "latitude": 64.472198486328, "longitude": 11.57859992981, "fullName": "Namsos Høknesøra Airport" } }, { "key": "2514", "attributes": { "latitude": 58.7672004699707, "longitude": -111.11699676513672, "fullName": "Fort Chipewyan Airport" } }, { "key": "2588", "attributes": { "latitude": 50.11389923095703, "longitude": -91.9052963256836, "fullName": "Sioux Lookout Airport" } }, { "key": "3336", "attributes": { "latitude": 52.9593933975, "longitude": -87.3748683929, "fullName": "Webequie Airport" } }, { "key": "3327", "attributes": { "latitude": 51.5619010925293, "longitude": -87.90779876708984, "fullName": "Fort Hope Airport" } }, { "key": "2582", "attributes": { "latitude": 48.65420150756836, "longitude": -93.439697265625, "fullName": "Fort Frances Municipal Airport" } }, { "key": "3357", "attributes": { "latitude": 51.291099548339844, "longitude": -80.60780334472656, "fullName": "Moosonee Airport" } }, { "key": "2589", "attributes": { "latitude": 49.41389846801758, "longitude": -82.46749877929688, "fullName": "Kapuskasing Airport" } }, { "key": "3355", "attributes": { "latitude": 51.47330093383789, "longitude": -78.75830078125, "fullName": "Waskaganish Airport" } }, { "key": "3308", "attributes": { "latitude": 54.1796989440918, "longitude": -58.45750045776367, "fullName": "Rigolet Airport" } }, { "key": "2849", "attributes": { "latitude": 56.549198150634766, "longitude": -61.680301666259766, "fullName": "Nain Airport" } }, { "key": "2847", "attributes": { "latitude": 51.443599700899995, "longitude": -57.185298919699996, "fullName": "Lourdes de Blanc Sablon Airport" } }, { "key": "2854", "attributes": { "latitude": 54.9105, "longitude": -59.78507, "fullName": "Postville Airport" } }, { "key": "2846", "attributes": { "latitude": 51.3918991089, "longitude": -56.083099365200006, "fullName": "St. Anthony Airport" } }, { "key": "2851", "attributes": { "latitude": 48.5442008972168, "longitude": -58.54999923706055, "fullName": "Stephenville Airport" } }, { "key": "1433", "attributes": { "latitude": -21.812000274699997, "longitude": -48.1329994202, "fullName": "Araraquara Airport" } }, { "key": "1435", "attributes": { "latitude": -3.2539100646973, "longitude": -52.254001617432, "fullName": "Altamira Airport" } }, { "key": "3418", "attributes": { "latitude": -1.7140799760818481, "longitude": -55.83620071411133, "fullName": "Oriximiná Airport" } }, { "key": "3419", "attributes": { "latitude": -1.6365300416946411, "longitude": -50.443599700927734, "fullName": "Breves Airport" } }, { "key": "2681", "attributes": { "latitude": -0.889839, "longitude": -52.6022, "fullName": "Monte Dourado Airport" } }, { "key": "1472", "attributes": { "latitude": 0.0506640002131, "longitude": -51.0722007751, "fullName": "Alberto Alcolumbre Airport" } }, { "key": "1441", "attributes": { "latitude": -21.247299, "longitude": -56.452499, "fullName": "Bonito Airport" } }, { "key": "1442", "attributes": { "latitude": -21.698299408, "longitude": -41.301700592, "fullName": "Bartolomeu Lisandro Airport" } }, { "key": "1474", "attributes": { "latitude": -22.343000412, "longitude": -41.7659988403, "fullName": "Macaé Airport" } }, { "key": "1443", "attributes": { "latitude": -28.7244434357, "longitude": -49.4213905334, "fullName": "Diomício Freitas Airport" } }, { "key": "1489", "attributes": { "latitude": -22.1751003265, "longitude": -51.4245986938, "fullName": "Presidente Prudente Airport" } }, { "key": "1448", "attributes": { "latitude": -17.725299835205, "longitude": -48.607498168945, "fullName": "Nelson Ribeiro Guimarães Airport" } }, { "key": "1468", "attributes": { "latitude": -22.166859140899998, "longitude": -49.0502866745, "fullName": "Bauru - Arealva Airport" } }, { "key": "1452", "attributes": { "latitude": -6.639530181884766, "longitude": -69.87979888916016, "fullName": "Eirunepé Airport" } }, { "key": "2777", "attributes": { "latitude": -27.1714000702, "longitude": -51.5532989502, "fullName": "Santa Terezinha Airport" } }, { "key": "1485", "attributes": { "latitude": -2.89374995232, "longitude": -41.73199844359999, "fullName": "Prefeito Doutor João Silva Filho Airport" } }, { "key": "1461", "attributes": { "latitude": -0.3786, "longitude": -64.9923, "fullName": "Tapuruquara Airport" } }, { "key": "1462", "attributes": { "latitude": -4.2423400878906, "longitude": -56.000701904297, "fullName": "Itaituba Airport" } }, { "key": "1476", "attributes": { "latitude": -22.1968994141, "longitude": -49.926399231, "fullName": "Frank Miloye Milenkowichi–Marília State Airport" } }, { "key": "3009", "attributes": { "latitude": -8.033289909362793, "longitude": -49.97990036010742, "fullName": "Redenção Airport" } }, { "key": "1504", "attributes": { "latitude": -3.7860100269318, "longitude": -49.72029876709, "fullName": "Tucuruí Airport" } }, { "key": "3008", "attributes": { "latitude": -6.763100147250001, "longitude": -51.0499000549, "fullName": "Ourilândia do Norte Airport" } }, { "key": "1481", "attributes": { "latitude": -3.46792950765, "longitude": -68.9204120636, "fullName": "Senadora Eunice Micheles Airport" } }, { "key": "2292", "attributes": { "latitude": -7.59990978241, "longitude": -72.7695007324, "fullName": "Cruzeiro do Sul Airport" } }, { "key": "2775", "attributes": { "latitude": -28.2817, "longitude": -54.169102, "fullName": "Santo Ângelo Airport" } }, { "key": "2779", "attributes": { "latitude": -29.7821998596, "longitude": -57.0382003784, "fullName": "Rubem Berta Airport" } }, { "key": "1494", "attributes": { "latitude": -17.8347225189209, "longitude": -50.956111907958984, "fullName": "General Leite de Castro Airport" } }, { "key": "1497", "attributes": { "latitude": -0.14835, "longitude": -66.9855, "fullName": "São Gabriel da Cachoeira Airport" } }, { "key": "1503", "attributes": { "latitude": -1.489599943161, "longitude": -56.396800994873, "fullName": "Trombetas Airport" } }, { "key": "2785", "attributes": { "latitude": 26.363500595092773, "longitude": 126.71399688720703, "fullName": "Kumejima Airport" } }, { "key": "3255", "attributes": { "latitude": 10.298333333299999, "longitude": 10.896388888899999, "fullName": "Gombe Lawanti International Airport" } }, { "key": "3256", "attributes": { "latitude": 7.362460136413574, "longitude": 3.97832989692688, "fullName": "Ibadan Airport" } }, { "key": "3263", "attributes": { "latitude": 12.916299819946289, "longitude": 5.207190036773682, "fullName": "Sadiq Abubakar III International Airport" } }, { "key": "3257", "attributes": { "latitude": 8.440210342407227, "longitude": 4.493919849395752, "fullName": "Ilorin International Airport" } }, { "key": "3264", "attributes": { "latitude": 9.257550239562988, "longitude": 12.430399894714355, "fullName": "Yola Airport" } }, { "key": "2642", "attributes": { "latitude": -1.226666, "longitude": 15.91, "fullName": "Oyo Ollombo Airport" } }, { "key": "2905", "attributes": { "latitude": -8.919942, "longitude": 33.273981, "fullName": "Songwe Airport" } }, { "key": "2903", "attributes": { "latitude": -3.3677899837493896, "longitude": 36.63330078125, "fullName": "Arusha Airport" } }, { "key": "2906", "attributes": { "latitude": -10.339099884033203, "longitude": 40.181800842285156, "fullName": "Mtwara Airport" } }, { "key": "2689", "attributes": { "latitude": -13.3121004105, "longitude": 48.3148002625, "fullName": "Fascene Airport" } }, { "key": "2685", "attributes": { "latitude": -12.34939956665039, "longitude": 49.29169845581055, "fullName": "Arrachart Airport" } }, { "key": "2687", "attributes": { "latitude": -15.6668417421, "longitude": 46.351232528699995, "fullName": "Amborovy Airport" } }, { "key": "1543", "attributes": { "latitude": 67.700996398926, "longitude": 24.846799850464, "fullName": "Kittilä Airport" } }, { "key": "2836", "attributes": { "latitude": -13.258899688720703, "longitude": 31.936599731445312, "fullName": "Mfuwe Airport" } }, { "key": "2835", "attributes": { "latitude": -10.216699600219727, "longitude": 31.13330078125, "fullName": "Kasama Airport" } }, { "key": "2834", "attributes": { "latitude": -13.558300018310547, "longitude": 32.58720016479492, "fullName": "Chipata Airport" } }, { "key": "2840", "attributes": { "latitude": 44.2723999, "longitude": -86.24690247, "fullName": "Manistee Co Blacker Airport" } }, { "key": "2711", "attributes": { "latitude": -19.7577, "longitude": 63.361, "fullName": "Sir Charles Gaetan Duval Airport" } }, { "key": "1570", "attributes": { "latitude": -21.320899963378906, "longitude": 55.42499923706055, "fullName": "Pierrefonds Airport" } }, { "key": "2952", "attributes": { "latitude": 7.3570098876953125, "longitude": 13.559200286865234, "fullName": "N'Gaoundéré Airport" } }, { "key": "2097", "attributes": { "latitude": -0.7117390036582947, "longitude": 8.754380226135254, "fullName": "Port Gentil Airport" } }, { "key": "2693", "attributes": { "latitude": -18.109500885009766, "longitude": 49.39250183105469, "fullName": "Toamasina Airport" } }, { "key": "2690", "attributes": { "latitude": -17.093900680541992, "longitude": 49.815799713134766, "fullName": "Sainte Marie Airport" } }, { "key": "2686", "attributes": { "latitude": -25.03809928894043, "longitude": 46.95610046386719, "fullName": "Tôlanaro Airport" } }, { "key": "2694", "attributes": { "latitude": -15.436699867248535, "longitude": 49.68830108642578, "fullName": "Maroantsetra Airport" } }, { "key": "2688", "attributes": { "latitude": -20.284700393676758, "longitude": 44.31760025024414, "fullName": "Morondava Airport" } }, { "key": "2691", "attributes": { "latitude": -14.278599739074707, "longitude": 50.17470169067383, "fullName": "Sambava Airport" } }, { "key": "2684", "attributes": { "latitude": -14.99940013885498, "longitude": 50.3202018737793, "fullName": "Antsirabato Airport" } }, { "key": "2692", "attributes": { "latitude": -23.383399963378906, "longitude": 43.72850036621094, "fullName": "Toliara Airport" } }, { "key": "1575", "attributes": { "latitude": 21.375, "longitude": 0.923888981342, "fullName": "Bordj Badji Mokhtar Airport" } }, { "key": "1577", "attributes": { "latitude": 31.645700454711914, "longitude": -2.269860029220581, "fullName": "Béchar Boudghene Ben Ali Lotfi Airport" } }, { "key": "1598", "attributes": { "latitude": 22.8115005493, "longitude": 5.45107984543, "fullName": "Aguenar – Hadj Bey Akhamok Airport" } }, { "key": "1582", "attributes": { "latitude": 30.571300506591797, "longitude": 2.8595900535583496, "fullName": "El Golea Airport" } }, { "key": "1587", "attributes": { "latitude": 28.0515, "longitude": 9.64291, "fullName": "In Aménas Airport" } }, { "key": "1604", "attributes": { "latitude": 24.817199707, "longitude": 79.91860198970001, "fullName": "Khajuraho Airport" } }, { "key": "2917", "attributes": { "latitude": 0.48813098669052124, "longitude": 72.99690246582031, "fullName": "Kaadedhdhoo Airport" } }, { "key": "2915", "attributes": { "latitude": 0.7324, "longitude": 73.4336, "fullName": "Kooddoo Airport" } }, { "key": "2912", "attributes": { "latitude": 5.1561, "longitude": 73.1302, "fullName": "Dharavandhoo Airport" } }, { "key": "2918", "attributes": { "latitude": 1.8591699600219727, "longitude": 73.52189636230469, "fullName": "Kadhdhoo Airport" } }, { "key": "2317", "attributes": { "latitude": 2.1555, "longitude": 117.431999, "fullName": "Kalimarau Airport" } }, { "key": "2010", "attributes": { "latitude": 8.539620399475098, "longitude": 99.9447021484375, "fullName": "Nakhon Si Thammarat Airport" } }, { "key": "2210", "attributes": { "latitude": 6.5199198722839355, "longitude": 101.74299621582031, "fullName": "Narathiwat Airport" } }, { "key": "2003", "attributes": { "latitude": 15.229499816894531, "longitude": 103.25299835205078, "fullName": "Buri Ram Airport" } }, { "key": "2012", "attributes": { "latitude": 18.132200241088867, "longitude": 100.16500091552734, "fullName": "Phrae Airport" } }, { "key": "2005", "attributes": { "latitude": 10.711199760437012, "longitude": 99.36170196533203, "fullName": "Chumphon Airport" } }, { "key": "2015", "attributes": { "latitude": 7.508739948272705, "longitude": 99.6166000366211, "fullName": "Trang Airport" } }, { "key": "2013", "attributes": { "latitude": 16.11680030822754, "longitude": 103.77400207519531, "fullName": "Roi Et Airport" } }, { "key": "2006", "attributes": { "latitude": 17.383800506591797, "longitude": 104.64299774169922, "fullName": "Nakhon Phanom Airport" } }, { "key": "2017", "attributes": { "latitude": 9.777620315551758, "longitude": 98.58550262451172, "fullName": "Ranong Airport" } }, { "key": "2014", "attributes": { "latitude": 17.195100784301758, "longitude": 104.11900329589844, "fullName": "Sakon Nakhon Airport" } }, { "key": "2007", "attributes": { "latitude": 17.43910026550293, "longitude": 101.72200012207031, "fullName": "Loei Airport" } }, { "key": "2008", "attributes": { "latitude": 16.699899673461914, "longitude": 98.54509735107422, "fullName": "Mae Sot Airport" } }, { "key": "2706", "attributes": { "latitude": 2.90639, "longitude": 112.080002, "fullName": "Mukah Airport" } }, { "key": "2704", "attributes": { "latitude": 4.808300018310547, "longitude": 115.01000213623047, "fullName": "Limbang Airport" } }, { "key": "2708", "attributes": { "latitude": 3.9670000076293945, "longitude": 115.05000305175781, "fullName": "Long Seridan Airport" } }, { "key": "2697", "attributes": { "latitude": 3.7338900566101074, "longitude": 115.47899627685547, "fullName": "Bario Airport" } }, { "key": "2703", "attributes": { "latitude": 3.299999952316284, "longitude": 114.78299713134766, "fullName": "Long Akah Airport" } }, { "key": "2707", "attributes": { "latitude": 4.178979873657227, "longitude": 114.3290023803711, "fullName": "Marudi Airport" } }, { "key": "2702", "attributes": { "latitude": 3.4210000038099997, "longitude": 115.153999329, "fullName": "Long Lellang Airport" } }, { "key": "2569", "attributes": { "latitude": -1.03892, "longitude": 122.772003, "fullName": "Syukuran Aminuddin Amir Airport" } }, { "key": "2336", "attributes": { "latitude": -0.894, "longitude": 131.287, "fullName": "Dominique Edward Osok Airport" } }, { "key": "2324", "attributes": { "latitude": 0.63711899519, "longitude": 122.849998474, "fullName": "Jalaluddin Airport" } }, { "key": "2318", "attributes": { "latitude": -1.190019965171814, "longitude": 136.10800170898438, "fullName": "Frans Kaisiepo Airport" } }, { "key": "2330", "attributes": { "latitude": -0.8918330073356628, "longitude": 134.0489959716797, "fullName": "Rendani Airport" } }, { "key": "2576", "attributes": { "latitude": -1.41674995422, "longitude": 120.657997131, "fullName": "Kasiguncu Airport" } }, { "key": "2563", "attributes": { "latitude": -5.486879825592041, "longitude": 122.56900024414062, "fullName": "Betoambari Airport" } }, { "key": "2984", "attributes": { "latitude": 20.68269920349121, "longitude": 101.99400329589844, "fullName": "Oudomsay Airport" } }, { "key": "2982", "attributes": { "latitude": 20.2572994232, "longitude": 100.43699646, "fullName": "Ban Huoeisay Airport" } }, { "key": "2986", "attributes": { "latitude": 19.450001, "longitude": 103.157997, "fullName": "Xieng Khouang Airport" } }, { "key": "2983", "attributes": { "latitude": 20.966999, "longitude": 101.400002, "fullName": "Luang Namtha Airport" } }, { "key": "2417", "attributes": { "latitude": 58.7033996582, "longitude": -157.007995605, "fullName": "South Naknek Nr 2 Airport" } }, { "key": "2414", "attributes": { "latitude": 57.5803985596, "longitude": -157.572006226, "fullName": "Pilot Point Airport" } }, { "key": "2413", "attributes": { "latitude": 56.007499694824, "longitude": -161.16000366211, "fullName": "Nelson Lagoon Airport" } }, { "key": "2412", "attributes": { "latitude": 55.11629867553711, "longitude": -162.26600646972656, "fullName": "King Cove Airport" } }, { "key": "2408", "attributes": { "latitude": 54.8474006652832, "longitude": -163.41000366210938, "fullName": "False Pass Airport" } }, { "key": "1704", "attributes": { "latitude": 35.177101135253906, "longitude": -3.83951997756958, "fullName": "Cherif Al Idrissi Airport" } }, { "key": "3212", "attributes": { "latitude": 14.8850002289, "longitude": -24.4799995422, "fullName": "São Filipe Airport" } }, { "key": "3211", "attributes": { "latitude": 15.155900001525879, "longitude": -23.213699340820312, "fullName": "Maio Airport" } }, { "key": "2783", "attributes": { "latitude": 28.029600143432617, "longitude": -17.214599609375, "fullName": "La Gomera Airport" } }, { "key": "1712", "attributes": { "latitude": 28.448200225830078, "longitude": -11.161299705505371, "fullName": "Tan Tan Airport" } }, { "key": "2002", "attributes": { "latitude": 58.31809997558594, "longitude": 12.345000267028809, "fullName": "Trollhättan-Vänersborg Airport" } }, { "key": "2349", "attributes": { "latitude": 64.19090271, "longitude": -51.6781005859, "fullName": "Godthaab / Nuuk Airport" } }, { "key": "2446", "attributes": { "latitude": 59.22370147705078, "longitude": 15.038000106811523, "fullName": "Örebro Airport" } }, { "key": "3272", "attributes": { "latitude": 44.45869827270508, "longitude": 18.72480010986328, "fullName": "Tuzla International Airport" } }, { "key": "3248", "attributes": { "latitude": 67.24559783935547, "longitude": 23.068899154663086, "fullName": "Pajala Airport" } }, { "key": "3250", "attributes": { "latitude": 58.22990036010742, "longitude": 22.50950050354004, "fullName": "Kuressaare Airport" } }, { "key": "3249", "attributes": { "latitude": 60.1576004028, "longitude": 12.991299629199998, "fullName": "Torsby Airport" } }, { "key": "2888", "attributes": { "latitude": 27.3351993560791, "longitude": 68.14309692382812, "fullName": "Moenjodaro Airport" } }, { "key": "2464", "attributes": { "latitude": 31.364999771118164, "longitude": 72.99479675292969, "fullName": "Faisalabad International Airport" } }, { "key": "2889", "attributes": { "latitude": 26.954500198364258, "longitude": 64.13249969482422, "fullName": "Panjgur Airport" } }, { "key": "2518", "attributes": { "latitude": 12.053500175476074, "longitude": 24.956199645996094, "fullName": "Nyala Airport" } }, { "key": "2517", "attributes": { "latitude": 13.614899635314941, "longitude": 25.324600219726562, "fullName": "El Fasher Airport" } }, { "key": "2516", "attributes": { "latitude": 13.48169994354248, "longitude": 22.467199325561523, "fullName": "Geneina Airport" } }, { "key": "2441", "attributes": { "latitude": -4.3192901611328125, "longitude": 55.69139862060547, "fullName": "Praslin Airport" } }, { "key": "2080", "attributes": { "latitude": 51.15079879760742, "longitude": 51.54309844970703, "fullName": "Uralsk Airport" } }, { "key": "1781", "attributes": { "latitude": -2.645050048828125, "longitude": 37.25310134887695, "fullName": "Amboseli Airport" } }, { "key": "1783", "attributes": { "latitude": 0.9719889760017395, "longitude": 34.95859909057617, "fullName": "Kitale Airport" } }, { "key": "1784", "attributes": { "latitude": 4.20412015914917, "longitude": 34.348201751708984, "fullName": "Lokichoggio Airport" } }, { "key": "1785", "attributes": { "latitude": -1.406111, "longitude": 35.008057, "fullName": "Mara Serena Lodge Airstrip" } }, { "key": "1786", "attributes": { "latitude": -4.29333, "longitude": 39.571098, "fullName": "Ukunda Airstrip" } }, { "key": "2184", "attributes": { "latitude": 0.530583, "longitude": 37.534195, "fullName": "Buffalo Spring" } }, { "key": "2183", "attributes": { "latitude": -0.06239889934659004, "longitude": 37.04100799560547, "fullName": "Nanyuki Airport" } }, { "key": "1793", "attributes": { "latitude": 30.371099472, "longitude": 48.2282981873, "fullName": "Abadan Airport" } }, { "key": "1803", "attributes": { "latitude": 36.635799408, "longitude": 53.193599700899995, "fullName": "Dasht-e Naz Airport" } }, { "key": "2148", "attributes": { "latitude": 27.379601, "longitude": 52.737701, "fullName": "Persian Gulf International Airport" } }, { "key": "2141", "attributes": { "latitude": 30.274400711099997, "longitude": 56.9510993958, "fullName": "Kerman Airport" } }, { "key": "3349", "attributes": { "latitude": 30.55620002746582, "longitude": 49.15190124511719, "fullName": "Mahshahr Airport" } }, { "key": "2509", "attributes": { "latitude": 32.898101806640625, "longitude": 59.2661018371582, "fullName": "Birjand Airport" } }, { "key": "2149", "attributes": { "latitude": 36.9099006652832, "longitude": 50.67959976196289, "fullName": "Ramsar Airport" } }, { "key": "2127", "attributes": { "latitude": 31.09830093383789, "longitude": 61.54389953613281, "fullName": "Zabol Airport" } }, { "key": "2137", "attributes": { "latitude": 34.86920166015625, "longitude": 48.5525016784668, "fullName": "Hamadan Airport" } }, { "key": "2128", "attributes": { "latitude": 38.3256988525, "longitude": 48.4244003296, "fullName": "Ardabil Airport" } }, { "key": "2145", "attributes": { "latitude": 36.663299560546875, "longitude": 51.464698791503906, "fullName": "Noshahr Airport" } }, { "key": "2949", "attributes": { "latitude": 25.908899307250977, "longitude": 54.539398193359375, "fullName": "Sirri Island Airport" } }, { "key": "2134", "attributes": { "latitude": 32.434399, "longitude": 48.397598, "fullName": "Dezful Airport" } }, { "key": "2131", "attributes": { "latitude": 37.49300003051758, "longitude": 57.30820083618164, "fullName": "Bojnord Airport" } }, { "key": "2150", "attributes": { "latitude": 35.24589920043945, "longitude": 47.00920104980469, "fullName": "Sanandaj Airport" } }, { "key": "2136", "attributes": { "latitude": 30.337600708, "longitude": 50.827999115, "fullName": "Gachsaran Airport" } }, { "key": "2508", "attributes": { "latitude": 33.43539810180664, "longitude": 48.282901763916016, "fullName": "Khoram Abad Airport" } }, { "key": "2142", "attributes": { "latitude": 38.4275016784668, "longitude": 44.97359848022461, "fullName": "Khoy Airport" } }, { "key": "2147", "attributes": { "latitude": 39.60359954834, "longitude": 47.881500244141, "fullName": "Parsabade Moghan Airport" } }, { "key": "2138", "attributes": { "latitude": 33.58660125732422, "longitude": 46.40480041503906, "fullName": "Ilam Airport" } }, { "key": "2133", "attributes": { "latitude": 29.084199905395508, "longitude": 58.45000076293945, "fullName": "Bam Airport" } }, { "key": "2129", "attributes": { "latitude": 36.16809844970703, "longitude": 57.59519958496094, "fullName": "Sabzevar National Airport" } }, { "key": "2151", "attributes": { "latitude": 30.700500488281, "longitude": 51.545101165771, "fullName": "Yasouj Airport" } }, { "key": "3194", "attributes": { "latitude": 51.89419937133789, "longitude": -2.167220115661621, "fullName": "Gloucestershire Airport" } }, { "key": "3079", "attributes": { "latitude": -26.687400817871094, "longitude": 15.242899894714355, "fullName": "Luderitz Airport" } }, { "key": "2761", "attributes": { "latitude": 33.7490005493, "longitude": 129.785003662, "fullName": "Iki Airport" } }, { "key": "2653", "attributes": { "latitude": 59.3675003052, "longitude": -2.43443989754, "fullName": "North Ronaldsay Airport" } }, { "key": "2656", "attributes": { "latitude": 59.3502998352, "longitude": -2.95000004768, "fullName": "Westray Airport" } }, { "key": "2651", "attributes": { "latitude": 59.19060134887695, "longitude": -2.7722198963165283, "fullName": "Eday Airport" } }, { "key": "2654", "attributes": { "latitude": 59.351699829100006, "longitude": -2.9002799987800003, "fullName": "Papa Westray Airport" } }, { "key": "2652", "attributes": { "latitude": 59.250301361083984, "longitude": -2.576669931411743, "fullName": "Sanday Airport" } }, { "key": "2655", "attributes": { "latitude": 59.1553001404, "longitude": -2.64139008522, "fullName": "Stronsay Airport" } }, { "key": "1874", "attributes": { "latitude": -2.3089799880981445, "longitude": 28.808799743652344, "fullName": "Bukavu Kavumu Airport" } }, { "key": "1885", "attributes": { "latitude": -5.39444, "longitude": 26.99, "fullName": "Kongolo Airport" } }, { "key": "1876", "attributes": { "latitude": 0.575, "longitude": 29.4739, "fullName": "Beni Airport" } }, { "key": "1881", "attributes": { "latitude": -1.6708099842071533, "longitude": 29.238500595092773, "fullName": "Goma International Airport" } }, { "key": "1877", "attributes": { "latitude": 1.5657199621200562, "longitude": 30.220800399780273, "fullName": "Bunia Airport" } }, { "key": "1882", "attributes": { "latitude": 2.8276100158691406, "longitude": 27.588300704956055, "fullName": "Matari Airport" } }, { "key": "1880", "attributes": { "latitude": 3.2353699207299997, "longitude": 19.771299362199997, "fullName": "Gemena Airport" } }, { "key": "3414", "attributes": { "latitude": -5.8755598068237305, "longitude": 29.25, "fullName": "Kalemie Airport" } }, { "key": "1886", "attributes": { "latitude": -3.4170000553131104, "longitude": 23.450000762939453, "fullName": "Lodja Airport" } }, { "key": "2715", "attributes": { "latitude": 47.9541015625, "longitude": 91.6281967163086, "fullName": "Khovd Airport" } }, { "key": "2099", "attributes": { "latitude": 49.663299560546875, "longitude": 100.0989990234375, "fullName": "Mörön Airport" } }, { "key": "3421", "attributes": { "latitude": 43.59170150756836, "longitude": 104.43000030517578, "fullName": "Dalanzadgad Airport" } }, { "key": "2101", "attributes": { "latitude": 50.066588, "longitude": 91.938273, "fullName": "Ulaangom Airport" } }, { "key": "2717", "attributes": { "latitude": 47.7093, "longitude": 96.5258, "fullName": "Donoi Airport" } }, { "key": "2714", "attributes": { "latitude": 46.163299560546875, "longitude": 100.7040023803711, "fullName": "Bayankhongor Airport" } }, { "key": "2100", "attributes": { "latitude": 48.9933013916, "longitude": 89.9225006104, "fullName": "Ulgii Mongolei Airport" } }, { "key": "1937", "attributes": { "latitude": -5.4223198890686035, "longitude": 154.67300415039062, "fullName": "Buka Airport" } }, { "key": "1938", "attributes": { "latitude": -9.08675956726, "longitude": 143.207992554, "fullName": "Daru Airport" } }, { "key": "1957", "attributes": { "latitude": -6.1257100105285645, "longitude": 141.28199768066406, "fullName": "Kiunga Airport" } }, { "key": "1944", "attributes": { "latitude": -6.569803, "longitude": 146.725977, "fullName": "Nadzab Airport" } }, { "key": "1939", "attributes": { "latitude": -6.081689834590001, "longitude": 145.391998291, "fullName": "Goroka Airport" } }, { "key": "1941", "attributes": { "latitude": -5.826789855957031, "longitude": 144.29600524902344, "fullName": "Mount Hagen Kagamuga Airport" } }, { "key": "1947", "attributes": { "latitude": -5.20707988739, "longitude": 145.789001465, "fullName": "Madang Airport" } }, { "key": "1940", "attributes": { "latitude": -10.3114995956, "longitude": 150.333999634, "fullName": "Gurney Airport" } }, { "key": "1951", "attributes": { "latitude": -8.80453968048, "longitude": 148.309005737, "fullName": "Girua Airport" } }, { "key": "1949", "attributes": { "latitude": -10.689200401299999, "longitude": 152.837997437, "fullName": "Misima Island Airport" } }, { "key": "1950", "attributes": { "latitude": -6.36332988739, "longitude": 143.238006592, "fullName": "Moro Airport" } }, { "key": "1958", "attributes": { "latitude": -3.58383011818, "longitude": 143.669006348, "fullName": "Wewak International Airport" } }, { "key": "1956", "attributes": { "latitude": -5.84499979019, "longitude": 142.947998047, "fullName": "Tari Airport" } }, { "key": "1954", "attributes": { "latitude": -5.27861, "longitude": 141.225998, "fullName": "Tabubil Airport" } }, { "key": "1942", "attributes": { "latitude": -5.462170124053955, "longitude": 150.40499877929688, "fullName": "Kimbe Airport" } }, { "key": "1943", "attributes": { "latitude": -2.57940006256, "longitude": 150.807998657, "fullName": "Kavieng Airport" } }, { "key": "1948", "attributes": { "latitude": -2.06189, "longitude": 147.423996, "fullName": "Momote Airport" } }, { "key": "2910", "attributes": { "latitude": -2.6926, "longitude": 141.3028, "fullName": "Vanimo Airport" } }, { "key": "2908", "attributes": { "latitude": -6.024290084838867, "longitude": 144.9709930419922, "fullName": "Chimbu Airport" } }, { "key": "2911", "attributes": { "latitude": -5.6433000564575195, "longitude": 143.89500427246094, "fullName": "Wapenamanda Airport" } }, { "key": "2909", "attributes": { "latitude": -6.14774, "longitude": 143.656998, "fullName": "Mendi Airport" } }, { "key": "2907", "attributes": { "latitude": -7.216286671410001, "longitude": 146.649541855, "fullName": "Bulolo Airport" } }, { "key": "2990", "attributes": { "latitude": 51.780102, "longitude": 143.139008, "fullName": "Nogliki Airport" } }, { "key": "2542", "attributes": { "latitude": 35.255001068115234, "longitude": 136.9239959716797, "fullName": "Nagoya Airport" } }, { "key": "1994", "attributes": { "latitude": 60.788299560546875, "longitude": 46.2599983215332, "fullName": "Velikiy Ustyug Airport" } }, { "key": "2837", "attributes": { "latitude": -11.13700008392334, "longitude": 28.872600555419922, "fullName": "Mansa Airport" } }, { "key": "2052", "attributes": { "latitude": 12.39533, "longitude": -16.748, "fullName": "Cap Skirring Airport" } }, { "key": "3289", "attributes": { "latitude": 68.152496337891, "longitude": 13.609399795532, "fullName": "Leknes Airport" } }, { "key": "3295", "attributes": { "latitude": 67.527801513672, "longitude": 12.103300094604, "fullName": "Røst Airport" } }, { "key": "3293", "attributes": { "latitude": 68.436897277832, "longitude": 17.386699676514, "fullName": "Narvik Framnes Airport" } }, { "key": "3304", "attributes": { "latitude": 68.243301391602, "longitude": 14.669199943542, "fullName": "Svolvær Helle Airport" } }, { "key": "3305", "attributes": { "latitude": 70.355400085449, "longitude": 31.044900894165, "fullName": "Vardø Airport, Svartnes" } }, { "key": "2884", "attributes": { "latitude": 31.909400939941406, "longitude": 70.89659881591797, "fullName": "Dera Ismael Khan Airport" } }, { "key": "2231", "attributes": { "latitude": 16.191699981689453, "longitude": 52.17499923706055, "fullName": "Al Ghaidah International Airport" } }, { "key": "2234", "attributes": { "latitude": 14.551300048828125, "longitude": 46.82619857788086, "fullName": "Ataq Airport" } }, { "key": "2817", "attributes": { "latitude": -44.302799224853516, "longitude": 171.22500610351562, "fullName": "Timaru Airport" } }, { "key": "2823", "attributes": { "latitude": -41.73809814453125, "longitude": 171.58099365234375, "fullName": "Westport Airport" } }, { "key": "2161", "attributes": { "latitude": -1.059722, "longitude": -77.583333, "fullName": "Jumandy Airport" } }, { "key": "2175", "attributes": { "latitude": 11.975000381469727, "longitude": 38.97999954223633, "fullName": "Lalibella Airport" } }, { "key": "2170", "attributes": { "latitude": 5.93513011932, "longitude": 43.5786018372, "fullName": "Gode Airport" } }, { "key": "3111", "attributes": { "latitude": -17.855499267578125, "longitude": 36.86909866333008, "fullName": "Quelimane Airport" } }, { "key": "3112", "attributes": { "latitude": -19.15130043029785, "longitude": 33.42900085449219, "fullName": "Chimoio Airport" } }, { "key": "2194", "attributes": { "latitude": 42.837600708, "longitude": -103.095001221, "fullName": "Chadron Municipal Airport" } }, { "key": "2207", "attributes": { "latitude": 43.9656982421875, "longitude": -107.95099639892578, "fullName": "Worland Municipal Airport" } }, { "key": "2198", "attributes": { "latitude": 44.38520050048828, "longitude": -98.22850036621094, "fullName": "Huron Regional Airport" } }, { "key": "3365", "attributes": { "latitude": 35.95240020751953, "longitude": -112.14700317382812, "fullName": "Grand Canyon National Park Airport" } }, { "key": "2206", "attributes": { "latitude": 29.9592, "longitude": -81.339798, "fullName": "Northeast Florida Regional Airport" } }, { "key": "3105", "attributes": { "latitude": 41.13819885253906, "longitude": 27.919099807739258, "fullName": "Tekirdağ Çorlu Airport" } }, { "key": "3099", "attributes": { "latitude": 40.73500061035156, "longitude": 30.08329963684082, "fullName": "Cengiz Topel Airport" } }, { "key": "3095", "attributes": { "latitude": 40.1376991272, "longitude": 26.4267997742, "fullName": "Çanakkale Airport" } }, { "key": "2298", "attributes": { "latitude": 39.813801, "longitude": -82.927803, "fullName": "Rickenbacker International Airport" } }, { "key": "2294", "attributes": { "latitude": 38.5452, "longitude": -89.835197, "fullName": "Scott AFB/Midamerica Airport" } }, { "key": "2302", "attributes": { "latitude": 43.0778999329, "longitude": -70.8233032227, "fullName": "Portsmouth International at Pease Airport" } }, { "key": "2295", "attributes": { "latitude": 39.2966003418, "longitude": -80.2281036377, "fullName": "North Central West Virginia Airport" } }, { "key": "2215", "attributes": { "latitude": -8.525, "longitude": 179.195999, "fullName": "Funafuti International Airport" } }, { "key": "2480", "attributes": { "latitude": -10.449700355500001, "longitude": 161.897994995, "fullName": "Ngorangora Airport" } }, { "key": "2482", "attributes": { "latitude": -7.3305, "longitude": 157.585, "fullName": "Kaghau Airport" } }, { "key": "2488", "attributes": { "latitude": -9.861669540409999, "longitude": 160.824996948, "fullName": "Marau Airport" } }, { "key": "2490", "attributes": { "latitude": -7.585559844970703, "longitude": 158.7310028076172, "fullName": "Suavanao Airport" } }, { "key": "2474", "attributes": { "latitude": -8.87333, "longitude": 161.011002, "fullName": "Uru Harbour Airport" } }, { "key": "2477", "attributes": { "latitude": -8.578889846801758, "longitude": 157.87600708007812, "fullName": "Sege Airport" } }, { "key": "2479", "attributes": { "latitude": -8.09778022766, "longitude": 156.863998413, "fullName": "Nusatupe Airport" } }, { "key": "2484", "attributes": { "latitude": -10.847994, "longitude": 162.454108, "fullName": "Santa Ana Airport" } }, { "key": "2478", "attributes": { "latitude": -8.1075, "longitude": 159.576996, "fullName": "Fera/Maringe Airport" } }, { "key": "2483", "attributes": { "latitude": -8.327969551086426, "longitude": 157.26300048828125, "fullName": "Munda Airport" } }, { "key": "2486", "attributes": { "latitude": -9.86054358262, "longitude": 161.979546547, "fullName": "Ulawa Airport" } }, { "key": "2489", "attributes": { "latitude": -10.72029972076416, "longitude": 165.7949981689453, "fullName": "Santa Cruz/Graciosa Bay/Luova Airport" } }, { "key": "2487", "attributes": { "latitude": -11.533900260925293, "longitude": 160.06300354003906, "fullName": "Rennell/Tingoa Airport" } }, { "key": "2485", "attributes": { "latitude": -8.168060302734375, "longitude": 157.64300537109375, "fullName": "Ramata Airport" } }, { "key": "2476", "attributes": { "latitude": -6.711944, "longitude": 156.396111, "fullName": "Choiseul Bay Airport" } }, { "key": "2217", "attributes": { "latitude": -17.7432994843, "longitude": -179.341995239, "fullName": "Cicia Airport" } }, { "key": "2220", "attributes": { "latitude": -18.1991996765, "longitude": -178.817001343, "fullName": "Lakeba Island Airport" } }, { "key": "2227", "attributes": { "latitude": -17.268999099731445, "longitude": -178.9759979248047, "fullName": "Vanua Balavu Airport" } }, { "key": "2742", "attributes": { "latitude": -16.4611228, "longitude": 167.829253, "fullName": "Lamap Airport" } }, { "key": "2752", "attributes": { "latitude": -19.45509910583496, "longitude": 169.2239990234375, "fullName": "Tanna Airport" } }, { "key": "2756", "attributes": { "latitude": -16.796100616500002, "longitude": 168.177001953, "fullName": "Valesdir Airport" } }, { "key": "2747", "attributes": { "latitude": -16.438999176, "longitude": 168.257003784, "fullName": "Tavie Airport" } }, { "key": "2740", "attributes": { "latitude": -15.865599632299999, "longitude": 168.17199707, "fullName": "Lonorore Airport" } }, { "key": "2735", "attributes": { "latitude": -18.7693996429, "longitude": 169.00100708, "fullName": "Dillon's Bay Airport" } }, { "key": "2751", "attributes": { "latitude": -16.4864, "longitude": 167.4472, "fullName": "Southwest Bay Airport" } }, { "key": "2746", "attributes": { "latitude": -16.0797, "longitude": 167.401001, "fullName": "Norsup Airport" } }, { "key": "2736", "attributes": { "latitude": -17.0902996063, "longitude": 168.343002319, "fullName": "Siwo Airport" } }, { "key": "2753", "attributes": { "latitude": -16.8910999298, "longitude": 168.550994873, "fullName": "Tongoa Airport" } }, { "key": "2738", "attributes": { "latitude": -18.856389, "longitude": 169.283333, "fullName": "Ipota Airport" } }, { "key": "2734", "attributes": { "latitude": -16.264999, "longitude": 167.923996, "fullName": "Craig Cove Airport" } }, { "key": "2739", "attributes": { "latitude": -16.584199905400002, "longitude": 168.158996582, "fullName": "Lamen Bay Airport" } }, { "key": "2238", "attributes": { "latitude": 12.63070011138916, "longitude": 53.905799865722656, "fullName": "Socotra International Airport" } }, { "key": "3271", "attributes": { "latitude": 47.48889923095703, "longitude": 21.615299224853516, "fullName": "Debrecen International Airport" } }, { "key": "2575", "attributes": { "latitude": 3.90871, "longitude": 108.388, "fullName": "Ranai Airport" } }, { "key": "2283", "attributes": { "latitude": 4.537220001220703, "longitude": 103.427001953125, "fullName": "Kerteh Airport" } }, { "key": "2299", "attributes": { "latitude": 41.195899963379, "longitude": -112.0120010376, "fullName": "Ogden Hinckley Airport" } }, { "key": "2574", "attributes": { "latitude": -3.36818, "longitude": 135.496002, "fullName": "Nabire Airport" } }, { "key": "2565", "attributes": { "latitude": -2.9201900959014893, "longitude": 132.26699829101562, "fullName": "Fakfak Airport" } }, { "key": "2497", "attributes": { "latitude": -7.9886097908, "longitude": 131.305999756, "fullName": "Saumlaki/Olilit Airport" } }, { "key": "2494", "attributes": { "latitude": -5.661620140075684, "longitude": 132.7310028076172, "fullName": "Dumatumbun Airport" } }, { "key": "2498", "attributes": { "latitude": -4.10251, "longitude": 138.957001, "fullName": "Wamena Airport" } }, { "key": "2495", "attributes": { "latitude": -4.9071, "longitude": 140.6277, "fullName": "Oksibil Airport" } }, { "key": "2329", "attributes": { "latitude": -8.52029037475586, "longitude": 140.41799926757812, "fullName": "Mopah Airport" } }, { "key": "2323", "attributes": { "latitude": -8.8492898941, "longitude": 121.661003113, "fullName": "Ende (H Hasan Aroeboesman) Airport" } }, { "key": "2566", "attributes": { "latitude": 1.1852799654006958, "longitude": 127.89600372314453, "fullName": "Kao Airport" } }, { "key": "2573", "attributes": { "latitude": 3.6832098960876465, "longitude": 125.52799987792969, "fullName": "Naha Airport" } }, { "key": "2571", "attributes": { "latitude": 4.00694, "longitude": 126.672997, "fullName": "Melangguane Airport" } }, { "key": "2493", "attributes": { "latitude": -1.816640019416809, "longitude": 109.96299743652344, "fullName": "Ketapang(Rahadi Usman) Airport" } }, { "key": "2564", "attributes": { "latitude": -2.5322399139404297, "longitude": 133.43899536132812, "fullName": "Babo Airport" } }, { "key": "2348", "attributes": { "latitude": 70.7431030273, "longitude": -22.6504993439, "fullName": "Neerlerit Inaat Airport" } }, { "key": "2374", "attributes": { "latitude": 70.4882288244, "longitude": -21.971679925900002, "fullName": "Ittoqqortoormiit Heliport" } }, { "key": "2356", "attributes": { "latitude": 61.9921989441, "longitude": -49.6624984741, "fullName": "Paamiut Heliport" } }, { "key": "2354", "attributes": { "latitude": 69.2432022095, "longitude": -51.0570983887, "fullName": "Ilulissat Airport" } }, { "key": "2357", "attributes": { "latitude": 66.9513015747, "longitude": -53.7293014526, "fullName": "Sisimiut Airport" } }, { "key": "2362", "attributes": { "latitude": 65.4124984741, "longitude": -52.9393997192, "fullName": "Maniitsoq Airport" } }, { "key": "2389", "attributes": { "latitude": 61.1604995728, "longitude": -45.4259986877, "fullName": "Narsarsuaq Airport" } }, { "key": "2789", "attributes": { "latitude": 64.1299972534, "longitude": -21.9405994415, "fullName": "Reykjavik Airport" } }, { "key": "2361", "attributes": { "latitude": 70.7341995239, "longitude": -52.6962013245, "fullName": "Qaarsut Airport" } }, { "key": "2355", "attributes": { "latitude": 68.7218017578, "longitude": -52.7846984863, "fullName": "Aasiaat Airport" } }, { "key": "2365", "attributes": { "latitude": 72.7901992798, "longitude": -56.1305999756, "fullName": "Upernavik Airport" } }, { "key": "2358", "attributes": { "latitude": 60.715684155299996, "longitude": -46.0299186409, "fullName": "Qaqortoq Heliport" } }, { "key": "2375", "attributes": { "latitude": 60.6197196536, "longitude": -45.9140619636, "fullName": "Eqalugaarsuit Heliport" } }, { "key": "2359", "attributes": { "latitude": 60.141883975899994, "longitude": -45.232976675, "fullName": "Nanortalik Heliport" } }, { "key": "2370", "attributes": { "latitude": 60.46445, "longitude": -45.56917, "fullName": "Alluitsup Paa Heliport" } }, { "key": "2360", "attributes": { "latitude": 60.9172827256, "longitude": -46.059923172, "fullName": "Narsaq Heliport" } }, { "key": "2390", "attributes": { "latitude": 70.6804279261, "longitude": -52.111630439799995, "fullName": "Uummannaq Heliport" } }, { "key": "2371", "attributes": { "latitude": 77.4886016846, "longitude": -69.3887023926, "fullName": "Qaanaaq Airport" } }, { "key": "2386", "attributes": { "latitude": 76.5311965942, "longitude": -68.7032012939, "fullName": "Thule Air Base" } }, { "key": "2400", "attributes": { "latitude": 52.22029877, "longitude": -174.2059937, "fullName": "Atka Airport" } }, { "key": "2401", "attributes": { "latitude": 53.900100708, "longitude": -166.544006348, "fullName": "Unalaska Airport" } }, { "key": "2404", "attributes": { "latitude": 52.94160079956055, "longitude": -168.8489990234375, "fullName": "Nikolski Air Station" } }, { "key": "2411", "attributes": { "latitude": 54.1337704415, "longitude": -165.778895617, "fullName": "Akutan Seaplane Base" } }, { "key": "2402", "attributes": { "latitude": 58.1855010986, "longitude": -157.375, "fullName": "Egegik Airport" } }, { "key": "2403", "attributes": { "latitude": 59.32400131225586, "longitude": -155.90199279785156, "fullName": "Igiugig Airport" } }, { "key": "2410", "attributes": { "latitude": 55.905998, "longitude": -159.162993, "fullName": "Perryville Airport" } }, { "key": "2415", "attributes": { "latitude": 56.95909881591797, "longitude": -158.63299560546875, "fullName": "Port Heiden Airport" } }, { "key": "2418", "attributes": { "latitude": -18.830900192260742, "longitude": -159.76400756835938, "fullName": "Aitutaki Airport" } }, { "key": "2419", "attributes": { "latitude": -19.96780014038086, "longitude": -158.11900329589844, "fullName": "Enua Airport" } }, { "key": "2420", "attributes": { "latitude": -21.895986557006836, "longitude": -157.9066619873047, "fullName": "Mangaia Island Airport" } }, { "key": "2421", "attributes": { "latitude": -19.842500686645508, "longitude": -157.7030029296875, "fullName": "Mitiaro Island Airport" } }, { "key": "2422", "attributes": { "latitude": -20.13610076904297, "longitude": -157.34500122070312, "fullName": "Mauke Airport" } }, { "key": "3213", "attributes": { "latitude": 16.58839988708496, "longitude": -24.284700393676758, "fullName": "Preguiça Airport" } }, { "key": "2458", "attributes": { "latitude": 43.9584007263, "longitude": 145.682998657, "fullName": "Mendeleyevo Airport" } }, { "key": "2459", "attributes": { "latitude": 49.1903, "longitude": 142.082993, "fullName": "Shakhtyorsk Airport" } }, { "key": "2890", "attributes": { "latitude": 31.358400344848633, "longitude": 69.4636001586914, "fullName": "Zhob Airport" } }, { "key": "2492", "attributes": { "latitude": -5.7722201347399995, "longitude": 134.212005615, "fullName": "Rar Gwamar Airport" } }, { "key": "2504", "attributes": { "latitude": 50.102798, "longitude": -5.67056, "fullName": "Land's End Airport" } }, { "key": "3352", "attributes": { "latitude": 64.9308013916, "longitude": 77.81809997559999, "fullName": "Tarko-Sale Airport" } }, { "key": "2520", "attributes": { "latitude": 58.195201873799995, "longitude": -136.347000122, "fullName": "Elfin Cove Seaplane Base" } }, { "key": "2530", "attributes": { "latitude": 49.2943992615, "longitude": -123.111000061, "fullName": "Vancouver Harbour Water Aerodrome" } }, { "key": "2531", "attributes": { "latitude": 48.4249858939, "longitude": -123.388867378, "fullName": "Victoria Harbour Seaplane Base" } }, { "key": "3047", "attributes": { "latitude": -40.0917015076, "longitude": 147.992996216, "fullName": "Flinders Island Airport" } }, { "key": "2568", "attributes": { "latitude": -3.6445200443267822, "longitude": 133.6959991455078, "fullName": "Kaimana Airport" } }, { "key": "2580", "attributes": { "latitude": 11.275300025939941, "longitude": 49.14939880371094, "fullName": "Bosaso Airport" } }, { "key": "2584", "attributes": { "latitude": 49.831699, "longitude": -92.744202, "fullName": "Dryden Regional Airport" } }, { "key": "3333", "attributes": { "latitude": 51.819698333740234, "longitude": -93.97329711914062, "fullName": "Pikangikum Airport" } }, { "key": "3335", "attributes": { "latitude": 52.655799865722656, "longitude": -94.0614013671875, "fullName": "Deer Lake Airport" } }, { "key": "3339", "attributes": { "latitude": 53.06420135498047, "longitude": -93.34439849853516, "fullName": "Sandy Lake Airport" } }, { "key": "3324", "attributes": { "latitude": 51.72719955444336, "longitude": -91.82440185546875, "fullName": "Cat Lake Airport" } }, { "key": "3323", "attributes": { "latitude": 53.52470016479492, "longitude": -88.6427993774414, "fullName": "Kasabonika Airport" } }, { "key": "3318", "attributes": { "latitude": 53.01250076293945, "longitude": -89.85530090332031, "fullName": "Kingfisher Lake Airport" } }, { "key": "3337", "attributes": { "latitude": 53.8911018371582, "longitude": -92.19640350341797, "fullName": "Sachigo Lake Airport" } }, { "key": "3325", "attributes": { "latitude": 53.84920120239258, "longitude": -89.57939910888672, "fullName": "Wapekeka Airport" } }, { "key": "3334", "attributes": { "latitude": 53.81779861450195, "longitude": -89.89689636230469, "fullName": "Big Trout Lake Airport" } }, { "key": "3319", "attributes": { "latitude": 53.44139862060547, "longitude": -91.76280212402344, "fullName": "Muskrat Dam Airport" } }, { "key": "3338", "attributes": { "latitude": 52.943599700927734, "longitude": -91.31279754638672, "fullName": "Round Lake (Weagamow Lake) Airport" } }, { "key": "3321", "attributes": { "latitude": 52.89390182495117, "longitude": -89.28919982910156, "fullName": "Wunnumin Lake Airport" } }, { "key": "3322", "attributes": { "latitude": 53.965599060058594, "longitude": -91.0271987915039, "fullName": "Bearskin Lake Airport" } }, { "key": "3326", "attributes": { "latitude": 56.01890182495117, "longitude": -87.67610168457031, "fullName": "Fort Severn Airport" } }, { "key": "2621", "attributes": { "latitude": 23.083299636799996, "longitude": 113.069999695, "fullName": "Foshan Shadi Airport" } }, { "key": "3113", "attributes": { "latitude": -13.274, "longitude": 35.2663, "fullName": "Lichinga Airport" } }, { "key": "2904", "attributes": { "latitude": -1.332, "longitude": 31.8212, "fullName": "Bukoba Airport" } }, { "key": "3422", "attributes": { "latitude": 16.1131, "longitude": -86.880302, "fullName": "Utila Airport" } }, { "key": "2842", "attributes": { "latitude": 16.4454, "longitude": -85.906601, "fullName": "La Laguna Airport" } }, { "key": "2718", "attributes": { "latitude": 22.375999450699997, "longitude": 31.611700058, "fullName": "Abu Simbel Airport" } }, { "key": "2671", "attributes": { "latitude": 47.529998779296875, "longitude": -122.302001953125, "fullName": "Boeing Field King County International Airport" } }, { "key": "2674", "attributes": { "latitude": 48.7081985474, "longitude": -122.910003662, "fullName": "Orcas Island Airport" } }, { "key": "2672", "attributes": { "latitude": 48.120201110839844, "longitude": -123.5, "fullName": "William R Fairchild International Airport" } }, { "key": "2676", "attributes": { "latitude": 48.5219993591, "longitude": -123.024002075, "fullName": "Friday Harbor Airport" } }, { "key": "2695", "attributes": { "latitude": -16.16390037536621, "longitude": 49.773799896240234, "fullName": "Mananara Nord Airport" } }, { "key": "2698", "attributes": { "latitude": 3.9739999771118164, "longitude": 115.61799621582031, "fullName": "Bakalalan Airport" } }, { "key": "2716", "attributes": { "latitude": 46.376399993896484, "longitude": 96.22109985351562, "fullName": "Altai Airport" } }, { "key": "2732", "attributes": { "latitude": -20.2492008209, "longitude": 169.770996094, "fullName": "Aneityum Airport" } }, { "key": "2733", "attributes": { "latitude": -19.2346, "longitude": 169.6009, "fullName": "Aniwa Airport" } }, { "key": "2737", "attributes": { "latitude": -19.516399383499998, "longitude": 170.231994629, "fullName": "Futuna Airport" } }, { "key": "2755", "attributes": { "latitude": -16.3297, "longitude": 168.3011, "fullName": "Uléi Airport" } }, { "key": "2741", "attributes": { "latitude": -15.3066997528, "longitude": 167.966995239, "fullName": "Longana Airport" } }, { "key": "2743", "attributes": { "latitude": -13.6660003662, "longitude": 167.712005615, "fullName": "Mota Lava Airport" } }, { "key": "2754", "attributes": { "latitude": -13.3280000687, "longitude": 166.638000488, "fullName": "Torres Airstrip" } }, { "key": "2758", "attributes": { "latitude": -14.218099594099998, "longitude": 167.587005615, "fullName": "Gaua Island Airport" } }, { "key": "2748", "attributes": { "latitude": -13.8516998291, "longitude": 167.537002563, "fullName": "Sola Airport" } }, { "key": "2744", "attributes": { "latitude": -15, "longitude": 168.082992554, "fullName": "Maewo-Naone Airport" } }, { "key": "2757", "attributes": { "latitude": -15.411999702500001, "longitude": 167.690994263, "fullName": "Walaha Airport" } }, { "key": "2750", "attributes": { "latitude": -15.4708003998, "longitude": 168.151992798, "fullName": "Sara Airport" } }, { "key": "2786", "attributes": { "latitude": 65.66000366210938, "longitude": -18.07270050048828, "fullName": "Akureyri Airport" } }, { "key": "2787", "attributes": { "latitude": 65.2833023071289, "longitude": -14.401399612426758, "fullName": "Egilsstaðir Airport" } }, { "key": "2788", "attributes": { "latitude": 66.05809783935547, "longitude": -23.135299682617188, "fullName": "Ísafjörður Airport" } }, { "key": "2800", "attributes": { "latitude": -19.079030990600586, "longitude": -169.92559814453125, "fullName": "Niue International Airport" } }, { "key": "3149", "attributes": { "latitude": 8.720120429992676, "longitude": 167.73199462890625, "fullName": "Bucholz Army Air Field" } }, { "key": "2945", "attributes": { "latitude": 51.2117004395, "longitude": -58.6582984924, "fullName": "St Augustin Airport" } }, { "key": "2853", "attributes": { "latitude": 55.913898, "longitude": -61.184399, "fullName": "Natuashish Airport" } }, { "key": "2850", "attributes": { "latitude": 55.448299407958984, "longitude": -60.228599548339844, "fullName": "Hopedale Airport" } }, { "key": "2852", "attributes": { "latitude": 55.076900482177734, "longitude": -59.1864013671875, "fullName": "Makkovik Airport" } }, { "key": "2882", "attributes": { "latitude": 28.878299713100002, "longitude": 64.3998031616, "fullName": "Dalbandin Airport" } }, { "key": "2924", "attributes": { "latitude": -24.346099853515625, "longitude": 139.4600067138672, "fullName": "Bedourie Airport" } }, { "key": "2925", "attributes": { "latitude": -22.913299560546875, "longitude": 139.89999389648438, "fullName": "Boulia Airport" } }, { "key": "2927", "attributes": { "latitude": -25.897499084472656, "longitude": 139.34800720214844, "fullName": "Birdsville Airport" } }, { "key": "2926", "attributes": { "latitude": -17.748600006103516, "longitude": 139.53399658203125, "fullName": "Burketown Airport" } }, { "key": "2931", "attributes": { "latitude": -17.9403, "longitude": 138.822006, "fullName": "Doomadgee Airport" } }, { "key": "2937", "attributes": { "latitude": -16.662500381469727, "longitude": 139.17799377441406, "fullName": "Mornington Island Airport" } }, { "key": "2943", "attributes": { "latitude": -25.41309928894043, "longitude": 142.66700744628906, "fullName": "Windorah Airport" } }, { "key": "2928", "attributes": { "latitude": -28.030000686645508, "longitude": 145.6219940185547, "fullName": "Cunnamulla Airport" } }, { "key": "2939", "attributes": { "latitude": -28.049699783325195, "longitude": 148.59500122070312, "fullName": "St George Airport" } }, { "key": "2944", "attributes": { "latitude": -27.986400604248047, "longitude": 143.81100463867188, "fullName": "Thargomindah Airport" } }, { "key": "2941", "attributes": { "latitude": -26.612199783325195, "longitude": 144.2530059814453, "fullName": "Quilpie Airport" } }, { "key": "3396", "attributes": { "latitude": -20.66830062866211, "longitude": 141.72300720214844, "fullName": "Julia Creek Airport" } }, { "key": "3310", "attributes": { "latitude": 50.8307991027832, "longitude": -58.97560119628906, "fullName": "La Tabatière Airport" } }, { "key": "3307", "attributes": { "latitude": 50.46889877319336, "longitude": -59.63669967651367, "fullName": "Chevery Airport" } }, { "key": "3309", "attributes": { "latitude": 50.1958007812, "longitude": -61.265800476100004, "fullName": "Kegaska Airport" } }, { "key": "2996", "attributes": { "latitude": 25.112199783325195, "longitude": 56.32400131225586, "fullName": "Fujairah International Airport" } }, { "key": "3052", "attributes": { "latitude": 39.671501, "longitude": -31.1136, "fullName": "Corvo Airport" } }, { "key": "3054", "attributes": { "latitude": 39.092201232910156, "longitude": -28.029800415039062, "fullName": "Graciosa Airport" } }, { "key": "3005", "attributes": { "latitude": -8.348349571228027, "longitude": -49.30149841308594, "fullName": "Conceição do Araguaia Airport" } }, { "key": "3423", "attributes": { "latitude": -9.31997013092041, "longitude": -50.32849884033203, "fullName": "Santana do Araguaia Airport" } }, { "key": "3006", "attributes": { "latitude": -11.73960018157959, "longitude": -49.132198333740234, "fullName": "Gurupi Airport" } }, { "key": "3007", "attributes": { "latitude": -13.5491, "longitude": -48.195301, "fullName": "Minaçu Airport" } }, { "key": "3010", "attributes": { "latitude": -10.4647216796875, "longitude": -50.518611907958984, "fullName": "Santa Terezinha Airport" } }, { "key": "3011", "attributes": { "latitude": -11.632399559020996, "longitude": -50.68960189819336, "fullName": "São Félix do Araguaia Airport" } }, { "key": "3012", "attributes": { "latitude": -6.6413, "longitude": -51.9523, "fullName": "São Félix do Xingu Airport" } }, { "key": "3040", "attributes": { "latitude": -14.3114004135, "longitude": -178.065994263, "fullName": "Pointe Vele Airport" } }, { "key": "3049", "attributes": { "latitude": -37.7281, "longitude": 144.901993, "fullName": "Melbourne Essendon Airport" } }, { "key": "3050", "attributes": { "latitude": -38.31809997558594, "longitude": 141.4709930419922, "fullName": "Portland Airport" } }, { "key": "3078", "attributes": { "latitude": -22.612199783325195, "longitude": 17.080400466918945, "fullName": "Eros Airport" } }, { "key": "3081", "attributes": { "latitude": -17.956499099731, "longitude": 19.719400405884, "fullName": "Rundu Airport" } }, { "key": "3080", "attributes": { "latitude": -17.634399, "longitude": 24.176701, "fullName": "Katima Mulilo Airport" } }, { "key": "3083", "attributes": { "latitude": -17.878201, "longitude": 15.9526, "fullName": "Ondangwa Airport" } }, { "key": "3082", "attributes": { "latitude": -28.5847, "longitude": 16.446699, "fullName": "Oranjemund Airport" } }, { "key": "3089", "attributes": { "latitude": 29.94029998779297, "longitude": 34.93579864501953, "fullName": "Ovda International Airport" } }, { "key": "3106", "attributes": { "latitude": -12.019399642899998, "longitude": 135.570999146, "fullName": "Elcho Island Airport" } }, { "key": "3108", "attributes": { "latitude": -12.0944004059, "longitude": 134.893997192, "fullName": "Milingimbi Airport" } }, { "key": "3116", "attributes": { "latitude": -19.720600128173828, "longitude": 163.66099548339844, "fullName": "Île Art - Waala Airport" } }, { "key": "3120", "attributes": { "latitude": -20.546300888061523, "longitude": 164.25599670410156, "fullName": "Koumac Airport" } }, { "key": "3117", "attributes": { "latitude": -22.25830078125, "longitude": 166.47300720214844, "fullName": "Nouméa Magenta Airport" } }, { "key": "3119", "attributes": { "latitude": -21.05430030822754, "longitude": 164.83700561523438, "fullName": "Koné Airport" } }, { "key": "3125", "attributes": { "latitude": -20.640600204467773, "longitude": 166.572998046875, "fullName": "Ouvéa Airport" } }, { "key": "3123", "attributes": { "latitude": -21.096099853515625, "longitude": 167.8040008544922, "fullName": "Tiga Airport" } }, { "key": "3121", "attributes": { "latitude": -20.774799346923828, "longitude": 167.24000549316406, "fullName": "Lifou Airport" } }, { "key": "3118", "attributes": { "latitude": -22.588899612426758, "longitude": 167.45599365234375, "fullName": "Île des Pins Airport" } }, { "key": "3122", "attributes": { "latitude": -21.481700897216797, "longitude": 168.03799438476562, "fullName": "Maré Airport" } }, { "key": "3124", "attributes": { "latitude": -20.790000915527344, "longitude": 165.25900268554688, "fullName": "Touho Airport" } }, { "key": "3148", "attributes": { "latitude": 5.35698, "longitude": 162.957993, "fullName": "Kosrae International Airport" } }, { "key": "3158", "attributes": { "latitude": 6.985099792480469, "longitude": 158.20899963378906, "fullName": "Pohnpei International Airport" } }, { "key": "3166", "attributes": { "latitude": 15.670000076293945, "longitude": 39.37009811401367, "fullName": "Massawa International Airport" } }, { "key": "3169", "attributes": { "latitude": 7.70576, "longitude": 81.678802, "fullName": "Batticaloa Airport" } }, { "key": "3173", "attributes": { "latitude": 8.5385103225708, "longitude": 81.18190002441406, "fullName": "China Bay Airport" } }, { "key": "3196", "attributes": { "latitude": -12.1883001328, "longitude": 96.8339004517, "fullName": "Cocos (Keeling) Islands Airport" } }, { "key": "3240", "attributes": { "latitude": -8.93611, "longitude": -139.552002, "fullName": "Ua Huka Airport" } }, { "key": "3241", "attributes": { "latitude": -9.35167, "longitude": -140.078003, "fullName": "Ua Pou Airport" } }, { "key": "3223", "attributes": { "latitude": -15.663299560546875, "longitude": -146.88499450683594, "fullName": "Kaukura Airport" } }, { "key": "3219", "attributes": { "latitude": -23.07990074157715, "longitude": -134.88999938964844, "fullName": "Totegegie Airport" } }, { "key": "3226", "attributes": { "latitude": -16.583900451660156, "longitude": -143.6580047607422, "fullName": "Makemo Airport" } }, { "key": "3237", "attributes": { "latitude": -14.709500312805176, "longitude": -145.24600219726562, "fullName": "Takapoto Airport" } }, { "key": "3276", "attributes": { "latitude": 27.32990074157715, "longitude": 97.42630004882812, "fullName": "Putao Airport" } }, { "key": "3279", "attributes": { "latitude": 70.60050201416, "longitude": 29.691400527954, "fullName": "Båtsfjord Airport" } }, { "key": "3281", "attributes": { "latitude": 70.871399, "longitude": 29.034201, "fullName": "Berlevåg Airport" } }, { "key": "3290", "attributes": { "latitude": 71.02970123291, "longitude": 27.826700210571, "fullName": "Mehamn Airport" } }, { "key": "3287", "attributes": { "latitude": 71.009696960449, "longitude": 25.983600616455, "fullName": "Valan Airport" } }, { "key": "3311", "attributes": { "latitude": 50.674400329589844, "longitude": -59.38359832763672, "fullName": "Tête-à-la-Baleine Airport" } }, { "key": "3317", "attributes": { "latitude": 52.991100311299995, "longitude": -92.8364028931, "fullName": "Keewaywin Airport" } }, { "key": "3320", "attributes": { "latitude": 52.70859909057617, "longitude": -88.54190063476562, "fullName": "Summer Beaver Airport" } }, { "key": "3329", "attributes": { "latitude": 52.19559860229492, "longitude": -87.93419647216797, "fullName": "Lansdowne House Airport" } }, { "key": "3331", "attributes": { "latitude": 51.6585998535, "longitude": -85.9017028809, "fullName": "Ogoki Post Airport" } }, { "key": "3328", "attributes": { "latitude": 52.1133, "longitude": -94.2556, "fullName": "Poplar Hill Airport" } }, { "key": "3330", "attributes": { "latitude": 52.4900016784668, "longitude": -92.97109985351562, "fullName": "North Spirit Lake Airport" } }, { "key": "3332", "attributes": { "latitude": 51.4463996887207, "longitude": -90.21420288085938, "fullName": "Pickle Lake Airport" } }, { "key": "3353", "attributes": { "latitude": 52.9275016784668, "longitude": -82.43190002441406, "fullName": "Attawapiskat Airport" } }, { "key": "3363", "attributes": { "latitude": 52.282501220703125, "longitude": -81.67780303955078, "fullName": "Kashechewan Airport" } }, { "key": "3361", "attributes": { "latitude": 54.98809814453125, "longitude": -85.44329833984375, "fullName": "Peawanuck Airport" } }, { "key": "3354", "attributes": { "latitude": 52.20140075683594, "longitude": -81.6968994140625, "fullName": "Fort Albany Airport" } }, { "key": "3360", "attributes": { "latitude": 51.69110107421875, "longitude": -76.1355972290039, "fullName": "Nemiscau Airport" } }, { "key": "3362", "attributes": { "latitude": 52.22639846801758, "longitude": -78.52249908447266, "fullName": "Eastmain River Airport" } }, { "key": "3359", "attributes": { "latitude": 53.01060104370117, "longitude": -78.83110046386719, "fullName": "Wemindji Airport" } }, { "key": "3395", "attributes": { "latitude": -29.7593994140625, "longitude": 153.02999877929688, "fullName": "Grafton Airport" } }, { "key": "3405", "attributes": { "latitude": -20.701900482177734, "longitude": 143.11500549316406, "fullName": "Richmond Airport" } } ], "edges": [ { "key": "30317", "source": "0", "target": "693", "attributes": { "weight": 2 } }, { "key": "34922", "source": "0", "target": "352", "attributes": { "weight": 1 } }, { "key": "11325", "source": "0", "target": "1742", "attributes": { "weight": 1 } }, { "key": "31567", "source": "0", "target": "8", "attributes": { "weight": 1 } }, { "key": "31570", "source": "0", "target": "14", "attributes": { "weight": 2 } }, { "key": "31569", "source": "0", "target": "595", "attributes": { "weight": 1 } }, { "key": "23730", "source": "0", "target": "1774", "attributes": { "weight": 2 } }, { "key": "37215", "source": "0", "target": "681", "attributes": { "weight": 1 } }, { "key": "31568", "source": "0", "target": "2505", "attributes": { "weight": 1 } }, { "key": "30572", "source": "0", "target": "682", "attributes": { "weight": 2 } }, { "key": "3600", "source": "0", "target": "1025", "attributes": { "weight": 1 } }, { "key": "29354", "source": "0", "target": "869", "attributes": { "weight": 1 } }, { "key": "30816", "source": "0", "target": "3", "attributes": { "weight": 4 } }, { "key": "31566", "source": "0", "target": "791", "attributes": { "weight": 2 } }, { "key": "32101", "source": "0", "target": "792", "attributes": { "weight": 2 } }, { "key": "2699", "source": "0", "target": "788", "attributes": { "weight": 1 } }, { "key": "0", "source": "0", "target": "7", "attributes": { "weight": 1 } }, { "key": "558", "source": "1", "target": "3", "attributes": { "weight": 2 } }, { "key": "32304", "source": "1", "target": "232", "attributes": { "weight": 1 } }, { "key": "559", "source": "1", "target": "8", "attributes": { "weight": 1 } }, { "key": "31572", "source": "1", "target": "595", "attributes": { "weight": 1 } }, { "key": "16515", "source": "1", "target": "2077", "attributes": { "weight": 1 } }, { "key": "2", "source": "1", "target": "9", "attributes": { "weight": 1 } }, { "key": "1", "source": "1", "target": "7", "attributes": { "weight": 1 } }, { "key": "30826", "source": "2", "target": "693", "attributes": { "weight": 1 } }, { "key": "31583", "source": "2", "target": "595", "attributes": { "weight": 1 } }, { "key": "30824", "source": "2", "target": "3", "attributes": { "weight": 2 } }, { "key": "33745", "source": "2", "target": "244", "attributes": { "weight": 1 } }, { "key": "30827", "source": "2", "target": "792", "attributes": { "weight": 2 } }, { "key": "33744", "source": "2", "target": "89", "attributes": { "weight": 1 } }, { "key": "30293", "source": "2", "target": "1988", "attributes": { "weight": 2 } }, { "key": "30825", "source": "2", "target": "788", "attributes": { "weight": 2 } }, { "key": "31582", "source": "2", "target": "8", "attributes": { "weight": 1 } }, { "key": "30292", "source": "2", "target": "789", "attributes": { "weight": 1 } }, { "key": "33746", "source": "2", "target": "1774", "attributes": { "weight": 1 } }, { "key": "28931", "source": "2", "target": "479", "attributes": { "weight": 2 } }, { "key": "4", "source": "2", "target": "13", "attributes": { "weight": 2 } }, { "key": "3", "source": "2", "target": "7", "attributes": { "weight": 1 } }, { "key": "31585", "source": "3", "target": "474", "attributes": { "weight": 1 } }, { "key": "30856", "source": "3", "target": "2828", "attributes": { "weight": 2 } }, { "key": "30863", "source": "3", "target": "3021", "attributes": { "weight": 3 } }, { "key": "30848", "source": "3", "target": "9", "attributes": { "weight": 3 } }, { "key": "30853", "source": "3", "target": "347", "attributes": { "weight": 2 } }, { "key": "30851", "source": "3", "target": "3017", "attributes": { "weight": 2 } }, { "key": "30876", "source": "3", "target": "25", "attributes": { "weight": 2 } }, { "key": "30835", "source": "3", "target": "17", "attributes": { "weight": 1 } }, { "key": "34950", "source": "3", "target": "3174", "attributes": { "weight": 1 } }, { "key": "34942", "source": "3", "target": "169", "attributes": { "weight": 1 } }, { "key": "30831", "source": "3", "target": "0", "attributes": { "weight": 3 } }, { "key": "34934", "source": "3", "target": "2500", "attributes": { "weight": 1 } }, { "key": "31419", "source": "3", "target": "223", "attributes": { "weight": 1 } }, { "key": "30862", "source": "3", "target": "793", "attributes": { "weight": 1 } }, { "key": "30829", "source": "3", "target": "3013", "attributes": { "weight": 1 } }, { "key": "31463", "source": "3", "target": "1233", "attributes": { "weight": 2 } }, { "key": "3943", "source": "3", "target": "487", "attributes": { "weight": 3 } }, { "key": "15085", "source": "3", "target": "1993", "attributes": { "weight": 1 } }, { "key": "22276", "source": "3", "target": "794", "attributes": { "weight": 1 } }, { "key": "30860", "source": "3", "target": "3020", "attributes": { "weight": 1 } }, { "key": "34957", "source": "3", "target": "1780", "attributes": { "weight": 1 } }, { "key": "34953", "source": "3", "target": "177", "attributes": { "weight": 2 } }, { "key": "30861", "source": "3", "target": "823", "attributes": { "weight": 3 } }, { "key": "24665", "source": "3", "target": "5", "attributes": { "weight": 2 } }, { "key": "30846", "source": "3", "target": "53", "attributes": { "weight": 1 } }, { "key": "34947", "source": "3", "target": "1965", "attributes": { "weight": 1 } }, { "key": "17105", "source": "3", "target": "2104", "attributes": { "weight": 3 } }, { "key": "25912", "source": "3", "target": "1367", "attributes": { "weight": 1 } }, { "key": "2781", "source": "3", "target": "827", "attributes": { "weight": 1 } }, { "key": "34933", "source": "3", "target": "787", "attributes": { "weight": 1 } }, { "key": "30849", "source": "3", "target": "11", "attributes": { "weight": 2 } }, { "key": "26099", "source": "3", "target": "1988", "attributes": { "weight": 5 } }, { "key": "30843", "source": "3", "target": "6", "attributes": { "weight": 3 } }, { "key": "11861", "source": "3", "target": "468", "attributes": { "weight": 1 } }, { "key": "30845", "source": "3", "target": "817", "attributes": { "weight": 3 } }, { "key": "33748", "source": "3", "target": "224", "attributes": { "weight": 1 } }, { "key": "30564", "source": "3", "target": "2103", "attributes": { "weight": 1 } }, { "key": "3942", "source": "3", "target": "483", "attributes": { "weight": 3 } }, { "key": "24412", "source": "3", "target": "2505", "attributes": { "weight": 3 } }, { "key": "30832", "source": "3", "target": "1779", "attributes": { "weight": 2 } }, { "key": "2703", "source": "3", "target": "792", "attributes": { "weight": 2 } }, { "key": "31464", "source": "3", "target": "178", "attributes": { "weight": 2 } }, { "key": "566", "source": "3", "target": "244", "attributes": { "weight": 2 } }, { "key": "2778", "source": "3", "target": "822", "attributes": { "weight": 1 } }, { "key": "30854", "source": "3", "target": "3018", "attributes": { "weight": 1 } }, { "key": "30859", "source": "3", "target": "2612", "attributes": { "weight": 1 } }, { "key": "2782", "source": "3", "target": "829", "attributes": { "weight": 2 } }, { "key": "6661", "source": "3", "target": "189", "attributes": { "weight": 3 } }, { "key": "37407", "source": "3", "target": "3376", "attributes": { "weight": 1 } }, { "key": "563", "source": "3", "target": "4", "attributes": { "weight": 3 } }, { "key": "33334", "source": "3", "target": "135", "attributes": { "weight": 2 } }, { "key": "34941", "source": "3", "target": "650", "attributes": { "weight": 1 } }, { "key": "24036", "source": "3", "target": "1354", "attributes": { "weight": 4 } }, { "key": "3604", "source": "3", "target": "1025", "attributes": { "weight": 2 } }, { "key": "34949", "source": "3", "target": "473", "attributes": { "weight": 1 } }, { "key": "3939", "source": "3", "target": "443", "attributes": { "weight": 1 } }, { "key": "567", "source": "3", "target": "245", "attributes": { "weight": 3 } }, { "key": "33752", "source": "3", "target": "3128", "attributes": { "weight": 1 } }, { "key": "30875", "source": "3", "target": "496", "attributes": { "weight": 1 } }, { "key": "2776", "source": "3", "target": "819", "attributes": { "weight": 1 } }, { "key": "30874", "source": "3", "target": "828", "attributes": { "weight": 1 } }, { "key": "37273", "source": "3", "target": "2506", "attributes": { "weight": 1 } }, { "key": "30847", "source": "3", "target": "470", "attributes": { "weight": 2 } }, { "key": "23746", "source": "3", "target": "2456", "attributes": { "weight": 2 } }, { "key": "2702", "source": "3", "target": "788", "attributes": { "weight": 2 } }, { "key": "34943", "source": "3", "target": "3085", "attributes": { "weight": 1 } }, { "key": "2772", "source": "3", "target": "811", "attributes": { "weight": 1 } }, { "key": "30866", "source": "3", "target": "673", "attributes": { "weight": 1 } }, { "key": "34956", "source": "3", "target": "56", "attributes": { "weight": 1 } }, { "key": "31513", "source": "3", "target": "467", "attributes": { "weight": 1 } }, { "key": "30836", "source": "3", "target": "2", "attributes": { "weight": 2 } }, { "key": "29841", "source": "3", "target": "868", "attributes": { "weight": 2 } }, { "key": "12784", "source": "3", "target": "452", "attributes": { "weight": 2 } }, { "key": "2335", "source": "3", "target": "683", "attributes": { "weight": 1 } }, { "key": "30858", "source": "3", "target": "481", "attributes": { "weight": 1 } }, { "key": "2771", "source": "3", "target": "810", "attributes": { "weight": 2 } }, { "key": "30868", "source": "3", "target": "3023", "attributes": { "weight": 2 } }, { "key": "562", "source": "3", "target": "241", "attributes": { "weight": 3 } }, { "key": "2775", "source": "3", "target": "815", "attributes": { "weight": 2 } }, { "key": "34937", "source": "3", "target": "2122", "attributes": { "weight": 1 } }, { "key": "34945", "source": "3", "target": "1072", "attributes": { "weight": 1 } }, { "key": "30867", "source": "3", "target": "349", "attributes": { "weight": 2 } }, { "key": "10814", "source": "3", "target": "457", "attributes": { "weight": 2 } }, { "key": "34935", "source": "3", "target": "860", "attributes": { "weight": 1 } }, { "key": "16523", "source": "3", "target": "2077", "attributes": { "weight": 1 } }, { "key": "568", "source": "3", "target": "246", "attributes": { "weight": 2 } }, { "key": "6660", "source": "3", "target": "454", "attributes": { "weight": 3 } }, { "key": "17104", "source": "3", "target": "2102", "attributes": { "weight": 1 } }, { "key": "33043", "source": "3", "target": "493", "attributes": { "weight": 1 } }, { "key": "34961", "source": "3", "target": "1967", "attributes": { "weight": 1 } }, { "key": "30873", "source": "3", "target": "1375", "attributes": { "weight": 1 } }, { "key": "34948", "source": "3", "target": "2072", "attributes": { "weight": 1 } }, { "key": "30850", "source": "3", "target": "3016", "attributes": { "weight": 1 } }, { "key": "569", "source": "3", "target": "247", "attributes": { "weight": 5 } }, { "key": "30872", "source": "3", "target": "2208", "attributes": { "weight": 1 } }, { "key": "564", "source": "3", "target": "242", "attributes": { "weight": 2 } }, { "key": "2773", "source": "3", "target": "812", "attributes": { "weight": 1 } }, { "key": "35480", "source": "3", "target": "574", "attributes": { "weight": 1 } }, { "key": "15084", "source": "3", "target": "1992", "attributes": { "weight": 1 } }, { "key": "27234", "source": "3", "target": "52", "attributes": { "weight": 1 } }, { "key": "2381", "source": "3", "target": "694", "attributes": { "weight": 1 } }, { "key": "34958", "source": "3", "target": "2461", "attributes": { "weight": 1 } }, { "key": "31512", "source": "3", "target": "453", "attributes": { "weight": 1 } }, { "key": "34938", "source": "3", "target": "89", "attributes": { "weight": 1 } }, { "key": "30869", "source": "3", "target": "351", "attributes": { "weight": 4 } }, { "key": "27847", "source": "3", "target": "339", "attributes": { "weight": 1 } }, { "key": "30865", "source": "3", "target": "14", "attributes": { "weight": 3 } }, { "key": "2332", "source": "3", "target": "682", "attributes": { "weight": 4 } }, { "key": "6662", "source": "3", "target": "193", "attributes": { "weight": 2 } }, { "key": "30870", "source": "3", "target": "2079", "attributes": { "weight": 1 } }, { "key": "33751", "source": "3", "target": "3127", "attributes": { "weight": 1 } }, { "key": "24035", "source": "3", "target": "429", "attributes": { "weight": 2 } }, { "key": "13933", "source": "3", "target": "164", "attributes": { "weight": 3 } }, { "key": "30359", "source": "3", "target": "1046", "attributes": { "weight": 1 } }, { "key": "23745", "source": "3", "target": "2455", "attributes": { "weight": 1 } }, { "key": "30840", "source": "3", "target": "18", "attributes": { "weight": 2 } }, { "key": "24039", "source": "3", "target": "231", "attributes": { "weight": 2 } }, { "key": "33750", "source": "3", "target": "2513", "attributes": { "weight": 1 } }, { "key": "2333", "source": "3", "target": "8", "attributes": { "weight": 5 } }, { "key": "37272", "source": "3", "target": "3351", "attributes": { "weight": 1 } }, { "key": "34951", "source": "3", "target": "3019", "attributes": { "weight": 1 } }, { "key": "4243", "source": "3", "target": "1136", "attributes": { "weight": 2 } }, { "key": "34939", "source": "3", "target": "2989", "attributes": { "weight": 1 } }, { "key": "37321", "source": "3", "target": "1775", "attributes": { "weight": 1 } }, { "key": "2777", "source": "3", "target": "821", "attributes": { "weight": 1 } }, { "key": "34936", "source": "3", "target": "2831", "attributes": { "weight": 2 } }, { "key": "34900", "source": "3", "target": "1042", "attributes": { "weight": 1 } }, { "key": "14189", "source": "3", "target": "168", "attributes": { "weight": 3 } }, { "key": "34946", "source": "3", "target": "2071", "attributes": { "weight": 1 } }, { "key": "12395", "source": "3", "target": "1368", "attributes": { "weight": 2 } }, { "key": "33335", "source": "3", "target": "472", "attributes": { "weight": 1 } }, { "key": "34955", "source": "3", "target": "311", "attributes": { "weight": 1 } }, { "key": "24037", "source": "3", "target": "130", "attributes": { "weight": 3 } }, { "key": "34954", "source": "3", "target": "2670", "attributes": { "weight": 1 } }, { "key": "3941", "source": "3", "target": "462", "attributes": { "weight": 1 } }, { "key": "29392", "source": "3", "target": "232", "attributes": { "weight": 1 } }, { "key": "30837", "source": "3", "target": "693", "attributes": { "weight": 1 } }, { "key": "34952", "source": "3", "target": "372", "attributes": { "weight": 1 } }, { "key": "18056", "source": "3", "target": "1036", "attributes": { "weight": 2 } }, { "key": "30852", "source": "3", "target": "12", "attributes": { "weight": 3 } }, { "key": "30834", "source": "3", "target": "2086", "attributes": { "weight": 1 } }, { "key": "29840", "source": "3", "target": "1024", "attributes": { "weight": 2 } }, { "key": "2780", "source": "3", "target": "825", "attributes": { "weight": 1 } }, { "key": "34959", "source": "3", "target": "1390", "attributes": { "weight": 1 } }, { "key": "12672", "source": "3", "target": "695", "attributes": { "weight": 2 } }, { "key": "24930", "source": "3", "target": "580", "attributes": { "weight": 2 } }, { "key": "30842", "source": "3", "target": "3015", "attributes": { "weight": 2 } }, { "key": "23244", "source": "3", "target": "495", "attributes": { "weight": 5 } }, { "key": "33753", "source": "3", "target": "2992", "attributes": { "weight": 2 } }, { "key": "17355", "source": "3", "target": "358", "attributes": { "weight": 1 } }, { "key": "23900", "source": "3", "target": "816", "attributes": { "weight": 1 } }, { "key": "3938", "source": "3", "target": "432", "attributes": { "weight": 2 } }, { "key": "35479", "source": "3", "target": "1856", "attributes": { "weight": 1 } }, { "key": "30839", "source": "3", "target": "2646", "attributes": { "weight": 2 } }, { "key": "27235", "source": "3", "target": "57", "attributes": { "weight": 1 } }, { "key": "30857", "source": "3", "target": "1812", "attributes": { "weight": 2 } }, { "key": "30838", "source": "3", "target": "1536", "attributes": { "weight": 1 } }, { "key": "5", "source": "3", "target": "7", "attributes": { "weight": 4 } }, { "key": "6", "source": "3", "target": "10", "attributes": { "weight": 1 } }, { "key": "7", "source": "3", "target": "15", "attributes": { "weight": 1 } }, { "key": "8", "source": "3", "target": "16", "attributes": { "weight": 1 } }, { "key": "34944", "source": "3", "target": "426", "attributes": { "weight": 1 } }, { "key": "561", "source": "3", "target": "1", "attributes": { "weight": 2 } }, { "key": "2779", "source": "3", "target": "824", "attributes": { "weight": 1 } }, { "key": "23122", "source": "3", "target": "789", "attributes": { "weight": 6 } }, { "key": "33749", "source": "3", "target": "3126", "attributes": { "weight": 1 } }, { "key": "30830", "source": "3", "target": "2499", "attributes": { "weight": 1 } }, { "key": "30871", "source": "3", "target": "2507", "attributes": { "weight": 2 } }, { "key": "30703", "source": "3", "target": "889", "attributes": { "weight": 2 } }, { "key": "23742", "source": "3", "target": "2454", "attributes": { "weight": 1 } }, { "key": "30833", "source": "3", "target": "3014", "attributes": { "weight": 2 } }, { "key": "30844", "source": "3", "target": "681", "attributes": { "weight": 2 } }, { "key": "23744", "source": "3", "target": "1774", "attributes": { "weight": 1 } }, { "key": "30864", "source": "3", "target": "3022", "attributes": { "weight": 2 } }, { "key": "2334", "source": "3", "target": "21", "attributes": { "weight": 1 } }, { "key": "30563", "source": "3", "target": "2988", "attributes": { "weight": 1 } }, { "key": "3940", "source": "3", "target": "458", "attributes": { "weight": 3 } }, { "key": "30855", "source": "3", "target": "13", "attributes": { "weight": 3 } }, { "key": "23743", "source": "3", "target": "346", "attributes": { "weight": 2 } }, { "key": "34940", "source": "3", "target": "2501", "attributes": { "weight": 1 } }, { "key": "16522", "source": "3", "target": "2067", "attributes": { "weight": 1 } }, { "key": "30841", "source": "3", "target": "19", "attributes": { "weight": 2 } }, { "key": "34960", "source": "3", "target": "1377", "attributes": { "weight": 1 } }, { "key": "11337", "source": "3", "target": "1742", "attributes": { "weight": 3 } }, { "key": "24038", "source": "3", "target": "471", "attributes": { "weight": 2 } }, { "key": "565", "source": "3", "target": "243", "attributes": { "weight": 2 } }, { "key": "27361", "source": "3", "target": "340", "attributes": { "weight": 2 } }, { "key": "6659", "source": "3", "target": "183", "attributes": { "weight": 2 } }, { "key": "26100", "source": "4", "target": "789", "attributes": { "weight": 1 } }, { "key": "2784", "source": "4", "target": "823", "attributes": { "weight": 1 } }, { "key": "30579", "source": "4", "target": "682", "attributes": { "weight": 1 } }, { "key": "37217", "source": "4", "target": "2646", "attributes": { "weight": 1 } }, { "key": "37371", "source": "4", "target": "8", "attributes": { "weight": 1 } }, { "key": "570", "source": "4", "target": "3", "attributes": { "weight": 3 } }, { "key": "2783", "source": "4", "target": "817", "attributes": { "weight": 1 } }, { "key": "10", "source": "4", "target": "7", "attributes": { "weight": 1 } }, { "key": "9", "source": "4", "target": "6", "attributes": { "weight": 1 } }, { "key": "24672", "source": "5", "target": "454", "attributes": { "weight": 3 } }, { "key": "16528", "source": "5", "target": "2077", "attributes": { "weight": 2 } }, { "key": "8758", "source": "5", "target": "442", "attributes": { "weight": 2 } }, { "key": "24671", "source": "5", "target": "2211", "attributes": { "weight": 1 } }, { "key": "11884", "source": "5", "target": "468", "attributes": { "weight": 2 } }, { "key": "24675", "source": "5", "target": "2513", "attributes": { "weight": 1 } }, { "key": "24684", "source": "5", "target": "1805", "attributes": { "weight": 1 } }, { "key": "24677", "source": "5", "target": "9", "attributes": { "weight": 1 } }, { "key": "37222", "source": "5", "target": "351", "attributes": { "weight": 1 } }, { "key": "26572", "source": "5", "target": "1779", "attributes": { "weight": 2 } }, { "key": "12674", "source": "5", "target": "695", "attributes": { "weight": 2 } }, { "key": "21572", "source": "5", "target": "358", "attributes": { "weight": 2 } }, { "key": "11", "source": "5", "target": "10", "attributes": { "weight": 1 } }, { "key": "24494", "source": "5", "target": "790", "attributes": { "weight": 2 } }, { "key": "24670", "source": "5", "target": "1046", "attributes": { "weight": 2 } }, { "key": "24678", "source": "5", "target": "13", "attributes": { "weight": 2 } }, { "key": "24679", "source": "5", "target": "304", "attributes": { "weight": 1 } }, { "key": "24676", "source": "5", "target": "8", "attributes": { "weight": 3 } }, { "key": "25612", "source": "5", "target": "787", "attributes": { "weight": 1 } }, { "key": "24680", "source": "5", "target": "479", "attributes": { "weight": 2 } }, { "key": "11144", "source": "5", "target": "473", "attributes": { "weight": 2 } }, { "key": "24685", "source": "5", "target": "340", "attributes": { "weight": 1 } }, { "key": "24686", "source": "5", "target": "495", "attributes": { "weight": 2 } }, { "key": "14571", "source": "5", "target": "319", "attributes": { "weight": 1 } }, { "key": "24419", "source": "5", "target": "2505", "attributes": { "weight": 1 } }, { "key": "18426", "source": "5", "target": "422", "attributes": { "weight": 1 } }, { "key": "24673", "source": "5", "target": "791", "attributes": { "weight": 2 } }, { "key": "23754", "source": "5", "target": "1774", "attributes": { "weight": 1 } }, { "key": "24674", "source": "5", "target": "1024", "attributes": { "weight": 3 } }, { "key": "24683", "source": "5", "target": "673", "attributes": { "weight": 2 } }, { "key": "25613", "source": "5", "target": "1780", "attributes": { "weight": 1 } }, { "key": "18427", "source": "5", "target": "595", "attributes": { "weight": 2 } }, { "key": "11342", "source": "5", "target": "1742", "attributes": { "weight": 1 } }, { "key": "35966", "source": "5", "target": "440", "attributes": { "weight": 1 } }, { "key": "24669", "source": "5", "target": "3", "attributes": { "weight": 2 } }, { "key": "24681", "source": "5", "target": "232", "attributes": { "weight": 2 } }, { "key": "11143", "source": "5", "target": "452", "attributes": { "weight": 2 } }, { "key": "24682", "source": "5", "target": "14", "attributes": { "weight": 2 } }, { "key": "37221", "source": "5", "target": "681", "attributes": { "weight": 1 } }, { "key": "23759", "source": "6", "target": "1774", "attributes": { "weight": 2 } }, { "key": "6842", "source": "6", "target": "193", "attributes": { "weight": 2 } }, { "key": "15087", "source": "6", "target": "1992", "attributes": { "weight": 1 } }, { "key": "29889", "source": "6", "target": "1024", "attributes": { "weight": 2 } }, { "key": "12676", "source": "6", "target": "695", "attributes": { "weight": 1 } }, { "key": "11347", "source": "6", "target": "1742", "attributes": { "weight": 1 } }, { "key": "31617", "source": "6", "target": "8", "attributes": { "weight": 1 } }, { "key": "30896", "source": "6", "target": "3", "attributes": { "weight": 3 } }, { "key": "31618", "source": "6", "target": "595", "attributes": { "weight": 1 } }, { "key": "12", "source": "6", "target": "4", "attributes": { "weight": 1 } }, { "key": "32111", "source": "7", "target": "788", "attributes": { "weight": 2 } }, { "key": "32112", "source": "7", "target": "792", "attributes": { "weight": 2 } }, { "key": "21588", "source": "7", "target": "89", "attributes": { "weight": 1 } }, { "key": "25625", "source": "7", "target": "787", "attributes": { "weight": 1 } }, { "key": "23766", "source": "7", "target": "242", "attributes": { "weight": 1 } }, { "key": "22297", "source": "7", "target": "794", "attributes": { "weight": 1 } }, { "key": "37316", "source": "7", "target": "789", "attributes": { "weight": 1 } }, { "key": "23767", "source": "7", "target": "246", "attributes": { "weight": 1 } }, { "key": "3039", "source": "7", "target": "424", "attributes": { "weight": 1 } }, { "key": "32548", "source": "7", "target": "791", "attributes": { "weight": 1 } }, { "key": "31635", "source": "7", "target": "595", "attributes": { "weight": 1 } }, { "key": "37317", "source": "7", "target": "1988", "attributes": { "weight": 1 } }, { "key": "23768", "source": "7", "target": "1774", "attributes": { "weight": 1 } }, { "key": "35131", "source": "7", "target": "351", "attributes": { "weight": 1 } }, { "key": "19", "source": "7", "target": "14", "attributes": { "weight": 1 } }, { "key": "18", "source": "7", "target": "8", "attributes": { "weight": 3 } }, { "key": "17", "source": "7", "target": "4", "attributes": { "weight": 1 } }, { "key": "16", "source": "7", "target": "3", "attributes": { "weight": 4 } }, { "key": "15", "source": "7", "target": "2", "attributes": { "weight": 1 } }, { "key": "14", "source": "7", "target": "1", "attributes": { "weight": 1 } }, { "key": "13", "source": "7", "target": "0", "attributes": { "weight": 1 } }, { "key": "1963", "source": "8", "target": "594", "attributes": { "weight": 2 } }, { "key": "12679", "source": "8", "target": "695", "attributes": { "weight": 1 } }, { "key": "2801", "source": "8", "target": "828", "attributes": { "weight": 1 } }, { "key": "21435", "source": "8", "target": "183", "attributes": { "weight": 3 } }, { "key": "3997", "source": "8", "target": "432", "attributes": { "weight": 1 } }, { "key": "29174", "source": "8", "target": "1750", "attributes": { "weight": 1 } }, { "key": "9963", "source": "8", "target": "494", "attributes": { "weight": 2 } }, { "key": "12397", "source": "8", "target": "1368", "attributes": { "weight": 2 } }, { "key": "25629", "source": "8", "target": "1780", "attributes": { "weight": 2 } }, { "key": "2796", "source": "8", "target": "811", "attributes": { "weight": 1 } }, { "key": "23904", "source": "8", "target": "815", "attributes": { "weight": 1 } }, { "key": "11171", "source": "8", "target": "452", "attributes": { "weight": 3 } }, { "key": "31656", "source": "8", "target": "3021", "attributes": { "weight": 1 } }, { "key": "15090", "source": "8", "target": "350", "attributes": { "weight": 1 } }, { "key": "31644", "source": "8", "target": "6", "attributes": { "weight": 1 } }, { "key": "31642", "source": "8", "target": "789", "attributes": { "weight": 2 } }, { "key": "18323", "source": "8", "target": "2086", "attributes": { "weight": 2 } }, { "key": "31651", "source": "8", "target": "474", "attributes": { "weight": 1 } }, { "key": "31648", "source": "8", "target": "817", "attributes": { "weight": 1 } }, { "key": "31641", "source": "8", "target": "2", "attributes": { "weight": 1 } }, { "key": "2800", "source": "8", "target": "824", "attributes": { "weight": 1 } }, { "key": "31649", "source": "8", "target": "53", "attributes": { "weight": 2 } }, { "key": "29039", "source": "8", "target": "495", "attributes": { "weight": 3 } }, { "key": "10900", "source": "8", "target": "457", "attributes": { "weight": 2 } }, { "key": "23775", "source": "8", "target": "246", "attributes": { "weight": 2 } }, { "key": "24691", "source": "8", "target": "5", "attributes": { "weight": 3 } }, { "key": "1961", "source": "8", "target": "590", "attributes": { "weight": 2 } }, { "key": "33794", "source": "8", "target": "3127", "attributes": { "weight": 1 } }, { "key": "23774", "source": "8", "target": "245", "attributes": { "weight": 2 } }, { "key": "25628", "source": "8", "target": "787", "attributes": { "weight": 2 } }, { "key": "23771", "source": "8", "target": "242", "attributes": { "weight": 1 } }, { "key": "31652", "source": "8", "target": "2505", "attributes": { "weight": 1 } }, { "key": "28941", "source": "8", "target": "2827", "attributes": { "weight": 2 } }, { "key": "24692", "source": "8", "target": "2513", "attributes": { "weight": 1 } }, { "key": "11352", "source": "8", "target": "1742", "attributes": { "weight": 3 } }, { "key": "31662", "source": "8", "target": "351", "attributes": { "weight": 1 } }, { "key": "31657", "source": "8", "target": "595", "attributes": { "weight": 1 } }, { "key": "2797", "source": "8", "target": "814", "attributes": { "weight": 1 } }, { "key": "25920", "source": "8", "target": "1367", "attributes": { "weight": 1 } }, { "key": "26609", "source": "8", "target": "189", "attributes": { "weight": 2 } }, { "key": "21436", "source": "8", "target": "188", "attributes": { "weight": 2 } }, { "key": "29894", "source": "8", "target": "1024", "attributes": { "weight": 4 } }, { "key": "25874", "source": "8", "target": "220", "attributes": { "weight": 2 } }, { "key": "24079", "source": "8", "target": "130", "attributes": { "weight": 3 } }, { "key": "573", "source": "8", "target": "1", "attributes": { "weight": 1 } }, { "key": "23447", "source": "8", "target": "304", "attributes": { "weight": 2 } }, { "key": "23776", "source": "8", "target": "1774", "attributes": { "weight": 2 } }, { "key": "31643", "source": "8", "target": "791", "attributes": { "weight": 2 } }, { "key": "8823", "source": "8", "target": "442", "attributes": { "weight": 2 } }, { "key": "37374", "source": "8", "target": "1390", "attributes": { "weight": 1 } }, { "key": "23769", "source": "8", "target": "2454", "attributes": { "weight": 1 } }, { "key": "2724", "source": "8", "target": "788", "attributes": { "weight": 4 } }, { "key": "37239", "source": "8", "target": "3017", "attributes": { "weight": 1 } }, { "key": "31655", "source": "8", "target": "823", "attributes": { "weight": 2 } }, { "key": "4000", "source": "8", "target": "487", "attributes": { "weight": 2 } }, { "key": "11172", "source": "8", "target": "473", "attributes": { "weight": 3 } }, { "key": "31661", "source": "8", "target": "349", "attributes": { "weight": 2 } }, { "key": "37373", "source": "8", "target": "4", "attributes": { "weight": 1 } }, { "key": "27272", "source": "8", "target": "52", "attributes": { "weight": 1 } }, { "key": "31663", "source": "8", "target": "352", "attributes": { "weight": 2 } }, { "key": "2799", "source": "8", "target": "819", "attributes": { "weight": 1 } }, { "key": "11923", "source": "8", "target": "468", "attributes": { "weight": 1 } }, { "key": "31653", "source": "8", "target": "1988", "attributes": { "weight": 2 } }, { "key": "31646", "source": "8", "target": "681", "attributes": { "weight": 2 } }, { "key": "1962", "source": "8", "target": "592", "attributes": { "weight": 2 } }, { "key": "3999", "source": "8", "target": "483", "attributes": { "weight": 3 } }, { "key": "31658", "source": "8", "target": "14", "attributes": { "weight": 2 } }, { "key": "16847", "source": "8", "target": "70", "attributes": { "weight": 1 } }, { "key": "31660", "source": "8", "target": "56", "attributes": { "weight": 1 } }, { "key": "2340", "source": "8", "target": "3", "attributes": { "weight": 5 } }, { "key": "34998", "source": "8", "target": "372", "attributes": { "weight": 1 } }, { "key": "17111", "source": "8", "target": "2104", "attributes": { "weight": 2 } }, { "key": "31640", "source": "8", "target": "424", "attributes": { "weight": 1 } }, { "key": "23770", "source": "8", "target": "241", "attributes": { "weight": 2 } }, { "key": "31647", "source": "8", "target": "682", "attributes": { "weight": 1 } }, { "key": "31638", "source": "8", "target": "3013", "attributes": { "weight": 1 } }, { "key": "34997", "source": "8", "target": "3174", "attributes": { "weight": 1 } }, { "key": "2725", "source": "8", "target": "792", "attributes": { "weight": 4 } }, { "key": "31645", "source": "8", "target": "2071", "attributes": { "weight": 1 } }, { "key": "33795", "source": "8", "target": "247", "attributes": { "weight": 1 } }, { "key": "15089", "source": "8", "target": "1992", "attributes": { "weight": 1 } }, { "key": "20", "source": "8", "target": "7", "attributes": { "weight": 3 } }, { "key": "21", "source": "8", "target": "10", "attributes": { "weight": 1 } }, { "key": "22", "source": "8", "target": "16", "attributes": { "weight": 1 } }, { "key": "31659", "source": "8", "target": "672", "attributes": { "weight": 1 } }, { "key": "3998", "source": "8", "target": "458", "attributes": { "weight": 2 } }, { "key": "17110", "source": "8", "target": "2102", "attributes": { "weight": 1 } }, { "key": "30328", "source": "8", "target": "693", "attributes": { "weight": 3 } }, { "key": "6855", "source": "8", "target": "193", "attributes": { "weight": 1 } }, { "key": "31639", "source": "8", "target": "0", "attributes": { "weight": 1 } }, { "key": "31328", "source": "8", "target": "59", "attributes": { "weight": 2 } }, { "key": "26608", "source": "8", "target": "454", "attributes": { "weight": 2 } }, { "key": "2341", "source": "8", "target": "13", "attributes": { "weight": 3 } }, { "key": "23772", "source": "8", "target": "243", "attributes": { "weight": 2 } }, { "key": "31650", "source": "8", "target": "9", "attributes": { "weight": 1 } }, { "key": "17480", "source": "8", "target": "358", "attributes": { "weight": 1 } }, { "key": "27273", "source": "8", "target": "57", "attributes": { "weight": 1 } }, { "key": "25744", "source": "8", "target": "278", "attributes": { "weight": 1 } }, { "key": "26915", "source": "8", "target": "497", "attributes": { "weight": 1 } }, { "key": "30605", "source": "8", "target": "25", "attributes": { "weight": 1 } }, { "key": "31654", "source": "8", "target": "2828", "attributes": { "weight": 1 } }, { "key": "27367", "source": "8", "target": "340", "attributes": { "weight": 2 } }, { "key": "28942", "source": "8", "target": "479", "attributes": { "weight": 2 } }, { "key": "30566", "source": "8", "target": "2103", "attributes": { "weight": 1 } }, { "key": "31329", "source": "8", "target": "674", "attributes": { "weight": 1 } }, { "key": "23777", "source": "8", "target": "2456", "attributes": { "weight": 2 } }, { "key": "2798", "source": "8", "target": "818", "attributes": { "weight": 1 } }, { "key": "3630", "source": "8", "target": "1025", "attributes": { "weight": 1 } }, { "key": "23773", "source": "8", "target": "244", "attributes": { "weight": 2 } }, { "key": "2802", "source": "8", "target": "829", "attributes": { "weight": 2 } }, { "key": "30607", "source": "9", "target": "340", "attributes": { "weight": 1 } }, { "key": "33800", "source": "9", "target": "788", "attributes": { "weight": 1 } }, { "key": "31670", "source": "9", "target": "595", "attributes": { "weight": 1 } }, { "key": "2806", "source": "9", "target": "232", "attributes": { "weight": 1 } }, { "key": "31668", "source": "9", "target": "693", "attributes": { "weight": 1 } }, { "key": "35004", "source": "9", "target": "352", "attributes": { "weight": 1 } }, { "key": "33799", "source": "9", "target": "89", "attributes": { "weight": 1 } }, { "key": "31669", "source": "9", "target": "8", "attributes": { "weight": 1 } }, { "key": "31671", "source": "9", "target": "14", "attributes": { "weight": 3 } }, { "key": "23779", "source": "9", "target": "1774", "attributes": { "weight": 2 } }, { "key": "16538", "source": "9", "target": "2077", "attributes": { "weight": 1 } }, { "key": "30904", "source": "9", "target": "3", "attributes": { "weight": 3 } }, { "key": "24693", "source": "9", "target": "5", "attributes": { "weight": 1 } }, { "key": "21592", "source": "9", "target": "358", "attributes": { "weight": 2 } }, { "key": "2383", "source": "9", "target": "694", "attributes": { "weight": 1 } }, { "key": "23", "source": "9", "target": "1", "attributes": { "weight": 1 } }, { "key": "33803", "source": "10", "target": "788", "attributes": { "weight": 1 } }, { "key": "31674", "source": "10", "target": "595", "attributes": { "weight": 1 } }, { "key": "25800", "source": "10", "target": "791", "attributes": { "weight": 1 } }, { "key": "27", "source": "10", "target": "14", "attributes": { "weight": 1 } }, { "key": "26", "source": "10", "target": "8", "attributes": { "weight": 1 } }, { "key": "25", "source": "10", "target": "5", "attributes": { "weight": 1 } }, { "key": "24", "source": "10", "target": "3", "attributes": { "weight": 1 } }, { "key": "24441", "source": "11", "target": "2505", "attributes": { "weight": 1 } }, { "key": "32121", "source": "11", "target": "792", "attributes": { "weight": 1 } }, { "key": "35133", "source": "11", "target": "349", "attributes": { "weight": 1 } }, { "key": "31678", "source": "11", "target": "595", "attributes": { "weight": 1 } }, { "key": "35132", "source": "11", "target": "3085", "attributes": { "weight": 1 } }, { "key": "24442", "source": "11", "target": "13", "attributes": { "weight": 3 } }, { "key": "30906", "source": "11", "target": "3", "attributes": { "weight": 2 } }, { "key": "29", "source": "11", "target": "16", "attributes": { "weight": 2 } }, { "key": "28", "source": "11", "target": "14", "attributes": { "weight": 2 } }, { "key": "31681", "source": "12", "target": "595", "attributes": { "weight": 1 } }, { "key": "37281", "source": "12", "target": "2506", "attributes": { "weight": 1 } }, { "key": "1005", "source": "12", "target": "349", "attributes": { "weight": 2 } }, { "key": "30910", "source": "12", "target": "3", "attributes": { "weight": 3 } }, { "key": "35136", "source": "12", "target": "13", "attributes": { "weight": 1 } }, { "key": "1006", "source": "12", "target": "351", "attributes": { "weight": 2 } }, { "key": "24445", "source": "12", "target": "2505", "attributes": { "weight": 1 } }, { "key": "1007", "source": "12", "target": "352", "attributes": { "weight": 2 } }, { "key": "30612", "source": "12", "target": "682", "attributes": { "weight": 1 } }, { "key": "30", "source": "12", "target": "14", "attributes": { "weight": 2 } }, { "key": "30915", "source": "13", "target": "2067", "attributes": { "weight": 1 } }, { "key": "35014", "source": "13", "target": "352", "attributes": { "weight": 1 } }, { "key": "30918", "source": "13", "target": "693", "attributes": { "weight": 1 } }, { "key": "24461", "source": "13", "target": "2506", "attributes": { "weight": 1 } }, { "key": "35012", "source": "13", "target": "169", "attributes": { "weight": 1 } }, { "key": "2347", "source": "13", "target": "682", "attributes": { "weight": 2 } }, { "key": "32", "source": "13", "target": "14", "attributes": { "weight": 5 } }, { "key": "2350", "source": "13", "target": "683", "attributes": { "weight": 1 } }, { "key": "17112", "source": "13", "target": "2102", "attributes": { "weight": 1 } }, { "key": "14785", "source": "13", "target": "319", "attributes": { "weight": 3 } }, { "key": "30929", "source": "13", "target": "25", "attributes": { "weight": 2 } }, { "key": "30926", "source": "13", "target": "479", "attributes": { "weight": 1 } }, { "key": "30924", "source": "13", "target": "189", "attributes": { "weight": 1 } }, { "key": "30925", "source": "13", "target": "3017", "attributes": { "weight": 3 } }, { "key": "24458", "source": "13", "target": "11", "attributes": { "weight": 3 } }, { "key": "30923", "source": "13", "target": "1965", "attributes": { "weight": 3 } }, { "key": "2726", "source": "13", "target": "788", "attributes": { "weight": 2 } }, { "key": "24460", "source": "13", "target": "2505", "attributes": { "weight": 1 } }, { "key": "24457", "source": "13", "target": "681", "attributes": { "weight": 2 } }, { "key": "57", "source": "13", "target": "19", "attributes": { "weight": 3 } }, { "key": "30920", "source": "13", "target": "454", "attributes": { "weight": 1 } }, { "key": "24694", "source": "13", "target": "5", "attributes": { "weight": 2 } }, { "key": "24459", "source": "13", "target": "303", "attributes": { "weight": 1 } }, { "key": "25632", "source": "13", "target": "1780", "attributes": { "weight": 1 } }, { "key": "30922", "source": "13", "target": "18", "attributes": { "weight": 1 } }, { "key": "30919", "source": "13", "target": "242", "attributes": { "weight": 1 } }, { "key": "35141", "source": "13", "target": "12", "attributes": { "weight": 1 } }, { "key": "30914", "source": "13", "target": "164", "attributes": { "weight": 1 } }, { "key": "30921", "source": "13", "target": "168", "attributes": { "weight": 1 } }, { "key": "30917", "source": "13", "target": "358", "attributes": { "weight": 1 } }, { "key": "31", "source": "13", "target": "2", "attributes": { "weight": 2 } }, { "key": "2349", "source": "13", "target": "21", "attributes": { "weight": 1 } }, { "key": "30913", "source": "13", "target": "787", "attributes": { "weight": 1 } }, { "key": "30928", "source": "13", "target": "1967", "attributes": { "weight": 2 } }, { "key": "2348", "source": "13", "target": "8", "attributes": { "weight": 3 } }, { "key": "23790", "source": "13", "target": "244", "attributes": { "weight": 1 } }, { "key": "56", "source": "13", "target": "17", "attributes": { "weight": 1 } }, { "key": "26112", "source": "13", "target": "789", "attributes": { "weight": 4 } }, { "key": "35013", "source": "13", "target": "426", "attributes": { "weight": 1 } }, { "key": "23458", "source": "13", "target": "304", "attributes": { "weight": 2 } }, { "key": "26113", "source": "13", "target": "1988", "attributes": { "weight": 4 } }, { "key": "23791", "source": "13", "target": "1774", "attributes": { "weight": 2 } }, { "key": "35140", "source": "13", "target": "3085", "attributes": { "weight": 1 } }, { "key": "30927", "source": "13", "target": "2507", "attributes": { "weight": 1 } }, { "key": "29905", "source": "13", "target": "1024", "attributes": { "weight": 1 } }, { "key": "2727", "source": "13", "target": "792", "attributes": { "weight": 3 } }, { "key": "33810", "source": "13", "target": "277", "attributes": { "weight": 1 } }, { "key": "30916", "source": "13", "target": "3", "attributes": { "weight": 3 } }, { "key": "32587", "source": "13", "target": "791", "attributes": { "weight": 1 } }, { "key": "31687", "source": "13", "target": "595", "attributes": { "weight": 1 } }, { "key": "35142", "source": "13", "target": "793", "attributes": { "weight": 1 } }, { "key": "37287", "source": "13", "target": "349", "attributes": { "weight": 1 } }, { "key": "35155", "source": "14", "target": "3085", "attributes": { "weight": 1 } }, { "key": "26116", "source": "14", "target": "1988", "attributes": { "weight": 3 } }, { "key": "37296", "source": "14", "target": "3351", "attributes": { "weight": 1 } }, { "key": "26115", "source": "14", "target": "789", "attributes": { "weight": 4 } }, { "key": "35035", "source": "14", "target": "169", "attributes": { "weight": 1 } }, { "key": "2731", "source": "14", "target": "788", "attributes": { "weight": 3 } }, { "key": "32122", "source": "14", "target": "792", "attributes": { "weight": 2 } }, { "key": "2390", "source": "14", "target": "694", "attributes": { "weight": 1 } }, { "key": "37299", "source": "14", "target": "2506", "attributes": { "weight": 1 } }, { "key": "23905", "source": "14", "target": "815", "attributes": { "weight": 1 } }, { "key": "28983", "source": "14", "target": "479", "attributes": { "weight": 2 } }, { "key": "24698", "source": "14", "target": "5", "attributes": { "weight": 2 } }, { "key": "2820", "source": "14", "target": "825", "attributes": { "weight": 1 } }, { "key": "33827", "source": "14", "target": "340", "attributes": { "weight": 1 } }, { "key": "23799", "source": "14", "target": "244", "attributes": { "weight": 2 } }, { "key": "36", "source": "14", "target": "12", "attributes": { "weight": 2 } }, { "key": "37295", "source": "14", "target": "3350", "attributes": { "weight": 1 } }, { "key": "32604", "source": "14", "target": "791", "attributes": { "weight": 1 } }, { "key": "10932", "source": "14", "target": "457", "attributes": { "weight": 2 } }, { "key": "2819", "source": "14", "target": "351", "attributes": { "weight": 1 } }, { "key": "35034", "source": "14", "target": "164", "attributes": { "weight": 1 } }, { "key": "35037", "source": "14", "target": "2670", "attributes": { "weight": 1 } }, { "key": "17114", "source": "14", "target": "2102", "attributes": { "weight": 1 } }, { "key": "37298", "source": "14", "target": "347", "attributes": { "weight": 1 } }, { "key": "1013", "source": "14", "target": "348", "attributes": { "weight": 1 } }, { "key": "31799", "source": "14", "target": "682", "attributes": { "weight": 2 } }, { "key": "21603", "source": "14", "target": "89", "attributes": { "weight": 2 } }, { "key": "11397", "source": "14", "target": "1742", "attributes": { "weight": 1 } }, { "key": "2821", "source": "14", "target": "826", "attributes": { "weight": 1 } }, { "key": "2817", "source": "14", "target": "820", "attributes": { "weight": 1 } }, { "key": "37297", "source": "14", "target": "3179", "attributes": { "weight": 1 } }, { "key": "35038", "source": "14", "target": "352", "attributes": { "weight": 1 } }, { "key": "35036", "source": "14", "target": "426", "attributes": { "weight": 1 } }, { "key": "33826", "source": "14", "target": "3017", "attributes": { "weight": 2 } }, { "key": "35154", "source": "14", "target": "2646", "attributes": { "weight": 1 } }, { "key": "25640", "source": "14", "target": "1780", "attributes": { "weight": 1 } }, { "key": "30329", "source": "14", "target": "693", "attributes": { "weight": 2 } }, { "key": "33823", "source": "14", "target": "2827", "attributes": { "weight": 1 } }, { "key": "2815", "source": "14", "target": "816", "attributes": { "weight": 1 } }, { "key": "33825", "source": "14", "target": "189", "attributes": { "weight": 1 } }, { "key": "31802", "source": "14", "target": "823", "attributes": { "weight": 1 } }, { "key": "33822", "source": "14", "target": "681", "attributes": { "weight": 2 } }, { "key": "33", "source": "14", "target": "7", "attributes": { "weight": 1 } }, { "key": "33819", "source": "14", "target": "358", "attributes": { "weight": 1 } }, { "key": "33818", "source": "14", "target": "442", "attributes": { "weight": 1 } }, { "key": "30946", "source": "14", "target": "3", "attributes": { "weight": 3 } }, { "key": "22372", "source": "14", "target": "794", "attributes": { "weight": 1 } }, { "key": "30947", "source": "14", "target": "304", "attributes": { "weight": 2 } }, { "key": "34", "source": "14", "target": "10", "attributes": { "weight": 1 } }, { "key": "31803", "source": "14", "target": "595", "attributes": { "weight": 1 } }, { "key": "29909", "source": "14", "target": "1024", "attributes": { "weight": 2 } }, { "key": "33820", "source": "14", "target": "452", "attributes": { "weight": 1 } }, { "key": "35", "source": "14", "target": "11", "attributes": { "weight": 2 } }, { "key": "35153", "source": "14", "target": "345", "attributes": { "weight": 1 } }, { "key": "31798", "source": "14", "target": "0", "attributes": { "weight": 2 } }, { "key": "17115", "source": "14", "target": "2104", "attributes": { "weight": 1 } }, { "key": "31801", "source": "14", "target": "9", "attributes": { "weight": 3 } }, { "key": "35156", "source": "14", "target": "793", "attributes": { "weight": 1 } }, { "key": "31800", "source": "14", "target": "8", "attributes": { "weight": 2 } }, { "key": "2816", "source": "14", "target": "817", "attributes": { "weight": 2 } }, { "key": "37", "source": "14", "target": "13", "attributes": { "weight": 5 } }, { "key": "2818", "source": "14", "target": "594", "attributes": { "weight": 1 } }, { "key": "33824", "source": "14", "target": "53", "attributes": { "weight": 1 } }, { "key": "33821", "source": "14", "target": "277", "attributes": { "weight": 1 } }, { "key": "23800", "source": "14", "target": "1774", "attributes": { "weight": 2 } }, { "key": "38", "source": "15", "target": "3", "attributes": { "weight": 1 } }, { "key": "40", "source": "16", "target": "8", "attributes": { "weight": 1 } }, { "key": "39", "source": "16", "target": "3", "attributes": { "weight": 1 } }, { "key": "41", "source": "16", "target": "11", "attributes": { "weight": 2 } }, { "key": "30575", "source": "17", "target": "352", "attributes": { "weight": 1 } }, { "key": "43", "source": "17", "target": "13", "attributes": { "weight": 1 } }, { "key": "42", "source": "17", "target": "19", "attributes": { "weight": 1 } }, { "key": "30823", "source": "17", "target": "3", "attributes": { "weight": 1 } }, { "key": "30889", "source": "18", "target": "13", "attributes": { "weight": 1 } }, { "key": "24421", "source": "18", "target": "2500", "attributes": { "weight": 1 } }, { "key": "44", "source": "18", "target": "19", "attributes": { "weight": 2 } }, { "key": "23437", "source": "18", "target": "303", "attributes": { "weight": 1 } }, { "key": "37223", "source": "18", "target": "2507", "attributes": { "weight": 1 } }, { "key": "24422", "source": "18", "target": "1965", "attributes": { "weight": 1 } }, { "key": "13151", "source": "18", "target": "1906", "attributes": { "weight": 1 } }, { "key": "30888", "source": "18", "target": "3", "attributes": { "weight": 2 } }, { "key": "31607", "source": "18", "target": "595", "attributes": { "weight": 1 } }, { "key": "30583", "source": "19", "target": "2878", "attributes": { "weight": 1 } }, { "key": "30582", "source": "19", "target": "788", "attributes": { "weight": 2 } }, { "key": "2336", "source": "19", "target": "21", "attributes": { "weight": 1 } }, { "key": "26107", "source": "19", "target": "1988", "attributes": { "weight": 1 } }, { "key": "52", "source": "19", "target": "25", "attributes": { "weight": 3 } }, { "key": "30893", "source": "19", "target": "304", "attributes": { "weight": 1 } }, { "key": "45", "source": "19", "target": "17", "attributes": { "weight": 1 } }, { "key": "30584", "source": "19", "target": "1774", "attributes": { "weight": 1 } }, { "key": "30892", "source": "19", "target": "2501", "attributes": { "weight": 1 } }, { "key": "24426", "source": "19", "target": "2503", "attributes": { "weight": 1 } }, { "key": "31609", "source": "19", "target": "1965", "attributes": { "weight": 1 } }, { "key": "24424", "source": "19", "target": "277", "attributes": { "weight": 2 } }, { "key": "30894", "source": "19", "target": "1967", "attributes": { "weight": 1 } }, { "key": "30890", "source": "19", "target": "164", "attributes": { "weight": 1 } }, { "key": "50", "source": "19", "target": "23", "attributes": { "weight": 2 } }, { "key": "34988", "source": "19", "target": "352", "attributes": { "weight": 1 } }, { "key": "48", "source": "19", "target": "22", "attributes": { "weight": 2 } }, { "key": "51", "source": "19", "target": "24", "attributes": { "weight": 3 } }, { "key": "26106", "source": "19", "target": "789", "attributes": { "weight": 1 } }, { "key": "49", "source": "19", "target": "13", "attributes": { "weight": 3 } }, { "key": "24423", "source": "19", "target": "2499", "attributes": { "weight": 1 } }, { "key": "31610", "source": "19", "target": "595", "attributes": { "weight": 1 } }, { "key": "24425", "source": "19", "target": "681", "attributes": { "weight": 2 } }, { "key": "47", "source": "19", "target": "20", "attributes": { "weight": 1 } }, { "key": "23438", "source": "19", "target": "303", "attributes": { "weight": 1 } }, { "key": "30891", "source": "19", "target": "3", "attributes": { "weight": 2 } }, { "key": "24427", "source": "19", "target": "2507", "attributes": { "weight": 1 } }, { "key": "46", "source": "19", "target": "18", "attributes": { "weight": 2 } }, { "key": "53", "source": "20", "target": "19", "attributes": { "weight": 1 } }, { "key": "2345", "source": "21", "target": "683", "attributes": { "weight": 1 } }, { "key": "2344", "source": "21", "target": "681", "attributes": { "weight": 2 } }, { "key": "2343", "source": "21", "target": "19", "attributes": { "weight": 1 } }, { "key": "2342", "source": "21", "target": "3", "attributes": { "weight": 1 } }, { "key": "54", "source": "21", "target": "13", "attributes": { "weight": 2 } }, { "key": "2346", "source": "21", "target": "25", "attributes": { "weight": 2 } }, { "key": "55", "source": "22", "target": "19", "attributes": { "weight": 2 } }, { "key": "58", "source": "23", "target": "19", "attributes": { "weight": 2 } }, { "key": "2355", "source": "24", "target": "25", "attributes": { "weight": 3 } }, { "key": "59", "source": "24", "target": "19", "attributes": { "weight": 3 } }, { "key": "60", "source": "25", "target": "19", "attributes": { "weight": 3 } }, { "key": "2357", "source": "25", "target": "683", "attributes": { "weight": 2 } }, { "key": "29592", "source": "25", "target": "2875", "attributes": { "weight": 2 } }, { "key": "31824", "source": "25", "target": "595", "attributes": { "weight": 1 } }, { "key": "29596", "source": "25", "target": "2879", "attributes": { "weight": 1 } }, { "key": "30633", "source": "25", "target": "304", "attributes": { "weight": 2 } }, { "key": "30629", "source": "25", "target": "277", "attributes": { "weight": 1 } }, { "key": "30967", "source": "25", "target": "3", "attributes": { "weight": 2 } }, { "key": "29595", "source": "25", "target": "2878", "attributes": { "weight": 2 } }, { "key": "29591", "source": "25", "target": "2874", "attributes": { "weight": 2 } }, { "key": "30632", "source": "25", "target": "8", "attributes": { "weight": 1 } }, { "key": "29594", "source": "25", "target": "2877", "attributes": { "weight": 2 } }, { "key": "30635", "source": "25", "target": "352", "attributes": { "weight": 1 } }, { "key": "30631", "source": "25", "target": "681", "attributes": { "weight": 1 } }, { "key": "30634", "source": "25", "target": "2507", "attributes": { "weight": 1 } }, { "key": "29593", "source": "25", "target": "2876", "attributes": { "weight": 2 } }, { "key": "30628", "source": "25", "target": "2500", "attributes": { "weight": 1 } }, { "key": "2356", "source": "25", "target": "21", "attributes": { "weight": 2 } }, { "key": "24468", "source": "25", "target": "2501", "attributes": { "weight": 1 } }, { "key": "30636", "source": "25", "target": "1967", "attributes": { "weight": 2 } }, { "key": "30968", "source": "25", "target": "13", "attributes": { "weight": 2 } }, { "key": "30630", "source": "25", "target": "1965", "attributes": { "weight": 1 } }, { "key": "2358", "source": "25", "target": "24", "attributes": { "weight": 3 } }, { "key": "61", "source": "26", "target": "30", "attributes": { "weight": 2 } }, { "key": "26208", "source": "27", "target": "1149", "attributes": { "weight": 1 } }, { "key": "24028", "source": "27", "target": "1244", "attributes": { "weight": 3 } }, { "key": "37417", "source": "27", "target": "1099", "attributes": { "weight": 1 } }, { "key": "62", "source": "27", "target": "30", "attributes": { "weight": 4 } }, { "key": "63", "source": "27", "target": "32", "attributes": { "weight": 2 } }, { "key": "64", "source": "28", "target": "30", "attributes": { "weight": 2 } }, { "key": "65", "source": "29", "target": "31", "attributes": { "weight": 2 } }, { "key": "14040", "source": "29", "target": "1031", "attributes": { "weight": 1 } }, { "key": "66", "source": "29", "target": "33", "attributes": { "weight": 2 } }, { "key": "26222", "source": "29", "target": "30", "attributes": { "weight": 2 } }, { "key": "35774", "source": "30", "target": "3266", "attributes": { "weight": 1 } }, { "key": "10706", "source": "30", "target": "407", "attributes": { "weight": 1 } }, { "key": "10695", "source": "30", "target": "43", "attributes": { "weight": 2 } }, { "key": "5475", "source": "30", "target": "338", "attributes": { "weight": 5 } }, { "key": "70", "source": "30", "target": "31", "attributes": { "weight": 3 } }, { "key": "9802", "source": "30", "target": "1349", "attributes": { "weight": 3 } }, { "key": "26229", "source": "30", "target": "29", "attributes": { "weight": 2 } }, { "key": "10696", "source": "30", "target": "778", "attributes": { "weight": 2 } }, { "key": "9799", "source": "30", "target": "1149", "attributes": { "weight": 3 } }, { "key": "10698", "source": "30", "target": "108", "attributes": { "weight": 2 } }, { "key": "10116", "source": "30", "target": "369", "attributes": { "weight": 3 } }, { "key": "26231", "source": "30", "target": "32", "attributes": { "weight": 1 } }, { "key": "26228", "source": "30", "target": "392", "attributes": { "weight": 2 } }, { "key": "26224", "source": "30", "target": "2632", "attributes": { "weight": 1 } }, { "key": "14045", "source": "30", "target": "1031", "attributes": { "weight": 1 } }, { "key": "34500", "source": "30", "target": "1047", "attributes": { "weight": 1 } }, { "key": "35776", "source": "30", "target": "3268", "attributes": { "weight": 1 } }, { "key": "68", "source": "30", "target": "27", "attributes": { "weight": 5 } }, { "key": "26230", "source": "30", "target": "1244", "attributes": { "weight": 1 } }, { "key": "10705", "source": "30", "target": "254", "attributes": { "weight": 1 } }, { "key": "35775", "source": "30", "target": "3267", "attributes": { "weight": 1 } }, { "key": "10694", "source": "30", "target": "603", "attributes": { "weight": 1 } }, { "key": "26235", "source": "30", "target": "2639", "attributes": { "weight": 1 } }, { "key": "26225", "source": "30", "target": "2633", "attributes": { "weight": 2 } }, { "key": "10704", "source": "30", "target": "1314", "attributes": { "weight": 1 } }, { "key": "24890", "source": "30", "target": "1457", "attributes": { "weight": 2 } }, { "key": "7337", "source": "30", "target": "1063", "attributes": { "weight": 1 } }, { "key": "26227", "source": "30", "target": "387", "attributes": { "weight": 1 } }, { "key": "35773", "source": "30", "target": "3265", "attributes": { "weight": 1 } }, { "key": "10697", "source": "30", "target": "44", "attributes": { "weight": 1 } }, { "key": "10703", "source": "30", "target": "607", "attributes": { "weight": 2 } }, { "key": "10707", "source": "30", "target": "48", "attributes": { "weight": 4 } }, { "key": "10700", "source": "30", "target": "45", "attributes": { "weight": 2 } }, { "key": "5473", "source": "30", "target": "368", "attributes": { "weight": 3 } }, { "key": "26232", "source": "30", "target": "2637", "attributes": { "weight": 2 } }, { "key": "5476", "source": "30", "target": "371", "attributes": { "weight": 5 } }, { "key": "5477", "source": "30", "target": "601", "attributes": { "weight": 6 } }, { "key": "26236", "source": "30", "target": "2640", "attributes": { "weight": 1 } }, { "key": "9801", "source": "30", "target": "396", "attributes": { "weight": 3 } }, { "key": "26234", "source": "30", "target": "2638", "attributes": { "weight": 1 } }, { "key": "26226", "source": "30", "target": "872", "attributes": { "weight": 1 } }, { "key": "10693", "source": "30", "target": "598", "attributes": { "weight": 1 } }, { "key": "9800", "source": "30", "target": "1099", "attributes": { "weight": 3 } }, { "key": "24089", "source": "30", "target": "471", "attributes": { "weight": 3 } }, { "key": "34501", "source": "30", "target": "1233", "attributes": { "weight": 1 } }, { "key": "10699", "source": "30", "target": "109", "attributes": { "weight": 4 } }, { "key": "69", "source": "30", "target": "28", "attributes": { "weight": 2 } }, { "key": "26233", "source": "30", "target": "372", "attributes": { "weight": 1 } }, { "key": "5474", "source": "30", "target": "370", "attributes": { "weight": 3 } }, { "key": "11173", "source": "30", "target": "220", "attributes": { "weight": 2 } }, { "key": "67", "source": "30", "target": "26", "attributes": { "weight": 2 } }, { "key": "10702", "source": "30", "target": "605", "attributes": { "weight": 1 } }, { "key": "10701", "source": "30", "target": "782", "attributes": { "weight": 1 } }, { "key": "15960", "source": "30", "target": "195", "attributes": { "weight": 1 } }, { "key": "11612", "source": "30", "target": "199", "attributes": { "weight": 2 } }, { "key": "8834", "source": "30", "target": "442", "attributes": { "weight": 2 } }, { "key": "71", "source": "30", "target": "33", "attributes": { "weight": 3 } }, { "key": "72", "source": "31", "target": "29", "attributes": { "weight": 2 } }, { "key": "74", "source": "31", "target": "33", "attributes": { "weight": 1 } }, { "key": "73", "source": "31", "target": "30", "attributes": { "weight": 3 } }, { "key": "75", "source": "32", "target": "27", "attributes": { "weight": 2 } }, { "key": "26244", "source": "32", "target": "30", "attributes": { "weight": 1 } }, { "key": "78", "source": "33", "target": "31", "attributes": { "weight": 1 } }, { "key": "77", "source": "33", "target": "30", "attributes": { "weight": 3 } }, { "key": "76", "source": "33", "target": "29", "attributes": { "weight": 2 } }, { "key": "17739", "source": "34", "target": "136", "attributes": { "weight": 4 } }, { "key": "16416", "source": "34", "target": "39", "attributes": { "weight": 3 } }, { "key": "8250", "source": "34", "target": "442", "attributes": { "weight": 2 } }, { "key": "17738", "source": "34", "target": "40", "attributes": { "weight": 5 } }, { "key": "23233", "source": "34", "target": "133", "attributes": { "weight": 1 } }, { "key": "26041", "source": "34", "target": "163", "attributes": { "weight": 1 } }, { "key": "32291", "source": "34", "target": "791", "attributes": { "weight": 1 } }, { "key": "17068", "source": "34", "target": "138", "attributes": { "weight": 1 } }, { "key": "16415", "source": "34", "target": "38", "attributes": { "weight": 3 } }, { "key": "17066", "source": "34", "target": "35", "attributes": { "weight": 7 } }, { "key": "10381", "source": "34", "target": "225", "attributes": { "weight": 1 } }, { "key": "79", "source": "34", "target": "37", "attributes": { "weight": 1 } }, { "key": "9154", "source": "34", "target": "430", "attributes": { "weight": 1 } }, { "key": "31480", "source": "34", "target": "1125", "attributes": { "weight": 1 } }, { "key": "17067", "source": "34", "target": "134", "attributes": { "weight": 1 } }, { "key": "80", "source": "34", "target": "42", "attributes": { "weight": 7 } }, { "key": "17737", "source": "34", "target": "132", "attributes": { "weight": 2 } }, { "key": "7204", "source": "34", "target": "223", "attributes": { "weight": 4 } }, { "key": "33023", "source": "34", "target": "493", "attributes": { "weight": 1 } }, { "key": "23232", "source": "34", "target": "36", "attributes": { "weight": 2 } }, { "key": "23234", "source": "34", "target": "1544", "attributes": { "weight": 1 } }, { "key": "17069", "source": "35", "target": "34", "attributes": { "weight": 8 } }, { "key": "26042", "source": "35", "target": "163", "attributes": { "weight": 1 } }, { "key": "28875", "source": "35", "target": "2825", "attributes": { "weight": 2 } }, { "key": "23235", "source": "35", "target": "38", "attributes": { "weight": 1 } }, { "key": "81", "source": "35", "target": "42", "attributes": { "weight": 1 } }, { "key": "10947", "source": "35", "target": "452", "attributes": { "weight": 1 } }, { "key": "27797", "source": "35", "target": "339", "attributes": { "weight": 1 } }, { "key": "26384", "source": "35", "target": "454", "attributes": { "weight": 1 } }, { "key": "282", "source": "35", "target": "138", "attributes": { "weight": 4 } }, { "key": "10382", "source": "35", "target": "225", "attributes": { "weight": 1 } }, { "key": "17070", "source": "35", "target": "134", "attributes": { "weight": 3 } }, { "key": "281", "source": "35", "target": "136", "attributes": { "weight": 4 } }, { "key": "17746", "source": "35", "target": "40", "attributes": { "weight": 1 } }, { "key": "280", "source": "35", "target": "39", "attributes": { "weight": 3 } }, { "key": "30969", "source": "35", "target": "638", "attributes": { "weight": 1 } }, { "key": "15430", "source": "35", "target": "370", "attributes": { "weight": 1 } }, { "key": "35734", "source": "35", "target": "1516", "attributes": { "weight": 1 } }, { "key": "17745", "source": "35", "target": "1380", "attributes": { "weight": 1 } }, { "key": "1778", "source": "35", "target": "554", "attributes": { "weight": 4 } }, { "key": "27508", "source": "35", "target": "1520", "attributes": { "weight": 1 } }, { "key": "32861", "source": "35", "target": "470", "attributes": { "weight": 1 } }, { "key": "10791", "source": "35", "target": "1732", "attributes": { "weight": 3 } }, { "key": "32048", "source": "35", "target": "1816", "attributes": { "weight": 1 } }, { "key": "17747", "source": "35", "target": "2176", "attributes": { "weight": 1 } }, { "key": "32292", "source": "35", "target": "791", "attributes": { "weight": 1 } }, { "key": "17325", "source": "35", "target": "358", "attributes": { "weight": 1 } }, { "key": "4263", "source": "35", "target": "468", "attributes": { "weight": 2 } }, { "key": "28874", "source": "35", "target": "2824", "attributes": { "weight": 1 } }, { "key": "25803", "source": "35", "target": "220", "attributes": { "weight": 1 } }, { "key": "23909", "source": "35", "target": "471", "attributes": { "weight": 1 } }, { "key": "26045", "source": "36", "target": "163", "attributes": { "weight": 1 } }, { "key": "15416", "source": "36", "target": "132", "attributes": { "weight": 2 } }, { "key": "8460", "source": "36", "target": "442", "attributes": { "weight": 1 } }, { "key": "82", "source": "36", "target": "34", "attributes": { "weight": 3 } }, { "key": "33027", "source": "36", "target": "493", "attributes": { "weight": 1 } }, { "key": "15417", "source": "36", "target": "38", "attributes": { "weight": 3 } }, { "key": "32862", "source": "36", "target": "470", "attributes": { "weight": 1 } }, { "key": "9228", "source": "36", "target": "430", "attributes": { "weight": 1 } }, { "key": "84", "source": "36", "target": "42", "attributes": { "weight": 3 } }, { "key": "17822", "source": "36", "target": "40", "attributes": { "weight": 1 } }, { "key": "26178", "source": "36", "target": "1556", "attributes": { "weight": 1 } }, { "key": "10398", "source": "36", "target": "225", "attributes": { "weight": 1 } }, { "key": "37481", "source": "36", "target": "1125", "attributes": { "weight": 1 } }, { "key": "17821", "source": "36", "target": "1380", "attributes": { "weight": 2 } }, { "key": "83", "source": "36", "target": "39", "attributes": { "weight": 5 } }, { "key": "15418", "source": "36", "target": "136", "attributes": { "weight": 1 } }, { "key": "85", "source": "37", "target": "34", "attributes": { "weight": 1 } }, { "key": "86", "source": "37", "target": "42", "attributes": { "weight": 1 } }, { "key": "15420", "source": "38", "target": "36", "attributes": { "weight": 3 } }, { "key": "7241", "source": "38", "target": "34", "attributes": { "weight": 8 } }, { "key": "16418", "source": "38", "target": "133", "attributes": { "weight": 4 } }, { "key": "17840", "source": "38", "target": "41", "attributes": { "weight": 1 } }, { "key": "16417", "source": "38", "target": "39", "attributes": { "weight": 2 } }, { "key": "23237", "source": "38", "target": "35", "attributes": { "weight": 1 } }, { "key": "17838", "source": "38", "target": "1516", "attributes": { "weight": 1 } }, { "key": "26047", "source": "38", "target": "163", "attributes": { "weight": 1 } }, { "key": "87", "source": "38", "target": "40", "attributes": { "weight": 3 } }, { "key": "88", "source": "38", "target": "42", "attributes": { "weight": 1 } }, { "key": "26181", "source": "38", "target": "1524", "attributes": { "weight": 3 } }, { "key": "12871", "source": "38", "target": "1893", "attributes": { "weight": 1 } }, { "key": "15421", "source": "38", "target": "1544", "attributes": { "weight": 3 } }, { "key": "12872", "source": "38", "target": "1565", "attributes": { "weight": 1 } }, { "key": "10476", "source": "38", "target": "136", "attributes": { "weight": 2 } }, { "key": "8664", "source": "38", "target": "442", "attributes": { "weight": 1 } }, { "key": "17839", "source": "38", "target": "1380", "attributes": { "weight": 1 } }, { "key": "26182", "source": "38", "target": "1559", "attributes": { "weight": 4 } }, { "key": "17354", "source": "39", "target": "358", "attributes": { "weight": 1 } }, { "key": "24033", "source": "39", "target": "130", "attributes": { "weight": 2 } }, { "key": "28657", "source": "39", "target": "1711", "attributes": { "weight": 1 } }, { "key": "288", "source": "39", "target": "35", "attributes": { "weight": 3 } }, { "key": "7265", "source": "39", "target": "132", "attributes": { "weight": 8 } }, { "key": "90", "source": "39", "target": "42", "attributes": { "weight": 1 } }, { "key": "10478", "source": "39", "target": "225", "attributes": { "weight": 1 } }, { "key": "291", "source": "39", "target": "134", "attributes": { "weight": 2 } }, { "key": "32337", "source": "39", "target": "791", "attributes": { "weight": 1 } }, { "key": "7264", "source": "39", "target": "223", "attributes": { "weight": 5 } }, { "key": "31481", "source": "39", "target": "1125", "attributes": { "weight": 1 } }, { "key": "290", "source": "39", "target": "133", "attributes": { "weight": 1 } }, { "key": "30987", "source": "39", "target": "1232", "attributes": { "weight": 3 } }, { "key": "30988", "source": "39", "target": "638", "attributes": { "weight": 3 } }, { "key": "16423", "source": "39", "target": "1710", "attributes": { "weight": 2 } }, { "key": "8682", "source": "39", "target": "442", "attributes": { "weight": 2 } }, { "key": "293", "source": "39", "target": "137", "attributes": { "weight": 2 } }, { "key": "16420", "source": "39", "target": "34", "attributes": { "weight": 3 } }, { "key": "16421", "source": "39", "target": "38", "attributes": { "weight": 2 } }, { "key": "9261", "source": "39", "target": "430", "attributes": { "weight": 1 } }, { "key": "16422", "source": "39", "target": "1556", "attributes": { "weight": 2 } }, { "key": "4935", "source": "39", "target": "54", "attributes": { "weight": 3 } }, { "key": "89", "source": "39", "target": "36", "attributes": { "weight": 5 } }, { "key": "33042", "source": "39", "target": "493", "attributes": { "weight": 1 } }, { "key": "24034", "source": "39", "target": "471", "attributes": { "weight": 2 } }, { "key": "15647", "source": "39", "target": "370", "attributes": { "weight": 1 } }, { "key": "292", "source": "39", "target": "136", "attributes": { "weight": 1 } }, { "key": "289", "source": "39", "target": "131", "attributes": { "weight": 4 } }, { "key": "16424", "source": "39", "target": "2053", "attributes": { "weight": 1 } }, { "key": "24340", "source": "39", "target": "473", "attributes": { "weight": 1 } }, { "key": "32871", "source": "39", "target": "470", "attributes": { "weight": 1 } }, { "key": "17921", "source": "40", "target": "38", "attributes": { "weight": 2 } }, { "key": "17916", "source": "40", "target": "34", "attributes": { "weight": 2 } }, { "key": "17922", "source": "40", "target": "133", "attributes": { "weight": 1 } }, { "key": "91", "source": "40", "target": "42", "attributes": { "weight": 2 } }, { "key": "17920", "source": "40", "target": "132", "attributes": { "weight": 1 } }, { "key": "17917", "source": "40", "target": "1516", "attributes": { "weight": 1 } }, { "key": "10501", "source": "40", "target": "35", "attributes": { "weight": 2 } }, { "key": "17923", "source": "40", "target": "108", "attributes": { "weight": 1 } }, { "key": "26613", "source": "40", "target": "223", "attributes": { "weight": 3 } }, { "key": "8825", "source": "40", "target": "442", "attributes": { "weight": 1 } }, { "key": "17924", "source": "40", "target": "1544", "attributes": { "weight": 1 } }, { "key": "17919", "source": "40", "target": "36", "attributes": { "weight": 1 } }, { "key": "17925", "source": "40", "target": "136", "attributes": { "weight": 1 } }, { "key": "17918", "source": "40", "target": "1380", "attributes": { "weight": 1 } }, { "key": "10522", "source": "41", "target": "225", "attributes": { "weight": 1 } }, { "key": "17959", "source": "41", "target": "38", "attributes": { "weight": 1 } }, { "key": "17958", "source": "41", "target": "1380", "attributes": { "weight": 1 } }, { "key": "8958", "source": "41", "target": "442", "attributes": { "weight": 3 } }, { "key": "17957", "source": "41", "target": "1516", "attributes": { "weight": 1 } }, { "key": "92", "source": "41", "target": "42", "attributes": { "weight": 8 } }, { "key": "17960", "source": "41", "target": "1555", "attributes": { "weight": 1 } }, { "key": "9319", "source": "41", "target": "430", "attributes": { "weight": 1 } }, { "key": "100", "source": "42", "target": "41", "attributes": { "weight": 7 } }, { "key": "7371", "source": "42", "target": "223", "attributes": { "weight": 4 } }, { "key": "94", "source": "42", "target": "35", "attributes": { "weight": 1 } }, { "key": "97", "source": "42", "target": "38", "attributes": { "weight": 1 } }, { "key": "93", "source": "42", "target": "34", "attributes": { "weight": 7 } }, { "key": "99", "source": "42", "target": "40", "attributes": { "weight": 2 } }, { "key": "95", "source": "42", "target": "36", "attributes": { "weight": 3 } }, { "key": "96", "source": "42", "target": "37", "attributes": { "weight": 1 } }, { "key": "9352", "source": "42", "target": "430", "attributes": { "weight": 1 } }, { "key": "9009", "source": "42", "target": "442", "attributes": { "weight": 1 } }, { "key": "98", "source": "42", "target": "39", "attributes": { "weight": 1 } }, { "key": "33071", "source": "42", "target": "493", "attributes": { "weight": 1 } }, { "key": "10537", "source": "42", "target": "225", "attributes": { "weight": 1 } }, { "key": "17965", "source": "42", "target": "1380", "attributes": { "weight": 1 } }, { "key": "32586", "source": "42", "target": "791", "attributes": { "weight": 1 } }, { "key": "10634", "source": "43", "target": "372", "attributes": { "weight": 2 } }, { "key": "4383", "source": "43", "target": "371", "attributes": { "weight": 5 } }, { "key": "10642", "source": "43", "target": "1731", "attributes": { "weight": 2 } }, { "key": "10606", "source": "43", "target": "1719", "attributes": { "weight": 2 } }, { "key": "10599", "source": "43", "target": "1715", "attributes": { "weight": 1 } }, { "key": "10633", "source": "43", "target": "1031", "attributes": { "weight": 2 } }, { "key": "10629", "source": "43", "target": "1724", "attributes": { "weight": 1 } }, { "key": "10626", "source": "43", "target": "208", "attributes": { "weight": 3 } }, { "key": "10624", "source": "43", "target": "1099", "attributes": { "weight": 1 } }, { "key": "10630", "source": "43", "target": "1725", "attributes": { "weight": 2 } }, { "key": "10636", "source": "43", "target": "1314", "attributes": { "weight": 1 } }, { "key": "10635", "source": "43", "target": "1728", "attributes": { "weight": 1 } }, { "key": "10641", "source": "43", "target": "1729", "attributes": { "weight": 3 } }, { "key": "10602", "source": "43", "target": "1717", "attributes": { "weight": 3 } }, { "key": "10621", "source": "43", "target": "370", "attributes": { "weight": 4 } }, { "key": "10604", "source": "43", "target": "44", "attributes": { "weight": 3 } }, { "key": "10600", "source": "43", "target": "1716", "attributes": { "weight": 3 } }, { "key": "3546", "source": "43", "target": "1020", "attributes": { "weight": 3 } }, { "key": "10620", "source": "43", "target": "1722", "attributes": { "weight": 2 } }, { "key": "10640", "source": "43", "target": "961", "attributes": { "weight": 1 } }, { "key": "3541", "source": "43", "target": "1013", "attributes": { "weight": 2 } }, { "key": "3545", "source": "43", "target": "1019", "attributes": { "weight": 1 } }, { "key": "3540", "source": "43", "target": "1012", "attributes": { "weight": 2 } }, { "key": "10639", "source": "43", "target": "407", "attributes": { "weight": 1 } }, { "key": "102", "source": "43", "target": "48", "attributes": { "weight": 4 } }, { "key": "3532", "source": "43", "target": "997", "attributes": { "weight": 2 } }, { "key": "10598", "source": "43", "target": "236", "attributes": { "weight": 2 } }, { "key": "10611", "source": "43", "target": "1721", "attributes": { "weight": 2 } }, { "key": "10061", "source": "43", "target": "369", "attributes": { "weight": 2 } }, { "key": "10631", "source": "43", "target": "1726", "attributes": { "weight": 3 } }, { "key": "10603", "source": "43", "target": "778", "attributes": { "weight": 4 } }, { "key": "10613", "source": "43", "target": "454", "attributes": { "weight": 2 } }, { "key": "10609", "source": "43", "target": "1720", "attributes": { "weight": 1 } }, { "key": "10608", "source": "43", "target": "238", "attributes": { "weight": 1 } }, { "key": "3547", "source": "43", "target": "1021", "attributes": { "weight": 1 } }, { "key": "1083", "source": "43", "target": "396", "attributes": { "weight": 4 } }, { "key": "10610", "source": "43", "target": "1047", "attributes": { "weight": 2 } }, { "key": "10616", "source": "43", "target": "391", "attributes": { "weight": 1 } }, { "key": "4382", "source": "43", "target": "368", "attributes": { "weight": 3 } }, { "key": "8470", "source": "43", "target": "442", "attributes": { "weight": 1 } }, { "key": "3543", "source": "43", "target": "1016", "attributes": { "weight": 2 } }, { "key": "10632", "source": "43", "target": "1727", "attributes": { "weight": 1 } }, { "key": "10612", "source": "43", "target": "199", "attributes": { "weight": 4 } }, { "key": "10617", "source": "43", "target": "392", "attributes": { "weight": 3 } }, { "key": "10607", "source": "43", "target": "387", "attributes": { "weight": 2 } }, { "key": "3530", "source": "43", "target": "994", "attributes": { "weight": 1 } }, { "key": "7221", "source": "43", "target": "1063", "attributes": { "weight": 2 } }, { "key": "101", "source": "43", "target": "45", "attributes": { "weight": 2 } }, { "key": "10638", "source": "43", "target": "254", "attributes": { "weight": 1 } }, { "key": "3537", "source": "43", "target": "1008", "attributes": { "weight": 1 } }, { "key": "3536", "source": "43", "target": "1002", "attributes": { "weight": 1 } }, { "key": "10618", "source": "43", "target": "1232", "attributes": { "weight": 2 } }, { "key": "10614", "source": "43", "target": "108", "attributes": { "weight": 1 } }, { "key": "15539", "source": "43", "target": "195", "attributes": { "weight": 1 } }, { "key": "10615", "source": "43", "target": "109", "attributes": { "weight": 3 } }, { "key": "10601", "source": "43", "target": "130", "attributes": { "weight": 1 } }, { "key": "3534", "source": "43", "target": "999", "attributes": { "weight": 1 } }, { "key": "3542", "source": "43", "target": "1015", "attributes": { "weight": 1 } }, { "key": "10627", "source": "43", "target": "782", "attributes": { "weight": 3 } }, { "key": "3539", "source": "43", "target": "1011", "attributes": { "weight": 2 } }, { "key": "10597", "source": "43", "target": "993", "attributes": { "weight": 3 } }, { "key": "3535", "source": "43", "target": "1000", "attributes": { "weight": 2 } }, { "key": "10623", "source": "43", "target": "30", "attributes": { "weight": 2 } }, { "key": "10622", "source": "43", "target": "1004", "attributes": { "weight": 3 } }, { "key": "3531", "source": "43", "target": "995", "attributes": { "weight": 2 } }, { "key": "3533", "source": "43", "target": "998", "attributes": { "weight": 2 } }, { "key": "10619", "source": "43", "target": "1233", "attributes": { "weight": 2 } }, { "key": "3538", "source": "43", "target": "1010", "attributes": { "weight": 2 } }, { "key": "10637", "source": "43", "target": "601", "attributes": { "weight": 2 } }, { "key": "3544", "source": "43", "target": "1017", "attributes": { "weight": 1 } }, { "key": "10605", "source": "43", "target": "1718", "attributes": { "weight": 3 } }, { "key": "10628", "source": "43", "target": "1723", "attributes": { "weight": 2 } }, { "key": "10625", "source": "43", "target": "471", "attributes": { "weight": 2 } }, { "key": "3548", "source": "43", "target": "1022", "attributes": { "weight": 3 } }, { "key": "10651", "source": "44", "target": "782", "attributes": { "weight": 1 } }, { "key": "103", "source": "44", "target": "45", "attributes": { "weight": 2 } }, { "key": "3553", "source": "44", "target": "1020", "attributes": { "weight": 1 } }, { "key": "10646", "source": "44", "target": "1716", "attributes": { "weight": 1 } }, { "key": "10649", "source": "44", "target": "30", "attributes": { "weight": 1 } }, { "key": "10653", "source": "44", "target": "1314", "attributes": { "weight": 1 } }, { "key": "10650", "source": "44", "target": "471", "attributes": { "weight": 1 } }, { "key": "10647", "source": "44", "target": "43", "attributes": { "weight": 6 } }, { "key": "3551", "source": "44", "target": "1001", "attributes": { "weight": 2 } }, { "key": "14021", "source": "44", "target": "993", "attributes": { "weight": 2 } }, { "key": "17703", "source": "44", "target": "2154", "attributes": { "weight": 1 } }, { "key": "10648", "source": "44", "target": "1718", "attributes": { "weight": 1 } }, { "key": "14022", "source": "44", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10654", "source": "44", "target": "1730", "attributes": { "weight": 1 } }, { "key": "3552", "source": "44", "target": "1013", "attributes": { "weight": 1 } }, { "key": "10652", "source": "44", "target": "1012", "attributes": { "weight": 1 } }, { "key": "26203", "source": "44", "target": "48", "attributes": { "weight": 1 } }, { "key": "4483", "source": "44", "target": "371", "attributes": { "weight": 5 } }, { "key": "10679", "source": "45", "target": "1314", "attributes": { "weight": 1 } }, { "key": "5087", "source": "45", "target": "371", "attributes": { "weight": 2 } }, { "key": "26213", "source": "45", "target": "778", "attributes": { "weight": 1 } }, { "key": "26215", "source": "45", "target": "601", "attributes": { "weight": 1 } }, { "key": "14035", "source": "45", "target": "1031", "attributes": { "weight": 2 } }, { "key": "104", "source": "45", "target": "43", "attributes": { "weight": 2 } }, { "key": "5086", "source": "45", "target": "370", "attributes": { "weight": 2 } }, { "key": "17713", "source": "45", "target": "2154", "attributes": { "weight": 1 } }, { "key": "17712", "source": "45", "target": "2153", "attributes": { "weight": 1 } }, { "key": "17716", "source": "45", "target": "2159", "attributes": { "weight": 1 } }, { "key": "8759", "source": "45", "target": "220", "attributes": { "weight": 2 } }, { "key": "107", "source": "45", "target": "48", "attributes": { "weight": 5 } }, { "key": "17715", "source": "45", "target": "2158", "attributes": { "weight": 1 } }, { "key": "17714", "source": "45", "target": "2156", "attributes": { "weight": 2 } }, { "key": "26214", "source": "45", "target": "369", "attributes": { "weight": 1 } }, { "key": "10678", "source": "45", "target": "30", "attributes": { "weight": 2 } }, { "key": "24064", "source": "45", "target": "471", "attributes": { "weight": 2 } }, { "key": "106", "source": "45", "target": "47", "attributes": { "weight": 4 } }, { "key": "105", "source": "45", "target": "44", "attributes": { "weight": 2 } }, { "key": "17724", "source": "46", "target": "2159", "attributes": { "weight": 1 } }, { "key": "108", "source": "46", "target": "48", "attributes": { "weight": 2 } }, { "key": "109", "source": "47", "target": "45", "attributes": { "weight": 4 } }, { "key": "34836", "source": "48", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9931", "source": "48", "target": "396", "attributes": { "weight": 1 } }, { "key": "17728", "source": "48", "target": "2155", "attributes": { "weight": 1 } }, { "key": "110", "source": "48", "target": "43", "attributes": { "weight": 4 } }, { "key": "14127", "source": "48", "target": "1031", "attributes": { "weight": 1 } }, { "key": "112", "source": "48", "target": "46", "attributes": { "weight": 2 } }, { "key": "24259", "source": "48", "target": "471", "attributes": { "weight": 2 } }, { "key": "17726", "source": "48", "target": "2153", "attributes": { "weight": 2 } }, { "key": "17729", "source": "48", "target": "109", "attributes": { "weight": 1 } }, { "key": "10787", "source": "48", "target": "30", "attributes": { "weight": 3 } }, { "key": "17734", "source": "48", "target": "3415", "attributes": { "weight": 1 } }, { "key": "17733", "source": "48", "target": "2160", "attributes": { "weight": 1 } }, { "key": "17727", "source": "48", "target": "2154", "attributes": { "weight": 1 } }, { "key": "17730", "source": "48", "target": "392", "attributes": { "weight": 1 } }, { "key": "16392", "source": "48", "target": "195", "attributes": { "weight": 1 } }, { "key": "17732", "source": "48", "target": "2158", "attributes": { "weight": 1 } }, { "key": "111", "source": "48", "target": "45", "attributes": { "weight": 8 } }, { "key": "26272", "source": "48", "target": "44", "attributes": { "weight": 1 } }, { "key": "6489", "source": "48", "target": "371", "attributes": { "weight": 2 } }, { "key": "10788", "source": "48", "target": "1314", "attributes": { "weight": 1 } }, { "key": "26273", "source": "48", "target": "782", "attributes": { "weight": 1 } }, { "key": "17735", "source": "48", "target": "2162", "attributes": { "weight": 1 } }, { "key": "33198", "source": "49", "target": "52", "attributes": { "weight": 1 } }, { "key": "11006", "source": "49", "target": "469", "attributes": { "weight": 1 } }, { "key": "33197", "source": "49", "target": "425", "attributes": { "weight": 1 } }, { "key": "33199", "source": "49", "target": "473", "attributes": { "weight": 1 } }, { "key": "113", "source": "49", "target": "57", "attributes": { "weight": 3 } }, { "key": "19285", "source": "49", "target": "492", "attributes": { "weight": 1 } }, { "key": "19284", "source": "49", "target": "489", "attributes": { "weight": 1 } }, { "key": "19276", "source": "49", "target": "221", "attributes": { "weight": 1 } }, { "key": "19286", "source": "49", "target": "235", "attributes": { "weight": 1 } }, { "key": "19277", "source": "49", "target": "222", "attributes": { "weight": 1 } }, { "key": "19282", "source": "49", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19283", "source": "49", "target": "480", "attributes": { "weight": 1 } }, { "key": "6610", "source": "49", "target": "189", "attributes": { "weight": 2 } }, { "key": "19278", "source": "49", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19280", "source": "49", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19281", "source": "49", "target": "2248", "attributes": { "weight": 1 } }, { "key": "19279", "source": "49", "target": "2244", "attributes": { "weight": 1 } }, { "key": "11005", "source": "49", "target": "452", "attributes": { "weight": 1 } }, { "key": "1235", "source": "49", "target": "490", "attributes": { "weight": 1 } }, { "key": "19421", "source": "50", "target": "2245", "attributes": { "weight": 1 } }, { "key": "35291", "source": "50", "target": "477", "attributes": { "weight": 1 } }, { "key": "114", "source": "50", "target": "57", "attributes": { "weight": 1 } }, { "key": "4105", "source": "50", "target": "1088", "attributes": { "weight": 2 } }, { "key": "4104", "source": "50", "target": "474", "attributes": { "weight": 2 } }, { "key": "19424", "source": "50", "target": "489", "attributes": { "weight": 1 } }, { "key": "33233", "source": "50", "target": "2258", "attributes": { "weight": 1 } }, { "key": "35283", "source": "50", "target": "429", "attributes": { "weight": 1 } }, { "key": "35284", "source": "50", "target": "1107", "attributes": { "weight": 1 } }, { "key": "8467", "source": "50", "target": "442", "attributes": { "weight": 2 } }, { "key": "19423", "source": "50", "target": "1744", "attributes": { "weight": 1 } }, { "key": "10400", "source": "50", "target": "482", "attributes": { "weight": 2 } }, { "key": "19419", "source": "50", "target": "222", "attributes": { "weight": 1 } }, { "key": "9234", "source": "50", "target": "430", "attributes": { "weight": 1 } }, { "key": "35289", "source": "50", "target": "189", "attributes": { "weight": 1 } }, { "key": "35286", "source": "50", "target": "444", "attributes": { "weight": 1 } }, { "key": "13841", "source": "50", "target": "1130", "attributes": { "weight": 1 } }, { "key": "4103", "source": "50", "target": "228", "attributes": { "weight": 2 } }, { "key": "8466", "source": "50", "target": "220", "attributes": { "weight": 3 } }, { "key": "11850", "source": "50", "target": "135", "attributes": { "weight": 2 } }, { "key": "19420", "source": "50", "target": "2244", "attributes": { "weight": 1 } }, { "key": "35285", "source": "50", "target": "436", "attributes": { "weight": 1 } }, { "key": "24015", "source": "50", "target": "471", "attributes": { "weight": 1 } }, { "key": "24014", "source": "50", "target": "130", "attributes": { "weight": 2 } }, { "key": "35290", "source": "50", "target": "191", "attributes": { "weight": 1 } }, { "key": "8468", "source": "50", "target": "1087", "attributes": { "weight": 2 } }, { "key": "35293", "source": "50", "target": "494", "attributes": { "weight": 1 } }, { "key": "8469", "source": "50", "target": "1125", "attributes": { "weight": 1 } }, { "key": "33234", "source": "50", "target": "473", "attributes": { "weight": 1 } }, { "key": "3924", "source": "50", "target": "458", "attributes": { "weight": 1 } }, { "key": "13840", "source": "50", "target": "1109", "attributes": { "weight": 1 } }, { "key": "35288", "source": "50", "target": "1117", "attributes": { "weight": 1 } }, { "key": "4102", "source": "50", "target": "1121", "attributes": { "weight": 2 } }, { "key": "19425", "source": "50", "target": "1374", "attributes": { "weight": 1 } }, { "key": "18098", "source": "50", "target": "52", "attributes": { "weight": 2 } }, { "key": "32953", "source": "50", "target": "154", "attributes": { "weight": 1 } }, { "key": "33230", "source": "50", "target": "51", "attributes": { "weight": 1 } }, { "key": "35292", "source": "50", "target": "56", "attributes": { "weight": 1 } }, { "key": "19422", "source": "50", "target": "450", "attributes": { "weight": 1 } }, { "key": "24016", "source": "50", "target": "231", "attributes": { "weight": 3 } }, { "key": "35287", "source": "50", "target": "1116", "attributes": { "weight": 1 } }, { "key": "17146", "source": "50", "target": "449", "attributes": { "weight": 1 } }, { "key": "33231", "source": "50", "target": "223", "attributes": { "weight": 1 } }, { "key": "4101", "source": "50", "target": "452", "attributes": { "weight": 3 } }, { "key": "4106", "source": "50", "target": "1131", "attributes": { "weight": 2 } }, { "key": "32863", "source": "50", "target": "470", "attributes": { "weight": 2 } }, { "key": "10399", "source": "50", "target": "225", "attributes": { "weight": 1 } }, { "key": "33232", "source": "50", "target": "425", "attributes": { "weight": 1 } }, { "key": "33029", "source": "50", "target": "493", "attributes": { "weight": 1 } }, { "key": "19504", "source": "51", "target": "231", "attributes": { "weight": 5 } }, { "key": "33250", "source": "51", "target": "1738", "attributes": { "weight": 1 } }, { "key": "12513", "source": "51", "target": "188", "attributes": { "weight": 1 } }, { "key": "12515", "source": "51", "target": "473", "attributes": { "weight": 1 } }, { "key": "33255", "source": "51", "target": "474", "attributes": { "weight": 1 } }, { "key": "12512", "source": "51", "target": "454", "attributes": { "weight": 1 } }, { "key": "33251", "source": "51", "target": "464", "attributes": { "weight": 1 } }, { "key": "31508", "source": "51", "target": "3057", "attributes": { "weight": 1 } }, { "key": "19494", "source": "51", "target": "1533", "attributes": { "weight": 1 } }, { "key": "19505", "source": "51", "target": "478", "attributes": { "weight": 1 } }, { "key": "19498", "source": "51", "target": "459", "attributes": { "weight": 1 } }, { "key": "32700", "source": "51", "target": "443", "attributes": { "weight": 2 } }, { "key": "19486", "source": "51", "target": "1353", "attributes": { "weight": 2 } }, { "key": "33246", "source": "51", "target": "1219", "attributes": { "weight": 1 } }, { "key": "31394", "source": "51", "target": "223", "attributes": { "weight": 1 } }, { "key": "19496", "source": "51", "target": "1360", "attributes": { "weight": 1 } }, { "key": "19501", "source": "51", "target": "54", "attributes": { "weight": 3 } }, { "key": "19510", "source": "51", "target": "1375", "attributes": { "weight": 1 } }, { "key": "19511", "source": "51", "target": "2276", "attributes": { "weight": 1 } }, { "key": "33258", "source": "51", "target": "480", "attributes": { "weight": 1 } }, { "key": "33243", "source": "51", "target": "450", "attributes": { "weight": 1 } }, { "key": "19509", "source": "51", "target": "235", "attributes": { "weight": 1 } }, { "key": "19502", "source": "51", "target": "1367", "attributes": { "weight": 2 } }, { "key": "19490", "source": "51", "target": "222", "attributes": { "weight": 1 } }, { "key": "17152", "source": "51", "target": "2108", "attributes": { "weight": 1 } }, { "key": "19495", "source": "51", "target": "451", "attributes": { "weight": 2 } }, { "key": "33249", "source": "51", "target": "1834", "attributes": { "weight": 1 } }, { "key": "11025", "source": "51", "target": "220", "attributes": { "weight": 3 } }, { "key": "19499", "source": "51", "target": "2254", "attributes": { "weight": 1 } }, { "key": "19500", "source": "51", "target": "1546", "attributes": { "weight": 1 } }, { "key": "17153", "source": "51", "target": "2111", "attributes": { "weight": 1 } }, { "key": "31189", "source": "51", "target": "1362", "attributes": { "weight": 1 } }, { "key": "33260", "source": "51", "target": "672", "attributes": { "weight": 1 } }, { "key": "33240", "source": "51", "target": "50", "attributes": { "weight": 1 } }, { "key": "19492", "source": "51", "target": "2242", "attributes": { "weight": 1 } }, { "key": "17151", "source": "51", "target": "449", "attributes": { "weight": 2 } }, { "key": "33256", "source": "51", "target": "1282", "attributes": { "weight": 1 } }, { "key": "115", "source": "51", "target": "57", "attributes": { "weight": 1 } }, { "key": "32703", "source": "51", "target": "1812", "attributes": { "weight": 2 } }, { "key": "19487", "source": "51", "target": "429", "attributes": { "weight": 2 } }, { "key": "12514", "source": "51", "target": "189", "attributes": { "weight": 1 } }, { "key": "19506", "source": "51", "target": "2269", "attributes": { "weight": 2 } }, { "key": "19507", "source": "51", "target": "2270", "attributes": { "weight": 1 } }, { "key": "33253", "source": "51", "target": "471", "attributes": { "weight": 1 } }, { "key": "32702", "source": "51", "target": "1366", "attributes": { "weight": 1 } }, { "key": "33239", "source": "51", "target": "858", "attributes": { "weight": 1 } }, { "key": "19512", "source": "51", "target": "498", "attributes": { "weight": 1 } }, { "key": "33244", "source": "51", "target": "452", "attributes": { "weight": 1 } }, { "key": "33259", "source": "51", "target": "482", "attributes": { "weight": 1 } }, { "key": "33248", "source": "51", "target": "458", "attributes": { "weight": 1 } }, { "key": "33241", "source": "51", "target": "442", "attributes": { "weight": 1 } }, { "key": "33252", "source": "51", "target": "470", "attributes": { "weight": 1 } }, { "key": "19508", "source": "51", "target": "56", "attributes": { "weight": 5 } }, { "key": "19489", "source": "51", "target": "221", "attributes": { "weight": 1 } }, { "key": "19503", "source": "51", "target": "1838", "attributes": { "weight": 1 } }, { "key": "19497", "source": "51", "target": "2251", "attributes": { "weight": 1 } }, { "key": "32199", "source": "51", "target": "1368", "attributes": { "weight": 2 } }, { "key": "33247", "source": "51", "target": "52", "attributes": { "weight": 1 } }, { "key": "33238", "source": "51", "target": "2645", "attributes": { "weight": 1 } }, { "key": "31509", "source": "51", "target": "233", "attributes": { "weight": 2 } }, { "key": "19488", "source": "51", "target": "1354", "attributes": { "weight": 3 } }, { "key": "33237", "source": "51", "target": "130", "attributes": { "weight": 1 } }, { "key": "33257", "source": "51", "target": "479", "attributes": { "weight": 1 } }, { "key": "19491", "source": "51", "target": "440", "attributes": { "weight": 1 } }, { "key": "32701", "source": "51", "target": "1358", "attributes": { "weight": 2 } }, { "key": "22867", "source": "51", "target": "1359", "attributes": { "weight": 1 } }, { "key": "19493", "source": "51", "target": "1070", "attributes": { "weight": 1 } }, { "key": "32198", "source": "51", "target": "860", "attributes": { "weight": 3 } }, { "key": "32197", "source": "51", "target": "424", "attributes": { "weight": 1 } }, { "key": "33254", "source": "51", "target": "2094", "attributes": { "weight": 1 } }, { "key": "12511", "source": "51", "target": "1141", "attributes": { "weight": 1 } }, { "key": "33242", "source": "51", "target": "674", "attributes": { "weight": 1 } }, { "key": "33245", "source": "51", "target": "1357", "attributes": { "weight": 1 } }, { "key": "18105", "source": "52", "target": "490", "attributes": { "weight": 1 } }, { "key": "33401", "source": "52", "target": "488", "attributes": { "weight": 1 } }, { "key": "27240", "source": "52", "target": "429", "attributes": { "weight": 2 } }, { "key": "16812", "source": "52", "target": "70", "attributes": { "weight": 1 } }, { "key": "11141", "source": "52", "target": "452", "attributes": { "weight": 4 } }, { "key": "33402", "source": "52", "target": "1374", "attributes": { "weight": 1 } }, { "key": "33382", "source": "52", "target": "51", "attributes": { "weight": 1 } }, { "key": "25917", "source": "52", "target": "1367", "attributes": { "weight": 1 } }, { "key": "33404", "source": "52", "target": "56", "attributes": { "weight": 1 } }, { "key": "14202", "source": "52", "target": "1046", "attributes": { "weight": 2 } }, { "key": "27245", "source": "52", "target": "1047", "attributes": { "weight": 2 } }, { "key": "31888", "source": "52", "target": "1060", "attributes": { "weight": 1 } }, { "key": "13074", "source": "52", "target": "304", "attributes": { "weight": 1 } }, { "key": "25865", "source": "52", "target": "220", "attributes": { "weight": 2 } }, { "key": "1408", "source": "52", "target": "188", "attributes": { "weight": 1 } }, { "key": "27241", "source": "52", "target": "130", "attributes": { "weight": 2 } }, { "key": "33377", "source": "52", "target": "1107", "attributes": { "weight": 1 } }, { "key": "27251", "source": "52", "target": "474", "attributes": { "weight": 2 } }, { "key": "8757", "source": "52", "target": "442", "attributes": { "weight": 2 } }, { "key": "30706", "source": "52", "target": "889", "attributes": { "weight": 1 } }, { "key": "23424", "source": "52", "target": "223", "attributes": { "weight": 4 } }, { "key": "13072", "source": "52", "target": "59", "attributes": { "weight": 4 } }, { "key": "32385", "source": "52", "target": "791", "attributes": { "weight": 1 } }, { "key": "33389", "source": "52", "target": "459", "attributes": { "weight": 1 } }, { "key": "27255", "source": "52", "target": "427", "attributes": { "weight": 2 } }, { "key": "27254", "source": "52", "target": "479", "attributes": { "weight": 1 } }, { "key": "10819", "source": "52", "target": "470", "attributes": { "weight": 5 } }, { "key": "27257", "source": "52", "target": "340", "attributes": { "weight": 3 } }, { "key": "26907", "source": "52", "target": "497", "attributes": { "weight": 2 } }, { "key": "13073", "source": "52", "target": "674", "attributes": { "weight": 4 } }, { "key": "27539", "source": "52", "target": "1520", "attributes": { "weight": 1 } }, { "key": "33396", "source": "52", "target": "190", "attributes": { "weight": 1 } }, { "key": "3951", "source": "52", "target": "432", "attributes": { "weight": 3 } }, { "key": "6780", "source": "52", "target": "471", "attributes": { "weight": 4 } }, { "key": "32165", "source": "52", "target": "1087", "attributes": { "weight": 1 } }, { "key": "33390", "source": "52", "target": "460", "attributes": { "weight": 1 } }, { "key": "27248", "source": "52", "target": "370", "attributes": { "weight": 2 } }, { "key": "3952", "source": "52", "target": "1744", "attributes": { "weight": 5 } }, { "key": "10494", "source": "52", "target": "225", "attributes": { "weight": 1 } }, { "key": "27244", "source": "52", "target": "3", "attributes": { "weight": 1 } }, { "key": "27253", "source": "52", "target": "231", "attributes": { "weight": 2 } }, { "key": "33397", "source": "52", "target": "1088", "attributes": { "weight": 1 } }, { "key": "31598", "source": "52", "target": "595", "attributes": { "weight": 1 } }, { "key": "33394", "source": "52", "target": "2258", "attributes": { "weight": 1 } }, { "key": "29850", "source": "52", "target": "1024", "attributes": { "weight": 1 } }, { "key": "27247", "source": "52", "target": "1232", "attributes": { "weight": 2 } }, { "key": "7301", "source": "52", "target": "154", "attributes": { "weight": 4 } }, { "key": "26570", "source": "52", "target": "189", "attributes": { "weight": 2 } }, { "key": "116", "source": "52", "target": "54", "attributes": { "weight": 1 } }, { "key": "1407", "source": "52", "target": "183", "attributes": { "weight": 1 } }, { "key": "33384", "source": "52", "target": "441", "attributes": { "weight": 1 } }, { "key": "10818", "source": "52", "target": "457", "attributes": { "weight": 1 } }, { "key": "33045", "source": "52", "target": "1355", "attributes": { "weight": 1 } }, { "key": "33403", "source": "52", "target": "672", "attributes": { "weight": 1 } }, { "key": "17243", "source": "52", "target": "449", "attributes": { "weight": 1 } }, { "key": "33393", "source": "52", "target": "1836", "attributes": { "weight": 1 } }, { "key": "33046", "source": "52", "target": "1845", "attributes": { "weight": 1 } }, { "key": "9274", "source": "52", "target": "430", "attributes": { "weight": 1 } }, { "key": "27242", "source": "52", "target": "339", "attributes": { "weight": 2 } }, { "key": "18060", "source": "52", "target": "1036", "attributes": { "weight": 2 } }, { "key": "33398", "source": "52", "target": "1125", "attributes": { "weight": 1 } }, { "key": "33381", "source": "52", "target": "437", "attributes": { "weight": 1 } }, { "key": "33379", "source": "52", "target": "49", "attributes": { "weight": 1 } }, { "key": "33388", "source": "52", "target": "426", "attributes": { "weight": 1 } }, { "key": "5085", "source": "52", "target": "468", "attributes": { "weight": 3 } }, { "key": "27243", "source": "52", "target": "445", "attributes": { "weight": 2 } }, { "key": "11341", "source": "52", "target": "1742", "attributes": { "weight": 1 } }, { "key": "18104", "source": "52", "target": "2187", "attributes": { "weight": 1 } }, { "key": "33385", "source": "52", "target": "447", "attributes": { "weight": 1 } }, { "key": "33378", "source": "52", "target": "1354", "attributes": { "weight": 1 } }, { "key": "33399", "source": "52", "target": "2109", "attributes": { "weight": 1 } }, { "key": "17462", "source": "52", "target": "358", "attributes": { "weight": 2 } }, { "key": "4131", "source": "52", "target": "1110", "attributes": { "weight": 2 } }, { "key": "18102", "source": "52", "target": "433", "attributes": { "weight": 3 } }, { "key": "18106", "source": "52", "target": "233", "attributes": { "weight": 2 } }, { "key": "33391", "source": "52", "target": "135", "attributes": { "weight": 1 } }, { "key": "33383", "source": "52", "target": "440", "attributes": { "weight": 1 } }, { "key": "27256", "source": "52", "target": "482", "attributes": { "weight": 2 } }, { "key": "18108", "source": "52", "target": "57", "attributes": { "weight": 3 } }, { "key": "27246", "source": "52", "target": "458", "attributes": { "weight": 2 } }, { "key": "29423", "source": "52", "target": "424", "attributes": { "weight": 1 } }, { "key": "33386", "source": "52", "target": "450", "attributes": { "weight": 1 } }, { "key": "17888", "source": "52", "target": "454", "attributes": { "weight": 4 } }, { "key": "33047", "source": "52", "target": "493", "attributes": { "weight": 1 } }, { "key": "31192", "source": "52", "target": "1362", "attributes": { "weight": 1 } }, { "key": "33387", "source": "52", "target": "451", "attributes": { "weight": 1 } }, { "key": "18107", "source": "52", "target": "1375", "attributes": { "weight": 1 } }, { "key": "27250", "source": "52", "target": "8", "attributes": { "weight": 1 } }, { "key": "27252", "source": "52", "target": "191", "attributes": { "weight": 2 } }, { "key": "18103", "source": "52", "target": "50", "attributes": { "weight": 2 } }, { "key": "33392", "source": "52", "target": "1121", "attributes": { "weight": 1 } }, { "key": "33380", "source": "52", "target": "436", "attributes": { "weight": 1 } }, { "key": "33400", "source": "52", "target": "2110", "attributes": { "weight": 1 } }, { "key": "31887", "source": "52", "target": "359", "attributes": { "weight": 1 } }, { "key": "27249", "source": "52", "target": "1363", "attributes": { "weight": 1 } }, { "key": "26310", "source": "52", "target": "1258", "attributes": { "weight": 1 } }, { "key": "27258", "source": "52", "target": "495", "attributes": { "weight": 2 } }, { "key": "33405", "source": "52", "target": "494", "attributes": { "weight": 1 } }, { "key": "30726", "source": "52", "target": "1026", "attributes": { "weight": 2 } }, { "key": "33395", "source": "52", "target": "472", "attributes": { "weight": 1 } }, { "key": "11142", "source": "52", "target": "1116", "attributes": { "weight": 2 } }, { "key": "3996", "source": "53", "target": "487", "attributes": { "weight": 2 } }, { "key": "14301", "source": "53", "target": "1092", "attributes": { "weight": 3 } }, { "key": "33444", "source": "53", "target": "473", "attributes": { "weight": 1 } }, { "key": "117", "source": "53", "target": "57", "attributes": { "weight": 3 } }, { "key": "14302", "source": "53", "target": "595", "attributes": { "weight": 2 } }, { "key": "15311", "source": "53", "target": "455", "attributes": { "weight": 1 } }, { "key": "30604", "source": "53", "target": "682", "attributes": { "weight": 1 } }, { "key": "7331", "source": "53", "target": "454", "attributes": { "weight": 3 } }, { "key": "33443", "source": "53", "target": "1836", "attributes": { "weight": 1 } }, { "key": "14296", "source": "53", "target": "1036", "attributes": { "weight": 2 } }, { "key": "5340", "source": "53", "target": "468", "attributes": { "weight": 3 } }, { "key": "29891", "source": "53", "target": "1024", "attributes": { "weight": 1 } }, { "key": "36001", "source": "53", "target": "440", "attributes": { "weight": 1 } }, { "key": "3629", "source": "53", "target": "1025", "attributes": { "weight": 1 } }, { "key": "32741", "source": "53", "target": "1219", "attributes": { "weight": 1 } }, { "key": "29890", "source": "53", "target": "2122", "attributes": { "weight": 1 } }, { "key": "14298", "source": "53", "target": "458", "attributes": { "weight": 1 } }, { "key": "8809", "source": "53", "target": "442", "attributes": { "weight": 2 } }, { "key": "32740", "source": "53", "target": "1832", "attributes": { "weight": 1 } }, { "key": "14297", "source": "53", "target": "1520", "attributes": { "weight": 2 } }, { "key": "22676", "source": "53", "target": "1037", "attributes": { "weight": 1 } }, { "key": "25381", "source": "53", "target": "433", "attributes": { "weight": 2 } }, { "key": "27101", "source": "53", "target": "1247", "attributes": { "weight": 2 } }, { "key": "29893", "source": "53", "target": "868", "attributes": { "weight": 1 } }, { "key": "15310", "source": "53", "target": "183", "attributes": { "weight": 1 } }, { "key": "27102", "source": "53", "target": "472", "attributes": { "weight": 5 } }, { "key": "30712", "source": "53", "target": "889", "attributes": { "weight": 1 } }, { "key": "16845", "source": "53", "target": "59", "attributes": { "weight": 1 } }, { "key": "11351", "source": "53", "target": "1742", "attributes": { "weight": 1 } }, { "key": "6852", "source": "53", "target": "495", "attributes": { "weight": 3 } }, { "key": "3995", "source": "53", "target": "432", "attributes": { "weight": 5 } }, { "key": "11907", "source": "53", "target": "135", "attributes": { "weight": 7 } }, { "key": "36929", "source": "53", "target": "1072", "attributes": { "weight": 1 } }, { "key": "26914", "source": "53", "target": "497", "attributes": { "weight": 1 } }, { "key": "30460", "source": "53", "target": "1046", "attributes": { "weight": 1 } }, { "key": "31637", "source": "53", "target": "8", "attributes": { "weight": 2 } }, { "key": "33793", "source": "53", "target": "14", "attributes": { "weight": 1 } }, { "key": "17478", "source": "53", "target": "358", "attributes": { "weight": 1 } }, { "key": "12678", "source": "53", "target": "695", "attributes": { "weight": 1 } }, { "key": "33442", "source": "53", "target": "425", "attributes": { "weight": 1 } }, { "key": "32739", "source": "53", "target": "446", "attributes": { "weight": 1 } }, { "key": "16846", "source": "53", "target": "70", "attributes": { "weight": 1 } }, { "key": "30902", "source": "53", "target": "3", "attributes": { "weight": 1 } }, { "key": "14303", "source": "53", "target": "340", "attributes": { "weight": 3 } }, { "key": "15312", "source": "53", "target": "672", "attributes": { "weight": 1 } }, { "key": "29892", "source": "53", "target": "2647", "attributes": { "weight": 1 } }, { "key": "14295", "source": "53", "target": "220", "attributes": { "weight": 2 } }, { "key": "14300", "source": "53", "target": "1026", "attributes": { "weight": 3 } }, { "key": "37452", "source": "53", "target": "435", "attributes": { "weight": 1 } }, { "key": "17479", "source": "53", "target": "1367", "attributes": { "weight": 2 } }, { "key": "37453", "source": "53", "target": "2258", "attributes": { "weight": 1 } }, { "key": "14299", "source": "53", "target": "189", "attributes": { "weight": 2 } }, { "key": "17915", "source": "53", "target": "339", "attributes": { "weight": 2 } }, { "key": "16875", "source": "54", "target": "73", "attributes": { "weight": 1 } }, { "key": "20363", "source": "54", "target": "480", "attributes": { "weight": 1 } }, { "key": "27103", "source": "54", "target": "1219", "attributes": { "weight": 3 } }, { "key": "28668", "source": "54", "target": "1357", "attributes": { "weight": 2 } }, { "key": "28666", "source": "54", "target": "131", "attributes": { "weight": 1 } }, { "key": "23360", "source": "54", "target": "223", "attributes": { "weight": 1 } }, { "key": "6871", "source": "54", "target": "183", "attributes": { "weight": 4 } }, { "key": "5489", "source": "54", "target": "471", "attributes": { "weight": 6 } }, { "key": "20348", "source": "54", "target": "2106", "attributes": { "weight": 1 } }, { "key": "118", "source": "54", "target": "57", "attributes": { "weight": 3 } }, { "key": "24095", "source": "54", "target": "429", "attributes": { "weight": 2 } }, { "key": "28669", "source": "54", "target": "1358", "attributes": { "weight": 2 } }, { "key": "31130", "source": "54", "target": "442", "attributes": { "weight": 1 } }, { "key": "20361", "source": "54", "target": "2108", "attributes": { "weight": 1 } }, { "key": "28672", "source": "54", "target": "482", "attributes": { "weight": 1 } }, { "key": "31541", "source": "54", "target": "3058", "attributes": { "weight": 1 } }, { "key": "23633", "source": "54", "target": "220", "attributes": { "weight": 1 } }, { "key": "15321", "source": "54", "target": "490", "attributes": { "weight": 2 } }, { "key": "24098", "source": "54", "target": "39", "attributes": { "weight": 2 } }, { "key": "28671", "source": "54", "target": "1710", "attributes": { "weight": 1 } }, { "key": "30497", "source": "54", "target": "479", "attributes": { "weight": 1 } }, { "key": "16873", "source": "54", "target": "135", "attributes": { "weight": 5 } }, { "key": "20364", "source": "54", "target": "2109", "attributes": { "weight": 3 } }, { "key": "20353", "source": "54", "target": "2248", "attributes": { "weight": 2 } }, { "key": "20362", "source": "54", "target": "2267", "attributes": { "weight": 1 } }, { "key": "28675", "source": "54", "target": "2784", "attributes": { "weight": 1 } }, { "key": "15320", "source": "54", "target": "1369", "attributes": { "weight": 1 } }, { "key": "20350", "source": "54", "target": "51", "attributes": { "weight": 3 } }, { "key": "20359", "source": "54", "target": "2261", "attributes": { "weight": 1 } }, { "key": "10507", "source": "54", "target": "225", "attributes": { "weight": 2 } }, { "key": "20349", "source": "54", "target": "438", "attributes": { "weight": 2 } }, { "key": "15319", "source": "54", "target": "467", "attributes": { "weight": 1 } }, { "key": "24097", "source": "54", "target": "437", "attributes": { "weight": 3 } }, { "key": "6874", "source": "54", "target": "476", "attributes": { "weight": 2 } }, { "key": "16871", "source": "54", "target": "434", "attributes": { "weight": 1 } }, { "key": "28673", "source": "54", "target": "1373", "attributes": { "weight": 1 } }, { "key": "26317", "source": "54", "target": "1258", "attributes": { "weight": 1 } }, { "key": "20368", "source": "54", "target": "1375", "attributes": { "weight": 2 } }, { "key": "24100", "source": "54", "target": "1125", "attributes": { "weight": 2 } }, { "key": "26183", "source": "54", "target": "2630", "attributes": { "weight": 2 } }, { "key": "28667", "source": "54", "target": "1706", "attributes": { "weight": 2 } }, { "key": "23632", "source": "54", "target": "1353", "attributes": { "weight": 3 } }, { "key": "20351", "source": "54", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20356", "source": "54", "target": "1836", "attributes": { "weight": 1 } }, { "key": "16874", "source": "54", "target": "70", "attributes": { "weight": 2 } }, { "key": "28670", "source": "54", "target": "470", "attributes": { "weight": 2 } }, { "key": "20355", "source": "54", "target": "453", "attributes": { "weight": 1 } }, { "key": "6873", "source": "54", "target": "189", "attributes": { "weight": 4 } }, { "key": "6875", "source": "54", "target": "192", "attributes": { "weight": 2 } }, { "key": "15318", "source": "54", "target": "454", "attributes": { "weight": 2 } }, { "key": "20346", "source": "54", "target": "221", "attributes": { "weight": 1 } }, { "key": "24096", "source": "54", "target": "1354", "attributes": { "weight": 1 } }, { "key": "24099", "source": "54", "target": "1556", "attributes": { "weight": 1 } }, { "key": "6870", "source": "54", "target": "425", "attributes": { "weight": 3 } }, { "key": "20357", "source": "54", "target": "2258", "attributes": { "weight": 2 } }, { "key": "20345", "source": "54", "target": "130", "attributes": { "weight": 3 } }, { "key": "27104", "source": "54", "target": "1247", "attributes": { "weight": 1 } }, { "key": "15322", "source": "54", "target": "672", "attributes": { "weight": 2 } }, { "key": "6872", "source": "54", "target": "188", "attributes": { "weight": 3 } }, { "key": "29789", "source": "54", "target": "1714", "attributes": { "weight": 1 } }, { "key": "16872", "source": "54", "target": "674", "attributes": { "weight": 1 } }, { "key": "20354", "source": "54", "target": "1832", "attributes": { "weight": 4 } }, { "key": "20358", "source": "54", "target": "472", "attributes": { "weight": 6 } }, { "key": "28665", "source": "54", "target": "1703", "attributes": { "weight": 1 } }, { "key": "1502", "source": "54", "target": "224", "attributes": { "weight": 4 } }, { "key": "10508", "source": "54", "target": "1711", "attributes": { "weight": 3 } }, { "key": "20360", "source": "54", "target": "1744", "attributes": { "weight": 1 } }, { "key": "6877", "source": "54", "target": "495", "attributes": { "weight": 3 } }, { "key": "28674", "source": "54", "target": "56", "attributes": { "weight": 1 } }, { "key": "20352", "source": "54", "target": "450", "attributes": { "weight": 1 } }, { "key": "17261", "source": "54", "target": "449", "attributes": { "weight": 2 } }, { "key": "20367", "source": "54", "target": "1374", "attributes": { "weight": 4 } }, { "key": "20366", "source": "54", "target": "489", "attributes": { "weight": 2 } }, { "key": "27105", "source": "54", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20347", "source": "54", "target": "435", "attributes": { "weight": 3 } }, { "key": "37012", "source": "54", "target": "455", "attributes": { "weight": 1 } }, { "key": "6876", "source": "54", "target": "193", "attributes": { "weight": 1 } }, { "key": "20365", "source": "54", "target": "2271", "attributes": { "weight": 1 } }, { "key": "16870", "source": "54", "target": "59", "attributes": { "weight": 1 } }, { "key": "119", "source": "55", "target": "57", "attributes": { "weight": 3 } }, { "key": "7026", "source": "55", "target": "183", "attributes": { "weight": 1 } }, { "key": "23248", "source": "55", "target": "495", "attributes": { "weight": 1 } }, { "key": "27885", "source": "55", "target": "339", "attributes": { "weight": 1 } }, { "key": "21195", "source": "56", "target": "453", "attributes": { "weight": 1 } }, { "key": "26375", "source": "56", "target": "1258", "attributes": { "weight": 1 } }, { "key": "15395", "source": "56", "target": "454", "attributes": { "weight": 2 } }, { "key": "21193", "source": "56", "target": "450", "attributes": { "weight": 3 } }, { "key": "21200", "source": "56", "target": "2258", "attributes": { "weight": 3 } }, { "key": "24374", "source": "56", "target": "473", "attributes": { "weight": 1 } }, { "key": "15398", "source": "56", "target": "672", "attributes": { "weight": 3 } }, { "key": "21210", "source": "56", "target": "2109", "attributes": { "weight": 2 } }, { "key": "21206", "source": "56", "target": "1744", "attributes": { "weight": 1 } }, { "key": "7071", "source": "56", "target": "188", "attributes": { "weight": 3 } }, { "key": "7072", "source": "56", "target": "467", "attributes": { "weight": 2 } }, { "key": "31806", "source": "56", "target": "8", "attributes": { "weight": 1 } }, { "key": "28688", "source": "56", "target": "2784", "attributes": { "weight": 1 } }, { "key": "21188", "source": "56", "target": "2106", "attributes": { "weight": 2 } }, { "key": "24248", "source": "56", "target": "1125", "attributes": { "weight": 1 } }, { "key": "7077", "source": "56", "target": "495", "attributes": { "weight": 3 } }, { "key": "21215", "source": "56", "target": "1375", "attributes": { "weight": 1 } }, { "key": "21198", "source": "56", "target": "1247", "attributes": { "weight": 4 } }, { "key": "15396", "source": "56", "target": "1369", "attributes": { "weight": 1 } }, { "key": "17318", "source": "56", "target": "449", "attributes": { "weight": 2 } }, { "key": "21186", "source": "56", "target": "1522", "attributes": { "weight": 1 } }, { "key": "21212", "source": "56", "target": "2111", "attributes": { "weight": 1 } }, { "key": "21202", "source": "56", "target": "472", "attributes": { "weight": 7 } }, { "key": "21207", "source": "56", "target": "2108", "attributes": { "weight": 1 } }, { "key": "21183", "source": "56", "target": "130", "attributes": { "weight": 3 } }, { "key": "35219", "source": "56", "target": "1354", "attributes": { "weight": 1 } }, { "key": "21199", "source": "56", "target": "1836", "attributes": { "weight": 1 } }, { "key": "35343", "source": "56", "target": "50", "attributes": { "weight": 1 } }, { "key": "24249", "source": "56", "target": "1568", "attributes": { "weight": 1 } }, { "key": "23696", "source": "56", "target": "54", "attributes": { "weight": 2 } }, { "key": "21214", "source": "56", "target": "1374", "attributes": { "weight": 1 } }, { "key": "21184", "source": "56", "target": "221", "attributes": { "weight": 1 } }, { "key": "30504", "source": "56", "target": "479", "attributes": { "weight": 1 } }, { "key": "21205", "source": "56", "target": "2261", "attributes": { "weight": 1 } }, { "key": "37028", "source": "56", "target": "455", "attributes": { "weight": 1 } }, { "key": "7070", "source": "56", "target": "187", "attributes": { "weight": 2 } }, { "key": "27178", "source": "56", "target": "2645", "attributes": { "weight": 2 } }, { "key": "27179", "source": "56", "target": "2105", "attributes": { "weight": 1 } }, { "key": "7067", "source": "56", "target": "224", "attributes": { "weight": 4 } }, { "key": "21197", "source": "56", "target": "2253", "attributes": { "weight": 1 } }, { "key": "2392", "source": "56", "target": "695", "attributes": { "weight": 2 } }, { "key": "21187", "source": "56", "target": "222", "attributes": { "weight": 1 } }, { "key": "21194", "source": "56", "target": "1832", "attributes": { "weight": 6 } }, { "key": "21204", "source": "56", "target": "1838", "attributes": { "weight": 1 } }, { "key": "35344", "source": "56", "target": "1088", "attributes": { "weight": 1 } }, { "key": "7078", "source": "56", "target": "57", "attributes": { "weight": 2 } }, { "key": "29910", "source": "56", "target": "1024", "attributes": { "weight": 1 } }, { "key": "23695", "source": "56", "target": "220", "attributes": { "weight": 1 } }, { "key": "27181", "source": "56", "target": "1282", "attributes": { "weight": 4 } }, { "key": "35220", "source": "56", "target": "2470", "attributes": { "weight": 1 } }, { "key": "7066", "source": "56", "target": "425", "attributes": { "weight": 3 } }, { "key": "21209", "source": "56", "target": "480", "attributes": { "weight": 1 } }, { "key": "21213", "source": "56", "target": "489", "attributes": { "weight": 3 } }, { "key": "7075", "source": "56", "target": "192", "attributes": { "weight": 2 } }, { "key": "7068", "source": "56", "target": "182", "attributes": { "weight": 1 } }, { "key": "27180", "source": "56", "target": "1219", "attributes": { "weight": 4 } }, { "key": "24373", "source": "56", "target": "452", "attributes": { "weight": 1 } }, { "key": "17019", "source": "56", "target": "70", "attributes": { "weight": 1 } }, { "key": "7069", "source": "56", "target": "183", "attributes": { "weight": 3 } }, { "key": "35041", "source": "56", "target": "3", "attributes": { "weight": 1 } }, { "key": "120", "source": "56", "target": "52", "attributes": { "weight": 2 } }, { "key": "7074", "source": "56", "target": "476", "attributes": { "weight": 2 } }, { "key": "7076", "source": "56", "target": "193", "attributes": { "weight": 1 } }, { "key": "21185", "source": "56", "target": "435", "attributes": { "weight": 5 } }, { "key": "23372", "source": "56", "target": "223", "attributes": { "weight": 1 } }, { "key": "21201", "source": "56", "target": "471", "attributes": { "weight": 2 } }, { "key": "21189", "source": "56", "target": "438", "attributes": { "weight": 2 } }, { "key": "21191", "source": "56", "target": "1023", "attributes": { "weight": 1 } }, { "key": "15397", "source": "56", "target": "490", "attributes": { "weight": 2 } }, { "key": "31557", "source": "56", "target": "3058", "attributes": { "weight": 1 } }, { "key": "37029", "source": "56", "target": "3341", "attributes": { "weight": 1 } }, { "key": "32850", "source": "56", "target": "446", "attributes": { "weight": 2 } }, { "key": "33722", "source": "56", "target": "442", "attributes": { "weight": 1 } }, { "key": "31807", "source": "56", "target": "595", "attributes": { "weight": 1 } }, { "key": "23373", "source": "56", "target": "1121", "attributes": { "weight": 1 } }, { "key": "7073", "source": "56", "target": "189", "attributes": { "weight": 4 } }, { "key": "21203", "source": "56", "target": "2260", "attributes": { "weight": 1 } }, { "key": "21190", "source": "56", "target": "51", "attributes": { "weight": 5 } }, { "key": "21192", "source": "56", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21211", "source": "56", "target": "2271", "attributes": { "weight": 1 } }, { "key": "21208", "source": "56", "target": "2267", "attributes": { "weight": 1 } }, { "key": "21196", "source": "56", "target": "186", "attributes": { "weight": 1 } }, { "key": "12042", "source": "56", "target": "135", "attributes": { "weight": 8 } }, { "key": "27353", "source": "57", "target": "218", "attributes": { "weight": 1 } }, { "key": "7186", "source": "57", "target": "457", "attributes": { "weight": 2 } }, { "key": "16414", "source": "57", "target": "195", "attributes": { "weight": 1 } }, { "key": "27317", "source": "57", "target": "339", "attributes": { "weight": 2 } }, { "key": "9547", "source": "57", "target": "419", "attributes": { "weight": 2 } }, { "key": "9145", "source": "57", "target": "442", "attributes": { "weight": 2 } }, { "key": "18125", "source": "57", "target": "52", "attributes": { "weight": 3 } }, { "key": "124", "source": "57", "target": "53", "attributes": { "weight": 3 } }, { "key": "439", "source": "57", "target": "187", "attributes": { "weight": 1 } }, { "key": "25494", "source": "57", "target": "1360", "attributes": { "weight": 1 } }, { "key": "27321", "source": "57", "target": "1047", "attributes": { "weight": 2 } }, { "key": "27339", "source": "57", "target": "580", "attributes": { "weight": 2 } }, { "key": "7183", "source": "57", "target": "1357", "attributes": { "weight": 2 } }, { "key": "27325", "source": "57", "target": "1232", "attributes": { "weight": 2 } }, { "key": "27326", "source": "57", "target": "791", "attributes": { "weight": 4 } }, { "key": "6561", "source": "57", "target": "1090", "attributes": { "weight": 2 } }, { "key": "7184", "source": "57", "target": "1358", "attributes": { "weight": 2 } }, { "key": "27343", "source": "57", "target": "1026", "attributes": { "weight": 1 } }, { "key": "26793", "source": "57", "target": "163", "attributes": { "weight": 3 } }, { "key": "25121", "source": "57", "target": "1547", "attributes": { "weight": 2 } }, { "key": "24274", "source": "57", "target": "130", "attributes": { "weight": 3 } }, { "key": "25398", "source": "57", "target": "433", "attributes": { "weight": 2 } }, { "key": "37332", "source": "57", "target": "1775", "attributes": { "weight": 1 } }, { "key": "27313", "source": "57", "target": "164", "attributes": { "weight": 2 } }, { "key": "27320", "source": "57", "target": "3", "attributes": { "weight": 1 } }, { "key": "440", "source": "57", "target": "192", "attributes": { "weight": 1 } }, { "key": "27316", "source": "57", "target": "440", "attributes": { "weight": 1 } }, { "key": "7195", "source": "57", "target": "56", "attributes": { "weight": 2 } }, { "key": "7192", "source": "57", "target": "191", "attributes": { "weight": 2 } }, { "key": "27334", "source": "57", "target": "228", "attributes": { "weight": 1 } }, { "key": "6559", "source": "57", "target": "370", "attributes": { "weight": 4 } }, { "key": "25956", "source": "57", "target": "1367", "attributes": { "weight": 2 } }, { "key": "27324", "source": "57", "target": "168", "attributes": { "weight": 1 } }, { "key": "18354", "source": "57", "target": "1092", "attributes": { "weight": 1 } }, { "key": "27350", "source": "57", "target": "178", "attributes": { "weight": 3 } }, { "key": "7193", "source": "57", "target": "231", "attributes": { "weight": 2 } }, { "key": "10583", "source": "57", "target": "225", "attributes": { "weight": 1 } }, { "key": "17985", "source": "57", "target": "454", "attributes": { "weight": 3 } }, { "key": "35717", "source": "57", "target": "1356", "attributes": { "weight": 1 } }, { "key": "27352", "source": "57", "target": "340", "attributes": { "weight": 2 } }, { "key": "122", "source": "57", "target": "50", "attributes": { "weight": 1 } }, { "key": "27315", "source": "57", "target": "223", "attributes": { "weight": 2 } }, { "key": "27322", "source": "57", "target": "109", "attributes": { "weight": 1 } }, { "key": "7181", "source": "57", "target": "445", "attributes": { "weight": 3 } }, { "key": "27346", "source": "57", "target": "372", "attributes": { "weight": 1 } }, { "key": "27337", "source": "57", "target": "473", "attributes": { "weight": 1 } }, { "key": "12055", "source": "57", "target": "1522", "attributes": { "weight": 1 } }, { "key": "1215", "source": "57", "target": "426", "attributes": { "weight": 2 } }, { "key": "29533", "source": "57", "target": "232", "attributes": { "weight": 1 } }, { "key": "27342", "source": "57", "target": "70", "attributes": { "weight": 2 } }, { "key": "7190", "source": "57", "target": "471", "attributes": { "weight": 3 } }, { "key": "27333", "source": "57", "target": "1258", "attributes": { "weight": 1 } }, { "key": "30493", "source": "57", "target": "1046", "attributes": { "weight": 1 } }, { "key": "12735", "source": "57", "target": "695", "attributes": { "weight": 1 } }, { "key": "33111", "source": "57", "target": "493", "attributes": { "weight": 1 } }, { "key": "18484", "source": "57", "target": "1738", "attributes": { "weight": 1 } }, { "key": "33738", "source": "57", "target": "135", "attributes": { "weight": 1 } }, { "key": "27314", "source": "57", "target": "938", "attributes": { "weight": 2 } }, { "key": "123", "source": "57", "target": "51", "attributes": { "weight": 1 } }, { "key": "27310", "source": "57", "target": "59", "attributes": { "weight": 2 } }, { "key": "18126", "source": "57", "target": "467", "attributes": { "weight": 1 } }, { "key": "27335", "source": "57", "target": "472", "attributes": { "weight": 1 } }, { "key": "17531", "source": "57", "target": "358", "attributes": { "weight": 3 } }, { "key": "1214", "source": "57", "target": "424", "attributes": { "weight": 3 } }, { "key": "27347", "source": "57", "target": "305", "attributes": { "weight": 1 } }, { "key": "27319", "source": "57", "target": "447", "attributes": { "weight": 2 } }, { "key": "33109", "source": "57", "target": "1355", "attributes": { "weight": 1 } }, { "key": "7179", "source": "57", "target": "1353", "attributes": { "weight": 2 } }, { "key": "25903", "source": "57", "target": "220", "attributes": { "weight": 2 } }, { "key": "27312", "source": "57", "target": "435", "attributes": { "weight": 1 } }, { "key": "27356", "source": "57", "target": "500", "attributes": { "weight": 2 } }, { "key": "31827", "source": "57", "target": "595", "attributes": { "weight": 1 } }, { "key": "7182", "source": "57", "target": "183", "attributes": { "weight": 3 } }, { "key": "9546", "source": "57", "target": "645", "attributes": { "weight": 2 } }, { "key": "437", "source": "57", "target": "182", "attributes": { "weight": 1 } }, { "key": "27311", "source": "57", "target": "432", "attributes": { "weight": 1 } }, { "key": "27323", "source": "57", "target": "392", "attributes": { "weight": 1 } }, { "key": "18127", "source": "57", "target": "492", "attributes": { "weight": 1 } }, { "key": "26792", "source": "57", "target": "189", "attributes": { "weight": 2 } }, { "key": "7185", "source": "57", "target": "701", "attributes": { "weight": 1 } }, { "key": "7180", "source": "57", "target": "1354", "attributes": { "weight": 1 } }, { "key": "7810", "source": "57", "target": "154", "attributes": { "weight": 2 } }, { "key": "1217", "source": "57", "target": "428", "attributes": { "weight": 2 } }, { "key": "27336", "source": "57", "target": "371", "attributes": { "weight": 2 } }, { "key": "6560", "source": "57", "target": "468", "attributes": { "weight": 4 } }, { "key": "24772", "source": "57", "target": "2529", "attributes": { "weight": 1 } }, { "key": "7811", "source": "57", "target": "1063", "attributes": { "weight": 2 } }, { "key": "27329", "source": "57", "target": "337", "attributes": { "weight": 1 } }, { "key": "27345", "source": "57", "target": "479", "attributes": { "weight": 3 } }, { "key": "31200", "source": "57", "target": "1362", "attributes": { "weight": 1 } }, { "key": "27354", "source": "57", "target": "494", "attributes": { "weight": 1 } }, { "key": "438", "source": "57", "target": "184", "attributes": { "weight": 1 } }, { "key": "26791", "source": "57", "target": "455", "attributes": { "weight": 2 } }, { "key": "7194", "source": "57", "target": "491", "attributes": { "weight": 2 } }, { "key": "125", "source": "57", "target": "54", "attributes": { "weight": 3 } }, { "key": "35716", "source": "57", "target": "438", "attributes": { "weight": 1 } }, { "key": "121", "source": "57", "target": "49", "attributes": { "weight": 3 } }, { "key": "1685", "source": "57", "target": "188", "attributes": { "weight": 3 } }, { "key": "18124", "source": "57", "target": "1116", "attributes": { "weight": 2 } }, { "key": "7197", "source": "57", "target": "495", "attributes": { "weight": 5 } }, { "key": "26795", "source": "57", "target": "490", "attributes": { "weight": 2 } }, { "key": "7187", "source": "57", "target": "458", "attributes": { "weight": 2 } }, { "key": "27332", "source": "57", "target": "2187", "attributes": { "weight": 1 } }, { "key": "27327", "source": "57", "target": "638", "attributes": { "weight": 2 } }, { "key": "30722", "source": "57", "target": "889", "attributes": { "weight": 1 } }, { "key": "4060", "source": "57", "target": "470", "attributes": { "weight": 6 } }, { "key": "27328", "source": "57", "target": "1024", "attributes": { "weight": 2 } }, { "key": "27340", "source": "57", "target": "1744", "attributes": { "weight": 2 } }, { "key": "7196", "source": "57", "target": "193", "attributes": { "weight": 4 } }, { "key": "7188", "source": "57", "target": "459", "attributes": { "weight": 1 } }, { "key": "25495", "source": "57", "target": "464", "attributes": { "weight": 1 } }, { "key": "27330", "source": "57", "target": "338", "attributes": { "weight": 2 } }, { "key": "7191", "source": "57", "target": "190", "attributes": { "weight": 2 } }, { "key": "11324", "source": "57", "target": "452", "attributes": { "weight": 3 } }, { "key": "26969", "source": "57", "target": "497", "attributes": { "weight": 2 } }, { "key": "27341", "source": "57", "target": "123", "attributes": { "weight": 2 } }, { "key": "26794", "source": "57", "target": "476", "attributes": { "weight": 2 } }, { "key": "27351", "source": "57", "target": "488", "attributes": { "weight": 2 } }, { "key": "27348", "source": "57", "target": "482", "attributes": { "weight": 1 } }, { "key": "27331", "source": "57", "target": "8", "attributes": { "weight": 1 } }, { "key": "25783", "source": "57", "target": "278", "attributes": { "weight": 1 } }, { "key": "1216", "source": "57", "target": "427", "attributes": { "weight": 2 } }, { "key": "33110", "source": "57", "target": "1368", "attributes": { "weight": 1 } }, { "key": "27318", "source": "57", "target": "674", "attributes": { "weight": 2 } }, { "key": "27338", "source": "57", "target": "474", "attributes": { "weight": 1 } }, { "key": "33739", "source": "57", "target": "2258", "attributes": { "weight": 1 } }, { "key": "7189", "source": "57", "target": "1363", "attributes": { "weight": 3 } }, { "key": "27355", "source": "57", "target": "1375", "attributes": { "weight": 1 } }, { "key": "27349", "source": "57", "target": "1323", "attributes": { "weight": 2 } }, { "key": "25496", "source": "57", "target": "498", "attributes": { "weight": 1 } }, { "key": "27344", "source": "57", "target": "304", "attributes": { "weight": 1 } }, { "key": "126", "source": "57", "target": "55", "attributes": { "weight": 3 } }, { "key": "1684", "source": "57", "target": "224", "attributes": { "weight": 2 } }, { "key": "27309", "source": "57", "target": "429", "attributes": { "weight": 1 } }, { "key": "37075", "source": "57", "target": "857", "attributes": { "weight": 1 } }, { "key": "34915", "source": "57", "target": "362", "attributes": { "weight": 2 } }, { "key": "17324", "source": "57", "target": "449", "attributes": { "weight": 2 } }, { "key": "127", "source": "58", "target": "67", "attributes": { "weight": 2 } }, { "key": "29358", "source": "59", "target": "232", "attributes": { "weight": 1 } }, { "key": "31232", "source": "59", "target": "2447", "attributes": { "weight": 1 } }, { "key": "16646", "source": "59", "target": "1070", "attributes": { "weight": 1 } }, { "key": "136", "source": "59", "target": "71", "attributes": { "weight": 1 } }, { "key": "16637", "source": "59", "target": "429", "attributes": { "weight": 2 } }, { "key": "3854", "source": "59", "target": "487", "attributes": { "weight": 2 } }, { "key": "31231", "source": "59", "target": "123", "attributes": { "weight": 1 } }, { "key": "16674", "source": "59", "target": "486", "attributes": { "weight": 1 } }, { "key": "12661", "source": "59", "target": "695", "attributes": { "weight": 3 } }, { "key": "16648", "source": "59", "target": "445", "attributes": { "weight": 1 } }, { "key": "17809", "source": "59", "target": "1380", "attributes": { "weight": 2 } }, { "key": "27213", "source": "59", "target": "57", "attributes": { "weight": 2 } }, { "key": "16677", "source": "59", "target": "340", "attributes": { "weight": 1 } }, { "key": "29170", "source": "59", "target": "1750", "attributes": { "weight": 2 } }, { "key": "10797", "source": "59", "target": "457", "attributes": { "weight": 5 } }, { "key": "16657", "source": "59", "target": "338", "attributes": { "weight": 1 } }, { "key": "16670", "source": "59", "target": "231", "attributes": { "weight": 2 } }, { "key": "31229", "source": "59", "target": "469", "attributes": { "weight": 1 } }, { "key": "11834", "source": "59", "target": "1363", "attributes": { "weight": 1 } }, { "key": "16651", "source": "59", "target": "451", "attributes": { "weight": 1 } }, { "key": "31239", "source": "59", "target": "595", "attributes": { "weight": 2 } }, { "key": "16638", "source": "59", "target": "1107", "attributes": { "weight": 1 } }, { "key": "31227", "source": "59", "target": "1999", "attributes": { "weight": 1 } }, { "key": "31226", "source": "59", "target": "791", "attributes": { "weight": 2 } }, { "key": "16668", "source": "59", "target": "1125", "attributes": { "weight": 1 } }, { "key": "16653", "source": "59", "target": "199", "attributes": { "weight": 1 } }, { "key": "11327", "source": "59", "target": "1742", "attributes": { "weight": 1 } }, { "key": "31234", "source": "59", "target": "481", "attributes": { "weight": 1 } }, { "key": "35674", "source": "59", "target": "3245", "attributes": { "weight": 1 } }, { "key": "16671", "source": "59", "target": "477", "attributes": { "weight": 1 } }, { "key": "16669", "source": "59", "target": "70", "attributes": { "weight": 3 } }, { "key": "16641", "source": "59", "target": "130", "attributes": { "weight": 4 } }, { "key": "16654", "source": "59", "target": "370", "attributes": { "weight": 1 } }, { "key": "16639", "source": "59", "target": "1354", "attributes": { "weight": 2 } }, { "key": "12882", "source": "59", "target": "1753", "attributes": { "weight": 4 } }, { "key": "1226", "source": "59", "target": "188", "attributes": { "weight": 2 } }, { "key": "134", "source": "59", "target": "68", "attributes": { "weight": 1 } }, { "key": "31237", "source": "59", "target": "2272", "attributes": { "weight": 1 } }, { "key": "16640", "source": "59", "target": "432", "attributes": { "weight": 2 } }, { "key": "31224", "source": "59", "target": "223", "attributes": { "weight": 1 } }, { "key": "17331", "source": "59", "target": "358", "attributes": { "weight": 2 } }, { "key": "16673", "source": "59", "target": "480", "attributes": { "weight": 1 } }, { "key": "31235", "source": "59", "target": "2000", "attributes": { "weight": 1 } }, { "key": "12879", "source": "59", "target": "52", "attributes": { "weight": 4 } }, { "key": "132", "source": "59", "target": "66", "attributes": { "weight": 1 } }, { "key": "31233", "source": "59", "target": "1745", "attributes": { "weight": 1 } }, { "key": "131", "source": "59", "target": "65", "attributes": { "weight": 2 } }, { "key": "16663", "source": "59", "target": "1741", "attributes": { "weight": 2 } }, { "key": "133", "source": "59", "target": "67", "attributes": { "weight": 2 } }, { "key": "30752", "source": "59", "target": "470", "attributes": { "weight": 2 } }, { "key": "31223", "source": "59", "target": "222", "attributes": { "weight": 1 } }, { "key": "16642", "source": "59", "target": "433", "attributes": { "weight": 3 } }, { "key": "8290", "source": "59", "target": "442", "attributes": { "weight": 3 } }, { "key": "16665", "source": "59", "target": "474", "attributes": { "weight": 2 } }, { "key": "16647", "source": "59", "target": "674", "attributes": { "weight": 3 } }, { "key": "16679", "source": "59", "target": "494", "attributes": { "weight": 1 } }, { "key": "35671", "source": "59", "target": "2112", "attributes": { "weight": 1 } }, { "key": "17558", "source": "59", "target": "790", "attributes": { "weight": 2 } }, { "key": "16652", "source": "59", "target": "452", "attributes": { "weight": 2 } }, { "key": "31225", "source": "59", "target": "1047", "attributes": { "weight": 2 } }, { "key": "16662", "source": "59", "target": "472", "attributes": { "weight": 3 } }, { "key": "16644", "source": "59", "target": "164", "attributes": { "weight": 3 } }, { "key": "31222", "source": "59", "target": "1522", "attributes": { "weight": 1 } }, { "key": "139", "source": "59", "target": "75", "attributes": { "weight": 2 } }, { "key": "16649", "source": "59", "target": "447", "attributes": { "weight": 2 } }, { "key": "17810", "source": "59", "target": "454", "attributes": { "weight": 3 } }, { "key": "16675", "source": "59", "target": "488", "attributes": { "weight": 2 } }, { "key": "35675", "source": "59", "target": "3247", "attributes": { "weight": 1 } }, { "key": "16643", "source": "59", "target": "434", "attributes": { "weight": 2 } }, { "key": "16656", "source": "59", "target": "2090", "attributes": { "weight": 2 } }, { "key": "16672", "source": "59", "target": "479", "attributes": { "weight": 4 } }, { "key": "10984", "source": "59", "target": "220", "attributes": { "weight": 4 } }, { "key": "16676", "source": "59", "target": "672", "attributes": { "weight": 1 } }, { "key": "16658", "source": "59", "target": "53", "attributes": { "weight": 1 } }, { "key": "4291", "source": "59", "target": "468", "attributes": { "weight": 6 } }, { "key": "26902", "source": "59", "target": "497", "attributes": { "weight": 1 } }, { "key": "31219", "source": "59", "target": "1754", "attributes": { "weight": 1 } }, { "key": "35672", "source": "59", "target": "3243", "attributes": { "weight": 1 } }, { "key": "35673", "source": "59", "target": "3244", "attributes": { "weight": 1 } }, { "key": "16678", "source": "59", "target": "1752", "attributes": { "weight": 2 } }, { "key": "31242", "source": "59", "target": "1389", "attributes": { "weight": 1 } }, { "key": "31221", "source": "59", "target": "435", "attributes": { "weight": 1 } }, { "key": "12881", "source": "59", "target": "1751", "attributes": { "weight": 3 } }, { "key": "3853", "source": "59", "target": "1066", "attributes": { "weight": 2 } }, { "key": "16664", "source": "59", "target": "189", "attributes": { "weight": 3 } }, { "key": "135", "source": "59", "target": "69", "attributes": { "weight": 1 } }, { "key": "16667", "source": "59", "target": "191", "attributes": { "weight": 1 } }, { "key": "31236", "source": "59", "target": "2001", "attributes": { "weight": 1 } }, { "key": "16666", "source": "59", "target": "1284", "attributes": { "weight": 1 } }, { "key": "31241", "source": "59", "target": "596", "attributes": { "weight": 1 } }, { "key": "23937", "source": "59", "target": "471", "attributes": { "weight": 2 } }, { "key": "31238", "source": "59", "target": "1337", "attributes": { "weight": 1 } }, { "key": "130", "source": "59", "target": "63", "attributes": { "weight": 1 } }, { "key": "18440", "source": "59", "target": "1738", "attributes": { "weight": 1 } }, { "key": "140", "source": "59", "target": "76", "attributes": { "weight": 1 } }, { "key": "26291", "source": "59", "target": "1258", "attributes": { "weight": 1 } }, { "key": "16659", "source": "59", "target": "135", "attributes": { "weight": 1 } }, { "key": "16655", "source": "59", "target": "464", "attributes": { "weight": 1 } }, { "key": "30335", "source": "59", "target": "1046", "attributes": { "weight": 1 } }, { "key": "10391", "source": "59", "target": "225", "attributes": { "weight": 1 } }, { "key": "12385", "source": "59", "target": "1118", "attributes": { "weight": 4 } }, { "key": "31228", "source": "59", "target": "8", "attributes": { "weight": 2 } }, { "key": "31240", "source": "59", "target": "72", "attributes": { "weight": 2 } }, { "key": "31230", "source": "59", "target": "1367", "attributes": { "weight": 1 } }, { "key": "16680", "source": "59", "target": "1390", "attributes": { "weight": 2 } }, { "key": "16660", "source": "59", "target": "2092", "attributes": { "weight": 2 } }, { "key": "16645", "source": "59", "target": "440", "attributes": { "weight": 1 } }, { "key": "1225", "source": "59", "target": "183", "attributes": { "weight": 3 } }, { "key": "12880", "source": "59", "target": "304", "attributes": { "weight": 2 } }, { "key": "1224", "source": "59", "target": "224", "attributes": { "weight": 1 } }, { "key": "137", "source": "59", "target": "73", "attributes": { "weight": 1 } }, { "key": "16661", "source": "59", "target": "54", "attributes": { "weight": 1 } }, { "key": "31493", "source": "59", "target": "2114", "attributes": { "weight": 3 } }, { "key": "128", "source": "59", "target": "60", "attributes": { "weight": 2 } }, { "key": "31220", "source": "59", "target": "1997", "attributes": { "weight": 1 } }, { "key": "129", "source": "59", "target": "61", "attributes": { "weight": 1 } }, { "key": "31494", "source": "59", "target": "2139", "attributes": { "weight": 2 } }, { "key": "138", "source": "59", "target": "74", "attributes": { "weight": 2 } }, { "key": "17131", "source": "59", "target": "449", "attributes": { "weight": 2 } }, { "key": "6588", "source": "59", "target": "193", "attributes": { "weight": 5 } }, { "key": "16650", "source": "59", "target": "450", "attributes": { "weight": 2 } }, { "key": "37058", "source": "59", "target": "857", "attributes": { "weight": 1 } }, { "key": "6589", "source": "59", "target": "495", "attributes": { "weight": 4 } }, { "key": "23382", "source": "60", "target": "2092", "attributes": { "weight": 1 } }, { "key": "23381", "source": "60", "target": "2090", "attributes": { "weight": 1 } }, { "key": "142", "source": "60", "target": "65", "attributes": { "weight": 2 } }, { "key": "141", "source": "60", "target": "59", "attributes": { "weight": 2 } }, { "key": "145", "source": "61", "target": "76", "attributes": { "weight": 2 } }, { "key": "15143", "source": "61", "target": "1733", "attributes": { "weight": 2 } }, { "key": "143", "source": "61", "target": "59", "attributes": { "weight": 1 } }, { "key": "144", "source": "61", "target": "63", "attributes": { "weight": 1 } }, { "key": "146", "source": "62", "target": "75", "attributes": { "weight": 2 } }, { "key": "148", "source": "63", "target": "61", "attributes": { "weight": 1 } }, { "key": "147", "source": "63", "target": "59", "attributes": { "weight": 1 } }, { "key": "10897", "source": "64", "target": "457", "attributes": { "weight": 2 } }, { "key": "149", "source": "64", "target": "71", "attributes": { "weight": 1 } }, { "key": "150", "source": "65", "target": "59", "attributes": { "weight": 2 } }, { "key": "151", "source": "65", "target": "60", "attributes": { "weight": 2 } }, { "key": "16842", "source": "66", "target": "1354", "attributes": { "weight": 1 } }, { "key": "152", "source": "66", "target": "59", "attributes": { "weight": 1 } }, { "key": "153", "source": "67", "target": "58", "attributes": { "weight": 2 } }, { "key": "154", "source": "67", "target": "59", "attributes": { "weight": 2 } }, { "key": "156", "source": "68", "target": "72", "attributes": { "weight": 1 } }, { "key": "155", "source": "68", "target": "59", "attributes": { "weight": 1 } }, { "key": "10911", "source": "68", "target": "457", "attributes": { "weight": 2 } }, { "key": "157", "source": "69", "target": "59", "attributes": { "weight": 1 } }, { "key": "16941", "source": "70", "target": "53", "attributes": { "weight": 1 } }, { "key": "16948", "source": "70", "target": "2094", "attributes": { "weight": 1 } }, { "key": "12531", "source": "70", "target": "1141", "attributes": { "weight": 2 } }, { "key": "16921", "source": "70", "target": "440", "attributes": { "weight": 1 } }, { "key": "1530", "source": "70", "target": "188", "attributes": { "weight": 2 } }, { "key": "16957", "source": "70", "target": "479", "attributes": { "weight": 2 } }, { "key": "16918", "source": "70", "target": "2086", "attributes": { "weight": 1 } }, { "key": "16910", "source": "70", "target": "59", "attributes": { "weight": 3 } }, { "key": "10921", "source": "70", "target": "457", "attributes": { "weight": 3 } }, { "key": "31344", "source": "70", "target": "223", "attributes": { "weight": 2 } }, { "key": "6972", "source": "70", "target": "193", "attributes": { "weight": 4 } }, { "key": "16584", "source": "70", "target": "2083", "attributes": { "weight": 1 } }, { "key": "31346", "source": "70", "target": "1118", "attributes": { "weight": 2 } }, { "key": "16911", "source": "70", "target": "424", "attributes": { "weight": 1 } }, { "key": "31350", "source": "70", "target": "595", "attributes": { "weight": 2 } }, { "key": "16926", "source": "70", "target": "449", "attributes": { "weight": 2 } }, { "key": "16943", "source": "70", "target": "135", "attributes": { "weight": 1 } }, { "key": "16942", "source": "70", "target": "8", "attributes": { "weight": 1 } }, { "key": "36349", "source": "70", "target": "3280", "attributes": { "weight": 1 } }, { "key": "16913", "source": "70", "target": "2085", "attributes": { "weight": 1 } }, { "key": "16940", "source": "70", "target": "1764", "attributes": { "weight": 2 } }, { "key": "16916", "source": "70", "target": "437", "attributes": { "weight": 1 } }, { "key": "16920", "source": "70", "target": "2025", "attributes": { "weight": 1 } }, { "key": "27388", "source": "70", "target": "2667", "attributes": { "weight": 1 } }, { "key": "29722", "source": "70", "target": "421", "attributes": { "weight": 1 } }, { "key": "36355", "source": "70", "target": "3301", "attributes": { "weight": 1 } }, { "key": "16961", "source": "70", "target": "488", "attributes": { "weight": 1 } }, { "key": "16953", "source": "70", "target": "474", "attributes": { "weight": 2 } }, { "key": "16960", "source": "70", "target": "482", "attributes": { "weight": 1 } }, { "key": "16914", "source": "70", "target": "433", "attributes": { "weight": 1 } }, { "key": "31347", "source": "70", "target": "865", "attributes": { "weight": 1 } }, { "key": "16904", "source": "70", "target": "1755", "attributes": { "weight": 2 } }, { "key": "36351", "source": "70", "target": "3283", "attributes": { "weight": 1 } }, { "key": "16964", "source": "70", "target": "2096", "attributes": { "weight": 1 } }, { "key": "16945", "source": "70", "target": "54", "attributes": { "weight": 2 } }, { "key": "16955", "source": "70", "target": "1873", "attributes": { "weight": 1 } }, { "key": "12020", "source": "70", "target": "1808", "attributes": { "weight": 1 } }, { "key": "16935", "source": "70", "target": "370", "attributes": { "weight": 1 } }, { "key": "16968", "source": "70", "target": "1389", "attributes": { "weight": 2 } }, { "key": "16937", "source": "70", "target": "1738", "attributes": { "weight": 3 } }, { "key": "16915", "source": "70", "target": "434", "attributes": { "weight": 2 } }, { "key": "16965", "source": "70", "target": "56", "attributes": { "weight": 1 } }, { "key": "16971", "source": "70", "target": "1390", "attributes": { "weight": 1 } }, { "key": "16907", "source": "70", "target": "1354", "attributes": { "weight": 2 } }, { "key": "16906", "source": "70", "target": "1107", "attributes": { "weight": 1 } }, { "key": "16924", "source": "70", "target": "674", "attributes": { "weight": 3 } }, { "key": "158", "source": "70", "target": "76", "attributes": { "weight": 1 } }, { "key": "16922", "source": "70", "target": "224", "attributes": { "weight": 1 } }, { "key": "16939", "source": "70", "target": "464", "attributes": { "weight": 1 } }, { "key": "16952", "source": "70", "target": "473", "attributes": { "weight": 2 } }, { "key": "16917", "source": "70", "target": "164", "attributes": { "weight": 3 } }, { "key": "16912", "source": "70", "target": "130", "attributes": { "weight": 4 } }, { "key": "16954", "source": "70", "target": "1125", "attributes": { "weight": 1 } }, { "key": "16938", "source": "70", "target": "2089", "attributes": { "weight": 2 } }, { "key": "31345", "source": "70", "target": "1047", "attributes": { "weight": 2 } }, { "key": "16929", "source": "70", "target": "451", "attributes": { "weight": 1 } }, { "key": "36356", "source": "70", "target": "3303", "attributes": { "weight": 1 } }, { "key": "16970", "source": "70", "target": "495", "attributes": { "weight": 2 } }, { "key": "16927", "source": "70", "target": "450", "attributes": { "weight": 2 } }, { "key": "26728", "source": "70", "target": "183", "attributes": { "weight": 2 } }, { "key": "16909", "source": "70", "target": "220", "attributes": { "weight": 3 } }, { "key": "16967", "source": "70", "target": "596", "attributes": { "weight": 3 } }, { "key": "16944", "source": "70", "target": "470", "attributes": { "weight": 2 } }, { "key": "16959", "source": "70", "target": "481", "attributes": { "weight": 1 } }, { "key": "16951", "source": "70", "target": "189", "attributes": { "weight": 3 } }, { "key": "5924", "source": "70", "target": "468", "attributes": { "weight": 4 } }, { "key": "16908", "source": "70", "target": "2084", "attributes": { "weight": 2 } }, { "key": "27389", "source": "70", "target": "2668", "attributes": { "weight": 1 } }, { "key": "16956", "source": "70", "target": "231", "attributes": { "weight": 2 } }, { "key": "16930", "source": "70", "target": "452", "attributes": { "weight": 2 } }, { "key": "36354", "source": "70", "target": "3298", "attributes": { "weight": 1 } }, { "key": "16946", "source": "70", "target": "2093", "attributes": { "weight": 2 } }, { "key": "16936", "source": "70", "target": "1024", "attributes": { "weight": 1 } }, { "key": "9007", "source": "70", "target": "442", "attributes": { "weight": 3 } }, { "key": "17963", "source": "70", "target": "454", "attributes": { "weight": 3 } }, { "key": "16969", "source": "70", "target": "494", "attributes": { "weight": 1 } }, { "key": "16934", "source": "70", "target": "2088", "attributes": { "weight": 2 } }, { "key": "31349", "source": "70", "target": "1863", "attributes": { "weight": 1 } }, { "key": "31348", "source": "70", "target": "791", "attributes": { "weight": 2 } }, { "key": "16950", "source": "70", "target": "2081", "attributes": { "weight": 2 } }, { "key": "4021", "source": "70", "target": "432", "attributes": { "weight": 3 } }, { "key": "16919", "source": "70", "target": "2087", "attributes": { "weight": 2 } }, { "key": "16962", "source": "70", "target": "1337", "attributes": { "weight": 2 } }, { "key": "16933", "source": "70", "target": "52", "attributes": { "weight": 1 } }, { "key": "12021", "source": "70", "target": "1522", "attributes": { "weight": 3 } }, { "key": "16905", "source": "70", "target": "429", "attributes": { "weight": 2 } }, { "key": "16966", "source": "70", "target": "1750", "attributes": { "weight": 3 } }, { "key": "30475", "source": "70", "target": "1046", "attributes": { "weight": 1 } }, { "key": "10920", "source": "70", "target": "1754", "attributes": { "weight": 4 } }, { "key": "16963", "source": "70", "target": "672", "attributes": { "weight": 1 } }, { "key": "36352", "source": "70", "target": "3286", "attributes": { "weight": 1 } }, { "key": "16932", "source": "70", "target": "1360", "attributes": { "weight": 2 } }, { "key": "12683", "source": "70", "target": "695", "attributes": { "weight": 3 } }, { "key": "27286", "source": "70", "target": "57", "attributes": { "weight": 2 } }, { "key": "16931", "source": "70", "target": "199", "attributes": { "weight": 1 } }, { "key": "16972", "source": "70", "target": "497", "attributes": { "weight": 1 } }, { "key": "16949", "source": "70", "target": "1367", "attributes": { "weight": 1 } }, { "key": "16925", "source": "70", "target": "447", "attributes": { "weight": 1 } }, { "key": "16923", "source": "70", "target": "1070", "attributes": { "weight": 2 } }, { "key": "16928", "source": "70", "target": "1862", "attributes": { "weight": 2 } }, { "key": "16958", "source": "70", "target": "480", "attributes": { "weight": 1 } }, { "key": "36353", "source": "70", "target": "3296", "attributes": { "weight": 1 } }, { "key": "16947", "source": "70", "target": "472", "attributes": { "weight": 2 } }, { "key": "160", "source": "71", "target": "64", "attributes": { "weight": 1 } }, { "key": "35701", "source": "71", "target": "457", "attributes": { "weight": 1 } }, { "key": "159", "source": "71", "target": "59", "attributes": { "weight": 1 } }, { "key": "31377", "source": "72", "target": "674", "attributes": { "weight": 1 } }, { "key": "17020", "source": "72", "target": "1354", "attributes": { "weight": 1 } }, { "key": "36128", "source": "72", "target": "1360", "attributes": { "weight": 1 } }, { "key": "31376", "source": "72", "target": "59", "attributes": { "weight": 2 } }, { "key": "12727", "source": "72", "target": "695", "attributes": { "weight": 1 } }, { "key": "10935", "source": "72", "target": "457", "attributes": { "weight": 1 } }, { "key": "161", "source": "72", "target": "68", "attributes": { "weight": 1 } }, { "key": "17046", "source": "73", "target": "130", "attributes": { "weight": 1 } }, { "key": "36133", "source": "73", "target": "433", "attributes": { "weight": 1 } }, { "key": "17047", "source": "73", "target": "434", "attributes": { "weight": 2 } }, { "key": "36141", "source": "73", "target": "1390", "attributes": { "weight": 1 } }, { "key": "21266", "source": "73", "target": "489", "attributes": { "weight": 1 } }, { "key": "36135", "source": "73", "target": "465", "attributes": { "weight": 1 } }, { "key": "36134", "source": "73", "target": "1360", "attributes": { "weight": 1 } }, { "key": "17051", "source": "73", "target": "474", "attributes": { "weight": 1 } }, { "key": "17052", "source": "73", "target": "231", "attributes": { "weight": 1 } }, { "key": "17044", "source": "73", "target": "1354", "attributes": { "weight": 2 } }, { "key": "36137", "source": "73", "target": "1026", "attributes": { "weight": 1 } }, { "key": "21265", "source": "73", "target": "480", "attributes": { "weight": 1 } }, { "key": "17049", "source": "73", "target": "135", "attributes": { "weight": 1 } }, { "key": "17045", "source": "73", "target": "424", "attributes": { "weight": 1 } }, { "key": "17050", "source": "73", "target": "54", "attributes": { "weight": 1 } }, { "key": "31386", "source": "73", "target": "674", "attributes": { "weight": 2 } }, { "key": "36139", "source": "73", "target": "695", "attributes": { "weight": 1 } }, { "key": "36143", "source": "73", "target": "498", "attributes": { "weight": 1 } }, { "key": "162", "source": "73", "target": "59", "attributes": { "weight": 1 } }, { "key": "17048", "source": "73", "target": "447", "attributes": { "weight": 1 } }, { "key": "36140", "source": "73", "target": "2096", "attributes": { "weight": 1 } }, { "key": "21264", "source": "73", "target": "1836", "attributes": { "weight": 1 } }, { "key": "21263", "source": "73", "target": "1756", "attributes": { "weight": 1 } }, { "key": "36142", "source": "73", "target": "497", "attributes": { "weight": 1 } }, { "key": "17043", "source": "73", "target": "429", "attributes": { "weight": 2 } }, { "key": "31387", "source": "73", "target": "1337", "attributes": { "weight": 2 } }, { "key": "36138", "source": "73", "target": "478", "attributes": { "weight": 1 } }, { "key": "36136", "source": "73", "target": "2259", "attributes": { "weight": 1 } }, { "key": "17053", "source": "73", "target": "1389", "attributes": { "weight": 2 } }, { "key": "11297", "source": "73", "target": "220", "attributes": { "weight": 2 } }, { "key": "163", "source": "74", "target": "59", "attributes": { "weight": 2 } }, { "key": "15149", "source": "74", "target": "1733", "attributes": { "weight": 2 } }, { "key": "15150", "source": "74", "target": "1998", "attributes": { "weight": 2 } }, { "key": "15151", "source": "74", "target": "1741", "attributes": { "weight": 2 } }, { "key": "164", "source": "75", "target": "59", "attributes": { "weight": 2 } }, { "key": "165", "source": "75", "target": "62", "attributes": { "weight": 2 } }, { "key": "15152", "source": "76", "target": "1733", "attributes": { "weight": 2 } }, { "key": "21357", "source": "76", "target": "1354", "attributes": { "weight": 1 } }, { "key": "167", "source": "76", "target": "70", "attributes": { "weight": 1 } }, { "key": "29188", "source": "76", "target": "220", "attributes": { "weight": 1 } }, { "key": "166", "source": "76", "target": "59", "attributes": { "weight": 2 } }, { "key": "2461", "source": "77", "target": "711", "attributes": { "weight": 2 } }, { "key": "2842", "source": "77", "target": "831", "attributes": { "weight": 1 } }, { "key": "170", "source": "77", "target": "80", "attributes": { "weight": 1 } }, { "key": "175", "source": "80", "target": "3410", "attributes": { "weight": 1 } }, { "key": "178", "source": "83", "target": "93", "attributes": { "weight": 2 } }, { "key": "179", "source": "84", "target": "93", "attributes": { "weight": 3 } }, { "key": "1805", "source": "84", "target": "566", "attributes": { "weight": 1 } }, { "key": "180", "source": "85", "target": "93", "attributes": { "weight": 3 } }, { "key": "181", "source": "86", "target": "93", "attributes": { "weight": 3 } }, { "key": "1837", "source": "86", "target": "573", "attributes": { "weight": 1 } }, { "key": "1838", "source": "86", "target": "576", "attributes": { "weight": 1 } }, { "key": "1835", "source": "86", "target": "563", "attributes": { "weight": 1 } }, { "key": "1836", "source": "86", "target": "566", "attributes": { "weight": 1 } }, { "key": "182", "source": "87", "target": "93", "attributes": { "weight": 2 } }, { "key": "183", "source": "88", "target": "93", "attributes": { "weight": 3 } }, { "key": "1844", "source": "88", "target": "566", "attributes": { "weight": 1 } }, { "key": "33755", "source": "89", "target": "2646", "attributes": { "weight": 1 } }, { "key": "21533", "source": "89", "target": "868", "attributes": { "weight": 1 } }, { "key": "21519", "source": "89", "target": "1045", "attributes": { "weight": 1 } }, { "key": "21513", "source": "89", "target": "641", "attributes": { "weight": 1 } }, { "key": "21514", "source": "89", "target": "889", "attributes": { "weight": 1 } }, { "key": "21528", "source": "89", "target": "817", "attributes": { "weight": 3 } }, { "key": "21526", "source": "89", "target": "1765", "attributes": { "weight": 1 } }, { "key": "21535", "source": "89", "target": "14", "attributes": { "weight": 3 } }, { "key": "184", "source": "89", "target": "93", "attributes": { "weight": 2 } }, { "key": "21515", "source": "89", "target": "1037", "attributes": { "weight": 2 } }, { "key": "27593", "source": "89", "target": "171", "attributes": { "weight": 1 } }, { "key": "21530", "source": "89", "target": "7", "attributes": { "weight": 1 } }, { "key": "21516", "source": "89", "target": "1520", "attributes": { "weight": 1 } }, { "key": "35917", "source": "89", "target": "1026", "attributes": { "weight": 1 } }, { "key": "34964", "source": "89", "target": "3", "attributes": { "weight": 1 } }, { "key": "21525", "source": "89", "target": "1025", "attributes": { "weight": 1 } }, { "key": "34969", "source": "89", "target": "352", "attributes": { "weight": 1 } }, { "key": "21527", "source": "89", "target": "361", "attributes": { "weight": 1 } }, { "key": "33754", "source": "89", "target": "2", "attributes": { "weight": 1 } }, { "key": "33756", "source": "89", "target": "9", "attributes": { "weight": 1 } }, { "key": "21518", "source": "89", "target": "1042", "attributes": { "weight": 1 } }, { "key": "21529", "source": "89", "target": "1056", "attributes": { "weight": 2 } }, { "key": "21522", "source": "89", "target": "1072", "attributes": { "weight": 1 } }, { "key": "35918", "source": "89", "target": "1092", "attributes": { "weight": 1 } }, { "key": "21524", "source": "89", "target": "422", "attributes": { "weight": 1 } }, { "key": "21517", "source": "89", "target": "355", "attributes": { "weight": 1 } }, { "key": "21520", "source": "89", "target": "1046", "attributes": { "weight": 2 } }, { "key": "34966", "source": "89", "target": "2505", "attributes": { "weight": 1 } }, { "key": "33757", "source": "89", "target": "2828", "attributes": { "weight": 1 } }, { "key": "21532", "source": "89", "target": "1611", "attributes": { "weight": 1 } }, { "key": "21536", "source": "89", "target": "351", "attributes": { "weight": 1 } }, { "key": "34967", "source": "89", "target": "13", "attributes": { "weight": 1 } }, { "key": "21521", "source": "89", "target": "2122", "attributes": { "weight": 1 } }, { "key": "21531", "source": "89", "target": "362", "attributes": { "weight": 1 } }, { "key": "34965", "source": "89", "target": "8", "attributes": { "weight": 1 } }, { "key": "21523", "source": "89", "target": "359", "attributes": { "weight": 1 } }, { "key": "21534", "source": "89", "target": "1060", "attributes": { "weight": 1 } }, { "key": "12374", "source": "89", "target": "468", "attributes": { "weight": 1 } }, { "key": "34968", "source": "89", "target": "349", "attributes": { "weight": 1 } }, { "key": "35916", "source": "89", "target": "440", "attributes": { "weight": 1 } }, { "key": "1858", "source": "90", "target": "566", "attributes": { "weight": 1 } }, { "key": "185", "source": "90", "target": "93", "attributes": { "weight": 3 } }, { "key": "1859", "source": "90", "target": "576", "attributes": { "weight": 1 } }, { "key": "29808", "source": "91", "target": "582", "attributes": { "weight": 2 } }, { "key": "15413", "source": "91", "target": "569", "attributes": { "weight": 1 } }, { "key": "186", "source": "91", "target": "93", "attributes": { "weight": 6 } }, { "key": "1878", "source": "91", "target": "566", "attributes": { "weight": 1 } }, { "key": "1879", "source": "91", "target": "278", "attributes": { "weight": 3 } }, { "key": "15414", "source": "91", "target": "178", "attributes": { "weight": 2 } }, { "key": "29809", "source": "91", "target": "180", "attributes": { "weight": 2 } }, { "key": "9609", "source": "91", "target": "171", "attributes": { "weight": 1 } }, { "key": "187", "source": "92", "target": "93", "attributes": { "weight": 3 } }, { "key": "1882", "source": "92", "target": "566", "attributes": { "weight": 1 } }, { "key": "1920", "source": "93", "target": "327", "attributes": { "weight": 3 } }, { "key": "29825", "source": "93", "target": "1060", "attributes": { "weight": 2 } }, { "key": "200", "source": "93", "target": "96", "attributes": { "weight": 5 } }, { "key": "1891", "source": "93", "target": "567", "attributes": { "weight": 3 } }, { "key": "29815", "source": "93", "target": "1045", "attributes": { "weight": 2 } }, { "key": "1899", "source": "93", "target": "169", "attributes": { "weight": 1 } }, { "key": "190", "source": "93", "target": "85", "attributes": { "weight": 3 } }, { "key": "198", "source": "93", "target": "94", "attributes": { "weight": 3 } }, { "key": "1903", "source": "93", "target": "577", "attributes": { "weight": 2 } }, { "key": "37401", "source": "93", "target": "1629", "attributes": { "weight": 1 } }, { "key": "1887", "source": "93", "target": "164", "attributes": { "weight": 4 } }, { "key": "1918", "source": "93", "target": "587", "attributes": { "weight": 1 } }, { "key": "1901", "source": "93", "target": "576", "attributes": { "weight": 3 } }, { "key": "22682", "source": "93", "target": "1037", "attributes": { "weight": 2 } }, { "key": "1889", "source": "93", "target": "259", "attributes": { "weight": 3 } }, { "key": "29817", "source": "93", "target": "165", "attributes": { "weight": 1 } }, { "key": "29820", "source": "93", "target": "1227", "attributes": { "weight": 1 } }, { "key": "1892", "source": "93", "target": "570", "attributes": { "weight": 1 } }, { "key": "201", "source": "93", "target": "97", "attributes": { "weight": 3 } }, { "key": "1895", "source": "93", "target": "573", "attributes": { "weight": 3 } }, { "key": "189", "source": "93", "target": "84", "attributes": { "weight": 3 } }, { "key": "1904", "source": "93", "target": "578", "attributes": { "weight": 4 } }, { "key": "202", "source": "93", "target": "98", "attributes": { "weight": 2 } }, { "key": "389", "source": "93", "target": "178", "attributes": { "weight": 5 } }, { "key": "1894", "source": "93", "target": "572", "attributes": { "weight": 2 } }, { "key": "1886", "source": "93", "target": "564", "attributes": { "weight": 2 } }, { "key": "1912", "source": "93", "target": "177", "attributes": { "weight": 3 } }, { "key": "1909", "source": "93", "target": "582", "attributes": { "weight": 3 } }, { "key": "1907", "source": "93", "target": "581", "attributes": { "weight": 1 } }, { "key": "194", "source": "93", "target": "89", "attributes": { "weight": 2 } }, { "key": "1888", "source": "93", "target": "565", "attributes": { "weight": 2 } }, { "key": "1897", "source": "93", "target": "574", "attributes": { "weight": 1 } }, { "key": "1900", "source": "93", "target": "278", "attributes": { "weight": 6 } }, { "key": "18075", "source": "93", "target": "1036", "attributes": { "weight": 2 } }, { "key": "29819", "source": "93", "target": "700", "attributes": { "weight": 2 } }, { "key": "29818", "source": "93", "target": "698", "attributes": { "weight": 1 } }, { "key": "1896", "source": "93", "target": "358", "attributes": { "weight": 3 } }, { "key": "31979", "source": "93", "target": "359", "attributes": { "weight": 1 } }, { "key": "193", "source": "93", "target": "88", "attributes": { "weight": 3 } }, { "key": "29821", "source": "93", "target": "338", "attributes": { "weight": 1 } }, { "key": "29827", "source": "93", "target": "310", "attributes": { "weight": 2 } }, { "key": "34547", "source": "93", "target": "1561", "attributes": { "weight": 1 } }, { "key": "1913", "source": "93", "target": "583", "attributes": { "weight": 1 } }, { "key": "1885", "source": "93", "target": "563", "attributes": { "weight": 3 } }, { "key": "29816", "source": "93", "target": "1046", "attributes": { "weight": 2 } }, { "key": "29823", "source": "93", "target": "2901", "attributes": { "weight": 1 } }, { "key": "1916", "source": "93", "target": "180", "attributes": { "weight": 6 } }, { "key": "1906", "source": "93", "target": "580", "attributes": { "weight": 5 } }, { "key": "191", "source": "93", "target": "86", "attributes": { "weight": 3 } }, { "key": "29822", "source": "93", "target": "468", "attributes": { "weight": 1 } }, { "key": "1914", "source": "93", "target": "584", "attributes": { "weight": 4 } }, { "key": "188", "source": "93", "target": "83", "attributes": { "weight": 2 } }, { "key": "1919", "source": "93", "target": "588", "attributes": { "weight": 2 } }, { "key": "196", "source": "93", "target": "91", "attributes": { "weight": 6 } }, { "key": "1898", "source": "93", "target": "168", "attributes": { "weight": 4 } }, { "key": "1911", "source": "93", "target": "175", "attributes": { "weight": 1 } }, { "key": "29961", "source": "93", "target": "1952", "attributes": { "weight": 1 } }, { "key": "197", "source": "93", "target": "92", "attributes": { "weight": 3 } }, { "key": "388", "source": "93", "target": "170", "attributes": { "weight": 3 } }, { "key": "192", "source": "93", "target": "87", "attributes": { "weight": 2 } }, { "key": "1915", "source": "93", "target": "585", "attributes": { "weight": 3 } }, { "key": "204", "source": "93", "target": "100", "attributes": { "weight": 3 } }, { "key": "1893", "source": "93", "target": "571", "attributes": { "weight": 2 } }, { "key": "1917", "source": "93", "target": "586", "attributes": { "weight": 2 } }, { "key": "1905", "source": "93", "target": "579", "attributes": { "weight": 3 } }, { "key": "29814", "source": "93", "target": "2899", "attributes": { "weight": 1 } }, { "key": "29828", "source": "93", "target": "333", "attributes": { "weight": 1 } }, { "key": "1910", "source": "93", "target": "305", "attributes": { "weight": 4 } }, { "key": "29824", "source": "93", "target": "297", "attributes": { "weight": 1 } }, { "key": "1890", "source": "93", "target": "566", "attributes": { "weight": 5 } }, { "key": "28432", "source": "93", "target": "707", "attributes": { "weight": 2 } }, { "key": "1908", "source": "93", "target": "304", "attributes": { "weight": 3 } }, { "key": "199", "source": "93", "target": "95", "attributes": { "weight": 3 } }, { "key": "13961", "source": "93", "target": "905", "attributes": { "weight": 1 } }, { "key": "1902", "source": "93", "target": "171", "attributes": { "weight": 3 } }, { "key": "195", "source": "93", "target": "90", "attributes": { "weight": 3 } }, { "key": "29826", "source": "93", "target": "1323", "attributes": { "weight": 1 } }, { "key": "203", "source": "93", "target": "99", "attributes": { "weight": 3 } }, { "key": "205", "source": "94", "target": "93", "attributes": { "weight": 3 } }, { "key": "1921", "source": "94", "target": "566", "attributes": { "weight": 1 } }, { "key": "1924", "source": "95", "target": "566", "attributes": { "weight": 1 } }, { "key": "206", "source": "95", "target": "93", "attributes": { "weight": 3 } }, { "key": "1928", "source": "96", "target": "566", "attributes": { "weight": 1 } }, { "key": "1930", "source": "96", "target": "576", "attributes": { "weight": 1 } }, { "key": "1929", "source": "96", "target": "573", "attributes": { "weight": 1 } }, { "key": "207", "source": "96", "target": "93", "attributes": { "weight": 5 } }, { "key": "27655", "source": "96", "target": "564", "attributes": { "weight": 1 } }, { "key": "208", "source": "97", "target": "93", "attributes": { "weight": 3 } }, { "key": "209", "source": "98", "target": "93", "attributes": { "weight": 2 } }, { "key": "1940", "source": "98", "target": "566", "attributes": { "weight": 1 } }, { "key": "210", "source": "99", "target": "93", "attributes": { "weight": 3 } }, { "key": "211", "source": "100", "target": "93", "attributes": { "weight": 3 } }, { "key": "29836", "source": "100", "target": "2900", "attributes": { "weight": 1 } }, { "key": "1950", "source": "100", "target": "566", "attributes": { "weight": 1 } }, { "key": "1951", "source": "100", "target": "573", "attributes": { "weight": 1 } }, { "key": "212", "source": "101", "target": "113", "attributes": { "weight": 2 } }, { "key": "7824", "source": "101", "target": "103", "attributes": { "weight": 1 } }, { "key": "7825", "source": "101", "target": "1471", "attributes": { "weight": 1 } }, { "key": "214", "source": "102", "target": "116", "attributes": { "weight": 3 } }, { "key": "213", "source": "102", "target": "103", "attributes": { "weight": 3 } }, { "key": "7842", "source": "103", "target": "1186", "attributes": { "weight": 4 } }, { "key": "21634", "source": "103", "target": "1306", "attributes": { "weight": 3 } }, { "key": "21631", "source": "103", "target": "607", "attributes": { "weight": 2 } }, { "key": "21638", "source": "103", "target": "1502", "attributes": { "weight": 2 } }, { "key": "7845", "source": "103", "target": "113", "attributes": { "weight": 3 } }, { "key": "28882", "source": "103", "target": "1487", "attributes": { "weight": 1 } }, { "key": "7844", "source": "103", "target": "1471", "attributes": { "weight": 3 } }, { "key": "217", "source": "103", "target": "114", "attributes": { "weight": 2 } }, { "key": "7843", "source": "103", "target": "109", "attributes": { "weight": 4 } }, { "key": "21626", "source": "103", "target": "1458", "attributes": { "weight": 2 } }, { "key": "215", "source": "103", "target": "102", "attributes": { "weight": 3 } }, { "key": "24863", "source": "103", "target": "1454", "attributes": { "weight": 2 } }, { "key": "21632", "source": "103", "target": "1490", "attributes": { "weight": 2 } }, { "key": "21637", "source": "103", "target": "116", "attributes": { "weight": 3 } }, { "key": "21636", "source": "103", "target": "1498", "attributes": { "weight": 2 } }, { "key": "7846", "source": "103", "target": "118", "attributes": { "weight": 2 } }, { "key": "7841", "source": "103", "target": "105", "attributes": { "weight": 4 } }, { "key": "10066", "source": "103", "target": "369", "attributes": { "weight": 1 } }, { "key": "8478", "source": "103", "target": "442", "attributes": { "weight": 1 } }, { "key": "14018", "source": "103", "target": "1031", "attributes": { "weight": 1 } }, { "key": "21633", "source": "103", "target": "1491", "attributes": { "weight": 2 } }, { "key": "24864", "source": "103", "target": "1506", "attributes": { "weight": 1 } }, { "key": "21628", "source": "103", "target": "1261", "attributes": { "weight": 2 } }, { "key": "7847", "source": "103", "target": "1505", "attributes": { "weight": 3 } }, { "key": "15554", "source": "103", "target": "195", "attributes": { "weight": 1 } }, { "key": "21635", "source": "103", "target": "1495", "attributes": { "weight": 3 } }, { "key": "21625", "source": "103", "target": "110", "attributes": { "weight": 3 } }, { "key": "28879", "source": "103", "target": "1432", "attributes": { "weight": 1 } }, { "key": "21627", "source": "103", "target": "1466", "attributes": { "weight": 3 } }, { "key": "21622", "source": "103", "target": "604", "attributes": { "weight": 3 } }, { "key": "21624", "source": "103", "target": "108", "attributes": { "weight": 3 } }, { "key": "21620", "source": "103", "target": "1445", "attributes": { "weight": 3 } }, { "key": "21630", "source": "103", "target": "1478", "attributes": { "weight": 3 } }, { "key": "32864", "source": "103", "target": "470", "attributes": { "weight": 1 } }, { "key": "28881", "source": "103", "target": "1464", "attributes": { "weight": 1 } }, { "key": "216", "source": "103", "target": "111", "attributes": { "weight": 1 } }, { "key": "37257", "source": "103", "target": "115", "attributes": { "weight": 1 } }, { "key": "21621", "source": "103", "target": "106", "attributes": { "weight": 3 } }, { "key": "28880", "source": "103", "target": "1459", "attributes": { "weight": 1 } }, { "key": "21623", "source": "103", "target": "1455", "attributes": { "weight": 3 } }, { "key": "7840", "source": "103", "target": "101", "attributes": { "weight": 1 } }, { "key": "4412", "source": "103", "target": "371", "attributes": { "weight": 3 } }, { "key": "21629", "source": "103", "target": "1473", "attributes": { "weight": 3 } }, { "key": "21619", "source": "103", "target": "1437", "attributes": { "weight": 2 } }, { "key": "7852", "source": "104", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7851", "source": "104", "target": "604", "attributes": { "weight": 1 } }, { "key": "218", "source": "104", "target": "109", "attributes": { "weight": 1 } }, { "key": "21642", "source": "105", "target": "108", "attributes": { "weight": 1 } }, { "key": "7864", "source": "105", "target": "1469", "attributes": { "weight": 1 } }, { "key": "7867", "source": "105", "target": "1490", "attributes": { "weight": 3 } }, { "key": "7863", "source": "105", "target": "1467", "attributes": { "weight": 2 } }, { "key": "7870", "source": "105", "target": "1505", "attributes": { "weight": 1 } }, { "key": "219", "source": "105", "target": "110", "attributes": { "weight": 3 } }, { "key": "7869", "source": "105", "target": "115", "attributes": { "weight": 1 } }, { "key": "7860", "source": "105", "target": "106", "attributes": { "weight": 3 } }, { "key": "7859", "source": "105", "target": "1440", "attributes": { "weight": 1 } }, { "key": "7858", "source": "105", "target": "103", "attributes": { "weight": 4 } }, { "key": "7857", "source": "105", "target": "1431", "attributes": { "weight": 1 } }, { "key": "7865", "source": "105", "target": "1475", "attributes": { "weight": 1 } }, { "key": "220", "source": "105", "target": "111", "attributes": { "weight": 2 } }, { "key": "7868", "source": "105", "target": "1493", "attributes": { "weight": 1 } }, { "key": "7862", "source": "105", "target": "109", "attributes": { "weight": 4 } }, { "key": "7866", "source": "105", "target": "1480", "attributes": { "weight": 1 } }, { "key": "7861", "source": "105", "target": "1186", "attributes": { "weight": 1 } }, { "key": "21641", "source": "105", "target": "1445", "attributes": { "weight": 2 } }, { "key": "7874", "source": "106", "target": "109", "attributes": { "weight": 3 } }, { "key": "7873", "source": "106", "target": "1449", "attributes": { "weight": 1 } }, { "key": "7875", "source": "106", "target": "1505", "attributes": { "weight": 1 } }, { "key": "28883", "source": "106", "target": "604", "attributes": { "weight": 1 } }, { "key": "7872", "source": "106", "target": "105", "attributes": { "weight": 3 } }, { "key": "21663", "source": "106", "target": "103", "attributes": { "weight": 3 } }, { "key": "221", "source": "106", "target": "107", "attributes": { "weight": 1 } }, { "key": "21664", "source": "106", "target": "1445", "attributes": { "weight": 2 } }, { "key": "21666", "source": "106", "target": "1475", "attributes": { "weight": 1 } }, { "key": "21665", "source": "106", "target": "108", "attributes": { "weight": 1 } }, { "key": "7920", "source": "107", "target": "1505", "attributes": { "weight": 1 } }, { "key": "223", "source": "107", "target": "109", "attributes": { "weight": 1 } }, { "key": "222", "source": "107", "target": "106", "attributes": { "weight": 1 } }, { "key": "21710", "source": "108", "target": "1306", "attributes": { "weight": 3 } }, { "key": "11875", "source": "108", "target": "468", "attributes": { "weight": 1 } }, { "key": "21700", "source": "108", "target": "1454", "attributes": { "weight": 3 } }, { "key": "5049", "source": "108", "target": "368", "attributes": { "weight": 3 } }, { "key": "21699", "source": "108", "target": "1186", "attributes": { "weight": 2 } }, { "key": "10670", "source": "108", "target": "43", "attributes": { "weight": 1 } }, { "key": "17883", "source": "108", "target": "109", "attributes": { "weight": 5 } }, { "key": "10106", "source": "108", "target": "602", "attributes": { "weight": 1 } }, { "key": "24876", "source": "108", "target": "601", "attributes": { "weight": 2 } }, { "key": "21709", "source": "108", "target": "607", "attributes": { "weight": 3 } }, { "key": "21704", "source": "108", "target": "1466", "attributes": { "weight": 3 } }, { "key": "21693", "source": "108", "target": "1432", "attributes": { "weight": 1 } }, { "key": "32877", "source": "108", "target": "470", "attributes": { "weight": 1 } }, { "key": "25862", "source": "108", "target": "220", "attributes": { "weight": 1 } }, { "key": "15801", "source": "108", "target": "195", "attributes": { "weight": 2 } }, { "key": "7934", "source": "108", "target": "1505", "attributes": { "weight": 3 } }, { "key": "21712", "source": "108", "target": "116", "attributes": { "weight": 3 } }, { "key": "21706", "source": "108", "target": "1473", "attributes": { "weight": 2 } }, { "key": "21694", "source": "108", "target": "1437", "attributes": { "weight": 2 } }, { "key": "5051", "source": "108", "target": "371", "attributes": { "weight": 3 } }, { "key": "8745", "source": "108", "target": "604", "attributes": { "weight": 4 } }, { "key": "10671", "source": "108", "target": "30", "attributes": { "weight": 2 } }, { "key": "21701", "source": "108", "target": "1455", "attributes": { "weight": 3 } }, { "key": "14031", "source": "108", "target": "1031", "attributes": { "weight": 1 } }, { "key": "21697", "source": "108", "target": "1445", "attributes": { "weight": 2 } }, { "key": "24875", "source": "108", "target": "454", "attributes": { "weight": 2 } }, { "key": "11137", "source": "108", "target": "452", "attributes": { "weight": 1 } }, { "key": "21698", "source": "108", "target": "106", "attributes": { "weight": 1 } }, { "key": "21713", "source": "108", "target": "1506", "attributes": { "weight": 2 } }, { "key": "21705", "source": "108", "target": "1261", "attributes": { "weight": 2 } }, { "key": "5048", "source": "108", "target": "779", "attributes": { "weight": 2 } }, { "key": "224", "source": "108", "target": "114", "attributes": { "weight": 1 } }, { "key": "32878", "source": "108", "target": "1744", "attributes": { "weight": 1 } }, { "key": "21708", "source": "108", "target": "1479", "attributes": { "weight": 1 } }, { "key": "21707", "source": "108", "target": "1478", "attributes": { "weight": 2 } }, { "key": "21695", "source": "108", "target": "103", "attributes": { "weight": 3 } }, { "key": "1985", "source": "108", "target": "605", "attributes": { "weight": 1 } }, { "key": "24058", "source": "108", "target": "471", "attributes": { "weight": 1 } }, { "key": "21703", "source": "108", "target": "1457", "attributes": { "weight": 2 } }, { "key": "17459", "source": "108", "target": "358", "attributes": { "weight": 1 } }, { "key": "8744", "source": "108", "target": "442", "attributes": { "weight": 1 } }, { "key": "21702", "source": "108", "target": "110", "attributes": { "weight": 1 } }, { "key": "21711", "source": "108", "target": "1498", "attributes": { "weight": 2 } }, { "key": "34182", "source": "108", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5050", "source": "108", "target": "370", "attributes": { "weight": 3 } }, { "key": "10107", "source": "108", "target": "369", "attributes": { "weight": 6 } }, { "key": "21696", "source": "108", "target": "105", "attributes": { "weight": 1 } }, { "key": "15802", "source": "108", "target": "254", "attributes": { "weight": 2 } }, { "key": "16437", "source": "108", "target": "1387", "attributes": { "weight": 1 } }, { "key": "21726", "source": "109", "target": "1469", "attributes": { "weight": 2 } }, { "key": "17461", "source": "109", "target": "358", "attributes": { "weight": 1 } }, { "key": "34193", "source": "109", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5069", "source": "109", "target": "370", "attributes": { "weight": 5 } }, { "key": "31466", "source": "109", "target": "130", "attributes": { "weight": 1 } }, { "key": "11140", "source": "109", "target": "452", "attributes": { "weight": 1 } }, { "key": "21733", "source": "109", "target": "1502", "attributes": { "weight": 2 } }, { "key": "27239", "source": "109", "target": "57", "attributes": { "weight": 1 } }, { "key": "7948", "source": "109", "target": "1495", "attributes": { "weight": 2 } }, { "key": "7945", "source": "109", "target": "112", "attributes": { "weight": 1 } }, { "key": "21727", "source": "109", "target": "1261", "attributes": { "weight": 2 } }, { "key": "14032", "source": "109", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10672", "source": "109", "target": "43", "attributes": { "weight": 3 } }, { "key": "8754", "source": "109", "target": "442", "attributes": { "weight": 2 } }, { "key": "28887", "source": "109", "target": "1484", "attributes": { "weight": 1 } }, { "key": "10673", "source": "109", "target": "30", "attributes": { "weight": 4 } }, { "key": "24877", "source": "109", "target": "2543", "attributes": { "weight": 2 } }, { "key": "226", "source": "109", "target": "107", "attributes": { "weight": 1 } }, { "key": "23154", "source": "109", "target": "601", "attributes": { "weight": 3 } }, { "key": "24880", "source": "109", "target": "1465", "attributes": { "weight": 1 } }, { "key": "21720", "source": "109", "target": "872", "attributes": { "weight": 1 } }, { "key": "32880", "source": "109", "target": "1744", "attributes": { "weight": 1 } }, { "key": "18059", "source": "109", "target": "1036", "attributes": { "weight": 1 } }, { "key": "21718", "source": "109", "target": "1438", "attributes": { "weight": 2 } }, { "key": "7939", "source": "109", "target": "1186", "attributes": { "weight": 3 } }, { "key": "5068", "source": "109", "target": "368", "attributes": { "weight": 3 } }, { "key": "21719", "source": "109", "target": "778", "attributes": { "weight": 2 } }, { "key": "7300", "source": "109", "target": "1063", "attributes": { "weight": 2 } }, { "key": "21725", "source": "109", "target": "1466", "attributes": { "weight": 2 } }, { "key": "15813", "source": "109", "target": "254", "attributes": { "weight": 2 } }, { "key": "7937", "source": "109", "target": "105", "attributes": { "weight": 4 } }, { "key": "25864", "source": "109", "target": "220", "attributes": { "weight": 1 } }, { "key": "5070", "source": "109", "target": "338", "attributes": { "weight": 3 } }, { "key": "9772", "source": "109", "target": "396", "attributes": { "weight": 2 } }, { "key": "21729", "source": "109", "target": "1475", "attributes": { "weight": 1 } }, { "key": "24879", "source": "109", "target": "638", "attributes": { "weight": 2 } }, { "key": "15812", "source": "109", "target": "913", "attributes": { "weight": 2 } }, { "key": "32879", "source": "109", "target": "470", "attributes": { "weight": 1 } }, { "key": "21722", "source": "109", "target": "1455", "attributes": { "weight": 3 } }, { "key": "21728", "source": "109", "target": "1473", "attributes": { "weight": 3 } }, { "key": "34194", "source": "109", "target": "1233", "attributes": { "weight": 1 } }, { "key": "21734", "source": "109", "target": "1506", "attributes": { "weight": 2 } }, { "key": "229", "source": "109", "target": "118", "attributes": { "weight": 3 } }, { "key": "17711", "source": "109", "target": "48", "attributes": { "weight": 1 } }, { "key": "24882", "source": "109", "target": "473", "attributes": { "weight": 1 } }, { "key": "15811", "source": "109", "target": "195", "attributes": { "weight": 1 } }, { "key": "10109", "source": "109", "target": "369", "attributes": { "weight": 7 } }, { "key": "7938", "source": "109", "target": "106", "attributes": { "weight": 3 } }, { "key": "21735", "source": "109", "target": "1349", "attributes": { "weight": 2 } }, { "key": "21716", "source": "109", "target": "1437", "attributes": { "weight": 2 } }, { "key": "11882", "source": "109", "target": "468", "attributes": { "weight": 2 } }, { "key": "225", "source": "109", "target": "104", "attributes": { "weight": 1 } }, { "key": "32384", "source": "109", "target": "791", "attributes": { "weight": 1 } }, { "key": "21717", "source": "109", "target": "1158", "attributes": { "weight": 1 } }, { "key": "21730", "source": "109", "target": "1478", "attributes": { "weight": 3 } }, { "key": "7941", "source": "109", "target": "110", "attributes": { "weight": 3 } }, { "key": "227", "source": "109", "target": "114", "attributes": { "weight": 3 } }, { "key": "24883", "source": "109", "target": "115", "attributes": { "weight": 1 } }, { "key": "28904", "source": "109", "target": "1096", "attributes": { "weight": 1 } }, { "key": "34195", "source": "109", "target": "123", "attributes": { "weight": 1 } }, { "key": "5072", "source": "109", "target": "371", "attributes": { "weight": 3 } }, { "key": "24878", "source": "109", "target": "454", "attributes": { "weight": 2 } }, { "key": "16438", "source": "109", "target": "1387", "attributes": { "weight": 1 } }, { "key": "7942", "source": "109", "target": "1459", "attributes": { "weight": 1 } }, { "key": "13071", "source": "109", "target": "471", "attributes": { "weight": 5 } }, { "key": "5067", "source": "109", "target": "779", "attributes": { "weight": 2 } }, { "key": "28886", "source": "109", "target": "1464", "attributes": { "weight": 1 } }, { "key": "7935", "source": "109", "target": "1434", "attributes": { "weight": 1 } }, { "key": "21721", "source": "109", "target": "1454", "attributes": { "weight": 3 } }, { "key": "21732", "source": "109", "target": "1498", "attributes": { "weight": 2 } }, { "key": "7940", "source": "109", "target": "604", "attributes": { "weight": 4 } }, { "key": "21723", "source": "109", "target": "108", "attributes": { "weight": 4 } }, { "key": "7949", "source": "109", "target": "116", "attributes": { "weight": 4 } }, { "key": "7947", "source": "109", "target": "1306", "attributes": { "weight": 4 } }, { "key": "228", "source": "109", "target": "117", "attributes": { "weight": 1 } }, { "key": "21714", "source": "109", "target": "1432", "attributes": { "weight": 2 } }, { "key": "230", "source": "109", "target": "119", "attributes": { "weight": 1 } }, { "key": "24881", "source": "109", "target": "189", "attributes": { "weight": 2 } }, { "key": "10108", "source": "109", "target": "602", "attributes": { "weight": 3 } }, { "key": "1986", "source": "109", "target": "605", "attributes": { "weight": 5 } }, { "key": "7944", "source": "109", "target": "1479", "attributes": { "weight": 2 } }, { "key": "10493", "source": "109", "target": "225", "attributes": { "weight": 1 } }, { "key": "21724", "source": "109", "target": "1457", "attributes": { "weight": 2 } }, { "key": "7946", "source": "109", "target": "607", "attributes": { "weight": 4 } }, { "key": "21715", "source": "109", "target": "603", "attributes": { "weight": 3 } }, { "key": "34192", "source": "109", "target": "1047", "attributes": { "weight": 1 } }, { "key": "5071", "source": "109", "target": "208", "attributes": { "weight": 2 } }, { "key": "7936", "source": "109", "target": "103", "attributes": { "weight": 4 } }, { "key": "17887", "source": "109", "target": "40", "attributes": { "weight": 1 } }, { "key": "30445", "source": "109", "target": "1046", "attributes": { "weight": 1 } }, { "key": "21731", "source": "109", "target": "882", "attributes": { "weight": 2 } }, { "key": "7943", "source": "109", "target": "1460", "attributes": { "weight": 1 } }, { "key": "21738", "source": "110", "target": "108", "attributes": { "weight": 1 } }, { "key": "7952", "source": "110", "target": "109", "attributes": { "weight": 3 } }, { "key": "7953", "source": "110", "target": "1495", "attributes": { "weight": 1 } }, { "key": "7954", "source": "110", "target": "1505", "attributes": { "weight": 1 } }, { "key": "232", "source": "110", "target": "113", "attributes": { "weight": 2 } }, { "key": "21737", "source": "110", "target": "1445", "attributes": { "weight": 2 } }, { "key": "21736", "source": "110", "target": "103", "attributes": { "weight": 2 } }, { "key": "234", "source": "110", "target": "118", "attributes": { "weight": 2 } }, { "key": "233", "source": "110", "target": "114", "attributes": { "weight": 2 } }, { "key": "7951", "source": "110", "target": "1186", "attributes": { "weight": 2 } }, { "key": "231", "source": "110", "target": "105", "attributes": { "weight": 3 } }, { "key": "235", "source": "111", "target": "103", "attributes": { "weight": 1 } }, { "key": "236", "source": "111", "target": "105", "attributes": { "weight": 2 } }, { "key": "8041", "source": "112", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8038", "source": "112", "target": "1488", "attributes": { "weight": 1 } }, { "key": "8037", "source": "112", "target": "1477", "attributes": { "weight": 1 } }, { "key": "8040", "source": "112", "target": "118", "attributes": { "weight": 1 } }, { "key": "8033", "source": "112", "target": "1444", "attributes": { "weight": 1 } }, { "key": "8042", "source": "112", "target": "119", "attributes": { "weight": 1 } }, { "key": "8039", "source": "112", "target": "1496", "attributes": { "weight": 1 } }, { "key": "8035", "source": "112", "target": "1456", "attributes": { "weight": 1 } }, { "key": "8034", "source": "112", "target": "109", "attributes": { "weight": 1 } }, { "key": "8036", "source": "112", "target": "1460", "attributes": { "weight": 1 } }, { "key": "237", "source": "112", "target": "114", "attributes": { "weight": 2 } }, { "key": "8032", "source": "112", "target": "1430", "attributes": { "weight": 1 } }, { "key": "238", "source": "113", "target": "101", "attributes": { "weight": 2 } }, { "key": "239", "source": "113", "target": "110", "attributes": { "weight": 2 } }, { "key": "8043", "source": "113", "target": "103", "attributes": { "weight": 3 } }, { "key": "8065", "source": "114", "target": "1505", "attributes": { "weight": 1 } }, { "key": "24896", "source": "114", "target": "1445", "attributes": { "weight": 1 } }, { "key": "37260", "source": "114", "target": "1495", "attributes": { "weight": 1 } }, { "key": "241", "source": "114", "target": "108", "attributes": { "weight": 1 } }, { "key": "240", "source": "114", "target": "103", "attributes": { "weight": 2 } }, { "key": "37259", "source": "114", "target": "604", "attributes": { "weight": 1 } }, { "key": "243", "source": "114", "target": "110", "attributes": { "weight": 2 } }, { "key": "244", "source": "114", "target": "112", "attributes": { "weight": 2 } }, { "key": "246", "source": "114", "target": "118", "attributes": { "weight": 1 } }, { "key": "242", "source": "114", "target": "109", "attributes": { "weight": 3 } }, { "key": "8064", "source": "114", "target": "1186", "attributes": { "weight": 1 } }, { "key": "245", "source": "114", "target": "115", "attributes": { "weight": 3 } }, { "key": "247", "source": "115", "target": "114", "attributes": { "weight": 3 } }, { "key": "8095", "source": "115", "target": "105", "attributes": { "weight": 1 } }, { "key": "24902", "source": "115", "target": "109", "attributes": { "weight": 1 } }, { "key": "24901", "source": "115", "target": "1445", "attributes": { "weight": 1 } }, { "key": "37262", "source": "115", "target": "103", "attributes": { "weight": 1 } }, { "key": "8096", "source": "115", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21795", "source": "116", "target": "1473", "attributes": { "weight": 2 } }, { "key": "248", "source": "116", "target": "102", "attributes": { "weight": 3 } }, { "key": "21791", "source": "116", "target": "1445", "attributes": { "weight": 3 } }, { "key": "7203", "source": "116", "target": "1379", "attributes": { "weight": 1 } }, { "key": "8104", "source": "116", "target": "1459", "attributes": { "weight": 3 } }, { "key": "21790", "source": "116", "target": "103", "attributes": { "weight": 3 } }, { "key": "8108", "source": "116", "target": "1306", "attributes": { "weight": 4 } }, { "key": "35218", "source": "116", "target": "601", "attributes": { "weight": 1 } }, { "key": "6404", "source": "116", "target": "371", "attributes": { "weight": 3 } }, { "key": "249", "source": "116", "target": "119", "attributes": { "weight": 3 } }, { "key": "8100", "source": "116", "target": "1432", "attributes": { "weight": 4 } }, { "key": "21796", "source": "116", "target": "1478", "attributes": { "weight": 1 } }, { "key": "21794", "source": "116", "target": "108", "attributes": { "weight": 3 } }, { "key": "32934", "source": "116", "target": "470", "attributes": { "weight": 1 } }, { "key": "8103", "source": "116", "target": "109", "attributes": { "weight": 4 } }, { "key": "8105", "source": "116", "target": "1466", "attributes": { "weight": 1 } }, { "key": "35217", "source": "116", "target": "471", "attributes": { "weight": 1 } }, { "key": "8107", "source": "116", "target": "1482", "attributes": { "weight": 1 } }, { "key": "28896", "source": "116", "target": "1487", "attributes": { "weight": 1 } }, { "key": "15371", "source": "116", "target": "454", "attributes": { "weight": 1 } }, { "key": "8106", "source": "116", "target": "1470", "attributes": { "weight": 1 } }, { "key": "8102", "source": "116", "target": "1186", "attributes": { "weight": 3 } }, { "key": "24903", "source": "116", "target": "604", "attributes": { "weight": 1 } }, { "key": "21792", "source": "116", "target": "1450", "attributes": { "weight": 1 } }, { "key": "8109", "source": "116", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8110", "source": "116", "target": "1506", "attributes": { "weight": 2 } }, { "key": "28897", "source": "116", "target": "1495", "attributes": { "weight": 1 } }, { "key": "21793", "source": "116", "target": "1455", "attributes": { "weight": 2 } }, { "key": "8101", "source": "116", "target": "1438", "attributes": { "weight": 2 } }, { "key": "8130", "source": "117", "target": "1505", "attributes": { "weight": 1 } }, { "key": "251", "source": "117", "target": "118", "attributes": { "weight": 1 } }, { "key": "250", "source": "117", "target": "109", "attributes": { "weight": 1 } }, { "key": "8129", "source": "117", "target": "1186", "attributes": { "weight": 1 } }, { "key": "8133", "source": "118", "target": "112", "attributes": { "weight": 1 } }, { "key": "254", "source": "118", "target": "114", "attributes": { "weight": 1 } }, { "key": "253", "source": "118", "target": "110", "attributes": { "weight": 2 } }, { "key": "252", "source": "118", "target": "109", "attributes": { "weight": 3 } }, { "key": "21799", "source": "118", "target": "1445", "attributes": { "weight": 2 } }, { "key": "8131", "source": "118", "target": "103", "attributes": { "weight": 2 } }, { "key": "255", "source": "118", "target": "117", "attributes": { "weight": 1 } }, { "key": "8134", "source": "118", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8132", "source": "118", "target": "1186", "attributes": { "weight": 2 } }, { "key": "8186", "source": "119", "target": "112", "attributes": { "weight": 1 } }, { "key": "257", "source": "119", "target": "116", "attributes": { "weight": 3 } }, { "key": "8185", "source": "119", "target": "1186", "attributes": { "weight": 1 } }, { "key": "256", "source": "119", "target": "109", "attributes": { "weight": 1 } }, { "key": "258", "source": "120", "target": "123", "attributes": { "weight": 1 } }, { "key": "259", "source": "120", "target": "124", "attributes": { "weight": 1 } }, { "key": "260", "source": "121", "target": "123", "attributes": { "weight": 1 } }, { "key": "261", "source": "121", "target": "124", "attributes": { "weight": 1 } }, { "key": "262", "source": "122", "target": "124", "attributes": { "weight": 1 } }, { "key": "5913", "source": "123", "target": "377", "attributes": { "weight": 5 } }, { "key": "5826", "source": "123", "target": "183", "attributes": { "weight": 8 } }, { "key": "5894", "source": "123", "target": "1326", "attributes": { "weight": 2 } }, { "key": "5910", "source": "123", "target": "1351", "attributes": { "weight": 2 } }, { "key": "5828", "source": "123", "target": "914", "attributes": { "weight": 2 } }, { "key": "34607", "source": "123", "target": "1275", "attributes": { "weight": 1 } }, { "key": "26164", "source": "123", "target": "1214", "attributes": { "weight": 1 } }, { "key": "5887", "source": "123", "target": "215", "attributes": { "weight": 4 } }, { "key": "5839", "source": "123", "target": "945", "attributes": { "weight": 3 } }, { "key": "5863", "source": "123", "target": "1269", "attributes": { "weight": 3 } }, { "key": "5852", "source": "123", "target": "1257", "attributes": { "weight": 2 } }, { "key": "5825", "source": "123", "target": "449", "attributes": { "weight": 7 } }, { "key": "34606", "source": "123", "target": "3153", "attributes": { "weight": 1 } }, { "key": "34583", "source": "123", "target": "1167", "attributes": { "weight": 1 } }, { "key": "5862", "source": "123", "target": "371", "attributes": { "weight": 3 } }, { "key": "28597", "source": "123", "target": "2780", "attributes": { "weight": 2 } }, { "key": "31341", "source": "123", "target": "59", "attributes": { "weight": 1 } }, { "key": "5853", "source": "123", "target": "471", "attributes": { "weight": 4 } }, { "key": "5880", "source": "123", "target": "305", "attributes": { "weight": 5 } }, { "key": "10252", "source": "123", "target": "711", "attributes": { "weight": 2 } }, { "key": "34609", "source": "123", "target": "1281", "attributes": { "weight": 1 } }, { "key": "34618", "source": "123", "target": "1316", "attributes": { "weight": 1 } }, { "key": "34617", "source": "123", "target": "927", "attributes": { "weight": 1 } }, { "key": "34591", "source": "123", "target": "911", "attributes": { "weight": 1 } }, { "key": "16175", "source": "123", "target": "220", "attributes": { "weight": 4 } }, { "key": "34584", "source": "123", "target": "1171", "attributes": { "weight": 1 } }, { "key": "9875", "source": "123", "target": "390", "attributes": { "weight": 2 } }, { "key": "34592", "source": "123", "target": "2032", "attributes": { "weight": 1 } }, { "key": "5832", "source": "123", "target": "199", "attributes": { "weight": 4 } }, { "key": "28599", "source": "123", "target": "1284", "attributes": { "weight": 1 } }, { "key": "34582", "source": "123", "target": "1162", "attributes": { "weight": 1 } }, { "key": "31428", "source": "123", "target": "223", "attributes": { "weight": 2 } }, { "key": "34610", "source": "123", "target": "1285", "attributes": { "weight": 1 } }, { "key": "5811", "source": "123", "target": "1184", "attributes": { "weight": 3 } }, { "key": "34597", "source": "123", "target": "917", "attributes": { "weight": 1 } }, { "key": "5794", "source": "123", "target": "1150", "attributes": { "weight": 2 } }, { "key": "16176", "source": "123", "target": "278", "attributes": { "weight": 3 } }, { "key": "5848", "source": "123", "target": "920", "attributes": { "weight": 3 } }, { "key": "34616", "source": "123", "target": "1303", "attributes": { "weight": 1 } }, { "key": "5801", "source": "123", "target": "1165", "attributes": { "weight": 3 } }, { "key": "9517", "source": "123", "target": "419", "attributes": { "weight": 1 } }, { "key": "5846", "source": "123", "target": "337", "attributes": { "weight": 4 } }, { "key": "5831", "source": "123", "target": "452", "attributes": { "weight": 7 } }, { "key": "34598", "source": "123", "target": "918", "attributes": { "weight": 1 } }, { "key": "34615", "source": "123", "target": "1792", "attributes": { "weight": 1 } }, { "key": "5864", "source": "123", "target": "1271", "attributes": { "weight": 3 } }, { "key": "5818", "source": "123", "target": "1195", "attributes": { "weight": 2 } }, { "key": "14058", "source": "123", "target": "1031", "attributes": { "weight": 2 } }, { "key": "34626", "source": "123", "target": "963", "attributes": { "weight": 1 } }, { "key": "5857", "source": "123", "target": "208", "attributes": { "weight": 4 } }, { "key": "34614", "source": "123", "target": "1301", "attributes": { "weight": 1 } }, { "key": "5833", "source": "123", "target": "1210", "attributes": { "weight": 2 } }, { "key": "5900", "source": "123", "target": "1336", "attributes": { "weight": 2 } }, { "key": "5866", "source": "123", "target": "1278", "attributes": { "weight": 3 } }, { "key": "34604", "source": "123", "target": "922", "attributes": { "weight": 1 } }, { "key": "5901", "source": "123", "target": "928", "attributes": { "weight": 3 } }, { "key": "5840", "source": "123", "target": "1229", "attributes": { "weight": 3 } }, { "key": "5813", "source": "123", "target": "1189", "attributes": { "weight": 2 } }, { "key": "34586", "source": "123", "target": "1175", "attributes": { "weight": 1 } }, { "key": "34596", "source": "123", "target": "109", "attributes": { "weight": 1 } }, { "key": "26922", "source": "123", "target": "497", "attributes": { "weight": 1 } }, { "key": "34602", "source": "123", "target": "919", "attributes": { "weight": 1 } }, { "key": "263", "source": "123", "target": "120", "attributes": { "weight": 1 } }, { "key": "5890", "source": "123", "target": "1321", "attributes": { "weight": 3 } }, { "key": "5799", "source": "123", "target": "1156", "attributes": { "weight": 3 } }, { "key": "27285", "source": "123", "target": "57", "attributes": { "weight": 2 } }, { "key": "5899", "source": "123", "target": "124", "attributes": { "weight": 3 } }, { "key": "34590", "source": "123", "target": "1188", "attributes": { "weight": 1 } }, { "key": "26727", "source": "123", "target": "189", "attributes": { "weight": 2 } }, { "key": "5845", "source": "123", "target": "370", "attributes": { "weight": 5 } }, { "key": "5893", "source": "123", "target": "1324", "attributes": { "weight": 3 } }, { "key": "5796", "source": "123", "target": "1036", "attributes": { "weight": 2 } }, { "key": "34625", "source": "123", "target": "2307", "attributes": { "weight": 1 } }, { "key": "5891", "source": "123", "target": "1322", "attributes": { "weight": 4 } }, { "key": "5882", "source": "123", "target": "1305", "attributes": { "weight": 3 } }, { "key": "7364", "source": "123", "target": "373", "attributes": { "weight": 2 } }, { "key": "5902", "source": "123", "target": "1339", "attributes": { "weight": 2 } }, { "key": "5875", "source": "123", "target": "1090", "attributes": { "weight": 3 } }, { "key": "5829", "source": "123", "target": "1047", "attributes": { "weight": 3 } }, { "key": "5871", "source": "123", "target": "1287", "attributes": { "weight": 3 } }, { "key": "5803", "source": "123", "target": "1172", "attributes": { "weight": 3 } }, { "key": "34605", "source": "123", "target": "1268", "attributes": { "weight": 1 } }, { "key": "5906", "source": "123", "target": "1344", "attributes": { "weight": 3 } }, { "key": "5838", "source": "123", "target": "168", "attributes": { "weight": 3 } }, { "key": "5810", "source": "123", "target": "779", "attributes": { "weight": 3 } }, { "key": "5836", "source": "123", "target": "1222", "attributes": { "weight": 3 } }, { "key": "5881", "source": "123", "target": "403", "attributes": { "weight": 4 } }, { "key": "34613", "source": "123", "target": "214", "attributes": { "weight": 1 } }, { "key": "5814", "source": "123", "target": "387", "attributes": { "weight": 3 } }, { "key": "7369", "source": "123", "target": "625", "attributes": { "weight": 2 } }, { "key": "5860", "source": "123", "target": "396", "attributes": { "weight": 6 } }, { "key": "264", "source": "123", "target": "121", "attributes": { "weight": 1 } }, { "key": "34623", "source": "123", "target": "3413", "attributes": { "weight": 1 } }, { "key": "5824", "source": "123", "target": "913", "attributes": { "weight": 4 } }, { "key": "5847", "source": "123", "target": "338", "attributes": { "weight": 6 } }, { "key": "5815", "source": "123", "target": "912", "attributes": { "weight": 4 } }, { "key": "5859", "source": "123", "target": "924", "attributes": { "weight": 4 } }, { "key": "34620", "source": "123", "target": "1320", "attributes": { "weight": 1 } }, { "key": "5835", "source": "123", "target": "915", "attributes": { "weight": 3 } }, { "key": "5884", "source": "123", "target": "1308", "attributes": { "weight": 2 } }, { "key": "34581", "source": "123", "target": "1154", "attributes": { "weight": 1 } }, { "key": "5912", "source": "123", "target": "333", "attributes": { "weight": 5 } }, { "key": "5843", "source": "123", "target": "1236", "attributes": { "weight": 3 } }, { "key": "34588", "source": "123", "target": "1180", "attributes": { "weight": 1 } }, { "key": "5791", "source": "123", "target": "1140", "attributes": { "weight": 3 } }, { "key": "5885", "source": "123", "target": "1309", "attributes": { "weight": 3 } }, { "key": "5797", "source": "123", "target": "1152", "attributes": { "weight": 3 } }, { "key": "7367", "source": "123", "target": "149", "attributes": { "weight": 2 } }, { "key": "26726", "source": "123", "target": "454", "attributes": { "weight": 2 } }, { "key": "5904", "source": "123", "target": "1342", "attributes": { "weight": 3 } }, { "key": "34579", "source": "123", "target": "1519", "attributes": { "weight": 1 } }, { "key": "5842", "source": "123", "target": "1234", "attributes": { "weight": 3 } }, { "key": "5872", "source": "123", "target": "212", "attributes": { "weight": 2 } }, { "key": "5897", "source": "123", "target": "1329", "attributes": { "weight": 4 } }, { "key": "34585", "source": "123", "target": "1681", "attributes": { "weight": 1 } }, { "key": "5798", "source": "123", "target": "909", "attributes": { "weight": 2 } }, { "key": "7365", "source": "123", "target": "1350", "attributes": { "weight": 2 } }, { "key": "5792", "source": "123", "target": "1147", "attributes": { "weight": 2 } }, { "key": "5909", "source": "123", "target": "931", "attributes": { "weight": 3 } }, { "key": "34624", "source": "123", "target": "1333", "attributes": { "weight": 1 } }, { "key": "34619", "source": "123", "target": "1563", "attributes": { "weight": 1 } }, { "key": "5895", "source": "123", "target": "406", "attributes": { "weight": 4 } }, { "key": "5886", "source": "123", "target": "1311", "attributes": { "weight": 2 } }, { "key": "7366", "source": "123", "target": "375", "attributes": { "weight": 2 } }, { "key": "5816", "source": "123", "target": "1192", "attributes": { "weight": 3 } }, { "key": "34594", "source": "123", "target": "1200", "attributes": { "weight": 1 } }, { "key": "5896", "source": "123", "target": "961", "attributes": { "weight": 4 } }, { "key": "5793", "source": "123", "target": "889", "attributes": { "weight": 3 } }, { "key": "5898", "source": "123", "target": "408", "attributes": { "weight": 3 } }, { "key": "5800", "source": "123", "target": "1164", "attributes": { "weight": 2 } }, { "key": "34611", "source": "123", "target": "1289", "attributes": { "weight": 1 } }, { "key": "5879", "source": "123", "target": "1300", "attributes": { "weight": 2 } }, { "key": "5856", "source": "123", "target": "1263", "attributes": { "weight": 3 } }, { "key": "7370", "source": "123", "target": "1419", "attributes": { "weight": 2 } }, { "key": "5867", "source": "123", "target": "925", "attributes": { "weight": 5 } }, { "key": "5855", "source": "123", "target": "1262", "attributes": { "weight": 3 } }, { "key": "5804", "source": "123", "target": "1174", "attributes": { "weight": 3 } }, { "key": "5806", "source": "123", "target": "910", "attributes": { "weight": 2 } }, { "key": "5807", "source": "123", "target": "1179", "attributes": { "weight": 2 } }, { "key": "5808", "source": "123", "target": "1181", "attributes": { "weight": 3 } }, { "key": "5822", "source": "123", "target": "1046", "attributes": { "weight": 2 } }, { "key": "5820", "source": "123", "target": "1197", "attributes": { "weight": 4 } }, { "key": "5870", "source": "123", "target": "1286", "attributes": { "weight": 3 } }, { "key": "5876", "source": "123", "target": "1294", "attributes": { "weight": 3 } }, { "key": "5851", "source": "123", "target": "1255", "attributes": { "weight": 3 } }, { "key": "5827", "source": "123", "target": "1201", "attributes": { "weight": 2 } }, { "key": "34622", "source": "123", "target": "1331", "attributes": { "weight": 1 } }, { "key": "10732", "source": "123", "target": "1314", "attributes": { "weight": 1 } }, { "key": "5889", "source": "123", "target": "405", "attributes": { "weight": 3 } }, { "key": "34599", "source": "123", "target": "1227", "attributes": { "weight": 1 } }, { "key": "5849", "source": "123", "target": "921", "attributes": { "weight": 5 } }, { "key": "29045", "source": "123", "target": "495", "attributes": { "weight": 2 } }, { "key": "5892", "source": "123", "target": "1323", "attributes": { "weight": 5 } }, { "key": "18262", "source": "123", "target": "372", "attributes": { "weight": 2 } }, { "key": "34628", "source": "123", "target": "1417", "attributes": { "weight": 1 } }, { "key": "34595", "source": "123", "target": "3142", "attributes": { "weight": 1 } }, { "key": "5841", "source": "123", "target": "1233", "attributes": { "weight": 4 } }, { "key": "34589", "source": "123", "target": "3137", "attributes": { "weight": 1 } }, { "key": "34580", "source": "123", "target": "1153", "attributes": { "weight": 1 } }, { "key": "5844", "source": "123", "target": "205", "attributes": { "weight": 3 } }, { "key": "34627", "source": "123", "target": "257", "attributes": { "weight": 1 } }, { "key": "34577", "source": "123", "target": "1138", "attributes": { "weight": 1 } }, { "key": "5888", "source": "123", "target": "1315", "attributes": { "weight": 4 } }, { "key": "5809", "source": "123", "target": "1182", "attributes": { "weight": 3 } }, { "key": "5869", "source": "123", "target": "580", "attributes": { "weight": 6 } }, { "key": "5819", "source": "123", "target": "1196", "attributes": { "weight": 3 } }, { "key": "5883", "source": "123", "target": "1307", "attributes": { "weight": 3 } }, { "key": "5878", "source": "123", "target": "1296", "attributes": { "weight": 3 } }, { "key": "5874", "source": "123", "target": "304", "attributes": { "weight": 5 } }, { "key": "28598", "source": "123", "target": "1279", "attributes": { "weight": 2 } }, { "key": "5877", "source": "123", "target": "1295", "attributes": { "weight": 3 } }, { "key": "5805", "source": "123", "target": "442", "attributes": { "weight": 10 } }, { "key": "5834", "source": "123", "target": "1211", "attributes": { "weight": 3 } }, { "key": "34621", "source": "123", "target": "407", "attributes": { "weight": 1 } }, { "key": "34578", "source": "123", "target": "933", "attributes": { "weight": 1 } }, { "key": "34608", "source": "123", "target": "399", "attributes": { "weight": 1 } }, { "key": "7368", "source": "123", "target": "1407", "attributes": { "weight": 2 } }, { "key": "5817", "source": "123", "target": "1194", "attributes": { "weight": 3 } }, { "key": "5861", "source": "123", "target": "1267", "attributes": { "weight": 2 } }, { "key": "5908", "source": "123", "target": "930", "attributes": { "weight": 3 } }, { "key": "34612", "source": "123", "target": "3156", "attributes": { "weight": 1 } }, { "key": "5907", "source": "123", "target": "193", "attributes": { "weight": 2 } }, { "key": "5865", "source": "123", "target": "1276", "attributes": { "weight": 2 } }, { "key": "5873", "source": "123", "target": "1291", "attributes": { "weight": 4 } }, { "key": "34600", "source": "123", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5914", "source": "123", "target": "1063", "attributes": { "weight": 6 } }, { "key": "5823", "source": "123", "target": "1199", "attributes": { "weight": 3 } }, { "key": "5795", "source": "123", "target": "195", "attributes": { "weight": 20 } }, { "key": "5850", "source": "123", "target": "468", "attributes": { "weight": 9 } }, { "key": "5837", "source": "123", "target": "1225", "attributes": { "weight": 3 } }, { "key": "5812", "source": "123", "target": "1185", "attributes": { "weight": 2 } }, { "key": "34587", "source": "123", "target": "1176", "attributes": { "weight": 1 } }, { "key": "34603", "source": "123", "target": "2043", "attributes": { "weight": 1 } }, { "key": "5830", "source": "123", "target": "1205", "attributes": { "weight": 3 } }, { "key": "5858", "source": "123", "target": "923", "attributes": { "weight": 3 } }, { "key": "31342", "source": "123", "target": "674", "attributes": { "weight": 1 } }, { "key": "5911", "source": "123", "target": "154", "attributes": { "weight": 6 } }, { "key": "32584", "source": "123", "target": "791", "attributes": { "weight": 2 } }, { "key": "5802", "source": "123", "target": "938", "attributes": { "weight": 5 } }, { "key": "34593", "source": "123", "target": "3139", "attributes": { "weight": 1 } }, { "key": "5821", "source": "123", "target": "368", "attributes": { "weight": 4 } }, { "key": "5903", "source": "123", "target": "218", "attributes": { "weight": 4 } }, { "key": "5905", "source": "123", "target": "1343", "attributes": { "weight": 2 } }, { "key": "5854", "source": "123", "target": "472", "attributes": { "weight": 5 } }, { "key": "5868", "source": "123", "target": "926", "attributes": { "weight": 13 } }, { "key": "34601", "source": "123", "target": "1241", "attributes": { "weight": 1 } }, { "key": "36735", "source": "124", "target": "1228", "attributes": { "weight": 1 } }, { "key": "16361", "source": "124", "target": "370", "attributes": { "weight": 1 } }, { "key": "18975", "source": "124", "target": "405", "attributes": { "weight": 2 } }, { "key": "9090", "source": "124", "target": "195", "attributes": { "weight": 8 } }, { "key": "6408", "source": "124", "target": "368", "attributes": { "weight": 3 } }, { "key": "6407", "source": "124", "target": "1196", "attributes": { "weight": 3 } }, { "key": "18972", "source": "124", "target": "1286", "attributes": { "weight": 2 } }, { "key": "3421", "source": "124", "target": "956", "attributes": { "weight": 1 } }, { "key": "6409", "source": "124", "target": "338", "attributes": { "weight": 5 } }, { "key": "6416", "source": "124", "target": "1322", "attributes": { "weight": 2 } }, { "key": "3420", "source": "124", "target": "953", "attributes": { "weight": 1 } }, { "key": "18962", "source": "124", "target": "1174", "attributes": { "weight": 2 } }, { "key": "6415", "source": "124", "target": "1296", "attributes": { "weight": 2 } }, { "key": "18289", "source": "124", "target": "387", "attributes": { "weight": 1 } }, { "key": "18970", "source": "124", "target": "1269", "attributes": { "weight": 2 } }, { "key": "18290", "source": "124", "target": "1197", "attributes": { "weight": 4 } }, { "key": "36738", "source": "124", "target": "1315", "attributes": { "weight": 1 } }, { "key": "18961", "source": "124", "target": "1165", "attributes": { "weight": 2 } }, { "key": "6406", "source": "124", "target": "779", "attributes": { "weight": 2 } }, { "key": "34808", "source": "124", "target": "1323", "attributes": { "weight": 1 } }, { "key": "3418", "source": "124", "target": "939", "attributes": { "weight": 1 } }, { "key": "18965", "source": "124", "target": "199", "attributes": { "weight": 2 } }, { "key": "265", "source": "124", "target": "120", "attributes": { "weight": 1 } }, { "key": "18971", "source": "124", "target": "926", "attributes": { "weight": 2 } }, { "key": "18969", "source": "124", "target": "1552", "attributes": { "weight": 2 } }, { "key": "3423", "source": "124", "target": "966", "attributes": { "weight": 1 } }, { "key": "6411", "source": "124", "target": "371", "attributes": { "weight": 2 } }, { "key": "18293", "source": "124", "target": "403", "attributes": { "weight": 1 } }, { "key": "18966", "source": "124", "target": "1225", "attributes": { "weight": 2 } }, { "key": "18973", "source": "124", "target": "1287", "attributes": { "weight": 2 } }, { "key": "3419", "source": "124", "target": "948", "attributes": { "weight": 1 } }, { "key": "36734", "source": "124", "target": "1532", "attributes": { "weight": 1 } }, { "key": "18976", "source": "124", "target": "218", "attributes": { "weight": 2 } }, { "key": "34805", "source": "124", "target": "1047", "attributes": { "weight": 2 } }, { "key": "18967", "source": "124", "target": "337", "attributes": { "weight": 2 } }, { "key": "3422", "source": "124", "target": "965", "attributes": { "weight": 1 } }, { "key": "36736", "source": "124", "target": "208", "attributes": { "weight": 1 } }, { "key": "18963", "source": "124", "target": "1184", "attributes": { "weight": 2 } }, { "key": "36733", "source": "124", "target": "938", "attributes": { "weight": 1 } }, { "key": "16362", "source": "124", "target": "925", "attributes": { "weight": 3 } }, { "key": "34806", "source": "124", "target": "1232", "attributes": { "weight": 1 } }, { "key": "36739", "source": "124", "target": "1342", "attributes": { "weight": 1 } }, { "key": "34804", "source": "124", "target": "1182", "attributes": { "weight": 1 } }, { "key": "18964", "source": "124", "target": "1526", "attributes": { "weight": 2 } }, { "key": "266", "source": "124", "target": "121", "attributes": { "weight": 1 } }, { "key": "16363", "source": "124", "target": "1329", "attributes": { "weight": 1 } }, { "key": "6412", "source": "124", "target": "123", "attributes": { "weight": 3 } }, { "key": "267", "source": "124", "target": "122", "attributes": { "weight": 1 } }, { "key": "18292", "source": "124", "target": "372", "attributes": { "weight": 1 } }, { "key": "34807", "source": "124", "target": "1233", "attributes": { "weight": 1 } }, { "key": "7407", "source": "124", "target": "1063", "attributes": { "weight": 2 } }, { "key": "18974", "source": "124", "target": "1305", "attributes": { "weight": 2 } }, { "key": "18968", "source": "124", "target": "1263", "attributes": { "weight": 2 } }, { "key": "6413", "source": "124", "target": "1090", "attributes": { "weight": 4 } }, { "key": "18291", "source": "124", "target": "1262", "attributes": { "weight": 1 } }, { "key": "16360", "source": "124", "target": "913", "attributes": { "weight": 3 } }, { "key": "6410", "source": "124", "target": "921", "attributes": { "weight": 4 } }, { "key": "36737", "source": "124", "target": "215", "attributes": { "weight": 1 } }, { "key": "16359", "source": "124", "target": "912", "attributes": { "weight": 1 } }, { "key": "6414", "source": "124", "target": "1294", "attributes": { "weight": 3 } }, { "key": "5245", "source": "128", "target": "1243", "attributes": { "weight": 2 } }, { "key": "25504", "source": "128", "target": "2593", "attributes": { "weight": 1 } }, { "key": "23879", "source": "128", "target": "2462", "attributes": { "weight": 1 } }, { "key": "10224", "source": "128", "target": "1700", "attributes": { "weight": 1 } }, { "key": "5246", "source": "128", "target": "1322", "attributes": { "weight": 3 } }, { "key": "10223", "source": "128", "target": "1697", "attributes": { "weight": 2 } }, { "key": "278", "source": "128", "target": "129", "attributes": { "weight": 3 } }, { "key": "279", "source": "129", "target": "128", "attributes": { "weight": 3 } }, { "key": "33025", "source": "130", "target": "493", "attributes": { "weight": 1 } }, { "key": "19254", "source": "130", "target": "227", "attributes": { "weight": 3 } }, { "key": "19275", "source": "130", "target": "499", "attributes": { "weight": 3 } }, { "key": "23991", "source": "130", "target": "500", "attributes": { "weight": 3 } }, { "key": "23981", "source": "130", "target": "480", "attributes": { "weight": 2 } }, { "key": "23969", "source": "130", "target": "1087", "attributes": { "weight": 2 } }, { "key": "16691", "source": "130", "target": "1118", "attributes": { "weight": 3 } }, { "key": "19257", "source": "130", "target": "54", "attributes": { "weight": 3 } }, { "key": "19244", "source": "130", "target": "221", "attributes": { "weight": 1 } }, { "key": "35200", "source": "130", "target": "3183", "attributes": { "weight": 1 } }, { "key": "23961", "source": "130", "target": "467", "attributes": { "weight": 2 } }, { "key": "23568", "source": "130", "target": "2248", "attributes": { "weight": 1 } }, { "key": "283", "source": "130", "target": "131", "attributes": { "weight": 3 } }, { "key": "23968", "source": "130", "target": "1367", "attributes": { "weight": 2 } }, { "key": "10594", "source": "130", "target": "43", "attributes": { "weight": 1 } }, { "key": "33194", "source": "130", "target": "2258", "attributes": { "weight": 1 } }, { "key": "1231", "source": "130", "target": "183", "attributes": { "weight": 4 } }, { "key": "23957", "source": "130", "target": "1024", "attributes": { "weight": 2 } }, { "key": "19268", "source": "130", "target": "1374", "attributes": { "weight": 3 } }, { "key": "19243", "source": "130", "target": "429", "attributes": { "weight": 3 } }, { "key": "19253", "source": "130", "target": "1832", "attributes": { "weight": 1 } }, { "key": "19270", "source": "130", "target": "492", "attributes": { "weight": 3 } }, { "key": "31461", "source": "130", "target": "109", "attributes": { "weight": 1 } }, { "key": "35798", "source": "130", "target": "1360", "attributes": { "weight": 1 } }, { "key": "23987", "source": "130", "target": "233", "attributes": { "weight": 2 } }, { "key": "19250", "source": "130", "target": "2244", "attributes": { "weight": 1 } }, { "key": "23944", "source": "130", "target": "439", "attributes": { "weight": 2 } }, { "key": "31462", "source": "130", "target": "178", "attributes": { "weight": 1 } }, { "key": "33195", "source": "130", "target": "1282", "attributes": { "weight": 1 } }, { "key": "18316", "source": "130", "target": "1092", "attributes": { "weight": 2 } }, { "key": "19251", "source": "130", "target": "2245", "attributes": { "weight": 1 } }, { "key": "12664", "source": "130", "target": "695", "attributes": { "weight": 1 } }, { "key": "19258", "source": "130", "target": "1836", "attributes": { "weight": 2 } }, { "key": "7214", "source": "130", "target": "1063", "attributes": { "weight": 2 } }, { "key": "16695", "source": "130", "target": "497", "attributes": { "weight": 5 } }, { "key": "23988", "source": "130", "target": "340", "attributes": { "weight": 4 } }, { "key": "11003", "source": "130", "target": "231", "attributes": { "weight": 6 } }, { "key": "23984", "source": "130", "target": "1130", "attributes": { "weight": 2 } }, { "key": "4331", "source": "130", "target": "371", "attributes": { "weight": 5 } }, { "key": "33192", "source": "130", "target": "2645", "attributes": { "weight": 1 } }, { "key": "23949", "source": "130", "target": "3", "attributes": { "weight": 3 } }, { "key": "19261", "source": "130", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19245", "source": "130", "target": "435", "attributes": { "weight": 2 } }, { "key": "23992", "source": "130", "target": "57", "attributes": { "weight": 3 } }, { "key": "29604", "source": "130", "target": "421", "attributes": { "weight": 1 } }, { "key": "19274", "source": "130", "target": "2276", "attributes": { "weight": 1 } }, { "key": "29605", "source": "130", "target": "1253", "attributes": { "weight": 1 } }, { "key": "23952", "source": "130", "target": "2466", "attributes": { "weight": 2 } }, { "key": "23958", "source": "130", "target": "1766", "attributes": { "weight": 2 } }, { "key": "8434", "source": "130", "target": "442", "attributes": { "weight": 5 } }, { "key": "19271", "source": "130", "target": "235", "attributes": { "weight": 1 } }, { "key": "23978", "source": "130", "target": "2470", "attributes": { "weight": 2 } }, { "key": "23979", "source": "130", "target": "477", "attributes": { "weight": 2 } }, { "key": "23977", "source": "130", "target": "1026", "attributes": { "weight": 5 } }, { "key": "16694", "source": "130", "target": "73", "attributes": { "weight": 1 } }, { "key": "11330", "source": "130", "target": "1742", "attributes": { "weight": 1 } }, { "key": "19264", "source": "130", "target": "2095", "attributes": { "weight": 1 } }, { "key": "16692", "source": "130", "target": "70", "attributes": { "weight": 4 } }, { "key": "19269", "source": "130", "target": "56", "attributes": { "weight": 3 } }, { "key": "26390", "source": "130", "target": "1047", "attributes": { "weight": 2 } }, { "key": "33193", "source": "130", "target": "51", "attributes": { "weight": 1 } }, { "key": "32952", "source": "130", "target": "154", "attributes": { "weight": 1 } }, { "key": "23980", "source": "130", "target": "479", "attributes": { "weight": 5 } }, { "key": "23567", "source": "130", "target": "220", "attributes": { "weight": 5 } }, { "key": "23953", "source": "130", "target": "1116", "attributes": { "weight": 2 } }, { "key": "35801", "source": "130", "target": "1778", "attributes": { "weight": 1 } }, { "key": "19273", "source": "130", "target": "1390", "attributes": { "weight": 2 } }, { "key": "35797", "source": "130", "target": "1760", "attributes": { "weight": 1 } }, { "key": "512", "source": "130", "target": "234", "attributes": { "weight": 4 } }, { "key": "23942", "source": "130", "target": "437", "attributes": { "weight": 2 } }, { "key": "23954", "source": "130", "target": "1536", "attributes": { "weight": 2 } }, { "key": "27802", "source": "130", "target": "339", "attributes": { "weight": 1 } }, { "key": "4330", "source": "130", "target": "468", "attributes": { "weight": 3 } }, { "key": "10059", "source": "130", "target": "369", "attributes": { "weight": 1 } }, { "key": "23966", "source": "130", "target": "228", "attributes": { "weight": 3 } }, { "key": "23943", "source": "130", "target": "50", "attributes": { "weight": 2 } }, { "key": "26989", "source": "130", "target": "1247", "attributes": { "weight": 2 } }, { "key": "1230", "source": "130", "target": "224", "attributes": { "weight": 1 } }, { "key": "16689", "source": "130", "target": "434", "attributes": { "weight": 3 } }, { "key": "23975", "source": "130", "target": "476", "attributes": { "weight": 2 } }, { "key": "9221", "source": "130", "target": "430", "attributes": { "weight": 3 } }, { "key": "23947", "source": "130", "target": "447", "attributes": { "weight": 2 } }, { "key": "23967", "source": "130", "target": "471", "attributes": { "weight": 3 } }, { "key": "19265", "source": "130", "target": "2109", "attributes": { "weight": 3 } }, { "key": "29373", "source": "130", "target": "232", "attributes": { "weight": 1 } }, { "key": "32312", "source": "130", "target": "791", "attributes": { "weight": 1 } }, { "key": "9222", "source": "130", "target": "1592", "attributes": { "weight": 3 } }, { "key": "19255", "source": "130", "target": "1358", "attributes": { "weight": 3 } }, { "key": "35800", "source": "130", "target": "478", "attributes": { "weight": 1 } }, { "key": "6608", "source": "130", "target": "193", "attributes": { "weight": 4 } }, { "key": "23945", "source": "130", "target": "445", "attributes": { "weight": 2 } }, { "key": "17333", "source": "130", "target": "358", "attributes": { "weight": 1 } }, { "key": "23990", "source": "130", "target": "1568", "attributes": { "weight": 2 } }, { "key": "19272", "source": "130", "target": "2274", "attributes": { "weight": 3 } }, { "key": "23948", "source": "130", "target": "39", "attributes": { "weight": 2 } }, { "key": "17135", "source": "130", "target": "2108", "attributes": { "weight": 1 } }, { "key": "23941", "source": "130", "target": "1109", "attributes": { "weight": 2 } }, { "key": "510", "source": "130", "target": "225", "attributes": { "weight": 4 } }, { "key": "23963", "source": "130", "target": "1121", "attributes": { "weight": 2 } }, { "key": "3922", "source": "130", "target": "432", "attributes": { "weight": 4 } }, { "key": "26988", "source": "130", "target": "1219", "attributes": { "weight": 1 } }, { "key": "23973", "source": "130", "target": "474", "attributes": { "weight": 3 } }, { "key": "10799", "source": "130", "target": "457", "attributes": { "weight": 4 } }, { "key": "11001", "source": "130", "target": "452", "attributes": { "weight": 4 } }, { "key": "35799", "source": "130", "target": "465", "attributes": { "weight": 1 } }, { "key": "27215", "source": "130", "target": "425", "attributes": { "weight": 2 } }, { "key": "19262", "source": "130", "target": "1744", "attributes": { "weight": 5 } }, { "key": "19256", "source": "130", "target": "459", "attributes": { "weight": 3 } }, { "key": "33196", "source": "130", "target": "2110", "attributes": { "weight": 1 } }, { "key": "23956", "source": "130", "target": "1072", "attributes": { "weight": 2 } }, { "key": "6609", "source": "130", "target": "495", "attributes": { "weight": 6 } }, { "key": "23960", "source": "130", "target": "1364", "attributes": { "weight": 2 } }, { "key": "19260", "source": "130", "target": "472", "attributes": { "weight": 3 } }, { "key": "19242", "source": "130", "target": "1353", "attributes": { "weight": 3 } }, { "key": "23974", "source": "130", "target": "1088", "attributes": { "weight": 2 } }, { "key": "23939", "source": "130", "target": "1354", "attributes": { "weight": 2 } }, { "key": "23982", "source": "130", "target": "482", "attributes": { "weight": 2 } }, { "key": "23938", "source": "130", "target": "1754", "attributes": { "weight": 2 } }, { "key": "11004", "source": "130", "target": "1711", "attributes": { "weight": 5 } }, { "key": "16688", "source": "130", "target": "59", "attributes": { "weight": 4 } }, { "key": "23983", "source": "130", "target": "2471", "attributes": { "weight": 1 } }, { "key": "23962", "source": "130", "target": "2468", "attributes": { "weight": 1 } }, { "key": "23972", "source": "130", "target": "190", "attributes": { "weight": 2 } }, { "key": "4329", "source": "130", "target": "370", "attributes": { "weight": 9 } }, { "key": "23950", "source": "130", "target": "182", "attributes": { "weight": 2 } }, { "key": "19266", "source": "130", "target": "2271", "attributes": { "weight": 3 } }, { "key": "19252", "source": "130", "target": "450", "attributes": { "weight": 3 } }, { "key": "23946", "source": "130", "target": "446", "attributes": { "weight": 2 } }, { "key": "23964", "source": "130", "target": "470", "attributes": { "weight": 4 } }, { "key": "19246", "source": "130", "target": "222", "attributes": { "weight": 3 } }, { "key": "23965", "source": "130", "target": "1258", "attributes": { "weight": 3 } }, { "key": "23985", "source": "130", "target": "2473", "attributes": { "weight": 1 } }, { "key": "19263", "source": "130", "target": "2267", "attributes": { "weight": 1 } }, { "key": "511", "source": "130", "target": "230", "attributes": { "weight": 4 } }, { "key": "19249", "source": "130", "target": "1023", "attributes": { "weight": 1 } }, { "key": "23959", "source": "130", "target": "8", "attributes": { "weight": 3 } }, { "key": "17134", "source": "130", "target": "449", "attributes": { "weight": 2 } }, { "key": "1233", "source": "130", "target": "188", "attributes": { "weight": 4 } }, { "key": "19248", "source": "130", "target": "440", "attributes": { "weight": 2 } }, { "key": "23976", "source": "130", "target": "1125", "attributes": { "weight": 2 } }, { "key": "23989", "source": "130", "target": "494", "attributes": { "weight": 2 } }, { "key": "11002", "source": "130", "target": "469", "attributes": { "weight": 1 } }, { "key": "19267", "source": "130", "target": "489", "attributes": { "weight": 1 } }, { "key": "23955", "source": "130", "target": "1810", "attributes": { "weight": 2 } }, { "key": "23940", "source": "130", "target": "889", "attributes": { "weight": 2 } }, { "key": "1232", "source": "130", "target": "455", "attributes": { "weight": 3 } }, { "key": "16690", "source": "130", "target": "674", "attributes": { "weight": 4 } }, { "key": "23986", "source": "130", "target": "1337", "attributes": { "weight": 2 } }, { "key": "19259", "source": "130", "target": "1366", "attributes": { "weight": 3 } }, { "key": "23971", "source": "130", "target": "473", "attributes": { "weight": 4 } }, { "key": "23569", "source": "130", "target": "1312", "attributes": { "weight": 1 } }, { "key": "16693", "source": "130", "target": "672", "attributes": { "weight": 2 } }, { "key": "19247", "source": "130", "target": "223", "attributes": { "weight": 5 } }, { "key": "17814", "source": "130", "target": "454", "attributes": { "weight": 4 } }, { "key": "23970", "source": "130", "target": "189", "attributes": { "weight": 3 } }, { "key": "11835", "source": "130", "target": "135", "attributes": { "weight": 6 } }, { "key": "1234", "source": "130", "target": "490", "attributes": { "weight": 3 } }, { "key": "27216", "source": "130", "target": "52", "attributes": { "weight": 2 } }, { "key": "32074", "source": "130", "target": "3084", "attributes": { "weight": 1 } }, { "key": "31577", "source": "130", "target": "595", "attributes": { "weight": 2 } }, { "key": "14174", "source": "130", "target": "1046", "attributes": { "weight": 2 } }, { "key": "23951", "source": "130", "target": "448", "attributes": { "weight": 2 } }, { "key": "4332", "source": "130", "target": "1090", "attributes": { "weight": 2 } }, { "key": "10395", "source": "131", "target": "225", "attributes": { "weight": 1 } }, { "key": "284", "source": "131", "target": "130", "attributes": { "weight": 3 } }, { "key": "10396", "source": "131", "target": "137", "attributes": { "weight": 1 } }, { "key": "285", "source": "131", "target": "39", "attributes": { "weight": 4 } }, { "key": "286", "source": "131", "target": "134", "attributes": { "weight": 2 } }, { "key": "28656", "source": "131", "target": "54", "attributes": { "weight": 1 } }, { "key": "10397", "source": "131", "target": "1710", "attributes": { "weight": 1 } }, { "key": "17836", "source": "132", "target": "34", "attributes": { "weight": 2 } }, { "key": "7238", "source": "132", "target": "39", "attributes": { "weight": 8 } }, { "key": "8654", "source": "132", "target": "442", "attributes": { "weight": 1 } }, { "key": "287", "source": "132", "target": "137", "attributes": { "weight": 2 } }, { "key": "15419", "source": "132", "target": "36", "attributes": { "weight": 2 } }, { "key": "10408", "source": "132", "target": "225", "attributes": { "weight": 1 } }, { "key": "8655", "source": "132", "target": "1556", "attributes": { "weight": 1 } }, { "key": "17837", "source": "132", "target": "40", "attributes": { "weight": 1 } }, { "key": "26049", "source": "133", "target": "163", "attributes": { "weight": 1 } }, { "key": "7266", "source": "133", "target": "223", "attributes": { "weight": 5 } }, { "key": "17849", "source": "133", "target": "40", "attributes": { "weight": 1 } }, { "key": "30127", "source": "133", "target": "1544", "attributes": { "weight": 4 } }, { "key": "295", "source": "133", "target": "136", "attributes": { "weight": 2 } }, { "key": "16425", "source": "133", "target": "38", "attributes": { "weight": 4 } }, { "key": "10481", "source": "133", "target": "1557", "attributes": { "weight": 6 } }, { "key": "30106", "source": "133", "target": "1559", "attributes": { "weight": 1 } }, { "key": "8683", "source": "133", "target": "442", "attributes": { "weight": 2 } }, { "key": "17850", "source": "133", "target": "1555", "attributes": { "weight": 2 } }, { "key": "17848", "source": "133", "target": "1524", "attributes": { "weight": 4 } }, { "key": "7267", "source": "133", "target": "1384", "attributes": { "weight": 4 } }, { "key": "294", "source": "133", "target": "39", "attributes": { "weight": 1 } }, { "key": "10479", "source": "133", "target": "1521", "attributes": { "weight": 2 } }, { "key": "8684", "source": "133", "target": "1565", "attributes": { "weight": 5 } }, { "key": "23238", "source": "133", "target": "34", "attributes": { "weight": 1 } }, { "key": "30126", "source": "133", "target": "2950", "attributes": { "weight": 1 } }, { "key": "30128", "source": "133", "target": "2951", "attributes": { "weight": 1 } }, { "key": "10480", "source": "133", "target": "225", "attributes": { "weight": 1 } }, { "key": "17847", "source": "133", "target": "1380", "attributes": { "weight": 2 } }, { "key": "32338", "source": "133", "target": "791", "attributes": { "weight": 1 } }, { "key": "35741", "source": "134", "target": "136", "attributes": { "weight": 1 } }, { "key": "10489", "source": "134", "target": "225", "attributes": { "weight": 1 } }, { "key": "8734", "source": "134", "target": "442", "attributes": { "weight": 2 } }, { "key": "17859", "source": "134", "target": "2176", "attributes": { "weight": 1 } }, { "key": "296", "source": "134", "target": "131", "attributes": { "weight": 2 } }, { "key": "297", "source": "134", "target": "39", "attributes": { "weight": 2 } }, { "key": "298", "source": "134", "target": "135", "attributes": { "weight": 1 } }, { "key": "17071", "source": "134", "target": "34", "attributes": { "weight": 1 } }, { "key": "299", "source": "134", "target": "138", "attributes": { "weight": 7 } }, { "key": "17072", "source": "134", "target": "35", "attributes": { "weight": 3 } }, { "key": "11873", "source": "134", "target": "468", "attributes": { "weight": 1 } }, { "key": "11956", "source": "135", "target": "1093", "attributes": { "weight": 1 } }, { "key": "33472", "source": "135", "target": "2094", "attributes": { "weight": 1 } }, { "key": "33467", "source": "135", "target": "1364", "attributes": { "weight": 1 } }, { "key": "33448", "source": "135", "target": "432", "attributes": { "weight": 1 } }, { "key": "10502", "source": "135", "target": "482", "attributes": { "weight": 5 } }, { "key": "16852", "source": "135", "target": "440", "attributes": { "weight": 2 } }, { "key": "33482", "source": "135", "target": "1092", "attributes": { "weight": 1 } }, { "key": "11942", "source": "135", "target": "1362", "attributes": { "weight": 2 } }, { "key": "33476", "source": "135", "target": "473", "attributes": { "weight": 1 } }, { "key": "11949", "source": "135", "target": "474", "attributes": { "weight": 4 } }, { "key": "17481", "source": "135", "target": "358", "attributes": { "weight": 2 } }, { "key": "33464", "source": "135", "target": "1811", "attributes": { "weight": 1 } }, { "key": "33450", "source": "135", "target": "436", "attributes": { "weight": 1 } }, { "key": "11929", "source": "135", "target": "248", "attributes": { "weight": 3 } }, { "key": "33483", "source": "135", "target": "1131", "attributes": { "weight": 1 } }, { "key": "11931", "source": "135", "target": "1155", "attributes": { "weight": 2 } }, { "key": "11943", "source": "135", "target": "780", "attributes": { "weight": 2 } }, { "key": "16858", "source": "135", "target": "461", "attributes": { "weight": 3 } }, { "key": "33478", "source": "135", "target": "1088", "attributes": { "weight": 1 } }, { "key": "33463", "source": "135", "target": "1834", "attributes": { "weight": 1 } }, { "key": "33458", "source": "135", "target": "1071", "attributes": { "weight": 1 } }, { "key": "300", "source": "135", "target": "134", "attributes": { "weight": 1 } }, { "key": "33451", "source": "135", "target": "222", "attributes": { "weight": 1 } }, { "key": "11947", "source": "135", "target": "1553", "attributes": { "weight": 3 } }, { "key": "32214", "source": "135", "target": "2670", "attributes": { "weight": 5 } }, { "key": "11940", "source": "135", "target": "1219", "attributes": { "weight": 2 } }, { "key": "11939", "source": "135", "target": "452", "attributes": { "weight": 3 } }, { "key": "11933", "source": "135", "target": "50", "attributes": { "weight": 2 } }, { "key": "32963", "source": "135", "target": "154", "attributes": { "weight": 1 } }, { "key": "11930", "source": "135", "target": "130", "attributes": { "weight": 6 } }, { "key": "16864", "source": "135", "target": "596", "attributes": { "weight": 1 } }, { "key": "16860", "source": "135", "target": "70", "attributes": { "weight": 1 } }, { "key": "11938", "source": "135", "target": "451", "attributes": { "weight": 5 } }, { "key": "33454", "source": "135", "target": "442", "attributes": { "weight": 1 } }, { "key": "33474", "source": "135", "target": "1087", "attributes": { "weight": 1 } }, { "key": "16855", "source": "135", "target": "1118", "attributes": { "weight": 1 } }, { "key": "11950", "source": "135", "target": "475", "attributes": { "weight": 2 } }, { "key": "11926", "source": "135", "target": "1354", "attributes": { "weight": 6 } }, { "key": "32210", "source": "135", "target": "424", "attributes": { "weight": 5 } }, { "key": "11960", "source": "135", "target": "496", "attributes": { "weight": 4 } }, { "key": "32744", "source": "135", "target": "1703", "attributes": { "weight": 3 } }, { "key": "12680", "source": "135", "target": "695", "attributes": { "weight": 1 } }, { "key": "33491", "source": "135", "target": "57", "attributes": { "weight": 1 } }, { "key": "533", "source": "135", "target": "234", "attributes": { "weight": 1 } }, { "key": "33453", "source": "135", "target": "425", "attributes": { "weight": 1 } }, { "key": "24085", "source": "135", "target": "1116", "attributes": { "weight": 2 } }, { "key": "32750", "source": "135", "target": "458", "attributes": { "weight": 3 } }, { "key": "33484", "source": "135", "target": "672", "attributes": { "weight": 1 } }, { "key": "16848", "source": "135", "target": "1754", "attributes": { "weight": 1 } }, { "key": "35564", "source": "135", "target": "392", "attributes": { "weight": 1 } }, { "key": "32757", "source": "135", "target": "2450", "attributes": { "weight": 2 } }, { "key": "33455", "source": "135", "target": "224", "attributes": { "weight": 1 } }, { "key": "33446", "source": "135", "target": "1141", "attributes": { "weight": 1 } }, { "key": "32743", "source": "135", "target": "857", "attributes": { "weight": 2 } }, { "key": "11928", "source": "135", "target": "220", "attributes": { "weight": 2 } }, { "key": "16850", "source": "135", "target": "59", "attributes": { "weight": 1 } }, { "key": "32753", "source": "135", "target": "1366", "attributes": { "weight": 3 } }, { "key": "11925", "source": "135", "target": "429", "attributes": { "weight": 6 } }, { "key": "11944", "source": "135", "target": "53", "attributes": { "weight": 7 } }, { "key": "32882", "source": "135", "target": "1744", "attributes": { "weight": 2 } }, { "key": "32745", "source": "135", "target": "858", "attributes": { "weight": 3 } }, { "key": "11353", "source": "135", "target": "1742", "attributes": { "weight": 1 } }, { "key": "32756", "source": "135", "target": "483", "attributes": { "weight": 3 } }, { "key": "5377", "source": "135", "target": "337", "attributes": { "weight": 5 } }, { "key": "32746", "source": "135", "target": "2644", "attributes": { "weight": 1 } }, { "key": "11954", "source": "135", "target": "487", "attributes": { "weight": 3 } }, { "key": "32752", "source": "135", "target": "462", "attributes": { "weight": 2 } }, { "key": "11945", "source": "135", "target": "1367", "attributes": { "weight": 4 } }, { "key": "18474", "source": "135", "target": "1738", "attributes": { "weight": 3 } }, { "key": "31539", "source": "135", "target": "3058", "attributes": { "weight": 1 } }, { "key": "33487", "source": "135", "target": "340", "attributes": { "weight": 1 } }, { "key": "11951", "source": "135", "target": "191", "attributes": { "weight": 3 } }, { "key": "16861", "source": "135", "target": "231", "attributes": { "weight": 6 } }, { "key": "9965", "source": "135", "target": "477", "attributes": { "weight": 3 } }, { "key": "33473", "source": "135", "target": "229", "attributes": { "weight": 1 } }, { "key": "33489", "source": "135", "target": "1375", "attributes": { "weight": 1 } }, { "key": "35565", "source": "135", "target": "1262", "attributes": { "weight": 1 } }, { "key": "11955", "source": "135", "target": "56", "attributes": { "weight": 8 } }, { "key": "30760", "source": "135", "target": "470", "attributes": { "weight": 3 } }, { "key": "32213", "source": "135", "target": "1368", "attributes": { "weight": 4 } }, { "key": "11957", "source": "135", "target": "492", "attributes": { "weight": 1 } }, { "key": "11953", "source": "135", "target": "480", "attributes": { "weight": 2 } }, { "key": "33490", "source": "135", "target": "500", "attributes": { "weight": 1 } }, { "key": "33456", "source": "135", "target": "3", "attributes": { "weight": 2 } }, { "key": "37109", "source": "135", "target": "359", "attributes": { "weight": 1 } }, { "key": "11927", "source": "135", "target": "430", "attributes": { "weight": 1 } }, { "key": "33457", "source": "135", "target": "183", "attributes": { "weight": 1 } }, { "key": "33481", "source": "135", "target": "2109", "attributes": { "weight": 1 } }, { "key": "11934", "source": "135", "target": "439", "attributes": { "weight": 2 } }, { "key": "17254", "source": "135", "target": "449", "attributes": { "weight": 2 } }, { "key": "33480", "source": "135", "target": "479", "attributes": { "weight": 1 } }, { "key": "532", "source": "135", "target": "225", "attributes": { "weight": 2 } }, { "key": "32966", "source": "135", "target": "1063", "attributes": { "weight": 1 } }, { "key": "33469", "source": "135", "target": "1258", "attributes": { "weight": 1 } }, { "key": "32755", "source": "135", "target": "1371", "attributes": { "weight": 2 } }, { "key": "16865", "source": "135", "target": "1389", "attributes": { "weight": 1 } }, { "key": "31540", "source": "135", "target": "427", "attributes": { "weight": 1 } }, { "key": "12823", "source": "135", "target": "785", "attributes": { "weight": 1 } }, { "key": "33460", "source": "135", "target": "52", "attributes": { "weight": 1 } }, { "key": "32554", "source": "135", "target": "232", "attributes": { "weight": 1 } }, { "key": "32758", "source": "135", "target": "1094", "attributes": { "weight": 2 } }, { "key": "32748", "source": "135", "target": "1070", "attributes": { "weight": 2 } }, { "key": "32747", "source": "135", "target": "443", "attributes": { "weight": 2 } }, { "key": "29895", "source": "135", "target": "1024", "attributes": { "weight": 1 } }, { "key": "11932", "source": "135", "target": "1158", "attributes": { "weight": 3 } }, { "key": "33475", "source": "135", "target": "189", "attributes": { "weight": 1 } }, { "key": "33468", "source": "135", "target": "469", "attributes": { "weight": 1 } }, { "key": "33485", "source": "135", "target": "1750", "attributes": { "weight": 1 } }, { "key": "17255", "source": "135", "target": "1838", "attributes": { "weight": 1 } }, { "key": "11936", "source": "135", "target": "447", "attributes": { "weight": 5 } }, { "key": "16856", "source": "135", "target": "457", "attributes": { "weight": 1 } }, { "key": "11958", "source": "135", "target": "1347", "attributes": { "weight": 3 } }, { "key": "17253", "source": "135", "target": "1161", "attributes": { "weight": 1 } }, { "key": "13255", "source": "135", "target": "304", "attributes": { "weight": 2 } }, { "key": "20327", "source": "135", "target": "2111", "attributes": { "weight": 1 } }, { "key": "20326", "source": "135", "target": "2108", "attributes": { "weight": 1 } }, { "key": "32751", "source": "135", "target": "460", "attributes": { "weight": 2 } }, { "key": "33488", "source": "135", "target": "495", "attributes": { "weight": 1 } }, { "key": "32553", "source": "135", "target": "791", "attributes": { "weight": 1 } }, { "key": "33470", "source": "135", "target": "228", "attributes": { "weight": 1 } }, { "key": "33477", "source": "135", "target": "1282", "attributes": { "weight": 1 } }, { "key": "33479", "source": "135", "target": "1026", "attributes": { "weight": 1 } }, { "key": "11959", "source": "135", "target": "494", "attributes": { "weight": 4 } }, { "key": "32965", "source": "135", "target": "377", "attributes": { "weight": 1 } }, { "key": "16857", "source": "135", "target": "459", "attributes": { "weight": 3 } }, { "key": "16862", "source": "135", "target": "488", "attributes": { "weight": 3 } }, { "key": "20328", "source": "135", "target": "1374", "attributes": { "weight": 2 } }, { "key": "32749", "source": "135", "target": "1357", "attributes": { "weight": 4 } }, { "key": "33486", "source": "135", "target": "233", "attributes": { "weight": 1 } }, { "key": "6866", "source": "135", "target": "192", "attributes": { "weight": 2 } }, { "key": "5378", "source": "135", "target": "208", "attributes": { "weight": 7 } }, { "key": "11935", "source": "135", "target": "387", "attributes": { "weight": 5 } }, { "key": "11952", "source": "135", "target": "1812", "attributes": { "weight": 5 } }, { "key": "33462", "source": "135", "target": "1361", "attributes": { "weight": 1 } }, { "key": "20325", "source": "135", "target": "2254", "attributes": { "weight": 1 } }, { "key": "16851", "source": "135", "target": "434", "attributes": { "weight": 2 } }, { "key": "30761", "source": "135", "target": "1370", "attributes": { "weight": 1 } }, { "key": "16859", "source": "135", "target": "54", "attributes": { "weight": 5 } }, { "key": "33465", "source": "135", "target": "1066", "attributes": { "weight": 1 } }, { "key": "33452", "source": "135", "target": "223", "attributes": { "weight": 1 } }, { "key": "37324", "source": "135", "target": "247", "attributes": { "weight": 1 } }, { "key": "11946", "source": "135", "target": "1611", "attributes": { "weight": 1 } }, { "key": "33471", "source": "135", "target": "471", "attributes": { "weight": 2 } }, { "key": "5379", "source": "135", "target": "218", "attributes": { "weight": 4 } }, { "key": "32754", "source": "135", "target": "372", "attributes": { "weight": 1 } }, { "key": "32211", "source": "135", "target": "860", "attributes": { "weight": 5 } }, { "key": "16854", "source": "135", "target": "1358", "attributes": { "weight": 5 } }, { "key": "33461", "source": "135", "target": "188", "attributes": { "weight": 1 } }, { "key": "11948", "source": "135", "target": "190", "attributes": { "weight": 4 } }, { "key": "16863", "source": "135", "target": "1337", "attributes": { "weight": 1 } }, { "key": "37368", "source": "135", "target": "1585", "attributes": { "weight": 1 } }, { "key": "16849", "source": "135", "target": "1755", "attributes": { "weight": 1 } }, { "key": "16853", "source": "135", "target": "674", "attributes": { "weight": 2 } }, { "key": "22878", "source": "135", "target": "1359", "attributes": { "weight": 1 } }, { "key": "16866", "source": "135", "target": "73", "attributes": { "weight": 1 } }, { "key": "33466", "source": "135", "target": "464", "attributes": { "weight": 1 } }, { "key": "11941", "source": "135", "target": "1536", "attributes": { "weight": 1 } }, { "key": "11924", "source": "135", "target": "1353", "attributes": { "weight": 9 } }, { "key": "33447", "source": "135", "target": "1107", "attributes": { "weight": 1 } }, { "key": "32964", "source": "135", "target": "333", "attributes": { "weight": 1 } }, { "key": "9964", "source": "135", "target": "445", "attributes": { "weight": 6 } }, { "key": "33459", "source": "135", "target": "1217", "attributes": { "weight": 1 } }, { "key": "32212", "source": "135", "target": "426", "attributes": { "weight": 5 } }, { "key": "11937", "source": "135", "target": "450", "attributes": { "weight": 2 } }, { "key": "33449", "source": "135", "target": "2645", "attributes": { "weight": 1 } }, { "key": "8844", "source": "136", "target": "442", "attributes": { "weight": 1 } }, { "key": "27875", "source": "136", "target": "339", "attributes": { "weight": 1 } }, { "key": "36239", "source": "136", "target": "1386", "attributes": { "weight": 1 } }, { "key": "11997", "source": "136", "target": "468", "attributes": { "weight": 3 } }, { "key": "10506", "source": "136", "target": "225", "attributes": { "weight": 1 } }, { "key": "17934", "source": "136", "target": "34", "attributes": { "weight": 4 } }, { "key": "30462", "source": "136", "target": "1046", "attributes": { "weight": 1 } }, { "key": "17484", "source": "136", "target": "358", "attributes": { "weight": 1 } }, { "key": "17935", "source": "136", "target": "1380", "attributes": { "weight": 1 } }, { "key": "35755", "source": "136", "target": "134", "attributes": { "weight": 1 } }, { "key": "17936", "source": "136", "target": "1544", "attributes": { "weight": 1 } }, { "key": "34509", "source": "136", "target": "1233", "attributes": { "weight": 1 } }, { "key": "35756", "source": "136", "target": "370", "attributes": { "weight": 1 } }, { "key": "303", "source": "136", "target": "133", "attributes": { "weight": 2 } }, { "key": "26618", "source": "136", "target": "454", "attributes": { "weight": 3 } }, { "key": "26060", "source": "136", "target": "163", "attributes": { "weight": 1 } }, { "key": "35752", "source": "136", "target": "3253", "attributes": { "weight": 1 } }, { "key": "304", "source": "136", "target": "138", "attributes": { "weight": 1 } }, { "key": "27543", "source": "136", "target": "1520", "attributes": { "weight": 1 } }, { "key": "35758", "source": "136", "target": "3259", "attributes": { "weight": 1 } }, { "key": "26619", "source": "136", "target": "1558", "attributes": { "weight": 4 } }, { "key": "32557", "source": "136", "target": "791", "attributes": { "weight": 1 } }, { "key": "30713", "source": "136", "target": "889", "attributes": { "weight": 1 } }, { "key": "301", "source": "136", "target": "35", "attributes": { "weight": 5 } }, { "key": "35750", "source": "136", "target": "3252", "attributes": { "weight": 1 } }, { "key": "26059", "source": "136", "target": "38", "attributes": { "weight": 2 } }, { "key": "35761", "source": "136", "target": "3261", "attributes": { "weight": 1 } }, { "key": "302", "source": "136", "target": "39", "attributes": { "weight": 1 } }, { "key": "35759", "source": "136", "target": "2696", "attributes": { "weight": 1 } }, { "key": "15424", "source": "136", "target": "36", "attributes": { "weight": 1 } }, { "key": "15425", "source": "136", "target": "1565", "attributes": { "weight": 1 } }, { "key": "35751", "source": "136", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35762", "source": "136", "target": "3262", "attributes": { "weight": 1 } }, { "key": "15964", "source": "136", "target": "195", "attributes": { "weight": 1 } }, { "key": "35753", "source": "136", "target": "3254", "attributes": { "weight": 1 } }, { "key": "35757", "source": "136", "target": "3258", "attributes": { "weight": 1 } }, { "key": "25875", "source": "136", "target": "220", "attributes": { "weight": 1 } }, { "key": "31044", "source": "136", "target": "638", "attributes": { "weight": 2 } }, { "key": "24094", "source": "136", "target": "471", "attributes": { "weight": 1 } }, { "key": "17937", "source": "136", "target": "40", "attributes": { "weight": 1 } }, { "key": "18070", "source": "136", "target": "1036", "attributes": { "weight": 1 } }, { "key": "35754", "source": "136", "target": "2169", "attributes": { "weight": 1 } }, { "key": "35760", "source": "136", "target": "3260", "attributes": { "weight": 1 } }, { "key": "10541", "source": "137", "target": "131", "attributes": { "weight": 1 } }, { "key": "306", "source": "137", "target": "39", "attributes": { "weight": 2 } }, { "key": "10542", "source": "137", "target": "225", "attributes": { "weight": 1 } }, { "key": "10543", "source": "137", "target": "1710", "attributes": { "weight": 1 } }, { "key": "305", "source": "137", "target": "132", "attributes": { "weight": 2 } }, { "key": "26740", "source": "138", "target": "223", "attributes": { "weight": 3 } }, { "key": "307", "source": "138", "target": "35", "attributes": { "weight": 4 } }, { "key": "308", "source": "138", "target": "134", "attributes": { "weight": 6 } }, { "key": "309", "source": "138", "target": "136", "attributes": { "weight": 1 } }, { "key": "17073", "source": "138", "target": "34", "attributes": { "weight": 1 } }, { "key": "10564", "source": "138", "target": "225", "attributes": { "weight": 1 } }, { "key": "311", "source": "139", "target": "148", "attributes": { "weight": 1 } }, { "key": "310", "source": "139", "target": "143", "attributes": { "weight": 1 } }, { "key": "312", "source": "140", "target": "156", "attributes": { "weight": 1 } }, { "key": "313", "source": "141", "target": "142", "attributes": { "weight": 1 } }, { "key": "315", "source": "141", "target": "154", "attributes": { "weight": 1 } }, { "key": "314", "source": "141", "target": "148", "attributes": { "weight": 1 } }, { "key": "321", "source": "142", "target": "155", "attributes": { "weight": 1 } }, { "key": "37337", "source": "142", "target": "3356", "attributes": { "weight": 1 } }, { "key": "318", "source": "142", "target": "151", "attributes": { "weight": 1 } }, { "key": "317", "source": "142", "target": "146", "attributes": { "weight": 1 } }, { "key": "316", "source": "142", "target": "141", "attributes": { "weight": 1 } }, { "key": "319", "source": "142", "target": "153", "attributes": { "weight": 1 } }, { "key": "320", "source": "142", "target": "154", "attributes": { "weight": 1 } }, { "key": "322", "source": "143", "target": "139", "attributes": { "weight": 1 } }, { "key": "323", "source": "143", "target": "159", "attributes": { "weight": 1 } }, { "key": "324", "source": "144", "target": "147", "attributes": { "weight": 1 } }, { "key": "325", "source": "144", "target": "150", "attributes": { "weight": 1 } }, { "key": "326", "source": "144", "target": "156", "attributes": { "weight": 1 } }, { "key": "330", "source": "145", "target": "160", "attributes": { "weight": 1 } }, { "key": "327", "source": "145", "target": "149", "attributes": { "weight": 1 } }, { "key": "329", "source": "145", "target": "158", "attributes": { "weight": 2 } }, { "key": "328", "source": "145", "target": "156", "attributes": { "weight": 1 } }, { "key": "332", "source": "146", "target": "153", "attributes": { "weight": 1 } }, { "key": "331", "source": "146", "target": "148", "attributes": { "weight": 1 } }, { "key": "333", "source": "146", "target": "156", "attributes": { "weight": 1 } }, { "key": "336", "source": "147", "target": "156", "attributes": { "weight": 1 } }, { "key": "334", "source": "147", "target": "144", "attributes": { "weight": 1 } }, { "key": "335", "source": "147", "target": "152", "attributes": { "weight": 1 } }, { "key": "337", "source": "148", "target": "139", "attributes": { "weight": 1 } }, { "key": "340", "source": "148", "target": "156", "attributes": { "weight": 1 } }, { "key": "339", "source": "148", "target": "146", "attributes": { "weight": 1 } }, { "key": "338", "source": "148", "target": "141", "attributes": { "weight": 1 } }, { "key": "342", "source": "149", "target": "154", "attributes": { "weight": 4 } }, { "key": "6514", "source": "149", "target": "1090", "attributes": { "weight": 2 } }, { "key": "341", "source": "149", "target": "145", "attributes": { "weight": 1 } }, { "key": "29280", "source": "149", "target": "158", "attributes": { "weight": 1 } }, { "key": "7504", "source": "149", "target": "1063", "attributes": { "weight": 2 } }, { "key": "34848", "source": "149", "target": "1047", "attributes": { "weight": 1 } }, { "key": "7503", "source": "149", "target": "375", "attributes": { "weight": 1 } }, { "key": "32991", "source": "149", "target": "372", "attributes": { "weight": 1 } }, { "key": "29278", "source": "149", "target": "2844", "attributes": { "weight": 1 } }, { "key": "7501", "source": "149", "target": "123", "attributes": { "weight": 2 } }, { "key": "32990", "source": "149", "target": "442", "attributes": { "weight": 1 } }, { "key": "29279", "source": "149", "target": "2845", "attributes": { "weight": 1 } }, { "key": "29277", "source": "149", "target": "1400", "attributes": { "weight": 1 } }, { "key": "29541", "source": "149", "target": "1415", "attributes": { "weight": 1 } }, { "key": "7505", "source": "149", "target": "160", "attributes": { "weight": 4 } }, { "key": "29276", "source": "149", "target": "1392", "attributes": { "weight": 2 } }, { "key": "29281", "source": "149", "target": "1425", "attributes": { "weight": 1 } }, { "key": "7502", "source": "149", "target": "1399", "attributes": { "weight": 1 } }, { "key": "344", "source": "150", "target": "157", "attributes": { "weight": 1 } }, { "key": "343", "source": "150", "target": "144", "attributes": { "weight": 1 } }, { "key": "346", "source": "151", "target": "153", "attributes": { "weight": 1 } }, { "key": "27768", "source": "151", "target": "625", "attributes": { "weight": 1 } }, { "key": "345", "source": "151", "target": "142", "attributes": { "weight": 1 } }, { "key": "348", "source": "152", "target": "156", "attributes": { "weight": 1 } }, { "key": "347", "source": "152", "target": "147", "attributes": { "weight": 1 } }, { "key": "349", "source": "153", "target": "142", "attributes": { "weight": 1 } }, { "key": "350", "source": "153", "target": "146", "attributes": { "weight": 1 } }, { "key": "351", "source": "153", "target": "151", "attributes": { "weight": 1 } }, { "key": "7553", "source": "154", "target": "338", "attributes": { "weight": 2 } }, { "key": "7582", "source": "154", "target": "57", "attributes": { "weight": 2 } }, { "key": "29317", "source": "154", "target": "158", "attributes": { "weight": 1 } }, { "key": "6518", "source": "154", "target": "368", "attributes": { "weight": 3 } }, { "key": "7580", "source": "154", "target": "160", "attributes": { "weight": 2 } }, { "key": "6517", "source": "154", "target": "1196", "attributes": { "weight": 3 } }, { "key": "7574", "source": "154", "target": "625", "attributes": { "weight": 2 } }, { "key": "6515", "source": "154", "target": "889", "attributes": { "weight": 3 } }, { "key": "33004", "source": "154", "target": "403", "attributes": { "weight": 1 } }, { "key": "7573", "source": "154", "target": "333", "attributes": { "weight": 2 } }, { "key": "33001", "source": "154", "target": "1087", "attributes": { "weight": 1 } }, { "key": "32993", "source": "154", "target": "429", "attributes": { "weight": 1 } }, { "key": "33003", "source": "154", "target": "1298", "attributes": { "weight": 1 } }, { "key": "355", "source": "154", "target": "155", "attributes": { "weight": 2 } }, { "key": "7548", "source": "154", "target": "52", "attributes": { "weight": 4 } }, { "key": "32999", "source": "154", "target": "470", "attributes": { "weight": 1 } }, { "key": "7577", "source": "154", "target": "1424", "attributes": { "weight": 1 } }, { "key": "7546", "source": "154", "target": "199", "attributes": { "weight": 3 } }, { "key": "7562", "source": "154", "target": "1377", "attributes": { "weight": 2 } }, { "key": "7563", "source": "154", "target": "1392", "attributes": { "weight": 1 } }, { "key": "6516", "source": "154", "target": "779", "attributes": { "weight": 2 } }, { "key": "7552", "source": "154", "target": "337", "attributes": { "weight": 2 } }, { "key": "7555", "source": "154", "target": "208", "attributes": { "weight": 2 } }, { "key": "6523", "source": "154", "target": "371", "attributes": { "weight": 3 } }, { "key": "7547", "source": "154", "target": "454", "attributes": { "weight": 2 } }, { "key": "7583", "source": "154", "target": "1429", "attributes": { "weight": 1 } }, { "key": "7541", "source": "154", "target": "387", "attributes": { "weight": 3 } }, { "key": "7581", "source": "154", "target": "1428", "attributes": { "weight": 1 } }, { "key": "6521", "source": "154", "target": "921", "attributes": { "weight": 6 } }, { "key": "7561", "source": "154", "target": "1388", "attributes": { "weight": 3 } }, { "key": "14167", "source": "154", "target": "1890", "attributes": { "weight": 1 } }, { "key": "7537", "source": "154", "target": "938", "attributes": { "weight": 2 } }, { "key": "7545", "source": "154", "target": "251", "attributes": { "weight": 1 } }, { "key": "352", "source": "154", "target": "141", "attributes": { "weight": 1 } }, { "key": "9143", "source": "154", "target": "195", "attributes": { "weight": 3 } }, { "key": "7535", "source": "154", "target": "1381", "attributes": { "weight": 1 } }, { "key": "10582", "source": "154", "target": "225", "attributes": { "weight": 1 } }, { "key": "7565", "source": "154", "target": "373", "attributes": { "weight": 2 } }, { "key": "32996", "source": "154", "target": "50", "attributes": { "weight": 1 } }, { "key": "7540", "source": "154", "target": "442", "attributes": { "weight": 6 } }, { "key": "7550", "source": "154", "target": "1232", "attributes": { "weight": 2 } }, { "key": "32998", "source": "154", "target": "135", "attributes": { "weight": 1 } }, { "key": "32997", "source": "154", "target": "452", "attributes": { "weight": 1 } }, { "key": "7569", "source": "154", "target": "1406", "attributes": { "weight": 1 } }, { "key": "7560", "source": "154", "target": "1323", "attributes": { "weight": 2 } }, { "key": "7551", "source": "154", "target": "1233", "attributes": { "weight": 2 } }, { "key": "9376", "source": "154", "target": "430", "attributes": { "weight": 1 } }, { "key": "2443", "source": "154", "target": "156", "attributes": { "weight": 1 } }, { "key": "33002", "source": "154", "target": "474", "attributes": { "weight": 1 } }, { "key": "7572", "source": "154", "target": "1416", "attributes": { "weight": 2 } }, { "key": "29601", "source": "154", "target": "2880", "attributes": { "weight": 1 } }, { "key": "7579", "source": "154", "target": "1063", "attributes": { "weight": 6 } }, { "key": "7556", "source": "154", "target": "189", "attributes": { "weight": 2 } }, { "key": "7557", "source": "154", "target": "783", "attributes": { "weight": 1 } }, { "key": "7564", "source": "154", "target": "1393", "attributes": { "weight": 1 } }, { "key": "7539", "source": "154", "target": "1383", "attributes": { "weight": 3 } }, { "key": "6522", "source": "154", "target": "468", "attributes": { "weight": 6 } }, { "key": "33005", "source": "154", "target": "233", "attributes": { "weight": 1 } }, { "key": "31490", "source": "154", "target": "1125", "attributes": { "weight": 1 } }, { "key": "7558", "source": "154", "target": "252", "attributes": { "weight": 1 } }, { "key": "21433", "source": "154", "target": "493", "attributes": { "weight": 1 } }, { "key": "7570", "source": "154", "target": "1413", "attributes": { "weight": 1 } }, { "key": "353", "source": "154", "target": "142", "attributes": { "weight": 1 } }, { "key": "7578", "source": "154", "target": "1425", "attributes": { "weight": 1 } }, { "key": "7571", "source": "154", "target": "1415", "attributes": { "weight": 2 } }, { "key": "7559", "source": "154", "target": "372", "attributes": { "weight": 3 } }, { "key": "6519", "source": "154", "target": "913", "attributes": { "weight": 4 } }, { "key": "33006", "source": "154", "target": "494", "attributes": { "weight": 1 } }, { "key": "32994", "source": "154", "target": "432", "attributes": { "weight": 1 } }, { "key": "354", "source": "154", "target": "149", "attributes": { "weight": 4 } }, { "key": "32995", "source": "154", "target": "130", "attributes": { "weight": 1 } }, { "key": "7575", "source": "154", "target": "377", "attributes": { "weight": 2 } }, { "key": "7544", "source": "154", "target": "1047", "attributes": { "weight": 2 } }, { "key": "7538", "source": "154", "target": "223", "attributes": { "weight": 4 } }, { "key": "7576", "source": "154", "target": "1422", "attributes": { "weight": 1 } }, { "key": "14166", "source": "154", "target": "1963", "attributes": { "weight": 1 } }, { "key": "9936", "source": "154", "target": "396", "attributes": { "weight": 1 } }, { "key": "6524", "source": "154", "target": "123", "attributes": { "weight": 6 } }, { "key": "7543", "source": "154", "target": "1197", "attributes": { "weight": 2 } }, { "key": "16403", "source": "154", "target": "925", "attributes": { "weight": 2 } }, { "key": "7567", "source": "154", "target": "1350", "attributes": { "weight": 2 } }, { "key": "7536", "source": "154", "target": "1156", "attributes": { "weight": 2 } }, { "key": "37360", "source": "154", "target": "3358", "attributes": { "weight": 1 } }, { "key": "7554", "source": "154", "target": "1262", "attributes": { "weight": 2 } }, { "key": "6520", "source": "154", "target": "370", "attributes": { "weight": 6 } }, { "key": "33000", "source": "154", "target": "228", "attributes": { "weight": 1 } }, { "key": "16402", "source": "154", "target": "220", "attributes": { "weight": 2 } }, { "key": "7542", "source": "154", "target": "389", "attributes": { "weight": 1 } }, { "key": "30491", "source": "154", "target": "1046", "attributes": { "weight": 1 } }, { "key": "6525", "source": "154", "target": "1090", "attributes": { "weight": 2 } }, { "key": "7568", "source": "154", "target": "375", "attributes": { "weight": 1 } }, { "key": "7549", "source": "154", "target": "1385", "attributes": { "weight": 3 } }, { "key": "7566", "source": "154", "target": "1397", "attributes": { "weight": 1 } }, { "key": "7584", "source": "155", "target": "1416", "attributes": { "weight": 2 } }, { "key": "356", "source": "155", "target": "142", "attributes": { "weight": 1 } }, { "key": "357", "source": "155", "target": "154", "attributes": { "weight": 2 } }, { "key": "360", "source": "156", "target": "144", "attributes": { "weight": 1 } }, { "key": "365", "source": "156", "target": "152", "attributes": { "weight": 1 } }, { "key": "361", "source": "156", "target": "145", "attributes": { "weight": 1 } }, { "key": "363", "source": "156", "target": "147", "attributes": { "weight": 1 } }, { "key": "362", "source": "156", "target": "146", "attributes": { "weight": 1 } }, { "key": "2446", "source": "156", "target": "154", "attributes": { "weight": 1 } }, { "key": "359", "source": "156", "target": "142", "attributes": { "weight": 1 } }, { "key": "364", "source": "156", "target": "148", "attributes": { "weight": 1 } }, { "key": "2445", "source": "156", "target": "615", "attributes": { "weight": 1 } }, { "key": "358", "source": "156", "target": "140", "attributes": { "weight": 1 } }, { "key": "366", "source": "157", "target": "150", "attributes": { "weight": 1 } }, { "key": "367", "source": "157", "target": "159", "attributes": { "weight": 1 } }, { "key": "7632", "source": "158", "target": "1423", "attributes": { "weight": 2 } }, { "key": "29320", "source": "158", "target": "2855", "attributes": { "weight": 1 } }, { "key": "29287", "source": "158", "target": "1393", "attributes": { "weight": 1 } }, { "key": "29318", "source": "158", "target": "2848", "attributes": { "weight": 1 } }, { "key": "29319", "source": "158", "target": "154", "attributes": { "weight": 1 } }, { "key": "29288", "source": "158", "target": "2845", "attributes": { "weight": 1 } }, { "key": "30114", "source": "158", "target": "1425", "attributes": { "weight": 1 } }, { "key": "29286", "source": "158", "target": "1392", "attributes": { "weight": 1 } }, { "key": "368", "source": "158", "target": "145", "attributes": { "weight": 2 } }, { "key": "369", "source": "158", "target": "160", "attributes": { "weight": 5 } }, { "key": "370", "source": "159", "target": "143", "attributes": { "weight": 1 } }, { "key": "371", "source": "159", "target": "157", "attributes": { "weight": 1 } }, { "key": "30116", "source": "160", "target": "2946", "attributes": { "weight": 2 } }, { "key": "29293", "source": "160", "target": "2843", "attributes": { "weight": 2 } }, { "key": "30117", "source": "160", "target": "2947", "attributes": { "weight": 1 } }, { "key": "29292", "source": "160", "target": "1393", "attributes": { "weight": 1 } }, { "key": "29295", "source": "160", "target": "1425", "attributes": { "weight": 2 } }, { "key": "36433", "source": "160", "target": "2948", "attributes": { "weight": 1 } }, { "key": "29294", "source": "160", "target": "2844", "attributes": { "weight": 1 } }, { "key": "7807", "source": "160", "target": "149", "attributes": { "weight": 4 } }, { "key": "372", "source": "160", "target": "145", "attributes": { "weight": 1 } }, { "key": "373", "source": "160", "target": "158", "attributes": { "weight": 5 } }, { "key": "7808", "source": "160", "target": "154", "attributes": { "weight": 2 } }, { "key": "374", "source": "161", "target": "358", "attributes": { "weight": 4 } }, { "key": "376", "source": "161", "target": "162", "attributes": { "weight": 4 } }, { "key": "8790", "source": "161", "target": "442", "attributes": { "weight": 1 } }, { "key": "24633", "source": "161", "target": "1538", "attributes": { "weight": 1 } }, { "key": "32530", "source": "161", "target": "791", "attributes": { "weight": 1 } }, { "key": "19081", "source": "161", "target": "2239", "attributes": { "weight": 1 } }, { "key": "17895", "source": "161", "target": "2168", "attributes": { "weight": 1 } }, { "key": "25868", "source": "161", "target": "163", "attributes": { "weight": 2 } }, { "key": "375", "source": "161", "target": "359", "attributes": { "weight": 1 } }, { "key": "17894", "source": "161", "target": "1380", "attributes": { "weight": 4 } }, { "key": "19080", "source": "161", "target": "2118", "attributes": { "weight": 2 } }, { "key": "25380", "source": "161", "target": "1782", "attributes": { "weight": 1 } }, { "key": "37084", "source": "162", "target": "2581", "attributes": { "weight": 1 } }, { "key": "15098", "source": "162", "target": "161", "attributes": { "weight": 2 } }, { "key": "11411", "source": "162", "target": "1788", "attributes": { "weight": 2 } }, { "key": "25384", "source": "162", "target": "2579", "attributes": { "weight": 2 } }, { "key": "37085", "source": "162", "target": "1782", "attributes": { "weight": 1 } }, { "key": "377", "source": "162", "target": "163", "attributes": { "weight": 1 } }, { "key": "33841", "source": "162", "target": "1133", "attributes": { "weight": 1 } }, { "key": "26084", "source": "163", "target": "2625", "attributes": { "weight": 2 } }, { "key": "26070", "source": "163", "target": "2167", "attributes": { "weight": 1 } }, { "key": "26079", "source": "163", "target": "1765", "attributes": { "weight": 1 } }, { "key": "8939", "source": "163", "target": "1551", "attributes": { "weight": 3 } }, { "key": "25885", "source": "163", "target": "1384", "attributes": { "weight": 2 } }, { "key": "26080", "source": "163", "target": "1387", "attributes": { "weight": 1 } }, { "key": "17952", "source": "163", "target": "1380", "attributes": { "weight": 4 } }, { "key": "11414", "source": "163", "target": "1788", "attributes": { "weight": 1 } }, { "key": "26081", "source": "163", "target": "136", "attributes": { "weight": 1 } }, { "key": "26083", "source": "163", "target": "1553", "attributes": { "weight": 2 } }, { "key": "25886", "source": "163", "target": "161", "attributes": { "weight": 2 } }, { "key": "1791", "source": "163", "target": "555", "attributes": { "weight": 2 } }, { "key": "26074", "source": "163", "target": "1133", "attributes": { "weight": 3 } }, { "key": "26077", "source": "163", "target": "638", "attributes": { "weight": 2 } }, { "key": "26068", "source": "163", "target": "2624", "attributes": { "weight": 1 } }, { "key": "26078", "source": "163", "target": "1541", "attributes": { "weight": 2 } }, { "key": "26087", "source": "163", "target": "1772", "attributes": { "weight": 1 } }, { "key": "1794", "source": "163", "target": "559", "attributes": { "weight": 1 } }, { "key": "11231", "source": "163", "target": "220", "attributes": { "weight": 3 } }, { "key": "26071", "source": "163", "target": "1527", "attributes": { "weight": 5 } }, { "key": "26072", "source": "163", "target": "419", "attributes": { "weight": 1 } }, { "key": "8936", "source": "163", "target": "1386", "attributes": { "weight": 4 } }, { "key": "25747", "source": "163", "target": "278", "attributes": { "weight": 2 } }, { "key": "26713", "source": "163", "target": "57", "attributes": { "weight": 3 } }, { "key": "17500", "source": "163", "target": "358", "attributes": { "weight": 4 } }, { "key": "14746", "source": "163", "target": "259", "attributes": { "weight": 2 } }, { "key": "22303", "source": "163", "target": "794", "attributes": { "weight": 1 } }, { "key": "24637", "source": "163", "target": "2118", "attributes": { "weight": 1 } }, { "key": "25883", "source": "163", "target": "1524", "attributes": { "weight": 2 } }, { "key": "26076", "source": "163", "target": "359", "attributes": { "weight": 2 } }, { "key": "34868", "source": "163", "target": "2511", "attributes": { "weight": 1 } }, { "key": "8935", "source": "163", "target": "1539", "attributes": { "weight": 3 } }, { "key": "26088", "source": "163", "target": "1567", "attributes": { "weight": 1 } }, { "key": "26067", "source": "163", "target": "35", "attributes": { "weight": 1 } }, { "key": "5738", "source": "163", "target": "468", "attributes": { "weight": 3 } }, { "key": "1792", "source": "163", "target": "556", "attributes": { "weight": 2 } }, { "key": "25882", "source": "163", "target": "1382", "attributes": { "weight": 2 } }, { "key": "8938", "source": "163", "target": "1550", "attributes": { "weight": 4 } }, { "key": "8937", "source": "163", "target": "1548", "attributes": { "weight": 3 } }, { "key": "37086", "source": "163", "target": "2581", "attributes": { "weight": 1 } }, { "key": "26086", "source": "163", "target": "2626", "attributes": { "weight": 2 } }, { "key": "26085", "source": "163", "target": "1557", "attributes": { "weight": 1 } }, { "key": "26069", "source": "163", "target": "36", "attributes": { "weight": 1 } }, { "key": "37087", "source": "163", "target": "1782", "attributes": { "weight": 1 } }, { "key": "7360", "source": "163", "target": "223", "attributes": { "weight": 4 } }, { "key": "8933", "source": "163", "target": "442", "attributes": { "weight": 2 } }, { "key": "3817", "source": "163", "target": "645", "attributes": { "weight": 2 } }, { "key": "1795", "source": "163", "target": "560", "attributes": { "weight": 4 } }, { "key": "27884", "source": "163", "target": "339", "attributes": { "weight": 1 } }, { "key": "11232", "source": "163", "target": "1036", "attributes": { "weight": 3 } }, { "key": "26075", "source": "163", "target": "1866", "attributes": { "weight": 1 } }, { "key": "26082", "source": "163", "target": "2177", "attributes": { "weight": 1 } }, { "key": "26089", "source": "163", "target": "562", "attributes": { "weight": 2 } }, { "key": "8934", "source": "163", "target": "1530", "attributes": { "weight": 3 } }, { "key": "30473", "source": "163", "target": "1046", "attributes": { "weight": 1 } }, { "key": "25884", "source": "163", "target": "1878", "attributes": { "weight": 2 } }, { "key": "14745", "source": "163", "target": "164", "attributes": { "weight": 3 } }, { "key": "26073", "source": "163", "target": "133", "attributes": { "weight": 1 } }, { "key": "1796", "source": "163", "target": "561", "attributes": { "weight": 2 } }, { "key": "26066", "source": "163", "target": "34", "attributes": { "weight": 1 } }, { "key": "1793", "source": "163", "target": "557", "attributes": { "weight": 2 } }, { "key": "378", "source": "163", "target": "162", "attributes": { "weight": 3 } }, { "key": "29211", "source": "163", "target": "791", "attributes": { "weight": 2 } }, { "key": "25887", "source": "163", "target": "1995", "attributes": { "weight": 2 } }, { "key": "12562", "source": "164", "target": "220", "attributes": { "weight": 3 } }, { "key": "23738", "source": "164", "target": "1774", "attributes": { "weight": 1 } }, { "key": "15410", "source": "164", "target": "569", "attributes": { "weight": 1 } }, { "key": "25541", "source": "164", "target": "175", "attributes": { "weight": 2 } }, { "key": "32251", "source": "164", "target": "1622", "attributes": { "weight": 1 } }, { "key": "13930", "source": "164", "target": "905", "attributes": { "weight": 1 } }, { "key": "32248", "source": "164", "target": "1191", "attributes": { "weight": 1 } }, { "key": "26119", "source": "164", "target": "1056", "attributes": { "weight": 1 } }, { "key": "25137", "source": "164", "target": "297", "attributes": { "weight": 3 } }, { "key": "29561", "source": "164", "target": "1611", "attributes": { "weight": 1 } }, { "key": "32263", "source": "164", "target": "1641", "attributes": { "weight": 1 } }, { "key": "2834", "source": "164", "target": "262", "attributes": { "weight": 2 } }, { "key": "24916", "source": "164", "target": "707", "attributes": { "weight": 4 } }, { "key": "27446", "source": "164", "target": "1567", "attributes": { "weight": 2 } }, { "key": "2097", "source": "164", "target": "419", "attributes": { "weight": 4 } }, { "key": "2393", "source": "164", "target": "278", "attributes": { "weight": 10 } }, { "key": "29838", "source": "164", "target": "1024", "attributes": { "weight": 1 } }, { "key": "3683", "source": "164", "target": "645", "attributes": { "weight": 5 } }, { "key": "14344", "source": "164", "target": "163", "attributes": { "weight": 3 } }, { "key": "34927", "source": "164", "target": "14", "attributes": { "weight": 1 } }, { "key": "17820", "source": "164", "target": "1380", "attributes": { "weight": 2 } }, { "key": "36946", "source": "164", "target": "362", "attributes": { "weight": 1 } }, { "key": "27901", "source": "164", "target": "299", "attributes": { "weight": 1 } }, { "key": "28700", "source": "164", "target": "578", "attributes": { "weight": 2 } }, { "key": "14341", "source": "164", "target": "260", "attributes": { "weight": 1 } }, { "key": "14346", "source": "164", "target": "179", "attributes": { "weight": 1 } }, { "key": "30645", "source": "164", "target": "361", "attributes": { "weight": 2 } }, { "key": "27900", "source": "164", "target": "287", "attributes": { "weight": 2 } }, { "key": "30820", "source": "164", "target": "19", "attributes": { "weight": 1 } }, { "key": "8457", "source": "164", "target": "442", "attributes": { "weight": 3 } }, { "key": "30821", "source": "164", "target": "13", "attributes": { "weight": 1 } }, { "key": "32253", "source": "164", "target": "421", "attributes": { "weight": 1 } }, { "key": "27899", "source": "164", "target": "264", "attributes": { "weight": 2 } }, { "key": "32255", "source": "164", "target": "2209", "attributes": { "weight": 1 } }, { "key": "27582", "source": "164", "target": "172", "attributes": { "weight": 2 } }, { "key": "32254", "source": "164", "target": "791", "attributes": { "weight": 2 } }, { "key": "34926", "source": "164", "target": "681", "attributes": { "weight": 1 } }, { "key": "14176", "source": "164", "target": "168", "attributes": { "weight": 12 } }, { "key": "32262", "source": "164", "target": "2016", "attributes": { "weight": 1 } }, { "key": "2096", "source": "164", "target": "354", "attributes": { "weight": 2 } }, { "key": "14342", "source": "164", "target": "263", "attributes": { "weight": 1 } }, { "key": "22663", "source": "164", "target": "1037", "attributes": { "weight": 3 } }, { "key": "13929", "source": "164", "target": "3", "attributes": { "weight": 3 } }, { "key": "24914", "source": "164", "target": "2004", "attributes": { "weight": 8 } }, { "key": "32258", "source": "164", "target": "471", "attributes": { "weight": 1 } }, { "key": "26401", "source": "164", "target": "454", "attributes": { "weight": 2 } }, { "key": "10800", "source": "164", "target": "457", "attributes": { "weight": 1 } }, { "key": "27580", "source": "164", "target": "889", "attributes": { "weight": 2 } }, { "key": "4358", "source": "164", "target": "580", "attributes": { "weight": 8 } }, { "key": "31249", "source": "164", "target": "674", "attributes": { "weight": 2 } }, { "key": "29562", "source": "164", "target": "2722", "attributes": { "weight": 1 } }, { "key": "26402", "source": "164", "target": "189", "attributes": { "weight": 2 } }, { "key": "31086", "source": "164", "target": "314", "attributes": { "weight": 1 } }, { "key": "32247", "source": "164", "target": "1166", "attributes": { "weight": 2 } }, { "key": "379", "source": "164", "target": "178", "attributes": { "weight": 10 } }, { "key": "32259", "source": "164", "target": "473", "attributes": { "weight": 1 } }, { "key": "14177", "source": "164", "target": "1763", "attributes": { "weight": 2 } }, { "key": "2966", "source": "164", "target": "176", "attributes": { "weight": 4 } }, { "key": "32250", "source": "164", "target": "452", "attributes": { "weight": 1 } }, { "key": "25571", "source": "164", "target": "655", "attributes": { "weight": 1 } }, { "key": "29565", "source": "164", "target": "1966", "attributes": { "weight": 2 } }, { "key": "11840", "source": "164", "target": "468", "attributes": { "weight": 4 } }, { "key": "28338", "source": "164", "target": "579", "attributes": { "weight": 2 } }, { "key": "16725", "source": "164", "target": "70", "attributes": { "weight": 3 } }, { "key": "17338", "source": "164", "target": "310", "attributes": { "weight": 4 } }, { "key": "32249", "source": "164", "target": "572", "attributes": { "weight": 1 } }, { "key": "32245", "source": "164", "target": "1146", "attributes": { "weight": 2 } }, { "key": "1023", "source": "164", "target": "357", "attributes": { "weight": 6 } }, { "key": "32257", "source": "164", "target": "661", "attributes": { "weight": 2 } }, { "key": "8459", "source": "164", "target": "1549", "attributes": { "weight": 4 } }, { "key": "12361", "source": "164", "target": "565", "attributes": { "weight": 2 } }, { "key": "14345", "source": "164", "target": "301", "attributes": { "weight": 2 } }, { "key": "12889", "source": "164", "target": "304", "attributes": { "weight": 3 } }, { "key": "35779", "source": "164", "target": "790", "attributes": { "weight": 1 } }, { "key": "24917", "source": "164", "target": "170", "attributes": { "weight": 4 } }, { "key": "30509", "source": "164", "target": "2987", "attributes": { "weight": 1 } }, { "key": "8458", "source": "164", "target": "1542", "attributes": { "weight": 8 } }, { "key": "6615", "source": "164", "target": "830", "attributes": { "weight": 10 } }, { "key": "25540", "source": "164", "target": "174", "attributes": { "weight": 4 } }, { "key": "30340", "source": "164", "target": "574", "attributes": { "weight": 4 } }, { "key": "14343", "source": "164", "target": "272", "attributes": { "weight": 2 } }, { "key": "26280", "source": "164", "target": "1642", "attributes": { "weight": 4 } }, { "key": "32246", "source": "164", "target": "644", "attributes": { "weight": 1 } }, { "key": "29566", "source": "164", "target": "2018", "attributes": { "weight": 2 } }, { "key": "31578", "source": "164", "target": "595", "attributes": { "weight": 1 } }, { "key": "24915", "source": "164", "target": "698", "attributes": { "weight": 2 } }, { "key": "29560", "source": "164", "target": "2870", "attributes": { "weight": 1 } }, { "key": "17337", "source": "164", "target": "358", "attributes": { "weight": 3 } }, { "key": "29564", "source": "164", "target": "2872", "attributes": { "weight": 1 } }, { "key": "12564", "source": "164", "target": "495", "attributes": { "weight": 3 } }, { "key": "25570", "source": "164", "target": "649", "attributes": { "weight": 1 } }, { "key": "14175", "source": "164", "target": "1042", "attributes": { "weight": 4 } }, { "key": "29563", "source": "164", "target": "2871", "attributes": { "weight": 1 } }, { "key": "30746", "source": "164", "target": "355", "attributes": { "weight": 1 } }, { "key": "27778", "source": "164", "target": "1926", "attributes": { "weight": 1 } }, { "key": "4357", "source": "164", "target": "171", "attributes": { "weight": 9 } }, { "key": "27581", "source": "164", "target": "339", "attributes": { "weight": 3 } }, { "key": "16724", "source": "164", "target": "59", "attributes": { "weight": 3 } }, { "key": "12563", "source": "164", "target": "180", "attributes": { "weight": 6 } }, { "key": "11013", "source": "164", "target": "1036", "attributes": { "weight": 3 } }, { "key": "31085", "source": "164", "target": "313", "attributes": { "weight": 1 } }, { "key": "14340", "source": "164", "target": "259", "attributes": { "weight": 6 } }, { "key": "32260", "source": "164", "target": "173", "attributes": { "weight": 2 } }, { "key": "32252", "source": "164", "target": "651", "attributes": { "weight": 1 } }, { "key": "30339", "source": "164", "target": "1046", "attributes": { "weight": 1 } }, { "key": "12890", "source": "164", "target": "312", "attributes": { "weight": 2 } }, { "key": "27357", "source": "164", "target": "340", "attributes": { "weight": 2 } }, { "key": "2394", "source": "164", "target": "582", "attributes": { "weight": 4 } }, { "key": "27218", "source": "164", "target": "57", "attributes": { "weight": 2 } }, { "key": "31391", "source": "164", "target": "223", "attributes": { "weight": 2 } }, { "key": "32261", "source": "164", "target": "177", "attributes": { "weight": 4 } }, { "key": "14348", "source": "164", "target": "327", "attributes": { "weight": 3 } }, { "key": "18051", "source": "164", "target": "687", "attributes": { "weight": 3 } }, { "key": "14347", "source": "164", "target": "322", "attributes": { "weight": 1 } }, { "key": "2835", "source": "164", "target": "169", "attributes": { "weight": 10 } }, { "key": "30974", "source": "164", "target": "638", "attributes": { "weight": 2 } }, { "key": "32256", "source": "164", "target": "1253", "attributes": { "weight": 1 } }, { "key": "1803", "source": "164", "target": "93", "attributes": { "weight": 4 } }, { "key": "3159", "source": "164", "target": "305", "attributes": { "weight": 5 } }, { "key": "22389", "source": "164", "target": "567", "attributes": { "weight": 3 } }, { "key": "25603", "source": "164", "target": "787", "attributes": { "weight": 1 } }, { "key": "25158", "source": "165", "target": "1143", "attributes": { "weight": 2 } }, { "key": "29803", "source": "165", "target": "93", "attributes": { "weight": 1 } }, { "key": "30194", "source": "165", "target": "2958", "attributes": { "weight": 2 } }, { "key": "25160", "source": "165", "target": "572", "attributes": { "weight": 2 } }, { "key": "27592", "source": "165", "target": "171", "attributes": { "weight": 1 } }, { "key": "30199", "source": "165", "target": "1341", "attributes": { "weight": 2 } }, { "key": "4946", "source": "165", "target": "310", "attributes": { "weight": 4 } }, { "key": "30195", "source": "165", "target": "2710", "attributes": { "weight": 2 } }, { "key": "17357", "source": "165", "target": "1151", "attributes": { "weight": 2 } }, { "key": "12329", "source": "165", "target": "1843", "attributes": { "weight": 2 } }, { "key": "4945", "source": "165", "target": "1166", "attributes": { "weight": 6 } }, { "key": "25159", "source": "165", "target": "1187", "attributes": { "weight": 2 } }, { "key": "17358", "source": "165", "target": "2964", "attributes": { "weight": 3 } }, { "key": "32632", "source": "165", "target": "3109", "attributes": { "weight": 1 } }, { "key": "30197", "source": "165", "target": "2805", "attributes": { "weight": 2 } }, { "key": "30196", "source": "165", "target": "2934", "attributes": { "weight": 2 } }, { "key": "30198", "source": "165", "target": "173", "attributes": { "weight": 2 } }, { "key": "25161", "source": "165", "target": "297", "attributes": { "weight": 3 } }, { "key": "380", "source": "165", "target": "178", "attributes": { "weight": 4 } }, { "key": "32631", "source": "165", "target": "3107", "attributes": { "weight": 1 } }, { "key": "13082", "source": "166", "target": "300", "attributes": { "weight": 5 } }, { "key": "14573", "source": "166", "target": "301", "attributes": { "weight": 4 } }, { "key": "13079", "source": "166", "target": "259", "attributes": { "weight": 5 } }, { "key": "22922", "source": "166", "target": "1971", "attributes": { "weight": 1 } }, { "key": "13083", "source": "166", "target": "304", "attributes": { "weight": 5 } }, { "key": "22930", "source": "166", "target": "334", "attributes": { "weight": 1 } }, { "key": "13084", "source": "166", "target": "312", "attributes": { "weight": 4 } }, { "key": "14576", "source": "166", "target": "327", "attributes": { "weight": 3 } }, { "key": "13085", "source": "166", "target": "316", "attributes": { "weight": 2 } }, { "key": "737", "source": "166", "target": "167", "attributes": { "weight": 7 } }, { "key": "22928", "source": "166", "target": "179", "attributes": { "weight": 1 } }, { "key": "22925", "source": "166", "target": "289", "attributes": { "weight": 3 } }, { "key": "22927", "source": "166", "target": "1919", "attributes": { "weight": 1 } }, { "key": "22923", "source": "166", "target": "258", "attributes": { "weight": 1 } }, { "key": "14575", "source": "166", "target": "322", "attributes": { "weight": 3 } }, { "key": "22929", "source": "166", "target": "1872", "attributes": { "weight": 1 } }, { "key": "23427", "source": "166", "target": "286", "attributes": { "weight": 3 } }, { "key": "23428", "source": "166", "target": "318", "attributes": { "weight": 1 } }, { "key": "24783", "source": "166", "target": "326", "attributes": { "weight": 1 } }, { "key": "738", "source": "166", "target": "299", "attributes": { "weight": 2 } }, { "key": "735", "source": "166", "target": "262", "attributes": { "weight": 5 } }, { "key": "23425", "source": "166", "target": "1898", "attributes": { "weight": 1 } }, { "key": "739", "source": "166", "target": "336", "attributes": { "weight": 3 } }, { "key": "736", "source": "166", "target": "264", "attributes": { "weight": 5 } }, { "key": "22926", "source": "166", "target": "290", "attributes": { "weight": 3 } }, { "key": "381", "source": "166", "target": "178", "attributes": { "weight": 3 } }, { "key": "14203", "source": "166", "target": "168", "attributes": { "weight": 4 } }, { "key": "14572", "source": "166", "target": "263", "attributes": { "weight": 4 } }, { "key": "22924", "source": "166", "target": "901", "attributes": { "weight": 1 } }, { "key": "13936", "source": "166", "target": "180", "attributes": { "weight": 2 } }, { "key": "28641", "source": "166", "target": "321", "attributes": { "weight": 1 } }, { "key": "23274", "source": "166", "target": "839", "attributes": { "weight": 1 } }, { "key": "23426", "source": "166", "target": "276", "attributes": { "weight": 1 } }, { "key": "13081", "source": "166", "target": "272", "attributes": { "weight": 5 } }, { "key": "2876", "source": "166", "target": "287", "attributes": { "weight": 4 } }, { "key": "22931", "source": "166", "target": "908", "attributes": { "weight": 1 } }, { "key": "13080", "source": "166", "target": "260", "attributes": { "weight": 5 } }, { "key": "14574", "source": "166", "target": "305", "attributes": { "weight": 5 } }, { "key": "14601", "source": "167", "target": "336", "attributes": { "weight": 1 } }, { "key": "14597", "source": "167", "target": "277", "attributes": { "weight": 3 } }, { "key": "22216", "source": "167", "target": "1903", "attributes": { "weight": 1 } }, { "key": "14600", "source": "167", "target": "322", "attributes": { "weight": 5 } }, { "key": "8200", "source": "167", "target": "1513", "attributes": { "weight": 2 } }, { "key": "13114", "source": "167", "target": "292", "attributes": { "weight": 5 } }, { "key": "27961", "source": "167", "target": "295", "attributes": { "weight": 1 } }, { "key": "22946", "source": "167", "target": "179", "attributes": { "weight": 2 } }, { "key": "30448", "source": "167", "target": "1046", "attributes": { "weight": 1 } }, { "key": "13115", "source": "167", "target": "578", "attributes": { "weight": 4 } }, { "key": "24788", "source": "167", "target": "1925", "attributes": { "weight": 1 } }, { "key": "3179", "source": "167", "target": "311", "attributes": { "weight": 8 } }, { "key": "13116", "source": "167", "target": "301", "attributes": { "weight": 4 } }, { "key": "12434", "source": "167", "target": "263", "attributes": { "weight": 5 } }, { "key": "13104", "source": "167", "target": "258", "attributes": { "weight": 2 } }, { "key": "750", "source": "167", "target": "318", "attributes": { "weight": 5 } }, { "key": "18387", "source": "167", "target": "1621", "attributes": { "weight": 1 } }, { "key": "14595", "source": "167", "target": "261", "attributes": { "weight": 3 } }, { "key": "3176", "source": "167", "target": "290", "attributes": { "weight": 8 } }, { "key": "14599", "source": "167", "target": "319", "attributes": { "weight": 1 } }, { "key": "3180", "source": "167", "target": "312", "attributes": { "weight": 7 } }, { "key": "14598", "source": "167", "target": "1987", "attributes": { "weight": 1 } }, { "key": "14596", "source": "167", "target": "272", "attributes": { "weight": 2 } }, { "key": "27959", "source": "167", "target": "169", "attributes": { "weight": 1 } }, { "key": "8199", "source": "167", "target": "905", "attributes": { "weight": 2 } }, { "key": "25691", "source": "167", "target": "696", "attributes": { "weight": 2 } }, { "key": "22217", "source": "167", "target": "1929", "attributes": { "weight": 1 } }, { "key": "13119", "source": "167", "target": "582", "attributes": { "weight": 2 } }, { "key": "23433", "source": "167", "target": "1915", "attributes": { "weight": 1 } }, { "key": "748", "source": "167", "target": "289", "attributes": { "weight": 6 } }, { "key": "22945", "source": "167", "target": "270", "attributes": { "weight": 1 } }, { "key": "13118", "source": "167", "target": "304", "attributes": { "weight": 8 } }, { "key": "35494", "source": "167", "target": "1857", "attributes": { "weight": 1 } }, { "key": "12579", "source": "167", "target": "180", "attributes": { "weight": 3 } }, { "key": "13109", "source": "167", "target": "278", "attributes": { "weight": 2 } }, { "key": "14594", "source": "167", "target": "220", "attributes": { "weight": 2 } }, { "key": "13106", "source": "167", "target": "1904", "attributes": { "weight": 2 } }, { "key": "13125", "source": "167", "target": "1854", "attributes": { "weight": 2 } }, { "key": "13122", "source": "167", "target": "326", "attributes": { "weight": 7 } }, { "key": "13112", "source": "167", "target": "170", "attributes": { "weight": 2 } }, { "key": "13107", "source": "167", "target": "275", "attributes": { "weight": 4 } }, { "key": "27960", "source": "167", "target": "1984", "attributes": { "weight": 1 } }, { "key": "27962", "source": "167", "target": "1919", "attributes": { "weight": 1 } }, { "key": "24786", "source": "167", "target": "269", "attributes": { "weight": 1 } }, { "key": "13124", "source": "167", "target": "1931", "attributes": { "weight": 2 } }, { "key": "15104", "source": "167", "target": "171", "attributes": { "weight": 1 } }, { "key": "13117", "source": "167", "target": "580", "attributes": { "weight": 2 } }, { "key": "9580", "source": "167", "target": "564", "attributes": { "weight": 1 } }, { "key": "747", "source": "167", "target": "166", "attributes": { "weight": 7 } }, { "key": "13111", "source": "167", "target": "283", "attributes": { "weight": 4 } }, { "key": "2881", "source": "167", "target": "287", "attributes": { "weight": 8 } }, { "key": "745", "source": "167", "target": "264", "attributes": { "weight": 9 } }, { "key": "3178", "source": "167", "target": "308", "attributes": { "weight": 7 } }, { "key": "382", "source": "167", "target": "178", "attributes": { "weight": 1 } }, { "key": "13123", "source": "167", "target": "327", "attributes": { "weight": 5 } }, { "key": "24789", "source": "167", "target": "331", "attributes": { "weight": 1 } }, { "key": "13121", "source": "167", "target": "314", "attributes": { "weight": 4 } }, { "key": "13105", "source": "167", "target": "259", "attributes": { "weight": 10 } }, { "key": "24787", "source": "167", "target": "281", "attributes": { "weight": 1 } }, { "key": "18386", "source": "167", "target": "830", "attributes": { "weight": 1 } }, { "key": "22597", "source": "167", "target": "315", "attributes": { "weight": 1 } }, { "key": "744", "source": "167", "target": "262", "attributes": { "weight": 6 } }, { "key": "2882", "source": "167", "target": "288", "attributes": { "weight": 1 } }, { "key": "23434", "source": "167", "target": "2449", "attributes": { "weight": 1 } }, { "key": "13120", "source": "167", "target": "313", "attributes": { "weight": 9 } }, { "key": "743", "source": "167", "target": "260", "attributes": { "weight": 10 } }, { "key": "746", "source": "167", "target": "268", "attributes": { "weight": 10 } }, { "key": "13113", "source": "167", "target": "291", "attributes": { "weight": 4 } }, { "key": "3177", "source": "167", "target": "307", "attributes": { "weight": 7 } }, { "key": "749", "source": "167", "target": "316", "attributes": { "weight": 5 } }, { "key": "13108", "source": "167", "target": "168", "attributes": { "weight": 7 } }, { "key": "25564", "source": "168", "target": "174", "attributes": { "weight": 1 } }, { "key": "14209", "source": "168", "target": "164", "attributes": { "weight": 12 } }, { "key": "2404", "source": "168", "target": "278", "attributes": { "weight": 10 } }, { "key": "12349", "source": "168", "target": "357", "attributes": { "weight": 3 } }, { "key": "14232", "source": "168", "target": "638", "attributes": { "weight": 2 } }, { "key": "383", "source": "168", "target": "178", "attributes": { "weight": 8 } }, { "key": "14211", "source": "168", "target": "259", "attributes": { "weight": 3 } }, { "key": "10886", "source": "168", "target": "297", "attributes": { "weight": 3 } }, { "key": "27734", "source": "168", "target": "1553", "attributes": { "weight": 1 } }, { "key": "14604", "source": "168", "target": "307", "attributes": { "weight": 1 } }, { "key": "29948", "source": "168", "target": "1952", "attributes": { "weight": 1 } }, { "key": "31604", "source": "168", "target": "595", "attributes": { "weight": 1 } }, { "key": "8766", "source": "168", "target": "442", "attributes": { "weight": 3 } }, { "key": "14244", "source": "168", "target": "172", "attributes": { "weight": 3 } }, { "key": "14208", "source": "168", "target": "1036", "attributes": { "weight": 3 } }, { "key": "12376", "source": "168", "target": "565", "attributes": { "weight": 2 } }, { "key": "14221", "source": "168", "target": "572", "attributes": { "weight": 5 } }, { "key": "14210", "source": "168", "target": "644", "attributes": { "weight": 2 } }, { "key": "27972", "source": "168", "target": "1984", "attributes": { "weight": 1 } }, { "key": "14233", "source": "168", "target": "1965", "attributes": { "weight": 2 } }, { "key": "30887", "source": "168", "target": "13", "attributes": { "weight": 1 } }, { "key": "13129", "source": "168", "target": "167", "attributes": { "weight": 7 } }, { "key": "14241", "source": "168", "target": "579", "attributes": { "weight": 3 } }, { "key": "1862", "source": "168", "target": "569", "attributes": { "weight": 3 } }, { "key": "14214", "source": "168", "target": "697", "attributes": { "weight": 2 } }, { "key": "27973", "source": "168", "target": "314", "attributes": { "weight": 1 } }, { "key": "14229", "source": "168", "target": "169", "attributes": { "weight": 5 } }, { "key": "13132", "source": "168", "target": "322", "attributes": { "weight": 4 } }, { "key": "14219", "source": "168", "target": "3", "attributes": { "weight": 3 } }, { "key": "26583", "source": "168", "target": "189", "attributes": { "weight": 1 } }, { "key": "14249", "source": "168", "target": "1637", "attributes": { "weight": 1 } }, { "key": "18388", "source": "168", "target": "1621", "attributes": { "weight": 1 } }, { "key": "14222", "source": "168", "target": "358", "attributes": { "weight": 2 } }, { "key": "752", "source": "168", "target": "331", "attributes": { "weight": 1 } }, { "key": "25614", "source": "168", "target": "787", "attributes": { "weight": 1 } }, { "key": "13127", "source": "168", "target": "262", "attributes": { "weight": 5 } }, { "key": "34218", "source": "168", "target": "700", "attributes": { "weight": 1 } }, { "key": "751", "source": "168", "target": "264", "attributes": { "weight": 6 } }, { "key": "14225", "source": "168", "target": "454", "attributes": { "weight": 2 } }, { "key": "25565", "source": "168", "target": "175", "attributes": { "weight": 1 } }, { "key": "9582", "source": "168", "target": "171", "attributes": { "weight": 3 } }, { "key": "1863", "source": "168", "target": "576", "attributes": { "weight": 1 } }, { "key": "14239", "source": "168", "target": "1280", "attributes": { "weight": 2 } }, { "key": "14605", "source": "168", "target": "179", "attributes": { "weight": 1 } }, { "key": "753", "source": "168", "target": "334", "attributes": { "weight": 1 } }, { "key": "14245", "source": "168", "target": "173", "attributes": { "weight": 1 } }, { "key": "27975", "source": "168", "target": "1854", "attributes": { "weight": 1 } }, { "key": "14236", "source": "168", "target": "661", "attributes": { "weight": 1 } }, { "key": "1864", "source": "168", "target": "93", "attributes": { "weight": 4 } }, { "key": "14207", "source": "168", "target": "220", "attributes": { "weight": 2 } }, { "key": "14223", "source": "168", "target": "452", "attributes": { "weight": 1 } }, { "key": "3777", "source": "168", "target": "419", "attributes": { "weight": 5 } }, { "key": "14248", "source": "168", "target": "839", "attributes": { "weight": 5 } }, { "key": "14255", "source": "168", "target": "326", "attributes": { "weight": 3 } }, { "key": "27974", "source": "168", "target": "323", "attributes": { "weight": 1 } }, { "key": "14243", "source": "168", "target": "1512", "attributes": { "weight": 3 } }, { "key": "9464", "source": "168", "target": "170", "attributes": { "weight": 6 } }, { "key": "10887", "source": "168", "target": "310", "attributes": { "weight": 3 } }, { "key": "32391", "source": "168", "target": "791", "attributes": { "weight": 1 } }, { "key": "14218", "source": "168", "target": "1857", "attributes": { "weight": 2 } }, { "key": "14237", "source": "168", "target": "1611", "attributes": { "weight": 2 } }, { "key": "3183", "source": "168", "target": "305", "attributes": { "weight": 7 } }, { "key": "23719", "source": "168", "target": "1820", "attributes": { "weight": 1 } }, { "key": "14603", "source": "168", "target": "1510", "attributes": { "weight": 1 } }, { "key": "13128", "source": "168", "target": "268", "attributes": { "weight": 2 } }, { "key": "27967", "source": "168", "target": "276", "attributes": { "weight": 1 } }, { "key": "27363", "source": "168", "target": "340", "attributes": { "weight": 1 } }, { "key": "23721", "source": "168", "target": "301", "attributes": { "weight": 1 } }, { "key": "12581", "source": "168", "target": "180", "attributes": { "weight": 6 } }, { "key": "14254", "source": "168", "target": "321", "attributes": { "weight": 3 } }, { "key": "14240", "source": "168", "target": "299", "attributes": { "weight": 4 } }, { "key": "14215", "source": "168", "target": "830", "attributes": { "weight": 4 } }, { "key": "11885", "source": "168", "target": "468", "attributes": { "weight": 3 } }, { "key": "27558", "source": "168", "target": "1928", "attributes": { "weight": 1 } }, { "key": "14227", "source": "168", "target": "166", "attributes": { "weight": 4 } }, { "key": "13939", "source": "168", "target": "905", "attributes": { "weight": 3 } }, { "key": "7304", "source": "168", "target": "1063", "attributes": { "weight": 2 } }, { "key": "14234", "source": "168", "target": "287", "attributes": { "weight": 4 } }, { "key": "14242", "source": "168", "target": "300", "attributes": { "weight": 6 } }, { "key": "14228", "source": "168", "target": "574", "attributes": { "weight": 4 } }, { "key": "30646", "source": "168", "target": "361", "attributes": { "weight": 1 } }, { "key": "8201", "source": "168", "target": "1513", "attributes": { "weight": 3 } }, { "key": "14216", "source": "168", "target": "263", "attributes": { "weight": 2 } }, { "key": "14251", "source": "168", "target": "313", "attributes": { "weight": 2 } }, { "key": "23723", "source": "168", "target": "329", "attributes": { "weight": 1 } }, { "key": "14226", "source": "168", "target": "698", "attributes": { "weight": 3 } }, { "key": "14256", "source": "168", "target": "327", "attributes": { "weight": 5 } }, { "key": "13940", "source": "168", "target": "1961", "attributes": { "weight": 1 } }, { "key": "10883", "source": "168", "target": "1166", "attributes": { "weight": 3 } }, { "key": "9581", "source": "168", "target": "564", "attributes": { "weight": 5 } }, { "key": "13131", "source": "168", "target": "316", "attributes": { "weight": 3 } }, { "key": "17890", "source": "168", "target": "1380", "attributes": { "weight": 1 } }, { "key": "27971", "source": "168", "target": "292", "attributes": { "weight": 1 } }, { "key": "25566", "source": "168", "target": "176", "attributes": { "weight": 1 } }, { "key": "27968", "source": "168", "target": "902", "attributes": { "weight": 1 } }, { "key": "7303", "source": "168", "target": "333", "attributes": { "weight": 2 } }, { "key": "5099", "source": "168", "target": "123", "attributes": { "weight": 3 } }, { "key": "5097", "source": "168", "target": "338", "attributes": { "weight": 2 } }, { "key": "14213", "source": "168", "target": "260", "attributes": { "weight": 3 } }, { "key": "10885", "source": "168", "target": "457", "attributes": { "weight": 1 } }, { "key": "12847", "source": "168", "target": "582", "attributes": { "weight": 4 } }, { "key": "13130", "source": "168", "target": "304", "attributes": { "weight": 6 } }, { "key": "27976", "source": "168", "target": "1515", "attributes": { "weight": 1 } }, { "key": "5100", "source": "168", "target": "1323", "attributes": { "weight": 6 } }, { "key": "14205", "source": "168", "target": "1143", "attributes": { "weight": 1 } }, { "key": "14231", "source": "168", "target": "651", "attributes": { "weight": 1 } }, { "key": "14217", "source": "168", "target": "1191", "attributes": { "weight": 2 } }, { "key": "5095", "source": "168", "target": "1047", "attributes": { "weight": 3 } }, { "key": "27261", "source": "168", "target": "57", "attributes": { "weight": 1 } }, { "key": "14252", "source": "168", "target": "1966", "attributes": { "weight": 2 } }, { "key": "14247", "source": "168", "target": "177", "attributes": { "weight": 4 } }, { "key": "14206", "source": "168", "target": "1146", "attributes": { "weight": 3 } }, { "key": "14235", "source": "168", "target": "290", "attributes": { "weight": 3 } }, { "key": "14224", "source": "168", "target": "272", "attributes": { "weight": 4 } }, { "key": "14212", "source": "168", "target": "354", "attributes": { "weight": 2 } }, { "key": "14250", "source": "168", "target": "311", "attributes": { "weight": 3 } }, { "key": "10884", "source": "168", "target": "1187", "attributes": { "weight": 4 } }, { "key": "27970", "source": "168", "target": "286", "attributes": { "weight": 1 } }, { "key": "27783", "source": "168", "target": "1926", "attributes": { "weight": 2 } }, { "key": "1861", "source": "168", "target": "566", "attributes": { "weight": 3 } }, { "key": "14230", "source": "168", "target": "707", "attributes": { "weight": 4 } }, { "key": "23722", "source": "168", "target": "318", "attributes": { "weight": 2 } }, { "key": "3776", "source": "168", "target": "645", "attributes": { "weight": 3 } }, { "key": "14220", "source": "168", "target": "1046", "attributes": { "weight": 2 } }, { "key": "14253", "source": "168", "target": "1967", "attributes": { "weight": 2 } }, { "key": "27557", "source": "168", "target": "283", "attributes": { "weight": 2 } }, { "key": "5096", "source": "168", "target": "370", "attributes": { "weight": 2 } }, { "key": "13938", "source": "168", "target": "567", "attributes": { "weight": 4 } }, { "key": "14238", "source": "168", "target": "473", "attributes": { "weight": 1 } }, { "key": "14246", "source": "168", "target": "1060", "attributes": { "weight": 1 } }, { "key": "5098", "source": "168", "target": "580", "attributes": { "weight": 5 } }, { "key": "23720", "source": "168", "target": "289", "attributes": { "weight": 1 } }, { "key": "3184", "source": "169", "target": "305", "attributes": { "weight": 4 } }, { "key": "29568", "source": "169", "target": "1966", "attributes": { "weight": 1 } }, { "key": "9583", "source": "169", "target": "171", "attributes": { "weight": 5 } }, { "key": "13133", "source": "169", "target": "304", "attributes": { "weight": 2 } }, { "key": "29569", "source": "169", "target": "2873", "attributes": { "weight": 1 } }, { "key": "27977", "source": "169", "target": "167", "attributes": { "weight": 1 } }, { "key": "384", "source": "169", "target": "178", "attributes": { "weight": 6 } }, { "key": "17464", "source": "169", "target": "358", "attributes": { "weight": 1 } }, { "key": "35374", "source": "169", "target": "173", "attributes": { "weight": 1 } }, { "key": "34976", "source": "169", "target": "3", "attributes": { "weight": 1 } }, { "key": "14607", "source": "169", "target": "289", "attributes": { "weight": 1 } }, { "key": "18390", "source": "169", "target": "2018", "attributes": { "weight": 1 } }, { "key": "14608", "source": "169", "target": "312", "attributes": { "weight": 1 } }, { "key": "14257", "source": "169", "target": "168", "attributes": { "weight": 5 } }, { "key": "34980", "source": "169", "target": "352", "attributes": { "weight": 1 } }, { "key": "25167", "source": "169", "target": "310", "attributes": { "weight": 1 } }, { "key": "21468", "source": "169", "target": "172", "attributes": { "weight": 2 } }, { "key": "2838", "source": "169", "target": "164", "attributes": { "weight": 13 } }, { "key": "25166", "source": "169", "target": "297", "attributes": { "weight": 1 } }, { "key": "34979", "source": "169", "target": "14", "attributes": { "weight": 1 } }, { "key": "2839", "source": "169", "target": "278", "attributes": { "weight": 4 } }, { "key": "754", "source": "169", "target": "262", "attributes": { "weight": 2 } }, { "key": "34978", "source": "169", "target": "13", "attributes": { "weight": 1 } }, { "key": "34977", "source": "169", "target": "8", "attributes": { "weight": 1 } }, { "key": "27978", "source": "169", "target": "287", "attributes": { "weight": 1 } }, { "key": "14606", "source": "169", "target": "259", "attributes": { "weight": 1 } }, { "key": "18389", "source": "169", "target": "830", "attributes": { "weight": 2 } }, { "key": "15181", "source": "169", "target": "1621", "attributes": { "weight": 4 } }, { "key": "30556", "source": "169", "target": "567", "attributes": { "weight": 1 } }, { "key": "1865", "source": "169", "target": "93", "attributes": { "weight": 1 } }, { "key": "6817", "source": "169", "target": "1036", "attributes": { "weight": 2 } }, { "key": "755", "source": "169", "target": "264", "attributes": { "weight": 1 } }, { "key": "25872", "source": "170", "target": "220", "attributes": { "weight": 1 } }, { "key": "28416", "source": "170", "target": "1323", "attributes": { "weight": 2 } }, { "key": "22694", "source": "170", "target": "1512", "attributes": { "weight": 4 } }, { "key": "31072", "source": "170", "target": "2745", "attributes": { "weight": 1 } }, { "key": "14676", "source": "170", "target": "277", "attributes": { "weight": 1 } }, { "key": "28414", "source": "170", "target": "791", "attributes": { "weight": 2 } }, { "key": "25005", "source": "170", "target": "1187", "attributes": { "weight": 3 } }, { "key": "25006", "source": "170", "target": "1046", "attributes": { "weight": 3 } }, { "key": "27750", "source": "170", "target": "1820", "attributes": { "weight": 1 } }, { "key": "386", "source": "170", "target": "180", "attributes": { "weight": 8 } }, { "key": "22693", "source": "170", "target": "580", "attributes": { "weight": 4 } }, { "key": "2457", "source": "170", "target": "707", "attributes": { "weight": 3 } }, { "key": "25010", "source": "170", "target": "177", "attributes": { "weight": 2 } }, { "key": "17474", "source": "170", "target": "358", "attributes": { "weight": 2 } }, { "key": "25009", "source": "170", "target": "1996", "attributes": { "weight": 3 } }, { "key": "2414", "source": "170", "target": "278", "attributes": { "weight": 7 } }, { "key": "14675", "source": "170", "target": "259", "attributes": { "weight": 2 } }, { "key": "12849", "source": "170", "target": "582", "attributes": { "weight": 5 } }, { "key": "25011", "source": "170", "target": "1854", "attributes": { "weight": 2 } }, { "key": "25004", "source": "170", "target": "697", "attributes": { "weight": 2 } }, { "key": "25008", "source": "170", "target": "300", "attributes": { "weight": 2 } }, { "key": "27752", "source": "170", "target": "1822", "attributes": { "weight": 1 } }, { "key": "28415", "source": "170", "target": "578", "attributes": { "weight": 2 } }, { "key": "22692", "source": "170", "target": "698", "attributes": { "weight": 3 } }, { "key": "13216", "source": "170", "target": "268", "attributes": { "weight": 3 } }, { "key": "2413", "source": "170", "target": "699", "attributes": { "weight": 5 } }, { "key": "22489", "source": "170", "target": "567", "attributes": { "weight": 2 } }, { "key": "27753", "source": "170", "target": "1823", "attributes": { "weight": 1 } }, { "key": "25007", "source": "170", "target": "574", "attributes": { "weight": 2 } }, { "key": "14677", "source": "170", "target": "307", "attributes": { "weight": 2 } }, { "key": "25003", "source": "170", "target": "164", "attributes": { "weight": 4 } }, { "key": "5240", "source": "170", "target": "1227", "attributes": { "weight": 4 } }, { "key": "13957", "source": "170", "target": "905", "attributes": { "weight": 2 } }, { "key": "9491", "source": "170", "target": "168", "attributes": { "weight": 6 } }, { "key": "15108", "source": "170", "target": "171", "attributes": { "weight": 3 } }, { "key": "13220", "source": "170", "target": "314", "attributes": { "weight": 3 } }, { "key": "13219", "source": "170", "target": "313", "attributes": { "weight": 5 } }, { "key": "27751", "source": "170", "target": "2345", "attributes": { "weight": 1 } }, { "key": "22490", "source": "170", "target": "572", "attributes": { "weight": 2 } }, { "key": "385", "source": "170", "target": "93", "attributes": { "weight": 3 } }, { "key": "28412", "source": "170", "target": "272", "attributes": { "weight": 2 } }, { "key": "28418", "source": "170", "target": "323", "attributes": { "weight": 2 } }, { "key": "10896", "source": "170", "target": "457", "attributes": { "weight": 2 } }, { "key": "3193", "source": "170", "target": "305", "attributes": { "weight": 7 } }, { "key": "13958", "source": "170", "target": "1513", "attributes": { "weight": 1 } }, { "key": "28417", "source": "170", "target": "178", "attributes": { "weight": 2 } }, { "key": "22691", "source": "170", "target": "1191", "attributes": { "weight": 4 } }, { "key": "15898", "source": "170", "target": "700", "attributes": { "weight": 4 } }, { "key": "13218", "source": "170", "target": "304", "attributes": { "weight": 2 } }, { "key": "11163", "source": "170", "target": "452", "attributes": { "weight": 1 } }, { "key": "13217", "source": "170", "target": "167", "attributes": { "weight": 2 } }, { "key": "8796", "source": "170", "target": "442", "attributes": { "weight": 1 } }, { "key": "13956", "source": "170", "target": "370", "attributes": { "weight": 1 } }, { "key": "27749", "source": "170", "target": "1819", "attributes": { "weight": 3 } }, { "key": "28413", "source": "170", "target": "1869", "attributes": { "weight": 1 } }, { "key": "26600", "source": "170", "target": "454", "attributes": { "weight": 2 } }, { "key": "29206", "source": "170", "target": "309", "attributes": { "weight": 1 } }, { "key": "9614", "source": "171", "target": "1618", "attributes": { "weight": 1 } }, { "key": "9636", "source": "171", "target": "1627", "attributes": { "weight": 2 } }, { "key": "9613", "source": "171", "target": "564", "attributes": { "weight": 3 } }, { "key": "9642", "source": "171", "target": "1631", "attributes": { "weight": 1 } }, { "key": "5250", "source": "171", "target": "1252", "attributes": { "weight": 4 } }, { "key": "27611", "source": "171", "target": "1553", "attributes": { "weight": 2 } }, { "key": "9628", "source": "171", "target": "1623", "attributes": { "weight": 2 } }, { "key": "9626", "source": "171", "target": "168", "attributes": { "weight": 3 } }, { "key": "15121", "source": "171", "target": "1996", "attributes": { "weight": 1 } }, { "key": "31957", "source": "171", "target": "1060", "attributes": { "weight": 1 } }, { "key": "9646", "source": "171", "target": "1633", "attributes": { "weight": 3 } }, { "key": "28923", "source": "171", "target": "355", "attributes": { "weight": 1 } }, { "key": "9631", "source": "171", "target": "1542", "attributes": { "weight": 2 } }, { "key": "31956", "source": "171", "target": "2115", "attributes": { "weight": 1 } }, { "key": "9653", "source": "171", "target": "1638", "attributes": { "weight": 2 } }, { "key": "1048", "source": "171", "target": "357", "attributes": { "weight": 5 } }, { "key": "15111", "source": "171", "target": "1042", "attributes": { "weight": 4 } }, { "key": "15122", "source": "171", "target": "304", "attributes": { "weight": 2 } }, { "key": "9654", "source": "171", "target": "1061", "attributes": { "weight": 2 } }, { "key": "5252", "source": "171", "target": "580", "attributes": { "weight": 3 } }, { "key": "27605", "source": "171", "target": "165", "attributes": { "weight": 1 } }, { "key": "15117", "source": "171", "target": "170", "attributes": { "weight": 3 } }, { "key": "9633", "source": "171", "target": "91", "attributes": { "weight": 1 } }, { "key": "37400", "source": "171", "target": "566", "attributes": { "weight": 1 } }, { "key": "27612", "source": "171", "target": "1966", "attributes": { "weight": 2 } }, { "key": "9617", "source": "171", "target": "565", "attributes": { "weight": 3 } }, { "key": "9640", "source": "171", "target": "301", "attributes": { "weight": 1 } }, { "key": "9624", "source": "171", "target": "574", "attributes": { "weight": 3 } }, { "key": "9656", "source": "171", "target": "1640", "attributes": { "weight": 1 } }, { "key": "14691", "source": "171", "target": "272", "attributes": { "weight": 3 } }, { "key": "15124", "source": "171", "target": "582", "attributes": { "weight": 1 } }, { "key": "3802", "source": "171", "target": "419", "attributes": { "weight": 3 } }, { "key": "9647", "source": "171", "target": "1634", "attributes": { "weight": 2 } }, { "key": "9629", "source": "171", "target": "1624", "attributes": { "weight": 1 } }, { "key": "5248", "source": "171", "target": "442", "attributes": { "weight": 3 } }, { "key": "9648", "source": "171", "target": "177", "attributes": { "weight": 3 } }, { "key": "26129", "source": "171", "target": "1056", "attributes": { "weight": 1 } }, { "key": "9620", "source": "171", "target": "830", "attributes": { "weight": 1 } }, { "key": "8800", "source": "171", "target": "567", "attributes": { "weight": 10 } }, { "key": "29679", "source": "171", "target": "2116", "attributes": { "weight": 1 } }, { "key": "27608", "source": "171", "target": "2284", "attributes": { "weight": 1 } }, { "key": "9637", "source": "171", "target": "1628", "attributes": { "weight": 1 } }, { "key": "15123", "source": "171", "target": "173", "attributes": { "weight": 2 } }, { "key": "9635", "source": "171", "target": "290", "attributes": { "weight": 1 } }, { "key": "8799", "source": "171", "target": "220", "attributes": { "weight": 3 } }, { "key": "9643", "source": "171", "target": "1632", "attributes": { "weight": 1 } }, { "key": "9630", "source": "171", "target": "1625", "attributes": { "weight": 2 } }, { "key": "3804", "source": "171", "target": "661", "attributes": { "weight": 4 } }, { "key": "15110", "source": "171", "target": "1143", "attributes": { "weight": 2 } }, { "key": "9627", "source": "171", "target": "169", "attributes": { "weight": 5 } }, { "key": "3803", "source": "171", "target": "651", "attributes": { "weight": 2 } }, { "key": "5249", "source": "171", "target": "454", "attributes": { "weight": 3 } }, { "key": "9638", "source": "171", "target": "578", "attributes": { "weight": 1 } }, { "key": "9651", "source": "171", "target": "1637", "attributes": { "weight": 3 } }, { "key": "9612", "source": "171", "target": "1617", "attributes": { "weight": 3 } }, { "key": "3801", "source": "171", "target": "645", "attributes": { "weight": 3 } }, { "key": "9615", "source": "171", "target": "1619", "attributes": { "weight": 1 } }, { "key": "15120", "source": "171", "target": "579", "attributes": { "weight": 1 } }, { "key": "9621", "source": "171", "target": "647", "attributes": { "weight": 3 } }, { "key": "29677", "source": "171", "target": "1763", "attributes": { "weight": 1 } }, { "key": "15118", "source": "171", "target": "361", "attributes": { "weight": 3 } }, { "key": "25624", "source": "171", "target": "787", "attributes": { "weight": 1 } }, { "key": "9618", "source": "171", "target": "259", "attributes": { "weight": 3 } }, { "key": "24527", "source": "171", "target": "790", "attributes": { "weight": 2 } }, { "key": "15125", "source": "171", "target": "310", "attributes": { "weight": 2 } }, { "key": "27602", "source": "171", "target": "1146", "attributes": { "weight": 1 } }, { "key": "15112", "source": "171", "target": "264", "attributes": { "weight": 1 } }, { "key": "9657", "source": "171", "target": "1641", "attributes": { "weight": 1 } }, { "key": "2969", "source": "171", "target": "176", "attributes": { "weight": 3 } }, { "key": "28922", "source": "171", "target": "641", "attributes": { "weight": 1 } }, { "key": "27610", "source": "171", "target": "1611", "attributes": { "weight": 1 } }, { "key": "9658", "source": "171", "target": "1642", "attributes": { "weight": 1 } }, { "key": "12593", "source": "171", "target": "180", "attributes": { "weight": 4 } }, { "key": "387", "source": "171", "target": "178", "attributes": { "weight": 10 } }, { "key": "9641", "source": "171", "target": "1630", "attributes": { "weight": 1 } }, { "key": "11166", "source": "171", "target": "1036", "attributes": { "weight": 3 } }, { "key": "14692", "source": "171", "target": "305", "attributes": { "weight": 4 } }, { "key": "27606", "source": "171", "target": "89", "attributes": { "weight": 1 } }, { "key": "9655", "source": "171", "target": "1639", "attributes": { "weight": 2 } }, { "key": "29678", "source": "171", "target": "1253", "attributes": { "weight": 1 } }, { "key": "9644", "source": "171", "target": "174", "attributes": { "weight": 2 } }, { "key": "9650", "source": "171", "target": "1636", "attributes": { "weight": 1 } }, { "key": "9639", "source": "171", "target": "1629", "attributes": { "weight": 2 } }, { "key": "9622", "source": "171", "target": "1621", "attributes": { "weight": 3 } }, { "key": "9623", "source": "171", "target": "572", "attributes": { "weight": 4 } }, { "key": "25228", "source": "171", "target": "1902", "attributes": { "weight": 1 } }, { "key": "14693", "source": "171", "target": "327", "attributes": { "weight": 3 } }, { "key": "15119", "source": "171", "target": "297", "attributes": { "weight": 4 } }, { "key": "9652", "source": "171", "target": "312", "attributes": { "weight": 1 } }, { "key": "27609", "source": "171", "target": "362", "attributes": { "weight": 2 } }, { "key": "27604", "source": "171", "target": "1046", "attributes": { "weight": 2 } }, { "key": "5251", "source": "171", "target": "468", "attributes": { "weight": 2 } }, { "key": "9632", "source": "171", "target": "1626", "attributes": { "weight": 4 } }, { "key": "17476", "source": "171", "target": "358", "attributes": { "weight": 3 } }, { "key": "5247", "source": "171", "target": "164", "attributes": { "weight": 9 } }, { "key": "15116", "source": "171", "target": "359", "attributes": { "weight": 4 } }, { "key": "9634", "source": "171", "target": "287", "attributes": { "weight": 2 } }, { "key": "15113", "source": "171", "target": "167", "attributes": { "weight": 1 } }, { "key": "15114", "source": "171", "target": "707", "attributes": { "weight": 1 } }, { "key": "5253", "source": "171", "target": "172", "attributes": { "weight": 4 } }, { "key": "9645", "source": "171", "target": "175", "attributes": { "weight": 2 } }, { "key": "9611", "source": "171", "target": "1616", "attributes": { "weight": 2 } }, { "key": "27607", "source": "171", "target": "791", "attributes": { "weight": 2 } }, { "key": "1880", "source": "171", "target": "93", "attributes": { "weight": 3 } }, { "key": "9649", "source": "171", "target": "1635", "attributes": { "weight": 1 } }, { "key": "9619", "source": "171", "target": "354", "attributes": { "weight": 1 } }, { "key": "15115", "source": "171", "target": "278", "attributes": { "weight": 3 } }, { "key": "3800", "source": "171", "target": "644", "attributes": { "weight": 3 } }, { "key": "9616", "source": "171", "target": "1620", "attributes": { "weight": 2 } }, { "key": "27603", "source": "171", "target": "1166", "attributes": { "weight": 1 } }, { "key": "23765", "source": "171", "target": "1774", "attributes": { "weight": 2 } }, { "key": "9625", "source": "171", "target": "1622", "attributes": { "weight": 1 } }, { "key": "21482", "source": "172", "target": "1966", "attributes": { "weight": 2 } }, { "key": "5956", "source": "172", "target": "171", "attributes": { "weight": 4 } }, { "key": "13966", "source": "172", "target": "180", "attributes": { "weight": 1 } }, { "key": "14275", "source": "172", "target": "168", "attributes": { "weight": 3 } }, { "key": "9676", "source": "172", "target": "1623", "attributes": { "weight": 1 } }, { "key": "27652", "source": "172", "target": "164", "attributes": { "weight": 2 } }, { "key": "21481", "source": "172", "target": "2285", "attributes": { "weight": 3 } }, { "key": "14800", "source": "172", "target": "259", "attributes": { "weight": 1 } }, { "key": "9675", "source": "172", "target": "564", "attributes": { "weight": 1 } }, { "key": "21479", "source": "172", "target": "1625", "attributes": { "weight": 3 } }, { "key": "21478", "source": "172", "target": "169", "attributes": { "weight": 2 } }, { "key": "9679", "source": "172", "target": "1629", "attributes": { "weight": 1 } }, { "key": "30560", "source": "172", "target": "1637", "attributes": { "weight": 1 } }, { "key": "9677", "source": "172", "target": "1626", "attributes": { "weight": 1 } }, { "key": "21480", "source": "172", "target": "2284", "attributes": { "weight": 2 } }, { "key": "30559", "source": "172", "target": "567", "attributes": { "weight": 1 } }, { "key": "21477", "source": "172", "target": "1619", "attributes": { "weight": 2 } }, { "key": "9678", "source": "172", "target": "1252", "attributes": { "weight": 4 } }, { "key": "18401", "source": "172", "target": "1621", "attributes": { "weight": 1 } }, { "key": "390", "source": "172", "target": "178", "attributes": { "weight": 6 } }, { "key": "22519", "source": "173", "target": "572", "attributes": { "weight": 5 } }, { "key": "35382", "source": "173", "target": "3197", "attributes": { "weight": 1 } }, { "key": "25207", "source": "173", "target": "1187", "attributes": { "weight": 1 } }, { "key": "28817", "source": "173", "target": "2803", "attributes": { "weight": 3 } }, { "key": "32278", "source": "173", "target": "164", "attributes": { "weight": 2 } }, { "key": "5958", "source": "173", "target": "297", "attributes": { "weight": 5 } }, { "key": "27653", "source": "173", "target": "564", "attributes": { "weight": 1 } }, { "key": "30250", "source": "173", "target": "2974", "attributes": { "weight": 2 } }, { "key": "30249", "source": "173", "target": "2967", "attributes": { "weight": 2 } }, { "key": "28821", "source": "173", "target": "2816", "attributes": { "weight": 2 } }, { "key": "28813", "source": "173", "target": "2792", "attributes": { "weight": 2 } }, { "key": "30478", "source": "173", "target": "1046", "attributes": { "weight": 1 } }, { "key": "391", "source": "173", "target": "178", "attributes": { "weight": 9 } }, { "key": "27745", "source": "173", "target": "1553", "attributes": { "weight": 1 } }, { "key": "15130", "source": "173", "target": "171", "attributes": { "weight": 2 } }, { "key": "28815", "source": "173", "target": "2795", "attributes": { "weight": 2 } }, { "key": "18078", "source": "173", "target": "567", "attributes": { "weight": 2 } }, { "key": "14801", "source": "173", "target": "259", "attributes": { "weight": 1 } }, { "key": "30245", "source": "173", "target": "2958", "attributes": { "weight": 2 } }, { "key": "35381", "source": "173", "target": "169", "attributes": { "weight": 1 } }, { "key": "28811", "source": "173", "target": "1146", "attributes": { "weight": 3 } }, { "key": "5957", "source": "173", "target": "1166", "attributes": { "weight": 4 } }, { "key": "25208", "source": "173", "target": "1628", "attributes": { "weight": 1 } }, { "key": "17504", "source": "173", "target": "1151", "attributes": { "weight": 2 } }, { "key": "28812", "source": "173", "target": "2790", "attributes": { "weight": 2 } }, { "key": "5959", "source": "173", "target": "310", "attributes": { "weight": 5 } }, { "key": "30246", "source": "173", "target": "1177", "attributes": { "weight": 1 } }, { "key": "28820", "source": "173", "target": "2811", "attributes": { "weight": 3 } }, { "key": "30251", "source": "173", "target": "2979", "attributes": { "weight": 2 } }, { "key": "25206", "source": "173", "target": "1143", "attributes": { "weight": 3 } }, { "key": "28819", "source": "173", "target": "2806", "attributes": { "weight": 3 } }, { "key": "17505", "source": "173", "target": "358", "attributes": { "weight": 2 } }, { "key": "28814", "source": "173", "target": "2794", "attributes": { "weight": 2 } }, { "key": "30248", "source": "173", "target": "638", "attributes": { "weight": 2 } }, { "key": "28816", "source": "173", "target": "2796", "attributes": { "weight": 3 } }, { "key": "28818", "source": "173", "target": "2805", "attributes": { "weight": 4 } }, { "key": "14276", "source": "173", "target": "168", "attributes": { "weight": 1 } }, { "key": "30247", "source": "173", "target": "165", "attributes": { "weight": 2 } }, { "key": "25545", "source": "174", "target": "574", "attributes": { "weight": 2 } }, { "key": "30528", "source": "174", "target": "1642", "attributes": { "weight": 2 } }, { "key": "25546", "source": "174", "target": "305", "attributes": { "weight": 1 } }, { "key": "25753", "source": "174", "target": "278", "attributes": { "weight": 2 } }, { "key": "18402", "source": "174", "target": "1621", "attributes": { "weight": 1 } }, { "key": "25548", "source": "174", "target": "177", "attributes": { "weight": 3 } }, { "key": "28106", "source": "174", "target": "301", "attributes": { "weight": 1 } }, { "key": "2970", "source": "174", "target": "176", "attributes": { "weight": 1 } }, { "key": "392", "source": "174", "target": "178", "attributes": { "weight": 5 } }, { "key": "9682", "source": "174", "target": "171", "attributes": { "weight": 2 } }, { "key": "25547", "source": "174", "target": "175", "attributes": { "weight": 1 } }, { "key": "12602", "source": "174", "target": "180", "attributes": { "weight": 2 } }, { "key": "25544", "source": "174", "target": "164", "attributes": { "weight": 4 } }, { "key": "14802", "source": "174", "target": "259", "attributes": { "weight": 1 } }, { "key": "25567", "source": "174", "target": "168", "attributes": { "weight": 1 } }, { "key": "18403", "source": "175", "target": "1621", "attributes": { "weight": 1 } }, { "key": "393", "source": "175", "target": "178", "attributes": { "weight": 4 } }, { "key": "25553", "source": "175", "target": "177", "attributes": { "weight": 2 } }, { "key": "25550", "source": "175", "target": "164", "attributes": { "weight": 2 } }, { "key": "30529", "source": "175", "target": "1549", "attributes": { "weight": 2 } }, { "key": "12863", "source": "175", "target": "582", "attributes": { "weight": 2 } }, { "key": "22611", "source": "175", "target": "180", "attributes": { "weight": 1 } }, { "key": "9683", "source": "175", "target": "171", "attributes": { "weight": 2 } }, { "key": "28129", "source": "175", "target": "287", "attributes": { "weight": 1 } }, { "key": "1934", "source": "175", "target": "93", "attributes": { "weight": 1 } }, { "key": "25568", "source": "175", "target": "168", "attributes": { "weight": 1 } }, { "key": "14819", "source": "175", "target": "259", "attributes": { "weight": 2 } }, { "key": "27681", "source": "175", "target": "1857", "attributes": { "weight": 4 } }, { "key": "9039", "source": "175", "target": "574", "attributes": { "weight": 3 } }, { "key": "25551", "source": "175", "target": "2608", "attributes": { "weight": 1 } }, { "key": "25552", "source": "175", "target": "174", "attributes": { "weight": 4 } }, { "key": "13505", "source": "175", "target": "304", "attributes": { "weight": 1 } }, { "key": "3237", "source": "175", "target": "305", "attributes": { "weight": 3 } }, { "key": "16223", "source": "175", "target": "278", "attributes": { "weight": 4 } }, { "key": "30530", "source": "175", "target": "2985", "attributes": { "weight": 1 } }, { "key": "13967", "source": "176", "target": "180", "attributes": { "weight": 1 } }, { "key": "13506", "source": "176", "target": "287", "attributes": { "weight": 2 } }, { "key": "36213", "source": "176", "target": "3274", "attributes": { "weight": 1 } }, { "key": "30480", "source": "176", "target": "1046", "attributes": { "weight": 1 } }, { "key": "28481", "source": "176", "target": "580", "attributes": { "weight": 1 } }, { "key": "2375", "source": "176", "target": "692", "attributes": { "weight": 1 } }, { "key": "2972", "source": "176", "target": "259", "attributes": { "weight": 2 } }, { "key": "13507", "source": "176", "target": "304", "attributes": { "weight": 1 } }, { "key": "36216", "source": "176", "target": "691", "attributes": { "weight": 1 } }, { "key": "15190", "source": "176", "target": "1621", "attributes": { "weight": 2 } }, { "key": "28130", "source": "176", "target": "301", "attributes": { "weight": 1 } }, { "key": "2372", "source": "176", "target": "685", "attributes": { "weight": 3 } }, { "key": "9520", "source": "176", "target": "354", "attributes": { "weight": 1 } }, { "key": "25569", "source": "176", "target": "168", "attributes": { "weight": 1 } }, { "key": "2371", "source": "176", "target": "684", "attributes": { "weight": 2 } }, { "key": "2373", "source": "176", "target": "689", "attributes": { "weight": 3 } }, { "key": "35504", "source": "176", "target": "177", "attributes": { "weight": 1 } }, { "key": "35503", "source": "176", "target": "574", "attributes": { "weight": 1 } }, { "key": "36212", "source": "176", "target": "830", "attributes": { "weight": 1 } }, { "key": "394", "source": "176", "target": "178", "attributes": { "weight": 6 } }, { "key": "2374", "source": "176", "target": "690", "attributes": { "weight": 1 } }, { "key": "36214", "source": "176", "target": "687", "attributes": { "weight": 2 } }, { "key": "2971", "source": "176", "target": "164", "attributes": { "weight": 4 } }, { "key": "36215", "source": "176", "target": "3275", "attributes": { "weight": 1 } }, { "key": "2973", "source": "176", "target": "278", "attributes": { "weight": 3 } }, { "key": "2975", "source": "176", "target": "174", "attributes": { "weight": 1 } }, { "key": "2974", "source": "176", "target": "171", "attributes": { "weight": 3 } }, { "key": "12355", "source": "176", "target": "357", "attributes": { "weight": 1 } }, { "key": "35457", "source": "177", "target": "3200", "attributes": { "weight": 2 } }, { "key": "6347", "source": "177", "target": "580", "attributes": { "weight": 4 } }, { "key": "25554", "source": "177", "target": "174", "attributes": { "weight": 3 } }, { "key": "35505", "source": "177", "target": "3201", "attributes": { "weight": 1 } }, { "key": "35508", "source": "177", "target": "579", "attributes": { "weight": 1 } }, { "key": "9689", "source": "177", "target": "171", "attributes": { "weight": 3 } }, { "key": "17513", "source": "177", "target": "358", "attributes": { "weight": 1 } }, { "key": "11752", "source": "177", "target": "905", "attributes": { "weight": 3 } }, { "key": "12499", "source": "177", "target": "1858", "attributes": { "weight": 3 } }, { "key": "25767", "source": "177", "target": "582", "attributes": { "weight": 2 } }, { "key": "12496", "source": "177", "target": "1856", "attributes": { "weight": 3 } }, { "key": "35456", "source": "177", "target": "3199", "attributes": { "weight": 2 } }, { "key": "30262", "source": "177", "target": "297", "attributes": { "weight": 2 } }, { "key": "30531", "source": "177", "target": "2985", "attributes": { "weight": 1 } }, { "key": "25766", "source": "177", "target": "278", "attributes": { "weight": 3 } }, { "key": "12498", "source": "177", "target": "574", "attributes": { "weight": 3 } }, { "key": "35515", "source": "177", "target": "3209", "attributes": { "weight": 1 } }, { "key": "35455", "source": "177", "target": "3198", "attributes": { "weight": 2 } }, { "key": "30482", "source": "177", "target": "1046", "attributes": { "weight": 1 } }, { "key": "870", "source": "177", "target": "301", "attributes": { "weight": 1 } }, { "key": "31704", "source": "177", "target": "595", "attributes": { "weight": 1 } }, { "key": "35516", "source": "177", "target": "3210", "attributes": { "weight": 1 } }, { "key": "35507", "source": "177", "target": "272", "attributes": { "weight": 1 } }, { "key": "13512", "source": "177", "target": "304", "attributes": { "weight": 1 } }, { "key": "11271", "source": "177", "target": "454", "attributes": { "weight": 2 } }, { "key": "35510", "source": "177", "target": "176", "attributes": { "weight": 1 } }, { "key": "25068", "source": "177", "target": "698", "attributes": { "weight": 2 } }, { "key": "35514", "source": "177", "target": "3208", "attributes": { "weight": 1 } }, { "key": "18404", "source": "177", "target": "1621", "attributes": { "weight": 1 } }, { "key": "9067", "source": "177", "target": "442", "attributes": { "weight": 3 } }, { "key": "35513", "source": "177", "target": "3207", "attributes": { "weight": 1 } }, { "key": "18084", "source": "177", "target": "1036", "attributes": { "weight": 2 } }, { "key": "1935", "source": "177", "target": "93", "attributes": { "weight": 3 } }, { "key": "12500", "source": "177", "target": "1859", "attributes": { "weight": 3 } }, { "key": "25637", "source": "177", "target": "787", "attributes": { "weight": 1 } }, { "key": "14820", "source": "177", "target": "259", "attributes": { "weight": 2 } }, { "key": "395", "source": "177", "target": "178", "attributes": { "weight": 5 } }, { "key": "14278", "source": "177", "target": "168", "attributes": { "weight": 4 } }, { "key": "28131", "source": "177", "target": "305", "attributes": { "weight": 2 } }, { "key": "30263", "source": "177", "target": "310", "attributes": { "weight": 2 } }, { "key": "35506", "source": "177", "target": "567", "attributes": { "weight": 1 } }, { "key": "35509", "source": "177", "target": "3203", "attributes": { "weight": 1 } }, { "key": "35025", "source": "177", "target": "3", "attributes": { "weight": 2 } }, { "key": "12495", "source": "177", "target": "1855", "attributes": { "weight": 3 } }, { "key": "25069", "source": "177", "target": "707", "attributes": { "weight": 1 } }, { "key": "12607", "source": "177", "target": "180", "attributes": { "weight": 3 } }, { "key": "32279", "source": "177", "target": "164", "attributes": { "weight": 4 } }, { "key": "8229", "source": "177", "target": "1513", "attributes": { "weight": 1 } }, { "key": "12501", "source": "177", "target": "1860", "attributes": { "weight": 3 } }, { "key": "35511", "source": "177", "target": "3204", "attributes": { "weight": 1 } }, { "key": "25555", "source": "177", "target": "175", "attributes": { "weight": 2 } }, { "key": "12497", "source": "177", "target": "1857", "attributes": { "weight": 3 } }, { "key": "25070", "source": "177", "target": "170", "attributes": { "weight": 2 } }, { "key": "12383", "source": "178", "target": "565", "attributes": { "weight": 2 } }, { "key": "12036", "source": "178", "target": "468", "attributes": { "weight": 4 } }, { "key": "27692", "source": "178", "target": "651", "attributes": { "weight": 3 } }, { "key": "27697", "source": "178", "target": "669", "attributes": { "weight": 2 } }, { "key": "2292", "source": "178", "target": "661", "attributes": { "weight": 7 } }, { "key": "27683", "source": "178", "target": "646", "attributes": { "weight": 2 } }, { "key": "13533", "source": "178", "target": "264", "attributes": { "weight": 3 } }, { "key": "26748", "source": "178", "target": "454", "attributes": { "weight": 3 } }, { "key": "402", "source": "178", "target": "171", "attributes": { "weight": 10 } }, { "key": "9695", "source": "178", "target": "1638", "attributes": { "weight": 1 } }, { "key": "28492", "source": "178", "target": "579", "attributes": { "weight": 2 } }, { "key": "31475", "source": "178", "target": "452", "attributes": { "weight": 1 } }, { "key": "31479", "source": "178", "target": "1060", "attributes": { "weight": 2 } }, { "key": "33157", "source": "178", "target": "1996", "attributes": { "weight": 1 } }, { "key": "32025", "source": "178", "target": "359", "attributes": { "weight": 1 } }, { "key": "27698", "source": "178", "target": "322", "attributes": { "weight": 3 } }, { "key": "24743", "source": "178", "target": "2527", "attributes": { "weight": 1 } }, { "key": "18405", "source": "178", "target": "1621", "attributes": { "weight": 1 } }, { "key": "22539", "source": "178", "target": "1631", "attributes": { "weight": 3 } }, { "key": "2939", "source": "178", "target": "289", "attributes": { "weight": 1 } }, { "key": "31478", "source": "178", "target": "473", "attributes": { "weight": 1 } }, { "key": "24588", "source": "178", "target": "1061", "attributes": { "weight": 2 } }, { "key": "21484", "source": "178", "target": "2282", "attributes": { "weight": 2 } }, { "key": "29218", "source": "178", "target": "638", "attributes": { "weight": 4 } }, { "key": "22533", "source": "178", "target": "567", "attributes": { "weight": 10 } }, { "key": "14842", "source": "178", "target": "259", "attributes": { "weight": 3 } }, { "key": "14280", "source": "178", "target": "1042", "attributes": { "weight": 5 } }, { "key": "31473", "source": "178", "target": "130", "attributes": { "weight": 1 } }, { "key": "9532", "source": "178", "target": "278", "attributes": { "weight": 5 } }, { "key": "6349", "source": "178", "target": "580", "attributes": { "weight": 8 } }, { "key": "27687", "source": "178", "target": "263", "attributes": { "weight": 2 } }, { "key": "400", "source": "178", "target": "168", "attributes": { "weight": 8 } }, { "key": "9694", "source": "178", "target": "1629", "attributes": { "weight": 1 } }, { "key": "9690", "source": "178", "target": "564", "attributes": { "weight": 4 } }, { "key": "27689", "source": "178", "target": "2710", "attributes": { "weight": 1 } }, { "key": "411", "source": "178", "target": "180", "attributes": { "weight": 7 } }, { "key": "17514", "source": "178", "target": "358", "attributes": { "weight": 5 } }, { "key": "28143", "source": "178", "target": "301", "attributes": { "weight": 1 } }, { "key": "12357", "source": "178", "target": "357", "attributes": { "weight": 4 } }, { "key": "401", "source": "178", "target": "169", "attributes": { "weight": 6 } }, { "key": "13970", "source": "178", "target": "905", "attributes": { "weight": 1 } }, { "key": "396", "source": "178", "target": "164", "attributes": { "weight": 9 } }, { "key": "22535", "source": "178", "target": "791", "attributes": { "weight": 3 } }, { "key": "22538", "source": "178", "target": "2328", "attributes": { "weight": 3 } }, { "key": "9693", "source": "178", "target": "1252", "attributes": { "weight": 5 } }, { "key": "32947", "source": "178", "target": "578", "attributes": { "weight": 1 } }, { "key": "27693", "source": "178", "target": "287", "attributes": { "weight": 2 } }, { "key": "403", "source": "178", "target": "93", "attributes": { "weight": 5 } }, { "key": "27691", "source": "178", "target": "574", "attributes": { "weight": 4 } }, { "key": "1938", "source": "178", "target": "576", "attributes": { "weight": 1 } }, { "key": "27684", "source": "178", "target": "262", "attributes": { "weight": 2 } }, { "key": "409", "source": "178", "target": "177", "attributes": { "weight": 5 } }, { "key": "33159", "source": "178", "target": "316", "attributes": { "weight": 1 } }, { "key": "9691", "source": "178", "target": "1625", "attributes": { "weight": 1 } }, { "key": "22532", "source": "178", "target": "1618", "attributes": { "weight": 3 } }, { "key": "32948", "source": "178", "target": "299", "attributes": { "weight": 1 } }, { "key": "33156", "source": "178", "target": "300", "attributes": { "weight": 1 } }, { "key": "27686", "source": "178", "target": "647", "attributes": { "weight": 3 } }, { "key": "9531", "source": "178", "target": "354", "attributes": { "weight": 4 } }, { "key": "22543", "source": "178", "target": "1640", "attributes": { "weight": 3 } }, { "key": "31472", "source": "178", "target": "641", "attributes": { "weight": 1 } }, { "key": "1937", "source": "178", "target": "569", "attributes": { "weight": 3 } }, { "key": "32946", "source": "178", "target": "292", "attributes": { "weight": 1 } }, { "key": "22534", "source": "178", "target": "572", "attributes": { "weight": 10 } }, { "key": "21486", "source": "178", "target": "2285", "attributes": { "weight": 2 } }, { "key": "7034", "source": "178", "target": "1166", "attributes": { "weight": 9 } }, { "key": "27690", "source": "178", "target": "573", "attributes": { "weight": 2 } }, { "key": "408", "source": "178", "target": "176", "attributes": { "weight": 6 } }, { "key": "27695", "source": "178", "target": "667", "attributes": { "weight": 3 } }, { "key": "399", "source": "178", "target": "167", "attributes": { "weight": 1 } }, { "key": "15415", "source": "178", "target": "91", "attributes": { "weight": 2 } }, { "key": "27685", "source": "178", "target": "830", "attributes": { "weight": 4 } }, { "key": "25072", "source": "178", "target": "707", "attributes": { "weight": 4 } }, { "key": "28490", "source": "178", "target": "698", "attributes": { "weight": 2 } }, { "key": "25896", "source": "178", "target": "220", "attributes": { "weight": 3 } }, { "key": "17515", "source": "178", "target": "297", "attributes": { "weight": 7 } }, { "key": "27694", "source": "178", "target": "361", "attributes": { "weight": 2 } }, { "key": "12037", "source": "178", "target": "310", "attributes": { "weight": 9 } }, { "key": "18406", "source": "178", "target": "1542", "attributes": { "weight": 2 } }, { "key": "27688", "source": "178", "target": "1857", "attributes": { "weight": 3 } }, { "key": "9692", "source": "178", "target": "1626", "attributes": { "weight": 4 } }, { "key": "31474", "source": "178", "target": "3", "attributes": { "weight": 2 } }, { "key": "410", "source": "178", "target": "179", "attributes": { "weight": 1 } }, { "key": "13535", "source": "178", "target": "312", "attributes": { "weight": 5 } }, { "key": "22540", "source": "178", "target": "1632", "attributes": { "weight": 3 } }, { "key": "17972", "source": "178", "target": "1143", "attributes": { "weight": 3 } }, { "key": "404", "source": "178", "target": "172", "attributes": { "weight": 6 } }, { "key": "14843", "source": "178", "target": "272", "attributes": { "weight": 2 } }, { "key": "21485", "source": "178", "target": "2284", "attributes": { "weight": 2 } }, { "key": "3266", "source": "178", "target": "305", "attributes": { "weight": 3 } }, { "key": "13534", "source": "178", "target": "304", "attributes": { "weight": 2 } }, { "key": "29985", "source": "178", "target": "1952", "attributes": { "weight": 1 } }, { "key": "30532", "source": "178", "target": "1642", "attributes": { "weight": 1 } }, { "key": "27299", "source": "178", "target": "57", "attributes": { "weight": 3 } }, { "key": "31477", "source": "178", "target": "189", "attributes": { "weight": 4 } }, { "key": "3829", "source": "178", "target": "419", "attributes": { "weight": 4 } }, { "key": "28491", "source": "178", "target": "170", "attributes": { "weight": 2 } }, { "key": "32945", "source": "178", "target": "1622", "attributes": { "weight": 1 } }, { "key": "27696", "source": "178", "target": "1966", "attributes": { "weight": 4 } }, { "key": "3828", "source": "178", "target": "645", "attributes": { "weight": 3 } }, { "key": "10929", "source": "178", "target": "457", "attributes": { "weight": 1 } }, { "key": "30483", "source": "178", "target": "1046", "attributes": { "weight": 1 } }, { "key": "27682", "source": "178", "target": "644", "attributes": { "weight": 3 } }, { "key": "14844", "source": "178", "target": "327", "attributes": { "weight": 4 } }, { "key": "398", "source": "178", "target": "166", "attributes": { "weight": 3 } }, { "key": "9071", "source": "178", "target": "442", "attributes": { "weight": 2 } }, { "key": "33158", "source": "178", "target": "313", "attributes": { "weight": 1 } }, { "key": "22541", "source": "178", "target": "1635", "attributes": { "weight": 3 } }, { "key": "397", "source": "178", "target": "165", "attributes": { "weight": 4 } }, { "key": "405", "source": "178", "target": "173", "attributes": { "weight": 9 } }, { "key": "22542", "source": "178", "target": "1636", "attributes": { "weight": 4 } }, { "key": "17974", "source": "178", "target": "1178", "attributes": { "weight": 2 } }, { "key": "31363", "source": "178", "target": "674", "attributes": { "weight": 2 } }, { "key": "31476", "source": "178", "target": "1611", "attributes": { "weight": 2 } }, { "key": "7033", "source": "178", "target": "1036", "attributes": { "weight": 6 } }, { "key": "22537", "source": "178", "target": "1628", "attributes": { "weight": 3 } }, { "key": "13971", "source": "178", "target": "1637", "attributes": { "weight": 7 } }, { "key": "407", "source": "178", "target": "175", "attributes": { "weight": 4 } }, { "key": "23795", "source": "178", "target": "1774", "attributes": { "weight": 2 } }, { "key": "406", "source": "178", "target": "174", "attributes": { "weight": 4 } }, { "key": "17973", "source": "178", "target": "1146", "attributes": { "weight": 3 } }, { "key": "1936", "source": "178", "target": "566", "attributes": { "weight": 4 } }, { "key": "22536", "source": "178", "target": "1624", "attributes": { "weight": 5 } }, { "key": "22531", "source": "178", "target": "1617", "attributes": { "weight": 5 } }, { "key": "28144", "source": "178", "target": "323", "attributes": { "weight": 1 } }, { "key": "883", "source": "179", "target": "262", "attributes": { "weight": 1 } }, { "key": "14860", "source": "179", "target": "311", "attributes": { "weight": 1 } }, { "key": "14857", "source": "179", "target": "299", "attributes": { "weight": 2 } }, { "key": "412", "source": "179", "target": "178", "attributes": { "weight": 1 } }, { "key": "3278", "source": "179", "target": "839", "attributes": { "weight": 4 } }, { "key": "14862", "source": "179", "target": "1933", "attributes": { "weight": 2 } }, { "key": "14858", "source": "179", "target": "300", "attributes": { "weight": 2 } }, { "key": "14853", "source": "179", "target": "263", "attributes": { "weight": 2 } }, { "key": "23024", "source": "179", "target": "276", "attributes": { "weight": 1 } }, { "key": "14854", "source": "179", "target": "168", "attributes": { "weight": 1 } }, { "key": "14861", "source": "179", "target": "322", "attributes": { "weight": 1 } }, { "key": "14855", "source": "179", "target": "289", "attributes": { "weight": 1 } }, { "key": "13540", "source": "179", "target": "264", "attributes": { "weight": 3 } }, { "key": "14852", "source": "179", "target": "259", "attributes": { "weight": 1 } }, { "key": "23023", "source": "179", "target": "166", "attributes": { "weight": 1 } }, { "key": "14856", "source": "179", "target": "290", "attributes": { "weight": 1 } }, { "key": "14851", "source": "179", "target": "164", "attributes": { "weight": 1 } }, { "key": "14859", "source": "179", "target": "301", "attributes": { "weight": 1 } }, { "key": "13541", "source": "179", "target": "304", "attributes": { "weight": 3 } }, { "key": "23025", "source": "179", "target": "167", "attributes": { "weight": 2 } }, { "key": "23022", "source": "179", "target": "260", "attributes": { "weight": 1 } }, { "key": "14863", "source": "179", "target": "336", "attributes": { "weight": 1 } }, { "key": "23026", "source": "179", "target": "334", "attributes": { "weight": 1 } }, { "key": "12630", "source": "180", "target": "370", "attributes": { "weight": 1 } }, { "key": "12645", "source": "180", "target": "316", "attributes": { "weight": 1 } }, { "key": "13998", "source": "180", "target": "319", "attributes": { "weight": 2 } }, { "key": "13642", "source": "180", "target": "321", "attributes": { "weight": 1 } }, { "key": "13979", "source": "180", "target": "454", "attributes": { "weight": 1 } }, { "key": "9704", "source": "180", "target": "564", "attributes": { "weight": 2 } }, { "key": "27561", "source": "180", "target": "283", "attributes": { "weight": 1 } }, { "key": "17522", "source": "180", "target": "358", "attributes": { "weight": 1 } }, { "key": "12624", "source": "180", "target": "275", "attributes": { "weight": 2 } }, { "key": "12623", "source": "180", "target": "574", "attributes": { "weight": 3 } }, { "key": "13981", "source": "180", "target": "166", "attributes": { "weight": 2 } }, { "key": "12644", "source": "180", "target": "314", "attributes": { "weight": 2 } }, { "key": "908", "source": "180", "target": "287", "attributes": { "weight": 2 } }, { "key": "12625", "source": "180", "target": "167", "attributes": { "weight": 3 } }, { "key": "13983", "source": "180", "target": "707", "attributes": { "weight": 1 } }, { "key": "3290", "source": "180", "target": "308", "attributes": { "weight": 3 } }, { "key": "14907", "source": "180", "target": "261", "attributes": { "weight": 1 } }, { "key": "13988", "source": "180", "target": "1820", "attributes": { "weight": 1 } }, { "key": "12647", "source": "180", "target": "333", "attributes": { "weight": 2 } }, { "key": "1944", "source": "180", "target": "93", "attributes": { "weight": 6 } }, { "key": "22619", "source": "180", "target": "175", "attributes": { "weight": 1 } }, { "key": "12613", "source": "180", "target": "164", "attributes": { "weight": 6 } }, { "key": "14908", "source": "180", "target": "271", "attributes": { "weight": 2 } }, { "key": "12646", "source": "180", "target": "1872", "attributes": { "weight": 1 } }, { "key": "12643", "source": "180", "target": "1637", "attributes": { "weight": 1 } }, { "key": "12635", "source": "180", "target": "578", "attributes": { "weight": 3 } }, { "key": "22617", "source": "180", "target": "830", "attributes": { "weight": 1 } }, { "key": "13994", "source": "180", "target": "310", "attributes": { "weight": 1 } }, { "key": "11758", "source": "180", "target": "268", "attributes": { "weight": 4 } }, { "key": "14910", "source": "180", "target": "301", "attributes": { "weight": 2 } }, { "key": "22618", "source": "180", "target": "2344", "attributes": { "weight": 1 } }, { "key": "12636", "source": "180", "target": "1871", "attributes": { "weight": 2 } }, { "key": "12641", "source": "180", "target": "1323", "attributes": { "weight": 5 } }, { "key": "12620", "source": "180", "target": "572", "attributes": { "weight": 3 } }, { "key": "12616", "source": "180", "target": "442", "attributes": { "weight": 1 } }, { "key": "13984", "source": "180", "target": "1227", "attributes": { "weight": 2 } }, { "key": "13992", "source": "180", "target": "176", "attributes": { "weight": 1 } }, { "key": "12618", "source": "180", "target": "1191", "attributes": { "weight": 4 } }, { "key": "22616", "source": "180", "target": "697", "attributes": { "weight": 1 } }, { "key": "28163", "source": "180", "target": "318", "attributes": { "weight": 1 } }, { "key": "12617", "source": "180", "target": "567", "attributes": { "weight": 3 } }, { "key": "12634", "source": "180", "target": "338", "attributes": { "weight": 4 } }, { "key": "14909", "source": "180", "target": "289", "attributes": { "weight": 2 } }, { "key": "12639", "source": "180", "target": "1823", "attributes": { "weight": 2 } }, { "key": "12642", "source": "180", "target": "177", "attributes": { "weight": 3 } }, { "key": "8238", "source": "180", "target": "1515", "attributes": { "weight": 3 } }, { "key": "6466", "source": "180", "target": "580", "attributes": { "weight": 10 } }, { "key": "12614", "source": "180", "target": "1166", "attributes": { "weight": 2 } }, { "key": "13986", "source": "180", "target": "286", "attributes": { "weight": 2 } }, { "key": "8233", "source": "180", "target": "292", "attributes": { "weight": 1 } }, { "key": "12632", "source": "180", "target": "171", "attributes": { "weight": 4 } }, { "key": "414", "source": "180", "target": "178", "attributes": { "weight": 7 } }, { "key": "8231", "source": "180", "target": "260", "attributes": { "weight": 3 } }, { "key": "12622", "source": "180", "target": "700", "attributes": { "weight": 2 } }, { "key": "11761", "source": "180", "target": "313", "attributes": { "weight": 4 } }, { "key": "12621", "source": "180", "target": "698", "attributes": { "weight": 5 } }, { "key": "413", "source": "180", "target": "170", "attributes": { "weight": 8 } }, { "key": "12633", "source": "180", "target": "290", "attributes": { "weight": 2 } }, { "key": "12640", "source": "180", "target": "1322", "attributes": { "weight": 2 } }, { "key": "13982", "source": "180", "target": "1905", "attributes": { "weight": 1 } }, { "key": "12865", "source": "180", "target": "582", "attributes": { "weight": 2 } }, { "key": "12615", "source": "180", "target": "259", "attributes": { "weight": 4 } }, { "key": "14001", "source": "180", "target": "323", "attributes": { "weight": 4 } }, { "key": "12648", "source": "180", "target": "1063", "attributes": { "weight": 1 } }, { "key": "11295", "source": "180", "target": "419", "attributes": { "weight": 2 } }, { "key": "3289", "source": "180", "target": "305", "attributes": { "weight": 8 } }, { "key": "8235", "source": "180", "target": "300", "attributes": { "weight": 3 } }, { "key": "13985", "source": "180", "target": "1819", "attributes": { "weight": 2 } }, { "key": "9120", "source": "180", "target": "220", "attributes": { "weight": 2 } }, { "key": "18418", "source": "180", "target": "276", "attributes": { "weight": 2 } }, { "key": "13995", "source": "180", "target": "311", "attributes": { "weight": 1 } }, { "key": "13997", "source": "180", "target": "1962", "attributes": { "weight": 1 } }, { "key": "8237", "source": "180", "target": "327", "attributes": { "weight": 2 } }, { "key": "13987", "source": "180", "target": "1960", "attributes": { "weight": 1 } }, { "key": "11762", "source": "180", "target": "326", "attributes": { "weight": 4 } }, { "key": "11759", "source": "180", "target": "272", "attributes": { "weight": 2 } }, { "key": "12628", "source": "180", "target": "277", "attributes": { "weight": 2 } }, { "key": "31099", "source": "180", "target": "1854", "attributes": { "weight": 1 } }, { "key": "13989", "source": "180", "target": "579", "attributes": { "weight": 3 } }, { "key": "12631", "source": "180", "target": "1870", "attributes": { "weight": 2 } }, { "key": "11757", "source": "180", "target": "262", "attributes": { "weight": 2 } }, { "key": "12629", "source": "180", "target": "278", "attributes": { "weight": 7 } }, { "key": "13996", "source": "180", "target": "907", "attributes": { "weight": 1 } }, { "key": "12619", "source": "180", "target": "264", "attributes": { "weight": 3 } }, { "key": "23481", "source": "180", "target": "291", "attributes": { "weight": 1 } }, { "key": "13991", "source": "180", "target": "172", "attributes": { "weight": 1 } }, { "key": "22620", "source": "180", "target": "329", "attributes": { "weight": 2 } }, { "key": "8236", "source": "180", "target": "307", "attributes": { "weight": 4 } }, { "key": "8232", "source": "180", "target": "263", "attributes": { "weight": 4 } }, { "key": "13999", "source": "180", "target": "495", "attributes": { "weight": 1 } }, { "key": "12637", "source": "180", "target": "304", "attributes": { "weight": 4 } }, { "key": "13990", "source": "180", "target": "1512", "attributes": { "weight": 3 } }, { "key": "14000", "source": "180", "target": "322", "attributes": { "weight": 3 } }, { "key": "8234", "source": "180", "target": "299", "attributes": { "weight": 3 } }, { "key": "29834", "source": "180", "target": "91", "attributes": { "weight": 2 } }, { "key": "12626", "source": "180", "target": "1869", "attributes": { "weight": 3 } }, { "key": "12638", "source": "180", "target": "174", "attributes": { "weight": 2 } }, { "key": "12627", "source": "180", "target": "168", "attributes": { "weight": 6 } }, { "key": "12612", "source": "180", "target": "1868", "attributes": { "weight": 3 } }, { "key": "11760", "source": "180", "target": "312", "attributes": { "weight": 4 } }, { "key": "13993", "source": "180", "target": "1561", "attributes": { "weight": 2 } }, { "key": "29558", "source": "181", "target": "495", "attributes": { "weight": 1 } }, { "key": "415", "source": "181", "target": "184", "attributes": { "weight": 1 } }, { "key": "6669", "source": "182", "target": "56", "attributes": { "weight": 1 } }, { "key": "31588", "source": "182", "target": "595", "attributes": { "weight": 1 } }, { "key": "26434", "source": "182", "target": "189", "attributes": { "weight": 1 } }, { "key": "8690", "source": "182", "target": "1363", "attributes": { "weight": 2 } }, { "key": "6667", "source": "182", "target": "231", "attributes": { "weight": 1 } }, { "key": "1344", "source": "182", "target": "443", "attributes": { "weight": 1 } }, { "key": "6665", "source": "182", "target": "426", "attributes": { "weight": 1 } }, { "key": "6664", "source": "182", "target": "458", "attributes": { "weight": 1 } }, { "key": "1345", "source": "182", "target": "224", "attributes": { "weight": 1 } }, { "key": "6668", "source": "182", "target": "483", "attributes": { "weight": 1 } }, { "key": "1346", "source": "182", "target": "183", "attributes": { "weight": 2 } }, { "key": "1347", "source": "182", "target": "490", "attributes": { "weight": 1 } }, { "key": "26433", "source": "182", "target": "454", "attributes": { "weight": 1 } }, { "key": "6666", "source": "182", "target": "1368", "attributes": { "weight": 1 } }, { "key": "24040", "source": "182", "target": "130", "attributes": { "weight": 2 } }, { "key": "33336", "source": "182", "target": "425", "attributes": { "weight": 1 } }, { "key": "416", "source": "182", "target": "57", "attributes": { "weight": 1 } }, { "key": "6663", "source": "182", "target": "424", "attributes": { "weight": 2 } }, { "key": "6721", "source": "183", "target": "1094", "attributes": { "weight": 1 } }, { "key": "26437", "source": "183", "target": "1047", "attributes": { "weight": 2 } }, { "key": "6674", "source": "183", "target": "433", "attributes": { "weight": 2 } }, { "key": "1357", "source": "183", "target": "130", "attributes": { "weight": 4 } }, { "key": "6678", "source": "183", "target": "387", "attributes": { "weight": 1 } }, { "key": "11048", "source": "183", "target": "220", "attributes": { "weight": 2 } }, { "key": "1375", "source": "183", "target": "471", "attributes": { "weight": 3 } }, { "key": "31517", "source": "183", "target": "3060", "attributes": { "weight": 1 } }, { "key": "1389", "source": "183", "target": "494", "attributes": { "weight": 3 } }, { "key": "1376", "source": "183", "target": "229", "attributes": { "weight": 1 } }, { "key": "6695", "source": "183", "target": "54", "attributes": { "weight": 4 } }, { "key": "32872", "source": "183", "target": "470", "attributes": { "weight": 1 } }, { "key": "6712", "source": "183", "target": "489", "attributes": { "weight": 1 } }, { "key": "26443", "source": "183", "target": "580", "attributes": { "weight": 2 } }, { "key": "6719", "source": "183", "target": "1377", "attributes": { "weight": 1 } }, { "key": "26445", "source": "183", "target": "1026", "attributes": { "weight": 1 } }, { "key": "1385", "source": "183", "target": "487", "attributes": { "weight": 4 } }, { "key": "12181", "source": "183", "target": "472", "attributes": { "weight": 2 } }, { "key": "32341", "source": "183", "target": "791", "attributes": { "weight": 1 } }, { "key": "6681", "source": "183", "target": "3", "attributes": { "weight": 2 } }, { "key": "1358", "source": "183", "target": "436", "attributes": { "weight": 1 } }, { "key": "6709", "source": "183", "target": "232", "attributes": { "weight": 3 } }, { "key": "12179", "source": "183", "target": "435", "attributes": { "weight": 2 } }, { "key": "6720", "source": "183", "target": "57", "attributes": { "weight": 3 } }, { "key": "11866", "source": "183", "target": "1363", "attributes": { "weight": 1 } }, { "key": "6704", "source": "183", "target": "372", "attributes": { "weight": 1 } }, { "key": "6673", "source": "183", "target": "424", "attributes": { "weight": 5 } }, { "key": "1371", "source": "183", "target": "459", "attributes": { "weight": 3 } }, { "key": "1383", "source": "183", "target": "479", "attributes": { "weight": 3 } }, { "key": "6684", "source": "183", "target": "1116", "attributes": { "weight": 3 } }, { "key": "6682", "source": "183", "target": "451", "attributes": { "weight": 2 } }, { "key": "1373", "source": "183", "target": "467", "attributes": { "weight": 1 } }, { "key": "21434", "source": "183", "target": "8", "attributes": { "weight": 3 } }, { "key": "35782", "source": "183", "target": "790", "attributes": { "weight": 1 } }, { "key": "1381", "source": "183", "target": "231", "attributes": { "weight": 5 } }, { "key": "29397", "source": "183", "target": "2856", "attributes": { "weight": 1 } }, { "key": "15233", "source": "183", "target": "53", "attributes": { "weight": 1 } }, { "key": "6705", "source": "183", "target": "1371", "attributes": { "weight": 1 } }, { "key": "6686", "source": "183", "target": "1358", "attributes": { "weight": 3 } }, { "key": "3945", "source": "183", "target": "1066", "attributes": { "weight": 1 } }, { "key": "8699", "source": "183", "target": "195", "attributes": { "weight": 3 } }, { "key": "6697", "source": "183", "target": "1085", "attributes": { "weight": 1 } }, { "key": "15234", "source": "183", "target": "499", "attributes": { "weight": 2 } }, { "key": "26440", "source": "183", "target": "187", "attributes": { "weight": 2 } }, { "key": "4969", "source": "183", "target": "468", "attributes": { "weight": 3 } }, { "key": "1388", "source": "183", "target": "492", "attributes": { "weight": 1 } }, { "key": "6685", "source": "183", "target": "1357", "attributes": { "weight": 2 } }, { "key": "33044", "source": "183", "target": "493", "attributes": { "weight": 1 } }, { "key": "6696", "source": "183", "target": "1366", "attributes": { "weight": 1 } }, { "key": "29398", "source": "183", "target": "2211", "attributes": { "weight": 1 } }, { "key": "6700", "source": "183", "target": "1368", "attributes": { "weight": 3 } }, { "key": "6702", "source": "183", "target": "1370", "attributes": { "weight": 1 } }, { "key": "36991", "source": "183", "target": "2250", "attributes": { "weight": 1 } }, { "key": "27028", "source": "183", "target": "1247", "attributes": { "weight": 1 } }, { "key": "1364", "source": "183", "target": "446", "attributes": { "weight": 1 } }, { "key": "29396", "source": "183", "target": "857", "attributes": { "weight": 2 } }, { "key": "6699", "source": "183", "target": "190", "attributes": { "weight": 3 } }, { "key": "1360", "source": "183", "target": "439", "attributes": { "weight": 1 } }, { "key": "4971", "source": "183", "target": "123", "attributes": { "weight": 8 } }, { "key": "1356", "source": "183", "target": "59", "attributes": { "weight": 3 } }, { "key": "1378", "source": "183", "target": "475", "attributes": { "weight": 1 } }, { "key": "15230", "source": "183", "target": "1703", "attributes": { "weight": 1 } }, { "key": "1370", "source": "183", "target": "458", "attributes": { "weight": 6 } }, { "key": "4968", "source": "183", "target": "338", "attributes": { "weight": 2 } }, { "key": "1377", "source": "183", "target": "473", "attributes": { "weight": 3 } }, { "key": "6713", "source": "183", "target": "490", "attributes": { "weight": 1 } }, { "key": "26447", "source": "183", "target": "1375", "attributes": { "weight": 1 } }, { "key": "25913", "source": "183", "target": "1367", "attributes": { "weight": 2 } }, { "key": "8700", "source": "183", "target": "442", "attributes": { "weight": 3 } }, { "key": "4967", "source": "183", "target": "370", "attributes": { "weight": 2 } }, { "key": "15232", "source": "183", "target": "860", "attributes": { "weight": 2 } }, { "key": "37322", "source": "183", "target": "1775", "attributes": { "weight": 1 } }, { "key": "6718", "source": "183", "target": "495", "attributes": { "weight": 3 } }, { "key": "6715", "source": "183", "target": "56", "attributes": { "weight": 3 } }, { "key": "33338", "source": "183", "target": "135", "attributes": { "weight": 1 } }, { "key": "26439", "source": "183", "target": "1118", "attributes": { "weight": 1 } }, { "key": "6711", "source": "183", "target": "1373", "attributes": { "weight": 1 } }, { "key": "4972", "source": "183", "target": "215", "attributes": { "weight": 2 } }, { "key": "12180", "source": "183", "target": "1535", "attributes": { "weight": 1 } }, { "key": "4966", "source": "183", "target": "1036", "attributes": { "weight": 3 } }, { "key": "6706", "source": "183", "target": "483", "attributes": { "weight": 4 } }, { "key": "31515", "source": "183", "target": "2114", "attributes": { "weight": 1 } }, { "key": "1363", "source": "183", "target": "445", "attributes": { "weight": 6 } }, { "key": "1368", "source": "183", "target": "52", "attributes": { "weight": 1 } }, { "key": "4970", "source": "183", "target": "371", "attributes": { "weight": 2 } }, { "key": "1367", "source": "183", "target": "449", "attributes": { "weight": 2 } }, { "key": "6701", "source": "183", "target": "474", "attributes": { "weight": 2 } }, { "key": "1361", "source": "183", "target": "425", "attributes": { "weight": 1 } }, { "key": "1379", "source": "183", "target": "476", "attributes": { "weight": 2 } }, { "key": "6677", "source": "183", "target": "674", "attributes": { "weight": 4 } }, { "key": "6680", "source": "183", "target": "1355", "attributes": { "weight": 3 } }, { "key": "6714", "source": "183", "target": "192", "attributes": { "weight": 2 } }, { "key": "6694", "source": "183", "target": "466", "attributes": { "weight": 1 } }, { "key": "1384", "source": "183", "target": "427", "attributes": { "weight": 1 } }, { "key": "1372", "source": "183", "target": "465", "attributes": { "weight": 1 } }, { "key": "6690", "source": "183", "target": "457", "attributes": { "weight": 2 } }, { "key": "17361", "source": "183", "target": "358", "attributes": { "weight": 2 } }, { "key": "15231", "source": "183", "target": "1070", "attributes": { "weight": 1 } }, { "key": "6716", "source": "183", "target": "340", "attributes": { "weight": 1 } }, { "key": "1374", "source": "183", "target": "228", "attributes": { "weight": 1 } }, { "key": "1359", "source": "183", "target": "437", "attributes": { "weight": 1 } }, { "key": "6707", "source": "183", "target": "695", "attributes": { "weight": 2 } }, { "key": "3944", "source": "183", "target": "432", "attributes": { "weight": 2 } }, { "key": "6717", "source": "183", "target": "193", "attributes": { "weight": 3 } }, { "key": "6708", "source": "183", "target": "55", "attributes": { "weight": 1 } }, { "key": "6692", "source": "183", "target": "1362", "attributes": { "weight": 1 } }, { "key": "26444", "source": "183", "target": "70", "attributes": { "weight": 2 } }, { "key": "31516", "source": "183", "target": "2139", "attributes": { "weight": 1 } }, { "key": "6698", "source": "183", "target": "189", "attributes": { "weight": 2 } }, { "key": "6683", "source": "183", "target": "452", "attributes": { "weight": 3 } }, { "key": "6679", "source": "183", "target": "238", "attributes": { "weight": 1 } }, { "key": "6693", "source": "183", "target": "462", "attributes": { "weight": 3 } }, { "key": "6688", "source": "183", "target": "701", "attributes": { "weight": 1 } }, { "key": "13044", "source": "183", "target": "304", "attributes": { "weight": 2 } }, { "key": "1382", "source": "183", "target": "478", "attributes": { "weight": 1 } }, { "key": "11865", "source": "183", "target": "1522", "attributes": { "weight": 1 } }, { "key": "417", "source": "183", "target": "185", "attributes": { "weight": 1 } }, { "key": "1369", "source": "183", "target": "456", "attributes": { "weight": 1 } }, { "key": "6687", "source": "183", "target": "1359", "attributes": { "weight": 1 } }, { "key": "1387", "source": "183", "target": "491", "attributes": { "weight": 1 } }, { "key": "1391", "source": "183", "target": "498", "attributes": { "weight": 1 } }, { "key": "6710", "source": "183", "target": "1067", "attributes": { "weight": 1 } }, { "key": "1390", "source": "183", "target": "497", "attributes": { "weight": 3 } }, { "key": "1365", "source": "183", "target": "447", "attributes": { "weight": 3 } }, { "key": "26446", "source": "183", "target": "352", "attributes": { "weight": 1 } }, { "key": "6676", "source": "183", "target": "444", "attributes": { "weight": 1 } }, { "key": "6672", "source": "183", "target": "1354", "attributes": { "weight": 1 } }, { "key": "31589", "source": "183", "target": "595", "attributes": { "weight": 1 } }, { "key": "6675", "source": "183", "target": "443", "attributes": { "weight": 3 } }, { "key": "23377", "source": "183", "target": "1258", "attributes": { "weight": 2 } }, { "key": "17852", "source": "183", "target": "454", "attributes": { "weight": 2 } }, { "key": "6703", "source": "183", "target": "1298", "attributes": { "weight": 1 } }, { "key": "26442", "source": "183", "target": "1282", "attributes": { "weight": 1 } }, { "key": "1366", "source": "183", "target": "182", "attributes": { "weight": 2 } }, { "key": "6691", "source": "183", "target": "426", "attributes": { "weight": 4 } }, { "key": "1355", "source": "183", "target": "431", "attributes": { "weight": 1 } }, { "key": "26441", "source": "183", "target": "1365", "attributes": { "weight": 2 } }, { "key": "26438", "source": "183", "target": "1219", "attributes": { "weight": 1 } }, { "key": "4121", "source": "183", "target": "1088", "attributes": { "weight": 2 } }, { "key": "1386", "source": "183", "target": "488", "attributes": { "weight": 3 } }, { "key": "26436", "source": "183", "target": "440", "attributes": { "weight": 1 } }, { "key": "1362", "source": "183", "target": "441", "attributes": { "weight": 3 } }, { "key": "1392", "source": "183", "target": "194", "attributes": { "weight": 1 } }, { "key": "6670", "source": "183", "target": "1353", "attributes": { "weight": 2 } }, { "key": "1380", "source": "183", "target": "191", "attributes": { "weight": 3 } }, { "key": "6671", "source": "183", "target": "429", "attributes": { "weight": 2 } }, { "key": "6689", "source": "183", "target": "188", "attributes": { "weight": 2 } }, { "key": "418", "source": "184", "target": "181", "attributes": { "weight": 1 } }, { "key": "420", "source": "184", "target": "189", "attributes": { "weight": 1 } }, { "key": "421", "source": "184", "target": "57", "attributes": { "weight": 1 } }, { "key": "32088", "source": "184", "target": "3084", "attributes": { "weight": 1 } }, { "key": "419", "source": "184", "target": "185", "attributes": { "weight": 1 } }, { "key": "26472", "source": "185", "target": "454", "attributes": { "weight": 1 } }, { "key": "422", "source": "185", "target": "183", "attributes": { "weight": 1 } }, { "key": "427", "source": "185", "target": "194", "attributes": { "weight": 1 } }, { "key": "32378", "source": "185", "target": "791", "attributes": { "weight": 1 } }, { "key": "1402", "source": "185", "target": "224", "attributes": { "weight": 1 } }, { "key": "6729", "source": "185", "target": "231", "attributes": { "weight": 2 } }, { "key": "423", "source": "185", "target": "184", "attributes": { "weight": 1 } }, { "key": "6728", "source": "185", "target": "459", "attributes": { "weight": 1 } }, { "key": "424", "source": "185", "target": "188", "attributes": { "weight": 1 } }, { "key": "425", "source": "185", "target": "191", "attributes": { "weight": 1 } }, { "key": "31527", "source": "185", "target": "424", "attributes": { "weight": 1 } }, { "key": "426", "source": "185", "target": "193", "attributes": { "weight": 1 } }, { "key": "20050", "source": "186", "target": "56", "attributes": { "weight": 1 } }, { "key": "20048", "source": "186", "target": "2111", "attributes": { "weight": 1 } }, { "key": "6735", "source": "186", "target": "444", "attributes": { "weight": 2 } }, { "key": "1404", "source": "186", "target": "188", "attributes": { "weight": 1 } }, { "key": "20047", "source": "186", "target": "231", "attributes": { "weight": 2 } }, { "key": "20043", "source": "186", "target": "449", "attributes": { "weight": 1 } }, { "key": "20041", "source": "186", "target": "1070", "attributes": { "weight": 1 } }, { "key": "1405", "source": "186", "target": "193", "attributes": { "weight": 1 } }, { "key": "35934", "source": "186", "target": "428", "attributes": { "weight": 1 } }, { "key": "20046", "source": "186", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20042", "source": "186", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20039", "source": "186", "target": "1756", "attributes": { "weight": 1 } }, { "key": "428", "source": "186", "target": "190", "attributes": { "weight": 1 } }, { "key": "20040", "source": "186", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20045", "source": "186", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20044", "source": "186", "target": "451", "attributes": { "weight": 1 } }, { "key": "36910", "source": "186", "target": "1072", "attributes": { "weight": 1 } }, { "key": "20038", "source": "186", "target": "429", "attributes": { "weight": 1 } }, { "key": "20051", "source": "186", "target": "2189", "attributes": { "weight": 1 } }, { "key": "35933", "source": "186", "target": "433", "attributes": { "weight": 1 } }, { "key": "20049", "source": "186", "target": "489", "attributes": { "weight": 1 } }, { "key": "29027", "source": "187", "target": "495", "attributes": { "weight": 1 } }, { "key": "6778", "source": "187", "target": "56", "attributes": { "weight": 2 } }, { "key": "6779", "source": "187", "target": "193", "attributes": { "weight": 1 } }, { "key": "6777", "source": "187", "target": "231", "attributes": { "weight": 2 } }, { "key": "429", "source": "187", "target": "57", "attributes": { "weight": 1 } }, { "key": "26567", "source": "187", "target": "454", "attributes": { "weight": 2 } }, { "key": "6776", "source": "187", "target": "458", "attributes": { "weight": 2 } }, { "key": "26568", "source": "187", "target": "189", "attributes": { "weight": 2 } }, { "key": "23245", "source": "187", "target": "424", "attributes": { "weight": 2 } }, { "key": "26566", "source": "187", "target": "183", "attributes": { "weight": 2 } }, { "key": "26569", "source": "187", "target": "490", "attributes": { "weight": 2 } }, { "key": "1464", "source": "188", "target": "496", "attributes": { "weight": 1 } }, { "key": "6788", "source": "188", "target": "1353", "attributes": { "weight": 2 } }, { "key": "1441", "source": "188", "target": "52", "attributes": { "weight": 1 } }, { "key": "1442", "source": "188", "target": "458", "attributes": { "weight": 4 } }, { "key": "1427", "source": "188", "target": "59", "attributes": { "weight": 2 } }, { "key": "17245", "source": "188", "target": "449", "attributes": { "weight": 1 } }, { "key": "1451", "source": "188", "target": "191", "attributes": { "weight": 3 } }, { "key": "6793", "source": "188", "target": "183", "attributes": { "weight": 2 } }, { "key": "6801", "source": "188", "target": "192", "attributes": { "weight": 2 } }, { "key": "31313", "source": "188", "target": "674", "attributes": { "weight": 2 } }, { "key": "17463", "source": "188", "target": "358", "attributes": { "weight": 2 } }, { "key": "1459", "source": "188", "target": "488", "attributes": { "weight": 1 } }, { "key": "33408", "source": "188", "target": "135", "attributes": { "weight": 1 } }, { "key": "15294", "source": "188", "target": "483", "attributes": { "weight": 1 } }, { "key": "1435", "source": "188", "target": "445", "attributes": { "weight": 2 } }, { "key": "1447", "source": "188", "target": "473", "attributes": { "weight": 2 } }, { "key": "1437", "source": "188", "target": "451", "attributes": { "weight": 2 } }, { "key": "1461", "source": "188", "target": "233", "attributes": { "weight": 2 } }, { "key": "1463", "source": "188", "target": "495", "attributes": { "weight": 4 } }, { "key": "1452", "source": "188", "target": "70", "attributes": { "weight": 2 } }, { "key": "1458", "source": "188", "target": "487", "attributes": { "weight": 2 } }, { "key": "1430", "source": "188", "target": "435", "attributes": { "weight": 1 } }, { "key": "1450", "source": "188", "target": "476", "attributes": { "weight": 2 } }, { "key": "1465", "source": "188", "target": "57", "attributes": { "weight": 3 } }, { "key": "1446", "source": "188", "target": "472", "attributes": { "weight": 2 } }, { "key": "26311", "source": "188", "target": "1372", "attributes": { "weight": 2 } }, { "key": "1429", "source": "188", "target": "434", "attributes": { "weight": 1 } }, { "key": "1436", "source": "188", "target": "447", "attributes": { "weight": 1 } }, { "key": "15292", "source": "188", "target": "1357", "attributes": { "weight": 1 } }, { "key": "6798", "source": "188", "target": "54", "attributes": { "weight": 3 } }, { "key": "1431", "source": "188", "target": "436", "attributes": { "weight": 1 } }, { "key": "1449", "source": "188", "target": "474", "attributes": { "weight": 2 } }, { "key": "1460", "source": "188", "target": "490", "attributes": { "weight": 2 } }, { "key": "15293", "source": "188", "target": "426", "attributes": { "weight": 1 } }, { "key": "26579", "source": "188", "target": "1047", "attributes": { "weight": 2 } }, { "key": "6800", "source": "188", "target": "695", "attributes": { "weight": 2 } }, { "key": "25918", "source": "188", "target": "1367", "attributes": { "weight": 1 } }, { "key": "26581", "source": "188", "target": "470", "attributes": { "weight": 2 } }, { "key": "26577", "source": "188", "target": "223", "attributes": { "weight": 2 } }, { "key": "1434", "source": "188", "target": "224", "attributes": { "weight": 1 } }, { "key": "6794", "source": "188", "target": "1358", "attributes": { "weight": 2 } }, { "key": "33407", "source": "188", "target": "450", "attributes": { "weight": 1 } }, { "key": "6792", "source": "188", "target": "443", "attributes": { "weight": 2 } }, { "key": "1455", "source": "188", "target": "427", "attributes": { "weight": 1 } }, { "key": "1457", "source": "188", "target": "232", "attributes": { "weight": 1 } }, { "key": "1432", "source": "188", "target": "440", "attributes": { "weight": 1 } }, { "key": "1454", "source": "188", "target": "479", "attributes": { "weight": 3 } }, { "key": "32390", "source": "188", "target": "791", "attributes": { "weight": 1 } }, { "key": "1456", "source": "188", "target": "484", "attributes": { "weight": 1 } }, { "key": "15291", "source": "188", "target": "860", "attributes": { "weight": 1 } }, { "key": "1462", "source": "188", "target": "494", "attributes": { "weight": 2 } }, { "key": "33049", "source": "188", "target": "1368", "attributes": { "weight": 1 } }, { "key": "31600", "source": "188", "target": "8", "attributes": { "weight": 1 } }, { "key": "33048", "source": "188", "target": "1355", "attributes": { "weight": 1 } }, { "key": "33409", "source": "188", "target": "2258", "attributes": { "weight": 1 } }, { "key": "430", "source": "188", "target": "185", "attributes": { "weight": 1 } }, { "key": "32389", "source": "188", "target": "857", "attributes": { "weight": 2 } }, { "key": "2422", "source": "188", "target": "701", "attributes": { "weight": 1 } }, { "key": "26582", "source": "188", "target": "497", "attributes": { "weight": 2 } }, { "key": "6790", "source": "188", "target": "1354", "attributes": { "weight": 2 } }, { "key": "26578", "source": "188", "target": "425", "attributes": { "weight": 3 } }, { "key": "15295", "source": "188", "target": "499", "attributes": { "weight": 1 } }, { "key": "6797", "source": "188", "target": "462", "attributes": { "weight": 2 } }, { "key": "31601", "source": "188", "target": "595", "attributes": { "weight": 1 } }, { "key": "6791", "source": "188", "target": "424", "attributes": { "weight": 5 } }, { "key": "1440", "source": "188", "target": "186", "attributes": { "weight": 1 } }, { "key": "1438", "source": "188", "target": "452", "attributes": { "weight": 2 } }, { "key": "6795", "source": "188", "target": "457", "attributes": { "weight": 2 } }, { "key": "1439", "source": "188", "target": "453", "attributes": { "weight": 1 } }, { "key": "6799", "source": "188", "target": "189", "attributes": { "weight": 2 } }, { "key": "6802", "source": "188", "target": "56", "attributes": { "weight": 3 } }, { "key": "1444", "source": "188", "target": "468", "attributes": { "weight": 4 } }, { "key": "1448", "source": "188", "target": "190", "attributes": { "weight": 2 } }, { "key": "12524", "source": "188", "target": "51", "attributes": { "weight": 1 } }, { "key": "1445", "source": "188", "target": "471", "attributes": { "weight": 1 } }, { "key": "32089", "source": "188", "target": "3084", "attributes": { "weight": 1 } }, { "key": "1453", "source": "188", "target": "231", "attributes": { "weight": 4 } }, { "key": "1426", "source": "188", "target": "220", "attributes": { "weight": 5 } }, { "key": "24495", "source": "188", "target": "790", "attributes": { "weight": 1 } }, { "key": "1433", "source": "188", "target": "442", "attributes": { "weight": 3 } }, { "key": "6789", "source": "188", "target": "429", "attributes": { "weight": 4 } }, { "key": "1428", "source": "188", "target": "130", "attributes": { "weight": 4 } }, { "key": "26580", "source": "188", "target": "454", "attributes": { "weight": 2 } }, { "key": "1443", "source": "188", "target": "463", "attributes": { "weight": 2 } }, { "key": "33406", "source": "188", "target": "432", "attributes": { "weight": 1 } }, { "key": "37010", "source": "188", "target": "1366", "attributes": { "weight": 1 } }, { "key": "6796", "source": "188", "target": "459", "attributes": { "weight": 1 } }, { "key": "6933", "source": "189", "target": "1094", "attributes": { "weight": 1 } }, { "key": "26669", "source": "189", "target": "464", "attributes": { "weight": 2 } }, { "key": "6910", "source": "189", "target": "188", "attributes": { "weight": 2 } }, { "key": "6918", "source": "189", "target": "1085", "attributes": { "weight": 1 } }, { "key": "26652", "source": "189", "target": "1047", "attributes": { "weight": 2 } }, { "key": "26670", "source": "189", "target": "338", "attributes": { "weight": 2 } }, { "key": "26674", "source": "189", "target": "2647", "attributes": { "weight": 1 } }, { "key": "6932", "source": "189", "target": "495", "attributes": { "weight": 5 } }, { "key": "26697", "source": "189", "target": "490", "attributes": { "weight": 1 } }, { "key": "26660", "source": "189", "target": "168", "attributes": { "weight": 1 } }, { "key": "15343", "source": "189", "target": "426", "attributes": { "weight": 1 } }, { "key": "26693", "source": "189", "target": "2648", "attributes": { "weight": 2 } }, { "key": "6897", "source": "189", "target": "1036", "attributes": { "weight": 3 } }, { "key": "26691", "source": "189", "target": "1312", "attributes": { "weight": 1 } }, { "key": "17270", "source": "189", "target": "2108", "attributes": { "weight": 1 } }, { "key": "33569", "source": "189", "target": "450", "attributes": { "weight": 1 } }, { "key": "26637", "source": "189", "target": "164", "attributes": { "weight": 2 } }, { "key": "33571", "source": "189", "target": "489", "attributes": { "weight": 1 } }, { "key": "15344", "source": "189", "target": "1373", "attributes": { "weight": 1 } }, { "key": "6929", "source": "189", "target": "56", "attributes": { "weight": 4 } }, { "key": "33061", "source": "189", "target": "493", "attributes": { "weight": 1 } }, { "key": "6903", "source": "189", "target": "445", "attributes": { "weight": 5 } }, { "key": "26666", "source": "189", "target": "638", "attributes": { "weight": 3 } }, { "key": "18477", "source": "189", "target": "1738", "attributes": { "weight": 1 } }, { "key": "26695", "source": "189", "target": "486", "attributes": { "weight": 1 } }, { "key": "26687", "source": "189", "target": "478", "attributes": { "weight": 2 } }, { "key": "26647", "source": "189", "target": "674", "attributes": { "weight": 2 } }, { "key": "6925", "source": "189", "target": "483", "attributes": { "weight": 3 } }, { "key": "6914", "source": "189", "target": "466", "attributes": { "weight": 1 } }, { "key": "26705", "source": "189", "target": "1375", "attributes": { "weight": 1 } }, { "key": "26655", "source": "189", "target": "1536", "attributes": { "weight": 1 } }, { "key": "26661", "source": "189", "target": "707", "attributes": { "weight": 2 } }, { "key": "26644", "source": "189", "target": "339", "attributes": { "weight": 2 } }, { "key": "8928", "source": "189", "target": "442", "attributes": { "weight": 2 } }, { "key": "13293", "source": "189", "target": "305", "attributes": { "weight": 2 } }, { "key": "25108", "source": "189", "target": "427", "attributes": { "weight": 2 } }, { "key": "6901", "source": "189", "target": "443", "attributes": { "weight": 3 } }, { "key": "33802", "source": "189", "target": "14", "attributes": { "weight": 1 } }, { "key": "4015", "source": "189", "target": "458", "attributes": { "weight": 5 } }, { "key": "4017", "source": "189", "target": "487", "attributes": { "weight": 4 } }, { "key": "26690", "source": "189", "target": "485", "attributes": { "weight": 1 } }, { "key": "26680", "source": "189", "target": "474", "attributes": { "weight": 1 } }, { "key": "15342", "source": "189", "target": "860", "attributes": { "weight": 2 } }, { "key": "34560", "source": "189", "target": "1233", "attributes": { "weight": 1 } }, { "key": "1509", "source": "189", "target": "448", "attributes": { "weight": 2 } }, { "key": "25881", "source": "189", "target": "220", "attributes": { "weight": 2 } }, { "key": "26640", "source": "189", "target": "438", "attributes": { "weight": 1 } }, { "key": "26667", "source": "189", "target": "1024", "attributes": { "weight": 2 } }, { "key": "17541", "source": "189", "target": "494", "attributes": { "weight": 2 } }, { "key": "6921", "source": "189", "target": "191", "attributes": { "weight": 3 } }, { "key": "27190", "source": "189", "target": "1390", "attributes": { "weight": 1 } }, { "key": "36979", "source": "189", "target": "362", "attributes": { "weight": 1 } }, { "key": "26710", "source": "189", "target": "57", "attributes": { "weight": 2 } }, { "key": "26701", "source": "189", "target": "233", "attributes": { "weight": 1 } }, { "key": "6894", "source": "189", "target": "1354", "attributes": { "weight": 2 } }, { "key": "24165", "source": "189", "target": "130", "attributes": { "weight": 3 } }, { "key": "26704", "source": "189", "target": "1778", "attributes": { "weight": 1 } }, { "key": "6916", "source": "189", "target": "471", "attributes": { "weight": 6 } }, { "key": "6892", "source": "189", "target": "1353", "attributes": { "weight": 2 } }, { "key": "26659", "source": "189", "target": "455", "attributes": { "weight": 1 } }, { "key": "26707", "source": "189", "target": "498", "attributes": { "weight": 2 } }, { "key": "26688", "source": "189", "target": "479", "attributes": { "weight": 1 } }, { "key": "33570", "source": "189", "target": "135", "attributes": { "weight": 1 } }, { "key": "11208", "source": "189", "target": "452", "attributes": { "weight": 2 } }, { "key": "26673", "source": "189", "target": "470", "attributes": { "weight": 3 } }, { "key": "4016", "source": "189", "target": "1066", "attributes": { "weight": 2 } }, { "key": "26676", "source": "189", "target": "472", "attributes": { "weight": 6 } }, { "key": "15345", "source": "189", "target": "499", "attributes": { "weight": 2 } }, { "key": "6898", "source": "189", "target": "424", "attributes": { "weight": 4 } }, { "key": "25948", "source": "189", "target": "1367", "attributes": { "weight": 2 } }, { "key": "14304", "source": "189", "target": "454", "attributes": { "weight": 3 } }, { "key": "26706", "source": "189", "target": "497", "attributes": { "weight": 2 } }, { "key": "13292", "source": "189", "target": "304", "attributes": { "weight": 2 } }, { "key": "26685", "source": "189", "target": "1369", "attributes": { "weight": 1 } }, { "key": "26642", "source": "189", "target": "425", "attributes": { "weight": 3 } }, { "key": "26708", "source": "189", "target": "194", "attributes": { "weight": 2 } }, { "key": "6905", "source": "189", "target": "183", "attributes": { "weight": 3 } }, { "key": "6923", "source": "189", "target": "372", "attributes": { "weight": 2 } }, { "key": "31469", "source": "189", "target": "178", "attributes": { "weight": 4 } }, { "key": "26689", "source": "189", "target": "480", "attributes": { "weight": 1 } }, { "key": "26700", "source": "189", "target": "1093", "attributes": { "weight": 1 } }, { "key": "37375", "source": "189", "target": "829", "attributes": { "weight": 1 } }, { "key": "17539", "source": "189", "target": "439", "attributes": { "weight": 2 } }, { "key": "26683", "source": "189", "target": "123", "attributes": { "weight": 2 } }, { "key": "26656", "source": "189", "target": "1118", "attributes": { "weight": 2 } }, { "key": "31543", "source": "189", "target": "2114", "attributes": { "weight": 1 } }, { "key": "35311", "source": "189", "target": "50", "attributes": { "weight": 1 } }, { "key": "26686", "source": "189", "target": "477", "attributes": { "weight": 1 } }, { "key": "26643", "source": "189", "target": "440", "attributes": { "weight": 1 } }, { "key": "12009", "source": "189", "target": "1522", "attributes": { "weight": 1 } }, { "key": "6913", "source": "189", "target": "462", "attributes": { "weight": 3 } }, { "key": "6911", "source": "189", "target": "457", "attributes": { "weight": 4 } }, { "key": "26646", "source": "189", "target": "779", "attributes": { "weight": 1 } }, { "key": "14305", "source": "189", "target": "53", "attributes": { "weight": 2 } }, { "key": "26658", "source": "189", "target": "52", "attributes": { "weight": 2 } }, { "key": "17542", "source": "189", "target": "496", "attributes": { "weight": 2 } }, { "key": "26675", "source": "189", "target": "228", "attributes": { "weight": 1 } }, { "key": "9513", "source": "189", "target": "645", "attributes": { "weight": 2 } }, { "key": "24893", "source": "189", "target": "109", "attributes": { "weight": 2 } }, { "key": "26703", "source": "189", "target": "1777", "attributes": { "weight": 1 } }, { "key": "26653", "source": "189", "target": "1356", "attributes": { "weight": 1 } }, { "key": "9514", "source": "189", "target": "419", "attributes": { "weight": 2 } }, { "key": "26671", "source": "189", "target": "8", "attributes": { "weight": 2 } }, { "key": "30471", "source": "189", "target": "1046", "attributes": { "weight": 2 } }, { "key": "32092", "source": "189", "target": "3084", "attributes": { "weight": 1 } }, { "key": "15340", "source": "189", "target": "1703", "attributes": { "weight": 1 } }, { "key": "35312", "source": "189", "target": "1088", "attributes": { "weight": 1 } }, { "key": "12527", "source": "189", "target": "51", "attributes": { "weight": 1 } }, { "key": "17269", "source": "189", "target": "449", "attributes": { "weight": 2 } }, { "key": "6902", "source": "189", "target": "224", "attributes": { "weight": 2 } }, { "key": "6931", "source": "189", "target": "193", "attributes": { "weight": 3 } }, { "key": "4014", "source": "189", "target": "432", "attributes": { "weight": 4 } }, { "key": "31673", "source": "189", "target": "595", "attributes": { "weight": 1 } }, { "key": "6900", "source": "189", "target": "441", "attributes": { "weight": 3 } }, { "key": "26651", "source": "189", "target": "2211", "attributes": { "weight": 1 } }, { "key": "26662", "source": "189", "target": "1232", "attributes": { "weight": 2 } }, { "key": "26702", "source": "189", "target": "492", "attributes": { "weight": 1 } }, { "key": "6912", "source": "189", "target": "459", "attributes": { "weight": 2 } }, { "key": "26682", "source": "189", "target": "868", "attributes": { "weight": 1 } }, { "key": "6917", "source": "189", "target": "1366", "attributes": { "weight": 1 } }, { "key": "26664", "source": "189", "target": "791", "attributes": { "weight": 4 } }, { "key": "6909", "source": "189", "target": "701", "attributes": { "weight": 2 } }, { "key": "26663", "source": "189", "target": "278", "attributes": { "weight": 1 } }, { "key": "16888", "source": "189", "target": "70", "attributes": { "weight": 3 } }, { "key": "15341", "source": "189", "target": "1070", "attributes": { "weight": 1 } }, { "key": "6895", "source": "189", "target": "889", "attributes": { "weight": 2 } }, { "key": "16887", "source": "189", "target": "59", "attributes": { "weight": 3 } }, { "key": "26681", "source": "189", "target": "476", "attributes": { "weight": 1 } }, { "key": "6907", "source": "189", "target": "1357", "attributes": { "weight": 2 } }, { "key": "26657", "source": "189", "target": "187", "attributes": { "weight": 2 } }, { "key": "6928", "source": "189", "target": "1067", "attributes": { "weight": 1 } }, { "key": "6926", "source": "189", "target": "695", "attributes": { "weight": 2 } }, { "key": "26679", "source": "189", "target": "473", "attributes": { "weight": 1 } }, { "key": "6930", "source": "189", "target": "340", "attributes": { "weight": 3 } }, { "key": "26694", "source": "189", "target": "1323", "attributes": { "weight": 2 } }, { "key": "6908", "source": "189", "target": "1358", "attributes": { "weight": 3 } }, { "key": "26672", "source": "189", "target": "467", "attributes": { "weight": 1 } }, { "key": "26699", "source": "189", "target": "673", "attributes": { "weight": 1 } }, { "key": "26654", "source": "189", "target": "1360", "attributes": { "weight": 2 } }, { "key": "7354", "source": "189", "target": "1092", "attributes": { "weight": 2 } }, { "key": "8927", "source": "189", "target": "195", "attributes": { "weight": 3 } }, { "key": "6893", "source": "189", "target": "429", "attributes": { "weight": 5 } }, { "key": "6896", "source": "189", "target": "1068", "attributes": { "weight": 1 } }, { "key": "6924", "source": "189", "target": "1371", "attributes": { "weight": 1 } }, { "key": "26698", "source": "189", "target": "491", "attributes": { "weight": 1 } }, { "key": "25107", "source": "189", "target": "1547", "attributes": { "weight": 2 } }, { "key": "26634", "source": "189", "target": "433", "attributes": { "weight": 2 } }, { "key": "12405", "source": "189", "target": "1355", "attributes": { "weight": 3 } }, { "key": "30905", "source": "189", "target": "13", "attributes": { "weight": 1 } }, { "key": "26668", "source": "189", "target": "1025", "attributes": { "weight": 1 } }, { "key": "26364", "source": "189", "target": "1258", "attributes": { "weight": 2 } }, { "key": "31544", "source": "189", "target": "2139", "attributes": { "weight": 1 } }, { "key": "6904", "source": "189", "target": "3", "attributes": { "weight": 3 } }, { "key": "30775", "source": "189", "target": "1744", "attributes": { "weight": 1 } }, { "key": "26696", "source": "189", "target": "488", "attributes": { "weight": 2 } }, { "key": "5721", "source": "189", "target": "468", "attributes": { "weight": 4 } }, { "key": "26665", "source": "189", "target": "370", "attributes": { "weight": 2 } }, { "key": "26638", "source": "189", "target": "222", "attributes": { "weight": 1 } }, { "key": "26641", "source": "189", "target": "223", "attributes": { "weight": 2 } }, { "key": "7355", "source": "189", "target": "154", "attributes": { "weight": 2 } }, { "key": "26677", "source": "189", "target": "396", "attributes": { "weight": 1 } }, { "key": "26632", "source": "189", "target": "857", "attributes": { "weight": 2 } }, { "key": "6899", "source": "189", "target": "49", "attributes": { "weight": 2 } }, { "key": "6927", "source": "189", "target": "232", "attributes": { "weight": 3 } }, { "key": "26633", "source": "189", "target": "431", "attributes": { "weight": 1 } }, { "key": "26650", "source": "189", "target": "182", "attributes": { "weight": 1 } }, { "key": "26692", "source": "189", "target": "1060", "attributes": { "weight": 1 } }, { "key": "6922", "source": "189", "target": "231", "attributes": { "weight": 4 } }, { "key": "6919", "source": "189", "target": "190", "attributes": { "weight": 3 } }, { "key": "26678", "source": "189", "target": "1087", "attributes": { "weight": 1 } }, { "key": "5722", "source": "189", "target": "1090", "attributes": { "weight": 2 } }, { "key": "6915", "source": "189", "target": "54", "attributes": { "weight": 4 } }, { "key": "7357", "source": "189", "target": "1063", "attributes": { "weight": 2 } }, { "key": "26649", "source": "189", "target": "2122", "attributes": { "weight": 1 } }, { "key": "6920", "source": "189", "target": "1368", "attributes": { "weight": 3 } }, { "key": "26635", "source": "189", "target": "435", "attributes": { "weight": 1 } }, { "key": "10514", "source": "189", "target": "225", "attributes": { "weight": 1 } }, { "key": "10515", "source": "189", "target": "482", "attributes": { "weight": 1 } }, { "key": "37017", "source": "189", "target": "2644", "attributes": { "weight": 1 } }, { "key": "431", "source": "189", "target": "184", "attributes": { "weight": 1 } }, { "key": "26648", "source": "189", "target": "447", "attributes": { "weight": 2 } }, { "key": "26684", "source": "189", "target": "1026", "attributes": { "weight": 2 } }, { "key": "6906", "source": "189", "target": "451", "attributes": { "weight": 4 } }, { "key": "26709", "source": "189", "target": "500", "attributes": { "weight": 2 } }, { "key": "26645", "source": "189", "target": "1760", "attributes": { "weight": 1 } }, { "key": "17540", "source": "189", "target": "1116", "attributes": { "weight": 2 } }, { "key": "26639", "source": "189", "target": "938", "attributes": { "weight": 2 } }, { "key": "33801", "source": "189", "target": "682", "attributes": { "weight": 1 } }, { "key": "17499", "source": "189", "target": "358", "attributes": { "weight": 3 } }, { "key": "7356", "source": "189", "target": "333", "attributes": { "weight": 2 } }, { "key": "26636", "source": "189", "target": "437", "attributes": { "weight": 1 } }, { "key": "36045", "source": "190", "target": "440", "attributes": { "weight": 1 } }, { "key": "36047", "source": "190", "target": "1026", "attributes": { "weight": 1 } }, { "key": "36938", "source": "190", "target": "2647", "attributes": { "weight": 1 } }, { "key": "11229", "source": "190", "target": "492", "attributes": { "weight": 2 } }, { "key": "24360", "source": "190", "target": "1024", "attributes": { "weight": 1 } }, { "key": "6937", "source": "190", "target": "189", "attributes": { "weight": 3 } }, { "key": "37464", "source": "190", "target": "2258", "attributes": { "weight": 1 } }, { "key": "33595", "source": "190", "target": "1836", "attributes": { "weight": 1 } }, { "key": "24364", "source": "190", "target": "496", "attributes": { "weight": 1 } }, { "key": "24361", "source": "190", "target": "191", "attributes": { "weight": 1 } }, { "key": "26365", "source": "190", "target": "1258", "attributes": { "weight": 1 } }, { "key": "24362", "source": "190", "target": "340", "attributes": { "weight": 1 } }, { "key": "35313", "source": "190", "target": "1536", "attributes": { "weight": 1 } }, { "key": "1516", "source": "190", "target": "455", "attributes": { "weight": 1 } }, { "key": "8931", "source": "190", "target": "442", "attributes": { "weight": 3 } }, { "key": "33599", "source": "190", "target": "672", "attributes": { "weight": 1 } }, { "key": "6938", "source": "190", "target": "193", "attributes": { "weight": 2 } }, { "key": "23642", "source": "190", "target": "220", "attributes": { "weight": 1 } }, { "key": "11227", "source": "190", "target": "452", "attributes": { "weight": 1 } }, { "key": "6936", "source": "190", "target": "183", "attributes": { "weight": 3 } }, { "key": "32577", "source": "190", "target": "791", "attributes": { "weight": 1 } }, { "key": "33597", "source": "190", "target": "474", "attributes": { "weight": 1 } }, { "key": "29043", "source": "190", "target": "495", "attributes": { "weight": 1 } }, { "key": "11228", "source": "190", "target": "477", "attributes": { "weight": 2 } }, { "key": "33592", "source": "190", "target": "425", "attributes": { "weight": 1 } }, { "key": "11226", "source": "190", "target": "445", "attributes": { "weight": 3 } }, { "key": "23643", "source": "190", "target": "2248", "attributes": { "weight": 1 } }, { "key": "24169", "source": "190", "target": "130", "attributes": { "weight": 2 } }, { "key": "24359", "source": "190", "target": "441", "attributes": { "weight": 1 } }, { "key": "12010", "source": "190", "target": "135", "attributes": { "weight": 4 } }, { "key": "36048", "source": "190", "target": "479", "attributes": { "weight": 1 } }, { "key": "33596", "source": "190", "target": "473", "attributes": { "weight": 1 } }, { "key": "32793", "source": "190", "target": "472", "attributes": { "weight": 3 } }, { "key": "11230", "source": "190", "target": "1777", "attributes": { "weight": 1 } }, { "key": "432", "source": "190", "target": "186", "attributes": { "weight": 1 } }, { "key": "33598", "source": "190", "target": "489", "attributes": { "weight": 1 } }, { "key": "24363", "source": "190", "target": "494", "attributes": { "weight": 2 } }, { "key": "6939", "source": "190", "target": "57", "attributes": { "weight": 2 } }, { "key": "1515", "source": "190", "target": "224", "attributes": { "weight": 1 } }, { "key": "17272", "source": "190", "target": "449", "attributes": { "weight": 1 } }, { "key": "32794", "source": "190", "target": "1125", "attributes": { "weight": 2 } }, { "key": "35314", "source": "190", "target": "1088", "attributes": { "weight": 1 } }, { "key": "31426", "source": "190", "target": "223", "attributes": { "weight": 2 } }, { "key": "34875", "source": "190", "target": "493", "attributes": { "weight": 1 } }, { "key": "9974", "source": "190", "target": "469", "attributes": { "weight": 4 } }, { "key": "1517", "source": "190", "target": "188", "attributes": { "weight": 2 } }, { "key": "33594", "source": "190", "target": "52", "attributes": { "weight": 1 } }, { "key": "1518", "source": "190", "target": "490", "attributes": { "weight": 3 } }, { "key": "36046", "source": "190", "target": "465", "attributes": { "weight": 1 } }, { "key": "7358", "source": "190", "target": "454", "attributes": { "weight": 2 } }, { "key": "33593", "source": "190", "target": "450", "attributes": { "weight": 1 } }, { "key": "35329", "source": "191", "target": "494", "attributes": { "weight": 1 } }, { "key": "24367", "source": "191", "target": "452", "attributes": { "weight": 1 } }, { "key": "23647", "source": "191", "target": "220", "attributes": { "weight": 1 } }, { "key": "24371", "source": "191", "target": "496", "attributes": { "weight": 1 } }, { "key": "1529", "source": "191", "target": "490", "attributes": { "weight": 3 } }, { "key": "33622", "source": "191", "target": "474", "attributes": { "weight": 1 } }, { "key": "33620", "source": "191", "target": "425", "attributes": { "weight": 1 } }, { "key": "35327", "source": "191", "target": "1536", "attributes": { "weight": 1 } }, { "key": "11237", "source": "191", "target": "695", "attributes": { "weight": 2 } }, { "key": "1526", "source": "191", "target": "224", "attributes": { "weight": 3 } }, { "key": "433", "source": "191", "target": "185", "attributes": { "weight": 1 } }, { "key": "26724", "source": "191", "target": "454", "attributes": { "weight": 1 } }, { "key": "24365", "source": "191", "target": "222", "attributes": { "weight": 1 } }, { "key": "35326", "source": "191", "target": "50", "attributes": { "weight": 1 } }, { "key": "24368", "source": "191", "target": "469", "attributes": { "weight": 1 } }, { "key": "32093", "source": "191", "target": "3084", "attributes": { "weight": 1 } }, { "key": "1528", "source": "191", "target": "188", "attributes": { "weight": 3 } }, { "key": "16898", "source": "191", "target": "59", "attributes": { "weight": 1 } }, { "key": "6967", "source": "191", "target": "193", "attributes": { "weight": 2 } }, { "key": "6969", "source": "191", "target": "57", "attributes": { "weight": 2 } }, { "key": "24370", "source": "191", "target": "492", "attributes": { "weight": 1 } }, { "key": "24369", "source": "191", "target": "190", "attributes": { "weight": 1 } }, { "key": "24366", "source": "191", "target": "442", "attributes": { "weight": 1 } }, { "key": "33621", "source": "191", "target": "473", "attributes": { "weight": 1 } }, { "key": "33623", "source": "191", "target": "672", "attributes": { "weight": 1 } }, { "key": "1527", "source": "191", "target": "183", "attributes": { "weight": 3 } }, { "key": "35328", "source": "191", "target": "1088", "attributes": { "weight": 1 } }, { "key": "12018", "source": "191", "target": "135", "attributes": { "weight": 3 } }, { "key": "6965", "source": "191", "target": "189", "attributes": { "weight": 3 } }, { "key": "6968", "source": "191", "target": "495", "attributes": { "weight": 4 } }, { "key": "6966", "source": "191", "target": "476", "attributes": { "weight": 2 } }, { "key": "27283", "source": "191", "target": "52", "attributes": { "weight": 2 } }, { "key": "7065", "source": "192", "target": "495", "attributes": { "weight": 3 } }, { "key": "21178", "source": "192", "target": "489", "attributes": { "weight": 1 } }, { "key": "7061", "source": "192", "target": "54", "attributes": { "weight": 2 } }, { "key": "7057", "source": "192", "target": "183", "attributes": { "weight": 2 } }, { "key": "7064", "source": "192", "target": "193", "attributes": { "weight": 2 } }, { "key": "26761", "source": "192", "target": "454", "attributes": { "weight": 2 } }, { "key": "434", "source": "192", "target": "57", "attributes": { "weight": 1 } }, { "key": "32606", "source": "192", "target": "791", "attributes": { "weight": 1 } }, { "key": "7059", "source": "192", "target": "458", "attributes": { "weight": 2 } }, { "key": "7060", "source": "192", "target": "135", "attributes": { "weight": 2 } }, { "key": "7062", "source": "192", "target": "231", "attributes": { "weight": 2 } }, { "key": "7058", "source": "192", "target": "188", "attributes": { "weight": 2 } }, { "key": "7056", "source": "192", "target": "444", "attributes": { "weight": 2 } }, { "key": "23249", "source": "192", "target": "424", "attributes": { "weight": 2 } }, { "key": "7063", "source": "192", "target": "56", "attributes": { "weight": 2 } }, { "key": "33721", "source": "192", "target": "672", "attributes": { "weight": 1 } }, { "key": "1630", "source": "192", "target": "224", "attributes": { "weight": 2 } }, { "key": "23250", "source": "192", "target": "426", "attributes": { "weight": 1 } }, { "key": "7055", "source": "192", "target": "1353", "attributes": { "weight": 2 } }, { "key": "32853", "source": "193", "target": "1088", "attributes": { "weight": 1 } }, { "key": "32617", "source": "193", "target": "791", "attributes": { "weight": 1 } }, { "key": "1643", "source": "193", "target": "452", "attributes": { "weight": 3 } }, { "key": "7122", "source": "193", "target": "483", "attributes": { "weight": 1 } }, { "key": "7100", "source": "193", "target": "1358", "attributes": { "weight": 1 } }, { "key": "10005", "source": "193", "target": "477", "attributes": { "weight": 2 } }, { "key": "7129", "source": "193", "target": "56", "attributes": { "weight": 1 } }, { "key": "7088", "source": "193", "target": "130", "attributes": { "weight": 4 } }, { "key": "1651", "source": "193", "target": "474", "attributes": { "weight": 1 } }, { "key": "7102", "source": "193", "target": "1118", "attributes": { "weight": 3 } }, { "key": "7130", "source": "193", "target": "340", "attributes": { "weight": 2 } }, { "key": "6479", "source": "193", "target": "370", "attributes": { "weight": 2 } }, { "key": "1639", "source": "193", "target": "222", "attributes": { "weight": 1 } }, { "key": "10006", "source": "193", "target": "480", "attributes": { "weight": 2 } }, { "key": "1644", "source": "193", "target": "186", "attributes": { "weight": 1 } }, { "key": "7082", "source": "193", "target": "1353", "attributes": { "weight": 1 } }, { "key": "1658", "source": "193", "target": "490", "attributes": { "weight": 3 } }, { "key": "7091", "source": "193", "target": "440", "attributes": { "weight": 1 } }, { "key": "7120", "source": "193", "target": "1026", "attributes": { "weight": 2 } }, { "key": "7116", "source": "193", "target": "1368", "attributes": { "weight": 1 } }, { "key": "7115", "source": "193", "target": "190", "attributes": { "weight": 2 } }, { "key": "1652", "source": "193", "target": "476", "attributes": { "weight": 3 } }, { "key": "7131", "source": "193", "target": "494", "attributes": { "weight": 2 } }, { "key": "7108", "source": "193", "target": "464", "attributes": { "weight": 1 } }, { "key": "1660", "source": "193", "target": "496", "attributes": { "weight": 1 } }, { "key": "28991", "source": "193", "target": "595", "attributes": { "weight": 2 } }, { "key": "25955", "source": "193", "target": "1367", "attributes": { "weight": 1 } }, { "key": "7096", "source": "193", "target": "451", "attributes": { "weight": 1 } }, { "key": "1638", "source": "193", "target": "436", "attributes": { "weight": 1 } }, { "key": "7132", "source": "193", "target": "497", "attributes": { "weight": 1 } }, { "key": "7113", "source": "193", "target": "189", "attributes": { "weight": 3 } }, { "key": "7090", "source": "193", "target": "439", "attributes": { "weight": 2 } }, { "key": "24258", "source": "193", "target": "1116", "attributes": { "weight": 2 } }, { "key": "6481", "source": "193", "target": "123", "attributes": { "weight": 2 } }, { "key": "4056", "source": "193", "target": "432", "attributes": { "weight": 2 } }, { "key": "7097", "source": "193", "target": "453", "attributes": { "weight": 2 } }, { "key": "7112", "source": "193", "target": "1366", "attributes": { "weight": 1 } }, { "key": "23484", "source": "193", "target": "223", "attributes": { "weight": 3 } }, { "key": "7119", "source": "193", "target": "70", "attributes": { "weight": 4 } }, { "key": "7111", "source": "193", "target": "471", "attributes": { "weight": 2 } }, { "key": "1635", "source": "193", "target": "429", "attributes": { "weight": 2 } }, { "key": "30488", "source": "193", "target": "1046", "attributes": { "weight": 1 } }, { "key": "1640", "source": "193", "target": "224", "attributes": { "weight": 3 } }, { "key": "9127", "source": "193", "target": "442", "attributes": { "weight": 3 } }, { "key": "7125", "source": "193", "target": "487", "attributes": { "weight": 1 } }, { "key": "27193", "source": "193", "target": "1390", "attributes": { "weight": 1 } }, { "key": "7126", "source": "193", "target": "1067", "attributes": { "weight": 1 } }, { "key": "23700", "source": "193", "target": "2248", "attributes": { "weight": 1 } }, { "key": "6480", "source": "193", "target": "371", "attributes": { "weight": 2 } }, { "key": "29914", "source": "193", "target": "1024", "attributes": { "weight": 1 } }, { "key": "26376", "source": "193", "target": "1258", "attributes": { "weight": 2 } }, { "key": "7099", "source": "193", "target": "454", "attributes": { "weight": 4 } }, { "key": "7094", "source": "193", "target": "3", "attributes": { "weight": 2 } }, { "key": "1657", "source": "193", "target": "488", "attributes": { "weight": 2 } }, { "key": "26774", "source": "193", "target": "500", "attributes": { "weight": 2 } }, { "key": "7101", "source": "193", "target": "1360", "attributes": { "weight": 1 } }, { "key": "7093", "source": "193", "target": "674", "attributes": { "weight": 6 } }, { "key": "7128", "source": "193", "target": "192", "attributes": { "weight": 2 } }, { "key": "7105", "source": "193", "target": "426", "attributes": { "weight": 1 } }, { "key": "7098", "source": "193", "target": "1357", "attributes": { "weight": 1 } }, { "key": "35710", "source": "193", "target": "3246", "attributes": { "weight": 1 } }, { "key": "7117", "source": "193", "target": "191", "attributes": { "weight": 2 } }, { "key": "7095", "source": "193", "target": "183", "attributes": { "weight": 3 } }, { "key": "7092", "source": "193", "target": "443", "attributes": { "weight": 1 } }, { "key": "7124", "source": "193", "target": "1372", "attributes": { "weight": 4 } }, { "key": "435", "source": "193", "target": "185", "attributes": { "weight": 1 } }, { "key": "7085", "source": "193", "target": "59", "attributes": { "weight": 5 } }, { "key": "1636", "source": "193", "target": "431", "attributes": { "weight": 1 } }, { "key": "7118", "source": "193", "target": "1125", "attributes": { "weight": 1 } }, { "key": "7106", "source": "193", "target": "6", "attributes": { "weight": 2 } }, { "key": "1649", "source": "193", "target": "468", "attributes": { "weight": 4 } }, { "key": "26773", "source": "193", "target": "352", "attributes": { "weight": 1 } }, { "key": "1655", "source": "193", "target": "232", "attributes": { "weight": 1 } }, { "key": "1637", "source": "193", "target": "435", "attributes": { "weight": 1 } }, { "key": "32095", "source": "193", "target": "3084", "attributes": { "weight": 1 } }, { "key": "7109", "source": "193", "target": "8", "attributes": { "weight": 1 } }, { "key": "7089", "source": "193", "target": "433", "attributes": { "weight": 2 } }, { "key": "1656", "source": "193", "target": "486", "attributes": { "weight": 1 } }, { "key": "1642", "source": "193", "target": "447", "attributes": { "weight": 2 } }, { "key": "9128", "source": "193", "target": "1087", "attributes": { "weight": 1 } }, { "key": "26772", "source": "193", "target": "1047", "attributes": { "weight": 2 } }, { "key": "1653", "source": "193", "target": "231", "attributes": { "weight": 2 } }, { "key": "1645", "source": "193", "target": "457", "attributes": { "weight": 3 } }, { "key": "7127", "source": "193", "target": "1092", "attributes": { "weight": 3 } }, { "key": "1659", "source": "193", "target": "495", "attributes": { "weight": 5 } }, { "key": "7133", "source": "193", "target": "57", "attributes": { "weight": 4 } }, { "key": "1661", "source": "193", "target": "194", "attributes": { "weight": 1 } }, { "key": "37073", "source": "193", "target": "857", "attributes": { "weight": 1 } }, { "key": "32242", "source": "193", "target": "1752", "attributes": { "weight": 1 } }, { "key": "1650", "source": "193", "target": "469", "attributes": { "weight": 1 } }, { "key": "1646", "source": "193", "target": "458", "attributes": { "weight": 3 } }, { "key": "7083", "source": "193", "target": "1354", "attributes": { "weight": 1 } }, { "key": "7103", "source": "193", "target": "187", "attributes": { "weight": 1 } }, { "key": "7121", "source": "193", "target": "304", "attributes": { "weight": 2 } }, { "key": "28985", "source": "193", "target": "479", "attributes": { "weight": 2 } }, { "key": "7087", "source": "193", "target": "424", "attributes": { "weight": 3 } }, { "key": "7110", "source": "193", "target": "54", "attributes": { "weight": 1 } }, { "key": "1647", "source": "193", "target": "459", "attributes": { "weight": 2 } }, { "key": "7086", "source": "193", "target": "1036", "attributes": { "weight": 2 } }, { "key": "1654", "source": "193", "target": "427", "attributes": { "weight": 1 } }, { "key": "24257", "source": "193", "target": "437", "attributes": { "weight": 2 } }, { "key": "7107", "source": "193", "target": "462", "attributes": { "weight": 1 } }, { "key": "7123", "source": "193", "target": "695", "attributes": { "weight": 2 } }, { "key": "1641", "source": "193", "target": "445", "attributes": { "weight": 6 } }, { "key": "1648", "source": "193", "target": "463", "attributes": { "weight": 2 } }, { "key": "7114", "source": "193", "target": "473", "attributes": { "weight": 2 } }, { "key": "11311", "source": "193", "target": "220", "attributes": { "weight": 2 } }, { "key": "7104", "source": "193", "target": "701", "attributes": { "weight": 1 } }, { "key": "7084", "source": "193", "target": "889", "attributes": { "weight": 2 } }, { "key": "26786", "source": "194", "target": "454", "attributes": { "weight": 2 } }, { "key": "21415", "source": "194", "target": "472", "attributes": { "weight": 1 } }, { "key": "436", "source": "194", "target": "185", "attributes": { "weight": 1 } }, { "key": "25493", "source": "194", "target": "497", "attributes": { "weight": 1 } }, { "key": "1678", "source": "194", "target": "224", "attributes": { "weight": 1 } }, { "key": "29155", "source": "194", "target": "500", "attributes": { "weight": 1 } }, { "key": "21413", "source": "194", "target": "2088", "attributes": { "weight": 1 } }, { "key": "21418", "source": "194", "target": "2262", "attributes": { "weight": 1 } }, { "key": "21412", "source": "194", "target": "1998", "attributes": { "weight": 1 } }, { "key": "21419", "source": "194", "target": "2095", "attributes": { "weight": 1 } }, { "key": "21417", "source": "194", "target": "2261", "attributes": { "weight": 1 } }, { "key": "21420", "source": "194", "target": "489", "attributes": { "weight": 1 } }, { "key": "1680", "source": "194", "target": "490", "attributes": { "weight": 1 } }, { "key": "21409", "source": "194", "target": "2245", "attributes": { "weight": 1 } }, { "key": "1681", "source": "194", "target": "193", "attributes": { "weight": 1 } }, { "key": "21408", "source": "194", "target": "1023", "attributes": { "weight": 1 } }, { "key": "29154", "source": "194", "target": "481", "attributes": { "weight": 1 } }, { "key": "21411", "source": "194", "target": "453", "attributes": { "weight": 1 } }, { "key": "21414", "source": "194", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21416", "source": "194", "target": "1087", "attributes": { "weight": 1 } }, { "key": "26787", "source": "194", "target": "189", "attributes": { "weight": 2 } }, { "key": "21407", "source": "194", "target": "1522", "attributes": { "weight": 1 } }, { "key": "1679", "source": "194", "target": "183", "attributes": { "weight": 1 } }, { "key": "21410", "source": "194", "target": "449", "attributes": { "weight": 1 } }, { "key": "8323", "source": "195", "target": "389", "attributes": { "weight": 5 } }, { "key": "8359", "source": "195", "target": "205", "attributes": { "weight": 9 } }, { "key": "8355", "source": "195", "target": "1234", "attributes": { "weight": 4 } }, { "key": "8396", "source": "195", "target": "214", "attributes": { "weight": 5 } }, { "key": "8310", "source": "195", "target": "1171", "attributes": { "weight": 3 } }, { "key": "8394", "source": "195", "target": "1295", "attributes": { "weight": 3 } }, { "key": "8401", "source": "195", "target": "1307", "attributes": { "weight": 7 } }, { "key": "8328", "source": "195", "target": "1528", "attributes": { "weight": 3 } }, { "key": "8330", "source": "195", "target": "913", "attributes": { "weight": 8 } }, { "key": "3316", "source": "195", "target": "927", "attributes": { "weight": 4 } }, { "key": "8321", "source": "195", "target": "1525", "attributes": { "weight": 3 } }, { "key": "4297", "source": "195", "target": "368", "attributes": { "weight": 11 } }, { "key": "15457", "source": "195", "target": "236", "attributes": { "weight": 3 } }, { "key": "8343", "source": "195", "target": "1212", "attributes": { "weight": 3 } }, { "key": "8358", "source": "195", "target": "1241", "attributes": { "weight": 5 } }, { "key": "15477", "source": "195", "target": "638", "attributes": { "weight": 1 } }, { "key": "4296", "source": "195", "target": "779", "attributes": { "weight": 8 } }, { "key": "4302", "source": "195", "target": "1294", "attributes": { "weight": 9 } }, { "key": "8412", "source": "195", "target": "1325", "attributes": { "weight": 3 } }, { "key": "8378", "source": "195", "target": "1271", "attributes": { "weight": 3 } }, { "key": "15493", "source": "195", "target": "1326", "attributes": { "weight": 3 } }, { "key": "8421", "source": "195", "target": "217", "attributes": { "weight": 3 } }, { "key": "15467", "source": "195", "target": "1205", "attributes": { "weight": 1 } }, { "key": "8352", "source": "195", "target": "1229", "attributes": { "weight": 5 } }, { "key": "8292", "source": "195", "target": "1138", "attributes": { "weight": 3 } }, { "key": "8332", "source": "195", "target": "183", "attributes": { "weight": 3 } }, { "key": "8312", "source": "195", "target": "1174", "attributes": { "weight": 7 } }, { "key": "8387", "source": "195", "target": "1283", "attributes": { "weight": 3 } }, { "key": "8373", "source": "195", "target": "396", "attributes": { "weight": 7 } }, { "key": "8302", "source": "195", "target": "1156", "attributes": { "weight": 7 } }, { "key": "4300", "source": "195", "target": "123", "attributes": { "weight": 19 } }, { "key": "8315", "source": "195", "target": "442", "attributes": { "weight": 4 } }, { "key": "8413", "source": "195", "target": "407", "attributes": { "weight": 2 } }, { "key": "8409", "source": "195", "target": "1322", "attributes": { "weight": 6 } }, { "key": "8380", "source": "195", "target": "1275", "attributes": { "weight": 3 } }, { "key": "8398", "source": "195", "target": "1301", "attributes": { "weight": 3 } }, { "key": "8420", "source": "195", "target": "490", "attributes": { "weight": 3 } }, { "key": "8339", "source": "195", "target": "452", "attributes": { "weight": 5 } }, { "key": "3306", "source": "195", "target": "911", "attributes": { "weight": 4 } }, { "key": "7208", "source": "195", "target": "1197", "attributes": { "weight": 11 } }, { "key": "3305", "source": "195", "target": "1181", "attributes": { "weight": 4 } }, { "key": "3314", "source": "195", "target": "922", "attributes": { "weight": 2 } }, { "key": "4299", "source": "195", "target": "371", "attributes": { "weight": 12 } }, { "key": "8407", "source": "195", "target": "1563", "attributes": { "weight": 3 } }, { "key": "8349", "source": "195", "target": "1225", "attributes": { "weight": 3 } }, { "key": "8311", "source": "195", "target": "1172", "attributes": { "weight": 4 } }, { "key": "15497", "source": "195", "target": "48", "attributes": { "weight": 1 } }, { "key": "15471", "source": "195", "target": "201", "attributes": { "weight": 1 } }, { "key": "15460", "source": "195", "target": "43", "attributes": { "weight": 1 } }, { "key": "8400", "source": "195", "target": "1305", "attributes": { "weight": 9 } }, { "key": "8415", "source": "195", "target": "1329", "attributes": { "weight": 6 } }, { "key": "8305", "source": "195", "target": "1165", "attributes": { "weight": 7 } }, { "key": "8405", "source": "195", "target": "405", "attributes": { "weight": 7 } }, { "key": "8322", "source": "195", "target": "387", "attributes": { "weight": 9 } }, { "key": "15499", "source": "195", "target": "57", "attributes": { "weight": 1 } }, { "key": "8350", "source": "195", "target": "1537", "attributes": { "weight": 3 } }, { "key": "8386", "source": "195", "target": "1281", "attributes": { "weight": 4 } }, { "key": "446", "source": "195", "target": "219", "attributes": { "weight": 1 } }, { "key": "8397", "source": "195", "target": "1031", "attributes": { "weight": 3 } }, { "key": "15494", "source": "195", "target": "963", "attributes": { "weight": 2 } }, { "key": "8399", "source": "195", "target": "1792", "attributes": { "weight": 3 } }, { "key": "8425", "source": "195", "target": "1343", "attributes": { "weight": 5 } }, { "key": "8416", "source": "195", "target": "1331", "attributes": { "weight": 4 } }, { "key": "8326", "source": "195", "target": "1194", "attributes": { "weight": 6 } }, { "key": "15458", "source": "195", "target": "1155", "attributes": { "weight": 1 } }, { "key": "8314", "source": "195", "target": "1176", "attributes": { "weight": 5 } }, { "key": "8382", "source": "195", "target": "926", "attributes": { "weight": 9 } }, { "key": "8363", "source": "195", "target": "1250", "attributes": { "weight": 3 } }, { "key": "8309", "source": "195", "target": "1170", "attributes": { "weight": 3 } }, { "key": "15492", "source": "195", "target": "254", "attributes": { "weight": 1 } }, { "key": "8418", "source": "195", "target": "1333", "attributes": { "weight": 5 } }, { "key": "8406", "source": "195", "target": "1316", "attributes": { "weight": 6 } }, { "key": "8368", "source": "195", "target": "1263", "attributes": { "weight": 8 } }, { "key": "8351", "source": "195", "target": "945", "attributes": { "weight": 3 } }, { "key": "8296", "source": "195", "target": "1145", "attributes": { "weight": 3 } }, { "key": "8318", "source": "195", "target": "1182", "attributes": { "weight": 5 } }, { "key": "8336", "source": "195", "target": "1047", "attributes": { "weight": 7 } }, { "key": "3308", "source": "195", "target": "914", "attributes": { "weight": 4 } }, { "key": "8422", "source": "195", "target": "218", "attributes": { "weight": 7 } }, { "key": "8334", "source": "195", "target": "1201", "attributes": { "weight": 4 } }, { "key": "8423", "source": "195", "target": "1340", "attributes": { "weight": 3 } }, { "key": "15498", "source": "195", "target": "1347", "attributes": { "weight": 1 } }, { "key": "15490", "source": "195", "target": "634", "attributes": { "weight": 1 } }, { "key": "8426", "source": "195", "target": "1569", "attributes": { "weight": 3 } }, { "key": "4301", "source": "195", "target": "1090", "attributes": { "weight": 9 } }, { "key": "3310", "source": "195", "target": "917", "attributes": { "weight": 6 } }, { "key": "8319", "source": "195", "target": "1184", "attributes": { "weight": 8 } }, { "key": "8316", "source": "195", "target": "1179", "attributes": { "weight": 3 } }, { "key": "3315", "source": "195", "target": "925", "attributes": { "weight": 8 } }, { "key": "8304", "source": "195", "target": "1164", "attributes": { "weight": 3 } }, { "key": "8348", "source": "195", "target": "1224", "attributes": { "weight": 3 } }, { "key": "445", "source": "195", "target": "213", "attributes": { "weight": 1 } }, { "key": "15488", "source": "195", "target": "633", "attributes": { "weight": 1 } }, { "key": "8411", "source": "195", "target": "1324", "attributes": { "weight": 3 } }, { "key": "8402", "source": "195", "target": "1309", "attributes": { "weight": 4 } }, { "key": "8300", "source": "195", "target": "1153", "attributes": { "weight": 4 } }, { "key": "15468", "source": "195", "target": "200", "attributes": { "weight": 1 } }, { "key": "8424", "source": "195", "target": "1342", "attributes": { "weight": 4 } }, { "key": "15478", "source": "195", "target": "780", "attributes": { "weight": 1 } }, { "key": "8306", "source": "195", "target": "938", "attributes": { "weight": 8 } }, { "key": "443", "source": "195", "target": "209", "attributes": { "weight": 1 } }, { "key": "3311", "source": "195", "target": "918", "attributes": { "weight": 4 } }, { "key": "8371", "source": "195", "target": "1552", "attributes": { "weight": 5 } }, { "key": "8353", "source": "195", "target": "1232", "attributes": { "weight": 9 } }, { "key": "10985", "source": "195", "target": "1228", "attributes": { "weight": 6 } }, { "key": "8414", "source": "195", "target": "961", "attributes": { "weight": 7 } }, { "key": "15495", "source": "195", "target": "257", "attributes": { "weight": 1 } }, { "key": "15462", "source": "195", "target": "103", "attributes": { "weight": 1 } }, { "key": "3319", "source": "195", "target": "931", "attributes": { "weight": 5 } }, { "key": "8372", "source": "195", "target": "924", "attributes": { "weight": 7 } }, { "key": "15482", "source": "195", "target": "1262", "attributes": { "weight": 3 } }, { "key": "8410", "source": "195", "target": "1323", "attributes": { "weight": 9 } }, { "key": "8324", "source": "195", "target": "1193", "attributes": { "weight": 3 } }, { "key": "15473", "source": "195", "target": "109", "attributes": { "weight": 1 } }, { "key": "8294", "source": "195", "target": "1517", "attributes": { "weight": 4 } }, { "key": "8329", "source": "195", "target": "1199", "attributes": { "weight": 3 } }, { "key": "8374", "source": "195", "target": "1266", "attributes": { "weight": 3 } }, { "key": "15472", "source": "195", "target": "108", "attributes": { "weight": 2 } }, { "key": "15465", "source": "195", "target": "358", "attributes": { "weight": 1 } }, { "key": "8408", "source": "195", "target": "1321", "attributes": { "weight": 6 } }, { "key": "15456", "source": "195", "target": "220", "attributes": { "weight": 2 } }, { "key": "8301", "source": "195", "target": "1154", "attributes": { "weight": 3 } }, { "key": "15481", "source": "195", "target": "136", "attributes": { "weight": 1 } }, { "key": "3317", "source": "195", "target": "928", "attributes": { "weight": 4 } }, { "key": "15461", "source": "195", "target": "237", "attributes": { "weight": 1 } }, { "key": "15496", "source": "195", "target": "635", "attributes": { "weight": 1 } }, { "key": "8389", "source": "195", "target": "1287", "attributes": { "weight": 4 } }, { "key": "8428", "source": "195", "target": "154", "attributes": { "weight": 3 } }, { "key": "8404", "source": "195", "target": "1315", "attributes": { "weight": 8 } }, { "key": "3318", "source": "195", "target": "930", "attributes": { "weight": 6 } }, { "key": "8299", "source": "195", "target": "1152", "attributes": { "weight": 7 } }, { "key": "15485", "source": "195", "target": "783", "attributes": { "weight": 1 } }, { "key": "8379", "source": "195", "target": "1273", "attributes": { "weight": 3 } }, { "key": "8361", "source": "195", "target": "337", "attributes": { "weight": 7 } }, { "key": "15479", "source": "195", "target": "30", "attributes": { "weight": 1 } }, { "key": "8341", "source": "195", "target": "1210", "attributes": { "weight": 3 } }, { "key": "8357", "source": "195", "target": "1236", "attributes": { "weight": 9 } }, { "key": "8364", "source": "195", "target": "921", "attributes": { "weight": 8 } }, { "key": "442", "source": "195", "target": "207", "attributes": { "weight": 1 } }, { "key": "8320", "source": "195", "target": "1188", "attributes": { "weight": 3 } }, { "key": "8383", "source": "195", "target": "399", "attributes": { "weight": 6 } }, { "key": "3304", "source": "195", "target": "910", "attributes": { "weight": 5 } }, { "key": "8293", "source": "195", "target": "1140", "attributes": { "weight": 5 } }, { "key": "3307", "source": "195", "target": "912", "attributes": { "weight": 7 } }, { "key": "8384", "source": "195", "target": "189", "attributes": { "weight": 3 } }, { "key": "8327", "source": "195", "target": "1196", "attributes": { "weight": 7 } }, { "key": "3309", "source": "195", "target": "915", "attributes": { "weight": 4 } }, { "key": "3313", "source": "195", "target": "920", "attributes": { "weight": 4 } }, { "key": "8308", "source": "195", "target": "223", "attributes": { "weight": 3 } }, { "key": "8370", "source": "195", "target": "923", "attributes": { "weight": 3 } }, { "key": "9714", "source": "195", "target": "403", "attributes": { "weight": 2 } }, { "key": "15480", "source": "195", "target": "544", "attributes": { "weight": 1 } }, { "key": "15475", "source": "195", "target": "1227", "attributes": { "weight": 1 } }, { "key": "8376", "source": "195", "target": "1269", "attributes": { "weight": 6 } }, { "key": "15470", "source": "195", "target": "1214", "attributes": { "weight": 1 } }, { "key": "8390", "source": "195", "target": "1289", "attributes": { "weight": 7 } }, { "key": "8369", "source": "195", "target": "208", "attributes": { "weight": 8 } }, { "key": "8360", "source": "195", "target": "370", "attributes": { "weight": 10 } }, { "key": "4298", "source": "195", "target": "468", "attributes": { "weight": 8 } }, { "key": "15491", "source": "195", "target": "601", "attributes": { "weight": 2 } }, { "key": "8345", "source": "195", "target": "204", "attributes": { "weight": 4 } }, { "key": "8295", "source": "195", "target": "1144", "attributes": { "weight": 3 } }, { "key": "15487", "source": "195", "target": "372", "attributes": { "weight": 3 } }, { "key": "8337", "source": "195", "target": "198", "attributes": { "weight": 3 } }, { "key": "15464", "source": "195", "target": "778", "attributes": { "weight": 1 } }, { "key": "8377", "source": "195", "target": "1270", "attributes": { "weight": 3 } }, { "key": "8331", "source": "195", "target": "449", "attributes": { "weight": 3 } }, { "key": "15459", "source": "195", "target": "1163", "attributes": { "weight": 1 } }, { "key": "8338", "source": "195", "target": "1207", "attributes": { "weight": 3 } }, { "key": "8307", "source": "195", "target": "1523", "attributes": { "weight": 3 } }, { "key": "15463", "source": "195", "target": "631", "attributes": { "weight": 1 } }, { "key": "8388", "source": "195", "target": "1286", "attributes": { "weight": 7 } }, { "key": "8375", "source": "195", "target": "1268", "attributes": { "weight": 3 } }, { "key": "8342", "source": "195", "target": "454", "attributes": { "weight": 5 } }, { "key": "8403", "source": "195", "target": "215", "attributes": { "weight": 8 } }, { "key": "8303", "source": "195", "target": "1162", "attributes": { "weight": 6 } }, { "key": "15484", "source": "195", "target": "580", "attributes": { "weight": 1 } }, { "key": "7209", "source": "195", "target": "1063", "attributes": { "weight": 6 } }, { "key": "8333", "source": "195", "target": "1532", "attributes": { "weight": 3 } }, { "key": "18131", "source": "195", "target": "2205", "attributes": { "weight": 1 } }, { "key": "8347", "source": "195", "target": "1222", "attributes": { "weight": 3 } }, { "key": "3303", "source": "195", "target": "909", "attributes": { "weight": 2 } }, { "key": "8393", "source": "195", "target": "1293", "attributes": { "weight": 3 } }, { "key": "8392", "source": "195", "target": "1291", "attributes": { "weight": 5 } }, { "key": "8419", "source": "195", "target": "124", "attributes": { "weight": 8 } }, { "key": "15466", "source": "195", "target": "369", "attributes": { "weight": 1 } }, { "key": "8317", "source": "195", "target": "1180", "attributes": { "weight": 7 } }, { "key": "15483", "source": "195", "target": "545", "attributes": { "weight": 1 } }, { "key": "9715", "source": "195", "target": "406", "attributes": { "weight": 4 } }, { "key": "8354", "source": "195", "target": "1233", "attributes": { "weight": 9 } }, { "key": "441", "source": "195", "target": "206", "attributes": { "weight": 1 } }, { "key": "8344", "source": "195", "target": "390", "attributes": { "weight": 6 } }, { "key": "8297", "source": "195", "target": "933", "attributes": { "weight": 4 } }, { "key": "8367", "source": "195", "target": "472", "attributes": { "weight": 4 } }, { "key": "8385", "source": "195", "target": "1279", "attributes": { "weight": 4 } }, { "key": "15469", "source": "195", "target": "1211", "attributes": { "weight": 1 } }, { "key": "444", "source": "195", "target": "211", "attributes": { "weight": 1 } }, { "key": "8366", "source": "195", "target": "471", "attributes": { "weight": 4 } }, { "key": "8381", "source": "195", "target": "1278", "attributes": { "weight": 3 } }, { "key": "15476", "source": "195", "target": "278", "attributes": { "weight": 2 } }, { "key": "8417", "source": "195", "target": "408", "attributes": { "weight": 4 } }, { "key": "8340", "source": "195", "target": "199", "attributes": { "weight": 8 } }, { "key": "8427", "source": "195", "target": "1348", "attributes": { "weight": 4 } }, { "key": "8362", "source": "195", "target": "338", "attributes": { "weight": 10 } }, { "key": "8395", "source": "195", "target": "1296", "attributes": { "weight": 7 } }, { "key": "15489", "source": "195", "target": "1314", "attributes": { "weight": 1 } }, { "key": "8365", "source": "195", "target": "1255", "attributes": { "weight": 4 } }, { "key": "3312", "source": "195", "target": "919", "attributes": { "weight": 2 } }, { "key": "8356", "source": "195", "target": "1235", "attributes": { "weight": 4 } }, { "key": "8313", "source": "195", "target": "1175", "attributes": { "weight": 4 } }, { "key": "8298", "source": "195", "target": "1519", "attributes": { "weight": 3 } }, { "key": "8325", "source": "195", "target": "1526", "attributes": { "weight": 4 } }, { "key": "8391", "source": "195", "target": "212", "attributes": { "weight": 8 } }, { "key": "8346", "source": "195", "target": "1221", "attributes": { "weight": 4 } }, { "key": "15486", "source": "195", "target": "990", "attributes": { "weight": 1 } }, { "key": "15474", "source": "195", "target": "391", "attributes": { "weight": 1 } }, { "key": "8335", "source": "195", "target": "1204", "attributes": { "weight": 3 } }, { "key": "447", "source": "196", "target": "199", "attributes": { "weight": 2 } }, { "key": "4976", "source": "197", "target": "371", "attributes": { "weight": 2 } }, { "key": "29770", "source": "197", "target": "1281", "attributes": { "weight": 2 } }, { "key": "448", "source": "197", "target": "199", "attributes": { "weight": 2 } }, { "key": "449", "source": "197", "target": "212", "attributes": { "weight": 2 } }, { "key": "451", "source": "198", "target": "215", "attributes": { "weight": 2 } }, { "key": "8719", "source": "198", "target": "195", "attributes": { "weight": 3 } }, { "key": "15773", "source": "198", "target": "921", "attributes": { "weight": 1 } }, { "key": "4998", "source": "198", "target": "371", "attributes": { "weight": 2 } }, { "key": "36549", "source": "198", "target": "926", "attributes": { "weight": 1 } }, { "key": "36548", "source": "198", "target": "208", "attributes": { "weight": 1 } }, { "key": "450", "source": "198", "target": "199", "attributes": { "weight": 2 } }, { "key": "452", "source": "198", "target": "218", "attributes": { "weight": 4 } }, { "key": "18681", "source": "199", "target": "926", "attributes": { "weight": 2 } }, { "key": "11517", "source": "199", "target": "1262", "attributes": { "weight": 3 } }, { "key": "11524", "source": "199", "target": "1305", "attributes": { "weight": 3 } }, { "key": "21898", "source": "199", "target": "918", "attributes": { "weight": 1 } }, { "key": "11506", "source": "199", "target": "1152", "attributes": { "weight": 3 } }, { "key": "36552", "source": "199", "target": "1172", "attributes": { "weight": 1 } }, { "key": "16802", "source": "199", "target": "674", "attributes": { "weight": 1 } }, { "key": "11508", "source": "199", "target": "938", "attributes": { "weight": 2 } }, { "key": "28569", "source": "199", "target": "257", "attributes": { "weight": 1 } }, { "key": "21897", "source": "199", "target": "1153", "attributes": { "weight": 1 } }, { "key": "5014", "source": "199", "target": "779", "attributes": { "weight": 2 } }, { "key": "16803", "source": "199", "target": "70", "attributes": { "weight": 1 } }, { "key": "15783", "source": "199", "target": "925", "attributes": { "weight": 1 } }, { "key": "28555", "source": "199", "target": "1715", "attributes": { "weight": 1 } }, { "key": "18679", "source": "199", "target": "1228", "attributes": { "weight": 2 } }, { "key": "5019", "source": "199", "target": "1090", "attributes": { "weight": 3 } }, { "key": "460", "source": "199", "target": "210", "attributes": { "weight": 3 } }, { "key": "11521", "source": "199", "target": "785", "attributes": { "weight": 2 } }, { "key": "34172", "source": "199", "target": "1182", "attributes": { "weight": 1 } }, { "key": "28571", "source": "199", "target": "1429", "attributes": { "weight": 1 } }, { "key": "21899", "source": "199", "target": "920", "attributes": { "weight": 1 } }, { "key": "36558", "source": "199", "target": "1552", "attributes": { "weight": 1 } }, { "key": "11530", "source": "199", "target": "1338", "attributes": { "weight": 1 } }, { "key": "28553", "source": "199", "target": "2780", "attributes": { "weight": 1 } }, { "key": "28565", "source": "199", "target": "1314", "attributes": { "weight": 1 } }, { "key": "36550", "source": "199", "target": "933", "attributes": { "weight": 1 } }, { "key": "16801", "source": "199", "target": "59", "attributes": { "weight": 1 } }, { "key": "5017", "source": "199", "target": "123", "attributes": { "weight": 4 } }, { "key": "28554", "source": "199", "target": "236", "attributes": { "weight": 1 } }, { "key": "15782", "source": "199", "target": "913", "attributes": { "weight": 2 } }, { "key": "11512", "source": "199", "target": "370", "attributes": { "weight": 2 } }, { "key": "28556", "source": "199", "target": "1789", "attributes": { "weight": 1 } }, { "key": "11520", "source": "199", "target": "1790", "attributes": { "weight": 1 } }, { "key": "21901", "source": "199", "target": "930", "attributes": { "weight": 1 } }, { "key": "18678", "source": "199", "target": "1174", "attributes": { "weight": 3 } }, { "key": "11519", "source": "199", "target": "1281", "attributes": { "weight": 2 } }, { "key": "11523", "source": "199", "target": "1301", "attributes": { "weight": 2 } }, { "key": "28562", "source": "199", "target": "545", "attributes": { "weight": 1 } }, { "key": "11516", "source": "199", "target": "30", "attributes": { "weight": 2 } }, { "key": "18220", "source": "199", "target": "2205", "attributes": { "weight": 1 } }, { "key": "28560", "source": "199", "target": "337", "attributes": { "weight": 2 } }, { "key": "11511", "source": "199", "target": "945", "attributes": { "weight": 1 } }, { "key": "11525", "source": "199", "target": "1307", "attributes": { "weight": 1 } }, { "key": "458", "source": "199", "target": "202", "attributes": { "weight": 2 } }, { "key": "28557", "source": "199", "target": "1718", "attributes": { "weight": 1 } }, { "key": "28559", "source": "199", "target": "2297", "attributes": { "weight": 1 } }, { "key": "36551", "source": "199", "target": "1165", "attributes": { "weight": 1 } }, { "key": "34173", "source": "199", "target": "1232", "attributes": { "weight": 1 } }, { "key": "28567", "source": "199", "target": "1334", "attributes": { "weight": 1 } }, { "key": "454", "source": "199", "target": "197", "attributes": { "weight": 2 } }, { "key": "11529", "source": "199", "target": "961", "attributes": { "weight": 4 } }, { "key": "457", "source": "199", "target": "201", "attributes": { "weight": 2 } }, { "key": "7284", "source": "199", "target": "1063", "attributes": { "weight": 4 } }, { "key": "461", "source": "199", "target": "216", "attributes": { "weight": 2 } }, { "key": "11522", "source": "199", "target": "372", "attributes": { "weight": 2 } }, { "key": "18219", "source": "199", "target": "1197", "attributes": { "weight": 4 } }, { "key": "11510", "source": "199", "target": "1047", "attributes": { "weight": 2 } }, { "key": "36560", "source": "199", "target": "124", "attributes": { "weight": 1 } }, { "key": "21900", "source": "199", "target": "1691", "attributes": { "weight": 2 } }, { "key": "15781", "source": "199", "target": "912", "attributes": { "weight": 1 } }, { "key": "11509", "source": "199", "target": "387", "attributes": { "weight": 2 } }, { "key": "11514", "source": "199", "target": "338", "attributes": { "weight": 3 } }, { "key": "28568", "source": "199", "target": "963", "attributes": { "weight": 1 } }, { "key": "11507", "source": "199", "target": "1156", "attributes": { "weight": 2 } }, { "key": "28561", "source": "199", "target": "2781", "attributes": { "weight": 1 } }, { "key": "36556", "source": "199", "target": "205", "attributes": { "weight": 1 } }, { "key": "28566", "source": "199", "target": "634", "attributes": { "weight": 1 } }, { "key": "11518", "source": "199", "target": "782", "attributes": { "weight": 2 } }, { "key": "11515", "source": "199", "target": "921", "attributes": { "weight": 3 } }, { "key": "36553", "source": "199", "target": "1184", "attributes": { "weight": 1 } }, { "key": "5018", "source": "199", "target": "783", "attributes": { "weight": 4 } }, { "key": "11528", "source": "199", "target": "407", "attributes": { "weight": 2 } }, { "key": "453", "source": "199", "target": "196", "attributes": { "weight": 2 } }, { "key": "7283", "source": "199", "target": "154", "attributes": { "weight": 3 } }, { "key": "10203", "source": "199", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34174", "source": "199", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5015", "source": "199", "target": "1196", "attributes": { "weight": 3 } }, { "key": "36555", "source": "199", "target": "1238", "attributes": { "weight": 1 } }, { "key": "36559", "source": "199", "target": "1296", "attributes": { "weight": 1 } }, { "key": "28558", "source": "199", "target": "391", "attributes": { "weight": 1 } }, { "key": "36554", "source": "199", "target": "1236", "attributes": { "weight": 1 } }, { "key": "11527", "source": "199", "target": "1323", "attributes": { "weight": 4 } }, { "key": "18680", "source": "199", "target": "1269", "attributes": { "weight": 2 } }, { "key": "11526", "source": "199", "target": "254", "attributes": { "weight": 2 } }, { "key": "11513", "source": "199", "target": "780", "attributes": { "weight": 3 } }, { "key": "5016", "source": "199", "target": "368", "attributes": { "weight": 3 } }, { "key": "28564", "source": "199", "target": "1031", "attributes": { "weight": 1 } }, { "key": "36557", "source": "199", "target": "1263", "attributes": { "weight": 1 } }, { "key": "28570", "source": "199", "target": "412", "attributes": { "weight": 1 } }, { "key": "8731", "source": "199", "target": "195", "attributes": { "weight": 8 } }, { "key": "462", "source": "199", "target": "218", "attributes": { "weight": 5 } }, { "key": "459", "source": "199", "target": "208", "attributes": { "weight": 3 } }, { "key": "10668", "source": "199", "target": "43", "attributes": { "weight": 4 } }, { "key": "456", "source": "199", "target": "200", "attributes": { "weight": 3 } }, { "key": "28563", "source": "199", "target": "1279", "attributes": { "weight": 1 } }, { "key": "455", "source": "199", "target": "198", "attributes": { "weight": 2 } }, { "key": "5020", "source": "199", "target": "1294", "attributes": { "weight": 4 } }, { "key": "5023", "source": "200", "target": "779", "attributes": { "weight": 2 } }, { "key": "35101", "source": "200", "target": "1184", "attributes": { "weight": 1 } }, { "key": "5024", "source": "200", "target": "371", "attributes": { "weight": 2 } }, { "key": "35099", "source": "200", "target": "1162", "attributes": { "weight": 1 } }, { "key": "35100", "source": "200", "target": "1174", "attributes": { "weight": 1 } }, { "key": "35102", "source": "200", "target": "1047", "attributes": { "weight": 1 } }, { "key": "30099", "source": "200", "target": "1281", "attributes": { "weight": 2 } }, { "key": "35103", "source": "200", "target": "1307", "attributes": { "weight": 1 } }, { "key": "15785", "source": "200", "target": "195", "attributes": { "weight": 1 } }, { "key": "463", "source": "200", "target": "199", "attributes": { "weight": 3 } }, { "key": "465", "source": "201", "target": "202", "attributes": { "weight": 2 } }, { "key": "15800", "source": "201", "target": "195", "attributes": { "weight": 1 } }, { "key": "30100", "source": "201", "target": "1281", "attributes": { "weight": 2 } }, { "key": "7298", "source": "201", "target": "1063", "attributes": { "weight": 1 } }, { "key": "464", "source": "201", "target": "199", "attributes": { "weight": 2 } }, { "key": "5046", "source": "201", "target": "371", "attributes": { "weight": 2 } }, { "key": "29771", "source": "202", "target": "1281", "attributes": { "weight": 2 } }, { "key": "466", "source": "202", "target": "199", "attributes": { "weight": 2 } }, { "key": "467", "source": "203", "target": "219", "attributes": { "weight": 1 } }, { "key": "5058", "source": "204", "target": "371", "attributes": { "weight": 2 } }, { "key": "5057", "source": "204", "target": "779", "attributes": { "weight": 2 } }, { "key": "469", "source": "204", "target": "218", "attributes": { "weight": 2 } }, { "key": "8747", "source": "204", "target": "195", "attributes": { "weight": 4 } }, { "key": "468", "source": "204", "target": "208", "attributes": { "weight": 2 } }, { "key": "36601", "source": "205", "target": "337", "attributes": { "weight": 1 } }, { "key": "18729", "source": "205", "target": "1174", "attributes": { "weight": 2 } }, { "key": "5170", "source": "205", "target": "368", "attributes": { "weight": 2 } }, { "key": "36602", "source": "205", "target": "1552", "attributes": { "weight": 1 } }, { "key": "470", "source": "205", "target": "210", "attributes": { "weight": 2 } }, { "key": "36598", "source": "205", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5169", "source": "205", "target": "1196", "attributes": { "weight": 2 } }, { "key": "11546", "source": "205", "target": "961", "attributes": { "weight": 1 } }, { "key": "5168", "source": "205", "target": "779", "attributes": { "weight": 2 } }, { "key": "5173", "source": "205", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15880", "source": "205", "target": "925", "attributes": { "weight": 1 } }, { "key": "8783", "source": "205", "target": "195", "attributes": { "weight": 9 } }, { "key": "5171", "source": "205", "target": "371", "attributes": { "weight": 2 } }, { "key": "15878", "source": "205", "target": "913", "attributes": { "weight": 1 } }, { "key": "15877", "source": "205", "target": "912", "attributes": { "weight": 1 } }, { "key": "15879", "source": "205", "target": "921", "attributes": { "weight": 1 } }, { "key": "11545", "source": "205", "target": "370", "attributes": { "weight": 2 } }, { "key": "34456", "source": "205", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34454", "source": "205", "target": "1047", "attributes": { "weight": 1 } }, { "key": "36597", "source": "205", "target": "1165", "attributes": { "weight": 1 } }, { "key": "5172", "source": "205", "target": "123", "attributes": { "weight": 3 } }, { "key": "36600", "source": "205", "target": "1228", "attributes": { "weight": 1 } }, { "key": "36599", "source": "205", "target": "199", "attributes": { "weight": 1 } }, { "key": "471", "source": "205", "target": "218", "attributes": { "weight": 2 } }, { "key": "34455", "source": "205", "target": "1232", "attributes": { "weight": 1 } }, { "key": "11544", "source": "205", "target": "938", "attributes": { "weight": 2 } }, { "key": "472", "source": "206", "target": "195", "attributes": { "weight": 1 } }, { "key": "34511", "source": "206", "target": "1232", "attributes": { "weight": 1 } }, { "key": "473", "source": "207", "target": "195", "attributes": { "weight": 1 } }, { "key": "474", "source": "207", "target": "208", "attributes": { "weight": 1 } }, { "key": "36643", "source": "208", "target": "1194", "attributes": { "weight": 1 } }, { "key": "18248", "source": "208", "target": "1197", "attributes": { "weight": 4 } }, { "key": "11626", "source": "208", "target": "1262", "attributes": { "weight": 2 } }, { "key": "15336", "source": "208", "target": "1219", "attributes": { "weight": 3 } }, { "key": "17267", "source": "208", "target": "449", "attributes": { "weight": 1 } }, { "key": "15981", "source": "208", "target": "1184", "attributes": { "weight": 2 } }, { "key": "478", "source": "208", "target": "210", "attributes": { "weight": 2 } }, { "key": "5527", "source": "208", "target": "368", "attributes": { "weight": 3 } }, { "key": "18249", "source": "208", "target": "2200", "attributes": { "weight": 1 } }, { "key": "11621", "source": "208", "target": "1789", "attributes": { "weight": 1 } }, { "key": "12826", "source": "208", "target": "785", "attributes": { "weight": 1 } }, { "key": "15983", "source": "208", "target": "913", "attributes": { "weight": 2 } }, { "key": "18773", "source": "208", "target": "236", "attributes": { "weight": 1 } }, { "key": "15992", "source": "208", "target": "1289", "attributes": { "weight": 3 } }, { "key": "15985", "source": "208", "target": "1236", "attributes": { "weight": 3 } }, { "key": "5526", "source": "208", "target": "1196", "attributes": { "weight": 3 } }, { "key": "18251", "source": "208", "target": "2205", "attributes": { "weight": 1 } }, { "key": "15986", "source": "208", "target": "337", "attributes": { "weight": 2 } }, { "key": "18250", "source": "208", "target": "923", "attributes": { "weight": 1 } }, { "key": "28582", "source": "208", "target": "2780", "attributes": { "weight": 1 } }, { "key": "11622", "source": "208", "target": "1172", "attributes": { "weight": 3 } }, { "key": "15988", "source": "208", "target": "924", "attributes": { "weight": 3 } }, { "key": "15990", "source": "208", "target": "925", "attributes": { "weight": 4 } }, { "key": "15997", "source": "208", "target": "1329", "attributes": { "weight": 1 } }, { "key": "11632", "source": "208", "target": "254", "attributes": { "weight": 3 } }, { "key": "5525", "source": "208", "target": "779", "attributes": { "weight": 4 } }, { "key": "11619", "source": "208", "target": "1156", "attributes": { "weight": 4 } }, { "key": "15979", "source": "208", "target": "1162", "attributes": { "weight": 3 } }, { "key": "15337", "source": "208", "target": "472", "attributes": { "weight": 3 } }, { "key": "11629", "source": "208", "target": "1791", "attributes": { "weight": 1 } }, { "key": "11634", "source": "208", "target": "961", "attributes": { "weight": 4 } }, { "key": "34524", "source": "208", "target": "1182", "attributes": { "weight": 1 } }, { "key": "8872", "source": "208", "target": "195", "attributes": { "weight": 8 } }, { "key": "18779", "source": "208", "target": "1552", "attributes": { "weight": 2 } }, { "key": "475", "source": "208", "target": "199", "attributes": { "weight": 3 } }, { "key": "18776", "source": "208", "target": "1228", "attributes": { "weight": 2 } }, { "key": "14050", "source": "208", "target": "1031", "attributes": { "weight": 2 } }, { "key": "11624", "source": "208", "target": "945", "attributes": { "weight": 2 } }, { "key": "15984", "source": "208", "target": "1225", "attributes": { "weight": 2 } }, { "key": "5535", "source": "208", "target": "1294", "attributes": { "weight": 4 } }, { "key": "480", "source": "208", "target": "215", "attributes": { "weight": 2 } }, { "key": "26626", "source": "208", "target": "454", "attributes": { "weight": 2 } }, { "key": "11636", "source": "208", "target": "928", "attributes": { "weight": 1 } }, { "key": "11630", "source": "208", "target": "1301", "attributes": { "weight": 3 } }, { "key": "11633", "source": "208", "target": "407", "attributes": { "weight": 1 } }, { "key": "34525", "source": "208", "target": "1232", "attributes": { "weight": 1 } }, { "key": "11628", "source": "208", "target": "1790", "attributes": { "weight": 1 } }, { "key": "5533", "source": "208", "target": "123", "attributes": { "weight": 4 } }, { "key": "15996", "source": "208", "target": "1321", "attributes": { "weight": 3 } }, { "key": "15995", "source": "208", "target": "405", "attributes": { "weight": 3 } }, { "key": "18772", "source": "208", "target": "933", "attributes": { "weight": 2 } }, { "key": "5538", "source": "208", "target": "1063", "attributes": { "weight": 5 } }, { "key": "11625", "source": "208", "target": "921", "attributes": { "weight": 2 } }, { "key": "18781", "source": "208", "target": "124", "attributes": { "weight": 2 } }, { "key": "15989", "source": "208", "target": "1269", "attributes": { "weight": 3 } }, { "key": "5536", "source": "208", "target": "1315", "attributes": { "weight": 2 } }, { "key": "18780", "source": "208", "target": "926", "attributes": { "weight": 2 } }, { "key": "18774", "source": "208", "target": "1174", "attributes": { "weight": 2 } }, { "key": "11627", "source": "208", "target": "1281", "attributes": { "weight": 2 } }, { "key": "9813", "source": "208", "target": "396", "attributes": { "weight": 3 } }, { "key": "10713", "source": "208", "target": "43", "attributes": { "weight": 3 } }, { "key": "15982", "source": "208", "target": "912", "attributes": { "weight": 1 } }, { "key": "36646", "source": "208", "target": "1268", "attributes": { "weight": 1 } }, { "key": "15980", "source": "208", "target": "1165", "attributes": { "weight": 3 } }, { "key": "7343", "source": "208", "target": "154", "attributes": { "weight": 2 } }, { "key": "9812", "source": "208", "target": "387", "attributes": { "weight": 3 } }, { "key": "5534", "source": "208", "target": "1090", "attributes": { "weight": 4 } }, { "key": "32975", "source": "208", "target": "1424", "attributes": { "weight": 2 } }, { "key": "11618", "source": "208", "target": "1152", "attributes": { "weight": 4 } }, { "key": "479", "source": "208", "target": "214", "attributes": { "weight": 2 } }, { "key": "12825", "source": "208", "target": "780", "attributes": { "weight": 1 } }, { "key": "36764", "source": "208", "target": "377", "attributes": { "weight": 1 } }, { "key": "18777", "source": "208", "target": "1238", "attributes": { "weight": 2 } }, { "key": "32974", "source": "208", "target": "1406", "attributes": { "weight": 2 } }, { "key": "36647", "source": "208", "target": "1309", "attributes": { "weight": 1 } }, { "key": "10714", "source": "208", "target": "1314", "attributes": { "weight": 1 } }, { "key": "5537", "source": "208", "target": "1322", "attributes": { "weight": 2 } }, { "key": "11620", "source": "208", "target": "938", "attributes": { "weight": 4 } }, { "key": "18775", "source": "208", "target": "1176", "attributes": { "weight": 2 } }, { "key": "15987", "source": "208", "target": "1263", "attributes": { "weight": 2 } }, { "key": "15994", "source": "208", "target": "1305", "attributes": { "weight": 3 } }, { "key": "481", "source": "208", "target": "217", "attributes": { "weight": 2 } }, { "key": "15993", "source": "208", "target": "1296", "attributes": { "weight": 3 } }, { "key": "36644", "source": "208", "target": "198", "attributes": { "weight": 1 } }, { "key": "5531", "source": "208", "target": "135", "attributes": { "weight": 7 } }, { "key": "5530", "source": "208", "target": "338", "attributes": { "weight": 6 } }, { "key": "18247", "source": "208", "target": "1164", "attributes": { "weight": 1 } }, { "key": "11635", "source": "208", "target": "1338", "attributes": { "weight": 1 } }, { "key": "477", "source": "208", "target": "207", "attributes": { "weight": 1 } }, { "key": "32973", "source": "208", "target": "1350", "attributes": { "weight": 2 } }, { "key": "36645", "source": "208", "target": "1210", "attributes": { "weight": 1 } }, { "key": "11623", "source": "208", "target": "1047", "attributes": { "weight": 2 } }, { "key": "18778", "source": "208", "target": "1241", "attributes": { "weight": 2 } }, { "key": "34526", "source": "208", "target": "1323", "attributes": { "weight": 2 } }, { "key": "476", "source": "208", "target": "204", "attributes": { "weight": 2 } }, { "key": "5529", "source": "208", "target": "370", "attributes": { "weight": 4 } }, { "key": "5528", "source": "208", "target": "109", "attributes": { "weight": 2 } }, { "key": "15991", "source": "208", "target": "1287", "attributes": { "weight": 1 } }, { "key": "5532", "source": "208", "target": "371", "attributes": { "weight": 2 } }, { "key": "28583", "source": "208", "target": "1233", "attributes": { "weight": 2 } }, { "key": "28584", "source": "208", "target": "2781", "attributes": { "weight": 1 } }, { "key": "11631", "source": "208", "target": "1307", "attributes": { "weight": 3 } }, { "key": "482", "source": "209", "target": "195", "attributes": { "weight": 1 } }, { "key": "486", "source": "210", "target": "212", "attributes": { "weight": 3 } }, { "key": "484", "source": "210", "target": "205", "attributes": { "weight": 2 } }, { "key": "485", "source": "210", "target": "208", "attributes": { "weight": 2 } }, { "key": "5566", "source": "210", "target": "371", "attributes": { "weight": 2 } }, { "key": "30101", "source": "210", "target": "1281", "attributes": { "weight": 2 } }, { "key": "483", "source": "210", "target": "199", "attributes": { "weight": 3 } }, { "key": "487", "source": "211", "target": "195", "attributes": { "weight": 1 } }, { "key": "489", "source": "212", "target": "210", "attributes": { "weight": 3 } }, { "key": "488", "source": "212", "target": "197", "attributes": { "weight": 2 } }, { "key": "11653", "source": "212", "target": "961", "attributes": { "weight": 1 } }, { "key": "9011", "source": "212", "target": "195", "attributes": { "weight": 8 } }, { "key": "5933", "source": "212", "target": "338", "attributes": { "weight": 2 } }, { "key": "11648", "source": "212", "target": "1156", "attributes": { "weight": 1 } }, { "key": "11651", "source": "212", "target": "945", "attributes": { "weight": 1 } }, { "key": "5935", "source": "212", "target": "123", "attributes": { "weight": 2 } }, { "key": "5931", "source": "212", "target": "1196", "attributes": { "weight": 2 } }, { "key": "11649", "source": "212", "target": "938", "attributes": { "weight": 1 } }, { "key": "11652", "source": "212", "target": "370", "attributes": { "weight": 1 } }, { "key": "11650", "source": "212", "target": "1047", "attributes": { "weight": 2 } }, { "key": "16181", "source": "212", "target": "913", "attributes": { "weight": 1 } }, { "key": "5934", "source": "212", "target": "921", "attributes": { "weight": 4 } }, { "key": "36670", "source": "212", "target": "1174", "attributes": { "weight": 1 } }, { "key": "35113", "source": "212", "target": "1281", "attributes": { "weight": 1 } }, { "key": "36671", "source": "212", "target": "1238", "attributes": { "weight": 1 } }, { "key": "34637", "source": "212", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5930", "source": "212", "target": "779", "attributes": { "weight": 2 } }, { "key": "34636", "source": "212", "target": "1182", "attributes": { "weight": 1 } }, { "key": "5932", "source": "212", "target": "368", "attributes": { "weight": 2 } }, { "key": "5936", "source": "212", "target": "1090", "attributes": { "weight": 2 } }, { "key": "490", "source": "212", "target": "218", "attributes": { "weight": 2 } }, { "key": "491", "source": "213", "target": "195", "attributes": { "weight": 1 } }, { "key": "36688", "source": "214", "target": "1165", "attributes": { "weight": 1 } }, { "key": "6178", "source": "214", "target": "371", "attributes": { "weight": 2 } }, { "key": "492", "source": "214", "target": "208", "attributes": { "weight": 2 } }, { "key": "34657", "source": "214", "target": "123", "attributes": { "weight": 1 } }, { "key": "34656", "source": "214", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6175", "source": "214", "target": "779", "attributes": { "weight": 2 } }, { "key": "9021", "source": "214", "target": "195", "attributes": { "weight": 5 } }, { "key": "36689", "source": "214", "target": "1228", "attributes": { "weight": 1 } }, { "key": "6177", "source": "214", "target": "368", "attributes": { "weight": 2 } }, { "key": "6176", "source": "214", "target": "1196", "attributes": { "weight": 2 } }, { "key": "493", "source": "214", "target": "218", "attributes": { "weight": 2 } }, { "key": "18919", "source": "215", "target": "1552", "attributes": { "weight": 2 } }, { "key": "6248", "source": "215", "target": "1090", "attributes": { "weight": 3 } }, { "key": "34699", "source": "215", "target": "1182", "attributes": { "weight": 1 } }, { "key": "11677", "source": "215", "target": "370", "attributes": { "weight": 1 } }, { "key": "28602", "source": "215", "target": "2780", "attributes": { "weight": 1 } }, { "key": "36699", "source": "215", "target": "1156", "attributes": { "weight": 1 } }, { "key": "495", "source": "215", "target": "208", "attributes": { "weight": 2 } }, { "key": "18279", "source": "215", "target": "2200", "attributes": { "weight": 1 } }, { "key": "6246", "source": "215", "target": "183", "attributes": { "weight": 2 } }, { "key": "18278", "source": "215", "target": "1197", "attributes": { "weight": 2 } }, { "key": "16241", "source": "215", "target": "1236", "attributes": { "weight": 2 } }, { "key": "6243", "source": "215", "target": "779", "attributes": { "weight": 2 } }, { "key": "494", "source": "215", "target": "198", "attributes": { "weight": 2 } }, { "key": "6247", "source": "215", "target": "123", "attributes": { "weight": 4 } }, { "key": "18280", "source": "215", "target": "2205", "attributes": { "weight": 1 } }, { "key": "36703", "source": "215", "target": "124", "attributes": { "weight": 1 } }, { "key": "7391", "source": "215", "target": "1063", "attributes": { "weight": 2 } }, { "key": "9048", "source": "215", "target": "195", "attributes": { "weight": 8 } }, { "key": "6245", "source": "215", "target": "368", "attributes": { "weight": 2 } }, { "key": "16242", "source": "215", "target": "925", "attributes": { "weight": 2 } }, { "key": "11678", "source": "215", "target": "921", "attributes": { "weight": 2 } }, { "key": "6244", "source": "215", "target": "1196", "attributes": { "weight": 4 } }, { "key": "11675", "source": "215", "target": "1047", "attributes": { "weight": 2 } }, { "key": "11674", "source": "215", "target": "938", "attributes": { "weight": 1 } }, { "key": "36702", "source": "215", "target": "1301", "attributes": { "weight": 1 } }, { "key": "16239", "source": "215", "target": "912", "attributes": { "weight": 1 } }, { "key": "16238", "source": "215", "target": "1184", "attributes": { "weight": 2 } }, { "key": "36700", "source": "215", "target": "1269", "attributes": { "weight": 1 } }, { "key": "18918", "source": "215", "target": "1174", "attributes": { "weight": 2 } }, { "key": "36701", "source": "215", "target": "1296", "attributes": { "weight": 1 } }, { "key": "11676", "source": "215", "target": "945", "attributes": { "weight": 1 } }, { "key": "34700", "source": "215", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16240", "source": "215", "target": "913", "attributes": { "weight": 2 } }, { "key": "496", "source": "216", "target": "199", "attributes": { "weight": 2 } }, { "key": "497", "source": "217", "target": "208", "attributes": { "weight": 2 } }, { "key": "498", "source": "217", "target": "218", "attributes": { "weight": 2 } }, { "key": "6453", "source": "217", "target": "371", "attributes": { "weight": 2 } }, { "key": "6451", "source": "217", "target": "1196", "attributes": { "weight": 2 } }, { "key": "9102", "source": "217", "target": "195", "attributes": { "weight": 3 } }, { "key": "6452", "source": "217", "target": "368", "attributes": { "weight": 2 } }, { "key": "6450", "source": "217", "target": "779", "attributes": { "weight": 2 } }, { "key": "16379", "source": "218", "target": "338", "attributes": { "weight": 1 } }, { "key": "18993", "source": "218", "target": "124", "attributes": { "weight": 2 } }, { "key": "34822", "source": "218", "target": "1182", "attributes": { "weight": 1 } }, { "key": "36749", "source": "218", "target": "1321", "attributes": { "weight": 1 } }, { "key": "18980", "source": "218", "target": "1176", "attributes": { "weight": 2 } }, { "key": "18988", "source": "218", "target": "1291", "attributes": { "weight": 1 } }, { "key": "11727", "source": "218", "target": "1047", "attributes": { "weight": 2 } }, { "key": "18987", "source": "218", "target": "926", "attributes": { "weight": 2 } }, { "key": "6457", "source": "218", "target": "779", "attributes": { "weight": 2 } }, { "key": "18986", "source": "218", "target": "1269", "attributes": { "weight": 2 } }, { "key": "6460", "source": "218", "target": "370", "attributes": { "weight": 4 } }, { "key": "6458", "source": "218", "target": "1196", "attributes": { "weight": 3 } }, { "key": "505", "source": "218", "target": "217", "attributes": { "weight": 2 } }, { "key": "6462", "source": "218", "target": "371", "attributes": { "weight": 2 } }, { "key": "18294", "source": "218", "target": "1197", "attributes": { "weight": 3 } }, { "key": "16380", "source": "218", "target": "925", "attributes": { "weight": 1 } }, { "key": "9119", "source": "218", "target": "195", "attributes": { "weight": 8 } }, { "key": "16377", "source": "218", "target": "913", "attributes": { "weight": 2 } }, { "key": "18989", "source": "218", "target": "1296", "attributes": { "weight": 2 } }, { "key": "18983", "source": "218", "target": "1238", "attributes": { "weight": 2 } }, { "key": "36743", "source": "218", "target": "1210", "attributes": { "weight": 1 } }, { "key": "34824", "source": "218", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18981", "source": "218", "target": "1194", "attributes": { "weight": 2 } }, { "key": "16381", "source": "218", "target": "1305", "attributes": { "weight": 3 } }, { "key": "18982", "source": "218", "target": "1228", "attributes": { "weight": 2 } }, { "key": "6464", "source": "218", "target": "1090", "attributes": { "weight": 3 } }, { "key": "14126", "source": "218", "target": "1031", "attributes": { "weight": 1 } }, { "key": "500", "source": "218", "target": "199", "attributes": { "weight": 5 } }, { "key": "11730", "source": "218", "target": "961", "attributes": { "weight": 3 } }, { "key": "28609", "source": "218", "target": "2780", "attributes": { "weight": 1 } }, { "key": "502", "source": "218", "target": "205", "attributes": { "weight": 2 } }, { "key": "7412", "source": "218", "target": "1063", "attributes": { "weight": 2 } }, { "key": "501", "source": "218", "target": "204", "attributes": { "weight": 2 } }, { "key": "18991", "source": "218", "target": "405", "attributes": { "weight": 2 } }, { "key": "36741", "source": "218", "target": "1165", "attributes": { "weight": 1 } }, { "key": "6465", "source": "218", "target": "1294", "attributes": { "weight": 4 } }, { "key": "34823", "source": "218", "target": "1232", "attributes": { "weight": 1 } }, { "key": "16376", "source": "218", "target": "912", "attributes": { "weight": 1 } }, { "key": "18978", "source": "218", "target": "1162", "attributes": { "weight": 2 } }, { "key": "18992", "source": "218", "target": "1322", "attributes": { "weight": 1 } }, { "key": "503", "source": "218", "target": "212", "attributes": { "weight": 2 } }, { "key": "6459", "source": "218", "target": "368", "attributes": { "weight": 3 } }, { "key": "18990", "source": "218", "target": "1301", "attributes": { "weight": 2 } }, { "key": "36748", "source": "218", "target": "1309", "attributes": { "weight": 1 } }, { "key": "16375", "source": "218", "target": "1184", "attributes": { "weight": 3 } }, { "key": "16378", "source": "218", "target": "1236", "attributes": { "weight": 3 } }, { "key": "26165", "source": "218", "target": "1214", "attributes": { "weight": 1 } }, { "key": "36740", "source": "218", "target": "1152", "attributes": { "weight": 1 } }, { "key": "11728", "source": "218", "target": "945", "attributes": { "weight": 1 } }, { "key": "6463", "source": "218", "target": "123", "attributes": { "weight": 4 } }, { "key": "36746", "source": "218", "target": "924", "attributes": { "weight": 1 } }, { "key": "18979", "source": "218", "target": "1174", "attributes": { "weight": 2 } }, { "key": "36745", "source": "218", "target": "337", "attributes": { "weight": 1 } }, { "key": "36747", "source": "218", "target": "1268", "attributes": { "weight": 1 } }, { "key": "6461", "source": "218", "target": "135", "attributes": { "weight": 4 } }, { "key": "36744", "source": "218", "target": "1225", "attributes": { "weight": 1 } }, { "key": "18296", "source": "218", "target": "2205", "attributes": { "weight": 1 } }, { "key": "18984", "source": "218", "target": "1263", "attributes": { "weight": 2 } }, { "key": "18295", "source": "218", "target": "2200", "attributes": { "weight": 1 } }, { "key": "11729", "source": "218", "target": "921", "attributes": { "weight": 2 } }, { "key": "27303", "source": "218", "target": "57", "attributes": { "weight": 1 } }, { "key": "36742", "source": "218", "target": "1172", "attributes": { "weight": 1 } }, { "key": "11726", "source": "218", "target": "938", "attributes": { "weight": 1 } }, { "key": "499", "source": "218", "target": "198", "attributes": { "weight": 4 } }, { "key": "504", "source": "218", "target": "214", "attributes": { "weight": 2 } }, { "key": "18985", "source": "218", "target": "1552", "attributes": { "weight": 2 } }, { "key": "11725", "source": "218", "target": "1156", "attributes": { "weight": 3 } }, { "key": "18977", "source": "218", "target": "933", "attributes": { "weight": 2 } }, { "key": "507", "source": "219", "target": "203", "attributes": { "weight": 1 } }, { "key": "506", "source": "219", "target": "195", "attributes": { "weight": 1 } }, { "key": "10972", "source": "220", "target": "1247", "attributes": { "weight": 3 } }, { "key": "29002", "source": "220", "target": "237", "attributes": { "weight": 1 } }, { "key": "23531", "source": "220", "target": "2251", "attributes": { "weight": 1 } }, { "key": "8282", "source": "220", "target": "228", "attributes": { "weight": 2 } }, { "key": "14318", "source": "220", "target": "304", "attributes": { "weight": 2 } }, { "key": "10955", "source": "220", "target": "59", "attributes": { "weight": 4 } }, { "key": "31187", "source": "220", "target": "1359", "attributes": { "weight": 1 } }, { "key": "31188", "source": "220", "target": "1362", "attributes": { "weight": 1 } }, { "key": "25461", "source": "220", "target": "1360", "attributes": { "weight": 1 } }, { "key": "23551", "source": "220", "target": "1067", "attributes": { "weight": 1 } }, { "key": "23544", "source": "220", "target": "231", "attributes": { "weight": 3 } }, { "key": "25831", "source": "220", "target": "471", "attributes": { "weight": 3 } }, { "key": "25839", "source": "220", "target": "479", "attributes": { "weight": 4 } }, { "key": "23552", "source": "220", "target": "1373", "attributes": { "weight": 1 } }, { "key": "23550", "source": "220", "target": "487", "attributes": { "weight": 1 } }, { "key": "25829", "source": "220", "target": "2620", "attributes": { "weight": 1 } }, { "key": "23536", "source": "220", "target": "460", "attributes": { "weight": 1 } }, { "key": "14315", "source": "220", "target": "259", "attributes": { "weight": 2 } }, { "key": "10962", "source": "220", "target": "636", "attributes": { "weight": 2 } }, { "key": "8280", "source": "220", "target": "1056", "attributes": { "weight": 3 } }, { "key": "8287", "source": "220", "target": "180", "attributes": { "weight": 2 } }, { "key": "12132", "source": "220", "target": "1564", "attributes": { "weight": 1 } }, { "key": "4091", "source": "220", "target": "1131", "attributes": { "weight": 3 } }, { "key": "33024", "source": "220", "target": "493", "attributes": { "weight": 1 } }, { "key": "23525", "source": "220", "target": "1070", "attributes": { "weight": 1 } }, { "key": "23541", "source": "220", "target": "1367", "attributes": { "weight": 2 } }, { "key": "15448", "source": "220", "target": "154", "attributes": { "weight": 2 } }, { "key": "29005", "source": "220", "target": "372", "attributes": { "weight": 1 } }, { "key": "15449", "source": "220", "target": "333", "attributes": { "weight": 2 } }, { "key": "15446", "source": "220", "target": "1322", "attributes": { "weight": 2 } }, { "key": "30696", "source": "220", "target": "889", "attributes": { "weight": 1 } }, { "key": "10795", "source": "220", "target": "470", "attributes": { "weight": 8 } }, { "key": "10794", "source": "220", "target": "457", "attributes": { "weight": 4 } }, { "key": "25823", "source": "220", "target": "638", "attributes": { "weight": 1 } }, { "key": "8281", "source": "220", "target": "1363", "attributes": { "weight": 4 } }, { "key": "25084", "source": "220", "target": "1547", "attributes": { "weight": 1 } }, { "key": "15440", "source": "220", "target": "1233", "attributes": { "weight": 4 } }, { "key": "10958", "source": "220", "target": "222", "attributes": { "weight": 3 } }, { "key": "8270", "source": "220", "target": "1036", "attributes": { "weight": 7 } }, { "key": "25841", "source": "220", "target": "490", "attributes": { "weight": 1 } }, { "key": "23534", "source": "220", "target": "1361", "attributes": { "weight": 1 } }, { "key": "8283", "source": "220", "target": "1087", "attributes": { "weight": 2 } }, { "key": "23528", "source": "220", "target": "451", "attributes": { "weight": 1 } }, { "key": "23556", "source": "220", "target": "340", "attributes": { "weight": 4 } }, { "key": "8277", "source": "220", "target": "1541", "attributes": { "weight": 3 } }, { "key": "4239", "source": "220", "target": "673", "attributes": { "weight": 2 } }, { "key": "23558", "source": "220", "target": "1375", "attributes": { "weight": 3 } }, { "key": "33181", "source": "220", "target": "1836", "attributes": { "weight": 1 } }, { "key": "25816", "source": "220", "target": "698", "attributes": { "weight": 1 } }, { "key": "18439", "source": "220", "target": "1738", "attributes": { "weight": 1 } }, { "key": "508", "source": "220", "target": "230", "attributes": { "weight": 2 } }, { "key": "15439", "source": "220", "target": "1232", "attributes": { "weight": 4 } }, { "key": "10980", "source": "220", "target": "73", "attributes": { "weight": 2 } }, { "key": "9939", "source": "220", "target": "445", "attributes": { "weight": 3 } }, { "key": "29003", "source": "220", "target": "1385", "attributes": { "weight": 1 } }, { "key": "33183", "source": "220", "target": "473", "attributes": { "weight": 1 } }, { "key": "29109", "source": "220", "target": "500", "attributes": { "weight": 1 } }, { "key": "25846", "source": "220", "target": "497", "attributes": { "weight": 2 } }, { "key": "29356", "source": "220", "target": "2856", "attributes": { "weight": 2 } }, { "key": "10970", "source": "220", "target": "1761", "attributes": { "weight": 2 } }, { "key": "8278", "source": "220", "target": "1386", "attributes": { "weight": 3 } }, { "key": "10953", "source": "220", "target": "1754", "attributes": { "weight": 2 } }, { "key": "23542", "source": "220", "target": "190", "attributes": { "weight": 1 } }, { "key": "33186", "source": "220", "target": "672", "attributes": { "weight": 1 } }, { "key": "10961", "source": "220", "target": "224", "attributes": { "weight": 2 } }, { "key": "23555", "source": "220", "target": "56", "attributes": { "weight": 1 } }, { "key": "15438", "source": "220", "target": "1047", "attributes": { "weight": 4 } }, { "key": "14171", "source": "220", "target": "168", "attributes": { "weight": 2 } }, { "key": "11829", "source": "220", "target": "135", "attributes": { "weight": 2 } }, { "key": "23543", "source": "220", "target": "1812", "attributes": { "weight": 1 } }, { "key": "29357", "source": "220", "target": "2863", "attributes": { "weight": 1 } }, { "key": "10966", "source": "220", "target": "452", "attributes": { "weight": 4 } }, { "key": "10981", "source": "220", "target": "193", "attributes": { "weight": 2 } }, { "key": "25805", "source": "220", "target": "1141", "attributes": { "weight": 1 } }, { "key": "23518", "source": "220", "target": "1354", "attributes": { "weight": 3 } }, { "key": "25843", "source": "220", "target": "257", "attributes": { "weight": 1 } }, { "key": "8285", "source": "220", "target": "1088", "attributes": { "weight": 2 } }, { "key": "8286", "source": "220", "target": "233", "attributes": { "weight": 2 } }, { "key": "10971", "source": "220", "target": "1764", "attributes": { "weight": 2 } }, { "key": "8275", "source": "220", "target": "1046", "attributes": { "weight": 3 } }, { "key": "15443", "source": "220", "target": "925", "attributes": { "weight": 2 } }, { "key": "8274", "source": "220", "target": "1045", "attributes": { "weight": 3 } }, { "key": "9941", "source": "220", "target": "477", "attributes": { "weight": 3 } }, { "key": "23530", "source": "220", "target": "1358", "attributes": { "weight": 1 } }, { "key": "15437", "source": "220", "target": "913", "attributes": { "weight": 2 } }, { "key": "10969", "source": "220", "target": "455", "attributes": { "weight": 2 } }, { "key": "23514", "source": "220", "target": "1353", "attributes": { "weight": 1 } }, { "key": "25813", "source": "220", "target": "419", "attributes": { "weight": 1 } }, { "key": "10974", "source": "220", "target": "1767", "attributes": { "weight": 2 } }, { "key": "18014", "source": "220", "target": "433", "attributes": { "weight": 2 } }, { "key": "10968", "source": "220", "target": "1219", "attributes": { "weight": 3 } }, { "key": "25815", "source": "220", "target": "369", "attributes": { "weight": 1 } }, { "key": "9940", "source": "220", "target": "469", "attributes": { "weight": 3 } }, { "key": "25838", "source": "220", "target": "784", "attributes": { "weight": 2 } }, { "key": "25602", "source": "220", "target": "2070", "attributes": { "weight": 1 } }, { "key": "23547", "source": "220", "target": "482", "attributes": { "weight": 1 } }, { "key": "25820", "source": "220", "target": "52", "attributes": { "weight": 2 } }, { "key": "24470", "source": "220", "target": "790", "attributes": { "weight": 1 } }, { "key": "23559", "source": "220", "target": "496", "attributes": { "weight": 1 } }, { "key": "10963", "source": "220", "target": "446", "attributes": { "weight": 2 } }, { "key": "29169", "source": "220", "target": "76", "attributes": { "weight": 1 } }, { "key": "8272", "source": "220", "target": "425", "attributes": { "weight": 3 } }, { "key": "8284", "source": "220", "target": "474", "attributes": { "weight": 3 } }, { "key": "15445", "source": "220", "target": "1291", "attributes": { "weight": 2 } }, { "key": "10957", "source": "220", "target": "1522", "attributes": { "weight": 2 } }, { "key": "23523", "source": "220", "target": "439", "attributes": { "weight": 1 } }, { "key": "33185", "source": "220", "target": "489", "attributes": { "weight": 1 } }, { "key": "17808", "source": "220", "target": "454", "attributes": { "weight": 4 } }, { "key": "10977", "source": "220", "target": "1031", "attributes": { "weight": 2 } }, { "key": "15435", "source": "220", "target": "938", "attributes": { "weight": 2 } }, { "key": "4090", "source": "220", "target": "1112", "attributes": { "weight": 3 } }, { "key": "25817", "source": "220", "target": "108", "attributes": { "weight": 1 } }, { "key": "29007", "source": "220", "target": "1377", "attributes": { "weight": 1 } }, { "key": "8273", "source": "220", "target": "442", "attributes": { "weight": 3 } }, { "key": "23529", "source": "220", "target": "1357", "attributes": { "weight": 1 } }, { "key": "25826", "source": "220", "target": "1387", "attributes": { "weight": 1 } }, { "key": "23537", "source": "220", "target": "461", "attributes": { "weight": 1 } }, { "key": "25806", "source": "220", "target": "35", "attributes": { "weight": 1 } }, { "key": "15451", "source": "220", "target": "1063", "attributes": { "weight": 3 } }, { "key": "25828", "source": "220", "target": "136", "attributes": { "weight": 1 } }, { "key": "25822", "source": "220", "target": "791", "attributes": { "weight": 2 } }, { "key": "23546", "source": "220", "target": "1371", "attributes": { "weight": 1 } }, { "key": "25462", "source": "220", "target": "464", "attributes": { "weight": 1 } }, { "key": "23549", "source": "220", "target": "232", "attributes": { "weight": 3 } }, { "key": "15442", "source": "220", "target": "338", "attributes": { "weight": 2 } }, { "key": "25818", "source": "220", "target": "1118", "attributes": { "weight": 1 } }, { "key": "14317", "source": "220", "target": "167", "attributes": { "weight": 2 } }, { "key": "23527", "source": "220", "target": "2114", "attributes": { "weight": 1 } }, { "key": "16636", "source": "220", "target": "70", "attributes": { "weight": 3 } }, { "key": "17129", "source": "220", "target": "449", "attributes": { "weight": 1 } }, { "key": "15444", "source": "220", "target": "123", "attributes": { "weight": 4 } }, { "key": "32073", "source": "220", "target": "3084", "attributes": { "weight": 1 } }, { "key": "10965", "source": "220", "target": "358", "attributes": { "weight": 3 } }, { "key": "10976", "source": "220", "target": "1768", "attributes": { "weight": 2 } }, { "key": "23936", "source": "220", "target": "437", "attributes": { "weight": 2 } }, { "key": "23539", "source": "220", "target": "1080", "attributes": { "weight": 1 } }, { "key": "25811", "source": "220", "target": "339", "attributes": { "weight": 2 } }, { "key": "33182", "source": "220", "target": "2258", "attributes": { "weight": 1 } }, { "key": "11326", "source": "220", "target": "1742", "attributes": { "weight": 1 } }, { "key": "23538", "source": "220", "target": "462", "attributes": { "weight": 1 } }, { "key": "8271", "source": "220", "target": "50", "attributes": { "weight": 3 } }, { "key": "12128", "source": "220", "target": "435", "attributes": { "weight": 2 } }, { "key": "14291", "source": "220", "target": "53", "attributes": { "weight": 2 } }, { "key": "14319", "source": "220", "target": "305", "attributes": { "weight": 3 } }, { "key": "25827", "source": "220", "target": "8", "attributes": { "weight": 2 } }, { "key": "18315", "source": "220", "target": "1092", "attributes": { "weight": 1 } }, { "key": "12561", "source": "220", "target": "164", "attributes": { "weight": 3 } }, { "key": "35537", "source": "220", "target": "3114", "attributes": { "weight": 1 } }, { "key": "1221", "source": "220", "target": "188", "attributes": { "weight": 3 } }, { "key": "10978", "source": "220", "target": "1337", "attributes": { "weight": 2 } }, { "key": "12129", "source": "220", "target": "1832", "attributes": { "weight": 1 } }, { "key": "23535", "source": "220", "target": "1064", "attributes": { "weight": 1 } }, { "key": "25814", "source": "220", "target": "450", "attributes": { "weight": 2 } }, { "key": "25812", "source": "220", "target": "238", "attributes": { "weight": 2 } }, { "key": "10973", "source": "220", "target": "30", "attributes": { "weight": 2 } }, { "key": "15434", "source": "220", "target": "645", "attributes": { "weight": 2 } }, { "key": "25825", "source": "220", "target": "170", "attributes": { "weight": 1 } }, { "key": "23517", "source": "220", "target": "1107", "attributes": { "weight": 1 } }, { "key": "25844", "source": "220", "target": "1750", "attributes": { "weight": 2 } }, { "key": "25847", "source": "220", "target": "57", "attributes": { "weight": 3 } }, { "key": "23516", "source": "220", "target": "429", "attributes": { "weight": 3 } }, { "key": "14316", "source": "220", "target": "264", "attributes": { "weight": 2 } }, { "key": "13928", "source": "220", "target": "472", "attributes": { "weight": 3 } }, { "key": "25830", "source": "220", "target": "1258", "attributes": { "weight": 1 } }, { "key": "14320", "source": "220", "target": "327", "attributes": { "weight": 2 } }, { "key": "7206", "source": "220", "target": "674", "attributes": { "weight": 6 } }, { "key": "25661", "source": "220", "target": "278", "attributes": { "weight": 2 } }, { "key": "23522", "source": "220", "target": "858", "attributes": { "weight": 1 } }, { "key": "15441", "source": "220", "target": "370", "attributes": { "weight": 2 } }, { "key": "33180", "source": "220", "target": "2645", "attributes": { "weight": 1 } }, { "key": "10982", "source": "220", "target": "494", "attributes": { "weight": 3 } }, { "key": "10959", "source": "220", "target": "438", "attributes": { "weight": 2 } }, { "key": "23515", "source": "220", "target": "857", "attributes": { "weight": 3 } }, { "key": "12660", "source": "220", "target": "695", "attributes": { "weight": 2 } }, { "key": "23560", "source": "220", "target": "1094", "attributes": { "weight": 1 } }, { "key": "29004", "source": "220", "target": "1298", "attributes": { "weight": 1 } }, { "key": "10975", "source": "220", "target": "163", "attributes": { "weight": 3 } }, { "key": "25835", "source": "220", "target": "580", "attributes": { "weight": 1 } }, { "key": "10967", "source": "220", "target": "1116", "attributes": { "weight": 2 } }, { "key": "25808", "source": "220", "target": "236", "attributes": { "weight": 2 } }, { "key": "23557", "source": "220", "target": "492", "attributes": { "weight": 1 } }, { "key": "29108", "source": "220", "target": "447", "attributes": { "weight": 1 } }, { "key": "10964", "source": "220", "target": "183", "attributes": { "weight": 2 } }, { "key": "23532", "source": "220", "target": "458", "attributes": { "weight": 1 } }, { "key": "25837", "source": "220", "target": "1026", "attributes": { "weight": 2 } }, { "key": "23521", "source": "220", "target": "130", "attributes": { "weight": 5 } }, { "key": "25819", "source": "220", "target": "109", "attributes": { "weight": 1 } }, { "key": "23519", "source": "220", "target": "432", "attributes": { "weight": 2 } }, { "key": "15447", "source": "220", "target": "1323", "attributes": { "weight": 2 } }, { "key": "23526", "source": "220", "target": "860", "attributes": { "weight": 1 } }, { "key": "10956", "source": "220", "target": "434", "attributes": { "weight": 2 } }, { "key": "23540", "source": "220", "target": "54", "attributes": { "weight": 1 } }, { "key": "25807", "source": "220", "target": "787", "attributes": { "weight": 1 } }, { "key": "25840", "source": "220", "target": "178", "attributes": { "weight": 2 } }, { "key": "29006", "source": "220", "target": "2212", "attributes": { "weight": 1 } }, { "key": "23545", "source": "220", "target": "480", "attributes": { "weight": 1 } }, { "key": "25836", "source": "220", "target": "476", "attributes": { "weight": 1 } }, { "key": "25824", "source": "220", "target": "1024", "attributes": { "weight": 2 } }, { "key": "15450", "source": "220", "target": "377", "attributes": { "weight": 3 } }, { "key": "18096", "source": "220", "target": "467", "attributes": { "weight": 1 } }, { "key": "23553", "source": "220", "target": "491", "attributes": { "weight": 1 } }, { "key": "12131", "source": "220", "target": "1834", "attributes": { "weight": 1 } }, { "key": "10954", "source": "220", "target": "1755", "attributes": { "weight": 2 } }, { "key": "4283", "source": "220", "target": "468", "attributes": { "weight": 5 } }, { "key": "10796", "source": "220", "target": "1744", "attributes": { "weight": 4 } }, { "key": "8276", "source": "220", "target": "1539", "attributes": { "weight": 3 } }, { "key": "25821", "source": "220", "target": "392", "attributes": { "weight": 1 } }, { "key": "25809", "source": "220", "target": "223", "attributes": { "weight": 1 } }, { "key": "23524", "source": "220", "target": "443", "attributes": { "weight": 1 } }, { "key": "15433", "source": "220", "target": "195", "attributes": { "weight": 2 } }, { "key": "10960", "source": "220", "target": "51", "attributes": { "weight": 3 } }, { "key": "25842", "source": "220", "target": "595", "attributes": { "weight": 2 } }, { "key": "23554", "source": "220", "target": "1374", "attributes": { "weight": 3 } }, { "key": "25810", "source": "220", "target": "440", "attributes": { "weight": 1 } }, { "key": "15436", "source": "220", "target": "368", "attributes": { "weight": 2 } }, { "key": "25832", "source": "220", "target": "396", "attributes": { "weight": 1 } }, { "key": "30751", "source": "220", "target": "1370", "attributes": { "weight": 1 } }, { "key": "23533", "source": "220", "target": "459", "attributes": { "weight": 3 } }, { "key": "17130", "source": "220", "target": "2108", "attributes": { "weight": 1 } }, { "key": "25833", "source": "220", "target": "189", "attributes": { "weight": 2 } }, { "key": "12130", "source": "220", "target": "1535", "attributes": { "weight": 1 } }, { "key": "33184", "source": "220", "target": "2110", "attributes": { "weight": 1 } }, { "key": "10979", "source": "220", "target": "1389", "attributes": { "weight": 2 } }, { "key": "10390", "source": "220", "target": "225", "attributes": { "weight": 2 } }, { "key": "25845", "source": "220", "target": "495", "attributes": { "weight": 2 } }, { "key": "25834", "source": "220", "target": "1282", "attributes": { "weight": 2 } }, { "key": "4284", "source": "220", "target": "1090", "attributes": { "weight": 2 } }, { "key": "8288", "source": "220", "target": "48", "attributes": { "weight": 2 } }, { "key": "23520", "source": "220", "target": "424", "attributes": { "weight": 2 } }, { "key": "509", "source": "220", "target": "234", "attributes": { "weight": 2 } }, { "key": "23548", "source": "220", "target": "483", "attributes": { "weight": 1 } }, { "key": "8279", "source": "220", "target": "171", "attributes": { "weight": 3 } }, { "key": "19312", "source": "221", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19288", "source": "221", "target": "429", "attributes": { "weight": 1 } }, { "key": "36904", "source": "221", "target": "2647", "attributes": { "weight": 1 } }, { "key": "19307", "source": "221", "target": "1832", "attributes": { "weight": 1 } }, { "key": "19343", "source": "221", "target": "1751", "attributes": { "weight": 1 } }, { "key": "19290", "source": "221", "target": "1354", "attributes": { "weight": 1 } }, { "key": "19344", "source": "221", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19335", "source": "221", "target": "2271", "attributes": { "weight": 1 } }, { "key": "19318", "source": "221", "target": "1120", "attributes": { "weight": 1 } }, { "key": "19313", "source": "221", "target": "459", "attributes": { "weight": 1 } }, { "key": "19298", "source": "221", "target": "2025", "attributes": { "weight": 1 } }, { "key": "35826", "source": "221", "target": "497", "attributes": { "weight": 1 } }, { "key": "19297", "source": "221", "target": "51", "attributes": { "weight": 1 } }, { "key": "35825", "source": "221", "target": "1778", "attributes": { "weight": 1 } }, { "key": "19340", "source": "221", "target": "672", "attributes": { "weight": 1 } }, { "key": "19326", "source": "221", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19294", "source": "221", "target": "1522", "attributes": { "weight": 1 } }, { "key": "35816", "source": "221", "target": "3269", "attributes": { "weight": 1 } }, { "key": "12777", "source": "221", "target": "1093", "attributes": { "weight": 1 } }, { "key": "19309", "source": "221", "target": "1358", "attributes": { "weight": 1 } }, { "key": "35821", "source": "221", "target": "1026", "attributes": { "weight": 1 } }, { "key": "19325", "source": "221", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19296", "source": "221", "target": "439", "attributes": { "weight": 1 } }, { "key": "19342", "source": "221", "target": "1750", "attributes": { "weight": 1 } }, { "key": "513", "source": "221", "target": "225", "attributes": { "weight": 1 } }, { "key": "19330", "source": "221", "target": "482", "attributes": { "weight": 1 } }, { "key": "19302", "source": "221", "target": "1070", "attributes": { "weight": 1 } }, { "key": "19338", "source": "221", "target": "491", "attributes": { "weight": 1 } }, { "key": "19304", "source": "221", "target": "445", "attributes": { "weight": 1 } }, { "key": "19295", "source": "221", "target": "438", "attributes": { "weight": 1 } }, { "key": "19311", "source": "221", "target": "1998", "attributes": { "weight": 1 } }, { "key": "19345", "source": "221", "target": "1375", "attributes": { "weight": 1 } }, { "key": "19329", "source": "221", "target": "1770", "attributes": { "weight": 1 } }, { "key": "19339", "source": "221", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19324", "source": "221", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19301", "source": "221", "target": "441", "attributes": { "weight": 1 } }, { "key": "19299", "source": "221", "target": "440", "attributes": { "weight": 1 } }, { "key": "19337", "source": "221", "target": "489", "attributes": { "weight": 1 } }, { "key": "19346", "source": "221", "target": "1390", "attributes": { "weight": 2 } }, { "key": "35822", "source": "221", "target": "479", "attributes": { "weight": 1 } }, { "key": "36903", "source": "221", "target": "1072", "attributes": { "weight": 1 } }, { "key": "19347", "source": "221", "target": "2276", "attributes": { "weight": 1 } }, { "key": "19327", "source": "221", "target": "231", "attributes": { "weight": 1 } }, { "key": "35817", "source": "221", "target": "1760", "attributes": { "weight": 1 } }, { "key": "19287", "source": "221", "target": "1353", "attributes": { "weight": 1 } }, { "key": "19331", "source": "221", "target": "483", "attributes": { "weight": 1 } }, { "key": "35820", "source": "221", "target": "465", "attributes": { "weight": 1 } }, { "key": "19314", "source": "221", "target": "462", "attributes": { "weight": 1 } }, { "key": "19291", "source": "221", "target": "432", "attributes": { "weight": 1 } }, { "key": "19322", "source": "221", "target": "472", "attributes": { "weight": 1 } }, { "key": "19317", "source": "221", "target": "2255", "attributes": { "weight": 1 } }, { "key": "19328", "source": "221", "target": "477", "attributes": { "weight": 1 } }, { "key": "24331", "source": "221", "target": "2491", "attributes": { "weight": 1 } }, { "key": "19306", "source": "221", "target": "2248", "attributes": { "weight": 1 } }, { "key": "19336", "source": "221", "target": "487", "attributes": { "weight": 1 } }, { "key": "19334", "source": "221", "target": "2109", "attributes": { "weight": 1 } }, { "key": "19300", "source": "221", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19321", "source": "221", "target": "471", "attributes": { "weight": 1 } }, { "key": "19319", "source": "221", "target": "54", "attributes": { "weight": 1 } }, { "key": "19333", "source": "221", "target": "2095", "attributes": { "weight": 1 } }, { "key": "35818", "source": "221", "target": "3270", "attributes": { "weight": 1 } }, { "key": "19303", "source": "221", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19323", "source": "221", "target": "1367", "attributes": { "weight": 1 } }, { "key": "19341", "source": "221", "target": "56", "attributes": { "weight": 1 } }, { "key": "19308", "source": "221", "target": "227", "attributes": { "weight": 1 } }, { "key": "35819", "source": "221", "target": "1360", "attributes": { "weight": 1 } }, { "key": "19348", "source": "221", "target": "498", "attributes": { "weight": 1 } }, { "key": "29375", "source": "221", "target": "232", "attributes": { "weight": 1 } }, { "key": "19310", "source": "221", "target": "2251", "attributes": { "weight": 1 } }, { "key": "35824", "source": "221", "target": "1092", "attributes": { "weight": 1 } }, { "key": "19305", "source": "221", "target": "449", "attributes": { "weight": 1 } }, { "key": "19293", "source": "221", "target": "49", "attributes": { "weight": 1 } }, { "key": "19289", "source": "221", "target": "1756", "attributes": { "weight": 1 } }, { "key": "35823", "source": "221", "target": "428", "attributes": { "weight": 1 } }, { "key": "19349", "source": "221", "target": "2278", "attributes": { "weight": 1 } }, { "key": "19316", "source": "221", "target": "1247", "attributes": { "weight": 1 } }, { "key": "19315", "source": "221", "target": "464", "attributes": { "weight": 1 } }, { "key": "19320", "source": "221", "target": "2257", "attributes": { "weight": 1 } }, { "key": "19332", "source": "221", "target": "695", "attributes": { "weight": 1 } }, { "key": "19292", "source": "221", "target": "130", "attributes": { "weight": 1 } }, { "key": "19416", "source": "222", "target": "1375", "attributes": { "weight": 1 } }, { "key": "4100", "source": "222", "target": "228", "attributes": { "weight": 2 } }, { "key": "19415", "source": "222", "target": "2189", "attributes": { "weight": 1 } }, { "key": "31254", "source": "222", "target": "674", "attributes": { "weight": 1 } }, { "key": "29113", "source": "222", "target": "500", "attributes": { "weight": 2 } }, { "key": "11019", "source": "222", "target": "595", "attributes": { "weight": 2 } }, { "key": "35830", "source": "222", "target": "1778", "attributes": { "weight": 1 } }, { "key": "9944", "source": "222", "target": "1093", "attributes": { "weight": 4 } }, { "key": "35828", "source": "222", "target": "1026", "attributes": { "weight": 1 } }, { "key": "33028", "source": "222", "target": "493", "attributes": { "weight": 1 } }, { "key": "3602", "source": "222", "target": "1025", "attributes": { "weight": 2 } }, { "key": "29380", "source": "222", "target": "232", "attributes": { "weight": 1 } }, { "key": "19413", "source": "222", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19391", "source": "222", "target": "1756", "attributes": { "weight": 1 } }, { "key": "19414", "source": "222", "target": "56", "attributes": { "weight": 1 } }, { "key": "19412", "source": "222", "target": "491", "attributes": { "weight": 1 } }, { "key": "19417", "source": "222", "target": "2276", "attributes": { "weight": 1 } }, { "key": "26404", "source": "222", "target": "454", "attributes": { "weight": 1 } }, { "key": "19410", "source": "222", "target": "2095", "attributes": { "weight": 1 } }, { "key": "19406", "source": "222", "target": "2261", "attributes": { "weight": 1 } }, { "key": "4359", "source": "222", "target": "468", "attributes": { "weight": 2 } }, { "key": "31253", "source": "222", "target": "59", "attributes": { "weight": 1 } }, { "key": "19399", "source": "222", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19392", "source": "222", "target": "1354", "attributes": { "weight": 1 } }, { "key": "514", "source": "222", "target": "225", "attributes": { "weight": 2 } }, { "key": "35829", "source": "222", "target": "1092", "attributes": { "weight": 1 } }, { "key": "19405", "source": "222", "target": "1367", "attributes": { "weight": 1 } }, { "key": "35827", "source": "222", "target": "1760", "attributes": { "weight": 1 } }, { "key": "1248", "source": "222", "target": "193", "attributes": { "weight": 1 } }, { "key": "19393", "source": "222", "target": "130", "attributes": { "weight": 3 } }, { "key": "17145", "source": "222", "target": "449", "attributes": { "weight": 2 } }, { "key": "19398", "source": "222", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19411", "source": "222", "target": "489", "attributes": { "weight": 1 } }, { "key": "11018", "source": "222", "target": "470", "attributes": { "weight": 3 } }, { "key": "1247", "source": "222", "target": "224", "attributes": { "weight": 1 } }, { "key": "19390", "source": "222", "target": "429", "attributes": { "weight": 1 } }, { "key": "19394", "source": "222", "target": "49", "attributes": { "weight": 1 } }, { "key": "19407", "source": "222", "target": "1744", "attributes": { "weight": 1 } }, { "key": "9943", "source": "222", "target": "445", "attributes": { "weight": 4 } }, { "key": "31392", "source": "222", "target": "223", "attributes": { "weight": 1 } }, { "key": "19402", "source": "222", "target": "464", "attributes": { "weight": 1 } }, { "key": "19409", "source": "222", "target": "477", "attributes": { "weight": 1 } }, { "key": "24332", "source": "222", "target": "441", "attributes": { "weight": 1 } }, { "key": "19397", "source": "222", "target": "51", "attributes": { "weight": 1 } }, { "key": "24013", "source": "222", "target": "1125", "attributes": { "weight": 2 } }, { "key": "19395", "source": "222", "target": "50", "attributes": { "weight": 1 } }, { "key": "19403", "source": "222", "target": "471", "attributes": { "weight": 2 } }, { "key": "11017", "source": "222", "target": "1762", "attributes": { "weight": 2 } }, { "key": "29018", "source": "222", "target": "495", "attributes": { "weight": 1 } }, { "key": "11016", "source": "222", "target": "452", "attributes": { "weight": 1 } }, { "key": "19396", "source": "222", "target": "439", "attributes": { "weight": 1 } }, { "key": "8462", "source": "222", "target": "442", "attributes": { "weight": 3 } }, { "key": "11015", "source": "222", "target": "220", "attributes": { "weight": 3 } }, { "key": "19401", "source": "222", "target": "459", "attributes": { "weight": 1 } }, { "key": "19408", "source": "222", "target": "231", "attributes": { "weight": 1 } }, { "key": "33229", "source": "222", "target": "135", "attributes": { "weight": 1 } }, { "key": "19400", "source": "222", "target": "450", "attributes": { "weight": 1 } }, { "key": "19404", "source": "222", "target": "472", "attributes": { "weight": 1 } }, { "key": "24333", "source": "222", "target": "191", "attributes": { "weight": 1 } }, { "key": "32321", "source": "222", "target": "791", "attributes": { "weight": 1 } }, { "key": "19418", "source": "222", "target": "498", "attributes": { "weight": 1 } }, { "key": "19389", "source": "222", "target": "1353", "attributes": { "weight": 1 } }, { "key": "23574", "source": "222", "target": "2248", "attributes": { "weight": 1 } }, { "key": "26405", "source": "222", "target": "189", "attributes": { "weight": 1 } }, { "key": "31405", "source": "223", "target": "1384", "attributes": { "weight": 1 } }, { "key": "7232", "source": "223", "target": "42", "attributes": { "weight": 4 } }, { "key": "31259", "source": "223", "target": "70", "attributes": { "weight": 2 } }, { "key": "23400", "source": "223", "target": "437", "attributes": { "weight": 2 } }, { "key": "32324", "source": "223", "target": "791", "attributes": { "weight": 1 } }, { "key": "23325", "source": "223", "target": "2208", "attributes": { "weight": 1 } }, { "key": "10402", "source": "223", "target": "1708", "attributes": { "weight": 1 } }, { "key": "10401", "source": "223", "target": "1703", "attributes": { "weight": 3 } }, { "key": "7230", "source": "223", "target": "1386", "attributes": { "weight": 5 } }, { "key": "3926", "source": "223", "target": "458", "attributes": { "weight": 3 } }, { "key": "29839", "source": "223", "target": "1024", "attributes": { "weight": 2 } }, { "key": "9235", "source": "223", "target": "430", "attributes": { "weight": 1 } }, { "key": "23307", "source": "223", "target": "2086", "attributes": { "weight": 1 } }, { "key": "23326", "source": "223", "target": "1094", "attributes": { "weight": 1 } }, { "key": "25085", "source": "223", "target": "1547", "attributes": { "weight": 2 } }, { "key": "27805", "source": "223", "target": "339", "attributes": { "weight": 2 } }, { "key": "23314", "source": "223", "target": "462", "attributes": { "weight": 1 } }, { "key": "26412", "source": "223", "target": "455", "attributes": { "weight": 3 } }, { "key": "23405", "source": "223", "target": "193", "attributes": { "weight": 3 } }, { "key": "12668", "source": "223", "target": "695", "attributes": { "weight": 2 } }, { "key": "31417", "source": "223", "target": "492", "attributes": { "weight": 1 } }, { "key": "23306", "source": "223", "target": "424", "attributes": { "weight": 2 } }, { "key": "31404", "source": "223", "target": "451", "attributes": { "weight": 2 } }, { "key": "7227", "source": "223", "target": "38", "attributes": { "weight": 4 } }, { "key": "23401", "source": "223", "target": "674", "attributes": { "weight": 4 } }, { "key": "31412", "source": "223", "target": "123", "attributes": { "weight": 2 } }, { "key": "31400", "source": "223", "target": "51", "attributes": { "weight": 1 } }, { "key": "7231", "source": "223", "target": "1387", "attributes": { "weight": 4 } }, { "key": "19519", "source": "223", "target": "1375", "attributes": { "weight": 3 } }, { "key": "29019", "source": "223", "target": "495", "attributes": { "weight": 2 } }, { "key": "25907", "source": "223", "target": "445", "attributes": { "weight": 2 } }, { "key": "10403", "source": "223", "target": "482", "attributes": { "weight": 3 } }, { "key": "27359", "source": "223", "target": "340", "attributes": { "weight": 2 } }, { "key": "31399", "source": "223", "target": "1733", "attributes": { "weight": 2 } }, { "key": "23313", "source": "223", "target": "460", "attributes": { "weight": 1 } }, { "key": "12517", "source": "223", "target": "1282", "attributes": { "weight": 2 } }, { "key": "11026", "source": "223", "target": "452", "attributes": { "weight": 6 } }, { "key": "19514", "source": "223", "target": "1354", "attributes": { "weight": 4 } }, { "key": "29381", "source": "223", "target": "857", "attributes": { "weight": 1 } }, { "key": "33030", "source": "223", "target": "1355", "attributes": { "weight": 1 } }, { "key": "10806", "source": "223", "target": "457", "attributes": { "weight": 1 } }, { "key": "1253", "source": "223", "target": "490", "attributes": { "weight": 1 } }, { "key": "31403", "source": "223", "target": "450", "attributes": { "weight": 1 } }, { "key": "23316", "source": "223", "target": "1364", "attributes": { "weight": 1 } }, { "key": "26416", "source": "223", "target": "1557", "attributes": { "weight": 4 } }, { "key": "25374", "source": "223", "target": "433", "attributes": { "weight": 1 } }, { "key": "17154", "source": "223", "target": "449", "attributes": { "weight": 1 } }, { "key": "11852", "source": "223", "target": "1522", "attributes": { "weight": 1 } }, { "key": "3724", "source": "223", "target": "1063", "attributes": { "weight": 3 } }, { "key": "31409", "source": "223", "target": "1087", "attributes": { "weight": 1 } }, { "key": "17826", "source": "223", "target": "442", "attributes": { "weight": 2 } }, { "key": "19518", "source": "223", "target": "235", "attributes": { "weight": 1 } }, { "key": "19517", "source": "223", "target": "231", "attributes": { "weight": 4 } }, { "key": "31258", "source": "223", "target": "59", "attributes": { "weight": 1 } }, { "key": "4411", "source": "223", "target": "1090", "attributes": { "weight": 2 } }, { "key": "23404", "source": "223", "target": "304", "attributes": { "weight": 2 } }, { "key": "31398", "source": "223", "target": "222", "attributes": { "weight": 1 } }, { "key": "25463", "source": "223", "target": "1360", "attributes": { "weight": 1 } }, { "key": "19515", "source": "223", "target": "130", "attributes": { "weight": 5 } }, { "key": "32325", "source": "223", "target": "232", "attributes": { "weight": 1 } }, { "key": "515", "source": "223", "target": "225", "attributes": { "weight": 3 } }, { "key": "31402", "source": "223", "target": "3", "attributes": { "weight": 1 } }, { "key": "25908", "source": "223", "target": "1367", "attributes": { "weight": 2 } }, { "key": "516", "source": "223", "target": "230", "attributes": { "weight": 2 } }, { "key": "24019", "source": "223", "target": "2109", "attributes": { "weight": 2 } }, { "key": "4107", "source": "223", "target": "228", "attributes": { "weight": 4 } }, { "key": "23402", "source": "223", "target": "52", "attributes": { "weight": 4 } }, { "key": "31416", "source": "223", "target": "233", "attributes": { "weight": 2 } }, { "key": "33263", "source": "223", "target": "672", "attributes": { "weight": 1 } }, { "key": "33031", "source": "223", "target": "1845", "attributes": { "weight": 1 } }, { "key": "26415", "source": "223", "target": "189", "attributes": { "weight": 2 } }, { "key": "7229", "source": "223", "target": "133", "attributes": { "weight": 5 } }, { "key": "10807", "source": "223", "target": "470", "attributes": { "weight": 8 } }, { "key": "9720", "source": "223", "target": "471", "attributes": { "weight": 5 } }, { "key": "29382", "source": "223", "target": "858", "attributes": { "weight": 1 } }, { "key": "29171", "source": "223", "target": "1750", "attributes": { "weight": 2 } }, { "key": "25850", "source": "223", "target": "220", "attributes": { "weight": 1 } }, { "key": "23315", "source": "223", "target": "1120", "attributes": { "weight": 1 } }, { "key": "26411", "source": "223", "target": "134", "attributes": { "weight": 3 } }, { "key": "23403", "source": "223", "target": "473", "attributes": { "weight": 4 } }, { "key": "17155", "source": "223", "target": "2108", "attributes": { "weight": 1 } }, { "key": "23310", "source": "223", "target": "447", "attributes": { "weight": 1 } }, { "key": "28928", "source": "223", "target": "479", "attributes": { "weight": 4 } }, { "key": "23312", "source": "223", "target": "459", "attributes": { "weight": 3 } }, { "key": "31408", "source": "223", "target": "472", "attributes": { "weight": 2 } }, { "key": "7226", "source": "223", "target": "1382", "attributes": { "weight": 4 } }, { "key": "4410", "source": "223", "target": "468", "attributes": { "weight": 3 } }, { "key": "23322", "source": "223", "target": "483", "attributes": { "weight": 1 } }, { "key": "12667", "source": "223", "target": "1036", "attributes": { "weight": 3 } }, { "key": "19513", "source": "223", "target": "429", "attributes": { "weight": 4 } }, { "key": "19516", "source": "223", "target": "1744", "attributes": { "weight": 5 } }, { "key": "7228", "source": "223", "target": "39", "attributes": { "weight": 5 } }, { "key": "23324", "source": "223", "target": "247", "attributes": { "weight": 1 } }, { "key": "33032", "source": "223", "target": "493", "attributes": { "weight": 1 } }, { "key": "17827", "source": "223", "target": "454", "attributes": { "weight": 3 } }, { "key": "8476", "source": "223", "target": "195", "attributes": { "weight": 3 } }, { "key": "26414", "source": "223", "target": "1232", "attributes": { "weight": 3 } }, { "key": "12669", "source": "223", "target": "1390", "attributes": { "weight": 4 } }, { "key": "31407", "source": "223", "target": "1118", "attributes": { "weight": 3 } }, { "key": "31406", "source": "223", "target": "1116", "attributes": { "weight": 1 } }, { "key": "3722", "source": "223", "target": "419", "attributes": { "weight": 2 } }, { "key": "31395", "source": "223", "target": "435", "attributes": { "weight": 2 } }, { "key": "31579", "source": "223", "target": "595", "attributes": { "weight": 1 } }, { "key": "18321", "source": "223", "target": "1092", "attributes": { "weight": 1 } }, { "key": "29114", "source": "223", "target": "500", "attributes": { "weight": 2 } }, { "key": "3925", "source": "223", "target": "432", "attributes": { "weight": 3 } }, { "key": "23317", "source": "223", "target": "54", "attributes": { "weight": 1 } }, { "key": "23309", "source": "223", "target": "1070", "attributes": { "weight": 1 } }, { "key": "31411", "source": "223", "target": "474", "attributes": { "weight": 2 } }, { "key": "23319", "source": "223", "target": "1368", "attributes": { "weight": 1 } }, { "key": "33262", "source": "223", "target": "135", "attributes": { "weight": 1 } }, { "key": "25464", "source": "223", "target": "498", "attributes": { "weight": 1 } }, { "key": "26413", "source": "223", "target": "188", "attributes": { "weight": 2 } }, { "key": "23305", "source": "223", "target": "1353", "attributes": { "weight": 1 } }, { "key": "12516", "source": "223", "target": "1832", "attributes": { "weight": 1 } }, { "key": "24020", "source": "223", "target": "494", "attributes": { "weight": 3 } }, { "key": "3723", "source": "223", "target": "1047", "attributes": { "weight": 5 } }, { "key": "11027", "source": "223", "target": "469", "attributes": { "weight": 4 } }, { "key": "4108", "source": "223", "target": "1088", "attributes": { "weight": 2 } }, { "key": "517", "source": "223", "target": "234", "attributes": { "weight": 2 } }, { "key": "7233", "source": "223", "target": "154", "attributes": { "weight": 4 } }, { "key": "23323", "source": "223", "target": "56", "attributes": { "weight": 1 } }, { "key": "31414", "source": "223", "target": "1374", "attributes": { "weight": 1 } }, { "key": "23308", "source": "223", "target": "443", "attributes": { "weight": 1 } }, { "key": "31410", "source": "223", "target": "190", "attributes": { "weight": 2 } }, { "key": "32323", "source": "223", "target": "3093", "attributes": { "weight": 1 } }, { "key": "30724", "source": "223", "target": "1026", "attributes": { "weight": 2 } }, { "key": "30342", "source": "223", "target": "1046", "attributes": { "weight": 1 } }, { "key": "23311", "source": "223", "target": "1357", "attributes": { "weight": 1 } }, { "key": "27220", "source": "223", "target": "425", "attributes": { "weight": 3 } }, { "key": "31397", "source": "223", "target": "164", "attributes": { "weight": 2 } }, { "key": "23318", "source": "223", "target": "1366", "attributes": { "weight": 1 } }, { "key": "31413", "source": "223", "target": "477", "attributes": { "weight": 1 } }, { "key": "26410", "source": "223", "target": "34", "attributes": { "weight": 3 } }, { "key": "23321", "source": "223", "target": "2269", "attributes": { "weight": 1 } }, { "key": "3721", "source": "223", "target": "645", "attributes": { "weight": 2 } }, { "key": "8477", "source": "223", "target": "370", "attributes": { "weight": 6 } }, { "key": "27532", "source": "223", "target": "1520", "attributes": { "weight": 1 } }, { "key": "23320", "source": "223", "target": "1812", "attributes": { "weight": 1 } }, { "key": "26903", "source": "223", "target": "497", "attributes": { "weight": 1 } }, { "key": "18443", "source": "223", "target": "1738", "attributes": { "weight": 1 } }, { "key": "27221", "source": "223", "target": "57", "attributes": { "weight": 2 } }, { "key": "31401", "source": "223", "target": "440", "attributes": { "weight": 1 } }, { "key": "31396", "source": "223", "target": "436", "attributes": { "weight": 1 } }, { "key": "33261", "source": "223", "target": "50", "attributes": { "weight": 1 } }, { "key": "31415", "source": "223", "target": "1131", "attributes": { "weight": 2 } }, { "key": "1286", "source": "224", "target": "456", "attributes": { "weight": 1 } }, { "key": "1300", "source": "224", "target": "190", "attributes": { "weight": 1 } }, { "key": "1289", "source": "224", "target": "460", "attributes": { "weight": 1 } }, { "key": "1326", "source": "224", "target": "499", "attributes": { "weight": 1 } }, { "key": "1277", "source": "224", "target": "445", "attributes": { "weight": 1 } }, { "key": "1313", "source": "224", "target": "486", "attributes": { "weight": 1 } }, { "key": "1287", "source": "224", "target": "458", "attributes": { "weight": 2 } }, { "key": "36989", "source": "224", "target": "2644", "attributes": { "weight": 1 } }, { "key": "1311", "source": "224", "target": "485", "attributes": { "weight": 1 } }, { "key": "1309", "source": "224", "target": "483", "attributes": { "weight": 2 } }, { "key": "19654", "source": "224", "target": "2251", "attributes": { "weight": 1 } }, { "key": "1319", "source": "224", "target": "340", "attributes": { "weight": 1 } }, { "key": "1294", "source": "224", "target": "467", "attributes": { "weight": 1 } }, { "key": "1303", "source": "224", "target": "231", "attributes": { "weight": 5 } }, { "key": "1283", "source": "224", "target": "452", "attributes": { "weight": 1 } }, { "key": "1310", "source": "224", "target": "484", "attributes": { "weight": 1 } }, { "key": "1291", "source": "224", "target": "462", "attributes": { "weight": 3 } }, { "key": "1327", "source": "224", "target": "194", "attributes": { "weight": 1 } }, { "key": "1269", "source": "224", "target": "130", "attributes": { "weight": 1 } }, { "key": "36990", "source": "224", "target": "1357", "attributes": { "weight": 1 } }, { "key": "33747", "source": "224", "target": "3", "attributes": { "weight": 1 } }, { "key": "1267", "source": "224", "target": "432", "attributes": { "weight": 1 } }, { "key": "1265", "source": "224", "target": "430", "attributes": { "weight": 1 } }, { "key": "1274", "source": "224", "target": "441", "attributes": { "weight": 1 } }, { "key": "1270", "source": "224", "target": "436", "attributes": { "weight": 1 } }, { "key": "1297", "source": "224", "target": "54", "attributes": { "weight": 4 } }, { "key": "1306", "source": "224", "target": "480", "attributes": { "weight": 1 } }, { "key": "1284", "source": "224", "target": "185", "attributes": { "weight": 1 } }, { "key": "33325", "source": "224", "target": "135", "attributes": { "weight": 1 } }, { "key": "1322", "source": "224", "target": "494", "attributes": { "weight": 1 } }, { "key": "1290", "source": "224", "target": "461", "attributes": { "weight": 1 } }, { "key": "1272", "source": "224", "target": "439", "attributes": { "weight": 1 } }, { "key": "1288", "source": "224", "target": "459", "attributes": { "weight": 2 } }, { "key": "1292", "source": "224", "target": "463", "attributes": { "weight": 2 } }, { "key": "1312", "source": "224", "target": "232", "attributes": { "weight": 3 } }, { "key": "1315", "source": "224", "target": "488", "attributes": { "weight": 1 } }, { "key": "1318", "source": "224", "target": "192", "attributes": { "weight": 2 } }, { "key": "32087", "source": "224", "target": "3084", "attributes": { "weight": 1 } }, { "key": "1302", "source": "224", "target": "191", "attributes": { "weight": 3 } }, { "key": "1308", "source": "224", "target": "482", "attributes": { "weight": 1 } }, { "key": "1280", "source": "224", "target": "449", "attributes": { "weight": 1 } }, { "key": "6640", "source": "224", "target": "189", "attributes": { "weight": 3 } }, { "key": "1320", "source": "224", "target": "493", "attributes": { "weight": 1 } }, { "key": "16736", "source": "224", "target": "1354", "attributes": { "weight": 1 } }, { "key": "1281", "source": "224", "target": "450", "attributes": { "weight": 1 } }, { "key": "1276", "source": "224", "target": "444", "attributes": { "weight": 2 } }, { "key": "35865", "source": "224", "target": "465", "attributes": { "weight": 1 } }, { "key": "6642", "source": "224", "target": "56", "attributes": { "weight": 4 } }, { "key": "1324", "source": "224", "target": "496", "attributes": { "weight": 1 } }, { "key": "1323", "source": "224", "target": "495", "attributes": { "weight": 3 } }, { "key": "1268", "source": "224", "target": "424", "attributes": { "weight": 5 } }, { "key": "1316", "source": "224", "target": "489", "attributes": { "weight": 1 } }, { "key": "16737", "source": "224", "target": "70", "attributes": { "weight": 1 } }, { "key": "1282", "source": "224", "target": "451", "attributes": { "weight": 2 } }, { "key": "1329", "source": "224", "target": "57", "attributes": { "weight": 2 } }, { "key": "1275", "source": "224", "target": "443", "attributes": { "weight": 2 } }, { "key": "1299", "source": "224", "target": "473", "attributes": { "weight": 1 } }, { "key": "1328", "source": "224", "target": "500", "attributes": { "weight": 1 } }, { "key": "1285", "source": "224", "target": "188", "attributes": { "weight": 1 } }, { "key": "1266", "source": "224", "target": "59", "attributes": { "weight": 1 } }, { "key": "1279", "source": "224", "target": "182", "attributes": { "weight": 1 } }, { "key": "6637", "source": "224", "target": "1358", "attributes": { "weight": 2 } }, { "key": "35866", "source": "224", "target": "428", "attributes": { "weight": 1 } }, { "key": "6639", "source": "224", "target": "1366", "attributes": { "weight": 1 } }, { "key": "12171", "source": "224", "target": "435", "attributes": { "weight": 1 } }, { "key": "1273", "source": "224", "target": "440", "attributes": { "weight": 1 } }, { "key": "6635", "source": "224", "target": "1353", "attributes": { "weight": 1 } }, { "key": "1304", "source": "224", "target": "477", "attributes": { "weight": 1 } }, { "key": "1298", "source": "224", "target": "472", "attributes": { "weight": 1 } }, { "key": "37062", "source": "224", "target": "857", "attributes": { "weight": 1 } }, { "key": "1307", "source": "224", "target": "481", "attributes": { "weight": 1 } }, { "key": "11036", "source": "224", "target": "220", "attributes": { "weight": 2 } }, { "key": "1296", "source": "224", "target": "470", "attributes": { "weight": 1 } }, { "key": "29385", "source": "224", "target": "2211", "attributes": { "weight": 1 } }, { "key": "6636", "source": "224", "target": "429", "attributes": { "weight": 3 } }, { "key": "35864", "source": "224", "target": "1360", "attributes": { "weight": 1 } }, { "key": "6641", "source": "224", "target": "1368", "attributes": { "weight": 1 } }, { "key": "1293", "source": "224", "target": "466", "attributes": { "weight": 1 } }, { "key": "518", "source": "224", "target": "230", "attributes": { "weight": 2 } }, { "key": "1271", "source": "224", "target": "222", "attributes": { "weight": 1 } }, { "key": "1278", "source": "224", "target": "447", "attributes": { "weight": 1 } }, { "key": "6638", "source": "224", "target": "426", "attributes": { "weight": 1 } }, { "key": "1301", "source": "224", "target": "474", "attributes": { "weight": 1 } }, { "key": "1325", "source": "224", "target": "497", "attributes": { "weight": 1 } }, { "key": "1321", "source": "224", "target": "193", "attributes": { "weight": 5 } }, { "key": "1317", "source": "224", "target": "491", "attributes": { "weight": 1 } }, { "key": "1314", "source": "224", "target": "487", "attributes": { "weight": 1 } }, { "key": "1305", "source": "224", "target": "479", "attributes": { "weight": 1 } }, { "key": "32331", "source": "224", "target": "791", "attributes": { "weight": 1 } }, { "key": "24484", "source": "224", "target": "790", "attributes": { "weight": 1 } }, { "key": "1295", "source": "224", "target": "468", "attributes": { "weight": 1 } }, { "key": "36905", "source": "224", "target": "1072", "attributes": { "weight": 1 } }, { "key": "10448", "source": "225", "target": "230", "attributes": { "weight": 1 } }, { "key": "10454", "source": "225", "target": "42", "attributes": { "weight": 1 } }, { "key": "10430", "source": "225", "target": "454", "attributes": { "weight": 2 } }, { "key": "10449", "source": "225", "target": "41", "attributes": { "weight": 1 } }, { "key": "10427", "source": "225", "target": "227", "attributes": { "weight": 1 } }, { "key": "524", "source": "225", "target": "135", "attributes": { "weight": 2 } }, { "key": "10472", "source": "225", "target": "1714", "attributes": { "weight": 1 } }, { "key": "10416", "source": "225", "target": "131", "attributes": { "weight": 1 } }, { "key": "10434", "source": "225", "target": "791", "attributes": { "weight": 2 } }, { "key": "10439", "source": "225", "target": "40", "attributes": { "weight": 1 } }, { "key": "10436", "source": "225", "target": "370", "attributes": { "weight": 1 } }, { "key": "529", "source": "225", "target": "235", "attributes": { "weight": 1 } }, { "key": "10456", "source": "225", "target": "137", "attributes": { "weight": 1 } }, { "key": "10420", "source": "225", "target": "339", "attributes": { "weight": 2 } }, { "key": "10424", "source": "225", "target": "133", "attributes": { "weight": 1 } }, { "key": "10469", "source": "225", "target": "1713", "attributes": { "weight": 1 } }, { "key": "10414", "source": "225", "target": "1036", "attributes": { "weight": 3 } }, { "key": "3101", "source": "225", "target": "890", "attributes": { "weight": 2 } }, { "key": "10440", "source": "225", "target": "468", "attributes": { "weight": 1 } }, { "key": "10450", "source": "225", "target": "1556", "attributes": { "weight": 2 } }, { "key": "10412", "source": "225", "target": "220", "attributes": { "weight": 2 } }, { "key": "10410", "source": "225", "target": "1703", "attributes": { "weight": 1 } }, { "key": "10438", "source": "225", "target": "1544", "attributes": { "weight": 1 } }, { "key": "10432", "source": "225", "target": "109", "attributes": { "weight": 1 } }, { "key": "10457", "source": "225", "target": "1709", "attributes": { "weight": 1 } }, { "key": "10411", "source": "225", "target": "429", "attributes": { "weight": 2 } }, { "key": "10419", "source": "225", "target": "1524", "attributes": { "weight": 1 } }, { "key": "10437", "source": "225", "target": "1387", "attributes": { "weight": 1 } }, { "key": "528", "source": "225", "target": "233", "attributes": { "weight": 3 } }, { "key": "10467", "source": "225", "target": "234", "attributes": { "weight": 1 } }, { "key": "10471", "source": "225", "target": "193", "attributes": { "weight": 1 } }, { "key": "10409", "source": "225", "target": "34", "attributes": { "weight": 1 } }, { "key": "10428", "source": "225", "target": "1384", "attributes": { "weight": 1 } }, { "key": "10447", "source": "225", "target": "474", "attributes": { "weight": 1 } }, { "key": "10444", "source": "225", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9246", "source": "225", "target": "1592", "attributes": { "weight": 1 } }, { "key": "10455", "source": "225", "target": "1708", "attributes": { "weight": 1 } }, { "key": "10451", "source": "225", "target": "1557", "attributes": { "weight": 1 } }, { "key": "10463", "source": "225", "target": "1565", "attributes": { "weight": 1 } }, { "key": "8662", "source": "225", "target": "442", "attributes": { "weight": 6 } }, { "key": "30353", "source": "225", "target": "1046", "attributes": { "weight": 1 } }, { "key": "10442", "source": "225", "target": "54", "attributes": { "weight": 2 } }, { "key": "26180", "source": "225", "target": "2631", "attributes": { "weight": 1 } }, { "key": "10460", "source": "225", "target": "482", "attributes": { "weight": 1 } }, { "key": "520", "source": "225", "target": "221", "attributes": { "weight": 1 } }, { "key": "10415", "source": "225", "target": "1520", "attributes": { "weight": 1 } }, { "key": "526", "source": "225", "target": "229", "attributes": { "weight": 1 } }, { "key": "9245", "source": "225", "target": "430", "attributes": { "weight": 2 } }, { "key": "10452", "source": "225", "target": "1088", "attributes": { "weight": 1 } }, { "key": "10470", "source": "225", "target": "493", "attributes": { "weight": 2 } }, { "key": "10464", "source": "225", "target": "595", "attributes": { "weight": 2 } }, { "key": "10462", "source": "225", "target": "138", "attributes": { "weight": 1 } }, { "key": "10465", "source": "225", "target": "1131", "attributes": { "weight": 1 } }, { "key": "10466", "source": "225", "target": "1711", "attributes": { "weight": 1 } }, { "key": "10461", "source": "225", "target": "1560", "attributes": { "weight": 1 } }, { "key": "3102", "source": "225", "target": "894", "attributes": { "weight": 3 } }, { "key": "10418", "source": "225", "target": "50", "attributes": { "weight": 1 } }, { "key": "10425", "source": "225", "target": "1706", "attributes": { "weight": 1 } }, { "key": "10453", "source": "225", "target": "1125", "attributes": { "weight": 1 } }, { "key": "31854", "source": "225", "target": "1060", "attributes": { "weight": 1 } }, { "key": "10458", "source": "225", "target": "1559", "attributes": { "weight": 1 } }, { "key": "10433", "source": "225", "target": "52", "attributes": { "weight": 1 } }, { "key": "10443", "source": "225", "target": "471", "attributes": { "weight": 2 } }, { "key": "10446", "source": "225", "target": "473", "attributes": { "weight": 2 } }, { "key": "10422", "source": "225", "target": "38", "attributes": { "weight": 1 } }, { "key": "10435", "source": "225", "target": "359", "attributes": { "weight": 3 } }, { "key": "519", "source": "225", "target": "130", "attributes": { "weight": 4 } }, { "key": "17349", "source": "225", "target": "358", "attributes": { "weight": 1 } }, { "key": "527", "source": "225", "target": "232", "attributes": { "weight": 1 } }, { "key": "10413", "source": "225", "target": "59", "attributes": { "weight": 1 } }, { "key": "10429", "source": "225", "target": "134", "attributes": { "weight": 1 } }, { "key": "10423", "source": "225", "target": "39", "attributes": { "weight": 1 } }, { "key": "10474", "source": "225", "target": "154", "attributes": { "weight": 1 } }, { "key": "521", "source": "225", "target": "222", "attributes": { "weight": 2 } }, { "key": "10421", "source": "225", "target": "132", "attributes": { "weight": 1 } }, { "key": "10468", "source": "225", "target": "492", "attributes": { "weight": 1 } }, { "key": "523", "source": "225", "target": "226", "attributes": { "weight": 1 } }, { "key": "10473", "source": "225", "target": "1375", "attributes": { "weight": 2 } }, { "key": "10426", "source": "225", "target": "452", "attributes": { "weight": 2 } }, { "key": "525", "source": "225", "target": "228", "attributes": { "weight": 3 } }, { "key": "10475", "source": "225", "target": "57", "attributes": { "weight": 1 } }, { "key": "10441", "source": "225", "target": "470", "attributes": { "weight": 2 } }, { "key": "522", "source": "225", "target": "223", "attributes": { "weight": 3 } }, { "key": "10459", "source": "225", "target": "1710", "attributes": { "weight": 1 } }, { "key": "10445", "source": "225", "target": "189", "attributes": { "weight": 1 } }, { "key": "10417", "source": "225", "target": "36", "attributes": { "weight": 1 } }, { "key": "19812", "source": "226", "target": "441", "attributes": { "weight": 1 } }, { "key": "35897", "source": "226", "target": "1026", "attributes": { "weight": 1 } }, { "key": "19813", "source": "226", "target": "2189", "attributes": { "weight": 1 } }, { "key": "530", "source": "226", "target": "225", "attributes": { "weight": 1 } }, { "key": "19811", "source": "226", "target": "1756", "attributes": { "weight": 1 } }, { "key": "20013", "source": "227", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20011", "source": "227", "target": "130", "attributes": { "weight": 3 } }, { "key": "20014", "source": "227", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20022", "source": "227", "target": "480", "attributes": { "weight": 1 } }, { "key": "20015", "source": "227", "target": "1531", "attributes": { "weight": 1 } }, { "key": "20012", "source": "227", "target": "221", "attributes": { "weight": 1 } }, { "key": "10487", "source": "227", "target": "1125", "attributes": { "weight": 1 } }, { "key": "10486", "source": "227", "target": "225", "attributes": { "weight": 1 } }, { "key": "20020", "source": "227", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20023", "source": "227", "target": "489", "attributes": { "weight": 1 } }, { "key": "20016", "source": "227", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20017", "source": "227", "target": "2249", "attributes": { "weight": 1 } }, { "key": "20019", "source": "227", "target": "1087", "attributes": { "weight": 1 } }, { "key": "20018", "source": "227", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20021", "source": "227", "target": "1088", "attributes": { "weight": 1 } }, { "key": "531", "source": "227", "target": "229", "attributes": { "weight": 1 } }, { "key": "26621", "source": "228", "target": "189", "attributes": { "weight": 1 } }, { "key": "24102", "source": "228", "target": "429", "attributes": { "weight": 2 } }, { "key": "9298", "source": "228", "target": "1576", "attributes": { "weight": 1 } }, { "key": "32169", "source": "228", "target": "3087", "attributes": { "weight": 1 } }, { "key": "4166", "source": "228", "target": "1130", "attributes": { "weight": 1 } }, { "key": "8859", "source": "228", "target": "474", "attributes": { "weight": 2 } }, { "key": "32773", "source": "228", "target": "458", "attributes": { "weight": 1 } }, { "key": "10509", "source": "228", "target": "482", "attributes": { "weight": 3 } }, { "key": "4161", "source": "228", "target": "473", "attributes": { "weight": 3 } }, { "key": "32140", "source": "228", "target": "1123", "attributes": { "weight": 1 } }, { "key": "4148", "source": "228", "target": "222", "attributes": { "weight": 2 } }, { "key": "33541", "source": "228", "target": "450", "attributes": { "weight": 1 } }, { "key": "33543", "source": "228", "target": "489", "attributes": { "weight": 1 } }, { "key": "24106", "source": "228", "target": "1374", "attributes": { "weight": 3 } }, { "key": "9302", "source": "228", "target": "1597", "attributes": { "weight": 1 } }, { "key": "8853", "source": "228", "target": "1107", "attributes": { "weight": 4 } }, { "key": "4159", "source": "228", "target": "229", "attributes": { "weight": 1 } }, { "key": "33540", "source": "228", "target": "1703", "attributes": { "weight": 1 } }, { "key": "9294", "source": "228", "target": "1571", "attributes": { "weight": 1 } }, { "key": "8854", "source": "228", "target": "220", "attributes": { "weight": 2 } }, { "key": "9971", "source": "228", "target": "445", "attributes": { "weight": 2 } }, { "key": "32774", "source": "228", "target": "1744", "attributes": { "weight": 2 } }, { "key": "8858", "source": "228", "target": "1367", "attributes": { "weight": 2 } }, { "key": "17486", "source": "228", "target": "358", "attributes": { "weight": 1 } }, { "key": "8856", "source": "228", "target": "436", "attributes": { "weight": 3 } }, { "key": "24105", "source": "228", "target": "231", "attributes": { "weight": 2 } }, { "key": "8861", "source": "228", "target": "233", "attributes": { "weight": 3 } }, { "key": "4156", "source": "228", "target": "1118", "attributes": { "weight": 2 } }, { "key": "4149", "source": "228", "target": "50", "attributes": { "weight": 2 } }, { "key": "4147", "source": "228", "target": "1110", "attributes": { "weight": 1 } }, { "key": "17262", "source": "228", "target": "449", "attributes": { "weight": 1 } }, { "key": "1503", "source": "228", "target": "183", "attributes": { "weight": 1 } }, { "key": "4151", "source": "228", "target": "1112", "attributes": { "weight": 1 } }, { "key": "4165", "source": "228", "target": "1128", "attributes": { "weight": 1 } }, { "key": "8857", "source": "228", "target": "442", "attributes": { "weight": 2 } }, { "key": "4160", "source": "228", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9297", "source": "228", "target": "1574", "attributes": { "weight": 1 } }, { "key": "33544", "source": "228", "target": "672", "attributes": { "weight": 1 } }, { "key": "32775", "source": "228", "target": "1708", "attributes": { "weight": 1 } }, { "key": "27276", "source": "228", "target": "57", "attributes": { "weight": 1 } }, { "key": "4164", "source": "228", "target": "479", "attributes": { "weight": 2 } }, { "key": "4168", "source": "228", "target": "494", "attributes": { "weight": 3 } }, { "key": "9296", "source": "228", "target": "1573", "attributes": { "weight": 1 } }, { "key": "4146", "source": "228", "target": "1109", "attributes": { "weight": 2 } }, { "key": "4157", "source": "228", "target": "1121", "attributes": { "weight": 1 } }, { "key": "4163", "source": "228", "target": "1127", "attributes": { "weight": 2 } }, { "key": "32917", "source": "228", "target": "470", "attributes": { "weight": 2 } }, { "key": "5496", "source": "228", "target": "468", "attributes": { "weight": 2 } }, { "key": "4155", "source": "228", "target": "1116", "attributes": { "weight": 2 } }, { "key": "4152", "source": "228", "target": "1113", "attributes": { "weight": 1 } }, { "key": "13844", "source": "228", "target": "1546", "attributes": { "weight": 1 } }, { "key": "8855", "source": "228", "target": "435", "attributes": { "weight": 2 } }, { "key": "8860", "source": "228", "target": "1125", "attributes": { "weight": 1 } }, { "key": "12400", "source": "228", "target": "1845", "attributes": { "weight": 3 } }, { "key": "4006", "source": "228", "target": "432", "attributes": { "weight": 3 } }, { "key": "24104", "source": "228", "target": "471", "attributes": { "weight": 2 } }, { "key": "32969", "source": "228", "target": "154", "attributes": { "weight": 1 } }, { "key": "4154", "source": "228", "target": "452", "attributes": { "weight": 4 } }, { "key": "37070", "source": "228", "target": "857", "attributes": { "weight": 1 } }, { "key": "8862", "source": "228", "target": "495", "attributes": { "weight": 2 } }, { "key": "12399", "source": "228", "target": "1355", "attributes": { "weight": 2 } }, { "key": "9295", "source": "228", "target": "430", "attributes": { "weight": 2 } }, { "key": "12401", "source": "228", "target": "493", "attributes": { "weight": 3 } }, { "key": "9301", "source": "228", "target": "1593", "attributes": { "weight": 2 } }, { "key": "4150", "source": "228", "target": "223", "attributes": { "weight": 4 } }, { "key": "9299", "source": "228", "target": "1579", "attributes": { "weight": 2 } }, { "key": "32560", "source": "228", "target": "791", "attributes": { "weight": 1 } }, { "key": "9300", "source": "228", "target": "1592", "attributes": { "weight": 2 } }, { "key": "17940", "source": "228", "target": "454", "attributes": { "weight": 2 } }, { "key": "4162", "source": "228", "target": "1088", "attributes": { "weight": 2 } }, { "key": "29131", "source": "228", "target": "488", "attributes": { "weight": 1 } }, { "key": "24103", "source": "228", "target": "130", "attributes": { "weight": 3 } }, { "key": "4153", "source": "228", "target": "1115", "attributes": { "weight": 1 } }, { "key": "33542", "source": "228", "target": "135", "attributes": { "weight": 1 } }, { "key": "534", "source": "228", "target": "225", "attributes": { "weight": 3 } }, { "key": "4167", "source": "228", "target": "1131", "attributes": { "weight": 1 } }, { "key": "20525", "source": "229", "target": "2253", "attributes": { "weight": 1 } }, { "key": "33566", "source": "229", "target": "135", "attributes": { "weight": 1 } }, { "key": "35310", "source": "229", "target": "1107", "attributes": { "weight": 1 } }, { "key": "536", "source": "229", "target": "227", "attributes": { "weight": 1 } }, { "key": "20526", "source": "229", "target": "1247", "attributes": { "weight": 1 } }, { "key": "8890", "source": "229", "target": "452", "attributes": { "weight": 2 } }, { "key": "8891", "source": "229", "target": "1125", "attributes": { "weight": 1 } }, { "key": "33567", "source": "229", "target": "2258", "attributes": { "weight": 1 } }, { "key": "535", "source": "229", "target": "225", "attributes": { "weight": 1 } }, { "key": "26630", "source": "229", "target": "454", "attributes": { "weight": 1 } }, { "key": "1508", "source": "229", "target": "183", "attributes": { "weight": 1 } }, { "key": "33565", "source": "229", "target": "425", "attributes": { "weight": 1 } }, { "key": "537", "source": "229", "target": "230", "attributes": { "weight": 1 } }, { "key": "8889", "source": "229", "target": "442", "attributes": { "weight": 2 } }, { "key": "23639", "source": "229", "target": "1312", "attributes": { "weight": 1 } }, { "key": "4173", "source": "229", "target": "1131", "attributes": { "weight": 2 } }, { "key": "4171", "source": "229", "target": "228", "attributes": { "weight": 1 } }, { "key": "4172", "source": "229", "target": "1088", "attributes": { "weight": 2 } }, { "key": "20524", "source": "229", "target": "2245", "attributes": { "weight": 1 } }, { "key": "4170", "source": "229", "target": "1121", "attributes": { "weight": 1 } }, { "key": "538", "source": "230", "target": "220", "attributes": { "weight": 2 } }, { "key": "20566", "source": "230", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20567", "source": "230", "target": "2245", "attributes": { "weight": 1 } }, { "key": "542", "source": "230", "target": "229", "attributes": { "weight": 1 } }, { "key": "543", "source": "230", "target": "231", "attributes": { "weight": 1 } }, { "key": "20569", "source": "230", "target": "1087", "attributes": { "weight": 1 } }, { "key": "20568", "source": "230", "target": "2253", "attributes": { "weight": 1 } }, { "key": "10520", "source": "230", "target": "225", "attributes": { "weight": 1 } }, { "key": "10521", "source": "230", "target": "454", "attributes": { "weight": 1 } }, { "key": "541", "source": "230", "target": "224", "attributes": { "weight": 2 } }, { "key": "540", "source": "230", "target": "223", "attributes": { "weight": 2 } }, { "key": "539", "source": "230", "target": "130", "attributes": { "weight": 4 } }, { "key": "35213", "source": "231", "target": "2278", "attributes": { "weight": 1 } }, { "key": "20750", "source": "231", "target": "435", "attributes": { "weight": 5 } }, { "key": "32829", "source": "231", "target": "1831", "attributes": { "weight": 2 } }, { "key": "7004", "source": "231", "target": "192", "attributes": { "weight": 2 } }, { "key": "20764", "source": "231", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20768", "source": "231", "target": "2254", "attributes": { "weight": 1 } }, { "key": "20778", "source": "231", "target": "2269", "attributes": { "weight": 1 } }, { "key": "6991", "source": "231", "target": "454", "attributes": { "weight": 4 } }, { "key": "12029", "source": "231", "target": "468", "attributes": { "weight": 2 } }, { "key": "20748", "source": "231", "target": "1808", "attributes": { "weight": 1 } }, { "key": "27162", "source": "231", "target": "1282", "attributes": { "weight": 4 } }, { "key": "31548", "source": "231", "target": "3058", "attributes": { "weight": 1 } }, { "key": "20753", "source": "231", "target": "2106", "attributes": { "weight": 2 } }, { "key": "27161", "source": "231", "target": "1219", "attributes": { "weight": 4 } }, { "key": "23650", "source": "231", "target": "1312", "attributes": { "weight": 1 } }, { "key": "33631", "source": "231", "target": "473", "attributes": { "weight": 1 } }, { "key": "24208", "source": "231", "target": "228", "attributes": { "weight": 2 } }, { "key": "7002", "source": "231", "target": "1372", "attributes": { "weight": 1 } }, { "key": "20781", "source": "231", "target": "2271", "attributes": { "weight": 1 } }, { "key": "37019", "source": "231", "target": "3341", "attributes": { "weight": 1 } }, { "key": "27160", "source": "231", "target": "2105", "attributes": { "weight": 1 } }, { "key": "6997", "source": "231", "target": "1365", "attributes": { "weight": 2 } }, { "key": "7006", "source": "231", "target": "1375", "attributes": { "weight": 5 } }, { "key": "16977", "source": "231", "target": "434", "attributes": { "weight": 1 } }, { "key": "32830", "source": "231", "target": "2258", "attributes": { "weight": 3 } }, { "key": "16976", "source": "231", "target": "59", "attributes": { "weight": 2 } }, { "key": "6994", "source": "231", "target": "1361", "attributes": { "weight": 2 } }, { "key": "6992", "source": "231", "target": "187", "attributes": { "weight": 2 } }, { "key": "6996", "source": "231", "target": "467", "attributes": { "weight": 2 } }, { "key": "18327", "source": "231", "target": "1092", "attributes": { "weight": 1 } }, { "key": "28948", "source": "231", "target": "479", "attributes": { "weight": 2 } }, { "key": "27159", "source": "231", "target": "2645", "attributes": { "weight": 2 } }, { "key": "20755", "source": "231", "target": "223", "attributes": { "weight": 4 } }, { "key": "20760", "source": "231", "target": "450", "attributes": { "weight": 4 } }, { "key": "27289", "source": "231", "target": "52", "attributes": { "weight": 2 } }, { "key": "23649", "source": "231", "target": "220", "attributes": { "weight": 3 } }, { "key": "12303", "source": "231", "target": "1535", "attributes": { "weight": 3 } }, { "key": "20775", "source": "231", "target": "2262", "attributes": { "weight": 1 } }, { "key": "6989", "source": "231", "target": "453", "attributes": { "weight": 2 } }, { "key": "544", "source": "231", "target": "230", "attributes": { "weight": 1 } }, { "key": "6987", "source": "231", "target": "451", "attributes": { "weight": 1 } }, { "key": "20757", "source": "231", "target": "1023", "attributes": { "weight": 1 } }, { "key": "7007", "source": "231", "target": "499", "attributes": { "weight": 1 } }, { "key": "24209", "source": "231", "target": "2470", "attributes": { "weight": 2 } }, { "key": "7005", "source": "231", "target": "495", "attributes": { "weight": 3 } }, { "key": "20771", "source": "231", "target": "1836", "attributes": { "weight": 2 } }, { "key": "24205", "source": "231", "target": "3", "attributes": { "weight": 2 } }, { "key": "20767", "source": "231", "target": "2253", "attributes": { "weight": 1 } }, { "key": "6985", "source": "231", "target": "674", "attributes": { "weight": 3 } }, { "key": "31354", "source": "231", "target": "1118", "attributes": { "weight": 1 } }, { "key": "20749", "source": "231", "target": "221", "attributes": { "weight": 1 } }, { "key": "20758", "source": "231", "target": "2244", "attributes": { "weight": 1 } }, { "key": "23366", "source": "231", "target": "1545", "attributes": { "weight": 1 } }, { "key": "17299", "source": "231", "target": "1161", "attributes": { "weight": 1 } }, { "key": "16979", "source": "231", "target": "135", "attributes": { "weight": 6 } }, { "key": "6998", "source": "231", "target": "1366", "attributes": { "weight": 2 } }, { "key": "7000", "source": "231", "target": "476", "attributes": { "weight": 2 } }, { "key": "6999", "source": "231", "target": "189", "attributes": { "weight": 4 } }, { "key": "20759", "source": "231", "target": "2245", "attributes": { "weight": 1 } }, { "key": "6981", "source": "231", "target": "1354", "attributes": { "weight": 3 } }, { "key": "20784", "source": "231", "target": "2276", "attributes": { "weight": 1 } }, { "key": "31549", "source": "231", "target": "3059", "attributes": { "weight": 1 } }, { "key": "26369", "source": "231", "target": "1258", "attributes": { "weight": 1 } }, { "key": "20782", "source": "231", "target": "2111", "attributes": { "weight": 1 } }, { "key": "20765", "source": "231", "target": "2252", "attributes": { "weight": 2 } }, { "key": "1532", "source": "231", "target": "448", "attributes": { "weight": 3 } }, { "key": "9354", "source": "231", "target": "430", "attributes": { "weight": 1 } }, { "key": "20780", "source": "231", "target": "2109", "attributes": { "weight": 2 } }, { "key": "11252", "source": "231", "target": "471", "attributes": { "weight": 4 } }, { "key": "32828", "source": "231", "target": "446", "attributes": { "weight": 1 } }, { "key": "20762", "source": "231", "target": "1832", "attributes": { "weight": 5 } }, { "key": "1534", "source": "231", "target": "455", "attributes": { "weight": 4 } }, { "key": "12304", "source": "231", "target": "1564", "attributes": { "weight": 1 } }, { "key": "20779", "source": "231", "target": "2095", "attributes": { "weight": 1 } }, { "key": "16975", "source": "231", "target": "1754", "attributes": { "weight": 1 } }, { "key": "12028", "source": "231", "target": "1363", "attributes": { "weight": 2 } }, { "key": "6993", "source": "231", "target": "459", "attributes": { "weight": 2 } }, { "key": "24206", "source": "231", "target": "1810", "attributes": { "weight": 3 } }, { "key": "6988", "source": "231", "target": "185", "attributes": { "weight": 2 } }, { "key": "6986", "source": "231", "target": "182", "attributes": { "weight": 1 } }, { "key": "24204", "source": "231", "target": "50", "attributes": { "weight": 3 } }, { "key": "20777", "source": "231", "target": "2267", "attributes": { "weight": 1 } }, { "key": "1537", "source": "231", "target": "193", "attributes": { "weight": 2 } }, { "key": "6980", "source": "231", "target": "429", "attributes": { "weight": 4 } }, { "key": "11251", "source": "231", "target": "130", "attributes": { "weight": 6 } }, { "key": "20763", "source": "231", "target": "186", "attributes": { "weight": 2 } }, { "key": "24207", "source": "231", "target": "2467", "attributes": { "weight": 1 } }, { "key": "20756", "source": "231", "target": "2025", "attributes": { "weight": 1 } }, { "key": "6983", "source": "231", "target": "438", "attributes": { "weight": 3 } }, { "key": "20769", "source": "231", "target": "1247", "attributes": { "weight": 4 } }, { "key": "15350", "source": "231", "target": "472", "attributes": { "weight": 8 } }, { "key": "7001", "source": "231", "target": "1369", "attributes": { "weight": 2 } }, { "key": "20773", "source": "231", "target": "2260", "attributes": { "weight": 1 } }, { "key": "6982", "source": "231", "target": "437", "attributes": { "weight": 4 } }, { "key": "24210", "source": "231", "target": "233", "attributes": { "weight": 2 } }, { "key": "20754", "source": "231", "target": "51", "attributes": { "weight": 4 } }, { "key": "20766", "source": "231", "target": "1998", "attributes": { "weight": 1 } }, { "key": "35331", "source": "231", "target": "1088", "attributes": { "weight": 1 } }, { "key": "23367", "source": "231", "target": "2444", "attributes": { "weight": 1 } }, { "key": "6990", "source": "231", "target": "1356", "attributes": { "weight": 1 } }, { "key": "20752", "source": "231", "target": "222", "attributes": { "weight": 1 } }, { "key": "16981", "source": "231", "target": "73", "attributes": { "weight": 1 } }, { "key": "32094", "source": "231", "target": "3084", "attributes": { "weight": 1 } }, { "key": "6995", "source": "231", "target": "1364", "attributes": { "weight": 1 } }, { "key": "16980", "source": "231", "target": "70", "attributes": { "weight": 2 } }, { "key": "15351", "source": "231", "target": "672", "attributes": { "weight": 2 } }, { "key": "7003", "source": "231", "target": "1374", "attributes": { "weight": 4 } }, { "key": "17301", "source": "231", "target": "2108", "attributes": { "weight": 2 } }, { "key": "31550", "source": "231", "target": "485", "attributes": { "weight": 1 } }, { "key": "17300", "source": "231", "target": "449", "attributes": { "weight": 2 } }, { "key": "20770", "source": "231", "target": "2255", "attributes": { "weight": 1 } }, { "key": "6984", "source": "231", "target": "425", "attributes": { "weight": 3 } }, { "key": "1536", "source": "231", "target": "490", "attributes": { "weight": 4 } }, { "key": "7008", "source": "231", "target": "57", "attributes": { "weight": 2 } }, { "key": "20761", "source": "231", "target": "2248", "attributes": { "weight": 2 } }, { "key": "1535", "source": "231", "target": "188", "attributes": { "weight": 4 } }, { "key": "1533", "source": "231", "target": "183", "attributes": { "weight": 5 } }, { "key": "20751", "source": "231", "target": "1522", "attributes": { "weight": 1 } }, { "key": "16978", "source": "231", "target": "457", "attributes": { "weight": 1 } }, { "key": "20776", "source": "231", "target": "1744", "attributes": { "weight": 1 } }, { "key": "1531", "source": "231", "target": "224", "attributes": { "weight": 5 } }, { "key": "20783", "source": "231", "target": "489", "attributes": { "weight": 3 } }, { "key": "9019", "source": "231", "target": "1125", "attributes": { "weight": 4 } }, { "key": "20772", "source": "231", "target": "1087", "attributes": { "weight": 3 } }, { "key": "33632", "source": "231", "target": "2110", "attributes": { "weight": 1 } }, { "key": "20774", "source": "231", "target": "2261", "attributes": { "weight": 1 } }, { "key": "32593", "source": "232", "target": "223", "attributes": { "weight": 1 } }, { "key": "29484", "source": "232", "target": "2287", "attributes": { "weight": 1 } }, { "key": "29493", "source": "232", "target": "2864", "attributes": { "weight": 2 } }, { "key": "29455", "source": "232", "target": "424", "attributes": { "weight": 3 } }, { "key": "29476", "source": "232", "target": "2211", "attributes": { "weight": 2 } }, { "key": "29511", "source": "232", "target": "495", "attributes": { "weight": 2 } }, { "key": "29478", "source": "232", "target": "452", "attributes": { "weight": 1 } }, { "key": "29452", "source": "232", "target": "59", "attributes": { "weight": 1 } }, { "key": "29500", "source": "232", "target": "1026", "attributes": { "weight": 1 } }, { "key": "37121", "source": "232", "target": "359", "attributes": { "weight": 1 } }, { "key": "29480", "source": "232", "target": "789", "attributes": { "weight": 1 } }, { "key": "24762", "source": "232", "target": "1056", "attributes": { "weight": 4 } }, { "key": "29453", "source": "232", "target": "2856", "attributes": { "weight": 2 } }, { "key": "29459", "source": "232", "target": "221", "attributes": { "weight": 1 } }, { "key": "25952", "source": "232", "target": "1367", "attributes": { "weight": 2 } }, { "key": "29468", "source": "232", "target": "2858", "attributes": { "weight": 1 } }, { "key": "29474", "source": "232", "target": "2860", "attributes": { "weight": 1 } }, { "key": "29497", "source": "232", "target": "2867", "attributes": { "weight": 1 } }, { "key": "29505", "source": "232", "target": "673", "attributes": { "weight": 2 } }, { "key": "29908", "source": "232", "target": "1024", "attributes": { "weight": 2 } }, { "key": "29451", "source": "232", "target": "787", "attributes": { "weight": 1 } }, { "key": "7027", "source": "232", "target": "183", "attributes": { "weight": 3 } }, { "key": "12723", "source": "232", "target": "695", "attributes": { "weight": 1 } }, { "key": "29481", "source": "232", "target": "864", "attributes": { "weight": 1 } }, { "key": "37123", "source": "232", "target": "1060", "attributes": { "weight": 1 } }, { "key": "7030", "source": "232", "target": "672", "attributes": { "weight": 2 } }, { "key": "23685", "source": "232", "target": "220", "attributes": { "weight": 3 } }, { "key": "25387", "source": "232", "target": "433", "attributes": { "weight": 2 } }, { "key": "23686", "source": "232", "target": "2248", "attributes": { "weight": 1 } }, { "key": "29501", "source": "232", "target": "427", "attributes": { "weight": 1 } }, { "key": "29491", "source": "232", "target": "471", "attributes": { "weight": 1 } }, { "key": "29507", "source": "232", "target": "340", "attributes": { "weight": 2 } }, { "key": "29460", "source": "232", "target": "858", "attributes": { "weight": 2 } }, { "key": "29496", "source": "232", "target": "2866", "attributes": { "weight": 1 } }, { "key": "24697", "source": "232", "target": "5", "attributes": { "weight": 2 } }, { "key": "29492", "source": "232", "target": "867", "attributes": { "weight": 1 } }, { "key": "29512", "source": "232", "target": "57", "attributes": { "weight": 1 } }, { "key": "29475", "source": "232", "target": "862", "attributes": { "weight": 2 } }, { "key": "32595", "source": "232", "target": "3101", "attributes": { "weight": 1 } }, { "key": "23687", "source": "232", "target": "1312", "attributes": { "weight": 1 } }, { "key": "29502", "source": "232", "target": "486", "attributes": { "weight": 2 } }, { "key": "29490", "source": "232", "target": "2647", "attributes": { "weight": 1 } }, { "key": "29483", "source": "232", "target": "866", "attributes": { "weight": 2 } }, { "key": "29499", "source": "232", "target": "1125", "attributes": { "weight": 2 } }, { "key": "29470", "source": "232", "target": "2122", "attributes": { "weight": 1 } }, { "key": "1562", "source": "232", "target": "193", "attributes": { "weight": 1 } }, { "key": "29489", "source": "232", "target": "2863", "attributes": { "weight": 2 } }, { "key": "29486", "source": "232", "target": "790", "attributes": { "weight": 2 } }, { "key": "1559", "source": "232", "target": "455", "attributes": { "weight": 1 } }, { "key": "29464", "source": "232", "target": "2245", "attributes": { "weight": 1 } }, { "key": "29482", "source": "232", "target": "865", "attributes": { "weight": 1 } }, { "key": "29473", "source": "232", "target": "2859", "attributes": { "weight": 1 } }, { "key": "7029", "source": "232", "target": "476", "attributes": { "weight": 2 } }, { "key": "29458", "source": "232", "target": "1520", "attributes": { "weight": 1 } }, { "key": "29509", "source": "232", "target": "2868", "attributes": { "weight": 2 } }, { "key": "29508", "source": "232", "target": "869", "attributes": { "weight": 2 } }, { "key": "32596", "source": "232", "target": "135", "attributes": { "weight": 1 } }, { "key": "29465", "source": "232", "target": "859", "attributes": { "weight": 2 } }, { "key": "29469", "source": "232", "target": "1046", "attributes": { "weight": 1 } }, { "key": "36094", "source": "232", "target": "440", "attributes": { "weight": 1 } }, { "key": "545", "source": "232", "target": "225", "attributes": { "weight": 1 } }, { "key": "29504", "source": "232", "target": "489", "attributes": { "weight": 1 } }, { "key": "29477", "source": "232", "target": "863", "attributes": { "weight": 2 } }, { "key": "29495", "source": "232", "target": "2865", "attributes": { "weight": 1 } }, { "key": "29488", "source": "232", "target": "682", "attributes": { "weight": 1 } }, { "key": "32598", "source": "232", "target": "3022", "attributes": { "weight": 1 } }, { "key": "29485", "source": "232", "target": "2861", "attributes": { "weight": 2 } }, { "key": "29456", "source": "232", "target": "2857", "attributes": { "weight": 1 } }, { "key": "22309", "source": "232", "target": "794", "attributes": { "weight": 1 } }, { "key": "29479", "source": "232", "target": "454", "attributes": { "weight": 2 } }, { "key": "29462", "source": "232", "target": "425", "attributes": { "weight": 1 } }, { "key": "29457", "source": "232", "target": "130", "attributes": { "weight": 1 } }, { "key": "29487", "source": "232", "target": "2862", "attributes": { "weight": 1 } }, { "key": "7028", "source": "232", "target": "189", "attributes": { "weight": 3 } }, { "key": "32592", "source": "232", "target": "1", "attributes": { "weight": 1 } }, { "key": "29449", "source": "232", "target": "856", "attributes": { "weight": 2 } }, { "key": "29503", "source": "232", "target": "428", "attributes": { "weight": 1 } }, { "key": "29450", "source": "232", "target": "857", "attributes": { "weight": 3 } }, { "key": "37122", "source": "232", "target": "2115", "attributes": { "weight": 1 } }, { "key": "32594", "source": "232", "target": "442", "attributes": { "weight": 1 } }, { "key": "29498", "source": "232", "target": "2505", "attributes": { "weight": 1 } }, { "key": "1560", "source": "232", "target": "188", "attributes": { "weight": 1 } }, { "key": "29461", "source": "232", "target": "222", "attributes": { "weight": 1 } }, { "key": "29454", "source": "232", "target": "432", "attributes": { "weight": 1 } }, { "key": "29463", "source": "232", "target": "674", "attributes": { "weight": 1 } }, { "key": "29467", "source": "232", "target": "3", "attributes": { "weight": 1 } }, { "key": "29494", "source": "232", "target": "1087", "attributes": { "weight": 1 } }, { "key": "29471", "source": "232", "target": "1531", "attributes": { "weight": 1 } }, { "key": "2811", "source": "232", "target": "9", "attributes": { "weight": 1 } }, { "key": "29472", "source": "232", "target": "861", "attributes": { "weight": 2 } }, { "key": "1561", "source": "232", "target": "490", "attributes": { "weight": 3 } }, { "key": "21600", "source": "232", "target": "358", "attributes": { "weight": 2 } }, { "key": "1558", "source": "232", "target": "448", "attributes": { "weight": 2 } }, { "key": "29506", "source": "232", "target": "1093", "attributes": { "weight": 1 } }, { "key": "32597", "source": "232", "target": "473", "attributes": { "weight": 1 } }, { "key": "29466", "source": "232", "target": "860", "attributes": { "weight": 1 } }, { "key": "29510", "source": "232", "target": "2869", "attributes": { "weight": 2 } }, { "key": "1557", "source": "232", "target": "224", "attributes": { "weight": 3 } }, { "key": "32148", "source": "233", "target": "3086", "attributes": { "weight": 1 } }, { "key": "31558", "source": "233", "target": "51", "attributes": { "weight": 2 } }, { "key": "9104", "source": "233", "target": "1107", "attributes": { "weight": 3 } }, { "key": "12535", "source": "233", "target": "438", "attributes": { "weight": 1 } }, { "key": "9114", "source": "233", "target": "1131", "attributes": { "weight": 1 } }, { "key": "9111", "source": "233", "target": "1125", "attributes": { "weight": 2 } }, { "key": "24253", "source": "233", "target": "231", "attributes": { "weight": 2 } }, { "key": "9115", "source": "233", "target": "494", "attributes": { "weight": 2 } }, { "key": "18120", "source": "233", "target": "52", "attributes": { "weight": 2 } }, { "key": "32984", "source": "233", "target": "154", "attributes": { "weight": 1 } }, { "key": "27182", "source": "233", "target": "472", "attributes": { "weight": 1 } }, { "key": "17979", "source": "233", "target": "454", "attributes": { "weight": 2 } }, { "key": "9105", "source": "233", "target": "220", "attributes": { "weight": 2 } }, { "key": "9110", "source": "233", "target": "1367", "attributes": { "weight": 1 } }, { "key": "4230", "source": "233", "target": "474", "attributes": { "weight": 2 } }, { "key": "4228", "source": "233", "target": "1121", "attributes": { "weight": 2 } }, { "key": "1631", "source": "233", "target": "188", "attributes": { "weight": 2 } }, { "key": "32183", "source": "233", "target": "473", "attributes": { "weight": 1 } }, { "key": "4231", "source": "233", "target": "1088", "attributes": { "weight": 2 } }, { "key": "9107", "source": "233", "target": "442", "attributes": { "weight": 4 } }, { "key": "9112", "source": "233", "target": "482", "attributes": { "weight": 3 } }, { "key": "9368", "source": "233", "target": "430", "attributes": { "weight": 2 } }, { "key": "9369", "source": "233", "target": "1592", "attributes": { "weight": 2 } }, { "key": "33725", "source": "233", "target": "425", "attributes": { "weight": 1 } }, { "key": "546", "source": "233", "target": "225", "attributes": { "weight": 3 } }, { "key": "9106", "source": "233", "target": "432", "attributes": { "weight": 1 } }, { "key": "4232", "source": "233", "target": "1130", "attributes": { "weight": 1 } }, { "key": "4229", "source": "233", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9109", "source": "233", "target": "228", "attributes": { "weight": 3 } }, { "key": "31432", "source": "233", "target": "223", "attributes": { "weight": 2 } }, { "key": "33724", "source": "233", "target": "436", "attributes": { "weight": 2 } }, { "key": "24250", "source": "233", "target": "429", "attributes": { "weight": 2 } }, { "key": "9113", "source": "233", "target": "1374", "attributes": { "weight": 2 } }, { "key": "33077", "source": "233", "target": "493", "attributes": { "weight": 1 } }, { "key": "9108", "source": "233", "target": "452", "attributes": { "weight": 3 } }, { "key": "32936", "source": "233", "target": "470", "attributes": { "weight": 1 } }, { "key": "32613", "source": "233", "target": "791", "attributes": { "weight": 1 } }, { "key": "24252", "source": "233", "target": "471", "attributes": { "weight": 1 } }, { "key": "24251", "source": "233", "target": "130", "attributes": { "weight": 2 } }, { "key": "17319", "source": "233", "target": "449", "attributes": { "weight": 1 } }, { "key": "33726", "source": "233", "target": "135", "attributes": { "weight": 1 } }, { "key": "31559", "source": "233", "target": "3057", "attributes": { "weight": 1 } }, { "key": "6454", "source": "233", "target": "468", "attributes": { "weight": 2 } }, { "key": "32182", "source": "233", "target": "1115", "attributes": { "weight": 1 } }, { "key": "31560", "source": "233", "target": "3061", "attributes": { "weight": 1 } }, { "key": "26765", "source": "233", "target": "189", "attributes": { "weight": 1 } }, { "key": "21233", "source": "234", "target": "1023", "attributes": { "weight": 1 } }, { "key": "32938", "source": "234", "target": "470", "attributes": { "weight": 1 } }, { "key": "547", "source": "234", "target": "220", "attributes": { "weight": 2 } }, { "key": "548", "source": "234", "target": "130", "attributes": { "weight": 4 } }, { "key": "550", "source": "234", "target": "135", "attributes": { "weight": 1 } }, { "key": "21235", "source": "234", "target": "1087", "attributes": { "weight": 1 } }, { "key": "549", "source": "234", "target": "223", "attributes": { "weight": 2 } }, { "key": "10572", "source": "234", "target": "468", "attributes": { "weight": 1 } }, { "key": "10573", "source": "234", "target": "471", "attributes": { "weight": 3 } }, { "key": "21234", "source": "234", "target": "2245", "attributes": { "weight": 1 } }, { "key": "10574", "source": "234", "target": "1125", "attributes": { "weight": 1 } }, { "key": "10571", "source": "234", "target": "225", "attributes": { "weight": 1 } }, { "key": "21284", "source": "235", "target": "1522", "attributes": { "weight": 1 } }, { "key": "21308", "source": "235", "target": "1375", "attributes": { "weight": 1 } }, { "key": "21302", "source": "235", "target": "2262", "attributes": { "weight": 1 } }, { "key": "21297", "source": "235", "target": "1832", "attributes": { "weight": 1 } }, { "key": "21299", "source": "235", "target": "1247", "attributes": { "weight": 1 } }, { "key": "36147", "source": "235", "target": "479", "attributes": { "weight": 1 } }, { "key": "21290", "source": "235", "target": "1023", "attributes": { "weight": 1 } }, { "key": "36149", "source": "235", "target": "1778", "attributes": { "weight": 1 } }, { "key": "21281", "source": "235", "target": "1756", "attributes": { "weight": 1 } }, { "key": "21292", "source": "235", "target": "1070", "attributes": { "weight": 1 } }, { "key": "21289", "source": "235", "target": "440", "attributes": { "weight": 1 } }, { "key": "21298", "source": "235", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21303", "source": "235", "target": "477", "attributes": { "weight": 1 } }, { "key": "21307", "source": "235", "target": "2189", "attributes": { "weight": 1 } }, { "key": "21300", "source": "235", "target": "1367", "attributes": { "weight": 1 } }, { "key": "36144", "source": "235", "target": "1760", "attributes": { "weight": 1 } }, { "key": "21288", "source": "235", "target": "223", "attributes": { "weight": 1 } }, { "key": "36941", "source": "235", "target": "2647", "attributes": { "weight": 1 } }, { "key": "21286", "source": "235", "target": "439", "attributes": { "weight": 1 } }, { "key": "21287", "source": "235", "target": "51", "attributes": { "weight": 1 } }, { "key": "551", "source": "235", "target": "225", "attributes": { "weight": 1 } }, { "key": "21294", "source": "235", "target": "445", "attributes": { "weight": 1 } }, { "key": "36146", "source": "235", "target": "1026", "attributes": { "weight": 1 } }, { "key": "21306", "source": "235", "target": "491", "attributes": { "weight": 1 } }, { "key": "36145", "source": "235", "target": "1025", "attributes": { "weight": 1 } }, { "key": "21295", "source": "235", "target": "449", "attributes": { "weight": 1 } }, { "key": "21296", "source": "235", "target": "2248", "attributes": { "weight": 1 } }, { "key": "21301", "source": "235", "target": "2261", "attributes": { "weight": 1 } }, { "key": "36148", "source": "235", "target": "428", "attributes": { "weight": 1 } }, { "key": "21280", "source": "235", "target": "429", "attributes": { "weight": 1 } }, { "key": "21282", "source": "235", "target": "130", "attributes": { "weight": 1 } }, { "key": "21293", "source": "235", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21285", "source": "235", "target": "438", "attributes": { "weight": 1 } }, { "key": "36940", "source": "235", "target": "1072", "attributes": { "weight": 1 } }, { "key": "21304", "source": "235", "target": "2095", "attributes": { "weight": 1 } }, { "key": "21291", "source": "235", "target": "441", "attributes": { "weight": 1 } }, { "key": "21305", "source": "235", "target": "489", "attributes": { "weight": 1 } }, { "key": "21283", "source": "235", "target": "49", "attributes": { "weight": 1 } }, { "key": "14013", "source": "236", "target": "1031", "attributes": { "weight": 1 } }, { "key": "4303", "source": "236", "target": "779", "attributes": { "weight": 2 } }, { "key": "2663", "source": "236", "target": "786", "attributes": { "weight": 2 } }, { "key": "25848", "source": "236", "target": "237", "attributes": { "weight": 1 } }, { "key": "33863", "source": "236", "target": "1047", "attributes": { "weight": 1 } }, { "key": "552", "source": "236", "target": "239", "attributes": { "weight": 1 } }, { "key": "18561", "source": "236", "target": "208", "attributes": { "weight": 1 } }, { "key": "11428", "source": "236", "target": "938", "attributes": { "weight": 1 } }, { "key": "33864", "source": "236", "target": "1232", "attributes": { "weight": 1 } }, { "key": "11429", "source": "236", "target": "370", "attributes": { "weight": 2 } }, { "key": "15503", "source": "236", "target": "921", "attributes": { "weight": 1 } }, { "key": "29008", "source": "236", "target": "220", "attributes": { "weight": 1 } }, { "key": "28543", "source": "236", "target": "199", "attributes": { "weight": 1 } }, { "key": "2661", "source": "236", "target": "781", "attributes": { "weight": 1 } }, { "key": "2659", "source": "236", "target": "778", "attributes": { "weight": 6 } }, { "key": "553", "source": "236", "target": "240", "attributes": { "weight": 2 } }, { "key": "2662", "source": "236", "target": "371", "attributes": { "weight": 5 } }, { "key": "18560", "source": "236", "target": "1174", "attributes": { "weight": 1 } }, { "key": "28241", "source": "236", "target": "2731", "attributes": { "weight": 1 } }, { "key": "2660", "source": "236", "target": "238", "attributes": { "weight": 2 } }, { "key": "29994", "source": "236", "target": "784", "attributes": { "weight": 1 } }, { "key": "7210", "source": "236", "target": "1063", "attributes": { "weight": 2 } }, { "key": "10588", "source": "236", "target": "43", "attributes": { "weight": 2 } }, { "key": "15502", "source": "236", "target": "195", "attributes": { "weight": 3 } }, { "key": "4304", "source": "236", "target": "1090", "attributes": { "weight": 2 } }, { "key": "2664", "source": "237", "target": "236", "attributes": { "weight": 1 } }, { "key": "15543", "source": "237", "target": "195", "attributes": { "weight": 1 } }, { "key": "33895", "source": "237", "target": "1233", "attributes": { "weight": 1 } }, { "key": "33894", "source": "237", "target": "1047", "attributes": { "weight": 1 } }, { "key": "554", "source": "237", "target": "238", "attributes": { "weight": 4 } }, { "key": "25849", "source": "237", "target": "220", "attributes": { "weight": 2 } }, { "key": "14028", "source": "238", "target": "1031", "attributes": { "weight": 1 } }, { "key": "2675", "source": "238", "target": "240", "attributes": { "weight": 1 } }, { "key": "10663", "source": "238", "target": "43", "attributes": { "weight": 1 } }, { "key": "555", "source": "238", "target": "236", "attributes": { "weight": 3 } }, { "key": "2681", "source": "238", "target": "786", "attributes": { "weight": 1 } }, { "key": "2670", "source": "238", "target": "777", "attributes": { "weight": 1 } }, { "key": "2676", "source": "238", "target": "782", "attributes": { "weight": 1 } }, { "key": "2677", "source": "238", "target": "371", "attributes": { "weight": 3 } }, { "key": "25855", "source": "238", "target": "220", "attributes": { "weight": 2 } }, { "key": "2680", "source": "238", "target": "257", "attributes": { "weight": 1 } }, { "key": "2673", "source": "238", "target": "780", "attributes": { "weight": 1 } }, { "key": "2674", "source": "238", "target": "239", "attributes": { "weight": 1 } }, { "key": "2672", "source": "238", "target": "779", "attributes": { "weight": 1 } }, { "key": "580", "source": "238", "target": "254", "attributes": { "weight": 3 } }, { "key": "6656", "source": "238", "target": "183", "attributes": { "weight": 1 } }, { "key": "2679", "source": "238", "target": "785", "attributes": { "weight": 3 } }, { "key": "2671", "source": "238", "target": "778", "attributes": { "weight": 2 } }, { "key": "2678", "source": "238", "target": "784", "attributes": { "weight": 1 } }, { "key": "2669", "source": "238", "target": "237", "attributes": { "weight": 3 } }, { "key": "556", "source": "239", "target": "236", "attributes": { "weight": 1 } }, { "key": "2684", "source": "239", "target": "238", "attributes": { "weight": 1 } }, { "key": "30641", "source": "239", "target": "778", "attributes": { "weight": 2 } }, { "key": "35244", "source": "240", "target": "1030", "attributes": { "weight": 1 } }, { "key": "5512", "source": "240", "target": "371", "attributes": { "weight": 1 } }, { "key": "14048", "source": "240", "target": "1031", "attributes": { "weight": 1 } }, { "key": "557", "source": "240", "target": "236", "attributes": { "weight": 2 } }, { "key": "3652", "source": "240", "target": "786", "attributes": { "weight": 2 } }, { "key": "35243", "source": "240", "target": "3189", "attributes": { "weight": 1 } }, { "key": "3651", "source": "240", "target": "778", "attributes": { "weight": 5 } }, { "key": "2685", "source": "240", "target": "238", "attributes": { "weight": 1 } }, { "key": "23736", "source": "241", "target": "8", "attributes": { "weight": 2 } }, { "key": "560", "source": "241", "target": "3", "attributes": { "weight": 3 } }, { "key": "23737", "source": "241", "target": "1774", "attributes": { "weight": 1 } }, { "key": "30882", "source": "242", "target": "13", "attributes": { "weight": 1 } }, { "key": "571", "source": "242", "target": "3", "attributes": { "weight": 2 } }, { "key": "23749", "source": "242", "target": "7", "attributes": { "weight": 1 } }, { "key": "23751", "source": "242", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23750", "source": "242", "target": "8", "attributes": { "weight": 1 } }, { "key": "30580", "source": "242", "target": "682", "attributes": { "weight": 1 } }, { "key": "23762", "source": "243", "target": "8", "attributes": { "weight": 2 } }, { "key": "23763", "source": "243", "target": "1774", "attributes": { "weight": 1 } }, { "key": "572", "source": "243", "target": "3", "attributes": { "weight": 2 } }, { "key": "33806", "source": "244", "target": "681", "attributes": { "weight": 1 } }, { "key": "23783", "source": "244", "target": "8", "attributes": { "weight": 2 } }, { "key": "23784", "source": "244", "target": "13", "attributes": { "weight": 1 } }, { "key": "33804", "source": "244", "target": "2", "attributes": { "weight": 1 } }, { "key": "23786", "source": "244", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23785", "source": "244", "target": "14", "attributes": { "weight": 2 } }, { "key": "33807", "source": "244", "target": "682", "attributes": { "weight": 1 } }, { "key": "33805", "source": "244", "target": "2646", "attributes": { "weight": 1 } }, { "key": "574", "source": "244", "target": "3", "attributes": { "weight": 2 } }, { "key": "23789", "source": "245", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23788", "source": "245", "target": "8", "attributes": { "weight": 2 } }, { "key": "575", "source": "245", "target": "3", "attributes": { "weight": 3 } }, { "key": "23798", "source": "246", "target": "1774", "attributes": { "weight": 1 } }, { "key": "33816", "source": "246", "target": "681", "attributes": { "weight": 1 } }, { "key": "23796", "source": "246", "target": "7", "attributes": { "weight": 1 } }, { "key": "23797", "source": "246", "target": "8", "attributes": { "weight": 2 } }, { "key": "576", "source": "246", "target": "3", "attributes": { "weight": 2 } }, { "key": "33817", "source": "246", "target": "14", "attributes": { "weight": 1 } }, { "key": "37331", "source": "247", "target": "135", "attributes": { "weight": 1 } }, { "key": "577", "source": "247", "target": "3", "attributes": { "weight": 5 } }, { "key": "37330", "source": "247", "target": "442", "attributes": { "weight": 1 } }, { "key": "25393", "source": "247", "target": "433", "attributes": { "weight": 2 } }, { "key": "23374", "source": "247", "target": "223", "attributes": { "weight": 1 } }, { "key": "33830", "source": "247", "target": "8", "attributes": { "weight": 1 } }, { "key": "26799", "source": "248", "target": "961", "attributes": { "weight": 1 } }, { "key": "26801", "source": "248", "target": "257", "attributes": { "weight": 1 } }, { "key": "35562", "source": "248", "target": "1347", "attributes": { "weight": 1 } }, { "key": "26798", "source": "248", "target": "254", "attributes": { "weight": 1 } }, { "key": "4288", "source": "248", "target": "370", "attributes": { "weight": 2 } }, { "key": "26796", "source": "248", "target": "935", "attributes": { "weight": 1 } }, { "key": "1952", "source": "248", "target": "589", "attributes": { "weight": 1 } }, { "key": "4289", "source": "248", "target": "371", "attributes": { "weight": 2 } }, { "key": "578", "source": "248", "target": "252", "attributes": { "weight": 2 } }, { "key": "11830", "source": "248", "target": "135", "attributes": { "weight": 3 } }, { "key": "7207", "source": "248", "target": "1063", "attributes": { "weight": 2 } }, { "key": "11832", "source": "248", "target": "1328", "attributes": { "weight": 3 } }, { "key": "29916", "source": "248", "target": "253", "attributes": { "weight": 2 } }, { "key": "33857", "source": "248", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4287", "source": "248", "target": "779", "attributes": { "weight": 2 } }, { "key": "11831", "source": "248", "target": "372", "attributes": { "weight": 2 } }, { "key": "26800", "source": "248", "target": "256", "attributes": { "weight": 1 } }, { "key": "12801", "source": "248", "target": "1158", "attributes": { "weight": 2 } }, { "key": "11833", "source": "248", "target": "1814", "attributes": { "weight": 2 } }, { "key": "26797", "source": "248", "target": "250", "attributes": { "weight": 1 } }, { "key": "12802", "source": "248", "target": "780", "attributes": { "weight": 1 } }, { "key": "15211", "source": "248", "target": "454", "attributes": { "weight": 1 } }, { "key": "579", "source": "249", "target": "251", "attributes": { "weight": 2 } }, { "key": "29998", "source": "249", "target": "784", "attributes": { "weight": 1 } }, { "key": "8495", "source": "249", "target": "1125", "attributes": { "weight": 3 } }, { "key": "29997", "source": "249", "target": "1437", "attributes": { "weight": 1 } }, { "key": "581", "source": "250", "target": "252", "attributes": { "weight": 3 } }, { "key": "37308", "source": "250", "target": "963", "attributes": { "weight": 1 } }, { "key": "26812", "source": "250", "target": "2650", "attributes": { "weight": 1 } }, { "key": "37089", "source": "250", "target": "941", "attributes": { "weight": 2 } }, { "key": "26811", "source": "250", "target": "1158", "attributes": { "weight": 1 } }, { "key": "4942", "source": "250", "target": "961", "attributes": { "weight": 4 } }, { "key": "582", "source": "250", "target": "257", "attributes": { "weight": 4 } }, { "key": "26810", "source": "250", "target": "248", "attributes": { "weight": 1 } }, { "key": "8729", "source": "251", "target": "1125", "attributes": { "weight": 3 } }, { "key": "31129", "source": "251", "target": "442", "attributes": { "weight": 1 } }, { "key": "5011", "source": "251", "target": "371", "attributes": { "weight": 2 } }, { "key": "7280", "source": "251", "target": "154", "attributes": { "weight": 1 } }, { "key": "583", "source": "251", "target": "249", "attributes": { "weight": 2 } }, { "key": "586", "source": "251", "target": "256", "attributes": { "weight": 4 } }, { "key": "585", "source": "251", "target": "254", "attributes": { "weight": 2 } }, { "key": "584", "source": "251", "target": "252", "attributes": { "weight": 4 } }, { "key": "26814", "source": "251", "target": "1158", "attributes": { "weight": 1 } }, { "key": "5012", "source": "251", "target": "961", "attributes": { "weight": 2 } }, { "key": "14140", "source": "251", "target": "392", "attributes": { "weight": 1 } }, { "key": "6190", "source": "252", "target": "371", "attributes": { "weight": 2 } }, { "key": "7382", "source": "252", "target": "154", "attributes": { "weight": 1 } }, { "key": "6191", "source": "252", "target": "961", "attributes": { "weight": 2 } }, { "key": "591", "source": "252", "target": "254", "attributes": { "weight": 3 } }, { "key": "589", "source": "252", "target": "251", "attributes": { "weight": 5 } }, { "key": "590", "source": "252", "target": "253", "attributes": { "weight": 2 } }, { "key": "592", "source": "252", "target": "255", "attributes": { "weight": 3 } }, { "key": "9025", "source": "252", "target": "783", "attributes": { "weight": 2 } }, { "key": "593", "source": "252", "target": "257", "attributes": { "weight": 1 } }, { "key": "587", "source": "252", "target": "248", "attributes": { "weight": 2 } }, { "key": "588", "source": "252", "target": "250", "attributes": { "weight": 3 } }, { "key": "9024", "source": "252", "target": "1125", "attributes": { "weight": 3 } }, { "key": "36446", "source": "253", "target": "3313", "attributes": { "weight": 1 } }, { "key": "594", "source": "253", "target": "252", "attributes": { "weight": 2 } }, { "key": "29919", "source": "253", "target": "257", "attributes": { "weight": 3 } }, { "key": "32285", "source": "253", "target": "961", "attributes": { "weight": 1 } }, { "key": "32286", "source": "253", "target": "963", "attributes": { "weight": 1 } }, { "key": "29918", "source": "253", "target": "255", "attributes": { "weight": 1 } }, { "key": "29917", "source": "253", "target": "248", "attributes": { "weight": 2 } }, { "key": "6302", "source": "254", "target": "1090", "attributes": { "weight": 2 } }, { "key": "596", "source": "254", "target": "257", "attributes": { "weight": 3 } }, { "key": "6301", "source": "254", "target": "371", "attributes": { "weight": 4 } }, { "key": "14163", "source": "254", "target": "392", "attributes": { "weight": 1 } }, { "key": "11682", "source": "254", "target": "199", "attributes": { "weight": 2 } }, { "key": "11683", "source": "254", "target": "370", "attributes": { "weight": 2 } }, { "key": "34729", "source": "254", "target": "1047", "attributes": { "weight": 1 } }, { "key": "14121", "source": "254", "target": "1031", "attributes": { "weight": 2 } }, { "key": "25454", "source": "254", "target": "990", "attributes": { "weight": 1 } }, { "key": "15363", "source": "254", "target": "407", "attributes": { "weight": 1 } }, { "key": "2694", "source": "254", "target": "238", "attributes": { "weight": 2 } }, { "key": "10772", "source": "254", "target": "30", "attributes": { "weight": 1 } }, { "key": "16263", "source": "254", "target": "108", "attributes": { "weight": 2 } }, { "key": "16262", "source": "254", "target": "195", "attributes": { "weight": 1 } }, { "key": "25453", "source": "254", "target": "780", "attributes": { "weight": 1 } }, { "key": "35216", "source": "254", "target": "471", "attributes": { "weight": 1 } }, { "key": "26819", "source": "254", "target": "248", "attributes": { "weight": 1 } }, { "key": "16264", "source": "254", "target": "109", "attributes": { "weight": 2 } }, { "key": "11681", "source": "254", "target": "938", "attributes": { "weight": 1 } }, { "key": "11685", "source": "254", "target": "961", "attributes": { "weight": 2 } }, { "key": "15362", "source": "254", "target": "454", "attributes": { "weight": 1 } }, { "key": "33130", "source": "254", "target": "1125", "attributes": { "weight": 1 } }, { "key": "9059", "source": "254", "target": "442", "attributes": { "weight": 2 } }, { "key": "11684", "source": "254", "target": "208", "attributes": { "weight": 3 } }, { "key": "10771", "source": "254", "target": "43", "attributes": { "weight": 1 } }, { "key": "14164", "source": "254", "target": "1891", "attributes": { "weight": 1 } }, { "key": "595", "source": "254", "target": "252", "attributes": { "weight": 3 } }, { "key": "597", "source": "255", "target": "252", "attributes": { "weight": 3 } }, { "key": "29920", "source": "255", "target": "253", "attributes": { "weight": 1 } }, { "key": "26824", "source": "256", "target": "250", "attributes": { "weight": 1 } }, { "key": "26823", "source": "256", "target": "1158", "attributes": { "weight": 1 } }, { "key": "26822", "source": "256", "target": "248", "attributes": { "weight": 1 } }, { "key": "12838", "source": "256", "target": "785", "attributes": { "weight": 2 } }, { "key": "26825", "source": "256", "target": "2650", "attributes": { "weight": 1 } }, { "key": "598", "source": "256", "target": "251", "attributes": { "weight": 5 } }, { "key": "14124", "source": "257", "target": "1031", "attributes": { "weight": 1 } }, { "key": "36772", "source": "257", "target": "1063", "attributes": { "weight": 1 } }, { "key": "34814", "source": "257", "target": "123", "attributes": { "weight": 1 } }, { "key": "29921", "source": "257", "target": "253", "attributes": { "weight": 3 } }, { "key": "36447", "source": "257", "target": "3312", "attributes": { "weight": 1 } }, { "key": "34813", "source": "257", "target": "1232", "attributes": { "weight": 1 } }, { "key": "30035", "source": "257", "target": "935", "attributes": { "weight": 2 } }, { "key": "6427", "source": "257", "target": "779", "attributes": { "weight": 2 } }, { "key": "12840", "source": "257", "target": "780", "attributes": { "weight": 1 } }, { "key": "16369", "source": "257", "target": "195", "attributes": { "weight": 1 } }, { "key": "2696", "source": "257", "target": "783", "attributes": { "weight": 1 } }, { "key": "9101", "source": "257", "target": "442", "attributes": { "weight": 2 } }, { "key": "31488", "source": "257", "target": "1125", "attributes": { "weight": 2 } }, { "key": "11721", "source": "257", "target": "938", "attributes": { "weight": 1 } }, { "key": "599", "source": "257", "target": "250", "attributes": { "weight": 5 } }, { "key": "36448", "source": "257", "target": "589", "attributes": { "weight": 1 } }, { "key": "36449", "source": "257", "target": "3313", "attributes": { "weight": 1 } }, { "key": "600", "source": "257", "target": "252", "attributes": { "weight": 1 } }, { "key": "26837", "source": "257", "target": "963", "attributes": { "weight": 2 } }, { "key": "26833", "source": "257", "target": "248", "attributes": { "weight": 1 } }, { "key": "26835", "source": "257", "target": "1328", "attributes": { "weight": 2 } }, { "key": "34812", "source": "257", "target": "1047", "attributes": { "weight": 1 } }, { "key": "6428", "source": "257", "target": "370", "attributes": { "weight": 4 } }, { "key": "26834", "source": "257", "target": "941", "attributes": { "weight": 4 } }, { "key": "601", "source": "257", "target": "254", "attributes": { "weight": 3 } }, { "key": "11722", "source": "257", "target": "961", "attributes": { "weight": 3 } }, { "key": "28607", "source": "257", "target": "199", "attributes": { "weight": 1 } }, { "key": "12839", "source": "257", "target": "1158", "attributes": { "weight": 1 } }, { "key": "26836", "source": "257", "target": "256", "attributes": { "weight": 1 } }, { "key": "26838", "source": "257", "target": "964", "attributes": { "weight": 1 } }, { "key": "2695", "source": "257", "target": "238", "attributes": { "weight": 2 } }, { "key": "6429", "source": "257", "target": "371", "attributes": { "weight": 2 } }, { "key": "6430", "source": "257", "target": "1090", "attributes": { "weight": 2 } }, { "key": "602", "source": "258", "target": "326", "attributes": { "weight": 1 } }, { "key": "14336", "source": "258", "target": "262", "attributes": { "weight": 2 } }, { "key": "14339", "source": "258", "target": "308", "attributes": { "weight": 1 } }, { "key": "22183", "source": "258", "target": "290", "attributes": { "weight": 1 } }, { "key": "17986", "source": "258", "target": "264", "attributes": { "weight": 1 } }, { "key": "14334", "source": "258", "target": "259", "attributes": { "weight": 1 } }, { "key": "22885", "source": "258", "target": "166", "attributes": { "weight": 1 } }, { "key": "14338", "source": "258", "target": "287", "attributes": { "weight": 2 } }, { "key": "12888", "source": "258", "target": "304", "attributes": { "weight": 2 } }, { "key": "22886", "source": "258", "target": "906", "attributes": { "weight": 1 } }, { "key": "14337", "source": "258", "target": "263", "attributes": { "weight": 1 } }, { "key": "23268", "source": "258", "target": "305", "attributes": { "weight": 2 } }, { "key": "12887", "source": "258", "target": "167", "attributes": { "weight": 2 } }, { "key": "23269", "source": "258", "target": "312", "attributes": { "weight": 1 } }, { "key": "14335", "source": "258", "target": "260", "attributes": { "weight": 1 } }, { "key": "14409", "source": "259", "target": "175", "attributes": { "weight": 2 } }, { "key": "23407", "source": "259", "target": "2310", "attributes": { "weight": 1 } }, { "key": "14389", "source": "259", "target": "361", "attributes": { "weight": 1 } }, { "key": "23406", "source": "259", "target": "2309", "attributes": { "weight": 1 } }, { "key": "14417", "source": "259", "target": "318", "attributes": { "weight": 3 } }, { "key": "603", "source": "259", "target": "262", "attributes": { "weight": 8 } }, { "key": "12921", "source": "259", "target": "304", "attributes": { "weight": 4 } }, { "key": "27902", "source": "259", "target": "902", "attributes": { "weight": 1 } }, { "key": "14381", "source": "259", "target": "278", "attributes": { "weight": 3 } }, { "key": "14388", "source": "259", "target": "288", "attributes": { "weight": 1 } }, { "key": "14402", "source": "259", "target": "1985", "attributes": { "weight": 1 } }, { "key": "9570", "source": "259", "target": "564", "attributes": { "weight": 1 } }, { "key": "14403", "source": "259", "target": "163", "attributes": { "weight": 2 } }, { "key": "14179", "source": "259", "target": "168", "attributes": { "weight": 3 } }, { "key": "14423", "source": "259", "target": "1515", "attributes": { "weight": 1 } }, { "key": "14355", "source": "259", "target": "1972", "attributes": { "weight": 1 } }, { "key": "14386", "source": "259", "target": "1977", "attributes": { "weight": 1 } }, { "key": "14413", "source": "259", "target": "310", "attributes": { "weight": 1 } }, { "key": "14395", "source": "259", "target": "906", "attributes": { "weight": 1 } }, { "key": "2967", "source": "259", "target": "176", "attributes": { "weight": 2 } }, { "key": "14397", "source": "259", "target": "1918", "attributes": { "weight": 1 } }, { "key": "8491", "source": "259", "target": "167", "attributes": { "weight": 12 } }, { "key": "14370", "source": "259", "target": "572", "attributes": { "weight": 1 } }, { "key": "14366", "source": "259", "target": "1857", "attributes": { "weight": 2 } }, { "key": "14367", "source": "259", "target": "419", "attributes": { "weight": 1 } }, { "key": "14408", "source": "259", "target": "174", "attributes": { "weight": 1 } }, { "key": "14411", "source": "259", "target": "595", "attributes": { "weight": 2 } }, { "key": "14378", "source": "259", "target": "1847", "attributes": { "weight": 1 } }, { "key": "14368", "source": "259", "target": "837", "attributes": { "weight": 1 } }, { "key": "12932", "source": "259", "target": "1931", "attributes": { "weight": 2 } }, { "key": "14377", "source": "259", "target": "274", "attributes": { "weight": 1 } }, { "key": "14404", "source": "259", "target": "299", "attributes": { "weight": 3 } }, { "key": "14401", "source": "259", "target": "1510", "attributes": { "weight": 1 } }, { "key": "12919", "source": "259", "target": "580", "attributes": { "weight": 6 } }, { "key": "14365", "source": "259", "target": "357", "attributes": { "weight": 1 } }, { "key": "23409", "source": "259", "target": "2449", "attributes": { "weight": 1 } }, { "key": "14393", "source": "259", "target": "291", "attributes": { "weight": 2 } }, { "key": "12899", "source": "259", "target": "261", "attributes": { "weight": 3 } }, { "key": "14375", "source": "259", "target": "698", "attributes": { "weight": 1 } }, { "key": "12926", "source": "259", "target": "1928", "attributes": { "weight": 2 } }, { "key": "12914", "source": "259", "target": "289", "attributes": { "weight": 4 } }, { "key": "14371", "source": "259", "target": "358", "attributes": { "weight": 2 } }, { "key": "14405", "source": "259", "target": "1987", "attributes": { "weight": 1 } }, { "key": "14394", "source": "259", "target": "1982", "attributes": { "weight": 1 } }, { "key": "14410", "source": "259", "target": "177", "attributes": { "weight": 2 } }, { "key": "12895", "source": "259", "target": "1380", "attributes": { "weight": 3 } }, { "key": "14419", "source": "259", "target": "1929", "attributes": { "weight": 1 } }, { "key": "14374", "source": "259", "target": "1903", "attributes": { "weight": 1 } }, { "key": "14391", "source": "259", "target": "338", "attributes": { "weight": 2 } }, { "key": "12924", "source": "259", "target": "314", "attributes": { "weight": 5 } }, { "key": "12903", "source": "259", "target": "166", "attributes": { "weight": 5 } }, { "key": "18355", "source": "259", "target": "1621", "attributes": { "weight": 2 } }, { "key": "14420", "source": "259", "target": "329", "attributes": { "weight": 1 } }, { "key": "12915", "source": "259", "target": "295", "attributes": { "weight": 2 } }, { "key": "8493", "source": "259", "target": "178", "attributes": { "weight": 4 } }, { "key": "14361", "source": "259", "target": "567", "attributes": { "weight": 2 } }, { "key": "14385", "source": "259", "target": "1976", "attributes": { "weight": 1 } }, { "key": "14427", "source": "259", "target": "908", "attributes": { "weight": 1 } }, { "key": "14422", "source": "259", "target": "1933", "attributes": { "weight": 1 } }, { "key": "14372", "source": "259", "target": "271", "attributes": { "weight": 1 } }, { "key": "14379", "source": "259", "target": "169", "attributes": { "weight": 1 } }, { "key": "14353", "source": "259", "target": "220", "attributes": { "weight": 2 } }, { "key": "14426", "source": "259", "target": "334", "attributes": { "weight": 1 } }, { "key": "27903", "source": "259", "target": "293", "attributes": { "weight": 1 } }, { "key": "14363", "source": "259", "target": "830", "attributes": { "weight": 1 } }, { "key": "14356", "source": "259", "target": "1973", "attributes": { "weight": 1 } }, { "key": "14382", "source": "259", "target": "1913", "attributes": { "weight": 1 } }, { "key": "14384", "source": "259", "target": "1914", "attributes": { "weight": 1 } }, { "key": "12904", "source": "259", "target": "275", "attributes": { "weight": 4 } }, { "key": "24775", "source": "259", "target": "292", "attributes": { "weight": 2 } }, { "key": "14425", "source": "259", "target": "333", "attributes": { "weight": 1 } }, { "key": "14392", "source": "259", "target": "468", "attributes": { "weight": 1 } }, { "key": "11732", "source": "259", "target": "1513", "attributes": { "weight": 1 } }, { "key": "12933", "source": "259", "target": "1854", "attributes": { "weight": 3 } }, { "key": "14407", "source": "259", "target": "173", "attributes": { "weight": 1 } }, { "key": "14354", "source": "259", "target": "1971", "attributes": { "weight": 1 } }, { "key": "14364", "source": "259", "target": "263", "attributes": { "weight": 1 } }, { "key": "14376", "source": "259", "target": "574", "attributes": { "weight": 2 } }, { "key": "14357", "source": "259", "target": "258", "attributes": { "weight": 1 } }, { "key": "12908", "source": "259", "target": "791", "attributes": { "weight": 2 } }, { "key": "12911", "source": "259", "target": "284", "attributes": { "weight": 2 } }, { "key": "12930", "source": "259", "target": "327", "attributes": { "weight": 6 } }, { "key": "12896", "source": "259", "target": "836", "attributes": { "weight": 2 } }, { "key": "12922", "source": "259", "target": "305", "attributes": { "weight": 6 } }, { "key": "8492", "source": "259", "target": "307", "attributes": { "weight": 4 } }, { "key": "12901", "source": "259", "target": "1899", "attributes": { "weight": 2 } }, { "key": "14352", "source": "259", "target": "1146", "attributes": { "weight": 1 } }, { "key": "12929", "source": "259", "target": "326", "attributes": { "weight": 5 } }, { "key": "14418", "source": "259", "target": "319", "attributes": { "weight": 3 } }, { "key": "12897", "source": "259", "target": "339", "attributes": { "weight": 2 } }, { "key": "14351", "source": "259", "target": "1969", "attributes": { "weight": 1 } }, { "key": "29191", "source": "259", "target": "582", "attributes": { "weight": 1 } }, { "key": "12917", "source": "259", "target": "300", "attributes": { "weight": 6 } }, { "key": "12923", "source": "259", "target": "313", "attributes": { "weight": 5 } }, { "key": "604", "source": "259", "target": "264", "attributes": { "weight": 6 } }, { "key": "12566", "source": "259", "target": "905", "attributes": { "weight": 1 } }, { "key": "12931", "source": "259", "target": "330", "attributes": { "weight": 2 } }, { "key": "12414", "source": "259", "target": "316", "attributes": { "weight": 5 } }, { "key": "14398", "source": "259", "target": "297", "attributes": { "weight": 1 } }, { "key": "12898", "source": "259", "target": "260", "attributes": { "weight": 4 } }, { "key": "14359", "source": "259", "target": "1166", "attributes": { "weight": 1 } }, { "key": "12900", "source": "259", "target": "265", "attributes": { "weight": 3 } }, { "key": "14421", "source": "259", "target": "331", "attributes": { "weight": 2 } }, { "key": "12910", "source": "259", "target": "283", "attributes": { "weight": 4 } }, { "key": "12909", "source": "259", "target": "1912", "attributes": { "weight": 2 } }, { "key": "9571", "source": "259", "target": "171", "attributes": { "weight": 3 } }, { "key": "31851", "source": "259", "target": "1060", "attributes": { "weight": 1 } }, { "key": "14373", "source": "259", "target": "272", "attributes": { "weight": 3 } }, { "key": "14360", "source": "259", "target": "901", "attributes": { "weight": 1 } }, { "key": "25961", "source": "259", "target": "2622", "attributes": { "weight": 2 } }, { "key": "605", "source": "259", "target": "309", "attributes": { "weight": 1 } }, { "key": "12916", "source": "259", "target": "1919", "attributes": { "weight": 2 } }, { "key": "14369", "source": "259", "target": "268", "attributes": { "weight": 1 } }, { "key": "12928", "source": "259", "target": "324", "attributes": { "weight": 2 } }, { "key": "14414", "source": "259", "target": "311", "attributes": { "weight": 3 } }, { "key": "14415", "source": "259", "target": "1853", "attributes": { "weight": 1 } }, { "key": "14400", "source": "259", "target": "1611", "attributes": { "weight": 1 } }, { "key": "12907", "source": "259", "target": "1911", "attributes": { "weight": 3 } }, { "key": "14424", "source": "259", "target": "332", "attributes": { "weight": 1 } }, { "key": "14412", "source": "259", "target": "179", "attributes": { "weight": 1 } }, { "key": "8490", "source": "259", "target": "442", "attributes": { "weight": 2 } }, { "key": "8494", "source": "259", "target": "322", "attributes": { "weight": 5 } }, { "key": "14406", "source": "259", "target": "172", "attributes": { "weight": 1 } }, { "key": "14362", "source": "259", "target": "1898", "attributes": { "weight": 1 } }, { "key": "12902", "source": "259", "target": "1904", "attributes": { "weight": 2 } }, { "key": "12905", "source": "259", "target": "276", "attributes": { "weight": 5 } }, { "key": "12925", "source": "259", "target": "321", "attributes": { "weight": 6 } }, { "key": "35780", "source": "259", "target": "790", "attributes": { "weight": 1 } }, { "key": "31850", "source": "259", "target": "359", "attributes": { "weight": 1 } }, { "key": "14387", "source": "259", "target": "170", "attributes": { "weight": 2 } }, { "key": "3160", "source": "259", "target": "839", "attributes": { "weight": 7 } }, { "key": "12927", "source": "259", "target": "323", "attributes": { "weight": 4 } }, { "key": "14358", "source": "259", "target": "164", "attributes": { "weight": 6 } }, { "key": "12918", "source": "259", "target": "301", "attributes": { "weight": 3 } }, { "key": "14383", "source": "259", "target": "282", "attributes": { "weight": 1 } }, { "key": "12913", "source": "259", "target": "287", "attributes": { "weight": 5 } }, { "key": "14380", "source": "259", "target": "1975", "attributes": { "weight": 1 } }, { "key": "14396", "source": "259", "target": "1984", "attributes": { "weight": 1 } }, { "key": "14390", "source": "259", "target": "290", "attributes": { "weight": 1 } }, { "key": "12912", "source": "259", "target": "286", "attributes": { "weight": 5 } }, { "key": "30510", "source": "259", "target": "1642", "attributes": { "weight": 1 } }, { "key": "12567", "source": "259", "target": "180", "attributes": { "weight": 4 } }, { "key": "14416", "source": "259", "target": "1872", "attributes": { "weight": 1 } }, { "key": "1806", "source": "259", "target": "93", "attributes": { "weight": 3 } }, { "key": "30346", "source": "259", "target": "1046", "attributes": { "weight": 1 } }, { "key": "3161", "source": "259", "target": "308", "attributes": { "weight": 3 } }, { "key": "14399", "source": "259", "target": "298", "attributes": { "weight": 1 } }, { "key": "12906", "source": "259", "target": "277", "attributes": { "weight": 3 } }, { "key": "14449", "source": "260", "target": "332", "attributes": { "weight": 1 } }, { "key": "14437", "source": "260", "target": "270", "attributes": { "weight": 2 } }, { "key": "14447", "source": "260", "target": "321", "attributes": { "weight": 2 } }, { "key": "14436", "source": "260", "target": "697", "attributes": { "weight": 1 } }, { "key": "22891", "source": "260", "target": "275", "attributes": { "weight": 3 } }, { "key": "14435", "source": "260", "target": "164", "attributes": { "weight": 1 } }, { "key": "12945", "source": "260", "target": "307", "attributes": { "weight": 3 } }, { "key": "12949", "source": "260", "target": "316", "attributes": { "weight": 4 } }, { "key": "12937", "source": "260", "target": "166", "attributes": { "weight": 5 } }, { "key": "611", "source": "260", "target": "287", "attributes": { "weight": 7 } }, { "key": "12947", "source": "260", "target": "313", "attributes": { "weight": 5 } }, { "key": "14440", "source": "260", "target": "278", "attributes": { "weight": 2 } }, { "key": "609", "source": "260", "target": "167", "attributes": { "weight": 10 } }, { "key": "14433", "source": "260", "target": "836", "attributes": { "weight": 2 } }, { "key": "14443", "source": "260", "target": "305", "attributes": { "weight": 3 } }, { "key": "12946", "source": "260", "target": "312", "attributes": { "weight": 4 } }, { "key": "607", "source": "260", "target": "262", "attributes": { "weight": 6 } }, { "key": "14442", "source": "260", "target": "1987", "attributes": { "weight": 1 } }, { "key": "14445", "source": "260", "target": "311", "attributes": { "weight": 5 } }, { "key": "12941", "source": "260", "target": "578", "attributes": { "weight": 2 } }, { "key": "12938", "source": "260", "target": "289", "attributes": { "weight": 7 } }, { "key": "12936", "source": "260", "target": "268", "attributes": { "weight": 6 } }, { "key": "12935", "source": "260", "target": "259", "attributes": { "weight": 4 } }, { "key": "8193", "source": "260", "target": "1513", "attributes": { "weight": 1 } }, { "key": "12948", "source": "260", "target": "314", "attributes": { "weight": 2 } }, { "key": "8194", "source": "260", "target": "180", "attributes": { "weight": 3 } }, { "key": "2865", "source": "260", "target": "292", "attributes": { "weight": 1 } }, { "key": "14181", "source": "260", "target": "168", "attributes": { "weight": 3 } }, { "key": "22892", "source": "260", "target": "276", "attributes": { "weight": 1 } }, { "key": "14434", "source": "260", "target": "258", "attributes": { "weight": 1 } }, { "key": "12940", "source": "260", "target": "291", "attributes": { "weight": 4 } }, { "key": "12951", "source": "260", "target": "328", "attributes": { "weight": 5 } }, { "key": "12942", "source": "260", "target": "298", "attributes": { "weight": 2 } }, { "key": "12944", "source": "260", "target": "304", "attributes": { "weight": 3 } }, { "key": "14450", "source": "260", "target": "336", "attributes": { "weight": 2 } }, { "key": "22893", "source": "260", "target": "286", "attributes": { "weight": 1 } }, { "key": "14439", "source": "260", "target": "1908", "attributes": { "weight": 1 } }, { "key": "29791", "source": "260", "target": "283", "attributes": { "weight": 1 } }, { "key": "12939", "source": "260", "target": "290", "attributes": { "weight": 6 } }, { "key": "27907", "source": "260", "target": "300", "attributes": { "weight": 1 } }, { "key": "27906", "source": "260", "target": "299", "attributes": { "weight": 1 } }, { "key": "12570", "source": "260", "target": "905", "attributes": { "weight": 2 } }, { "key": "14444", "source": "260", "target": "839", "attributes": { "weight": 3 } }, { "key": "12950", "source": "260", "target": "327", "attributes": { "weight": 5 } }, { "key": "14448", "source": "260", "target": "1933", "attributes": { "weight": 1 } }, { "key": "606", "source": "260", "target": "261", "attributes": { "weight": 3 } }, { "key": "14438", "source": "260", "target": "272", "attributes": { "weight": 4 } }, { "key": "12943", "source": "260", "target": "301", "attributes": { "weight": 4 } }, { "key": "23410", "source": "260", "target": "1917", "attributes": { "weight": 1 } }, { "key": "610", "source": "260", "target": "277", "attributes": { "weight": 7 } }, { "key": "22894", "source": "260", "target": "179", "attributes": { "weight": 1 } }, { "key": "14446", "source": "260", "target": "320", "attributes": { "weight": 1 } }, { "key": "608", "source": "260", "target": "264", "attributes": { "weight": 5 } }, { "key": "612", "source": "260", "target": "319", "attributes": { "weight": 9 } }, { "key": "616", "source": "261", "target": "316", "attributes": { "weight": 2 } }, { "key": "14453", "source": "261", "target": "275", "attributes": { "weight": 1 } }, { "key": "14451", "source": "261", "target": "697", "attributes": { "weight": 1 } }, { "key": "615", "source": "261", "target": "314", "attributes": { "weight": 5 } }, { "key": "24776", "source": "261", "target": "272", "attributes": { "weight": 1 } }, { "key": "12955", "source": "261", "target": "304", "attributes": { "weight": 5 } }, { "key": "12952", "source": "261", "target": "259", "attributes": { "weight": 3 } }, { "key": "14455", "source": "261", "target": "167", "attributes": { "weight": 2 } }, { "key": "14458", "source": "261", "target": "1554", "attributes": { "weight": 1 } }, { "key": "14456", "source": "261", "target": "278", "attributes": { "weight": 2 } }, { "key": "12957", "source": "261", "target": "313", "attributes": { "weight": 5 } }, { "key": "14452", "source": "261", "target": "262", "attributes": { "weight": 1 } }, { "key": "3164", "source": "261", "target": "305", "attributes": { "weight": 5 } }, { "key": "12956", "source": "261", "target": "312", "attributes": { "weight": 2 } }, { "key": "14460", "source": "261", "target": "580", "attributes": { "weight": 1 } }, { "key": "14457", "source": "261", "target": "286", "attributes": { "weight": 1 } }, { "key": "614", "source": "261", "target": "300", "attributes": { "weight": 5 } }, { "key": "12953", "source": "261", "target": "264", "attributes": { "weight": 2 } }, { "key": "14459", "source": "261", "target": "299", "attributes": { "weight": 2 } }, { "key": "27908", "source": "261", "target": "326", "attributes": { "weight": 1 } }, { "key": "12958", "source": "261", "target": "322", "attributes": { "weight": 3 } }, { "key": "14463", "source": "261", "target": "1934", "attributes": { "weight": 1 } }, { "key": "14462", "source": "261", "target": "318", "attributes": { "weight": 1 } }, { "key": "24777", "source": "261", "target": "308", "attributes": { "weight": 1 } }, { "key": "14454", "source": "261", "target": "276", "attributes": { "weight": 1 } }, { "key": "613", "source": "261", "target": "260", "attributes": { "weight": 3 } }, { "key": "12959", "source": "261", "target": "1854", "attributes": { "weight": 3 } }, { "key": "14461", "source": "261", "target": "180", "attributes": { "weight": 1 } }, { "key": "12969", "source": "262", "target": "578", "attributes": { "weight": 2 } }, { "key": "19000", "source": "262", "target": "1872", "attributes": { "weight": 2 } }, { "key": "649", "source": "262", "target": "323", "attributes": { "weight": 4 } }, { "key": "634", "source": "262", "target": "300", "attributes": { "weight": 5 } }, { "key": "29792", "source": "262", "target": "275", "attributes": { "weight": 1 } }, { "key": "2866", "source": "262", "target": "329", "attributes": { "weight": 1 } }, { "key": "637", "source": "262", "target": "305", "attributes": { "weight": 7 } }, { "key": "625", "source": "262", "target": "167", "attributes": { "weight": 6 } }, { "key": "629", "source": "262", "target": "287", "attributes": { "weight": 9 } }, { "key": "648", "source": "262", "target": "322", "attributes": { "weight": 6 } }, { "key": "12974", "source": "262", "target": "332", "attributes": { "weight": 2 } }, { "key": "631", "source": "262", "target": "292", "attributes": { "weight": 7 } }, { "key": "630", "source": "262", "target": "291", "attributes": { "weight": 3 } }, { "key": "12966", "source": "262", "target": "284", "attributes": { "weight": 3 } }, { "key": "22193", "source": "262", "target": "274", "attributes": { "weight": 1 } }, { "key": "22196", "source": "262", "target": "1918", "attributes": { "weight": 1 } }, { "key": "11733", "source": "262", "target": "180", "attributes": { "weight": 2 } }, { "key": "31087", "source": "262", "target": "830", "attributes": { "weight": 1 } }, { "key": "652", "source": "262", "target": "331", "attributes": { "weight": 3 } }, { "key": "12964", "source": "262", "target": "168", "attributes": { "weight": 5 } }, { "key": "622", "source": "262", "target": "268", "attributes": { "weight": 1 } }, { "key": "624", "source": "262", "target": "166", "attributes": { "weight": 5 } }, { "key": "12967", "source": "262", "target": "289", "attributes": { "weight": 5 } }, { "key": "12965", "source": "262", "target": "278", "attributes": { "weight": 2 } }, { "key": "22190", "source": "262", "target": "1973", "attributes": { "weight": 1 } }, { "key": "27916", "source": "262", "target": "1991", "attributes": { "weight": 1 } }, { "key": "22186", "source": "262", "target": "1969", "attributes": { "weight": 1 } }, { "key": "646", "source": "262", "target": "318", "attributes": { "weight": 3 } }, { "key": "22197", "source": "262", "target": "1929", "attributes": { "weight": 1 } }, { "key": "626", "source": "262", "target": "169", "attributes": { "weight": 2 } }, { "key": "3166", "source": "262", "target": "906", "attributes": { "weight": 1 } }, { "key": "651", "source": "262", "target": "328", "attributes": { "weight": 7 } }, { "key": "14476", "source": "262", "target": "281", "attributes": { "weight": 1 } }, { "key": "12975", "source": "262", "target": "336", "attributes": { "weight": 3 } }, { "key": "628", "source": "262", "target": "286", "attributes": { "weight": 4 } }, { "key": "14474", "source": "262", "target": "261", "attributes": { "weight": 1 } }, { "key": "642", "source": "262", "target": "312", "attributes": { "weight": 6 } }, { "key": "22195", "source": "262", "target": "282", "attributes": { "weight": 1 } }, { "key": "647", "source": "262", "target": "319", "attributes": { "weight": 6 } }, { "key": "623", "source": "262", "target": "271", "attributes": { "weight": 2 } }, { "key": "12973", "source": "262", "target": "327", "attributes": { "weight": 5 } }, { "key": "14477", "source": "262", "target": "307", "attributes": { "weight": 1 } }, { "key": "650", "source": "262", "target": "326", "attributes": { "weight": 10 } }, { "key": "621", "source": "262", "target": "265", "attributes": { "weight": 2 } }, { "key": "641", "source": "262", "target": "311", "attributes": { "weight": 5 } }, { "key": "22189", "source": "262", "target": "1972", "attributes": { "weight": 1 } }, { "key": "3168", "source": "262", "target": "308", "attributes": { "weight": 4 } }, { "key": "13932", "source": "262", "target": "905", "attributes": { "weight": 1 } }, { "key": "29793", "source": "262", "target": "1917", "attributes": { "weight": 1 } }, { "key": "25964", "source": "262", "target": "2622", "attributes": { "weight": 2 } }, { "key": "12968", "source": "262", "target": "290", "attributes": { "weight": 6 } }, { "key": "14478", "source": "262", "target": "1931", "attributes": { "weight": 1 } }, { "key": "633", "source": "262", "target": "299", "attributes": { "weight": 3 } }, { "key": "22191", "source": "262", "target": "2310", "attributes": { "weight": 1 } }, { "key": "617", "source": "262", "target": "259", "attributes": { "weight": 8 } }, { "key": "26166", "source": "262", "target": "1911", "attributes": { "weight": 2 } }, { "key": "619", "source": "262", "target": "263", "attributes": { "weight": 6 } }, { "key": "14475", "source": "262", "target": "272", "attributes": { "weight": 3 } }, { "key": "22198", "source": "262", "target": "325", "attributes": { "weight": 1 } }, { "key": "12970", "source": "262", "target": "313", "attributes": { "weight": 3 } }, { "key": "30351", "source": "262", "target": "1046", "attributes": { "weight": 1 } }, { "key": "643", "source": "262", "target": "314", "attributes": { "weight": 5 } }, { "key": "645", "source": "262", "target": "316", "attributes": { "weight": 7 } }, { "key": "644", "source": "262", "target": "315", "attributes": { "weight": 2 } }, { "key": "640", "source": "262", "target": "310", "attributes": { "weight": 1 } }, { "key": "12971", "source": "262", "target": "321", "attributes": { "weight": 5 } }, { "key": "635", "source": "262", "target": "301", "attributes": { "weight": 4 } }, { "key": "638", "source": "262", "target": "306", "attributes": { "weight": 1 } }, { "key": "27915", "source": "262", "target": "276", "attributes": { "weight": 2 } }, { "key": "620", "source": "262", "target": "264", "attributes": { "weight": 1 } }, { "key": "636", "source": "262", "target": "304", "attributes": { "weight": 6 } }, { "key": "2836", "source": "262", "target": "164", "attributes": { "weight": 2 } }, { "key": "639", "source": "262", "target": "179", "attributes": { "weight": 1 } }, { "key": "22192", "source": "262", "target": "270", "attributes": { "weight": 1 } }, { "key": "618", "source": "262", "target": "260", "attributes": { "weight": 6 } }, { "key": "22187", "source": "262", "target": "2309", "attributes": { "weight": 1 } }, { "key": "22188", "source": "262", "target": "1971", "attributes": { "weight": 1 } }, { "key": "10809", "source": "262", "target": "457", "attributes": { "weight": 1 } }, { "key": "27669", "source": "262", "target": "178", "attributes": { "weight": 2 } }, { "key": "632", "source": "262", "target": "294", "attributes": { "weight": 8 } }, { "key": "14473", "source": "262", "target": "258", "attributes": { "weight": 2 } }, { "key": "23414", "source": "262", "target": "2448", "attributes": { "weight": 1 } }, { "key": "653", "source": "262", "target": "334", "attributes": { "weight": 1 } }, { "key": "22194", "source": "262", "target": "902", "attributes": { "weight": 1 } }, { "key": "18356", "source": "262", "target": "1621", "attributes": { "weight": 1 } }, { "key": "12972", "source": "262", "target": "1928", "attributes": { "weight": 2 } }, { "key": "3167", "source": "262", "target": "839", "attributes": { "weight": 7 } }, { "key": "14483", "source": "263", "target": "259", "attributes": { "weight": 1 } }, { "key": "12421", "source": "263", "target": "1851", "attributes": { "weight": 1 } }, { "key": "12420", "source": "263", "target": "1847", "attributes": { "weight": 2 } }, { "key": "14506", "source": "263", "target": "1931", "attributes": { "weight": 1 } }, { "key": "2867", "source": "263", "target": "292", "attributes": { "weight": 2 } }, { "key": "14499", "source": "263", "target": "308", "attributes": { "weight": 1 } }, { "key": "14494", "source": "263", "target": "1919", "attributes": { "weight": 2 } }, { "key": "27672", "source": "263", "target": "178", "attributes": { "weight": 2 } }, { "key": "12422", "source": "263", "target": "311", "attributes": { "weight": 5 } }, { "key": "14491", "source": "263", "target": "283", "attributes": { "weight": 3 } }, { "key": "14480", "source": "263", "target": "836", "attributes": { "weight": 1 } }, { "key": "8196", "source": "263", "target": "180", "attributes": { "weight": 4 } }, { "key": "12419", "source": "263", "target": "167", "attributes": { "weight": 5 } }, { "key": "659", "source": "263", "target": "321", "attributes": { "weight": 4 } }, { "key": "14485", "source": "263", "target": "268", "attributes": { "weight": 1 } }, { "key": "14493", "source": "263", "target": "291", "attributes": { "weight": 4 } }, { "key": "8195", "source": "263", "target": "905", "attributes": { "weight": 2 } }, { "key": "14492", "source": "263", "target": "289", "attributes": { "weight": 6 } }, { "key": "14481", "source": "263", "target": "258", "attributes": { "weight": 1 } }, { "key": "11734", "source": "263", "target": "1513", "attributes": { "weight": 1 } }, { "key": "2868", "source": "263", "target": "300", "attributes": { "weight": 6 } }, { "key": "12418", "source": "263", "target": "271", "attributes": { "weight": 2 } }, { "key": "12981", "source": "263", "target": "276", "attributes": { "weight": 3 } }, { "key": "25965", "source": "263", "target": "2622", "attributes": { "weight": 2 } }, { "key": "27921", "source": "263", "target": "1515", "attributes": { "weight": 1 } }, { "key": "655", "source": "263", "target": "264", "attributes": { "weight": 6 } }, { "key": "14484", "source": "263", "target": "265", "attributes": { "weight": 1 } }, { "key": "26168", "source": "263", "target": "1911", "attributes": { "weight": 2 } }, { "key": "12417", "source": "263", "target": "697", "attributes": { "weight": 2 } }, { "key": "12424", "source": "263", "target": "1853", "attributes": { "weight": 1 } }, { "key": "14487", "source": "263", "target": "275", "attributes": { "weight": 3 } }, { "key": "14505", "source": "263", "target": "328", "attributes": { "weight": 1 } }, { "key": "3170", "source": "263", "target": "839", "attributes": { "weight": 5 } }, { "key": "654", "source": "263", "target": "262", "attributes": { "weight": 6 } }, { "key": "14186", "source": "263", "target": "168", "attributes": { "weight": 2 } }, { "key": "12423", "source": "263", "target": "313", "attributes": { "weight": 4 } }, { "key": "14501", "source": "263", "target": "312", "attributes": { "weight": 2 } }, { "key": "14498", "source": "263", "target": "305", "attributes": { "weight": 3 } }, { "key": "658", "source": "263", "target": "307", "attributes": { "weight": 1 } }, { "key": "14482", "source": "263", "target": "164", "attributes": { "weight": 1 } }, { "key": "12426", "source": "263", "target": "326", "attributes": { "weight": 7 } }, { "key": "12427", "source": "263", "target": "334", "attributes": { "weight": 1 } }, { "key": "12983", "source": "263", "target": "314", "attributes": { "weight": 4 } }, { "key": "656", "source": "263", "target": "272", "attributes": { "weight": 6 } }, { "key": "14508", "source": "263", "target": "332", "attributes": { "weight": 1 } }, { "key": "14489", "source": "263", "target": "278", "attributes": { "weight": 4 } }, { "key": "27920", "source": "263", "target": "323", "attributes": { "weight": 2 } }, { "key": "14503", "source": "263", "target": "318", "attributes": { "weight": 3 } }, { "key": "14496", "source": "263", "target": "299", "attributes": { "weight": 5 } }, { "key": "27919", "source": "263", "target": "1918", "attributes": { "weight": 1 } }, { "key": "14507", "source": "263", "target": "1854", "attributes": { "weight": 1 } }, { "key": "22902", "source": "263", "target": "908", "attributes": { "weight": 1 } }, { "key": "660", "source": "263", "target": "327", "attributes": { "weight": 8 } }, { "key": "14502", "source": "263", "target": "1872", "attributes": { "weight": 1 } }, { "key": "14488", "source": "263", "target": "277", "attributes": { "weight": 1 } }, { "key": "22900", "source": "263", "target": "270", "attributes": { "weight": 1 } }, { "key": "17086", "source": "263", "target": "1621", "attributes": { "weight": 2 } }, { "key": "14504", "source": "263", "target": "319", "attributes": { "weight": 2 } }, { "key": "12425", "source": "263", "target": "316", "attributes": { "weight": 5 } }, { "key": "12982", "source": "263", "target": "304", "attributes": { "weight": 5 } }, { "key": "14497", "source": "263", "target": "301", "attributes": { "weight": 4 } }, { "key": "23416", "source": "263", "target": "329", "attributes": { "weight": 1 } }, { "key": "14495", "source": "263", "target": "298", "attributes": { "weight": 2 } }, { "key": "22901", "source": "263", "target": "295", "attributes": { "weight": 1 } }, { "key": "657", "source": "263", "target": "287", "attributes": { "weight": 8 } }, { "key": "14500", "source": "263", "target": "179", "attributes": { "weight": 2 } }, { "key": "14509", "source": "263", "target": "336", "attributes": { "weight": 1 } }, { "key": "14486", "source": "263", "target": "166", "attributes": { "weight": 4 } }, { "key": "12845", "source": "263", "target": "582", "attributes": { "weight": 1 } }, { "key": "684", "source": "264", "target": "292", "attributes": { "weight": 5 } }, { "key": "12991", "source": "264", "target": "272", "attributes": { "weight": 4 } }, { "key": "674", "source": "264", "target": "278", "attributes": { "weight": 3 } }, { "key": "663", "source": "264", "target": "262", "attributes": { "weight": 1 } }, { "key": "676", "source": "264", "target": "281", "attributes": { "weight": 2 } }, { "key": "681", "source": "264", "target": "288", "attributes": { "weight": 1 } }, { "key": "678", "source": "264", "target": "284", "attributes": { "weight": 7 } }, { "key": "35462", "source": "264", "target": "1857", "attributes": { "weight": 1 } }, { "key": "689", "source": "264", "target": "300", "attributes": { "weight": 5 } }, { "key": "680", "source": "264", "target": "287", "attributes": { "weight": 9 } }, { "key": "682", "source": "264", "target": "289", "attributes": { "weight": 6 } }, { "key": "14512", "source": "264", "target": "1987", "attributes": { "weight": 1 } }, { "key": "12999", "source": "264", "target": "290", "attributes": { "weight": 5 } }, { "key": "23271", "source": "264", "target": "1977", "attributes": { "weight": 1 } }, { "key": "692", "source": "264", "target": "305", "attributes": { "weight": 7 } }, { "key": "12993", "source": "264", "target": "277", "attributes": { "weight": 2 } }, { "key": "12572", "source": "264", "target": "180", "attributes": { "weight": 3 } }, { "key": "677", "source": "264", "target": "282", "attributes": { "weight": 1 } }, { "key": "694", "source": "264", "target": "307", "attributes": { "weight": 3 } }, { "key": "17991", "source": "264", "target": "1918", "attributes": { "weight": 1 } }, { "key": "673", "source": "264", "target": "169", "attributes": { "weight": 1 } }, { "key": "686", "source": "264", "target": "294", "attributes": { "weight": 5 } }, { "key": "714", "source": "264", "target": "332", "attributes": { "weight": 1 } }, { "key": "687", "source": "264", "target": "296", "attributes": { "weight": 4 } }, { "key": "672", "source": "264", "target": "168", "attributes": { "weight": 6 } }, { "key": "25966", "source": "264", "target": "2622", "attributes": { "weight": 2 } }, { "key": "12985", "source": "264", "target": "1894", "attributes": { "weight": 2 } }, { "key": "706", "source": "264", "target": "323", "attributes": { "weight": 4 } }, { "key": "685", "source": "264", "target": "293", "attributes": { "weight": 1 } }, { "key": "691", "source": "264", "target": "304", "attributes": { "weight": 6 } }, { "key": "668", "source": "264", "target": "274", "attributes": { "weight": 1 } }, { "key": "2869", "source": "264", "target": "841", "attributes": { "weight": 1 } }, { "key": "699", "source": "264", "target": "314", "attributes": { "weight": 8 } }, { "key": "18411", "source": "264", "target": "905", "attributes": { "weight": 1 } }, { "key": "698", "source": "264", "target": "313", "attributes": { "weight": 5 } }, { "key": "697", "source": "264", "target": "312", "attributes": { "weight": 7 } }, { "key": "710", "source": "264", "target": "327", "attributes": { "weight": 6 } }, { "key": "27925", "source": "264", "target": "2720", "attributes": { "weight": 1 } }, { "key": "679", "source": "264", "target": "286", "attributes": { "weight": 4 } }, { "key": "669", "source": "264", "target": "275", "attributes": { "weight": 3 } }, { "key": "17989", "source": "264", "target": "1976", "attributes": { "weight": 1 } }, { "key": "700", "source": "264", "target": "315", "attributes": { "weight": 1 } }, { "key": "705", "source": "264", "target": "322", "attributes": { "weight": 7 } }, { "key": "17990", "source": "264", "target": "1984", "attributes": { "weight": 1 } }, { "key": "12998", "source": "264", "target": "361", "attributes": { "weight": 1 } }, { "key": "662", "source": "264", "target": "260", "attributes": { "weight": 5 } }, { "key": "3171", "source": "264", "target": "839", "attributes": { "weight": 7 } }, { "key": "17987", "source": "264", "target": "258", "attributes": { "weight": 1 } }, { "key": "13001", "source": "264", "target": "299", "attributes": { "weight": 3 } }, { "key": "12996", "source": "264", "target": "1763", "attributes": { "weight": 1 } }, { "key": "11858", "source": "264", "target": "468", "attributes": { "weight": 1 } }, { "key": "12988", "source": "264", "target": "261", "attributes": { "weight": 2 } }, { "key": "13000", "source": "264", "target": "578", "attributes": { "weight": 2 } }, { "key": "15103", "source": "264", "target": "171", "attributes": { "weight": 1 } }, { "key": "707", "source": "264", "target": "324", "attributes": { "weight": 1 } }, { "key": "701", "source": "264", "target": "316", "attributes": { "weight": 6 } }, { "key": "27922", "source": "264", "target": "164", "attributes": { "weight": 2 } }, { "key": "12995", "source": "264", "target": "285", "attributes": { "weight": 2 } }, { "key": "12987", "source": "264", "target": "1895", "attributes": { "weight": 2 } }, { "key": "27923", "source": "264", "target": "837", "attributes": { "weight": 1 } }, { "key": "664", "source": "264", "target": "263", "attributes": { "weight": 6 } }, { "key": "711", "source": "264", "target": "328", "attributes": { "weight": 5 } }, { "key": "13008", "source": "264", "target": "1933", "attributes": { "weight": 2 } }, { "key": "12992", "source": "264", "target": "454", "attributes": { "weight": 2 } }, { "key": "12989", "source": "264", "target": "1898", "attributes": { "weight": 2 } }, { "key": "37474", "source": "264", "target": "283", "attributes": { "weight": 1 } }, { "key": "13010", "source": "264", "target": "334", "attributes": { "weight": 2 } }, { "key": "695", "source": "264", "target": "308", "attributes": { "weight": 3 } }, { "key": "19001", "source": "264", "target": "1872", "attributes": { "weight": 2 } }, { "key": "12990", "source": "264", "target": "265", "attributes": { "weight": 3 } }, { "key": "27924", "source": "264", "target": "838", "attributes": { "weight": 1 } }, { "key": "696", "source": "264", "target": "311", "attributes": { "weight": 5 } }, { "key": "13004", "source": "264", "target": "179", "attributes": { "weight": 3 } }, { "key": "666", "source": "264", "target": "270", "attributes": { "weight": 1 } }, { "key": "12997", "source": "264", "target": "1917", "attributes": { "weight": 2 } }, { "key": "671", "source": "264", "target": "167", "attributes": { "weight": 9 } }, { "key": "670", "source": "264", "target": "276", "attributes": { "weight": 5 } }, { "key": "13002", "source": "264", "target": "580", "attributes": { "weight": 2 } }, { "key": "683", "source": "264", "target": "291", "attributes": { "weight": 4 } }, { "key": "713", "source": "264", "target": "331", "attributes": { "weight": 1 } }, { "key": "693", "source": "264", "target": "306", "attributes": { "weight": 3 } }, { "key": "665", "source": "264", "target": "267", "attributes": { "weight": 4 } }, { "key": "13011", "source": "264", "target": "336", "attributes": { "weight": 2 } }, { "key": "14510", "source": "264", "target": "220", "attributes": { "weight": 2 } }, { "key": "708", "source": "264", "target": "325", "attributes": { "weight": 3 } }, { "key": "703", "source": "264", "target": "319", "attributes": { "weight": 5 } }, { "key": "30357", "source": "264", "target": "1046", "attributes": { "weight": 1 } }, { "key": "13009", "source": "264", "target": "1854", "attributes": { "weight": 3 } }, { "key": "667", "source": "264", "target": "166", "attributes": { "weight": 5 } }, { "key": "35463", "source": "264", "target": "574", "attributes": { "weight": 1 } }, { "key": "712", "source": "264", "target": "329", "attributes": { "weight": 1 } }, { "key": "709", "source": "264", "target": "326", "attributes": { "weight": 8 } }, { "key": "12994", "source": "264", "target": "1912", "attributes": { "weight": 2 } }, { "key": "11044", "source": "264", "target": "1036", "attributes": { "weight": 3 } }, { "key": "704", "source": "264", "target": "321", "attributes": { "weight": 4 } }, { "key": "13006", "source": "264", "target": "1931", "attributes": { "weight": 2 } }, { "key": "12986", "source": "264", "target": "645", "attributes": { "weight": 1 } }, { "key": "13007", "source": "264", "target": "1932", "attributes": { "weight": 2 } }, { "key": "17988", "source": "264", "target": "1913", "attributes": { "weight": 1 } }, { "key": "702", "source": "264", "target": "318", "attributes": { "weight": 5 } }, { "key": "661", "source": "264", "target": "259", "attributes": { "weight": 6 } }, { "key": "13003", "source": "264", "target": "178", "attributes": { "weight": 3 } }, { "key": "17992", "source": "264", "target": "908", "attributes": { "weight": 1 } }, { "key": "688", "source": "264", "target": "297", "attributes": { "weight": 1 } }, { "key": "14511", "source": "264", "target": "836", "attributes": { "weight": 1 } }, { "key": "13005", "source": "264", "target": "320", "attributes": { "weight": 2 } }, { "key": "690", "source": "264", "target": "301", "attributes": { "weight": 3 } }, { "key": "13015", "source": "265", "target": "304", "attributes": { "weight": 3 } }, { "key": "25967", "source": "265", "target": "2622", "attributes": { "weight": 2 } }, { "key": "715", "source": "265", "target": "262", "attributes": { "weight": 2 } }, { "key": "718", "source": "265", "target": "336", "attributes": { "weight": 1 } }, { "key": "27927", "source": "265", "target": "271", "attributes": { "weight": 1 } }, { "key": "13016", "source": "265", "target": "307", "attributes": { "weight": 3 } }, { "key": "14513", "source": "265", "target": "263", "attributes": { "weight": 1 } }, { "key": "13014", "source": "265", "target": "264", "attributes": { "weight": 3 } }, { "key": "26169", "source": "265", "target": "287", "attributes": { "weight": 2 } }, { "key": "13013", "source": "265", "target": "259", "attributes": { "weight": 3 } }, { "key": "27928", "source": "265", "target": "290", "attributes": { "weight": 1 } }, { "key": "13017", "source": "265", "target": "312", "attributes": { "weight": 4 } }, { "key": "27929", "source": "265", "target": "326", "attributes": { "weight": 1 } }, { "key": "14514", "source": "265", "target": "272", "attributes": { "weight": 2 } }, { "key": "716", "source": "265", "target": "277", "attributes": { "weight": 3 } }, { "key": "717", "source": "265", "target": "327", "attributes": { "weight": 2 } }, { "key": "27926", "source": "265", "target": "268", "attributes": { "weight": 1 } }, { "key": "14515", "source": "265", "target": "318", "attributes": { "weight": 2 } }, { "key": "22903", "source": "266", "target": "307", "attributes": { "weight": 1 } }, { "key": "25968", "source": "266", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13018", "source": "266", "target": "304", "attributes": { "weight": 2 } }, { "key": "719", "source": "266", "target": "318", "attributes": { "weight": 3 } }, { "key": "14518", "source": "266", "target": "1898", "attributes": { "weight": 1 } }, { "key": "27932", "source": "266", "target": "305", "attributes": { "weight": 1 } }, { "key": "22904", "source": "266", "target": "326", "attributes": { "weight": 1 } }, { "key": "720", "source": "267", "target": "264", "attributes": { "weight": 4 } }, { "key": "22203", "source": "268", "target": "902", "attributes": { "weight": 1 } }, { "key": "2872", "source": "268", "target": "322", "attributes": { "weight": 4 } }, { "key": "22205", "source": "268", "target": "1984", "attributes": { "weight": 2 } }, { "key": "14528", "source": "268", "target": "299", "attributes": { "weight": 4 } }, { "key": "22206", "source": "268", "target": "2230", "attributes": { "weight": 1 } }, { "key": "27552", "source": "268", "target": "327", "attributes": { "weight": 1 } }, { "key": "14529", "source": "268", "target": "579", "attributes": { "weight": 1 } }, { "key": "13031", "source": "268", "target": "170", "attributes": { "weight": 3 } }, { "key": "14532", "source": "268", "target": "1934", "attributes": { "weight": 1 } }, { "key": "22199", "source": "268", "target": "1897", "attributes": { "weight": 1 } }, { "key": "27939", "source": "268", "target": "287", "attributes": { "weight": 1 } }, { "key": "12428", "source": "268", "target": "1854", "attributes": { "weight": 1 } }, { "key": "13037", "source": "268", "target": "313", "attributes": { "weight": 5 } }, { "key": "27938", "source": "268", "target": "265", "attributes": { "weight": 1 } }, { "key": "13036", "source": "268", "target": "312", "attributes": { "weight": 3 } }, { "key": "722", "source": "268", "target": "167", "attributes": { "weight": 10 } }, { "key": "2871", "source": "268", "target": "316", "attributes": { "weight": 8 } }, { "key": "23418", "source": "268", "target": "2449", "attributes": { "weight": 1 } }, { "key": "27551", "source": "268", "target": "272", "attributes": { "weight": 1 } }, { "key": "14522", "source": "268", "target": "259", "attributes": { "weight": 1 } }, { "key": "14523", "source": "268", "target": "697", "attributes": { "weight": 1 } }, { "key": "723", "source": "268", "target": "277", "attributes": { "weight": 3 } }, { "key": "721", "source": "268", "target": "262", "attributes": { "weight": 1 } }, { "key": "13029", "source": "268", "target": "168", "attributes": { "weight": 2 } }, { "key": "13033", "source": "268", "target": "580", "attributes": { "weight": 5 } }, { "key": "13027", "source": "268", "target": "276", "attributes": { "weight": 3 } }, { "key": "14525", "source": "268", "target": "275", "attributes": { "weight": 1 } }, { "key": "14530", "source": "268", "target": "1962", "attributes": { "weight": 1 } }, { "key": "13032", "source": "268", "target": "300", "attributes": { "weight": 5 } }, { "key": "14531", "source": "268", "target": "1872", "attributes": { "weight": 1 } }, { "key": "3173", "source": "268", "target": "308", "attributes": { "weight": 2 } }, { "key": "27937", "source": "268", "target": "1896", "attributes": { "weight": 1 } }, { "key": "14526", "source": "268", "target": "286", "attributes": { "weight": 1 } }, { "key": "13040", "source": "268", "target": "326", "attributes": { "weight": 5 } }, { "key": "22200", "source": "268", "target": "2310", "attributes": { "weight": 1 } }, { "key": "11735", "source": "268", "target": "180", "attributes": { "weight": 4 } }, { "key": "724", "source": "268", "target": "314", "attributes": { "weight": 6 } }, { "key": "14527", "source": "268", "target": "1920", "attributes": { "weight": 1 } }, { "key": "13038", "source": "268", "target": "318", "attributes": { "weight": 4 } }, { "key": "13028", "source": "268", "target": "1905", "attributes": { "weight": 2 } }, { "key": "13035", "source": "268", "target": "304", "attributes": { "weight": 6 } }, { "key": "22905", "source": "268", "target": "295", "attributes": { "weight": 1 } }, { "key": "22202", "source": "268", "target": "274", "attributes": { "weight": 1 } }, { "key": "27940", "source": "268", "target": "1981", "attributes": { "weight": 1 } }, { "key": "14524", "source": "268", "target": "263", "attributes": { "weight": 1 } }, { "key": "22204", "source": "268", "target": "1976", "attributes": { "weight": 1 } }, { "key": "13026", "source": "268", "target": "698", "attributes": { "weight": 2 } }, { "key": "13039", "source": "268", "target": "323", "attributes": { "weight": 2 } }, { "key": "725", "source": "268", "target": "329", "attributes": { "weight": 1 } }, { "key": "14534", "source": "268", "target": "332", "attributes": { "weight": 1 } }, { "key": "23417", "source": "268", "target": "1849", "attributes": { "weight": 1 } }, { "key": "22201", "source": "268", "target": "1903", "attributes": { "weight": 1 } }, { "key": "13030", "source": "268", "target": "278", "attributes": { "weight": 4 } }, { "key": "13025", "source": "268", "target": "260", "attributes": { "weight": 6 } }, { "key": "27941", "source": "268", "target": "906", "attributes": { "weight": 1 } }, { "key": "3172", "source": "268", "target": "305", "attributes": { "weight": 7 } }, { "key": "14533", "source": "268", "target": "1515", "attributes": { "weight": 1 } }, { "key": "14537", "source": "269", "target": "326", "attributes": { "weight": 2 } }, { "key": "24778", "source": "269", "target": "167", "attributes": { "weight": 1 } }, { "key": "726", "source": "269", "target": "291", "attributes": { "weight": 2 } }, { "key": "14536", "source": "269", "target": "319", "attributes": { "weight": 2 } }, { "key": "19003", "source": "270", "target": "326", "attributes": { "weight": 3 } }, { "key": "13042", "source": "270", "target": "304", "attributes": { "weight": 2 } }, { "key": "22210", "source": "270", "target": "262", "attributes": { "weight": 1 } }, { "key": "22914", "source": "270", "target": "322", "attributes": { "weight": 1 } }, { "key": "27945", "source": "270", "target": "287", "attributes": { "weight": 1 } }, { "key": "22912", "source": "270", "target": "316", "attributes": { "weight": 1 } }, { "key": "22906", "source": "270", "target": "263", "attributes": { "weight": 1 } }, { "key": "14541", "source": "270", "target": "260", "attributes": { "weight": 2 } }, { "key": "22910", "source": "270", "target": "300", "attributes": { "weight": 1 } }, { "key": "727", "source": "270", "target": "264", "attributes": { "weight": 1 } }, { "key": "728", "source": "270", "target": "307", "attributes": { "weight": 1 } }, { "key": "22908", "source": "270", "target": "167", "attributes": { "weight": 1 } }, { "key": "22911", "source": "270", "target": "308", "attributes": { "weight": 1 } }, { "key": "27944", "source": "270", "target": "277", "attributes": { "weight": 1 } }, { "key": "25969", "source": "270", "target": "2622", "attributes": { "weight": 2 } }, { "key": "22907", "source": "270", "target": "275", "attributes": { "weight": 1 } }, { "key": "22913", "source": "270", "target": "319", "attributes": { "weight": 1 } }, { "key": "13043", "source": "270", "target": "318", "attributes": { "weight": 2 } }, { "key": "14545", "source": "271", "target": "259", "attributes": { "weight": 1 } }, { "key": "14547", "source": "271", "target": "180", "attributes": { "weight": 2 } }, { "key": "14546", "source": "271", "target": "312", "attributes": { "weight": 1 } }, { "key": "13046", "source": "271", "target": "304", "attributes": { "weight": 3 } }, { "key": "729", "source": "271", "target": "262", "attributes": { "weight": 2 } }, { "key": "730", "source": "271", "target": "300", "attributes": { "weight": 2 } }, { "key": "27947", "source": "271", "target": "265", "attributes": { "weight": 1 } }, { "key": "3174", "source": "271", "target": "305", "attributes": { "weight": 3 } }, { "key": "24779", "source": "271", "target": "326", "attributes": { "weight": 2 } }, { "key": "12430", "source": "271", "target": "316", "attributes": { "weight": 1 } }, { "key": "12429", "source": "271", "target": "263", "attributes": { "weight": 2 } }, { "key": "14548", "source": "271", "target": "318", "attributes": { "weight": 1 } }, { "key": "22211", "source": "272", "target": "1984", "attributes": { "weight": 1 } }, { "key": "13058", "source": "272", "target": "323", "attributes": { "weight": 2 } }, { "key": "14560", "source": "272", "target": "578", "attributes": { "weight": 2 } }, { "key": "13057", "source": "272", "target": "314", "attributes": { "weight": 5 } }, { "key": "28348", "source": "272", "target": "170", "attributes": { "weight": 2 } }, { "key": "11737", "source": "272", "target": "180", "attributes": { "weight": 2 } }, { "key": "14553", "source": "272", "target": "262", "attributes": { "weight": 3 } }, { "key": "23273", "source": "272", "target": "305", "attributes": { "weight": 2 } }, { "key": "14551", "source": "272", "target": "567", "attributes": { "weight": 2 } }, { "key": "14552", "source": "272", "target": "260", "attributes": { "weight": 4 } }, { "key": "8197", "source": "272", "target": "315", "attributes": { "weight": 3 } }, { "key": "35481", "source": "272", "target": "177", "attributes": { "weight": 1 } }, { "key": "14563", "source": "272", "target": "311", "attributes": { "weight": 3 } }, { "key": "14565", "source": "272", "target": "313", "attributes": { "weight": 3 } }, { "key": "14199", "source": "272", "target": "168", "attributes": { "weight": 4 } }, { "key": "27556", "source": "272", "target": "318", "attributes": { "weight": 1 } }, { "key": "22594", "source": "272", "target": "1513", "attributes": { "weight": 1 } }, { "key": "14550", "source": "272", "target": "259", "attributes": { "weight": 3 } }, { "key": "14556", "source": "272", "target": "277", "attributes": { "weight": 2 } }, { "key": "14562", "source": "272", "target": "178", "attributes": { "weight": 2 } }, { "key": "14549", "source": "272", "target": "164", "attributes": { "weight": 2 } }, { "key": "13051", "source": "272", "target": "264", "attributes": { "weight": 4 } }, { "key": "14558", "source": "272", "target": "171", "attributes": { "weight": 3 } }, { "key": "22917", "source": "272", "target": "902", "attributes": { "weight": 1 } }, { "key": "731", "source": "272", "target": "263", "attributes": { "weight": 6 } }, { "key": "24781", "source": "272", "target": "261", "attributes": { "weight": 1 } }, { "key": "14566", "source": "272", "target": "322", "attributes": { "weight": 3 } }, { "key": "11736", "source": "272", "target": "905", "attributes": { "weight": 3 } }, { "key": "24782", "source": "272", "target": "329", "attributes": { "weight": 1 } }, { "key": "13059", "source": "272", "target": "336", "attributes": { "weight": 4 } }, { "key": "14554", "source": "272", "target": "265", "attributes": { "weight": 2 } }, { "key": "13056", "source": "272", "target": "304", "attributes": { "weight": 5 } }, { "key": "14559", "source": "272", "target": "289", "attributes": { "weight": 3 } }, { "key": "22916", "source": "272", "target": "276", "attributes": { "weight": 3 } }, { "key": "13055", "source": "272", "target": "300", "attributes": { "weight": 8 } }, { "key": "13054", "source": "272", "target": "290", "attributes": { "weight": 4 } }, { "key": "732", "source": "272", "target": "326", "attributes": { "weight": 5 } }, { "key": "14555", "source": "272", "target": "167", "attributes": { "weight": 2 } }, { "key": "13052", "source": "272", "target": "166", "attributes": { "weight": 5 } }, { "key": "27553", "source": "272", "target": "697", "attributes": { "weight": 1 } }, { "key": "13053", "source": "272", "target": "1912", "attributes": { "weight": 2 } }, { "key": "14564", "source": "272", "target": "312", "attributes": { "weight": 4 } }, { "key": "2875", "source": "272", "target": "301", "attributes": { "weight": 4 } }, { "key": "14557", "source": "272", "target": "287", "attributes": { "weight": 3 } }, { "key": "27554", "source": "272", "target": "268", "attributes": { "weight": 1 } }, { "key": "27555", "source": "272", "target": "316", "attributes": { "weight": 1 } }, { "key": "14561", "source": "272", "target": "839", "attributes": { "weight": 4 } }, { "key": "733", "source": "273", "target": "294", "attributes": { "weight": 1 } }, { "key": "734", "source": "273", "target": "326", "attributes": { "weight": 1 } }, { "key": "22215", "source": "274", "target": "268", "attributes": { "weight": 1 } }, { "key": "27953", "source": "274", "target": "305", "attributes": { "weight": 1 } }, { "key": "27954", "source": "274", "target": "839", "attributes": { "weight": 1 } }, { "key": "22214", "source": "274", "target": "262", "attributes": { "weight": 1 } }, { "key": "740", "source": "274", "target": "264", "attributes": { "weight": 1 } }, { "key": "14579", "source": "274", "target": "259", "attributes": { "weight": 1 } }, { "key": "13093", "source": "275", "target": "322", "attributes": { "weight": 3 } }, { "key": "741", "source": "275", "target": "264", "attributes": { "weight": 3 } }, { "key": "13090", "source": "275", "target": "305", "attributes": { "weight": 2 } }, { "key": "13092", "source": "275", "target": "314", "attributes": { "weight": 4 } }, { "key": "12578", "source": "275", "target": "180", "attributes": { "weight": 2 } }, { "key": "14581", "source": "275", "target": "263", "attributes": { "weight": 3 } }, { "key": "22938", "source": "275", "target": "1923", "attributes": { "weight": 1 } }, { "key": "25972", "source": "275", "target": "2622", "attributes": { "weight": 2 } }, { "key": "22939", "source": "275", "target": "1927", "attributes": { "weight": 2 } }, { "key": "13086", "source": "275", "target": "259", "attributes": { "weight": 4 } }, { "key": "14588", "source": "275", "target": "1930", "attributes": { "weight": 3 } }, { "key": "13091", "source": "275", "target": "307", "attributes": { "weight": 3 } }, { "key": "14585", "source": "275", "target": "313", "attributes": { "weight": 1 } }, { "key": "22936", "source": "275", "target": "1907", "attributes": { "weight": 2 } }, { "key": "3175", "source": "275", "target": "308", "attributes": { "weight": 2 } }, { "key": "22932", "source": "275", "target": "260", "attributes": { "weight": 3 } }, { "key": "13089", "source": "275", "target": "304", "attributes": { "weight": 4 } }, { "key": "14580", "source": "275", "target": "261", "attributes": { "weight": 1 } }, { "key": "22937", "source": "275", "target": "303", "attributes": { "weight": 1 } }, { "key": "14582", "source": "275", "target": "268", "attributes": { "weight": 1 } }, { "key": "22935", "source": "275", "target": "2396", "attributes": { "weight": 1 } }, { "key": "29794", "source": "275", "target": "262", "attributes": { "weight": 1 } }, { "key": "13088", "source": "275", "target": "1906", "attributes": { "weight": 5 } }, { "key": "24785", "source": "275", "target": "2532", "attributes": { "weight": 1 } }, { "key": "14584", "source": "275", "target": "300", "attributes": { "weight": 3 } }, { "key": "14587", "source": "275", "target": "319", "attributes": { "weight": 1 } }, { "key": "22933", "source": "275", "target": "1897", "attributes": { "weight": 3 } }, { "key": "19006", "source": "275", "target": "839", "attributes": { "weight": 2 } }, { "key": "14586", "source": "275", "target": "1925", "attributes": { "weight": 3 } }, { "key": "13087", "source": "275", "target": "167", "attributes": { "weight": 4 } }, { "key": "24784", "source": "275", "target": "286", "attributes": { "weight": 1 } }, { "key": "23429", "source": "275", "target": "277", "attributes": { "weight": 2 } }, { "key": "12433", "source": "275", "target": "316", "attributes": { "weight": 6 } }, { "key": "2877", "source": "275", "target": "318", "attributes": { "weight": 2 } }, { "key": "22934", "source": "275", "target": "270", "attributes": { "weight": 1 } }, { "key": "22940", "source": "275", "target": "326", "attributes": { "weight": 3 } }, { "key": "13097", "source": "276", "target": "278", "attributes": { "weight": 2 } }, { "key": "27955", "source": "276", "target": "262", "attributes": { "weight": 2 } }, { "key": "27956", "source": "276", "target": "168", "attributes": { "weight": 1 } }, { "key": "23430", "source": "276", "target": "166", "attributes": { "weight": 1 } }, { "key": "14592", "source": "276", "target": "326", "attributes": { "weight": 4 } }, { "key": "13095", "source": "276", "target": "263", "attributes": { "weight": 3 } }, { "key": "14589", "source": "276", "target": "261", "attributes": { "weight": 1 } }, { "key": "13096", "source": "276", "target": "268", "attributes": { "weight": 3 } }, { "key": "18412", "source": "276", "target": "180", "attributes": { "weight": 2 } }, { "key": "13101", "source": "276", "target": "312", "attributes": { "weight": 4 } }, { "key": "31089", "source": "276", "target": "1854", "attributes": { "weight": 1 } }, { "key": "13094", "source": "276", "target": "259", "attributes": { "weight": 5 } }, { "key": "27957", "source": "276", "target": "290", "attributes": { "weight": 1 } }, { "key": "22942", "source": "276", "target": "272", "attributes": { "weight": 3 } }, { "key": "14590", "source": "276", "target": "277", "attributes": { "weight": 2 } }, { "key": "29795", "source": "276", "target": "307", "attributes": { "weight": 1 } }, { "key": "13102", "source": "276", "target": "313", "attributes": { "weight": 4 } }, { "key": "13103", "source": "276", "target": "327", "attributes": { "weight": 7 } }, { "key": "742", "source": "276", "target": "264", "attributes": { "weight": 4 } }, { "key": "27958", "source": "276", "target": "1872", "attributes": { "weight": 1 } }, { "key": "23431", "source": "276", "target": "291", "attributes": { "weight": 1 } }, { "key": "22943", "source": "276", "target": "301", "attributes": { "weight": 1 } }, { "key": "14593", "source": "276", "target": "336", "attributes": { "weight": 1 } }, { "key": "14591", "source": "276", "target": "318", "attributes": { "weight": 3 } }, { "key": "2879", "source": "276", "target": "292", "attributes": { "weight": 1 } }, { "key": "13100", "source": "276", "target": "304", "attributes": { "weight": 3 } }, { "key": "22596", "source": "276", "target": "315", "attributes": { "weight": 1 } }, { "key": "22595", "source": "276", "target": "905", "attributes": { "weight": 1 } }, { "key": "2878", "source": "276", "target": "287", "attributes": { "weight": 4 } }, { "key": "13098", "source": "276", "target": "289", "attributes": { "weight": 2 } }, { "key": "22944", "source": "276", "target": "179", "attributes": { "weight": 1 } }, { "key": "23432", "source": "276", "target": "311", "attributes": { "weight": 1 } }, { "key": "13099", "source": "276", "target": "578", "attributes": { "weight": 2 } }, { "key": "2880", "source": "276", "target": "305", "attributes": { "weight": 2 } }, { "key": "22941", "source": "276", "target": "260", "attributes": { "weight": 1 } }, { "key": "23724", "source": "277", "target": "168", "attributes": { "weight": 1 } }, { "key": "12436", "source": "277", "target": "1846", "attributes": { "weight": 2 } }, { "key": "12438", "source": "277", "target": "1849", "attributes": { "weight": 1 } }, { "key": "33775", "source": "277", "target": "14", "attributes": { "weight": 1 } }, { "key": "12583", "source": "277", "target": "180", "attributes": { "weight": 2 } }, { "key": "14617", "source": "277", "target": "286", "attributes": { "weight": 3 } }, { "key": "13146", "source": "277", "target": "312", "attributes": { "weight": 3 } }, { "key": "3186", "source": "277", "target": "305", "attributes": { "weight": 5 } }, { "key": "30581", "source": "277", "target": "25", "attributes": { "weight": 1 } }, { "key": "14624", "source": "277", "target": "1515", "attributes": { "weight": 2 } }, { "key": "769", "source": "277", "target": "329", "attributes": { "weight": 1 } }, { "key": "765", "source": "277", "target": "316", "attributes": { "weight": 8 } }, { "key": "14625", "source": "277", "target": "332", "attributes": { "weight": 1 } }, { "key": "763", "source": "277", "target": "308", "attributes": { "weight": 3 } }, { "key": "762", "source": "277", "target": "303", "attributes": { "weight": 1 } }, { "key": "33774", "source": "277", "target": "13", "attributes": { "weight": 1 } }, { "key": "13147", "source": "277", "target": "313", "attributes": { "weight": 6 } }, { "key": "14616", "source": "277", "target": "278", "attributes": { "weight": 2 } }, { "key": "14622", "source": "277", "target": "1931", "attributes": { "weight": 1 } }, { "key": "13149", "source": "277", "target": "1854", "attributes": { "weight": 5 } }, { "key": "13143", "source": "277", "target": "259", "attributes": { "weight": 3 } }, { "key": "27981", "source": "277", "target": "1897", "attributes": { "weight": 1 } }, { "key": "23435", "source": "277", "target": "2310", "attributes": { "weight": 1 } }, { "key": "12439", "source": "277", "target": "1850", "attributes": { "weight": 1 } }, { "key": "13148", "source": "277", "target": "318", "attributes": { "weight": 2 } }, { "key": "756", "source": "277", "target": "260", "attributes": { "weight": 7 } }, { "key": "24790", "source": "277", "target": "1925", "attributes": { "weight": 2 } }, { "key": "14620", "source": "277", "target": "1981", "attributes": { "weight": 1 } }, { "key": "13144", "source": "277", "target": "264", "attributes": { "weight": 2 } }, { "key": "767", "source": "277", "target": "322", "attributes": { "weight": 1 } }, { "key": "14613", "source": "277", "target": "272", "attributes": { "weight": 2 } }, { "key": "14615", "source": "277", "target": "167", "attributes": { "weight": 3 } }, { "key": "14619", "source": "277", "target": "170", "attributes": { "weight": 1 } }, { "key": "25975", "source": "277", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14618", "source": "277", "target": "1979", "attributes": { "weight": 1 } }, { "key": "3185", "source": "277", "target": "902", "attributes": { "weight": 1 } }, { "key": "14621", "source": "277", "target": "1852", "attributes": { "weight": 1 } }, { "key": "766", "source": "277", "target": "321", "attributes": { "weight": 1 } }, { "key": "12437", "source": "277", "target": "1848", "attributes": { "weight": 2 } }, { "key": "27983", "source": "277", "target": "1976", "attributes": { "weight": 1 } }, { "key": "758", "source": "277", "target": "268", "attributes": { "weight": 3 } }, { "key": "761", "source": "277", "target": "300", "attributes": { "weight": 3 } }, { "key": "764", "source": "277", "target": "314", "attributes": { "weight": 7 } }, { "key": "24420", "source": "277", "target": "19", "attributes": { "weight": 1 } }, { "key": "14623", "source": "277", "target": "1933", "attributes": { "weight": 1 } }, { "key": "13145", "source": "277", "target": "304", "attributes": { "weight": 6 } }, { "key": "31605", "source": "277", "target": "2461", "attributes": { "weight": 1 } }, { "key": "23865", "source": "277", "target": "1965", "attributes": { "weight": 2 } }, { "key": "757", "source": "277", "target": "265", "attributes": { "weight": 3 } }, { "key": "14612", "source": "277", "target": "263", "attributes": { "weight": 1 } }, { "key": "22957", "source": "277", "target": "1906", "attributes": { "weight": 1 } }, { "key": "760", "source": "277", "target": "299", "attributes": { "weight": 2 } }, { "key": "27982", "source": "277", "target": "270", "attributes": { "weight": 1 } }, { "key": "768", "source": "277", "target": "326", "attributes": { "weight": 5 } }, { "key": "14611", "source": "277", "target": "697", "attributes": { "weight": 1 } }, { "key": "23436", "source": "277", "target": "275", "attributes": { "weight": 2 } }, { "key": "14614", "source": "277", "target": "276", "attributes": { "weight": 2 } }, { "key": "25735", "source": "278", "target": "1063", "attributes": { "weight": 1 } }, { "key": "28395", "source": "278", "target": "907", "attributes": { "weight": 2 } }, { "key": "25717", "source": "278", "target": "2280", "attributes": { "weight": 1 } }, { "key": "26840", "source": "278", "target": "569", "attributes": { "weight": 2 } }, { "key": "26843", "source": "278", "target": "1512", "attributes": { "weight": 3 } }, { "key": "25734", "source": "278", "target": "327", "attributes": { "weight": 2 } }, { "key": "25699", "source": "278", "target": "2546", "attributes": { "weight": 1 } }, { "key": "28393", "source": "278", "target": "2345", "attributes": { "weight": 2 } }, { "key": "25705", "source": "278", "target": "1857", "attributes": { "weight": 3 } }, { "key": "14631", "source": "278", "target": "259", "attributes": { "weight": 3 } }, { "key": "11154", "source": "278", "target": "473", "attributes": { "weight": 2 } }, { "key": "15851", "source": "278", "target": "370", "attributes": { "weight": 4 } }, { "key": "1869", "source": "278", "target": "93", "attributes": { "weight": 6 } }, { "key": "17466", "source": "278", "target": "358", "attributes": { "weight": 2 } }, { "key": "13168", "source": "278", "target": "1854", "attributes": { "weight": 5 } }, { "key": "15848", "source": "278", "target": "913", "attributes": { "weight": 1 } }, { "key": "14638", "source": "278", "target": "307", "attributes": { "weight": 2 } }, { "key": "24978", "source": "278", "target": "1191", "attributes": { "weight": 4 } }, { "key": "13164", "source": "278", "target": "304", "attributes": { "weight": 4 } }, { "key": "15106", "source": "278", "target": "171", "attributes": { "weight": 3 } }, { "key": "25732", "source": "278", "target": "1967", "attributes": { "weight": 5 } }, { "key": "25721", "source": "278", "target": "1561", "attributes": { "weight": 2 } }, { "key": "12584", "source": "278", "target": "180", "attributes": { "weight": 7 } }, { "key": "28396", "source": "278", "target": "1962", "attributes": { "weight": 2 } }, { "key": "15847", "source": "278", "target": "195", "attributes": { "weight": 2 } }, { "key": "25703", "source": "278", "target": "697", "attributes": { "weight": 2 } }, { "key": "15850", "source": "278", "target": "1232", "attributes": { "weight": 2 } }, { "key": "2411", "source": "278", "target": "580", "attributes": { "weight": 10 } }, { "key": "29196", "source": "278", "target": "286", "attributes": { "weight": 1 } }, { "key": "29200", "source": "278", "target": "309", "attributes": { "weight": 1 } }, { "key": "23866", "source": "278", "target": "2461", "attributes": { "weight": 3 } }, { "key": "25708", "source": "278", "target": "707", "attributes": { "weight": 3 } }, { "key": "13160", "source": "278", "target": "262", "attributes": { "weight": 2 } }, { "key": "2968", "source": "278", "target": "176", "attributes": { "weight": 3 } }, { "key": "25704", "source": "278", "target": "1042", "attributes": { "weight": 1 } }, { "key": "26590", "source": "278", "target": "189", "attributes": { "weight": 1 } }, { "key": "22478", "source": "278", "target": "567", "attributes": { "weight": 3 } }, { "key": "2412", "source": "278", "target": "313", "attributes": { "weight": 6 } }, { "key": "25700", "source": "278", "target": "564", "attributes": { "weight": 4 } }, { "key": "25707", "source": "278", "target": "574", "attributes": { "weight": 3 } }, { "key": "1868", "source": "278", "target": "91", "attributes": { "weight": 3 } }, { "key": "14632", "source": "278", "target": "260", "attributes": { "weight": 2 } }, { "key": "25729", "source": "278", "target": "1872", "attributes": { "weight": 2 } }, { "key": "27985", "source": "278", "target": "290", "attributes": { "weight": 2 } }, { "key": "29201", "source": "278", "target": "2551", "attributes": { "weight": 1 } }, { "key": "13166", "source": "278", "target": "316", "attributes": { "weight": 4 } }, { "key": "2841", "source": "278", "target": "169", "attributes": { "weight": 4 } }, { "key": "13161", "source": "278", "target": "268", "attributes": { "weight": 4 } }, { "key": "25728", "source": "278", "target": "340", "attributes": { "weight": 1 } }, { "key": "7318", "source": "278", "target": "333", "attributes": { "weight": 3 } }, { "key": "2405", "source": "278", "target": "164", "attributes": { "weight": 10 } }, { "key": "15856", "source": "278", "target": "1322", "attributes": { "weight": 4 } }, { "key": "1867", "source": "278", "target": "566", "attributes": { "weight": 7 } }, { "key": "25727", "source": "278", "target": "1924", "attributes": { "weight": 1 } }, { "key": "15854", "source": "278", "target": "123", "attributes": { "weight": 3 } }, { "key": "13165", "source": "278", "target": "314", "attributes": { "weight": 6 } }, { "key": "2408", "source": "278", "target": "168", "attributes": { "weight": 10 } }, { "key": "28394", "source": "278", "target": "1823", "attributes": { "weight": 2 } }, { "key": "25697", "source": "278", "target": "220", "attributes": { "weight": 2 } }, { "key": "25715", "source": "278", "target": "1280", "attributes": { "weight": 1 } }, { "key": "25701", "source": "278", "target": "1166", "attributes": { "weight": 1 } }, { "key": "14637", "source": "278", "target": "305", "attributes": { "weight": 5 } }, { "key": "25698", "source": "278", "target": "2536", "attributes": { "weight": 1 } }, { "key": "24980", "source": "278", "target": "1870", "attributes": { "weight": 2 } }, { "key": "25714", "source": "278", "target": "471", "attributes": { "weight": 1 } }, { "key": "25713", "source": "278", "target": "8", "attributes": { "weight": 1 } }, { "key": "26841", "source": "278", "target": "578", "attributes": { "weight": 3 } }, { "key": "24979", "source": "278", "target": "1979", "attributes": { "weight": 2 } }, { "key": "28392", "source": "278", "target": "2540", "attributes": { "weight": 2 } }, { "key": "9472", "source": "278", "target": "178", "attributes": { "weight": 5 } }, { "key": "26842", "source": "278", "target": "1822", "attributes": { "weight": 1 } }, { "key": "29197", "source": "278", "target": "1965", "attributes": { "weight": 2 } }, { "key": "15853", "source": "278", "target": "338", "attributes": { "weight": 5 } }, { "key": "11890", "source": "278", "target": "468", "attributes": { "weight": 3 } }, { "key": "25696", "source": "278", "target": "1146", "attributes": { "weight": 1 } }, { "key": "25720", "source": "278", "target": "479", "attributes": { "weight": 2 } }, { "key": "29195", "source": "278", "target": "1046", "attributes": { "weight": 2 } }, { "key": "25709", "source": "278", "target": "1233", "attributes": { "weight": 1 } }, { "key": "25706", "source": "278", "target": "454", "attributes": { "weight": 3 } }, { "key": "22479", "source": "278", "target": "572", "attributes": { "weight": 3 } }, { "key": "25722", "source": "278", "target": "1060", "attributes": { "weight": 1 } }, { "key": "25710", "source": "278", "target": "791", "attributes": { "weight": 3 } }, { "key": "25615", "source": "278", "target": "787", "attributes": { "weight": 2 } }, { "key": "27986", "source": "278", "target": "300", "attributes": { "weight": 2 } }, { "key": "8776", "source": "278", "target": "442", "attributes": { "weight": 3 } }, { "key": "23755", "source": "278", "target": "1774", "attributes": { "weight": 3 } }, { "key": "15852", "source": "278", "target": "337", "attributes": { "weight": 2 } }, { "key": "28397", "source": "278", "target": "1825", "attributes": { "weight": 2 } }, { "key": "25712", "source": "278", "target": "361", "attributes": { "weight": 1 } }, { "key": "28390", "source": "278", "target": "1905", "attributes": { "weight": 3 } }, { "key": "13167", "source": "278", "target": "1934", "attributes": { "weight": 4 } }, { "key": "18062", "source": "278", "target": "1036", "attributes": { "weight": 3 } }, { "key": "14634", "source": "278", "target": "263", "attributes": { "weight": 4 } }, { "key": "14636", "source": "278", "target": "1920", "attributes": { "weight": 2 } }, { "key": "29198", "source": "278", "target": "292", "attributes": { "weight": 1 } }, { "key": "14639", "source": "278", "target": "322", "attributes": { "weight": 3 } }, { "key": "9471", "source": "278", "target": "1323", "attributes": { "weight": 7 } }, { "key": "28391", "source": "278", "target": "1960", "attributes": { "weight": 2 } }, { "key": "26844", "source": "278", "target": "1642", "attributes": { "weight": 2 } }, { "key": "25730", "source": "278", "target": "1926", "attributes": { "weight": 2 } }, { "key": "2409", "source": "278", "target": "170", "attributes": { "weight": 7 } }, { "key": "2406", "source": "278", "target": "698", "attributes": { "weight": 7 } }, { "key": "25723", "source": "278", "target": "177", "attributes": { "weight": 3 } }, { "key": "14635", "source": "278", "target": "277", "attributes": { "weight": 2 } }, { "key": "25716", "source": "278", "target": "163", "attributes": { "weight": 2 } }, { "key": "15849", "source": "278", "target": "1227", "attributes": { "weight": 4 } }, { "key": "25726", "source": "278", "target": "312", "attributes": { "weight": 3 } }, { "key": "25718", "source": "278", "target": "1871", "attributes": { "weight": 1 } }, { "key": "29199", "source": "278", "target": "299", "attributes": { "weight": 1 } }, { "key": "10888", "source": "278", "target": "457", "attributes": { "weight": 1 } }, { "key": "2407", "source": "278", "target": "700", "attributes": { "weight": 3 } }, { "key": "25702", "source": "278", "target": "645", "attributes": { "weight": 1 } }, { "key": "25731", "source": "278", "target": "495", "attributes": { "weight": 1 } }, { "key": "5142", "source": "278", "target": "368", "attributes": { "weight": 4 } }, { "key": "25725", "source": "278", "target": "310", "attributes": { "weight": 4 } }, { "key": "2410", "source": "278", "target": "579", "attributes": { "weight": 6 } }, { "key": "15855", "source": "278", "target": "175", "attributes": { "weight": 4 } }, { "key": "25719", "source": "278", "target": "174", "attributes": { "weight": 2 } }, { "key": "13162", "source": "278", "target": "276", "attributes": { "weight": 1 } }, { "key": "25711", "source": "278", "target": "287", "attributes": { "weight": 2 } }, { "key": "9470", "source": "278", "target": "419", "attributes": { "weight": 2 } }, { "key": "25724", "source": "278", "target": "595", "attributes": { "weight": 2 } }, { "key": "2840", "source": "278", "target": "830", "attributes": { "weight": 3 } }, { "key": "24981", "source": "278", "target": "1820", "attributes": { "weight": 2 } }, { "key": "770", "source": "278", "target": "264", "attributes": { "weight": 3 } }, { "key": "8203", "source": "278", "target": "905", "attributes": { "weight": 3 } }, { "key": "25733", "source": "278", "target": "326", "attributes": { "weight": 3 } }, { "key": "33127", "source": "278", "target": "903", "attributes": { "weight": 1 } }, { "key": "14633", "source": "278", "target": "261", "attributes": { "weight": 2 } }, { "key": "13163", "source": "278", "target": "167", "attributes": { "weight": 2 } }, { "key": "25978", "source": "280", "target": "2398", "attributes": { "weight": 2 } }, { "key": "27989", "source": "280", "target": "326", "attributes": { "weight": 1 } }, { "key": "775", "source": "280", "target": "291", "attributes": { "weight": 3 } }, { "key": "30515", "source": "281", "target": "1549", "attributes": { "weight": 1 } }, { "key": "24791", "source": "281", "target": "167", "attributes": { "weight": 1 } }, { "key": "14651", "source": "281", "target": "262", "attributes": { "weight": 1 } }, { "key": "27992", "source": "281", "target": "837", "attributes": { "weight": 1 } }, { "key": "2883", "source": "281", "target": "838", "attributes": { "weight": 2 } }, { "key": "777", "source": "281", "target": "287", "attributes": { "weight": 10 } }, { "key": "2884", "source": "281", "target": "292", "attributes": { "weight": 5 } }, { "key": "27993", "source": "281", "target": "841", "attributes": { "weight": 1 } }, { "key": "776", "source": "281", "target": "264", "attributes": { "weight": 2 } }, { "key": "27994", "source": "282", "target": "304", "attributes": { "weight": 1 } }, { "key": "14652", "source": "282", "target": "259", "attributes": { "weight": 1 } }, { "key": "3190", "source": "282", "target": "839", "attributes": { "weight": 1 } }, { "key": "22223", "source": "282", "target": "262", "attributes": { "weight": 1 } }, { "key": "778", "source": "282", "target": "264", "attributes": { "weight": 1 } }, { "key": "3189", "source": "282", "target": "287", "attributes": { "weight": 2 } }, { "key": "14654", "source": "283", "target": "263", "attributes": { "weight": 3 } }, { "key": "14657", "source": "283", "target": "304", "attributes": { "weight": 2 } }, { "key": "27559", "source": "283", "target": "168", "attributes": { "weight": 2 } }, { "key": "13198", "source": "283", "target": "312", "attributes": { "weight": 4 } }, { "key": "779", "source": "283", "target": "289", "attributes": { "weight": 3 } }, { "key": "13195", "source": "283", "target": "167", "attributes": { "weight": 4 } }, { "key": "14655", "source": "283", "target": "578", "attributes": { "weight": 2 } }, { "key": "13194", "source": "283", "target": "259", "attributes": { "weight": 4 } }, { "key": "37475", "source": "283", "target": "264", "attributes": { "weight": 1 } }, { "key": "22968", "source": "283", "target": "1933", "attributes": { "weight": 1 } }, { "key": "29796", "source": "283", "target": "260", "attributes": { "weight": 1 } }, { "key": "22967", "source": "283", "target": "301", "attributes": { "weight": 1 } }, { "key": "780", "source": "283", "target": "322", "attributes": { "weight": 3 } }, { "key": "13197", "source": "283", "target": "305", "attributes": { "weight": 2 } }, { "key": "13196", "source": "283", "target": "1909", "attributes": { "weight": 4 } }, { "key": "27560", "source": "283", "target": "180", "attributes": { "weight": 1 } }, { "key": "3191", "source": "283", "target": "839", "attributes": { "weight": 3 } }, { "key": "14656", "source": "283", "target": "300", "attributes": { "weight": 3 } }, { "key": "781", "source": "284", "target": "264", "attributes": { "weight": 7 } }, { "key": "13204", "source": "284", "target": "262", "attributes": { "weight": 3 } }, { "key": "13205", "source": "284", "target": "305", "attributes": { "weight": 3 } }, { "key": "13203", "source": "284", "target": "259", "attributes": { "weight": 2 } }, { "key": "27999", "source": "284", "target": "326", "attributes": { "weight": 1 } }, { "key": "13206", "source": "285", "target": "264", "attributes": { "weight": 2 } }, { "key": "28001", "source": "285", "target": "2721", "attributes": { "weight": 1 } }, { "key": "782", "source": "285", "target": "319", "attributes": { "weight": 9 } }, { "key": "28002", "source": "285", "target": "326", "attributes": { "weight": 1 } }, { "key": "14666", "source": "286", "target": "268", "attributes": { "weight": 1 } }, { "key": "13954", "source": "286", "target": "905", "attributes": { "weight": 2 } }, { "key": "28005", "source": "286", "target": "322", "attributes": { "weight": 1 } }, { "key": "28004", "source": "286", "target": "168", "attributes": { "weight": 1 } }, { "key": "783", "source": "286", "target": "262", "attributes": { "weight": 4 } }, { "key": "785", "source": "286", "target": "287", "attributes": { "weight": 4 } }, { "key": "13211", "source": "286", "target": "305", "attributes": { "weight": 3 } }, { "key": "13214", "source": "286", "target": "314", "attributes": { "weight": 3 } }, { "key": "786", "source": "286", "target": "299", "attributes": { "weight": 2 } }, { "key": "14665", "source": "286", "target": "261", "attributes": { "weight": 1 } }, { "key": "784", "source": "286", "target": "264", "attributes": { "weight": 4 } }, { "key": "22973", "source": "286", "target": "316", "attributes": { "weight": 1 } }, { "key": "14669", "source": "286", "target": "300", "attributes": { "weight": 2 } }, { "key": "13209", "source": "286", "target": "289", "attributes": { "weight": 3 } }, { "key": "13213", "source": "286", "target": "313", "attributes": { "weight": 3 } }, { "key": "13215", "source": "286", "target": "336", "attributes": { "weight": 3 } }, { "key": "14673", "source": "286", "target": "327", "attributes": { "weight": 3 } }, { "key": "22972", "source": "286", "target": "308", "attributes": { "weight": 1 } }, { "key": "22971", "source": "286", "target": "288", "attributes": { "weight": 2 } }, { "key": "17089", "source": "286", "target": "1621", "attributes": { "weight": 1 } }, { "key": "13212", "source": "286", "target": "312", "attributes": { "weight": 5 } }, { "key": "24794", "source": "286", "target": "311", "attributes": { "weight": 1 } }, { "key": "29204", "source": "286", "target": "278", "attributes": { "weight": 1 } }, { "key": "22974", "source": "286", "target": "321", "attributes": { "weight": 1 } }, { "key": "25983", "source": "286", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14671", "source": "286", "target": "318", "attributes": { "weight": 1 } }, { "key": "23441", "source": "286", "target": "166", "attributes": { "weight": 3 } }, { "key": "13955", "source": "286", "target": "180", "attributes": { "weight": 2 } }, { "key": "13210", "source": "286", "target": "304", "attributes": { "weight": 4 } }, { "key": "14672", "source": "286", "target": "326", "attributes": { "weight": 4 } }, { "key": "19012", "source": "286", "target": "839", "attributes": { "weight": 2 } }, { "key": "23442", "source": "286", "target": "307", "attributes": { "weight": 1 } }, { "key": "13208", "source": "286", "target": "259", "attributes": { "weight": 5 } }, { "key": "14667", "source": "286", "target": "277", "attributes": { "weight": 3 } }, { "key": "24793", "source": "286", "target": "275", "attributes": { "weight": 1 } }, { "key": "14670", "source": "286", "target": "301", "attributes": { "weight": 3 } }, { "key": "22970", "source": "286", "target": "260", "attributes": { "weight": 1 } }, { "key": "14668", "source": "286", "target": "906", "attributes": { "weight": 1 } }, { "key": "801", "source": "287", "target": "326", "attributes": { "weight": 8 } }, { "key": "14684", "source": "287", "target": "1991", "attributes": { "weight": 2 } }, { "key": "797", "source": "287", "target": "313", "attributes": { "weight": 3 } }, { "key": "2901", "source": "287", "target": "322", "attributes": { "weight": 8 } }, { "key": "2889", "source": "287", "target": "167", "attributes": { "weight": 8 } }, { "key": "28008", "source": "287", "target": "2004", "attributes": { "weight": 1 } }, { "key": "795", "source": "287", "target": "299", "attributes": { "weight": 2 } }, { "key": "799", "source": "287", "target": "180", "attributes": { "weight": 2 } }, { "key": "2892", "source": "287", "target": "291", "attributes": { "weight": 3 } }, { "key": "790", "source": "287", "target": "264", "attributes": { "weight": 9 } }, { "key": "2900", "source": "287", "target": "318", "attributes": { "weight": 4 } }, { "key": "2886", "source": "287", "target": "838", "attributes": { "weight": 3 } }, { "key": "2897", "source": "287", "target": "840", "attributes": { "weight": 3 } }, { "key": "12444", "source": "287", "target": "320", "attributes": { "weight": 1 } }, { "key": "13225", "source": "287", "target": "321", "attributes": { "weight": 3 } }, { "key": "14678", "source": "287", "target": "258", "attributes": { "weight": 2 } }, { "key": "13226", "source": "287", "target": "1931", "attributes": { "weight": 2 } }, { "key": "3195", "source": "287", "target": "282", "attributes": { "weight": 2 } }, { "key": "28009", "source": "287", "target": "1042", "attributes": { "weight": 1 } }, { "key": "14679", "source": "287", "target": "1974", "attributes": { "weight": 2 } }, { "key": "3199", "source": "287", "target": "908", "attributes": { "weight": 1 } }, { "key": "802", "source": "287", "target": "327", "attributes": { "weight": 8 } }, { "key": "28007", "source": "287", "target": "354", "attributes": { "weight": 1 } }, { "key": "2893", "source": "287", "target": "292", "attributes": { "weight": 6 } }, { "key": "792", "source": "287", "target": "286", "attributes": { "weight": 4 } }, { "key": "28018", "source": "287", "target": "1976", "attributes": { "weight": 1 } }, { "key": "9610", "source": "287", "target": "171", "attributes": { "weight": 2 } }, { "key": "28011", "source": "287", "target": "357", "attributes": { "weight": 1 } }, { "key": "28031", "source": "287", "target": "330", "attributes": { "weight": 1 } }, { "key": "27679", "source": "287", "target": "178", "attributes": { "weight": 2 } }, { "key": "28020", "source": "287", "target": "1851", "attributes": { "weight": 1 } }, { "key": "2888", "source": "287", "target": "276", "attributes": { "weight": 4 } }, { "key": "18394", "source": "287", "target": "1621", "attributes": { "weight": 1 } }, { "key": "2891", "source": "287", "target": "290", "attributes": { "weight": 3 } }, { "key": "11744", "source": "287", "target": "905", "attributes": { "weight": 1 } }, { "key": "3196", "source": "287", "target": "298", "attributes": { "weight": 2 } }, { "key": "28010", "source": "287", "target": "830", "attributes": { "weight": 1 } }, { "key": "28015", "source": "287", "target": "358", "attributes": { "weight": 1 } }, { "key": "3197", "source": "287", "target": "839", "attributes": { "weight": 5 } }, { "key": "793", "source": "287", "target": "289", "attributes": { "weight": 7 } }, { "key": "13221", "source": "287", "target": "1899", "attributes": { "weight": 2 } }, { "key": "28023", "source": "287", "target": "1919", "attributes": { "weight": 1 } }, { "key": "22975", "source": "287", "target": "334", "attributes": { "weight": 1 } }, { "key": "2899", "source": "287", "target": "841", "attributes": { "weight": 2 } }, { "key": "787", "source": "287", "target": "260", "attributes": { "weight": 7 } }, { "key": "14683", "source": "287", "target": "1933", "attributes": { "weight": 1 } }, { "key": "28012", "source": "287", "target": "1857", "attributes": { "weight": 1 } }, { "key": "28006", "source": "287", "target": "164", "attributes": { "weight": 2 } }, { "key": "28022", "source": "287", "target": "906", "attributes": { "weight": 1 } }, { "key": "28027", "source": "287", "target": "2722", "attributes": { "weight": 1 } }, { "key": "2903", "source": "287", "target": "842", "attributes": { "weight": 1 } }, { "key": "2904", "source": "287", "target": "331", "attributes": { "weight": 1 } }, { "key": "8797", "source": "287", "target": "259", "attributes": { "weight": 6 } }, { "key": "800", "source": "287", "target": "324", "attributes": { "weight": 1 } }, { "key": "14264", "source": "287", "target": "168", "attributes": { "weight": 4 } }, { "key": "28029", "source": "287", "target": "1642", "attributes": { "weight": 2 } }, { "key": "28028", "source": "287", "target": "175", "attributes": { "weight": 1 } }, { "key": "2890", "source": "287", "target": "288", "attributes": { "weight": 1 } }, { "key": "789", "source": "287", "target": "263", "attributes": { "weight": 8 } }, { "key": "28026", "source": "287", "target": "1985", "attributes": { "weight": 1 } }, { "key": "25738", "source": "287", "target": "278", "attributes": { "weight": 2 } }, { "key": "2902", "source": "287", "target": "328", "attributes": { "weight": 1 } }, { "key": "2895", "source": "287", "target": "304", "attributes": { "weight": 6 } }, { "key": "798", "source": "287", "target": "314", "attributes": { "weight": 6 } }, { "key": "2887", "source": "287", "target": "166", "attributes": { "weight": 4 } }, { "key": "3198", "source": "287", "target": "308", "attributes": { "weight": 4 } }, { "key": "791", "source": "287", "target": "281", "attributes": { "weight": 10 } }, { "key": "13223", "source": "287", "target": "312", "attributes": { "weight": 6 } }, { "key": "14680", "source": "287", "target": "272", "attributes": { "weight": 3 } }, { "key": "28013", "source": "287", "target": "268", "attributes": { "weight": 1 } }, { "key": "13224", "source": "287", "target": "316", "attributes": { "weight": 3 } }, { "key": "3194", "source": "287", "target": "901", "attributes": { "weight": 1 } }, { "key": "796", "source": "287", "target": "300", "attributes": { "weight": 8 } }, { "key": "14685", "source": "287", "target": "336", "attributes": { "weight": 1 } }, { "key": "28025", "source": "287", "target": "578", "attributes": { "weight": 1 } }, { "key": "17998", "source": "287", "target": "1918", "attributes": { "weight": 1 } }, { "key": "2894", "source": "287", "target": "301", "attributes": { "weight": 6 } }, { "key": "13222", "source": "287", "target": "176", "attributes": { "weight": 2 } }, { "key": "26172", "source": "287", "target": "265", "attributes": { "weight": 2 } }, { "key": "28024", "source": "287", "target": "687", "attributes": { "weight": 1 } }, { "key": "2885", "source": "287", "target": "837", "attributes": { "weight": 3 } }, { "key": "794", "source": "287", "target": "293", "attributes": { "weight": 3 } }, { "key": "28021", "source": "287", "target": "294", "attributes": { "weight": 1 } }, { "key": "28019", "source": "287", "target": "361", "attributes": { "weight": 1 } }, { "key": "788", "source": "287", "target": "262", "attributes": { "weight": 9 } }, { "key": "28016", "source": "287", "target": "169", "attributes": { "weight": 1 } }, { "key": "2898", "source": "287", "target": "311", "attributes": { "weight": 3 } }, { "key": "28014", "source": "287", "target": "270", "attributes": { "weight": 1 } }, { "key": "2896", "source": "287", "target": "305", "attributes": { "weight": 7 } }, { "key": "23278", "source": "287", "target": "1973", "attributes": { "weight": 1 } }, { "key": "803", "source": "287", "target": "329", "attributes": { "weight": 1 } }, { "key": "28030", "source": "287", "target": "325", "attributes": { "weight": 1 } }, { "key": "14681", "source": "287", "target": "1983", "attributes": { "weight": 2 } }, { "key": "804", "source": "288", "target": "264", "attributes": { "weight": 1 } }, { "key": "2906", "source": "288", "target": "287", "attributes": { "weight": 1 } }, { "key": "13227", "source": "288", "target": "304", "attributes": { "weight": 3 } }, { "key": "2905", "source": "288", "target": "167", "attributes": { "weight": 1 } }, { "key": "28032", "source": "288", "target": "839", "attributes": { "weight": 1 } }, { "key": "14687", "source": "288", "target": "312", "attributes": { "weight": 1 } }, { "key": "22976", "source": "288", "target": "286", "attributes": { "weight": 2 } }, { "key": "22977", "source": "288", "target": "336", "attributes": { "weight": 1 } }, { "key": "14686", "source": "288", "target": "259", "attributes": { "weight": 1 } }, { "key": "805", "source": "288", "target": "327", "attributes": { "weight": 1 } }, { "key": "13234", "source": "289", "target": "262", "attributes": { "weight": 5 } }, { "key": "14695", "source": "289", "target": "838", "attributes": { "weight": 1 } }, { "key": "13241", "source": "289", "target": "322", "attributes": { "weight": 5 } }, { "key": "14697", "source": "289", "target": "169", "attributes": { "weight": 1 } }, { "key": "2908", "source": "289", "target": "300", "attributes": { "weight": 4 } }, { "key": "13244", "source": "289", "target": "336", "attributes": { "weight": 3 } }, { "key": "14702", "source": "289", "target": "319", "attributes": { "weight": 1 } }, { "key": "13243", "source": "289", "target": "327", "attributes": { "weight": 3 } }, { "key": "2909", "source": "289", "target": "178", "attributes": { "weight": 1 } }, { "key": "14703", "source": "289", "target": "328", "attributes": { "weight": 1 } }, { "key": "13235", "source": "289", "target": "276", "attributes": { "weight": 2 } }, { "key": "13232", "source": "289", "target": "259", "attributes": { "weight": 4 } }, { "key": "810", "source": "289", "target": "291", "attributes": { "weight": 1 } }, { "key": "14701", "source": "289", "target": "180", "attributes": { "weight": 2 } }, { "key": "14699", "source": "289", "target": "179", "attributes": { "weight": 1 } }, { "key": "13240", "source": "289", "target": "314", "attributes": { "weight": 2 } }, { "key": "13238", "source": "289", "target": "305", "attributes": { "weight": 5 } }, { "key": "14698", "source": "289", "target": "301", "attributes": { "weight": 2 } }, { "key": "13239", "source": "289", "target": "312", "attributes": { "weight": 5 } }, { "key": "22226", "source": "289", "target": "1969", "attributes": { "weight": 1 } }, { "key": "13237", "source": "289", "target": "304", "attributes": { "weight": 4 } }, { "key": "3200", "source": "289", "target": "839", "attributes": { "weight": 6 } }, { "key": "24795", "source": "289", "target": "331", "attributes": { "weight": 1 } }, { "key": "14694", "source": "289", "target": "263", "attributes": { "weight": 6 } }, { "key": "2907", "source": "289", "target": "292", "attributes": { "weight": 2 } }, { "key": "13242", "source": "289", "target": "326", "attributes": { "weight": 8 } }, { "key": "14700", "source": "289", "target": "313", "attributes": { "weight": 1 } }, { "key": "13233", "source": "289", "target": "260", "attributes": { "weight": 7 } }, { "key": "809", "source": "289", "target": "287", "attributes": { "weight": 7 } }, { "key": "811", "source": "289", "target": "311", "attributes": { "weight": 4 } }, { "key": "813", "source": "289", "target": "329", "attributes": { "weight": 2 } }, { "key": "806", "source": "289", "target": "264", "attributes": { "weight": 6 } }, { "key": "22230", "source": "289", "target": "1919", "attributes": { "weight": 1 } }, { "key": "812", "source": "289", "target": "321", "attributes": { "weight": 3 } }, { "key": "23726", "source": "289", "target": "168", "attributes": { "weight": 1 } }, { "key": "22227", "source": "289", "target": "1973", "attributes": { "weight": 1 } }, { "key": "14696", "source": "289", "target": "272", "attributes": { "weight": 3 } }, { "key": "807", "source": "289", "target": "167", "attributes": { "weight": 6 } }, { "key": "22228", "source": "289", "target": "1975", "attributes": { "weight": 2 } }, { "key": "22229", "source": "289", "target": "290", "attributes": { "weight": 2 } }, { "key": "13236", "source": "289", "target": "286", "attributes": { "weight": 3 } }, { "key": "22982", "source": "289", "target": "318", "attributes": { "weight": 1 } }, { "key": "22981", "source": "289", "target": "1853", "attributes": { "weight": 1 } }, { "key": "808", "source": "289", "target": "283", "attributes": { "weight": 3 } }, { "key": "22980", "source": "289", "target": "298", "attributes": { "weight": 1 } }, { "key": "22231", "source": "289", "target": "2311", "attributes": { "weight": 1 } }, { "key": "22978", "source": "289", "target": "166", "attributes": { "weight": 3 } }, { "key": "13246", "source": "290", "target": "262", "attributes": { "weight": 6 } }, { "key": "14704", "source": "290", "target": "259", "attributes": { "weight": 1 } }, { "key": "12445", "source": "290", "target": "316", "attributes": { "weight": 1 } }, { "key": "14708", "source": "290", "target": "314", "attributes": { "weight": 2 } }, { "key": "22234", "source": "290", "target": "289", "attributes": { "weight": 2 } }, { "key": "3201", "source": "290", "target": "167", "attributes": { "weight": 8 } }, { "key": "22983", "source": "290", "target": "166", "attributes": { "weight": 3 } }, { "key": "29571", "source": "290", "target": "164", "attributes": { "weight": 1 } }, { "key": "816", "source": "290", "target": "311", "attributes": { "weight": 1 } }, { "key": "13245", "source": "290", "target": "260", "attributes": { "weight": 6 } }, { "key": "29208", "source": "290", "target": "582", "attributes": { "weight": 1 } }, { "key": "23446", "source": "290", "target": "318", "attributes": { "weight": 2 } }, { "key": "13247", "source": "290", "target": "264", "attributes": { "weight": 5 } }, { "key": "28035", "source": "290", "target": "276", "attributes": { "weight": 1 } }, { "key": "13248", "source": "290", "target": "272", "attributes": { "weight": 4 } }, { "key": "14709", "source": "290", "target": "321", "attributes": { "weight": 1 } }, { "key": "9659", "source": "290", "target": "171", "attributes": { "weight": 1 } }, { "key": "14707", "source": "290", "target": "179", "attributes": { "weight": 1 } }, { "key": "28034", "source": "290", "target": "265", "attributes": { "weight": 1 } }, { "key": "815", "source": "290", "target": "308", "attributes": { "weight": 2 } }, { "key": "13251", "source": "290", "target": "304", "attributes": { "weight": 5 } }, { "key": "13252", "source": "290", "target": "312", "attributes": { "weight": 3 } }, { "key": "13253", "source": "290", "target": "326", "attributes": { "weight": 6 } }, { "key": "14710", "source": "290", "target": "322", "attributes": { "weight": 1 } }, { "key": "22233", "source": "290", "target": "258", "attributes": { "weight": 1 } }, { "key": "2911", "source": "290", "target": "327", "attributes": { "weight": 6 } }, { "key": "14265", "source": "290", "target": "168", "attributes": { "weight": 3 } }, { "key": "24796", "source": "290", "target": "292", "attributes": { "weight": 1 } }, { "key": "22985", "source": "290", "target": "336", "attributes": { "weight": 1 } }, { "key": "28036", "source": "290", "target": "278", "attributes": { "weight": 2 } }, { "key": "22984", "source": "290", "target": "291", "attributes": { "weight": 1 } }, { "key": "13250", "source": "290", "target": "300", "attributes": { "weight": 4 } }, { "key": "19013", "source": "290", "target": "839", "attributes": { "weight": 2 } }, { "key": "14705", "source": "290", "target": "301", "attributes": { "weight": 2 } }, { "key": "14706", "source": "290", "target": "307", "attributes": { "weight": 1 } }, { "key": "3202", "source": "290", "target": "305", "attributes": { "weight": 7 } }, { "key": "22232", "source": "290", "target": "2309", "attributes": { "weight": 1 } }, { "key": "2910", "source": "290", "target": "287", "attributes": { "weight": 3 } }, { "key": "12594", "source": "290", "target": "180", "attributes": { "weight": 2 } }, { "key": "13249", "source": "290", "target": "299", "attributes": { "weight": 4 } }, { "key": "22987", "source": "291", "target": "2397", "attributes": { "weight": 3 } }, { "key": "821", "source": "291", "target": "289", "attributes": { "weight": 1 } }, { "key": "13261", "source": "291", "target": "326", "attributes": { "weight": 6 } }, { "key": "818", "source": "291", "target": "264", "attributes": { "weight": 4 } }, { "key": "13256", "source": "291", "target": "260", "attributes": { "weight": 4 } }, { "key": "14718", "source": "291", "target": "322", "attributes": { "weight": 3 } }, { "key": "33114", "source": "291", "target": "294", "attributes": { "weight": 1 } }, { "key": "13259", "source": "291", "target": "314", "attributes": { "weight": 4 } }, { "key": "22990", "source": "291", "target": "2399", "attributes": { "weight": 1 } }, { "key": "13260", "source": "291", "target": "318", "attributes": { "weight": 4 } }, { "key": "2913", "source": "291", "target": "319", "attributes": { "weight": 9 } }, { "key": "13257", "source": "291", "target": "167", "attributes": { "weight": 3 } }, { "key": "14716", "source": "291", "target": "263", "attributes": { "weight": 4 } }, { "key": "3203", "source": "291", "target": "305", "attributes": { "weight": 3 } }, { "key": "28038", "source": "291", "target": "300", "attributes": { "weight": 1 } }, { "key": "22988", "source": "291", "target": "2398", "attributes": { "weight": 1 } }, { "key": "23448", "source": "291", "target": "276", "attributes": { "weight": 1 } }, { "key": "822", "source": "291", "target": "316", "attributes": { "weight": 2 } }, { "key": "23449", "source": "291", "target": "312", "attributes": { "weight": 1 } }, { "key": "13258", "source": "291", "target": "304", "attributes": { "weight": 5 } }, { "key": "2912", "source": "291", "target": "287", "attributes": { "weight": 3 } }, { "key": "13262", "source": "291", "target": "1931", "attributes": { "weight": 2 } }, { "key": "19014", "source": "291", "target": "839", "attributes": { "weight": 2 } }, { "key": "819", "source": "291", "target": "269", "attributes": { "weight": 2 } }, { "key": "28039", "source": "291", "target": "308", "attributes": { "weight": 1 } }, { "key": "14715", "source": "291", "target": "259", "attributes": { "weight": 2 } }, { "key": "14717", "source": "291", "target": "307", "attributes": { "weight": 1 } }, { "key": "24797", "source": "291", "target": "301", "attributes": { "weight": 1 } }, { "key": "817", "source": "291", "target": "262", "attributes": { "weight": 3 } }, { "key": "820", "source": "291", "target": "280", "attributes": { "weight": 3 } }, { "key": "23450", "source": "291", "target": "180", "attributes": { "weight": 1 } }, { "key": "22989", "source": "291", "target": "290", "attributes": { "weight": 1 } }, { "key": "28040", "source": "292", "target": "168", "attributes": { "weight": 1 } }, { "key": "2919", "source": "292", "target": "289", "attributes": { "weight": 2 } }, { "key": "2916", "source": "292", "target": "276", "attributes": { "weight": 1 } }, { "key": "28042", "source": "292", "target": "841", "attributes": { "weight": 1 } }, { "key": "824", "source": "292", "target": "264", "attributes": { "weight": 5 } }, { "key": "2923", "source": "292", "target": "318", "attributes": { "weight": 1 } }, { "key": "32942", "source": "292", "target": "178", "attributes": { "weight": 1 } }, { "key": "24798", "source": "292", "target": "259", "attributes": { "weight": 2 } }, { "key": "28041", "source": "292", "target": "839", "attributes": { "weight": 1 } }, { "key": "2924", "source": "292", "target": "322", "attributes": { "weight": 3 } }, { "key": "2918", "source": "292", "target": "287", "attributes": { "weight": 7 } }, { "key": "24801", "source": "292", "target": "314", "attributes": { "weight": 1 } }, { "key": "2925", "source": "292", "target": "326", "attributes": { "weight": 5 } }, { "key": "823", "source": "292", "target": "262", "attributes": { "weight": 7 } }, { "key": "2915", "source": "292", "target": "263", "attributes": { "weight": 2 } }, { "key": "2917", "source": "292", "target": "281", "attributes": { "weight": 5 } }, { "key": "13264", "source": "292", "target": "304", "attributes": { "weight": 4 } }, { "key": "8211", "source": "292", "target": "180", "attributes": { "weight": 1 } }, { "key": "13263", "source": "292", "target": "167", "attributes": { "weight": 5 } }, { "key": "2922", "source": "292", "target": "312", "attributes": { "weight": 1 } }, { "key": "24799", "source": "292", "target": "290", "attributes": { "weight": 1 } }, { "key": "24800", "source": "292", "target": "308", "attributes": { "weight": 1 } }, { "key": "29209", "source": "292", "target": "278", "attributes": { "weight": 1 } }, { "key": "2914", "source": "292", "target": "260", "attributes": { "weight": 1 } }, { "key": "2920", "source": "292", "target": "299", "attributes": { "weight": 1 } }, { "key": "2921", "source": "292", "target": "300", "attributes": { "weight": 2 } }, { "key": "825", "source": "292", "target": "298", "attributes": { "weight": 1 } }, { "key": "26173", "source": "292", "target": "301", "attributes": { "weight": 1 } }, { "key": "827", "source": "293", "target": "287", "attributes": { "weight": 3 } }, { "key": "826", "source": "293", "target": "264", "attributes": { "weight": 1 } }, { "key": "28045", "source": "293", "target": "259", "attributes": { "weight": 1 } }, { "key": "2926", "source": "293", "target": "304", "attributes": { "weight": 1 } }, { "key": "831", "source": "294", "target": "326", "attributes": { "weight": 3 } }, { "key": "828", "source": "294", "target": "262", "attributes": { "weight": 8 } }, { "key": "33119", "source": "294", "target": "298", "attributes": { "weight": 1 } }, { "key": "33115", "source": "294", "target": "1895", "attributes": { "weight": 1 } }, { "key": "28047", "source": "294", "target": "287", "attributes": { "weight": 1 } }, { "key": "13265", "source": "294", "target": "361", "attributes": { "weight": 1 } }, { "key": "33120", "source": "294", "target": "2721", "attributes": { "weight": 1 } }, { "key": "33118", "source": "294", "target": "296", "attributes": { "weight": 1 } }, { "key": "832", "source": "294", "target": "328", "attributes": { "weight": 2 } }, { "key": "13266", "source": "294", "target": "304", "attributes": { "weight": 2 } }, { "key": "28046", "source": "294", "target": "837", "attributes": { "weight": 1 } }, { "key": "829", "source": "294", "target": "264", "attributes": { "weight": 5 } }, { "key": "33117", "source": "294", "target": "291", "attributes": { "weight": 1 } }, { "key": "830", "source": "294", "target": "273", "attributes": { "weight": 1 } }, { "key": "22992", "source": "295", "target": "263", "attributes": { "weight": 1 } }, { "key": "13268", "source": "295", "target": "307", "attributes": { "weight": 2 } }, { "key": "13267", "source": "295", "target": "259", "attributes": { "weight": 2 } }, { "key": "28057", "source": "295", "target": "304", "attributes": { "weight": 1 } }, { "key": "833", "source": "295", "target": "326", "attributes": { "weight": 1 } }, { "key": "28058", "source": "295", "target": "305", "attributes": { "weight": 1 } }, { "key": "22996", "source": "295", "target": "1933", "attributes": { "weight": 1 } }, { "key": "22995", "source": "295", "target": "322", "attributes": { "weight": 1 } }, { "key": "28056", "source": "295", "target": "167", "attributes": { "weight": 1 } }, { "key": "22993", "source": "295", "target": "268", "attributes": { "weight": 1 } }, { "key": "22994", "source": "295", "target": "321", "attributes": { "weight": 1 } }, { "key": "25985", "source": "295", "target": "2622", "attributes": { "weight": 2 } }, { "key": "19016", "source": "295", "target": "839", "attributes": { "weight": 2 } }, { "key": "23451", "source": "295", "target": "312", "attributes": { "weight": 1 } }, { "key": "834", "source": "296", "target": "264", "attributes": { "weight": 4 } }, { "key": "33121", "source": "296", "target": "294", "attributes": { "weight": 1 } }, { "key": "15126", "source": "297", "target": "171", "attributes": { "weight": 4 } }, { "key": "22509", "source": "297", "target": "567", "attributes": { "weight": 1 } }, { "key": "25191", "source": "297", "target": "1996", "attributes": { "weight": 3 } }, { "key": "25182", "source": "297", "target": "165", "attributes": { "weight": 3 } }, { "key": "17493", "source": "297", "target": "178", "attributes": { "weight": 7 } }, { "key": "18502", "source": "297", "target": "1280", "attributes": { "weight": 3 } }, { "key": "25183", "source": "297", "target": "2556", "attributes": { "weight": 4 } }, { "key": "835", "source": "297", "target": "264", "attributes": { "weight": 1 } }, { "key": "33019", "source": "297", "target": "2560", "attributes": { "weight": 1 } }, { "key": "30229", "source": "297", "target": "2958", "attributes": { "weight": 1 } }, { "key": "14732", "source": "297", "target": "259", "attributes": { "weight": 1 } }, { "key": "11203", "source": "297", "target": "1036", "attributes": { "weight": 3 } }, { "key": "35378", "source": "297", "target": "2803", "attributes": { "weight": 1 } }, { "key": "25188", "source": "297", "target": "2559", "attributes": { "weight": 3 } }, { "key": "22510", "source": "297", "target": "572", "attributes": { "weight": 4 } }, { "key": "25190", "source": "297", "target": "2561", "attributes": { "weight": 2 } }, { "key": "30234", "source": "297", "target": "177", "attributes": { "weight": 2 } }, { "key": "17492", "source": "297", "target": "358", "attributes": { "weight": 2 } }, { "key": "9508", "source": "297", "target": "419", "attributes": { "weight": 1 } }, { "key": "37553", "source": "297", "target": "3046", "attributes": { "weight": 1 } }, { "key": "5548", "source": "297", "target": "338", "attributes": { "weight": 4 } }, { "key": "12379", "source": "297", "target": "565", "attributes": { "weight": 1 } }, { "key": "30233", "source": "297", "target": "2974", "attributes": { "weight": 1 } }, { "key": "30231", "source": "297", "target": "2967", "attributes": { "weight": 1 } }, { "key": "35377", "source": "297", "target": "2959", "attributes": { "weight": 1 } }, { "key": "37555", "source": "297", "target": "3399", "attributes": { "weight": 1 } }, { "key": "37556", "source": "297", "target": "3400", "attributes": { "weight": 1 } }, { "key": "5546", "source": "297", "target": "1166", "attributes": { "weight": 5 } }, { "key": "25181", "source": "297", "target": "1187", "attributes": { "weight": 4 } }, { "key": "25185", "source": "297", "target": "1227", "attributes": { "weight": 2 } }, { "key": "25179", "source": "297", "target": "2554", "attributes": { "weight": 1 } }, { "key": "25180", "source": "297", "target": "1178", "attributes": { "weight": 4 } }, { "key": "17491", "source": "297", "target": "1146", "attributes": { "weight": 8 } }, { "key": "37557", "source": "297", "target": "2977", "attributes": { "weight": 1 } }, { "key": "13274", "source": "297", "target": "305", "attributes": { "weight": 4 } }, { "key": "25189", "source": "297", "target": "580", "attributes": { "weight": 1 } }, { "key": "25184", "source": "297", "target": "169", "attributes": { "weight": 1 } }, { "key": "30467", "source": "297", "target": "1046", "attributes": { "weight": 1 } }, { "key": "30228", "source": "297", "target": "1151", "attributes": { "weight": 2 } }, { "key": "25192", "source": "297", "target": "1341", "attributes": { "weight": 1 } }, { "key": "25186", "source": "297", "target": "2557", "attributes": { "weight": 2 } }, { "key": "10910", "source": "297", "target": "168", "attributes": { "weight": 3 } }, { "key": "29813", "source": "297", "target": "93", "attributes": { "weight": 1 } }, { "key": "5547", "source": "297", "target": "1177", "attributes": { "weight": 3 } }, { "key": "37554", "source": "297", "target": "3048", "attributes": { "weight": 1 } }, { "key": "37552", "source": "297", "target": "2953", "attributes": { "weight": 1 } }, { "key": "17494", "source": "297", "target": "2120", "attributes": { "weight": 5 } }, { "key": "5545", "source": "297", "target": "1143", "attributes": { "weight": 5 } }, { "key": "25187", "source": "297", "target": "2558", "attributes": { "weight": 3 } }, { "key": "30232", "source": "297", "target": "2971", "attributes": { "weight": 3 } }, { "key": "5549", "source": "297", "target": "173", "attributes": { "weight": 5 } }, { "key": "25178", "source": "297", "target": "164", "attributes": { "weight": 3 } }, { "key": "5550", "source": "297", "target": "310", "attributes": { "weight": 7 } }, { "key": "30230", "source": "297", "target": "2961", "attributes": { "weight": 1 } }, { "key": "25193", "source": "297", "target": "2121", "attributes": { "weight": 1 } }, { "key": "13289", "source": "298", "target": "260", "attributes": { "weight": 2 } }, { "key": "33122", "source": "298", "target": "294", "attributes": { "weight": 1 } }, { "key": "839", "source": "298", "target": "328", "attributes": { "weight": 1 } }, { "key": "13291", "source": "298", "target": "312", "attributes": { "weight": 2 } }, { "key": "837", "source": "298", "target": "300", "attributes": { "weight": 1 } }, { "key": "836", "source": "298", "target": "292", "attributes": { "weight": 1 } }, { "key": "838", "source": "298", "target": "311", "attributes": { "weight": 1 } }, { "key": "19017", "source": "298", "target": "305", "attributes": { "weight": 2 } }, { "key": "3209", "source": "298", "target": "307", "attributes": { "weight": 1 } }, { "key": "23001", "source": "298", "target": "289", "attributes": { "weight": 1 } }, { "key": "3208", "source": "298", "target": "839", "attributes": { "weight": 1 } }, { "key": "3207", "source": "298", "target": "287", "attributes": { "weight": 2 } }, { "key": "13290", "source": "298", "target": "304", "attributes": { "weight": 2 } }, { "key": "14736", "source": "298", "target": "263", "attributes": { "weight": 2 } }, { "key": "28642", "source": "298", "target": "326", "attributes": { "weight": 1 } }, { "key": "14735", "source": "298", "target": "259", "attributes": { "weight": 1 } }, { "key": "13300", "source": "299", "target": "578", "attributes": { "weight": 2 } }, { "key": "28078", "source": "299", "target": "326", "attributes": { "weight": 1 } }, { "key": "13299", "source": "299", "target": "290", "attributes": { "weight": 4 } }, { "key": "14755", "source": "299", "target": "312", "attributes": { "weight": 4 } }, { "key": "28643", "source": "299", "target": "308", "attributes": { "weight": 1 } }, { "key": "14752", "source": "299", "target": "263", "attributes": { "weight": 5 } }, { "key": "14753", "source": "299", "target": "268", "attributes": { "weight": 4 } }, { "key": "23454", "source": "299", "target": "2449", "attributes": { "weight": 1 } }, { "key": "2927", "source": "299", "target": "292", "attributes": { "weight": 1 } }, { "key": "13298", "source": "299", "target": "264", "attributes": { "weight": 3 } }, { "key": "8216", "source": "299", "target": "180", "attributes": { "weight": 3 } }, { "key": "842", "source": "299", "target": "277", "attributes": { "weight": 2 } }, { "key": "846", "source": "299", "target": "311", "attributes": { "weight": 2 } }, { "key": "28077", "source": "299", "target": "697", "attributes": { "weight": 1 } }, { "key": "845", "source": "299", "target": "307", "attributes": { "weight": 1 } }, { "key": "13301", "source": "299", "target": "304", "attributes": { "weight": 5 } }, { "key": "13302", "source": "299", "target": "313", "attributes": { "weight": 5 } }, { "key": "8215", "source": "299", "target": "1513", "attributes": { "weight": 2 } }, { "key": "841", "source": "299", "target": "166", "attributes": { "weight": 2 } }, { "key": "14757", "source": "299", "target": "327", "attributes": { "weight": 3 } }, { "key": "14751", "source": "299", "target": "261", "attributes": { "weight": 2 } }, { "key": "28644", "source": "299", "target": "336", "attributes": { "weight": 1 } }, { "key": "14756", "source": "299", "target": "322", "attributes": { "weight": 2 } }, { "key": "843", "source": "299", "target": "286", "attributes": { "weight": 2 } }, { "key": "12599", "source": "299", "target": "905", "attributes": { "weight": 1 } }, { "key": "29212", "source": "299", "target": "278", "attributes": { "weight": 1 } }, { "key": "14754", "source": "299", "target": "179", "attributes": { "weight": 2 } }, { "key": "844", "source": "299", "target": "287", "attributes": { "weight": 2 } }, { "key": "26027", "source": "299", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14271", "source": "299", "target": "168", "attributes": { "weight": 4 } }, { "key": "32944", "source": "299", "target": "178", "attributes": { "weight": 1 } }, { "key": "2928", "source": "299", "target": "331", "attributes": { "weight": 1 } }, { "key": "28075", "source": "299", "target": "164", "attributes": { "weight": 1 } }, { "key": "18400", "source": "299", "target": "1621", "attributes": { "weight": 1 } }, { "key": "14750", "source": "299", "target": "259", "attributes": { "weight": 3 } }, { "key": "840", "source": "299", "target": "262", "attributes": { "weight": 3 } }, { "key": "12447", "source": "299", "target": "316", "attributes": { "weight": 2 } }, { "key": "28076", "source": "299", "target": "260", "attributes": { "weight": 1 } }, { "key": "28084", "source": "300", "target": "905", "attributes": { "weight": 1 } }, { "key": "28085", "source": "300", "target": "291", "attributes": { "weight": 1 } }, { "key": "13312", "source": "300", "target": "301", "attributes": { "weight": 3 } }, { "key": "11745", "source": "300", "target": "1513", "attributes": { "weight": 1 } }, { "key": "8217", "source": "300", "target": "180", "attributes": { "weight": 3 } }, { "key": "25037", "source": "300", "target": "170", "attributes": { "weight": 2 } }, { "key": "33124", "source": "300", "target": "328", "attributes": { "weight": 1 } }, { "key": "13317", "source": "300", "target": "326", "attributes": { "weight": 6 } }, { "key": "28086", "source": "300", "target": "305", "attributes": { "weight": 1 } }, { "key": "13318", "source": "300", "target": "327", "attributes": { "weight": 8 } }, { "key": "2929", "source": "300", "target": "263", "attributes": { "weight": 6 } }, { "key": "13311", "source": "300", "target": "578", "attributes": { "weight": 2 } }, { "key": "13319", "source": "300", "target": "1854", "attributes": { "weight": 3 } }, { "key": "28091", "source": "300", "target": "908", "attributes": { "weight": 1 } }, { "key": "14763", "source": "300", "target": "286", "attributes": { "weight": 2 } }, { "key": "28083", "source": "300", "target": "278", "attributes": { "weight": 2 } }, { "key": "23004", "source": "300", "target": "270", "attributes": { "weight": 1 } }, { "key": "28090", "source": "300", "target": "1931", "attributes": { "weight": 1 } }, { "key": "14764", "source": "300", "target": "179", "attributes": { "weight": 2 } }, { "key": "28082", "source": "300", "target": "1897", "attributes": { "weight": 1 } }, { "key": "14765", "source": "300", "target": "319", "attributes": { "weight": 1 } }, { "key": "13309", "source": "300", "target": "166", "attributes": { "weight": 5 } }, { "key": "28089", "source": "300", "target": "1925", "attributes": { "weight": 1 } }, { "key": "28088", "source": "300", "target": "310", "attributes": { "weight": 2 } }, { "key": "850", "source": "300", "target": "271", "attributes": { "weight": 2 } }, { "key": "33154", "source": "300", "target": "178", "attributes": { "weight": 1 } }, { "key": "28080", "source": "300", "target": "836", "attributes": { "weight": 1 } }, { "key": "14273", "source": "300", "target": "168", "attributes": { "weight": 6 } }, { "key": "2930", "source": "300", "target": "289", "attributes": { "weight": 4 } }, { "key": "852", "source": "300", "target": "287", "attributes": { "weight": 8 } }, { "key": "13313", "source": "300", "target": "304", "attributes": { "weight": 4 } }, { "key": "13310", "source": "300", "target": "290", "attributes": { "weight": 4 } }, { "key": "13305", "source": "300", "target": "259", "attributes": { "weight": 6 } }, { "key": "847", "source": "300", "target": "261", "attributes": { "weight": 6 } }, { "key": "13316", "source": "300", "target": "318", "attributes": { "weight": 3 } }, { "key": "2931", "source": "300", "target": "292", "attributes": { "weight": 2 } }, { "key": "14762", "source": "300", "target": "283", "attributes": { "weight": 3 } }, { "key": "13306", "source": "300", "target": "268", "attributes": { "weight": 5 } }, { "key": "854", "source": "300", "target": "311", "attributes": { "weight": 3 } }, { "key": "25038", "source": "300", "target": "580", "attributes": { "weight": 2 } }, { "key": "851", "source": "300", "target": "277", "attributes": { "weight": 3 } }, { "key": "848", "source": "300", "target": "262", "attributes": { "weight": 5 } }, { "key": "853", "source": "300", "target": "298", "attributes": { "weight": 1 } }, { "key": "13314", "source": "300", "target": "312", "attributes": { "weight": 5 } }, { "key": "14760", "source": "300", "target": "275", "attributes": { "weight": 3 } }, { "key": "13308", "source": "300", "target": "454", "attributes": { "weight": 2 } }, { "key": "28087", "source": "300", "target": "308", "attributes": { "weight": 2 } }, { "key": "849", "source": "300", "target": "264", "attributes": { "weight": 5 } }, { "key": "13315", "source": "300", "target": "313", "attributes": { "weight": 3 } }, { "key": "25749", "source": "300", "target": "582", "attributes": { "weight": 2 } }, { "key": "3210", "source": "300", "target": "307", "attributes": { "weight": 6 } }, { "key": "28081", "source": "300", "target": "260", "attributes": { "weight": 1 } }, { "key": "13307", "source": "300", "target": "272", "attributes": { "weight": 8 } }, { "key": "23005", "source": "301", "target": "276", "attributes": { "weight": 1 } }, { "key": "13320", "source": "301", "target": "259", "attributes": { "weight": 3 } }, { "key": "22609", "source": "301", "target": "1513", "attributes": { "weight": 1 } }, { "key": "14774", "source": "301", "target": "179", "attributes": { "weight": 1 } }, { "key": "14771", "source": "301", "target": "289", "attributes": { "weight": 2 } }, { "key": "13327", "source": "301", "target": "327", "attributes": { "weight": 6 } }, { "key": "13325", "source": "301", "target": "304", "attributes": { "weight": 4 } }, { "key": "13321", "source": "301", "target": "260", "attributes": { "weight": 4 } }, { "key": "12449", "source": "301", "target": "326", "attributes": { "weight": 5 } }, { "key": "14775", "source": "301", "target": "180", "attributes": { "weight": 2 } }, { "key": "22240", "source": "301", "target": "2311", "attributes": { "weight": 1 } }, { "key": "14772", "source": "301", "target": "290", "attributes": { "weight": 2 } }, { "key": "28095", "source": "301", "target": "178", "attributes": { "weight": 1 } }, { "key": "14767", "source": "301", "target": "164", "attributes": { "weight": 2 } }, { "key": "28093", "source": "301", "target": "174", "attributes": { "weight": 1 } }, { "key": "13326", "source": "301", "target": "311", "attributes": { "weight": 4 } }, { "key": "28096", "source": "301", "target": "1642", "attributes": { "weight": 1 } }, { "key": "856", "source": "301", "target": "264", "attributes": { "weight": 3 } }, { "key": "23007", "source": "301", "target": "1919", "attributes": { "weight": 1 } }, { "key": "3211", "source": "301", "target": "839", "attributes": { "weight": 5 } }, { "key": "28094", "source": "301", "target": "176", "attributes": { "weight": 1 } }, { "key": "13322", "source": "301", "target": "167", "attributes": { "weight": 4 } }, { "key": "12448", "source": "301", "target": "312", "attributes": { "weight": 5 } }, { "key": "857", "source": "301", "target": "177", "attributes": { "weight": 1 } }, { "key": "855", "source": "301", "target": "262", "attributes": { "weight": 4 } }, { "key": "14770", "source": "301", "target": "286", "attributes": { "weight": 3 } }, { "key": "14769", "source": "301", "target": "166", "attributes": { "weight": 4 } }, { "key": "2932", "source": "301", "target": "272", "attributes": { "weight": 4 } }, { "key": "13323", "source": "301", "target": "578", "attributes": { "weight": 2 } }, { "key": "23008", "source": "301", "target": "321", "attributes": { "weight": 1 } }, { "key": "28092", "source": "301", "target": "574", "attributes": { "weight": 1 } }, { "key": "18416", "source": "301", "target": "905", "attributes": { "weight": 2 } }, { "key": "13324", "source": "301", "target": "300", "attributes": { "weight": 3 } }, { "key": "14768", "source": "301", "target": "263", "attributes": { "weight": 4 } }, { "key": "24802", "source": "301", "target": "291", "attributes": { "weight": 1 } }, { "key": "13328", "source": "301", "target": "336", "attributes": { "weight": 3 } }, { "key": "23727", "source": "301", "target": "168", "attributes": { "weight": 1 } }, { "key": "18417", "source": "301", "target": "315", "attributes": { "weight": 1 } }, { "key": "26174", "source": "301", "target": "292", "attributes": { "weight": 1 } }, { "key": "14773", "source": "301", "target": "305", "attributes": { "weight": 3 } }, { "key": "858", "source": "301", "target": "322", "attributes": { "weight": 7 } }, { "key": "2933", "source": "301", "target": "287", "attributes": { "weight": 6 } }, { "key": "23006", "source": "301", "target": "283", "attributes": { "weight": 1 } }, { "key": "9673", "source": "301", "target": "171", "attributes": { "weight": 1 } }, { "key": "24448", "source": "303", "target": "2507", "attributes": { "weight": 1 } }, { "key": "27787", "source": "303", "target": "2098", "attributes": { "weight": 1 } }, { "key": "860", "source": "303", "target": "277", "attributes": { "weight": 1 } }, { "key": "23457", "source": "303", "target": "304", "attributes": { "weight": 1 } }, { "key": "23455", "source": "303", "target": "18", "attributes": { "weight": 1 } }, { "key": "23456", "source": "303", "target": "19", "attributes": { "weight": 1 } }, { "key": "23009", "source": "303", "target": "275", "attributes": { "weight": 1 } }, { "key": "24446", "source": "303", "target": "681", "attributes": { "weight": 1 } }, { "key": "24447", "source": "303", "target": "13", "attributes": { "weight": 1 } }, { "key": "26029", "source": "303", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13448", "source": "304", "target": "1925", "attributes": { "weight": 3 } }, { "key": "13396", "source": "304", "target": "1233", "attributes": { "weight": 2 } }, { "key": "13433", "source": "304", "target": "175", "attributes": { "weight": 1 } }, { "key": "6978", "source": "304", "target": "579", "attributes": { "weight": 4 } }, { "key": "30932", "source": "304", "target": "14", "attributes": { "weight": 2 } }, { "key": "13415", "source": "304", "target": "294", "attributes": { "weight": 2 } }, { "key": "13450", "source": "304", "target": "314", "attributes": { "weight": 2 } }, { "key": "13358", "source": "304", "target": "830", "attributes": { "weight": 1 } }, { "key": "13458", "source": "304", "target": "1927", "attributes": { "weight": 3 } }, { "key": "13467", "source": "304", "target": "1931", "attributes": { "weight": 2 } }, { "key": "13387", "source": "304", "target": "169", "attributes": { "weight": 2 } }, { "key": "13439", "source": "304", "target": "307", "attributes": { "weight": 4 } }, { "key": "13406", "source": "304", "target": "286", "attributes": { "weight": 4 } }, { "key": "11250", "source": "304", "target": "1036", "attributes": { "weight": 3 } }, { "key": "14793", "source": "304", "target": "421", "attributes": { "weight": 2 } }, { "key": "13436", "source": "304", "target": "1323", "attributes": { "weight": 3 } }, { "key": "13386", "source": "304", "target": "168", "attributes": { "weight": 6 } }, { "key": "13363", "source": "304", "target": "266", "attributes": { "weight": 2 } }, { "key": "1927", "source": "304", "target": "93", "attributes": { "weight": 3 } }, { "key": "13451", "source": "304", "target": "1872", "attributes": { "weight": 2 } }, { "key": "28105", "source": "304", "target": "309", "attributes": { "weight": 1 } }, { "key": "13382", "source": "304", "target": "166", "attributes": { "weight": 5 } }, { "key": "13400", "source": "304", "target": "1912", "attributes": { "weight": 2 } }, { "key": "13364", "source": "304", "target": "1899", "attributes": { "weight": 2 } }, { "key": "23467", "source": "304", "target": "303", "attributes": { "weight": 1 } }, { "key": "13443", "source": "304", "target": "310", "attributes": { "weight": 1 } }, { "key": "13411", "source": "304", "target": "338", "attributes": { "weight": 3 } }, { "key": "13351", "source": "304", "target": "339", "attributes": { "weight": 2 } }, { "key": "13376", "source": "304", "target": "272", "attributes": { "weight": 5 } }, { "key": "23469", "source": "304", "target": "320", "attributes": { "weight": 1 } }, { "key": "13449", "source": "304", "target": "340", "attributes": { "weight": 2 } }, { "key": "13403", "source": "304", "target": "1914", "attributes": { "weight": 2 } }, { "key": "13349", "source": "304", "target": "258", "attributes": { "weight": 2 } }, { "key": "13361", "source": "304", "target": "1191", "attributes": { "weight": 2 } }, { "key": "13414", "source": "304", "target": "292", "attributes": { "weight": 4 } }, { "key": "24803", "source": "304", "target": "2396", "attributes": { "weight": 1 } }, { "key": "13457", "source": "304", "target": "321", "attributes": { "weight": 4 } }, { "key": "13366", "source": "304", "target": "419", "attributes": { "weight": 1 } }, { "key": "863", "source": "304", "target": "324", "attributes": { "weight": 1 } }, { "key": "13367", "source": "304", "target": "268", "attributes": { "weight": 6 } }, { "key": "13420", "source": "304", "target": "298", "attributes": { "weight": 2 } }, { "key": "13405", "source": "304", "target": "638", "attributes": { "weight": 2 } }, { "key": "28099", "source": "304", "target": "282", "attributes": { "weight": 1 } }, { "key": "13456", "source": "304", "target": "497", "attributes": { "weight": 2 } }, { "key": "13459", "source": "304", "target": "322", "attributes": { "weight": 5 } }, { "key": "13404", "source": "304", "target": "1849", "attributes": { "weight": 3 } }, { "key": "30477", "source": "304", "target": "1046", "attributes": { "weight": 1 } }, { "key": "13394", "source": "304", "target": "1911", "attributes": { "weight": 2 } }, { "key": "14791", "source": "304", "target": "574", "attributes": { "weight": 2 } }, { "key": "30933", "source": "304", "target": "2507", "attributes": { "weight": 1 } }, { "key": "30931", "source": "304", "target": "19", "attributes": { "weight": 1 } }, { "key": "13407", "source": "304", "target": "170", "attributes": { "weight": 2 } }, { "key": "27744", "source": "304", "target": "1553", "attributes": { "weight": 1 } }, { "key": "13378", "source": "304", "target": "1903", "attributes": { "weight": 2 } }, { "key": "24541", "source": "304", "target": "790", "attributes": { "weight": 1 } }, { "key": "27288", "source": "304", "target": "57", "attributes": { "weight": 1 } }, { "key": "13399", "source": "304", "target": "791", "attributes": { "weight": 2 } }, { "key": "13965", "source": "304", "target": "905", "attributes": { "weight": 1 } }, { "key": "22518", "source": "304", "target": "567", "attributes": { "weight": 1 } }, { "key": "13408", "source": "304", "target": "288", "attributes": { "weight": 3 } }, { "key": "12601", "source": "304", "target": "180", "attributes": { "weight": 4 } }, { "key": "28101", "source": "304", "target": "906", "attributes": { "weight": 1 } }, { "key": "13383", "source": "304", "target": "275", "attributes": { "weight": 4 } }, { "key": "23461", "source": "304", "target": "2310", "attributes": { "weight": 1 } }, { "key": "28100", "source": "304", "target": "1976", "attributes": { "weight": 1 } }, { "key": "14787", "source": "304", "target": "1970", "attributes": { "weight": 1 } }, { "key": "13424", "source": "304", "target": "1922", "attributes": { "weight": 3 } }, { "key": "14786", "source": "304", "target": "220", "attributes": { "weight": 2 } }, { "key": "13471", "source": "304", "target": "1934", "attributes": { "weight": 3 } }, { "key": "14792", "source": "304", "target": "1909", "attributes": { "weight": 2 } }, { "key": "15129", "source": "304", "target": "171", "attributes": { "weight": 2 } }, { "key": "25752", "source": "304", "target": "697", "attributes": { "weight": 2 } }, { "key": "13392", "source": "304", "target": "1227", "attributes": { "weight": 3 } }, { "key": "13385", "source": "304", "target": "167", "attributes": { "weight": 8 } }, { "key": "23468", "source": "304", "target": "13", "attributes": { "weight": 2 } }, { "key": "35017", "source": "304", "target": "352", "attributes": { "weight": 1 } }, { "key": "2935", "source": "304", "target": "293", "attributes": { "weight": 1 } }, { "key": "13423", "source": "304", "target": "473", "attributes": { "weight": 1 } }, { "key": "30614", "source": "304", "target": "25", "attributes": { "weight": 2 } }, { "key": "14799", "source": "304", "target": "1928", "attributes": { "weight": 2 } }, { "key": "23465", "source": "304", "target": "8", "attributes": { "weight": 2 } }, { "key": "13359", "source": "304", "target": "674", "attributes": { "weight": 2 } }, { "key": "13357", "source": "304", "target": "696", "attributes": { "weight": 2 } }, { "key": "13447", "source": "304", "target": "313", "attributes": { "weight": 5 } }, { "key": "12022", "source": "304", "target": "468", "attributes": { "weight": 3 } }, { "key": "13384", "source": "304", "target": "276", "attributes": { "weight": 3 } }, { "key": "13446", "source": "304", "target": "1924", "attributes": { "weight": 1 } }, { "key": "13464", "source": "304", "target": "327", "attributes": { "weight": 6 } }, { "key": "13352", "source": "304", "target": "259", "attributes": { "weight": 4 } }, { "key": "13477", "source": "304", "target": "908", "attributes": { "weight": 3 } }, { "key": "13435", "source": "304", "target": "1923", "attributes": { "weight": 2 } }, { "key": "13426", "source": "304", "target": "300", "attributes": { "weight": 4 } }, { "key": "13437", "source": "304", "target": "177", "attributes": { "weight": 1 } }, { "key": "13401", "source": "304", "target": "370", "attributes": { "weight": 3 } }, { "key": "13375", "source": "304", "target": "1902", "attributes": { "weight": 2 } }, { "key": "13369", "source": "304", "target": "270", "attributes": { "weight": 2 } }, { "key": "23460", "source": "304", "target": "223", "attributes": { "weight": 2 } }, { "key": "13397", "source": "304", "target": "278", "attributes": { "weight": 4 } }, { "key": "13441", "source": "304", "target": "595", "attributes": { "weight": 4 } }, { "key": "13413", "source": "304", "target": "291", "attributes": { "weight": 5 } }, { "key": "13356", "source": "304", "target": "1897", "attributes": { "weight": 2 } }, { "key": "13355", "source": "304", "target": "1896", "attributes": { "weight": 2 } }, { "key": "23470", "source": "304", "target": "2449", "attributes": { "weight": 1 } }, { "key": "14788", "source": "304", "target": "901", "attributes": { "weight": 1 } }, { "key": "25633", "source": "304", "target": "1780", "attributes": { "weight": 1 } }, { "key": "23459", "source": "304", "target": "787", "attributes": { "weight": 2 } }, { "key": "23010", "source": "304", "target": "1971", "attributes": { "weight": 1 } }, { "key": "13468", "source": "304", "target": "842", "attributes": { "weight": 2 } }, { "key": "10923", "source": "304", "target": "457", "attributes": { "weight": 2 } }, { "key": "13445", "source": "304", "target": "312", "attributes": { "weight": 4 } }, { "key": "13452", "source": "304", "target": "318", "attributes": { "weight": 3 } }, { "key": "13402", "source": "304", "target": "1913", "attributes": { "weight": 2 } }, { "key": "13350", "source": "304", "target": "164", "attributes": { "weight": 3 } }, { "key": "13430", "source": "304", "target": "1512", "attributes": { "weight": 2 } }, { "key": "14794", "source": "304", "target": "283", "attributes": { "weight": 2 } }, { "key": "13474", "source": "304", "target": "332", "attributes": { "weight": 2 } }, { "key": "13353", "source": "304", "target": "260", "attributes": { "weight": 3 } }, { "key": "13395", "source": "304", "target": "1232", "attributes": { "weight": 2 } }, { "key": "23466", "source": "304", "target": "1611", "attributes": { "weight": 2 } }, { "key": "28098", "source": "304", "target": "902", "attributes": { "weight": 1 } }, { "key": "13410", "source": "304", "target": "290", "attributes": { "weight": 5 } }, { "key": "13409", "source": "304", "target": "289", "attributes": { "weight": 4 } }, { "key": "13454", "source": "304", "target": "319", "attributes": { "weight": 4 } }, { "key": "13377", "source": "304", "target": "454", "attributes": { "weight": 2 } }, { "key": "13425", "source": "304", "target": "299", "attributes": { "weight": 5 } }, { "key": "13389", "source": "304", "target": "1907", "attributes": { "weight": 2 } }, { "key": "13422", "source": "304", "target": "1921", "attributes": { "weight": 2 } }, { "key": "13455", "source": "304", "target": "495", "attributes": { "weight": 2 } }, { "key": "13442", "source": "304", "target": "179", "attributes": { "weight": 3 } }, { "key": "13463", "source": "304", "target": "326", "attributes": { "weight": 5 } }, { "key": "13473", "source": "304", "target": "1515", "attributes": { "weight": 2 } }, { "key": "13475", "source": "304", "target": "334", "attributes": { "weight": 2 } }, { "key": "24804", "source": "304", "target": "1850", "attributes": { "weight": 2 } }, { "key": "13348", "source": "304", "target": "836", "attributes": { "weight": 3 } }, { "key": "14789", "source": "304", "target": "1898", "attributes": { "weight": 2 } }, { "key": "14790", "source": "304", "target": "913", "attributes": { "weight": 3 } }, { "key": "13380", "source": "304", "target": "52", "attributes": { "weight": 1 } }, { "key": "13381", "source": "304", "target": "1904", "attributes": { "weight": 2 } }, { "key": "13365", "source": "304", "target": "1900", "attributes": { "weight": 2 } }, { "key": "13427", "source": "304", "target": "301", "attributes": { "weight": 4 } }, { "key": "13462", "source": "304", "target": "1930", "attributes": { "weight": 2 } }, { "key": "13362", "source": "304", "target": "265", "attributes": { "weight": 3 } }, { "key": "13438", "source": "304", "target": "839", "attributes": { "weight": 7 } }, { "key": "13432", "source": "304", "target": "305", "attributes": { "weight": 6 } }, { "key": "5955", "source": "304", "target": "1322", "attributes": { "weight": 5 } }, { "key": "5954", "source": "304", "target": "123", "attributes": { "weight": 5 } }, { "key": "14795", "source": "304", "target": "1985", "attributes": { "weight": 1 } }, { "key": "861", "source": "304", "target": "262", "attributes": { "weight": 6 } }, { "key": "13470", "source": "304", "target": "1933", "attributes": { "weight": 3 } }, { "key": "13346", "source": "304", "target": "1380", "attributes": { "weight": 2 } }, { "key": "13393", "source": "304", "target": "277", "attributes": { "weight": 6 } }, { "key": "13391", "source": "304", "target": "707", "attributes": { "weight": 4 } }, { "key": "13466", "source": "304", "target": "330", "attributes": { "weight": 2 } }, { "key": "30934", "source": "304", "target": "1967", "attributes": { "weight": 1 } }, { "key": "13416", "source": "304", "target": "1918", "attributes": { "weight": 2 } }, { "key": "13390", "source": "304", "target": "1908", "attributes": { "weight": 2 } }, { "key": "23462", "source": "304", "target": "2448", "attributes": { "weight": 1 } }, { "key": "13421", "source": "304", "target": "189", "attributes": { "weight": 2 } }, { "key": "864", "source": "304", "target": "335", "attributes": { "weight": 1 } }, { "key": "28103", "source": "304", "target": "295", "attributes": { "weight": 1 } }, { "key": "2934", "source": "304", "target": "287", "attributes": { "weight": 6 } }, { "key": "13388", "source": "304", "target": "1906", "attributes": { "weight": 5 } }, { "key": "13360", "source": "304", "target": "263", "attributes": { "weight": 5 } }, { "key": "13374", "source": "304", "target": "452", "attributes": { "weight": 1 } }, { "key": "28104", "source": "304", "target": "1919", "attributes": { "weight": 1 } }, { "key": "13428", "source": "304", "target": "580", "attributes": { "weight": 6 } }, { "key": "13440", "source": "304", "target": "178", "attributes": { "weight": 2 } }, { "key": "13370", "source": "304", "target": "183", "attributes": { "weight": 2 } }, { "key": "14797", "source": "304", "target": "1774", "attributes": { "weight": 2 } }, { "key": "23463", "source": "304", "target": "1965", "attributes": { "weight": 3 } }, { "key": "24695", "source": "304", "target": "5", "attributes": { "weight": 1 } }, { "key": "13476", "source": "304", "target": "336", "attributes": { "weight": 3 } }, { "key": "13412", "source": "304", "target": "135", "attributes": { "weight": 2 } }, { "key": "14798", "source": "304", "target": "1853", "attributes": { "weight": 1 } }, { "key": "13347", "source": "304", "target": "59", "attributes": { "weight": 2 } }, { "key": "13444", "source": "304", "target": "311", "attributes": { "weight": 4 } }, { "key": "13472", "source": "304", "target": "1854", "attributes": { "weight": 4 } }, { "key": "13431", "source": "304", "target": "582", "attributes": { "weight": 4 } }, { "key": "13465", "source": "304", "target": "328", "attributes": { "weight": 5 } }, { "key": "28102", "source": "304", "target": "1984", "attributes": { "weight": 1 } }, { "key": "9353", "source": "304", "target": "430", "attributes": { "weight": 1 } }, { "key": "13434", "source": "304", "target": "176", "attributes": { "weight": 1 } }, { "key": "13469", "source": "304", "target": "331", "attributes": { "weight": 4 } }, { "key": "7374", "source": "304", "target": "333", "attributes": { "weight": 2 } }, { "key": "13372", "source": "304", "target": "271", "attributes": { "weight": 3 } }, { "key": "23464", "source": "304", "target": "681", "attributes": { "weight": 3 } }, { "key": "13379", "source": "304", "target": "699", "attributes": { "weight": 4 } }, { "key": "862", "source": "304", "target": "264", "attributes": { "weight": 6 } }, { "key": "16476", "source": "304", "target": "1387", "attributes": { "weight": 1 } }, { "key": "13417", "source": "304", "target": "471", "attributes": { "weight": 2 } }, { "key": "13419", "source": "304", "target": "578", "attributes": { "weight": 2 } }, { "key": "13368", "source": "304", "target": "1901", "attributes": { "weight": 3 } }, { "key": "13371", "source": "304", "target": "358", "attributes": { "weight": 2 } }, { "key": "13460", "source": "304", "target": "323", "attributes": { "weight": 3 } }, { "key": "6979", "source": "304", "target": "193", "attributes": { "weight": 2 } }, { "key": "7375", "source": "304", "target": "1063", "attributes": { "weight": 3 } }, { "key": "13418", "source": "304", "target": "1920", "attributes": { "weight": 4 } }, { "key": "13373", "source": "304", "target": "1047", "attributes": { "weight": 2 } }, { "key": "13461", "source": "304", "target": "1929", "attributes": { "weight": 2 } }, { "key": "13354", "source": "304", "target": "261", "attributes": { "weight": 5 } }, { "key": "9013", "source": "304", "target": "442", "attributes": { "weight": 4 } }, { "key": "34912", "source": "304", "target": "1042", "attributes": { "weight": 1 } }, { "key": "13453", "source": "304", "target": "1926", "attributes": { "weight": 2 } }, { "key": "14796", "source": "304", "target": "1554", "attributes": { "weight": 1 } }, { "key": "28119", "source": "305", "target": "1921", "attributes": { "weight": 1 } }, { "key": "28126", "source": "305", "target": "314", "attributes": { "weight": 1 } }, { "key": "13503", "source": "305", "target": "326", "attributes": { "weight": 8 } }, { "key": "13497", "source": "305", "target": "304", "attributes": { "weight": 6 } }, { "key": "2936", "source": "305", "target": "276", "attributes": { "weight": 2 } }, { "key": "28112", "source": "305", "target": "274", "attributes": { "weight": 1 } }, { "key": "3221", "source": "305", "target": "277", "attributes": { "weight": 5 } }, { "key": "23471", "source": "305", "target": "291", "attributes": { "weight": 2 } }, { "key": "3228", "source": "305", "target": "175", "attributes": { "weight": 3 } }, { "key": "13487", "source": "305", "target": "791", "attributes": { "weight": 2 } }, { "key": "13501", "source": "305", "target": "312", "attributes": { "weight": 6 } }, { "key": "13491", "source": "305", "target": "289", "attributes": { "weight": 5 } }, { "key": "3229", "source": "305", "target": "307", "attributes": { "weight": 5 } }, { "key": "6201", "source": "305", "target": "123", "attributes": { "weight": 5 } }, { "key": "14813", "source": "305", "target": "1920", "attributes": { "weight": 1 } }, { "key": "14812", "source": "305", "target": "171", "attributes": { "weight": 4 } }, { "key": "28109", "source": "305", "target": "1899", "attributes": { "weight": 1 } }, { "key": "28121", "source": "305", "target": "300", "attributes": { "weight": 1 } }, { "key": "13482", "source": "305", "target": "1047", "attributes": { "weight": 2 } }, { "key": "3231", "source": "305", "target": "311", "attributes": { "weight": 5 } }, { "key": "28125", "source": "305", "target": "1924", "attributes": { "weight": 1 } }, { "key": "14814", "source": "305", "target": "1922", "attributes": { "weight": 1 } }, { "key": "23283", "source": "305", "target": "2310", "attributes": { "weight": 1 } }, { "key": "3235", "source": "305", "target": "327", "attributes": { "weight": 4 } }, { "key": "27200", "source": "305", "target": "1611", "attributes": { "weight": 1 } }, { "key": "3220", "source": "305", "target": "169", "attributes": { "weight": 4 } }, { "key": "28113", "source": "305", "target": "1908", "attributes": { "weight": 1 } }, { "key": "3217", "source": "305", "target": "268", "attributes": { "weight": 7 } }, { "key": "23282", "source": "305", "target": "258", "attributes": { "weight": 2 } }, { "key": "3227", "source": "305", "target": "301", "attributes": { "weight": 4 } }, { "key": "14807", "source": "305", "target": "1900", "attributes": { "weight": 1 } }, { "key": "19020", "source": "305", "target": "1970", "attributes": { "weight": 2 } }, { "key": "28123", "source": "305", "target": "308", "attributes": { "weight": 1 } }, { "key": "3233", "source": "305", "target": "313", "attributes": { "weight": 6 } }, { "key": "13504", "source": "305", "target": "1854", "attributes": { "weight": 3 } }, { "key": "25066", "source": "305", "target": "1822", "attributes": { "weight": 2 } }, { "key": "28116", "source": "305", "target": "295", "attributes": { "weight": 1 } }, { "key": "10926", "source": "305", "target": "457", "attributes": { "weight": 2 } }, { "key": "25059", "source": "305", "target": "1191", "attributes": { "weight": 2 } }, { "key": "14815", "source": "305", "target": "319", "attributes": { "weight": 2 } }, { "key": "23287", "source": "305", "target": "1929", "attributes": { "weight": 1 } }, { "key": "34913", "source": "305", "target": "1042", "attributes": { "weight": 1 } }, { "key": "13499", "source": "305", "target": "1323", "attributes": { "weight": 4 } }, { "key": "7385", "source": "305", "target": "333", "attributes": { "weight": 3 } }, { "key": "13500", "source": "305", "target": "310", "attributes": { "weight": 4 } }, { "key": "9033", "source": "305", "target": "442", "attributes": { "weight": 3 } }, { "key": "19027", "source": "305", "target": "316", "attributes": { "weight": 3 } }, { "key": "7386", "source": "305", "target": "1063", "attributes": { "weight": 2 } }, { "key": "13488", "source": "305", "target": "283", "attributes": { "weight": 2 } }, { "key": "13498", "source": "305", "target": "1823", "attributes": { "weight": 2 } }, { "key": "13493", "source": "305", "target": "189", "attributes": { "weight": 2 } }, { "key": "13492", "source": "305", "target": "297", "attributes": { "weight": 4 } }, { "key": "19023", "source": "305", "target": "582", "attributes": { "weight": 4 } }, { "key": "3213", "source": "305", "target": "164", "attributes": { "weight": 5 } }, { "key": "865", "source": "305", "target": "262", "attributes": { "weight": 7 } }, { "key": "13495", "source": "305", "target": "579", "attributes": { "weight": 5 } }, { "key": "25067", "source": "305", "target": "1871", "attributes": { "weight": 2 } }, { "key": "3224", "source": "305", "target": "170", "attributes": { "weight": 7 } }, { "key": "23285", "source": "305", "target": "1512", "attributes": { "weight": 3 } }, { "key": "28118", "source": "305", "target": "1919", "attributes": { "weight": 1 } }, { "key": "16206", "source": "305", "target": "370", "attributes": { "weight": 2 } }, { "key": "19025", "source": "305", "target": "179", "attributes": { "weight": 1 } }, { "key": "6200", "source": "305", "target": "338", "attributes": { "weight": 6 } }, { "key": "13480", "source": "305", "target": "1146", "attributes": { "weight": 2 } }, { "key": "28127", "source": "305", "target": "328", "attributes": { "weight": 1 } }, { "key": "16207", "source": "305", "target": "1322", "attributes": { "weight": 2 } }, { "key": "28120", "source": "305", "target": "1985", "attributes": { "weight": 1 } }, { "key": "3232", "source": "305", "target": "907", "attributes": { "weight": 1 } }, { "key": "28114", "source": "305", "target": "1227", "attributes": { "weight": 1 } }, { "key": "23286", "source": "305", "target": "1925", "attributes": { "weight": 1 } }, { "key": "3230", "source": "305", "target": "178", "attributes": { "weight": 3 } }, { "key": "14810", "source": "305", "target": "278", "attributes": { "weight": 5 } }, { "key": "14804", "source": "305", "target": "220", "attributes": { "weight": 3 } }, { "key": "3219", "source": "305", "target": "168", "attributes": { "weight": 7 } }, { "key": "12033", "source": "305", "target": "468", "attributes": { "weight": 4 } }, { "key": "3216", "source": "305", "target": "830", "attributes": { "weight": 3 } }, { "key": "14818", "source": "305", "target": "336", "attributes": { "weight": 4 } }, { "key": "11746", "source": "305", "target": "315", "attributes": { "weight": 3 } }, { "key": "14809", "source": "305", "target": "166", "attributes": { "weight": 5 } }, { "key": "19029", "source": "305", "target": "324", "attributes": { "weight": 2 } }, { "key": "19022", "source": "305", "target": "298", "attributes": { "weight": 2 } }, { "key": "28115", "source": "305", "target": "1909", "attributes": { "weight": 1 } }, { "key": "25063", "source": "305", "target": "1870", "attributes": { "weight": 2 } }, { "key": "25064", "source": "305", "target": "1820", "attributes": { "weight": 2 } }, { "key": "14816", "source": "305", "target": "322", "attributes": { "weight": 5 } }, { "key": "14817", "source": "305", "target": "1934", "attributes": { "weight": 2 } }, { "key": "3215", "source": "305", "target": "697", "attributes": { "weight": 4 } }, { "key": "28111", "source": "305", "target": "574", "attributes": { "weight": 2 } }, { "key": "9890", "source": "305", "target": "411", "attributes": { "weight": 1 } }, { "key": "13481", "source": "305", "target": "259", "attributes": { "weight": 6 } }, { "key": "3214", "source": "305", "target": "261", "attributes": { "weight": 5 } }, { "key": "27746", "source": "305", "target": "1553", "attributes": { "weight": 1 } }, { "key": "25549", "source": "305", "target": "174", "attributes": { "weight": 2 } }, { "key": "28128", "source": "305", "target": "330", "attributes": { "weight": 1 } }, { "key": "22530", "source": "305", "target": "567", "attributes": { "weight": 2 } }, { "key": "28122", "source": "305", "target": "177", "attributes": { "weight": 2 } }, { "key": "19024", "source": "305", "target": "2230", "attributes": { "weight": 2 } }, { "key": "23473", "source": "305", "target": "2449", "attributes": { "weight": 1 } }, { "key": "3225", "source": "305", "target": "290", "attributes": { "weight": 7 } }, { "key": "3234", "source": "305", "target": "180", "attributes": { "weight": 8 } }, { "key": "28110", "source": "305", "target": "572", "attributes": { "weight": 1 } }, { "key": "12382", "source": "305", "target": "565", "attributes": { "weight": 1 } }, { "key": "19021", "source": "305", "target": "1915", "attributes": { "weight": 2 } }, { "key": "28117", "source": "305", "target": "1918", "attributes": { "weight": 1 } }, { "key": "3218", "source": "305", "target": "271", "attributes": { "weight": 3 } }, { "key": "19030", "source": "305", "target": "1931", "attributes": { "weight": 2 } }, { "key": "13484", "source": "305", "target": "698", "attributes": { "weight": 3 } }, { "key": "35791", "source": "305", "target": "790", "attributes": { "weight": 1 } }, { "key": "13494", "source": "305", "target": "473", "attributes": { "weight": 1 } }, { "key": "19026", "source": "305", "target": "1962", "attributes": { "weight": 2 } }, { "key": "3212", "source": "305", "target": "564", "attributes": { "weight": 2 } }, { "key": "18080", "source": "305", "target": "1036", "attributes": { "weight": 2 } }, { "key": "23284", "source": "305", "target": "272", "attributes": { "weight": 2 } }, { "key": "14805", "source": "305", "target": "260", "attributes": { "weight": 3 } }, { "key": "28108", "source": "305", "target": "266", "attributes": { "weight": 1 } }, { "key": "3223", "source": "305", "target": "905", "attributes": { "weight": 4 } }, { "key": "3222", "source": "305", "target": "904", "attributes": { "weight": 1 } }, { "key": "35499", "source": "305", "target": "1857", "attributes": { "weight": 1 } }, { "key": "14808", "source": "305", "target": "913", "attributes": { "weight": 3 } }, { "key": "3236", "source": "305", "target": "334", "attributes": { "weight": 3 } }, { "key": "13502", "source": "305", "target": "321", "attributes": { "weight": 3 } }, { "key": "31358", "source": "305", "target": "674", "attributes": { "weight": 1 } }, { "key": "25061", "source": "305", "target": "1905", "attributes": { "weight": 2 } }, { "key": "3226", "source": "305", "target": "578", "attributes": { "weight": 6 } }, { "key": "17969", "source": "305", "target": "1380", "attributes": { "weight": 1 } }, { "key": "13485", "source": "305", "target": "275", "attributes": { "weight": 2 } }, { "key": "13489", "source": "305", "target": "284", "attributes": { "weight": 3 } }, { "key": "27295", "source": "305", "target": "57", "attributes": { "weight": 1 } }, { "key": "14811", "source": "305", "target": "1849", "attributes": { "weight": 1 } }, { "key": "25062", "source": "305", "target": "1979", "attributes": { "weight": 2 } }, { "key": "13483", "source": "305", "target": "454", "attributes": { "weight": 3 } }, { "key": "14806", "source": "305", "target": "263", "attributes": { "weight": 2 } }, { "key": "9519", "source": "305", "target": "419", "attributes": { "weight": 2 } }, { "key": "1933", "source": "305", "target": "93", "attributes": { "weight": 4 } }, { "key": "866", "source": "305", "target": "264", "attributes": { "weight": 7 } }, { "key": "23472", "source": "305", "target": "318", "attributes": { "weight": 2 } }, { "key": "13490", "source": "305", "target": "286", "attributes": { "weight": 3 } }, { "key": "867", "source": "305", "target": "309", "attributes": { "weight": 1 } }, { "key": "30479", "source": "305", "target": "1046", "attributes": { "weight": 1 } }, { "key": "28124", "source": "305", "target": "595", "attributes": { "weight": 2 } }, { "key": "28107", "source": "305", "target": "1969", "attributes": { "weight": 1 } }, { "key": "23288", "source": "305", "target": "2443", "attributes": { "weight": 1 } }, { "key": "25065", "source": "305", "target": "2345", "attributes": { "weight": 2 } }, { "key": "2937", "source": "305", "target": "287", "attributes": { "weight": 6 } }, { "key": "11260", "source": "305", "target": "452", "attributes": { "weight": 2 } }, { "key": "17508", "source": "305", "target": "358", "attributes": { "weight": 1 } }, { "key": "23281", "source": "305", "target": "836", "attributes": { "weight": 1 } }, { "key": "13496", "source": "305", "target": "580", "attributes": { "weight": 5 } }, { "key": "22610", "source": "305", "target": "1513", "attributes": { "weight": 1 } }, { "key": "869", "source": "306", "target": "264", "attributes": { "weight": 3 } }, { "key": "868", "source": "306", "target": "262", "attributes": { "weight": 1 } }, { "key": "14840", "source": "307", "target": "1854", "attributes": { "weight": 1 } }, { "key": "14836", "source": "307", "target": "579", "attributes": { "weight": 1 } }, { "key": "3263", "source": "307", "target": "308", "attributes": { "weight": 3 } }, { "key": "14827", "source": "307", "target": "697", "attributes": { "weight": 1 } }, { "key": "23014", "source": "307", "target": "1897", "attributes": { "weight": 1 } }, { "key": "14830", "source": "307", "target": "168", "attributes": { "weight": 1 } }, { "key": "14834", "source": "307", "target": "290", "attributes": { "weight": 1 } }, { "key": "3265", "source": "307", "target": "326", "attributes": { "weight": 6 } }, { "key": "8230", "source": "307", "target": "180", "attributes": { "weight": 4 } }, { "key": "14826", "source": "307", "target": "836", "attributes": { "weight": 1 } }, { "key": "23017", "source": "307", "target": "1849", "attributes": { "weight": 1 } }, { "key": "13525", "source": "307", "target": "578", "attributes": { "weight": 2 } }, { "key": "875", "source": "307", "target": "318", "attributes": { "weight": 4 } }, { "key": "14837", "source": "307", "target": "582", "attributes": { "weight": 2 } }, { "key": "13529", "source": "307", "target": "314", "attributes": { "weight": 5 } }, { "key": "13522", "source": "307", "target": "454", "attributes": { "weight": 2 } }, { "key": "3260", "source": "307", "target": "298", "attributes": { "weight": 1 } }, { "key": "12452", "source": "307", "target": "313", "attributes": { "weight": 9 } }, { "key": "13521", "source": "307", "target": "265", "attributes": { "weight": 3 } }, { "key": "29798", "source": "307", "target": "276", "attributes": { "weight": 1 } }, { "key": "18006", "source": "307", "target": "1984", "attributes": { "weight": 1 } }, { "key": "3264", "source": "307", "target": "312", "attributes": { "weight": 3 } }, { "key": "14828", "source": "307", "target": "262", "attributes": { "weight": 1 } }, { "key": "14838", "source": "307", "target": "327", "attributes": { "weight": 3 } }, { "key": "23018", "source": "307", "target": "1920", "attributes": { "weight": 1 } }, { "key": "25229", "source": "307", "target": "1902", "attributes": { "weight": 1 } }, { "key": "13526", "source": "307", "target": "580", "attributes": { "weight": 4 } }, { "key": "13530", "source": "307", "target": "321", "attributes": { "weight": 2 } }, { "key": "14835", "source": "307", "target": "291", "attributes": { "weight": 1 } }, { "key": "3259", "source": "307", "target": "906", "attributes": { "weight": 1 } }, { "key": "23475", "source": "307", "target": "2449", "attributes": { "weight": 1 } }, { "key": "876", "source": "307", "target": "329", "attributes": { "weight": 1 } }, { "key": "9069", "source": "307", "target": "1554", "attributes": { "weight": 2 } }, { "key": "13520", "source": "307", "target": "260", "attributes": { "weight": 3 } }, { "key": "874", "source": "307", "target": "299", "attributes": { "weight": 1 } }, { "key": "13532", "source": "307", "target": "323", "attributes": { "weight": 2 } }, { "key": "13528", "source": "307", "target": "304", "attributes": { "weight": 4 } }, { "key": "14833", "source": "307", "target": "170", "attributes": { "weight": 2 } }, { "key": "18005", "source": "307", "target": "1976", "attributes": { "weight": 1 } }, { "key": "14829", "source": "307", "target": "698", "attributes": { "weight": 1 } }, { "key": "23019", "source": "307", "target": "316", "attributes": { "weight": 1 } }, { "key": "37473", "source": "307", "target": "696", "attributes": { "weight": 1 } }, { "key": "23474", "source": "307", "target": "286", "attributes": { "weight": 1 } }, { "key": "872", "source": "307", "target": "264", "attributes": { "weight": 3 } }, { "key": "23016", "source": "307", "target": "1907", "attributes": { "weight": 1 } }, { "key": "877", "source": "307", "target": "333", "attributes": { "weight": 1 } }, { "key": "13531", "source": "307", "target": "322", "attributes": { "weight": 3 } }, { "key": "3258", "source": "307", "target": "167", "attributes": { "weight": 7 } }, { "key": "873", "source": "307", "target": "270", "attributes": { "weight": 1 } }, { "key": "9068", "source": "307", "target": "259", "attributes": { "weight": 4 } }, { "key": "3261", "source": "307", "target": "300", "attributes": { "weight": 6 } }, { "key": "13524", "source": "307", "target": "295", "attributes": { "weight": 2 } }, { "key": "871", "source": "307", "target": "263", "attributes": { "weight": 1 } }, { "key": "14831", "source": "307", "target": "278", "attributes": { "weight": 2 } }, { "key": "19046", "source": "307", "target": "839", "attributes": { "weight": 2 } }, { "key": "14841", "source": "307", "target": "1515", "attributes": { "weight": 1 } }, { "key": "23015", "source": "307", "target": "266", "attributes": { "weight": 1 } }, { "key": "3262", "source": "307", "target": "305", "attributes": { "weight": 5 } }, { "key": "14832", "source": "307", "target": "1850", "attributes": { "weight": 1 } }, { "key": "13523", "source": "307", "target": "275", "attributes": { "weight": 3 } }, { "key": "14839", "source": "307", "target": "1933", "attributes": { "weight": 1 } }, { "key": "3277", "source": "308", "target": "327", "attributes": { "weight": 1 } }, { "key": "22243", "source": "308", "target": "2230", "attributes": { "weight": 3 } }, { "key": "28148", "source": "308", "target": "2724", "attributes": { "weight": 2 } }, { "key": "880", "source": "308", "target": "290", "attributes": { "weight": 2 } }, { "key": "3276", "source": "308", "target": "180", "attributes": { "weight": 3 } }, { "key": "28647", "source": "308", "target": "321", "attributes": { "weight": 1 } }, { "key": "28146", "source": "308", "target": "300", "attributes": { "weight": 2 } }, { "key": "23020", "source": "308", "target": "270", "attributes": { "weight": 1 } }, { "key": "3270", "source": "308", "target": "275", "attributes": { "weight": 2 } }, { "key": "14848", "source": "308", "target": "319", "attributes": { "weight": 2 } }, { "key": "24808", "source": "308", "target": "326", "attributes": { "weight": 4 } }, { "key": "3268", "source": "308", "target": "262", "attributes": { "weight": 4 } }, { "key": "28646", "source": "308", "target": "299", "attributes": { "weight": 1 } }, { "key": "28147", "source": "308", "target": "305", "attributes": { "weight": 1 } }, { "key": "3272", "source": "308", "target": "287", "attributes": { "weight": 4 } }, { "key": "3269", "source": "308", "target": "268", "attributes": { "weight": 2 } }, { "key": "13538", "source": "308", "target": "1854", "attributes": { "weight": 2 } }, { "key": "3275", "source": "308", "target": "312", "attributes": { "weight": 4 } }, { "key": "24807", "source": "308", "target": "311", "attributes": { "weight": 1 } }, { "key": "13537", "source": "308", "target": "313", "attributes": { "weight": 4 } }, { "key": "3273", "source": "308", "target": "839", "attributes": { "weight": 5 } }, { "key": "879", "source": "308", "target": "277", "attributes": { "weight": 3 } }, { "key": "14845", "source": "308", "target": "836", "attributes": { "weight": 3 } }, { "key": "3267", "source": "308", "target": "259", "attributes": { "weight": 3 } }, { "key": "23021", "source": "308", "target": "286", "attributes": { "weight": 1 } }, { "key": "24806", "source": "308", "target": "292", "attributes": { "weight": 1 } }, { "key": "3271", "source": "308", "target": "167", "attributes": { "weight": 7 } }, { "key": "24805", "source": "308", "target": "261", "attributes": { "weight": 1 } }, { "key": "3274", "source": "308", "target": "307", "attributes": { "weight": 3 } }, { "key": "14847", "source": "308", "target": "263", "attributes": { "weight": 1 } }, { "key": "14846", "source": "308", "target": "258", "attributes": { "weight": 1 } }, { "key": "28145", "source": "308", "target": "291", "attributes": { "weight": 1 } }, { "key": "878", "source": "308", "target": "264", "attributes": { "weight": 3 } }, { "key": "34801", "source": "309", "target": "3161", "attributes": { "weight": 1 } }, { "key": "28149", "source": "309", "target": "304", "attributes": { "weight": 1 } }, { "key": "16358", "source": "309", "target": "580", "attributes": { "weight": 1 } }, { "key": "881", "source": "309", "target": "259", "attributes": { "weight": 1 } }, { "key": "29220", "source": "309", "target": "170", "attributes": { "weight": 1 } }, { "key": "882", "source": "309", "target": "305", "attributes": { "weight": 1 } }, { "key": "29221", "source": "309", "target": "582", "attributes": { "weight": 1 } }, { "key": "34800", "source": "309", "target": "700", "attributes": { "weight": 1 } }, { "key": "29219", "source": "309", "target": "278", "attributes": { "weight": 1 } }, { "key": "16357", "source": "309", "target": "579", "attributes": { "weight": 1 } }, { "key": "12040", "source": "310", "target": "178", "attributes": { "weight": 9 } }, { "key": "30275", "source": "310", "target": "177", "attributes": { "weight": 2 } }, { "key": "30276", "source": "310", "target": "2976", "attributes": { "weight": 1 } }, { "key": "28839", "source": "310", "target": "2807", "attributes": { "weight": 1 } }, { "key": "30272", "source": "310", "target": "2968", "attributes": { "weight": 1 } }, { "key": "28299", "source": "310", "target": "2228", "attributes": { "weight": 2 } }, { "key": "6432", "source": "310", "target": "1146", "attributes": { "weight": 11 } }, { "key": "33022", "source": "310", "target": "2562", "attributes": { "weight": 1 } }, { "key": "30267", "source": "310", "target": "2959", "attributes": { "weight": 3 } }, { "key": "28151", "source": "310", "target": "300", "attributes": { "weight": 2 } }, { "key": "28840", "source": "310", "target": "2814", "attributes": { "weight": 3 } }, { "key": "28841", "source": "310", "target": "2423", "attributes": { "weight": 1 } }, { "key": "30265", "source": "310", "target": "2954", "attributes": { "weight": 2 } }, { "key": "25214", "source": "310", "target": "169", "attributes": { "weight": 1 } }, { "key": "30270", "source": "310", "target": "638", "attributes": { "weight": 2 } }, { "key": "35387", "source": "310", "target": "2224", "attributes": { "weight": 1 } }, { "key": "37584", "source": "310", "target": "2561", "attributes": { "weight": 1 } }, { "key": "6435", "source": "310", "target": "1177", "attributes": { "weight": 3 } }, { "key": "13543", "source": "310", "target": "305", "attributes": { "weight": 4 } }, { "key": "13542", "source": "310", "target": "304", "attributes": { "weight": 1 } }, { "key": "18536", "source": "310", "target": "1280", "attributes": { "weight": 4 } }, { "key": "29833", "source": "310", "target": "93", "attributes": { "weight": 2 } }, { "key": "17517", "source": "310", "target": "164", "attributes": { "weight": 4 } }, { "key": "14864", "source": "310", "target": "259", "attributes": { "weight": 1 } }, { "key": "884", "source": "310", "target": "262", "attributes": { "weight": 1 } }, { "key": "37581", "source": "310", "target": "2971", "attributes": { "weight": 1 } }, { "key": "35385", "source": "310", "target": "2966", "attributes": { "weight": 1 } }, { "key": "30266", "source": "310", "target": "2958", "attributes": { "weight": 1 } }, { "key": "17519", "source": "310", "target": "2120", "attributes": { "weight": 5 } }, { "key": "37585", "source": "310", "target": "3403", "attributes": { "weight": 1 } }, { "key": "30269", "source": "310", "target": "2963", "attributes": { "weight": 1 } }, { "key": "6436", "source": "310", "target": "1178", "attributes": { "weight": 7 } }, { "key": "6431", "source": "310", "target": "1143", "attributes": { "weight": 5 } }, { "key": "25215", "source": "310", "target": "2557", "attributes": { "weight": 2 } }, { "key": "6433", "source": "310", "target": "1151", "attributes": { "weight": 3 } }, { "key": "37576", "source": "310", "target": "3390", "attributes": { "weight": 1 } }, { "key": "6434", "source": "310", "target": "1166", "attributes": { "weight": 5 } }, { "key": "15132", "source": "310", "target": "171", "attributes": { "weight": 2 } }, { "key": "28842", "source": "310", "target": "1323", "attributes": { "weight": 2 } }, { "key": "18537", "source": "310", "target": "2222", "attributes": { "weight": 1 } }, { "key": "37586", "source": "310", "target": "3404", "attributes": { "weight": 1 } }, { "key": "22562", "source": "310", "target": "567", "attributes": { "weight": 2 } }, { "key": "6440", "source": "310", "target": "1227", "attributes": { "weight": 5 } }, { "key": "6437", "source": "310", "target": "1187", "attributes": { "weight": 5 } }, { "key": "37582", "source": "310", "target": "3401", "attributes": { "weight": 1 } }, { "key": "17520", "source": "310", "target": "2121", "attributes": { "weight": 3 } }, { "key": "30271", "source": "310", "target": "2967", "attributes": { "weight": 1 } }, { "key": "25217", "source": "310", "target": "2559", "attributes": { "weight": 2 } }, { "key": "35384", "source": "310", "target": "2213", "attributes": { "weight": 1 } }, { "key": "11286", "source": "310", "target": "1036", "attributes": { "weight": 3 } }, { "key": "30264", "source": "310", "target": "2953", "attributes": { "weight": 3 } }, { "key": "17518", "source": "310", "target": "358", "attributes": { "weight": 2 } }, { "key": "6438", "source": "310", "target": "368", "attributes": { "weight": 2 } }, { "key": "7408", "source": "310", "target": "333", "attributes": { "weight": 1 } }, { "key": "25073", "source": "310", "target": "580", "attributes": { "weight": 2 } }, { "key": "22563", "source": "310", "target": "572", "attributes": { "weight": 3 } }, { "key": "30268", "source": "310", "target": "2960", "attributes": { "weight": 2 } }, { "key": "25210", "source": "310", "target": "2552", "attributes": { "weight": 1 } }, { "key": "29986", "source": "310", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13973", "source": "310", "target": "180", "attributes": { "weight": 1 } }, { "key": "37587", "source": "310", "target": "3406", "attributes": { "weight": 1 } }, { "key": "25769", "source": "310", "target": "278", "attributes": { "weight": 4 } }, { "key": "37578", "source": "310", "target": "3394", "attributes": { "weight": 1 } }, { "key": "6442", "source": "310", "target": "297", "attributes": { "weight": 7 } }, { "key": "25216", "source": "310", "target": "2558", "attributes": { "weight": 2 } }, { "key": "37580", "source": "310", "target": "3400", "attributes": { "weight": 1 } }, { "key": "25212", "source": "310", "target": "2554", "attributes": { "weight": 3 } }, { "key": "37579", "source": "310", "target": "3398", "attributes": { "weight": 1 } }, { "key": "9535", "source": "310", "target": "419", "attributes": { "weight": 1 } }, { "key": "30273", "source": "310", "target": "2972", "attributes": { "weight": 1 } }, { "key": "6441", "source": "310", "target": "338", "attributes": { "weight": 6 } }, { "key": "10933", "source": "310", "target": "168", "attributes": { "weight": 5 } }, { "key": "26267", "source": "310", "target": "601", "attributes": { "weight": 2 } }, { "key": "30277", "source": "310", "target": "2977", "attributes": { "weight": 2 } }, { "key": "30274", "source": "310", "target": "2745", "attributes": { "weight": 2 } }, { "key": "25218", "source": "310", "target": "1996", "attributes": { "weight": 4 } }, { "key": "37577", "source": "310", "target": "3391", "attributes": { "weight": 1 } }, { "key": "35386", "source": "310", "target": "2560", "attributes": { "weight": 1 } }, { "key": "37583", "source": "310", "target": "3402", "attributes": { "weight": 1 } }, { "key": "25213", "source": "310", "target": "2556", "attributes": { "weight": 3 } }, { "key": "25211", "source": "310", "target": "2553", "attributes": { "weight": 2 } }, { "key": "30087", "source": "310", "target": "2940", "attributes": { "weight": 1 } }, { "key": "6439", "source": "310", "target": "165", "attributes": { "weight": 4 } }, { "key": "25219", "source": "310", "target": "1341", "attributes": { "weight": 2 } }, { "key": "6443", "source": "310", "target": "173", "attributes": { "weight": 5 } }, { "key": "13544", "source": "311", "target": "301", "attributes": { "weight": 4 } }, { "key": "35039", "source": "311", "target": "3", "attributes": { "weight": 1 } }, { "key": "893", "source": "311", "target": "321", "attributes": { "weight": 3 } }, { "key": "13546", "source": "311", "target": "312", "attributes": { "weight": 4 } }, { "key": "889", "source": "311", "target": "298", "attributes": { "weight": 1 } }, { "key": "12454", "source": "311", "target": "336", "attributes": { "weight": 2 } }, { "key": "14868", "source": "311", "target": "179", "attributes": { "weight": 1 } }, { "key": "3279", "source": "311", "target": "167", "attributes": { "weight": 8 } }, { "key": "3280", "source": "311", "target": "305", "attributes": { "weight": 5 } }, { "key": "14872", "source": "311", "target": "332", "attributes": { "weight": 1 } }, { "key": "14865", "source": "311", "target": "259", "attributes": { "weight": 3 } }, { "key": "24811", "source": "311", "target": "331", "attributes": { "weight": 1 } }, { "key": "2941", "source": "311", "target": "287", "attributes": { "weight": 3 } }, { "key": "14873", "source": "311", "target": "334", "attributes": { "weight": 1 } }, { "key": "24809", "source": "311", "target": "286", "attributes": { "weight": 1 } }, { "key": "891", "source": "311", "target": "300", "attributes": { "weight": 3 } }, { "key": "12453", "source": "311", "target": "263", "attributes": { "weight": 5 } }, { "key": "887", "source": "311", "target": "289", "attributes": { "weight": 4 } }, { "key": "24810", "source": "311", "target": "308", "attributes": { "weight": 1 } }, { "key": "888", "source": "311", "target": "290", "attributes": { "weight": 1 } }, { "key": "14282", "source": "311", "target": "168", "attributes": { "weight": 3 } }, { "key": "894", "source": "311", "target": "330", "attributes": { "weight": 1 } }, { "key": "14871", "source": "311", "target": "1931", "attributes": { "weight": 1 } }, { "key": "885", "source": "311", "target": "262", "attributes": { "weight": 5 } }, { "key": "890", "source": "311", "target": "299", "attributes": { "weight": 2 } }, { "key": "14867", "source": "311", "target": "272", "attributes": { "weight": 3 } }, { "key": "14866", "source": "311", "target": "260", "attributes": { "weight": 5 } }, { "key": "886", "source": "311", "target": "264", "attributes": { "weight": 5 } }, { "key": "14869", "source": "311", "target": "322", "attributes": { "weight": 4 } }, { "key": "13545", "source": "311", "target": "304", "attributes": { "weight": 4 } }, { "key": "13974", "source": "311", "target": "180", "attributes": { "weight": 1 } }, { "key": "13549", "source": "311", "target": "327", "attributes": { "weight": 5 } }, { "key": "13548", "source": "311", "target": "323", "attributes": { "weight": 2 } }, { "key": "3281", "source": "311", "target": "839", "attributes": { "weight": 3 } }, { "key": "14870", "source": "311", "target": "326", "attributes": { "weight": 3 } }, { "key": "28152", "source": "311", "target": "1918", "attributes": { "weight": 1 } }, { "key": "23028", "source": "311", "target": "908", "attributes": { "weight": 1 } }, { "key": "23476", "source": "311", "target": "276", "attributes": { "weight": 1 } }, { "key": "23027", "source": "311", "target": "316", "attributes": { "weight": 2 } }, { "key": "13547", "source": "311", "target": "318", "attributes": { "weight": 2 } }, { "key": "892", "source": "311", "target": "314", "attributes": { "weight": 2 } }, { "key": "18007", "source": "312", "target": "1918", "attributes": { "weight": 1 } }, { "key": "3284", "source": "312", "target": "839", "attributes": { "weight": 7 } }, { "key": "13580", "source": "312", "target": "323", "attributes": { "weight": 4 } }, { "key": "23479", "source": "312", "target": "319", "attributes": { "weight": 1 } }, { "key": "14882", "source": "312", "target": "1909", "attributes": { "weight": 1 } }, { "key": "13566", "source": "312", "target": "289", "attributes": { "weight": 5 } }, { "key": "13572", "source": "312", "target": "305", "attributes": { "weight": 6 } }, { "key": "14887", "source": "312", "target": "299", "attributes": { "weight": 4 } }, { "key": "23478", "source": "312", "target": "295", "attributes": { "weight": 1 } }, { "key": "14877", "source": "312", "target": "263", "attributes": { "weight": 2 } }, { "key": "3282", "source": "312", "target": "167", "attributes": { "weight": 8 } }, { "key": "14876", "source": "312", "target": "697", "attributes": { "weight": 1 } }, { "key": "12456", "source": "312", "target": "316", "attributes": { "weight": 6 } }, { "key": "13564", "source": "312", "target": "286", "attributes": { "weight": 5 } }, { "key": "14881", "source": "312", "target": "169", "attributes": { "weight": 1 } }, { "key": "13578", "source": "312", "target": "321", "attributes": { "weight": 4 } }, { "key": "13555", "source": "312", "target": "268", "attributes": { "weight": 3 } }, { "key": "9699", "source": "312", "target": "564", "attributes": { "weight": 2 } }, { "key": "13581", "source": "312", "target": "1929", "attributes": { "weight": 3 } }, { "key": "18407", "source": "312", "target": "1621", "attributes": { "weight": 1 } }, { "key": "37477", "source": "312", "target": "332", "attributes": { "weight": 1 } }, { "key": "13553", "source": "312", "target": "265", "attributes": { "weight": 4 } }, { "key": "11754", "source": "312", "target": "180", "attributes": { "weight": 4 } }, { "key": "13552", "source": "312", "target": "261", "attributes": { "weight": 2 } }, { "key": "13560", "source": "312", "target": "1911", "attributes": { "weight": 2 } }, { "key": "23477", "source": "312", "target": "291", "attributes": { "weight": 1 } }, { "key": "14891", "source": "312", "target": "908", "attributes": { "weight": 1 } }, { "key": "14874", "source": "312", "target": "1973", "attributes": { "weight": 1 } }, { "key": "14884", "source": "312", "target": "1919", "attributes": { "weight": 1 } }, { "key": "14875", "source": "312", "target": "901", "attributes": { "weight": 1 } }, { "key": "13558", "source": "312", "target": "276", "attributes": { "weight": 4 } }, { "key": "13554", "source": "312", "target": "1899", "attributes": { "weight": 2 } }, { "key": "13587", "source": "312", "target": "331", "attributes": { "weight": 3 } }, { "key": "14890", "source": "312", "target": "1872", "attributes": { "weight": 1 } }, { "key": "14880", "source": "312", "target": "272", "attributes": { "weight": 4 } }, { "key": "13573", "source": "312", "target": "178", "attributes": { "weight": 5 } }, { "key": "14883", "source": "312", "target": "288", "attributes": { "weight": 1 } }, { "key": "12455", "source": "312", "target": "301", "attributes": { "weight": 5 } }, { "key": "897", "source": "312", "target": "324", "attributes": { "weight": 1 } }, { "key": "13562", "source": "312", "target": "283", "attributes": { "weight": 4 } }, { "key": "13561", "source": "312", "target": "1912", "attributes": { "weight": 2 } }, { "key": "13589", "source": "312", "target": "334", "attributes": { "weight": 2 } }, { "key": "13559", "source": "312", "target": "277", "attributes": { "weight": 3 } }, { "key": "13567", "source": "312", "target": "290", "attributes": { "weight": 3 } }, { "key": "13975", "source": "312", "target": "905", "attributes": { "weight": 1 } }, { "key": "14885", "source": "312", "target": "1510", "attributes": { "weight": 1 } }, { "key": "25770", "source": "312", "target": "278", "attributes": { "weight": 3 } }, { "key": "2942", "source": "312", "target": "292", "attributes": { "weight": 1 } }, { "key": "896", "source": "312", "target": "264", "attributes": { "weight": 7 } }, { "key": "13576", "source": "312", "target": "314", "attributes": { "weight": 4 } }, { "key": "895", "source": "312", "target": "262", "attributes": { "weight": 6 } }, { "key": "13583", "source": "312", "target": "327", "attributes": { "weight": 4 } }, { "key": "11753", "source": "312", "target": "1513", "attributes": { "weight": 1 } }, { "key": "13556", "source": "312", "target": "1904", "attributes": { "weight": 2 } }, { "key": "14889", "source": "312", "target": "1853", "attributes": { "weight": 1 } }, { "key": "13563", "source": "312", "target": "1916", "attributes": { "weight": 2 } }, { "key": "23294", "source": "312", "target": "258", "attributes": { "weight": 1 } }, { "key": "28153", "source": "312", "target": "1913", "attributes": { "weight": 1 } }, { "key": "14878", "source": "312", "target": "572", "attributes": { "weight": 1 } }, { "key": "13579", "source": "312", "target": "322", "attributes": { "weight": 4 } }, { "key": "14886", "source": "312", "target": "1985", "attributes": { "weight": 1 } }, { "key": "9700", "source": "312", "target": "171", "attributes": { "weight": 1 } }, { "key": "3283", "source": "312", "target": "902", "attributes": { "weight": 1 } }, { "key": "3286", "source": "312", "target": "308", "attributes": { "weight": 4 } }, { "key": "13569", "source": "312", "target": "300", "attributes": { "weight": 5 } }, { "key": "13574", "source": "312", "target": "311", "attributes": { "weight": 4 } }, { "key": "3285", "source": "312", "target": "307", "attributes": { "weight": 3 } }, { "key": "26031", "source": "312", "target": "2622", "attributes": { "weight": 2 } }, { "key": "23480", "source": "312", "target": "329", "attributes": { "weight": 1 } }, { "key": "13575", "source": "312", "target": "313", "attributes": { "weight": 4 } }, { "key": "13584", "source": "312", "target": "330", "attributes": { "weight": 2 } }, { "key": "13568", "source": "312", "target": "298", "attributes": { "weight": 2 } }, { "key": "14888", "source": "312", "target": "1987", "attributes": { "weight": 1 } }, { "key": "13571", "source": "312", "target": "304", "attributes": { "weight": 4 } }, { "key": "14879", "source": "312", "target": "271", "attributes": { "weight": 1 } }, { "key": "13577", "source": "312", "target": "318", "attributes": { "weight": 4 } }, { "key": "13582", "source": "312", "target": "326", "attributes": { "weight": 5 } }, { "key": "13557", "source": "312", "target": "166", "attributes": { "weight": 4 } }, { "key": "13550", "source": "312", "target": "164", "attributes": { "weight": 2 } }, { "key": "13585", "source": "312", "target": "1931", "attributes": { "weight": 2 } }, { "key": "13588", "source": "312", "target": "1854", "attributes": { "weight": 2 } }, { "key": "28154", "source": "312", "target": "1851", "attributes": { "weight": 1 } }, { "key": "13551", "source": "312", "target": "260", "attributes": { "weight": 4 } }, { "key": "13565", "source": "312", "target": "287", "attributes": { "weight": 6 } }, { "key": "13586", "source": "312", "target": "842", "attributes": { "weight": 2 } }, { "key": "19050", "source": "313", "target": "1850", "attributes": { "weight": 2 } }, { "key": "12458", "source": "313", "target": "307", "attributes": { "weight": 9 } }, { "key": "33160", "source": "313", "target": "178", "attributes": { "weight": 1 } }, { "key": "25075", "source": "313", "target": "698", "attributes": { "weight": 2 } }, { "key": "13616", "source": "313", "target": "1934", "attributes": { "weight": 3 } }, { "key": "11756", "source": "313", "target": "180", "attributes": { "weight": 4 } }, { "key": "13596", "source": "313", "target": "276", "attributes": { "weight": 4 } }, { "key": "13597", "source": "313", "target": "167", "attributes": { "weight": 9 } }, { "key": "14893", "source": "313", "target": "272", "attributes": { "weight": 3 } }, { "key": "13612", "source": "313", "target": "1928", "attributes": { "weight": 2 } }, { "key": "13602", "source": "313", "target": "299", "attributes": { "weight": 5 } }, { "key": "14892", "source": "313", "target": "1901", "attributes": { "weight": 2 } }, { "key": "3288", "source": "313", "target": "839", "attributes": { "weight": 6 } }, { "key": "13599", "source": "313", "target": "1915", "attributes": { "weight": 2 } }, { "key": "898", "source": "313", "target": "264", "attributes": { "weight": 6 } }, { "key": "13598", "source": "313", "target": "277", "attributes": { "weight": 6 } }, { "key": "13604", "source": "313", "target": "580", "attributes": { "weight": 3 } }, { "key": "2420", "source": "313", "target": "278", "attributes": { "weight": 6 } }, { "key": "13613", "source": "313", "target": "326", "attributes": { "weight": 7 } }, { "key": "13601", "source": "313", "target": "170", "attributes": { "weight": 5 } }, { "key": "13608", "source": "313", "target": "312", "attributes": { "weight": 4 } }, { "key": "899", "source": "313", "target": "287", "attributes": { "weight": 3 } }, { "key": "13610", "source": "313", "target": "318", "attributes": { "weight": 4 } }, { "key": "28648", "source": "313", "target": "2230", "attributes": { "weight": 1 } }, { "key": "2943", "source": "313", "target": "322", "attributes": { "weight": 6 } }, { "key": "19048", "source": "313", "target": "1900", "attributes": { "weight": 2 } }, { "key": "19049", "source": "313", "target": "1849", "attributes": { "weight": 2 } }, { "key": "13605", "source": "313", "target": "304", "attributes": { "weight": 5 } }, { "key": "13593", "source": "313", "target": "261", "attributes": { "weight": 5 } }, { "key": "13615", "source": "313", "target": "1931", "attributes": { "weight": 2 } }, { "key": "31093", "source": "313", "target": "164", "attributes": { "weight": 1 } }, { "key": "14894", "source": "313", "target": "275", "attributes": { "weight": 1 } }, { "key": "13611", "source": "313", "target": "321", "attributes": { "weight": 4 } }, { "key": "13594", "source": "313", "target": "262", "attributes": { "weight": 3 } }, { "key": "12457", "source": "313", "target": "263", "attributes": { "weight": 4 } }, { "key": "28156", "source": "313", "target": "1920", "attributes": { "weight": 1 } }, { "key": "13600", "source": "313", "target": "286", "attributes": { "weight": 3 } }, { "key": "13603", "source": "313", "target": "300", "attributes": { "weight": 3 } }, { "key": "13592", "source": "313", "target": "260", "attributes": { "weight": 5 } }, { "key": "14896", "source": "313", "target": "1872", "attributes": { "weight": 1 } }, { "key": "14895", "source": "313", "target": "289", "attributes": { "weight": 1 } }, { "key": "11755", "source": "313", "target": "905", "attributes": { "weight": 1 } }, { "key": "13607", "source": "313", "target": "308", "attributes": { "weight": 4 } }, { "key": "13614", "source": "313", "target": "327", "attributes": { "weight": 4 } }, { "key": "12864", "source": "313", "target": "582", "attributes": { "weight": 5 } }, { "key": "14283", "source": "313", "target": "168", "attributes": { "weight": 2 } }, { "key": "13606", "source": "313", "target": "305", "attributes": { "weight": 5 } }, { "key": "28157", "source": "313", "target": "323", "attributes": { "weight": 1 } }, { "key": "13609", "source": "313", "target": "316", "attributes": { "weight": 3 } }, { "key": "13595", "source": "313", "target": "268", "attributes": { "weight": 5 } }, { "key": "25076", "source": "313", "target": "579", "attributes": { "weight": 2 } }, { "key": "31094", "source": "313", "target": "1513", "attributes": { "weight": 1 } }, { "key": "19051", "source": "313", "target": "1922", "attributes": { "weight": 2 } }, { "key": "13591", "source": "313", "target": "259", "attributes": { "weight": 5 } }, { "key": "13624", "source": "314", "target": "275", "attributes": { "weight": 4 } }, { "key": "13623", "source": "314", "target": "272", "attributes": { "weight": 5 } }, { "key": "31097", "source": "314", "target": "1513", "attributes": { "weight": 1 } }, { "key": "31095", "source": "314", "target": "164", "attributes": { "weight": 1 } }, { "key": "13640", "source": "314", "target": "327", "attributes": { "weight": 4 } }, { "key": "13636", "source": "314", "target": "318", "attributes": { "weight": 2 } }, { "key": "12610", "source": "314", "target": "905", "attributes": { "weight": 1 } }, { "key": "901", "source": "314", "target": "262", "attributes": { "weight": 5 } }, { "key": "13639", "source": "314", "target": "322", "attributes": { "weight": 4 } }, { "key": "13633", "source": "314", "target": "839", "attributes": { "weight": 3 } }, { "key": "13621", "source": "314", "target": "260", "attributes": { "weight": 2 } }, { "key": "13638", "source": "314", "target": "321", "attributes": { "weight": 2 } }, { "key": "13635", "source": "314", "target": "312", "attributes": { "weight": 4 } }, { "key": "13630", "source": "314", "target": "289", "attributes": { "weight": 2 } }, { "key": "13641", "source": "314", "target": "1854", "attributes": { "weight": 2 } }, { "key": "31098", "source": "314", "target": "1928", "attributes": { "weight": 1 } }, { "key": "13634", "source": "314", "target": "307", "attributes": { "weight": 5 } }, { "key": "13626", "source": "314", "target": "278", "attributes": { "weight": 6 } }, { "key": "14905", "source": "314", "target": "290", "attributes": { "weight": 2 } }, { "key": "23031", "source": "314", "target": "1925", "attributes": { "weight": 1 } }, { "key": "905", "source": "314", "target": "287", "attributes": { "weight": 6 } }, { "key": "13632", "source": "314", "target": "304", "attributes": { "weight": 2 } }, { "key": "13620", "source": "314", "target": "259", "attributes": { "weight": 5 } }, { "key": "12611", "source": "314", "target": "180", "attributes": { "weight": 2 } }, { "key": "902", "source": "314", "target": "264", "attributes": { "weight": 7 } }, { "key": "906", "source": "314", "target": "311", "attributes": { "weight": 2 } }, { "key": "13637", "source": "314", "target": "319", "attributes": { "weight": 4 } }, { "key": "13631", "source": "314", "target": "291", "attributes": { "weight": 4 } }, { "key": "31096", "source": "314", "target": "1508", "attributes": { "weight": 1 } }, { "key": "904", "source": "314", "target": "277", "attributes": { "weight": 7 } }, { "key": "28162", "source": "314", "target": "305", "attributes": { "weight": 1 } }, { "key": "13622", "source": "314", "target": "263", "attributes": { "weight": 4 } }, { "key": "28161", "source": "314", "target": "168", "attributes": { "weight": 1 } }, { "key": "13625", "source": "314", "target": "167", "attributes": { "weight": 4 } }, { "key": "13628", "source": "314", "target": "286", "attributes": { "weight": 3 } }, { "key": "907", "source": "314", "target": "326", "attributes": { "weight": 7 } }, { "key": "13629", "source": "314", "target": "170", "attributes": { "weight": 3 } }, { "key": "24814", "source": "314", "target": "292", "attributes": { "weight": 1 } }, { "key": "903", "source": "314", "target": "268", "attributes": { "weight": 6 } }, { "key": "900", "source": "314", "target": "261", "attributes": { "weight": 6 } }, { "key": "11763", "source": "315", "target": "305", "attributes": { "weight": 3 } }, { "key": "22622", "source": "315", "target": "167", "attributes": { "weight": 1 } }, { "key": "18421", "source": "315", "target": "318", "attributes": { "weight": 1 } }, { "key": "11764", "source": "315", "target": "327", "attributes": { "weight": 2 } }, { "key": "8242", "source": "315", "target": "1514", "attributes": { "weight": 1 } }, { "key": "12650", "source": "315", "target": "707", "attributes": { "weight": 4 } }, { "key": "12651", "source": "315", "target": "839", "attributes": { "weight": 6 } }, { "key": "22621", "source": "315", "target": "276", "attributes": { "weight": 1 } }, { "key": "18420", "source": "315", "target": "301", "attributes": { "weight": 1 } }, { "key": "8239", "source": "315", "target": "272", "attributes": { "weight": 3 } }, { "key": "13643", "source": "315", "target": "316", "attributes": { "weight": 3 } }, { "key": "910", "source": "315", "target": "264", "attributes": { "weight": 1 } }, { "key": "8240", "source": "315", "target": "1509", "attributes": { "weight": 2 } }, { "key": "909", "source": "315", "target": "262", "attributes": { "weight": 2 } }, { "key": "12649", "source": "315", "target": "699", "attributes": { "weight": 4 } }, { "key": "8241", "source": "315", "target": "1511", "attributes": { "weight": 2 } }, { "key": "22623", "source": "315", "target": "1508", "attributes": { "weight": 1 } }, { "key": "22624", "source": "315", "target": "322", "attributes": { "weight": 1 } }, { "key": "8243", "source": "315", "target": "321", "attributes": { "weight": 1 } }, { "key": "12463", "source": "316", "target": "271", "attributes": { "weight": 1 } }, { "key": "28164", "source": "316", "target": "1554", "attributes": { "weight": 1 } }, { "key": "13651", "source": "316", "target": "839", "attributes": { "weight": 7 } }, { "key": "23037", "source": "316", "target": "1921", "attributes": { "weight": 1 } }, { "key": "27562", "source": "316", "target": "272", "attributes": { "weight": 1 } }, { "key": "12464", "source": "316", "target": "275", "attributes": { "weight": 6 } }, { "key": "12470", "source": "316", "target": "327", "attributes": { "weight": 5 } }, { "key": "19053", "source": "316", "target": "305", "attributes": { "weight": 3 } }, { "key": "12471", "source": "316", "target": "328", "attributes": { "weight": 1 } }, { "key": "12460", "source": "316", "target": "259", "attributes": { "weight": 5 } }, { "key": "13648", "source": "316", "target": "278", "attributes": { "weight": 4 } }, { "key": "12465", "source": "316", "target": "290", "attributes": { "weight": 1 } }, { "key": "13654", "source": "316", "target": "1931", "attributes": { "weight": 2 } }, { "key": "13646", "source": "316", "target": "166", "attributes": { "weight": 2 } }, { "key": "914", "source": "316", "target": "167", "attributes": { "weight": 5 } }, { "key": "23034", "source": "316", "target": "1903", "attributes": { "weight": 1 } }, { "key": "23041", "source": "316", "target": "318", "attributes": { "weight": 1 } }, { "key": "913", "source": "316", "target": "264", "attributes": { "weight": 6 } }, { "key": "12462", "source": "316", "target": "263", "attributes": { "weight": 5 } }, { "key": "13652", "source": "316", "target": "313", "attributes": { "weight": 3 } }, { "key": "13649", "source": "316", "target": "287", "attributes": { "weight": 3 } }, { "key": "12469", "source": "316", "target": "326", "attributes": { "weight": 7 } }, { "key": "12652", "source": "316", "target": "905", "attributes": { "weight": 1 } }, { "key": "12473", "source": "316", "target": "336", "attributes": { "weight": 1 } }, { "key": "12472", "source": "316", "target": "1854", "attributes": { "weight": 2 } }, { "key": "911", "source": "316", "target": "261", "attributes": { "weight": 2 } }, { "key": "23032", "source": "316", "target": "1897", "attributes": { "weight": 2 } }, { "key": "23035", "source": "316", "target": "902", "attributes": { "weight": 1 } }, { "key": "916", "source": "316", "target": "291", "attributes": { "weight": 2 } }, { "key": "12468", "source": "316", "target": "320", "attributes": { "weight": 1 } }, { "key": "2946", "source": "316", "target": "268", "attributes": { "weight": 8 } }, { "key": "23039", "source": "316", "target": "311", "attributes": { "weight": 2 } }, { "key": "23482", "source": "316", "target": "1898", "attributes": { "weight": 1 } }, { "key": "23040", "source": "316", "target": "1872", "attributes": { "weight": 1 } }, { "key": "13644", "source": "316", "target": "836", "attributes": { "weight": 3 } }, { "key": "23038", "source": "316", "target": "307", "attributes": { "weight": 1 } }, { "key": "25078", "source": "316", "target": "579", "attributes": { "weight": 2 } }, { "key": "12653", "source": "316", "target": "180", "attributes": { "weight": 1 } }, { "key": "13645", "source": "316", "target": "260", "attributes": { "weight": 4 } }, { "key": "12467", "source": "316", "target": "312", "attributes": { "weight": 6 } }, { "key": "915", "source": "316", "target": "277", "attributes": { "weight": 8 } }, { "key": "13647", "source": "316", "target": "168", "attributes": { "weight": 3 } }, { "key": "33161", "source": "316", "target": "178", "attributes": { "weight": 1 } }, { "key": "14912", "source": "316", "target": "322", "attributes": { "weight": 4 } }, { "key": "12461", "source": "316", "target": "697", "attributes": { "weight": 2 } }, { "key": "13653", "source": "316", "target": "315", "attributes": { "weight": 3 } }, { "key": "23036", "source": "316", "target": "286", "attributes": { "weight": 1 } }, { "key": "12466", "source": "316", "target": "299", "attributes": { "weight": 2 } }, { "key": "912", "source": "316", "target": "262", "attributes": { "weight": 7 } }, { "key": "23033", "source": "316", "target": "270", "attributes": { "weight": 1 } }, { "key": "23042", "source": "316", "target": "319", "attributes": { "weight": 1 } }, { "key": "14925", "source": "318", "target": "276", "attributes": { "weight": 3 } }, { "key": "919", "source": "318", "target": "264", "attributes": { "weight": 5 } }, { "key": "14921", "source": "318", "target": "261", "attributes": { "weight": 1 } }, { "key": "13660", "source": "318", "target": "291", "attributes": { "weight": 4 } }, { "key": "28167", "source": "318", "target": "1931", "attributes": { "weight": 1 } }, { "key": "18422", "source": "318", "target": "315", "attributes": { "weight": 1 } }, { "key": "23485", "source": "318", "target": "166", "attributes": { "weight": 1 } }, { "key": "13656", "source": "318", "target": "836", "attributes": { "weight": 2 } }, { "key": "2947", "source": "318", "target": "275", "attributes": { "weight": 2 } }, { "key": "19058", "source": "318", "target": "839", "attributes": { "weight": 4 } }, { "key": "14927", "source": "318", "target": "286", "attributes": { "weight": 1 } }, { "key": "13664", "source": "318", "target": "311", "attributes": { "weight": 2 } }, { "key": "13667", "source": "318", "target": "314", "attributes": { "weight": 2 } }, { "key": "23486", "source": "318", "target": "290", "attributes": { "weight": 2 } }, { "key": "13662", "source": "318", "target": "300", "attributes": { "weight": 3 } }, { "key": "14930", "source": "318", "target": "326", "attributes": { "weight": 2 } }, { "key": "921", "source": "318", "target": "167", "attributes": { "weight": 5 } }, { "key": "23047", "source": "318", "target": "316", "attributes": { "weight": 1 } }, { "key": "14929", "source": "318", "target": "322", "attributes": { "weight": 2 } }, { "key": "13658", "source": "318", "target": "270", "attributes": { "weight": 2 } }, { "key": "14924", "source": "318", "target": "271", "attributes": { "weight": 1 } }, { "key": "13663", "source": "318", "target": "304", "attributes": { "weight": 3 } }, { "key": "23045", "source": "318", "target": "1898", "attributes": { "weight": 3 } }, { "key": "23487", "source": "318", "target": "305", "attributes": { "weight": 2 } }, { "key": "920", "source": "318", "target": "266", "attributes": { "weight": 3 } }, { "key": "14923", "source": "318", "target": "265", "attributes": { "weight": 2 } }, { "key": "13657", "source": "318", "target": "268", "attributes": { "weight": 4 } }, { "key": "27563", "source": "318", "target": "272", "attributes": { "weight": 1 } }, { "key": "13666", "source": "318", "target": "313", "attributes": { "weight": 4 } }, { "key": "2949", "source": "318", "target": "292", "attributes": { "weight": 1 } }, { "key": "13661", "source": "318", "target": "578", "attributes": { "weight": 2 } }, { "key": "14928", "source": "318", "target": "1872", "attributes": { "weight": 2 } }, { "key": "13665", "source": "318", "target": "312", "attributes": { "weight": 4 } }, { "key": "23046", "source": "318", "target": "289", "attributes": { "weight": 1 } }, { "key": "13668", "source": "318", "target": "319", "attributes": { "weight": 3 } }, { "key": "922", "source": "318", "target": "307", "attributes": { "weight": 4 } }, { "key": "918", "source": "318", "target": "262", "attributes": { "weight": 3 } }, { "key": "13659", "source": "318", "target": "277", "attributes": { "weight": 2 } }, { "key": "14931", "source": "318", "target": "327", "attributes": { "weight": 2 } }, { "key": "28166", "source": "318", "target": "180", "attributes": { "weight": 1 } }, { "key": "23728", "source": "318", "target": "168", "attributes": { "weight": 2 } }, { "key": "14922", "source": "318", "target": "263", "attributes": { "weight": 3 } }, { "key": "2948", "source": "318", "target": "287", "attributes": { "weight": 4 } }, { "key": "14920", "source": "318", "target": "259", "attributes": { "weight": 3 } }, { "key": "12866", "source": "318", "target": "582", "attributes": { "weight": 1 } }, { "key": "14956", "source": "319", "target": "13", "attributes": { "weight": 3 } }, { "key": "13670", "source": "319", "target": "1910", "attributes": { "weight": 6 } }, { "key": "14958", "source": "319", "target": "308", "attributes": { "weight": 2 } }, { "key": "14961", "source": "319", "target": "673", "attributes": { "weight": 1 } }, { "key": "14945", "source": "319", "target": "790", "attributes": { "weight": 1 } }, { "key": "14963", "source": "319", "target": "1780", "attributes": { "weight": 2 } }, { "key": "14964", "source": "319", "target": "322", "attributes": { "weight": 4 } }, { "key": "924", "source": "319", "target": "260", "attributes": { "weight": 9 } }, { "key": "14965", "source": "319", "target": "1932", "attributes": { "weight": 2 } }, { "key": "13673", "source": "319", "target": "314", "attributes": { "weight": 4 } }, { "key": "14953", "source": "319", "target": "300", "attributes": { "weight": 1 } }, { "key": "14962", "source": "319", "target": "1989", "attributes": { "weight": 2 } }, { "key": "14932", "source": "319", "target": "1968", "attributes": { "weight": 2 } }, { "key": "14947", "source": "319", "target": "791", "attributes": { "weight": 1 } }, { "key": "14933", "source": "319", "target": "1894", "attributes": { "weight": 3 } }, { "key": "14939", "source": "319", "target": "269", "attributes": { "weight": 2 } }, { "key": "13672", "source": "319", "target": "304", "attributes": { "weight": 4 } }, { "key": "14942", "source": "319", "target": "275", "attributes": { "weight": 1 } }, { "key": "14949", "source": "319", "target": "1917", "attributes": { "weight": 4 } }, { "key": "14002", "source": "319", "target": "180", "attributes": { "weight": 2 } }, { "key": "14960", "source": "319", "target": "1774", "attributes": { "weight": 2 } }, { "key": "14948", "source": "319", "target": "1978", "attributes": { "weight": 2 } }, { "key": "2732", "source": "319", "target": "788", "attributes": { "weight": 3 } }, { "key": "2951", "source": "319", "target": "328", "attributes": { "weight": 2 } }, { "key": "14959", "source": "319", "target": "595", "attributes": { "weight": 2 } }, { "key": "14950", "source": "319", "target": "1980", "attributes": { "weight": 2 } }, { "key": "23488", "source": "319", "target": "312", "attributes": { "weight": 1 } }, { "key": "14941", "source": "319", "target": "5", "attributes": { "weight": 1 } }, { "key": "14954", "source": "319", "target": "1986", "attributes": { "weight": 2 } }, { "key": "14955", "source": "319", "target": "1988", "attributes": { "weight": 2 } }, { "key": "23049", "source": "319", "target": "270", "attributes": { "weight": 1 } }, { "key": "14957", "source": "319", "target": "305", "attributes": { "weight": 2 } }, { "key": "14937", "source": "319", "target": "259", "attributes": { "weight": 3 } }, { "key": "14943", "source": "319", "target": "167", "attributes": { "weight": 2 } }, { "key": "13674", "source": "319", "target": "318", "attributes": { "weight": 3 } }, { "key": "926", "source": "319", "target": "264", "attributes": { "weight": 5 } }, { "key": "23048", "source": "319", "target": "2395", "attributes": { "weight": 1 } }, { "key": "928", "source": "319", "target": "326", "attributes": { "weight": 9 } }, { "key": "14938", "source": "319", "target": "263", "attributes": { "weight": 2 } }, { "key": "14944", "source": "319", "target": "1908", "attributes": { "weight": 3 } }, { "key": "14940", "source": "319", "target": "789", "attributes": { "weight": 3 } }, { "key": "13675", "source": "319", "target": "1931", "attributes": { "weight": 2 } }, { "key": "925", "source": "319", "target": "262", "attributes": { "weight": 6 } }, { "key": "3291", "source": "319", "target": "839", "attributes": { "weight": 6 } }, { "key": "14951", "source": "319", "target": "289", "attributes": { "weight": 1 } }, { "key": "14935", "source": "319", "target": "1779", "attributes": { "weight": 1 } }, { "key": "14936", "source": "319", "target": "836", "attributes": { "weight": 1 } }, { "key": "2950", "source": "319", "target": "291", "attributes": { "weight": 8 } }, { "key": "14934", "source": "319", "target": "787", "attributes": { "weight": 2 } }, { "key": "14952", "source": "319", "target": "792", "attributes": { "weight": 1 } }, { "key": "927", "source": "319", "target": "285", "attributes": { "weight": 9 } }, { "key": "14946", "source": "319", "target": "421", "attributes": { "weight": 1 } }, { "key": "14966", "source": "319", "target": "1933", "attributes": { "weight": 1 } }, { "key": "23050", "source": "319", "target": "316", "attributes": { "weight": 1 } }, { "key": "23489", "source": "320", "target": "304", "attributes": { "weight": 1 } }, { "key": "929", "source": "320", "target": "326", "attributes": { "weight": 4 } }, { "key": "13676", "source": "320", "target": "264", "attributes": { "weight": 2 } }, { "key": "12475", "source": "320", "target": "316", "attributes": { "weight": 1 } }, { "key": "14967", "source": "320", "target": "260", "attributes": { "weight": 1 } }, { "key": "12474", "source": "320", "target": "287", "attributes": { "weight": 1 } }, { "key": "26032", "source": "320", "target": "2622", "attributes": { "weight": 2 } }, { "key": "931", "source": "321", "target": "264", "attributes": { "weight": 4 } }, { "key": "14971", "source": "321", "target": "322", "attributes": { "weight": 4 } }, { "key": "13682", "source": "321", "target": "287", "attributes": { "weight": 3 } }, { "key": "28650", "source": "321", "target": "308", "attributes": { "weight": 1 } }, { "key": "930", "source": "321", "target": "263", "attributes": { "weight": 4 } }, { "key": "23051", "source": "321", "target": "1903", "attributes": { "weight": 1 } }, { "key": "23055", "source": "321", "target": "301", "attributes": { "weight": 1 } }, { "key": "8245", "source": "321", "target": "315", "attributes": { "weight": 1 } }, { "key": "13686", "source": "321", "target": "312", "attributes": { "weight": 4 } }, { "key": "28170", "source": "321", "target": "697", "attributes": { "weight": 1 } }, { "key": "13691", "source": "321", "target": "336", "attributes": { "weight": 2 } }, { "key": "13681", "source": "321", "target": "262", "attributes": { "weight": 5 } }, { "key": "932", "source": "321", "target": "277", "attributes": { "weight": 1 } }, { "key": "14287", "source": "321", "target": "168", "attributes": { "weight": 3 } }, { "key": "13683", "source": "321", "target": "304", "attributes": { "weight": 4 } }, { "key": "23054", "source": "321", "target": "295", "attributes": { "weight": 1 } }, { "key": "934", "source": "321", "target": "311", "attributes": { "weight": 3 } }, { "key": "23053", "source": "321", "target": "286", "attributes": { "weight": 1 } }, { "key": "13688", "source": "321", "target": "314", "attributes": { "weight": 2 } }, { "key": "14969", "source": "321", "target": "260", "attributes": { "weight": 2 } }, { "key": "26033", "source": "321", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13687", "source": "321", "target": "313", "attributes": { "weight": 4 } }, { "key": "28649", "source": "321", "target": "166", "attributes": { "weight": 1 } }, { "key": "933", "source": "321", "target": "289", "attributes": { "weight": 3 } }, { "key": "13689", "source": "321", "target": "180", "attributes": { "weight": 1 } }, { "key": "23052", "source": "321", "target": "902", "attributes": { "weight": 1 } }, { "key": "13684", "source": "321", "target": "305", "attributes": { "weight": 3 } }, { "key": "13690", "source": "321", "target": "326", "attributes": { "weight": 5 } }, { "key": "13680", "source": "321", "target": "259", "attributes": { "weight": 6 } }, { "key": "14970", "source": "321", "target": "290", "attributes": { "weight": 1 } }, { "key": "13685", "source": "321", "target": "307", "attributes": { "weight": 2 } }, { "key": "19059", "source": "321", "target": "839", "attributes": { "weight": 3 } }, { "key": "35535", "source": "321", "target": "1857", "attributes": { "weight": 1 } }, { "key": "2952", "source": "322", "target": "268", "attributes": { "weight": 4 } }, { "key": "28171", "source": "322", "target": "1971", "attributes": { "weight": 1 } }, { "key": "14987", "source": "322", "target": "318", "attributes": { "weight": 2 } }, { "key": "14976", "source": "322", "target": "167", "attributes": { "weight": 5 } }, { "key": "14980", "source": "322", "target": "291", "attributes": { "weight": 3 } }, { "key": "14975", "source": "322", "target": "166", "attributes": { "weight": 3 } }, { "key": "938", "source": "322", "target": "283", "attributes": { "weight": 3 } }, { "key": "28176", "source": "322", "target": "1929", "attributes": { "weight": 1 } }, { "key": "14982", "source": "322", "target": "305", "attributes": { "weight": 5 } }, { "key": "14984", "source": "322", "target": "179", "attributes": { "weight": 1 } }, { "key": "18409", "source": "322", "target": "1621", "attributes": { "weight": 1 } }, { "key": "22625", "source": "322", "target": "315", "attributes": { "weight": 1 } }, { "key": "14986", "source": "322", "target": "316", "attributes": { "weight": 4 } }, { "key": "2955", "source": "322", "target": "313", "attributes": { "weight": 6 } }, { "key": "14974", "source": "322", "target": "272", "attributes": { "weight": 3 } }, { "key": "13704", "source": "322", "target": "323", "attributes": { "weight": 2 } }, { "key": "28178", "source": "322", "target": "908", "attributes": { "weight": 1 } }, { "key": "14989", "source": "322", "target": "321", "attributes": { "weight": 4 } }, { "key": "2954", "source": "322", "target": "292", "attributes": { "weight": 3 } }, { "key": "9140", "source": "322", "target": "259", "attributes": { "weight": 5 } }, { "key": "23057", "source": "322", "target": "270", "attributes": { "weight": 1 } }, { "key": "935", "source": "322", "target": "262", "attributes": { "weight": 6 } }, { "key": "13706", "source": "322", "target": "328", "attributes": { "weight": 2 } }, { "key": "13707", "source": "322", "target": "1854", "attributes": { "weight": 3 } }, { "key": "28174", "source": "322", "target": "1984", "attributes": { "weight": 1 } }, { "key": "26176", "source": "322", "target": "332", "attributes": { "weight": 2 } }, { "key": "27702", "source": "322", "target": "178", "attributes": { "weight": 3 } }, { "key": "14004", "source": "322", "target": "180", "attributes": { "weight": 3 } }, { "key": "2953", "source": "322", "target": "287", "attributes": { "weight": 8 } }, { "key": "14981", "source": "322", "target": "299", "attributes": { "weight": 2 } }, { "key": "13702", "source": "322", "target": "312", "attributes": { "weight": 4 } }, { "key": "12867", "source": "322", "target": "582", "attributes": { "weight": 1 } }, { "key": "28177", "source": "322", "target": "1931", "attributes": { "weight": 1 } }, { "key": "28175", "source": "322", "target": "1918", "attributes": { "weight": 1 } }, { "key": "13701", "source": "322", "target": "307", "attributes": { "weight": 3 } }, { "key": "14973", "source": "322", "target": "164", "attributes": { "weight": 1 } }, { "key": "14988", "source": "322", "target": "319", "attributes": { "weight": 3 } }, { "key": "14992", "source": "322", "target": "336", "attributes": { "weight": 1 } }, { "key": "936", "source": "322", "target": "264", "attributes": { "weight": 7 } }, { "key": "13699", "source": "322", "target": "578", "attributes": { "weight": 2 } }, { "key": "14991", "source": "322", "target": "1515", "attributes": { "weight": 1 } }, { "key": "18008", "source": "322", "target": "1911", "attributes": { "weight": 1 } }, { "key": "28172", "source": "322", "target": "1898", "attributes": { "weight": 1 } }, { "key": "13700", "source": "322", "target": "304", "attributes": { "weight": 5 } }, { "key": "13696", "source": "322", "target": "168", "attributes": { "weight": 4 } }, { "key": "13705", "source": "322", "target": "327", "attributes": { "weight": 8 } }, { "key": "28173", "source": "322", "target": "286", "attributes": { "weight": 1 } }, { "key": "14979", "source": "322", "target": "290", "attributes": { "weight": 1 } }, { "key": "14990", "source": "322", "target": "326", "attributes": { "weight": 3 } }, { "key": "23058", "source": "322", "target": "295", "attributes": { "weight": 1 } }, { "key": "14983", "source": "322", "target": "839", "attributes": { "weight": 4 } }, { "key": "13693", "source": "322", "target": "261", "attributes": { "weight": 3 } }, { "key": "13698", "source": "322", "target": "289", "attributes": { "weight": 5 } }, { "key": "937", "source": "322", "target": "277", "attributes": { "weight": 1 } }, { "key": "13695", "source": "322", "target": "275", "attributes": { "weight": 3 } }, { "key": "9141", "source": "322", "target": "442", "attributes": { "weight": 1 } }, { "key": "14985", "source": "322", "target": "311", "attributes": { "weight": 4 } }, { "key": "14977", "source": "322", "target": "278", "attributes": { "weight": 3 } }, { "key": "9142", "source": "322", "target": "1534", "attributes": { "weight": 4 } }, { "key": "939", "source": "322", "target": "301", "attributes": { "weight": 7 } }, { "key": "13694", "source": "322", "target": "830", "attributes": { "weight": 1 } }, { "key": "14972", "source": "322", "target": "836", "attributes": { "weight": 1 } }, { "key": "13703", "source": "322", "target": "314", "attributes": { "weight": 4 } }, { "key": "14978", "source": "322", "target": "905", "attributes": { "weight": 2 } }, { "key": "28182", "source": "323", "target": "178", "attributes": { "weight": 1 } }, { "key": "13712", "source": "323", "target": "259", "attributes": { "weight": 4 } }, { "key": "942", "source": "323", "target": "264", "attributes": { "weight": 4 } }, { "key": "13719", "source": "323", "target": "322", "attributes": { "weight": 2 } }, { "key": "28505", "source": "323", "target": "170", "attributes": { "weight": 2 } }, { "key": "28181", "source": "323", "target": "168", "attributes": { "weight": 1 } }, { "key": "28180", "source": "323", "target": "263", "attributes": { "weight": 2 } }, { "key": "14005", "source": "323", "target": "180", "attributes": { "weight": 4 } }, { "key": "13713", "source": "323", "target": "268", "attributes": { "weight": 2 } }, { "key": "37478", "source": "323", "target": "578", "attributes": { "weight": 1 } }, { "key": "941", "source": "323", "target": "262", "attributes": { "weight": 4 } }, { "key": "13718", "source": "323", "target": "312", "attributes": { "weight": 4 } }, { "key": "13715", "source": "323", "target": "304", "attributes": { "weight": 3 } }, { "key": "28183", "source": "323", "target": "313", "attributes": { "weight": 1 } }, { "key": "13716", "source": "323", "target": "307", "attributes": { "weight": 2 } }, { "key": "13714", "source": "323", "target": "272", "attributes": { "weight": 2 } }, { "key": "13721", "source": "323", "target": "327", "attributes": { "weight": 3 } }, { "key": "13720", "source": "323", "target": "326", "attributes": { "weight": 3 } }, { "key": "13717", "source": "323", "target": "311", "attributes": { "weight": 2 } }, { "key": "945", "source": "324", "target": "304", "attributes": { "weight": 1 } }, { "key": "943", "source": "324", "target": "264", "attributes": { "weight": 1 } }, { "key": "19060", "source": "324", "target": "305", "attributes": { "weight": 2 } }, { "key": "946", "source": "324", "target": "312", "attributes": { "weight": 1 } }, { "key": "13722", "source": "324", "target": "259", "attributes": { "weight": 2 } }, { "key": "14994", "source": "324", "target": "326", "attributes": { "weight": 2 } }, { "key": "944", "source": "324", "target": "287", "attributes": { "weight": 1 } }, { "key": "14995", "source": "324", "target": "327", "attributes": { "weight": 2 } }, { "key": "28185", "source": "325", "target": "287", "attributes": { "weight": 1 } }, { "key": "947", "source": "325", "target": "264", "attributes": { "weight": 3 } }, { "key": "22252", "source": "325", "target": "262", "attributes": { "weight": 1 } }, { "key": "23064", "source": "326", "target": "1908", "attributes": { "weight": 1 } }, { "key": "23068", "source": "326", "target": "1985", "attributes": { "weight": 1 } }, { "key": "961", "source": "326", "target": "328", "attributes": { "weight": 9 } }, { "key": "23067", "source": "326", "target": "1919", "attributes": { "weight": 1 } }, { "key": "24818", "source": "326", "target": "308", "attributes": { "weight": 4 } }, { "key": "23071", "source": "326", "target": "2399", "attributes": { "weight": 2 } }, { "key": "13736", "source": "326", "target": "305", "attributes": { "weight": 8 } }, { "key": "28189", "source": "326", "target": "280", "attributes": { "weight": 1 } }, { "key": "15000", "source": "326", "target": "2448", "attributes": { "weight": 2 } }, { "key": "12478", "source": "326", "target": "316", "attributes": { "weight": 7 } }, { "key": "15003", "source": "326", "target": "311", "attributes": { "weight": 3 } }, { "key": "958", "source": "326", "target": "319", "attributes": { "weight": 9 } }, { "key": "12476", "source": "326", "target": "263", "attributes": { "weight": 7 } }, { "key": "28194", "source": "326", "target": "1515", "attributes": { "weight": 1 } }, { "key": "956", "source": "326", "target": "295", "attributes": { "weight": 1 } }, { "key": "23498", "source": "326", "target": "1927", "attributes": { "weight": 1 } }, { "key": "13734", "source": "326", "target": "300", "attributes": { "weight": 6 } }, { "key": "23070", "source": "326", "target": "331", "attributes": { "weight": 1 } }, { "key": "14999", "source": "326", "target": "269", "attributes": { "weight": 2 } }, { "key": "948", "source": "326", "target": "258", "attributes": { "weight": 1 } }, { "key": "2956", "source": "326", "target": "836", "attributes": { "weight": 2 } }, { "key": "23060", "source": "326", "target": "266", "attributes": { "weight": 1 } }, { "key": "13741", "source": "326", "target": "1854", "attributes": { "weight": 2 } }, { "key": "28191", "source": "326", "target": "284", "attributes": { "weight": 1 } }, { "key": "28187", "source": "326", "target": "265", "attributes": { "weight": 1 } }, { "key": "13733", "source": "326", "target": "291", "attributes": { "weight": 6 } }, { "key": "13735", "source": "326", "target": "304", "attributes": { "weight": 5 } }, { "key": "12477", "source": "326", "target": "301", "attributes": { "weight": 5 } }, { "key": "24817", "source": "326", "target": "166", "attributes": { "weight": 1 } }, { "key": "13740", "source": "326", "target": "323", "attributes": { "weight": 3 } }, { "key": "954", "source": "326", "target": "287", "attributes": { "weight": 8 } }, { "key": "13728", "source": "326", "target": "167", "attributes": { "weight": 7 } }, { "key": "11765", "source": "326", "target": "180", "attributes": { "weight": 4 } }, { "key": "15004", "source": "326", "target": "318", "attributes": { "weight": 2 } }, { "key": "15002", "source": "326", "target": "286", "attributes": { "weight": 4 } }, { "key": "13727", "source": "326", "target": "268", "attributes": { "weight": 6 } }, { "key": "13737", "source": "326", "target": "312", "attributes": { "weight": 5 } }, { "key": "31102", "source": "326", "target": "1928", "attributes": { "weight": 1 } }, { "key": "28190", "source": "326", "target": "1913", "attributes": { "weight": 1 } }, { "key": "15005", "source": "326", "target": "322", "attributes": { "weight": 3 } }, { "key": "15006", "source": "326", "target": "324", "attributes": { "weight": 2 } }, { "key": "962", "source": "326", "target": "330", "attributes": { "weight": 1 } }, { "key": "24816", "source": "326", "target": "271", "attributes": { "weight": 2 } }, { "key": "10945", "source": "326", "target": "457", "attributes": { "weight": 1 } }, { "key": "19061", "source": "326", "target": "270", "attributes": { "weight": 3 } }, { "key": "13742", "source": "326", "target": "332", "attributes": { "weight": 2 } }, { "key": "28186", "source": "326", "target": "261", "attributes": { "weight": 1 } }, { "key": "13732", "source": "326", "target": "290", "attributes": { "weight": 7 } }, { "key": "3293", "source": "326", "target": "307", "attributes": { "weight": 6 } }, { "key": "13739", "source": "326", "target": "321", "attributes": { "weight": 5 } }, { "key": "23066", "source": "326", "target": "2398", "attributes": { "weight": 1 } }, { "key": "18410", "source": "326", "target": "1621", "attributes": { "weight": 1 } }, { "key": "13738", "source": "326", "target": "313", "attributes": { "weight": 7 } }, { "key": "23065", "source": "326", "target": "2397", "attributes": { "weight": 1 } }, { "key": "23062", "source": "326", "target": "275", "attributes": { "weight": 3 } }, { "key": "23069", "source": "326", "target": "1923", "attributes": { "weight": 1 } }, { "key": "953", "source": "326", "target": "277", "attributes": { "weight": 5 } }, { "key": "14288", "source": "326", "target": "168", "attributes": { "weight": 3 } }, { "key": "952", "source": "326", "target": "273", "attributes": { "weight": 1 } }, { "key": "951", "source": "326", "target": "272", "attributes": { "weight": 5 } }, { "key": "2957", "source": "326", "target": "292", "attributes": { "weight": 5 } }, { "key": "23059", "source": "326", "target": "901", "attributes": { "weight": 1 } }, { "key": "13730", "source": "326", "target": "1912", "attributes": { "weight": 2 } }, { "key": "949", "source": "326", "target": "262", "attributes": { "weight": 10 } }, { "key": "957", "source": "326", "target": "314", "attributes": { "weight": 7 } }, { "key": "28651", "source": "326", "target": "298", "attributes": { "weight": 1 } }, { "key": "959", "source": "326", "target": "320", "attributes": { "weight": 4 } }, { "key": "23072", "source": "326", "target": "908", "attributes": { "weight": 1 } }, { "key": "24819", "source": "326", "target": "1872", "attributes": { "weight": 1 } }, { "key": "3292", "source": "326", "target": "839", "attributes": { "weight": 5 } }, { "key": "28193", "source": "326", "target": "299", "attributes": { "weight": 1 } }, { "key": "25780", "source": "326", "target": "278", "attributes": { "weight": 3 } }, { "key": "23061", "source": "326", "target": "1903", "attributes": { "weight": 1 } }, { "key": "13731", "source": "326", "target": "289", "attributes": { "weight": 8 } }, { "key": "15001", "source": "326", "target": "276", "attributes": { "weight": 4 } }, { "key": "960", "source": "326", "target": "327", "attributes": { "weight": 7 } }, { "key": "955", "source": "326", "target": "294", "attributes": { "weight": 3 } }, { "key": "950", "source": "326", "target": "264", "attributes": { "weight": 8 } }, { "key": "28192", "source": "326", "target": "285", "attributes": { "weight": 1 } }, { "key": "28188", "source": "326", "target": "2719", "attributes": { "weight": 1 } }, { "key": "23063", "source": "326", "target": "902", "attributes": { "weight": 1 } }, { "key": "23499", "source": "326", "target": "1933", "attributes": { "weight": 1 } }, { "key": "12868", "source": "326", "target": "582", "attributes": { "weight": 1 } }, { "key": "13726", "source": "326", "target": "259", "attributes": { "weight": 5 } }, { "key": "22253", "source": "326", "target": "1976", "attributes": { "weight": 1 } }, { "key": "15017", "source": "327", "target": "1872", "attributes": { "weight": 3 } }, { "key": "13743", "source": "327", "target": "259", "attributes": { "weight": 6 } }, { "key": "963", "source": "327", "target": "263", "attributes": { "weight": 8 } }, { "key": "15009", "source": "327", "target": "166", "attributes": { "weight": 3 } }, { "key": "13759", "source": "327", "target": "311", "attributes": { "weight": 5 } }, { "key": "13754", "source": "327", "target": "300", "attributes": { "weight": 9 } }, { "key": "23500", "source": "327", "target": "1898", "attributes": { "weight": 1 } }, { "key": "15020", "source": "327", "target": "1929", "attributes": { "weight": 1 } }, { "key": "18009", "source": "327", "target": "1913", "attributes": { "weight": 1 } }, { "key": "964", "source": "327", "target": "264", "attributes": { "weight": 6 } }, { "key": "8246", "source": "327", "target": "905", "attributes": { "weight": 3 } }, { "key": "15022", "source": "327", "target": "1933", "attributes": { "weight": 1 } }, { "key": "15019", "source": "327", "target": "324", "attributes": { "weight": 2 } }, { "key": "13767", "source": "327", "target": "336", "attributes": { "weight": 4 } }, { "key": "15016", "source": "327", "target": "178", "attributes": { "weight": 4 } }, { "key": "11766", "source": "327", "target": "1513", "attributes": { "weight": 2 } }, { "key": "13756", "source": "327", "target": "580", "attributes": { "weight": 3 } }, { "key": "23074", "source": "327", "target": "1903", "attributes": { "weight": 1 } }, { "key": "23075", "source": "327", "target": "908", "attributes": { "weight": 1 } }, { "key": "3295", "source": "327", "target": "839", "attributes": { "weight": 6 } }, { "key": "13750", "source": "327", "target": "1914", "attributes": { "weight": 2 } }, { "key": "3296", "source": "327", "target": "308", "attributes": { "weight": 1 } }, { "key": "13760", "source": "327", "target": "312", "attributes": { "weight": 4 } }, { "key": "15012", "source": "327", "target": "286", "attributes": { "weight": 3 } }, { "key": "13748", "source": "327", "target": "167", "attributes": { "weight": 5 } }, { "key": "15023", "source": "327", "target": "1515", "attributes": { "weight": 2 } }, { "key": "15014", "source": "327", "target": "299", "attributes": { "weight": 3 } }, { "key": "22254", "source": "327", "target": "1971", "attributes": { "weight": 1 } }, { "key": "968", "source": "327", "target": "326", "attributes": { "weight": 7 } }, { "key": "3294", "source": "327", "target": "305", "attributes": { "weight": 4 } }, { "key": "8247", "source": "327", "target": "180", "attributes": { "weight": 2 } }, { "key": "11767", "source": "327", "target": "315", "attributes": { "weight": 2 } }, { "key": "13762", "source": "327", "target": "314", "attributes": { "weight": 4 } }, { "key": "15010", "source": "327", "target": "1909", "attributes": { "weight": 2 } }, { "key": "15013", "source": "327", "target": "171", "attributes": { "weight": 3 } }, { "key": "13745", "source": "327", "target": "260", "attributes": { "weight": 5 } }, { "key": "15015", "source": "327", "target": "307", "attributes": { "weight": 3 } }, { "key": "13765", "source": "327", "target": "323", "attributes": { "weight": 3 } }, { "key": "13766", "source": "327", "target": "332", "attributes": { "weight": 2 } }, { "key": "13755", "source": "327", "target": "301", "attributes": { "weight": 6 } }, { "key": "23501", "source": "327", "target": "329", "attributes": { "weight": 1 } }, { "key": "13753", "source": "327", "target": "578", "attributes": { "weight": 4 } }, { "key": "35536", "source": "327", "target": "1857", "attributes": { "weight": 1 } }, { "key": "2958", "source": "327", "target": "290", "attributes": { "weight": 6 } }, { "key": "27565", "source": "327", "target": "697", "attributes": { "weight": 1 } }, { "key": "13752", "source": "327", "target": "289", "attributes": { "weight": 3 } }, { "key": "13751", "source": "327", "target": "1916", "attributes": { "weight": 2 } }, { "key": "13747", "source": "327", "target": "276", "attributes": { "weight": 7 } }, { "key": "13764", "source": "327", "target": "1928", "attributes": { "weight": 3 } }, { "key": "12479", "source": "327", "target": "316", "attributes": { "weight": 5 } }, { "key": "15011", "source": "327", "target": "1977", "attributes": { "weight": 2 } }, { "key": "15018", "source": "327", "target": "318", "attributes": { "weight": 2 } }, { "key": "13758", "source": "327", "target": "304", "attributes": { "weight": 6 } }, { "key": "13761", "source": "327", "target": "313", "attributes": { "weight": 4 } }, { "key": "15007", "source": "327", "target": "220", "attributes": { "weight": 2 } }, { "key": "23073", "source": "327", "target": "901", "attributes": { "weight": 1 } }, { "key": "15021", "source": "327", "target": "331", "attributes": { "weight": 2 } }, { "key": "27566", "source": "327", "target": "268", "attributes": { "weight": 1 } }, { "key": "13746", "source": "327", "target": "262", "attributes": { "weight": 5 } }, { "key": "1949", "source": "327", "target": "93", "attributes": { "weight": 3 } }, { "key": "18010", "source": "327", "target": "1918", "attributes": { "weight": 1 } }, { "key": "14289", "source": "327", "target": "168", "attributes": { "weight": 5 } }, { "key": "13744", "source": "327", "target": "567", "attributes": { "weight": 3 } }, { "key": "13749", "source": "327", "target": "1912", "attributes": { "weight": 2 } }, { "key": "15008", "source": "327", "target": "164", "attributes": { "weight": 3 } }, { "key": "967", "source": "327", "target": "288", "attributes": { "weight": 1 } }, { "key": "965", "source": "327", "target": "265", "attributes": { "weight": 2 } }, { "key": "26037", "source": "327", "target": "2622", "attributes": { "weight": 2 } }, { "key": "966", "source": "327", "target": "287", "attributes": { "weight": 8 } }, { "key": "25781", "source": "327", "target": "278", "attributes": { "weight": 2 } }, { "key": "13763", "source": "327", "target": "322", "attributes": { "weight": 7 } }, { "key": "2959", "source": "328", "target": "287", "attributes": { "weight": 1 } }, { "key": "15025", "source": "328", "target": "289", "attributes": { "weight": 1 } }, { "key": "28195", "source": "328", "target": "2719", "attributes": { "weight": 1 } }, { "key": "970", "source": "328", "target": "264", "attributes": { "weight": 5 } }, { "key": "33125", "source": "328", "target": "300", "attributes": { "weight": 1 } }, { "key": "13769", "source": "328", "target": "304", "attributes": { "weight": 5 } }, { "key": "2960", "source": "328", "target": "319", "attributes": { "weight": 2 } }, { "key": "13768", "source": "328", "target": "260", "attributes": { "weight": 5 } }, { "key": "28197", "source": "328", "target": "2723", "attributes": { "weight": 2 } }, { "key": "972", "source": "328", "target": "298", "attributes": { "weight": 1 } }, { "key": "969", "source": "328", "target": "262", "attributes": { "weight": 7 } }, { "key": "15024", "source": "328", "target": "263", "attributes": { "weight": 1 } }, { "key": "13770", "source": "328", "target": "322", "attributes": { "weight": 2 } }, { "key": "974", "source": "328", "target": "335", "attributes": { "weight": 1 } }, { "key": "28196", "source": "328", "target": "305", "attributes": { "weight": 1 } }, { "key": "973", "source": "328", "target": "326", "attributes": { "weight": 9 } }, { "key": "12480", "source": "328", "target": "316", "attributes": { "weight": 1 } }, { "key": "971", "source": "328", "target": "294", "attributes": { "weight": 2 } }, { "key": "15028", "source": "329", "target": "1984", "attributes": { "weight": 1 } }, { "key": "15026", "source": "329", "target": "259", "attributes": { "weight": 1 } }, { "key": "978", "source": "329", "target": "287", "attributes": { "weight": 1 } }, { "key": "2961", "source": "329", "target": "262", "attributes": { "weight": 1 } }, { "key": "23503", "source": "329", "target": "312", "attributes": { "weight": 1 } }, { "key": "22626", "source": "329", "target": "905", "attributes": { "weight": 1 } }, { "key": "22627", "source": "329", "target": "180", "attributes": { "weight": 2 } }, { "key": "23729", "source": "329", "target": "168", "attributes": { "weight": 1 } }, { "key": "980", "source": "329", "target": "307", "attributes": { "weight": 1 } }, { "key": "23502", "source": "329", "target": "263", "attributes": { "weight": 1 } }, { "key": "23504", "source": "329", "target": "327", "attributes": { "weight": 1 } }, { "key": "976", "source": "329", "target": "268", "attributes": { "weight": 1 } }, { "key": "979", "source": "329", "target": "289", "attributes": { "weight": 2 } }, { "key": "24820", "source": "329", "target": "272", "attributes": { "weight": 1 } }, { "key": "977", "source": "329", "target": "277", "attributes": { "weight": 1 } }, { "key": "28198", "source": "329", "target": "839", "attributes": { "weight": 1 } }, { "key": "975", "source": "329", "target": "264", "attributes": { "weight": 1 } }, { "key": "13772", "source": "330", "target": "304", "attributes": { "weight": 2 } }, { "key": "982", "source": "330", "target": "326", "attributes": { "weight": 1 } }, { "key": "28199", "source": "330", "target": "287", "attributes": { "weight": 1 } }, { "key": "981", "source": "330", "target": "311", "attributes": { "weight": 1 } }, { "key": "28200", "source": "330", "target": "305", "attributes": { "weight": 1 } }, { "key": "13771", "source": "330", "target": "259", "attributes": { "weight": 2 } }, { "key": "13773", "source": "330", "target": "312", "attributes": { "weight": 2 } }, { "key": "13787", "source": "331", "target": "312", "attributes": { "weight": 3 } }, { "key": "2965", "source": "331", "target": "299", "attributes": { "weight": 1 } }, { "key": "2964", "source": "331", "target": "287", "attributes": { "weight": 1 } }, { "key": "15034", "source": "331", "target": "327", "attributes": { "weight": 2 } }, { "key": "984", "source": "331", "target": "264", "attributes": { "weight": 1 } }, { "key": "24824", "source": "331", "target": "311", "attributes": { "weight": 1 } }, { "key": "15033", "source": "331", "target": "259", "attributes": { "weight": 2 } }, { "key": "24822", "source": "331", "target": "167", "attributes": { "weight": 1 } }, { "key": "24823", "source": "331", "target": "289", "attributes": { "weight": 1 } }, { "key": "985", "source": "331", "target": "168", "attributes": { "weight": 1 } }, { "key": "19063", "source": "331", "target": "839", "attributes": { "weight": 2 } }, { "key": "13786", "source": "331", "target": "304", "attributes": { "weight": 4 } }, { "key": "983", "source": "331", "target": "262", "attributes": { "weight": 3 } }, { "key": "23076", "source": "331", "target": "326", "attributes": { "weight": 1 } }, { "key": "15057", "source": "332", "target": "260", "attributes": { "weight": 1 } }, { "key": "13811", "source": "332", "target": "304", "attributes": { "weight": 2 } }, { "key": "15059", "source": "332", "target": "268", "attributes": { "weight": 1 } }, { "key": "13813", "source": "332", "target": "327", "attributes": { "weight": 2 } }, { "key": "13812", "source": "332", "target": "326", "attributes": { "weight": 2 } }, { "key": "15058", "source": "332", "target": "263", "attributes": { "weight": 1 } }, { "key": "26177", "source": "332", "target": "322", "attributes": { "weight": 2 } }, { "key": "15056", "source": "332", "target": "259", "attributes": { "weight": 1 } }, { "key": "15060", "source": "332", "target": "277", "attributes": { "weight": 1 } }, { "key": "37479", "source": "332", "target": "312", "attributes": { "weight": 1 } }, { "key": "13810", "source": "332", "target": "262", "attributes": { "weight": 2 } }, { "key": "15061", "source": "332", "target": "311", "attributes": { "weight": 1 } }, { "key": "986", "source": "332", "target": "264", "attributes": { "weight": 1 } }, { "key": "36803", "source": "333", "target": "1300", "attributes": { "weight": 1 } }, { "key": "6529", "source": "333", "target": "338", "attributes": { "weight": 5 } }, { "key": "7607", "source": "333", "target": "375", "attributes": { "weight": 1 } }, { "key": "7588", "source": "333", "target": "1197", "attributes": { "weight": 2 } }, { "key": "2988", "source": "333", "target": "845", "attributes": { "weight": 3 } }, { "key": "7596", "source": "333", "target": "189", "attributes": { "weight": 2 } }, { "key": "16405", "source": "333", "target": "925", "attributes": { "weight": 1 } }, { "key": "2991", "source": "333", "target": "849", "attributes": { "weight": 3 } }, { "key": "33008", "source": "333", "target": "135", "attributes": { "weight": 1 } }, { "key": "2995", "source": "333", "target": "853", "attributes": { "weight": 1 } }, { "key": "33009", "source": "333", "target": "472", "attributes": { "weight": 1 } }, { "key": "7610", "source": "333", "target": "154", "attributes": { "weight": 2 } }, { "key": "7614", "source": "333", "target": "976", "attributes": { "weight": 2 } }, { "key": "16406", "source": "333", "target": "1329", "attributes": { "weight": 1 } }, { "key": "2992", "source": "333", "target": "850", "attributes": { "weight": 2 } }, { "key": "7595", "source": "333", "target": "396", "attributes": { "weight": 1 } }, { "key": "7600", "source": "333", "target": "403", "attributes": { "weight": 3 } }, { "key": "36802", "source": "333", "target": "1254", "attributes": { "weight": 1 } }, { "key": "7612", "source": "333", "target": "1417", "attributes": { "weight": 2 } }, { "key": "29835", "source": "333", "target": "93", "attributes": { "weight": 1 } }, { "key": "7590", "source": "333", "target": "454", "attributes": { "weight": 3 } }, { "key": "3451", "source": "333", "target": "969", "attributes": { "weight": 1 } }, { "key": "7620", "source": "333", "target": "1426", "attributes": { "weight": 1 } }, { "key": "7594", "source": "333", "target": "278", "attributes": { "weight": 3 } }, { "key": "2987", "source": "333", "target": "843", "attributes": { "weight": 1 } }, { "key": "3452", "source": "333", "target": "970", "attributes": { "weight": 2 } }, { "key": "7618", "source": "333", "target": "1421", "attributes": { "weight": 1 } }, { "key": "7599", "source": "333", "target": "305", "attributes": { "weight": 3 } }, { "key": "7598", "source": "333", "target": "304", "attributes": { "weight": 2 } }, { "key": "14290", "source": "333", "target": "370", "attributes": { "weight": 1 } }, { "key": "7601", "source": "333", "target": "1323", "attributes": { "weight": 3 } }, { "key": "6527", "source": "333", "target": "368", "attributes": { "weight": 3 } }, { "key": "6532", "source": "333", "target": "123", "attributes": { "weight": 5 } }, { "key": "7608", "source": "333", "target": "1402", "attributes": { "weight": 2 } }, { "key": "7602", "source": "333", "target": "310", "attributes": { "weight": 1 } }, { "key": "36801", "source": "333", "target": "1245", "attributes": { "weight": 1 } }, { "key": "7606", "source": "333", "target": "1401", "attributes": { "weight": 1 } }, { "key": "2994", "source": "333", "target": "852", "attributes": { "weight": 1 } }, { "key": "6533", "source": "333", "target": "1291", "attributes": { "weight": 4 } }, { "key": "2996", "source": "333", "target": "855", "attributes": { "weight": 1 } }, { "key": "2990", "source": "333", "target": "848", "attributes": { "weight": 2 } }, { "key": "7587", "source": "333", "target": "1146", "attributes": { "weight": 2 } }, { "key": "36804", "source": "333", "target": "406", "attributes": { "weight": 1 } }, { "key": "7592", "source": "333", "target": "707", "attributes": { "weight": 2 } }, { "key": "6528", "source": "333", "target": "337", "attributes": { "weight": 4 } }, { "key": "16407", "source": "333", "target": "408", "attributes": { "weight": 2 } }, { "key": "7603", "source": "333", "target": "1394", "attributes": { "weight": 1 } }, { "key": "6531", "source": "333", "target": "580", "attributes": { "weight": 4 } }, { "key": "7593", "source": "333", "target": "1227", "attributes": { "weight": 3 } }, { "key": "7589", "source": "333", "target": "1047", "attributes": { "weight": 3 } }, { "key": "34851", "source": "333", "target": "1233", "attributes": { "weight": 1 } }, { "key": "1072", "source": "333", "target": "376", "attributes": { "weight": 2 } }, { "key": "7613", "source": "333", "target": "975", "attributes": { "weight": 2 } }, { "key": "7605", "source": "333", "target": "373", "attributes": { "weight": 3 } }, { "key": "7617", "source": "333", "target": "978", "attributes": { "weight": 2 } }, { "key": "7591", "source": "333", "target": "168", "attributes": { "weight": 2 } }, { "key": "7604", "source": "333", "target": "1395", "attributes": { "weight": 1 } }, { "key": "3453", "source": "333", "target": "974", "attributes": { "weight": 2 } }, { "key": "6534", "source": "333", "target": "1294", "attributes": { "weight": 2 } }, { "key": "7597", "source": "333", "target": "1285", "attributes": { "weight": 2 } }, { "key": "7615", "source": "333", "target": "977", "attributes": { "weight": 3 } }, { "key": "12656", "source": "333", "target": "180", "attributes": { "weight": 2 } }, { "key": "16404", "source": "333", "target": "220", "attributes": { "weight": 2 } }, { "key": "33007", "source": "333", "target": "387", "attributes": { "weight": 2 } }, { "key": "2989", "source": "333", "target": "847", "attributes": { "weight": 1 } }, { "key": "15062", "source": "333", "target": "259", "attributes": { "weight": 1 } }, { "key": "7609", "source": "333", "target": "1407", "attributes": { "weight": 2 } }, { "key": "987", "source": "333", "target": "307", "attributes": { "weight": 1 } }, { "key": "6535", "source": "333", "target": "1322", "attributes": { "weight": 5 } }, { "key": "6530", "source": "333", "target": "468", "attributes": { "weight": 6 } }, { "key": "7619", "source": "333", "target": "1063", "attributes": { "weight": 3 } }, { "key": "1071", "source": "333", "target": "374", "attributes": { "weight": 3 } }, { "key": "2993", "source": "333", "target": "851", "attributes": { "weight": 3 } }, { "key": "7616", "source": "333", "target": "377", "attributes": { "weight": 3 } }, { "key": "7611", "source": "333", "target": "625", "attributes": { "weight": 2 } }, { "key": "23081", "source": "334", "target": "166", "attributes": { "weight": 1 } }, { "key": "989", "source": "334", "target": "168", "attributes": { "weight": 1 } }, { "key": "23082", "source": "334", "target": "287", "attributes": { "weight": 1 } }, { "key": "15064", "source": "334", "target": "259", "attributes": { "weight": 1 } }, { "key": "13814", "source": "334", "target": "264", "attributes": { "weight": 2 } }, { "key": "23083", "source": "334", "target": "179", "attributes": { "weight": 1 } }, { "key": "12483", "source": "334", "target": "263", "attributes": { "weight": 1 } }, { "key": "988", "source": "334", "target": "262", "attributes": { "weight": 1 } }, { "key": "13815", "source": "334", "target": "304", "attributes": { "weight": 2 } }, { "key": "15065", "source": "334", "target": "311", "attributes": { "weight": 1 } }, { "key": "3297", "source": "334", "target": "305", "attributes": { "weight": 3 } }, { "key": "13816", "source": "334", "target": "312", "attributes": { "weight": 2 } }, { "key": "26038", "source": "334", "target": "2622", "attributes": { "weight": 2 } }, { "key": "990", "source": "335", "target": "304", "attributes": { "weight": 1 } }, { "key": "991", "source": "335", "target": "328", "attributes": { "weight": 1 } }, { "key": "13820", "source": "336", "target": "1911", "attributes": { "weight": 2 } }, { "key": "12484", "source": "336", "target": "311", "attributes": { "weight": 2 } }, { "key": "3299", "source": "336", "target": "839", "attributes": { "weight": 4 } }, { "key": "22255", "source": "336", "target": "1918", "attributes": { "weight": 1 } }, { "key": "23085", "source": "336", "target": "290", "attributes": { "weight": 1 } }, { "key": "22256", "source": "336", "target": "2311", "attributes": { "weight": 1 } }, { "key": "13819", "source": "336", "target": "272", "attributes": { "weight": 4 } }, { "key": "3298", "source": "336", "target": "305", "attributes": { "weight": 5 } }, { "key": "13825", "source": "336", "target": "321", "attributes": { "weight": 2 } }, { "key": "15066", "source": "336", "target": "260", "attributes": { "weight": 2 } }, { "key": "13823", "source": "336", "target": "301", "attributes": { "weight": 3 } }, { "key": "23084", "source": "336", "target": "288", "attributes": { "weight": 1 } }, { "key": "13826", "source": "336", "target": "327", "attributes": { "weight": 4 } }, { "key": "13824", "source": "336", "target": "304", "attributes": { "weight": 3 } }, { "key": "15071", "source": "336", "target": "1510", "attributes": { "weight": 1 } }, { "key": "15069", "source": "336", "target": "167", "attributes": { "weight": 1 } }, { "key": "992", "source": "336", "target": "265", "attributes": { "weight": 1 } }, { "key": "13821", "source": "336", "target": "286", "attributes": { "weight": 3 } }, { "key": "15073", "source": "336", "target": "322", "attributes": { "weight": 1 } }, { "key": "12485", "source": "336", "target": "316", "attributes": { "weight": 1 } }, { "key": "15067", "source": "336", "target": "263", "attributes": { "weight": 1 } }, { "key": "13817", "source": "336", "target": "262", "attributes": { "weight": 3 } }, { "key": "15068", "source": "336", "target": "276", "attributes": { "weight": 1 } }, { "key": "15074", "source": "336", "target": "1933", "attributes": { "weight": 1 } }, { "key": "993", "source": "336", "target": "166", "attributes": { "weight": 3 } }, { "key": "15070", "source": "336", "target": "287", "attributes": { "weight": 1 } }, { "key": "28652", "source": "336", "target": "299", "attributes": { "weight": 1 } }, { "key": "13818", "source": "336", "target": "264", "attributes": { "weight": 2 } }, { "key": "15072", "source": "336", "target": "179", "attributes": { "weight": 1 } }, { "key": "13822", "source": "336", "target": "289", "attributes": { "weight": 3 } }, { "key": "36617", "source": "337", "target": "1260", "attributes": { "weight": 1 } }, { "key": "21954", "source": "337", "target": "1203", "attributes": { "weight": 1 } }, { "key": "5256", "source": "337", "target": "1196", "attributes": { "weight": 2 } }, { "key": "18739", "source": "337", "target": "1308", "attributes": { "weight": 3 } }, { "key": "18730", "source": "337", "target": "1152", "attributes": { "weight": 3 } }, { "key": "15309", "source": "337", "target": "472", "attributes": { "weight": 4 } }, { "key": "21953", "source": "337", "target": "1199", "attributes": { "weight": 2 } }, { "key": "21977", "source": "337", "target": "2304", "attributes": { "weight": 1 } }, { "key": "5260", "source": "337", "target": "468", "attributes": { "weight": 4 } }, { "key": "23199", "source": "337", "target": "1323", "attributes": { "weight": 4 } }, { "key": "21948", "source": "337", "target": "1681", "attributes": { "weight": 1 } }, { "key": "36627", "source": "337", "target": "1342", "attributes": { "weight": 1 } }, { "key": "36612", "source": "337", "target": "1210", "attributes": { "weight": 1 } }, { "key": "36762", "source": "337", "target": "851", "attributes": { "weight": 1 } }, { "key": "15903", "source": "337", "target": "913", "attributes": { "weight": 3 } }, { "key": "21978", "source": "337", "target": "1563", "attributes": { "weight": 1 } }, { "key": "36603", "source": "337", "target": "1140", "attributes": { "weight": 1 } }, { "key": "18238", "source": "337", "target": "1197", "attributes": { "weight": 5 } }, { "key": "28578", "source": "337", "target": "1233", "attributes": { "weight": 2 } }, { "key": "36626", "source": "337", "target": "124", "attributes": { "weight": 1 } }, { "key": "21971", "source": "337", "target": "2044", "attributes": { "weight": 1 } }, { "key": "21955", "source": "337", "target": "1205", "attributes": { "weight": 1 } }, { "key": "36618", "source": "337", "target": "1263", "attributes": { "weight": 1 } }, { "key": "21956", "source": "337", "target": "1206", "attributes": { "weight": 2 } }, { "key": "21975", "source": "337", "target": "1693", "attributes": { "weight": 1 } }, { "key": "18740", "source": "337", "target": "1315", "attributes": { "weight": 3 } }, { "key": "36606", "source": "337", "target": "1156", "attributes": { "weight": 1 } }, { "key": "21968", "source": "337", "target": "1264", "attributes": { "weight": 1 } }, { "key": "36622", "source": "337", "target": "1288", "attributes": { "weight": 1 } }, { "key": "15905", "source": "337", "target": "208", "attributes": { "weight": 2 } }, { "key": "15908", "source": "337", "target": "1305", "attributes": { "weight": 3 } }, { "key": "21962", "source": "337", "target": "1225", "attributes": { "weight": 1 } }, { "key": "28577", "source": "337", "target": "199", "attributes": { "weight": 2 } }, { "key": "21945", "source": "337", "target": "937", "attributes": { "weight": 1 } }, { "key": "21981", "source": "337", "target": "1325", "attributes": { "weight": 1 } }, { "key": "36610", "source": "337", "target": "1184", "attributes": { "weight": 1 } }, { "key": "10227", "source": "337", "target": "1291", "attributes": { "weight": 3 } }, { "key": "21974", "source": "337", "target": "1295", "attributes": { "weight": 1 } }, { "key": "34473", "source": "337", "target": "1232", "attributes": { "weight": 1 } }, { "key": "36616", "source": "337", "target": "1255", "attributes": { "weight": 1 } }, { "key": "36624", "source": "337", "target": "1321", "attributes": { "weight": 1 } }, { "key": "21965", "source": "337", "target": "1234", "attributes": { "weight": 2 } }, { "key": "18731", "source": "337", "target": "1173", "attributes": { "weight": 2 } }, { "key": "34474", "source": "337", "target": "1300", "attributes": { "weight": 1 } }, { "key": "18737", "source": "337", "target": "1284", "attributes": { "weight": 3 } }, { "key": "5261", "source": "337", "target": "371", "attributes": { "weight": 2 } }, { "key": "21970", "source": "337", "target": "1271", "attributes": { "weight": 1 } }, { "key": "9791", "source": "337", "target": "396", "attributes": { "weight": 3 } }, { "key": "36605", "source": "337", "target": "1148", "attributes": { "weight": 1 } }, { "key": "36613", "source": "337", "target": "1215", "attributes": { "weight": 1 } }, { "key": "21969", "source": "337", "target": "1265", "attributes": { "weight": 1 } }, { "key": "18745", "source": "337", "target": "1343", "attributes": { "weight": 2 } }, { "key": "5266", "source": "337", "target": "333", "attributes": { "weight": 4 } }, { "key": "21966", "source": "337", "target": "2037", "attributes": { "weight": 1 } }, { "key": "21972", "source": "337", "target": "1277", "attributes": { "weight": 1 } }, { "key": "21946", "source": "337", "target": "2021", "attributes": { "weight": 1 } }, { "key": "21961", "source": "337", "target": "1223", "attributes": { "weight": 1 } }, { "key": "15909", "source": "337", "target": "1329", "attributes": { "weight": 3 } }, { "key": "5264", "source": "337", "target": "1294", "attributes": { "weight": 4 } }, { "key": "21963", "source": "337", "target": "1686", "attributes": { "weight": 1 } }, { "key": "18744", "source": "337", "target": "218", "attributes": { "weight": 2 } }, { "key": "21947", "source": "337", "target": "1167", "attributes": { "weight": 2 } }, { "key": "36621", "source": "337", "target": "1287", "attributes": { "weight": 1 } }, { "key": "36619", "source": "337", "target": "926", "attributes": { "weight": 1 } }, { "key": "36609", "source": "337", "target": "1172", "attributes": { "weight": 1 } }, { "key": "18742", "source": "337", "target": "1331", "attributes": { "weight": 2 } }, { "key": "5257", "source": "337", "target": "368", "attributes": { "weight": 3 } }, { "key": "34472", "source": "337", "target": "1047", "attributes": { "weight": 1 } }, { "key": "10225", "source": "337", "target": "711", "attributes": { "weight": 1 } }, { "key": "18734", "source": "337", "target": "1236", "attributes": { "weight": 2 } }, { "key": "21973", "source": "337", "target": "1690", "attributes": { "weight": 1 } }, { "key": "36614", "source": "337", "target": "205", "attributes": { "weight": 1 } }, { "key": "5267", "source": "337", "target": "377", "attributes": { "weight": 4 } }, { "key": "21957", "source": "337", "target": "1685", "attributes": { "weight": 1 } }, { "key": "21944", "source": "337", "target": "2293", "attributes": { "weight": 1 } }, { "key": "18732", "source": "337", "target": "1174", "attributes": { "weight": 3 } }, { "key": "18741", "source": "337", "target": "405", "attributes": { "weight": 2 } }, { "key": "36604", "source": "337", "target": "933", "attributes": { "weight": 1 } }, { "key": "1108", "source": "337", "target": "412", "attributes": { "weight": 1 } }, { "key": "36607", "source": "337", "target": "1162", "attributes": { "weight": 1 } }, { "key": "36760", "source": "337", "target": "625", "attributes": { "weight": 1 } }, { "key": "36620", "source": "337", "target": "1286", "attributes": { "weight": 1 } }, { "key": "5263", "source": "337", "target": "1090", "attributes": { "weight": 4 } }, { "key": "21980", "source": "337", "target": "1324", "attributes": { "weight": 1 } }, { "key": "21982", "source": "337", "target": "2306", "attributes": { "weight": 1 } }, { "key": "15906", "source": "337", "target": "924", "attributes": { "weight": 1 } }, { "key": "5268", "source": "337", "target": "1063", "attributes": { "weight": 4 } }, { "key": "7328", "source": "337", "target": "154", "attributes": { "weight": 2 } }, { "key": "21959", "source": "337", "target": "916", "attributes": { "weight": 1 } }, { "key": "34471", "source": "337", "target": "1182", "attributes": { "weight": 2 } }, { "key": "11594", "source": "337", "target": "938", "attributes": { "weight": 2 } }, { "key": "37152", "source": "337", "target": "390", "attributes": { "weight": 1 } }, { "key": "15902", "source": "337", "target": "912", "attributes": { "weight": 1 } }, { "key": "15904", "source": "337", "target": "278", "attributes": { "weight": 2 } }, { "key": "21952", "source": "337", "target": "2032", "attributes": { "weight": 1 } }, { "key": "11595", "source": "337", "target": "1251", "attributes": { "weight": 1 } }, { "key": "21958", "source": "337", "target": "1211", "attributes": { "weight": 1 } }, { "key": "36761", "source": "337", "target": "1417", "attributes": { "weight": 1 } }, { "key": "18733", "source": "337", "target": "1228", "attributes": { "weight": 2 } }, { "key": "21983", "source": "337", "target": "931", "attributes": { "weight": 1 } }, { "key": "15907", "source": "337", "target": "925", "attributes": { "weight": 3 } }, { "key": "10228", "source": "337", "target": "1322", "attributes": { "weight": 4 } }, { "key": "36625", "source": "337", "target": "1326", "attributes": { "weight": 1 } }, { "key": "18735", "source": "337", "target": "1552", "attributes": { "weight": 2 } }, { "key": "21951", "source": "337", "target": "2030", "attributes": { "weight": 1 } }, { "key": "21960", "source": "337", "target": "1218", "attributes": { "weight": 1 } }, { "key": "5265", "source": "337", "target": "373", "attributes": { "weight": 2 } }, { "key": "21967", "source": "337", "target": "1256", "attributes": { "weight": 1 } }, { "key": "36759", "source": "337", "target": "1407", "attributes": { "weight": 1 } }, { "key": "21949", "source": "337", "target": "1181", "attributes": { "weight": 1 } }, { "key": "18738", "source": "337", "target": "1301", "attributes": { "weight": 1 } }, { "key": "21950", "source": "337", "target": "1188", "attributes": { "weight": 1 } }, { "key": "5259", "source": "337", "target": "135", "attributes": { "weight": 5 } }, { "key": "21943", "source": "337", "target": "1519", "attributes": { "weight": 1 } }, { "key": "21976", "source": "337", "target": "1303", "attributes": { "weight": 1 } }, { "key": "36615", "source": "337", "target": "1248", "attributes": { "weight": 1 } }, { "key": "27268", "source": "337", "target": "57", "attributes": { "weight": 1 } }, { "key": "5255", "source": "337", "target": "779", "attributes": { "weight": 2 } }, { "key": "14043", "source": "337", "target": "1031", "attributes": { "weight": 2 } }, { "key": "10226", "source": "337", "target": "1680", "attributes": { "weight": 2 } }, { "key": "994", "source": "337", "target": "338", "attributes": { "weight": 9 } }, { "key": "18736", "source": "337", "target": "1269", "attributes": { "weight": 2 } }, { "key": "36608", "source": "337", "target": "1165", "attributes": { "weight": 1 } }, { "key": "21979", "source": "337", "target": "2305", "attributes": { "weight": 1 } }, { "key": "8804", "source": "337", "target": "195", "attributes": { "weight": 7 } }, { "key": "36611", "source": "337", "target": "1201", "attributes": { "weight": 1 } }, { "key": "18743", "source": "337", "target": "408", "attributes": { "weight": 2 } }, { "key": "1107", "source": "337", "target": "399", "attributes": { "weight": 3 } }, { "key": "21964", "source": "337", "target": "1227", "attributes": { "weight": 2 } }, { "key": "36623", "source": "337", "target": "1296", "attributes": { "weight": 1 } }, { "key": "5262", "source": "337", "target": "123", "attributes": { "weight": 4 } }, { "key": "5258", "source": "337", "target": "370", "attributes": { "weight": 8 } }, { "key": "15308", "source": "337", "target": "454", "attributes": { "weight": 1 } }, { "key": "34996", "source": "338", "target": "352", "attributes": { "weight": 1 } }, { "key": "5289", "source": "338", "target": "1227", "attributes": { "weight": 7 } }, { "key": "34479", "source": "338", "target": "3136", "attributes": { "weight": 1 } }, { "key": "5308", "source": "338", "target": "1285", "attributes": { "weight": 8 } }, { "key": "34491", "source": "338", "target": "1352", "attributes": { "weight": 1 } }, { "key": "5324", "source": "338", "target": "1323", "attributes": { "weight": 7 } }, { "key": "5306", "source": "338", "target": "1280", "attributes": { "weight": 4 } }, { "key": "5303", "source": "338", "target": "371", "attributes": { "weight": 4 } }, { "key": "34485", "source": "338", "target": "2433", "attributes": { "weight": 1 } }, { "key": "5296", "source": "338", "target": "1254", "attributes": { "weight": 5 } }, { "key": "7330", "source": "338", "target": "154", "attributes": { "weight": 2 } }, { "key": "5295", "source": "338", "target": "468", "attributes": { "weight": 11 } }, { "key": "34483", "source": "338", "target": "1047", "attributes": { "weight": 2 } }, { "key": "5288", "source": "338", "target": "168", "attributes": { "weight": 2 } }, { "key": "5304", "source": "338", "target": "1274", "attributes": { "weight": 2 } }, { "key": "37508", "source": "338", "target": "3385", "attributes": { "weight": 1 } }, { "key": "5286", "source": "338", "target": "390", "attributes": { "weight": 7 } }, { "key": "15924", "source": "338", "target": "218", "attributes": { "weight": 1 } }, { "key": "5287", "source": "338", "target": "109", "attributes": { "weight": 3 } }, { "key": "10690", "source": "338", "target": "391", "attributes": { "weight": 4 } }, { "key": "16843", "source": "338", "target": "59", "attributes": { "weight": 1 } }, { "key": "5311", "source": "338", "target": "212", "attributes": { "weight": 2 } }, { "key": "32550", "source": "338", "target": "791", "attributes": { "weight": 2 } }, { "key": "34490", "source": "338", "target": "2306", "attributes": { "weight": 1 } }, { "key": "5330", "source": "338", "target": "1335", "attributes": { "weight": 2 } }, { "key": "5271", "source": "338", "target": "711", "attributes": { "weight": 2 } }, { "key": "18749", "source": "338", "target": "1792", "attributes": { "weight": 1 } }, { "key": "9792", "source": "338", "target": "387", "attributes": { "weight": 4 } }, { "key": "5326", "source": "338", "target": "406", "attributes": { "weight": 5 } }, { "key": "11596", "source": "338", "target": "358", "attributes": { "weight": 2 } }, { "key": "9793", "source": "338", "target": "393", "attributes": { "weight": 2 } }, { "key": "995", "source": "338", "target": "337", "attributes": { "weight": 9 } }, { "key": "34488", "source": "338", "target": "1317", "attributes": { "weight": 1 } }, { "key": "5316", "source": "338", "target": "1299", "attributes": { "weight": 6 } }, { "key": "34478", "source": "338", "target": "1174", "attributes": { "weight": 2 } }, { "key": "28794", "source": "338", "target": "2423", "attributes": { "weight": 2 } }, { "key": "5336", "source": "338", "target": "377", "attributes": { "weight": 4 } }, { "key": "5315", "source": "338", "target": "1296", "attributes": { "weight": 4 } }, { "key": "5284", "source": "338", "target": "1203", "attributes": { "weight": 3 } }, { "key": "8806", "source": "338", "target": "442", "attributes": { "weight": 4 } }, { "key": "5294", "source": "338", "target": "1245", "attributes": { "weight": 6 } }, { "key": "5312", "source": "338", "target": "1291", "attributes": { "weight": 4 } }, { "key": "15913", "source": "338", "target": "912", "attributes": { "weight": 1 } }, { "key": "26607", "source": "338", "target": "189", "attributes": { "weight": 2 } }, { "key": "5302", "source": "338", "target": "1265", "attributes": { "weight": 3 } }, { "key": "5305", "source": "338", "target": "1277", "attributes": { "weight": 4 } }, { "key": "29810", "source": "338", "target": "93", "attributes": { "weight": 1 } }, { "key": "28793", "source": "338", "target": "1146", "attributes": { "weight": 3 } }, { "key": "5325", "source": "338", "target": "1326", "attributes": { "weight": 6 } }, { "key": "5317", "source": "338", "target": "305", "attributes": { "weight": 7 } }, { "key": "9795", "source": "338", "target": "403", "attributes": { "weight": 4 } }, { "key": "27366", "source": "338", "target": "340", "attributes": { "weight": 1 } }, { "key": "5333", "source": "338", "target": "931", "attributes": { "weight": 2 } }, { "key": "5275", "source": "338", "target": "1166", "attributes": { "weight": 4 } }, { "key": "5270", "source": "338", "target": "1140", "attributes": { "weight": 5 } }, { "key": "5323", "source": "338", "target": "1322", "attributes": { "weight": 5 } }, { "key": "5279", "source": "338", "target": "1196", "attributes": { "weight": 4 } }, { "key": "5329", "source": "338", "target": "124", "attributes": { "weight": 4 } }, { "key": "11168", "source": "338", "target": "452", "attributes": { "weight": 2 } }, { "key": "9796", "source": "338", "target": "417", "attributes": { "weight": 2 } }, { "key": "5328", "source": "338", "target": "1331", "attributes": { "weight": 6 } }, { "key": "10230", "source": "338", "target": "926", "attributes": { "weight": 9 } }, { "key": "5334", "source": "338", "target": "373", "attributes": { "weight": 3 } }, { "key": "5313", "source": "338", "target": "1090", "attributes": { "weight": 3 } }, { "key": "18746", "source": "338", "target": "1228", "attributes": { "weight": 2 } }, { "key": "10229", "source": "338", "target": "1688", "attributes": { "weight": 1 } }, { "key": "5292", "source": "338", "target": "1236", "attributes": { "weight": 4 } }, { "key": "18747", "source": "338", "target": "1552", "attributes": { "weight": 2 } }, { "key": "5272", "source": "338", "target": "1152", "attributes": { "weight": 5 } }, { "key": "5293", "source": "338", "target": "370", "attributes": { "weight": 8 } }, { "key": "15917", "source": "338", "target": "278", "attributes": { "weight": 5 } }, { "key": "5290", "source": "338", "target": "1232", "attributes": { "weight": 4 } }, { "key": "34486", "source": "338", "target": "1300", "attributes": { "weight": 1 } }, { "key": "12595", "source": "338", "target": "180", "attributes": { "weight": 4 } }, { "key": "15919", "source": "338", "target": "1263", "attributes": { "weight": 2 } }, { "key": "37509", "source": "338", "target": "3389", "attributes": { "weight": 1 } }, { "key": "7329", "source": "338", "target": "374", "attributes": { "weight": 2 } }, { "key": "15910", "source": "338", "target": "220", "attributes": { "weight": 2 } }, { "key": "27269", "source": "338", "target": "57", "attributes": { "weight": 2 } }, { "key": "34482", "source": "338", "target": "1645", "attributes": { "weight": 1 } }, { "key": "37154", "source": "338", "target": "1272", "attributes": { "weight": 1 } }, { "key": "15923", "source": "338", "target": "595", "attributes": { "weight": 2 } }, { "key": "21984", "source": "338", "target": "1680", "attributes": { "weight": 1 } }, { "key": "34476", "source": "338", "target": "1157", "attributes": { "weight": 1 } }, { "key": "14044", "source": "338", "target": "1031", "attributes": { "weight": 2 } }, { "key": "5280", "source": "338", "target": "1197", "attributes": { "weight": 7 } }, { "key": "15922", "source": "338", "target": "407", "attributes": { "weight": 1 } }, { "key": "5335", "source": "338", "target": "333", "attributes": { "weight": 5 } }, { "key": "26606", "source": "338", "target": "454", "attributes": { "weight": 2 } }, { "key": "5300", "source": "338", "target": "297", "attributes": { "weight": 4 } }, { "key": "34487", "source": "338", "target": "405", "attributes": { "weight": 2 } }, { "key": "5318", "source": "338", "target": "1304", "attributes": { "weight": 2 } }, { "key": "5307", "source": "338", "target": "580", "attributes": { "weight": 9 } }, { "key": "16844", "source": "338", "target": "674", "attributes": { "weight": 1 } }, { "key": "34475", "source": "338", "target": "3131", "attributes": { "weight": 1 } }, { "key": "5283", "source": "338", "target": "1201", "attributes": { "weight": 4 } }, { "key": "9794", "source": "338", "target": "400", "attributes": { "weight": 2 } }, { "key": "5277", "source": "338", "target": "779", "attributes": { "weight": 2 } }, { "key": "5314", "source": "338", "target": "1294", "attributes": { "weight": 6 } }, { "key": "14711", "source": "338", "target": "259", "attributes": { "weight": 2 } }, { "key": "5281", "source": "338", "target": "368", "attributes": { "weight": 6 } }, { "key": "5276", "source": "338", "target": "938", "attributes": { "weight": 7 } }, { "key": "37155", "source": "338", "target": "3345", "attributes": { "weight": 1 } }, { "key": "5274", "source": "338", "target": "1165", "attributes": { "weight": 5 } }, { "key": "15914", "source": "338", "target": "913", "attributes": { "weight": 2 } }, { "key": "8805", "source": "338", "target": "195", "attributes": { "weight": 9 } }, { "key": "5337", "source": "338", "target": "1063", "attributes": { "weight": 5 } }, { "key": "15918", "source": "338", "target": "544", "attributes": { "weight": 1 } }, { "key": "5298", "source": "338", "target": "471", "attributes": { "weight": 4 } }, { "key": "5282", "source": "338", "target": "183", "attributes": { "weight": 2 } }, { "key": "15911", "source": "338", "target": "1163", "attributes": { "weight": 3 } }, { "key": "15912", "source": "338", "target": "631", "attributes": { "weight": 1 } }, { "key": "10691", "source": "338", "target": "1314", "attributes": { "weight": 3 } }, { "key": "5319", "source": "338", "target": "1305", "attributes": { "weight": 4 } }, { "key": "5322", "source": "338", "target": "1315", "attributes": { "weight": 5 } }, { "key": "34480", "source": "338", "target": "1182", "attributes": { "weight": 1 } }, { "key": "21985", "source": "338", "target": "2303", "attributes": { "weight": 1 } }, { "key": "5278", "source": "338", "target": "1184", "attributes": { "weight": 4 } }, { "key": "37156", "source": "338", "target": "416", "attributes": { "weight": 1 } }, { "key": "15920", "source": "338", "target": "924", "attributes": { "weight": 1 } }, { "key": "5285", "source": "338", "target": "1206", "attributes": { "weight": 4 } }, { "key": "5332", "source": "338", "target": "1343", "attributes": { "weight": 5 } }, { "key": "5299", "source": "338", "target": "208", "attributes": { "weight": 6 } }, { "key": "5291", "source": "338", "target": "1233", "attributes": { "weight": 5 } }, { "key": "9797", "source": "338", "target": "418", "attributes": { "weight": 2 } }, { "key": "5327", "source": "338", "target": "1329", "attributes": { "weight": 5 } }, { "key": "5301", "source": "338", "target": "396", "attributes": { "weight": 7 } }, { "key": "15916", "source": "338", "target": "707", "attributes": { "weight": 3 } }, { "key": "15921", "source": "338", "target": "1284", "attributes": { "weight": 3 } }, { "key": "34481", "source": "338", "target": "1188", "attributes": { "weight": 1 } }, { "key": "5331", "source": "338", "target": "310", "attributes": { "weight": 6 } }, { "key": "5309", "source": "338", "target": "1286", "attributes": { "weight": 4 } }, { "key": "15915", "source": "338", "target": "1215", "attributes": { "weight": 1 } }, { "key": "31959", "source": "338", "target": "359", "attributes": { "weight": 1 } }, { "key": "11597", "source": "338", "target": "199", "attributes": { "weight": 3 } }, { "key": "13254", "source": "338", "target": "304", "attributes": { "weight": 3 } }, { "key": "5310", "source": "338", "target": "123", "attributes": { "weight": 7 } }, { "key": "37153", "source": "338", "target": "380", "attributes": { "weight": 1 } }, { "key": "8807", "source": "338", "target": "925", "attributes": { "weight": 6 } }, { "key": "34477", "source": "338", "target": "1167", "attributes": { "weight": 1 } }, { "key": "18748", "source": "338", "target": "1269", "attributes": { "weight": 2 } }, { "key": "5273", "source": "338", "target": "1156", "attributes": { "weight": 3 } }, { "key": "37507", "source": "338", "target": "3383", "attributes": { "weight": 1 } }, { "key": "34484", "source": "338", "target": "1234", "attributes": { "weight": 1 } }, { "key": "34489", "source": "338", "target": "1318", "attributes": { "weight": 1 } }, { "key": "5297", "source": "338", "target": "30", "attributes": { "weight": 5 } }, { "key": "5320", "source": "338", "target": "1308", "attributes": { "weight": 6 } }, { "key": "5321", "source": "338", "target": "1313", "attributes": { "weight": 3 } }, { "key": "18053", "source": "339", "target": "1036", "attributes": { "weight": 2 } }, { "key": "24615", "source": "339", "target": "2239", "attributes": { "weight": 1 } }, { "key": "27822", "source": "339", "target": "1133", "attributes": { "weight": 1 } }, { "key": "27534", "source": "339", "target": "1520", "attributes": { "weight": 2 } }, { "key": "24612", "source": "339", "target": "2232", "attributes": { "weight": 1 } }, { "key": "27833", "source": "339", "target": "472", "attributes": { "weight": 1 } }, { "key": "27397", "source": "339", "target": "426", "attributes": { "weight": 2 } }, { "key": "26423", "source": "339", "target": "189", "attributes": { "weight": 2 } }, { "key": "27838", "source": "339", "target": "672", "attributes": { "weight": 1 } }, { "key": "27829", "source": "339", "target": "2696", "attributes": { "weight": 1 } }, { "key": "27837", "source": "339", "target": "55", "attributes": { "weight": 1 } }, { "key": "11033", "source": "339", "target": "473", "attributes": { "weight": 2 } }, { "key": "31581", "source": "339", "target": "595", "attributes": { "weight": 1 } }, { "key": "12893", "source": "339", "target": "259", "attributes": { "weight": 2 } }, { "key": "27824", "source": "339", "target": "791", "attributes": { "weight": 2 } }, { "key": "17549", "source": "339", "target": "2126", "attributes": { "weight": 3 } }, { "key": "3099", "source": "339", "target": "890", "attributes": { "weight": 3 } }, { "key": "27819", "source": "339", "target": "3", "attributes": { "weight": 1 } }, { "key": "27832", "source": "339", "target": "471", "attributes": { "weight": 1 } }, { "key": "27809", "source": "339", "target": "2233", "attributes": { "weight": 3 } }, { "key": "31106", "source": "339", "target": "2290", "attributes": { "weight": 1 } }, { "key": "27814", "source": "339", "target": "223", "attributes": { "weight": 2 } }, { "key": "27807", "source": "339", "target": "1516", "attributes": { "weight": 1 } }, { "key": "27398", "source": "339", "target": "2528", "attributes": { "weight": 2 } }, { "key": "27823", "source": "339", "target": "2114", "attributes": { "weight": 1 } }, { "key": "27812", "source": "339", "target": "130", "attributes": { "weight": 1 } }, { "key": "3928", "source": "339", "target": "432", "attributes": { "weight": 2 } }, { "key": "27813", "source": "339", "target": "2112", "attributes": { "weight": 1 } }, { "key": "27841", "source": "339", "target": "1063", "attributes": { "weight": 1 } }, { "key": "27821", "source": "339", "target": "1046", "attributes": { "weight": 2 } }, { "key": "27817", "source": "339", "target": "674", "attributes": { "weight": 2 } }, { "key": "27839", "source": "339", "target": "493", "attributes": { "weight": 2 } }, { "key": "27827", "source": "339", "target": "638", "attributes": { "weight": 2 } }, { "key": "27588", "source": "339", "target": "164", "attributes": { "weight": 3 } }, { "key": "996", "source": "339", "target": "340", "attributes": { "weight": 1 } }, { "key": "10407", "source": "339", "target": "1060", "attributes": { "weight": 3 } }, { "key": "27834", "source": "339", "target": "362", "attributes": { "weight": 2 } }, { "key": "27826", "source": "339", "target": "370", "attributes": { "weight": 2 } }, { "key": "22664", "source": "339", "target": "1037", "attributes": { "weight": 2 } }, { "key": "27828", "source": "339", "target": "556", "attributes": { "weight": 2 } }, { "key": "27396", "source": "339", "target": "2313", "attributes": { "weight": 2 } }, { "key": "24748", "source": "339", "target": "1056", "attributes": { "weight": 3 } }, { "key": "27840", "source": "339", "target": "495", "attributes": { "weight": 2 } }, { "key": "27830", "source": "339", "target": "1765", "attributes": { "weight": 2 } }, { "key": "27816", "source": "339", "target": "567", "attributes": { "weight": 1 } }, { "key": "8488", "source": "339", "target": "442", "attributes": { "weight": 3 } }, { "key": "27825", "source": "339", "target": "359", "attributes": { "weight": 3 } }, { "key": "24614", "source": "339", "target": "2118", "attributes": { "weight": 2 } }, { "key": "11032", "source": "339", "target": "452", "attributes": { "weight": 2 } }, { "key": "27818", "source": "339", "target": "1527", "attributes": { "weight": 1 } }, { "key": "3100", "source": "339", "target": "894", "attributes": { "weight": 3 } }, { "key": "27831", "source": "339", "target": "136", "attributes": { "weight": 1 } }, { "key": "17546", "source": "339", "target": "2123", "attributes": { "weight": 4 } }, { "key": "17548", "source": "339", "target": "2125", "attributes": { "weight": 3 } }, { "key": "27399", "source": "339", "target": "2670", "attributes": { "weight": 2 } }, { "key": "9239", "source": "339", "target": "430", "attributes": { "weight": 2 } }, { "key": "27393", "source": "339", "target": "2669", "attributes": { "weight": 2 } }, { "key": "17547", "source": "339", "target": "2124", "attributes": { "weight": 3 } }, { "key": "27815", "source": "339", "target": "440", "attributes": { "weight": 1 } }, { "key": "10406", "source": "339", "target": "225", "attributes": { "weight": 2 } }, { "key": "11853", "source": "339", "target": "468", "attributes": { "weight": 2 } }, { "key": "27229", "source": "339", "target": "52", "attributes": { "weight": 2 } }, { "key": "25854", "source": "339", "target": "220", "attributes": { "weight": 2 } }, { "key": "27835", "source": "339", "target": "2115", "attributes": { "weight": 2 } }, { "key": "27811", "source": "339", "target": "2511", "attributes": { "weight": 1 } }, { "key": "27230", "source": "339", "target": "57", "attributes": { "weight": 2 } }, { "key": "27810", "source": "339", "target": "889", "attributes": { "weight": 3 } }, { "key": "22269", "source": "339", "target": "794", "attributes": { "weight": 2 } }, { "key": "27394", "source": "339", "target": "2312", "attributes": { "weight": 2 } }, { "key": "27836", "source": "339", "target": "163", "attributes": { "weight": 1 } }, { "key": "9400", "source": "339", "target": "645", "attributes": { "weight": 2 } }, { "key": "17832", "source": "339", "target": "53", "attributes": { "weight": 2 } }, { "key": "27820", "source": "339", "target": "1045", "attributes": { "weight": 2 } }, { "key": "24613", "source": "339", "target": "2237", "attributes": { "weight": 1 } }, { "key": "26422", "source": "339", "target": "454", "attributes": { "weight": 2 } }, { "key": "12894", "source": "339", "target": "304", "attributes": { "weight": 2 } }, { "key": "27395", "source": "339", "target": "891", "attributes": { "weight": 2 } }, { "key": "17831", "source": "339", "target": "1380", "attributes": { "weight": 2 } }, { "key": "17345", "source": "339", "target": "358", "attributes": { "weight": 3 } }, { "key": "27808", "source": "339", "target": "35", "attributes": { "weight": 1 } }, { "key": "11400", "source": "340", "target": "1742", "attributes": { "weight": 1 } }, { "key": "32851", "source": "340", "target": "1125", "attributes": { "weight": 1 } }, { "key": "4054", "source": "340", "target": "432", "attributes": { "weight": 2 } }, { "key": "29912", "source": "340", "target": "2122", "attributes": { "weight": 1 } }, { "key": "36131", "source": "340", "target": "1390", "attributes": { "weight": 1 } }, { "key": "24376", "source": "340", "target": "190", "attributes": { "weight": 1 } }, { "key": "35042", "source": "340", "target": "352", "attributes": { "weight": 1 } }, { "key": "27378", "source": "340", "target": "638", "attributes": { "weight": 1 } }, { "key": "26766", "source": "340", "target": "454", "attributes": { "weight": 2 } }, { "key": "27302", "source": "340", "target": "57", "attributes": { "weight": 2 } }, { "key": "17980", "source": "340", "target": "1380", "attributes": { "weight": 1 } }, { "key": "14309", "source": "340", "target": "53", "attributes": { "weight": 3 } }, { "key": "9117", "source": "340", "target": "1087", "attributes": { "weight": 2 } }, { "key": "32614", "source": "340", "target": "791", "attributes": { "weight": 1 } }, { "key": "2313", "source": "340", "target": "670", "attributes": { "weight": 2 } }, { "key": "26931", "source": "340", "target": "497", "attributes": { "weight": 3 } }, { "key": "7080", "source": "340", "target": "189", "attributes": { "weight": 3 } }, { "key": "24664", "source": "340", "target": "889", "attributes": { "weight": 2 } }, { "key": "27380", "source": "340", "target": "338", "attributes": { "weight": 1 } }, { "key": "9116", "source": "340", "target": "442", "attributes": { "weight": 3 } }, { "key": "7411", "source": "340", "target": "1063", "attributes": { "weight": 2 } }, { "key": "2316", "source": "340", "target": "672", "attributes": { "weight": 3 } }, { "key": "4055", "source": "340", "target": "458", "attributes": { "weight": 1 } }, { "key": "33729", "source": "340", "target": "472", "attributes": { "weight": 1 } }, { "key": "31811", "source": "340", "target": "595", "attributes": { "weight": 1 } }, { "key": "27381", "source": "340", "target": "8", "attributes": { "weight": 2 } }, { "key": "27375", "source": "340", "target": "3", "attributes": { "weight": 2 } }, { "key": "29521", "source": "340", "target": "232", "attributes": { "weight": 2 } }, { "key": "23849", "source": "340", "target": "1774", "attributes": { "weight": 1 } }, { "key": "997", "source": "340", "target": "339", "attributes": { "weight": 1 } }, { "key": "10937", "source": "340", "target": "457", "attributes": { "weight": 1 } }, { "key": "27385", "source": "340", "target": "494", "attributes": { "weight": 1 } }, { "key": "7079", "source": "340", "target": "183", "attributes": { "weight": 1 } }, { "key": "13618", "source": "340", "target": "304", "attributes": { "weight": 2 } }, { "key": "27374", "source": "340", "target": "440", "attributes": { "weight": 2 } }, { "key": "29911", "source": "340", "target": "2831", "attributes": { "weight": 1 } }, { "key": "30620", "source": "340", "target": "9", "attributes": { "weight": 1 } }, { "key": "17022", "source": "340", "target": "59", "attributes": { "weight": 1 } }, { "key": "16374", "source": "340", "target": "370", "attributes": { "weight": 2 } }, { "key": "25394", "source": "340", "target": "433", "attributes": { "weight": 1 } }, { "key": "36939", "source": "340", "target": "2647", "attributes": { "weight": 1 } }, { "key": "12729", "source": "340", "target": "695", "attributes": { "weight": 1 } }, { "key": "2314", "source": "340", "target": "452", "attributes": { "weight": 4 } }, { "key": "23698", "source": "340", "target": "220", "attributes": { "weight": 4 } }, { "key": "27377", "source": "340", "target": "168", "attributes": { "weight": 1 } }, { "key": "27373", "source": "340", "target": "223", "attributes": { "weight": 2 } }, { "key": "23251", "source": "340", "target": "495", "attributes": { "weight": 3 } }, { "key": "24254", "source": "340", "target": "130", "attributes": { "weight": 4 } }, { "key": "12045", "source": "340", "target": "468", "attributes": { "weight": 2 } }, { "key": "27376", "source": "340", "target": "1047", "attributes": { "weight": 2 } }, { "key": "30744", "source": "340", "target": "1762", "attributes": { "weight": 1 } }, { "key": "27372", "source": "340", "target": "645", "attributes": { "weight": 1 } }, { "key": "27371", "source": "340", "target": "164", "attributes": { "weight": 2 } }, { "key": "1632", "source": "340", "target": "224", "attributes": { "weight": 1 } }, { "key": "2315", "source": "340", "target": "474", "attributes": { "weight": 2 } }, { "key": "2317", "source": "340", "target": "673", "attributes": { "weight": 3 } }, { "key": "29913", "source": "340", "target": "868", "attributes": { "weight": 1 } }, { "key": "27301", "source": "340", "target": "52", "attributes": { "weight": 3 } }, { "key": "24255", "source": "340", "target": "471", "attributes": { "weight": 2 } }, { "key": "24375", "source": "340", "target": "473", "attributes": { "weight": 3 } }, { "key": "33832", "source": "340", "target": "14", "attributes": { "weight": 1 } }, { "key": "33727", "source": "340", "target": "425", "attributes": { "weight": 1 } }, { "key": "24701", "source": "340", "target": "5", "attributes": { "weight": 1 } }, { "key": "27384", "source": "340", "target": "479", "attributes": { "weight": 4 } }, { "key": "27382", "source": "340", "target": "2258", "attributes": { "weight": 2 } }, { "key": "7081", "source": "340", "target": "193", "attributes": { "weight": 2 } }, { "key": "33728", "source": "340", "target": "135", "attributes": { "weight": 1 } }, { "key": "36129", "source": "340", "target": "1760", "attributes": { "weight": 1 } }, { "key": "6455", "source": "340", "target": "1090", "attributes": { "weight": 2 } }, { "key": "18348", "source": "340", "target": "1092", "attributes": { "weight": 2 } }, { "key": "27383", "source": "340", "target": "1026", "attributes": { "weight": 3 } }, { "key": "31810", "source": "340", "target": "823", "attributes": { "weight": 1 } }, { "key": "35709", "source": "340", "target": "3251", "attributes": { "weight": 1 } }, { "key": "17023", "source": "340", "target": "674", "attributes": { "weight": 2 } }, { "key": "25773", "source": "340", "target": "278", "attributes": { "weight": 1 } }, { "key": "27379", "source": "340", "target": "1024", "attributes": { "weight": 2 } }, { "key": "36130", "source": "340", "target": "465", "attributes": { "weight": 1 } }, { "key": "30619", "source": "340", "target": "682", "attributes": { "weight": 1 } }, { "key": "7410", "source": "340", "target": "154", "attributes": { "weight": 1 } }, { "key": "10237", "source": "341", "target": "711", "attributes": { "weight": 2 } }, { "key": "998", "source": "341", "target": "342", "attributes": { "weight": 1 } }, { "key": "10238", "source": "341", "target": "712", "attributes": { "weight": 2 } }, { "key": "1000", "source": "342", "target": "341", "attributes": { "weight": 1 } }, { "key": "1002", "source": "344", "target": "341", "attributes": { "weight": 1 } }, { "key": "35116", "source": "345", "target": "3179", "attributes": { "weight": 1 } }, { "key": "35118", "source": "345", "target": "14", "attributes": { "weight": 1 } }, { "key": "1003", "source": "345", "target": "352", "attributes": { "weight": 1 } }, { "key": "35117", "source": "345", "target": "348", "attributes": { "weight": 1 } }, { "key": "23782", "source": "346", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23781", "source": "346", "target": "3", "attributes": { "weight": 2 } }, { "key": "1004", "source": "346", "target": "352", "attributes": { "weight": 1 } }, { "key": "37284", "source": "347", "target": "14", "attributes": { "weight": 1 } }, { "key": "1008", "source": "347", "target": "348", "attributes": { "weight": 1 } }, { "key": "30911", "source": "347", "target": "3", "attributes": { "weight": 2 } }, { "key": "37285", "source": "347", "target": "349", "attributes": { "weight": 1 } }, { "key": "37286", "source": "347", "target": "351", "attributes": { "weight": 1 } }, { "key": "37283", "source": "347", "target": "2506", "attributes": { "weight": 1 } }, { "key": "1009", "source": "347", "target": "352", "attributes": { "weight": 1 } }, { "key": "1011", "source": "348", "target": "14", "attributes": { "weight": 1 } }, { "key": "35144", "source": "348", "target": "349", "attributes": { "weight": 1 } }, { "key": "35143", "source": "348", "target": "345", "attributes": { "weight": 1 } }, { "key": "1010", "source": "348", "target": "347", "attributes": { "weight": 1 } }, { "key": "1012", "source": "348", "target": "352", "attributes": { "weight": 1 } }, { "key": "35158", "source": "349", "target": "3085", "attributes": { "weight": 1 } }, { "key": "35159", "source": "349", "target": "11", "attributes": { "weight": 1 } }, { "key": "35162", "source": "349", "target": "793", "attributes": { "weight": 1 } }, { "key": "23848", "source": "349", "target": "1774", "attributes": { "weight": 1 } }, { "key": "37304", "source": "349", "target": "2506", "attributes": { "weight": 1 } }, { "key": "35161", "source": "349", "target": "348", "attributes": { "weight": 1 } }, { "key": "37301", "source": "349", "target": "3351", "attributes": { "weight": 1 } }, { "key": "31809", "source": "349", "target": "595", "attributes": { "weight": 1 } }, { "key": "32123", "source": "349", "target": "792", "attributes": { "weight": 1 } }, { "key": "37303", "source": "349", "target": "13", "attributes": { "weight": 1 } }, { "key": "1014", "source": "349", "target": "12", "attributes": { "weight": 2 } }, { "key": "31808", "source": "349", "target": "8", "attributes": { "weight": 2 } }, { "key": "37300", "source": "349", "target": "693", "attributes": { "weight": 1 } }, { "key": "35164", "source": "349", "target": "826", "attributes": { "weight": 1 } }, { "key": "30949", "source": "349", "target": "3", "attributes": { "weight": 2 } }, { "key": "35163", "source": "349", "target": "351", "attributes": { "weight": 1 } }, { "key": "37302", "source": "349", "target": "347", "attributes": { "weight": 1 } }, { "key": "35160", "source": "349", "target": "3179", "attributes": { "weight": 2 } }, { "key": "35166", "source": "350", "target": "597", "attributes": { "weight": 1 } }, { "key": "15092", "source": "350", "target": "8", "attributes": { "weight": 1 } }, { "key": "35165", "source": "350", "target": "594", "attributes": { "weight": 1 } }, { "key": "1015", "source": "350", "target": "352", "attributes": { "weight": 1 } }, { "key": "30951", "source": "351", "target": "3", "attributes": { "weight": 4 } }, { "key": "22376", "source": "351", "target": "794", "attributes": { "weight": 1 } }, { "key": "1016", "source": "351", "target": "12", "attributes": { "weight": 2 } }, { "key": "2822", "source": "351", "target": "14", "attributes": { "weight": 1 } }, { "key": "37253", "source": "351", "target": "5", "attributes": { "weight": 1 } }, { "key": "33834", "source": "351", "target": "792", "attributes": { "weight": 1 } }, { "key": "37307", "source": "351", "target": "347", "attributes": { "weight": 1 } }, { "key": "35168", "source": "351", "target": "793", "attributes": { "weight": 1 } }, { "key": "21607", "source": "351", "target": "89", "attributes": { "weight": 1 } }, { "key": "35167", "source": "351", "target": "7", "attributes": { "weight": 1 } }, { "key": "28986", "source": "351", "target": "479", "attributes": { "weight": 1 } }, { "key": "32619", "source": "351", "target": "791", "attributes": { "weight": 1 } }, { "key": "33833", "source": "351", "target": "788", "attributes": { "weight": 1 } }, { "key": "31813", "source": "351", "target": "8", "attributes": { "weight": 1 } }, { "key": "37254", "source": "351", "target": "3017", "attributes": { "weight": 1 } }, { "key": "23853", "source": "351", "target": "1774", "attributes": { "weight": 1 } }, { "key": "37306", "source": "351", "target": "3351", "attributes": { "weight": 1 } }, { "key": "35169", "source": "351", "target": "349", "attributes": { "weight": 1 } }, { "key": "31814", "source": "351", "target": "595", "attributes": { "weight": 1 } }, { "key": "35053", "source": "352", "target": "89", "attributes": { "weight": 1 } }, { "key": "35175", "source": "352", "target": "2646", "attributes": { "weight": 1 } }, { "key": "35059", "source": "352", "target": "19", "attributes": { "weight": 1 } }, { "key": "30623", "source": "352", "target": "682", "attributes": { "weight": 2 } }, { "key": "35054", "source": "352", "target": "452", "attributes": { "weight": 1 } }, { "key": "35051", "source": "352", "target": "387", "attributes": { "weight": 1 } }, { "key": "32626", "source": "352", "target": "2211", "attributes": { "weight": 1 } }, { "key": "30624", "source": "352", "target": "2878", "attributes": { "weight": 1 } }, { "key": "35179", "source": "352", "target": "1390", "attributes": { "weight": 1 } }, { "key": "31818", "source": "352", "target": "8", "attributes": { "weight": 2 } }, { "key": "35064", "source": "352", "target": "338", "attributes": { "weight": 1 } }, { "key": "35065", "source": "352", "target": "468", "attributes": { "weight": 2 } }, { "key": "30625", "source": "352", "target": "2991", "attributes": { "weight": 1 } }, { "key": "35069", "source": "352", "target": "1553", "attributes": { "weight": 1 } }, { "key": "35049", "source": "352", "target": "787", "attributes": { "weight": 1 } }, { "key": "35050", "source": "352", "target": "2067", "attributes": { "weight": 1 } }, { "key": "35074", "source": "352", "target": "1125", "attributes": { "weight": 2 } }, { "key": "35081", "source": "352", "target": "14", "attributes": { "weight": 1 } }, { "key": "30622", "source": "352", "target": "17", "attributes": { "weight": 1 } }, { "key": "26777", "source": "352", "target": "183", "attributes": { "weight": 1 } }, { "key": "35062", "source": "352", "target": "2073", "attributes": { "weight": 1 } }, { "key": "35060", "source": "352", "target": "370", "attributes": { "weight": 1 } }, { "key": "35067", "source": "352", "target": "371", "attributes": { "weight": 1 } }, { "key": "35063", "source": "352", "target": "817", "attributes": { "weight": 1 } }, { "key": "1019", "source": "352", "target": "12", "attributes": { "weight": 2 } }, { "key": "35055", "source": "352", "target": "2070", "attributes": { "weight": 1 } }, { "key": "35052", "source": "352", "target": "860", "attributes": { "weight": 1 } }, { "key": "1017", "source": "352", "target": "345", "attributes": { "weight": 1 } }, { "key": "35077", "source": "352", "target": "1812", "attributes": { "weight": 1 } }, { "key": "35080", "source": "352", "target": "2670", "attributes": { "weight": 1 } }, { "key": "27442", "source": "352", "target": "2682", "attributes": { "weight": 1 } }, { "key": "35075", "source": "352", "target": "13", "attributes": { "weight": 1 } }, { "key": "35086", "source": "352", "target": "1063", "attributes": { "weight": 1 } }, { "key": "35079", "source": "352", "target": "1772", "attributes": { "weight": 1 } }, { "key": "35061", "source": "352", "target": "681", "attributes": { "weight": 1 } }, { "key": "35178", "source": "352", "target": "3181", "attributes": { "weight": 1 } }, { "key": "35180", "source": "352", "target": "829", "attributes": { "weight": 1 } }, { "key": "4253", "source": "352", "target": "1137", "attributes": { "weight": 1 } }, { "key": "35084", "source": "352", "target": "1780", "attributes": { "weight": 1 } }, { "key": "35070", "source": "352", "target": "9", "attributes": { "weight": 1 } }, { "key": "35082", "source": "352", "target": "1774", "attributes": { "weight": 1 } }, { "key": "35085", "source": "352", "target": "494", "attributes": { "weight": 1 } }, { "key": "4254", "source": "352", "target": "673", "attributes": { "weight": 1 } }, { "key": "12731", "source": "352", "target": "695", "attributes": { "weight": 2 } }, { "key": "15093", "source": "352", "target": "1992", "attributes": { "weight": 1 } }, { "key": "32627", "source": "352", "target": "791", "attributes": { "weight": 2 } }, { "key": "30330", "source": "352", "target": "693", "attributes": { "weight": 2 } }, { "key": "1018", "source": "352", "target": "346", "attributes": { "weight": 1 } }, { "key": "1020", "source": "352", "target": "347", "attributes": { "weight": 1 } }, { "key": "30507", "source": "352", "target": "1072", "attributes": { "weight": 2 } }, { "key": "1022", "source": "352", "target": "350", "attributes": { "weight": 1 } }, { "key": "35048", "source": "352", "target": "429", "attributes": { "weight": 1 } }, { "key": "30508", "source": "352", "target": "2647", "attributes": { "weight": 1 } }, { "key": "35076", "source": "352", "target": "304", "attributes": { "weight": 1 } }, { "key": "29105", "source": "352", "target": "495", "attributes": { "weight": 2 } }, { "key": "35057", "source": "352", "target": "169", "attributes": { "weight": 1 } }, { "key": "26779", "source": "352", "target": "193", "attributes": { "weight": 1 } }, { "key": "35066", "source": "352", "target": "471", "attributes": { "weight": 1 } }, { "key": "35056", "source": "352", "target": "458", "attributes": { "weight": 1 } }, { "key": "26778", "source": "352", "target": "454", "attributes": { "weight": 2 } }, { "key": "35071", "source": "352", "target": "473", "attributes": { "weight": 1 } }, { "key": "35068", "source": "352", "target": "1611", "attributes": { "weight": 1 } }, { "key": "35078", "source": "352", "target": "2077", "attributes": { "weight": 1 } }, { "key": "36164", "source": "352", "target": "440", "attributes": { "weight": 1 } }, { "key": "35177", "source": "352", "target": "3180", "attributes": { "weight": 1 } }, { "key": "30626", "source": "352", "target": "25", "attributes": { "weight": 1 } }, { "key": "35073", "source": "352", "target": "868", "attributes": { "weight": 1 } }, { "key": "35083", "source": "352", "target": "340", "attributes": { "weight": 1 } }, { "key": "35176", "source": "352", "target": "818", "attributes": { "weight": 1 } }, { "key": "1021", "source": "352", "target": "348", "attributes": { "weight": 1 } }, { "key": "35047", "source": "352", "target": "0", "attributes": { "weight": 1 } }, { "key": "32625", "source": "352", "target": "424", "attributes": { "weight": 2 } }, { "key": "35072", "source": "352", "target": "3017", "attributes": { "weight": 1 } }, { "key": "35058", "source": "352", "target": "426", "attributes": { "weight": 1 } }, { "key": "1024", "source": "353", "target": "357", "attributes": { "weight": 1 } }, { "key": "9410", "source": "354", "target": "1612", "attributes": { "weight": 1 } }, { "key": "2138", "source": "354", "target": "642", "attributes": { "weight": 1 } }, { "key": "2155", "source": "354", "target": "665", "attributes": { "weight": 1 } }, { "key": "9407", "source": "354", "target": "1602", "attributes": { "weight": 1 } }, { "key": "3727", "source": "354", "target": "1034", "attributes": { "weight": 3 } }, { "key": "1025", "source": "354", "target": "355", "attributes": { "weight": 2 } }, { "key": "3730", "source": "354", "target": "668", "attributes": { "weight": 2 } }, { "key": "3729", "source": "354", "target": "1054", "attributes": { "weight": 5 } }, { "key": "2143", "source": "354", "target": "648", "attributes": { "weight": 2 } }, { "key": "14180", "source": "354", "target": "168", "attributes": { "weight": 2 } }, { "key": "2145", "source": "354", "target": "651", "attributes": { "weight": 3 } }, { "key": "2151", "source": "354", "target": "661", "attributes": { "weight": 3 } }, { "key": "1026", "source": "354", "target": "357", "attributes": { "weight": 5 } }, { "key": "2137", "source": "354", "target": "641", "attributes": { "weight": 2 } }, { "key": "2153", "source": "354", "target": "663", "attributes": { "weight": 4 } }, { "key": "2144", "source": "354", "target": "649", "attributes": { "weight": 6 } }, { "key": "27904", "source": "354", "target": "287", "attributes": { "weight": 1 } }, { "key": "2152", "source": "354", "target": "662", "attributes": { "weight": 2 } }, { "key": "9409", "source": "354", "target": "176", "attributes": { "weight": 1 } }, { "key": "2141", "source": "354", "target": "645", "attributes": { "weight": 5 } }, { "key": "2140", "source": "354", "target": "644", "attributes": { "weight": 5 } }, { "key": "2142", "source": "354", "target": "419", "attributes": { "weight": 6 } }, { "key": "2154", "source": "354", "target": "664", "attributes": { "weight": 1 } }, { "key": "2148", "source": "354", "target": "655", "attributes": { "weight": 6 } }, { "key": "2149", "source": "354", "target": "658", "attributes": { "weight": 3 } }, { "key": "3731", "source": "354", "target": "669", "attributes": { "weight": 2 } }, { "key": "3728", "source": "354", "target": "1052", "attributes": { "weight": 3 } }, { "key": "25572", "source": "354", "target": "2611", "attributes": { "weight": 1 } }, { "key": "2150", "source": "354", "target": "659", "attributes": { "weight": 1 } }, { "key": "2146", "source": "354", "target": "653", "attributes": { "weight": 2 } }, { "key": "2139", "source": "354", "target": "164", "attributes": { "weight": 2 } }, { "key": "9572", "source": "354", "target": "171", "attributes": { "weight": 1 } }, { "key": "30348", "source": "354", "target": "1046", "attributes": { "weight": 1 } }, { "key": "9411", "source": "354", "target": "178", "attributes": { "weight": 4 } }, { "key": "17346", "source": "354", "target": "358", "attributes": { "weight": 1 } }, { "key": "2147", "source": "354", "target": "654", "attributes": { "weight": 5 } }, { "key": "9408", "source": "354", "target": "361", "attributes": { "weight": 1 } }, { "key": "22270", "source": "355", "target": "794", "attributes": { "weight": 1 } }, { "key": "12333", "source": "355", "target": "1036", "attributes": { "weight": 1 } }, { "key": "1027", "source": "355", "target": "354", "attributes": { "weight": 2 } }, { "key": "21508", "source": "355", "target": "89", "attributes": { "weight": 1 } }, { "key": "30747", "source": "355", "target": "164", "attributes": { "weight": 1 } }, { "key": "1028", "source": "355", "target": "357", "attributes": { "weight": 4 } }, { "key": "12334", "source": "355", "target": "358", "attributes": { "weight": 1 } }, { "key": "12335", "source": "355", "target": "359", "attributes": { "weight": 1 } }, { "key": "1029", "source": "355", "target": "362", "attributes": { "weight": 3 } }, { "key": "28921", "source": "355", "target": "171", "attributes": { "weight": 1 } }, { "key": "1030", "source": "356", "target": "357", "attributes": { "weight": 3 } }, { "key": "12337", "source": "357", "target": "1046", "attributes": { "weight": 2 } }, { "key": "1042", "source": "357", "target": "364", "attributes": { "weight": 1 } }, { "key": "12342", "source": "357", "target": "176", "attributes": { "weight": 1 } }, { "key": "1032", "source": "357", "target": "353", "attributes": { "weight": 1 } }, { "key": "30009", "source": "357", "target": "661", "attributes": { "weight": 1 } }, { "key": "1033", "source": "357", "target": "354", "attributes": { "weight": 5 } }, { "key": "1036", "source": "357", "target": "358", "attributes": { "weight": 3 } }, { "key": "31856", "source": "357", "target": "1060", "attributes": { "weight": 1 } }, { "key": "1040", "source": "357", "target": "171", "attributes": { "weight": 5 } }, { "key": "12340", "source": "357", "target": "1056", "attributes": { "weight": 2 } }, { "key": "14516", "source": "357", "target": "259", "attributes": { "weight": 1 } }, { "key": "12339", "source": "357", "target": "168", "attributes": { "weight": 3 } }, { "key": "3739", "source": "357", "target": "645", "attributes": { "weight": 1 } }, { "key": "1039", "source": "357", "target": "361", "attributes": { "weight": 4 } }, { "key": "25573", "source": "357", "target": "2611", "attributes": { "weight": 1 } }, { "key": "27930", "source": "357", "target": "287", "attributes": { "weight": 1 } }, { "key": "1038", "source": "357", "target": "360", "attributes": { "weight": 3 } }, { "key": "27721", "source": "357", "target": "1042", "attributes": { "weight": 2 } }, { "key": "1034", "source": "357", "target": "355", "attributes": { "weight": 4 } }, { "key": "12343", "source": "357", "target": "178", "attributes": { "weight": 4 } }, { "key": "1043", "source": "357", "target": "365", "attributes": { "weight": 3 } }, { "key": "1041", "source": "357", "target": "362", "attributes": { "weight": 2 } }, { "key": "29615", "source": "357", "target": "1763", "attributes": { "weight": 1 } }, { "key": "12336", "source": "357", "target": "1045", "attributes": { "weight": 2 } }, { "key": "1035", "source": "357", "target": "356", "attributes": { "weight": 3 } }, { "key": "1031", "source": "357", "target": "164", "attributes": { "weight": 6 } }, { "key": "12338", "source": "357", "target": "452", "attributes": { "weight": 1 } }, { "key": "18055", "source": "357", "target": "1036", "attributes": { "weight": 1 } }, { "key": "3740", "source": "357", "target": "419", "attributes": { "weight": 3 } }, { "key": "1037", "source": "357", "target": "359", "attributes": { "weight": 3 } }, { "key": "12341", "source": "357", "target": "468", "attributes": { "weight": 1 } }, { "key": "22274", "source": "357", "target": "794", "attributes": { "weight": 1 } }, { "key": "32334", "source": "357", "target": "791", "attributes": { "weight": 1 } }, { "key": "21562", "source": "358", "target": "2291", "attributes": { "weight": 2 } }, { "key": "17411", "source": "358", "target": "1763", "attributes": { "weight": 4 } }, { "key": "11496", "source": "358", "target": "1322", "attributes": { "weight": 2 } }, { "key": "17427", "source": "358", "target": "2115", "attributes": { "weight": 3 } }, { "key": "17407", "source": "358", "target": "791", "attributes": { "weight": 3 } }, { "key": "17388", "source": "358", "target": "1045", "attributes": { "weight": 4 } }, { "key": "17380", "source": "358", "target": "567", "attributes": { "weight": 2 } }, { "key": "11495", "source": "358", "target": "473", "attributes": { "weight": 2 } }, { "key": "2197", "source": "358", "target": "419", "attributes": { "weight": 5 } }, { "key": "17383", "source": "358", "target": "674", "attributes": { "weight": 2 } }, { "key": "17424", "source": "358", "target": "471", "attributes": { "weight": 1 } }, { "key": "17413", "source": "358", "target": "1765", "attributes": { "weight": 3 } }, { "key": "33758", "source": "358", "target": "817", "attributes": { "weight": 1 } }, { "key": "24619", "source": "358", "target": "2232", "attributes": { "weight": 2 } }, { "key": "11490", "source": "358", "target": "368", "attributes": { "weight": 2 } }, { "key": "17431", "source": "358", "target": "1553", "attributes": { "weight": 2 } }, { "key": "27946", "source": "358", "target": "287", "attributes": { "weight": 1 } }, { "key": "17389", "source": "358", "target": "1046", "attributes": { "weight": 4 } }, { "key": "17416", "source": "358", "target": "53", "attributes": { "weight": 1 } }, { "key": "17421", "source": "358", "target": "136", "attributes": { "weight": 1 } }, { "key": "17584", "source": "358", "target": "1805", "attributes": { "weight": 1 } }, { "key": "17362", "source": "358", "target": "35", "attributes": { "weight": 1 } }, { "key": "17371", "source": "358", "target": "1520", "attributes": { "weight": 2 } }, { "key": "26050", "source": "358", "target": "595", "attributes": { "weight": 2 } }, { "key": "2200", "source": "358", "target": "667", "attributes": { "weight": 3 } }, { "key": "17441", "source": "358", "target": "1060", "attributes": { "weight": 4 } }, { "key": "17420", "source": "358", "target": "470", "attributes": { "weight": 2 } }, { "key": "17447", "source": "358", "target": "310", "attributes": { "weight": 2 } }, { "key": "9452", "source": "358", "target": "650", "attributes": { "weight": 1 } }, { "key": "17367", "source": "358", "target": "59", "attributes": { "weight": 2 } }, { "key": "3769", "source": "358", "target": "1049", "attributes": { "weight": 2 } }, { "key": "37216", "source": "358", "target": "681", "attributes": { "weight": 1 } }, { "key": "21548", "source": "358", "target": "2139", "attributes": { "weight": 1 } }, { "key": "21558", "source": "358", "target": "2290", "attributes": { "weight": 1 } }, { "key": "17393", "source": "358", "target": "1133", "attributes": { "weight": 1 } }, { "key": "17384", "source": "358", "target": "636", "attributes": { "weight": 2 } }, { "key": "17418", "source": "358", "target": "135", "attributes": { "weight": 2 } }, { "key": "21541", "source": "358", "target": "2123", "attributes": { "weight": 1 } }, { "key": "17453", "source": "358", "target": "1063", "attributes": { "weight": 1 } }, { "key": "14197", "source": "358", "target": "168", "attributes": { "weight": 2 } }, { "key": "11489", "source": "358", "target": "938", "attributes": { "weight": 2 } }, { "key": "21547", "source": "358", "target": "2287", "attributes": { "weight": 1 } }, { "key": "17370", "source": "358", "target": "130", "attributes": { "weight": 1 } }, { "key": "17409", "source": "358", "target": "638", "attributes": { "weight": 2 } }, { "key": "17414", "source": "358", "target": "171", "attributes": { "weight": 3 } }, { "key": "21566", "source": "358", "target": "828", "attributes": { "weight": 1 } }, { "key": "17446", "source": "358", "target": "2119", "attributes": { "weight": 2 } }, { "key": "11492", "source": "358", "target": "1233", "attributes": { "weight": 2 } }, { "key": "17404", "source": "358", "target": "278", "attributes": { "weight": 2 } }, { "key": "17401", "source": "358", "target": "188", "attributes": { "weight": 2 } }, { "key": "21564", "source": "358", "target": "2124", "attributes": { "weight": 1 } }, { "key": "17406", "source": "358", "target": "421", "attributes": { "weight": 3 } }, { "key": "24488", "source": "358", "target": "1794", "attributes": { "weight": 1 } }, { "key": "17377", "source": "358", "target": "2113", "attributes": { "weight": 2 } }, { "key": "30662", "source": "358", "target": "2997", "attributes": { "weight": 1 } }, { "key": "17442", "source": "358", "target": "2118", "attributes": { "weight": 3 } }, { "key": "17375", "source": "358", "target": "644", "attributes": { "weight": 1 } }, { "key": "17579", "source": "358", "target": "2132", "attributes": { "weight": 1 } }, { "key": "21542", "source": "358", "target": "693", "attributes": { "weight": 1 } }, { "key": "17578", "source": "358", "target": "1796", "attributes": { "weight": 2 } }, { "key": "17435", "source": "358", "target": "1282", "attributes": { "weight": 2 } }, { "key": "17422", "source": "358", "target": "1550", "attributes": { "weight": 1 } }, { "key": "17582", "source": "358", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17439", "source": "358", "target": "479", "attributes": { "weight": 2 } }, { "key": "17415", "source": "358", "target": "1056", "attributes": { "weight": 4 } }, { "key": "17399", "source": "358", "target": "109", "attributes": { "weight": 1 } }, { "key": "23747", "source": "358", "target": "1774", "attributes": { "weight": 1 } }, { "key": "21563", "source": "358", "target": "673", "attributes": { "weight": 1 } }, { "key": "17583", "source": "358", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17454", "source": "358", "target": "57", "attributes": { "weight": 3 } }, { "key": "24620", "source": "358", "target": "2237", "attributes": { "weight": 1 } }, { "key": "17385", "source": "358", "target": "1527", "attributes": { "weight": 1 } }, { "key": "17394", "source": "358", "target": "2114", "attributes": { "weight": 2 } }, { "key": "17585", "source": "358", "target": "1807", "attributes": { "weight": 1 } }, { "key": "21539", "source": "358", "target": "433", "attributes": { "weight": 1 } }, { "key": "17395", "source": "358", "target": "452", "attributes": { "weight": 1 } }, { "key": "9451", "source": "358", "target": "1041", "attributes": { "weight": 3 } }, { "key": "17449", "source": "358", "target": "493", "attributes": { "weight": 2 } }, { "key": "1044", "source": "358", "target": "357", "attributes": { "weight": 3 } }, { "key": "21544", "source": "358", "target": "5", "attributes": { "weight": 2 } }, { "key": "17400", "source": "358", "target": "52", "attributes": { "weight": 2 } }, { "key": "17423", "source": "358", "target": "228", "attributes": { "weight": 1 } }, { "key": "21559", "source": "358", "target": "823", "attributes": { "weight": 1 } }, { "key": "17444", "source": "358", "target": "177", "attributes": { "weight": 1 } }, { "key": "17429", "source": "358", "target": "1367", "attributes": { "weight": 1 } }, { "key": "17580", "source": "358", "target": "2143", "attributes": { "weight": 1 } }, { "key": "33759", "source": "358", "target": "14", "attributes": { "weight": 1 } }, { "key": "17372", "source": "358", "target": "2112", "attributes": { "weight": 2 } }, { "key": "21551", "source": "358", "target": "682", "attributes": { "weight": 2 } }, { "key": "12375", "source": "358", "target": "565", "attributes": { "weight": 1 } }, { "key": "21554", "source": "358", "target": "9", "attributes": { "weight": 2 } }, { "key": "30661", "source": "358", "target": "2995", "attributes": { "weight": 1 } }, { "key": "17452", "source": "358", "target": "497", "attributes": { "weight": 2 } }, { "key": "21556", "source": "358", "target": "2289", "attributes": { "weight": 1 } }, { "key": "9262", "source": "358", "target": "430", "attributes": { "weight": 2 } }, { "key": "11493", "source": "358", "target": "370", "attributes": { "weight": 2 } }, { "key": "18424", "source": "358", "target": "2140", "attributes": { "weight": 1 } }, { "key": "21549", "source": "358", "target": "161", "attributes": { "weight": 1 } }, { "key": "2198", "source": "358", "target": "651", "attributes": { "weight": 3 } }, { "key": "17430", "source": "358", "target": "1611", "attributes": { "weight": 1 } }, { "key": "21538", "source": "358", "target": "1779", "attributes": { "weight": 2 } }, { "key": "21561", "source": "358", "target": "428", "attributes": { "weight": 1 } }, { "key": "17391", "source": "358", "target": "1809", "attributes": { "weight": 2 } }, { "key": "21555", "source": "358", "target": "2288", "attributes": { "weight": 2 } }, { "key": "15095", "source": "358", "target": "1782", "attributes": { "weight": 2 } }, { "key": "17392", "source": "358", "target": "183", "attributes": { "weight": 2 } }, { "key": "17440", "source": "358", "target": "305", "attributes": { "weight": 1 } }, { "key": "17387", "source": "358", "target": "3", "attributes": { "weight": 1 } }, { "key": "21545", "source": "358", "target": "2286", "attributes": { "weight": 1 } }, { "key": "17437", "source": "358", "target": "173", "attributes": { "weight": 2 } }, { "key": "17397", "source": "358", "target": "108", "attributes": { "weight": 1 } }, { "key": "17426", "source": "358", "target": "362", "attributes": { "weight": 4 } }, { "key": "13045", "source": "358", "target": "304", "attributes": { "weight": 2 } }, { "key": "17417", "source": "358", "target": "8", "attributes": { "weight": 1 } }, { "key": "17577", "source": "358", "target": "2130", "attributes": { "weight": 1 } }, { "key": "21565", "source": "358", "target": "2125", "attributes": { "weight": 1 } }, { "key": "17381", "source": "358", "target": "1042", "attributes": { "weight": 3 } }, { "key": "2199", "source": "358", "target": "661", "attributes": { "weight": 2 } }, { "key": "21557", "source": "358", "target": "1026", "attributes": { "weight": 2 } }, { "key": "17438", "source": "358", "target": "2116", "attributes": { "weight": 2 } }, { "key": "15761", "source": "358", "target": "195", "attributes": { "weight": 1 } }, { "key": "17405", "source": "358", "target": "790", "attributes": { "weight": 4 } }, { "key": "17445", "source": "358", "target": "178", "attributes": { "weight": 5 } }, { "key": "2196", "source": "358", "target": "647", "attributes": { "weight": 4 } }, { "key": "17410", "source": "358", "target": "1024", "attributes": { "weight": 2 } }, { "key": "17432", "source": "358", "target": "189", "attributes": { "weight": 3 } }, { "key": "21552", "source": "358", "target": "361", "attributes": { "weight": 1 } }, { "key": "17436", "source": "358", "target": "580", "attributes": { "weight": 2 } }, { "key": "12347", "source": "358", "target": "365", "attributes": { "weight": 1 } }, { "key": "21543", "source": "358", "target": "789", "attributes": { "weight": 1 } }, { "key": "36223", "source": "358", "target": "560", "attributes": { "weight": 1 } }, { "key": "17374", "source": "358", "target": "164", "attributes": { "weight": 3 } }, { "key": "17408", "source": "358", "target": "359", "attributes": { "weight": 5 } }, { "key": "24489", "source": "358", "target": "1798", "attributes": { "weight": 1 } }, { "key": "2195", "source": "358", "target": "645", "attributes": { "weight": 4 } }, { "key": "17369", "source": "358", "target": "1037", "attributes": { "weight": 4 } }, { "key": "36222", "source": "358", "target": "1386", "attributes": { "weight": 1 } }, { "key": "17451", "source": "358", "target": "495", "attributes": { "weight": 2 } }, { "key": "17366", "source": "358", "target": "889", "attributes": { "weight": 4 } }, { "key": "21550", "source": "358", "target": "556", "attributes": { "weight": 1 } }, { "key": "17396", "source": "358", "target": "454", "attributes": { "weight": 3 } }, { "key": "1196", "source": "358", "target": "422", "attributes": { "weight": 5 } }, { "key": "37264", "source": "358", "target": "1799", "attributes": { "weight": 1 } }, { "key": "17379", "source": "358", "target": "354", "attributes": { "weight": 1 } }, { "key": "16436", "source": "358", "target": "1387", "attributes": { "weight": 2 } }, { "key": "21540", "source": "358", "target": "788", "attributes": { "weight": 2 } }, { "key": "17434", "source": "358", "target": "474", "attributes": { "weight": 1 } }, { "key": "17386", "source": "358", "target": "39", "attributes": { "weight": 1 } }, { "key": "17378", "source": "358", "target": "339", "attributes": { "weight": 3 } }, { "key": "3103", "source": "358", "target": "894", "attributes": { "weight": 1 } }, { "key": "17428", "source": "358", "target": "297", "attributes": { "weight": 2 } }, { "key": "17382", "source": "358", "target": "225", "attributes": { "weight": 1 } }, { "key": "17364", "source": "358", "target": "1143", "attributes": { "weight": 2 } }, { "key": "17390", "source": "358", "target": "449", "attributes": { "weight": 2 } }, { "key": "21537", "source": "358", "target": "2233", "attributes": { "weight": 1 } }, { "key": "17450", "source": "358", "target": "494", "attributes": { "weight": 1 } }, { "key": "17425", "source": "358", "target": "472", "attributes": { "weight": 2 } }, { "key": "30877", "source": "358", "target": "13", "attributes": { "weight": 1 } }, { "key": "21546", "source": "358", "target": "891", "attributes": { "weight": 1 } }, { "key": "8701", "source": "358", "target": "442", "attributes": { "weight": 3 } }, { "key": "21567", "source": "358", "target": "2126", "attributes": { "weight": 1 } }, { "key": "17368", "source": "358", "target": "432", "attributes": { "weight": 1 } }, { "key": "17402", "source": "358", "target": "169", "attributes": { "weight": 1 } }, { "key": "17419", "source": "358", "target": "1253", "attributes": { "weight": 3 } }, { "key": "17448", "source": "358", "target": "180", "attributes": { "weight": 1 } }, { "key": "17365", "source": "358", "target": "641", "attributes": { "weight": 2 } }, { "key": "17363", "source": "358", "target": "1380", "attributes": { "weight": 3 } }, { "key": "1857", "source": "358", "target": "93", "attributes": { "weight": 3 } }, { "key": "11497", "source": "358", "target": "1323", "attributes": { "weight": 2 } }, { "key": "12346", "source": "358", "target": "355", "attributes": { "weight": 1 } }, { "key": "11049", "source": "358", "target": "220", "attributes": { "weight": 3 } }, { "key": "17443", "source": "358", "target": "1772", "attributes": { "weight": 1 } }, { "key": "17433", "source": "358", "target": "163", "attributes": { "weight": 4 } }, { "key": "17403", "source": "358", "target": "707", "attributes": { "weight": 2 } }, { "key": "17376", "source": "358", "target": "1166", "attributes": { "weight": 2 } }, { "key": "17586", "source": "358", "target": "2152", "attributes": { "weight": 1 } }, { "key": "4973", "source": "358", "target": "468", "attributes": { "weight": 5 } }, { "key": "11491", "source": "358", "target": "1232", "attributes": { "weight": 3 } }, { "key": "17581", "source": "358", "target": "2144", "attributes": { "weight": 1 } }, { "key": "21560", "source": "358", "target": "232", "attributes": { "weight": 2 } }, { "key": "17373", "source": "358", "target": "435", "attributes": { "weight": 2 } }, { "key": "14544", "source": "358", "target": "259", "attributes": { "weight": 2 } }, { "key": "11494", "source": "358", "target": "338", "attributes": { "weight": 2 } }, { "key": "17398", "source": "358", "target": "1219", "attributes": { "weight": 2 } }, { "key": "21553", "source": "358", "target": "660", "attributes": { "weight": 1 } }, { "key": "25378", "source": "358", "target": "2579", "attributes": { "weight": 2 } }, { "key": "17412", "source": "358", "target": "170", "attributes": { "weight": 2 } }, { "key": "31923", "source": "359", "target": "1232", "attributes": { "weight": 1 } }, { "key": "31908", "source": "359", "target": "1794", "attributes": { "weight": 1 } }, { "key": "29652", "source": "359", "target": "2288", "attributes": { "weight": 1 } }, { "key": "28617", "source": "359", "target": "421", "attributes": { "weight": 4 } }, { "key": "31918", "source": "359", "target": "2135", "attributes": { "weight": 1 } }, { "key": "31905", "source": "359", "target": "3064", "attributes": { "weight": 1 } }, { "key": "17081", "source": "359", "target": "891", "attributes": { "weight": 7 } }, { "key": "31914", "source": "359", "target": "3067", "attributes": { "weight": 1 } }, { "key": "30709", "source": "359", "target": "889", "attributes": { "weight": 4 } }, { "key": "22672", "source": "359", "target": "1037", "attributes": { "weight": 2 } }, { "key": "31903", "source": "359", "target": "3063", "attributes": { "weight": 1 } }, { "key": "18066", "source": "359", "target": "1036", "attributes": { "weight": 3 } }, { "key": "31944", "source": "359", "target": "1805", "attributes": { "weight": 1 } }, { "key": "22291", "source": "359", "target": "794", "attributes": { "weight": 1 } }, { "key": "31937", "source": "359", "target": "2146", "attributes": { "weight": 1 } }, { "key": "8784", "source": "359", "target": "442", "attributes": { "weight": 2 } }, { "key": "24631", "source": "359", "target": "2118", "attributes": { "weight": 2 } }, { "key": "21578", "source": "359", "target": "89", "attributes": { "weight": 1 } }, { "key": "27864", "source": "359", "target": "339", "attributes": { "weight": 3 } }, { "key": "31941", "source": "359", "target": "3073", "attributes": { "weight": 1 } }, { "key": "31922", "source": "359", "target": "2314", "attributes": { "weight": 1 } }, { "key": "37106", "source": "359", "target": "232", "attributes": { "weight": 1 } }, { "key": "31917", "source": "359", "target": "2123", "attributes": { "weight": 1 } }, { "key": "27406", "source": "359", "target": "2313", "attributes": { "weight": 2 } }, { "key": "31907", "source": "359", "target": "3065", "attributes": { "weight": 1 } }, { "key": "31938", "source": "359", "target": "1592", "attributes": { "weight": 1 } }, { "key": "25737", "source": "359", "target": "1060", "attributes": { "weight": 5 } }, { "key": "17470", "source": "359", "target": "358", "attributes": { "weight": 5 } }, { "key": "31936", "source": "359", "target": "93", "attributes": { "weight": 1 } }, { "key": "31108", "source": "359", "target": "2290", "attributes": { "weight": 1 } }, { "key": "31919", "source": "359", "target": "3070", "attributes": { "weight": 2 } }, { "key": "1045", "source": "359", "target": "357", "attributes": { "weight": 3 } }, { "key": "31947", "source": "359", "target": "2125", "attributes": { "weight": 1 } }, { "key": "31942", "source": "359", "target": "178", "attributes": { "weight": 1 } }, { "key": "11892", "source": "359", "target": "468", "attributes": { "weight": 2 } }, { "key": "31950", "source": "359", "target": "2126", "attributes": { "weight": 1 } }, { "key": "7322", "source": "359", "target": "454", "attributes": { "weight": 6 } }, { "key": "31921", "source": "359", "target": "2286", "attributes": { "weight": 1 } }, { "key": "31932", "source": "359", "target": "472", "attributes": { "weight": 2 } }, { "key": "37102", "source": "359", "target": "2669", "attributes": { "weight": 1 } }, { "key": "3797", "source": "359", "target": "645", "attributes": { "weight": 3 } }, { "key": "31925", "source": "359", "target": "370", "attributes": { "weight": 1 } }, { "key": "31939", "source": "359", "target": "3071", "attributes": { "weight": 1 } }, { "key": "26053", "source": "359", "target": "163", "attributes": { "weight": 2 } }, { "key": "31915", "source": "359", "target": "3068", "attributes": { "weight": 1 } }, { "key": "11158", "source": "359", "target": "473", "attributes": { "weight": 2 } }, { "key": "31946", "source": "359", "target": "493", "attributes": { "weight": 2 } }, { "key": "27541", "source": "359", "target": "1520", "attributes": { "weight": 2 } }, { "key": "37105", "source": "359", "target": "135", "attributes": { "weight": 1 } }, { "key": "30454", "source": "359", "target": "1046", "attributes": { "weight": 2 } }, { "key": "31930", "source": "359", "target": "661", "attributes": { "weight": 1 } }, { "key": "15107", "source": "359", "target": "171", "attributes": { "weight": 4 } }, { "key": "3110", "source": "359", "target": "894", "attributes": { "weight": 1 } }, { "key": "31910", "source": "359", "target": "3066", "attributes": { "weight": 1 } }, { "key": "31929", "source": "359", "target": "660", "attributes": { "weight": 1 } }, { "key": "31926", "source": "359", "target": "638", "attributes": { "weight": 1 } }, { "key": "31948", "source": "359", "target": "3076", "attributes": { "weight": 1 } }, { "key": "22482", "source": "359", "target": "1637", "attributes": { "weight": 1 } }, { "key": "31909", "source": "359", "target": "1795", "attributes": { "weight": 1 } }, { "key": "37101", "source": "359", "target": "856", "attributes": { "weight": 1 } }, { "key": "22481", "source": "359", "target": "567", "attributes": { "weight": 4 } }, { "key": "9486", "source": "359", "target": "419", "attributes": { "weight": 2 } }, { "key": "31933", "source": "359", "target": "362", "attributes": { "weight": 2 } }, { "key": "7321", "source": "359", "target": "1380", "attributes": { "weight": 6 } }, { "key": "24629", "source": "359", "target": "2236", "attributes": { "weight": 1 } }, { "key": "31951", "source": "359", "target": "1063", "attributes": { "weight": 1 } }, { "key": "31916", "source": "359", "target": "3069", "attributes": { "weight": 1 } }, { "key": "31927", "source": "359", "target": "2696", "attributes": { "weight": 1 } }, { "key": "31913", "source": "359", "target": "1045", "attributes": { "weight": 2 } }, { "key": "24632", "source": "359", "target": "2239", "attributes": { "weight": 1 } }, { "key": "31928", "source": "359", "target": "338", "attributes": { "weight": 1 } }, { "key": "31934", "source": "359", "target": "2115", "attributes": { "weight": 2 } }, { "key": "31911", "source": "359", "target": "644", "attributes": { "weight": 1 } }, { "key": "27866", "source": "359", "target": "2670", "attributes": { "weight": 2 } }, { "key": "9487", "source": "359", "target": "651", "attributes": { "weight": 1 } }, { "key": "28619", "source": "359", "target": "2116", "attributes": { "weight": 2 } }, { "key": "27725", "source": "359", "target": "1042", "attributes": { "weight": 3 } }, { "key": "37104", "source": "359", "target": "2861", "attributes": { "weight": 1 } }, { "key": "37103", "source": "359", "target": "2312", "attributes": { "weight": 1 } }, { "key": "31945", "source": "359", "target": "1806", "attributes": { "weight": 1 } }, { "key": "10496", "source": "359", "target": "225", "attributes": { "weight": 3 } }, { "key": "3109", "source": "359", "target": "890", "attributes": { "weight": 1 } }, { "key": "24630", "source": "359", "target": "2237", "attributes": { "weight": 1 } }, { "key": "36954", "source": "359", "target": "2291", "attributes": { "weight": 1 } }, { "key": "31107", "source": "359", "target": "1765", "attributes": { "weight": 3 } }, { "key": "18428", "source": "359", "target": "1056", "attributes": { "weight": 5 } }, { "key": "34865", "source": "359", "target": "2511", "attributes": { "weight": 1 } }, { "key": "31924", "source": "359", "target": "1798", "attributes": { "weight": 1 } }, { "key": "31906", "source": "359", "target": "430", "attributes": { "weight": 1 } }, { "key": "31931", "source": "359", "target": "471", "attributes": { "weight": 2 } }, { "key": "31912", "source": "359", "target": "259", "attributes": { "weight": 1 } }, { "key": "31940", "source": "359", "target": "1802", "attributes": { "weight": 1 } }, { "key": "31920", "source": "359", "target": "52", "attributes": { "weight": 1 } }, { "key": "7323", "source": "359", "target": "791", "attributes": { "weight": 3 } }, { "key": "12350", "source": "359", "target": "355", "attributes": { "weight": 1 } }, { "key": "29651", "source": "359", "target": "1763", "attributes": { "weight": 3 } }, { "key": "24628", "source": "359", "target": "2235", "attributes": { "weight": 1 } }, { "key": "24627", "source": "359", "target": "2232", "attributes": { "weight": 2 } }, { "key": "27865", "source": "359", "target": "2528", "attributes": { "weight": 2 } }, { "key": "28618", "source": "359", "target": "1253", "attributes": { "weight": 4 } }, { "key": "31949", "source": "359", "target": "3077", "attributes": { "weight": 1 } }, { "key": "3302", "source": "359", "target": "1555", "attributes": { "weight": 1 } }, { "key": "9485", "source": "359", "target": "1041", "attributes": { "weight": 2 } }, { "key": "31904", "source": "359", "target": "2233", "attributes": { "weight": 2 } }, { "key": "11157", "source": "359", "target": "452", "attributes": { "weight": 2 } }, { "key": "12377", "source": "359", "target": "565", "attributes": { "weight": 1 } }, { "key": "31943", "source": "359", "target": "1804", "attributes": { "weight": 1 } }, { "key": "29653", "source": "359", "target": "2119", "attributes": { "weight": 1 } }, { "key": "31935", "source": "359", "target": "1801", "attributes": { "weight": 1 } }, { "key": "1046", "source": "360", "target": "357", "attributes": { "weight": 3 } }, { "key": "21584", "source": "361", "target": "89", "attributes": { "weight": 1 } }, { "key": "2252", "source": "361", "target": "419", "attributes": { "weight": 5 } }, { "key": "9494", "source": "361", "target": "668", "attributes": { "weight": 1 } }, { "key": "1047", "source": "361", "target": "357", "attributes": { "weight": 4 } }, { "key": "25578", "source": "361", "target": "2611", "attributes": { "weight": 1 } }, { "key": "30648", "source": "361", "target": "168", "attributes": { "weight": 1 } }, { "key": "21585", "source": "361", "target": "358", "attributes": { "weight": 1 } }, { "key": "25740", "source": "361", "target": "278", "attributes": { "weight": 1 } }, { "key": "13230", "source": "361", "target": "264", "attributes": { "weight": 1 } }, { "key": "3799", "source": "361", "target": "645", "attributes": { "weight": 1 } }, { "key": "37389", "source": "361", "target": "3367", "attributes": { "weight": 1 } }, { "key": "37388", "source": "361", "target": "3366", "attributes": { "weight": 1 } }, { "key": "37396", "source": "361", "target": "3374", "attributes": { "weight": 1 } }, { "key": "30647", "source": "361", "target": "164", "attributes": { "weight": 2 } }, { "key": "28033", "source": "361", "target": "287", "attributes": { "weight": 1 } }, { "key": "22295", "source": "361", "target": "794", "attributes": { "weight": 1 } }, { "key": "14690", "source": "361", "target": "259", "attributes": { "weight": 1 } }, { "key": "36956", "source": "361", "target": "362", "attributes": { "weight": 1 } }, { "key": "27680", "source": "361", "target": "178", "attributes": { "weight": 2 } }, { "key": "30459", "source": "361", "target": "1046", "attributes": { "weight": 2 } }, { "key": "37393", "source": "361", "target": "3371", "attributes": { "weight": 1 } }, { "key": "37392", "source": "361", "target": "3370", "attributes": { "weight": 1 } }, { "key": "15109", "source": "361", "target": "171", "attributes": { "weight": 3 } }, { "key": "37390", "source": "361", "target": "3368", "attributes": { "weight": 1 } }, { "key": "18067", "source": "361", "target": "1036", "attributes": { "weight": 1 } }, { "key": "29676", "source": "361", "target": "1763", "attributes": { "weight": 1 } }, { "key": "13231", "source": "361", "target": "294", "attributes": { "weight": 1 } }, { "key": "37395", "source": "361", "target": "3373", "attributes": { "weight": 1 } }, { "key": "9493", "source": "361", "target": "354", "attributes": { "weight": 1 } }, { "key": "37391", "source": "361", "target": "3369", "attributes": { "weight": 1 } }, { "key": "37394", "source": "361", "target": "3372", "attributes": { "weight": 1 } }, { "key": "32545", "source": "361", "target": "791", "attributes": { "weight": 1 } }, { "key": "32564", "source": "362", "target": "791", "attributes": { "weight": 2 } }, { "key": "36976", "source": "362", "target": "562", "attributes": { "weight": 1 } }, { "key": "36975", "source": "362", "target": "2291", "attributes": { "weight": 1 } }, { "key": "28626", "source": "362", "target": "2116", "attributes": { "weight": 2 } }, { "key": "36966", "source": "362", "target": "659", "attributes": { "weight": 1 } }, { "key": "29705", "source": "362", "target": "2886", "attributes": { "weight": 1 } }, { "key": "24583", "source": "362", "target": "1041", "attributes": { "weight": 2 } }, { "key": "29706", "source": "362", "target": "421", "attributes": { "weight": 2 } }, { "key": "1050", "source": "362", "target": "357", "attributes": { "weight": 1 } }, { "key": "17623", "source": "362", "target": "2152", "attributes": { "weight": 1 } }, { "key": "36963", "source": "362", "target": "1045", "attributes": { "weight": 1 } }, { "key": "17489", "source": "362", "target": "358", "attributes": { "weight": 4 } }, { "key": "9505", "source": "362", "target": "419", "attributes": { "weight": 2 } }, { "key": "21590", "source": "362", "target": "89", "attributes": { "weight": 1 } }, { "key": "28627", "source": "362", "target": "2119", "attributes": { "weight": 2 } }, { "key": "36972", "source": "362", "target": "1611", "attributes": { "weight": 1 } }, { "key": "36971", "source": "362", "target": "660", "attributes": { "weight": 1 } }, { "key": "31168", "source": "362", "target": "641", "attributes": { "weight": 1 } }, { "key": "29708", "source": "362", "target": "2892", "attributes": { "weight": 1 } }, { "key": "36967", "source": "362", "target": "359", "attributes": { "weight": 1 } }, { "key": "28625", "source": "362", "target": "1253", "attributes": { "weight": 3 } }, { "key": "24584", "source": "362", "target": "1049", "attributes": { "weight": 1 } }, { "key": "3816", "source": "362", "target": "667", "attributes": { "weight": 3 } }, { "key": "31967", "source": "362", "target": "2115", "attributes": { "weight": 2 } }, { "key": "36974", "source": "362", "target": "473", "attributes": { "weight": 1 } }, { "key": "9507", "source": "362", "target": "661", "attributes": { "weight": 2 } }, { "key": "36960", "source": "362", "target": "164", "attributes": { "weight": 1 } }, { "key": "36959", "source": "362", "target": "1520", "attributes": { "weight": 1 } }, { "key": "34910", "source": "362", "target": "57", "attributes": { "weight": 2 } }, { "key": "36962", "source": "362", "target": "442", "attributes": { "weight": 1 } }, { "key": "9506", "source": "362", "target": "651", "attributes": { "weight": 2 } }, { "key": "26146", "source": "362", "target": "1056", "attributes": { "weight": 2 } }, { "key": "27727", "source": "362", "target": "1042", "attributes": { "weight": 3 } }, { "key": "29707", "source": "362", "target": "1763", "attributes": { "weight": 3 } }, { "key": "1049", "source": "362", "target": "355", "attributes": { "weight": 3 } }, { "key": "30714", "source": "362", "target": "889", "attributes": { "weight": 2 } }, { "key": "36964", "source": "362", "target": "454", "attributes": { "weight": 1 } }, { "key": "5539", "source": "362", "target": "1036", "attributes": { "weight": 11 } }, { "key": "36973", "source": "362", "target": "189", "attributes": { "weight": 1 } }, { "key": "27881", "source": "362", "target": "339", "attributes": { "weight": 2 } }, { "key": "36961", "source": "362", "target": "644", "attributes": { "weight": 1 } }, { "key": "17622", "source": "362", "target": "1804", "attributes": { "weight": 1 } }, { "key": "36969", "source": "362", "target": "361", "attributes": { "weight": 1 } }, { "key": "31968", "source": "362", "target": "1060", "attributes": { "weight": 2 } }, { "key": "27625", "source": "362", "target": "171", "attributes": { "weight": 2 } }, { "key": "22299", "source": "362", "target": "794", "attributes": { "weight": 1 } }, { "key": "22679", "source": "362", "target": "1037", "attributes": { "weight": 3 } }, { "key": "17943", "source": "362", "target": "1380", "attributes": { "weight": 2 } }, { "key": "36965", "source": "362", "target": "790", "attributes": { "weight": 1 } }, { "key": "36968", "source": "362", "target": "3340", "attributes": { "weight": 1 } }, { "key": "3815", "source": "362", "target": "647", "attributes": { "weight": 3 } }, { "key": "2270", "source": "362", "target": "645", "attributes": { "weight": 4 } }, { "key": "8873", "source": "362", "target": "1046", "attributes": { "weight": 5 } }, { "key": "36970", "source": "362", "target": "468", "attributes": { "weight": 1 } }, { "key": "1051", "source": "363", "target": "357", "attributes": { "weight": 1 } }, { "key": "1052", "source": "364", "target": "357", "attributes": { "weight": 1 } }, { "key": "1053", "source": "364", "target": "363", "attributes": { "weight": 1 } }, { "key": "1054", "source": "365", "target": "357", "attributes": { "weight": 4 } }, { "key": "1055", "source": "366", "target": "367", "attributes": { "weight": 1 } }, { "key": "2439", "source": "367", "target": "702", "attributes": { "weight": 1 } }, { "key": "1056", "source": "367", "target": "366", "attributes": { "weight": 1 } }, { "key": "4807", "source": "368", "target": "1212", "attributes": { "weight": 2 } }, { "key": "4827", "source": "368", "target": "278", "attributes": { "weight": 4 } }, { "key": "4912", "source": "368", "target": "1329", "attributes": { "weight": 3 } }, { "key": "4821", "source": "368", "target": "391", "attributes": { "weight": 2 } }, { "key": "11487", "source": "368", "target": "358", "attributes": { "weight": 2 } }, { "key": "4879", "source": "368", "target": "1090", "attributes": { "weight": 3 } }, { "key": "4889", "source": "368", "target": "1303", "attributes": { "weight": 2 } }, { "key": "4785", "source": "368", "target": "1188", "attributes": { "weight": 2 } }, { "key": "4778", "source": "368", "target": "1180", "attributes": { "weight": 2 } }, { "key": "4894", "source": "368", "target": "215", "attributes": { "weight": 3 } }, { "key": "4758", "source": "368", "target": "1148", "attributes": { "weight": 2 } }, { "key": "4872", "source": "368", "target": "1287", "attributes": { "weight": 2 } }, { "key": "4852", "source": "368", "target": "924", "attributes": { "weight": 3 } }, { "key": "4853", "source": "368", "target": "396", "attributes": { "weight": 5 } }, { "key": "4812", "source": "368", "target": "108", "attributes": { "weight": 3 } }, { "key": "4777", "source": "368", "target": "910", "attributes": { "weight": 2 } }, { "key": "4907", "source": "368", "target": "1326", "attributes": { "weight": 2 } }, { "key": "4890", "source": "368", "target": "1305", "attributes": { "weight": 2 } }, { "key": "4909", "source": "368", "target": "407", "attributes": { "weight": 2 } }, { "key": "4863", "source": "368", "target": "1278", "attributes": { "weight": 2 } }, { "key": "4900", "source": "368", "target": "1316", "attributes": { "weight": 2 } }, { "key": "4824", "source": "368", "target": "1229", "attributes": { "weight": 2 } }, { "key": "4754", "source": "368", "target": "1140", "attributes": { "weight": 2 } }, { "key": "4861", "source": "368", "target": "1273", "attributes": { "weight": 2 } }, { "key": "4871", "source": "368", "target": "1286", "attributes": { "weight": 2 } }, { "key": "4904", "source": "368", "target": "1323", "attributes": { "weight": 5 } }, { "key": "4874", "source": "368", "target": "123", "attributes": { "weight": 4 } }, { "key": "4916", "source": "368", "target": "3413", "attributes": { "weight": 2 } }, { "key": "4761", "source": "368", "target": "1156", "attributes": { "weight": 2 } }, { "key": "4815", "source": "368", "target": "1223", "attributes": { "weight": 2 } }, { "key": "4823", "source": "368", "target": "1228", "attributes": { "weight": 2 } }, { "key": "4901", "source": "368", "target": "601", "attributes": { "weight": 3 } }, { "key": "4805", "source": "368", "target": "454", "attributes": { "weight": 9 } }, { "key": "4899", "source": "368", "target": "405", "attributes": { "weight": 2 } }, { "key": "4819", "source": "368", "target": "917", "attributes": { "weight": 2 } }, { "key": "4891", "source": "368", "target": "1307", "attributes": { "weight": 2 } }, { "key": "4806", "source": "368", "target": "1211", "attributes": { "weight": 2 } }, { "key": "4762", "source": "368", "target": "1162", "attributes": { "weight": 2 } }, { "key": "4855", "source": "368", "target": "1266", "attributes": { "weight": 2 } }, { "key": "4773", "source": "368", "target": "631", "attributes": { "weight": 2 } }, { "key": "4919", "source": "368", "target": "217", "attributes": { "weight": 2 } }, { "key": "4911", "source": "368", "target": "961", "attributes": { "weight": 2 } }, { "key": "4781", "source": "368", "target": "1183", "attributes": { "weight": 2 } }, { "key": "4787", "source": "368", "target": "1190", "attributes": { "weight": 2 } }, { "key": "4822", "source": "368", "target": "1227", "attributes": { "weight": 2 } }, { "key": "4914", "source": "368", "target": "1331", "attributes": { "weight": 2 } }, { "key": "4843", "source": "368", "target": "30", "attributes": { "weight": 3 } }, { "key": "4788", "source": "368", "target": "911", "attributes": { "weight": 2 } }, { "key": "4772", "source": "368", "target": "1174", "attributes": { "weight": 3 } }, { "key": "4860", "source": "368", "target": "1272", "attributes": { "weight": 3 } }, { "key": "4829", "source": "368", "target": "1236", "attributes": { "weight": 2 } }, { "key": "4892", "source": "368", "target": "1308", "attributes": { "weight": 2 } }, { "key": "4837", "source": "368", "target": "1248", "attributes": { "weight": 2 } }, { "key": "4844", "source": "368", "target": "544", "attributes": { "weight": 2 } }, { "key": "4756", "source": "368", "target": "1144", "attributes": { "weight": 2 } }, { "key": "4793", "source": "368", "target": "1194", "attributes": { "weight": 2 } }, { "key": "4850", "source": "368", "target": "1263", "attributes": { "weight": 2 } }, { "key": "4884", "source": "368", "target": "214", "attributes": { "weight": 2 } }, { "key": "4832", "source": "368", "target": "370", "attributes": { "weight": 3 } }, { "key": "4825", "source": "368", "target": "1232", "attributes": { "weight": 3 } }, { "key": "4811", "source": "368", "target": "1216", "attributes": { "weight": 2 } }, { "key": "4835", "source": "368", "target": "1246", "attributes": { "weight": 2 } }, { "key": "4792", "source": "368", "target": "389", "attributes": { "weight": 2 } }, { "key": "4848", "source": "368", "target": "1260", "attributes": { "weight": 2 } }, { "key": "4862", "source": "368", "target": "1275", "attributes": { "weight": 2 } }, { "key": "4800", "source": "368", "target": "914", "attributes": { "weight": 2 } }, { "key": "4920", "source": "368", "target": "218", "attributes": { "weight": 3 } }, { "key": "4917", "source": "368", "target": "1332", "attributes": { "weight": 2 } }, { "key": "4929", "source": "368", "target": "373", "attributes": { "weight": 2 } }, { "key": "4857", "source": "368", "target": "371", "attributes": { "weight": 2 } }, { "key": "4849", "source": "368", "target": "1262", "attributes": { "weight": 2 } }, { "key": "4922", "source": "368", "target": "1342", "attributes": { "weight": 2 } }, { "key": "4933", "source": "368", "target": "1063", "attributes": { "weight": 5 } }, { "key": "4831", "source": "368", "target": "205", "attributes": { "weight": 2 } }, { "key": "4757", "source": "368", "target": "380", "attributes": { "weight": 2 } }, { "key": "4882", "source": "368", "target": "1296", "attributes": { "weight": 2 } }, { "key": "4801", "source": "368", "target": "1047", "attributes": { "weight": 3 } }, { "key": "4836", "source": "368", "target": "338", "attributes": { "weight": 6 } }, { "key": "1057", "source": "368", "target": "369", "attributes": { "weight": 2 } }, { "key": "4816", "source": "368", "target": "1224", "attributes": { "weight": 2 } }, { "key": "4797", "source": "368", "target": "1199", "attributes": { "weight": 2 } }, { "key": "4934", "source": "368", "target": "416", "attributes": { "weight": 2 } }, { "key": "4873", "source": "368", "target": "1288", "attributes": { "weight": 2 } }, { "key": "4790", "source": "368", "target": "388", "attributes": { "weight": 2 } }, { "key": "4774", "source": "368", "target": "1175", "attributes": { "weight": 2 } }, { "key": "4880", "source": "368", "target": "1294", "attributes": { "weight": 3 } }, { "key": "4796", "source": "368", "target": "1198", "attributes": { "weight": 2 } }, { "key": "4915", "source": "368", "target": "408", "attributes": { "weight": 3 } }, { "key": "4859", "source": "368", "target": "1271", "attributes": { "weight": 2 } }, { "key": "4834", "source": "368", "target": "337", "attributes": { "weight": 3 } }, { "key": "4833", "source": "368", "target": "1242", "attributes": { "weight": 2 } }, { "key": "4868", "source": "368", "target": "1281", "attributes": { "weight": 2 } }, { "key": "4908", "source": "368", "target": "406", "attributes": { "weight": 3 } }, { "key": "4794", "source": "368", "target": "1196", "attributes": { "weight": 2 } }, { "key": "28550", "source": "368", "target": "1279", "attributes": { "weight": 1 } }, { "key": "4896", "source": "368", "target": "1313", "attributes": { "weight": 2 } }, { "key": "4906", "source": "368", "target": "1325", "attributes": { "weight": 2 } }, { "key": "4770", "source": "368", "target": "1169", "attributes": { "weight": 2 } }, { "key": "4768", "source": "368", "target": "938", "attributes": { "weight": 4 } }, { "key": "4921", "source": "368", "target": "413", "attributes": { "weight": 2 } }, { "key": "4765", "source": "368", "target": "1165", "attributes": { "weight": 2 } }, { "key": "4799", "source": "368", "target": "1201", "attributes": { "weight": 2 } }, { "key": "4851", "source": "368", "target": "208", "attributes": { "weight": 3 } }, { "key": "4759", "source": "368", "target": "195", "attributes": { "weight": 10 } }, { "key": "4881", "source": "368", "target": "1295", "attributes": { "weight": 2 } }, { "key": "4818", "source": "368", "target": "109", "attributes": { "weight": 3 } }, { "key": "4864", "source": "368", "target": "925", "attributes": { "weight": 5 } }, { "key": "4764", "source": "368", "target": "1164", "attributes": { "weight": 2 } }, { "key": "4813", "source": "368", "target": "1218", "attributes": { "weight": 2 } }, { "key": "4755", "source": "368", "target": "1142", "attributes": { "weight": 2 } }, { "key": "4776", "source": "368", "target": "442", "attributes": { "weight": 5 } }, { "key": "4820", "source": "368", "target": "918", "attributes": { "weight": 2 } }, { "key": "4926", "source": "368", "target": "930", "attributes": { "weight": 2 } }, { "key": "4856", "source": "368", "target": "1267", "attributes": { "weight": 2 } }, { "key": "4814", "source": "368", "target": "1221", "attributes": { "weight": 2 } }, { "key": "4828", "source": "368", "target": "1234", "attributes": { "weight": 2 } }, { "key": "4847", "source": "368", "target": "471", "attributes": { "weight": 5 } }, { "key": "4838", "source": "368", "target": "1249", "attributes": { "weight": 2 } }, { "key": "4798", "source": "368", "target": "913", "attributes": { "weight": 4 } }, { "key": "4867", "source": "368", "target": "400", "attributes": { "weight": 2 } }, { "key": "28551", "source": "368", "target": "1284", "attributes": { "weight": 1 } }, { "key": "4913", "source": "368", "target": "1330", "attributes": { "weight": 2 } }, { "key": "4775", "source": "368", "target": "778", "attributes": { "weight": 1 } }, { "key": "4902", "source": "368", "target": "1321", "attributes": { "weight": 2 } }, { "key": "4839", "source": "368", "target": "920", "attributes": { "weight": 2 } }, { "key": "4782", "source": "368", "target": "779", "attributes": { "weight": 2 } }, { "key": "4802", "source": "368", "target": "1205", "attributes": { "weight": 2 } }, { "key": "4918", "source": "368", "target": "124", "attributes": { "weight": 2 } }, { "key": "4898", "source": "368", "target": "1315", "attributes": { "weight": 4 } }, { "key": "4878", "source": "368", "target": "1291", "attributes": { "weight": 4 } }, { "key": "4763", "source": "368", "target": "1163", "attributes": { "weight": 2 } }, { "key": "4886", "source": "368", "target": "1031", "attributes": { "weight": 2 } }, { "key": "4925", "source": "368", "target": "1346", "attributes": { "weight": 2 } }, { "key": "15645", "source": "368", "target": "220", "attributes": { "weight": 2 } }, { "key": "4869", "source": "368", "target": "580", "attributes": { "weight": 4 } }, { "key": "4840", "source": "368", "target": "1250", "attributes": { "weight": 2 } }, { "key": "4858", "source": "368", "target": "1269", "attributes": { "weight": 2 } }, { "key": "4771", "source": "368", "target": "1170", "attributes": { "weight": 2 } }, { "key": "4888", "source": "368", "target": "1302", "attributes": { "weight": 2 } }, { "key": "4786", "source": "368", "target": "1189", "attributes": { "weight": 2 } }, { "key": "4932", "source": "368", "target": "377", "attributes": { "weight": 4 } }, { "key": "4931", "source": "368", "target": "333", "attributes": { "weight": 3 } }, { "key": "4897", "source": "368", "target": "1314", "attributes": { "weight": 4 } }, { "key": "4810", "source": "368", "target": "390", "attributes": { "weight": 2 } }, { "key": "4842", "source": "368", "target": "468", "attributes": { "weight": 6 } }, { "key": "4930", "source": "368", "target": "154", "attributes": { "weight": 3 } }, { "key": "4841", "source": "368", "target": "921", "attributes": { "weight": 4 } }, { "key": "4870", "source": "368", "target": "1285", "attributes": { "weight": 2 } }, { "key": "4753", "source": "368", "target": "1139", "attributes": { "weight": 2 } }, { "key": "4809", "source": "368", "target": "1213", "attributes": { "weight": 2 } }, { "key": "4826", "source": "368", "target": "1233", "attributes": { "weight": 3 } }, { "key": "4883", "source": "368", "target": "990", "attributes": { "weight": 2 } }, { "key": "4830", "source": "368", "target": "1241", "attributes": { "weight": 2 } }, { "key": "4885", "source": "368", "target": "1300", "attributes": { "weight": 2 } }, { "key": "4846", "source": "368", "target": "1256", "attributes": { "weight": 2 } }, { "key": "4760", "source": "368", "target": "1152", "attributes": { "weight": 3 } }, { "key": "4791", "source": "368", "target": "912", "attributes": { "weight": 3 } }, { "key": "4795", "source": "368", "target": "1197", "attributes": { "weight": 5 } }, { "key": "4780", "source": "368", "target": "1182", "attributes": { "weight": 3 } }, { "key": "4924", "source": "368", "target": "1345", "attributes": { "weight": 2 } }, { "key": "4895", "source": "368", "target": "633", "attributes": { "weight": 2 } }, { "key": "4893", "source": "368", "target": "1310", "attributes": { "weight": 2 } }, { "key": "4789", "source": "368", "target": "387", "attributes": { "weight": 4 } }, { "key": "4903", "source": "368", "target": "1322", "attributes": { "weight": 3 } }, { "key": "4905", "source": "368", "target": "1324", "attributes": { "weight": 2 } }, { "key": "4928", "source": "368", "target": "931", "attributes": { "weight": 2 } }, { "key": "4784", "source": "368", "target": "1185", "attributes": { "weight": 2 } }, { "key": "4783", "source": "368", "target": "1184", "attributes": { "weight": 2 } }, { "key": "4804", "source": "368", "target": "199", "attributes": { "weight": 3 } }, { "key": "4767", "source": "368", "target": "43", "attributes": { "weight": 3 } }, { "key": "4887", "source": "368", "target": "403", "attributes": { "weight": 2 } }, { "key": "4817", "source": "368", "target": "1225", "attributes": { "weight": 2 } }, { "key": "4923", "source": "368", "target": "1343", "attributes": { "weight": 2 } }, { "key": "4845", "source": "368", "target": "1255", "attributes": { "weight": 2 } }, { "key": "4876", "source": "368", "target": "1290", "attributes": { "weight": 2 } }, { "key": "4927", "source": "368", "target": "1348", "attributes": { "weight": 2 } }, { "key": "4866", "source": "368", "target": "399", "attributes": { "weight": 2 } }, { "key": "4766", "source": "368", "target": "1166", "attributes": { "weight": 2 } }, { "key": "4779", "source": "368", "target": "1181", "attributes": { "weight": 2 } }, { "key": "4854", "source": "368", "target": "1264", "attributes": { "weight": 2 } }, { "key": "4769", "source": "368", "target": "1168", "attributes": { "weight": 2 } }, { "key": "4910", "source": "368", "target": "1327", "attributes": { "weight": 2 } }, { "key": "4865", "source": "368", "target": "926", "attributes": { "weight": 6 } }, { "key": "4808", "source": "368", "target": "915", "attributes": { "weight": 2 } }, { "key": "4803", "source": "368", "target": "1206", "attributes": { "weight": 2 } }, { "key": "4875", "source": "368", "target": "1289", "attributes": { "weight": 2 } }, { "key": "4877", "source": "368", "target": "212", "attributes": { "weight": 2 } }, { "key": "26212", "source": "369", "target": "45", "attributes": { "weight": 1 } }, { "key": "10087", "source": "369", "target": "387", "attributes": { "weight": 1 } }, { "key": "10095", "source": "369", "target": "876", "attributes": { "weight": 1 } }, { "key": "10088", "source": "369", "target": "452", "attributes": { "weight": 2 } }, { "key": "1984", "source": "369", "target": "605", "attributes": { "weight": 4 } }, { "key": "10089", "source": "369", "target": "1662", "attributes": { "weight": 2 } }, { "key": "10091", "source": "369", "target": "109", "attributes": { "weight": 7 } }, { "key": "10084", "source": "369", "target": "103", "attributes": { "weight": 1 } }, { "key": "1059", "source": "369", "target": "370", "attributes": { "weight": 3 } }, { "key": "1058", "source": "369", "target": "368", "attributes": { "weight": 2 } }, { "key": "11869", "source": "369", "target": "468", "attributes": { "weight": 1 } }, { "key": "21680", "source": "369", "target": "1455", "attributes": { "weight": 1 } }, { "key": "34165", "source": "369", "target": "1233", "attributes": { "weight": 1 } }, { "key": "10099", "source": "369", "target": "1349", "attributes": { "weight": 2 } }, { "key": "14139", "source": "369", "target": "1383", "attributes": { "weight": 1 } }, { "key": "9755", "source": "369", "target": "396", "attributes": { "weight": 1 } }, { "key": "15774", "source": "369", "target": "195", "attributes": { "weight": 1 } }, { "key": "21679", "source": "369", "target": "1454", "attributes": { "weight": 1 } }, { "key": "25858", "source": "369", "target": "220", "attributes": { "weight": 1 } }, { "key": "10094", "source": "369", "target": "471", "attributes": { "weight": 3 } }, { "key": "7278", "source": "369", "target": "601", "attributes": { "weight": 5 } }, { "key": "10093", "source": "369", "target": "30", "attributes": { "weight": 3 } }, { "key": "21678", "source": "369", "target": "604", "attributes": { "weight": 1 } }, { "key": "10081", "source": "369", "target": "130", "attributes": { "weight": 1 } }, { "key": "26469", "source": "369", "target": "454", "attributes": { "weight": 1 } }, { "key": "1060", "source": "369", "target": "371", "attributes": { "weight": 3 } }, { "key": "8720", "source": "369", "target": "442", "attributes": { "weight": 2 } }, { "key": "10098", "source": "369", "target": "1675", "attributes": { "weight": 1 } }, { "key": "1061", "source": "369", "target": "372", "attributes": { "weight": 1 } }, { "key": "10080", "source": "369", "target": "603", "attributes": { "weight": 3 } }, { "key": "10090", "source": "369", "target": "108", "attributes": { "weight": 6 } }, { "key": "10096", "source": "369", "target": "879", "attributes": { "weight": 1 } }, { "key": "10092", "source": "369", "target": "1663", "attributes": { "weight": 1 } }, { "key": "10085", "source": "369", "target": "778", "attributes": { "weight": 2 } }, { "key": "21681", "source": "369", "target": "607", "attributes": { "weight": 1 } }, { "key": "10083", "source": "369", "target": "871", "attributes": { "weight": 1 } }, { "key": "14030", "source": "369", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10086", "source": "369", "target": "872", "attributes": { "weight": 1 } }, { "key": "10097", "source": "369", "target": "882", "attributes": { "weight": 1 } }, { "key": "10082", "source": "369", "target": "43", "attributes": { "weight": 2 } }, { "key": "5188", "source": "370", "target": "387", "attributes": { "weight": 5 } }, { "key": "15889", "source": "370", "target": "305", "attributes": { "weight": 2 } }, { "key": "11547", "source": "370", "target": "1140", "attributes": { "weight": 1 } }, { "key": "5233", "source": "370", "target": "57", "attributes": { "weight": 4 } }, { "key": "16824", "source": "370", "target": "59", "attributes": { "weight": 1 } }, { "key": "5197", "source": "370", "target": "109", "attributes": { "weight": 5 } }, { "key": "5200", "source": "370", "target": "168", "attributes": { "weight": 2 } }, { "key": "5176", "source": "370", "target": "1036", "attributes": { "weight": 2 } }, { "key": "11565", "source": "370", "target": "780", "attributes": { "weight": 3 } }, { "key": "11572", "source": "370", "target": "212", "attributes": { "weight": 1 } }, { "key": "11581", "source": "370", "target": "215", "attributes": { "weight": 1 } }, { "key": "11583", "source": "370", "target": "254", "attributes": { "weight": 2 } }, { "key": "11573", "source": "370", "target": "1291", "attributes": { "weight": 2 } }, { "key": "11590", "source": "370", "target": "1347", "attributes": { "weight": 1 } }, { "key": "5193", "source": "370", "target": "449", "attributes": { "weight": 9 } }, { "key": "11584", "source": "370", "target": "1326", "attributes": { "weight": 1 } }, { "key": "5185", "source": "370", "target": "1182", "attributes": { "weight": 3 } }, { "key": "5203", "source": "370", "target": "338", "attributes": { "weight": 8 } }, { "key": "10689", "source": "370", "target": "634", "attributes": { "weight": 1 } }, { "key": "12814", "source": "370", "target": "1220", "attributes": { "weight": 2 } }, { "key": "8788", "source": "370", "target": "454", "attributes": { "weight": 8 } }, { "key": "11159", "source": "370", "target": "494", "attributes": { "weight": 2 } }, { "key": "11588", "source": "370", "target": "1334", "attributes": { "weight": 2 } }, { "key": "11555", "source": "370", "target": "1180", "attributes": { "weight": 2 } }, { "key": "10497", "source": "370", "target": "225", "attributes": { "weight": 1 } }, { "key": "10687", "source": "370", "target": "782", "attributes": { "weight": 2 } }, { "key": "11560", "source": "370", "target": "1214", "attributes": { "weight": 2 } }, { "key": "11576", "source": "370", "target": "785", "attributes": { "weight": 2 } }, { "key": "5178", "source": "370", "target": "130", "attributes": { "weight": 9 } }, { "key": "5191", "source": "370", "target": "368", "attributes": { "weight": 3 } }, { "key": "5226", "source": "370", "target": "963", "attributes": { "weight": 3 } }, { "key": "5223", "source": "370", "target": "1323", "attributes": { "weight": 7 } }, { "key": "5224", "source": "370", "target": "407", "attributes": { "weight": 3 } }, { "key": "11553", "source": "370", "target": "1172", "attributes": { "weight": 2 } }, { "key": "27265", "source": "370", "target": "52", "attributes": { "weight": 2 } }, { "key": "5207", "source": "370", "target": "471", "attributes": { "weight": 9 } }, { "key": "15887", "source": "370", "target": "925", "attributes": { "weight": 2 } }, { "key": "11564", "source": "370", "target": "638", "attributes": { "weight": 4 } }, { "key": "35745", "source": "370", "target": "136", "attributes": { "weight": 1 } }, { "key": "8786", "source": "370", "target": "195", "attributes": { "weight": 7 } }, { "key": "5212", "source": "370", "target": "580", "attributes": { "weight": 5 } }, { "key": "5230", "source": "370", "target": "154", "attributes": { "weight": 6 } }, { "key": "11567", "source": "370", "target": "544", "attributes": { "weight": 2 } }, { "key": "26594", "source": "370", "target": "189", "attributes": { "weight": 2 } }, { "key": "11548", "source": "370", "target": "236", "attributes": { "weight": 2 } }, { "key": "5198", "source": "370", "target": "45", "attributes": { "weight": 2 } }, { "key": "5220", "source": "370", "target": "1315", "attributes": { "weight": 6 } }, { "key": "11589", "source": "370", "target": "928", "attributes": { "weight": 2 } }, { "key": "5196", "source": "370", "target": "108", "attributes": { "weight": 3 } }, { "key": "5218", "source": "370", "target": "1296", "attributes": { "weight": 3 } }, { "key": "27867", "source": "370", "target": "339", "attributes": { "weight": 2 } }, { "key": "11552", "source": "370", "target": "1171", "attributes": { "weight": 1 } }, { "key": "5217", "source": "370", "target": "1294", "attributes": { "weight": 4 } }, { "key": "15881", "source": "370", "target": "35", "attributes": { "weight": 1 } }, { "key": "5174", "source": "370", "target": "889", "attributes": { "weight": 3 } }, { "key": "10686", "source": "370", "target": "43", "attributes": { "weight": 4 } }, { "key": "5186", "source": "370", "target": "779", "attributes": { "weight": 4 } }, { "key": "11577", "source": "370", "target": "1791", "attributes": { "weight": 1 } }, { "key": "5219", "source": "370", "target": "1305", "attributes": { "weight": 4 } }, { "key": "11566", "source": "370", "target": "1251", "attributes": { "weight": 1 } }, { "key": "5187", "source": "370", "target": "1184", "attributes": { "weight": 3 } }, { "key": "15884", "source": "370", "target": "913", "attributes": { "weight": 1 } }, { "key": "23196", "source": "370", "target": "1227", "attributes": { "weight": 1 } }, { "key": "31953", "source": "370", "target": "1060", "attributes": { "weight": 1 } }, { "key": "11557", "source": "370", "target": "1197", "attributes": { "weight": 2 } }, { "key": "5214", "source": "370", "target": "1289", "attributes": { "weight": 3 } }, { "key": "16825", "source": "370", "target": "434", "attributes": { "weight": 1 } }, { "key": "5216", "source": "370", "target": "783", "attributes": { "weight": 4 } }, { "key": "34989", "source": "370", "target": "352", "attributes": { "weight": 1 } }, { "key": "15891", "source": "370", "target": "405", "attributes": { "weight": 1 } }, { "key": "13190", "source": "370", "target": "304", "attributes": { "weight": 3 } }, { "key": "11549", "source": "370", "target": "1381", "attributes": { "weight": 1 } }, { "key": "15893", "source": "370", "target": "124", "attributes": { "weight": 1 } }, { "key": "5189", "source": "370", "target": "912", "attributes": { "weight": 3 } }, { "key": "29033", "source": "370", "target": "495", "attributes": { "weight": 2 } }, { "key": "11578", "source": "370", "target": "372", "attributes": { "weight": 2 } }, { "key": "5190", "source": "370", "target": "1196", "attributes": { "weight": 3 } }, { "key": "5232", "source": "370", "target": "1063", "attributes": { "weight": 7 } }, { "key": "11582", "source": "370", "target": "1316", "attributes": { "weight": 2 } }, { "key": "11551", "source": "370", "target": "1789", "attributes": { "weight": 1 } }, { "key": "11559", "source": "370", "target": "199", "attributes": { "weight": 2 } }, { "key": "11574", "source": "370", "target": "990", "attributes": { "weight": 2 } }, { "key": "1105", "source": "370", "target": "396", "attributes": { "weight": 4 } }, { "key": "11575", "source": "370", "target": "1298", "attributes": { "weight": 1 } }, { "key": "26909", "source": "370", "target": "497", "attributes": { "weight": 1 } }, { "key": "16826", "source": "370", "target": "674", "attributes": { "weight": 1 } }, { "key": "16827", "source": "370", "target": "70", "attributes": { "weight": 1 } }, { "key": "5183", "source": "370", "target": "778", "attributes": { "weight": 1 } }, { "key": "5177", "source": "370", "target": "1152", "attributes": { "weight": 4 } }, { "key": "5182", "source": "370", "target": "1174", "attributes": { "weight": 3 } }, { "key": "11571", "source": "370", "target": "1284", "attributes": { "weight": 1 } }, { "key": "15892", "source": "370", "target": "1321", "attributes": { "weight": 1 } }, { "key": "5195", "source": "370", "target": "452", "attributes": { "weight": 7 } }, { "key": "15890", "source": "370", "target": "1307", "attributes": { "weight": 1 } }, { "key": "17251", "source": "370", "target": "2111", "attributes": { "weight": 1 } }, { "key": "8787", "source": "370", "target": "223", "attributes": { "weight": 6 } }, { "key": "5202", "source": "370", "target": "337", "attributes": { "weight": 8 } }, { "key": "11568", "source": "370", "target": "781", "attributes": { "weight": 1 } }, { "key": "5192", "source": "370", "target": "1046", "attributes": { "weight": 2 } }, { "key": "11587", "source": "370", "target": "1333", "attributes": { "weight": 1 } }, { "key": "5213", "source": "370", "target": "123", "attributes": { "weight": 5 } }, { "key": "23757", "source": "370", "target": "695", "attributes": { "weight": 1 } }, { "key": "5229", "source": "370", "target": "193", "attributes": { "weight": 2 } }, { "key": "11569", "source": "370", "target": "1262", "attributes": { "weight": 3 } }, { "key": "15895", "source": "370", "target": "340", "attributes": { "weight": 2 } }, { "key": "5175", "source": "370", "target": "248", "attributes": { "weight": 2 } }, { "key": "15885", "source": "370", "target": "391", "attributes": { "weight": 1 } }, { "key": "5211", "source": "370", "target": "473", "attributes": { "weight": 10 } }, { "key": "5208", "source": "370", "target": "472", "attributes": { "weight": 5 } }, { "key": "5181", "source": "370", "target": "938", "attributes": { "weight": 4 } }, { "key": "9488", "source": "370", "target": "419", "attributes": { "weight": 1 } }, { "key": "5204", "source": "370", "target": "1363", "attributes": { "weight": 4 } }, { "key": "15882", "source": "370", "target": "220", "attributes": { "weight": 2 } }, { "key": "11561", "source": "370", "target": "1228", "attributes": { "weight": 1 } }, { "key": "12813", "source": "370", "target": "1892", "attributes": { "weight": 1 } }, { "key": "15888", "source": "370", "target": "1090", "attributes": { "weight": 1 } }, { "key": "5215", "source": "370", "target": "1125", "attributes": { "weight": 3 } }, { "key": "18451", "source": "370", "target": "1738", "attributes": { "weight": 1 } }, { "key": "11562", "source": "370", "target": "1232", "attributes": { "weight": 3 } }, { "key": "5231", "source": "370", "target": "377", "attributes": { "weight": 3 } }, { "key": "5227", "source": "370", "target": "257", "attributes": { "weight": 4 } }, { "key": "5225", "source": "370", "target": "961", "attributes": { "weight": 5 } }, { "key": "11579", "source": "370", "target": "1792", "attributes": { "weight": 1 } }, { "key": "15886", "source": "370", "target": "278", "attributes": { "weight": 4 } }, { "key": "3330", "source": "370", "target": "926", "attributes": { "weight": 11 } }, { "key": "14260", "source": "370", "target": "333", "attributes": { "weight": 1 } }, { "key": "11563", "source": "370", "target": "205", "attributes": { "weight": 2 } }, { "key": "11554", "source": "370", "target": "1173", "attributes": { "weight": 1 } }, { "key": "5228", "source": "370", "target": "218", "attributes": { "weight": 4 } }, { "key": "11556", "source": "370", "target": "1718", "attributes": { "weight": 1 } }, { "key": "11558", "source": "370", "target": "358", "attributes": { "weight": 2 } }, { "key": "15894", "source": "370", "target": "595", "attributes": { "weight": 2 } }, { "key": "5210", "source": "370", "target": "371", "attributes": { "weight": 3 } }, { "key": "5180", "source": "370", "target": "1165", "attributes": { "weight": 3 } }, { "key": "11570", "source": "370", "target": "1281", "attributes": { "weight": 2 } }, { "key": "5201", "source": "370", "target": "1236", "attributes": { "weight": 3 } }, { "key": "1062", "source": "370", "target": "369", "attributes": { "weight": 3 } }, { "key": "12585", "source": "370", "target": "180", "attributes": { "weight": 1 } }, { "key": "11550", "source": "370", "target": "1158", "attributes": { "weight": 1 } }, { "key": "29654", "source": "370", "target": "1253", "attributes": { "weight": 1 } }, { "key": "5194", "source": "370", "target": "183", "attributes": { "weight": 2 } }, { "key": "11580", "source": "370", "target": "1309", "attributes": { "weight": 2 } }, { "key": "32529", "source": "370", "target": "791", "attributes": { "weight": 2 } }, { "key": "8789", "source": "370", "target": "474", "attributes": { "weight": 2 } }, { "key": "11586", "source": "370", "target": "1331", "attributes": { "weight": 1 } }, { "key": "13943", "source": "370", "target": "170", "attributes": { "weight": 1 } }, { "key": "31952", "source": "370", "target": "359", "attributes": { "weight": 1 } }, { "key": "14041", "source": "370", "target": "1031", "attributes": { "weight": 2 } }, { "key": "29858", "source": "370", "target": "1024", "attributes": { "weight": 1 } }, { "key": "5184", "source": "370", "target": "442", "attributes": { "weight": 11 } }, { "key": "5179", "source": "370", "target": "1155", "attributes": { "weight": 4 } }, { "key": "15883", "source": "370", "target": "39", "attributes": { "weight": 1 } }, { "key": "5221", "source": "370", "target": "601", "attributes": { "weight": 2 } }, { "key": "5199", "source": "370", "target": "457", "attributes": { "weight": 4 } }, { "key": "12815", "source": "370", "target": "1814", "attributes": { "weight": 1 } }, { "key": "11585", "source": "370", "target": "1329", "attributes": { "weight": 2 } }, { "key": "26128", "source": "370", "target": "1056", "attributes": { "weight": 1 } }, { "key": "5205", "source": "370", "target": "468", "attributes": { "weight": 12 } }, { "key": "5222", "source": "370", "target": "1322", "attributes": { "weight": 5 } }, { "key": "10688", "source": "370", "target": "1314", "attributes": { "weight": 3 } }, { "key": "5209", "source": "370", "target": "208", "attributes": { "weight": 4 } }, { "key": "5206", "source": "370", "target": "30", "attributes": { "weight": 3 } }, { "key": "5635", "source": "371", "target": "208", "attributes": { "weight": 2 } }, { "key": "5640", "source": "371", "target": "925", "attributes": { "weight": 3 } }, { "key": "5653", "source": "371", "target": "1298", "attributes": { "weight": 2 } }, { "key": "35001", "source": "371", "target": "352", "attributes": { "weight": 1 } }, { "key": "2687", "source": "371", "target": "236", "attributes": { "weight": 5 } }, { "key": "5577", "source": "371", "target": "1156", "attributes": { "weight": 2 } }, { "key": "5578", "source": "371", "target": "1158", "attributes": { "weight": 2 } }, { "key": "5683", "source": "371", "target": "48", "attributes": { "weight": 2 } }, { "key": "5638", "source": "371", "target": "545", "attributes": { "weight": 3 } }, { "key": "32918", "source": "371", "target": "470", "attributes": { "weight": 2 } }, { "key": "5620", "source": "371", "target": "205", "attributes": { "weight": 2 } }, { "key": "5624", "source": "371", "target": "338", "attributes": { "weight": 4 } }, { "key": "5593", "source": "371", "target": "1186", "attributes": { "weight": 3 } }, { "key": "5682", "source": "371", "target": "193", "attributes": { "weight": 2 } }, { "key": "5606", "source": "371", "target": "251", "attributes": { "weight": 2 } }, { "key": "5680", "source": "371", "target": "218", "attributes": { "weight": 2 } }, { "key": "5646", "source": "371", "target": "1289", "attributes": { "weight": 2 } }, { "key": "29012", "source": "371", "target": "220", "attributes": { "weight": 1 } }, { "key": "5625", "source": "371", "target": "921", "attributes": { "weight": 3 } }, { "key": "5595", "source": "371", "target": "912", "attributes": { "weight": 2 } }, { "key": "16022", "source": "371", "target": "595", "attributes": { "weight": 2 } }, { "key": "5675", "source": "371", "target": "963", "attributes": { "weight": 3 } }, { "key": "5576", "source": "371", "target": "1155", "attributes": { "weight": 2 } }, { "key": "5661", "source": "371", "target": "1314", "attributes": { "weight": 4 } }, { "key": "5599", "source": "371", "target": "1197", "attributes": { "weight": 3 } }, { "key": "5574", "source": "371", "target": "195", "attributes": { "weight": 12 } }, { "key": "5592", "source": "371", "target": "1184", "attributes": { "weight": 2 } }, { "key": "5585", "source": "371", "target": "631", "attributes": { "weight": 2 } }, { "key": "5573", "source": "371", "target": "603", "attributes": { "weight": 2 } }, { "key": "5681", "source": "371", "target": "1342", "attributes": { "weight": 2 } }, { "key": "5581", "source": "371", "target": "43", "attributes": { "weight": 5 } }, { "key": "5641", "source": "371", "target": "926", "attributes": { "weight": 5 } }, { "key": "5607", "source": "371", "target": "200", "attributes": { "weight": 2 } }, { "key": "5584", "source": "371", "target": "1174", "attributes": { "weight": 3 } }, { "key": "5617", "source": "371", "target": "1232", "attributes": { "weight": 3 } }, { "key": "5658", "source": "371", "target": "1306", "attributes": { "weight": 3 } }, { "key": "5650", "source": "371", "target": "1296", "attributes": { "weight": 2 } }, { "key": "5654", "source": "371", "target": "785", "attributes": { "weight": 3 } }, { "key": "11204", "source": "371", "target": "452", "attributes": { "weight": 2 } }, { "key": "5674", "source": "371", "target": "124", "attributes": { "weight": 2 } }, { "key": "5579", "source": "371", "target": "1162", "attributes": { "weight": 2 } }, { "key": "5633", "source": "371", "target": "240", "attributes": { "weight": 1 } }, { "key": "5603", "source": "371", "target": "197", "attributes": { "weight": 2 } }, { "key": "5614", "source": "371", "target": "917", "attributes": { "weight": 2 } }, { "key": "5644", "source": "371", "target": "1281", "attributes": { "weight": 3 } }, { "key": "5613", "source": "371", "target": "109", "attributes": { "weight": 3 } }, { "key": "5612", "source": "371", "target": "204", "attributes": { "weight": 2 } }, { "key": "5627", "source": "371", "target": "30", "attributes": { "weight": 5 } }, { "key": "5589", "source": "371", "target": "1182", "attributes": { "weight": 2 } }, { "key": "5628", "source": "371", "target": "544", "attributes": { "weight": 2 } }, { "key": "5621", "source": "371", "target": "370", "attributes": { "weight": 3 } }, { "key": "5657", "source": "371", "target": "1305", "attributes": { "weight": 2 } }, { "key": "5673", "source": "371", "target": "1334", "attributes": { "weight": 2 } }, { "key": "5583", "source": "371", "target": "103", "attributes": { "weight": 3 } }, { "key": "5636", "source": "371", "target": "782", "attributes": { "weight": 5 } }, { "key": "5652", "source": "371", "target": "214", "attributes": { "weight": 2 } }, { "key": "5588", "source": "371", "target": "1180", "attributes": { "weight": 2 } }, { "key": "24892", "source": "371", "target": "1437", "attributes": { "weight": 1 } }, { "key": "5656", "source": "371", "target": "1031", "attributes": { "weight": 4 } }, { "key": "5669", "source": "371", "target": "407", "attributes": { "weight": 2 } }, { "key": "5645", "source": "371", "target": "123", "attributes": { "weight": 3 } }, { "key": "5609", "source": "371", "target": "201", "attributes": { "weight": 2 } }, { "key": "5662", "source": "371", "target": "1315", "attributes": { "weight": 2 } }, { "key": "5631", "source": "371", "target": "471", "attributes": { "weight": 5 } }, { "key": "5672", "source": "371", "target": "116", "attributes": { "weight": 3 } }, { "key": "5623", "source": "371", "target": "337", "attributes": { "weight": 2 } }, { "key": "5610", "source": "371", "target": "108", "attributes": { "weight": 3 } }, { "key": "5660", "source": "371", "target": "633", "attributes": { "weight": 2 } }, { "key": "5618", "source": "371", "target": "1233", "attributes": { "weight": 3 } }, { "key": "9850", "source": "371", "target": "397", "attributes": { "weight": 2 } }, { "key": "5622", "source": "371", "target": "780", "attributes": { "weight": 2 } }, { "key": "5642", "source": "371", "target": "605", "attributes": { "weight": 2 } }, { "key": "5572", "source": "371", "target": "248", "attributes": { "weight": 2 } }, { "key": "5600", "source": "371", "target": "368", "attributes": { "weight": 2 } }, { "key": "5667", "source": "371", "target": "1322", "attributes": { "weight": 2 } }, { "key": "5637", "source": "371", "target": "924", "attributes": { "weight": 2 } }, { "key": "27278", "source": "371", "target": "57", "attributes": { "weight": 2 } }, { "key": "5647", "source": "371", "target": "783", "attributes": { "weight": 4 } }, { "key": "5685", "source": "371", "target": "154", "attributes": { "weight": 3 } }, { "key": "5655", "source": "371", "target": "252", "attributes": { "weight": 2 } }, { "key": "1063", "source": "371", "target": "369", "attributes": { "weight": 3 } }, { "key": "5677", "source": "371", "target": "257", "attributes": { "weight": 2 } }, { "key": "37041", "source": "371", "target": "3344", "attributes": { "weight": 1 } }, { "key": "1064", "source": "371", "target": "372", "attributes": { "weight": 4 } }, { "key": "5686", "source": "371", "target": "1063", "attributes": { "weight": 4 } }, { "key": "5634", "source": "371", "target": "1262", "attributes": { "weight": 2 } }, { "key": "5679", "source": "371", "target": "217", "attributes": { "weight": 2 } }, { "key": "5615", "source": "371", "target": "391", "attributes": { "weight": 5 } }, { "key": "5670", "source": "371", "target": "961", "attributes": { "weight": 2 } }, { "key": "5678", "source": "371", "target": "635", "attributes": { "weight": 2 } }, { "key": "2688", "source": "371", "target": "238", "attributes": { "weight": 4 } }, { "key": "5665", "source": "371", "target": "1321", "attributes": { "weight": 2 } }, { "key": "30001", "source": "371", "target": "1892", "attributes": { "weight": 1 } }, { "key": "5602", "source": "371", "target": "183", "attributes": { "weight": 2 } }, { "key": "5575", "source": "371", "target": "130", "attributes": { "weight": 5 } }, { "key": "10727", "source": "371", "target": "1718", "attributes": { "weight": 3 } }, { "key": "5668", "source": "371", "target": "1323", "attributes": { "weight": 3 } }, { "key": "5587", "source": "371", "target": "442", "attributes": { "weight": 8 } }, { "key": "10726", "source": "371", "target": "1716", "attributes": { "weight": 3 } }, { "key": "5604", "source": "371", "target": "1047", "attributes": { "weight": 3 } }, { "key": "5601", "source": "371", "target": "913", "attributes": { "weight": 3 } }, { "key": "5598", "source": "371", "target": "1196", "attributes": { "weight": 2 } }, { "key": "1150", "source": "371", "target": "396", "attributes": { "weight": 7 } }, { "key": "5676", "source": "371", "target": "964", "attributes": { "weight": 2 } }, { "key": "5626", "source": "371", "target": "468", "attributes": { "weight": 8 } }, { "key": "5659", "source": "371", "target": "1307", "attributes": { "weight": 2 } }, { "key": "3653", "source": "371", "target": "1027", "attributes": { "weight": 1 } }, { "key": "5663", "source": "371", "target": "634", "attributes": { "weight": 4 } }, { "key": "5684", "source": "371", "target": "1347", "attributes": { "weight": 2 } }, { "key": "5651", "source": "371", "target": "990", "attributes": { "weight": 2 } }, { "key": "5643", "source": "371", "target": "473", "attributes": { "weight": 5 } }, { "key": "5590", "source": "371", "target": "44", "attributes": { "weight": 5 } }, { "key": "5619", "source": "371", "target": "1236", "attributes": { "weight": 2 } }, { "key": "5616", "source": "371", "target": "45", "attributes": { "weight": 2 } }, { "key": "5649", "source": "371", "target": "1294", "attributes": { "weight": 2 } }, { "key": "5586", "source": "371", "target": "778", "attributes": { "weight": 3 } }, { "key": "5639", "source": "371", "target": "210", "attributes": { "weight": 2 } }, { "key": "5664", "source": "371", "target": "601", "attributes": { "weight": 3 } }, { "key": "26163", "source": "371", "target": "2627", "attributes": { "weight": 1 } }, { "key": "26629", "source": "371", "target": "454", "attributes": { "weight": 2 } }, { "key": "5605", "source": "371", "target": "198", "attributes": { "weight": 2 } }, { "key": "5611", "source": "371", "target": "1220", "attributes": { "weight": 2 } }, { "key": "5608", "source": "371", "target": "1214", "attributes": { "weight": 3 } }, { "key": "5666", "source": "371", "target": "254", "attributes": { "weight": 4 } }, { "key": "5591", "source": "371", "target": "779", "attributes": { "weight": 2 } }, { "key": "5582", "source": "371", "target": "938", "attributes": { "weight": 2 } }, { "key": "5580", "source": "371", "target": "1165", "attributes": { "weight": 2 } }, { "key": "5648", "source": "371", "target": "1090", "attributes": { "weight": 2 } }, { "key": "5597", "source": "371", "target": "389", "attributes": { "weight": 2 } }, { "key": "5629", "source": "371", "target": "1099", "attributes": { "weight": 2 } }, { "key": "5630", "source": "371", "target": "781", "attributes": { "weight": 2 } }, { "key": "5596", "source": "371", "target": "604", "attributes": { "weight": 2 } }, { "key": "5594", "source": "371", "target": "387", "attributes": { "weight": 3 } }, { "key": "5671", "source": "371", "target": "1328", "attributes": { "weight": 3 } }, { "key": "5632", "source": "371", "target": "1261", "attributes": { "weight": 3 } }, { "key": "6195", "source": "372", "target": "1090", "attributes": { "weight": 3 } }, { "key": "16203", "source": "372", "target": "913", "attributes": { "weight": 1 } }, { "key": "7384", "source": "372", "target": "1063", "attributes": { "weight": 3 } }, { "key": "7010", "source": "372", "target": "183", "attributes": { "weight": 1 } }, { "key": "32980", "source": "372", "target": "1350", "attributes": { "weight": 2 } }, { "key": "32834", "source": "372", "target": "135", "attributes": { "weight": 1 } }, { "key": "18272", "source": "372", "target": "1182", "attributes": { "weight": 1 } }, { "key": "34668", "source": "372", "target": "1232", "attributes": { "weight": 1 } }, { "key": "32100", "source": "372", "target": "925", "attributes": { "weight": 1 } }, { "key": "31134", "source": "372", "target": "228", "attributes": { "weight": 1 } }, { "key": "34667", "source": "372", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16204", "source": "372", "target": "1296", "attributes": { "weight": 2 } }, { "key": "1065", "source": "372", "target": "369", "attributes": { "weight": 1 } }, { "key": "26248", "source": "372", "target": "30", "attributes": { "weight": 1 } }, { "key": "12032", "source": "372", "target": "248", "attributes": { "weight": 2 } }, { "key": "31136", "source": "372", "target": "233", "attributes": { "weight": 1 } }, { "key": "11662", "source": "372", "target": "938", "attributes": { "weight": 1 } }, { "key": "35021", "source": "372", "target": "8", "attributes": { "weight": 1 } }, { "key": "31135", "source": "372", "target": "1088", "attributes": { "weight": 1 } }, { "key": "35020", "source": "372", "target": "3", "attributes": { "weight": 1 } }, { "key": "27294", "source": "372", "target": "57", "attributes": { "weight": 1 } }, { "key": "9031", "source": "372", "target": "254", "attributes": { "weight": 2 } }, { "key": "7011", "source": "372", "target": "189", "attributes": { "weight": 2 } }, { "key": "11664", "source": "372", "target": "370", "attributes": { "weight": 2 } }, { "key": "11663", "source": "372", "target": "199", "attributes": { "weight": 2 } }, { "key": "32981", "source": "372", "target": "149", "attributes": { "weight": 1 } }, { "key": "18903", "source": "372", "target": "1174", "attributes": { "weight": 1 } }, { "key": "29014", "source": "372", "target": "220", "attributes": { "weight": 1 } }, { "key": "10740", "source": "372", "target": "43", "attributes": { "weight": 2 } }, { "key": "29015", "source": "372", "target": "1262", "attributes": { "weight": 1 } }, { "key": "14117", "source": "372", "target": "1031", "attributes": { "weight": 1 } }, { "key": "16202", "source": "372", "target": "912", "attributes": { "weight": 1 } }, { "key": "18274", "source": "372", "target": "124", "attributes": { "weight": 1 } }, { "key": "26249", "source": "372", "target": "601", "attributes": { "weight": 1 } }, { "key": "15354", "source": "372", "target": "454", "attributes": { "weight": 1 } }, { "key": "18904", "source": "372", "target": "1552", "attributes": { "weight": 1 } }, { "key": "17091", "source": "372", "target": "471", "attributes": { "weight": 3 } }, { "key": "7383", "source": "372", "target": "154", "attributes": { "weight": 3 } }, { "key": "31691", "source": "372", "target": "595", "attributes": { "weight": 2 } }, { "key": "16201", "source": "372", "target": "195", "attributes": { "weight": 3 } }, { "key": "6194", "source": "372", "target": "779", "attributes": { "weight": 2 } }, { "key": "9030", "source": "372", "target": "442", "attributes": { "weight": 3 } }, { "key": "18273", "source": "372", "target": "123", "attributes": { "weight": 2 } }, { "key": "1066", "source": "372", "target": "371", "attributes": { "weight": 4 } }, { "key": "11665", "source": "372", "target": "961", "attributes": { "weight": 2 } }, { "key": "21775", "source": "372", "target": "778", "attributes": { "weight": 1 } }, { "key": "36775", "source": "373", "target": "387", "attributes": { "weight": 1 } }, { "key": "36779", "source": "373", "target": "374", "attributes": { "weight": 1 } }, { "key": "6508", "source": "373", "target": "1294", "attributes": { "weight": 3 } }, { "key": "7435", "source": "373", "target": "1197", "attributes": { "weight": 2 } }, { "key": "1067", "source": "373", "target": "376", "attributes": { "weight": 1 } }, { "key": "7448", "source": "373", "target": "1417", "attributes": { "weight": 2 } }, { "key": "3440", "source": "373", "target": "377", "attributes": { "weight": 3 } }, { "key": "7444", "source": "373", "target": "1409", "attributes": { "weight": 2 } }, { "key": "36776", "source": "373", "target": "1300", "attributes": { "weight": 1 } }, { "key": "6507", "source": "373", "target": "338", "attributes": { "weight": 3 } }, { "key": "3437", "source": "373", "target": "972", "attributes": { "weight": 1 } }, { "key": "7447", "source": "373", "target": "625", "attributes": { "weight": 3 } }, { "key": "36782", "source": "373", "target": "851", "attributes": { "weight": 1 } }, { "key": "6506", "source": "373", "target": "337", "attributes": { "weight": 2 } }, { "key": "7446", "source": "373", "target": "333", "attributes": { "weight": 3 } }, { "key": "24703", "source": "373", "target": "704", "attributes": { "weight": 1 } }, { "key": "16398", "source": "373", "target": "925", "attributes": { "weight": 1 } }, { "key": "7445", "source": "373", "target": "154", "attributes": { "weight": 2 } }, { "key": "24704", "source": "373", "target": "2515", "attributes": { "weight": 1 } }, { "key": "7437", "source": "373", "target": "1233", "attributes": { "weight": 2 } }, { "key": "36780", "source": "373", "target": "848", "attributes": { "weight": 1 } }, { "key": "7440", "source": "373", "target": "1323", "attributes": { "weight": 2 } }, { "key": "7438", "source": "373", "target": "468", "attributes": { "weight": 2 } }, { "key": "18482", "source": "373", "target": "1738", "attributes": { "weight": 1 } }, { "key": "3439", "source": "373", "target": "975", "attributes": { "weight": 1 } }, { "key": "36781", "source": "373", "target": "3316", "attributes": { "weight": 1 } }, { "key": "36777", "source": "373", "target": "403", "attributes": { "weight": 1 } }, { "key": "7443", "source": "373", "target": "1407", "attributes": { "weight": 2 } }, { "key": "7439", "source": "373", "target": "123", "attributes": { "weight": 2 } }, { "key": "7449", "source": "373", "target": "1063", "attributes": { "weight": 2 } }, { "key": "10376", "source": "373", "target": "1322", "attributes": { "weight": 1 } }, { "key": "36778", "source": "373", "target": "3315", "attributes": { "weight": 1 } }, { "key": "2009", "source": "373", "target": "378", "attributes": { "weight": 5 } }, { "key": "7442", "source": "373", "target": "375", "attributes": { "weight": 2 } }, { "key": "7441", "source": "373", "target": "1401", "attributes": { "weight": 4 } }, { "key": "7436", "source": "373", "target": "1047", "attributes": { "weight": 2 } }, { "key": "3438", "source": "373", "target": "973", "attributes": { "weight": 1 } }, { "key": "6505", "source": "373", "target": "368", "attributes": { "weight": 1 } }, { "key": "3444", "source": "374", "target": "976", "attributes": { "weight": 1 } }, { "key": "36793", "source": "374", "target": "373", "attributes": { "weight": 1 } }, { "key": "36794", "source": "374", "target": "851", "attributes": { "weight": 1 } }, { "key": "24707", "source": "374", "target": "1403", "attributes": { "weight": 1 } }, { "key": "36795", "source": "374", "target": "1063", "attributes": { "weight": 1 } }, { "key": "7474", "source": "374", "target": "338", "attributes": { "weight": 2 } }, { "key": "2983", "source": "374", "target": "850", "attributes": { "weight": 1 } }, { "key": "1069", "source": "374", "target": "376", "attributes": { "weight": 1 } }, { "key": "10378", "source": "374", "target": "1322", "attributes": { "weight": 1 } }, { "key": "7475", "source": "374", "target": "377", "attributes": { "weight": 2 } }, { "key": "1068", "source": "374", "target": "333", "attributes": { "weight": 3 } }, { "key": "7490", "source": "375", "target": "1350", "attributes": { "weight": 3 } }, { "key": "7484", "source": "375", "target": "1232", "attributes": { "weight": 2 } }, { "key": "1070", "source": "375", "target": "378", "attributes": { "weight": 1 } }, { "key": "7491", "source": "375", "target": "149", "attributes": { "weight": 1 } }, { "key": "7498", "source": "375", "target": "1424", "attributes": { "weight": 2 } }, { "key": "7493", "source": "375", "target": "154", "attributes": { "weight": 1 } }, { "key": "2027", "source": "375", "target": "615", "attributes": { "weight": 3 } }, { "key": "7483", "source": "375", "target": "454", "attributes": { "weight": 2 } }, { "key": "6512", "source": "375", "target": "779", "attributes": { "weight": 2 } }, { "key": "34847", "source": "375", "target": "1047", "attributes": { "weight": 1 } }, { "key": "7485", "source": "375", "target": "921", "attributes": { "weight": 2 } }, { "key": "7486", "source": "375", "target": "468", "attributes": { "weight": 2 } }, { "key": "7489", "source": "375", "target": "1397", "attributes": { "weight": 1 } }, { "key": "7496", "source": "375", "target": "1419", "attributes": { "weight": 1 } }, { "key": "7487", "source": "375", "target": "123", "attributes": { "weight": 2 } }, { "key": "7492", "source": "375", "target": "1406", "attributes": { "weight": 2 } }, { "key": "7481", "source": "375", "target": "938", "attributes": { "weight": 2 } }, { "key": "7488", "source": "375", "target": "373", "attributes": { "weight": 2 } }, { "key": "16400", "source": "375", "target": "913", "attributes": { "weight": 1 } }, { "key": "7482", "source": "375", "target": "1196", "attributes": { "weight": 1 } }, { "key": "7494", "source": "375", "target": "333", "attributes": { "weight": 1 } }, { "key": "7497", "source": "375", "target": "377", "attributes": { "weight": 2 } }, { "key": "7495", "source": "375", "target": "625", "attributes": { "weight": 2 } }, { "key": "7499", "source": "375", "target": "1063", "attributes": { "weight": 3 } }, { "key": "29540", "source": "375", "target": "1415", "attributes": { "weight": 1 } }, { "key": "6513", "source": "375", "target": "1090", "attributes": { "weight": 2 } }, { "key": "1074", "source": "376", "target": "333", "attributes": { "weight": 2 } }, { "key": "1073", "source": "376", "target": "374", "attributes": { "weight": 1 } }, { "key": "1076", "source": "376", "target": "378", "attributes": { "weight": 1 } }, { "key": "1075", "source": "376", "target": "377", "attributes": { "weight": 1 } }, { "key": "7668", "source": "377", "target": "154", "attributes": { "weight": 2 } }, { "key": "6540", "source": "377", "target": "468", "attributes": { "weight": 6 } }, { "key": "36822", "source": "377", "target": "975", "attributes": { "weight": 1 } }, { "key": "7656", "source": "377", "target": "1323", "attributes": { "weight": 3 } }, { "key": "36816", "source": "377", "target": "1394", "attributes": { "weight": 1 } }, { "key": "7661", "source": "377", "target": "374", "attributes": { "weight": 2 } }, { "key": "36818", "source": "377", "target": "1350", "attributes": { "weight": 1 } }, { "key": "16412", "source": "377", "target": "1329", "attributes": { "weight": 1 } }, { "key": "6542", "source": "377", "target": "1294", "attributes": { "weight": 3 } }, { "key": "7648", "source": "377", "target": "387", "attributes": { "weight": 2 } }, { "key": "7676", "source": "377", "target": "378", "attributes": { "weight": 1 } }, { "key": "33011", "source": "377", "target": "135", "attributes": { "weight": 1 } }, { "key": "3466", "source": "377", "target": "971", "attributes": { "weight": 1 } }, { "key": "3467", "source": "377", "target": "976", "attributes": { "weight": 2 } }, { "key": "7664", "source": "377", "target": "1403", "attributes": { "weight": 1 } }, { "key": "7654", "source": "377", "target": "1291", "attributes": { "weight": 2 } }, { "key": "6538", "source": "377", "target": "337", "attributes": { "weight": 4 } }, { "key": "7660", "source": "377", "target": "970", "attributes": { "weight": 2 } }, { "key": "7657", "source": "377", "target": "406", "attributes": { "weight": 2 } }, { "key": "7651", "source": "377", "target": "454", "attributes": { "weight": 3 } }, { "key": "16410", "source": "377", "target": "220", "attributes": { "weight": 3 } }, { "key": "6541", "source": "377", "target": "123", "attributes": { "weight": 5 } }, { "key": "7671", "source": "377", "target": "850", "attributes": { "weight": 1 } }, { "key": "6539", "source": "377", "target": "338", "attributes": { "weight": 4 } }, { "key": "7659", "source": "377", "target": "1395", "attributes": { "weight": 1 } }, { "key": "7662", "source": "377", "target": "1401", "attributes": { "weight": 2 } }, { "key": "33012", "source": "377", "target": "472", "attributes": { "weight": 1 } }, { "key": "7675", "source": "377", "target": "1063", "attributes": { "weight": 3 } }, { "key": "36823", "source": "377", "target": "1419", "attributes": { "weight": 1 } }, { "key": "6537", "source": "377", "target": "370", "attributes": { "weight": 3 } }, { "key": "36824", "source": "377", "target": "3316", "attributes": { "weight": 1 } }, { "key": "7669", "source": "377", "target": "333", "attributes": { "weight": 3 } }, { "key": "6543", "source": "377", "target": "1315", "attributes": { "weight": 2 } }, { "key": "7672", "source": "377", "target": "1417", "attributes": { "weight": 2 } }, { "key": "7663", "source": "377", "target": "375", "attributes": { "weight": 2 } }, { "key": "33010", "source": "377", "target": "1219", "attributes": { "weight": 1 } }, { "key": "7652", "source": "377", "target": "1233", "attributes": { "weight": 2 } }, { "key": "7653", "source": "377", "target": "580", "attributes": { "weight": 2 } }, { "key": "7649", "source": "377", "target": "1197", "attributes": { "weight": 2 } }, { "key": "36815", "source": "377", "target": "3314", "attributes": { "weight": 1 } }, { "key": "7674", "source": "377", "target": "851", "attributes": { "weight": 2 } }, { "key": "7650", "source": "377", "target": "1047", "attributes": { "weight": 1 } }, { "key": "7670", "source": "377", "target": "625", "attributes": { "weight": 2 } }, { "key": "7667", "source": "377", "target": "1409", "attributes": { "weight": 2 } }, { "key": "36819", "source": "377", "target": "1351", "attributes": { "weight": 1 } }, { "key": "36820", "source": "377", "target": "1404", "attributes": { "weight": 1 } }, { "key": "6536", "source": "377", "target": "368", "attributes": { "weight": 4 } }, { "key": "10379", "source": "377", "target": "1322", "attributes": { "weight": 1 } }, { "key": "7665", "source": "377", "target": "1405", "attributes": { "weight": 1 } }, { "key": "7673", "source": "377", "target": "1418", "attributes": { "weight": 1 } }, { "key": "16411", "source": "377", "target": "925", "attributes": { "weight": 1 } }, { "key": "36814", "source": "377", "target": "1300", "attributes": { "weight": 1 } }, { "key": "36817", "source": "377", "target": "3315", "attributes": { "weight": 1 } }, { "key": "36813", "source": "377", "target": "208", "attributes": { "weight": 1 } }, { "key": "7655", "source": "377", "target": "403", "attributes": { "weight": 2 } }, { "key": "1077", "source": "377", "target": "373", "attributes": { "weight": 6 } }, { "key": "7666", "source": "377", "target": "1407", "attributes": { "weight": 2 } }, { "key": "36821", "source": "377", "target": "848", "attributes": { "weight": 1 } }, { "key": "7658", "source": "377", "target": "1377", "attributes": { "weight": 1 } }, { "key": "3083", "source": "378", "target": "884", "attributes": { "weight": 1 } }, { "key": "2059", "source": "378", "target": "624", "attributes": { "weight": 2 } }, { "key": "3086", "source": "378", "target": "887", "attributes": { "weight": 1 } }, { "key": "7804", "source": "378", "target": "377", "attributes": { "weight": 1 } }, { "key": "3085", "source": "378", "target": "886", "attributes": { "weight": 1 } }, { "key": "24718", "source": "378", "target": "2515", "attributes": { "weight": 1 } }, { "key": "2450", "source": "378", "target": "704", "attributes": { "weight": 1 } }, { "key": "2056", "source": "378", "target": "373", "attributes": { "weight": 6 } }, { "key": "3084", "source": "378", "target": "885", "attributes": { "weight": 1 } }, { "key": "2449", "source": "378", "target": "703", "attributes": { "weight": 2 } }, { "key": "2057", "source": "378", "target": "617", "attributes": { "weight": 2 } }, { "key": "2055", "source": "378", "target": "610", "attributes": { "weight": 2 } }, { "key": "2054", "source": "378", "target": "609", "attributes": { "weight": 2 } }, { "key": "2060", "source": "378", "target": "628", "attributes": { "weight": 1 } }, { "key": "1079", "source": "378", "target": "376", "attributes": { "weight": 1 } }, { "key": "1078", "source": "378", "target": "375", "attributes": { "weight": 2 } }, { "key": "23716", "source": "378", "target": "2452", "attributes": { "weight": 1 } }, { "key": "2058", "source": "378", "target": "619", "attributes": { "weight": 2 } }, { "key": "1081", "source": "379", "target": "412", "attributes": { "weight": 2 } }, { "key": "1080", "source": "379", "target": "396", "attributes": { "weight": 3 } }, { "key": "33845", "source": "379", "target": "1233", "attributes": { "weight": 1 } }, { "key": "37126", "source": "379", "target": "411", "attributes": { "weight": 1 } }, { "key": "35391", "source": "379", "target": "399", "attributes": { "weight": 1 } }, { "key": "37128", "source": "380", "target": "338", "attributes": { "weight": 1 } }, { "key": "37129", "source": "380", "target": "411", "attributes": { "weight": 1 } }, { "key": "33851", "source": "380", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9712", "source": "380", "target": "399", "attributes": { "weight": 1 } }, { "key": "37127", "source": "380", "target": "387", "attributes": { "weight": 1 } }, { "key": "1082", "source": "380", "target": "396", "attributes": { "weight": 2 } }, { "key": "4271", "source": "380", "target": "368", "attributes": { "weight": 2 } }, { "key": "9722", "source": "381", "target": "390", "attributes": { "weight": 1 } }, { "key": "1084", "source": "381", "target": "396", "attributes": { "weight": 2 } }, { "key": "9723", "source": "381", "target": "393", "attributes": { "weight": 1 } }, { "key": "37132", "source": "381", "target": "411", "attributes": { "weight": 1 } }, { "key": "1085", "source": "382", "target": "396", "attributes": { "weight": 3 } }, { "key": "9726", "source": "382", "target": "399", "attributes": { "weight": 3 } }, { "key": "9727", "source": "382", "target": "411", "attributes": { "weight": 2 } }, { "key": "9725", "source": "382", "target": "393", "attributes": { "weight": 1 } }, { "key": "35392", "source": "382", "target": "390", "attributes": { "weight": 2 } }, { "key": "9724", "source": "382", "target": "388", "attributes": { "weight": 1 } }, { "key": "33973", "source": "383", "target": "1233", "attributes": { "weight": 1 } }, { "key": "1086", "source": "383", "target": "396", "attributes": { "weight": 2 } }, { "key": "1087", "source": "384", "target": "396", "attributes": { "weight": 2 } }, { "key": "1088", "source": "385", "target": "396", "attributes": { "weight": 1 } }, { "key": "35394", "source": "386", "target": "406", "attributes": { "weight": 1 } }, { "key": "35393", "source": "386", "target": "395", "attributes": { "weight": 1 } }, { "key": "9731", "source": "386", "target": "399", "attributes": { "weight": 4 } }, { "key": "1089", "source": "386", "target": "396", "attributes": { "weight": 3 } }, { "key": "9729", "source": "386", "target": "390", "attributes": { "weight": 2 } }, { "key": "9730", "source": "386", "target": "393", "attributes": { "weight": 2 } }, { "key": "9732", "source": "386", "target": "411", "attributes": { "weight": 3 } }, { "key": "35399", "source": "387", "target": "410", "attributes": { "weight": 1 } }, { "key": "2733", "source": "387", "target": "389", "attributes": { "weight": 1 } }, { "key": "15600", "source": "387", "target": "912", "attributes": { "weight": 1 } }, { "key": "13012", "source": "387", "target": "1233", "attributes": { "weight": 2 } }, { "key": "4645", "source": "387", "target": "123", "attributes": { "weight": 3 } }, { "key": "9736", "source": "387", "target": "338", "attributes": { "weight": 4 } }, { "key": "37139", "source": "387", "target": "1302", "attributes": { "weight": 1 } }, { "key": "34930", "source": "387", "target": "352", "attributes": { "weight": 1 } }, { "key": "35401", "source": "387", "target": "414", "attributes": { "weight": 2 } }, { "key": "12782", "source": "387", "target": "473", "attributes": { "weight": 1 } }, { "key": "4644", "source": "387", "target": "371", "attributes": { "weight": 3 } }, { "key": "11859", "source": "387", "target": "135", "attributes": { "weight": 6 } }, { "key": "37141", "source": "387", "target": "411", "attributes": { "weight": 1 } }, { "key": "37136", "source": "387", "target": "388", "attributes": { "weight": 1 } }, { "key": "18152", "source": "387", "target": "124", "attributes": { "weight": 1 } }, { "key": "36757", "source": "387", "target": "373", "attributes": { "weight": 1 } }, { "key": "12781", "source": "387", "target": "452", "attributes": { "weight": 2 } }, { "key": "32958", "source": "387", "target": "149", "attributes": { "weight": 1 } }, { "key": "35397", "source": "387", "target": "404", "attributes": { "weight": 1 } }, { "key": "29009", "source": "387", "target": "220", "attributes": { "weight": 1 } }, { "key": "18149", "source": "387", "target": "1197", "attributes": { "weight": 3 } }, { "key": "33992", "source": "387", "target": "1323", "attributes": { "weight": 2 } }, { "key": "35400", "source": "387", "target": "413", "attributes": { "weight": 1 } }, { "key": "15219", "source": "387", "target": "454", "attributes": { "weight": 1 } }, { "key": "7248", "source": "387", "target": "377", "attributes": { "weight": 3 } }, { "key": "35395", "source": "387", "target": "390", "attributes": { "weight": 2 } }, { "key": "33991", "source": "387", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18150", "source": "387", "target": "1263", "attributes": { "weight": 1 } }, { "key": "9734", "source": "387", "target": "392", "attributes": { "weight": 2 } }, { "key": "33990", "source": "387", "target": "1047", "attributes": { "weight": 1 } }, { "key": "26206", "source": "387", "target": "30", "attributes": { "weight": 1 } }, { "key": "2734", "source": "387", "target": "397", "attributes": { "weight": 1 } }, { "key": "37140", "source": "387", "target": "1330", "attributes": { "weight": 1 } }, { "key": "18148", "source": "387", "target": "1182", "attributes": { "weight": 2 } }, { "key": "35398", "source": "387", "target": "409", "attributes": { "weight": 1 } }, { "key": "3492", "source": "387", "target": "631", "attributes": { "weight": 1 } }, { "key": "10077", "source": "387", "target": "369", "attributes": { "weight": 1 } }, { "key": "9742", "source": "387", "target": "1329", "attributes": { "weight": 2 } }, { "key": "15220", "source": "387", "target": "472", "attributes": { "weight": 4 } }, { "key": "9740", "source": "387", "target": "1031", "attributes": { "weight": 2 } }, { "key": "9737", "source": "387", "target": "471", "attributes": { "weight": 4 } }, { "key": "8667", "source": "387", "target": "195", "attributes": { "weight": 9 } }, { "key": "9733", "source": "387", "target": "913", "attributes": { "weight": 3 } }, { "key": "4641", "source": "387", "target": "779", "attributes": { "weight": 2 } }, { "key": "35396", "source": "387", "target": "401", "attributes": { "weight": 1 } }, { "key": "9738", "source": "387", "target": "208", "attributes": { "weight": 3 } }, { "key": "9741", "source": "387", "target": "1305", "attributes": { "weight": 2 } }, { "key": "26207", "source": "387", "target": "601", "attributes": { "weight": 1 } }, { "key": "18641", "source": "387", "target": "1152", "attributes": { "weight": 2 } }, { "key": "32957", "source": "387", "target": "1350", "attributes": { "weight": 2 } }, { "key": "4640", "source": "387", "target": "938", "attributes": { "weight": 5 } }, { "key": "4646", "source": "387", "target": "1090", "attributes": { "weight": 3 } }, { "key": "1092", "source": "387", "target": "412", "attributes": { "weight": 2 } }, { "key": "9735", "source": "387", "target": "1236", "attributes": { "weight": 2 } }, { "key": "10661", "source": "387", "target": "43", "attributes": { "weight": 2 } }, { "key": "37135", "source": "387", "target": "1163", "attributes": { "weight": 1 } }, { "key": "6655", "source": "387", "target": "183", "attributes": { "weight": 1 } }, { "key": "10662", "source": "387", "target": "1314", "attributes": { "weight": 1 } }, { "key": "37138", "source": "387", "target": "1290", "attributes": { "weight": 1 } }, { "key": "4647", "source": "387", "target": "1294", "attributes": { "weight": 2 } }, { "key": "37137", "source": "387", "target": "393", "attributes": { "weight": 1 } }, { "key": "32959", "source": "387", "target": "333", "attributes": { "weight": 2 } }, { "key": "31127", "source": "387", "target": "442", "attributes": { "weight": 1 } }, { "key": "18643", "source": "387", "target": "1552", "attributes": { "weight": 1 } }, { "key": "11483", "source": "387", "target": "199", "attributes": { "weight": 2 } }, { "key": "7247", "source": "387", "target": "154", "attributes": { "weight": 3 } }, { "key": "18642", "source": "387", "target": "1174", "attributes": { "weight": 1 } }, { "key": "18644", "source": "387", "target": "1269", "attributes": { "weight": 1 } }, { "key": "9739", "source": "387", "target": "925", "attributes": { "weight": 3 } }, { "key": "7249", "source": "387", "target": "1063", "attributes": { "weight": 3 } }, { "key": "4643", "source": "387", "target": "370", "attributes": { "weight": 5 } }, { "key": "18645", "source": "387", "target": "405", "attributes": { "weight": 1 } }, { "key": "4642", "source": "387", "target": "368", "attributes": { "weight": 4 } }, { "key": "1091", "source": "387", "target": "399", "attributes": { "weight": 3 } }, { "key": "35402", "source": "387", "target": "415", "attributes": { "weight": 1 } }, { "key": "37134", "source": "387", "target": "380", "attributes": { "weight": 1 } }, { "key": "1090", "source": "387", "target": "396", "attributes": { "weight": 6 } }, { "key": "18151", "source": "387", "target": "1296", "attributes": { "weight": 1 } }, { "key": "9744", "source": "388", "target": "390", "attributes": { "weight": 2 } }, { "key": "4648", "source": "388", "target": "368", "attributes": { "weight": 2 } }, { "key": "9747", "source": "388", "target": "413", "attributes": { "weight": 1 } }, { "key": "9743", "source": "388", "target": "382", "attributes": { "weight": 1 } }, { "key": "33993", "source": "388", "target": "1233", "attributes": { "weight": 1 } }, { "key": "37142", "source": "388", "target": "387", "attributes": { "weight": 1 } }, { "key": "37143", "source": "388", "target": "411", "attributes": { "weight": 1 } }, { "key": "1093", "source": "388", "target": "396", "attributes": { "weight": 3 } }, { "key": "9745", "source": "388", "target": "393", "attributes": { "weight": 1 } }, { "key": "9746", "source": "388", "target": "399", "attributes": { "weight": 3 } }, { "key": "4658", "source": "389", "target": "779", "attributes": { "weight": 2 } }, { "key": "8674", "source": "389", "target": "195", "attributes": { "weight": 5 } }, { "key": "1094", "source": "389", "target": "396", "attributes": { "weight": 1 } }, { "key": "7251", "source": "389", "target": "154", "attributes": { "weight": 1 } }, { "key": "4659", "source": "389", "target": "368", "attributes": { "weight": 2 } }, { "key": "18156", "source": "389", "target": "1197", "attributes": { "weight": 1 } }, { "key": "33995", "source": "389", "target": "1233", "attributes": { "weight": 1 } }, { "key": "2735", "source": "389", "target": "387", "attributes": { "weight": 1 } }, { "key": "4660", "source": "389", "target": "371", "attributes": { "weight": 2 } }, { "key": "5043", "source": "390", "target": "1326", "attributes": { "weight": 4 } }, { "key": "1100", "source": "390", "target": "411", "attributes": { "weight": 3 } }, { "key": "5042", "source": "390", "target": "1294", "attributes": { "weight": 3 } }, { "key": "9758", "source": "390", "target": "386", "attributes": { "weight": 2 } }, { "key": "1098", "source": "390", "target": "406", "attributes": { "weight": 3 } }, { "key": "9763", "source": "390", "target": "400", "attributes": { "weight": 1 } }, { "key": "9762", "source": "390", "target": "395", "attributes": { "weight": 3 } }, { "key": "1095", "source": "390", "target": "396", "attributes": { "weight": 4 } }, { "key": "37146", "source": "390", "target": "1552", "attributes": { "weight": 1 } }, { "key": "1099", "source": "390", "target": "408", "attributes": { "weight": 1 } }, { "key": "9764", "source": "390", "target": "1288", "attributes": { "weight": 3 } }, { "key": "15795", "source": "390", "target": "1329", "attributes": { "weight": 1 } }, { "key": "37144", "source": "390", "target": "337", "attributes": { "weight": 1 } }, { "key": "9759", "source": "390", "target": "388", "attributes": { "weight": 2 } }, { "key": "9771", "source": "390", "target": "413", "attributes": { "weight": 2 } }, { "key": "9766", "source": "390", "target": "1031", "attributes": { "weight": 2 } }, { "key": "9760", "source": "390", "target": "1206", "attributes": { "weight": 3 } }, { "key": "35403", "source": "390", "target": "382", "attributes": { "weight": 2 } }, { "key": "1096", "source": "390", "target": "399", "attributes": { "weight": 5 } }, { "key": "37145", "source": "390", "target": "1647", "attributes": { "weight": 1 } }, { "key": "34181", "source": "390", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5040", "source": "390", "target": "368", "attributes": { "weight": 2 } }, { "key": "35404", "source": "390", "target": "387", "attributes": { "weight": 2 } }, { "key": "37149", "source": "390", "target": "1290", "attributes": { "weight": 1 } }, { "key": "9769", "source": "390", "target": "1331", "attributes": { "weight": 3 } }, { "key": "1097", "source": "390", "target": "405", "attributes": { "weight": 2 } }, { "key": "35408", "source": "390", "target": "414", "attributes": { "weight": 2 } }, { "key": "37148", "source": "390", "target": "1284", "attributes": { "weight": 1 } }, { "key": "9761", "source": "390", "target": "393", "attributes": { "weight": 3 } }, { "key": "9770", "source": "390", "target": "412", "attributes": { "weight": 2 } }, { "key": "9767", "source": "390", "target": "403", "attributes": { "weight": 1 } }, { "key": "9768", "source": "390", "target": "1323", "attributes": { "weight": 3 } }, { "key": "35406", "source": "390", "target": "404", "attributes": { "weight": 1 } }, { "key": "37147", "source": "390", "target": "1650", "attributes": { "weight": 1 } }, { "key": "35405", "source": "390", "target": "397", "attributes": { "weight": 2 } }, { "key": "35409", "source": "390", "target": "415", "attributes": { "weight": 1 } }, { "key": "9765", "source": "390", "target": "123", "attributes": { "weight": 2 } }, { "key": "9757", "source": "390", "target": "381", "attributes": { "weight": 1 } }, { "key": "8743", "source": "390", "target": "195", "attributes": { "weight": 6 } }, { "key": "5041", "source": "390", "target": "338", "attributes": { "weight": 7 } }, { "key": "35407", "source": "390", "target": "410", "attributes": { "weight": 2 } }, { "key": "10676", "source": "391", "target": "1314", "attributes": { "weight": 3 } }, { "key": "8756", "source": "391", "target": "195", "attributes": { "weight": 2 } }, { "key": "10677", "source": "391", "target": "407", "attributes": { "weight": 2 } }, { "key": "2068", "source": "391", "target": "635", "attributes": { "weight": 4 } }, { "key": "34206", "source": "391", "target": "1232", "attributes": { "weight": 1 } }, { "key": "10675", "source": "391", "target": "338", "attributes": { "weight": 4 } }, { "key": "14033", "source": "391", "target": "545", "attributes": { "weight": 1 } }, { "key": "28572", "source": "391", "target": "199", "attributes": { "weight": 1 } }, { "key": "15819", "source": "391", "target": "370", "attributes": { "weight": 1 } }, { "key": "5084", "source": "391", "target": "371", "attributes": { "weight": 4 } }, { "key": "5083", "source": "391", "target": "368", "attributes": { "weight": 2 } }, { "key": "9773", "source": "391", "target": "1656", "attributes": { "weight": 1 } }, { "key": "2066", "source": "391", "target": "632", "attributes": { "weight": 1 } }, { "key": "14034", "source": "391", "target": "1031", "attributes": { "weight": 1 } }, { "key": "34207", "source": "391", "target": "1233", "attributes": { "weight": 1 } }, { "key": "1101", "source": "391", "target": "396", "attributes": { "weight": 2 } }, { "key": "34205", "source": "391", "target": "1047", "attributes": { "weight": 1 } }, { "key": "10674", "source": "391", "target": "43", "attributes": { "weight": 1 } }, { "key": "2067", "source": "391", "target": "634", "attributes": { "weight": 4 } }, { "key": "15296", "source": "392", "target": "454", "attributes": { "weight": 1 } }, { "key": "14149", "source": "392", "target": "1125", "attributes": { "weight": 1 } }, { "key": "17717", "source": "392", "target": "48", "attributes": { "weight": 1 } }, { "key": "14144", "source": "392", "target": "369", "attributes": { "weight": 1 } }, { "key": "16439", "source": "392", "target": "1387", "attributes": { "weight": 1 } }, { "key": "12790", "source": "392", "target": "473", "attributes": { "weight": 1 } }, { "key": "26216", "source": "392", "target": "30", "attributes": { "weight": 2 } }, { "key": "14142", "source": "392", "target": "778", "attributes": { "weight": 2 } }, { "key": "14145", "source": "392", "target": "251", "attributes": { "weight": 1 } }, { "key": "26157", "source": "392", "target": "1214", "attributes": { "weight": 1 } }, { "key": "14148", "source": "392", "target": "1281", "attributes": { "weight": 2 } }, { "key": "12789", "source": "392", "target": "1385", "attributes": { "weight": 2 } }, { "key": "7302", "source": "392", "target": "1063", "attributes": { "weight": 1 } }, { "key": "27259", "source": "392", "target": "57", "attributes": { "weight": 1 } }, { "key": "9774", "source": "392", "target": "387", "attributes": { "weight": 3 } }, { "key": "14152", "source": "392", "target": "1388", "attributes": { "weight": 1 } }, { "key": "14143", "source": "392", "target": "1963", "attributes": { "weight": 1 } }, { "key": "8764", "source": "392", "target": "442", "attributes": { "weight": 1 } }, { "key": "25866", "source": "392", "target": "220", "attributes": { "weight": 1 } }, { "key": "32184", "source": "392", "target": "1314", "attributes": { "weight": 1 } }, { "key": "35563", "source": "392", "target": "135", "attributes": { "weight": 1 } }, { "key": "12791", "source": "392", "target": "1891", "attributes": { "weight": 2 } }, { "key": "14147", "source": "392", "target": "471", "attributes": { "weight": 2 } }, { "key": "14146", "source": "392", "target": "1964", "attributes": { "weight": 1 } }, { "key": "14151", "source": "392", "target": "254", "attributes": { "weight": 1 } }, { "key": "1102", "source": "392", "target": "396", "attributes": { "weight": 3 } }, { "key": "14036", "source": "392", "target": "1031", "attributes": { "weight": 2 } }, { "key": "14153", "source": "392", "target": "595", "attributes": { "weight": 2 } }, { "key": "10680", "source": "392", "target": "43", "attributes": { "weight": 3 } }, { "key": "14150", "source": "392", "target": "1030", "attributes": { "weight": 1 } }, { "key": "12788", "source": "392", "target": "1890", "attributes": { "weight": 1 } }, { "key": "1103", "source": "393", "target": "396", "attributes": { "weight": 4 } }, { "key": "9778", "source": "393", "target": "388", "attributes": { "weight": 1 } }, { "key": "37150", "source": "393", "target": "387", "attributes": { "weight": 1 } }, { "key": "9779", "source": "393", "target": "390", "attributes": { "weight": 3 } }, { "key": "5101", "source": "393", "target": "1294", "attributes": { "weight": 4 } }, { "key": "9780", "source": "393", "target": "338", "attributes": { "weight": 2 } }, { "key": "9776", "source": "393", "target": "382", "attributes": { "weight": 1 } }, { "key": "9782", "source": "393", "target": "399", "attributes": { "weight": 2 } }, { "key": "9783", "source": "393", "target": "1650", "attributes": { "weight": 1 } }, { "key": "9777", "source": "393", "target": "386", "attributes": { "weight": 2 } }, { "key": "9784", "source": "393", "target": "411", "attributes": { "weight": 2 } }, { "key": "9775", "source": "393", "target": "381", "attributes": { "weight": 1 } }, { "key": "9781", "source": "393", "target": "1647", "attributes": { "weight": 1 } }, { "key": "1104", "source": "394", "target": "396", "attributes": { "weight": 2 } }, { "key": "34232", "source": "394", "target": "1233", "attributes": { "weight": 1 } }, { "key": "35410", "source": "395", "target": "386", "attributes": { "weight": 1 } }, { "key": "9790", "source": "395", "target": "390", "attributes": { "weight": 3 } }, { "key": "35412", "source": "395", "target": "400", "attributes": { "weight": 1 } }, { "key": "35411", "source": "395", "target": "399", "attributes": { "weight": 1 } }, { "key": "37151", "source": "395", "target": "411", "attributes": { "weight": 1 } }, { "key": "1106", "source": "395", "target": "396", "attributes": { "weight": 3 } }, { "key": "9838", "source": "396", "target": "1031", "attributes": { "weight": 2 } }, { "key": "9837", "source": "396", "target": "1653", "attributes": { "weight": 2 } }, { "key": "9824", "source": "396", "target": "1646", "attributes": { "weight": 2 } }, { "key": "5557", "source": "396", "target": "368", "attributes": { "weight": 5 } }, { "key": "9823", "source": "396", "target": "1233", "attributes": { "weight": 4 } }, { "key": "1119", "source": "396", "target": "388", "attributes": { "weight": 3 } }, { "key": "9839", "source": "396", "target": "1654", "attributes": { "weight": 3 } }, { "key": "1114", "source": "396", "target": "383", "attributes": { "weight": 2 } }, { "key": "1122", "source": "396", "target": "391", "attributes": { "weight": 2 } }, { "key": "7346", "source": "396", "target": "1063", "attributes": { "weight": 2 } }, { "key": "1127", "source": "396", "target": "395", "attributes": { "weight": 3 } }, { "key": "1145", "source": "396", "target": "414", "attributes": { "weight": 3 } }, { "key": "7345", "source": "396", "target": "333", "attributes": { "weight": 1 } }, { "key": "1133", "source": "396", "target": "401", "attributes": { "weight": 2 } }, { "key": "9819", "source": "396", "target": "913", "attributes": { "weight": 2 } }, { "key": "1143", "source": "396", "target": "411", "attributes": { "weight": 4 } }, { "key": "1129", "source": "396", "target": "397", "attributes": { "weight": 4 } }, { "key": "1124", "source": "396", "target": "393", "attributes": { "weight": 3 } }, { "key": "1146", "source": "396", "target": "415", "attributes": { "weight": 3 } }, { "key": "9814", "source": "396", "target": "1163", "attributes": { "weight": 1 } }, { "key": "1131", "source": "396", "target": "399", "attributes": { "weight": 6 } }, { "key": "37163", "source": "396", "target": "1315", "attributes": { "weight": 1 } }, { "key": "9836", "source": "396", "target": "1652", "attributes": { "weight": 2 } }, { "key": "9835", "source": "396", "target": "1651", "attributes": { "weight": 1 } }, { "key": "8877", "source": "396", "target": "442", "attributes": { "weight": 3 } }, { "key": "1137", "source": "396", "target": "405", "attributes": { "weight": 4 } }, { "key": "1115", "source": "396", "target": "384", "attributes": { "weight": 2 } }, { "key": "1135", "source": "396", "target": "403", "attributes": { "weight": 4 } }, { "key": "1141", "source": "396", "target": "409", "attributes": { "weight": 2 } }, { "key": "9820", "source": "396", "target": "369", "attributes": { "weight": 1 } }, { "key": "1136", "source": "396", "target": "404", "attributes": { "weight": 3 } }, { "key": "9818", "source": "396", "target": "1645", "attributes": { "weight": 2 } }, { "key": "5559", "source": "396", "target": "123", "attributes": { "weight": 6 } }, { "key": "1130", "source": "396", "target": "398", "attributes": { "weight": 2 } }, { "key": "9829", "source": "396", "target": "1648", "attributes": { "weight": 2 } }, { "key": "9832", "source": "396", "target": "208", "attributes": { "weight": 3 } }, { "key": "9834", "source": "396", "target": "1650", "attributes": { "weight": 2 } }, { "key": "9816", "source": "396", "target": "1643", "attributes": { "weight": 2 } }, { "key": "35666", "source": "396", "target": "1264", "attributes": { "weight": 1 } }, { "key": "1128", "source": "396", "target": "371", "attributes": { "weight": 8 } }, { "key": "9847", "source": "396", "target": "1657", "attributes": { "weight": 2 } }, { "key": "1109", "source": "396", "target": "379", "attributes": { "weight": 4 } }, { "key": "9815", "source": "396", "target": "778", "attributes": { "weight": 1 } }, { "key": "1149", "source": "396", "target": "418", "attributes": { "weight": 3 } }, { "key": "9828", "source": "396", "target": "1647", "attributes": { "weight": 1 } }, { "key": "9826", "source": "396", "target": "468", "attributes": { "weight": 2 } }, { "key": "5556", "source": "396", "target": "779", "attributes": { "weight": 2 } }, { "key": "9843", "source": "396", "target": "1323", "attributes": { "weight": 4 } }, { "key": "35665", "source": "396", "target": "1152", "attributes": { "weight": 1 } }, { "key": "9822", "source": "396", "target": "1232", "attributes": { "weight": 3 } }, { "key": "1126", "source": "396", "target": "370", "attributes": { "weight": 4 } }, { "key": "9849", "source": "396", "target": "154", "attributes": { "weight": 1 } }, { "key": "1139", "source": "396", "target": "407", "attributes": { "weight": 3 } }, { "key": "1140", "source": "396", "target": "408", "attributes": { "weight": 2 } }, { "key": "9825", "source": "396", "target": "337", "attributes": { "weight": 3 } }, { "key": "9827", "source": "396", "target": "30", "attributes": { "weight": 3 } }, { "key": "1134", "source": "396", "target": "402", "attributes": { "weight": 1 } }, { "key": "9831", "source": "396", "target": "1649", "attributes": { "weight": 2 } }, { "key": "1148", "source": "396", "target": "417", "attributes": { "weight": 3 } }, { "key": "9817", "source": "396", "target": "1644", "attributes": { "weight": 2 } }, { "key": "1117", "source": "396", "target": "386", "attributes": { "weight": 3 } }, { "key": "1142", "source": "396", "target": "410", "attributes": { "weight": 3 } }, { "key": "1116", "source": "396", "target": "385", "attributes": { "weight": 1 } }, { "key": "1138", "source": "396", "target": "406", "attributes": { "weight": 3 } }, { "key": "1120", "source": "396", "target": "389", "attributes": { "weight": 1 } }, { "key": "34530", "source": "396", "target": "1047", "attributes": { "weight": 1 } }, { "key": "26627", "source": "396", "target": "454", "attributes": { "weight": 1 } }, { "key": "9848", "source": "396", "target": "48", "attributes": { "weight": 1 } }, { "key": "1112", "source": "396", "target": "381", "attributes": { "weight": 2 } }, { "key": "1118", "source": "396", "target": "387", "attributes": { "weight": 4 } }, { "key": "1121", "source": "396", "target": "390", "attributes": { "weight": 4 } }, { "key": "1125", "source": "396", "target": "394", "attributes": { "weight": 2 } }, { "key": "9830", "source": "396", "target": "471", "attributes": { "weight": 4 } }, { "key": "5558", "source": "396", "target": "338", "attributes": { "weight": 7 } }, { "key": "5560", "source": "396", "target": "1294", "attributes": { "weight": 3 } }, { "key": "1110", "source": "396", "target": "380", "attributes": { "weight": 2 } }, { "key": "25880", "source": "396", "target": "220", "attributes": { "weight": 1 } }, { "key": "34529", "source": "396", "target": "1197", "attributes": { "weight": 2 } }, { "key": "9821", "source": "396", "target": "109", "attributes": { "weight": 2 } }, { "key": "1144", "source": "396", "target": "413", "attributes": { "weight": 3 } }, { "key": "1123", "source": "396", "target": "392", "attributes": { "weight": 3 } }, { "key": "9833", "source": "396", "target": "1272", "attributes": { "weight": 2 } }, { "key": "26628", "source": "396", "target": "189", "attributes": { "weight": 1 } }, { "key": "1113", "source": "396", "target": "382", "attributes": { "weight": 3 } }, { "key": "8876", "source": "396", "target": "195", "attributes": { "weight": 8 } }, { "key": "1132", "source": "396", "target": "400", "attributes": { "weight": 4 } }, { "key": "9840", "source": "396", "target": "1314", "attributes": { "weight": 2 } }, { "key": "1147", "source": "396", "target": "416", "attributes": { "weight": 2 } }, { "key": "9846", "source": "396", "target": "1656", "attributes": { "weight": 1 } }, { "key": "9844", "source": "396", "target": "1330", "attributes": { "weight": 2 } }, { "key": "9842", "source": "396", "target": "601", "attributes": { "weight": 2 } }, { "key": "9841", "source": "396", "target": "634", "attributes": { "weight": 1 } }, { "key": "9845", "source": "396", "target": "1655", "attributes": { "weight": 1 } }, { "key": "1111", "source": "396", "target": "43", "attributes": { "weight": 4 } }, { "key": "35414", "source": "397", "target": "399", "attributes": { "weight": 2 } }, { "key": "2737", "source": "397", "target": "415", "attributes": { "weight": 2 } }, { "key": "34539", "source": "397", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9851", "source": "397", "target": "371", "attributes": { "weight": 2 } }, { "key": "35413", "source": "397", "target": "390", "attributes": { "weight": 2 } }, { "key": "1151", "source": "397", "target": "396", "attributes": { "weight": 4 } }, { "key": "2736", "source": "397", "target": "387", "attributes": { "weight": 1 } }, { "key": "3497", "source": "397", "target": "631", "attributes": { "weight": 1 } }, { "key": "1152", "source": "398", "target": "396", "attributes": { "weight": 2 } }, { "key": "35415", "source": "399", "target": "379", "attributes": { "weight": 1 } }, { "key": "9865", "source": "399", "target": "409", "attributes": { "weight": 2 } }, { "key": "9860", "source": "399", "target": "913", "attributes": { "weight": 2 } }, { "key": "1156", "source": "399", "target": "396", "attributes": { "weight": 4 } }, { "key": "8926", "source": "399", "target": "195", "attributes": { "weight": 6 } }, { "key": "35420", "source": "399", "target": "403", "attributes": { "weight": 2 } }, { "key": "1153", "source": "399", "target": "387", "attributes": { "weight": 3 } }, { "key": "9862", "source": "399", "target": "1290", "attributes": { "weight": 1 } }, { "key": "9859", "source": "399", "target": "388", "attributes": { "weight": 4 } }, { "key": "9856", "source": "399", "target": "1163", "attributes": { "weight": 2 } }, { "key": "9864", "source": "399", "target": "1302", "attributes": { "weight": 2 } }, { "key": "9857", "source": "399", "target": "382", "attributes": { "weight": 3 } }, { "key": "34558", "source": "399", "target": "1233", "attributes": { "weight": 2 } }, { "key": "35418", "source": "399", "target": "400", "attributes": { "weight": 1 } }, { "key": "9863", "source": "399", "target": "1031", "attributes": { "weight": 2 } }, { "key": "9866", "source": "399", "target": "414", "attributes": { "weight": 3 } }, { "key": "1157", "source": "399", "target": "405", "attributes": { "weight": 3 } }, { "key": "9858", "source": "399", "target": "386", "attributes": { "weight": 4 } }, { "key": "35417", "source": "399", "target": "397", "attributes": { "weight": 2 } }, { "key": "35416", "source": "399", "target": "395", "attributes": { "weight": 1 } }, { "key": "1155", "source": "399", "target": "337", "attributes": { "weight": 3 } }, { "key": "35419", "source": "399", "target": "401", "attributes": { "weight": 1 } }, { "key": "34559", "source": "399", "target": "123", "attributes": { "weight": 1 } }, { "key": "37167", "source": "399", "target": "411", "attributes": { "weight": 1 } }, { "key": "1158", "source": "399", "target": "412", "attributes": { "weight": 2 } }, { "key": "5720", "source": "399", "target": "368", "attributes": { "weight": 2 } }, { "key": "35423", "source": "399", "target": "415", "attributes": { "weight": 1 } }, { "key": "9861", "source": "399", "target": "393", "attributes": { "weight": 2 } }, { "key": "35421", "source": "399", "target": "406", "attributes": { "weight": 2 } }, { "key": "1154", "source": "399", "target": "390", "attributes": { "weight": 5 } }, { "key": "35422", "source": "399", "target": "410", "attributes": { "weight": 1 } }, { "key": "9855", "source": "399", "target": "380", "attributes": { "weight": 1 } }, { "key": "1159", "source": "400", "target": "396", "attributes": { "weight": 4 } }, { "key": "37169", "source": "400", "target": "411", "attributes": { "weight": 1 } }, { "key": "9869", "source": "400", "target": "390", "attributes": { "weight": 1 } }, { "key": "35424", "source": "400", "target": "395", "attributes": { "weight": 1 } }, { "key": "9870", "source": "400", "target": "338", "attributes": { "weight": 2 } }, { "key": "5731", "source": "400", "target": "1294", "attributes": { "weight": 2 } }, { "key": "5730", "source": "400", "target": "368", "attributes": { "weight": 2 } }, { "key": "9871", "source": "400", "target": "1647", "attributes": { "weight": 1 } }, { "key": "35425", "source": "400", "target": "399", "attributes": { "weight": 1 } }, { "key": "1160", "source": "401", "target": "396", "attributes": { "weight": 2 } }, { "key": "35426", "source": "401", "target": "387", "attributes": { "weight": 1 } }, { "key": "34565", "source": "401", "target": "1233", "attributes": { "weight": 1 } }, { "key": "37171", "source": "401", "target": "411", "attributes": { "weight": 1 } }, { "key": "35427", "source": "401", "target": "399", "attributes": { "weight": 1 } }, { "key": "1161", "source": "402", "target": "396", "attributes": { "weight": 1 } }, { "key": "6204", "source": "403", "target": "1294", "attributes": { "weight": 2 } }, { "key": "6206", "source": "403", "target": "1323", "attributes": { "weight": 5 } }, { "key": "18275", "source": "403", "target": "1197", "attributes": { "weight": 2 } }, { "key": "34672", "source": "403", "target": "1047", "attributes": { "weight": 1 } }, { "key": "36769", "source": "403", "target": "373", "attributes": { "weight": 1 } }, { "key": "7388", "source": "403", "target": "377", "attributes": { "weight": 2 } }, { "key": "6203", "source": "403", "target": "123", "attributes": { "weight": 4 } }, { "key": "34673", "source": "403", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6205", "source": "403", "target": "1315", "attributes": { "weight": 3 } }, { "key": "1162", "source": "403", "target": "396", "attributes": { "weight": 4 } }, { "key": "18276", "source": "403", "target": "124", "attributes": { "weight": 1 } }, { "key": "9891", "source": "403", "target": "390", "attributes": { "weight": 1 } }, { "key": "35428", "source": "403", "target": "399", "attributes": { "weight": 2 } }, { "key": "32982", "source": "403", "target": "154", "attributes": { "weight": 1 } }, { "key": "7387", "source": "403", "target": "333", "attributes": { "weight": 3 } }, { "key": "9892", "source": "403", "target": "338", "attributes": { "weight": 4 } }, { "key": "6202", "source": "403", "target": "368", "attributes": { "weight": 2 } }, { "key": "37175", "source": "403", "target": "411", "attributes": { "weight": 1 } }, { "key": "1163", "source": "403", "target": "412", "attributes": { "weight": 1 } }, { "key": "9893", "source": "403", "target": "1329", "attributes": { "weight": 2 } }, { "key": "9034", "source": "403", "target": "195", "attributes": { "weight": 4 } }, { "key": "35430", "source": "404", "target": "390", "attributes": { "weight": 1 } }, { "key": "35429", "source": "404", "target": "387", "attributes": { "weight": 1 } }, { "key": "35431", "source": "404", "target": "414", "attributes": { "weight": 1 } }, { "key": "1164", "source": "404", "target": "396", "attributes": { "weight": 3 } }, { "key": "9897", "source": "404", "target": "1652", "attributes": { "weight": 2 } }, { "key": "18933", "source": "405", "target": "337", "attributes": { "weight": 2 } }, { "key": "6278", "source": "405", "target": "1090", "attributes": { "weight": 2 } }, { "key": "34711", "source": "405", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9054", "source": "405", "target": "195", "attributes": { "weight": 7 } }, { "key": "16250", "source": "405", "target": "925", "attributes": { "weight": 1 } }, { "key": "6279", "source": "405", "target": "1294", "attributes": { "weight": 4 } }, { "key": "36713", "source": "405", "target": "1165", "attributes": { "weight": 1 } }, { "key": "34710", "source": "405", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18936", "source": "405", "target": "124", "attributes": { "weight": 2 } }, { "key": "16247", "source": "405", "target": "370", "attributes": { "weight": 1 } }, { "key": "18931", "source": "405", "target": "1197", "attributes": { "weight": 3 } }, { "key": "16248", "source": "405", "target": "208", "attributes": { "weight": 3 } }, { "key": "1167", "source": "405", "target": "399", "attributes": { "weight": 3 } }, { "key": "1166", "source": "405", "target": "396", "attributes": { "weight": 4 } }, { "key": "18928", "source": "405", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18937", "source": "405", "target": "218", "attributes": { "weight": 2 } }, { "key": "16246", "source": "405", "target": "913", "attributes": { "weight": 1 } }, { "key": "34709", "source": "405", "target": "1047", "attributes": { "weight": 1 } }, { "key": "34712", "source": "405", "target": "1323", "attributes": { "weight": 1 } }, { "key": "36716", "source": "405", "target": "1315", "attributes": { "weight": 1 } }, { "key": "18930", "source": "405", "target": "1526", "attributes": { "weight": 2 } }, { "key": "16249", "source": "405", "target": "924", "attributes": { "weight": 1 } }, { "key": "16251", "source": "405", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18929", "source": "405", "target": "387", "attributes": { "weight": 1 } }, { "key": "1168", "source": "405", "target": "412", "attributes": { "weight": 1 } }, { "key": "1165", "source": "405", "target": "390", "attributes": { "weight": 2 } }, { "key": "6277", "source": "405", "target": "123", "attributes": { "weight": 3 } }, { "key": "18934", "source": "405", "target": "338", "attributes": { "weight": 3 } }, { "key": "36715", "source": "405", "target": "2229", "attributes": { "weight": 1 } }, { "key": "18932", "source": "405", "target": "1228", "attributes": { "weight": 2 } }, { "key": "6276", "source": "405", "target": "368", "attributes": { "weight": 2 } }, { "key": "6275", "source": "405", "target": "779", "attributes": { "weight": 2 } }, { "key": "10303", "source": "405", "target": "1322", "attributes": { "weight": 1 } }, { "key": "36714", "source": "405", "target": "1201", "attributes": { "weight": 1 } }, { "key": "18935", "source": "405", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18949", "source": "406", "target": "408", "attributes": { "weight": 1 } }, { "key": "37179", "source": "406", "target": "411", "attributes": { "weight": 1 } }, { "key": "9072", "source": "406", "target": "195", "attributes": { "weight": 5 } }, { "key": "6363", "source": "406", "target": "338", "attributes": { "weight": 5 } }, { "key": "34783", "source": "406", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6365", "source": "406", "target": "1294", "attributes": { "weight": 2 } }, { "key": "34782", "source": "406", "target": "1047", "attributes": { "weight": 1 } }, { "key": "9909", "source": "406", "target": "1329", "attributes": { "weight": 2 } }, { "key": "9907", "source": "406", "target": "1323", "attributes": { "weight": 4 } }, { "key": "18284", "source": "406", "target": "1197", "attributes": { "weight": 3 } }, { "key": "10357", "source": "406", "target": "1315", "attributes": { "weight": 2 } }, { "key": "9908", "source": "406", "target": "1326", "attributes": { "weight": 2 } }, { "key": "1169", "source": "406", "target": "390", "attributes": { "weight": 3 } }, { "key": "6364", "source": "406", "target": "123", "attributes": { "weight": 4 } }, { "key": "36770", "source": "406", "target": "333", "attributes": { "weight": 1 } }, { "key": "7402", "source": "406", "target": "377", "attributes": { "weight": 2 } }, { "key": "35433", "source": "406", "target": "399", "attributes": { "weight": 2 } }, { "key": "6362", "source": "406", "target": "368", "attributes": { "weight": 3 } }, { "key": "35432", "source": "406", "target": "386", "attributes": { "weight": 1 } }, { "key": "1171", "source": "406", "target": "412", "attributes": { "weight": 1 } }, { "key": "6361", "source": "406", "target": "779", "attributes": { "weight": 2 } }, { "key": "1170", "source": "406", "target": "396", "attributes": { "weight": 3 } }, { "key": "10779", "source": "407", "target": "634", "attributes": { "weight": 2 } }, { "key": "6366", "source": "407", "target": "779", "attributes": { "weight": 3 } }, { "key": "1766", "source": "407", "target": "547", "attributes": { "weight": 3 } }, { "key": "34785", "source": "407", "target": "1232", "attributes": { "weight": 1 } }, { "key": "1172", "source": "407", "target": "396", "attributes": { "weight": 3 } }, { "key": "10774", "source": "407", "target": "43", "attributes": { "weight": 1 } }, { "key": "1763", "source": "407", "target": "543", "attributes": { "weight": 3 } }, { "key": "1769", "source": "407", "target": "552", "attributes": { "weight": 1 } }, { "key": "1761", "source": "407", "target": "541", "attributes": { "weight": 3 } }, { "key": "10778", "source": "407", "target": "1314", "attributes": { "weight": 1 } }, { "key": "24227", "source": "407", "target": "471", "attributes": { "weight": 1 } }, { "key": "18285", "source": "407", "target": "1197", "attributes": { "weight": 1 } }, { "key": "10780", "source": "407", "target": "635", "attributes": { "weight": 3 } }, { "key": "34786", "source": "407", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9073", "source": "407", "target": "195", "attributes": { "weight": 2 } }, { "key": "1767", "source": "407", "target": "550", "attributes": { "weight": 3 } }, { "key": "26976", "source": "407", "target": "548", "attributes": { "weight": 2 } }, { "key": "6369", "source": "407", "target": "371", "attributes": { "weight": 3 } }, { "key": "1764", "source": "407", "target": "545", "attributes": { "weight": 3 } }, { "key": "10776", "source": "407", "target": "30", "attributes": { "weight": 1 } }, { "key": "1765", "source": "407", "target": "546", "attributes": { "weight": 1 } }, { "key": "10777", "source": "407", "target": "1031", "attributes": { "weight": 4 } }, { "key": "7403", "source": "407", "target": "1063", "attributes": { "weight": 1 } }, { "key": "34784", "source": "407", "target": "1047", "attributes": { "weight": 1 } }, { "key": "1760", "source": "407", "target": "540", "attributes": { "weight": 1 } }, { "key": "11695", "source": "407", "target": "208", "attributes": { "weight": 1 } }, { "key": "1762", "source": "407", "target": "542", "attributes": { "weight": 3 } }, { "key": "6367", "source": "407", "target": "368", "attributes": { "weight": 2 } }, { "key": "10775", "source": "407", "target": "391", "attributes": { "weight": 4 } }, { "key": "2767", "source": "407", "target": "798", "attributes": { "weight": 1 } }, { "key": "26975", "source": "407", "target": "544", "attributes": { "weight": 2 } }, { "key": "1770", "source": "407", "target": "553", "attributes": { "weight": 3 } }, { "key": "34787", "source": "407", "target": "123", "attributes": { "weight": 1 } }, { "key": "6368", "source": "407", "target": "370", "attributes": { "weight": 3 } }, { "key": "15366", "source": "407", "target": "254", "attributes": { "weight": 1 } }, { "key": "11694", "source": "407", "target": "199", "attributes": { "weight": 2 } }, { "key": "16280", "source": "407", "target": "338", "attributes": { "weight": 1 } }, { "key": "18959", "source": "408", "target": "1323", "attributes": { "weight": 3 } }, { "key": "16355", "source": "408", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16356", "source": "408", "target": "333", "attributes": { "weight": 2 } }, { "key": "36731", "source": "408", "target": "1326", "attributes": { "weight": 1 } }, { "key": "1173", "source": "408", "target": "390", "attributes": { "weight": 1 } }, { "key": "18286", "source": "408", "target": "1197", "attributes": { "weight": 4 } }, { "key": "36732", "source": "408", "target": "1331", "attributes": { "weight": 1 } }, { "key": "6398", "source": "408", "target": "1294", "attributes": { "weight": 4 } }, { "key": "34799", "source": "408", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6395", "source": "408", "target": "368", "attributes": { "weight": 3 } }, { "key": "6396", "source": "408", "target": "123", "attributes": { "weight": 3 } }, { "key": "9078", "source": "408", "target": "195", "attributes": { "weight": 4 } }, { "key": "1174", "source": "408", "target": "396", "attributes": { "weight": 2 } }, { "key": "36730", "source": "408", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18958", "source": "408", "target": "1284", "attributes": { "weight": 2 } }, { "key": "34798", "source": "408", "target": "1047", "attributes": { "weight": 1 } }, { "key": "6397", "source": "408", "target": "1291", "attributes": { "weight": 2 } }, { "key": "18960", "source": "408", "target": "406", "attributes": { "weight": 1 } }, { "key": "18957", "source": "408", "target": "337", "attributes": { "weight": 2 } }, { "key": "16354", "source": "408", "target": "925", "attributes": { "weight": 1 } }, { "key": "6399", "source": "408", "target": "1322", "attributes": { "weight": 2 } }, { "key": "35434", "source": "409", "target": "387", "attributes": { "weight": 1 } }, { "key": "1175", "source": "409", "target": "396", "attributes": { "weight": 2 } }, { "key": "9917", "source": "409", "target": "414", "attributes": { "weight": 1 } }, { "key": "34818", "source": "409", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9916", "source": "409", "target": "399", "attributes": { "weight": 2 } }, { "key": "35436", "source": "410", "target": "390", "attributes": { "weight": 2 } }, { "key": "1176", "source": "410", "target": "396", "attributes": { "weight": 3 } }, { "key": "35437", "source": "410", "target": "399", "attributes": { "weight": 1 } }, { "key": "37182", "source": "410", "target": "411", "attributes": { "weight": 1 } }, { "key": "35435", "source": "410", "target": "387", "attributes": { "weight": 1 } }, { "key": "9923", "source": "411", "target": "1645", "attributes": { "weight": 1 } }, { "key": "37205", "source": "411", "target": "418", "attributes": { "weight": 1 } }, { "key": "37199", "source": "411", "target": "1330", "attributes": { "weight": 1 } }, { "key": "37197", "source": "411", "target": "1302", "attributes": { "weight": 1 } }, { "key": "9925", "source": "411", "target": "580", "attributes": { "weight": 2 } }, { "key": "37203", "source": "411", "target": "414", "attributes": { "weight": 1 } }, { "key": "37202", "source": "411", "target": "3345", "attributes": { "weight": 1 } }, { "key": "37188", "source": "411", "target": "388", "attributes": { "weight": 1 } }, { "key": "37185", "source": "411", "target": "381", "attributes": { "weight": 1 } }, { "key": "37186", "source": "411", "target": "1643", "attributes": { "weight": 1 } }, { "key": "37192", "source": "411", "target": "399", "attributes": { "weight": 1 } }, { "key": "37189", "source": "411", "target": "395", "attributes": { "weight": 1 } }, { "key": "37183", "source": "411", "target": "379", "attributes": { "weight": 1 } }, { "key": "37195", "source": "411", "target": "1290", "attributes": { "weight": 1 } }, { "key": "37184", "source": "411", "target": "380", "attributes": { "weight": 1 } }, { "key": "37194", "source": "411", "target": "401", "attributes": { "weight": 1 } }, { "key": "1177", "source": "411", "target": "390", "attributes": { "weight": 3 } }, { "key": "9924", "source": "411", "target": "393", "attributes": { "weight": 2 } }, { "key": "37201", "source": "411", "target": "1657", "attributes": { "weight": 1 } }, { "key": "37191", "source": "411", "target": "1272", "attributes": { "weight": 1 } }, { "key": "9926", "source": "411", "target": "305", "attributes": { "weight": 1 } }, { "key": "37196", "source": "411", "target": "403", "attributes": { "weight": 1 } }, { "key": "37204", "source": "411", "target": "416", "attributes": { "weight": 1 } }, { "key": "37198", "source": "411", "target": "406", "attributes": { "weight": 1 } }, { "key": "1178", "source": "411", "target": "396", "attributes": { "weight": 3 } }, { "key": "37190", "source": "411", "target": "1647", "attributes": { "weight": 1 } }, { "key": "37187", "source": "411", "target": "387", "attributes": { "weight": 1 } }, { "key": "37200", "source": "411", "target": "410", "attributes": { "weight": 1 } }, { "key": "37193", "source": "411", "target": "400", "attributes": { "weight": 1 } }, { "key": "9921", "source": "411", "target": "382", "attributes": { "weight": 2 } }, { "key": "9920", "source": "411", "target": "1163", "attributes": { "weight": 2 } }, { "key": "9922", "source": "411", "target": "386", "attributes": { "weight": 3 } }, { "key": "1181", "source": "412", "target": "337", "attributes": { "weight": 1 } }, { "key": "1182", "source": "412", "target": "399", "attributes": { "weight": 2 } }, { "key": "1186", "source": "412", "target": "417", "attributes": { "weight": 1 } }, { "key": "1179", "source": "412", "target": "379", "attributes": { "weight": 2 } }, { "key": "1180", "source": "412", "target": "387", "attributes": { "weight": 2 } }, { "key": "9927", "source": "412", "target": "390", "attributes": { "weight": 1 } }, { "key": "1185", "source": "412", "target": "406", "attributes": { "weight": 1 } }, { "key": "28608", "source": "412", "target": "199", "attributes": { "weight": 1 } }, { "key": "1184", "source": "412", "target": "405", "attributes": { "weight": 1 } }, { "key": "1183", "source": "412", "target": "403", "attributes": { "weight": 1 } }, { "key": "34825", "source": "413", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6467", "source": "413", "target": "368", "attributes": { "weight": 2 } }, { "key": "35438", "source": "413", "target": "387", "attributes": { "weight": 1 } }, { "key": "1187", "source": "413", "target": "396", "attributes": { "weight": 3 } }, { "key": "9930", "source": "413", "target": "390", "attributes": { "weight": 2 } }, { "key": "9929", "source": "413", "target": "388", "attributes": { "weight": 1 } }, { "key": "2738", "source": "414", "target": "415", "attributes": { "weight": 2 } }, { "key": "9932", "source": "414", "target": "399", "attributes": { "weight": 3 } }, { "key": "35439", "source": "414", "target": "387", "attributes": { "weight": 2 } }, { "key": "35440", "source": "414", "target": "390", "attributes": { "weight": 2 } }, { "key": "1188", "source": "414", "target": "396", "attributes": { "weight": 3 } }, { "key": "9933", "source": "414", "target": "409", "attributes": { "weight": 1 } }, { "key": "35441", "source": "414", "target": "404", "attributes": { "weight": 1 } }, { "key": "34838", "source": "414", "target": "1233", "attributes": { "weight": 1 } }, { "key": "37209", "source": "414", "target": "411", "attributes": { "weight": 1 } }, { "key": "35444", "source": "415", "target": "399", "attributes": { "weight": 1 } }, { "key": "35443", "source": "415", "target": "390", "attributes": { "weight": 1 } }, { "key": "2739", "source": "415", "target": "397", "attributes": { "weight": 2 } }, { "key": "34840", "source": "415", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9934", "source": "415", "target": "1652", "attributes": { "weight": 2 } }, { "key": "35442", "source": "415", "target": "387", "attributes": { "weight": 1 } }, { "key": "1189", "source": "415", "target": "396", "attributes": { "weight": 3 } }, { "key": "2740", "source": "415", "target": "414", "attributes": { "weight": 2 } }, { "key": "37212", "source": "416", "target": "411", "attributes": { "weight": 1 } }, { "key": "6557", "source": "416", "target": "368", "attributes": { "weight": 2 } }, { "key": "1190", "source": "416", "target": "396", "attributes": { "weight": 2 } }, { "key": "37211", "source": "416", "target": "1552", "attributes": { "weight": 1 } }, { "key": "37210", "source": "416", "target": "338", "attributes": { "weight": 1 } }, { "key": "34854", "source": "417", "target": "1233", "attributes": { "weight": 1 } }, { "key": "1191", "source": "417", "target": "396", "attributes": { "weight": 3 } }, { "key": "9937", "source": "417", "target": "338", "attributes": { "weight": 2 } }, { "key": "6558", "source": "417", "target": "1294", "attributes": { "weight": 2 } }, { "key": "1192", "source": "417", "target": "412", "attributes": { "weight": 1 } }, { "key": "1193", "source": "418", "target": "396", "attributes": { "weight": 3 } }, { "key": "37213", "source": "418", "target": "411", "attributes": { "weight": 1 } }, { "key": "34855", "source": "418", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9938", "source": "418", "target": "338", "attributes": { "weight": 2 } }, { "key": "1195", "source": "419", "target": "422", "attributes": { "weight": 5 } }, { "key": "3742", "source": "419", "target": "1035", "attributes": { "weight": 4 } }, { "key": "34005", "source": "419", "target": "1047", "attributes": { "weight": 1 } }, { "key": "8680", "source": "419", "target": "442", "attributes": { "weight": 2 } }, { "key": "31584", "source": "419", "target": "595", "attributes": { "weight": 1 } }, { "key": "9425", "source": "419", "target": "791", "attributes": { "weight": 2 } }, { "key": "2185", "source": "419", "target": "660", "attributes": { "weight": 6 } }, { "key": "9444", "source": "419", "target": "495", "attributes": { "weight": 2 } }, { "key": "2191", "source": "419", "target": "666", "attributes": { "weight": 6 } }, { "key": "9418", "source": "419", "target": "1380", "attributes": { "weight": 2 } }, { "key": "2701", "source": "419", "target": "788", "attributes": { "weight": 1 } }, { "key": "9435", "source": "419", "target": "297", "attributes": { "weight": 1 } }, { "key": "25604", "source": "419", "target": "787", "attributes": { "weight": 1 } }, { "key": "3750", "source": "419", "target": "1048", "attributes": { "weight": 2 } }, { "key": "2166", "source": "419", "target": "641", "attributes": { "weight": 6 } }, { "key": "9429", "source": "419", "target": "370", "attributes": { "weight": 1 } }, { "key": "9424", "source": "419", "target": "278", "attributes": { "weight": 2 } }, { "key": "9419", "source": "419", "target": "1037", "attributes": { "weight": 2 } }, { "key": "3748", "source": "419", "target": "1045", "attributes": { "weight": 3 } }, { "key": "9436", "source": "419", "target": "1553", "attributes": { "weight": 2 } }, { "key": "2181", "source": "419", "target": "655", "attributes": { "weight": 6 } }, { "key": "2169", "source": "419", "target": "164", "attributes": { "weight": 4 } }, { "key": "29619", "source": "419", "target": "1763", "attributes": { "weight": 1 } }, { "key": "3757", "source": "419", "target": "468", "attributes": { "weight": 5 } }, { "key": "3759", "source": "419", "target": "1062", "attributes": { "weight": 4 } }, { "key": "32158", "source": "419", "target": "1779", "attributes": { "weight": 1 } }, { "key": "2175", "source": "419", "target": "648", "attributes": { "weight": 1 } }, { "key": "2186", "source": "419", "target": "661", "attributes": { "weight": 5 } }, { "key": "2174", "source": "419", "target": "647", "attributes": { "weight": 2 } }, { "key": "2177", "source": "419", "target": "649", "attributes": { "weight": 6 } }, { "key": "9437", "source": "419", "target": "189", "attributes": { "weight": 2 } }, { "key": "2180", "source": "419", "target": "652", "attributes": { "weight": 5 } }, { "key": "2188", "source": "419", "target": "663", "attributes": { "weight": 5 } }, { "key": "2190", "source": "419", "target": "665", "attributes": { "weight": 3 } }, { "key": "9434", "source": "419", "target": "362", "attributes": { "weight": 2 } }, { "key": "3754", "source": "419", "target": "659", "attributes": { "weight": 4 } }, { "key": "11047", "source": "419", "target": "180", "attributes": { "weight": 2 } }, { "key": "2182", "source": "419", "target": "657", "attributes": { "weight": 6 } }, { "key": "9440", "source": "419", "target": "305", "attributes": { "weight": 2 } }, { "key": "13024", "source": "419", "target": "304", "attributes": { "weight": 1 } }, { "key": "3753", "source": "419", "target": "1050", "attributes": { "weight": 4 } }, { "key": "3744", "source": "419", "target": "1039", "attributes": { "weight": 3 } }, { "key": "2179", "source": "419", "target": "651", "attributes": { "weight": 5 } }, { "key": "11046", "source": "419", "target": "452", "attributes": { "weight": 2 } }, { "key": "3743", "source": "419", "target": "1036", "attributes": { "weight": 3 } }, { "key": "26122", "source": "419", "target": "1056", "attributes": { "weight": 1 } }, { "key": "9446", "source": "419", "target": "57", "attributes": { "weight": 2 } }, { "key": "9423", "source": "419", "target": "454", "attributes": { "weight": 2 } }, { "key": "18423", "source": "419", "target": "2140", "attributes": { "weight": 1 } }, { "key": "9420", "source": "419", "target": "435", "attributes": { "weight": 1 } }, { "key": "25856", "source": "419", "target": "220", "attributes": { "weight": 1 } }, { "key": "2172", "source": "419", "target": "354", "attributes": { "weight": 6 } }, { "key": "3756", "source": "419", "target": "171", "attributes": { "weight": 3 } }, { "key": "2173", "source": "419", "target": "646", "attributes": { "weight": 1 } }, { "key": "2171", "source": "419", "target": "645", "attributes": { "weight": 6 } }, { "key": "22275", "source": "419", "target": "794", "attributes": { "weight": 1 } }, { "key": "3751", "source": "419", "target": "168", "attributes": { "weight": 5 } }, { "key": "9443", "source": "419", "target": "310", "attributes": { "weight": 1 } }, { "key": "2168", "source": "419", "target": "643", "attributes": { "weight": 2 } }, { "key": "35781", "source": "419", "target": "790", "attributes": { "weight": 1 } }, { "key": "9426", "source": "419", "target": "1605", "attributes": { "weight": 1 } }, { "key": "2189", "source": "419", "target": "664", "attributes": { "weight": 6 } }, { "key": "1194", "source": "419", "target": "420", "attributes": { "weight": 1 } }, { "key": "29620", "source": "419", "target": "1253", "attributes": { "weight": 1 } }, { "key": "2187", "source": "419", "target": "662", "attributes": { "weight": 3 } }, { "key": "9422", "source": "419", "target": "1601", "attributes": { "weight": 2 } }, { "key": "3752", "source": "419", "target": "656", "attributes": { "weight": 4 } }, { "key": "9433", "source": "419", "target": "1610", "attributes": { "weight": 1 } }, { "key": "23741", "source": "419", "target": "1774", "attributes": { "weight": 1 } }, { "key": "9432", "source": "419", "target": "1609", "attributes": { "weight": 1 } }, { "key": "9421", "source": "419", "target": "1042", "attributes": { "weight": 3 } }, { "key": "2176", "source": "419", "target": "358", "attributes": { "weight": 5 } }, { "key": "2178", "source": "419", "target": "650", "attributes": { "weight": 3 } }, { "key": "9428", "source": "419", "target": "359", "attributes": { "weight": 2 } }, { "key": "3758", "source": "419", "target": "178", "attributes": { "weight": 4 } }, { "key": "10813", "source": "419", "target": "457", "attributes": { "weight": 1 } }, { "key": "2184", "source": "419", "target": "361", "attributes": { "weight": 5 } }, { "key": "9439", "source": "419", "target": "123", "attributes": { "weight": 1 } }, { "key": "9442", "source": "419", "target": "1613", "attributes": { "weight": 2 } }, { "key": "30702", "source": "419", "target": "889", "attributes": { "weight": 1 } }, { "key": "2170", "source": "419", "target": "644", "attributes": { "weight": 6 } }, { "key": "9430", "source": "419", "target": "1607", "attributes": { "weight": 2 } }, { "key": "9431", "source": "419", "target": "1608", "attributes": { "weight": 1 } }, { "key": "9445", "source": "419", "target": "669", "attributes": { "weight": 1 } }, { "key": "2167", "source": "419", "target": "642", "attributes": { "weight": 2 } }, { "key": "3746", "source": "419", "target": "357", "attributes": { "weight": 3 } }, { "key": "3745", "source": "419", "target": "223", "attributes": { "weight": 3 } }, { "key": "2183", "source": "419", "target": "658", "attributes": { "weight": 5 } }, { "key": "3749", "source": "419", "target": "1046", "attributes": { "weight": 2 } }, { "key": "2192", "source": "419", "target": "668", "attributes": { "weight": 5 } }, { "key": "9438", "source": "419", "target": "580", "attributes": { "weight": 3 } }, { "key": "26048", "source": "419", "target": "163", "attributes": { "weight": 1 } }, { "key": "9427", "source": "419", "target": "1053", "attributes": { "weight": 2 } }, { "key": "3755", "source": "419", "target": "1055", "attributes": { "weight": 3 } }, { "key": "9441", "source": "419", "target": "1060", "attributes": { "weight": 2 } }, { "key": "3747", "source": "419", "target": "1043", "attributes": { "weight": 4 } }, { "key": "14520", "source": "419", "target": "259", "attributes": { "weight": 1 } }, { "key": "1199", "source": "420", "target": "422", "attributes": { "weight": 3 } }, { "key": "1197", "source": "420", "target": "419", "attributes": { "weight": 1 } }, { "key": "1198", "source": "420", "target": "421", "attributes": { "weight": 1 } }, { "key": "17595", "source": "420", "target": "1801", "attributes": { "weight": 1 } }, { "key": "29639", "source": "421", "target": "1247", "attributes": { "weight": 1 } }, { "key": "29637", "source": "421", "target": "2885", "attributes": { "weight": 1 } }, { "key": "29635", "source": "421", "target": "674", "attributes": { "weight": 1 } }, { "key": "29645", "source": "421", "target": "2288", "attributes": { "weight": 1 } }, { "key": "29640", "source": "421", "target": "1253", "attributes": { "weight": 1 } }, { "key": "29631", "source": "421", "target": "2463", "attributes": { "weight": 1 } }, { "key": "29648", "source": "421", "target": "794", "attributes": { "weight": 1 } }, { "key": "32399", "source": "421", "target": "791", "attributes": { "weight": 1 } }, { "key": "28616", "source": "421", "target": "2782", "attributes": { "weight": 2 } }, { "key": "5159", "source": "421", "target": "1036", "attributes": { "weight": 6 } }, { "key": "14647", "source": "421", "target": "304", "attributes": { "weight": 2 } }, { "key": "29633", "source": "421", "target": "442", "attributes": { "weight": 1 } }, { "key": "29638", "source": "421", "target": "2887", "attributes": { "weight": 1 } }, { "key": "29646", "source": "421", "target": "473", "attributes": { "weight": 1 } }, { "key": "29641", "source": "421", "target": "468", "attributes": { "weight": 1 } }, { "key": "23882", "source": "421", "target": "1763", "attributes": { "weight": 3 } }, { "key": "29647", "source": "421", "target": "2116", "attributes": { "weight": 1 } }, { "key": "29634", "source": "421", "target": "2881", "attributes": { "weight": 1 } }, { "key": "32271", "source": "421", "target": "164", "attributes": { "weight": 1 } }, { "key": "29649", "source": "421", "target": "2119", "attributes": { "weight": 1 } }, { "key": "29632", "source": "421", "target": "435", "attributes": { "weight": 1 } }, { "key": "30451", "source": "421", "target": "1046", "attributes": { "weight": 1 } }, { "key": "22670", "source": "421", "target": "1037", "attributes": { "weight": 1 } }, { "key": "29643", "source": "421", "target": "362", "attributes": { "weight": 2 } }, { "key": "28615", "source": "421", "target": "1060", "attributes": { "weight": 3 } }, { "key": "1201", "source": "421", "target": "422", "attributes": { "weight": 2 } }, { "key": "26126", "source": "421", "target": "1056", "attributes": { "weight": 1 } }, { "key": "29650", "source": "421", "target": "1063", "attributes": { "weight": 1 } }, { "key": "23883", "source": "421", "target": "2465", "attributes": { "weight": 3 } }, { "key": "29636", "source": "421", "target": "1045", "attributes": { "weight": 2 } }, { "key": "29644", "source": "421", "target": "2115", "attributes": { "weight": 1 } }, { "key": "29642", "source": "421", "target": "472", "attributes": { "weight": 1 } }, { "key": "14648", "source": "421", "target": "319", "attributes": { "weight": 1 } }, { "key": "1200", "source": "421", "target": "420", "attributes": { "weight": 1 } }, { "key": "17468", "source": "421", "target": "358", "attributes": { "weight": 3 } }, { "key": "28614", "source": "421", "target": "359", "attributes": { "weight": 4 } }, { "key": "29630", "source": "421", "target": "130", "attributes": { "weight": 1 } }, { "key": "17607", "source": "422", "target": "790", "attributes": { "weight": 1 } }, { "key": "18430", "source": "422", "target": "5", "attributes": { "weight": 1 } }, { "key": "17608", "source": "422", "target": "1801", "attributes": { "weight": 1 } }, { "key": "1204", "source": "422", "target": "420", "attributes": { "weight": 3 } }, { "key": "1202", "source": "422", "target": "419", "attributes": { "weight": 5 } }, { "key": "21580", "source": "422", "target": "89", "attributes": { "weight": 1 } }, { "key": "1205", "source": "422", "target": "421", "attributes": { "weight": 2 } }, { "key": "1203", "source": "422", "target": "358", "attributes": { "weight": 5 } }, { "key": "32534", "source": "422", "target": "791", "attributes": { "weight": 1 } }, { "key": "29655", "source": "422", "target": "2116", "attributes": { "weight": 1 } }, { "key": "30745", "source": "422", "target": "788", "attributes": { "weight": 1 } }, { "key": "1206", "source": "422", "target": "423", "attributes": { "weight": 2 } }, { "key": "18429", "source": "422", "target": "2211", "attributes": { "weight": 1 } }, { "key": "18431", "source": "422", "target": "2140", "attributes": { "weight": 2 } }, { "key": "18432", "source": "422", "target": "1056", "attributes": { "weight": 1 } }, { "key": "32575", "source": "423", "target": "791", "attributes": { "weight": 1 } }, { "key": "17638", "source": "423", "target": "790", "attributes": { "weight": 1 } }, { "key": "1207", "source": "423", "target": "422", "attributes": { "weight": 2 } }, { "key": "15214", "source": "424", "target": "672", "attributes": { "weight": 2 } }, { "key": "6603", "source": "424", "target": "476", "attributes": { "weight": 3 } }, { "key": "23565", "source": "424", "target": "2252", "attributes": { "weight": 1 } }, { "key": "29368", "source": "424", "target": "861", "attributes": { "weight": 1 } }, { "key": "29365", "source": "424", "target": "857", "attributes": { "weight": 2 } }, { "key": "3011", "source": "424", "target": "7", "attributes": { "weight": 1 } }, { "key": "15213", "source": "424", "target": "455", "attributes": { "weight": 3 } }, { "key": "6601", "source": "424", "target": "467", "attributes": { "weight": 4 } }, { "key": "6605", "source": "424", "target": "490", "attributes": { "weight": 4 } }, { "key": "32306", "source": "424", "target": "2112", "attributes": { "weight": 1 } }, { "key": "32308", "source": "424", "target": "2211", "attributes": { "weight": 1 } }, { "key": "6600", "source": "424", "target": "188", "attributes": { "weight": 5 } }, { "key": "23564", "source": "424", "target": "2248", "attributes": { "weight": 1 } }, { "key": "6599", "source": "424", "target": "1356", "attributes": { "weight": 1 } }, { "key": "32187", "source": "424", "target": "1219", "attributes": { "weight": 1 } }, { "key": "6598", "source": "424", "target": "183", "attributes": { "weight": 5 } }, { "key": "31497", "source": "424", "target": "185", "attributes": { "weight": 1 } }, { "key": "29369", "source": "424", "target": "52", "attributes": { "weight": 1 } }, { "key": "16687", "source": "424", "target": "73", "attributes": { "weight": 1 } }, { "key": "31574", "source": "424", "target": "8", "attributes": { "weight": 1 } }, { "key": "23566", "source": "424", "target": "1312", "attributes": { "weight": 1 } }, { "key": "6602", "source": "424", "target": "189", "attributes": { "weight": 4 } }, { "key": "29367", "source": "424", "target": "674", "attributes": { "weight": 1 } }, { "key": "32309", "source": "424", "target": "352", "attributes": { "weight": 2 } }, { "key": "31575", "source": "424", "target": "823", "attributes": { "weight": 1 } }, { "key": "32186", "source": "424", "target": "435", "attributes": { "weight": 3 } }, { "key": "15212", "source": "424", "target": "454", "attributes": { "weight": 4 } }, { "key": "6597", "source": "424", "target": "182", "attributes": { "weight": 2 } }, { "key": "29364", "source": "424", "target": "856", "attributes": { "weight": 2 } }, { "key": "3010", "source": "424", "target": "791", "attributes": { "weight": 3 } }, { "key": "31499", "source": "424", "target": "485", "attributes": { "weight": 1 } }, { "key": "37060", "source": "424", "target": "1365", "attributes": { "weight": 1 } }, { "key": "3012", "source": "424", "target": "595", "attributes": { "weight": 2 } }, { "key": "23303", "source": "424", "target": "223", "attributes": { "weight": 2 } }, { "key": "29366", "source": "424", "target": "1522", "attributes": { "weight": 1 } }, { "key": "31496", "source": "424", "target": "3058", "attributes": { "weight": 1 } }, { "key": "31495", "source": "424", "target": "438", "attributes": { "weight": 1 } }, { "key": "16684", "source": "424", "target": "434", "attributes": { "weight": 1 } }, { "key": "31498", "source": "424", "target": "3059", "attributes": { "weight": 1 } }, { "key": "30494", "source": "424", "target": "479", "attributes": { "weight": 1 } }, { "key": "32690", "source": "424", "target": "1125", "attributes": { "weight": 1 } }, { "key": "32189", "source": "424", "target": "472", "attributes": { "weight": 5 } }, { "key": "6606", "source": "424", "target": "193", "attributes": { "weight": 3 } }, { "key": "16685", "source": "424", "target": "70", "attributes": { "weight": 1 } }, { "key": "37432", "source": "424", "target": "1247", "attributes": { "weight": 1 } }, { "key": "1229", "source": "424", "target": "224", "attributes": { "weight": 5 } }, { "key": "32188", "source": "424", "target": "135", "attributes": { "weight": 5 } }, { "key": "29371", "source": "424", "target": "869", "attributes": { "weight": 1 } }, { "key": "32689", "source": "424", "target": "2258", "attributes": { "weight": 2 } }, { "key": "32688", "source": "424", "target": "51", "attributes": { "weight": 2 } }, { "key": "1208", "source": "424", "target": "57", "attributes": { "weight": 3 } }, { "key": "32307", "source": "424", "target": "2114", "attributes": { "weight": 1 } }, { "key": "23242", "source": "424", "target": "192", "attributes": { "weight": 2 } }, { "key": "33191", "source": "424", "target": "425", "attributes": { "weight": 2 } }, { "key": "6604", "source": "424", "target": "1369", "attributes": { "weight": 3 } }, { "key": "16686", "source": "424", "target": "1389", "attributes": { "weight": 1 } }, { "key": "29370", "source": "424", "target": "232", "attributes": { "weight": 3 } }, { "key": "23243", "source": "424", "target": "495", "attributes": { "weight": 4 } }, { "key": "10798", "source": "424", "target": "457", "attributes": { "weight": 1 } }, { "key": "23563", "source": "424", "target": "220", "attributes": { "weight": 2 } }, { "key": "23241", "source": "424", "target": "187", "attributes": { "weight": 2 } }, { "key": "36983", "source": "424", "target": "3341", "attributes": { "weight": 1 } }, { "key": "26292", "source": "424", "target": "1258", "attributes": { "weight": 1 } }, { "key": "33299", "source": "425", "target": "494", "attributes": { "weight": 1 } }, { "key": "33272", "source": "425", "target": "674", "attributes": { "weight": 1 } }, { "key": "32326", "source": "425", "target": "791", "attributes": { "weight": 1 } }, { "key": "19520", "source": "425", "target": "449", "attributes": { "weight": 1 } }, { "key": "33268", "source": "425", "target": "49", "attributes": { "weight": 1 } }, { "key": "33281", "source": "425", "target": "470", "attributes": { "weight": 1 } }, { "key": "36984", "source": "425", "target": "1357", "attributes": { "weight": 1 } }, { "key": "33286", "source": "425", "target": "474", "attributes": { "weight": 1 } }, { "key": "33296", "source": "425", "target": "672", "attributes": { "weight": 1 } }, { "key": "33274", "source": "425", "target": "450", "attributes": { "weight": 1 } }, { "key": "1254", "source": "425", "target": "183", "attributes": { "weight": 1 } }, { "key": "33287", "source": "425", "target": "1088", "attributes": { "weight": 1 } }, { "key": "33269", "source": "425", "target": "50", "attributes": { "weight": 1 } }, { "key": "19521", "source": "425", "target": "489", "attributes": { "weight": 1 } }, { "key": "33292", "source": "425", "target": "2109", "attributes": { "weight": 1 } }, { "key": "4413", "source": "425", "target": "468", "attributes": { "weight": 3 } }, { "key": "6619", "source": "425", "target": "445", "attributes": { "weight": 3 } }, { "key": "33284", "source": "425", "target": "229", "attributes": { "weight": 1 } }, { "key": "26417", "source": "425", "target": "454", "attributes": { "weight": 3 } }, { "key": "33280", "source": "425", "target": "135", "attributes": { "weight": 1 } }, { "key": "33277", "source": "425", "target": "1738", "attributes": { "weight": 1 } }, { "key": "33289", "source": "425", "target": "1744", "attributes": { "weight": 1 } }, { "key": "6620", "source": "425", "target": "458", "attributes": { "weight": 2 } }, { "key": "33279", "source": "425", "target": "53", "attributes": { "weight": 1 } }, { "key": "33276", "source": "425", "target": "1358", "attributes": { "weight": 2 } }, { "key": "33033", "source": "425", "target": "1355", "attributes": { "weight": 1 } }, { "key": "8479", "source": "425", "target": "220", "attributes": { "weight": 3 } }, { "key": "26418", "source": "425", "target": "188", "attributes": { "weight": 3 } }, { "key": "27224", "source": "425", "target": "452", "attributes": { "weight": 2 } }, { "key": "33265", "source": "425", "target": "1107", "attributes": { "weight": 1 } }, { "key": "33264", "source": "425", "target": "429", "attributes": { "weight": 1 } }, { "key": "27222", "source": "425", "target": "130", "attributes": { "weight": 2 } }, { "key": "36986", "source": "425", "target": "483", "attributes": { "weight": 1 } }, { "key": "33278", "source": "425", "target": "464", "attributes": { "weight": 1 } }, { "key": "36987", "source": "425", "target": "3341", "attributes": { "weight": 1 } }, { "key": "33288", "source": "425", "target": "191", "attributes": { "weight": 1 } }, { "key": "1209", "source": "425", "target": "426", "attributes": { "weight": 1 } }, { "key": "33295", "source": "425", "target": "1374", "attributes": { "weight": 1 } }, { "key": "27226", "source": "425", "target": "479", "attributes": { "weight": 1 } }, { "key": "33270", "source": "425", "target": "440", "attributes": { "weight": 1 } }, { "key": "33294", "source": "425", "target": "488", "attributes": { "weight": 1 } }, { "key": "6624", "source": "425", "target": "56", "attributes": { "weight": 3 } }, { "key": "27225", "source": "425", "target": "1363", "attributes": { "weight": 1 } }, { "key": "33293", "source": "425", "target": "487", "attributes": { "weight": 1 } }, { "key": "33273", "source": "425", "target": "182", "attributes": { "weight": 1 } }, { "key": "6622", "source": "425", "target": "54", "attributes": { "weight": 3 } }, { "key": "33291", "source": "425", "target": "482", "attributes": { "weight": 1 } }, { "key": "33285", "source": "425", "target": "190", "attributes": { "weight": 1 } }, { "key": "36985", "source": "425", "target": "462", "attributes": { "weight": 1 } }, { "key": "6621", "source": "425", "target": "459", "attributes": { "weight": 1 } }, { "key": "27227", "source": "425", "target": "495", "attributes": { "weight": 2 } }, { "key": "33298", "source": "425", "target": "340", "attributes": { "weight": 1 } }, { "key": "29384", "source": "425", "target": "232", "attributes": { "weight": 1 } }, { "key": "6623", "source": "425", "target": "231", "attributes": { "weight": 3 } }, { "key": "33275", "source": "425", "target": "451", "attributes": { "weight": 1 } }, { "key": "33290", "source": "425", "target": "427", "attributes": { "weight": 1 } }, { "key": "33271", "source": "425", "target": "441", "attributes": { "weight": 1 } }, { "key": "33266", "source": "425", "target": "1354", "attributes": { "weight": 1 } }, { "key": "29383", "source": "425", "target": "857", "attributes": { "weight": 2 } }, { "key": "33297", "source": "425", "target": "233", "attributes": { "weight": 1 } }, { "key": "33283", "source": "425", "target": "472", "attributes": { "weight": 1 } }, { "key": "33282", "source": "425", "target": "471", "attributes": { "weight": 1 } }, { "key": "26419", "source": "425", "target": "189", "attributes": { "weight": 3 } }, { "key": "8480", "source": "425", "target": "442", "attributes": { "weight": 3 } }, { "key": "33267", "source": "425", "target": "424", "attributes": { "weight": 2 } }, { "key": "27223", "source": "425", "target": "223", "attributes": { "weight": 3 } }, { "key": "34983", "source": "426", "target": "13", "attributes": { "weight": 1 } }, { "key": "6823", "source": "426", "target": "193", "attributes": { "weight": 1 } }, { "key": "27857", "source": "426", "target": "891", "attributes": { "weight": 1 } }, { "key": "27405", "source": "426", "target": "2670", "attributes": { "weight": 1 } }, { "key": "34982", "source": "426", "target": "3", "attributes": { "weight": 1 } }, { "key": "23246", "source": "426", "target": "192", "attributes": { "weight": 1 } }, { "key": "33414", "source": "426", "target": "52", "attributes": { "weight": 1 } }, { "key": "1211", "source": "426", "target": "57", "attributes": { "weight": 2 } }, { "key": "37450", "source": "426", "target": "435", "attributes": { "weight": 1 } }, { "key": "34985", "source": "426", "target": "14", "attributes": { "weight": 1 } }, { "key": "15300", "source": "426", "target": "454", "attributes": { "weight": 1 } }, { "key": "6818", "source": "426", "target": "224", "attributes": { "weight": 1 } }, { "key": "15302", "source": "426", "target": "189", "attributes": { "weight": 1 } }, { "key": "23247", "source": "426", "target": "495", "attributes": { "weight": 2 } }, { "key": "6820", "source": "426", "target": "183", "attributes": { "weight": 4 } }, { "key": "6819", "source": "426", "target": "182", "attributes": { "weight": 1 } }, { "key": "27404", "source": "426", "target": "339", "attributes": { "weight": 2 } }, { "key": "6821", "source": "426", "target": "467", "attributes": { "weight": 1 } }, { "key": "34986", "source": "426", "target": "352", "attributes": { "weight": 1 } }, { "key": "6822", "source": "426", "target": "476", "attributes": { "weight": 1 } }, { "key": "27858", "source": "426", "target": "791", "attributes": { "weight": 2 } }, { "key": "15301", "source": "426", "target": "188", "attributes": { "weight": 1 } }, { "key": "32209", "source": "426", "target": "472", "attributes": { "weight": 4 } }, { "key": "32208", "source": "426", "target": "135", "attributes": { "weight": 5 } }, { "key": "34984", "source": "426", "target": "595", "attributes": { "weight": 1 } }, { "key": "1210", "source": "426", "target": "425", "attributes": { "weight": 1 } }, { "key": "1212", "source": "427", "target": "57", "attributes": { "weight": 2 } }, { "key": "1545", "source": "427", "target": "188", "attributes": { "weight": 1 } }, { "key": "1547", "source": "427", "target": "193", "attributes": { "weight": 1 } }, { "key": "29049", "source": "427", "target": "495", "attributes": { "weight": 1 } }, { "key": "29135", "source": "427", "target": "500", "attributes": { "weight": 1 } }, { "key": "31551", "source": "427", "target": "135", "attributes": { "weight": 1 } }, { "key": "1543", "source": "427", "target": "183", "attributes": { "weight": 1 } }, { "key": "25110", "source": "427", "target": "454", "attributes": { "weight": 2 } }, { "key": "29448", "source": "427", "target": "232", "attributes": { "weight": 1 } }, { "key": "32589", "source": "427", "target": "791", "attributes": { "weight": 1 } }, { "key": "25112", "source": "427", "target": "189", "attributes": { "weight": 2 } }, { "key": "25111", "source": "427", "target": "1547", "attributes": { "weight": 1 } }, { "key": "1546", "source": "427", "target": "490", "attributes": { "weight": 1 } }, { "key": "31356", "source": "427", "target": "674", "attributes": { "weight": 1 } }, { "key": "1544", "source": "427", "target": "455", "attributes": { "weight": 1 } }, { "key": "33636", "source": "427", "target": "425", "attributes": { "weight": 1 } }, { "key": "27293", "source": "427", "target": "52", "attributes": { "weight": 2 } }, { "key": "36101", "source": "428", "target": "186", "attributes": { "weight": 1 } }, { "key": "1213", "source": "428", "target": "57", "attributes": { "weight": 2 } }, { "key": "25389", "source": "428", "target": "433", "attributes": { "weight": 1 } }, { "key": "29514", "source": "428", "target": "232", "attributes": { "weight": 1 } }, { "key": "29053", "source": "428", "target": "495", "attributes": { "weight": 1 } }, { "key": "36097", "source": "428", "target": "224", "attributes": { "weight": 1 } }, { "key": "36104", "source": "428", "target": "2258", "attributes": { "weight": 1 } }, { "key": "21601", "source": "428", "target": "358", "attributes": { "weight": 1 } }, { "key": "31554", "source": "428", "target": "672", "attributes": { "weight": 1 } }, { "key": "36099", "source": "428", "target": "448", "attributes": { "weight": 1 } }, { "key": "36096", "source": "428", "target": "221", "attributes": { "weight": 1 } }, { "key": "36107", "source": "428", "target": "2262", "attributes": { "weight": 1 } }, { "key": "36098", "source": "428", "target": "2245", "attributes": { "weight": 1 } }, { "key": "36102", "source": "428", "target": "1998", "attributes": { "weight": 1 } }, { "key": "11273", "source": "428", "target": "452", "attributes": { "weight": 1 } }, { "key": "36103", "source": "428", "target": "2253", "attributes": { "weight": 1 } }, { "key": "36106", "source": "428", "target": "1741", "attributes": { "weight": 1 } }, { "key": "32600", "source": "428", "target": "791", "attributes": { "weight": 1 } }, { "key": "36108", "source": "428", "target": "235", "attributes": { "weight": 1 } }, { "key": "29143", "source": "428", "target": "500", "attributes": { "weight": 1 } }, { "key": "25114", "source": "428", "target": "1547", "attributes": { "weight": 1 } }, { "key": "36100", "source": "428", "target": "2248", "attributes": { "weight": 1 } }, { "key": "23917", "source": "429", "target": "471", "attributes": { "weight": 2 } }, { "key": "17125", "source": "429", "target": "2108", "attributes": { "weight": 2 } }, { "key": "4268", "source": "429", "target": "468", "attributes": { "weight": 2 } }, { "key": "19133", "source": "429", "target": "222", "attributes": { "weight": 1 } }, { "key": "28926", "source": "429", "target": "479", "attributes": { "weight": 1 } }, { "key": "19134", "source": "429", "target": "2106", "attributes": { "weight": 1 } }, { "key": "16602", "source": "429", "target": "434", "attributes": { "weight": 1 } }, { "key": "19157", "source": "429", "target": "1741", "attributes": { "weight": 1 } }, { "key": "23922", "source": "429", "target": "1711", "attributes": { "weight": 3 } }, { "key": "23913", "source": "429", "target": "3", "attributes": { "weight": 2 } }, { "key": "23918", "source": "429", "target": "2469", "attributes": { "weight": 2 } }, { "key": "19164", "source": "429", "target": "2109", "attributes": { "weight": 3 } }, { "key": "17123", "source": "429", "target": "1161", "attributes": { "weight": 1 } }, { "key": "23911", "source": "429", "target": "437", "attributes": { "weight": 2 } }, { "key": "19156", "source": "429", "target": "472", "attributes": { "weight": 5 } }, { "key": "19129", "source": "429", "target": "130", "attributes": { "weight": 3 } }, { "key": "33167", "source": "429", "target": "425", "attributes": { "weight": 1 } }, { "key": "19141", "source": "429", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19130", "source": "429", "target": "221", "attributes": { "weight": 1 } }, { "key": "11823", "source": "429", "target": "1363", "attributes": { "weight": 2 } }, { "key": "19163", "source": "429", "target": "2267", "attributes": { "weight": 1 } }, { "key": "19161", "source": "429", "target": "476", "attributes": { "weight": 1 } }, { "key": "34923", "source": "429", "target": "352", "attributes": { "weight": 1 } }, { "key": "19139", "source": "429", "target": "1023", "attributes": { "weight": 1 } }, { "key": "33168", "source": "429", "target": "473", "attributes": { "weight": 1 } }, { "key": "8257", "source": "429", "target": "442", "attributes": { "weight": 3 } }, { "key": "19137", "source": "429", "target": "223", "attributes": { "weight": 5 } }, { "key": "19146", "source": "429", "target": "453", "attributes": { "weight": 1 } }, { "key": "19140", "source": "429", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19170", "source": "429", "target": "498", "attributes": { "weight": 1 } }, { "key": "23924", "source": "429", "target": "1375", "attributes": { "weight": 1 } }, { "key": "6571", "source": "429", "target": "183", "attributes": { "weight": 2 } }, { "key": "6573", "source": "429", "target": "189", "attributes": { "weight": 5 } }, { "key": "16608", "source": "429", "target": "1389", "attributes": { "weight": 1 } }, { "key": "16607", "source": "429", "target": "1337", "attributes": { "weight": 1 } }, { "key": "16610", "source": "429", "target": "497", "attributes": { "weight": 1 } }, { "key": "26980", "source": "429", "target": "2645", "attributes": { "weight": 2 } }, { "key": "6574", "source": "429", "target": "231", "attributes": { "weight": 5 } }, { "key": "19158", "source": "429", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19145", "source": "429", "target": "1832", "attributes": { "weight": 3 } }, { "key": "16600", "source": "429", "target": "1754", "attributes": { "weight": 1 } }, { "key": "19131", "source": "429", "target": "435", "attributes": { "weight": 2 } }, { "key": "19160", "source": "429", "target": "2261", "attributes": { "weight": 1 } }, { "key": "1219", "source": "429", "target": "193", "attributes": { "weight": 2 } }, { "key": "19153", "source": "429", "target": "464", "attributes": { "weight": 1 } }, { "key": "19155", "source": "429", "target": "1836", "attributes": { "weight": 2 } }, { "key": "11824", "source": "429", "target": "135", "attributes": { "weight": 6 } }, { "key": "33169", "source": "429", "target": "2110", "attributes": { "weight": 1 } }, { "key": "23919", "source": "429", "target": "1088", "attributes": { "weight": 2 } }, { "key": "23920", "source": "429", "target": "1125", "attributes": { "weight": 3 } }, { "key": "19144", "source": "429", "target": "2248", "attributes": { "weight": 2 } }, { "key": "23923", "source": "429", "target": "233", "attributes": { "weight": 2 } }, { "key": "23914", "source": "429", "target": "455", "attributes": { "weight": 2 } }, { "key": "19154", "source": "429", "target": "1247", "attributes": { "weight": 2 } }, { "key": "19138", "source": "429", "target": "2025", "attributes": { "weight": 1 } }, { "key": "27212", "source": "429", "target": "57", "attributes": { "weight": 1 } }, { "key": "31571", "source": "429", "target": "595", "attributes": { "weight": 2 } }, { "key": "19166", "source": "429", "target": "489", "attributes": { "weight": 2 } }, { "key": "26288", "source": "429", "target": "1258", "attributes": { "weight": 1 } }, { "key": "26287", "source": "429", "target": "1111", "attributes": { "weight": 1 } }, { "key": "23509", "source": "429", "target": "220", "attributes": { "weight": 3 } }, { "key": "19135", "source": "429", "target": "438", "attributes": { "weight": 1 } }, { "key": "19136", "source": "429", "target": "51", "attributes": { "weight": 2 } }, { "key": "23921", "source": "429", "target": "2470", "attributes": { "weight": 2 } }, { "key": "35269", "source": "429", "target": "50", "attributes": { "weight": 1 } }, { "key": "32686", "source": "429", "target": "2258", "attributes": { "weight": 3 } }, { "key": "19167", "source": "429", "target": "1751", "attributes": { "weight": 1 } }, { "key": "23301", "source": "429", "target": "1121", "attributes": { "weight": 1 } }, { "key": "32949", "source": "429", "target": "154", "attributes": { "weight": 1 } }, { "key": "1218", "source": "429", "target": "490", "attributes": { "weight": 2 } }, { "key": "23915", "source": "429", "target": "54", "attributes": { "weight": 2 } }, { "key": "16606", "source": "429", "target": "2095", "attributes": { "weight": 2 } }, { "key": "19152", "source": "429", "target": "459", "attributes": { "weight": 2 } }, { "key": "16603", "source": "429", "target": "674", "attributes": { "weight": 4 } }, { "key": "16605", "source": "429", "target": "70", "attributes": { "weight": 2 } }, { "key": "26982", "source": "429", "target": "1219", "attributes": { "weight": 3 } }, { "key": "18314", "source": "429", "target": "1092", "attributes": { "weight": 1 } }, { "key": "30750", "source": "429", "target": "470", "attributes": { "weight": 2 } }, { "key": "16604", "source": "429", "target": "1118", "attributes": { "weight": 2 } }, { "key": "19128", "source": "429", "target": "1808", "attributes": { "weight": 1 } }, { "key": "32299", "source": "429", "target": "791", "attributes": { "weight": 1 } }, { "key": "17126", "source": "429", "target": "2111", "attributes": { "weight": 2 } }, { "key": "10949", "source": "429", "target": "452", "attributes": { "weight": 3 } }, { "key": "19148", "source": "429", "target": "1356", "attributes": { "weight": 1 } }, { "key": "19149", "source": "429", "target": "1998", "attributes": { "weight": 1 } }, { "key": "19132", "source": "429", "target": "1522", "attributes": { "weight": 1 } }, { "key": "35794", "source": "429", "target": "440", "attributes": { "weight": 1 } }, { "key": "19168", "source": "429", "target": "235", "attributes": { "weight": 1 } }, { "key": "6572", "source": "429", "target": "188", "attributes": { "weight": 4 } }, { "key": "27211", "source": "429", "target": "52", "attributes": { "weight": 2 } }, { "key": "23912", "source": "429", "target": "446", "attributes": { "weight": 3 } }, { "key": "10793", "source": "429", "target": "457", "attributes": { "weight": 2 } }, { "key": "26983", "source": "429", "target": "1282", "attributes": { "weight": 3 } }, { "key": "12123", "source": "429", "target": "1535", "attributes": { "weight": 1 } }, { "key": "6570", "source": "429", "target": "224", "attributes": { "weight": 3 } }, { "key": "17124", "source": "429", "target": "449", "attributes": { "weight": 2 } }, { "key": "33170", "source": "429", "target": "672", "attributes": { "weight": 1 } }, { "key": "19143", "source": "429", "target": "450", "attributes": { "weight": 2 } }, { "key": "10388", "source": "429", "target": "225", "attributes": { "weight": 2 } }, { "key": "23916", "source": "429", "target": "228", "attributes": { "weight": 2 } }, { "key": "23510", "source": "429", "target": "1312", "attributes": { "weight": 1 } }, { "key": "19169", "source": "429", "target": "2275", "attributes": { "weight": 1 } }, { "key": "12124", "source": "429", "target": "1564", "attributes": { "weight": 1 } }, { "key": "6575", "source": "429", "target": "495", "attributes": { "weight": 2 } }, { "key": "19162", "source": "429", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19147", "source": "429", "target": "186", "attributes": { "weight": 1 } }, { "key": "26386", "source": "429", "target": "454", "attributes": { "weight": 1 } }, { "key": "16601", "source": "429", "target": "59", "attributes": { "weight": 2 } }, { "key": "19142", "source": "429", "target": "448", "attributes": { "weight": 1 } }, { "key": "16609", "source": "429", "target": "73", "attributes": { "weight": 2 } }, { "key": "19159", "source": "429", "target": "1838", "attributes": { "weight": 1 } }, { "key": "19150", "source": "429", "target": "2088", "attributes": { "weight": 1 } }, { "key": "26981", "source": "429", "target": "2105", "attributes": { "weight": 1 } }, { "key": "19151", "source": "429", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19165", "source": "429", "target": "2271", "attributes": { "weight": 1 } }, { "key": "9158", "source": "430", "target": "34", "attributes": { "weight": 1 } }, { "key": "9170", "source": "430", "target": "339", "attributes": { "weight": 2 } }, { "key": "9194", "source": "430", "target": "1590", "attributes": { "weight": 1 } }, { "key": "9177", "source": "430", "target": "1583", "attributes": { "weight": 1 } }, { "key": "9165", "source": "430", "target": "36", "attributes": { "weight": 1 } }, { "key": "9209", "source": "430", "target": "1597", "attributes": { "weight": 1 } }, { "key": "9199", "source": "430", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9164", "source": "430", "target": "1573", "attributes": { "weight": 1 } }, { "key": "9160", "source": "430", "target": "889", "attributes": { "weight": 2 } }, { "key": "9167", "source": "430", "target": "50", "attributes": { "weight": 1 } }, { "key": "9191", "source": "430", "target": "471", "attributes": { "weight": 2 } }, { "key": "11827", "source": "430", "target": "135", "attributes": { "weight": 1 } }, { "key": "9212", "source": "430", "target": "495", "attributes": { "weight": 1 } }, { "key": "9168", "source": "430", "target": "223", "attributes": { "weight": 1 } }, { "key": "9185", "source": "430", "target": "1588", "attributes": { "weight": 1 } }, { "key": "9159", "source": "430", "target": "1354", "attributes": { "weight": 1 } }, { "key": "8268", "source": "430", "target": "1087", "attributes": { "weight": 3 } }, { "key": "9186", "source": "430", "target": "791", "attributes": { "weight": 2 } }, { "key": "9166", "source": "430", "target": "1574", "attributes": { "weight": 1 } }, { "key": "30332", "source": "430", "target": "1046", "attributes": { "weight": 1 } }, { "key": "8267", "source": "430", "target": "442", "attributes": { "weight": 5 } }, { "key": "9188", "source": "430", "target": "1121", "attributes": { "weight": 2 } }, { "key": "9207", "source": "430", "target": "1596", "attributes": { "weight": 1 } }, { "key": "9200", "source": "430", "target": "42", "attributes": { "weight": 1 } }, { "key": "9171", "source": "430", "target": "225", "attributes": { "weight": 2 } }, { "key": "9184", "source": "430", "target": "1586", "attributes": { "weight": 1 } }, { "key": "25904", "source": "430", "target": "1367", "attributes": { "weight": 1 } }, { "key": "9169", "source": "430", "target": "1576", "attributes": { "weight": 1 } }, { "key": "9179", "source": "430", "target": "452", "attributes": { "weight": 2 } }, { "key": "9197", "source": "430", "target": "1591", "attributes": { "weight": 1 } }, { "key": "9211", "source": "430", "target": "493", "attributes": { "weight": 2 } }, { "key": "9157", "source": "430", "target": "1571", "attributes": { "weight": 1 } }, { "key": "9213", "source": "430", "target": "154", "attributes": { "weight": 1 } }, { "key": "9176", "source": "430", "target": "1581", "attributes": { "weight": 1 } }, { "key": "9183", "source": "430", "target": "1585", "attributes": { "weight": 1 } }, { "key": "9180", "source": "430", "target": "454", "attributes": { "weight": 2 } }, { "key": "9161", "source": "430", "target": "1572", "attributes": { "weight": 1 } }, { "key": "9190", "source": "430", "target": "228", "attributes": { "weight": 2 } }, { "key": "9187", "source": "430", "target": "468", "attributes": { "weight": 1 } }, { "key": "9198", "source": "430", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9193", "source": "430", "target": "473", "attributes": { "weight": 1 } }, { "key": "1220", "source": "430", "target": "224", "attributes": { "weight": 1 } }, { "key": "9192", "source": "430", "target": "1589", "attributes": { "weight": 1 } }, { "key": "9173", "source": "430", "target": "1580", "attributes": { "weight": 1 } }, { "key": "9181", "source": "430", "target": "1584", "attributes": { "weight": 1 } }, { "key": "9195", "source": "430", "target": "474", "attributes": { "weight": 1 } }, { "key": "9208", "source": "430", "target": "894", "attributes": { "weight": 2 } }, { "key": "9196", "source": "430", "target": "41", "attributes": { "weight": 1 } }, { "key": "9203", "source": "430", "target": "1593", "attributes": { "weight": 1 } }, { "key": "9204", "source": "430", "target": "595", "attributes": { "weight": 1 } }, { "key": "9210", "source": "430", "target": "233", "attributes": { "weight": 2 } }, { "key": "9206", "source": "430", "target": "1595", "attributes": { "weight": 1 } }, { "key": "9175", "source": "430", "target": "358", "attributes": { "weight": 2 } }, { "key": "9162", "source": "430", "target": "130", "attributes": { "weight": 3 } }, { "key": "9205", "source": "430", "target": "1594", "attributes": { "weight": 1 } }, { "key": "31839", "source": "430", "target": "2115", "attributes": { "weight": 1 } }, { "key": "9201", "source": "430", "target": "304", "attributes": { "weight": 1 } }, { "key": "9182", "source": "430", "target": "52", "attributes": { "weight": 1 } }, { "key": "9202", "source": "430", "target": "231", "attributes": { "weight": 1 } }, { "key": "9189", "source": "430", "target": "470", "attributes": { "weight": 2 } }, { "key": "9174", "source": "430", "target": "39", "attributes": { "weight": 1 } }, { "key": "9163", "source": "430", "target": "1520", "attributes": { "weight": 1 } }, { "key": "9178", "source": "430", "target": "1115", "attributes": { "weight": 1 } }, { "key": "9172", "source": "430", "target": "1579", "attributes": { "weight": 1 } }, { "key": "26388", "source": "431", "target": "189", "attributes": { "weight": 1 } }, { "key": "10983", "source": "431", "target": "452", "attributes": { "weight": 1 } }, { "key": "19238", "source": "431", "target": "2189", "attributes": { "weight": 1 } }, { "key": "1223", "source": "431", "target": "193", "attributes": { "weight": 1 } }, { "key": "19237", "source": "431", "target": "489", "attributes": { "weight": 1 } }, { "key": "35275", "source": "431", "target": "445", "attributes": { "weight": 1 } }, { "key": "1222", "source": "431", "target": "183", "attributes": { "weight": 1 } }, { "key": "19235", "source": "431", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19236", "source": "431", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19234", "source": "431", "target": "1756", "attributes": { "weight": 1 } }, { "key": "3880", "source": "432", "target": "460", "attributes": { "weight": 2 } }, { "key": "3888", "source": "432", "target": "466", "attributes": { "weight": 2 } }, { "key": "3909", "source": "432", "target": "487", "attributes": { "weight": 3 } }, { "key": "3862", "source": "432", "target": "339", "attributes": { "weight": 2 } }, { "key": "3895", "source": "432", "target": "471", "attributes": { "weight": 2 } }, { "key": "19241", "source": "432", "target": "489", "attributes": { "weight": 1 } }, { "key": "3840", "source": "432", "target": "1065", "attributes": { "weight": 1 } }, { "key": "27214", "source": "432", "target": "57", "attributes": { "weight": 1 } }, { "key": "3867", "source": "432", "target": "183", "attributes": { "weight": 2 } }, { "key": "29837", "source": "432", "target": "1024", "attributes": { "weight": 1 } }, { "key": "29111", "source": "432", "target": "488", "attributes": { "weight": 1 } }, { "key": "29362", "source": "432", "target": "857", "attributes": { "weight": 1 } }, { "key": "3894", "source": "432", "target": "228", "attributes": { "weight": 3 } }, { "key": "3872", "source": "432", "target": "891", "attributes": { "weight": 2 } }, { "key": "19239", "source": "432", "target": "221", "attributes": { "weight": 1 } }, { "key": "32950", "source": "432", "target": "154", "attributes": { "weight": 1 } }, { "key": "19240", "source": "432", "target": "1812", "attributes": { "weight": 1 } }, { "key": "3870", "source": "432", "target": "454", "attributes": { "weight": 2 } }, { "key": "3883", "source": "432", "target": "1078", "attributes": { "weight": 2 } }, { "key": "3884", "source": "432", "target": "461", "attributes": { "weight": 2 } }, { "key": "22834", "source": "432", "target": "3417", "attributes": { "weight": 1 } }, { "key": "3899", "source": "432", "target": "1087", "attributes": { "weight": 3 } }, { "key": "3898", "source": "432", "target": "1086", "attributes": { "weight": 2 } }, { "key": "3906", "source": "432", "target": "1090", "attributes": { "weight": 3 } }, { "key": "30698", "source": "432", "target": "889", "attributes": { "weight": 1 } }, { "key": "3878", "source": "432", "target": "1064", "attributes": { "weight": 2 } }, { "key": "3905", "source": "432", "target": "1089", "attributes": { "weight": 2 } }, { "key": "29110", "source": "432", "target": "447", "attributes": { "weight": 1 } }, { "key": "17332", "source": "432", "target": "358", "attributes": { "weight": 1 } }, { "key": "3859", "source": "432", "target": "433", "attributes": { "weight": 3 } }, { "key": "9942", "source": "432", "target": "494", "attributes": { "weight": 2 } }, { "key": "3875", "source": "432", "target": "1073", "attributes": { "weight": 2 } }, { "key": "3601", "source": "432", "target": "1025", "attributes": { "weight": 1 } }, { "key": "3903", "source": "432", "target": "70", "attributes": { "weight": 3 } }, { "key": "3919", "source": "432", "target": "1094", "attributes": { "weight": 2 } }, { "key": "16681", "source": "432", "target": "59", "attributes": { "weight": 2 } }, { "key": "3876", "source": "432", "target": "791", "attributes": { "weight": 3 } }, { "key": "23561", "source": "432", "target": "220", "attributes": { "weight": 2 } }, { "key": "3856", "source": "432", "target": "1036", "attributes": { "weight": 2 } }, { "key": "3916", "source": "432", "target": "193", "attributes": { "weight": 2 } }, { "key": "3897", "source": "432", "target": "1085", "attributes": { "weight": 2 } }, { "key": "3910", "source": "432", "target": "1091", "attributes": { "weight": 2 } }, { "key": "3871", "source": "432", "target": "52", "attributes": { "weight": 3 } }, { "key": "3858", "source": "432", "target": "130", "attributes": { "weight": 4 } }, { "key": "1227", "source": "432", "target": "224", "attributes": { "weight": 1 } }, { "key": "3918", "source": "432", "target": "497", "attributes": { "weight": 2 } }, { "key": "3881", "source": "432", "target": "1076", "attributes": { "weight": 2 } }, { "key": "3901", "source": "432", "target": "473", "attributes": { "weight": 3 } }, { "key": "23562", "source": "432", "target": "2248", "attributes": { "weight": 1 } }, { "key": "1228", "source": "432", "target": "490", "attributes": { "weight": 1 } }, { "key": "30318", "source": "432", "target": "693", "attributes": { "weight": 1 } }, { "key": "3890", "source": "432", "target": "8", "attributes": { "weight": 1 } }, { "key": "3891", "source": "432", "target": "468", "attributes": { "weight": 4 } }, { "key": "33740", "source": "432", "target": "682", "attributes": { "weight": 1 } }, { "key": "27509", "source": "432", "target": "1520", "attributes": { "weight": 1 } }, { "key": "3864", "source": "432", "target": "443", "attributes": { "weight": 2 } }, { "key": "3911", "source": "432", "target": "1067", "attributes": { "weight": 2 } }, { "key": "3917", "source": "432", "target": "495", "attributes": { "weight": 2 } }, { "key": "3892", "source": "432", "target": "1083", "attributes": { "weight": 2 } }, { "key": "3863", "source": "432", "target": "442", "attributes": { "weight": 3 } }, { "key": "3904", "source": "432", "target": "1026", "attributes": { "weight": 3 } }, { "key": "3893", "source": "432", "target": "1084", "attributes": { "weight": 2 } }, { "key": "32951", "source": "432", "target": "1063", "attributes": { "weight": 1 } }, { "key": "3857", "source": "432", "target": "1069", "attributes": { "weight": 2 } }, { "key": "3913", "source": "432", "target": "673", "attributes": { "weight": 1 } }, { "key": "12662", "source": "432", "target": "695", "attributes": { "weight": 1 } }, { "key": "32687", "source": "432", "target": "1125", "attributes": { "weight": 2 } }, { "key": "3879", "source": "432", "target": "1075", "attributes": { "weight": 2 } }, { "key": "29363", "source": "432", "target": "232", "attributes": { "weight": 1 } }, { "key": "33187", "source": "432", "target": "450", "attributes": { "weight": 1 } }, { "key": "33190", "source": "432", "target": "672", "attributes": { "weight": 1 } }, { "key": "16682", "source": "432", "target": "674", "attributes": { "weight": 2 } }, { "key": "22833", "source": "432", "target": "2393", "attributes": { "weight": 1 } }, { "key": "3886", "source": "432", "target": "462", "attributes": { "weight": 2 } }, { "key": "3855", "source": "432", "target": "1068", "attributes": { "weight": 2 } }, { "key": "3914", "source": "432", "target": "1093", "attributes": { "weight": 2 } }, { "key": "3887", "source": "432", "target": "1080", "attributes": { "weight": 2 } }, { "key": "3907", "source": "432", "target": "479", "attributes": { "weight": 1 } }, { "key": "3908", "source": "432", "target": "483", "attributes": { "weight": 3 } }, { "key": "3868", "source": "432", "target": "1071", "attributes": { "weight": 2 } }, { "key": "17132", "source": "432", "target": "449", "attributes": { "weight": 1 } }, { "key": "3896", "source": "432", "target": "472", "attributes": { "weight": 3 } }, { "key": "3915", "source": "432", "target": "340", "attributes": { "weight": 2 } }, { "key": "3874", "source": "432", "target": "1072", "attributes": { "weight": 1 } }, { "key": "25905", "source": "432", "target": "1367", "attributes": { "weight": 1 } }, { "key": "3861", "source": "432", "target": "440", "attributes": { "weight": 1 } }, { "key": "3882", "source": "432", "target": "1077", "attributes": { "weight": 2 } }, { "key": "33189", "source": "432", "target": "135", "attributes": { "weight": 1 } }, { "key": "3902", "source": "432", "target": "1088", "attributes": { "weight": 2 } }, { "key": "3889", "source": "432", "target": "53", "attributes": { "weight": 4 } }, { "key": "3877", "source": "432", "target": "1074", "attributes": { "weight": 2 } }, { "key": "3885", "source": "432", "target": "1079", "attributes": { "weight": 2 } }, { "key": "3869", "source": "432", "target": "452", "attributes": { "weight": 4 } }, { "key": "3860", "source": "432", "target": "223", "attributes": { "weight": 2 } }, { "key": "3865", "source": "432", "target": "1070", "attributes": { "weight": 3 } }, { "key": "33188", "source": "432", "target": "188", "attributes": { "weight": 1 } }, { "key": "14172", "source": "432", "target": "1046", "attributes": { "weight": 2 } }, { "key": "31573", "source": "432", "target": "595", "attributes": { "weight": 1 } }, { "key": "3912", "source": "432", "target": "1092", "attributes": { "weight": 4 } }, { "key": "3866", "source": "432", "target": "3", "attributes": { "weight": 2 } }, { "key": "3900", "source": "432", "target": "189", "attributes": { "weight": 3 } }, { "key": "16683", "source": "432", "target": "457", "attributes": { "weight": 1 } }, { "key": "8291", "source": "432", "target": "233", "attributes": { "weight": 1 } }, { "key": "3873", "source": "432", "target": "458", "attributes": { "weight": 4 } }, { "key": "25354", "source": "433", "target": "2529", "attributes": { "weight": 1 } }, { "key": "25360", "source": "433", "target": "479", "attributes": { "weight": 1 } }, { "key": "25367", "source": "433", "target": "247", "attributes": { "weight": 2 } }, { "key": "25366", "source": "433", "target": "1775", "attributes": { "weight": 2 } }, { "key": "25359", "source": "433", "target": "1026", "attributes": { "weight": 2 } }, { "key": "33026", "source": "433", "target": "493", "attributes": { "weight": 1 } }, { "key": "18048", "source": "433", "target": "468", "attributes": { "weight": 2 } }, { "key": "18097", "source": "433", "target": "52", "attributes": { "weight": 3 } }, { "key": "16697", "source": "433", "target": "59", "attributes": { "weight": 3 } }, { "key": "25364", "source": "433", "target": "1092", "attributes": { "weight": 1 } }, { "key": "1236", "source": "433", "target": "490", "attributes": { "weight": 3 } }, { "key": "6612", "source": "433", "target": "454", "attributes": { "weight": 5 } }, { "key": "25357", "source": "433", "target": "53", "attributes": { "weight": 2 } }, { "key": "11008", "source": "433", "target": "473", "attributes": { "weight": 3 } }, { "key": "35805", "source": "433", "target": "2248", "attributes": { "weight": 1 } }, { "key": "35812", "source": "433", "target": "73", "attributes": { "weight": 1 } }, { "key": "18047", "source": "433", "target": "1036", "attributes": { "weight": 2 } }, { "key": "16698", "source": "433", "target": "70", "attributes": { "weight": 1 } }, { "key": "11331", "source": "433", "target": "440", "attributes": { "weight": 2 } }, { "key": "6613", "source": "433", "target": "193", "attributes": { "weight": 2 } }, { "key": "11007", "source": "433", "target": "452", "attributes": { "weight": 3 } }, { "key": "25369", "source": "433", "target": "2208", "attributes": { "weight": 1 } }, { "key": "25362", "source": "433", "target": "487", "attributes": { "weight": 1 } }, { "key": "25368", "source": "433", "target": "340", "attributes": { "weight": 1 } }, { "key": "35810", "source": "433", "target": "1741", "attributes": { "weight": 1 } }, { "key": "35808", "source": "433", "target": "2258", "attributes": { "weight": 1 } }, { "key": "8436", "source": "433", "target": "442", "attributes": { "weight": 2 } }, { "key": "30337", "source": "433", "target": "2211", "attributes": { "weight": 1 } }, { "key": "26391", "source": "433", "target": "189", "attributes": { "weight": 2 } }, { "key": "3923", "source": "433", "target": "432", "attributes": { "weight": 3 } }, { "key": "25355", "source": "433", "target": "223", "attributes": { "weight": 1 } }, { "key": "35811", "source": "433", "target": "2262", "attributes": { "weight": 1 } }, { "key": "25365", "source": "433", "target": "595", "attributes": { "weight": 2 } }, { "key": "35802", "source": "433", "target": "1023", "attributes": { "weight": 1 } }, { "key": "25356", "source": "433", "target": "674", "attributes": { "weight": 1 } }, { "key": "21506", "source": "433", "target": "358", "attributes": { "weight": 1 } }, { "key": "35806", "source": "433", "target": "186", "attributes": { "weight": 1 } }, { "key": "24763", "source": "433", "target": "486", "attributes": { "weight": 2 } }, { "key": "25370", "source": "433", "target": "495", "attributes": { "weight": 2 } }, { "key": "25358", "source": "433", "target": "1547", "attributes": { "weight": 1 } }, { "key": "18046", "source": "433", "target": "220", "attributes": { "weight": 2 } }, { "key": "6611", "source": "433", "target": "183", "attributes": { "weight": 2 } }, { "key": "25371", "source": "433", "target": "497", "attributes": { "weight": 2 } }, { "key": "25372", "source": "433", "target": "57", "attributes": { "weight": 2 } }, { "key": "35807", "source": "433", "target": "1998", "attributes": { "weight": 1 } }, { "key": "29112", "source": "433", "target": "488", "attributes": { "weight": 1 } }, { "key": "35803", "source": "433", "target": "2245", "attributes": { "weight": 1 } }, { "key": "25363", "source": "433", "target": "428", "attributes": { "weight": 1 } }, { "key": "32313", "source": "433", "target": "791", "attributes": { "weight": 1 } }, { "key": "25361", "source": "433", "target": "232", "attributes": { "weight": 2 } }, { "key": "35804", "source": "433", "target": "448", "attributes": { "weight": 1 } }, { "key": "16712", "source": "434", "target": "135", "attributes": { "weight": 2 } }, { "key": "36255", "source": "434", "target": "3286", "attributes": { "weight": 1 } }, { "key": "16701", "source": "434", "target": "59", "attributes": { "weight": 2 } }, { "key": "16720", "source": "434", "target": "672", "attributes": { "weight": 1 } }, { "key": "36250", "source": "434", "target": "3280", "attributes": { "weight": 1 } }, { "key": "35814", "source": "434", "target": "465", "attributes": { "weight": 1 } }, { "key": "36258", "source": "434", "target": "2081", "attributes": { "weight": 1 } }, { "key": "16710", "source": "434", "target": "1738", "attributes": { "weight": 1 } }, { "key": "16718", "source": "434", "target": "479", "attributes": { "weight": 1 } }, { "key": "12665", "source": "434", "target": "695", "attributes": { "weight": 2 } }, { "key": "36257", "source": "434", "target": "1863", "attributes": { "weight": 1 } }, { "key": "16707", "source": "434", "target": "450", "attributes": { "weight": 1 } }, { "key": "16714", "source": "434", "target": "474", "attributes": { "weight": 1 } }, { "key": "16708", "source": "434", "target": "452", "attributes": { "weight": 1 } }, { "key": "16719", "source": "434", "target": "1337", "attributes": { "weight": 4 } }, { "key": "35813", "source": "434", "target": "1360", "attributes": { "weight": 1 } }, { "key": "11011", "source": "434", "target": "220", "attributes": { "weight": 2 } }, { "key": "30649", "source": "434", "target": "2994", "attributes": { "weight": 1 } }, { "key": "16713", "source": "434", "target": "54", "attributes": { "weight": 1 } }, { "key": "16699", "source": "434", "target": "429", "attributes": { "weight": 1 } }, { "key": "36256", "source": "434", "target": "1764", "attributes": { "weight": 1 } }, { "key": "16721", "source": "434", "target": "1389", "attributes": { "weight": 3 } }, { "key": "16703", "source": "434", "target": "130", "attributes": { "weight": 3 } }, { "key": "31245", "source": "434", "target": "472", "attributes": { "weight": 1 } }, { "key": "31243", "source": "434", "target": "1141", "attributes": { "weight": 2 } }, { "key": "16715", "source": "434", "target": "1125", "attributes": { "weight": 1 } }, { "key": "36259", "source": "434", "target": "3299", "attributes": { "weight": 1 } }, { "key": "16700", "source": "434", "target": "1354", "attributes": { "weight": 2 } }, { "key": "16711", "source": "434", "target": "464", "attributes": { "weight": 1 } }, { "key": "36261", "source": "434", "target": "596", "attributes": { "weight": 1 } }, { "key": "16706", "source": "434", "target": "447", "attributes": { "weight": 1 } }, { "key": "35815", "source": "434", "target": "1390", "attributes": { "weight": 1 } }, { "key": "1237", "source": "434", "target": "188", "attributes": { "weight": 1 } }, { "key": "36251", "source": "434", "target": "2087", "attributes": { "weight": 1 } }, { "key": "31244", "source": "434", "target": "1755", "attributes": { "weight": 2 } }, { "key": "4347", "source": "434", "target": "468", "attributes": { "weight": 2 } }, { "key": "16705", "source": "434", "target": "674", "attributes": { "weight": 2 } }, { "key": "36260", "source": "434", "target": "3301", "attributes": { "weight": 1 } }, { "key": "26394", "source": "434", "target": "454", "attributes": { "weight": 2 } }, { "key": "16717", "source": "434", "target": "231", "attributes": { "weight": 1 } }, { "key": "16716", "source": "434", "target": "70", "attributes": { "weight": 3 } }, { "key": "16702", "source": "434", "target": "424", "attributes": { "weight": 1 } }, { "key": "16704", "source": "434", "target": "1070", "attributes": { "weight": 1 } }, { "key": "36253", "source": "434", "target": "3283", "attributes": { "weight": 1 } }, { "key": "16722", "source": "434", "target": "73", "attributes": { "weight": 2 } }, { "key": "36254", "source": "434", "target": "2088", "attributes": { "weight": 1 } }, { "key": "11839", "source": "434", "target": "1522", "attributes": { "weight": 1 } }, { "key": "16709", "source": "434", "target": "370", "attributes": { "weight": 1 } }, { "key": "19352", "source": "435", "target": "2025", "attributes": { "weight": 1 } }, { "key": "9385", "source": "435", "target": "419", "attributes": { "weight": 1 } }, { "key": "32194", "source": "435", "target": "860", "attributes": { "weight": 4 } }, { "key": "32695", "source": "435", "target": "1812", "attributes": { "weight": 2 } }, { "key": "12149", "source": "435", "target": "220", "attributes": { "weight": 2 } }, { "key": "19360", "source": "435", "target": "2254", "attributes": { "weight": 1 } }, { "key": "32692", "source": "435", "target": "858", "attributes": { "weight": 2 } }, { "key": "37435", "source": "435", "target": "458", "attributes": { "weight": 1 } }, { "key": "32697", "source": "435", "target": "2670", "attributes": { "weight": 3 } }, { "key": "32694", "source": "435", "target": "1357", "attributes": { "weight": 2 } }, { "key": "19357", "source": "435", "target": "459", "attributes": { "weight": 1 } }, { "key": "8446", "source": "435", "target": "228", "attributes": { "weight": 2 } }, { "key": "19355", "source": "435", "target": "1358", "attributes": { "weight": 5 } }, { "key": "12150", "source": "435", "target": "1161", "attributes": { "weight": 1 } }, { "key": "19363", "source": "435", "target": "2094", "attributes": { "weight": 1 } }, { "key": "37436", "source": "435", "target": "426", "attributes": { "weight": 1 } }, { "key": "31246", "source": "435", "target": "59", "attributes": { "weight": 1 } }, { "key": "12151", "source": "435", "target": "224", "attributes": { "weight": 1 } }, { "key": "37441", "source": "435", "target": "494", "attributes": { "weight": 1 } }, { "key": "19358", "source": "435", "target": "464", "attributes": { "weight": 1 } }, { "key": "19359", "source": "435", "target": "465", "attributes": { "weight": 1 } }, { "key": "32193", "source": "435", "target": "424", "attributes": { "weight": 3 } }, { "key": "19354", "source": "435", "target": "451", "attributes": { "weight": 3 } }, { "key": "37438", "source": "435", "target": "1366", "attributes": { "weight": 1 } }, { "key": "37433", "source": "435", "target": "452", "attributes": { "weight": 1 } }, { "key": "26395", "source": "435", "target": "1047", "attributes": { "weight": 2 } }, { "key": "32691", "source": "435", "target": "857", "attributes": { "weight": 1 } }, { "key": "32131", "source": "435", "target": "1282", "attributes": { "weight": 1 } }, { "key": "12158", "source": "435", "target": "455", "attributes": { "weight": 1 } }, { "key": "15217", "source": "435", "target": "1353", "attributes": { "weight": 6 } }, { "key": "12152", "source": "435", "target": "447", "attributes": { "weight": 3 } }, { "key": "37439", "source": "435", "target": "474", "attributes": { "weight": 1 } }, { "key": "19350", "source": "435", "target": "429", "attributes": { "weight": 2 } }, { "key": "37437", "source": "435", "target": "1364", "attributes": { "weight": 1 } }, { "key": "32319", "source": "435", "target": "791", "attributes": { "weight": 1 } }, { "key": "29607", "source": "435", "target": "421", "attributes": { "weight": 1 } }, { "key": "27217", "source": "435", "target": "57", "attributes": { "weight": 1 } }, { "key": "32196", "source": "435", "target": "1368", "attributes": { "weight": 3 } }, { "key": "12165", "source": "435", "target": "490", "attributes": { "weight": 1 } }, { "key": "26397", "source": "435", "target": "189", "attributes": { "weight": 1 } }, { "key": "12164", "source": "435", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19366", "source": "435", "target": "2269", "attributes": { "weight": 1 } }, { "key": "17142", "source": "435", "target": "2111", "attributes": { "weight": 1 } }, { "key": "37440", "source": "435", "target": "488", "attributes": { "weight": 1 } }, { "key": "12153", "source": "435", "target": "183", "attributes": { "weight": 2 } }, { "key": "17336", "source": "435", "target": "358", "attributes": { "weight": 2 } }, { "key": "12147", "source": "435", "target": "1141", "attributes": { "weight": 1 } }, { "key": "31247", "source": "435", "target": "674", "attributes": { "weight": 1 } }, { "key": "19365", "source": "435", "target": "231", "attributes": { "weight": 5 } }, { "key": "12157", "source": "435", "target": "1219", "attributes": { "weight": 1 } }, { "key": "19362", "source": "435", "target": "54", "attributes": { "weight": 3 } }, { "key": "19353", "source": "435", "target": "2241", "attributes": { "weight": 1 } }, { "key": "12159", "source": "435", "target": "1834", "attributes": { "weight": 1 } }, { "key": "32195", "source": "435", "target": "53", "attributes": { "weight": 3 } }, { "key": "32157", "source": "435", "target": "1779", "attributes": { "weight": 1 } }, { "key": "17140", "source": "435", "target": "449", "attributes": { "weight": 2 } }, { "key": "19356", "source": "435", "target": "1360", "attributes": { "weight": 1 } }, { "key": "12156", "source": "435", "target": "1359", "attributes": { "weight": 1 } }, { "key": "12161", "source": "435", "target": "1362", "attributes": { "weight": 1 } }, { "key": "26396", "source": "435", "target": "454", "attributes": { "weight": 1 } }, { "key": "12162", "source": "435", "target": "473", "attributes": { "weight": 1 } }, { "key": "12155", "source": "435", "target": "1116", "attributes": { "weight": 1 } }, { "key": "19364", "source": "435", "target": "1367", "attributes": { "weight": 2 } }, { "key": "32693", "source": "435", "target": "2644", "attributes": { "weight": 2 } }, { "key": "37434", "source": "435", "target": "1217", "attributes": { "weight": 1 } }, { "key": "12166", "source": "435", "target": "1841", "attributes": { "weight": 1 } }, { "key": "8445", "source": "435", "target": "442", "attributes": { "weight": 2 } }, { "key": "12509", "source": "435", "target": "1118", "attributes": { "weight": 1 } }, { "key": "19361", "source": "435", "target": "2256", "attributes": { "weight": 1 } }, { "key": "12163", "source": "435", "target": "1838", "attributes": { "weight": 1 } }, { "key": "32696", "source": "435", "target": "482", "attributes": { "weight": 1 } }, { "key": "1238", "source": "435", "target": "188", "attributes": { "weight": 1 } }, { "key": "19367", "source": "435", "target": "56", "attributes": { "weight": 5 } }, { "key": "12154", "source": "435", "target": "450", "attributes": { "weight": 1 } }, { "key": "1239", "source": "435", "target": "193", "attributes": { "weight": 1 } }, { "key": "19351", "source": "435", "target": "130", "attributes": { "weight": 2 } }, { "key": "12148", "source": "435", "target": "1354", "attributes": { "weight": 4 } }, { "key": "31389", "source": "435", "target": "223", "attributes": { "weight": 2 } }, { "key": "17141", "source": "435", "target": "2108", "attributes": { "weight": 1 } }, { "key": "33216", "source": "435", "target": "2645", "attributes": { "weight": 1 } }, { "key": "12160", "source": "435", "target": "1811", "attributes": { "weight": 1 } }, { "key": "33218", "source": "436", "target": "52", "attributes": { "weight": 1 } }, { "key": "26398", "source": "436", "target": "454", "attributes": { "weight": 1 } }, { "key": "35280", "source": "436", "target": "1131", "attributes": { "weight": 1 } }, { "key": "31390", "source": "436", "target": "223", "attributes": { "weight": 1 } }, { "key": "1241", "source": "436", "target": "183", "attributes": { "weight": 1 } }, { "key": "33220", "source": "436", "target": "233", "attributes": { "weight": 2 } }, { "key": "8451", "source": "436", "target": "474", "attributes": { "weight": 3 } }, { "key": "1244", "source": "436", "target": "193", "attributes": { "weight": 1 } }, { "key": "1243", "source": "436", "target": "490", "attributes": { "weight": 1 } }, { "key": "26293", "source": "436", "target": "1258", "attributes": { "weight": 1 } }, { "key": "8452", "source": "436", "target": "1088", "attributes": { "weight": 3 } }, { "key": "4095", "source": "436", "target": "1121", "attributes": { "weight": 2 } }, { "key": "35279", "source": "436", "target": "50", "attributes": { "weight": 1 } }, { "key": "33219", "source": "436", "target": "135", "attributes": { "weight": 1 } }, { "key": "1240", "source": "436", "target": "224", "attributes": { "weight": 1 } }, { "key": "1242", "source": "436", "target": "188", "attributes": { "weight": 1 } }, { "key": "8447", "source": "436", "target": "1531", "attributes": { "weight": 2 } }, { "key": "8450", "source": "436", "target": "1087", "attributes": { "weight": 3 } }, { "key": "8453", "source": "436", "target": "1125", "attributes": { "weight": 2 } }, { "key": "33217", "source": "436", "target": "442", "attributes": { "weight": 1 } }, { "key": "8449", "source": "436", "target": "228", "attributes": { "weight": 3 } }, { "key": "8448", "source": "436", "target": "1545", "attributes": { "weight": 2 } }, { "key": "35278", "source": "436", "target": "1109", "attributes": { "weight": 1 } }, { "key": "8454", "source": "437", "target": "442", "attributes": { "weight": 3 } }, { "key": "30753", "source": "437", "target": "470", "attributes": { "weight": 4 } }, { "key": "16723", "source": "437", "target": "70", "attributes": { "weight": 1 } }, { "key": "24006", "source": "437", "target": "1125", "attributes": { "weight": 2 } }, { "key": "26399", "source": "437", "target": "454", "attributes": { "weight": 1 } }, { "key": "24004", "source": "437", "target": "471", "attributes": { "weight": 2 } }, { "key": "6614", "source": "437", "target": "231", "attributes": { "weight": 4 } }, { "key": "24003", "source": "437", "target": "54", "attributes": { "weight": 3 } }, { "key": "33221", "source": "437", "target": "52", "attributes": { "weight": 1 } }, { "key": "32320", "source": "437", "target": "791", "attributes": { "weight": 1 } }, { "key": "24010", "source": "437", "target": "193", "attributes": { "weight": 2 } }, { "key": "23999", "source": "437", "target": "1358", "attributes": { "weight": 2 } }, { "key": "23997", "source": "437", "target": "220", "attributes": { "weight": 2 } }, { "key": "24011", "source": "437", "target": "1568", "attributes": { "weight": 1 } }, { "key": "17143", "source": "437", "target": "449", "attributes": { "weight": 1 } }, { "key": "35281", "source": "437", "target": "494", "attributes": { "weight": 1 } }, { "key": "23998", "source": "437", "target": "130", "attributes": { "weight": 2 } }, { "key": "1245", "source": "437", "target": "183", "attributes": { "weight": 1 } }, { "key": "23996", "source": "437", "target": "1354", "attributes": { "weight": 2 } }, { "key": "24001", "source": "437", "target": "1766", "attributes": { "weight": 2 } }, { "key": "24012", "source": "437", "target": "1375", "attributes": { "weight": 1 } }, { "key": "33222", "source": "437", "target": "472", "attributes": { "weight": 1 } }, { "key": "24005", "source": "437", "target": "473", "attributes": { "weight": 2 } }, { "key": "24002", "source": "437", "target": "468", "attributes": { "weight": 2 } }, { "key": "33223", "source": "437", "target": "489", "attributes": { "weight": 1 } }, { "key": "26400", "source": "437", "target": "189", "attributes": { "weight": 1 } }, { "key": "24008", "source": "437", "target": "1374", "attributes": { "weight": 2 } }, { "key": "1246", "source": "437", "target": "490", "attributes": { "weight": 1 } }, { "key": "11012", "source": "437", "target": "452", "attributes": { "weight": 1 } }, { "key": "24000", "source": "437", "target": "459", "attributes": { "weight": 3 } }, { "key": "23399", "source": "437", "target": "223", "attributes": { "weight": 2 } }, { "key": "23995", "source": "437", "target": "429", "attributes": { "weight": 2 } }, { "key": "24009", "source": "437", "target": "1711", "attributes": { "weight": 3 } }, { "key": "23994", "source": "437", "target": "1353", "attributes": { "weight": 3 } }, { "key": "24007", "source": "437", "target": "2109", "attributes": { "weight": 2 } }, { "key": "19459", "source": "438", "target": "487", "attributes": { "weight": 1 } }, { "key": "31501", "source": "438", "target": "1353", "attributes": { "weight": 1 } }, { "key": "1249", "source": "438", "target": "490", "attributes": { "weight": 1 } }, { "key": "19446", "source": "438", "target": "443", "attributes": { "weight": 1 } }, { "key": "19450", "source": "438", "target": "451", "attributes": { "weight": 1 } }, { "key": "31506", "source": "438", "target": "1368", "attributes": { "weight": 1 } }, { "key": "19458", "source": "438", "target": "695", "attributes": { "weight": 1 } }, { "key": "6617", "source": "438", "target": "231", "attributes": { "weight": 3 } }, { "key": "19452", "source": "438", "target": "2251", "attributes": { "weight": 1 } }, { "key": "11021", "source": "438", "target": "220", "attributes": { "weight": 2 } }, { "key": "35678", "source": "438", "target": "57", "attributes": { "weight": 1 } }, { "key": "19442", "source": "438", "target": "429", "attributes": { "weight": 1 } }, { "key": "35677", "source": "438", "target": "1356", "attributes": { "weight": 1 } }, { "key": "19462", "source": "438", "target": "1750", "attributes": { "weight": 1 } }, { "key": "31507", "source": "438", "target": "495", "attributes": { "weight": 1 } }, { "key": "31505", "source": "438", "target": "467", "attributes": { "weight": 1 } }, { "key": "37061", "source": "438", "target": "857", "attributes": { "weight": 1 } }, { "key": "31502", "source": "438", "target": "424", "attributes": { "weight": 1 } }, { "key": "12510", "source": "438", "target": "233", "attributes": { "weight": 1 } }, { "key": "19454", "source": "438", "target": "54", "attributes": { "weight": 2 } }, { "key": "19447", "source": "438", "target": "1070", "attributes": { "weight": 1 } }, { "key": "26408", "source": "438", "target": "454", "attributes": { "weight": 1 } }, { "key": "19465", "source": "438", "target": "1390", "attributes": { "weight": 1 } }, { "key": "19456", "source": "438", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19455", "source": "438", "target": "472", "attributes": { "weight": 1 } }, { "key": "31257", "source": "438", "target": "674", "attributes": { "weight": 1 } }, { "key": "26409", "source": "438", "target": "189", "attributes": { "weight": 1 } }, { "key": "19463", "source": "438", "target": "1751", "attributes": { "weight": 1 } }, { "key": "19445", "source": "438", "target": "2242", "attributes": { "weight": 1 } }, { "key": "31504", "source": "438", "target": "459", "attributes": { "weight": 1 } }, { "key": "19460", "source": "438", "target": "489", "attributes": { "weight": 1 } }, { "key": "32322", "source": "438", "target": "791", "attributes": { "weight": 1 } }, { "key": "31503", "source": "438", "target": "1357", "attributes": { "weight": 1 } }, { "key": "19461", "source": "438", "target": "56", "attributes": { "weight": 2 } }, { "key": "19444", "source": "438", "target": "221", "attributes": { "weight": 1 } }, { "key": "19457", "source": "438", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19453", "source": "438", "target": "2088", "attributes": { "weight": 1 } }, { "key": "19448", "source": "438", "target": "449", "attributes": { "weight": 1 } }, { "key": "19451", "source": "438", "target": "1358", "attributes": { "weight": 2 } }, { "key": "8475", "source": "438", "target": "442", "attributes": { "weight": 2 } }, { "key": "19443", "source": "438", "target": "1354", "attributes": { "weight": 1 } }, { "key": "19449", "source": "438", "target": "450", "attributes": { "weight": 1 } }, { "key": "19464", "source": "438", "target": "235", "attributes": { "weight": 1 } }, { "key": "33235", "source": "439", "target": "442", "attributes": { "weight": 1 } }, { "key": "35834", "source": "439", "target": "479", "attributes": { "weight": 1 } }, { "key": "19472", "source": "439", "target": "449", "attributes": { "weight": 1 } }, { "key": "24017", "source": "439", "target": "130", "attributes": { "weight": 2 } }, { "key": "19476", "source": "439", "target": "1367", "attributes": { "weight": 1 } }, { "key": "19475", "source": "439", "target": "2253", "attributes": { "weight": 1 } }, { "key": "35295", "source": "439", "target": "496", "attributes": { "weight": 1 } }, { "key": "35832", "source": "439", "target": "440", "attributes": { "weight": 1 } }, { "key": "6618", "source": "439", "target": "193", "attributes": { "weight": 2 } }, { "key": "35294", "source": "439", "target": "494", "attributes": { "weight": 1 } }, { "key": "19470", "source": "439", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19469", "source": "439", "target": "441", "attributes": { "weight": 1 } }, { "key": "1251", "source": "439", "target": "183", "attributes": { "weight": 1 } }, { "key": "1250", "source": "439", "target": "224", "attributes": { "weight": 1 } }, { "key": "12779", "source": "439", "target": "477", "attributes": { "weight": 2 } }, { "key": "11023", "source": "439", "target": "1093", "attributes": { "weight": 1 } }, { "key": "19484", "source": "439", "target": "1375", "attributes": { "weight": 1 } }, { "key": "23575", "source": "439", "target": "220", "attributes": { "weight": 1 } }, { "key": "19480", "source": "439", "target": "489", "attributes": { "weight": 1 } }, { "key": "19478", "source": "439", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19468", "source": "439", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19473", "source": "439", "target": "453", "attributes": { "weight": 1 } }, { "key": "33236", "source": "439", "target": "473", "attributes": { "weight": 1 } }, { "key": "17536", "source": "439", "target": "189", "attributes": { "weight": 2 } }, { "key": "19483", "source": "439", "target": "235", "attributes": { "weight": 1 } }, { "key": "19471", "source": "439", "target": "2245", "attributes": { "weight": 1 } }, { "key": "11851", "source": "439", "target": "135", "attributes": { "weight": 2 } }, { "key": "19479", "source": "439", "target": "480", "attributes": { "weight": 1 } }, { "key": "19477", "source": "439", "target": "2260", "attributes": { "weight": 1 } }, { "key": "11024", "source": "439", "target": "492", "attributes": { "weight": 2 } }, { "key": "19482", "source": "439", "target": "1777", "attributes": { "weight": 1 } }, { "key": "19481", "source": "439", "target": "1374", "attributes": { "weight": 1 } }, { "key": "9945", "source": "439", "target": "469", "attributes": { "weight": 2 } }, { "key": "35833", "source": "439", "target": "1026", "attributes": { "weight": 1 } }, { "key": "1252", "source": "439", "target": "490", "attributes": { "weight": 1 } }, { "key": "12778", "source": "439", "target": "445", "attributes": { "weight": 2 } }, { "key": "19466", "source": "439", "target": "221", "attributes": { "weight": 1 } }, { "key": "24018", "source": "439", "target": "1116", "attributes": { "weight": 2 } }, { "key": "11022", "source": "439", "target": "452", "attributes": { "weight": 1 } }, { "key": "19467", "source": "439", "target": "222", "attributes": { "weight": 1 } }, { "key": "19474", "source": "439", "target": "1536", "attributes": { "weight": 1 } }, { "key": "32865", "source": "440", "target": "470", "attributes": { "weight": 1 } }, { "key": "19548", "source": "440", "target": "1751", "attributes": { "weight": 1 } }, { "key": "35839", "source": "440", "target": "89", "attributes": { "weight": 1 } }, { "key": "4418", "source": "440", "target": "468", "attributes": { "weight": 3 } }, { "key": "33742", "source": "440", "target": "823", "attributes": { "weight": 1 } }, { "key": "19546", "source": "440", "target": "480", "attributes": { "weight": 1 } }, { "key": "1255", "source": "440", "target": "224", "attributes": { "weight": 1 } }, { "key": "30344", "source": "440", "target": "1046", "attributes": { "weight": 1 } }, { "key": "19543", "source": "440", "target": "2245", "attributes": { "weight": 2 } }, { "key": "27013", "source": "440", "target": "1247", "attributes": { "weight": 1 } }, { "key": "19538", "source": "440", "target": "221", "attributes": { "weight": 1 } }, { "key": "35845", "source": "440", "target": "53", "attributes": { "weight": 1 } }, { "key": "31580", "source": "440", "target": "595", "attributes": { "weight": 1 } }, { "key": "33303", "source": "440", "target": "672", "attributes": { "weight": 1 } }, { "key": "23576", "source": "440", "target": "1312", "attributes": { "weight": 1 } }, { "key": "25851", "source": "440", "target": "220", "attributes": { "weight": 1 } }, { "key": "19544", "source": "440", "target": "471", "attributes": { "weight": 2 } }, { "key": "30345", "source": "440", "target": "500", "attributes": { "weight": 1 } }, { "key": "27806", "source": "440", "target": "339", "attributes": { "weight": 1 } }, { "key": "35850", "source": "440", "target": "232", "attributes": { "weight": 1 } }, { "key": "16733", "source": "440", "target": "674", "attributes": { "weight": 2 } }, { "key": "19542", "source": "440", "target": "2244", "attributes": { "weight": 1 } }, { "key": "16734", "source": "440", "target": "135", "attributes": { "weight": 2 } }, { "key": "19537", "source": "440", "target": "130", "attributes": { "weight": 2 } }, { "key": "26420", "source": "440", "target": "183", "attributes": { "weight": 1 } }, { "key": "33302", "source": "440", "target": "2258", "attributes": { "weight": 2 } }, { "key": "27011", "source": "440", "target": "450", "attributes": { "weight": 1 } }, { "key": "27360", "source": "440", "target": "340", "attributes": { "weight": 2 } }, { "key": "19549", "source": "440", "target": "235", "attributes": { "weight": 1 } }, { "key": "35846", "source": "440", "target": "1741", "attributes": { "weight": 1 } }, { "key": "35835", "source": "440", "target": "429", "attributes": { "weight": 1 } }, { "key": "35848", "source": "440", "target": "190", "attributes": { "weight": 1 } }, { "key": "26904", "source": "440", "target": "497", "attributes": { "weight": 2 } }, { "key": "35836", "source": "440", "target": "439", "attributes": { "weight": 1 } }, { "key": "35841", "source": "440", "target": "1998", "attributes": { "weight": 1 } }, { "key": "35847", "source": "440", "target": "473", "attributes": { "weight": 1 } }, { "key": "25909", "source": "440", "target": "1367", "attributes": { "weight": 2 } }, { "key": "30725", "source": "440", "target": "1026", "attributes": { "weight": 1 } }, { "key": "27228", "source": "440", "target": "57", "attributes": { "weight": 1 } }, { "key": "35842", "source": "440", "target": "5", "attributes": { "weight": 1 } }, { "key": "35843", "source": "440", "target": "2253", "attributes": { "weight": 1 } }, { "key": "33301", "source": "440", "target": "52", "attributes": { "weight": 1 } }, { "key": "31418", "source": "440", "target": "223", "attributes": { "weight": 1 } }, { "key": "11334", "source": "440", "target": "1742", "attributes": { "weight": 1 } }, { "key": "19541", "source": "440", "target": "1023", "attributes": { "weight": 1 } }, { "key": "32328", "source": "440", "target": "791", "attributes": { "weight": 1 } }, { "key": "26421", "source": "440", "target": "189", "attributes": { "weight": 1 } }, { "key": "28930", "source": "440", "target": "479", "attributes": { "weight": 2 } }, { "key": "8482", "source": "440", "target": "442", "attributes": { "weight": 2 } }, { "key": "35851", "source": "440", "target": "487", "attributes": { "weight": 1 } }, { "key": "35844", "source": "440", "target": "1072", "attributes": { "weight": 1 } }, { "key": "35840", "source": "440", "target": "2248", "attributes": { "weight": 1 } }, { "key": "12670", "source": "440", "target": "695", "attributes": { "weight": 1 } }, { "key": "29020", "source": "440", "target": "495", "attributes": { "weight": 1 } }, { "key": "33300", "source": "440", "target": "425", "attributes": { "weight": 1 } }, { "key": "16732", "source": "440", "target": "59", "attributes": { "weight": 1 } }, { "key": "35852", "source": "440", "target": "352", "attributes": { "weight": 1 } }, { "key": "27012", "source": "440", "target": "1832", "attributes": { "weight": 1 } }, { "key": "10808", "source": "440", "target": "457", "attributes": { "weight": 2 } }, { "key": "6625", "source": "440", "target": "193", "attributes": { "weight": 1 } }, { "key": "35849", "source": "440", "target": "2262", "attributes": { "weight": 1 } }, { "key": "33741", "source": "440", "target": "682", "attributes": { "weight": 1 } }, { "key": "11333", "source": "440", "target": "433", "attributes": { "weight": 2 } }, { "key": "19540", "source": "440", "target": "51", "attributes": { "weight": 1 } }, { "key": "1256", "source": "440", "target": "188", "attributes": { "weight": 1 } }, { "key": "32704", "source": "440", "target": "1125", "attributes": { "weight": 1 } }, { "key": "35837", "source": "440", "target": "445", "attributes": { "weight": 1 } }, { "key": "16735", "source": "440", "target": "70", "attributes": { "weight": 1 } }, { "key": "1257", "source": "440", "target": "490", "attributes": { "weight": 1 } }, { "key": "19547", "source": "440", "target": "489", "attributes": { "weight": 1 } }, { "key": "3927", "source": "440", "target": "432", "attributes": { "weight": 1 } }, { "key": "17156", "source": "440", "target": "449", "attributes": { "weight": 2 } }, { "key": "19539", "source": "440", "target": "1522", "attributes": { "weight": 1 } }, { "key": "11028", "source": "440", "target": "452", "attributes": { "weight": 3 } }, { "key": "17828", "source": "440", "target": "454", "attributes": { "weight": 3 } }, { "key": "35838", "source": "440", "target": "448", "attributes": { "weight": 1 } }, { "key": "19545", "source": "440", "target": "472", "attributes": { "weight": 2 } }, { "key": "33304", "source": "441", "target": "425", "attributes": { "weight": 1 } }, { "key": "1260", "source": "441", "target": "490", "attributes": { "weight": 1 } }, { "key": "26295", "source": "441", "target": "1258", "attributes": { "weight": 1 } }, { "key": "19621", "source": "441", "target": "471", "attributes": { "weight": 1 } }, { "key": "1258", "source": "441", "target": "224", "attributes": { "weight": 1 } }, { "key": "19613", "source": "441", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19620", "source": "441", "target": "2254", "attributes": { "weight": 1 } }, { "key": "19618", "source": "441", "target": "2253", "attributes": { "weight": 1 } }, { "key": "33305", "source": "441", "target": "52", "attributes": { "weight": 1 } }, { "key": "6626", "source": "441", "target": "189", "attributes": { "weight": 3 } }, { "key": "33307", "source": "441", "target": "489", "attributes": { "weight": 1 } }, { "key": "19612", "source": "441", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19610", "source": "441", "target": "439", "attributes": { "weight": 1 } }, { "key": "19615", "source": "441", "target": "453", "attributes": { "weight": 1 } }, { "key": "24337", "source": "441", "target": "496", "attributes": { "weight": 1 } }, { "key": "19622", "source": "441", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19619", "source": "441", "target": "464", "attributes": { "weight": 1 } }, { "key": "19623", "source": "441", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19629", "source": "441", "target": "235", "attributes": { "weight": 1 } }, { "key": "19625", "source": "441", "target": "2268", "attributes": { "weight": 1 } }, { "key": "19624", "source": "441", "target": "2266", "attributes": { "weight": 1 } }, { "key": "19614", "source": "441", "target": "226", "attributes": { "weight": 1 } }, { "key": "33308", "source": "441", "target": "672", "attributes": { "weight": 1 } }, { "key": "11030", "source": "441", "target": "452", "attributes": { "weight": 1 } }, { "key": "19627", "source": "441", "target": "1770", "attributes": { "weight": 1 } }, { "key": "19617", "source": "441", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19626", "source": "441", "target": "480", "attributes": { "weight": 1 } }, { "key": "11031", "source": "441", "target": "469", "attributes": { "weight": 1 } }, { "key": "19616", "source": "441", "target": "1536", "attributes": { "weight": 1 } }, { "key": "24336", "source": "441", "target": "492", "attributes": { "weight": 1 } }, { "key": "33306", "source": "441", "target": "473", "attributes": { "weight": 1 } }, { "key": "19611", "source": "441", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19628", "source": "441", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19609", "source": "441", "target": "221", "attributes": { "weight": 1 } }, { "key": "24021", "source": "441", "target": "1116", "attributes": { "weight": 2 } }, { "key": "24335", "source": "441", "target": "190", "attributes": { "weight": 1 } }, { "key": "1259", "source": "441", "target": "183", "attributes": { "weight": 3 } }, { "key": "24334", "source": "441", "target": "222", "attributes": { "weight": 1 } }, { "key": "8523", "source": "442", "target": "438", "attributes": { "weight": 2 } }, { "key": "29116", "source": "442", "target": "447", "attributes": { "weight": 1 } }, { "key": "23327", "source": "442", "target": "857", "attributes": { "weight": 2 } }, { "key": "8554", "source": "442", "target": "108", "attributes": { "weight": 1 } }, { "key": "8584", "source": "442", "target": "136", "attributes": { "weight": 1 } }, { "key": "8515", "source": "442", "target": "36", "attributes": { "weight": 1 } }, { "key": "33318", "source": "442", "target": "135", "attributes": { "weight": 1 } }, { "key": "24023", "source": "442", "target": "2470", "attributes": { "weight": 2 } }, { "key": "8602", "source": "442", "target": "1556", "attributes": { "weight": 1 } }, { "key": "33319", "source": "442", "target": "1836", "attributes": { "weight": 1 } }, { "key": "8597", "source": "442", "target": "163", "attributes": { "weight": 2 } }, { "key": "4453", "source": "442", "target": "368", "attributes": { "weight": 6 } }, { "key": "33317", "source": "442", "target": "464", "attributes": { "weight": 1 } }, { "key": "8510", "source": "442", "target": "1520", "attributes": { "weight": 2 } }, { "key": "8615", "source": "442", "target": "1128", "attributes": { "weight": 2 } }, { "key": "8614", "source": "442", "target": "1031", "attributes": { "weight": 1 } }, { "key": "8506", "source": "442", "target": "1036", "attributes": { "weight": 2 } }, { "key": "4454", "source": "442", "target": "370", "attributes": { "weight": 11 } }, { "key": "8500", "source": "442", "target": "429", "attributes": { "weight": 3 } }, { "key": "8624", "source": "442", "target": "1322", "attributes": { "weight": 3 } }, { "key": "8509", "source": "442", "target": "1109", "attributes": { "weight": 2 } }, { "key": "8577", "source": "442", "target": "53", "attributes": { "weight": 2 } }, { "key": "4455", "source": "442", "target": "171", "attributes": { "weight": 3 } }, { "key": "37482", "source": "442", "target": "451", "attributes": { "weight": 1 } }, { "key": "8592", "source": "442", "target": "1087", "attributes": { "weight": 3 } }, { "key": "8603", "source": "442", "target": "580", "attributes": { "weight": 3 } }, { "key": "8569", "source": "442", "target": "359", "attributes": { "weight": 2 } }, { "key": "33316", "source": "442", "target": "1219", "attributes": { "weight": 1 } }, { "key": "1261", "source": "442", "target": "188", "attributes": { "weight": 3 } }, { "key": "8556", "source": "442", "target": "1118", "attributes": { "weight": 3 } }, { "key": "8622", "source": "442", "target": "1060", "attributes": { "weight": 2 } }, { "key": "31121", "source": "442", "target": "387", "attributes": { "weight": 1 } }, { "key": "31124", "source": "442", "target": "1298", "attributes": { "weight": 1 } }, { "key": "33315", "source": "442", "target": "51", "attributes": { "weight": 1 } }, { "key": "33312", "source": "442", "target": "436", "attributes": { "weight": 1 } }, { "key": "8551", "source": "442", "target": "1384", "attributes": { "weight": 1 } }, { "key": "8557", "source": "442", "target": "109", "attributes": { "weight": 2 } }, { "key": "32330", "source": "442", "target": "232", "attributes": { "weight": 1 } }, { "key": "27014", "source": "442", "target": "1832", "attributes": { "weight": 1 } }, { "key": "9242", "source": "442", "target": "1579", "attributes": { "weight": 1 } }, { "key": "8563", "source": "442", "target": "457", "attributes": { "weight": 3 } }, { "key": "4452", "source": "442", "target": "779", "attributes": { "weight": 2 } }, { "key": "8497", "source": "442", "target": "34", "attributes": { "weight": 2 } }, { "key": "8600", "source": "442", "target": "1555", "attributes": { "weight": 1 } }, { "key": "8647", "source": "442", "target": "57", "attributes": { "weight": 2 } }, { "key": "9243", "source": "442", "target": "1592", "attributes": { "weight": 2 } }, { "key": "37320", "source": "442", "target": "247", "attributes": { "weight": 1 } }, { "key": "8565", "source": "442", "target": "707", "attributes": { "weight": 3 } }, { "key": "31125", "source": "442", "target": "252", "attributes": { "weight": 1 } }, { "key": "27189", "source": "442", "target": "1390", "attributes": { "weight": 1 } }, { "key": "8574", "source": "442", "target": "1387", "attributes": { "weight": 1 } }, { "key": "37319", "source": "442", "target": "1775", "attributes": { "weight": 1 } }, { "key": "21427", "source": "442", "target": "893", "attributes": { "weight": 1 } }, { "key": "8547", "source": "442", "target": "1047", "attributes": { "weight": 4 } }, { "key": "8552", "source": "442", "target": "1116", "attributes": { "weight": 2 } }, { "key": "8576", "source": "442", "target": "1544", "attributes": { "weight": 1 } }, { "key": "8631", "source": "442", "target": "1337", "attributes": { "weight": 2 } }, { "key": "8575", "source": "442", "target": "338", "attributes": { "weight": 4 } }, { "key": "8512", "source": "442", "target": "435", "attributes": { "weight": 2 } }, { "key": "8573", "source": "442", "target": "170", "attributes": { "weight": 1 } }, { "key": "33313", "source": "442", "target": "1110", "attributes": { "weight": 1 } }, { "key": "35541", "source": "442", "target": "3114", "attributes": { "weight": 1 } }, { "key": "12386", "source": "442", "target": "1355", "attributes": { "weight": 2 } }, { "key": "8540", "source": "442", "target": "133", "attributes": { "weight": 2 } }, { "key": "8585", "source": "442", "target": "1258", "attributes": { "weight": 2 } }, { "key": "18099", "source": "442", "target": "467", "attributes": { "weight": 1 } }, { "key": "8571", "source": "442", "target": "638", "attributes": { "weight": 2 } }, { "key": "8572", "source": "442", "target": "1024", "attributes": { "weight": 2 } }, { "key": "8508", "source": "442", "target": "433", "attributes": { "weight": 2 } }, { "key": "8513", "source": "442", "target": "437", "attributes": { "weight": 3 } }, { "key": "8625", "source": "442", "target": "1323", "attributes": { "weight": 4 } }, { "key": "3929", "source": "442", "target": "432", "attributes": { "weight": 4 } }, { "key": "8537", "source": "442", "target": "912", "attributes": { "weight": 2 } }, { "key": "8643", "source": "442", "target": "496", "attributes": { "weight": 2 } }, { "key": "8529", "source": "442", "target": "259", "attributes": { "weight": 2 } }, { "key": "8542", "source": "442", "target": "449", "attributes": { "weight": 3 } }, { "key": "8596", "source": "442", "target": "190", "attributes": { "weight": 3 } }, { "key": "8645", "source": "442", "target": "322", "attributes": { "weight": 1 } }, { "key": "3931", "source": "442", "target": "483", "attributes": { "weight": 1 } }, { "key": "8608", "source": "442", "target": "1026", "attributes": { "weight": 2 } }, { "key": "34889", "source": "442", "target": "1042", "attributes": { "weight": 1 } }, { "key": "8634", "source": "442", "target": "233", "attributes": { "weight": 8 } }, { "key": "35185", "source": "442", "target": "1562", "attributes": { "weight": 1 } }, { "key": "8498", "source": "442", "target": "1516", "attributes": { "weight": 3 } }, { "key": "8535", "source": "442", "target": "38", "attributes": { "weight": 1 } }, { "key": "8637", "source": "442", "target": "492", "attributes": { "weight": 2 } }, { "key": "8601", "source": "442", "target": "41", "attributes": { "weight": 3 } }, { "key": "8621", "source": "442", "target": "138", "attributes": { "weight": 2 } }, { "key": "33311", "source": "442", "target": "2645", "attributes": { "weight": 1 } }, { "key": "31190", "source": "442", "target": "1362", "attributes": { "weight": 1 } }, { "key": "8570", "source": "442", "target": "161", "attributes": { "weight": 1 } }, { "key": "9946", "source": "442", "target": "445", "attributes": { "weight": 3 } }, { "key": "8521", "source": "442", "target": "645", "attributes": { "weight": 1 } }, { "key": "33310", "source": "442", "target": "1107", "attributes": { "weight": 1 } }, { "key": "8519", "source": "442", "target": "50", "attributes": { "weight": 2 } }, { "key": "8544", "source": "442", "target": "358", "attributes": { "weight": 3 } }, { "key": "8632", "source": "442", "target": "595", "attributes": { "weight": 2 } }, { "key": "24024", "source": "442", "target": "2109", "attributes": { "weight": 2 } }, { "key": "8607", "source": "442", "target": "70", "attributes": { "weight": 3 } }, { "key": "8636", "source": "442", "target": "1567", "attributes": { "weight": 2 } }, { "key": "8534", "source": "442", "target": "225", "attributes": { "weight": 6 } }, { "key": "8633", "source": "442", "target": "257", "attributes": { "weight": 2 } }, { "key": "9241", "source": "442", "target": "1571", "attributes": { "weight": 1 } }, { "key": "8522", "source": "442", "target": "938", "attributes": { "weight": 3 } }, { "key": "4242", "source": "442", "target": "673", "attributes": { "weight": 2 } }, { "key": "8646", "source": "442", "target": "500", "attributes": { "weight": 2 } }, { "key": "8567", "source": "442", "target": "1233", "attributes": { "weight": 3 } }, { "key": "29117", "source": "442", "target": "488", "attributes": { "weight": 1 } }, { "key": "8630", "source": "442", "target": "490", "attributes": { "weight": 2 } }, { "key": "8580", "source": "442", "target": "30", "attributes": { "weight": 2 } }, { "key": "8546", "source": "442", "target": "693", "attributes": { "weight": 3 } }, { "key": "8520", "source": "442", "target": "43", "attributes": { "weight": 1 } }, { "key": "33743", "source": "442", "target": "14", "attributes": { "weight": 1 } }, { "key": "31122", "source": "442", "target": "251", "attributes": { "weight": 1 } }, { "key": "8526", "source": "442", "target": "440", "attributes": { "weight": 2 } }, { "key": "8568", "source": "442", "target": "278", "attributes": { "weight": 3 } }, { "key": "24338", "source": "442", "target": "191", "attributes": { "weight": 1 } }, { "key": "8591", "source": "442", "target": "229", "attributes": { "weight": 2 } }, { "key": "8581", "source": "442", "target": "469", "attributes": { "weight": 3 } }, { "key": "17834", "source": "442", "target": "223", "attributes": { "weight": 2 } }, { "key": "8525", "source": "442", "target": "425", "attributes": { "weight": 3 } }, { "key": "8543", "source": "442", "target": "183", "attributes": { "weight": 3 } }, { "key": "8564", "source": "442", "target": "168", "attributes": { "weight": 3 } }, { "key": "8594", "source": "442", "target": "925", "attributes": { "weight": 2 } }, { "key": "8507", "source": "442", "target": "130", "attributes": { "weight": 5 } }, { "key": "8511", "source": "442", "target": "1521", "attributes": { "weight": 1 } }, { "key": "8549", "source": "442", "target": "369", "attributes": { "weight": 2 } }, { "key": "8604", "source": "442", "target": "1557", "attributes": { "weight": 2 } }, { "key": "8516", "source": "442", "target": "1522", "attributes": { "weight": 2 } }, { "key": "8639", "source": "442", "target": "193", "attributes": { "weight": 3 } }, { "key": "8619", "source": "442", "target": "695", "attributes": { "weight": 2 } }, { "key": "7236", "source": "442", "target": "154", "attributes": { "weight": 6 } }, { "key": "8638", "source": "442", "target": "493", "attributes": { "weight": 3 } }, { "key": "8545", "source": "442", "target": "450", "attributes": { "weight": 4 } }, { "key": "11336", "source": "442", "target": "1742", "attributes": { "weight": 1 } }, { "key": "8635", "source": "442", "target": "340", "attributes": { "weight": 3 } }, { "key": "17833", "source": "442", "target": "1380", "attributes": { "weight": 1 } }, { "key": "30349", "source": "442", "target": "1046", "attributes": { "weight": 1 } }, { "key": "8605", "source": "442", "target": "1088", "attributes": { "weight": 2 } }, { "key": "8629", "source": "442", "target": "1092", "attributes": { "weight": 2 } }, { "key": "29609", "source": "442", "target": "421", "attributes": { "weight": 1 } }, { "key": "8548", "source": "442", "target": "1535", "attributes": { "weight": 2 } }, { "key": "8640", "source": "442", "target": "494", "attributes": { "weight": 3 } }, { "key": "8589", "source": "442", "target": "396", "attributes": { "weight": 3 } }, { "key": "33321", "source": "442", "target": "1744", "attributes": { "weight": 1 } }, { "key": "31123", "source": "442", "target": "54", "attributes": { "weight": 1 } }, { "key": "4457", "source": "442", "target": "371", "attributes": { "weight": 9 } }, { "key": "8612", "source": "442", "target": "1559", "attributes": { "weight": 2 } }, { "key": "3930", "source": "442", "target": "458", "attributes": { "weight": 1 } }, { "key": "31120", "source": "442", "target": "2644", "attributes": { "weight": 1 } }, { "key": "23740", "source": "442", "target": "2456", "attributes": { "weight": 1 } }, { "key": "8582", "source": "442", "target": "470", "attributes": { "weight": 3 } }, { "key": "8626", "source": "442", "target": "177", "attributes": { "weight": 3 } }, { "key": "8610", "source": "442", "target": "304", "attributes": { "weight": 4 } }, { "key": "36948", "source": "442", "target": "362", "attributes": { "weight": 1 } }, { "key": "8533", "source": "442", "target": "444", "attributes": { "weight": 1 } }, { "key": "8578", "source": "442", "target": "8", "attributes": { "weight": 2 } }, { "key": "4458", "source": "442", "target": "123", "attributes": { "weight": 10 } }, { "key": "8644", "source": "442", "target": "497", "attributes": { "weight": 2 } }, { "key": "8611", "source": "442", "target": "1296", "attributes": { "weight": 2 } }, { "key": "8524", "source": "442", "target": "103", "attributes": { "weight": 1 } }, { "key": "35540", "source": "442", "target": "1710", "attributes": { "weight": 1 } }, { "key": "8504", "source": "442", "target": "59", "attributes": { "weight": 3 } }, { "key": "3932", "source": "442", "target": "487", "attributes": { "weight": 1 } }, { "key": "9947", "source": "442", "target": "477", "attributes": { "weight": 4 } }, { "key": "8642", "source": "442", "target": "1375", "attributes": { "weight": 2 } }, { "key": "27842", "source": "442", "target": "2528", "attributes": { "weight": 1 } }, { "key": "8501", "source": "442", "target": "430", "attributes": { "weight": 5 } }, { "key": "8586", "source": "442", "target": "228", "attributes": { "weight": 5 } }, { "key": "8527", "source": "442", "target": "1524", "attributes": { "weight": 2 } }, { "key": "8502", "source": "442", "target": "889", "attributes": { "weight": 2 } }, { "key": "8588", "source": "442", "target": "472", "attributes": { "weight": 4 } }, { "key": "8587", "source": "442", "target": "471", "attributes": { "weight": 3 } }, { "key": "8627", "source": "442", "target": "178", "attributes": { "weight": 2 } }, { "key": "8514", "source": "442", "target": "164", "attributes": { "weight": 3 } }, { "key": "8561", "source": "442", "target": "574", "attributes": { "weight": 3 } }, { "key": "33309", "source": "442", "target": "1703", "attributes": { "weight": 1 } }, { "key": "8620", "source": "442", "target": "1130", "attributes": { "weight": 2 } }, { "key": "8595", "source": "442", "target": "189", "attributes": { "weight": 2 } }, { "key": "12387", "source": "442", "target": "1845", "attributes": { "weight": 2 } }, { "key": "8613", "source": "442", "target": "479", "attributes": { "weight": 5 } }, { "key": "8623", "source": "442", "target": "601", "attributes": { "weight": 2 } }, { "key": "8560", "source": "442", "target": "455", "attributes": { "weight": 2 } }, { "key": "4459", "source": "442", "target": "1090", "attributes": { "weight": 4 } }, { "key": "33322", "source": "442", "target": "482", "attributes": { "weight": 1 } }, { "key": "30495", "source": "442", "target": "2264", "attributes": { "weight": 1 } }, { "key": "6627", "source": "442", "target": "495", "attributes": { "weight": 4 } }, { "key": "8505", "source": "442", "target": "195", "attributes": { "weight": 4 } }, { "key": "8531", "source": "442", "target": "1112", "attributes": { "weight": 2 } }, { "key": "12568", "source": "442", "target": "180", "attributes": { "weight": 1 } }, { "key": "33323", "source": "442", "target": "56", "attributes": { "weight": 1 } }, { "key": "8558", "source": "442", "target": "52", "attributes": { "weight": 2 } }, { "key": "18444", "source": "442", "target": "1738", "attributes": { "weight": 3 } }, { "key": "8641", "source": "442", "target": "1568", "attributes": { "weight": 3 } }, { "key": "22665", "source": "442", "target": "1037", "attributes": { "weight": 1 } }, { "key": "8559", "source": "442", "target": "5", "attributes": { "weight": 2 } }, { "key": "3014", "source": "442", "target": "791", "attributes": { "weight": 3 } }, { "key": "8609", "source": "442", "target": "42", "attributes": { "weight": 1 } }, { "key": "8517", "source": "442", "target": "222", "attributes": { "weight": 3 } }, { "key": "8532", "source": "442", "target": "132", "attributes": { "weight": 1 } }, { "key": "8583", "source": "442", "target": "1547", "attributes": { "weight": 2 } }, { "key": "8503", "source": "442", "target": "220", "attributes": { "weight": 3 } }, { "key": "33314", "source": "442", "target": "439", "attributes": { "weight": 1 } }, { "key": "8598", "source": "442", "target": "474", "attributes": { "weight": 2 } }, { "key": "32956", "source": "442", "target": "149", "attributes": { "weight": 1 } }, { "key": "8536", "source": "442", "target": "674", "attributes": { "weight": 4 } }, { "key": "31126", "source": "442", "target": "2450", "attributes": { "weight": 1 } }, { "key": "8617", "source": "442", "target": "305", "attributes": { "weight": 3 } }, { "key": "8566", "source": "442", "target": "1232", "attributes": { "weight": 5 } }, { "key": "17157", "source": "442", "target": "2108", "attributes": { "weight": 1 } }, { "key": "8530", "source": "442", "target": "778", "attributes": { "weight": 1 } }, { "key": "8579", "source": "442", "target": "40", "attributes": { "weight": 1 } }, { "key": "4456", "source": "442", "target": "468", "attributes": { "weight": 3 } }, { "key": "8528", "source": "442", "target": "339", "attributes": { "weight": 3 } }, { "key": "8606", "source": "442", "target": "476", "attributes": { "weight": 2 } }, { "key": "29610", "source": "442", "target": "1253", "attributes": { "weight": 1 } }, { "key": "8618", "source": "442", "target": "1560", "attributes": { "weight": 1 } }, { "key": "8562", "source": "442", "target": "392", "attributes": { "weight": 1 } }, { "key": "27015", "source": "442", "target": "1247", "attributes": { "weight": 1 } }, { "key": "8590", "source": "442", "target": "1367", "attributes": { "weight": 2 } }, { "key": "8499", "source": "442", "target": "1141", "attributes": { "weight": 3 } }, { "key": "8550", "source": "442", "target": "452", "attributes": { "weight": 3 } }, { "key": "8518", "source": "442", "target": "644", "attributes": { "weight": 1 } }, { "key": "23739", "source": "442", "target": "1774", "attributes": { "weight": 1 } }, { "key": "8555", "source": "442", "target": "1536", "attributes": { "weight": 2 } }, { "key": "8539", "source": "442", "target": "39", "attributes": { "weight": 2 } }, { "key": "8628", "source": "442", "target": "1329", "attributes": { "weight": 2 } }, { "key": "8553", "source": "442", "target": "454", "attributes": { "weight": 2 } }, { "key": "8599", "source": "442", "target": "1282", "attributes": { "weight": 3 } }, { "key": "29611", "source": "442", "target": "473", "attributes": { "weight": 2 } }, { "key": "8593", "source": "442", "target": "1553", "attributes": { "weight": 2 } }, { "key": "8541", "source": "442", "target": "913", "attributes": { "weight": 3 } }, { "key": "8538", "source": "442", "target": "419", "attributes": { "weight": 2 } }, { "key": "7237", "source": "442", "target": "1063", "attributes": { "weight": 6 } }, { "key": "33320", "source": "442", "target": "2258", "attributes": { "weight": 1 } }, { "key": "25466", "source": "442", "target": "498", "attributes": { "weight": 1 } }, { "key": "8616", "source": "442", "target": "372", "attributes": { "weight": 4 } }, { "key": "6632", "source": "443", "target": "189", "attributes": { "weight": 2 } }, { "key": "36988", "source": "443", "target": "455", "attributes": { "weight": 1 } }, { "key": "3934", "source": "443", "target": "3", "attributes": { "weight": 1 } }, { "key": "19649", "source": "443", "target": "472", "attributes": { "weight": 3 } }, { "key": "19642", "source": "443", "target": "438", "attributes": { "weight": 1 } }, { "key": "19646", "source": "443", "target": "2248", "attributes": { "weight": 1 } }, { "key": "3841", "source": "443", "target": "487", "attributes": { "weight": 1 } }, { "key": "6631", "source": "443", "target": "188", "attributes": { "weight": 2 } }, { "key": "23577", "source": "443", "target": "220", "attributes": { "weight": 1 } }, { "key": "6634", "source": "443", "target": "495", "attributes": { "weight": 2 } }, { "key": "1264", "source": "443", "target": "490", "attributes": { "weight": 2 } }, { "key": "19641", "source": "443", "target": "1522", "attributes": { "weight": 1 } }, { "key": "19647", "source": "443", "target": "1832", "attributes": { "weight": 1 } }, { "key": "6629", "source": "443", "target": "1356", "attributes": { "weight": 1 } }, { "key": "19645", "source": "443", "target": "450", "attributes": { "weight": 1 } }, { "key": "17158", "source": "443", "target": "449", "attributes": { "weight": 1 } }, { "key": "23328", "source": "443", "target": "223", "attributes": { "weight": 1 } }, { "key": "1262", "source": "443", "target": "224", "attributes": { "weight": 2 } }, { "key": "32709", "source": "443", "target": "135", "attributes": { "weight": 2 } }, { "key": "3933", "source": "443", "target": "432", "attributes": { "weight": 2 } }, { "key": "1263", "source": "443", "target": "182", "attributes": { "weight": 1 } }, { "key": "6630", "source": "443", "target": "454", "attributes": { "weight": 3 } }, { "key": "32708", "source": "443", "target": "51", "attributes": { "weight": 2 } }, { "key": "19644", "source": "443", "target": "2245", "attributes": { "weight": 1 } }, { "key": "6633", "source": "443", "target": "193", "attributes": { "weight": 1 } }, { "key": "22836", "source": "443", "target": "1371", "attributes": { "weight": 1 } }, { "key": "19653", "source": "443", "target": "489", "attributes": { "weight": 1 } }, { "key": "23329", "source": "443", "target": "1121", "attributes": { "weight": 1 } }, { "key": "6628", "source": "443", "target": "183", "attributes": { "weight": 2 } }, { "key": "19648", "source": "443", "target": "1247", "attributes": { "weight": 1 } }, { "key": "19650", "source": "443", "target": "2261", "attributes": { "weight": 1 } }, { "key": "33324", "source": "443", "target": "2258", "attributes": { "weight": 1 } }, { "key": "19643", "source": "443", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19651", "source": "443", "target": "2267", "attributes": { "weight": 1 } }, { "key": "23578", "source": "443", "target": "1071", "attributes": { "weight": 1 } }, { "key": "26296", "source": "443", "target": "1258", "attributes": { "weight": 1 } }, { "key": "19652", "source": "443", "target": "2095", "attributes": { "weight": 1 } }, { "key": "8659", "source": "444", "target": "474", "attributes": { "weight": 3 } }, { "key": "35297", "source": "444", "target": "50", "attributes": { "weight": 1 } }, { "key": "8660", "source": "444", "target": "1125", "attributes": { "weight": 2 } }, { "key": "8658", "source": "444", "target": "1087", "attributes": { "weight": 3 } }, { "key": "6644", "source": "444", "target": "183", "attributes": { "weight": 1 } }, { "key": "1330", "source": "444", "target": "224", "attributes": { "weight": 2 } }, { "key": "8657", "source": "444", "target": "442", "attributes": { "weight": 1 } }, { "key": "6645", "source": "444", "target": "186", "attributes": { "weight": 2 } }, { "key": "6646", "source": "444", "target": "192", "attributes": { "weight": 2 } }, { "key": "26297", "source": "444", "target": "1258", "attributes": { "weight": 1 } }, { "key": "4117", "source": "444", "target": "1088", "attributes": { "weight": 2 } }, { "key": "9952", "source": "445", "target": "135", "attributes": { "weight": 6 } }, { "key": "9954", "source": "445", "target": "228", "attributes": { "weight": 2 } }, { "key": "17159", "source": "445", "target": "449", "attributes": { "weight": 1 } }, { "key": "6654", "source": "445", "target": "57", "attributes": { "weight": 3 } }, { "key": "27232", "source": "445", "target": "52", "attributes": { "weight": 2 } }, { "key": "9950", "source": "445", "target": "222", "attributes": { "weight": 4 } }, { "key": "9956", "source": "445", "target": "480", "attributes": { "weight": 2 } }, { "key": "6651", "source": "445", "target": "425", "attributes": { "weight": 3 } }, { "key": "19809", "source": "445", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9958", "source": "445", "target": "492", "attributes": { "weight": 4 } }, { "key": "9960", "source": "445", "target": "495", "attributes": { "weight": 3 } }, { "key": "11043", "source": "445", "target": "190", "attributes": { "weight": 3 } }, { "key": "1335", "source": "445", "target": "490", "attributes": { "weight": 5 } }, { "key": "19808", "source": "445", "target": "471", "attributes": { "weight": 1 } }, { "key": "1334", "source": "445", "target": "188", "attributes": { "weight": 2 } }, { "key": "6652", "source": "445", "target": "454", "attributes": { "weight": 2 } }, { "key": "9951", "source": "445", "target": "442", "attributes": { "weight": 3 } }, { "key": "25910", "source": "445", "target": "223", "attributes": { "weight": 2 } }, { "key": "9957", "source": "445", "target": "595", "attributes": { "weight": 2 } }, { "key": "35299", "source": "445", "target": "1536", "attributes": { "weight": 1 } }, { "key": "33330", "source": "445", "target": "2258", "attributes": { "weight": 1 } }, { "key": "11042", "source": "445", "target": "452", "attributes": { "weight": 6 } }, { "key": "19810", "source": "445", "target": "235", "attributes": { "weight": 1 } }, { "key": "9961", "source": "445", "target": "496", "attributes": { "weight": 3 } }, { "key": "19807", "source": "445", "target": "2248", "attributes": { "weight": 1 } }, { "key": "32711", "source": "445", "target": "1125", "attributes": { "weight": 1 } }, { "key": "18100", "source": "445", "target": "2186", "attributes": { "weight": 1 } }, { "key": "1332", "source": "445", "target": "183", "attributes": { "weight": 6 } }, { "key": "9959", "source": "445", "target": "494", "attributes": { "weight": 3 } }, { "key": "1336", "source": "445", "target": "193", "attributes": { "weight": 6 } }, { "key": "9949", "source": "445", "target": "220", "attributes": { "weight": 3 } }, { "key": "1331", "source": "445", "target": "224", "attributes": { "weight": 1 } }, { "key": "35896", "source": "445", "target": "1026", "attributes": { "weight": 1 } }, { "key": "9953", "source": "445", "target": "469", "attributes": { "weight": 3 } }, { "key": "24026", "source": "445", "target": "130", "attributes": { "weight": 2 } }, { "key": "24027", "source": "445", "target": "1116", "attributes": { "weight": 3 } }, { "key": "16777", "source": "445", "target": "59", "attributes": { "weight": 1 } }, { "key": "35298", "source": "445", "target": "431", "attributes": { "weight": 1 } }, { "key": "32710", "source": "445", "target": "472", "attributes": { "weight": 2 } }, { "key": "6653", "source": "445", "target": "189", "attributes": { "weight": 5 } }, { "key": "24339", "source": "445", "target": "1367", "attributes": { "weight": 3 } }, { "key": "1333", "source": "445", "target": "455", "attributes": { "weight": 1 } }, { "key": "16778", "source": "445", "target": "674", "attributes": { "weight": 1 } }, { "key": "12780", "source": "445", "target": "439", "attributes": { "weight": 2 } }, { "key": "35895", "source": "445", "target": "440", "attributes": { "weight": 1 } }, { "key": "9955", "source": "445", "target": "473", "attributes": { "weight": 3 } }, { "key": "19806", "source": "445", "target": "221", "attributes": { "weight": 1 } }, { "key": "32712", "source": "446", "target": "860", "attributes": { "weight": 1 } }, { "key": "24030", "source": "446", "target": "1354", "attributes": { "weight": 3 } }, { "key": "32132", "source": "446", "target": "1282", "attributes": { "weight": 1 } }, { "key": "32714", "source": "446", "target": "53", "attributes": { "weight": 1 } }, { "key": "12172", "source": "446", "target": "1161", "attributes": { "weight": 1 } }, { "key": "24031", "source": "446", "target": "130", "attributes": { "weight": 2 } }, { "key": "35357", "source": "446", "target": "3195", "attributes": { "weight": 1 } }, { "key": "8672", "source": "446", "target": "1362", "attributes": { "weight": 3 } }, { "key": "24029", "source": "446", "target": "429", "attributes": { "weight": 3 } }, { "key": "32716", "source": "446", "target": "483", "attributes": { "weight": 1 } }, { "key": "32713", "source": "446", "target": "458", "attributes": { "weight": 1 } }, { "key": "25911", "source": "446", "target": "1367", "attributes": { "weight": 1 } }, { "key": "32715", "source": "446", "target": "231", "attributes": { "weight": 1 } }, { "key": "32717", "source": "446", "target": "56", "attributes": { "weight": 2 } }, { "key": "8673", "source": "446", "target": "1125", "attributes": { "weight": 2 } }, { "key": "8671", "source": "446", "target": "1219", "attributes": { "weight": 2 } }, { "key": "8670", "source": "446", "target": "450", "attributes": { "weight": 2 } }, { "key": "17160", "source": "446", "target": "449", "attributes": { "weight": 1 } }, { "key": "1337", "source": "446", "target": "183", "attributes": { "weight": 1 } }, { "key": "11045", "source": "446", "target": "220", "attributes": { "weight": 2 } }, { "key": "24032", "source": "447", "target": "130", "attributes": { "weight": 2 } }, { "key": "29122", "source": "447", "target": "2263", "attributes": { "weight": 1 } }, { "key": "1338", "source": "447", "target": "224", "attributes": { "weight": 1 } }, { "key": "27019", "source": "447", "target": "1247", "attributes": { "weight": 1 } }, { "key": "27021", "source": "447", "target": "1282", "attributes": { "weight": 1 } }, { "key": "26299", "source": "447", "target": "1258", "attributes": { "weight": 1 } }, { "key": "23332", "source": "447", "target": "1121", "attributes": { "weight": 1 } }, { "key": "11860", "source": "447", "target": "135", "attributes": { "weight": 5 } }, { "key": "29123", "source": "447", "target": "484", "attributes": { "weight": 1 } }, { "key": "29120", "source": "447", "target": "442", "attributes": { "weight": 1 } }, { "key": "16779", "source": "447", "target": "59", "attributes": { "weight": 2 } }, { "key": "29118", "source": "447", "target": "220", "attributes": { "weight": 1 } }, { "key": "1343", "source": "447", "target": "193", "attributes": { "weight": 2 } }, { "key": "26429", "source": "447", "target": "189", "attributes": { "weight": 2 } }, { "key": "16780", "source": "447", "target": "434", "attributes": { "weight": 1 } }, { "key": "25467", "source": "447", "target": "497", "attributes": { "weight": 1 } }, { "key": "10812", "source": "447", "target": "457", "attributes": { "weight": 2 } }, { "key": "32718", "source": "447", "target": "1125", "attributes": { "weight": 1 } }, { "key": "29124", "source": "447", "target": "494", "attributes": { "weight": 1 } }, { "key": "29121", "source": "447", "target": "452", "attributes": { "weight": 1 } }, { "key": "1339", "source": "447", "target": "183", "attributes": { "weight": 3 } }, { "key": "1342", "source": "447", "target": "490", "attributes": { "weight": 1 } }, { "key": "1340", "source": "447", "target": "455", "attributes": { "weight": 1 } }, { "key": "16783", "source": "447", "target": "73", "attributes": { "weight": 1 } }, { "key": "23331", "source": "447", "target": "223", "attributes": { "weight": 1 } }, { "key": "17161", "source": "447", "target": "449", "attributes": { "weight": 1 } }, { "key": "27017", "source": "447", "target": "450", "attributes": { "weight": 2 } }, { "key": "26428", "source": "447", "target": "454", "attributes": { "weight": 2 } }, { "key": "16781", "source": "447", "target": "70", "attributes": { "weight": 1 } }, { "key": "12173", "source": "447", "target": "435", "attributes": { "weight": 3 } }, { "key": "27233", "source": "447", "target": "57", "attributes": { "weight": 2 } }, { "key": "29119", "source": "447", "target": "432", "attributes": { "weight": 1 } }, { "key": "1341", "source": "447", "target": "188", "attributes": { "weight": 1 } }, { "key": "27016", "source": "447", "target": "2645", "attributes": { "weight": 1 } }, { "key": "29022", "source": "447", "target": "495", "attributes": { "weight": 2 } }, { "key": "27018", "source": "447", "target": "1832", "attributes": { "weight": 1 } }, { "key": "33332", "source": "447", "target": "489", "attributes": { "weight": 1 } }, { "key": "33331", "source": "447", "target": "52", "attributes": { "weight": 1 } }, { "key": "16782", "source": "447", "target": "1389", "attributes": { "weight": 1 } }, { "key": "29125", "source": "447", "target": "500", "attributes": { "weight": 1 } }, { "key": "27020", "source": "447", "target": "472", "attributes": { "weight": 3 } }, { "key": "1352", "source": "448", "target": "488", "attributes": { "weight": 1 } }, { "key": "1350", "source": "448", "target": "231", "attributes": { "weight": 3 } }, { "key": "35915", "source": "448", "target": "1390", "attributes": { "weight": 1 } }, { "key": "19820", "source": "448", "target": "1756", "attributes": { "weight": 1 } }, { "key": "35909", "source": "448", "target": "1360", "attributes": { "weight": 1 } }, { "key": "35914", "source": "448", "target": "1778", "attributes": { "weight": 1 } }, { "key": "24041", "source": "448", "target": "130", "attributes": { "weight": 2 } }, { "key": "31514", "source": "448", "target": "3060", "attributes": { "weight": 1 } }, { "key": "36908", "source": "448", "target": "2647", "attributes": { "weight": 1 } }, { "key": "19822", "source": "448", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19821", "source": "448", "target": "451", "attributes": { "weight": 1 } }, { "key": "35908", "source": "448", "target": "1760", "attributes": { "weight": 1 } }, { "key": "19825", "source": "448", "target": "489", "attributes": { "weight": 1 } }, { "key": "35910", "source": "448", "target": "465", "attributes": { "weight": 1 } }, { "key": "19823", "source": "448", "target": "464", "attributes": { "weight": 1 } }, { "key": "1348", "source": "448", "target": "456", "attributes": { "weight": 1 } }, { "key": "33337", "source": "448", "target": "2258", "attributes": { "weight": 1 } }, { "key": "1351", "source": "448", "target": "232", "attributes": { "weight": 2 } }, { "key": "35911", "source": "448", "target": "1026", "attributes": { "weight": 1 } }, { "key": "35906", "source": "448", "target": "433", "attributes": { "weight": 1 } }, { "key": "19824", "source": "448", "target": "1744", "attributes": { "weight": 1 } }, { "key": "1349", "source": "448", "target": "189", "attributes": { "weight": 2 } }, { "key": "35913", "source": "448", "target": "1092", "attributes": { "weight": 1 } }, { "key": "35912", "source": "448", "target": "428", "attributes": { "weight": 1 } }, { "key": "19819", "source": "448", "target": "429", "attributes": { "weight": 1 } }, { "key": "36907", "source": "448", "target": "1072", "attributes": { "weight": 1 } }, { "key": "37064", "source": "448", "target": "857", "attributes": { "weight": 1 } }, { "key": "35907", "source": "448", "target": "440", "attributes": { "weight": 1 } }, { "key": "17203", "source": "449", "target": "470", "attributes": { "weight": 2 } }, { "key": "17181", "source": "449", "target": "223", "attributes": { "weight": 1 } }, { "key": "12178", "source": "449", "target": "1564", "attributes": { "weight": 1 } }, { "key": "17168", "source": "449", "target": "59", "attributes": { "weight": 2 } }, { "key": "4961", "source": "449", "target": "779", "attributes": { "weight": 2 } }, { "key": "17224", "source": "449", "target": "56", "attributes": { "weight": 2 } }, { "key": "19866", "source": "449", "target": "2095", "attributes": { "weight": 1 } }, { "key": "4964", "source": "449", "target": "123", "attributes": { "weight": 7 } }, { "key": "17195", "source": "449", "target": "188", "attributes": { "weight": 1 } }, { "key": "8698", "source": "449", "target": "1363", "attributes": { "weight": 2 } }, { "key": "17359", "source": "449", "target": "358", "attributes": { "weight": 2 } }, { "key": "19827", "source": "449", "target": "221", "attributes": { "weight": 1 } }, { "key": "17210", "source": "449", "target": "189", "attributes": { "weight": 2 } }, { "key": "17201", "source": "449", "target": "135", "attributes": { "weight": 2 } }, { "key": "19855", "source": "449", "target": "1367", "attributes": { "weight": 1 } }, { "key": "17229", "source": "449", "target": "497", "attributes": { "weight": 1 } }, { "key": "19859", "source": "449", "target": "2267", "attributes": { "weight": 1 } }, { "key": "19862", "source": "449", "target": "482", "attributes": { "weight": 1 } }, { "key": "19873", "source": "449", "target": "2273", "attributes": { "weight": 1 } }, { "key": "17226", "source": "449", "target": "494", "attributes": { "weight": 1 } }, { "key": "17213", "source": "449", "target": "474", "attributes": { "weight": 2 } }, { "key": "17194", "source": "449", "target": "455", "attributes": { "weight": 1 } }, { "key": "1353", "source": "449", "target": "224", "attributes": { "weight": 1 } }, { "key": "17205", "source": "449", "target": "228", "attributes": { "weight": 1 } }, { "key": "17169", "source": "449", "target": "432", "attributes": { "weight": 1 } }, { "key": "17164", "source": "449", "target": "857", "attributes": { "weight": 1 } }, { "key": "19857", "source": "449", "target": "1744", "attributes": { "weight": 1 } }, { "key": "17228", "source": "449", "target": "496", "attributes": { "weight": 1 } }, { "key": "19834", "source": "449", "target": "2241", "attributes": { "weight": 1 } }, { "key": "19838", "source": "449", "target": "1759", "attributes": { "weight": 1 } }, { "key": "19849", "source": "449", "target": "1247", "attributes": { "weight": 1 } }, { "key": "19851", "source": "449", "target": "1836", "attributes": { "weight": 1 } }, { "key": "8697", "source": "449", "target": "442", "attributes": { "weight": 3 } }, { "key": "19846", "source": "449", "target": "464", "attributes": { "weight": 1 } }, { "key": "19868", "source": "449", "target": "2271", "attributes": { "weight": 1 } }, { "key": "17221", "source": "449", "target": "1323", "attributes": { "weight": 1 } }, { "key": "19861", "source": "449", "target": "480", "attributes": { "weight": 1 } }, { "key": "19839", "source": "449", "target": "2245", "attributes": { "weight": 1 } }, { "key": "16786", "source": "449", "target": "70", "attributes": { "weight": 2 } }, { "key": "19877", "source": "449", "target": "498", "attributes": { "weight": 1 } }, { "key": "26435", "source": "449", "target": "1047", "attributes": { "weight": 2 } }, { "key": "17172", "source": "449", "target": "435", "attributes": { "weight": 2 } }, { "key": "3605", "source": "449", "target": "1025", "attributes": { "weight": 1 } }, { "key": "17184", "source": "449", "target": "445", "attributes": { "weight": 1 } }, { "key": "17220", "source": "449", "target": "2110", "attributes": { "weight": 1 } }, { "key": "19854", "source": "449", "target": "2094", "attributes": { "weight": 1 } }, { "key": "17225", "source": "449", "target": "233", "attributes": { "weight": 1 } }, { "key": "19837", "source": "449", "target": "2244", "attributes": { "weight": 1 } }, { "key": "17219", "source": "449", "target": "2109", "attributes": { "weight": 1 } }, { "key": "19843", "source": "449", "target": "1360", "attributes": { "weight": 1 } }, { "key": "17227", "source": "449", "target": "495", "attributes": { "weight": 1 } }, { "key": "19865", "source": "449", "target": "695", "attributes": { "weight": 1 } }, { "key": "19847", "source": "449", "target": "465", "attributes": { "weight": 1 } }, { "key": "17173", "source": "449", "target": "437", "attributes": { "weight": 1 } }, { "key": "17182", "source": "449", "target": "440", "attributes": { "weight": 2 } }, { "key": "19826", "source": "449", "target": "1756", "attributes": { "weight": 1 } }, { "key": "17170", "source": "449", "target": "1036", "attributes": { "weight": 2 } }, { "key": "17217", "source": "449", "target": "479", "attributes": { "weight": 2 } }, { "key": "19833", "source": "449", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19869", "source": "449", "target": "489", "attributes": { "weight": 1 } }, { "key": "17223", "source": "449", "target": "672", "attributes": { "weight": 2 } }, { "key": "17200", "source": "449", "target": "2107", "attributes": { "weight": 1 } }, { "key": "17222", "source": "449", "target": "490", "attributes": { "weight": 1 } }, { "key": "19831", "source": "449", "target": "425", "attributes": { "weight": 1 } }, { "key": "17183", "source": "449", "target": "443", "attributes": { "weight": 1 } }, { "key": "17176", "source": "449", "target": "50", "attributes": { "weight": 1 } }, { "key": "19844", "source": "449", "target": "2251", "attributes": { "weight": 1 } }, { "key": "17174", "source": "449", "target": "2105", "attributes": { "weight": 1 } }, { "key": "17177", "source": "449", "target": "2106", "attributes": { "weight": 1 } }, { "key": "17180", "source": "449", "target": "51", "attributes": { "weight": 2 } }, { "key": "17208", "source": "449", "target": "208", "attributes": { "weight": 1 } }, { "key": "19864", "source": "449", "target": "2269", "attributes": { "weight": 1 } }, { "key": "17230", "source": "449", "target": "57", "attributes": { "weight": 2 } }, { "key": "19852", "source": "449", "target": "1122", "attributes": { "weight": 1 } }, { "key": "17187", "source": "449", "target": "450", "attributes": { "weight": 2 } }, { "key": "17185", "source": "449", "target": "446", "attributes": { "weight": 1 } }, { "key": "12177", "source": "449", "target": "1535", "attributes": { "weight": 1 } }, { "key": "17196", "source": "449", "target": "1232", "attributes": { "weight": 2 } }, { "key": "17211", "source": "449", "target": "473", "attributes": { "weight": 1 } }, { "key": "4965", "source": "449", "target": "1090", "attributes": { "weight": 2 } }, { "key": "17207", "source": "449", "target": "472", "attributes": { "weight": 2 } }, { "key": "19848", "source": "449", "target": "2254", "attributes": { "weight": 1 } }, { "key": "17197", "source": "449", "target": "459", "attributes": { "weight": 2 } }, { "key": "19870", "source": "449", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19850", "source": "449", "target": "1364", "attributes": { "weight": 1 } }, { "key": "17193", "source": "449", "target": "52", "attributes": { "weight": 1 } }, { "key": "19867", "source": "449", "target": "2270", "attributes": { "weight": 1 } }, { "key": "17206", "source": "449", "target": "471", "attributes": { "weight": 3 } }, { "key": "16784", "source": "449", "target": "674", "attributes": { "weight": 3 } }, { "key": "19853", "source": "449", "target": "2258", "attributes": { "weight": 1 } }, { "key": "19832", "source": "449", "target": "2025", "attributes": { "weight": 1 } }, { "key": "17192", "source": "449", "target": "1219", "attributes": { "weight": 1 } }, { "key": "17218", "source": "449", "target": "481", "attributes": { "weight": 1 } }, { "key": "19860", "source": "449", "target": "478", "attributes": { "weight": 1 } }, { "key": "17204", "source": "449", "target": "54", "attributes": { "weight": 2 } }, { "key": "17216", "source": "449", "target": "231", "attributes": { "weight": 2 } }, { "key": "17190", "source": "449", "target": "454", "attributes": { "weight": 2 } }, { "key": "19863", "source": "449", "target": "1129", "attributes": { "weight": 1 } }, { "key": "19858", "source": "449", "target": "1026", "attributes": { "weight": 2 } }, { "key": "17202", "source": "449", "target": "469", "attributes": { "weight": 1 } }, { "key": "17166", "source": "449", "target": "1354", "attributes": { "weight": 2 } }, { "key": "7270", "source": "449", "target": "1063", "attributes": { "weight": 3 } }, { "key": "4963", "source": "449", "target": "468", "attributes": { "weight": 3 } }, { "key": "19840", "source": "449", "target": "2248", "attributes": { "weight": 1 } }, { "key": "19876", "source": "449", "target": "2276", "attributes": { "weight": 1 } }, { "key": "19856", "source": "449", "target": "1088", "attributes": { "weight": 1 } }, { "key": "17178", "source": "449", "target": "2086", "attributes": { "weight": 1 } }, { "key": "17191", "source": "449", "target": "1358", "attributes": { "weight": 2 } }, { "key": "8696", "source": "449", "target": "195", "attributes": { "weight": 3 } }, { "key": "17167", "source": "449", "target": "220", "attributes": { "weight": 1 } }, { "key": "17163", "source": "449", "target": "1353", "attributes": { "weight": 2 } }, { "key": "17189", "source": "449", "target": "452", "attributes": { "weight": 1 } }, { "key": "26302", "source": "449", "target": "1258", "attributes": { "weight": 1 } }, { "key": "32340", "source": "449", "target": "791", "attributes": { "weight": 1 } }, { "key": "17215", "source": "449", "target": "1126", "attributes": { "weight": 1 } }, { "key": "19872", "source": "449", "target": "235", "attributes": { "weight": 1 } }, { "key": "19835", "source": "449", "target": "2243", "attributes": { "weight": 1 } }, { "key": "12176", "source": "449", "target": "1829", "attributes": { "weight": 1 } }, { "key": "19875", "source": "449", "target": "1390", "attributes": { "weight": 1 } }, { "key": "17199", "source": "449", "target": "1362", "attributes": { "weight": 1 } }, { "key": "17214", "source": "449", "target": "1282", "attributes": { "weight": 2 } }, { "key": "17165", "source": "449", "target": "429", "attributes": { "weight": 2 } }, { "key": "17212", "source": "449", "target": "190", "attributes": { "weight": 1 } }, { "key": "17171", "source": "449", "target": "130", "attributes": { "weight": 2 } }, { "key": "17198", "source": "449", "target": "1811", "attributes": { "weight": 1 } }, { "key": "19842", "source": "449", "target": "186", "attributes": { "weight": 1 } }, { "key": "19841", "source": "449", "target": "1832", "attributes": { "weight": 1 } }, { "key": "17209", "source": "449", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19874", "source": "449", "target": "1375", "attributes": { "weight": 1 } }, { "key": "4962", "source": "449", "target": "370", "attributes": { "weight": 9 } }, { "key": "19845", "source": "449", "target": "2253", "attributes": { "weight": 1 } }, { "key": "17175", "source": "449", "target": "222", "attributes": { "weight": 2 } }, { "key": "19871", "source": "449", "target": "2096", "attributes": { "weight": 1 } }, { "key": "17188", "source": "449", "target": "451", "attributes": { "weight": 2 } }, { "key": "19878", "source": "449", "target": "194", "attributes": { "weight": 1 } }, { "key": "17179", "source": "449", "target": "938", "attributes": { "weight": 2 } }, { "key": "16785", "source": "449", "target": "457", "attributes": { "weight": 1 } }, { "key": "19836", "source": "449", "target": "1070", "attributes": { "weight": 1 } }, { "key": "19829", "source": "449", "target": "438", "attributes": { "weight": 1 } }, { "key": "19830", "source": "449", "target": "439", "attributes": { "weight": 1 } }, { "key": "17162", "source": "449", "target": "1141", "attributes": { "weight": 1 } }, { "key": "1354", "source": "449", "target": "183", "attributes": { "weight": 2 } }, { "key": "19828", "source": "449", "target": "1110", "attributes": { "weight": 1 } }, { "key": "17186", "source": "449", "target": "447", "attributes": { "weight": 1 } }, { "key": "4975", "source": "450", "target": "468", "attributes": { "weight": 5 } }, { "key": "12192", "source": "450", "target": "1839", "attributes": { "weight": 1 } }, { "key": "25857", "source": "450", "target": "220", "attributes": { "weight": 2 } }, { "key": "19908", "source": "450", "target": "2271", "attributes": { "weight": 1 } }, { "key": "19885", "source": "450", "target": "222", "attributes": { "weight": 1 } }, { "key": "33350", "source": "450", "target": "2258", "attributes": { "weight": 1 } }, { "key": "12191", "source": "450", "target": "1564", "attributes": { "weight": 1 } }, { "key": "27031", "source": "450", "target": "1366", "attributes": { "weight": 1 } }, { "key": "19903", "source": "450", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19897", "source": "450", "target": "2253", "attributes": { "weight": 1 } }, { "key": "12186", "source": "450", "target": "1362", "attributes": { "weight": 1 } }, { "key": "33344", "source": "450", "target": "860", "attributes": { "weight": 1 } }, { "key": "33348", "source": "450", "target": "1738", "attributes": { "weight": 1 } }, { "key": "33352", "source": "450", "target": "471", "attributes": { "weight": 1 } }, { "key": "19899", "source": "450", "target": "2254", "attributes": { "weight": 1 } }, { "key": "17232", "source": "450", "target": "2108", "attributes": { "weight": 1 } }, { "key": "27030", "source": "450", "target": "447", "attributes": { "weight": 2 } }, { "key": "19883", "source": "450", "target": "1354", "attributes": { "weight": 3 } }, { "key": "33345", "source": "450", "target": "52", "attributes": { "weight": 1 } }, { "key": "26450", "source": "450", "target": "454", "attributes": { "weight": 1 } }, { "key": "12185", "source": "450", "target": "1535", "attributes": { "weight": 1 } }, { "key": "19882", "source": "450", "target": "429", "attributes": { "weight": 2 } }, { "key": "19887", "source": "450", "target": "438", "attributes": { "weight": 1 } }, { "key": "1393", "source": "450", "target": "224", "attributes": { "weight": 1 } }, { "key": "19893", "source": "450", "target": "451", "attributes": { "weight": 2 } }, { "key": "19891", "source": "450", "target": "2244", "attributes": { "weight": 1 } }, { "key": "33354", "source": "450", "target": "473", "attributes": { "weight": 1 } }, { "key": "27034", "source": "450", "target": "494", "attributes": { "weight": 1 } }, { "key": "33349", "source": "450", "target": "470", "attributes": { "weight": 1 } }, { "key": "19892", "source": "450", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19890", "source": "450", "target": "443", "attributes": { "weight": 1 } }, { "key": "16790", "source": "450", "target": "70", "attributes": { "weight": 2 } }, { "key": "19894", "source": "450", "target": "1358", "attributes": { "weight": 1 } }, { "key": "19888", "source": "450", "target": "2025", "attributes": { "weight": 1 } }, { "key": "33356", "source": "450", "target": "474", "attributes": { "weight": 1 } }, { "key": "27032", "source": "450", "target": "2094", "attributes": { "weight": 1 } }, { "key": "33340", "source": "450", "target": "2645", "attributes": { "weight": 1 } }, { "key": "16789", "source": "450", "target": "674", "attributes": { "weight": 2 } }, { "key": "8706", "source": "450", "target": "442", "attributes": { "weight": 5 } }, { "key": "19901", "source": "450", "target": "1367", "attributes": { "weight": 1 } }, { "key": "33343", "source": "450", "target": "425", "attributes": { "weight": 1 } }, { "key": "16787", "source": "450", "target": "59", "attributes": { "weight": 2 } }, { "key": "19906", "source": "450", "target": "480", "attributes": { "weight": 1 } }, { "key": "19896", "source": "450", "target": "1998", "attributes": { "weight": 1 } }, { "key": "33339", "source": "450", "target": "432", "attributes": { "weight": 1 } }, { "key": "33341", "source": "450", "target": "858", "attributes": { "weight": 1 } }, { "key": "27033", "source": "450", "target": "479", "attributes": { "weight": 2 } }, { "key": "12189", "source": "450", "target": "472", "attributes": { "weight": 1 } }, { "key": "19884", "source": "450", "target": "130", "attributes": { "weight": 3 } }, { "key": "8707", "source": "450", "target": "446", "attributes": { "weight": 2 } }, { "key": "11867", "source": "450", "target": "1363", "attributes": { "weight": 1 } }, { "key": "12188", "source": "450", "target": "1837", "attributes": { "weight": 1 } }, { "key": "12182", "source": "450", "target": "1161", "attributes": { "weight": 1 } }, { "key": "33358", "source": "450", "target": "2110", "attributes": { "weight": 1 } }, { "key": "19889", "source": "450", "target": "2242", "attributes": { "weight": 1 } }, { "key": "27029", "source": "450", "target": "440", "attributes": { "weight": 1 } }, { "key": "33342", "source": "450", "target": "51", "attributes": { "weight": 1 } }, { "key": "12183", "source": "450", "target": "435", "attributes": { "weight": 1 } }, { "key": "19898", "source": "450", "target": "464", "attributes": { "weight": 2 } }, { "key": "33360", "source": "450", "target": "672", "attributes": { "weight": 1 } }, { "key": "19881", "source": "450", "target": "1353", "attributes": { "weight": 1 } }, { "key": "19904", "source": "450", "target": "231", "attributes": { "weight": 4 } }, { "key": "17231", "source": "450", "target": "449", "attributes": { "weight": 2 } }, { "key": "33359", "source": "450", "target": "489", "attributes": { "weight": 1 } }, { "key": "12190", "source": "450", "target": "1768", "attributes": { "weight": 1 } }, { "key": "26449", "source": "450", "target": "1047", "attributes": { "weight": 2 } }, { "key": "12184", "source": "450", "target": "1832", "attributes": { "weight": 1 } }, { "key": "31420", "source": "450", "target": "223", "attributes": { "weight": 2 } }, { "key": "33355", "source": "450", "target": "190", "attributes": { "weight": 1 } }, { "key": "19905", "source": "450", "target": "478", "attributes": { "weight": 1 } }, { "key": "19900", "source": "450", "target": "54", "attributes": { "weight": 1 } }, { "key": "17233", "source": "450", "target": "2111", "attributes": { "weight": 1 } }, { "key": "16788", "source": "450", "target": "434", "attributes": { "weight": 1 } }, { "key": "33353", "source": "450", "target": "189", "attributes": { "weight": 1 } }, { "key": "33347", "source": "450", "target": "458", "attributes": { "weight": 1 } }, { "key": "19886", "source": "450", "target": "50", "attributes": { "weight": 1 } }, { "key": "31301", "source": "450", "target": "1337", "attributes": { "weight": 1 } }, { "key": "19902", "source": "450", "target": "1087", "attributes": { "weight": 1 } }, { "key": "11868", "source": "450", "target": "135", "attributes": { "weight": 2 } }, { "key": "19909", "source": "450", "target": "56", "attributes": { "weight": 3 } }, { "key": "12193", "source": "450", "target": "1842", "attributes": { "weight": 1 } }, { "key": "12187", "source": "450", "target": "1835", "attributes": { "weight": 1 } }, { "key": "33346", "source": "450", "target": "188", "attributes": { "weight": 1 } }, { "key": "33351", "source": "450", "target": "228", "attributes": { "weight": 1 } }, { "key": "32344", "source": "450", "target": "791", "attributes": { "weight": 1 } }, { "key": "19907", "source": "450", "target": "2095", "attributes": { "weight": 1 } }, { "key": "19895", "source": "450", "target": "1360", "attributes": { "weight": 1 } }, { "key": "33357", "source": "450", "target": "1812", "attributes": { "weight": 1 } }, { "key": "17234", "source": "451", "target": "1161", "attributes": { "weight": 1 } }, { "key": "19992", "source": "451", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20009", "source": "451", "target": "2267", "attributes": { "weight": 1 } }, { "key": "1394", "source": "451", "target": "224", "attributes": { "weight": 2 } }, { "key": "26304", "source": "451", "target": "499", "attributes": { "weight": 1 } }, { "key": "19998", "source": "451", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20005", "source": "451", "target": "2260", "attributes": { "weight": 1 } }, { "key": "20003", "source": "451", "target": "1836", "attributes": { "weight": 2 } }, { "key": "19996", "source": "451", "target": "1832", "attributes": { "weight": 4 } }, { "key": "23606", "source": "451", "target": "2252", "attributes": { "weight": 1 } }, { "key": "11870", "source": "451", "target": "135", "attributes": { "weight": 5 } }, { "key": "31421", "source": "451", "target": "223", "attributes": { "weight": 2 } }, { "key": "19986", "source": "451", "target": "435", "attributes": { "weight": 3 } }, { "key": "20010", "source": "451", "target": "489", "attributes": { "weight": 2 } }, { "key": "27045", "source": "451", "target": "2105", "attributes": { "weight": 1 } }, { "key": "6725", "source": "451", "target": "193", "attributes": { "weight": 1 } }, { "key": "19987", "source": "451", "target": "1522", "attributes": { "weight": 1 } }, { "key": "19993", "source": "451", "target": "448", "attributes": { "weight": 1 } }, { "key": "6724", "source": "451", "target": "231", "attributes": { "weight": 1 } }, { "key": "17237", "source": "451", "target": "2111", "attributes": { "weight": 2 } }, { "key": "16796", "source": "451", "target": "70", "attributes": { "weight": 1 } }, { "key": "33364", "source": "451", "target": "2110", "attributes": { "weight": 1 } }, { "key": "16794", "source": "451", "target": "59", "attributes": { "weight": 1 } }, { "key": "20007", "source": "451", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19991", "source": "451", "target": "1023", "attributes": { "weight": 1 } }, { "key": "1396", "source": "451", "target": "490", "attributes": { "weight": 2 } }, { "key": "23333", "source": "451", "target": "429", "attributes": { "weight": 1 } }, { "key": "11871", "source": "451", "target": "468", "attributes": { "weight": 1 } }, { "key": "20001", "source": "451", "target": "2256", "attributes": { "weight": 1 } }, { "key": "20000", "source": "451", "target": "1247", "attributes": { "weight": 3 } }, { "key": "19994", "source": "451", "target": "450", "attributes": { "weight": 2 } }, { "key": "6723", "source": "451", "target": "189", "attributes": { "weight": 4 } }, { "key": "17236", "source": "451", "target": "2108", "attributes": { "weight": 2 } }, { "key": "26470", "source": "451", "target": "454", "attributes": { "weight": 3 } }, { "key": "19989", "source": "451", "target": "438", "attributes": { "weight": 1 } }, { "key": "27047", "source": "451", "target": "1282", "attributes": { "weight": 3 } }, { "key": "32725", "source": "451", "target": "2258", "attributes": { "weight": 3 } }, { "key": "20002", "source": "451", "target": "470", "attributes": { "weight": 4 } }, { "key": "12213", "source": "451", "target": "1564", "attributes": { "weight": 1 } }, { "key": "20004", "source": "451", "target": "472", "attributes": { "weight": 4 } }, { "key": "19999", "source": "451", "target": "2107", "attributes": { "weight": 1 } }, { "key": "1395", "source": "451", "target": "188", "attributes": { "weight": 2 } }, { "key": "32726", "source": "451", "target": "1125", "attributes": { "weight": 2 } }, { "key": "16795", "source": "451", "target": "674", "attributes": { "weight": 1 } }, { "key": "17235", "source": "451", "target": "449", "attributes": { "weight": 2 } }, { "key": "12212", "source": "451", "target": "1535", "attributes": { "weight": 1 } }, { "key": "6722", "source": "451", "target": "183", "attributes": { "weight": 2 } }, { "key": "27046", "source": "451", "target": "1219", "attributes": { "weight": 3 } }, { "key": "19988", "source": "451", "target": "2106", "attributes": { "weight": 1 } }, { "key": "27044", "source": "451", "target": "2645", "attributes": { "weight": 2 } }, { "key": "19990", "source": "451", "target": "51", "attributes": { "weight": 2 } }, { "key": "33363", "source": "451", "target": "52", "attributes": { "weight": 1 } }, { "key": "19997", "source": "451", "target": "186", "attributes": { "weight": 1 } }, { "key": "19995", "source": "451", "target": "2248", "attributes": { "weight": 2 } }, { "key": "23605", "source": "451", "target": "220", "attributes": { "weight": 1 } }, { "key": "23607", "source": "451", "target": "1312", "attributes": { "weight": 1 } }, { "key": "23608", "source": "451", "target": "2450", "attributes": { "weight": 1 } }, { "key": "36992", "source": "451", "target": "455", "attributes": { "weight": 1 } }, { "key": "33362", "source": "451", "target": "425", "attributes": { "weight": 1 } }, { "key": "26303", "source": "451", "target": "1258", "attributes": { "weight": 1 } }, { "key": "37483", "source": "451", "target": "442", "attributes": { "weight": 1 } }, { "key": "20006", "source": "451", "target": "1838", "attributes": { "weight": 1 } }, { "key": "20008", "source": "451", "target": "1744", "attributes": { "weight": 1 } }, { "key": "13049", "source": "452", "target": "304", "attributes": { "weight": 1 } }, { "key": "37445", "source": "452", "target": "435", "attributes": { "weight": 1 } }, { "key": "17238", "source": "452", "target": "449", "attributes": { "weight": 1 } }, { "key": "12348", "source": "452", "target": "357", "attributes": { "weight": 1 } }, { "key": "11088", "source": "452", "target": "170", "attributes": { "weight": 1 } }, { "key": "4125", "source": "452", "target": "228", "attributes": { "weight": 4 } }, { "key": "6727", "source": "452", "target": "495", "attributes": { "weight": 5 } }, { "key": "16800", "source": "452", "target": "70", "attributes": { "weight": 2 } }, { "key": "11076", "source": "452", "target": "454", "attributes": { "weight": 3 } }, { "key": "11064", "source": "452", "target": "223", "attributes": { "weight": 6 } }, { "key": "1401", "source": "452", "target": "193", "attributes": { "weight": 3 } }, { "key": "11065", "source": "452", "target": "440", "attributes": { "weight": 3 } }, { "key": "31465", "source": "452", "target": "178", "attributes": { "weight": 1 } }, { "key": "11114", "source": "452", "target": "428", "attributes": { "weight": 1 } }, { "key": "11115", "source": "452", "target": "1092", "attributes": { "weight": 3 } }, { "key": "25083", "source": "452", "target": "1756", "attributes": { "weight": 1 } }, { "key": "1400", "source": "452", "target": "490", "attributes": { "weight": 1 } }, { "key": "29418", "source": "452", "target": "232", "attributes": { "weight": 1 } }, { "key": "8723", "source": "452", "target": "442", "attributes": { "weight": 3 } }, { "key": "9268", "source": "452", "target": "430", "attributes": { "weight": 2 } }, { "key": "11054", "source": "452", "target": "431", "attributes": { "weight": 1 } }, { "key": "1399", "source": "452", "target": "188", "attributes": { "weight": 2 } }, { "key": "12785", "source": "452", "target": "3", "attributes": { "weight": 2 } }, { "key": "1398", "source": "452", "target": "455", "attributes": { "weight": 1 } }, { "key": "11080", "source": "452", "target": "52", "attributes": { "weight": 4 } }, { "key": "11128", "source": "452", "target": "57", "attributes": { "weight": 3 } }, { "key": "5009", "source": "452", "target": "123", "attributes": { "weight": 7 } }, { "key": "8724", "source": "452", "target": "1363", "attributes": { "weight": 2 } }, { "key": "27051", "source": "452", "target": "1282", "attributes": { "weight": 1 } }, { "key": "5007", "source": "452", "target": "370", "attributes": { "weight": 7 } }, { "key": "12787", "source": "452", "target": "781", "attributes": { "weight": 2 } }, { "key": "11085", "source": "452", "target": "791", "attributes": { "weight": 2 } }, { "key": "24341", "source": "452", "target": "1358", "attributes": { "weight": 1 } }, { "key": "11109", "source": "452", "target": "305", "attributes": { "weight": 2 } }, { "key": "4126", "source": "452", "target": "1131", "attributes": { "weight": 3 } }, { "key": "11052", "source": "452", "target": "889", "attributes": { "weight": 3 } }, { "key": "36909", "source": "452", "target": "2647", "attributes": { "weight": 1 } }, { "key": "27050", "source": "452", "target": "472", "attributes": { "weight": 1 } }, { "key": "35267", "source": "452", "target": "2259", "attributes": { "weight": 1 } }, { "key": "11075", "source": "452", "target": "1116", "attributes": { "weight": 1 } }, { "key": "11051", "source": "452", "target": "429", "attributes": { "weight": 3 } }, { "key": "11068", "source": "452", "target": "339", "attributes": { "weight": 2 } }, { "key": "24044", "source": "452", "target": "1354", "attributes": { "weight": 2 } }, { "key": "11079", "source": "452", "target": "109", "attributes": { "weight": 1 } }, { "key": "11060", "source": "452", "target": "437", "attributes": { "weight": 1 } }, { "key": "24342", "source": "452", "target": "191", "attributes": { "weight": 1 } }, { "key": "16798", "source": "452", "target": "434", "attributes": { "weight": 1 } }, { "key": "11084", "source": "452", "target": "790", "attributes": { "weight": 2 } }, { "key": "11086", "source": "452", "target": "359", "attributes": { "weight": 2 } }, { "key": "11058", "source": "452", "target": "433", "attributes": { "weight": 3 } }, { "key": "11123", "source": "452", "target": "493", "attributes": { "weight": 2 } }, { "key": "11872", "source": "452", "target": "135", "attributes": { "weight": 3 } }, { "key": "11112", "source": "452", "target": "1060", "attributes": { "weight": 2 } }, { "key": "11106", "source": "452", "target": "477", "attributes": { "weight": 4 } }, { "key": "11098", "source": "452", "target": "1367", "attributes": { "weight": 4 } }, { "key": "8725", "source": "452", "target": "229", "attributes": { "weight": 2 } }, { "key": "11099", "source": "452", "target": "189", "attributes": { "weight": 2 } }, { "key": "5008", "source": "452", "target": "468", "attributes": { "weight": 3 } }, { "key": "37446", "source": "452", "target": "2258", "attributes": { "weight": 1 } }, { "key": "1397", "source": "452", "target": "224", "attributes": { "weight": 1 } }, { "key": "11103", "source": "452", "target": "1744", "attributes": { "weight": 2 } }, { "key": "11117", "source": "452", "target": "595", "attributes": { "weight": 2 } }, { "key": "11056", "source": "452", "target": "130", "attributes": { "weight": 4 } }, { "key": "4124", "source": "452", "target": "50", "attributes": { "weight": 3 } }, { "key": "11125", "source": "452", "target": "1375", "attributes": { "weight": 3 } }, { "key": "8728", "source": "452", "target": "233", "attributes": { "weight": 3 } }, { "key": "3947", "source": "452", "target": "432", "attributes": { "weight": 5 } }, { "key": "3104", "source": "452", "target": "894", "attributes": { "weight": 2 } }, { "key": "11104", "source": "452", "target": "1592", "attributes": { "weight": 1 } }, { "key": "11081", "source": "452", "target": "5", "attributes": { "weight": 2 } }, { "key": "11105", "source": "452", "target": "1026", "attributes": { "weight": 3 } }, { "key": "17457", "source": "452", "target": "358", "attributes": { "weight": 1 } }, { "key": "16799", "source": "452", "target": "1118", "attributes": { "weight": 1 } }, { "key": "29127", "source": "452", "target": "488", "attributes": { "weight": 1 } }, { "key": "11057", "source": "452", "target": "49", "attributes": { "weight": 1 } }, { "key": "11107", "source": "452", "target": "479", "attributes": { "weight": 7 } }, { "key": "11126", "source": "452", "target": "496", "attributes": { "weight": 1 } }, { "key": "12786", "source": "452", "target": "392", "attributes": { "weight": 2 } }, { "key": "11069", "source": "452", "target": "778", "attributes": { "weight": 1 } }, { "key": "5006", "source": "452", "target": "779", "attributes": { "weight": 2 } }, { "key": "10815", "source": "452", "target": "457", "attributes": { "weight": 2 } }, { "key": "11090", "source": "452", "target": "338", "attributes": { "weight": 2 } }, { "key": "11122", "source": "452", "target": "1777", "attributes": { "weight": 1 } }, { "key": "30443", "source": "452", "target": "1046", "attributes": { "weight": 1 } }, { "key": "10485", "source": "452", "target": "225", "attributes": { "weight": 2 } }, { "key": "29126", "source": "452", "target": "447", "attributes": { "weight": 1 } }, { "key": "33366", "source": "452", "target": "672", "attributes": { "weight": 1 } }, { "key": "11083", "source": "452", "target": "278", "attributes": { "weight": 2 } }, { "key": "34971", "source": "452", "target": "352", "attributes": { "weight": 1 } }, { "key": "3606", "source": "452", "target": "1025", "attributes": { "weight": 2 } }, { "key": "11067", "source": "452", "target": "441", "attributes": { "weight": 1 } }, { "key": "11118", "source": "452", "target": "673", "attributes": { "weight": 1 } }, { "key": "27238", "source": "452", "target": "425", "attributes": { "weight": 2 } }, { "key": "11089", "source": "452", "target": "1056", "attributes": { "weight": 2 } }, { "key": "26471", "source": "452", "target": "1047", "attributes": { "weight": 2 } }, { "key": "11102", "source": "452", "target": "580", "attributes": { "weight": 1 } }, { "key": "33365", "source": "452", "target": "51", "attributes": { "weight": 1 } }, { "key": "11113", "source": "452", "target": "487", "attributes": { "weight": 2 } }, { "key": "11055", "source": "452", "target": "1036", "attributes": { "weight": 2 } }, { "key": "11097", "source": "452", "target": "371", "attributes": { "weight": 2 } }, { "key": "24046", "source": "452", "target": "1125", "attributes": { "weight": 3 } }, { "key": "11110", "source": "452", "target": "1771", "attributes": { "weight": 2 } }, { "key": "16797", "source": "452", "target": "59", "attributes": { "weight": 2 } }, { "key": "8727", "source": "452", "target": "474", "attributes": { "weight": 3 } }, { "key": "11094", "source": "452", "target": "136", "attributes": { "weight": 1 } }, { "key": "11100", "source": "452", "target": "473", "attributes": { "weight": 5 } }, { "key": "11091", "source": "452", "target": "8", "attributes": { "weight": 3 } }, { "key": "11063", "source": "452", "target": "439", "attributes": { "weight": 1 } }, { "key": "11339", "source": "452", "target": "1742", "attributes": { "weight": 1 } }, { "key": "11074", "source": "452", "target": "693", "attributes": { "weight": 1 } }, { "key": "5010", "source": "452", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11108", "source": "452", "target": "480", "attributes": { "weight": 1 } }, { "key": "10100", "source": "452", "target": "369", "attributes": { "weight": 2 } }, { "key": "11082", "source": "452", "target": "1762", "attributes": { "weight": 2 } }, { "key": "11078", "source": "452", "target": "1536", "attributes": { "weight": 1 } }, { "key": "7279", "source": "452", "target": "1063", "attributes": { "weight": 5 } }, { "key": "11096", "source": "452", "target": "471", "attributes": { "weight": 3 } }, { "key": "23748", "source": "452", "target": "1774", "attributes": { "weight": 1 } }, { "key": "11077", "source": "452", "target": "108", "attributes": { "weight": 1 } }, { "key": "11119", "source": "452", "target": "1775", "attributes": { "weight": 2 } }, { "key": "11066", "source": "452", "target": "1758", "attributes": { "weight": 2 } }, { "key": "35931", "source": "452", "target": "1360", "attributes": { "weight": 1 } }, { "key": "11087", "source": "452", "target": "1024", "attributes": { "weight": 2 } }, { "key": "11073", "source": "452", "target": "419", "attributes": { "weight": 2 } }, { "key": "11121", "source": "452", "target": "492", "attributes": { "weight": 2 } }, { "key": "11070", "source": "452", "target": "1042", "attributes": { "weight": 3 } }, { "key": "32268", "source": "452", "target": "164", "attributes": { "weight": 1 } }, { "key": "11061", "source": "452", "target": "222", "attributes": { "weight": 1 } }, { "key": "11124", "source": "452", "target": "494", "attributes": { "weight": 2 } }, { "key": "24045", "source": "452", "target": "1088", "attributes": { "weight": 4 } }, { "key": "11120", "source": "452", "target": "1093", "attributes": { "weight": 2 } }, { "key": "27048", "source": "452", "target": "1219", "attributes": { "weight": 1 } }, { "key": "11059", "source": "452", "target": "1520", "attributes": { "weight": 2 } }, { "key": "11095", "source": "452", "target": "1258", "attributes": { "weight": 2 } }, { "key": "11072", "source": "452", "target": "445", "attributes": { "weight": 6 } }, { "key": "25468", "source": "452", "target": "2270", "attributes": { "weight": 1 } }, { "key": "11116", "source": "452", "target": "491", "attributes": { "weight": 2 } }, { "key": "11111", "source": "452", "target": "695", "attributes": { "weight": 2 } }, { "key": "8726", "source": "452", "target": "1087", "attributes": { "weight": 2 } }, { "key": "11071", "source": "452", "target": "674", "attributes": { "weight": 4 } }, { "key": "2308", "source": "452", "target": "340", "attributes": { "weight": 4 } }, { "key": "33767", "source": "452", "target": "14", "attributes": { "weight": 1 } }, { "key": "8722", "source": "452", "target": "195", "attributes": { "weight": 5 } }, { "key": "6726", "source": "452", "target": "183", "attributes": { "weight": 3 } }, { "key": "11092", "source": "452", "target": "469", "attributes": { "weight": 2 } }, { "key": "11053", "source": "452", "target": "220", "attributes": { "weight": 4 } }, { "key": "14198", "source": "452", "target": "168", "attributes": { "weight": 1 } }, { "key": "11127", "source": "452", "target": "497", "attributes": { "weight": 2 } }, { "key": "11062", "source": "452", "target": "938", "attributes": { "weight": 2 } }, { "key": "23609", "source": "452", "target": "1312", "attributes": { "weight": 1 } }, { "key": "11093", "source": "452", "target": "470", "attributes": { "weight": 3 } }, { "key": "27049", "source": "452", "target": "1247", "attributes": { "weight": 1 } }, { "key": "34169", "source": "452", "target": "1232", "attributes": { "weight": 1 } }, { "key": "35932", "source": "452", "target": "1390", "attributes": { "weight": 1 } }, { "key": "32960", "source": "452", "target": "154", "attributes": { "weight": 1 } }, { "key": "17857", "source": "452", "target": "1380", "attributes": { "weight": 1 } }, { "key": "11101", "source": "452", "target": "190", "attributes": { "weight": 1 } }, { "key": "31528", "source": "453", "target": "3", "attributes": { "weight": 1 } }, { "key": "20036", "source": "453", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20030", "source": "453", "target": "2251", "attributes": { "weight": 1 } }, { "key": "6730", "source": "453", "target": "231", "attributes": { "weight": 2 } }, { "key": "20031", "source": "453", "target": "54", "attributes": { "weight": 1 } }, { "key": "20025", "source": "453", "target": "429", "attributes": { "weight": 1 } }, { "key": "20032", "source": "453", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20035", "source": "453", "target": "56", "attributes": { "weight": 1 } }, { "key": "20027", "source": "453", "target": "439", "attributes": { "weight": 1 } }, { "key": "20028", "source": "453", "target": "441", "attributes": { "weight": 1 } }, { "key": "20033", "source": "453", "target": "487", "attributes": { "weight": 1 } }, { "key": "20029", "source": "453", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20024", "source": "453", "target": "1353", "attributes": { "weight": 1 } }, { "key": "20026", "source": "453", "target": "1354", "attributes": { "weight": 1 } }, { "key": "6731", "source": "453", "target": "193", "attributes": { "weight": 2 } }, { "key": "20037", "source": "453", "target": "194", "attributes": { "weight": 1 } }, { "key": "1403", "source": "453", "target": "188", "attributes": { "weight": 1 } }, { "key": "20034", "source": "453", "target": "489", "attributes": { "weight": 1 } }, { "key": "8738", "source": "454", "target": "913", "attributes": { "weight": 5 } }, { "key": "26553", "source": "454", "target": "494", "attributes": { "weight": 1 } }, { "key": "17866", "source": "454", "target": "183", "attributes": { "weight": 2 } }, { "key": "15272", "source": "454", "target": "1377", "attributes": { "weight": 1 } }, { "key": "26514", "source": "454", "target": "1361", "attributes": { "weight": 2 } }, { "key": "6753", "source": "454", "target": "1359", "attributes": { "weight": 1 } }, { "key": "6755", "source": "454", "target": "459", "attributes": { "weight": 3 } }, { "key": "9458", "source": "454", "target": "664", "attributes": { "weight": 2 } }, { "key": "26504", "source": "454", "target": "1356", "attributes": { "weight": 1 } }, { "key": "32052", "source": "454", "target": "1816", "attributes": { "weight": 1 } }, { "key": "26497", "source": "454", "target": "2114", "attributes": { "weight": 1 } }, { "key": "26496", "source": "454", "target": "182", "attributes": { "weight": 1 } }, { "key": "15260", "source": "454", "target": "372", "attributes": { "weight": 1 } }, { "key": "18448", "source": "454", "target": "1738", "attributes": { "weight": 1 } }, { "key": "15249", "source": "454", "target": "1385", "attributes": { "weight": 1 } }, { "key": "17538", "source": "454", "target": "496", "attributes": { "weight": 2 } }, { "key": "13934", "source": "454", "target": "180", "attributes": { "weight": 1 } }, { "key": "26531", "source": "454", "target": "371", "attributes": { "weight": 2 } }, { "key": "15264", "source": "454", "target": "1322", "attributes": { "weight": 3 } }, { "key": "26493", "source": "454", "target": "778", "attributes": { "weight": 1 } }, { "key": "7287", "source": "454", "target": "53", "attributes": { "weight": 3 } }, { "key": "6749", "source": "454", "target": "433", "attributes": { "weight": 5 } }, { "key": "15253", "source": "454", "target": "54", "attributes": { "weight": 2 } }, { "key": "3607", "source": "454", "target": "1025", "attributes": { "weight": 1 } }, { "key": "7295", "source": "454", "target": "1063", "attributes": { "weight": 2 } }, { "key": "6759", "source": "454", "target": "695", "attributes": { "weight": 3 } }, { "key": "26516", "source": "454", "target": "638", "attributes": { "weight": 3 } }, { "key": "26476", "source": "454", "target": "1516", "attributes": { "weight": 1 } }, { "key": "26547", "source": "454", "target": "1337", "attributes": { "weight": 2 } }, { "key": "31594", "source": "454", "target": "595", "attributes": { "weight": 1 } }, { "key": "17862", "source": "454", "target": "59", "attributes": { "weight": 3 } }, { "key": "26533", "source": "454", "target": "474", "attributes": { "weight": 1 } }, { "key": "26478", "source": "454", "target": "35", "attributes": { "weight": 1 } }, { "key": "8737", "source": "454", "target": "442", "attributes": { "weight": 2 } }, { "key": "26477", "source": "454", "target": "1141", "attributes": { "weight": 1 } }, { "key": "14200", "source": "454", "target": "168", "attributes": { "weight": 2 } }, { "key": "6758", "source": "454", "target": "231", "attributes": { "weight": 4 } }, { "key": "15238", "source": "454", "target": "1353", "attributes": { "weight": 2 } }, { "key": "3950", "source": "454", "target": "487", "attributes": { "weight": 3 } }, { "key": "17875", "source": "454", "target": "1026", "attributes": { "weight": 3 } }, { "key": "26534", "source": "454", "target": "579", "attributes": { "weight": 2 } }, { "key": "26549", "source": "454", "target": "1750", "attributes": { "weight": 1 } }, { "key": "15271", "source": "454", "target": "56", "attributes": { "weight": 2 } }, { "key": "7291", "source": "454", "target": "375", "attributes": { "weight": 2 } }, { "key": "17867", "source": "454", "target": "1118", "attributes": { "weight": 3 } }, { "key": "26527", "source": "454", "target": "136", "attributes": { "weight": 3 } }, { "key": "11340", "source": "454", "target": "1742", "attributes": { "weight": 2 } }, { "key": "10491", "source": "454", "target": "230", "attributes": { "weight": 1 } }, { "key": "7293", "source": "454", "target": "333", "attributes": { "weight": 3 } }, { "key": "5027", "source": "454", "target": "171", "attributes": { "weight": 3 } }, { "key": "13063", "source": "454", "target": "304", "attributes": { "weight": 2 } }, { "key": "17872", "source": "454", "target": "189", "attributes": { "weight": 2 } }, { "key": "17879", "source": "454", "target": "57", "attributes": { "weight": 3 } }, { "key": "36998", "source": "454", "target": "1366", "attributes": { "weight": 1 } }, { "key": "6754", "source": "454", "target": "457", "attributes": { "weight": 5 } }, { "key": "8736", "source": "454", "target": "195", "attributes": { "weight": 6 } }, { "key": "3948", "source": "454", "target": "432", "attributes": { "weight": 2 } }, { "key": "26530", "source": "454", "target": "396", "attributes": { "weight": 1 } }, { "key": "5026", "source": "454", "target": "368", "attributes": { "weight": 9 } }, { "key": "6761", "source": "454", "target": "495", "attributes": { "weight": 5 } }, { "key": "32380", "source": "454", "target": "2211", "attributes": { "weight": 1 } }, { "key": "17860", "source": "454", "target": "1380", "attributes": { "weight": 2 } }, { "key": "26484", "source": "454", "target": "436", "attributes": { "weight": 1 } }, { "key": "26502", "source": "454", "target": "185", "attributes": { "weight": 1 } }, { "key": "26546", "source": "454", "target": "490", "attributes": { "weight": 1 } }, { "key": "25681", "source": "454", "target": "278", "attributes": { "weight": 3 } }, { "key": "15244", "source": "454", "target": "1355", "attributes": { "weight": 2 } }, { "key": "25915", "source": "454", "target": "1367", "attributes": { "weight": 2 } }, { "key": "26548", "source": "454", "target": "192", "attributes": { "weight": 2 } }, { "key": "11133", "source": "454", "target": "574", "attributes": { "weight": 2 } }, { "key": "17876", "source": "454", "target": "479", "attributes": { "weight": 4 } }, { "key": "15246", "source": "454", "target": "1357", "attributes": { "weight": 2 } }, { "key": "36996", "source": "454", "target": "2644", "attributes": { "weight": 1 } }, { "key": "26557", "source": "454", "target": "500", "attributes": { "weight": 2 } }, { "key": "26551", "source": "454", "target": "492", "attributes": { "weight": 1 } }, { "key": "7292", "source": "454", "target": "154", "attributes": { "weight": 2 } }, { "key": "12396", "source": "454", "target": "1368", "attributes": { "weight": 2 } }, { "key": "5028", "source": "454", "target": "468", "attributes": { "weight": 4 } }, { "key": "13062", "source": "454", "target": "300", "attributes": { "weight": 2 } }, { "key": "6748", "source": "454", "target": "1036", "attributes": { "weight": 5 } }, { "key": "17861", "source": "454", "target": "220", "attributes": { "weight": 4 } }, { "key": "26481", "source": "454", "target": "1520", "attributes": { "weight": 2 } }, { "key": "3949", "source": "454", "target": "458", "attributes": { "weight": 4 } }, { "key": "5029", "source": "454", "target": "1090", "attributes": { "weight": 3 } }, { "key": "15242", "source": "454", "target": "387", "attributes": { "weight": 1 } }, { "key": "26519", "source": "454", "target": "464", "attributes": { "weight": 2 } }, { "key": "6757", "source": "454", "target": "471", "attributes": { "weight": 8 } }, { "key": "26490", "source": "454", "target": "438", "attributes": { "weight": 1 } }, { "key": "26541", "source": "454", "target": "481", "attributes": { "weight": 2 } }, { "key": "15269", "source": "454", "target": "116", "attributes": { "weight": 1 } }, { "key": "13060", "source": "454", "target": "674", "attributes": { "weight": 4 } }, { "key": "13064", "source": "454", "target": "305", "attributes": { "weight": 3 } }, { "key": "13065", "source": "454", "target": "307", "attributes": { "weight": 2 } }, { "key": "12521", "source": "454", "target": "51", "attributes": { "weight": 1 } }, { "key": "24491", "source": "454", "target": "790", "attributes": { "weight": 2 } }, { "key": "17877", "source": "454", "target": "233", "attributes": { "weight": 2 } }, { "key": "17874", "source": "454", "target": "70", "attributes": { "weight": 3 } }, { "key": "26306", "source": "454", "target": "1258", "attributes": { "weight": 1 } }, { "key": "26482", "source": "454", "target": "434", "attributes": { "weight": 2 } }, { "key": "11132", "source": "454", "target": "452", "attributes": { "weight": 3 } }, { "key": "24874", "source": "454", "target": "109", "attributes": { "weight": 2 } }, { "key": "26508", "source": "454", "target": "701", "attributes": { "weight": 1 } }, { "key": "15254", "source": "454", "target": "560", "attributes": { "weight": 1 } }, { "key": "11135", "source": "454", "target": "177", "attributes": { "weight": 2 } }, { "key": "6752", "source": "454", "target": "3", "attributes": { "weight": 3 } }, { "key": "17864", "source": "454", "target": "223", "attributes": { "weight": 3 } }, { "key": "6760", "source": "454", "target": "193", "attributes": { "weight": 4 } }, { "key": "15274", "source": "454", "target": "1350", "attributes": { "weight": 1 } }, { "key": "26542", "source": "454", "target": "1060", "attributes": { "weight": 2 } }, { "key": "15268", "source": "454", "target": "488", "attributes": { "weight": 3 } }, { "key": "25088", "source": "454", "target": "427", "attributes": { "weight": 2 } }, { "key": "13061", "source": "454", "target": "264", "attributes": { "weight": 2 } }, { "key": "26526", "source": "454", "target": "1365", "attributes": { "weight": 2 } }, { "key": "26501", "source": "454", "target": "451", "attributes": { "weight": 3 } }, { "key": "30883", "source": "454", "target": "13", "attributes": { "weight": 1 } }, { "key": "26520", "source": "454", "target": "465", "attributes": { "weight": 2 } }, { "key": "5025", "source": "454", "target": "779", "attributes": { "weight": 2 } }, { "key": "26515", "source": "454", "target": "791", "attributes": { "weight": 3 } }, { "key": "7286", "source": "454", "target": "359", "attributes": { "weight": 6 } }, { "key": "26499", "source": "454", "target": "1047", "attributes": { "weight": 2 } }, { "key": "26556", "source": "454", "target": "194", "attributes": { "weight": 2 } }, { "key": "9456", "source": "454", "target": "419", "attributes": { "weight": 2 } }, { "key": "1406", "source": "454", "target": "456", "attributes": { "weight": 1 } }, { "key": "26545", "source": "454", "target": "178", "attributes": { "weight": 3 } }, { "key": "15245", "source": "454", "target": "860", "attributes": { "weight": 2 } }, { "key": "6747", "source": "454", "target": "889", "attributes": { "weight": 3 } }, { "key": "26507", "source": "454", "target": "187", "attributes": { "weight": 2 } }, { "key": "26494", "source": "454", "target": "1197", "attributes": { "weight": 2 } }, { "key": "26509", "source": "454", "target": "455", "attributes": { "weight": 1 } }, { "key": "26495", "source": "454", "target": "1045", "attributes": { "weight": 1 } }, { "key": "26555", "source": "454", "target": "498", "attributes": { "weight": 2 } }, { "key": "26528", "source": "454", "target": "472", "attributes": { "weight": 1 } }, { "key": "36951", "source": "454", "target": "362", "attributes": { "weight": 1 } }, { "key": "26511", "source": "454", "target": "707", "attributes": { "weight": 2 } }, { "key": "26489", "source": "454", "target": "938", "attributes": { "weight": 2 } }, { "key": "26500", "source": "454", "target": "369", "attributes": { "weight": 1 } }, { "key": "7290", "source": "454", "target": "1390", "attributes": { "weight": 2 } }, { "key": "10490", "source": "454", "target": "225", "attributes": { "weight": 2 } }, { "key": "15259", "source": "454", "target": "1298", "attributes": { "weight": 1 } }, { "key": "10669", "source": "454", "target": "43", "attributes": { "weight": 2 } }, { "key": "15239", "source": "454", "target": "1703", "attributes": { "weight": 1 } }, { "key": "26550", "source": "454", "target": "340", "attributes": { "weight": 2 } }, { "key": "26544", "source": "454", "target": "1323", "attributes": { "weight": 3 } }, { "key": "7288", "source": "454", "target": "190", "attributes": { "weight": 2 } }, { "key": "32106", "source": "454", "target": "788", "attributes": { "weight": 1 } }, { "key": "7289", "source": "454", "target": "1375", "attributes": { "weight": 2 } }, { "key": "26492", "source": "454", "target": "339", "attributes": { "weight": 2 } }, { "key": "29419", "source": "454", "target": "232", "attributes": { "weight": 2 } }, { "key": "15240", "source": "454", "target": "424", "attributes": { "weight": 4 } }, { "key": "15263", "source": "454", "target": "254", "attributes": { "weight": 1 } }, { "key": "9457", "source": "454", "target": "661", "attributes": { "weight": 2 } }, { "key": "17871", "source": "454", "target": "1087", "attributes": { "weight": 2 } }, { "key": "7294", "source": "454", "target": "377", "attributes": { "weight": 3 } }, { "key": "26540", "source": "454", "target": "478", "attributes": { "weight": 2 } }, { "key": "17878", "source": "454", "target": "497", "attributes": { "weight": 3 } }, { "key": "26552", "source": "454", "target": "493", "attributes": { "weight": 2 } }, { "key": "26522", "source": "454", "target": "1387", "attributes": { "weight": 1 } }, { "key": "8739", "source": "454", "target": "370", "attributes": { "weight": 8 } }, { "key": "26529", "source": "454", "target": "208", "attributes": { "weight": 2 } }, { "key": "26486", "source": "454", "target": "164", "attributes": { "weight": 2 } }, { "key": "26488", "source": "454", "target": "222", "attributes": { "weight": 1 } }, { "key": "25087", "source": "454", "target": "1547", "attributes": { "weight": 2 } }, { "key": "37065", "source": "454", "target": "857", "attributes": { "weight": 1 } }, { "key": "26512", "source": "454", "target": "1232", "attributes": { "weight": 2 } }, { "key": "17239", "source": "454", "target": "449", "attributes": { "weight": 2 } }, { "key": "32159", "source": "454", "target": "1779", "attributes": { "weight": 1 } }, { "key": "17873", "source": "454", "target": "473", "attributes": { "weight": 2 } }, { "key": "17869", "source": "454", "target": "470", "attributes": { "weight": 5 } }, { "key": "26124", "source": "454", "target": "1056", "attributes": { "weight": 2 } }, { "key": "7285", "source": "454", "target": "1046", "attributes": { "weight": 6 } }, { "key": "37323", "source": "454", "target": "1775", "attributes": { "weight": 1 } }, { "key": "15270", "source": "454", "target": "1814", "attributes": { "weight": 1 } }, { "key": "26485", "source": "454", "target": "437", "attributes": { "weight": 1 } }, { "key": "15252", "source": "454", "target": "337", "attributes": { "weight": 1 } }, { "key": "26535", "source": "454", "target": "476", "attributes": { "weight": 1 } }, { "key": "9269", "source": "454", "target": "430", "attributes": { "weight": 2 } }, { "key": "26523", "source": "454", "target": "338", "attributes": { "weight": 2 } }, { "key": "9454", "source": "454", "target": "644", "attributes": { "weight": 2 } }, { "key": "30758", "source": "454", "target": "1370", "attributes": { "weight": 1 } }, { "key": "26517", "source": "454", "target": "1024", "attributes": { "weight": 2 } }, { "key": "26498", "source": "454", "target": "450", "attributes": { "weight": 1 } }, { "key": "26537", "source": "454", "target": "1744", "attributes": { "weight": 2 } }, { "key": "36997", "source": "454", "target": "2250", "attributes": { "weight": 1 } }, { "key": "26554", "source": "454", "target": "352", "attributes": { "weight": 2 } }, { "key": "17870", "source": "454", "target": "228", "attributes": { "weight": 3 } }, { "key": "15257", "source": "454", "target": "1553", "attributes": { "weight": 1 } }, { "key": "22668", "source": "454", "target": "1037", "attributes": { "weight": 1 } }, { "key": "26538", "source": "454", "target": "123", "attributes": { "weight": 2 } }, { "key": "15247", "source": "454", "target": "1358", "attributes": { "weight": 2 } }, { "key": "6756", "source": "454", "target": "1363", "attributes": { "weight": 3 } }, { "key": "15266", "source": "454", "target": "961", "attributes": { "weight": 1 } }, { "key": "26525", "source": "454", "target": "467", "attributes": { "weight": 1 } }, { "key": "9455", "source": "454", "target": "645", "attributes": { "weight": 2 } }, { "key": "26539", "source": "454", "target": "477", "attributes": { "weight": 1 } }, { "key": "15250", "source": "454", "target": "426", "attributes": { "weight": 1 } }, { "key": "23752", "source": "454", "target": "1774", "attributes": { "weight": 1 } }, { "key": "34901", "source": "454", "target": "1042", "attributes": { "weight": 1 } }, { "key": "26483", "source": "454", "target": "435", "attributes": { "weight": 1 } }, { "key": "6751", "source": "454", "target": "445", "attributes": { "weight": 2 } }, { "key": "15241", "source": "454", "target": "1070", "attributes": { "weight": 1 } }, { "key": "25606", "source": "454", "target": "1780", "attributes": { "weight": 3 } }, { "key": "24933", "source": "454", "target": "580", "attributes": { "weight": 1 } }, { "key": "26487", "source": "454", "target": "1522", "attributes": { "weight": 2 } }, { "key": "26536", "source": "454", "target": "191", "attributes": { "weight": 1 } }, { "key": "26543", "source": "454", "target": "2270", "attributes": { "weight": 1 } }, { "key": "26513", "source": "454", "target": "1233", "attributes": { "weight": 2 } }, { "key": "11134", "source": "454", "target": "469", "attributes": { "weight": 4 } }, { "key": "26479", "source": "454", "target": "429", "attributes": { "weight": 1 } }, { "key": "26491", "source": "454", "target": "425", "attributes": { "weight": 3 } }, { "key": "15262", "source": "454", "target": "483", "attributes": { "weight": 2 } }, { "key": "17868", "source": "454", "target": "52", "attributes": { "weight": 4 } }, { "key": "15265", "source": "454", "target": "1772", "attributes": { "weight": 1 } }, { "key": "15273", "source": "454", "target": "499", "attributes": { "weight": 2 } }, { "key": "18322", "source": "454", "target": "1092", "attributes": { "weight": 2 } }, { "key": "15267", "source": "454", "target": "1373", "attributes": { "weight": 1 } }, { "key": "26503", "source": "454", "target": "1116", "attributes": { "weight": 1 } }, { "key": "26524", "source": "454", "target": "8", "attributes": { "weight": 2 } }, { "key": "15261", "source": "454", "target": "1306", "attributes": { "weight": 1 } }, { "key": "26518", "source": "454", "target": "170", "attributes": { "weight": 2 } }, { "key": "15243", "source": "454", "target": "447", "attributes": { "weight": 3 } }, { "key": "26506", "source": "454", "target": "2646", "attributes": { "weight": 1 } }, { "key": "15248", "source": "454", "target": "392", "attributes": { "weight": 1 } }, { "key": "6746", "source": "454", "target": "1354", "attributes": { "weight": 1 } }, { "key": "15251", "source": "454", "target": "462", "attributes": { "weight": 2 } }, { "key": "17863", "source": "454", "target": "130", "attributes": { "weight": 4 } }, { "key": "26521", "source": "454", "target": "817", "attributes": { "weight": 1 } }, { "key": "15256", "source": "454", "target": "1611", "attributes": { "weight": 1 } }, { "key": "15258", "source": "454", "target": "163", "attributes": { "weight": 1 } }, { "key": "15255", "source": "454", "target": "1262", "attributes": { "weight": 1 } }, { "key": "6750", "source": "454", "target": "443", "attributes": { "weight": 3 } }, { "key": "17458", "source": "454", "target": "358", "attributes": { "weight": 3 } }, { "key": "26480", "source": "454", "target": "787", "attributes": { "weight": 1 } }, { "key": "26532", "source": "454", "target": "229", "attributes": { "weight": 1 } }, { "key": "24668", "source": "454", "target": "5", "attributes": { "weight": 3 } }, { "key": "24873", "source": "454", "target": "108", "attributes": { "weight": 2 } }, { "key": "26505", "source": "454", "target": "1360", "attributes": { "weight": 2 } }, { "key": "26510", "source": "454", "target": "188", "attributes": { "weight": 1 } }, { "key": "25089", "source": "454", "target": "1093", "attributes": { "weight": 1 } }, { "key": "17865", "source": "454", "target": "440", "attributes": { "weight": 2 } }, { "key": "37005", "source": "455", "target": "1357", "attributes": { "weight": 1 } }, { "key": "1420", "source": "455", "target": "488", "attributes": { "weight": 1 } }, { "key": "15286", "source": "455", "target": "860", "attributes": { "weight": 2 } }, { "key": "24065", "source": "455", "target": "429", "attributes": { "weight": 2 } }, { "key": "37066", "source": "455", "target": "857", "attributes": { "weight": 1 } }, { "key": "1423", "source": "455", "target": "491", "attributes": { "weight": 1 } }, { "key": "1415", "source": "455", "target": "190", "attributes": { "weight": 1 } }, { "key": "1422", "source": "455", "target": "490", "attributes": { "weight": 2 } }, { "key": "26576", "source": "455", "target": "57", "attributes": { "weight": 2 } }, { "key": "15287", "source": "455", "target": "1358", "attributes": { "weight": 2 } }, { "key": "1418", "source": "455", "target": "232", "attributes": { "weight": 1 } }, { "key": "15289", "source": "455", "target": "53", "attributes": { "weight": 1 } }, { "key": "8761", "source": "455", "target": "442", "attributes": { "weight": 2 } }, { "key": "1410", "source": "455", "target": "445", "attributes": { "weight": 1 } }, { "key": "17244", "source": "455", "target": "449", "attributes": { "weight": 1 } }, { "key": "1413", "source": "455", "target": "458", "attributes": { "weight": 3 } }, { "key": "1416", "source": "455", "target": "231", "attributes": { "weight": 4 } }, { "key": "15290", "source": "455", "target": "483", "attributes": { "weight": 2 } }, { "key": "1411", "source": "455", "target": "447", "attributes": { "weight": 1 } }, { "key": "1424", "source": "455", "target": "494", "attributes": { "weight": 1 } }, { "key": "37009", "source": "455", "target": "499", "attributes": { "weight": 1 } }, { "key": "31599", "source": "455", "target": "595", "attributes": { "weight": 1 } }, { "key": "37004", "source": "455", "target": "451", "attributes": { "weight": 1 } }, { "key": "6787", "source": "455", "target": "1362", "attributes": { "weight": 1 } }, { "key": "15284", "source": "455", "target": "1353", "attributes": { "weight": 2 } }, { "key": "1419", "source": "455", "target": "487", "attributes": { "weight": 2 } }, { "key": "31312", "source": "455", "target": "674", "attributes": { "weight": 1 } }, { "key": "1412", "source": "455", "target": "452", "attributes": { "weight": 1 } }, { "key": "12237", "source": "455", "target": "472", "attributes": { "weight": 1 } }, { "key": "37007", "source": "455", "target": "1366", "attributes": { "weight": 1 } }, { "key": "1425", "source": "455", "target": "495", "attributes": { "weight": 3 } }, { "key": "37008", "source": "455", "target": "56", "attributes": { "weight": 1 } }, { "key": "5088", "source": "455", "target": "468", "attributes": { "weight": 3 } }, { "key": "37003", "source": "455", "target": "443", "attributes": { "weight": 1 } }, { "key": "6786", "source": "455", "target": "459", "attributes": { "weight": 1 } }, { "key": "11343", "source": "455", "target": "1742", "attributes": { "weight": 1 } }, { "key": "1409", "source": "455", "target": "130", "attributes": { "weight": 3 } }, { "key": "12236", "source": "455", "target": "435", "attributes": { "weight": 1 } }, { "key": "26574", "source": "455", "target": "454", "attributes": { "weight": 1 } }, { "key": "1417", "source": "455", "target": "427", "attributes": { "weight": 1 } }, { "key": "37002", "source": "455", "target": "2644", "attributes": { "weight": 1 } }, { "key": "11145", "source": "455", "target": "220", "attributes": { "weight": 2 } }, { "key": "32388", "source": "455", "target": "791", "attributes": { "weight": 1 } }, { "key": "1414", "source": "455", "target": "473", "attributes": { "weight": 1 } }, { "key": "37006", "source": "455", "target": "54", "attributes": { "weight": 1 } }, { "key": "15288", "source": "455", "target": "462", "attributes": { "weight": 2 } }, { "key": "15285", "source": "455", "target": "424", "attributes": { "weight": 3 } }, { "key": "26575", "source": "455", "target": "189", "attributes": { "weight": 1 } }, { "key": "1421", "source": "455", "target": "489", "attributes": { "weight": 1 } }, { "key": "26573", "source": "455", "target": "223", "attributes": { "weight": 3 } }, { "key": "1470", "source": "456", "target": "490", "attributes": { "weight": 1 } }, { "key": "1469", "source": "456", "target": "454", "attributes": { "weight": 1 } }, { "key": "1466", "source": "456", "target": "224", "attributes": { "weight": 1 } }, { "key": "1468", "source": "456", "target": "183", "attributes": { "weight": 1 } }, { "key": "1467", "source": "456", "target": "448", "attributes": { "weight": 1 } }, { "key": "10867", "source": "457", "target": "305", "attributes": { "weight": 2 } }, { "key": "10841", "source": "457", "target": "1540", "attributes": { "weight": 1 } }, { "key": "16814", "source": "457", "target": "1354", "attributes": { "weight": 1 } }, { "key": "37067", "source": "457", "target": "857", "attributes": { "weight": 1 } }, { "key": "16815", "source": "457", "target": "432", "attributes": { "weight": 1 } }, { "key": "10848", "source": "457", "target": "170", "attributes": { "weight": 2 } }, { "key": "10854", "source": "457", "target": "1547", "attributes": { "weight": 1 } }, { "key": "16819", "source": "457", "target": "135", "attributes": { "weight": 1 } }, { "key": "5091", "source": "457", "target": "468", "attributes": { "weight": 4 } }, { "key": "10853", "source": "457", "target": "470", "attributes": { "weight": 2 } }, { "key": "16816", "source": "457", "target": "2086", "attributes": { "weight": 1 } }, { "key": "10868", "source": "457", "target": "695", "attributes": { "weight": 2 } }, { "key": "10837", "source": "457", "target": "52", "attributes": { "weight": 1 } }, { "key": "16818", "source": "457", "target": "449", "attributes": { "weight": 1 } }, { "key": "25476", "source": "457", "target": "1360", "attributes": { "weight": 1 } }, { "key": "6805", "source": "457", "target": "188", "attributes": { "weight": 2 } }, { "key": "10827", "source": "457", "target": "1733", "attributes": { "weight": 2 } }, { "key": "10863", "source": "457", "target": "70", "attributes": { "weight": 3 } }, { "key": "10849", "source": "457", "target": "64", "attributes": { "weight": 2 } }, { "key": "10873", "source": "457", "target": "14", "attributes": { "weight": 2 } }, { "key": "10850", "source": "457", "target": "464", "attributes": { "weight": 1 } }, { "key": "16822", "source": "457", "target": "488", "attributes": { "weight": 1 } }, { "key": "10845", "source": "457", "target": "1737", "attributes": { "weight": 1 } }, { "key": "16817", "source": "457", "target": "1070", "attributes": { "weight": 1 } }, { "key": "5092", "source": "457", "target": "472", "attributes": { "weight": 3 } }, { "key": "16821", "source": "457", "target": "231", "attributes": { "weight": 1 } }, { "key": "10829", "source": "457", "target": "440", "attributes": { "weight": 2 } }, { "key": "6806", "source": "457", "target": "189", "attributes": { "weight": 4 } }, { "key": "10857", "source": "457", "target": "1742", "attributes": { "weight": 2 } }, { "key": "10881", "source": "457", "target": "497", "attributes": { "weight": 2 } }, { "key": "10874", "source": "457", "target": "1749", "attributes": { "weight": 2 } }, { "key": "10828", "source": "457", "target": "223", "attributes": { "weight": 1 } }, { "key": "10882", "source": "457", "target": "326", "attributes": { "weight": 1 } }, { "key": "10834", "source": "457", "target": "3", "attributes": { "weight": 2 } }, { "key": "6804", "source": "457", "target": "454", "attributes": { "weight": 5 } }, { "key": "10838", "source": "457", "target": "865", "attributes": { "weight": 1 } }, { "key": "6807", "source": "457", "target": "495", "attributes": { "weight": 2 } }, { "key": "10840", "source": "457", "target": "278", "attributes": { "weight": 1 } }, { "key": "1471", "source": "457", "target": "193", "attributes": { "weight": 3 } }, { "key": "15086", "source": "457", "target": "1992", "attributes": { "weight": 1 } }, { "key": "10844", "source": "457", "target": "1736", "attributes": { "weight": 2 } }, { "key": "10843", "source": "457", "target": "1735", "attributes": { "weight": 2 } }, { "key": "10877", "source": "457", "target": "340", "attributes": { "weight": 1 } }, { "key": "10821", "source": "457", "target": "429", "attributes": { "weight": 2 } }, { "key": "10826", "source": "457", "target": "164", "attributes": { "weight": 1 } }, { "key": "10855", "source": "457", "target": "471", "attributes": { "weight": 2 } }, { "key": "10839", "source": "457", "target": "168", "attributes": { "weight": 1 } }, { "key": "10875", "source": "457", "target": "72", "attributes": { "weight": 1 } }, { "key": "10835", "source": "457", "target": "452", "attributes": { "weight": 2 } }, { "key": "10861", "source": "457", "target": "1743", "attributes": { "weight": 2 } }, { "key": "10869", "source": "457", "target": "1747", "attributes": { "weight": 2 } }, { "key": "5090", "source": "457", "target": "370", "attributes": { "weight": 4 } }, { "key": "10822", "source": "457", "target": "220", "attributes": { "weight": 3 } }, { "key": "10878", "source": "457", "target": "1751", "attributes": { "weight": 1 } }, { "key": "10866", "source": "457", "target": "479", "attributes": { "weight": 3 } }, { "key": "10860", "source": "457", "target": "579", "attributes": { "weight": 2 } }, { "key": "10836", "source": "457", "target": "1118", "attributes": { "weight": 1 } }, { "key": "10865", "source": "457", "target": "304", "attributes": { "weight": 2 } }, { "key": "10859", "source": "457", "target": "474", "attributes": { "weight": 2 } }, { "key": "10870", "source": "457", "target": "178", "attributes": { "weight": 1 } }, { "key": "10871", "source": "457", "target": "1748", "attributes": { "weight": 2 } }, { "key": "10856", "source": "457", "target": "68", "attributes": { "weight": 2 } }, { "key": "10847", "source": "457", "target": "1739", "attributes": { "weight": 2 } }, { "key": "10880", "source": "457", "target": "1390", "attributes": { "weight": 2 } }, { "key": "10862", "source": "457", "target": "580", "attributes": { "weight": 2 } }, { "key": "10879", "source": "457", "target": "1753", "attributes": { "weight": 1 } }, { "key": "10872", "source": "457", "target": "595", "attributes": { "weight": 2 } }, { "key": "10824", "source": "457", "target": "424", "attributes": { "weight": 1 } }, { "key": "31315", "source": "457", "target": "791", "attributes": { "weight": 2 } }, { "key": "29851", "source": "457", "target": "1024", "attributes": { "weight": 1 } }, { "key": "10858", "source": "457", "target": "473", "attributes": { "weight": 1 } }, { "key": "10852", "source": "457", "target": "8", "attributes": { "weight": 2 } }, { "key": "10876", "source": "457", "target": "1750", "attributes": { "weight": 1 } }, { "key": "16820", "source": "457", "target": "1125", "attributes": { "weight": 1 } }, { "key": "10831", "source": "457", "target": "674", "attributes": { "weight": 3 } }, { "key": "6808", "source": "457", "target": "57", "attributes": { "weight": 2 } }, { "key": "10830", "source": "457", "target": "262", "attributes": { "weight": 1 } }, { "key": "10833", "source": "457", "target": "419", "attributes": { "weight": 1 } }, { "key": "10851", "source": "457", "target": "1740", "attributes": { "weight": 1 } }, { "key": "8765", "source": "457", "target": "442", "attributes": { "weight": 3 } }, { "key": "10842", "source": "457", "target": "1734", "attributes": { "weight": 1 } }, { "key": "6803", "source": "457", "target": "183", "attributes": { "weight": 2 } }, { "key": "10832", "source": "457", "target": "447", "attributes": { "weight": 2 } }, { "key": "10846", "source": "457", "target": "1738", "attributes": { "weight": 2 } }, { "key": "10823", "source": "457", "target": "59", "attributes": { "weight": 5 } }, { "key": "10864", "source": "457", "target": "1745", "attributes": { "weight": 2 } }, { "key": "10825", "source": "457", "target": "130", "attributes": { "weight": 4 } }, { "key": "35686", "source": "457", "target": "71", "attributes": { "weight": 1 } }, { "key": "28935", "source": "458", "target": "479", "attributes": { "weight": 1 } }, { "key": "6813", "source": "458", "target": "1365", "attributes": { "weight": 2 } }, { "key": "1474", "source": "458", "target": "455", "attributes": { "weight": 3 } }, { "key": "22839", "source": "458", "target": "462", "attributes": { "weight": 1 } }, { "key": "23618", "source": "458", "target": "220", "attributes": { "weight": 1 } }, { "key": "6810", "source": "458", "target": "182", "attributes": { "weight": 1 } }, { "key": "3954", "source": "458", "target": "432", "attributes": { "weight": 4 } }, { "key": "26312", "source": "458", "target": "1258", "attributes": { "weight": 1 } }, { "key": "6816", "source": "458", "target": "57", "attributes": { "weight": 2 } }, { "key": "27071", "source": "458", "target": "1832", "attributes": { "weight": 1 } }, { "key": "6812", "source": "458", "target": "467", "attributes": { "weight": 2 } }, { "key": "3955", "source": "458", "target": "50", "attributes": { "weight": 1 } }, { "key": "35687", "source": "458", "target": "695", "attributes": { "weight": 1 } }, { "key": "3964", "source": "458", "target": "487", "attributes": { "weight": 2 } }, { "key": "3966", "source": "458", "target": "495", "attributes": { "weight": 4 } }, { "key": "27073", "source": "458", "target": "1247", "attributes": { "weight": 2 } }, { "key": "22840", "source": "458", "target": "1085", "attributes": { "weight": 1 } }, { "key": "23619", "source": "458", "target": "2252", "attributes": { "weight": 1 } }, { "key": "1475", "source": "458", "target": "188", "attributes": { "weight": 4 } }, { "key": "6809", "source": "458", "target": "425", "attributes": { "weight": 2 } }, { "key": "3965", "source": "458", "target": "340", "attributes": { "weight": 1 } }, { "key": "35689", "source": "458", "target": "1390", "attributes": { "weight": 1 } }, { "key": "27074", "source": "458", "target": "472", "attributes": { "weight": 3 } }, { "key": "3962", "source": "458", "target": "189", "attributes": { "weight": 5 } }, { "key": "32733", "source": "458", "target": "228", "attributes": { "weight": 1 } }, { "key": "14294", "source": "458", "target": "53", "attributes": { "weight": 1 } }, { "key": "33412", "source": "458", "target": "2258", "attributes": { "weight": 1 } }, { "key": "33410", "source": "458", "target": "51", "attributes": { "weight": 1 } }, { "key": "3959", "source": "458", "target": "454", "attributes": { "weight": 4 } }, { "key": "32734", "source": "458", "target": "1088", "attributes": { "weight": 1 } }, { "key": "27260", "source": "458", "target": "52", "attributes": { "weight": 2 } }, { "key": "6811", "source": "458", "target": "187", "attributes": { "weight": 2 } }, { "key": "35688", "source": "458", "target": "1750", "attributes": { "weight": 1 } }, { "key": "22838", "source": "458", "target": "1074", "attributes": { "weight": 1 } }, { "key": "27072", "source": "458", "target": "1219", "attributes": { "weight": 1 } }, { "key": "3956", "source": "458", "target": "223", "attributes": { "weight": 3 } }, { "key": "33411", "source": "458", "target": "450", "attributes": { "weight": 1 } }, { "key": "32731", "source": "458", "target": "435", "attributes": { "weight": 3 } }, { "key": "1477", "source": "458", "target": "193", "attributes": { "weight": 3 } }, { "key": "6815", "source": "458", "target": "192", "attributes": { "weight": 2 } }, { "key": "31603", "source": "458", "target": "595", "attributes": { "weight": 1 } }, { "key": "32732", "source": "458", "target": "135", "attributes": { "weight": 3 } }, { "key": "3957", "source": "458", "target": "442", "attributes": { "weight": 1 } }, { "key": "1472", "source": "458", "target": "224", "attributes": { "weight": 2 } }, { "key": "3961", "source": "458", "target": "1087", "attributes": { "weight": 1 } }, { "key": "1476", "source": "458", "target": "490", "attributes": { "weight": 3 } }, { "key": "3963", "source": "458", "target": "483", "attributes": { "weight": 2 } }, { "key": "15297", "source": "458", "target": "672", "attributes": { "weight": 2 } }, { "key": "34975", "source": "458", "target": "352", "attributes": { "weight": 1 } }, { "key": "3960", "source": "458", "target": "8", "attributes": { "weight": 2 } }, { "key": "33413", "source": "458", "target": "473", "attributes": { "weight": 1 } }, { "key": "29852", "source": "458", "target": "1024", "attributes": { "weight": 1 } }, { "key": "32735", "source": "458", "target": "1125", "attributes": { "weight": 1 } }, { "key": "3958", "source": "458", "target": "3", "attributes": { "weight": 3 } }, { "key": "23620", "source": "458", "target": "1312", "attributes": { "weight": 1 } }, { "key": "6814", "source": "458", "target": "476", "attributes": { "weight": 2 } }, { "key": "23338", "source": "458", "target": "1121", "attributes": { "weight": 1 } }, { "key": "1473", "source": "458", "target": "183", "attributes": { "weight": 6 } }, { "key": "27075", "source": "458", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20215", "source": "459", "target": "1247", "attributes": { "weight": 3 } }, { "key": "20221", "source": "459", "target": "489", "attributes": { "weight": 3 } }, { "key": "31531", "source": "459", "target": "438", "attributes": { "weight": 1 } }, { "key": "20207", "source": "459", "target": "2106", "attributes": { "weight": 1 } }, { "key": "1480", "source": "459", "target": "490", "attributes": { "weight": 2 } }, { "key": "20218", "source": "459", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20206", "source": "459", "target": "222", "attributes": { "weight": 1 } }, { "key": "6827", "source": "459", "target": "454", "attributes": { "weight": 3 } }, { "key": "20217", "source": "459", "target": "1087", "attributes": { "weight": 1 } }, { "key": "33415", "source": "459", "target": "52", "attributes": { "weight": 1 } }, { "key": "6834", "source": "459", "target": "57", "attributes": { "weight": 1 } }, { "key": "23621", "source": "459", "target": "220", "attributes": { "weight": 3 } }, { "key": "1481", "source": "459", "target": "193", "attributes": { "weight": 2 } }, { "key": "32736", "source": "459", "target": "2258", "attributes": { "weight": 2 } }, { "key": "20212", "source": "459", "target": "1832", "attributes": { "weight": 3 } }, { "key": "6824", "source": "459", "target": "425", "attributes": { "weight": 1 } }, { "key": "20213", "source": "459", "target": "2251", "attributes": { "weight": 1 } }, { "key": "6828", "source": "459", "target": "455", "attributes": { "weight": 1 } }, { "key": "6829", "source": "459", "target": "188", "attributes": { "weight": 1 } }, { "key": "20220", "source": "459", "target": "480", "attributes": { "weight": 1 } }, { "key": "27077", "source": "459", "target": "1282", "attributes": { "weight": 2 } }, { "key": "33416", "source": "459", "target": "473", "attributes": { "weight": 1 } }, { "key": "6832", "source": "459", "target": "1369", "attributes": { "weight": 1 } }, { "key": "20208", "source": "459", "target": "51", "attributes": { "weight": 1 } }, { "key": "23339", "source": "459", "target": "223", "attributes": { "weight": 3 } }, { "key": "6826", "source": "459", "target": "1356", "attributes": { "weight": 1 } }, { "key": "20219", "source": "459", "target": "2267", "attributes": { "weight": 1 } }, { "key": "11888", "source": "459", "target": "1363", "attributes": { "weight": 2 } }, { "key": "23340", "source": "459", "target": "1366", "attributes": { "weight": 1 } }, { "key": "24066", "source": "459", "target": "1354", "attributes": { "weight": 2 } }, { "key": "6833", "source": "459", "target": "231", "attributes": { "weight": 2 } }, { "key": "20209", "source": "459", "target": "2244", "attributes": { "weight": 1 } }, { "key": "27076", "source": "459", "target": "1219", "attributes": { "weight": 1 } }, { "key": "11153", "source": "459", "target": "471", "attributes": { "weight": 5 } }, { "key": "1479", "source": "459", "target": "183", "attributes": { "weight": 3 } }, { "key": "33417", "source": "459", "target": "2110", "attributes": { "weight": 1 } }, { "key": "32090", "source": "459", "target": "3084", "attributes": { "weight": 1 } }, { "key": "20210", "source": "459", "target": "2245", "attributes": { "weight": 1 } }, { "key": "1478", "source": "459", "target": "224", "attributes": { "weight": 2 } }, { "key": "15303", "source": "459", "target": "472", "attributes": { "weight": 4 } }, { "key": "6830", "source": "459", "target": "189", "attributes": { "weight": 2 } }, { "key": "20203", "source": "459", "target": "130", "attributes": { "weight": 3 } }, { "key": "20214", "source": "459", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20204", "source": "459", "target": "221", "attributes": { "weight": 1 } }, { "key": "11889", "source": "459", "target": "468", "attributes": { "weight": 2 } }, { "key": "24068", "source": "459", "target": "1125", "attributes": { "weight": 3 } }, { "key": "24067", "source": "459", "target": "437", "attributes": { "weight": 2 } }, { "key": "20222", "source": "459", "target": "1375", "attributes": { "weight": 3 } }, { "key": "20211", "source": "459", "target": "2248", "attributes": { "weight": 2 } }, { "key": "23622", "source": "459", "target": "1312", "attributes": { "weight": 1 } }, { "key": "20202", "source": "459", "target": "429", "attributes": { "weight": 1 } }, { "key": "6831", "source": "459", "target": "476", "attributes": { "weight": 1 } }, { "key": "6825", "source": "459", "target": "185", "attributes": { "weight": 1 } }, { "key": "26313", "source": "459", "target": "1258", "attributes": { "weight": 1 } }, { "key": "17247", "source": "459", "target": "449", "attributes": { "weight": 2 } }, { "key": "16823", "source": "459", "target": "135", "attributes": { "weight": 2 } }, { "key": "20205", "source": "459", "target": "435", "attributes": { "weight": 1 } }, { "key": "20216", "source": "459", "target": "1836", "attributes": { "weight": 1 } }, { "key": "23341", "source": "460", "target": "461", "attributes": { "weight": 2 } }, { "key": "6840", "source": "460", "target": "495", "attributes": { "weight": 2 } }, { "key": "11894", "source": "460", "target": "468", "attributes": { "weight": 1 } }, { "key": "1482", "source": "460", "target": "224", "attributes": { "weight": 1 } }, { "key": "32737", "source": "460", "target": "135", "attributes": { "weight": 2 } }, { "key": "33426", "source": "460", "target": "52", "attributes": { "weight": 1 } }, { "key": "33428", "source": "460", "target": "473", "attributes": { "weight": 1 } }, { "key": "33427", "source": "460", "target": "472", "attributes": { "weight": 1 } }, { "key": "3975", "source": "460", "target": "432", "attributes": { "weight": 2 } }, { "key": "1483", "source": "461", "target": "224", "attributes": { "weight": 1 } }, { "key": "6841", "source": "461", "target": "495", "attributes": { "weight": 3 } }, { "key": "11903", "source": "461", "target": "468", "attributes": { "weight": 1 } }, { "key": "23626", "source": "461", "target": "1376", "attributes": { "weight": 1 } }, { "key": "23625", "source": "461", "target": "220", "attributes": { "weight": 1 } }, { "key": "3980", "source": "461", "target": "432", "attributes": { "weight": 3 } }, { "key": "33429", "source": "461", "target": "472", "attributes": { "weight": 1 } }, { "key": "16828", "source": "461", "target": "135", "attributes": { "weight": 2 } }, { "key": "35308", "source": "461", "target": "494", "attributes": { "weight": 1 } }, { "key": "23342", "source": "461", "target": "223", "attributes": { "weight": 1 } }, { "key": "6847", "source": "462", "target": "193", "attributes": { "weight": 1 } }, { "key": "23343", "source": "462", "target": "223", "attributes": { "weight": 1 } }, { "key": "23627", "source": "462", "target": "220", "attributes": { "weight": 1 } }, { "key": "6845", "source": "462", "target": "467", "attributes": { "weight": 1 } }, { "key": "26314", "source": "462", "target": "1258", "attributes": { "weight": 1 } }, { "key": "15307", "source": "462", "target": "672", "attributes": { "weight": 1 } }, { "key": "15306", "source": "462", "target": "490", "attributes": { "weight": 2 } }, { "key": "20223", "source": "462", "target": "221", "attributes": { "weight": 1 } }, { "key": "1484", "source": "462", "target": "224", "attributes": { "weight": 3 } }, { "key": "32738", "source": "462", "target": "135", "attributes": { "weight": 2 } }, { "key": "37011", "source": "462", "target": "425", "attributes": { "weight": 1 } }, { "key": "20228", "source": "462", "target": "2095", "attributes": { "weight": 1 } }, { "key": "27079", "source": "462", "target": "472", "attributes": { "weight": 1 } }, { "key": "3984", "source": "462", "target": "3", "attributes": { "weight": 1 } }, { "key": "15304", "source": "462", "target": "454", "attributes": { "weight": 2 } }, { "key": "20229", "source": "462", "target": "489", "attributes": { "weight": 1 } }, { "key": "20226", "source": "462", "target": "1247", "attributes": { "weight": 2 } }, { "key": "6846", "source": "462", "target": "189", "attributes": { "weight": 3 } }, { "key": "3985", "source": "462", "target": "1075", "attributes": { "weight": 2 } }, { "key": "6844", "source": "462", "target": "188", "attributes": { "weight": 2 } }, { "key": "3983", "source": "462", "target": "432", "attributes": { "weight": 2 } }, { "key": "33434", "source": "462", "target": "1219", "attributes": { "weight": 1 } }, { "key": "20224", "source": "462", "target": "464", "attributes": { "weight": 1 } }, { "key": "15305", "source": "462", "target": "455", "attributes": { "weight": 2 } }, { "key": "20227", "source": "462", "target": "1836", "attributes": { "weight": 1 } }, { "key": "3986", "source": "462", "target": "483", "attributes": { "weight": 2 } }, { "key": "20225", "source": "462", "target": "2254", "attributes": { "weight": 1 } }, { "key": "6843", "source": "462", "target": "183", "attributes": { "weight": 3 } }, { "key": "1486", "source": "463", "target": "188", "attributes": { "weight": 2 } }, { "key": "29036", "source": "463", "target": "495", "attributes": { "weight": 1 } }, { "key": "1485", "source": "463", "target": "224", "attributes": { "weight": 2 } }, { "key": "1487", "source": "463", "target": "193", "attributes": { "weight": 2 } }, { "key": "20240", "source": "464", "target": "1023", "attributes": { "weight": 1 } }, { "key": "33437", "source": "464", "target": "51", "attributes": { "weight": 1 } }, { "key": "20257", "source": "464", "target": "1812", "attributes": { "weight": 1 } }, { "key": "16834", "source": "464", "target": "434", "attributes": { "weight": 1 } }, { "key": "20262", "source": "464", "target": "2189", "attributes": { "weight": 1 } }, { "key": "16835", "source": "464", "target": "674", "attributes": { "weight": 1 } }, { "key": "20242", "source": "464", "target": "2244", "attributes": { "weight": 1 } }, { "key": "26911", "source": "464", "target": "495", "attributes": { "weight": 2 } }, { "key": "20235", "source": "464", "target": "429", "attributes": { "weight": 1 } }, { "key": "20258", "source": "464", "target": "480", "attributes": { "weight": 1 } }, { "key": "25478", "source": "464", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20251", "source": "464", "target": "1247", "attributes": { "weight": 1 } }, { "key": "16838", "source": "464", "target": "1389", "attributes": { "weight": 1 } }, { "key": "20239", "source": "464", "target": "222", "attributes": { "weight": 1 } }, { "key": "20255", "source": "464", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20246", "source": "464", "target": "450", "attributes": { "weight": 2 } }, { "key": "20250", "source": "464", "target": "462", "attributes": { "weight": 1 } }, { "key": "6849", "source": "464", "target": "193", "attributes": { "weight": 1 } }, { "key": "20237", "source": "464", "target": "221", "attributes": { "weight": 1 } }, { "key": "16837", "source": "464", "target": "1337", "attributes": { "weight": 1 } }, { "key": "31628", "source": "464", "target": "595", "attributes": { "weight": 1 } }, { "key": "26602", "source": "464", "target": "189", "attributes": { "weight": 2 } }, { "key": "33439", "source": "464", "target": "442", "attributes": { "weight": 1 } }, { "key": "33438", "source": "464", "target": "425", "attributes": { "weight": 1 } }, { "key": "25477", "source": "464", "target": "220", "attributes": { "weight": 1 } }, { "key": "20244", "source": "464", "target": "448", "attributes": { "weight": 1 } }, { "key": "1488", "source": "464", "target": "490", "attributes": { "weight": 1 } }, { "key": "33440", "source": "464", "target": "135", "attributes": { "weight": 1 } }, { "key": "25479", "source": "464", "target": "57", "attributes": { "weight": 1 } }, { "key": "20238", "source": "464", "target": "435", "attributes": { "weight": 1 } }, { "key": "33436", "source": "464", "target": "2645", "attributes": { "weight": 1 } }, { "key": "20243", "source": "464", "target": "2245", "attributes": { "weight": 1 } }, { "key": "26912", "source": "464", "target": "497", "attributes": { "weight": 1 } }, { "key": "20260", "source": "464", "target": "2111", "attributes": { "weight": 1 } }, { "key": "20249", "source": "464", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20241", "source": "464", "target": "441", "attributes": { "weight": 1 } }, { "key": "20254", "source": "464", "target": "472", "attributes": { "weight": 1 } }, { "key": "27080", "source": "464", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20253", "source": "464", "target": "471", "attributes": { "weight": 1 } }, { "key": "16833", "source": "464", "target": "59", "attributes": { "weight": 1 } }, { "key": "20261", "source": "464", "target": "489", "attributes": { "weight": 1 } }, { "key": "20236", "source": "464", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20247", "source": "464", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20252", "source": "464", "target": "1836", "attributes": { "weight": 2 } }, { "key": "20259", "source": "464", "target": "2095", "attributes": { "weight": 1 } }, { "key": "20256", "source": "464", "target": "2262", "attributes": { "weight": 1 } }, { "key": "20248", "source": "464", "target": "1832", "attributes": { "weight": 1 } }, { "key": "10898", "source": "464", "target": "457", "attributes": { "weight": 1 } }, { "key": "26601", "source": "464", "target": "454", "attributes": { "weight": 2 } }, { "key": "33441", "source": "464", "target": "2110", "attributes": { "weight": 1 } }, { "key": "20245", "source": "464", "target": "449", "attributes": { "weight": 1 } }, { "key": "16836", "source": "464", "target": "70", "attributes": { "weight": 1 } }, { "key": "35980", "source": "465", "target": "434", "attributes": { "weight": 1 } }, { "key": "35984", "source": "465", "target": "2244", "attributes": { "weight": 1 } }, { "key": "35995", "source": "465", "target": "340", "attributes": { "weight": 1 } }, { "key": "35990", "source": "465", "target": "2258", "attributes": { "weight": 1 } }, { "key": "35986", "source": "465", "target": "448", "attributes": { "weight": 1 } }, { "key": "20264", "source": "465", "target": "435", "attributes": { "weight": 1 } }, { "key": "35993", "source": "465", "target": "2262", "attributes": { "weight": 1 } }, { "key": "36925", "source": "465", "target": "1072", "attributes": { "weight": 1 } }, { "key": "35989", "source": "465", "target": "1137", "attributes": { "weight": 1 } }, { "key": "35994", "source": "465", "target": "1337", "attributes": { "weight": 1 } }, { "key": "35996", "source": "465", "target": "73", "attributes": { "weight": 1 } }, { "key": "26603", "source": "465", "target": "454", "attributes": { "weight": 2 } }, { "key": "20265", "source": "465", "target": "1070", "attributes": { "weight": 1 } }, { "key": "1489", "source": "465", "target": "183", "attributes": { "weight": 1 } }, { "key": "35983", "source": "465", "target": "224", "attributes": { "weight": 1 } }, { "key": "35987", "source": "465", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20267", "source": "465", "target": "489", "attributes": { "weight": 1 } }, { "key": "35992", "source": "465", "target": "190", "attributes": { "weight": 1 } }, { "key": "35979", "source": "465", "target": "130", "attributes": { "weight": 1 } }, { "key": "20266", "source": "465", "target": "449", "attributes": { "weight": 1 } }, { "key": "26913", "source": "465", "target": "497", "attributes": { "weight": 1 } }, { "key": "35981", "source": "465", "target": "221", "attributes": { "weight": 1 } }, { "key": "20263", "source": "465", "target": "1354", "attributes": { "weight": 1 } }, { "key": "35982", "source": "465", "target": "1023", "attributes": { "weight": 1 } }, { "key": "35985", "source": "465", "target": "1831", "attributes": { "weight": 1 } }, { "key": "35991", "source": "465", "target": "1741", "attributes": { "weight": 1 } }, { "key": "35988", "source": "465", "target": "2253", "attributes": { "weight": 1 } }, { "key": "1490", "source": "466", "target": "224", "attributes": { "weight": 1 } }, { "key": "3993", "source": "466", "target": "432", "attributes": { "weight": 2 } }, { "key": "6851", "source": "466", "target": "189", "attributes": { "weight": 1 } }, { "key": "1491", "source": "466", "target": "490", "attributes": { "weight": 1 } }, { "key": "6850", "source": "466", "target": "183", "attributes": { "weight": 1 } }, { "key": "6862", "source": "467", "target": "426", "attributes": { "weight": 1 } }, { "key": "18110", "source": "467", "target": "442", "attributes": { "weight": 1 } }, { "key": "1493", "source": "467", "target": "183", "attributes": { "weight": 1 } }, { "key": "15313", "source": "467", "target": "1703", "attributes": { "weight": 1 } }, { "key": "15315", "source": "467", "target": "1355", "attributes": { "weight": 1 } }, { "key": "6857", "source": "467", "target": "1353", "attributes": { "weight": 2 } }, { "key": "31538", "source": "467", "target": "3", "attributes": { "weight": 1 } }, { "key": "18111", "source": "467", "target": "57", "attributes": { "weight": 1 } }, { "key": "15316", "source": "467", "target": "54", "attributes": { "weight": 1 } }, { "key": "1492", "source": "467", "target": "224", "attributes": { "weight": 1 } }, { "key": "18109", "source": "467", "target": "220", "attributes": { "weight": 1 } }, { "key": "32552", "source": "467", "target": "791", "attributes": { "weight": 1 } }, { "key": "6863", "source": "467", "target": "462", "attributes": { "weight": 1 } }, { "key": "6860", "source": "467", "target": "1358", "attributes": { "weight": 2 } }, { "key": "6861", "source": "467", "target": "458", "attributes": { "weight": 2 } }, { "key": "31537", "source": "467", "target": "438", "attributes": { "weight": 1 } }, { "key": "15317", "source": "467", "target": "483", "attributes": { "weight": 2 } }, { "key": "15314", "source": "467", "target": "443", "attributes": { "weight": 1 } }, { "key": "20324", "source": "467", "target": "489", "attributes": { "weight": 1 } }, { "key": "26611", "source": "467", "target": "189", "attributes": { "weight": 1 } }, { "key": "26610", "source": "467", "target": "454", "attributes": { "weight": 1 } }, { "key": "1494", "source": "467", "target": "490", "attributes": { "weight": 1 } }, { "key": "6859", "source": "467", "target": "1357", "attributes": { "weight": 2 } }, { "key": "24083", "source": "467", "target": "130", "attributes": { "weight": 2 } }, { "key": "6865", "source": "467", "target": "56", "attributes": { "weight": 2 } }, { "key": "6864", "source": "467", "target": "231", "attributes": { "weight": 2 } }, { "key": "26612", "source": "467", "target": "495", "attributes": { "weight": 2 } }, { "key": "6858", "source": "467", "target": "424", "attributes": { "weight": 4 } }, { "key": "3807", "source": "468", "target": "645", "attributes": { "weight": 5 } }, { "key": "11980", "source": "468", "target": "460", "attributes": { "weight": 1 } }, { "key": "23778", "source": "468", "target": "1774", "attributes": { "weight": 1 } }, { "key": "11974", "source": "468", "target": "5", "attributes": { "weight": 2 } }, { "key": "11988", "source": "468", "target": "580", "attributes": { "weight": 4 } }, { "key": "11981", "source": "468", "target": "461", "attributes": { "weight": 1 } }, { "key": "5427", "source": "468", "target": "1056", "attributes": { "weight": 3 } }, { "key": "5387", "source": "468", "target": "1036", "attributes": { "weight": 4 } }, { "key": "5464", "source": "468", "target": "333", "attributes": { "weight": 6 } }, { "key": "12353", "source": "468", "target": "357", "attributes": { "weight": 1 } }, { "key": "5461", "source": "468", "target": "495", "attributes": { "weight": 4 } }, { "key": "5428", "source": "468", "target": "337", "attributes": { "weight": 4 } }, { "key": "5455", "source": "468", "target": "1322", "attributes": { "weight": 8 } }, { "key": "33051", "source": "468", "target": "493", "attributes": { "weight": 1 } }, { "key": "5416", "source": "468", "target": "1118", "attributes": { "weight": 4 } }, { "key": "5450", "source": "468", "target": "479", "attributes": { "weight": 2 } }, { "key": "11969", "source": "468", "target": "369", "attributes": { "weight": 1 } }, { "key": "5460", "source": "468", "target": "494", "attributes": { "weight": 2 } }, { "key": "11968", "source": "468", "target": "3", "attributes": { "weight": 1 } }, { "key": "5430", "source": "468", "target": "1247", "attributes": { "weight": 3 } }, { "key": "11987", "source": "468", "target": "1281", "attributes": { "weight": 1 } }, { "key": "32161", "source": "468", "target": "1779", "attributes": { "weight": 1 } }, { "key": "5462", "source": "468", "target": "497", "attributes": { "weight": 5 } }, { "key": "5423", "source": "468", "target": "791", "attributes": { "weight": 3 } }, { "key": "5405", "source": "468", "target": "368", "attributes": { "weight": 7 } }, { "key": "5408", "source": "468", "target": "358", "attributes": { "weight": 6 } }, { "key": "5437", "source": "468", "target": "472", "attributes": { "weight": 5 } }, { "key": "5447", "source": "468", "target": "1026", "attributes": { "weight": 3 } }, { "key": "5401", "source": "468", "target": "779", "attributes": { "weight": 2 } }, { "key": "11966", "source": "468", "target": "339", "attributes": { "weight": 2 } }, { "key": "5453", "source": "468", "target": "1312", "attributes": { "weight": 2 } }, { "key": "5466", "source": "468", "target": "1063", "attributes": { "weight": 7 } }, { "key": "27735", "source": "468", "target": "1553", "attributes": { "weight": 1 } }, { "key": "11965", "source": "468", "target": "164", "attributes": { "weight": 4 } }, { "key": "5400", "source": "468", "target": "442", "attributes": { "weight": 3 } }, { "key": "5425", "source": "468", "target": "638", "attributes": { "weight": 6 } }, { "key": "5403", "source": "468", "target": "636", "attributes": { "weight": 2 } }, { "key": "10504", "source": "468", "target": "234", "attributes": { "weight": 1 } }, { "key": "5390", "source": "468", "target": "130", "attributes": { "weight": 3 } }, { "key": "5422", "source": "468", "target": "1233", "attributes": { "weight": 6 } }, { "key": "29130", "source": "468", "target": "488", "attributes": { "weight": 1 } }, { "key": "17256", "source": "468", "target": "2108", "attributes": { "weight": 1 } }, { "key": "5424", "source": "468", "target": "370", "attributes": { "weight": 12 } }, { "key": "5451", "source": "468", "target": "480", "attributes": { "weight": 2 } }, { "key": "5468", "source": "468", "target": "57", "attributes": { "weight": 4 } }, { "key": "5409", "source": "468", "target": "1133", "attributes": { "weight": 2 } }, { "key": "11995", "source": "468", "target": "894", "attributes": { "weight": 2 } }, { "key": "11993", "source": "468", "target": "1060", "attributes": { "weight": 3 } }, { "key": "5402", "source": "468", "target": "674", "attributes": { "weight": 3 } }, { "key": "5418", "source": "468", "target": "455", "attributes": { "weight": 3 } }, { "key": "30461", "source": "468", "target": "1046", "attributes": { "weight": 2 } }, { "key": "1496", "source": "468", "target": "188", "attributes": { "weight": 4 } }, { "key": "5449", "source": "468", "target": "1294", "attributes": { "weight": 4 } }, { "key": "25630", "source": "468", "target": "1780", "attributes": { "weight": 1 } }, { "key": "5443", "source": "468", "target": "474", "attributes": { "weight": 2 } }, { "key": "11990", "source": "468", "target": "304", "attributes": { "weight": 3 } }, { "key": "5440", "source": "468", "target": "189", "attributes": { "weight": 4 } }, { "key": "5454", "source": "468", "target": "1315", "attributes": { "weight": 4 } }, { "key": "11971", "source": "468", "target": "134", "attributes": { "weight": 1 } }, { "key": "5411", "source": "468", "target": "1047", "attributes": { "weight": 8 } }, { "key": "5394", "source": "468", "target": "644", "attributes": { "weight": 2 } }, { "key": "4001", "source": "468", "target": "432", "attributes": { "weight": 5 } }, { "key": "31664", "source": "468", "target": "595", "attributes": { "weight": 1 } }, { "key": "11986", "source": "468", "target": "471", "attributes": { "weight": 2 } }, { "key": "24530", "source": "468", "target": "790", "attributes": { "weight": 1 } }, { "key": "34909", "source": "468", "target": "1042", "attributes": { "weight": 1 } }, { "key": "5389", "source": "468", "target": "1037", "attributes": { "weight": 4 } }, { "key": "8829", "source": "468", "target": "913", "attributes": { "weight": 4 } }, { "key": "5412", "source": "468", "target": "452", "attributes": { "weight": 3 } }, { "key": "11973", "source": "468", "target": "109", "attributes": { "weight": 2 } }, { "key": "5388", "source": "468", "target": "1152", "attributes": { "weight": 4 } }, { "key": "11979", "source": "468", "target": "359", "attributes": { "weight": 2 } }, { "key": "11994", "source": "468", "target": "178", "attributes": { "weight": 4 } }, { "key": "5445", "source": "468", "target": "123", "attributes": { "weight": 9 } }, { "key": "11983", "source": "468", "target": "1387", "attributes": { "weight": 1 } }, { "key": "5458", "source": "468", "target": "1337", "attributes": { "weight": 3 } }, { "key": "11975", "source": "468", "target": "168", "attributes": { "weight": 3 } }, { "key": "29811", "source": "468", "target": "93", "attributes": { "weight": 1 } }, { "key": "14714", "source": "468", "target": "259", "attributes": { "weight": 1 } }, { "key": "11989", "source": "468", "target": "1744", "attributes": { "weight": 1 } }, { "key": "5406", "source": "468", "target": "449", "attributes": { "weight": 3 } }, { "key": "5381", "source": "468", "target": "1141", "attributes": { "weight": 5 } }, { "key": "1497", "source": "468", "target": "490", "attributes": { "weight": 4 } }, { "key": "5426", "source": "468", "target": "171", "attributes": { "weight": 2 } }, { "key": "9798", "source": "468", "target": "396", "attributes": { "weight": 3 } }, { "key": "5465", "source": "468", "target": "377", "attributes": { "weight": 6 } }, { "key": "7335", "source": "468", "target": "375", "attributes": { "weight": 2 } }, { "key": "11970", "source": "468", "target": "451", "attributes": { "weight": 1 } }, { "key": "17926", "source": "468", "target": "1380", "attributes": { "weight": 1 } }, { "key": "5383", "source": "468", "target": "429", "attributes": { "weight": 2 } }, { "key": "5444", "source": "468", "target": "1282", "attributes": { "weight": 3 } }, { "key": "5436", "source": "468", "target": "661", "attributes": { "weight": 2 } }, { "key": "7334", "source": "468", "target": "1350", "attributes": { "weight": 2 } }, { "key": "5457", "source": "468", "target": "1092", "attributes": { "weight": 3 } }, { "key": "11985", "source": "468", "target": "136", "attributes": { "weight": 3 } }, { "key": "27874", "source": "468", "target": "2528", "attributes": { "weight": 1 } }, { "key": "7336", "source": "468", "target": "1424", "attributes": { "weight": 2 } }, { "key": "5404", "source": "468", "target": "1197", "attributes": { "weight": 4 } }, { "key": "11967", "source": "468", "target": "264", "attributes": { "weight": 1 } }, { "key": "5399", "source": "468", "target": "1174", "attributes": { "weight": 4 } }, { "key": "1495", "source": "468", "target": "224", "attributes": { "weight": 1 } }, { "key": "8830", "source": "468", "target": "925", "attributes": { "weight": 4 } }, { "key": "5386", "source": "468", "target": "195", "attributes": { "weight": 8 } }, { "key": "25921", "source": "468", "target": "1367", "attributes": { "weight": 1 } }, { "key": "3808", "source": "468", "target": "419", "attributes": { "weight": 5 } }, { "key": "5421", "source": "468", "target": "1232", "attributes": { "weight": 8 } }, { "key": "11963", "source": "468", "target": "889", "attributes": { "weight": 2 } }, { "key": "29700", "source": "468", "target": "421", "attributes": { "weight": 1 } }, { "key": "11978", "source": "468", "target": "278", "attributes": { "weight": 3 } }, { "key": "5393", "source": "468", "target": "222", "attributes": { "weight": 2 } }, { "key": "11991", "source": "468", "target": "231", "attributes": { "weight": 2 } }, { "key": "11984", "source": "468", "target": "8", "attributes": { "weight": 1 } }, { "key": "5432", "source": "468", "target": "469", "attributes": { "weight": 4 } }, { "key": "11962", "source": "468", "target": "787", "attributes": { "weight": 2 } }, { "key": "5384", "source": "468", "target": "220", "attributes": { "weight": 5 } }, { "key": "6867", "source": "468", "target": "1125", "attributes": { "weight": 3 } }, { "key": "5420", "source": "468", "target": "651", "attributes": { "weight": 2 } }, { "key": "5415", "source": "468", "target": "1219", "attributes": { "weight": 3 } }, { "key": "5446", "source": "468", "target": "70", "attributes": { "weight": 4 } }, { "key": "5456", "source": "468", "target": "1323", "attributes": { "weight": 10 } }, { "key": "11982", "source": "468", "target": "1024", "attributes": { "weight": 1 } }, { "key": "5452", "source": "468", "target": "1305", "attributes": { "weight": 6 } }, { "key": "5459", "source": "468", "target": "233", "attributes": { "weight": 2 } }, { "key": "10503", "source": "468", "target": "225", "attributes": { "weight": 1 } }, { "key": "5392", "source": "468", "target": "1161", "attributes": { "weight": 4 } }, { "key": "9290", "source": "468", "target": "430", "attributes": { "weight": 1 } }, { "key": "5414", "source": "468", "target": "1217", "attributes": { "weight": 2 } }, { "key": "29701", "source": "468", "target": "1763", "attributes": { "weight": 1 } }, { "key": "24087", "source": "468", "target": "1766", "attributes": { "weight": 2 } }, { "key": "29129", "source": "468", "target": "484", "attributes": { "weight": 1 } }, { "key": "5407", "source": "468", "target": "183", "attributes": { "weight": 3 } }, { "key": "5433", "source": "468", "target": "470", "attributes": { "weight": 7 } }, { "key": "12354", "source": "468", "target": "365", "attributes": { "weight": 1 } }, { "key": "5413", "source": "468", "target": "454", "attributes": { "weight": 4 } }, { "key": "24086", "source": "468", "target": "437", "attributes": { "weight": 2 } }, { "key": "25382", "source": "468", "target": "433", "attributes": { "weight": 1 } }, { "key": "11972", "source": "468", "target": "108", "attributes": { "weight": 1 } }, { "key": "11964", "source": "468", "target": "1520", "attributes": { "weight": 3 } }, { "key": "5397", "source": "468", "target": "425", "attributes": { "weight": 3 } }, { "key": "5439", "source": "468", "target": "1087", "attributes": { "weight": 2 } }, { "key": "11961", "source": "468", "target": "1516", "attributes": { "weight": 1 } }, { "key": "1498", "source": "468", "target": "193", "attributes": { "weight": 4 } }, { "key": "5435", "source": "468", "target": "228", "attributes": { "weight": 2 } }, { "key": "5396", "source": "468", "target": "223", "attributes": { "weight": 3 } }, { "key": "5382", "source": "468", "target": "35", "attributes": { "weight": 2 } }, { "key": "5431", "source": "468", "target": "53", "attributes": { "weight": 3 } }, { "key": "5385", "source": "468", "target": "59", "attributes": { "weight": 6 } }, { "key": "5391", "source": "468", "target": "434", "attributes": { "weight": 2 } }, { "key": "5442", "source": "468", "target": "163", "attributes": { "weight": 3 } }, { "key": "29702", "source": "468", "target": "1253", "attributes": { "weight": 1 } }, { "key": "5417", "source": "468", "target": "52", "attributes": { "weight": 3 } }, { "key": "5419", "source": "468", "target": "457", "attributes": { "weight": 4 } }, { "key": "5441", "source": "468", "target": "473", "attributes": { "weight": 2 } }, { "key": "5410", "source": "468", "target": "450", "attributes": { "weight": 5 } }, { "key": "17257", "source": "468", "target": "2111", "attributes": { "weight": 1 } }, { "key": "7333", "source": "468", "target": "373", "attributes": { "weight": 2 } }, { "key": "11976", "source": "468", "target": "707", "attributes": { "weight": 4 } }, { "key": "5448", "source": "468", "target": "1090", "attributes": { "weight": 5 } }, { "key": "34999", "source": "468", "target": "352", "attributes": { "weight": 2 } }, { "key": "5429", "source": "468", "target": "338", "attributes": { "weight": 11 } }, { "key": "5438", "source": "468", "target": "371", "attributes": { "weight": 7 } }, { "key": "5395", "source": "468", "target": "938", "attributes": { "weight": 9 } }, { "key": "5434", "source": "468", "target": "1258", "attributes": { "weight": 2 } }, { "key": "18475", "source": "468", "target": "1738", "attributes": { "weight": 1 } }, { "key": "5398", "source": "468", "target": "440", "attributes": { "weight": 3 } }, { "key": "5467", "source": "468", "target": "500", "attributes": { "weight": 3 } }, { "key": "36957", "source": "468", "target": "362", "attributes": { "weight": 1 } }, { "key": "5463", "source": "468", "target": "154", "attributes": { "weight": 6 } }, { "key": "11977", "source": "468", "target": "459", "attributes": { "weight": 2 } }, { "key": "11992", "source": "468", "target": "305", "attributes": { "weight": 4 } }, { "key": "11996", "source": "468", "target": "340", "attributes": { "weight": 2 } }, { "key": "1499", "source": "469", "target": "193", "attributes": { "weight": 1 } }, { "key": "11177", "source": "469", "target": "223", "attributes": { "weight": 4 } }, { "key": "8837", "source": "469", "target": "1125", "attributes": { "weight": 3 } }, { "key": "9967", "source": "469", "target": "439", "attributes": { "weight": 2 } }, { "key": "11181", "source": "469", "target": "454", "attributes": { "weight": 4 } }, { "key": "11186", "source": "469", "target": "491", "attributes": { "weight": 1 } }, { "key": "8835", "source": "469", "target": "442", "attributes": { "weight": 3 } }, { "key": "11183", "source": "469", "target": "479", "attributes": { "weight": 1 } }, { "key": "11184", "source": "469", "target": "1770", "attributes": { "weight": 1 } }, { "key": "31330", "source": "469", "target": "59", "attributes": { "weight": 1 } }, { "key": "11187", "source": "469", "target": "1777", "attributes": { "weight": 1 } }, { "key": "11175", "source": "469", "target": "130", "attributes": { "weight": 1 } }, { "key": "24090", "source": "469", "target": "471", "attributes": { "weight": 1 } }, { "key": "9966", "source": "469", "target": "220", "attributes": { "weight": 3 } }, { "key": "11189", "source": "469", "target": "497", "attributes": { "weight": 1 } }, { "key": "11182", "source": "469", "target": "1026", "attributes": { "weight": 2 } }, { "key": "11178", "source": "469", "target": "441", "attributes": { "weight": 1 } }, { "key": "11176", "source": "469", "target": "49", "attributes": { "weight": 1 } }, { "key": "9969", "source": "469", "target": "190", "attributes": { "weight": 4 } }, { "key": "9970", "source": "469", "target": "477", "attributes": { "weight": 2 } }, { "key": "31331", "source": "469", "target": "674", "attributes": { "weight": 1 } }, { "key": "9968", "source": "469", "target": "445", "attributes": { "weight": 3 } }, { "key": "11180", "source": "469", "target": "452", "attributes": { "weight": 2 } }, { "key": "24348", "source": "469", "target": "191", "attributes": { "weight": 1 } }, { "key": "8836", "source": "469", "target": "1363", "attributes": { "weight": 2 } }, { "key": "24347", "source": "469", "target": "1367", "attributes": { "weight": 2 } }, { "key": "11188", "source": "469", "target": "495", "attributes": { "weight": 1 } }, { "key": "17258", "source": "469", "target": "449", "attributes": { "weight": 1 } }, { "key": "5478", "source": "469", "target": "468", "attributes": { "weight": 4 } }, { "key": "33493", "source": "469", "target": "135", "attributes": { "weight": 1 } }, { "key": "11185", "source": "469", "target": "1771", "attributes": { "weight": 2 } }, { "key": "11174", "source": "469", "target": "1756", "attributes": { "weight": 1 } }, { "key": "11179", "source": "469", "target": "1759", "attributes": { "weight": 1 } }, { "key": "30762", "source": "470", "target": "59", "attributes": { "weight": 2 } }, { "key": "32893", "source": "470", "target": "1047", "attributes": { "weight": 3 } }, { "key": "32908", "source": "470", "target": "1306", "attributes": { "weight": 1 } }, { "key": "8839", "source": "470", "target": "442", "attributes": { "weight": 3 } }, { "key": "32898", "source": "470", "target": "228", "attributes": { "weight": 2 } }, { "key": "10901", "source": "470", "target": "220", "attributes": { "weight": 8 } }, { "key": "32883", "source": "470", "target": "35", "attributes": { "weight": 1 } }, { "key": "20335", "source": "470", "target": "1023", "attributes": { "weight": 1 } }, { "key": "32914", "source": "470", "target": "234", "attributes": { "weight": 1 } }, { "key": "5482", "source": "470", "target": "468", "attributes": { "weight": 6 } }, { "key": "32915", "source": "470", "target": "1505", "attributes": { "weight": 1 } }, { "key": "33498", "source": "470", "target": "2258", "attributes": { "weight": 1 } }, { "key": "30903", "source": "470", "target": "3", "attributes": { "weight": 2 } }, { "key": "32556", "source": "470", "target": "791", "attributes": { "weight": 2 } }, { "key": "18069", "source": "470", "target": "2182", "attributes": { "weight": 3 } }, { "key": "11190", "source": "470", "target": "222", "attributes": { "weight": 3 } }, { "key": "17483", "source": "470", "target": "358", "attributes": { "weight": 2 } }, { "key": "29896", "source": "470", "target": "1024", "attributes": { "weight": 2 } }, { "key": "32913", "source": "470", "target": "2064", "attributes": { "weight": 2 } }, { "key": "32916", "source": "470", "target": "3114", "attributes": { "weight": 2 } }, { "key": "33052", "source": "470", "target": "493", "attributes": { "weight": 1 } }, { "key": "32906", "source": "470", "target": "1710", "attributes": { "weight": 2 } }, { "key": "20342", "source": "470", "target": "480", "attributes": { "weight": 1 } }, { "key": "30771", "source": "470", "target": "1374", "attributes": { "weight": 2 } }, { "key": "20343", "source": "470", "target": "489", "attributes": { "weight": 1 } }, { "key": "30770", "source": "470", "target": "3003", "attributes": { "weight": 2 } }, { "key": "20341", "source": "470", "target": "1744", "attributes": { "weight": 4 } }, { "key": "32904", "source": "470", "target": "607", "attributes": { "weight": 1 } }, { "key": "20337", "source": "470", "target": "451", "attributes": { "weight": 4 } }, { "key": "30772", "source": "470", "target": "3004", "attributes": { "weight": 2 } }, { "key": "30773", "source": "470", "target": "1375", "attributes": { "weight": 2 } }, { "key": "30774", "source": "470", "target": "1063", "attributes": { "weight": 3 } }, { "key": "32892", "source": "470", "target": "183", "attributes": { "weight": 1 } }, { "key": "10904", "source": "470", "target": "457", "attributes": { "weight": 2 } }, { "key": "32886", "source": "470", "target": "103", "attributes": { "weight": 1 } }, { "key": "16868", "source": "470", "target": "70", "attributes": { "weight": 2 } }, { "key": "32889", "source": "470", "target": "778", "attributes": { "weight": 1 } }, { "key": "30769", "source": "470", "target": "3002", "attributes": { "weight": 2 } }, { "key": "10505", "source": "470", "target": "225", "attributes": { "weight": 2 } }, { "key": "32902", "source": "470", "target": "474", "attributes": { "weight": 2 } }, { "key": "17260", "source": "470", "target": "2108", "attributes": { "weight": 1 } }, { "key": "24092", "source": "470", "target": "471", "attributes": { "weight": 6 } }, { "key": "32891", "source": "470", "target": "39", "attributes": { "weight": 1 } }, { "key": "9293", "source": "470", "target": "430", "attributes": { "weight": 2 } }, { "key": "32895", "source": "470", "target": "108", "attributes": { "weight": 1 } }, { "key": "10902", "source": "470", "target": "223", "attributes": { "weight": 8 } }, { "key": "26916", "source": "470", "target": "497", "attributes": { "weight": 2 } }, { "key": "18068", "source": "470", "target": "429", "attributes": { "weight": 3 } }, { "key": "32967", "source": "470", "target": "154", "attributes": { "weight": 1 } }, { "key": "32884", "source": "470", "target": "36", "attributes": { "weight": 1 } }, { "key": "10905", "source": "470", "target": "57", "attributes": { "weight": 4 } }, { "key": "26615", "source": "470", "target": "189", "attributes": { "weight": 2 } }, { "key": "32885", "source": "470", "target": "50", "attributes": { "weight": 2 } }, { "key": "1501", "source": "470", "target": "490", "attributes": { "weight": 1 } }, { "key": "32894", "source": "470", "target": "1455", "attributes": { "weight": 1 } }, { "key": "32910", "source": "470", "target": "116", "attributes": { "weight": 1 } }, { "key": "3631", "source": "470", "target": "1025", "attributes": { "weight": 1 } }, { "key": "30765", "source": "470", "target": "1357", "attributes": { "weight": 4 } }, { "key": "20340", "source": "470", "target": "1087", "attributes": { "weight": 2 } }, { "key": "23631", "source": "470", "target": "2248", "attributes": { "weight": 1 } }, { "key": "30763", "source": "470", "target": "437", "attributes": { "weight": 3 } }, { "key": "32912", "source": "470", "target": "233", "attributes": { "weight": 1 } }, { "key": "32911", "source": "470", "target": "672", "attributes": { "weight": 2 } }, { "key": "10903", "source": "470", "target": "52", "attributes": { "weight": 4 } }, { "key": "32909", "source": "470", "target": "2450", "attributes": { "weight": 2 } }, { "key": "26614", "source": "470", "target": "188", "attributes": { "weight": 2 } }, { "key": "30768", "source": "470", "target": "1370", "attributes": { "weight": 2 } }, { "key": "16466", "source": "470", "target": "1387", "attributes": { "weight": 2 } }, { "key": "16867", "source": "470", "target": "674", "attributes": { "weight": 3 } }, { "key": "30767", "source": "470", "target": "135", "attributes": { "weight": 3 } }, { "key": "5483", "source": "470", "target": "1090", "attributes": { "weight": 3 } }, { "key": "11193", "source": "470", "target": "494", "attributes": { "weight": 2 } }, { "key": "33497", "source": "470", "target": "1836", "attributes": { "weight": 1 } }, { "key": "11192", "source": "470", "target": "473", "attributes": { "weight": 3 } }, { "key": "20338", "source": "470", "target": "2253", "attributes": { "weight": 1 } }, { "key": "32907", "source": "470", "target": "482", "attributes": { "weight": 1 } }, { "key": "17927", "source": "470", "target": "454", "attributes": { "weight": 4 } }, { "key": "32887", "source": "470", "target": "440", "attributes": { "weight": 1 } }, { "key": "33494", "source": "470", "target": "51", "attributes": { "weight": 1 } }, { "key": "32888", "source": "470", "target": "2644", "attributes": { "weight": 2 } }, { "key": "17259", "source": "470", "target": "449", "attributes": { "weight": 2 } }, { "key": "24093", "source": "470", "target": "1125", "attributes": { "weight": 5 } }, { "key": "1500", "source": "470", "target": "224", "attributes": { "weight": 1 } }, { "key": "29040", "source": "470", "target": "495", "attributes": { "weight": 2 } }, { "key": "33495", "source": "470", "target": "425", "attributes": { "weight": 1 } }, { "key": "32903", "source": "470", "target": "1026", "attributes": { "weight": 1 } }, { "key": "24091", "source": "470", "target": "130", "attributes": { "weight": 4 } }, { "key": "32763", "source": "470", "target": "1088", "attributes": { "weight": 1 } }, { "key": "30766", "source": "470", "target": "3001", "attributes": { "weight": 2 } }, { "key": "32905", "source": "470", "target": "479", "attributes": { "weight": 1 } }, { "key": "28664", "source": "470", "target": "54", "attributes": { "weight": 2 } }, { "key": "11191", "source": "470", "target": "452", "attributes": { "weight": 2 } }, { "key": "20339", "source": "470", "target": "472", "attributes": { "weight": 2 } }, { "key": "32899", "source": "470", "target": "371", "attributes": { "weight": 2 } }, { "key": "33496", "source": "470", "target": "450", "attributes": { "weight": 1 } }, { "key": "32897", "source": "470", "target": "1766", "attributes": { "weight": 1 } }, { "key": "32900", "source": "470", "target": "2177", "attributes": { "weight": 1 } }, { "key": "32890", "source": "470", "target": "1186", "attributes": { "weight": 1 } }, { "key": "20336", "source": "470", "target": "2246", "attributes": { "weight": 1 } }, { "key": "26316", "source": "470", "target": "1258", "attributes": { "weight": 3 } }, { "key": "32901", "source": "470", "target": "1478", "attributes": { "weight": 1 } }, { "key": "30764", "source": "470", "target": "938", "attributes": { "weight": 2 } }, { "key": "32896", "source": "470", "target": "109", "attributes": { "weight": 1 } }, { "key": "25745", "source": "471", "target": "278", "attributes": { "weight": 1 } }, { "key": "24107", "source": "471", "target": "35", "attributes": { "weight": 1 } }, { "key": "24139", "source": "471", "target": "2470", "attributes": { "weight": 2 } }, { "key": "24120", "source": "471", "target": "1810", "attributes": { "weight": 1 } }, { "key": "24146", "source": "471", "target": "407", "attributes": { "weight": 1 } }, { "key": "31665", "source": "471", "target": "595", "attributes": { "weight": 2 } }, { "key": "17092", "source": "471", "target": "130", "attributes": { "weight": 4 } }, { "key": "24137", "source": "471", "target": "1088", "attributes": { "weight": 1 } }, { "key": "24144", "source": "471", "target": "601", "attributes": { "weight": 2 } }, { "key": "17090", "source": "471", "target": "372", "attributes": { "weight": 3 } }, { "key": "32276", "source": "471", "target": "164", "attributes": { "weight": 1 } }, { "key": "24152", "source": "471", "target": "340", "attributes": { "weight": 2 } }, { "key": "33551", "source": "471", "target": "672", "attributes": { "weight": 1 } }, { "key": "33545", "source": "471", "target": "51", "attributes": { "weight": 1 } }, { "key": "5500", "source": "471", "target": "370", "attributes": { "weight": 9 } }, { "key": "9810", "source": "471", "target": "396", "attributes": { "weight": 4 } }, { "key": "11201", "source": "471", "target": "231", "attributes": { "weight": 4 } }, { "key": "24150", "source": "471", "target": "1131", "attributes": { "weight": 1 } }, { "key": "14267", "source": "471", "target": "1046", "attributes": { "weight": 3 } }, { "key": "20443", "source": "471", "target": "1744", "attributes": { "weight": 6 } }, { "key": "24119", "source": "471", "target": "108", "attributes": { "weight": 1 } }, { "key": "20438", "source": "471", "target": "445", "attributes": { "weight": 1 } }, { "key": "26880", "source": "471", "target": "894", "attributes": { "weight": 1 } }, { "key": "24122", "source": "471", "target": "45", "attributes": { "weight": 2 } }, { "key": "29437", "source": "471", "target": "232", "attributes": { "weight": 1 } }, { "key": "20450", "source": "471", "target": "56", "attributes": { "weight": 2 } }, { "key": "14156", "source": "471", "target": "1891", "attributes": { "weight": 1 } }, { "key": "9809", "source": "471", "target": "387", "attributes": { "weight": 4 } }, { "key": "5503", "source": "471", "target": "123", "attributes": { "weight": 4 } }, { "key": "11196", "source": "471", "target": "452", "attributes": { "weight": 3 } }, { "key": "35208", "source": "471", "target": "254", "attributes": { "weight": 1 } }, { "key": "16877", "source": "471", "target": "674", "attributes": { "weight": 3 } }, { "key": "20447", "source": "471", "target": "2095", "attributes": { "weight": 1 } }, { "key": "5502", "source": "471", "target": "371", "attributes": { "weight": 5 } }, { "key": "24142", "source": "471", "target": "1031", "attributes": { "weight": 1 } }, { "key": "35206", "source": "471", "target": "781", "attributes": { "weight": 1 } }, { "key": "24126", "source": "471", "target": "1364", "attributes": { "weight": 2 } }, { "key": "26362", "source": "471", "target": "1258", "attributes": { "weight": 1 } }, { "key": "24117", "source": "471", "target": "2466", "attributes": { "weight": 1 } }, { "key": "25878", "source": "471", "target": "220", "attributes": { "weight": 3 } }, { "key": "24133", "source": "471", "target": "2094", "attributes": { "weight": 1 } }, { "key": "11199", "source": "471", "target": "1766", "attributes": { "weight": 3 } }, { "key": "36031", "source": "471", "target": "1760", "attributes": { "weight": 1 } }, { "key": "20433", "source": "471", "target": "440", "attributes": { "weight": 2 } }, { "key": "24116", "source": "471", "target": "3", "attributes": { "weight": 2 } }, { "key": "10908", "source": "471", "target": "1568", "attributes": { "weight": 4 } }, { "key": "24149", "source": "471", "target": "1374", "attributes": { "weight": 1 } }, { "key": "24136", "source": "471", "target": "474", "attributes": { "weight": 1 } }, { "key": "24110", "source": "471", "target": "889", "attributes": { "weight": 2 } }, { "key": "33549", "source": "471", "target": "1836", "attributes": { "weight": 1 } }, { "key": "10712", "source": "471", "target": "782", "attributes": { "weight": 1 } }, { "key": "24154", "source": "471", "target": "48", "attributes": { "weight": 2 } }, { "key": "13271", "source": "471", "target": "109", "attributes": { "weight": 5 } }, { "key": "6881", "source": "471", "target": "193", "attributes": { "weight": 2 } }, { "key": "6883", "source": "471", "target": "57", "attributes": { "weight": 3 } }, { "key": "10710", "source": "471", "target": "43", "attributes": { "weight": 2 } }, { "key": "11197", "source": "471", "target": "1358", "attributes": { "weight": 4 } }, { "key": "24125", "source": "471", "target": "1120", "attributes": { "weight": 1 } }, { "key": "24138", "source": "471", "target": "1592", "attributes": { "weight": 1 } }, { "key": "24121", "source": "471", "target": "391", "attributes": { "weight": 1 } }, { "key": "10909", "source": "471", "target": "1375", "attributes": { "weight": 3 } }, { "key": "6879", "source": "471", "target": "52", "attributes": { "weight": 4 } }, { "key": "33547", "source": "471", "target": "450", "attributes": { "weight": 1 } }, { "key": "9303", "source": "471", "target": "430", "attributes": { "weight": 2 } }, { "key": "11198", "source": "471", "target": "459", "attributes": { "weight": 5 } }, { "key": "24151", "source": "471", "target": "233", "attributes": { "weight": 1 } }, { "key": "23635", "source": "471", "target": "1312", "attributes": { "weight": 1 } }, { "key": "18324", "source": "471", "target": "1092", "attributes": { "weight": 3 } }, { "key": "20435", "source": "471", "target": "441", "attributes": { "weight": 1 } }, { "key": "24134", "source": "471", "target": "2469", "attributes": { "weight": 1 } }, { "key": "33548", "source": "471", "target": "135", "attributes": { "weight": 2 } }, { "key": "24153", "source": "471", "target": "492", "attributes": { "weight": 1 } }, { "key": "24109", "source": "471", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20429", "source": "471", "target": "1353", "attributes": { "weight": 3 } }, { "key": "24124", "source": "471", "target": "1387", "attributes": { "weight": 1 } }, { "key": "24145", "source": "471", "target": "2271", "attributes": { "weight": 1 } }, { "key": "35207", "source": "471", "target": "605", "attributes": { "weight": 1 } }, { "key": "24148", "source": "471", "target": "1565", "attributes": { "weight": 1 } }, { "key": "17263", "source": "471", "target": "449", "attributes": { "weight": 3 } }, { "key": "11202", "source": "471", "target": "1711", "attributes": { "weight": 5 } }, { "key": "24135", "source": "471", "target": "473", "attributes": { "weight": 3 } }, { "key": "24132", "source": "471", "target": "1366", "attributes": { "weight": 1 } }, { "key": "31965", "source": "471", "target": "359", "attributes": { "weight": 2 } }, { "key": "6878", "source": "471", "target": "454", "attributes": { "weight": 8 } }, { "key": "24131", "source": "471", "target": "228", "attributes": { "weight": 2 } }, { "key": "35205", "source": "471", "target": "3183", "attributes": { "weight": 1 } }, { "key": "24112", "source": "471", "target": "437", "attributes": { "weight": 2 } }, { "key": "23634", "source": "471", "target": "2248", "attributes": { "weight": 1 } }, { "key": "10907", "source": "471", "target": "457", "attributes": { "weight": 2 } }, { "key": "5504", "source": "471", "target": "1090", "attributes": { "weight": 2 } }, { "key": "24129", "source": "471", "target": "470", "attributes": { "weight": 6 } }, { "key": "5501", "source": "471", "target": "338", "attributes": { "weight": 4 } }, { "key": "6880", "source": "471", "target": "189", "attributes": { "weight": 4 } }, { "key": "13272", "source": "471", "target": "304", "attributes": { "weight": 2 } }, { "key": "20444", "source": "471", "target": "477", "attributes": { "weight": 1 } }, { "key": "20441", "source": "471", "target": "1367", "attributes": { "weight": 1 } }, { "key": "9808", "source": "471", "target": "223", "attributes": { "weight": 5 } }, { "key": "26918", "source": "471", "target": "497", "attributes": { "weight": 1 } }, { "key": "8864", "source": "471", "target": "442", "attributes": { "weight": 3 } }, { "key": "24123", "source": "471", "target": "1024", "attributes": { "weight": 2 } }, { "key": "24128", "source": "471", "target": "469", "attributes": { "weight": 1 } }, { "key": "4007", "source": "471", "target": "432", "attributes": { "weight": 2 } }, { "key": "24111", "source": "471", "target": "59", "attributes": { "weight": 2 } }, { "key": "10711", "source": "471", "target": "44", "attributes": { "weight": 1 } }, { "key": "1504", "source": "471", "target": "183", "attributes": { "weight": 3 } }, { "key": "24108", "source": "471", "target": "429", "attributes": { "weight": 2 } }, { "key": "20434", "source": "471", "target": "1023", "attributes": { "weight": 1 } }, { "key": "8865", "source": "471", "target": "1125", "attributes": { "weight": 3 } }, { "key": "28909", "source": "471", "target": "1349", "attributes": { "weight": 2 } }, { "key": "6882", "source": "471", "target": "495", "attributes": { "weight": 3 } }, { "key": "26622", "source": "471", "target": "1047", "attributes": { "weight": 2 } }, { "key": "24114", "source": "471", "target": "778", "attributes": { "weight": 3 } }, { "key": "20440", "source": "471", "target": "472", "attributes": { "weight": 1 } }, { "key": "24141", "source": "471", "target": "479", "attributes": { "weight": 4 } }, { "key": "24156", "source": "471", "target": "499", "attributes": { "weight": 1 } }, { "key": "35000", "source": "471", "target": "352", "attributes": { "weight": 1 } }, { "key": "10512", "source": "471", "target": "234", "attributes": { "weight": 3 } }, { "key": "20449", "source": "471", "target": "489", "attributes": { "weight": 1 } }, { "key": "24118", "source": "471", "target": "1116", "attributes": { "weight": 2 } }, { "key": "20437", "source": "471", "target": "2245", "attributes": { "weight": 1 } }, { "key": "32561", "source": "471", "target": "791", "attributes": { "weight": 1 } }, { "key": "30731", "source": "471", "target": "1026", "attributes": { "weight": 3 } }, { "key": "20436", "source": "471", "target": "2244", "attributes": { "weight": 1 } }, { "key": "24115", "source": "471", "target": "39", "attributes": { "weight": 2 } }, { "key": "20430", "source": "471", "target": "1756", "attributes": { "weight": 1 } }, { "key": "27879", "source": "471", "target": "339", "attributes": { "weight": 1 } }, { "key": "24130", "source": "471", "target": "136", "attributes": { "weight": 1 } }, { "key": "33053", "source": "471", "target": "1355", "attributes": { "weight": 1 } }, { "key": "20448", "source": "471", "target": "2109", "attributes": { "weight": 2 } }, { "key": "33550", "source": "471", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20442", "source": "471", "target": "1087", "attributes": { "weight": 2 } }, { "key": "20431", "source": "471", "target": "221", "attributes": { "weight": 1 } }, { "key": "24127", "source": "471", "target": "30", "attributes": { "weight": 3 } }, { "key": "17487", "source": "471", "target": "358", "attributes": { "weight": 1 } }, { "key": "24113", "source": "471", "target": "50", "attributes": { "weight": 1 } }, { "key": "10511", "source": "471", "target": "482", "attributes": { "weight": 3 } }, { "key": "36032", "source": "471", "target": "1778", "attributes": { "weight": 1 } }, { "key": "24155", "source": "471", "target": "494", "attributes": { "weight": 1 } }, { "key": "24147", "source": "471", "target": "1373", "attributes": { "weight": 1 } }, { "key": "20439", "source": "471", "target": "464", "attributes": { "weight": 1 } }, { "key": "10510", "source": "471", "target": "225", "attributes": { "weight": 2 } }, { "key": "5498", "source": "471", "target": "938", "attributes": { "weight": 4 } }, { "key": "12000", "source": "471", "target": "468", "attributes": { "weight": 2 } }, { "key": "5499", "source": "471", "target": "368", "attributes": { "weight": 5 } }, { "key": "33054", "source": "471", "target": "493", "attributes": { "weight": 1 } }, { "key": "8863", "source": "471", "target": "195", "attributes": { "weight": 4 } }, { "key": "11200", "source": "471", "target": "54", "attributes": { "weight": 5 } }, { "key": "20446", "source": "471", "target": "1560", "attributes": { "weight": 1 } }, { "key": "11999", "source": "471", "target": "1363", "attributes": { "weight": 2 } }, { "key": "24140", "source": "471", "target": "1746", "attributes": { "weight": 1 } }, { "key": "1505", "source": "471", "target": "188", "attributes": { "weight": 1 } }, { "key": "35209", "source": "471", "target": "116", "attributes": { "weight": 1 } }, { "key": "14155", "source": "471", "target": "392", "attributes": { "weight": 2 } }, { "key": "10118", "source": "471", "target": "369", "attributes": { "weight": 3 } }, { "key": "33546", "source": "471", "target": "425", "attributes": { "weight": 1 } }, { "key": "20445", "source": "471", "target": "480", "attributes": { "weight": 1 } }, { "key": "24143", "source": "471", "target": "2472", "attributes": { "weight": 1 } }, { "key": "20432", "source": "471", "target": "222", "attributes": { "weight": 2 } }, { "key": "20478", "source": "472", "target": "2270", "attributes": { "weight": 1 } }, { "key": "12281", "source": "472", "target": "455", "attributes": { "weight": 1 } }, { "key": "1506", "source": "472", "target": "224", "attributes": { "weight": 1 } }, { "key": "12286", "source": "472", "target": "1838", "attributes": { "weight": 1 } }, { "key": "15333", "source": "472", "target": "1094", "attributes": { "weight": 3 } }, { "key": "27119", "source": "472", "target": "474", "attributes": { "weight": 1 } }, { "key": "8867", "source": "472", "target": "442", "attributes": { "weight": 4 } }, { "key": "5508", "source": "472", "target": "468", "attributes": { "weight": 5 } }, { "key": "26625", "source": "472", "target": "189", "attributes": { "weight": 6 } }, { "key": "32971", "source": "472", "target": "377", "attributes": { "weight": 1 } }, { "key": "35566", "source": "472", "target": "1158", "attributes": { "weight": 1 } }, { "key": "5510", "source": "472", "target": "1090", "attributes": { "weight": 2 } }, { "key": "20458", "source": "472", "target": "222", "attributes": { "weight": 1 } }, { "key": "32780", "source": "472", "target": "445", "attributes": { "weight": 2 } }, { "key": "32782", "source": "472", "target": "1364", "attributes": { "weight": 2 } }, { "key": "27114", "source": "472", "target": "1357", "attributes": { "weight": 2 } }, { "key": "15330", "source": "472", "target": "231", "attributes": { "weight": 8 } }, { "key": "17265", "source": "472", "target": "2108", "attributes": { "weight": 1 } }, { "key": "15332", "source": "472", "target": "1347", "attributes": { "weight": 1 } }, { "key": "33553", "source": "472", "target": "437", "attributes": { "weight": 1 } }, { "key": "1507", "source": "472", "target": "188", "attributes": { "weight": 2 } }, { "key": "27112", "source": "472", "target": "860", "attributes": { "weight": 6 } }, { "key": "20471", "source": "472", "target": "54", "attributes": { "weight": 6 } }, { "key": "20477", "source": "472", "target": "2095", "attributes": { "weight": 1 } }, { "key": "32788", "source": "472", "target": "496", "attributes": { "weight": 2 } }, { "key": "32785", "source": "472", "target": "1371", "attributes": { "weight": 1 } }, { "key": "15325", "source": "472", "target": "1358", "attributes": { "weight": 5 } }, { "key": "27111", "source": "472", "target": "447", "attributes": { "weight": 3 } }, { "key": "20483", "source": "472", "target": "194", "attributes": { "weight": 1 } }, { "key": "27880", "source": "472", "target": "339", "attributes": { "weight": 1 } }, { "key": "32777", "source": "472", "target": "857", "attributes": { "weight": 1 } }, { "key": "31966", "source": "472", "target": "359", "attributes": { "weight": 2 } }, { "key": "27121", "source": "472", "target": "480", "attributes": { "weight": 1 } }, { "key": "20482", "source": "472", "target": "2276", "attributes": { "weight": 1 } }, { "key": "37462", "source": "472", "target": "1217", "attributes": { "weight": 1 } }, { "key": "20460", "source": "472", "target": "440", "attributes": { "weight": 2 } }, { "key": "33552", "source": "472", "target": "2645", "attributes": { "weight": 1 } }, { "key": "33556", "source": "472", "target": "52", "attributes": { "weight": 1 } }, { "key": "20467", "source": "472", "target": "1360", "attributes": { "weight": 1 } }, { "key": "27118", "source": "472", "target": "1366", "attributes": { "weight": 3 } }, { "key": "20476", "source": "472", "target": "695", "attributes": { "weight": 1 } }, { "key": "15327", "source": "472", "target": "337", "attributes": { "weight": 4 } }, { "key": "20462", "source": "472", "target": "2242", "attributes": { "weight": 1 } }, { "key": "12276", "source": "472", "target": "1161", "attributes": { "weight": 1 } }, { "key": "32562", "source": "472", "target": "791", "attributes": { "weight": 1 } }, { "key": "16880", "source": "472", "target": "1337", "attributes": { "weight": 1 } }, { "key": "8866", "source": "472", "target": "195", "attributes": { "weight": 4 } }, { "key": "33554", "source": "472", "target": "425", "attributes": { "weight": 1 } }, { "key": "27122", "source": "472", "target": "481", "attributes": { "weight": 2 } }, { "key": "17488", "source": "472", "target": "358", "attributes": { "weight": 2 } }, { "key": "15328", "source": "472", "target": "1262", "attributes": { "weight": 1 } }, { "key": "20461", "source": "472", "target": "1023", "attributes": { "weight": 1 } }, { "key": "18476", "source": "472", "target": "1738", "attributes": { "weight": 2 } }, { "key": "27123", "source": "472", "target": "483", "attributes": { "weight": 3 } }, { "key": "20465", "source": "472", "target": "2245", "attributes": { "weight": 1 } }, { "key": "16878", "source": "472", "target": "59", "attributes": { "weight": 3 } }, { "key": "25922", "source": "472", "target": "1367", "attributes": { "weight": 4 } }, { "key": "33561", "source": "472", "target": "340", "attributes": { "weight": 1 } }, { "key": "15331", "source": "472", "target": "56", "attributes": { "weight": 8 } }, { "key": "31335", "source": "472", "target": "674", "attributes": { "weight": 3 } }, { "key": "27120", "source": "472", "target": "479", "attributes": { "weight": 2 } }, { "key": "5506", "source": "472", "target": "457", "attributes": { "weight": 3 } }, { "key": "27127", "source": "472", "target": "495", "attributes": { "weight": 1 } }, { "key": "20468", "source": "472", "target": "2251", "attributes": { "weight": 1 } }, { "key": "29704", "source": "472", "target": "1253", "attributes": { "weight": 1 } }, { "key": "20454", "source": "472", "target": "429", "attributes": { "weight": 5 } }, { "key": "15329", "source": "472", "target": "208", "attributes": { "weight": 3 } }, { "key": "27116", "source": "472", "target": "462", "attributes": { "weight": 2 } }, { "key": "20469", "source": "472", "target": "464", "attributes": { "weight": 1 } }, { "key": "20459", "source": "472", "target": "438", "attributes": { "weight": 1 } }, { "key": "12278", "source": "472", "target": "450", "attributes": { "weight": 1 } }, { "key": "12287", "source": "472", "target": "475", "attributes": { "weight": 1 } }, { "key": "12290", "source": "472", "target": "1841", "attributes": { "weight": 1 } }, { "key": "20463", "source": "472", "target": "443", "attributes": { "weight": 3 } }, { "key": "12002", "source": "472", "target": "1522", "attributes": { "weight": 1 } }, { "key": "33558", "source": "472", "target": "487", "attributes": { "weight": 1 } }, { "key": "20466", "source": "472", "target": "451", "attributes": { "weight": 4 } }, { "key": "27126", "source": "472", "target": "494", "attributes": { "weight": 4 } }, { "key": "15324", "source": "472", "target": "387", "attributes": { "weight": 4 } }, { "key": "32787", "source": "472", "target": "2450", "attributes": { "weight": 2 } }, { "key": "8868", "source": "472", "target": "1088", "attributes": { "weight": 2 } }, { "key": "26623", "source": "472", "target": "1047", "attributes": { "weight": 2 } }, { "key": "25879", "source": "472", "target": "220", "attributes": { "weight": 2 } }, { "key": "20455", "source": "472", "target": "1354", "attributes": { "weight": 5 } }, { "key": "12289", "source": "472", "target": "1564", "attributes": { "weight": 1 } }, { "key": "33557", "source": "472", "target": "460", "attributes": { "weight": 1 } }, { "key": "31424", "source": "472", "target": "223", "attributes": { "weight": 1 } }, { "key": "32778", "source": "472", "target": "1703", "attributes": { "weight": 3 } }, { "key": "27125", "source": "472", "target": "233", "attributes": { "weight": 1 } }, { "key": "20475", "source": "472", "target": "2269", "attributes": { "weight": 3 } }, { "key": "20472", "source": "472", "target": "471", "attributes": { "weight": 1 } }, { "key": "26624", "source": "472", "target": "454", "attributes": { "weight": 1 } }, { "key": "32217", "source": "472", "target": "426", "attributes": { "weight": 4 } }, { "key": "31334", "source": "472", "target": "434", "attributes": { "weight": 1 } }, { "key": "32783", "source": "472", "target": "190", "attributes": { "weight": 3 } }, { "key": "15326", "source": "472", "target": "459", "attributes": { "weight": 4 } }, { "key": "18071", "source": "472", "target": "1036", "attributes": { "weight": 1 } }, { "key": "20474", "source": "472", "target": "1812", "attributes": { "weight": 7 } }, { "key": "12288", "source": "472", "target": "1768", "attributes": { "weight": 1 } }, { "key": "27110", "source": "472", "target": "858", "attributes": { "weight": 4 } }, { "key": "32215", "source": "472", "target": "424", "attributes": { "weight": 4 } }, { "key": "12282", "source": "472", "target": "1834", "attributes": { "weight": 1 } }, { "key": "5509", "source": "472", "target": "123", "attributes": { "weight": 5 } }, { "key": "20481", "source": "472", "target": "1375", "attributes": { "weight": 1 } }, { "key": "32784", "source": "472", "target": "372", "attributes": { "weight": 2 } }, { "key": "33559", "source": "472", "target": "1092", "attributes": { "weight": 1 } }, { "key": "17264", "source": "472", "target": "449", "attributes": { "weight": 2 } }, { "key": "12277", "source": "472", "target": "183", "attributes": { "weight": 2 } }, { "key": "27117", "source": "472", "target": "53", "attributes": { "weight": 5 } }, { "key": "4008", "source": "472", "target": "432", "attributes": { "weight": 3 } }, { "key": "20470", "source": "472", "target": "470", "attributes": { "weight": 2 } }, { "key": "16879", "source": "472", "target": "70", "attributes": { "weight": 2 } }, { "key": "12285", "source": "472", "target": "473", "attributes": { "weight": 1 } }, { "key": "20457", "source": "472", "target": "221", "attributes": { "weight": 1 } }, { "key": "32779", "source": "472", "target": "2644", "attributes": { "weight": 2 } }, { "key": "12275", "source": "472", "target": "1141", "attributes": { "weight": 2 } }, { "key": "27113", "source": "472", "target": "452", "attributes": { "weight": 1 } }, { "key": "27115", "source": "472", "target": "458", "attributes": { "weight": 3 } }, { "key": "33555", "source": "472", "target": "3", "attributes": { "weight": 1 } }, { "key": "12280", "source": "472", "target": "1219", "attributes": { "weight": 1 } }, { "key": "29703", "source": "472", "target": "421", "attributes": { "weight": 1 } }, { "key": "32216", "source": "472", "target": "1383", "attributes": { "weight": 1 } }, { "key": "33560", "source": "472", "target": "672", "attributes": { "weight": 1 } }, { "key": "32786", "source": "472", "target": "482", "attributes": { "weight": 3 } }, { "key": "17266", "source": "472", "target": "2111", "attributes": { "weight": 1 } }, { "key": "32219", "source": "472", "target": "2670", "attributes": { "weight": 5 } }, { "key": "26881", "source": "472", "target": "894", "attributes": { "weight": 1 } }, { "key": "32781", "source": "472", "target": "461", "attributes": { "weight": 2 } }, { "key": "20464", "source": "472", "target": "2244", "attributes": { "weight": 1 } }, { "key": "27124", "source": "472", "target": "488", "attributes": { "weight": 1 } }, { "key": "12284", "source": "472", "target": "1362", "attributes": { "weight": 2 } }, { "key": "32972", "source": "472", "target": "1063", "attributes": { "weight": 1 } }, { "key": "20456", "source": "472", "target": "130", "attributes": { "weight": 3 } }, { "key": "5507", "source": "472", "target": "370", "attributes": { "weight": 6 } }, { "key": "32218", "source": "472", "target": "1368", "attributes": { "weight": 4 } }, { "key": "20480", "source": "472", "target": "2189", "attributes": { "weight": 1 } }, { "key": "12003", "source": "472", "target": "1118", "attributes": { "weight": 1 } }, { "key": "15323", "source": "472", "target": "1353", "attributes": { "weight": 7 } }, { "key": "20473", "source": "472", "target": "2094", "attributes": { "weight": 2 } }, { "key": "22879", "source": "472", "target": "1359", "attributes": { "weight": 1 } }, { "key": "12279", "source": "472", "target": "1535", "attributes": { "weight": 1 } }, { "key": "30465", "source": "472", "target": "1046", "attributes": { "weight": 2 } }, { "key": "12283", "source": "472", "target": "1811", "attributes": { "weight": 1 } }, { "key": "20479", "source": "472", "target": "1750", "attributes": { "weight": 1 } }, { "key": "27277", "source": "472", "target": "57", "attributes": { "weight": 1 } }, { "key": "32970", "source": "472", "target": "333", "attributes": { "weight": 1 } }, { "key": "10914", "source": "473", "target": "457", "attributes": { "weight": 1 } }, { "key": "35006", "source": "473", "target": "352", "attributes": { "weight": 1 } }, { "key": "1512", "source": "473", "target": "455", "attributes": { "weight": 1 } }, { "key": "10516", "source": "473", "target": "225", "attributes": { "weight": 2 } }, { "key": "9315", "source": "473", "target": "430", "attributes": { "weight": 1 } }, { "key": "11393", "source": "473", "target": "1742", "attributes": { "weight": 1 } }, { "key": "26711", "source": "473", "target": "1047", "attributes": { "weight": 2 } }, { "key": "33582", "source": "473", "target": "460", "attributes": { "weight": 1 } }, { "key": "24356", "source": "473", "target": "2670", "attributes": { "weight": 2 } }, { "key": "11223", "source": "473", "target": "1092", "attributes": { "weight": 2 } }, { "key": "12291", "source": "473", "target": "435", "attributes": { "weight": 1 } }, { "key": "24167", "source": "473", "target": "437", "attributes": { "weight": 2 } }, { "key": "11215", "source": "473", "target": "359", "attributes": { "weight": 2 } }, { "key": "24354", "source": "473", "target": "1358", "attributes": { "weight": 1 } }, { "key": "11219", "source": "473", "target": "580", "attributes": { "weight": 1 } }, { "key": "24357", "source": "473", "target": "56", "attributes": { "weight": 1 } }, { "key": "17951", "source": "473", "target": "454", "attributes": { "weight": 2 } }, { "key": "13295", "source": "473", "target": "304", "attributes": { "weight": 1 } }, { "key": "11214", "source": "473", "target": "5", "attributes": { "weight": 2 } }, { "key": "11221", "source": "473", "target": "695", "attributes": { "weight": 2 } }, { "key": "24358", "source": "473", "target": "340", "attributes": { "weight": 3 } }, { "key": "33575", "source": "473", "target": "49", "attributes": { "weight": 1 } }, { "key": "33583", "source": "473", "target": "53", "attributes": { "weight": 1 } }, { "key": "32277", "source": "473", "target": "164", "attributes": { "weight": 1 } }, { "key": "11209", "source": "473", "target": "1036", "attributes": { "weight": 2 } }, { "key": "33576", "source": "473", "target": "50", "attributes": { "weight": 1 } }, { "key": "35005", "source": "473", "target": "3", "attributes": { "weight": 1 } }, { "key": "33573", "source": "473", "target": "1756", "attributes": { "weight": 1 } }, { "key": "11224", "source": "473", "target": "595", "attributes": { "weight": 2 } }, { "key": "24355", "source": "473", "target": "1553", "attributes": { "weight": 1 } }, { "key": "13296", "source": "473", "target": "305", "attributes": { "weight": 1 } }, { "key": "36044", "source": "473", "target": "1026", "attributes": { "weight": 1 } }, { "key": "5725", "source": "473", "target": "468", "attributes": { "weight": 2 } }, { "key": "17271", "source": "473", "target": "449", "attributes": { "weight": 1 } }, { "key": "4177", "source": "473", "target": "228", "attributes": { "weight": 3 } }, { "key": "33588", "source": "473", "target": "231", "attributes": { "weight": 1 } }, { "key": "1511", "source": "473", "target": "183", "attributes": { "weight": 3 } }, { "key": "33585", "source": "473", "target": "2258", "attributes": { "weight": 1 } }, { "key": "23453", "source": "473", "target": "223", "attributes": { "weight": 4 } }, { "key": "33584", "source": "473", "target": "135", "attributes": { "weight": 1 } }, { "key": "26712", "source": "473", "target": "189", "attributes": { "weight": 1 } }, { "key": "33572", "source": "473", "target": "429", "attributes": { "weight": 1 } }, { "key": "33586", "source": "473", "target": "190", "attributes": { "weight": 1 } }, { "key": "12796", "source": "473", "target": "392", "attributes": { "weight": 1 } }, { "key": "16889", "source": "473", "target": "70", "attributes": { "weight": 2 } }, { "key": "25482", "source": "473", "target": "2259", "attributes": { "weight": 1 } }, { "key": "33580", "source": "473", "target": "458", "attributes": { "weight": 1 } }, { "key": "26919", "source": "473", "target": "497", "attributes": { "weight": 1 } }, { "key": "6935", "source": "473", "target": "495", "attributes": { "weight": 5 } }, { "key": "11212", "source": "473", "target": "339", "attributes": { "weight": 2 } }, { "key": "23780", "source": "473", "target": "2456", "attributes": { "weight": 1 } }, { "key": "33579", "source": "473", "target": "450", "attributes": { "weight": 1 } }, { "key": "12795", "source": "473", "target": "387", "attributes": { "weight": 1 } }, { "key": "11225", "source": "473", "target": "493", "attributes": { "weight": 2 } }, { "key": "28943", "source": "473", "target": "479", "attributes": { "weight": 3 } }, { "key": "29720", "source": "473", "target": "442", "attributes": { "weight": 2 } }, { "key": "23907", "source": "473", "target": "1455", "attributes": { "weight": 1 } }, { "key": "33581", "source": "473", "target": "459", "attributes": { "weight": 1 } }, { "key": "5726", "source": "473", "target": "371", "attributes": { "weight": 5 } }, { "key": "33578", "source": "473", "target": "441", "attributes": { "weight": 1 } }, { "key": "31470", "source": "473", "target": "178", "attributes": { "weight": 1 } }, { "key": "33577", "source": "473", "target": "439", "attributes": { "weight": 1 } }, { "key": "11217", "source": "473", "target": "470", "attributes": { "weight": 4 } }, { "key": "36980", "source": "473", "target": "362", "attributes": { "weight": 1 } }, { "key": "24353", "source": "473", "target": "39", "attributes": { "weight": 1 } }, { "key": "11639", "source": "473", "target": "358", "attributes": { "weight": 2 } }, { "key": "12528", "source": "473", "target": "51", "attributes": { "weight": 1 } }, { "key": "24166", "source": "473", "target": "130", "attributes": { "weight": 4 } }, { "key": "9973", "source": "473", "target": "1093", "attributes": { "weight": 5 } }, { "key": "32573", "source": "473", "target": "232", "attributes": { "weight": 1 } }, { "key": "33590", "source": "473", "target": "491", "attributes": { "weight": 1 } }, { "key": "32572", "source": "473", "target": "791", "attributes": { "weight": 1 } }, { "key": "33587", "source": "473", "target": "191", "attributes": { "weight": 1 } }, { "key": "5724", "source": "473", "target": "370", "attributes": { "weight": 10 } }, { "key": "27279", "source": "473", "target": "57", "attributes": { "weight": 1 } }, { "key": "12292", "source": "473", "target": "472", "attributes": { "weight": 1 } }, { "key": "31337", "source": "473", "target": "674", "attributes": { "weight": 2 } }, { "key": "9972", "source": "473", "target": "445", "attributes": { "weight": 3 } }, { "key": "3632", "source": "473", "target": "1025", "attributes": { "weight": 2 } }, { "key": "11218", "source": "473", "target": "1258", "attributes": { "weight": 3 } }, { "key": "33589", "source": "473", "target": "477", "attributes": { "weight": 1 } }, { "key": "11210", "source": "473", "target": "433", "attributes": { "weight": 3 } }, { "key": "24168", "source": "473", "target": "471", "attributes": { "weight": 3 } }, { "key": "1514", "source": "473", "target": "490", "attributes": { "weight": 1 } }, { "key": "8929", "source": "473", "target": "1087", "attributes": { "weight": 4 } }, { "key": "14269", "source": "473", "target": "168", "attributes": { "weight": 1 } }, { "key": "4178", "source": "473", "target": "1088", "attributes": { "weight": 3 } }, { "key": "12797", "source": "473", "target": "781", "attributes": { "weight": 1 } }, { "key": "11222", "source": "473", "target": "1060", "attributes": { "weight": 2 } }, { "key": "11213", "source": "473", "target": "452", "attributes": { "weight": 6 } }, { "key": "11216", "source": "473", "target": "8", "attributes": { "weight": 3 } }, { "key": "24538", "source": "473", "target": "790", "attributes": { "weight": 1 } }, { "key": "32175", "source": "473", "target": "233", "attributes": { "weight": 1 } }, { "key": "29721", "source": "473", "target": "421", "attributes": { "weight": 1 } }, { "key": "6934", "source": "473", "target": "193", "attributes": { "weight": 2 } }, { "key": "1510", "source": "473", "target": "224", "attributes": { "weight": 1 } }, { "key": "36043", "source": "473", "target": "440", "attributes": { "weight": 1 } }, { "key": "1513", "source": "473", "target": "188", "attributes": { "weight": 2 } }, { "key": "29899", "source": "473", "target": "1024", "attributes": { "weight": 1 } }, { "key": "30472", "source": "473", "target": "1046", "attributes": { "weight": 1 } }, { "key": "11211", "source": "473", "target": "1520", "attributes": { "weight": 2 } }, { "key": "33591", "source": "473", "target": "672", "attributes": { "weight": 1 } }, { "key": "4018", "source": "473", "target": "432", "attributes": { "weight": 3 } }, { "key": "11220", "source": "473", "target": "1744", "attributes": { "weight": 2 } }, { "key": "24894", "source": "473", "target": "109", "attributes": { "weight": 1 } }, { "key": "10517", "source": "473", "target": "482", "attributes": { "weight": 2 } }, { "key": "33574", "source": "473", "target": "220", "attributes": { "weight": 1 } }, { "key": "33607", "source": "474", "target": "1282", "attributes": { "weight": 1 } }, { "key": "37465", "source": "474", "target": "435", "attributes": { "weight": 1 } }, { "key": "11394", "source": "474", "target": "1742", "attributes": { "weight": 1 } }, { "key": "4179", "source": "474", "target": "1109", "attributes": { "weight": 1 } }, { "key": "8943", "source": "474", "target": "436", "attributes": { "weight": 3 } }, { "key": "28944", "source": "474", "target": "479", "attributes": { "weight": 2 } }, { "key": "16892", "source": "474", "target": "674", "attributes": { "weight": 2 } }, { "key": "8947", "source": "474", "target": "1117", "attributes": { "weight": 3 } }, { "key": "10518", "source": "474", "target": "225", "attributes": { "weight": 1 } }, { "key": "33600", "source": "474", "target": "2645", "attributes": { "weight": 1 } }, { "key": "16895", "source": "474", "target": "1389", "attributes": { "weight": 1 } }, { "key": "17274", "source": "474", "target": "2108", "attributes": { "weight": 1 } }, { "key": "27280", "source": "474", "target": "52", "attributes": { "weight": 2 } }, { "key": "17273", "source": "474", "target": "449", "attributes": { "weight": 2 } }, { "key": "24170", "source": "474", "target": "130", "attributes": { "weight": 3 } }, { "key": "12015", "source": "474", "target": "135", "attributes": { "weight": 4 } }, { "key": "27131", "source": "474", "target": "1247", "attributes": { "weight": 1 } }, { "key": "8944", "source": "474", "target": "442", "attributes": { "weight": 2 } }, { "key": "27132", "source": "474", "target": "472", "attributes": { "weight": 1 } }, { "key": "31675", "source": "474", "target": "3", "attributes": { "weight": 1 } }, { "key": "31677", "source": "474", "target": "595", "attributes": { "weight": 1 } }, { "key": "8941", "source": "474", "target": "1107", "attributes": { "weight": 3 } }, { "key": "1519", "source": "474", "target": "224", "attributes": { "weight": 1 } }, { "key": "16894", "source": "474", "target": "70", "attributes": { "weight": 2 } }, { "key": "4185", "source": "474", "target": "1130", "attributes": { "weight": 1 } }, { "key": "23646", "source": "474", "target": "1312", "attributes": { "weight": 1 } }, { "key": "4181", "source": "474", "target": "50", "attributes": { "weight": 2 } }, { "key": "33610", "source": "474", "target": "672", "attributes": { "weight": 1 } }, { "key": "33601", "source": "474", "target": "51", "attributes": { "weight": 1 } }, { "key": "29900", "source": "474", "target": "1024", "attributes": { "weight": 1 } }, { "key": "8948", "source": "474", "target": "370", "attributes": { "weight": 2 } }, { "key": "30732", "source": "474", "target": "1026", "attributes": { "weight": 1 } }, { "key": "33602", "source": "474", "target": "425", "attributes": { "weight": 1 } }, { "key": "26367", "source": "474", "target": "1258", "attributes": { "weight": 1 } }, { "key": "16893", "source": "474", "target": "1118", "attributes": { "weight": 1 } }, { "key": "8955", "source": "474", "target": "494", "attributes": { "weight": 3 } }, { "key": "33604", "source": "474", "target": "1836", "attributes": { "weight": 1 } }, { "key": "8949", "source": "474", "target": "1121", "attributes": { "weight": 2 } }, { "key": "26714", "source": "474", "target": "454", "attributes": { "weight": 1 } }, { "key": "6946", "source": "474", "target": "183", "attributes": { "weight": 2 } }, { "key": "29175", "source": "474", "target": "1750", "attributes": { "weight": 1 } }, { "key": "9318", "source": "474", "target": "1579", "attributes": { "weight": 1 } }, { "key": "1520", "source": "474", "target": "188", "attributes": { "weight": 2 } }, { "key": "31427", "source": "474", "target": "223", "attributes": { "weight": 2 } }, { "key": "33606", "source": "474", "target": "190", "attributes": { "weight": 1 } }, { "key": "4182", "source": "474", "target": "1112", "attributes": { "weight": 1 } }, { "key": "33608", "source": "474", "target": "191", "attributes": { "weight": 1 } }, { "key": "10519", "source": "474", "target": "482", "attributes": { "weight": 2 } }, { "key": "32579", "source": "474", "target": "791", "attributes": { "weight": 1 } }, { "key": "33066", "source": "474", "target": "1845", "attributes": { "weight": 1 } }, { "key": "17501", "source": "474", "target": "358", "attributes": { "weight": 1 } }, { "key": "8951", "source": "474", "target": "1088", "attributes": { "weight": 2 } }, { "key": "33065", "source": "474", "target": "1355", "attributes": { "weight": 1 } }, { "key": "33603", "source": "474", "target": "450", "attributes": { "weight": 1 } }, { "key": "8945", "source": "474", "target": "444", "attributes": { "weight": 3 } }, { "key": "4180", "source": "474", "target": "1110", "attributes": { "weight": 1 } }, { "key": "10915", "source": "474", "target": "457", "attributes": { "weight": 2 } }, { "key": "26715", "source": "474", "target": "189", "attributes": { "weight": 1 } }, { "key": "1521", "source": "474", "target": "193", "attributes": { "weight": 1 } }, { "key": "32921", "source": "474", "target": "470", "attributes": { "weight": 3 } }, { "key": "32176", "source": "474", "target": "1546", "attributes": { "weight": 1 } }, { "key": "8954", "source": "474", "target": "1131", "attributes": { "weight": 1 } }, { "key": "32977", "source": "474", "target": "154", "attributes": { "weight": 1 } }, { "key": "8953", "source": "474", "target": "1564", "attributes": { "weight": 2 } }, { "key": "2309", "source": "474", "target": "340", "attributes": { "weight": 2 } }, { "key": "4183", "source": "474", "target": "1113", "attributes": { "weight": 1 } }, { "key": "8952", "source": "474", "target": "1125", "attributes": { "weight": 2 } }, { "key": "5739", "source": "474", "target": "468", "attributes": { "weight": 2 } }, { "key": "4186", "source": "474", "target": "233", "attributes": { "weight": 2 } }, { "key": "31676", "source": "474", "target": "8", "attributes": { "weight": 1 } }, { "key": "16896", "source": "474", "target": "73", "attributes": { "weight": 1 } }, { "key": "33609", "source": "474", "target": "489", "attributes": { "weight": 1 } }, { "key": "33605", "source": "474", "target": "2258", "attributes": { "weight": 1 } }, { "key": "8950", "source": "474", "target": "228", "attributes": { "weight": 2 } }, { "key": "9317", "source": "474", "target": "430", "attributes": { "weight": 1 } }, { "key": "26920", "source": "474", "target": "497", "attributes": { "weight": 1 } }, { "key": "8946", "source": "474", "target": "452", "attributes": { "weight": 3 } }, { "key": "16891", "source": "474", "target": "434", "attributes": { "weight": 1 } }, { "key": "4184", "source": "474", "target": "1115", "attributes": { "weight": 1 } }, { "key": "33067", "source": "474", "target": "493", "attributes": { "weight": 1 } }, { "key": "27281", "source": "474", "target": "57", "attributes": { "weight": 1 } }, { "key": "24171", "source": "474", "target": "471", "attributes": { "weight": 1 } }, { "key": "16890", "source": "474", "target": "59", "attributes": { "weight": 2 } }, { "key": "8942", "source": "474", "target": "220", "attributes": { "weight": 3 } }, { "key": "12014", "source": "474", "target": "1363", "attributes": { "weight": 1 } }, { "key": "12682", "source": "474", "target": "695", "attributes": { "weight": 1 } }, { "key": "23645", "source": "474", "target": "2248", "attributes": { "weight": 1 } }, { "key": "6947", "source": "474", "target": "495", "attributes": { "weight": 3 } }, { "key": "20564", "source": "474", "target": "2111", "attributes": { "weight": 1 } }, { "key": "12297", "source": "475", "target": "472", "attributes": { "weight": 1 } }, { "key": "24443", "source": "475", "target": "1535", "attributes": { "weight": 1 } }, { "key": "24444", "source": "475", "target": "2502", "attributes": { "weight": 1 } }, { "key": "12016", "source": "475", "target": "135", "attributes": { "weight": 2 } }, { "key": "1522", "source": "475", "target": "183", "attributes": { "weight": 1 } }, { "key": "1524", "source": "476", "target": "188", "attributes": { "weight": 2 } }, { "key": "6960", "source": "476", "target": "232", "attributes": { "weight": 2 } }, { "key": "6949", "source": "476", "target": "1355", "attributes": { "weight": 1 } }, { "key": "6951", "source": "476", "target": "458", "attributes": { "weight": 2 } }, { "key": "6963", "source": "476", "target": "56", "attributes": { "weight": 2 } }, { "key": "6952", "source": "476", "target": "426", "attributes": { "weight": 1 } }, { "key": "6956", "source": "476", "target": "1368", "attributes": { "weight": 1 } }, { "key": "6964", "source": "476", "target": "495", "attributes": { "weight": 1 } }, { "key": "24178", "source": "476", "target": "130", "attributes": { "weight": 2 } }, { "key": "6957", "source": "476", "target": "191", "attributes": { "weight": 2 } }, { "key": "6948", "source": "476", "target": "424", "attributes": { "weight": 3 } }, { "key": "6955", "source": "476", "target": "54", "attributes": { "weight": 1 } }, { "key": "20624", "source": "476", "target": "489", "attributes": { "weight": 1 } }, { "key": "20622", "source": "476", "target": "429", "attributes": { "weight": 1 } }, { "key": "6959", "source": "476", "target": "483", "attributes": { "weight": 2 } }, { "key": "26722", "source": "476", "target": "57", "attributes": { "weight": 2 } }, { "key": "8974", "source": "476", "target": "442", "attributes": { "weight": 2 } }, { "key": "6958", "source": "476", "target": "231", "attributes": { "weight": 2 } }, { "key": "6953", "source": "476", "target": "459", "attributes": { "weight": 1 } }, { "key": "6962", "source": "476", "target": "488", "attributes": { "weight": 1 } }, { "key": "4020", "source": "476", "target": "487", "attributes": { "weight": 2 } }, { "key": "1525", "source": "476", "target": "193", "attributes": { "weight": 3 } }, { "key": "37018", "source": "476", "target": "3341", "attributes": { "weight": 1 } }, { "key": "6950", "source": "476", "target": "1358", "attributes": { "weight": 1 } }, { "key": "26720", "source": "476", "target": "454", "attributes": { "weight": 1 } }, { "key": "6954", "source": "476", "target": "462", "attributes": { "weight": 1 } }, { "key": "6961", "source": "476", "target": "1067", "attributes": { "weight": 1 } }, { "key": "26721", "source": "476", "target": "189", "attributes": { "weight": 1 } }, { "key": "25892", "source": "476", "target": "220", "attributes": { "weight": 1 } }, { "key": "1523", "source": "476", "target": "183", "attributes": { "weight": 2 } }, { "key": "20623", "source": "476", "target": "1354", "attributes": { "weight": 1 } }, { "key": "32583", "source": "476", "target": "791", "attributes": { "weight": 1 } }, { "key": "9981", "source": "477", "target": "193", "attributes": { "weight": 2 } }, { "key": "18116", "source": "477", "target": "2188", "attributes": { "weight": 1 } }, { "key": "9977", "source": "477", "target": "135", "attributes": { "weight": 3 } }, { "key": "33633", "source": "477", "target": "473", "attributes": { "weight": 1 } }, { "key": "24212", "source": "477", "target": "1116", "attributes": { "weight": 3 } }, { "key": "35333", "source": "477", "target": "1536", "attributes": { "weight": 1 } }, { "key": "20792", "source": "477", "target": "1374", "attributes": { "weight": 1 } }, { "key": "24211", "source": "477", "target": "130", "attributes": { "weight": 2 } }, { "key": "11253", "source": "477", "target": "452", "attributes": { "weight": 4 } }, { "key": "9975", "source": "477", "target": "220", "attributes": { "weight": 2 } }, { "key": "20791", "source": "477", "target": "489", "attributes": { "weight": 1 } }, { "key": "9976", "source": "477", "target": "442", "attributes": { "weight": 4 } }, { "key": "20793", "source": "477", "target": "235", "attributes": { "weight": 1 } }, { "key": "26734", "source": "477", "target": "189", "attributes": { "weight": 1 } }, { "key": "16982", "source": "477", "target": "59", "attributes": { "weight": 1 } }, { "key": "20786", "source": "477", "target": "222", "attributes": { "weight": 1 } }, { "key": "35334", "source": "477", "target": "1088", "attributes": { "weight": 1 } }, { "key": "12798", "source": "477", "target": "439", "attributes": { "weight": 2 } }, { "key": "1538", "source": "477", "target": "224", "attributes": { "weight": 1 } }, { "key": "31429", "source": "477", "target": "223", "attributes": { "weight": 1 } }, { "key": "29047", "source": "477", "target": "495", "attributes": { "weight": 1 } }, { "key": "20785", "source": "477", "target": "221", "attributes": { "weight": 1 } }, { "key": "32831", "source": "477", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9982", "source": "477", "target": "494", "attributes": { "weight": 3 } }, { "key": "20790", "source": "477", "target": "480", "attributes": { "weight": 1 } }, { "key": "9980", "source": "477", "target": "492", "attributes": { "weight": 3 } }, { "key": "9978", "source": "477", "target": "469", "attributes": { "weight": 2 } }, { "key": "20789", "source": "477", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20788", "source": "477", "target": "1087", "attributes": { "weight": 1 } }, { "key": "33072", "source": "477", "target": "493", "attributes": { "weight": 1 } }, { "key": "23651", "source": "477", "target": "445", "attributes": { "weight": 1 } }, { "key": "35332", "source": "477", "target": "50", "attributes": { "weight": 1 } }, { "key": "9979", "source": "477", "target": "595", "attributes": { "weight": 2 } }, { "key": "11254", "source": "477", "target": "190", "attributes": { "weight": 2 } }, { "key": "26733", "source": "477", "target": "454", "attributes": { "weight": 1 } }, { "key": "20787", "source": "477", "target": "471", "attributes": { "weight": 1 } }, { "key": "35335", "source": "477", "target": "1131", "attributes": { "weight": 1 } }, { "key": "9983", "source": "477", "target": "496", "attributes": { "weight": 3 } }, { "key": "18115", "source": "477", "target": "2186", "attributes": { "weight": 1 } }, { "key": "36083", "source": "478", "target": "2262", "attributes": { "weight": 1 } }, { "key": "20800", "source": "478", "target": "2095", "attributes": { "weight": 1 } }, { "key": "36080", "source": "478", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20794", "source": "478", "target": "51", "attributes": { "weight": 1 } }, { "key": "1539", "source": "478", "target": "183", "attributes": { "weight": 1 } }, { "key": "36081", "source": "478", "target": "1831", "attributes": { "weight": 1 } }, { "key": "31355", "source": "478", "target": "674", "attributes": { "weight": 1 } }, { "key": "36082", "source": "478", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20799", "source": "478", "target": "1836", "attributes": { "weight": 1 } }, { "key": "36084", "source": "478", "target": "73", "attributes": { "weight": 1 } }, { "key": "20797", "source": "478", "target": "450", "attributes": { "weight": 1 } }, { "key": "26924", "source": "478", "target": "497", "attributes": { "weight": 1 } }, { "key": "26735", "source": "478", "target": "454", "attributes": { "weight": 2 } }, { "key": "26736", "source": "478", "target": "189", "attributes": { "weight": 2 } }, { "key": "20798", "source": "478", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20795", "source": "478", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20796", "source": "478", "target": "449", "attributes": { "weight": 1 } }, { "key": "20801", "source": "478", "target": "489", "attributes": { "weight": 1 } }, { "key": "36079", "source": "478", "target": "130", "attributes": { "weight": 1 } }, { "key": "28966", "source": "479", "target": "1026", "attributes": { "weight": 3 } }, { "key": "24213", "source": "479", "target": "130", "attributes": { "weight": 5 } }, { "key": "28956", "source": "479", "target": "693", "attributes": { "weight": 2 } }, { "key": "9022", "source": "479", "target": "442", "attributes": { "weight": 5 } }, { "key": "17507", "source": "479", "target": "358", "attributes": { "weight": 2 } }, { "key": "17968", "source": "479", "target": "454", "attributes": { "weight": 4 } }, { "key": "26737", "source": "479", "target": "189", "attributes": { "weight": 1 } }, { "key": "9023", "source": "479", "target": "1087", "attributes": { "weight": 1 } }, { "key": "1542", "source": "479", "target": "188", "attributes": { "weight": 3 } }, { "key": "36087", "source": "479", "target": "2258", "attributes": { "weight": 1 } }, { "key": "16984", "source": "479", "target": "434", "attributes": { "weight": 1 } }, { "key": "4025", "source": "479", "target": "432", "attributes": { "weight": 1 } }, { "key": "17302", "source": "479", "target": "449", "attributes": { "weight": 2 } }, { "key": "30615", "source": "479", "target": "682", "attributes": { "weight": 1 } }, { "key": "16983", "source": "479", "target": "59", "attributes": { "weight": 5 } }, { "key": "28953", "source": "479", "target": "440", "attributes": { "weight": 2 } }, { "key": "26925", "source": "479", "target": "497", "attributes": { "weight": 3 } }, { "key": "16985", "source": "479", "target": "674", "attributes": { "weight": 4 } }, { "key": "24214", "source": "479", "target": "471", "attributes": { "weight": 4 } }, { "key": "1540", "source": "479", "target": "224", "attributes": { "weight": 1 } }, { "key": "27167", "source": "479", "target": "1282", "attributes": { "weight": 1 } }, { "key": "9985", "source": "479", "target": "494", "attributes": { "weight": 2 } }, { "key": "28960", "source": "479", "target": "2042", "attributes": { "weight": 2 } }, { "key": "28955", "source": "479", "target": "1760", "attributes": { "weight": 2 } }, { "key": "4214", "source": "479", "target": "228", "attributes": { "weight": 2 } }, { "key": "1541", "source": "479", "target": "183", "attributes": { "weight": 3 } }, { "key": "28977", "source": "479", "target": "1375", "attributes": { "weight": 2 } }, { "key": "11395", "source": "479", "target": "1742", "attributes": { "weight": 2 } }, { "key": "30503", "source": "479", "target": "56", "attributes": { "weight": 1 } }, { "key": "28950", "source": "479", "target": "787", "attributes": { "weight": 1 } }, { "key": "18328", "source": "479", "target": "1092", "attributes": { "weight": 2 } }, { "key": "28965", "source": "479", "target": "2264", "attributes": { "weight": 2 } }, { "key": "27291", "source": "479", "target": "52", "attributes": { "weight": 1 } }, { "key": "28970", "source": "479", "target": "823", "attributes": { "weight": 1 } }, { "key": "32588", "source": "479", "target": "791", "attributes": { "weight": 1 } }, { "key": "10925", "source": "479", "target": "457", "attributes": { "weight": 3 } }, { "key": "28962", "source": "479", "target": "8", "attributes": { "weight": 2 } }, { "key": "30500", "source": "479", "target": "1357", "attributes": { "weight": 1 } }, { "key": "28964", "source": "479", "target": "474", "attributes": { "weight": 2 } }, { "key": "25754", "source": "479", "target": "278", "attributes": { "weight": 2 } }, { "key": "27163", "source": "479", "target": "450", "attributes": { "weight": 2 } }, { "key": "25895", "source": "479", "target": "220", "attributes": { "weight": 4 } }, { "key": "28963", "source": "479", "target": "473", "attributes": { "weight": 3 } }, { "key": "30499", "source": "479", "target": "424", "attributes": { "weight": 1 } }, { "key": "27166", "source": "479", "target": "472", "attributes": { "weight": 2 } }, { "key": "28969", "source": "479", "target": "483", "attributes": { "weight": 2 } }, { "key": "28971", "source": "479", "target": "595", "attributes": { "weight": 2 } }, { "key": "35337", "source": "479", "target": "1088", "attributes": { "weight": 1 } }, { "key": "28959", "source": "479", "target": "1024", "attributes": { "weight": 3 } }, { "key": "23652", "source": "479", "target": "1312", "attributes": { "weight": 1 } }, { "key": "29048", "source": "479", "target": "495", "attributes": { "weight": 1 } }, { "key": "27290", "source": "479", "target": "425", "attributes": { "weight": 1 } }, { "key": "36088", "source": "479", "target": "190", "attributes": { "weight": 1 } }, { "key": "20802", "source": "479", "target": "489", "attributes": { "weight": 2 } }, { "key": "33634", "source": "479", "target": "51", "attributes": { "weight": 1 } }, { "key": "28951", "source": "479", "target": "223", "attributes": { "weight": 4 } }, { "key": "27164", "source": "479", "target": "1832", "attributes": { "weight": 1 } }, { "key": "12685", "source": "479", "target": "695", "attributes": { "weight": 2 } }, { "key": "36089", "source": "479", "target": "235", "attributes": { "weight": 1 } }, { "key": "25109", "source": "479", "target": "1547", "attributes": { "weight": 1 } }, { "key": "27191", "source": "479", "target": "1390", "attributes": { "weight": 1 } }, { "key": "24696", "source": "479", "target": "5", "attributes": { "weight": 2 } }, { "key": "28949", "source": "479", "target": "429", "attributes": { "weight": 1 } }, { "key": "16986", "source": "479", "target": "70", "attributes": { "weight": 2 } }, { "key": "30501", "source": "479", "target": "54", "attributes": { "weight": 1 } }, { "key": "36085", "source": "479", "target": "221", "attributes": { "weight": 1 } }, { "key": "27292", "source": "479", "target": "57", "attributes": { "weight": 3 } }, { "key": "30938", "source": "479", "target": "13", "attributes": { "weight": 1 } }, { "key": "28973", "source": "479", "target": "1131", "attributes": { "weight": 2 } }, { "key": "2384", "source": "479", "target": "694", "attributes": { "weight": 1 } }, { "key": "28957", "source": "479", "target": "2646", "attributes": { "weight": 2 } }, { "key": "11255", "source": "479", "target": "452", "attributes": { "weight": 7 } }, { "key": "11256", "source": "479", "target": "469", "attributes": { "weight": 1 } }, { "key": "27370", "source": "479", "target": "340", "attributes": { "weight": 4 } }, { "key": "32929", "source": "479", "target": "470", "attributes": { "weight": 1 } }, { "key": "25951", "source": "479", "target": "1367", "attributes": { "weight": 2 } }, { "key": "28974", "source": "479", "target": "1774", "attributes": { "weight": 1 } }, { "key": "32832", "source": "479", "target": "1125", "attributes": { "weight": 1 } }, { "key": "6184", "source": "479", "target": "468", "attributes": { "weight": 2 } }, { "key": "30502", "source": "479", "target": "488", "attributes": { "weight": 1 } }, { "key": "25386", "source": "479", "target": "433", "attributes": { "weight": 1 } }, { "key": "33635", "source": "479", "target": "135", "attributes": { "weight": 1 } }, { "key": "28972", "source": "479", "target": "14", "attributes": { "weight": 2 } }, { "key": "9984", "source": "479", "target": "480", "attributes": { "weight": 2 } }, { "key": "28961", "source": "479", "target": "817", "attributes": { "weight": 1 } }, { "key": "28958", "source": "479", "target": "458", "attributes": { "weight": 2 } }, { "key": "36086", "source": "479", "target": "439", "attributes": { "weight": 1 } }, { "key": "28967", "source": "479", "target": "2828", "attributes": { "weight": 1 } }, { "key": "27165", "source": "479", "target": "1247", "attributes": { "weight": 1 } }, { "key": "28968", "source": "479", "target": "231", "attributes": { "weight": 2 } }, { "key": "28952", "source": "479", "target": "2025", "attributes": { "weight": 2 } }, { "key": "28976", "source": "479", "target": "351", "attributes": { "weight": 1 } }, { "key": "28975", "source": "479", "target": "193", "attributes": { "weight": 2 } }, { "key": "28954", "source": "479", "target": "2", "attributes": { "weight": 2 } }, { "key": "20825", "source": "480", "target": "464", "attributes": { "weight": 1 } }, { "key": "20815", "source": "480", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20840", "source": "480", "target": "1374", "attributes": { "weight": 1 } }, { "key": "20824", "source": "480", "target": "459", "attributes": { "weight": 1 } }, { "key": "20837", "source": "480", "target": "487", "attributes": { "weight": 1 } }, { "key": "20820", "source": "480", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20818", "source": "480", "target": "1358", "attributes": { "weight": 1 } }, { "key": "9986", "source": "480", "target": "445", "attributes": { "weight": 2 } }, { "key": "20845", "source": "480", "target": "2276", "attributes": { "weight": 1 } }, { "key": "16989", "source": "480", "target": "70", "attributes": { "weight": 1 } }, { "key": "20842", "source": "480", "target": "2189", "attributes": { "weight": 1 } }, { "key": "1548", "source": "480", "target": "224", "attributes": { "weight": 1 } }, { "key": "20823", "source": "480", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20808", "source": "480", "target": "440", "attributes": { "weight": 1 } }, { "key": "9988", "source": "480", "target": "595", "attributes": { "weight": 2 } }, { "key": "11257", "source": "480", "target": "452", "attributes": { "weight": 1 } }, { "key": "20826", "source": "480", "target": "1247", "attributes": { "weight": 2 } }, { "key": "20811", "source": "480", "target": "1759", "attributes": { "weight": 1 } }, { "key": "33638", "source": "480", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20827", "source": "480", "target": "2255", "attributes": { "weight": 1 } }, { "key": "27168", "source": "480", "target": "472", "attributes": { "weight": 1 } }, { "key": "26738", "source": "480", "target": "189", "attributes": { "weight": 1 } }, { "key": "20816", "source": "480", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20841", "source": "480", "target": "56", "attributes": { "weight": 1 } }, { "key": "20844", "source": "480", "target": "1375", "attributes": { "weight": 1 } }, { "key": "20810", "source": "480", "target": "441", "attributes": { "weight": 1 } }, { "key": "33637", "source": "480", "target": "51", "attributes": { "weight": 1 } }, { "key": "20813", "source": "480", "target": "449", "attributes": { "weight": 1 } }, { "key": "12031", "source": "480", "target": "135", "attributes": { "weight": 2 } }, { "key": "20839", "source": "480", "target": "491", "attributes": { "weight": 1 } }, { "key": "9987", "source": "480", "target": "479", "attributes": { "weight": 2 } }, { "key": "20803", "source": "480", "target": "1756", "attributes": { "weight": 1 } }, { "key": "16987", "source": "480", "target": "59", "attributes": { "weight": 1 } }, { "key": "20804", "source": "480", "target": "49", "attributes": { "weight": 1 } }, { "key": "9990", "source": "480", "target": "193", "attributes": { "weight": 2 } }, { "key": "20821", "source": "480", "target": "1998", "attributes": { "weight": 1 } }, { "key": "20822", "source": "480", "target": "2088", "attributes": { "weight": 1 } }, { "key": "20843", "source": "480", "target": "73", "attributes": { "weight": 1 } }, { "key": "20817", "source": "480", "target": "227", "attributes": { "weight": 1 } }, { "key": "20807", "source": "480", "target": "439", "attributes": { "weight": 1 } }, { "key": "6185", "source": "480", "target": "468", "attributes": { "weight": 2 } }, { "key": "23653", "source": "480", "target": "220", "attributes": { "weight": 1 } }, { "key": "20809", "source": "480", "target": "1023", "attributes": { "weight": 1 } }, { "key": "27169", "source": "480", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20835", "source": "480", "target": "477", "attributes": { "weight": 1 } }, { "key": "20829", "source": "480", "target": "54", "attributes": { "weight": 1 } }, { "key": "20833", "source": "480", "target": "2261", "attributes": { "weight": 1 } }, { "key": "33639", "source": "480", "target": "672", "attributes": { "weight": 1 } }, { "key": "20828", "source": "480", "target": "470", "attributes": { "weight": 1 } }, { "key": "20831", "source": "480", "target": "471", "attributes": { "weight": 1 } }, { "key": "20806", "source": "480", "target": "2106", "attributes": { "weight": 1 } }, { "key": "32833", "source": "480", "target": "1125", "attributes": { "weight": 2 } }, { "key": "20834", "source": "480", "target": "2262", "attributes": { "weight": 1 } }, { "key": "20838", "source": "480", "target": "489", "attributes": { "weight": 1 } }, { "key": "20836", "source": "480", "target": "482", "attributes": { "weight": 1 } }, { "key": "20805", "source": "480", "target": "1522", "attributes": { "weight": 1 } }, { "key": "20819", "source": "480", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20812", "source": "480", "target": "2245", "attributes": { "weight": 1 } }, { "key": "9989", "source": "480", "target": "1093", "attributes": { "weight": 3 } }, { "key": "24215", "source": "480", "target": "130", "attributes": { "weight": 2 } }, { "key": "36090", "source": "480", "target": "1026", "attributes": { "weight": 1 } }, { "key": "20830", "source": "480", "target": "1836", "attributes": { "weight": 1 } }, { "key": "16988", "source": "480", "target": "674", "attributes": { "weight": 1 } }, { "key": "20814", "source": "480", "target": "450", "attributes": { "weight": 1 } }, { "key": "20832", "source": "480", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20856", "source": "481", "target": "2253", "attributes": { "weight": 1 } }, { "key": "1549", "source": "481", "target": "224", "attributes": { "weight": 1 } }, { "key": "20855", "source": "481", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20857", "source": "481", "target": "2095", "attributes": { "weight": 1 } }, { "key": "29136", "source": "481", "target": "454", "attributes": { "weight": 1 } }, { "key": "20858", "source": "481", "target": "489", "attributes": { "weight": 1 } }, { "key": "29138", "source": "481", "target": "500", "attributes": { "weight": 1 } }, { "key": "30939", "source": "481", "target": "3", "attributes": { "weight": 1 } }, { "key": "20854", "source": "481", "target": "1023", "attributes": { "weight": 1 } }, { "key": "29137", "source": "481", "target": "194", "attributes": { "weight": 1 } }, { "key": "17303", "source": "481", "target": "449", "attributes": { "weight": 1 } }, { "key": "31357", "source": "481", "target": "59", "attributes": { "weight": 1 } }, { "key": "27170", "source": "481", "target": "472", "attributes": { "weight": 2 } }, { "key": "16990", "source": "481", "target": "70", "attributes": { "weight": 1 } }, { "key": "33641", "source": "482", "target": "425", "attributes": { "weight": 1 } }, { "key": "20871", "source": "482", "target": "489", "attributes": { "weight": 2 } }, { "key": "20862", "source": "482", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20874", "source": "482", "target": "2277", "attributes": { "weight": 1 } }, { "key": "27297", "source": "482", "target": "57", "attributes": { "weight": 1 } }, { "key": "16991", "source": "482", "target": "674", "attributes": { "weight": 1 } }, { "key": "32839", "source": "482", "target": "472", "attributes": { "weight": 3 } }, { "key": "10559", "source": "482", "target": "474", "attributes": { "weight": 2 } }, { "key": "20872", "source": "482", "target": "1374", "attributes": { "weight": 1 } }, { "key": "23657", "source": "482", "target": "1312", "attributes": { "weight": 1 } }, { "key": "16992", "source": "482", "target": "70", "attributes": { "weight": 1 } }, { "key": "28678", "source": "482", "target": "54", "attributes": { "weight": 1 } }, { "key": "20867", "source": "482", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20859", "source": "482", "target": "221", "attributes": { "weight": 1 } }, { "key": "33640", "source": "482", "target": "51", "attributes": { "weight": 1 } }, { "key": "33643", "source": "482", "target": "672", "attributes": { "weight": 1 } }, { "key": "20870", "source": "482", "target": "480", "attributes": { "weight": 1 } }, { "key": "32931", "source": "482", "target": "470", "attributes": { "weight": 1 } }, { "key": "20865", "source": "482", "target": "2248", "attributes": { "weight": 1 } }, { "key": "10557", "source": "482", "target": "189", "attributes": { "weight": 1 } }, { "key": "9035", "source": "482", "target": "1087", "attributes": { "weight": 3 } }, { "key": "20866", "source": "482", "target": "2251", "attributes": { "weight": 1 } }, { "key": "10554", "source": "482", "target": "135", "attributes": { "weight": 5 } }, { "key": "20863", "source": "482", "target": "2246", "attributes": { "weight": 1 } }, { "key": "9036", "source": "482", "target": "233", "attributes": { "weight": 3 } }, { "key": "32838", "source": "482", "target": "1121", "attributes": { "weight": 1 } }, { "key": "24217", "source": "482", "target": "130", "attributes": { "weight": 2 } }, { "key": "20864", "source": "482", "target": "449", "attributes": { "weight": 1 } }, { "key": "32837", "source": "482", "target": "435", "attributes": { "weight": 1 } }, { "key": "20860", "source": "482", "target": "1023", "attributes": { "weight": 1 } }, { "key": "32840", "source": "482", "target": "1131", "attributes": { "weight": 1 } }, { "key": "26370", "source": "482", "target": "1258", "attributes": { "weight": 1 } }, { "key": "23656", "source": "482", "target": "220", "attributes": { "weight": 1 } }, { "key": "10561", "source": "482", "target": "1125", "attributes": { "weight": 2 } }, { "key": "27296", "source": "482", "target": "52", "attributes": { "weight": 2 } }, { "key": "10556", "source": "482", "target": "471", "attributes": { "weight": 3 } }, { "key": "1550", "source": "482", "target": "224", "attributes": { "weight": 1 } }, { "key": "10555", "source": "482", "target": "228", "attributes": { "weight": 3 } }, { "key": "10551", "source": "482", "target": "50", "attributes": { "weight": 2 } }, { "key": "10552", "source": "482", "target": "223", "attributes": { "weight": 3 } }, { "key": "20868", "source": "482", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20873", "source": "482", "target": "2273", "attributes": { "weight": 1 } }, { "key": "23655", "source": "482", "target": "1703", "attributes": { "weight": 1 } }, { "key": "10553", "source": "482", "target": "225", "attributes": { "weight": 1 } }, { "key": "10558", "source": "482", "target": "473", "attributes": { "weight": 2 } }, { "key": "33642", "source": "482", "target": "442", "attributes": { "weight": 1 } }, { "key": "20861", "source": "482", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20869", "source": "482", "target": "2261", "attributes": { "weight": 1 } }, { "key": "10560", "source": "482", "target": "1088", "attributes": { "weight": 2 } }, { "key": "4033", "source": "483", "target": "8", "attributes": { "weight": 3 } }, { "key": "20905", "source": "483", "target": "489", "attributes": { "weight": 2 } }, { "key": "23370", "source": "483", "target": "1545", "attributes": { "weight": 1 } }, { "key": "15359", "source": "483", "target": "467", "attributes": { "weight": 2 } }, { "key": "27173", "source": "483", "target": "1219", "attributes": { "weight": 1 } }, { "key": "4031", "source": "483", "target": "462", "attributes": { "weight": 2 } }, { "key": "20900", "source": "483", "target": "1832", "attributes": { "weight": 3 } }, { "key": "23659", "source": "483", "target": "2248", "attributes": { "weight": 1 } }, { "key": "7015", "source": "483", "target": "182", "attributes": { "weight": 1 } }, { "key": "20901", "source": "483", "target": "2254", "attributes": { "weight": 1 } }, { "key": "15361", "source": "483", "target": "672", "attributes": { "weight": 1 } }, { "key": "37020", "source": "483", "target": "425", "attributes": { "weight": 1 } }, { "key": "20903", "source": "483", "target": "2262", "attributes": { "weight": 1 } }, { "key": "15356", "source": "483", "target": "454", "attributes": { "weight": 2 } }, { "key": "27174", "source": "483", "target": "1247", "attributes": { "weight": 1 } }, { "key": "22858", "source": "483", "target": "1067", "attributes": { "weight": 1 } }, { "key": "28978", "source": "483", "target": "479", "attributes": { "weight": 2 } }, { "key": "4034", "source": "483", "target": "487", "attributes": { "weight": 2 } }, { "key": "20897", "source": "483", "target": "221", "attributes": { "weight": 1 } }, { "key": "15358", "source": "483", "target": "188", "attributes": { "weight": 1 } }, { "key": "4027", "source": "483", "target": "432", "attributes": { "weight": 4 } }, { "key": "20898", "source": "483", "target": "2106", "attributes": { "weight": 1 } }, { "key": "7019", "source": "483", "target": "193", "attributes": { "weight": 1 } }, { "key": "22857", "source": "483", "target": "1064", "attributes": { "weight": 1 } }, { "key": "23658", "source": "483", "target": "220", "attributes": { "weight": 1 } }, { "key": "27175", "source": "483", "target": "472", "attributes": { "weight": 3 } }, { "key": "4026", "source": "483", "target": "1068", "attributes": { "weight": 2 } }, { "key": "35022", "source": "483", "target": "595", "attributes": { "weight": 1 } }, { "key": "29906", "source": "483", "target": "1024", "attributes": { "weight": 1 } }, { "key": "20899", "source": "483", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20902", "source": "483", "target": "1836", "attributes": { "weight": 2 } }, { "key": "27176", "source": "483", "target": "1282", "attributes": { "weight": 2 } }, { "key": "7018", "source": "483", "target": "476", "attributes": { "weight": 2 } }, { "key": "4029", "source": "483", "target": "3", "attributes": { "weight": 3 } }, { "key": "23369", "source": "483", "target": "223", "attributes": { "weight": 1 } }, { "key": "15360", "source": "483", "target": "490", "attributes": { "weight": 2 } }, { "key": "7017", "source": "483", "target": "189", "attributes": { "weight": 3 } }, { "key": "15357", "source": "483", "target": "455", "attributes": { "weight": 2 } }, { "key": "4032", "source": "483", "target": "1082", "attributes": { "weight": 2 } }, { "key": "4030", "source": "483", "target": "458", "attributes": { "weight": 2 } }, { "key": "26371", "source": "483", "target": "1258", "attributes": { "weight": 1 } }, { "key": "7020", "source": "483", "target": "495", "attributes": { "weight": 3 } }, { "key": "4028", "source": "483", "target": "442", "attributes": { "weight": 1 } }, { "key": "20904", "source": "483", "target": "2095", "attributes": { "weight": 1 } }, { "key": "7016", "source": "483", "target": "183", "attributes": { "weight": 4 } }, { "key": "1551", "source": "483", "target": "224", "attributes": { "weight": 2 } }, { "key": "32841", "source": "483", "target": "135", "attributes": { "weight": 3 } }, { "key": "20916", "source": "484", "target": "2262", "attributes": { "weight": 1 } }, { "key": "29141", "source": "484", "target": "500", "attributes": { "weight": 1 } }, { "key": "1553", "source": "484", "target": "188", "attributes": { "weight": 1 } }, { "key": "1552", "source": "484", "target": "224", "attributes": { "weight": 1 } }, { "key": "29140", "source": "484", "target": "488", "attributes": { "weight": 1 } }, { "key": "1554", "source": "484", "target": "490", "attributes": { "weight": 1 } }, { "key": "29139", "source": "484", "target": "468", "attributes": { "weight": 1 } }, { "key": "31553", "source": "485", "target": "231", "attributes": { "weight": 1 } }, { "key": "26739", "source": "485", "target": "189", "attributes": { "weight": 1 } }, { "key": "1556", "source": "485", "target": "490", "attributes": { "weight": 1 } }, { "key": "31552", "source": "485", "target": "424", "attributes": { "weight": 1 } }, { "key": "1555", "source": "485", "target": "224", "attributes": { "weight": 1 } }, { "key": "24768", "source": "486", "target": "433", "attributes": { "weight": 2 } }, { "key": "1564", "source": "486", "target": "490", "attributes": { "weight": 1 } }, { "key": "16996", "source": "486", "target": "59", "attributes": { "weight": 1 } }, { "key": "29142", "source": "486", "target": "500", "attributes": { "weight": 1 } }, { "key": "1565", "source": "486", "target": "193", "attributes": { "weight": 1 } }, { "key": "24771", "source": "486", "target": "791", "attributes": { "weight": 2 } }, { "key": "24770", "source": "486", "target": "674", "attributes": { "weight": 1 } }, { "key": "1563", "source": "486", "target": "224", "attributes": { "weight": 1 } }, { "key": "29513", "source": "486", "target": "232", "attributes": { "weight": 2 } }, { "key": "26749", "source": "486", "target": "189", "attributes": { "weight": 1 } }, { "key": "25113", "source": "486", "target": "1547", "attributes": { "weight": 1 } }, { "key": "29052", "source": "486", "target": "495", "attributes": { "weight": 1 } }, { "key": "24769", "source": "486", "target": "2529", "attributes": { "weight": 1 } }, { "key": "4042", "source": "487", "target": "458", "attributes": { "weight": 2 } }, { "key": "3848", "source": "487", "target": "1067", "attributes": { "weight": 1 } }, { "key": "20992", "source": "487", "target": "453", "attributes": { "weight": 1 } }, { "key": "4040", "source": "487", "target": "3", "attributes": { "weight": 3 } }, { "key": "20997", "source": "487", "target": "1812", "attributes": { "weight": 1 } }, { "key": "4038", "source": "487", "target": "1070", "attributes": { "weight": 3 } }, { "key": "4045", "source": "487", "target": "1085", "attributes": { "weight": 2 } }, { "key": "4046", "source": "487", "target": "189", "attributes": { "weight": 4 } }, { "key": "20996", "source": "487", "target": "2262", "attributes": { "weight": 1 } }, { "key": "4041", "source": "487", "target": "454", "attributes": { "weight": 2 } }, { "key": "20989", "source": "487", "target": "438", "attributes": { "weight": 1 } }, { "key": "7035", "source": "487", "target": "193", "attributes": { "weight": 1 } }, { "key": "33660", "source": "487", "target": "425", "attributes": { "weight": 1 } }, { "key": "20995", "source": "487", "target": "2261", "attributes": { "weight": 1 } }, { "key": "17535", "source": "487", "target": "823", "attributes": { "weight": 1 } }, { "key": "1568", "source": "487", "target": "455", "attributes": { "weight": 2 } }, { "key": "32599", "source": "487", "target": "791", "attributes": { "weight": 1 } }, { "key": "30742", "source": "487", "target": "1026", "attributes": { "weight": 1 } }, { "key": "1567", "source": "487", "target": "183", "attributes": { "weight": 4 } }, { "key": "4037", "source": "487", "target": "442", "attributes": { "weight": 1 } }, { "key": "17534", "source": "487", "target": "2122", "attributes": { "weight": 1 } }, { "key": "12039", "source": "487", "target": "135", "attributes": { "weight": 2 } }, { "key": "22859", "source": "487", "target": "1084", "attributes": { "weight": 1 } }, { "key": "7036", "source": "487", "target": "495", "attributes": { "weight": 3 } }, { "key": "20994", "source": "487", "target": "2253", "attributes": { "weight": 1 } }, { "key": "22860", "source": "487", "target": "1091", "attributes": { "weight": 1 } }, { "key": "4043", "source": "487", "target": "53", "attributes": { "weight": 2 } }, { "key": "36095", "source": "487", "target": "440", "attributes": { "weight": 1 } }, { "key": "4048", "source": "487", "target": "483", "attributes": { "weight": 2 } }, { "key": "4036", "source": "487", "target": "432", "attributes": { "weight": 6 } }, { "key": "20999", "source": "487", "target": "2095", "attributes": { "weight": 1 } }, { "key": "1570", "source": "487", "target": "490", "attributes": { "weight": 4 } }, { "key": "4044", "source": "487", "target": "8", "attributes": { "weight": 2 } }, { "key": "33661", "source": "487", "target": "472", "attributes": { "weight": 1 } }, { "key": "20990", "source": "487", "target": "2244", "attributes": { "weight": 1 } }, { "key": "33662", "source": "487", "target": "672", "attributes": { "weight": 1 } }, { "key": "3847", "source": "487", "target": "1066", "attributes": { "weight": 1 } }, { "key": "4039", "source": "487", "target": "674", "attributes": { "weight": 2 } }, { "key": "20993", "source": "487", "target": "2251", "attributes": { "weight": 1 } }, { "key": "31708", "source": "487", "target": "595", "attributes": { "weight": 1 } }, { "key": "23689", "source": "487", "target": "220", "attributes": { "weight": 1 } }, { "key": "3846", "source": "487", "target": "1064", "attributes": { "weight": 1 } }, { "key": "1566", "source": "487", "target": "224", "attributes": { "weight": 1 } }, { "key": "20998", "source": "487", "target": "480", "attributes": { "weight": 1 } }, { "key": "1569", "source": "487", "target": "188", "attributes": { "weight": 2 } }, { "key": "21000", "source": "487", "target": "489", "attributes": { "weight": 1 } }, { "key": "20988", "source": "487", "target": "221", "attributes": { "weight": 1 } }, { "key": "3845", "source": "487", "target": "443", "attributes": { "weight": 1 } }, { "key": "11272", "source": "487", "target": "452", "attributes": { "weight": 2 } }, { "key": "25388", "source": "487", "target": "433", "attributes": { "weight": 1 } }, { "key": "4047", "source": "487", "target": "476", "attributes": { "weight": 2 } }, { "key": "20991", "source": "487", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21001", "source": "487", "target": "2276", "attributes": { "weight": 1 } }, { "key": "4035", "source": "487", "target": "59", "attributes": { "weight": 2 } }, { "key": "16998", "source": "488", "target": "674", "attributes": { "weight": 2 } }, { "key": "1575", "source": "488", "target": "188", "attributes": { "weight": 1 } }, { "key": "29146", "source": "488", "target": "442", "attributes": { "weight": 1 } }, { "key": "1574", "source": "488", "target": "455", "attributes": { "weight": 1 } }, { "key": "1572", "source": "488", "target": "448", "attributes": { "weight": 1 } }, { "key": "37466", "source": "488", "target": "435", "attributes": { "weight": 1 } }, { "key": "33668", "source": "488", "target": "52", "attributes": { "weight": 1 } }, { "key": "17000", "source": "488", "target": "135", "attributes": { "weight": 3 } }, { "key": "27177", "source": "488", "target": "472", "attributes": { "weight": 1 } }, { "key": "16999", "source": "488", "target": "457", "attributes": { "weight": 1 } }, { "key": "29151", "source": "488", "target": "2263", "attributes": { "weight": 1 } }, { "key": "16997", "source": "488", "target": "59", "attributes": { "weight": 2 } }, { "key": "23691", "source": "488", "target": "1312", "attributes": { "weight": 1 } }, { "key": "27300", "source": "488", "target": "57", "attributes": { "weight": 2 } }, { "key": "7043", "source": "488", "target": "476", "attributes": { "weight": 1 } }, { "key": "29054", "source": "488", "target": "495", "attributes": { "weight": 2 } }, { "key": "28980", "source": "488", "target": "479", "attributes": { "weight": 2 } }, { "key": "33667", "source": "488", "target": "425", "attributes": { "weight": 1 } }, { "key": "29150", "source": "488", "target": "228", "attributes": { "weight": 1 } }, { "key": "29144", "source": "488", "target": "432", "attributes": { "weight": 1 } }, { "key": "29176", "source": "488", "target": "1750", "attributes": { "weight": 1 } }, { "key": "29145", "source": "488", "target": "433", "attributes": { "weight": 1 } }, { "key": "17001", "source": "488", "target": "70", "attributes": { "weight": 1 } }, { "key": "15370", "source": "488", "target": "454", "attributes": { "weight": 3 } }, { "key": "31364", "source": "488", "target": "1118", "attributes": { "weight": 1 } }, { "key": "1573", "source": "488", "target": "183", "attributes": { "weight": 3 } }, { "key": "29149", "source": "488", "target": "468", "attributes": { "weight": 1 } }, { "key": "29148", "source": "488", "target": "452", "attributes": { "weight": 1 } }, { "key": "29152", "source": "488", "target": "500", "attributes": { "weight": 1 } }, { "key": "29147", "source": "488", "target": "447", "attributes": { "weight": 1 } }, { "key": "25485", "source": "488", "target": "497", "attributes": { "weight": 1 } }, { "key": "1577", "source": "488", "target": "193", "attributes": { "weight": 2 } }, { "key": "1571", "source": "488", "target": "224", "attributes": { "weight": 1 } }, { "key": "23371", "source": "488", "target": "1121", "attributes": { "weight": 1 } }, { "key": "26752", "source": "488", "target": "189", "attributes": { "weight": 2 } }, { "key": "1576", "source": "488", "target": "490", "attributes": { "weight": 1 } }, { "key": "21081", "source": "489", "target": "1741", "attributes": { "weight": 1 } }, { "key": "21104", "source": "489", "target": "481", "attributes": { "weight": 1 } }, { "key": "21126", "source": "489", "target": "1750", "attributes": { "weight": 1 } }, { "key": "21055", "source": "489", "target": "1358", "attributes": { "weight": 2 } }, { "key": "21066", "source": "489", "target": "465", "attributes": { "weight": 1 } }, { "key": "21083", "source": "489", "target": "1838", "attributes": { "weight": 1 } }, { "key": "21032", "source": "489", "target": "438", "attributes": { "weight": 1 } }, { "key": "21029", "source": "489", "target": "1522", "attributes": { "weight": 1 } }, { "key": "33674", "source": "489", "target": "441", "attributes": { "weight": 1 } }, { "key": "21020", "source": "489", "target": "429", "attributes": { "weight": 2 } }, { "key": "21052", "source": "489", "target": "227", "attributes": { "weight": 1 } }, { "key": "21025", "source": "489", "target": "130", "attributes": { "weight": 1 } }, { "key": "21139", "source": "489", "target": "499", "attributes": { "weight": 1 } }, { "key": "21125", "source": "489", "target": "1775", "attributes": { "weight": 1 } }, { "key": "21045", "source": "489", "target": "2247", "attributes": { "weight": 1 } }, { "key": "21042", "source": "489", "target": "1070", "attributes": { "weight": 1 } }, { "key": "21096", "source": "489", "target": "1127", "attributes": { "weight": 1 } }, { "key": "21087", "source": "489", "target": "1744", "attributes": { "weight": 1 } }, { "key": "21088", "source": "489", "target": "2108", "attributes": { "weight": 1 } }, { "key": "7044", "source": "489", "target": "183", "attributes": { "weight": 1 } }, { "key": "33680", "source": "489", "target": "228", "attributes": { "weight": 1 } }, { "key": "21019", "source": "489", "target": "1353", "attributes": { "weight": 3 } }, { "key": "21076", "source": "489", "target": "1122", "attributes": { "weight": 1 } }, { "key": "21085", "source": "489", "target": "476", "attributes": { "weight": 1 } }, { "key": "32848", "source": "489", "target": "2670", "attributes": { "weight": 2 } }, { "key": "12318", "source": "489", "target": "1830", "attributes": { "weight": 1 } }, { "key": "21069", "source": "489", "target": "2256", "attributes": { "weight": 1 } }, { "key": "21094", "source": "489", "target": "1812", "attributes": { "weight": 2 } }, { "key": "21129", "source": "489", "target": "73", "attributes": { "weight": 1 } }, { "key": "21051", "source": "489", "target": "451", "attributes": { "weight": 2 } }, { "key": "21063", "source": "489", "target": "462", "attributes": { "weight": 2 } }, { "key": "21112", "source": "489", "target": "2270", "attributes": { "weight": 1 } }, { "key": "21136", "source": "489", "target": "2275", "attributes": { "weight": 1 } }, { "key": "21109", "source": "489", "target": "483", "attributes": { "weight": 2 } }, { "key": "21101", "source": "489", "target": "479", "attributes": { "weight": 2 } }, { "key": "21118", "source": "489", "target": "491", "attributes": { "weight": 1 } }, { "key": "21035", "source": "489", "target": "425", "attributes": { "weight": 1 } }, { "key": "21120", "source": "489", "target": "1131", "attributes": { "weight": 1 } }, { "key": "21034", "source": "489", "target": "2240", "attributes": { "weight": 1 } }, { "key": "21122", "source": "489", "target": "192", "attributes": { "weight": 1 } }, { "key": "21137", "source": "489", "target": "2276", "attributes": { "weight": 1 } }, { "key": "21046", "source": "489", "target": "448", "attributes": { "weight": 1 } }, { "key": "21103", "source": "489", "target": "1770", "attributes": { "weight": 1 } }, { "key": "21124", "source": "489", "target": "56", "attributes": { "weight": 3 } }, { "key": "21090", "source": "489", "target": "2264", "attributes": { "weight": 1 } }, { "key": "21030", "source": "489", "target": "222", "attributes": { "weight": 1 } }, { "key": "33681", "source": "489", "target": "189", "attributes": { "weight": 1 } }, { "key": "22881", "source": "489", "target": "1359", "attributes": { "weight": 1 } }, { "key": "21062", "source": "489", "target": "459", "attributes": { "weight": 3 } }, { "key": "21133", "source": "489", "target": "2273", "attributes": { "weight": 1 } }, { "key": "29515", "source": "489", "target": "857", "attributes": { "weight": 1 } }, { "key": "21106", "source": "489", "target": "1560", "attributes": { "weight": 1 } }, { "key": "21021", "source": "489", "target": "1756", "attributes": { "weight": 1 } }, { "key": "21073", "source": "489", "target": "470", "attributes": { "weight": 1 } }, { "key": "33679", "source": "489", "target": "1547", "attributes": { "weight": 1 } }, { "key": "1580", "source": "489", "target": "490", "attributes": { "weight": 1 } }, { "key": "33670", "source": "489", "target": "220", "attributes": { "weight": 1 } }, { "key": "21067", "source": "489", "target": "2254", "attributes": { "weight": 1 } }, { "key": "21117", "source": "489", "target": "2111", "attributes": { "weight": 1 } }, { "key": "21108", "source": "489", "target": "2269", "attributes": { "weight": 1 } }, { "key": "21098", "source": "489", "target": "231", "attributes": { "weight": 4 } }, { "key": "21091", "source": "489", "target": "1026", "attributes": { "weight": 1 } }, { "key": "21078", "source": "489", "target": "471", "attributes": { "weight": 1 } }, { "key": "21113", "source": "489", "target": "2109", "attributes": { "weight": 1 } }, { "key": "21023", "source": "489", "target": "431", "attributes": { "weight": 1 } }, { "key": "21086", "source": "489", "target": "2262", "attributes": { "weight": 1 } }, { "key": "21065", "source": "489", "target": "464", "attributes": { "weight": 1 } }, { "key": "21131", "source": "489", "target": "1777", "attributes": { "weight": 1 } }, { "key": "33671", "source": "489", "target": "2645", "attributes": { "weight": 1 } }, { "key": "33673", "source": "489", "target": "858", "attributes": { "weight": 1 } }, { "key": "21033", "source": "489", "target": "439", "attributes": { "weight": 1 } }, { "key": "21070", "source": "489", "target": "1364", "attributes": { "weight": 1 } }, { "key": "21099", "source": "489", "target": "477", "attributes": { "weight": 1 } }, { "key": "21116", "source": "489", "target": "487", "attributes": { "weight": 1 } }, { "key": "33676", "source": "489", "target": "447", "attributes": { "weight": 1 } }, { "key": "21114", "source": "489", "target": "2271", "attributes": { "weight": 1 } }, { "key": "21080", "source": "489", "target": "1367", "attributes": { "weight": 1 } }, { "key": "21040", "source": "489", "target": "2243", "attributes": { "weight": 1 } }, { "key": "21050", "source": "489", "target": "2248", "attributes": { "weight": 1 } }, { "key": "21138", "source": "489", "target": "498", "attributes": { "weight": 1 } }, { "key": "33685", "source": "489", "target": "1092", "attributes": { "weight": 1 } }, { "key": "21026", "source": "489", "target": "49", "attributes": { "weight": 1 } }, { "key": "21048", "source": "489", "target": "1071", "attributes": { "weight": 1 } }, { "key": "21097", "source": "489", "target": "2268", "attributes": { "weight": 1 } }, { "key": "21038", "source": "489", "target": "1111", "attributes": { "weight": 1 } }, { "key": "21128", "source": "489", "target": "1751", "attributes": { "weight": 1 } }, { "key": "22882", "source": "489", "target": "1362", "attributes": { "weight": 1 } }, { "key": "21132", "source": "489", "target": "235", "attributes": { "weight": 1 } }, { "key": "21079", "source": "489", "target": "2094", "attributes": { "weight": 1 } }, { "key": "21027", "source": "489", "target": "221", "attributes": { "weight": 1 } }, { "key": "21060", "source": "489", "target": "2088", "attributes": { "weight": 1 } }, { "key": "21044", "source": "489", "target": "1759", "attributes": { "weight": 1 } }, { "key": "21057", "source": "489", "target": "1536", "attributes": { "weight": 1 } }, { "key": "32847", "source": "489", "target": "1366", "attributes": { "weight": 1 } }, { "key": "33683", "source": "489", "target": "474", "attributes": { "weight": 1 } }, { "key": "33675", "source": "489", "target": "674", "attributes": { "weight": 1 } }, { "key": "21102", "source": "489", "target": "480", "attributes": { "weight": 1 } }, { "key": "21089", "source": "489", "target": "2263", "attributes": { "weight": 1 } }, { "key": "21095", "source": "489", "target": "1126", "attributes": { "weight": 1 } }, { "key": "21031", "source": "489", "target": "50", "attributes": { "weight": 1 } }, { "key": "21119", "source": "489", "target": "1374", "attributes": { "weight": 1 } }, { "key": "21110", "source": "489", "target": "695", "attributes": { "weight": 1 } }, { "key": "21077", "source": "489", "target": "2259", "attributes": { "weight": 1 } }, { "key": "33682", "source": "489", "target": "190", "attributes": { "weight": 1 } }, { "key": "21049", "source": "489", "target": "1533", "attributes": { "weight": 1 } }, { "key": "21024", "source": "489", "target": "432", "attributes": { "weight": 1 } }, { "key": "21121", "source": "489", "target": "672", "attributes": { "weight": 1 } }, { "key": "21135", "source": "489", "target": "1390", "attributes": { "weight": 1 } }, { "key": "21036", "source": "489", "target": "2025", "attributes": { "weight": 1 } }, { "key": "33677", "source": "489", "target": "450", "attributes": { "weight": 1 } }, { "key": "21074", "source": "489", "target": "1365", "attributes": { "weight": 1 } }, { "key": "21018", "source": "489", "target": "1808", "attributes": { "weight": 1 } }, { "key": "21084", "source": "489", "target": "2261", "attributes": { "weight": 1 } }, { "key": "21092", "source": "489", "target": "2265", "attributes": { "weight": 1 } }, { "key": "21111", "source": "489", "target": "2095", "attributes": { "weight": 1 } }, { "key": "21037", "source": "489", "target": "440", "attributes": { "weight": 1 } }, { "key": "21071", "source": "489", "target": "467", "attributes": { "weight": 1 } }, { "key": "1578", "source": "489", "target": "224", "attributes": { "weight": 1 } }, { "key": "29516", "source": "489", "target": "232", "attributes": { "weight": 1 } }, { "key": "21056", "source": "489", "target": "1360", "attributes": { "weight": 1 } }, { "key": "21127", "source": "489", "target": "1566", "attributes": { "weight": 1 } }, { "key": "33678", "source": "489", "target": "1219", "attributes": { "weight": 1 } }, { "key": "3635", "source": "489", "target": "1025", "attributes": { "weight": 1 } }, { "key": "21064", "source": "489", "target": "2107", "attributes": { "weight": 1 } }, { "key": "21054", "source": "489", "target": "186", "attributes": { "weight": 1 } }, { "key": "21028", "source": "489", "target": "1110", "attributes": { "weight": 1 } }, { "key": "21130", "source": "489", "target": "492", "attributes": { "weight": 1 } }, { "key": "21134", "source": "489", "target": "1375", "attributes": { "weight": 1 } }, { "key": "21061", "source": "489", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21140", "source": "489", "target": "194", "attributes": { "weight": 1 } }, { "key": "21022", "source": "489", "target": "1354", "attributes": { "weight": 1 } }, { "key": "33672", "source": "489", "target": "437", "attributes": { "weight": 1 } }, { "key": "21068", "source": "489", "target": "1120", "attributes": { "weight": 1 } }, { "key": "21105", "source": "489", "target": "482", "attributes": { "weight": 2 } }, { "key": "33684", "source": "489", "target": "2470", "attributes": { "weight": 1 } }, { "key": "21115", "source": "489", "target": "2272", "attributes": { "weight": 1 } }, { "key": "21141", "source": "489", "target": "2278", "attributes": { "weight": 1 } }, { "key": "21082", "source": "489", "target": "1087", "attributes": { "weight": 1 } }, { "key": "21075", "source": "489", "target": "54", "attributes": { "weight": 2 } }, { "key": "21123", "source": "489", "target": "2096", "attributes": { "weight": 1 } }, { "key": "21047", "source": "489", "target": "449", "attributes": { "weight": 1 } }, { "key": "32846", "source": "489", "target": "860", "attributes": { "weight": 2 } }, { "key": "21043", "source": "489", "target": "2244", "attributes": { "weight": 1 } }, { "key": "21039", "source": "489", "target": "2241", "attributes": { "weight": 1 } }, { "key": "21107", "source": "489", "target": "1129", "attributes": { "weight": 1 } }, { "key": "21100", "source": "489", "target": "478", "attributes": { "weight": 1 } }, { "key": "21053", "source": "489", "target": "453", "attributes": { "weight": 1 } }, { "key": "21059", "source": "489", "target": "1998", "attributes": { "weight": 1 } }, { "key": "21041", "source": "489", "target": "443", "attributes": { "weight": 1 } }, { "key": "1579", "source": "489", "target": "455", "attributes": { "weight": 1 } }, { "key": "21072", "source": "489", "target": "1546", "attributes": { "weight": 1 } }, { "key": "21093", "source": "489", "target": "2266", "attributes": { "weight": 1 } }, { "key": "21058", "source": "489", "target": "2251", "attributes": { "weight": 1 } }, { "key": "1616", "source": "490", "target": "232", "attributes": { "weight": 3 } }, { "key": "1601", "source": "490", "target": "456", "attributes": { "weight": 1 } }, { "key": "1603", "source": "490", "target": "459", "attributes": { "weight": 2 } }, { "key": "1617", "source": "490", "target": "486", "attributes": { "weight": 1 } }, { "key": "1605", "source": "490", "target": "466", "attributes": { "weight": 1 } }, { "key": "1618", "source": "490", "target": "487", "attributes": { "weight": 4 } }, { "key": "15378", "source": "490", "target": "483", "attributes": { "weight": 2 } }, { "key": "26757", "source": "490", "target": "189", "attributes": { "weight": 2 } }, { "key": "7051", "source": "490", "target": "494", "attributes": { "weight": 2 } }, { "key": "1582", "source": "490", "target": "432", "attributes": { "weight": 1 } }, { "key": "18119", "source": "490", "target": "52", "attributes": { "weight": 1 } }, { "key": "26754", "source": "490", "target": "1047", "attributes": { "weight": 2 } }, { "key": "1610", "source": "490", "target": "190", "attributes": { "weight": 3 } }, { "key": "1597", "source": "490", "target": "451", "attributes": { "weight": 2 } }, { "key": "1609", "source": "490", "target": "473", "attributes": { "weight": 1 } }, { "key": "1587", "source": "490", "target": "437", "attributes": { "weight": 1 } }, { "key": "37026", "source": "490", "target": "2644", "attributes": { "weight": 1 } }, { "key": "29518", "source": "490", "target": "2211", "attributes": { "weight": 1 } }, { "key": "1584", "source": "490", "target": "49", "attributes": { "weight": 1 } }, { "key": "15372", "source": "490", "target": "1353", "attributes": { "weight": 2 } }, { "key": "1608", "source": "490", "target": "470", "attributes": { "weight": 1 } }, { "key": "1591", "source": "490", "target": "440", "attributes": { "weight": 1 } }, { "key": "1600", "source": "490", "target": "188", "attributes": { "weight": 2 } }, { "key": "31709", "source": "490", "target": "595", "attributes": { "weight": 1 } }, { "key": "15375", "source": "490", "target": "1358", "attributes": { "weight": 2 } }, { "key": "1588", "source": "490", "target": "438", "attributes": { "weight": 1 } }, { "key": "1607", "source": "490", "target": "468", "attributes": { "weight": 4 } }, { "key": "1623", "source": "490", "target": "495", "attributes": { "weight": 3 } }, { "key": "1592", "source": "490", "target": "441", "attributes": { "weight": 1 } }, { "key": "1614", "source": "490", "target": "484", "attributes": { "weight": 1 } }, { "key": "7047", "source": "490", "target": "183", "attributes": { "weight": 1 } }, { "key": "1606", "source": "490", "target": "467", "attributes": { "weight": 1 } }, { "key": "1590", "source": "490", "target": "223", "attributes": { "weight": 1 } }, { "key": "26758", "source": "490", "target": "57", "attributes": { "weight": 2 } }, { "key": "9092", "source": "490", "target": "442", "attributes": { "weight": 2 } }, { "key": "25897", "source": "490", "target": "220", "attributes": { "weight": 1 } }, { "key": "1589", "source": "490", "target": "439", "attributes": { "weight": 1 } }, { "key": "1596", "source": "490", "target": "182", "attributes": { "weight": 1 } }, { "key": "15373", "source": "490", "target": "860", "attributes": { "weight": 2 } }, { "key": "35703", "source": "490", "target": "1356", "attributes": { "weight": 1 } }, { "key": "31365", "source": "490", "target": "674", "attributes": { "weight": 1 } }, { "key": "1625", "source": "490", "target": "500", "attributes": { "weight": 1 } }, { "key": "32602", "source": "490", "target": "791", "attributes": { "weight": 1 } }, { "key": "1586", "source": "490", "target": "436", "attributes": { "weight": 1 } }, { "key": "1613", "source": "490", "target": "427", "attributes": { "weight": 1 } }, { "key": "15380", "source": "490", "target": "499", "attributes": { "weight": 2 } }, { "key": "29517", "source": "490", "target": "857", "attributes": { "weight": 2 } }, { "key": "1594", "source": "490", "target": "445", "attributes": { "weight": 5 } }, { "key": "7049", "source": "490", "target": "701", "attributes": { "weight": 1 } }, { "key": "1581", "source": "490", "target": "429", "attributes": { "weight": 2 } }, { "key": "12319", "source": "490", "target": "435", "attributes": { "weight": 1 } }, { "key": "15376", "source": "490", "target": "462", "attributes": { "weight": 2 } }, { "key": "1612", "source": "490", "target": "231", "attributes": { "weight": 4 } }, { "key": "1620", "source": "490", "target": "489", "attributes": { "weight": 1 } }, { "key": "7045", "source": "490", "target": "1354", "attributes": { "weight": 1 } }, { "key": "26756", "source": "490", "target": "187", "attributes": { "weight": 2 } }, { "key": "1595", "source": "490", "target": "447", "attributes": { "weight": 1 } }, { "key": "15379", "source": "490", "target": "56", "attributes": { "weight": 2 } }, { "key": "26755", "source": "490", "target": "454", "attributes": { "weight": 1 } }, { "key": "37027", "source": "490", "target": "1366", "attributes": { "weight": 1 } }, { "key": "1604", "source": "490", "target": "464", "attributes": { "weight": 1 } }, { "key": "1599", "source": "490", "target": "455", "attributes": { "weight": 2 } }, { "key": "15374", "source": "490", "target": "1357", "attributes": { "weight": 2 } }, { "key": "1611", "source": "490", "target": "191", "attributes": { "weight": 3 } }, { "key": "1621", "source": "490", "target": "491", "attributes": { "weight": 1 } }, { "key": "1619", "source": "490", "target": "488", "attributes": { "weight": 1 } }, { "key": "7050", "source": "490", "target": "1362", "attributes": { "weight": 1 } }, { "key": "7048", "source": "490", "target": "1116", "attributes": { "weight": 2 } }, { "key": "17316", "source": "490", "target": "449", "attributes": { "weight": 1 } }, { "key": "15377", "source": "490", "target": "54", "attributes": { "weight": 2 } }, { "key": "1622", "source": "490", "target": "193", "attributes": { "weight": 3 } }, { "key": "9091", "source": "490", "target": "195", "attributes": { "weight": 3 } }, { "key": "1593", "source": "490", "target": "443", "attributes": { "weight": 2 } }, { "key": "1624", "source": "490", "target": "194", "attributes": { "weight": 1 } }, { "key": "7046", "source": "490", "target": "424", "attributes": { "weight": 4 } }, { "key": "1615", "source": "490", "target": "485", "attributes": { "weight": 1 } }, { "key": "1598", "source": "490", "target": "452", "attributes": { "weight": 1 } }, { "key": "1602", "source": "490", "target": "458", "attributes": { "weight": 3 } }, { "key": "1583", "source": "490", "target": "130", "attributes": { "weight": 3 } }, { "key": "1585", "source": "490", "target": "433", "attributes": { "weight": 3 } }, { "key": "21144", "source": "491", "target": "2245", "attributes": { "weight": 1 } }, { "key": "7052", "source": "491", "target": "57", "attributes": { "weight": 2 } }, { "key": "1629", "source": "491", "target": "490", "attributes": { "weight": 1 } }, { "key": "21142", "source": "491", "target": "221", "attributes": { "weight": 1 } }, { "key": "21145", "source": "491", "target": "2253", "attributes": { "weight": 1 } }, { "key": "33686", "source": "491", "target": "473", "attributes": { "weight": 1 } }, { "key": "21149", "source": "491", "target": "235", "attributes": { "weight": 1 } }, { "key": "21148", "source": "491", "target": "489", "attributes": { "weight": 1 } }, { "key": "29055", "source": "491", "target": "495", "attributes": { "weight": 1 } }, { "key": "1627", "source": "491", "target": "183", "attributes": { "weight": 1 } }, { "key": "21147", "source": "491", "target": "480", "attributes": { "weight": 1 } }, { "key": "23692", "source": "491", "target": "445", "attributes": { "weight": 1 } }, { "key": "1626", "source": "491", "target": "224", "attributes": { "weight": 1 } }, { "key": "21143", "source": "491", "target": "222", "attributes": { "weight": 1 } }, { "key": "11277", "source": "491", "target": "469", "attributes": { "weight": 1 } }, { "key": "9992", "source": "491", "target": "494", "attributes": { "weight": 2 } }, { "key": "21146", "source": "491", "target": "2261", "attributes": { "weight": 1 } }, { "key": "26759", "source": "491", "target": "189", "attributes": { "weight": 1 } }, { "key": "9991", "source": "491", "target": "492", "attributes": { "weight": 2 } }, { "key": "11276", "source": "491", "target": "452", "attributes": { "weight": 2 } }, { "key": "1628", "source": "491", "target": "455", "attributes": { "weight": 1 } }, { "key": "12046", "source": "492", "target": "135", "attributes": { "weight": 1 } }, { "key": "11301", "source": "492", "target": "1762", "attributes": { "weight": 2 } }, { "key": "21268", "source": "492", "target": "49", "attributes": { "weight": 1 } }, { "key": "21267", "source": "492", "target": "130", "attributes": { "weight": 3 } }, { "key": "24377", "source": "492", "target": "441", "attributes": { "weight": 1 } }, { "key": "21270", "source": "492", "target": "1367", "attributes": { "weight": 1 } }, { "key": "11298", "source": "492", "target": "1756", "attributes": { "weight": 1 } }, { "key": "1633", "source": "492", "target": "183", "attributes": { "weight": 1 } }, { "key": "24378", "source": "492", "target": "191", "attributes": { "weight": 1 } }, { "key": "32615", "source": "492", "target": "791", "attributes": { "weight": 1 } }, { "key": "31433", "source": "492", "target": "223", "attributes": { "weight": 2 } }, { "key": "26768", "source": "492", "target": "189", "attributes": { "weight": 1 } }, { "key": "23699", "source": "492", "target": "220", "attributes": { "weight": 1 } }, { "key": "11304", "source": "492", "target": "1093", "attributes": { "weight": 1 } }, { "key": "11302", "source": "492", "target": "190", "attributes": { "weight": 2 } }, { "key": "26767", "source": "492", "target": "454", "attributes": { "weight": 1 } }, { "key": "11299", "source": "492", "target": "439", "attributes": { "weight": 2 } }, { "key": "18122", "source": "492", "target": "57", "attributes": { "weight": 1 } }, { "key": "10575", "source": "492", "target": "225", "attributes": { "weight": 1 } }, { "key": "10002", "source": "492", "target": "445", "attributes": { "weight": 4 } }, { "key": "21271", "source": "492", "target": "489", "attributes": { "weight": 1 } }, { "key": "10004", "source": "492", "target": "491", "attributes": { "weight": 2 } }, { "key": "24256", "source": "492", "target": "471", "attributes": { "weight": 1 } }, { "key": "10003", "source": "492", "target": "477", "attributes": { "weight": 3 } }, { "key": "11300", "source": "492", "target": "452", "attributes": { "weight": 3 } }, { "key": "21269", "source": "492", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21272", "source": "492", "target": "2189", "attributes": { "weight": 1 } }, { "key": "9122", "source": "492", "target": "442", "attributes": { "weight": 2 } }, { "key": "11303", "source": "492", "target": "1771", "attributes": { "weight": 1 } }, { "key": "33098", "source": "493", "target": "1556", "attributes": { "weight": 1 } }, { "key": "12411", "source": "493", "target": "228", "attributes": { "weight": 3 } }, { "key": "3128", "source": "493", "target": "890", "attributes": { "weight": 3 } }, { "key": "34880", "source": "493", "target": "3168", "attributes": { "weight": 1 } }, { "key": "12413", "source": "493", "target": "1088", "attributes": { "weight": 2 } }, { "key": "33096", "source": "493", "target": "189", "attributes": { "weight": 1 } }, { "key": "34879", "source": "493", "target": "3167", "attributes": { "weight": 1 } }, { "key": "1634", "source": "493", "target": "224", "attributes": { "weight": 1 } }, { "key": "12412", "source": "493", "target": "1845", "attributes": { "weight": 2 } }, { "key": "33084", "source": "493", "target": "222", "attributes": { "weight": 1 } }, { "key": "33085", "source": "493", "target": "50", "attributes": { "weight": 1 } }, { "key": "33081", "source": "493", "target": "130", "attributes": { "weight": 1 } }, { "key": "33091", "source": "493", "target": "1056", "attributes": { "weight": 1 } }, { "key": "33102", "source": "493", "target": "1131", "attributes": { "weight": 1 } }, { "key": "34882", "source": "493", "target": "190", "attributes": { "weight": 1 } }, { "key": "33086", "source": "493", "target": "223", "attributes": { "weight": 1 } }, { "key": "33087", "source": "493", "target": "39", "attributes": { "weight": 1 } }, { "key": "33082", "source": "493", "target": "433", "attributes": { "weight": 1 } }, { "key": "27548", "source": "493", "target": "1520", "attributes": { "weight": 2 } }, { "key": "34883", "source": "493", "target": "893", "attributes": { "weight": 1 } }, { "key": "3130", "source": "493", "target": "894", "attributes": { "weight": 4 } }, { "key": "33083", "source": "493", "target": "36", "attributes": { "weight": 1 } }, { "key": "33079", "source": "493", "target": "34", "attributes": { "weight": 1 } }, { "key": "33088", "source": "493", "target": "3", "attributes": { "weight": 1 } }, { "key": "33105", "source": "493", "target": "495", "attributes": { "weight": 1 } }, { "key": "26899", "source": "493", "target": "2658", "attributes": { "weight": 2 } }, { "key": "33097", "source": "493", "target": "474", "attributes": { "weight": 1 } }, { "key": "33094", "source": "493", "target": "471", "attributes": { "weight": 1 } }, { "key": "33099", "source": "493", "target": "1592", "attributes": { "weight": 1 } }, { "key": "10578", "source": "493", "target": "225", "attributes": { "weight": 2 } }, { "key": "11309", "source": "493", "target": "452", "attributes": { "weight": 2 } }, { "key": "33100", "source": "493", "target": "42", "attributes": { "weight": 1 } }, { "key": "26901", "source": "493", "target": "2662", "attributes": { "weight": 2 } }, { "key": "33104", "source": "493", "target": "494", "attributes": { "weight": 1 } }, { "key": "30721", "source": "493", "target": "889", "attributes": { "weight": 1 } }, { "key": "34881", "source": "493", "target": "1367", "attributes": { "weight": 1 } }, { "key": "26900", "source": "493", "target": "2661", "attributes": { "weight": 1 } }, { "key": "11310", "source": "493", "target": "473", "attributes": { "weight": 2 } }, { "key": "33090", "source": "493", "target": "52", "attributes": { "weight": 1 } }, { "key": "33093", "source": "493", "target": "470", "attributes": { "weight": 1 } }, { "key": "33080", "source": "493", "target": "220", "attributes": { "weight": 1 } }, { "key": "33089", "source": "493", "target": "183", "attributes": { "weight": 1 } }, { "key": "30487", "source": "493", "target": "1046", "attributes": { "weight": 1 } }, { "key": "32033", "source": "493", "target": "359", "attributes": { "weight": 2 } }, { "key": "9124", "source": "493", "target": "442", "attributes": { "weight": 3 } }, { "key": "33101", "source": "493", "target": "477", "attributes": { "weight": 1 } }, { "key": "17523", "source": "493", "target": "358", "attributes": { "weight": 2 } }, { "key": "33103", "source": "493", "target": "233", "attributes": { "weight": 1 } }, { "key": "26771", "source": "493", "target": "454", "attributes": { "weight": 2 } }, { "key": "27892", "source": "493", "target": "339", "attributes": { "weight": 2 } }, { "key": "33092", "source": "493", "target": "468", "attributes": { "weight": 1 } }, { "key": "34884", "source": "493", "target": "3115", "attributes": { "weight": 1 } }, { "key": "33095", "source": "493", "target": "2115", "attributes": { "weight": 1 } }, { "key": "33106", "source": "493", "target": "57", "attributes": { "weight": 1 } }, { "key": "34878", "source": "493", "target": "1355", "attributes": { "weight": 1 } }, { "key": "9374", "source": "493", "target": "430", "attributes": { "weight": 2 } }, { "key": "32616", "source": "493", "target": "791", "attributes": { "weight": 2 } }, { "key": "32852", "source": "493", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9125", "source": "493", "target": "1087", "attributes": { "weight": 2 } }, { "key": "6492", "source": "494", "target": "468", "attributes": { "weight": 2 } }, { "key": "27186", "source": "494", "target": "1282", "attributes": { "weight": 1 } }, { "key": "33730", "source": "494", "target": "425", "attributes": { "weight": 1 } }, { "key": "23701", "source": "494", "target": "2248", "attributes": { "weight": 1 } }, { "key": "3636", "source": "494", "target": "1025", "attributes": { "weight": 2 } }, { "key": "10011", "source": "494", "target": "477", "attributes": { "weight": 3 } }, { "key": "11317", "source": "494", "target": "695", "attributes": { "weight": 2 } }, { "key": "32854", "source": "494", "target": "1121", "attributes": { "weight": 1 } }, { "key": "9131", "source": "494", "target": "474", "attributes": { "weight": 3 } }, { "key": "33733", "source": "494", "target": "2110", "attributes": { "weight": 1 } }, { "key": "35347", "source": "494", "target": "439", "attributes": { "weight": 1 } }, { "key": "17057", "source": "494", "target": "70", "attributes": { "weight": 1 } }, { "key": "6493", "source": "494", "target": "1090", "attributes": { "weight": 2 } }, { "key": "32986", "source": "494", "target": "1063", "attributes": { "weight": 1 } }, { "key": "4234", "source": "494", "target": "228", "attributes": { "weight": 3 } }, { "key": "27184", "source": "494", "target": "1247", "attributes": { "weight": 1 } }, { "key": "10008", "source": "494", "target": "674", "attributes": { "weight": 4 } }, { "key": "10010", "source": "494", "target": "8", "attributes": { "weight": 2 } }, { "key": "32856", "source": "494", "target": "1125", "attributes": { "weight": 2 } }, { "key": "11312", "source": "494", "target": "220", "attributes": { "weight": 3 } }, { "key": "33731", "source": "494", "target": "52", "attributes": { "weight": 1 } }, { "key": "35350", "source": "494", "target": "191", "attributes": { "weight": 1 } }, { "key": "35351", "source": "494", "target": "2188", "attributes": { "weight": 1 } }, { "key": "10014", "source": "494", "target": "1093", "attributes": { "weight": 3 } }, { "key": "33107", "source": "494", "target": "493", "attributes": { "weight": 1 } }, { "key": "26775", "source": "494", "target": "454", "attributes": { "weight": 1 } }, { "key": "7134", "source": "494", "target": "490", "attributes": { "weight": 2 } }, { "key": "17320", "source": "494", "target": "449", "attributes": { "weight": 1 } }, { "key": "10009", "source": "494", "target": "445", "attributes": { "weight": 3 } }, { "key": "10012", "source": "494", "target": "479", "attributes": { "weight": 2 } }, { "key": "29059", "source": "494", "target": "495", "attributes": { "weight": 1 } }, { "key": "17056", "source": "494", "target": "59", "attributes": { "weight": 1 } }, { "key": "33732", "source": "494", "target": "2258", "attributes": { "weight": 1 } }, { "key": "7135", "source": "494", "target": "193", "attributes": { "weight": 2 } }, { "key": "12051", "source": "494", "target": "135", "attributes": { "weight": 4 } }, { "key": "27304", "source": "494", "target": "57", "attributes": { "weight": 1 } }, { "key": "35046", "source": "494", "target": "352", "attributes": { "weight": 1 } }, { "key": "11314", "source": "494", "target": "370", "attributes": { "weight": 2 } }, { "key": "32985", "source": "494", "target": "154", "attributes": { "weight": 1 } }, { "key": "11315", "source": "494", "target": "470", "attributes": { "weight": 2 } }, { "key": "24261", "source": "494", "target": "223", "attributes": { "weight": 3 } }, { "key": "10007", "source": "494", "target": "432", "attributes": { "weight": 2 } }, { "key": "24379", "source": "494", "target": "190", "attributes": { "weight": 2 } }, { "key": "33734", "source": "494", "target": "672", "attributes": { "weight": 1 } }, { "key": "1662", "source": "494", "target": "224", "attributes": { "weight": 1 } }, { "key": "27386", "source": "494", "target": "340", "attributes": { "weight": 1 } }, { "key": "29153", "source": "494", "target": "447", "attributes": { "weight": 1 } }, { "key": "14285", "source": "494", "target": "1046", "attributes": { "weight": 2 } }, { "key": "17543", "source": "494", "target": "189", "attributes": { "weight": 2 } }, { "key": "35345", "source": "494", "target": "437", "attributes": { "weight": 1 } }, { "key": "17524", "source": "494", "target": "358", "attributes": { "weight": 1 } }, { "key": "11316", "source": "494", "target": "580", "attributes": { "weight": 1 } }, { "key": "35349", "source": "494", "target": "2186", "attributes": { "weight": 1 } }, { "key": "1664", "source": "494", "target": "455", "attributes": { "weight": 1 } }, { "key": "1665", "source": "494", "target": "188", "attributes": { "weight": 2 } }, { "key": "12050", "source": "494", "target": "1363", "attributes": { "weight": 1 } }, { "key": "37467", "source": "494", "target": "435", "attributes": { "weight": 1 } }, { "key": "9129", "source": "494", "target": "442", "attributes": { "weight": 3 } }, { "key": "11318", "source": "494", "target": "595", "attributes": { "weight": 2 } }, { "key": "9130", "source": "494", "target": "1087", "attributes": { "weight": 2 } }, { "key": "27183", "source": "494", "target": "450", "attributes": { "weight": 1 } }, { "key": "10013", "source": "494", "target": "491", "attributes": { "weight": 2 } }, { "key": "35346", "source": "494", "target": "50", "attributes": { "weight": 1 } }, { "key": "24262", "source": "494", "target": "471", "attributes": { "weight": 1 } }, { "key": "24260", "source": "494", "target": "130", "attributes": { "weight": 2 } }, { "key": "32624", "source": "494", "target": "791", "attributes": { "weight": 1 } }, { "key": "11313", "source": "494", "target": "452", "attributes": { "weight": 1 } }, { "key": "1663", "source": "494", "target": "183", "attributes": { "weight": 3 } }, { "key": "27185", "source": "494", "target": "472", "attributes": { "weight": 4 } }, { "key": "35348", "source": "494", "target": "461", "attributes": { "weight": 1 } }, { "key": "35352", "source": "494", "target": "1771", "attributes": { "weight": 1 } }, { "key": "9132", "source": "494", "target": "233", "attributes": { "weight": 2 } }, { "key": "32855", "source": "494", "target": "1088", "attributes": { "weight": 2 } }, { "key": "12730", "source": "495", "target": "695", "attributes": { "weight": 2 } }, { "key": "29532", "source": "495", "target": "232", "attributes": { "weight": 2 } }, { "key": "12655", "source": "495", "target": "164", "attributes": { "weight": 3 } }, { "key": "23254", "source": "495", "target": "426", "attributes": { "weight": 2 } }, { "key": "29095", "source": "495", "target": "428", "attributes": { "weight": 1 } }, { "key": "31561", "source": "495", "target": "438", "attributes": { "weight": 1 } }, { "key": "29090", "source": "495", "target": "479", "attributes": { "weight": 1 } }, { "key": "26932", "source": "495", "target": "464", "attributes": { "weight": 2 } }, { "key": "29075", "source": "495", "target": "370", "attributes": { "weight": 2 } }, { "key": "26776", "source": "495", "target": "467", "attributes": { "weight": 2 } }, { "key": "7136", "source": "495", "target": "1353", "attributes": { "weight": 2 } }, { "key": "7138", "source": "495", "target": "889", "attributes": { "weight": 3 } }, { "key": "29104", "source": "495", "target": "500", "attributes": { "weight": 2 } }, { "key": "7161", "source": "495", "target": "476", "attributes": { "weight": 1 } }, { "key": "7139", "source": "495", "target": "59", "attributes": { "weight": 4 } }, { "key": "7140", "source": "495", "target": "130", "attributes": { "weight": 6 } }, { "key": "17321", "source": "495", "target": "449", "attributes": { "weight": 1 } }, { "key": "7172", "source": "495", "target": "1094", "attributes": { "weight": 2 } }, { "key": "7141", "source": "495", "target": "442", "attributes": { "weight": 4 } }, { "key": "29088", "source": "495", "target": "1026", "attributes": { "weight": 2 } }, { "key": "29094", "source": "495", "target": "486", "attributes": { "weight": 1 } }, { "key": "31817", "source": "495", "target": "595", "attributes": { "weight": 1 } }, { "key": "29103", "source": "495", "target": "1390", "attributes": { "weight": 1 } }, { "key": "23255", "source": "495", "target": "55", "attributes": { "weight": 1 } }, { "key": "9375", "source": "495", "target": "430", "attributes": { "weight": 1 } }, { "key": "29064", "source": "495", "target": "447", "attributes": { "weight": 2 } }, { "key": "7166", "source": "495", "target": "487", "attributes": { "weight": 3 } }, { "key": "29076", "source": "495", "target": "1024", "attributes": { "weight": 2 } }, { "key": "29073", "source": "495", "target": "1361", "attributes": { "weight": 1 } }, { "key": "29061", "source": "495", "target": "223", "attributes": { "weight": 2 } }, { "key": "13678", "source": "495", "target": "304", "attributes": { "weight": 2 } }, { "key": "37074", "source": "495", "target": "857", "attributes": { "weight": 1 } }, { "key": "7156", "source": "495", "target": "471", "attributes": { "weight": 3 } }, { "key": "24702", "source": "495", "target": "5", "attributes": { "weight": 2 } }, { "key": "7150", "source": "495", "target": "457", "attributes": { "weight": 2 } }, { "key": "27187", "source": "495", "target": "472", "attributes": { "weight": 1 } }, { "key": "29070", "source": "495", "target": "2287", "attributes": { "weight": 2 } }, { "key": "4057", "source": "495", "target": "432", "attributes": { "weight": 2 } }, { "key": "23256", "source": "495", "target": "340", "attributes": { "weight": 3 } }, { "key": "7137", "source": "495", "target": "429", "attributes": { "weight": 2 } }, { "key": "7144", "source": "495", "target": "674", "attributes": { "weight": 5 } }, { "key": "9541", "source": "495", "target": "419", "attributes": { "weight": 2 } }, { "key": "7165", "source": "495", "target": "483", "attributes": { "weight": 3 } }, { "key": "25901", "source": "495", "target": "220", "attributes": { "weight": 2 } }, { "key": "29102", "source": "495", "target": "352", "attributes": { "weight": 2 } }, { "key": "7415", "source": "495", "target": "1063", "attributes": { "weight": 3 } }, { "key": "18352", "source": "495", "target": "1092", "attributes": { "weight": 2 } }, { "key": "17525", "source": "495", "target": "358", "attributes": { "weight": 2 } }, { "key": "29067", "source": "495", "target": "2114", "attributes": { "weight": 1 } }, { "key": "29086", "source": "495", "target": "868", "attributes": { "weight": 2 } }, { "key": "29065", "source": "495", "target": "860", "attributes": { "weight": 1 } }, { "key": "26378", "source": "495", "target": "1258", "attributes": { "weight": 2 } }, { "key": "29096", "source": "495", "target": "488", "attributes": { "weight": 2 } }, { "key": "1670", "source": "495", "target": "193", "attributes": { "weight": 5 } }, { "key": "26933", "source": "495", "target": "497", "attributes": { "weight": 2 } }, { "key": "7167", "source": "495", "target": "192", "attributes": { "weight": 3 } }, { "key": "7160", "source": "495", "target": "474", "attributes": { "weight": 3 } }, { "key": "25659", "source": "495", "target": "1780", "attributes": { "weight": 2 } }, { "key": "29084", "source": "495", "target": "2647", "attributes": { "weight": 2 } }, { "key": "29087", "source": "495", "target": "123", "attributes": { "weight": 2 } }, { "key": "29077", "source": "495", "target": "1025", "attributes": { "weight": 1 } }, { "key": "29068", "source": "495", "target": "693", "attributes": { "weight": 3 } }, { "key": "7146", "source": "495", "target": "452", "attributes": { "weight": 5 } }, { "key": "7142", "source": "495", "target": "443", "attributes": { "weight": 2 } }, { "key": "7162", "source": "495", "target": "191", "attributes": { "weight": 4 } }, { "key": "29089", "source": "495", "target": "477", "attributes": { "weight": 1 } }, { "key": "29092", "source": "495", "target": "823", "attributes": { "weight": 1 } }, { "key": "14003", "source": "495", "target": "180", "attributes": { "weight": 1 } }, { "key": "11319", "source": "495", "target": "469", "attributes": { "weight": 1 } }, { "key": "33108", "source": "495", "target": "493", "attributes": { "weight": 1 } }, { "key": "29091", "source": "495", "target": "427", "attributes": { "weight": 1 } }, { "key": "4252", "source": "495", "target": "673", "attributes": { "weight": 2 } }, { "key": "29074", "source": "495", "target": "791", "attributes": { "weight": 3 } }, { "key": "29078", "source": "495", "target": "463", "attributes": { "weight": 1 } }, { "key": "7148", "source": "495", "target": "1357", "attributes": { "weight": 4 } }, { "key": "7157", "source": "495", "target": "1367", "attributes": { "weight": 4 } }, { "key": "30489", "source": "495", "target": "1046", "attributes": { "weight": 1 } }, { "key": "32096", "source": "495", "target": "3084", "attributes": { "weight": 1 } }, { "key": "29097", "source": "495", "target": "491", "attributes": { "weight": 1 } }, { "key": "29083", "source": "495", "target": "1365", "attributes": { "weight": 1 } }, { "key": "7159", "source": "495", "target": "473", "attributes": { "weight": 5 } }, { "key": "7149", "source": "495", "target": "454", "attributes": { "weight": 5 } }, { "key": "33735", "source": "495", "target": "135", "attributes": { "weight": 1 } }, { "key": "7171", "source": "495", "target": "57", "attributes": { "weight": 6 } }, { "key": "7168", "source": "495", "target": "56", "attributes": { "weight": 3 } }, { "key": "10015", "source": "495", "target": "445", "attributes": { "weight": 3 } }, { "key": "27306", "source": "495", "target": "52", "attributes": { "weight": 2 } }, { "key": "7155", "source": "495", "target": "54", "attributes": { "weight": 3 } }, { "key": "29085", "source": "495", "target": "190", "attributes": { "weight": 1 } }, { "key": "7145", "source": "495", "target": "183", "attributes": { "weight": 3 } }, { "key": "7151", "source": "495", "target": "460", "attributes": { "weight": 2 } }, { "key": "29063", "source": "495", "target": "1760", "attributes": { "weight": 2 } }, { "key": "29559", "source": "495", "target": "181", "attributes": { "weight": 1 } }, { "key": "23252", "source": "495", "target": "424", "attributes": { "weight": 4 } }, { "key": "29081", "source": "495", "target": "8", "attributes": { "weight": 3 } }, { "key": "28502", "source": "495", "target": "580", "attributes": { "weight": 2 } }, { "key": "6494", "source": "495", "target": "468", "attributes": { "weight": 4 } }, { "key": "9134", "source": "495", "target": "228", "attributes": { "weight": 2 } }, { "key": "29071", "source": "495", "target": "1232", "attributes": { "weight": 2 } }, { "key": "25396", "source": "495", "target": "433", "attributes": { "weight": 2 } }, { "key": "29099", "source": "495", "target": "1093", "attributes": { "weight": 1 } }, { "key": "7154", "source": "495", "target": "53", "attributes": { "weight": 3 } }, { "key": "23253", "source": "495", "target": "3", "attributes": { "weight": 5 } }, { "key": "29531", "source": "495", "target": "2211", "attributes": { "weight": 2 } }, { "key": "29093", "source": "495", "target": "2648", "attributes": { "weight": 2 } }, { "key": "7153", "source": "495", "target": "1066", "attributes": { "weight": 2 } }, { "key": "7164", "source": "495", "target": "1371", "attributes": { "weight": 2 } }, { "key": "29069", "source": "495", "target": "187", "attributes": { "weight": 1 } }, { "key": "29066", "source": "495", "target": "2831", "attributes": { "weight": 2 } }, { "key": "29098", "source": "495", "target": "1775", "attributes": { "weight": 2 } }, { "key": "29060", "source": "495", "target": "222", "attributes": { "weight": 1 } }, { "key": "1668", "source": "495", "target": "188", "attributes": { "weight": 4 } }, { "key": "7169", "source": "495", "target": "1375", "attributes": { "weight": 2 } }, { "key": "29082", "source": "495", "target": "470", "attributes": { "weight": 2 } }, { "key": "17058", "source": "495", "target": "70", "attributes": { "weight": 2 } }, { "key": "7170", "source": "495", "target": "1376", "attributes": { "weight": 2 } }, { "key": "1667", "source": "495", "target": "455", "attributes": { "weight": 3 } }, { "key": "7152", "source": "495", "target": "461", "attributes": { "weight": 3 } }, { "key": "1669", "source": "495", "target": "490", "attributes": { "weight": 3 } }, { "key": "29079", "source": "495", "target": "682", "attributes": { "weight": 1 } }, { "key": "27305", "source": "495", "target": "425", "attributes": { "weight": 2 } }, { "key": "25119", "source": "495", "target": "1547", "attributes": { "weight": 2 } }, { "key": "7163", "source": "495", "target": "231", "attributes": { "weight": 3 } }, { "key": "1666", "source": "495", "target": "224", "attributes": { "weight": 3 } }, { "key": "29080", "source": "495", "target": "2042", "attributes": { "weight": 1 } }, { "key": "23702", "source": "495", "target": "1312", "attributes": { "weight": 1 } }, { "key": "27893", "source": "495", "target": "339", "attributes": { "weight": 2 } }, { "key": "29062", "source": "495", "target": "440", "attributes": { "weight": 1 } }, { "key": "29100", "source": "495", "target": "2208", "attributes": { "weight": 1 } }, { "key": "29101", "source": "495", "target": "494", "attributes": { "weight": 1 } }, { "key": "7143", "source": "495", "target": "1070", "attributes": { "weight": 3 } }, { "key": "29072", "source": "495", "target": "1762", "attributes": { "weight": 2 } }, { "key": "7147", "source": "495", "target": "1116", "attributes": { "weight": 5 } }, { "key": "4058", "source": "495", "target": "458", "attributes": { "weight": 4 } }, { "key": "7158", "source": "495", "target": "189", "attributes": { "weight": 5 } }, { "key": "24559", "source": "495", "target": "790", "attributes": { "weight": 2 } }, { "key": "11402", "source": "495", "target": "1742", "attributes": { "weight": 2 } }, { "key": "12053", "source": "496", "target": "135", "attributes": { "weight": 4 } }, { "key": "10018", "source": "496", "target": "1093", "attributes": { "weight": 5 } }, { "key": "24382", "source": "496", "target": "190", "attributes": { "weight": 1 } }, { "key": "1673", "source": "496", "target": "193", "attributes": { "weight": 1 } }, { "key": "9138", "source": "496", "target": "442", "attributes": { "weight": 2 } }, { "key": "23707", "source": "496", "target": "220", "attributes": { "weight": 1 } }, { "key": "32857", "source": "496", "target": "472", "attributes": { "weight": 2 } }, { "key": "3637", "source": "496", "target": "1025", "attributes": { "weight": 2 } }, { "key": "24380", "source": "496", "target": "441", "attributes": { "weight": 1 } }, { "key": "11321", "source": "496", "target": "452", "attributes": { "weight": 1 } }, { "key": "17545", "source": "496", "target": "189", "attributes": { "weight": 2 } }, { "key": "17322", "source": "496", "target": "449", "attributes": { "weight": 1 } }, { "key": "24383", "source": "496", "target": "191", "attributes": { "weight": 1 } }, { "key": "17544", "source": "496", "target": "454", "attributes": { "weight": 2 } }, { "key": "24381", "source": "496", "target": "1358", "attributes": { "weight": 1 } }, { "key": "36180", "source": "496", "target": "1026", "attributes": { "weight": 1 } }, { "key": "10016", "source": "496", "target": "445", "attributes": { "weight": 3 } }, { "key": "35354", "source": "496", "target": "439", "attributes": { "weight": 1 } }, { "key": "1671", "source": "496", "target": "224", "attributes": { "weight": 1 } }, { "key": "30961", "source": "496", "target": "3", "attributes": { "weight": 1 } }, { "key": "24384", "source": "496", "target": "56", "attributes": { "weight": 1 } }, { "key": "10017", "source": "496", "target": "477", "attributes": { "weight": 3 } }, { "key": "1672", "source": "496", "target": "188", "attributes": { "weight": 1 } }, { "key": "26782", "source": "497", "target": "188", "attributes": { "weight": 2 } }, { "key": "26952", "source": "497", "target": "474", "attributes": { "weight": 1 } }, { "key": "13679", "source": "497", "target": "304", "attributes": { "weight": 2 } }, { "key": "26960", "source": "497", "target": "2096", "attributes": { "weight": 1 } }, { "key": "10944", "source": "497", "target": "457", "attributes": { "weight": 2 } }, { "key": "17063", "source": "497", "target": "70", "attributes": { "weight": 1 } }, { "key": "26935", "source": "497", "target": "59", "attributes": { "weight": 1 } }, { "key": "36184", "source": "497", "target": "1831", "attributes": { "weight": 1 } }, { "key": "36188", "source": "497", "target": "2287", "attributes": { "weight": 1 } }, { "key": "17061", "source": "497", "target": "429", "attributes": { "weight": 1 } }, { "key": "36186", "source": "497", "target": "1219", "attributes": { "weight": 1 } }, { "key": "26941", "source": "497", "target": "791", "attributes": { "weight": 2 } }, { "key": "26963", "source": "497", "target": "340", "attributes": { "weight": 3 } }, { "key": "36182", "source": "497", "target": "1023", "attributes": { "weight": 1 } }, { "key": "6499", "source": "497", "target": "468", "attributes": { "weight": 5 } }, { "key": "7422", "source": "497", "target": "674", "attributes": { "weight": 3 } }, { "key": "26965", "source": "497", "target": "1390", "attributes": { "weight": 1 } }, { "key": "1675", "source": "497", "target": "183", "attributes": { "weight": 3 } }, { "key": "11322", "source": "497", "target": "452", "attributes": { "weight": 2 } }, { "key": "17323", "source": "497", "target": "449", "attributes": { "weight": 1 } }, { "key": "7177", "source": "497", "target": "193", "attributes": { "weight": 1 } }, { "key": "11323", "source": "497", "target": "469", "attributes": { "weight": 1 } }, { "key": "26946", "source": "497", "target": "53", "attributes": { "weight": 1 } }, { "key": "26950", "source": "497", "target": "471", "attributes": { "weight": 1 } }, { "key": "26964", "source": "497", "target": "495", "attributes": { "weight": 2 } }, { "key": "26958", "source": "497", "target": "2270", "attributes": { "weight": 1 } }, { "key": "25487", "source": "497", "target": "488", "attributes": { "weight": 1 } }, { "key": "26966", "source": "497", "target": "498", "attributes": { "weight": 1 } }, { "key": "26945", "source": "497", "target": "465", "attributes": { "weight": 1 } }, { "key": "26959", "source": "497", "target": "595", "attributes": { "weight": 2 } }, { "key": "36191", "source": "497", "target": "2258", "attributes": { "weight": 1 } }, { "key": "1674", "source": "497", "target": "224", "attributes": { "weight": 1 } }, { "key": "36181", "source": "497", "target": "221", "attributes": { "weight": 1 } }, { "key": "26961", "source": "497", "target": "673", "attributes": { "weight": 1 } }, { "key": "36193", "source": "497", "target": "2262", "attributes": { "weight": 1 } }, { "key": "11404", "source": "497", "target": "1742", "attributes": { "weight": 2 } }, { "key": "36189", "source": "497", "target": "1137", "attributes": { "weight": 1 } }, { "key": "30490", "source": "497", "target": "1046", "attributes": { "weight": 1 } }, { "key": "26948", "source": "497", "target": "470", "attributes": { "weight": 2 } }, { "key": "17062", "source": "497", "target": "130", "attributes": { "weight": 5 } }, { "key": "4059", "source": "497", "target": "432", "attributes": { "weight": 2 } }, { "key": "36190", "source": "497", "target": "1836", "attributes": { "weight": 1 } }, { "key": "26937", "source": "497", "target": "440", "attributes": { "weight": 2 } }, { "key": "26955", "source": "497", "target": "1026", "attributes": { "weight": 2 } }, { "key": "9139", "source": "497", "target": "442", "attributes": { "weight": 2 } }, { "key": "26939", "source": "497", "target": "1360", "attributes": { "weight": 1 } }, { "key": "26951", "source": "497", "target": "473", "attributes": { "weight": 1 } }, { "key": "26949", "source": "497", "target": "2647", "attributes": { "weight": 1 } }, { "key": "26783", "source": "497", "target": "189", "attributes": { "weight": 2 } }, { "key": "26938", "source": "497", "target": "693", "attributes": { "weight": 1 } }, { "key": "26953", "source": "497", "target": "868", "attributes": { "weight": 1 } }, { "key": "7423", "source": "497", "target": "1063", "attributes": { "weight": 2 } }, { "key": "25397", "source": "497", "target": "433", "attributes": { "weight": 2 } }, { "key": "26947", "source": "497", "target": "8", "attributes": { "weight": 1 } }, { "key": "17981", "source": "497", "target": "454", "attributes": { "weight": 3 } }, { "key": "26936", "source": "497", "target": "223", "attributes": { "weight": 1 } }, { "key": "36183", "source": "497", "target": "2245", "attributes": { "weight": 1 } }, { "key": "26943", "source": "497", "target": "1024", "attributes": { "weight": 2 } }, { "key": "26957", "source": "497", "target": "479", "attributes": { "weight": 3 } }, { "key": "26944", "source": "497", "target": "464", "attributes": { "weight": 1 } }, { "key": "25486", "source": "497", "target": "447", "attributes": { "weight": 1 } }, { "key": "18353", "source": "497", "target": "1092", "attributes": { "weight": 2 } }, { "key": "25902", "source": "497", "target": "220", "attributes": { "weight": 2 } }, { "key": "25488", "source": "497", "target": "194", "attributes": { "weight": 1 } }, { "key": "26956", "source": "497", "target": "478", "attributes": { "weight": 1 } }, { "key": "12734", "source": "497", "target": "695", "attributes": { "weight": 2 } }, { "key": "36185", "source": "497", "target": "2248", "attributes": { "weight": 1 } }, { "key": "36192", "source": "497", "target": "1741", "attributes": { "weight": 1 } }, { "key": "36194", "source": "497", "target": "73", "attributes": { "weight": 1 } }, { "key": "26962", "source": "497", "target": "1750", "attributes": { "weight": 1 } }, { "key": "26940", "source": "497", "target": "52", "attributes": { "weight": 2 } }, { "key": "17526", "source": "497", "target": "358", "attributes": { "weight": 2 } }, { "key": "26967", "source": "497", "target": "57", "attributes": { "weight": 2 } }, { "key": "17064", "source": "497", "target": "1337", "attributes": { "weight": 1 } }, { "key": "26942", "source": "497", "target": "370", "attributes": { "weight": 1 } }, { "key": "36187", "source": "497", "target": "1998", "attributes": { "weight": 1 } }, { "key": "25120", "source": "497", "target": "1547", "attributes": { "weight": 2 } }, { "key": "26954", "source": "497", "target": "123", "attributes": { "weight": 1 } }, { "key": "25492", "source": "498", "target": "57", "attributes": { "weight": 1 } }, { "key": "21390", "source": "498", "target": "2244", "attributes": { "weight": 1 } }, { "key": "21387", "source": "498", "target": "222", "attributes": { "weight": 1 } }, { "key": "25490", "source": "498", "target": "442", "attributes": { "weight": 1 } }, { "key": "26784", "source": "498", "target": "454", "attributes": { "weight": 2 } }, { "key": "31388", "source": "498", "target": "674", "attributes": { "weight": 1 } }, { "key": "21385", "source": "498", "target": "1354", "attributes": { "weight": 1 } }, { "key": "21395", "source": "498", "target": "1367", "attributes": { "weight": 1 } }, { "key": "21396", "source": "498", "target": "2108", "attributes": { "weight": 1 } }, { "key": "25489", "source": "498", "target": "223", "attributes": { "weight": 1 } }, { "key": "21394", "source": "498", "target": "1836", "attributes": { "weight": 1 } }, { "key": "21391", "source": "498", "target": "449", "attributes": { "weight": 1 } }, { "key": "36197", "source": "498", "target": "2258", "attributes": { "weight": 1 } }, { "key": "36196", "source": "498", "target": "1831", "attributes": { "weight": 1 } }, { "key": "21388", "source": "498", "target": "51", "attributes": { "weight": 1 } }, { "key": "21393", "source": "498", "target": "2251", "attributes": { "weight": 1 } }, { "key": "21400", "source": "498", "target": "489", "attributes": { "weight": 1 } }, { "key": "36198", "source": "498", "target": "73", "attributes": { "weight": 1 } }, { "key": "1676", "source": "498", "target": "183", "attributes": { "weight": 1 } }, { "key": "21399", "source": "498", "target": "2111", "attributes": { "weight": 1 } }, { "key": "21401", "source": "498", "target": "2276", "attributes": { "weight": 1 } }, { "key": "26968", "source": "498", "target": "497", "attributes": { "weight": 1 } }, { "key": "21389", "source": "498", "target": "1070", "attributes": { "weight": 1 } }, { "key": "21398", "source": "498", "target": "2095", "attributes": { "weight": 1 } }, { "key": "21392", "source": "498", "target": "1832", "attributes": { "weight": 1 } }, { "key": "21384", "source": "498", "target": "429", "attributes": { "weight": 1 } }, { "key": "25491", "source": "498", "target": "1360", "attributes": { "weight": 1 } }, { "key": "21386", "source": "498", "target": "221", "attributes": { "weight": 1 } }, { "key": "26785", "source": "498", "target": "189", "attributes": { "weight": 2 } }, { "key": "21397", "source": "498", "target": "2267", "attributes": { "weight": 1 } }, { "key": "36195", "source": "498", "target": "1023", "attributes": { "weight": 1 } }, { "key": "15406", "source": "499", "target": "672", "attributes": { "weight": 1 } }, { "key": "26380", "source": "499", "target": "1258", "attributes": { "weight": 1 } }, { "key": "15403", "source": "499", "target": "188", "attributes": { "weight": 2 } }, { "key": "15405", "source": "499", "target": "490", "attributes": { "weight": 2 } }, { "key": "21405", "source": "499", "target": "2253", "attributes": { "weight": 1 } }, { "key": "1677", "source": "499", "target": "224", "attributes": { "weight": 1 } }, { "key": "15401", "source": "499", "target": "183", "attributes": { "weight": 2 } }, { "key": "24272", "source": "499", "target": "471", "attributes": { "weight": 1 } }, { "key": "15402", "source": "499", "target": "454", "attributes": { "weight": 2 } }, { "key": "21404", "source": "499", "target": "130", "attributes": { "weight": 3 } }, { "key": "26379", "source": "499", "target": "429", "attributes": { "weight": 1 } }, { "key": "15404", "source": "499", "target": "189", "attributes": { "weight": 2 } }, { "key": "21406", "source": "499", "target": "489", "attributes": { "weight": 1 } }, { "key": "7178", "source": "499", "target": "231", "attributes": { "weight": 1 } }, { "key": "37030", "source": "499", "target": "455", "attributes": { "weight": 1 } }, { "key": "29161", "source": "500", "target": "791", "attributes": { "weight": 2 } }, { "key": "29166", "source": "500", "target": "428", "attributes": { "weight": 1 } }, { "key": "31826", "source": "500", "target": "595", "attributes": { "weight": 1 } }, { "key": "29162", "source": "500", "target": "2263", "attributes": { "weight": 1 } }, { "key": "17065", "source": "500", "target": "674", "attributes": { "weight": 3 } }, { "key": "9144", "source": "500", "target": "442", "attributes": { "weight": 2 } }, { "key": "29164", "source": "500", "target": "484", "attributes": { "weight": 1 } }, { "key": "24273", "source": "500", "target": "130", "attributes": { "weight": 3 } }, { "key": "1683", "source": "500", "target": "490", "attributes": { "weight": 1 } }, { "key": "29167", "source": "500", "target": "488", "attributes": { "weight": 1 } }, { "key": "29107", "source": "500", "target": "495", "attributes": { "weight": 2 } }, { "key": "29157", "source": "500", "target": "222", "attributes": { "weight": 2 } }, { "key": "26788", "source": "500", "target": "454", "attributes": { "weight": 2 } }, { "key": "29165", "source": "500", "target": "486", "attributes": { "weight": 1 } }, { "key": "27308", "source": "500", "target": "57", "attributes": { "weight": 2 } }, { "key": "26790", "source": "500", "target": "193", "attributes": { "weight": 2 } }, { "key": "33737", "source": "500", "target": "135", "attributes": { "weight": 1 } }, { "key": "29156", "source": "500", "target": "220", "attributes": { "weight": 1 } }, { "key": "29160", "source": "500", "target": "447", "attributes": { "weight": 1 } }, { "key": "29158", "source": "500", "target": "223", "attributes": { "weight": 2 } }, { "key": "29159", "source": "500", "target": "2832", "attributes": { "weight": 1 } }, { "key": "29163", "source": "500", "target": "427", "attributes": { "weight": 1 } }, { "key": "29168", "source": "500", "target": "194", "attributes": { "weight": 1 } }, { "key": "30492", "source": "500", "target": "440", "attributes": { "weight": 1 } }, { "key": "6556", "source": "500", "target": "468", "attributes": { "weight": 3 } }, { "key": "26789", "source": "500", "target": "189", "attributes": { "weight": 2 } }, { "key": "1682", "source": "500", "target": "224", "attributes": { "weight": 1 } }, { "key": "3134", "source": "501", "target": "502", "attributes": { "weight": 1 } }, { "key": "1686", "source": "501", "target": "506", "attributes": { "weight": 2 } }, { "key": "3137", "source": "502", "target": "506", "attributes": { "weight": 1 } }, { "key": "1687", "source": "502", "target": "501", "attributes": { "weight": 2 } }, { "key": "3136", "source": "502", "target": "895", "attributes": { "weight": 1 } }, { "key": "1689", "source": "503", "target": "508", "attributes": { "weight": 1 } }, { "key": "1690", "source": "504", "target": "506", "attributes": { "weight": 1 } }, { "key": "1691", "source": "504", "target": "507", "attributes": { "weight": 1 } }, { "key": "1701", "source": "506", "target": "514", "attributes": { "weight": 1 } }, { "key": "1697", "source": "506", "target": "509", "attributes": { "weight": 1 } }, { "key": "1693", "source": "506", "target": "502", "attributes": { "weight": 2 } }, { "key": "2522", "source": "506", "target": "756", "attributes": { "weight": 2 } }, { "key": "1696", "source": "506", "target": "507", "attributes": { "weight": 3 } }, { "key": "10198", "source": "506", "target": "1322", "attributes": { "weight": 1 } }, { "key": "2520", "source": "506", "target": "726", "attributes": { "weight": 2 } }, { "key": "1694", "source": "506", "target": "503", "attributes": { "weight": 1 } }, { "key": "1695", "source": "506", "target": "504", "attributes": { "weight": 1 } }, { "key": "3141", "source": "506", "target": "899", "attributes": { "weight": 1 } }, { "key": "3138", "source": "506", "target": "895", "attributes": { "weight": 1 } }, { "key": "2519", "source": "506", "target": "711", "attributes": { "weight": 2 } }, { "key": "3139", "source": "506", "target": "501", "attributes": { "weight": 1 } }, { "key": "2521", "source": "506", "target": "753", "attributes": { "weight": 2 } }, { "key": "3142", "source": "507", "target": "900", "attributes": { "weight": 1 } }, { "key": "1703", "source": "507", "target": "506", "attributes": { "weight": 3 } }, { "key": "1702", "source": "507", "target": "504", "attributes": { "weight": 1 } }, { "key": "2523", "source": "507", "target": "718", "attributes": { "weight": 1 } }, { "key": "1704", "source": "508", "target": "506", "attributes": { "weight": 1 } }, { "key": "1711", "source": "514", "target": "506", "attributes": { "weight": 1 } }, { "key": "2493", "source": "517", "target": "524", "attributes": { "weight": 1 } }, { "key": "2490", "source": "517", "target": "731", "attributes": { "weight": 1 } }, { "key": "2498", "source": "517", "target": "770", "attributes": { "weight": 1 } }, { "key": "1716", "source": "517", "target": "519", "attributes": { "weight": 2 } }, { "key": "1722", "source": "517", "target": "529", "attributes": { "weight": 2 } }, { "key": "23097", "source": "517", "target": "724", "attributes": { "weight": 1 } }, { "key": "1720", "source": "517", "target": "527", "attributes": { "weight": 2 } }, { "key": "2494", "source": "517", "target": "525", "attributes": { "weight": 1 } }, { "key": "1721", "source": "517", "target": "528", "attributes": { "weight": 2 } }, { "key": "2489", "source": "517", "target": "518", "attributes": { "weight": 1 } }, { "key": "2488", "source": "517", "target": "711", "attributes": { "weight": 2 } }, { "key": "2492", "source": "517", "target": "737", "attributes": { "weight": 1 } }, { "key": "2491", "source": "517", "target": "521", "attributes": { "weight": 1 } }, { "key": "1719", "source": "517", "target": "526", "attributes": { "weight": 2 } }, { "key": "1718", "source": "517", "target": "523", "attributes": { "weight": 1 } }, { "key": "1723", "source": "517", "target": "537", "attributes": { "weight": 1 } }, { "key": "2495", "source": "517", "target": "531", "attributes": { "weight": 1 } }, { "key": "1725", "source": "518", "target": "517", "attributes": { "weight": 2 } }, { "key": "2511", "source": "518", "target": "523", "attributes": { "weight": 1 } }, { "key": "1727", "source": "519", "target": "526", "attributes": { "weight": 2 } }, { "key": "1726", "source": "519", "target": "517", "attributes": { "weight": 1 } }, { "key": "2549", "source": "521", "target": "517", "attributes": { "weight": 1 } }, { "key": "1729", "source": "521", "target": "525", "attributes": { "weight": 2 } }, { "key": "2557", "source": "523", "target": "517", "attributes": { "weight": 1 } }, { "key": "1731", "source": "523", "target": "518", "attributes": { "weight": 2 } }, { "key": "2565", "source": "525", "target": "521", "attributes": { "weight": 1 } }, { "key": "2566", "source": "525", "target": "523", "attributes": { "weight": 1 } }, { "key": "1733", "source": "525", "target": "517", "attributes": { "weight": 2 } }, { "key": "1734", "source": "526", "target": "517", "attributes": { "weight": 2 } }, { "key": "1735", "source": "526", "target": "519", "attributes": { "weight": 1 } }, { "key": "2567", "source": "526", "target": "768", "attributes": { "weight": 1 } }, { "key": "2568", "source": "527", "target": "517", "attributes": { "weight": 1 } }, { "key": "2570", "source": "528", "target": "755", "attributes": { "weight": 1 } }, { "key": "1738", "source": "529", "target": "531", "attributes": { "weight": 2 } }, { "key": "2594", "source": "531", "target": "744", "attributes": { "weight": 1 } }, { "key": "1741", "source": "532", "target": "517", "attributes": { "weight": 1 } }, { "key": "1743", "source": "534", "target": "517", "attributes": { "weight": 1 } }, { "key": "1746", "source": "537", "target": "532", "attributes": { "weight": 1 } }, { "key": "2743", "source": "540", "target": "804", "attributes": { "weight": 1 } }, { "key": "1749", "source": "540", "target": "407", "attributes": { "weight": 1 } }, { "key": "1750", "source": "541", "target": "407", "attributes": { "weight": 3 } }, { "key": "1751", "source": "542", "target": "553", "attributes": { "weight": 2 } }, { "key": "26970", "source": "542", "target": "407", "attributes": { "weight": 1 } }, { "key": "1752", "source": "543", "target": "547", "attributes": { "weight": 1 } }, { "key": "26971", "source": "543", "target": "407", "attributes": { "weight": 2 } }, { "key": "14046", "source": "544", "target": "1031", "attributes": { "weight": 1 } }, { "key": "1754", "source": "544", "target": "549", "attributes": { "weight": 1 } }, { "key": "11613", "source": "544", "target": "370", "attributes": { "weight": 2 } }, { "key": "15961", "source": "544", "target": "338", "attributes": { "weight": 1 } }, { "key": "10708", "source": "544", "target": "1314", "attributes": { "weight": 1 } }, { "key": "1753", "source": "544", "target": "407", "attributes": { "weight": 4 } }, { "key": "18242", "source": "544", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5481", "source": "544", "target": "371", "attributes": { "weight": 2 } }, { "key": "5479", "source": "544", "target": "779", "attributes": { "weight": 2 } }, { "key": "5480", "source": "544", "target": "368", "attributes": { "weight": 2 } }, { "key": "34503", "source": "544", "target": "1233", "attributes": { "weight": 1 } }, { "key": "7338", "source": "544", "target": "1063", "attributes": { "weight": 2 } }, { "key": "34502", "source": "544", "target": "1047", "attributes": { "weight": 1 } }, { "key": "8838", "source": "544", "target": "195", "attributes": { "weight": 2 } }, { "key": "34534", "source": "545", "target": "1233", "attributes": { "weight": 1 } }, { "key": "28585", "source": "545", "target": "199", "attributes": { "weight": 1 } }, { "key": "26972", "source": "545", "target": "1314", "attributes": { "weight": 2 } }, { "key": "14055", "source": "545", "target": "1031", "attributes": { "weight": 2 } }, { "key": "16018", "source": "545", "target": "195", "attributes": { "weight": 1 } }, { "key": "1756", "source": "545", "target": "407", "attributes": { "weight": 4 } }, { "key": "14054", "source": "545", "target": "391", "attributes": { "weight": 1 } }, { "key": "5563", "source": "545", "target": "371", "attributes": { "weight": 3 } }, { "key": "1757", "source": "546", "target": "550", "attributes": { "weight": 1 } }, { "key": "1758", "source": "547", "target": "407", "attributes": { "weight": 3 } }, { "key": "26973", "source": "547", "target": "543", "attributes": { "weight": 1 } }, { "key": "1759", "source": "548", "target": "407", "attributes": { "weight": 3 } }, { "key": "1771", "source": "549", "target": "544", "attributes": { "weight": 1 } }, { "key": "1772", "source": "550", "target": "407", "attributes": { "weight": 3 } }, { "key": "1775", "source": "552", "target": "407", "attributes": { "weight": 1 } }, { "key": "1776", "source": "553", "target": "548", "attributes": { "weight": 1 } }, { "key": "1777", "source": "553", "target": "407", "attributes": { "weight": 3 } }, { "key": "1779", "source": "554", "target": "35", "attributes": { "weight": 4 } }, { "key": "1780", "source": "555", "target": "559", "attributes": { "weight": 1 } }, { "key": "1781", "source": "555", "target": "163", "attributes": { "weight": 2 } }, { "key": "21579", "source": "556", "target": "358", "attributes": { "weight": 1 } }, { "key": "33840", "source": "556", "target": "1133", "attributes": { "weight": 2 } }, { "key": "36225", "source": "556", "target": "1386", "attributes": { "weight": 1 } }, { "key": "31109", "source": "556", "target": "1765", "attributes": { "weight": 2 } }, { "key": "1782", "source": "556", "target": "163", "attributes": { "weight": 2 } }, { "key": "27869", "source": "556", "target": "339", "attributes": { "weight": 2 } }, { "key": "17905", "source": "556", "target": "1380", "attributes": { "weight": 2 } }, { "key": "1784", "source": "557", "target": "163", "attributes": { "weight": 2 } }, { "key": "1783", "source": "557", "target": "555", "attributes": { "weight": 1 } }, { "key": "18087", "source": "558", "target": "1787", "attributes": { "weight": 1 } }, { "key": "1785", "source": "558", "target": "561", "attributes": { "weight": 3 } }, { "key": "1786", "source": "559", "target": "555", "attributes": { "weight": 1 } }, { "key": "11410", "source": "560", "target": "1538", "attributes": { "weight": 1 } }, { "key": "36240", "source": "560", "target": "358", "attributes": { "weight": 1 } }, { "key": "15334", "source": "560", "target": "454", "attributes": { "weight": 1 } }, { "key": "1787", "source": "560", "target": "163", "attributes": { "weight": 3 } }, { "key": "17941", "source": "560", "target": "1380", "attributes": { "weight": 2 } }, { "key": "17942", "source": "560", "target": "1541", "attributes": { "weight": 2 } }, { "key": "1788", "source": "560", "target": "562", "attributes": { "weight": 2 } }, { "key": "32563", "source": "560", "target": "791", "attributes": { "weight": 1 } }, { "key": "36241", "source": "560", "target": "1386", "attributes": { "weight": 1 } }, { "key": "11413", "source": "561", "target": "1787", "attributes": { "weight": 2 } }, { "key": "1790", "source": "561", "target": "163", "attributes": { "weight": 2 } }, { "key": "1789", "source": "561", "target": "558", "attributes": { "weight": 1 } }, { "key": "17983", "source": "562", "target": "1380", "attributes": { "weight": 1 } }, { "key": "26098", "source": "562", "target": "163", "attributes": { "weight": 2 } }, { "key": "17984", "source": "562", "target": "1541", "attributes": { "weight": 2 } }, { "key": "26097", "source": "562", "target": "1527", "attributes": { "weight": 3 } }, { "key": "15408", "source": "562", "target": "454", "attributes": { "weight": 1 } }, { "key": "1797", "source": "562", "target": "560", "attributes": { "weight": 1 } }, { "key": "24832", "source": "562", "target": "638", "attributes": { "weight": 1 } }, { "key": "1798", "source": "563", "target": "566", "attributes": { "weight": 1 } }, { "key": "1801", "source": "563", "target": "93", "attributes": { "weight": 3 } }, { "key": "1800", "source": "563", "target": "573", "attributes": { "weight": 1 } }, { "key": "1799", "source": "563", "target": "86", "attributes": { "weight": 1 } }, { "key": "9557", "source": "564", "target": "171", "attributes": { "weight": 3 } }, { "key": "27574", "source": "564", "target": "2701", "attributes": { "weight": 1 } }, { "key": "9551", "source": "564", "target": "567", "attributes": { "weight": 1 } }, { "key": "27577", "source": "564", "target": "173", "attributes": { "weight": 1 } }, { "key": "9558", "source": "564", "target": "1629", "attributes": { "weight": 2 } }, { "key": "27578", "source": "564", "target": "96", "attributes": { "weight": 1 } }, { "key": "30548", "source": "564", "target": "572", "attributes": { "weight": 1 } }, { "key": "9564", "source": "564", "target": "1639", "attributes": { "weight": 2 } }, { "key": "3158", "source": "564", "target": "305", "attributes": { "weight": 2 } }, { "key": "9561", "source": "564", "target": "178", "attributes": { "weight": 4 } }, { "key": "9559", "source": "564", "target": "172", "attributes": { "weight": 1 } }, { "key": "27579", "source": "564", "target": "1633", "attributes": { "weight": 1 } }, { "key": "9560", "source": "564", "target": "1634", "attributes": { "weight": 2 } }, { "key": "9553", "source": "564", "target": "168", "attributes": { "weight": 5 } }, { "key": "27571", "source": "564", "target": "1620", "attributes": { "weight": 1 } }, { "key": "25664", "source": "564", "target": "278", "attributes": { "weight": 4 } }, { "key": "27575", "source": "564", "target": "2705", "attributes": { "weight": 1 } }, { "key": "27576", "source": "564", "target": "1844", "attributes": { "weight": 1 } }, { "key": "27572", "source": "564", "target": "2699", "attributes": { "weight": 1 } }, { "key": "9563", "source": "564", "target": "180", "attributes": { "weight": 2 } }, { "key": "9562", "source": "564", "target": "312", "attributes": { "weight": 2 } }, { "key": "9556", "source": "564", "target": "1626", "attributes": { "weight": 2 } }, { "key": "9550", "source": "564", "target": "259", "attributes": { "weight": 1 } }, { "key": "9554", "source": "564", "target": "1623", "attributes": { "weight": 1 } }, { "key": "9552", "source": "564", "target": "167", "attributes": { "weight": 1 } }, { "key": "24913", "source": "564", "target": "580", "attributes": { "weight": 2 } }, { "key": "9555", "source": "564", "target": "1625", "attributes": { "weight": 1 } }, { "key": "1802", "source": "564", "target": "93", "attributes": { "weight": 2 } }, { "key": "12360", "source": "564", "target": "565", "attributes": { "weight": 2 } }, { "key": "27573", "source": "564", "target": "1627", "attributes": { "weight": 1 } }, { "key": "12371", "source": "565", "target": "178", "attributes": { "weight": 2 } }, { "key": "12370", "source": "565", "target": "305", "attributes": { "weight": 1 } }, { "key": "12369", "source": "565", "target": "1844", "attributes": { "weight": 2 } }, { "key": "12368", "source": "565", "target": "297", "attributes": { "weight": 1 } }, { "key": "1804", "source": "565", "target": "93", "attributes": { "weight": 2 } }, { "key": "12365", "source": "565", "target": "89", "attributes": { "weight": 1 } }, { "key": "9569", "source": "565", "target": "171", "attributes": { "weight": 3 } }, { "key": "12363", "source": "565", "target": "164", "attributes": { "weight": 2 } }, { "key": "12362", "source": "565", "target": "564", "attributes": { "weight": 2 } }, { "key": "12366", "source": "565", "target": "168", "attributes": { "weight": 2 } }, { "key": "12364", "source": "565", "target": "567", "attributes": { "weight": 2 } }, { "key": "12367", "source": "565", "target": "359", "attributes": { "weight": 1 } }, { "key": "12372", "source": "565", "target": "1637", "attributes": { "weight": 2 } }, { "key": "29942", "source": "566", "target": "1952", "attributes": { "weight": 1 } }, { "key": "1819", "source": "566", "target": "576", "attributes": { "weight": 1 } }, { "key": "1814", "source": "566", "target": "573", "attributes": { "weight": 3 } }, { "key": "1828", "source": "566", "target": "178", "attributes": { "weight": 4 } }, { "key": "1808", "source": "566", "target": "84", "attributes": { "weight": 1 } }, { "key": "1822", "source": "566", "target": "93", "attributes": { "weight": 5 } }, { "key": "1824", "source": "566", "target": "95", "attributes": { "weight": 1 } }, { "key": "1816", "source": "566", "target": "168", "attributes": { "weight": 3 } }, { "key": "29799", "source": "566", "target": "580", "attributes": { "weight": 1 } }, { "key": "1820", "source": "566", "target": "91", "attributes": { "weight": 1 } }, { "key": "1821", "source": "566", "target": "92", "attributes": { "weight": 1 } }, { "key": "1811", "source": "566", "target": "569", "attributes": { "weight": 1 } }, { "key": "37399", "source": "566", "target": "171", "attributes": { "weight": 1 } }, { "key": "1812", "source": "566", "target": "88", "attributes": { "weight": 1 } }, { "key": "1813", "source": "566", "target": "571", "attributes": { "weight": 1 } }, { "key": "1831", "source": "566", "target": "586", "attributes": { "weight": 1 } }, { "key": "1830", "source": "566", "target": "584", "attributes": { "weight": 1 } }, { "key": "1807", "source": "566", "target": "563", "attributes": { "weight": 1 } }, { "key": "1832", "source": "566", "target": "100", "attributes": { "weight": 1 } }, { "key": "1817", "source": "566", "target": "575", "attributes": { "weight": 1 } }, { "key": "1826", "source": "566", "target": "96", "attributes": { "weight": 1 } }, { "key": "1827", "source": "566", "target": "582", "attributes": { "weight": 4 } }, { "key": "1809", "source": "566", "target": "568", "attributes": { "weight": 1 } }, { "key": "1825", "source": "566", "target": "581", "attributes": { "weight": 1 } }, { "key": "1815", "source": "566", "target": "90", "attributes": { "weight": 1 } }, { "key": "1818", "source": "566", "target": "278", "attributes": { "weight": 7 } }, { "key": "1823", "source": "566", "target": "94", "attributes": { "weight": 1 } }, { "key": "1829", "source": "566", "target": "98", "attributes": { "weight": 1 } }, { "key": "1810", "source": "566", "target": "86", "attributes": { "weight": 1 } }, { "key": "22414", "source": "567", "target": "572", "attributes": { "weight": 7 } }, { "key": "31852", "source": "567", "target": "2115", "attributes": { "weight": 1 } }, { "key": "1833", "source": "567", "target": "93", "attributes": { "weight": 3 } }, { "key": "14432", "source": "567", "target": "272", "attributes": { "weight": 2 } }, { "key": "30552", "source": "567", "target": "172", "attributes": { "weight": 1 } }, { "key": "13931", "source": "567", "target": "168", "attributes": { "weight": 4 } }, { "key": "22406", "source": "567", "target": "2316", "attributes": { "weight": 4 } }, { "key": "8650", "source": "567", "target": "171", "attributes": { "weight": 10 } }, { "key": "30551", "source": "567", "target": "1623", "attributes": { "weight": 1 } }, { "key": "22418", "source": "567", "target": "1624", "attributes": { "weight": 5 } }, { "key": "35461", "source": "567", "target": "177", "attributes": { "weight": 1 } }, { "key": "22440", "source": "567", "target": "2339", "attributes": { "weight": 3 } }, { "key": "30550", "source": "567", "target": "169", "attributes": { "weight": 1 } }, { "key": "22422", "source": "567", "target": "297", "attributes": { "weight": 1 } }, { "key": "22424", "source": "567", "target": "580", "attributes": { "weight": 3 } }, { "key": "22413", "source": "567", "target": "2322", "attributes": { "weight": 3 } }, { "key": "22435", "source": "567", "target": "1635", "attributes": { "weight": 3 } }, { "key": "22439", "source": "567", "target": "2338", "attributes": { "weight": 3 } }, { "key": "25267", "source": "567", "target": "2342", "attributes": { "weight": 1 } }, { "key": "22432", "source": "567", "target": "2335", "attributes": { "weight": 3 } }, { "key": "30549", "source": "567", "target": "1621", "attributes": { "weight": 1 } }, { "key": "22431", "source": "567", "target": "2334", "attributes": { "weight": 2 } }, { "key": "22436", "source": "567", "target": "1636", "attributes": { "weight": 3 } }, { "key": "22409", "source": "567", "target": "1618", "attributes": { "weight": 5 } }, { "key": "22416", "source": "567", "target": "278", "attributes": { "weight": 3 } }, { "key": "22428", "source": "567", "target": "1631", "attributes": { "weight": 6 } }, { "key": "11035", "source": "567", "target": "1036", "attributes": { "weight": 3 } }, { "key": "9573", "source": "567", "target": "564", "attributes": { "weight": 1 } }, { "key": "24387", "source": "567", "target": "2496", "attributes": { "weight": 1 } }, { "key": "22433", "source": "567", "target": "305", "attributes": { "weight": 2 } }, { "key": "22426", "source": "567", "target": "304", "attributes": { "weight": 1 } }, { "key": "22405", "source": "567", "target": "2315", "attributes": { "weight": 3 } }, { "key": "22417", "source": "567", "target": "359", "attributes": { "weight": 4 } }, { "key": "22411", "source": "567", "target": "1619", "attributes": { "weight": 2 } }, { "key": "22412", "source": "567", "target": "2321", "attributes": { "weight": 4 } }, { "key": "27843", "source": "567", "target": "339", "attributes": { "weight": 1 } }, { "key": "22437", "source": "567", "target": "1637", "attributes": { "weight": 6 } }, { "key": "12569", "source": "567", "target": "180", "attributes": { "weight": 3 } }, { "key": "12373", "source": "567", "target": "565", "attributes": { "weight": 2 } }, { "key": "14431", "source": "567", "target": "259", "attributes": { "weight": 2 } }, { "key": "22441", "source": "567", "target": "2341", "attributes": { "weight": 3 } }, { "key": "22427", "source": "567", "target": "2332", "attributes": { "weight": 4 } }, { "key": "22415", "source": "567", "target": "707", "attributes": { "weight": 2 } }, { "key": "22438", "source": "567", "target": "310", "attributes": { "weight": 3 } }, { "key": "12934", "source": "567", "target": "327", "attributes": { "weight": 3 } }, { "key": "22442", "source": "567", "target": "2343", "attributes": { "weight": 2 } }, { "key": "22421", "source": "567", "target": "2328", "attributes": { "weight": 3 } }, { "key": "22419", "source": "567", "target": "170", "attributes": { "weight": 2 } }, { "key": "18054", "source": "567", "target": "173", "attributes": { "weight": 2 } }, { "key": "27705", "source": "567", "target": "1042", "attributes": { "weight": 2 } }, { "key": "25266", "source": "567", "target": "2325", "attributes": { "weight": 1 } }, { "key": "22410", "source": "567", "target": "2281", "attributes": { "weight": 4 } }, { "key": "22429", "source": "567", "target": "2333", "attributes": { "weight": 2 } }, { "key": "22408", "source": "567", "target": "2319", "attributes": { "weight": 4 } }, { "key": "22443", "source": "567", "target": "1640", "attributes": { "weight": 4 } }, { "key": "31853", "source": "567", "target": "1060", "attributes": { "weight": 1 } }, { "key": "22423", "source": "567", "target": "2331", "attributes": { "weight": 2 } }, { "key": "22407", "source": "567", "target": "164", "attributes": { "weight": 3 } }, { "key": "22420", "source": "567", "target": "1628", "attributes": { "weight": 2 } }, { "key": "22430", "source": "567", "target": "1632", "attributes": { "weight": 4 } }, { "key": "22434", "source": "567", "target": "178", "attributes": { "weight": 10 } }, { "key": "17347", "source": "567", "target": "358", "attributes": { "weight": 2 } }, { "key": "22425", "source": "567", "target": "1630", "attributes": { "weight": 4 } }, { "key": "30350", "source": "567", "target": "1046", "attributes": { "weight": 1 } }, { "key": "1834", "source": "568", "target": "566", "attributes": { "weight": 1 } }, { "key": "15412", "source": "569", "target": "91", "attributes": { "weight": 1 } }, { "key": "15411", "source": "569", "target": "164", "attributes": { "weight": 1 } }, { "key": "1841", "source": "569", "target": "578", "attributes": { "weight": 1 } }, { "key": "1840", "source": "569", "target": "168", "attributes": { "weight": 3 } }, { "key": "1842", "source": "569", "target": "178", "attributes": { "weight": 3 } }, { "key": "1839", "source": "569", "target": "566", "attributes": { "weight": 1 } }, { "key": "26839", "source": "569", "target": "278", "attributes": { "weight": 2 } }, { "key": "30356", "source": "569", "target": "1046", "attributes": { "weight": 1 } }, { "key": "1843", "source": "570", "target": "93", "attributes": { "weight": 1 } }, { "key": "1846", "source": "571", "target": "573", "attributes": { "weight": 1 } }, { "key": "1845", "source": "571", "target": "566", "attributes": { "weight": 1 } }, { "key": "1847", "source": "571", "target": "93", "attributes": { "weight": 2 } }, { "key": "25273", "source": "572", "target": "2578", "attributes": { "weight": 1 } }, { "key": "22461", "source": "572", "target": "1628", "attributes": { "weight": 2 } }, { "key": "14538", "source": "572", "target": "259", "attributes": { "weight": 1 } }, { "key": "22459", "source": "572", "target": "2326", "attributes": { "weight": 2 } }, { "key": "22462", "source": "572", "target": "297", "attributes": { "weight": 3 } }, { "key": "22465", "source": "572", "target": "1632", "attributes": { "weight": 1 } }, { "key": "29946", "source": "572", "target": "1952", "attributes": { "weight": 1 } }, { "key": "14196", "source": "572", "target": "168", "attributes": { "weight": 5 } }, { "key": "22463", "source": "572", "target": "580", "attributes": { "weight": 2 } }, { "key": "22464", "source": "572", "target": "173", "attributes": { "weight": 5 } }, { "key": "22452", "source": "572", "target": "2320", "attributes": { "weight": 2 } }, { "key": "22455", "source": "572", "target": "707", "attributes": { "weight": 2 } }, { "key": "14539", "source": "572", "target": "312", "attributes": { "weight": 1 } }, { "key": "22467", "source": "572", "target": "1636", "attributes": { "weight": 2 } }, { "key": "22469", "source": "572", "target": "310", "attributes": { "weight": 3 } }, { "key": "22457", "source": "572", "target": "1624", "attributes": { "weight": 3 } }, { "key": "25272", "source": "572", "target": "2572", "attributes": { "weight": 1 } }, { "key": "18383", "source": "572", "target": "1621", "attributes": { "weight": 1 } }, { "key": "12573", "source": "572", "target": "180", "attributes": { "weight": 3 } }, { "key": "22466", "source": "572", "target": "178", "attributes": { "weight": 10 } }, { "key": "25157", "source": "572", "target": "165", "attributes": { "weight": 2 } }, { "key": "25156", "source": "572", "target": "1143", "attributes": { "weight": 2 } }, { "key": "22454", "source": "572", "target": "567", "attributes": { "weight": 7 } }, { "key": "25270", "source": "572", "target": "2281", "attributes": { "weight": 1 } }, { "key": "27943", "source": "572", "target": "305", "attributes": { "weight": 1 } }, { "key": "30555", "source": "572", "target": "564", "attributes": { "weight": 1 } }, { "key": "22468", "source": "572", "target": "1637", "attributes": { "weight": 4 } }, { "key": "22451", "source": "572", "target": "1617", "attributes": { "weight": 4 } }, { "key": "22472", "source": "572", "target": "1640", "attributes": { "weight": 3 } }, { "key": "9577", "source": "572", "target": "171", "attributes": { "weight": 4 } }, { "key": "35372", "source": "572", "target": "2974", "attributes": { "weight": 1 } }, { "key": "22470", "source": "572", "target": "2337", "attributes": { "weight": 1 } }, { "key": "22458", "source": "572", "target": "170", "attributes": { "weight": 2 } }, { "key": "31202", "source": "572", "target": "2710", "attributes": { "weight": 1 } }, { "key": "32267", "source": "572", "target": "164", "attributes": { "weight": 1 } }, { "key": "22453", "source": "572", "target": "1166", "attributes": { "weight": 3 } }, { "key": "25271", "source": "572", "target": "2331", "attributes": { "weight": 1 } }, { "key": "22460", "source": "572", "target": "2327", "attributes": { "weight": 2 } }, { "key": "1848", "source": "572", "target": "93", "attributes": { "weight": 2 } }, { "key": "22456", "source": "572", "target": "278", "attributes": { "weight": 3 } }, { "key": "30289", "source": "572", "target": "1618", "attributes": { "weight": 1 } }, { "key": "22471", "source": "572", "target": "2340", "attributes": { "weight": 2 } }, { "key": "1855", "source": "573", "target": "96", "attributes": { "weight": 1 } }, { "key": "1853", "source": "573", "target": "576", "attributes": { "weight": 1 } }, { "key": "1854", "source": "573", "target": "93", "attributes": { "weight": 3 } }, { "key": "1856", "source": "573", "target": "100", "attributes": { "weight": 1 } }, { "key": "1851", "source": "573", "target": "86", "attributes": { "weight": 1 } }, { "key": "1850", "source": "573", "target": "566", "attributes": { "weight": 3 } }, { "key": "1852", "source": "573", "target": "571", "attributes": { "weight": 1 } }, { "key": "1849", "source": "573", "target": "563", "attributes": { "weight": 1 } }, { "key": "27676", "source": "573", "target": "178", "attributes": { "weight": 2 } }, { "key": "35482", "source": "574", "target": "264", "attributes": { "weight": 1 } }, { "key": "35485", "source": "574", "target": "1859", "attributes": { "weight": 1 } }, { "key": "35452", "source": "574", "target": "3199", "attributes": { "weight": 2 } }, { "key": "12577", "source": "574", "target": "180", "attributes": { "weight": 3 } }, { "key": "25689", "source": "574", "target": "278", "attributes": { "weight": 3 } }, { "key": "11738", "source": "574", "target": "905", "attributes": { "weight": 2 } }, { "key": "35492", "source": "574", "target": "3209", "attributes": { "weight": 1 } }, { "key": "35488", "source": "574", "target": "3204", "attributes": { "weight": 1 } }, { "key": "12491", "source": "574", "target": "1857", "attributes": { "weight": 3 } }, { "key": "25542", "source": "574", "target": "174", "attributes": { "weight": 2 } }, { "key": "35491", "source": "574", "target": "3207", "attributes": { "weight": 1 } }, { "key": "14204", "source": "574", "target": "168", "attributes": { "weight": 4 } }, { "key": "11146", "source": "574", "target": "454", "attributes": { "weight": 2 } }, { "key": "18384", "source": "574", "target": "1621", "attributes": { "weight": 1 } }, { "key": "5089", "source": "574", "target": "580", "attributes": { "weight": 3 } }, { "key": "35483", "source": "574", "target": "3202", "attributes": { "weight": 1 } }, { "key": "30446", "source": "574", "target": "164", "attributes": { "weight": 4 } }, { "key": "25690", "source": "574", "target": "582", "attributes": { "weight": 2 } }, { "key": "1860", "source": "574", "target": "93", "attributes": { "weight": 1 } }, { "key": "35484", "source": "574", "target": "3", "attributes": { "weight": 1 } }, { "key": "35487", "source": "574", "target": "176", "attributes": { "weight": 1 } }, { "key": "24944", "source": "574", "target": "170", "attributes": { "weight": 2 } }, { "key": "24943", "source": "574", "target": "698", "attributes": { "weight": 2 } }, { "key": "14577", "source": "574", "target": "259", "attributes": { "weight": 2 } }, { "key": "35451", "source": "574", "target": "3198", "attributes": { "weight": 2 } }, { "key": "8198", "source": "574", "target": "1513", "attributes": { "weight": 1 } }, { "key": "30512", "source": "574", "target": "1549", "attributes": { "weight": 2 } }, { "key": "14578", "source": "574", "target": "304", "attributes": { "weight": 2 } }, { "key": "30513", "source": "574", "target": "1642", "attributes": { "weight": 2 } }, { "key": "24945", "source": "574", "target": "579", "attributes": { "weight": 2 } }, { "key": "35489", "source": "574", "target": "3200", "attributes": { "weight": 1 } }, { "key": "35449", "source": "574", "target": "1855", "attributes": { "weight": 2 } }, { "key": "12492", "source": "574", "target": "177", "attributes": { "weight": 3 } }, { "key": "28364", "source": "574", "target": "707", "attributes": { "weight": 1 } }, { "key": "9578", "source": "574", "target": "171", "attributes": { "weight": 3 } }, { "key": "28703", "source": "574", "target": "578", "attributes": { "weight": 1 } }, { "key": "27952", "source": "574", "target": "305", "attributes": { "weight": 2 } }, { "key": "35493", "source": "574", "target": "1860", "attributes": { "weight": 1 } }, { "key": "27677", "source": "574", "target": "178", "attributes": { "weight": 4 } }, { "key": "31602", "source": "574", "target": "595", "attributes": { "weight": 1 } }, { "key": "8763", "source": "574", "target": "175", "attributes": { "weight": 3 } }, { "key": "35450", "source": "574", "target": "1856", "attributes": { "weight": 2 } }, { "key": "8762", "source": "574", "target": "442", "attributes": { "weight": 3 } }, { "key": "35490", "source": "574", "target": "3206", "attributes": { "weight": 1 } }, { "key": "35486", "source": "574", "target": "3203", "attributes": { "weight": 1 } }, { "key": "27951", "source": "574", "target": "301", "attributes": { "weight": 1 } }, { "key": "1866", "source": "575", "target": "566", "attributes": { "weight": 1 } }, { "key": "1875", "source": "576", "target": "93", "attributes": { "weight": 3 } }, { "key": "1871", "source": "576", "target": "86", "attributes": { "weight": 1 } }, { "key": "1874", "source": "576", "target": "168", "attributes": { "weight": 1 } }, { "key": "1873", "source": "576", "target": "90", "attributes": { "weight": 1 } }, { "key": "1870", "source": "576", "target": "566", "attributes": { "weight": 1 } }, { "key": "1877", "source": "576", "target": "178", "attributes": { "weight": 1 } }, { "key": "1872", "source": "576", "target": "573", "attributes": { "weight": 1 } }, { "key": "1876", "source": "576", "target": "96", "attributes": { "weight": 1 } }, { "key": "1881", "source": "577", "target": "93", "attributes": { "weight": 2 } }, { "key": "32943", "source": "578", "target": "178", "attributes": { "weight": 1 } }, { "key": "13286", "source": "578", "target": "318", "attributes": { "weight": 2 } }, { "key": "28705", "source": "578", "target": "1857", "attributes": { "weight": 1 } }, { "key": "28070", "source": "578", "target": "287", "attributes": { "weight": 1 } }, { "key": "13287", "source": "578", "target": "322", "attributes": { "weight": 2 } }, { "key": "13279", "source": "578", "target": "167", "attributes": { "weight": 4 } }, { "key": "13275", "source": "578", "target": "260", "attributes": { "weight": 2 } }, { "key": "18398", "source": "578", "target": "1621", "attributes": { "weight": 1 } }, { "key": "28704", "source": "578", "target": "164", "attributes": { "weight": 2 } }, { "key": "13280", "source": "578", "target": "299", "attributes": { "weight": 2 } }, { "key": "28708", "source": "578", "target": "1921", "attributes": { "weight": 1 } }, { "key": "18397", "source": "578", "target": "830", "attributes": { "weight": 1 } }, { "key": "28429", "source": "578", "target": "580", "attributes": { "weight": 2 } }, { "key": "13284", "source": "578", "target": "839", "attributes": { "weight": 4 } }, { "key": "13281", "source": "578", "target": "300", "attributes": { "weight": 2 } }, { "key": "13277", "source": "578", "target": "264", "attributes": { "weight": 2 } }, { "key": "9665", "source": "578", "target": "171", "attributes": { "weight": 1 } }, { "key": "28709", "source": "578", "target": "1871", "attributes": { "weight": 1 } }, { "key": "28706", "source": "578", "target": "698", "attributes": { "weight": 1 } }, { "key": "1883", "source": "578", "target": "569", "attributes": { "weight": 1 } }, { "key": "12598", "source": "578", "target": "180", "attributes": { "weight": 3 } }, { "key": "14733", "source": "578", "target": "272", "attributes": { "weight": 2 } }, { "key": "28428", "source": "578", "target": "170", "attributes": { "weight": 2 } }, { "key": "14734", "source": "578", "target": "283", "attributes": { "weight": 2 } }, { "key": "13283", "source": "578", "target": "304", "attributes": { "weight": 2 } }, { "key": "26845", "source": "578", "target": "278", "attributes": { "weight": 3 } }, { "key": "3206", "source": "578", "target": "305", "attributes": { "weight": 6 } }, { "key": "12596", "source": "578", "target": "905", "attributes": { "weight": 3 } }, { "key": "37476", "source": "578", "target": "323", "attributes": { "weight": 1 } }, { "key": "13285", "source": "578", "target": "307", "attributes": { "weight": 2 } }, { "key": "13278", "source": "578", "target": "276", "attributes": { "weight": 2 } }, { "key": "12597", "source": "578", "target": "1513", "attributes": { "weight": 2 } }, { "key": "13282", "source": "578", "target": "301", "attributes": { "weight": 2 } }, { "key": "28707", "source": "578", "target": "574", "attributes": { "weight": 1 } }, { "key": "12850", "source": "578", "target": "582", "attributes": { "weight": 2 } }, { "key": "1884", "source": "578", "target": "93", "attributes": { "weight": 4 } }, { "key": "13288", "source": "578", "target": "327", "attributes": { "weight": 4 } }, { "key": "13276", "source": "578", "target": "262", "attributes": { "weight": 2 } }, { "key": "28444", "source": "579", "target": "2345", "attributes": { "weight": 1 } }, { "key": "28442", "source": "579", "target": "2540", "attributes": { "weight": 1 } }, { "key": "1922", "source": "579", "target": "93", "attributes": { "weight": 3 } }, { "key": "12089", "source": "579", "target": "904", "attributes": { "weight": 1 } }, { "key": "28440", "source": "579", "target": "1979", "attributes": { "weight": 1 } }, { "key": "35496", "source": "579", "target": "177", "attributes": { "weight": 1 } }, { "key": "21456", "source": "579", "target": "1823", "attributes": { "weight": 2 } }, { "key": "14272", "source": "579", "target": "168", "attributes": { "weight": 3 } }, { "key": "25032", "source": "579", "target": "313", "attributes": { "weight": 2 } }, { "key": "25748", "source": "579", "target": "697", "attributes": { "weight": 1 } }, { "key": "28439", "source": "579", "target": "1819", "attributes": { "weight": 1 } }, { "key": "2416", "source": "579", "target": "278", "attributes": { "weight": 6 } }, { "key": "28438", "source": "579", "target": "1869", "attributes": { "weight": 1 } }, { "key": "10916", "source": "579", "target": "457", "attributes": { "weight": 2 } }, { "key": "14759", "source": "579", "target": "307", "attributes": { "weight": 1 } }, { "key": "25029", "source": "579", "target": "574", "attributes": { "weight": 2 } }, { "key": "14758", "source": "579", "target": "268", "attributes": { "weight": 1 } }, { "key": "25028", "source": "579", "target": "164", "attributes": { "weight": 3 } }, { "key": "25033", "source": "579", "target": "316", "attributes": { "weight": 2 } }, { "key": "5742", "source": "579", "target": "580", "attributes": { "weight": 3 } }, { "key": "15127", "source": "579", "target": "171", "attributes": { "weight": 1 } }, { "key": "5741", "source": "579", "target": "1227", "attributes": { "weight": 3 } }, { "key": "13962", "source": "579", "target": "180", "attributes": { "weight": 3 } }, { "key": "13304", "source": "579", "target": "305", "attributes": { "weight": 5 } }, { "key": "25031", "source": "579", "target": "582", "attributes": { "weight": 2 } }, { "key": "13303", "source": "579", "target": "304", "attributes": { "weight": 3 } }, { "key": "12088", "source": "579", "target": "1191", "attributes": { "weight": 4 } }, { "key": "28445", "source": "579", "target": "1822", "attributes": { "weight": 1 } }, { "key": "28443", "source": "579", "target": "2437", "attributes": { "weight": 1 } }, { "key": "28446", "source": "579", "target": "178", "attributes": { "weight": 2 } }, { "key": "12090", "source": "579", "target": "1512", "attributes": { "weight": 3 } }, { "key": "25030", "source": "579", "target": "707", "attributes": { "weight": 1 } }, { "key": "28441", "source": "579", "target": "1960", "attributes": { "weight": 1 } }, { "key": "2415", "source": "579", "target": "699", "attributes": { "weight": 1 } }, { "key": "16156", "source": "579", "target": "700", "attributes": { "weight": 3 } }, { "key": "21455", "source": "579", "target": "2280", "attributes": { "weight": 2 } }, { "key": "22698", "source": "579", "target": "1820", "attributes": { "weight": 2 } }, { "key": "26717", "source": "579", "target": "454", "attributes": { "weight": 2 } }, { "key": "21454", "source": "579", "target": "698", "attributes": { "weight": 3 } }, { "key": "28437", "source": "579", "target": "2546", "attributes": { "weight": 1 } }, { "key": "16155", "source": "579", "target": "913", "attributes": { "weight": 1 } }, { "key": "28436", "source": "579", "target": "1868", "attributes": { "weight": 1 } }, { "key": "5748", "source": "580", "target": "574", "attributes": { "weight": 3 } }, { "key": "16162", "source": "580", "target": "1561", "attributes": { "weight": 2 } }, { "key": "16159", "source": "580", "target": "700", "attributes": { "weight": 4 } }, { "key": "5753", "source": "580", "target": "905", "attributes": { "weight": 5 } }, { "key": "28461", "source": "580", "target": "1823", "attributes": { "weight": 1 } }, { "key": "3818", "source": "580", "target": "645", "attributes": { "weight": 2 } }, { "key": "28464", "source": "580", "target": "495", "attributes": { "weight": 2 } }, { "key": "22703", "source": "580", "target": "907", "attributes": { "weight": 1 } }, { "key": "16161", "source": "580", "target": "1291", "attributes": { "weight": 1 } }, { "key": "11233", "source": "580", "target": "452", "attributes": { "weight": 1 } }, { "key": "5752", "source": "580", "target": "370", "attributes": { "weight": 5 } }, { "key": "5760", "source": "580", "target": "177", "attributes": { "weight": 4 } }, { "key": "22516", "source": "580", "target": "572", "attributes": { "weight": 2 } }, { "key": "13329", "source": "580", "target": "259", "attributes": { "weight": 6 } }, { "key": "25047", "source": "580", "target": "1996", "attributes": { "weight": 3 } }, { "key": "25195", "source": "580", "target": "297", "attributes": { "weight": 1 } }, { "key": "31080", "source": "580", "target": "2745", "attributes": { "weight": 1 } }, { "key": "1923", "source": "580", "target": "93", "attributes": { "weight": 5 } }, { "key": "18076", "source": "580", "target": "1036", "attributes": { "weight": 2 } }, { "key": "5749", "source": "580", "target": "168", "attributes": { "weight": 5 } }, { "key": "5747", "source": "580", "target": "698", "attributes": { "weight": 4 } }, { "key": "16157", "source": "580", "target": "195", "attributes": { "weight": 1 } }, { "key": "34911", "source": "580", "target": "1042", "attributes": { "weight": 1 } }, { "key": "28462", "source": "580", "target": "1323", "attributes": { "weight": 2 } }, { "key": "29963", "source": "580", "target": "1952", "attributes": { "weight": 1 } }, { "key": "25891", "source": "580", "target": "220", "attributes": { "weight": 1 } }, { "key": "28463", "source": "580", "target": "1326", "attributes": { "weight": 2 } }, { "key": "13330", "source": "580", "target": "264", "attributes": { "weight": 2 } }, { "key": "25048", "source": "580", "target": "1299", "attributes": { "weight": 2 } }, { "key": "25046", "source": "580", "target": "300", "attributes": { "weight": 2 } }, { "key": "16163", "source": "580", "target": "1322", "attributes": { "weight": 3 } }, { "key": "28454", "source": "580", "target": "1047", "attributes": { "weight": 2 } }, { "key": "13335", "source": "580", "target": "307", "attributes": { "weight": 4 } }, { "key": "16158", "source": "580", "target": "913", "attributes": { "weight": 1 } }, { "key": "28453", "source": "580", "target": "1197", "attributes": { "weight": 2 } }, { "key": "22699", "source": "580", "target": "170", "attributes": { "weight": 4 } }, { "key": "25041", "source": "580", "target": "1187", "attributes": { "weight": 3 } }, { "key": "25040", "source": "580", "target": "697", "attributes": { "weight": 2 } }, { "key": "17503", "source": "580", "target": "358", "attributes": { "weight": 2 } }, { "key": "5762", "source": "580", "target": "180", "attributes": { "weight": 10 } }, { "key": "9516", "source": "580", "target": "419", "attributes": { "weight": 3 } }, { "key": "28455", "source": "580", "target": "1232", "attributes": { "weight": 2 } }, { "key": "22701", "source": "580", "target": "2345", "attributes": { "weight": 1 } }, { "key": "21457", "source": "580", "target": "1905", "attributes": { "weight": 2 } }, { "key": "21458", "source": "580", "target": "1870", "attributes": { "weight": 2 } }, { "key": "28457", "source": "580", "target": "791", "attributes": { "weight": 2 } }, { "key": "7362", "source": "580", "target": "1063", "attributes": { "weight": 2 } }, { "key": "5756", "source": "580", "target": "579", "attributes": { "weight": 3 } }, { "key": "5744", "source": "580", "target": "938", "attributes": { "weight": 2 } }, { "key": "5743", "source": "580", "target": "164", "attributes": { "weight": 8 } }, { "key": "2417", "source": "580", "target": "278", "attributes": { "weight": 10 } }, { "key": "10918", "source": "580", "target": "457", "attributes": { "weight": 2 } }, { "key": "13334", "source": "580", "target": "305", "attributes": { "weight": 5 } }, { "key": "12017", "source": "580", "target": "468", "attributes": { "weight": 4 } }, { "key": "5754", "source": "580", "target": "171", "attributes": { "weight": 3 } }, { "key": "22700", "source": "580", "target": "1820", "attributes": { "weight": 1 } }, { "key": "5758", "source": "580", "target": "582", "attributes": { "weight": 5 } }, { "key": "31680", "source": "580", "target": "595", "attributes": { "weight": 1 } }, { "key": "25050", "source": "580", "target": "1967", "attributes": { "weight": 2 } }, { "key": "22702", "source": "580", "target": "2280", "attributes": { "weight": 1 } }, { "key": "28456", "source": "580", "target": "1233", "attributes": { "weight": 2 } }, { "key": "23787", "source": "580", "target": "1774", "attributes": { "weight": 1 } }, { "key": "13336", "source": "580", "target": "313", "attributes": { "weight": 3 } }, { "key": "13333", "source": "580", "target": "304", "attributes": { "weight": 6 } }, { "key": "5751", "source": "580", "target": "1240", "attributes": { "weight": 3 } }, { "key": "5746", "source": "580", "target": "368", "attributes": { "weight": 4 } }, { "key": "5763", "source": "580", "target": "333", "attributes": { "weight": 4 } }, { "key": "26718", "source": "580", "target": "183", "attributes": { "weight": 2 } }, { "key": "8962", "source": "580", "target": "309", "attributes": { "weight": 2 } }, { "key": "25049", "source": "580", "target": "310", "attributes": { "weight": 2 } }, { "key": "13331", "source": "580", "target": "268", "attributes": { "weight": 5 } }, { "key": "12092", "source": "580", "target": "1512", "attributes": { "weight": 5 } }, { "key": "27282", "source": "580", "target": "57", "attributes": { "weight": 2 } }, { "key": "25045", "source": "580", "target": "1965", "attributes": { "weight": 2 } }, { "key": "28988", "source": "580", "target": "1926", "attributes": { "weight": 1 } }, { "key": "5750", "source": "580", "target": "1227", "attributes": { "weight": 7 } }, { "key": "28458", "source": "580", "target": "1979", "attributes": { "weight": 1 } }, { "key": "28452", "source": "580", "target": "1146", "attributes": { "weight": 3 } }, { "key": "5755", "source": "580", "target": "338", "attributes": { "weight": 8 } }, { "key": "9873", "source": "580", "target": "396", "attributes": { "weight": 1 } }, { "key": "5759", "source": "580", "target": "1315", "attributes": { "weight": 2 } }, { "key": "13337", "source": "580", "target": "327", "attributes": { "weight": 3 } }, { "key": "29829", "source": "580", "target": "566", "attributes": { "weight": 1 } }, { "key": "25039", "source": "580", "target": "564", "attributes": { "weight": 2 } }, { "key": "25043", "source": "580", "target": "1046", "attributes": { "weight": 3 } }, { "key": "12093", "source": "580", "target": "1825", "attributes": { "weight": 1 } }, { "key": "31340", "source": "580", "target": "674", "attributes": { "weight": 1 } }, { "key": "11235", "source": "580", "target": "494", "attributes": { "weight": 1 } }, { "key": "22515", "source": "580", "target": "567", "attributes": { "weight": 3 } }, { "key": "13332", "source": "580", "target": "167", "attributes": { "weight": 2 } }, { "key": "25044", "source": "580", "target": "454", "attributes": { "weight": 1 } }, { "key": "28459", "source": "580", "target": "578", "attributes": { "weight": 2 } }, { "key": "28460", "source": "580", "target": "176", "attributes": { "weight": 1 } }, { "key": "23869", "source": "580", "target": "2461", "attributes": { "weight": 1 } }, { "key": "14782", "source": "580", "target": "261", "attributes": { "weight": 1 } }, { "key": "5757", "source": "580", "target": "123", "attributes": { "weight": 6 } }, { "key": "5745", "source": "580", "target": "1191", "attributes": { "weight": 6 } }, { "key": "7361", "source": "580", "target": "377", "attributes": { "weight": 2 } }, { "key": "11234", "source": "580", "target": "473", "attributes": { "weight": 1 } }, { "key": "8961", "source": "580", "target": "442", "attributes": { "weight": 3 } }, { "key": "25042", "source": "580", "target": "3", "attributes": { "weight": 2 } }, { "key": "16160", "source": "580", "target": "925", "attributes": { "weight": 1 } }, { "key": "5761", "source": "580", "target": "178", "attributes": { "weight": 8 } }, { "key": "1926", "source": "581", "target": "93", "attributes": { "weight": 1 } }, { "key": "1925", "source": "581", "target": "566", "attributes": { "weight": 1 } }, { "key": "12861", "source": "582", "target": "322", "attributes": { "weight": 1 } }, { "key": "1931", "source": "582", "target": "566", "attributes": { "weight": 3 } }, { "key": "12852", "source": "582", "target": "698", "attributes": { "weight": 3 } }, { "key": "2419", "source": "582", "target": "697", "attributes": { "weight": 3 } }, { "key": "12854", "source": "582", "target": "905", "attributes": { "weight": 1 } }, { "key": "25755", "source": "582", "target": "1191", "attributes": { "weight": 1 } }, { "key": "25759", "source": "582", "target": "300", "attributes": { "weight": 2 } }, { "key": "2418", "source": "582", "target": "164", "attributes": { "weight": 4 } }, { "key": "25058", "source": "582", "target": "579", "attributes": { "weight": 2 } }, { "key": "25756", "source": "582", "target": "699", "attributes": { "weight": 2 } }, { "key": "15131", "source": "582", "target": "171", "attributes": { "weight": 1 } }, { "key": "14803", "source": "582", "target": "307", "attributes": { "weight": 2 } }, { "key": "12856", "source": "582", "target": "578", "attributes": { "weight": 2 } }, { "key": "12860", "source": "582", "target": "318", "attributes": { "weight": 1 } }, { "key": "29217", "source": "582", "target": "1872", "attributes": { "weight": 1 } }, { "key": "12862", "source": "582", "target": "326", "attributes": { "weight": 1 } }, { "key": "19019", "source": "582", "target": "305", "attributes": { "weight": 4 } }, { "key": "25760", "source": "582", "target": "177", "attributes": { "weight": 2 } }, { "key": "25758", "source": "582", "target": "574", "attributes": { "weight": 2 } }, { "key": "29214", "source": "582", "target": "259", "attributes": { "weight": 1 } }, { "key": "1932", "source": "582", "target": "93", "attributes": { "weight": 3 } }, { "key": "31692", "source": "582", "target": "1967", "attributes": { "weight": 1 } }, { "key": "12855", "source": "582", "target": "170", "attributes": { "weight": 5 } }, { "key": "28480", "source": "582", "target": "1512", "attributes": { "weight": 2 } }, { "key": "29215", "source": "582", "target": "290", "attributes": { "weight": 1 } }, { "key": "12859", "source": "582", "target": "180", "attributes": { "weight": 2 } }, { "key": "29830", "source": "582", "target": "91", "attributes": { "weight": 2 } }, { "key": "13478", "source": "582", "target": "167", "attributes": { "weight": 2 } }, { "key": "6196", "source": "582", "target": "580", "attributes": { "weight": 5 } }, { "key": "12858", "source": "582", "target": "313", "attributes": { "weight": 5 } }, { "key": "29216", "source": "582", "target": "309", "attributes": { "weight": 1 } }, { "key": "25757", "source": "582", "target": "700", "attributes": { "weight": 1 } }, { "key": "12857", "source": "582", "target": "175", "attributes": { "weight": 2 } }, { "key": "13479", "source": "582", "target": "304", "attributes": { "weight": 4 } }, { "key": "12853", "source": "582", "target": "168", "attributes": { "weight": 4 } }, { "key": "12851", "source": "582", "target": "263", "attributes": { "weight": 1 } }, { "key": "1939", "source": "583", "target": "93", "attributes": { "weight": 1 } }, { "key": "1942", "source": "584", "target": "93", "attributes": { "weight": 4 } }, { "key": "1941", "source": "584", "target": "566", "attributes": { "weight": 1 } }, { "key": "1943", "source": "585", "target": "93", "attributes": { "weight": 3 } }, { "key": "1946", "source": "586", "target": "93", "attributes": { "weight": 2 } }, { "key": "1945", "source": "586", "target": "566", "attributes": { "weight": 1 } }, { "key": "1947", "source": "587", "target": "93", "attributes": { "weight": 1 } }, { "key": "1948", "source": "588", "target": "93", "attributes": { "weight": 2 } }, { "key": "36444", "source": "589", "target": "257", "attributes": { "weight": 1 } }, { "key": "37310", "source": "589", "target": "963", "attributes": { "weight": 1 } }, { "key": "12057", "source": "589", "target": "1328", "attributes": { "weight": 2 } }, { "key": "1953", "source": "589", "target": "248", "attributes": { "weight": 1 } }, { "key": "3400", "source": "589", "target": "961", "attributes": { "weight": 3 } }, { "key": "1956", "source": "590", "target": "592", "attributes": { "weight": 1 } }, { "key": "1957", "source": "590", "target": "593", "attributes": { "weight": 2 } }, { "key": "1955", "source": "590", "target": "8", "attributes": { "weight": 2 } }, { "key": "1959", "source": "590", "target": "597", "attributes": { "weight": 1 } }, { "key": "1958", "source": "590", "target": "595", "attributes": { "weight": 2 } }, { "key": "1954", "source": "590", "target": "591", "attributes": { "weight": 1 } }, { "key": "1960", "source": "591", "target": "590", "attributes": { "weight": 1 } }, { "key": "1964", "source": "592", "target": "590", "attributes": { "weight": 1 } }, { "key": "1965", "source": "592", "target": "8", "attributes": { "weight": 2 } }, { "key": "1967", "source": "592", "target": "596", "attributes": { "weight": 1 } }, { "key": "1966", "source": "592", "target": "595", "attributes": { "weight": 2 } }, { "key": "15091", "source": "592", "target": "1992", "attributes": { "weight": 1 } }, { "key": "35135", "source": "593", "target": "594", "attributes": { "weight": 1 } }, { "key": "1968", "source": "593", "target": "590", "attributes": { "weight": 2 } }, { "key": "35134", "source": "593", "target": "818", "attributes": { "weight": 1 } }, { "key": "35145", "source": "594", "target": "593", "attributes": { "weight": 1 } }, { "key": "1969", "source": "594", "target": "8", "attributes": { "weight": 2 } }, { "key": "1970", "source": "594", "target": "595", "attributes": { "weight": 2 } }, { "key": "35147", "source": "594", "target": "3182", "attributes": { "weight": 1 } }, { "key": "35148", "source": "594", "target": "827", "attributes": { "weight": 1 } }, { "key": "2812", "source": "594", "target": "14", "attributes": { "weight": 1 } }, { "key": "35146", "source": "594", "target": "350", "attributes": { "weight": 1 } }, { "key": "16367", "source": "595", "target": "371", "attributes": { "weight": 2 } }, { "key": "31786", "source": "595", "target": "3023", "attributes": { "weight": 1 } }, { "key": "11280", "source": "595", "target": "222", "attributes": { "weight": 2 } }, { "key": "10931", "source": "595", "target": "457", "attributes": { "weight": 2 } }, { "key": "31721", "source": "595", "target": "440", "attributes": { "weight": 1 } }, { "key": "11284", "source": "595", "target": "1774", "attributes": { "weight": 2 } }, { "key": "31778", "source": "595", "target": "487", "attributes": { "weight": 1 } }, { "key": "35031", "source": "595", "target": "1368", "attributes": { "weight": 1 } }, { "key": "31760", "source": "595", "target": "189", "attributes": { "weight": 1 } }, { "key": "31783", "source": "595", "target": "56", "attributes": { "weight": 1 } }, { "key": "9095", "source": "595", "target": "442", "attributes": { "weight": 2 } }, { "key": "31794", "source": "595", "target": "25", "attributes": { "weight": 1 } }, { "key": "31717", "source": "595", "target": "3014", "attributes": { "weight": 1 } }, { "key": "31787", "source": "595", "target": "351", "attributes": { "weight": 1 } }, { "key": "31758", "source": "595", "target": "9", "attributes": { "weight": 1 } }, { "key": "35032", "source": "595", "target": "483", "attributes": { "weight": 1 } }, { "key": "31751", "source": "595", "target": "817", "attributes": { "weight": 1 } }, { "key": "10568", "source": "595", "target": "225", "attributes": { "weight": 2 } }, { "key": "31790", "source": "595", "target": "495", "attributes": { "weight": 1 } }, { "key": "35030", "source": "595", "target": "426", "attributes": { "weight": 1 } }, { "key": "9995", "source": "595", "target": "480", "attributes": { "weight": 2 } }, { "key": "16366", "source": "595", "target": "338", "attributes": { "weight": 2 } }, { "key": "31720", "source": "595", "target": "223", "attributes": { "weight": 1 } }, { "key": "31732", "source": "595", "target": "2646", "attributes": { "weight": 1 } }, { "key": "27547", "source": "595", "target": "1520", "attributes": { "weight": 2 } }, { "key": "9359", "source": "595", "target": "430", "attributes": { "weight": 1 } }, { "key": "31752", "source": "595", "target": "7", "attributes": { "weight": 1 } }, { "key": "31726", "source": "595", "target": "2122", "attributes": { "weight": 1 } }, { "key": "31765", "source": "595", "target": "580", "attributes": { "weight": 1 } }, { "key": "31782", "source": "595", "target": "672", "attributes": { "weight": 1 } }, { "key": "9994", "source": "595", "target": "477", "attributes": { "weight": 2 } }, { "key": "28981", "source": "595", "target": "2827", "attributes": { "weight": 2 } }, { "key": "31713", "source": "595", "target": "0", "attributes": { "weight": 1 } }, { "key": "14165", "source": "595", "target": "392", "attributes": { "weight": 2 } }, { "key": "31788", "source": "595", "target": "2507", "attributes": { "weight": 1 } }, { "key": "31715", "source": "595", "target": "1", "attributes": { "weight": 1 } }, { "key": "31779", "source": "595", "target": "490", "attributes": { "weight": 1 } }, { "key": "31723", "source": "595", "target": "2", "attributes": { "weight": 1 } }, { "key": "14850", "source": "595", "target": "319", "attributes": { "weight": 2 } }, { "key": "31738", "source": "595", "target": "168", "attributes": { "weight": 1 } }, { "key": "31753", "source": "595", "target": "8", "attributes": { "weight": 1 } }, { "key": "31741", "source": "595", "target": "19", "attributes": { "weight": 1 } }, { "key": "31785", "source": "595", "target": "340", "attributes": { "weight": 1 } }, { "key": "13539", "source": "595", "target": "304", "attributes": { "weight": 4 } }, { "key": "31748", "source": "595", "target": "681", "attributes": { "weight": 1 } }, { "key": "31766", "source": "595", "target": "12", "attributes": { "weight": 1 } }, { "key": "31719", "source": "595", "target": "164", "attributes": { "weight": 1 } }, { "key": "31762", "source": "595", "target": "474", "attributes": { "weight": 1 } }, { "key": "31761", "source": "595", "target": "10", "attributes": { "weight": 1 } }, { "key": "31725", "source": "595", "target": "2831", "attributes": { "weight": 1 } }, { "key": "11283", "source": "595", "target": "473", "attributes": { "weight": 2 } }, { "key": "31791", "source": "595", "target": "1390", "attributes": { "weight": 1 } }, { "key": "31757", "source": "595", "target": "820", "attributes": { "weight": 1 } }, { "key": "31767", "source": "595", "target": "868", "attributes": { "weight": 2 } }, { "key": "1972", "source": "595", "target": "592", "attributes": { "weight": 2 } }, { "key": "1971", "source": "595", "target": "590", "attributes": { "weight": 2 } }, { "key": "31754", "source": "595", "target": "468", "attributes": { "weight": 1 } }, { "key": "31780", "source": "595", "target": "3022", "attributes": { "weight": 1 } }, { "key": "31781", "source": "595", "target": "14", "attributes": { "weight": 1 } }, { "key": "31728", "source": "595", "target": "183", "attributes": { "weight": 1 } }, { "key": "28982", "source": "595", "target": "479", "attributes": { "weight": 2 } }, { "key": "31722", "source": "595", "target": "339", "attributes": { "weight": 1 } }, { "key": "31777", "source": "595", "target": "3021", "attributes": { "weight": 1 } }, { "key": "11281", "source": "595", "target": "452", "attributes": { "weight": 2 } }, { "key": "11285", "source": "595", "target": "494", "attributes": { "weight": 2 } }, { "key": "31749", "source": "595", "target": "464", "attributes": { "weight": 1 } }, { "key": "31742", "source": "595", "target": "791", "attributes": { "weight": 1 } }, { "key": "31731", "source": "595", "target": "3062", "attributes": { "weight": 1 } }, { "key": "12725", "source": "595", "target": "695", "attributes": { "weight": 2 } }, { "key": "28989", "source": "595", "target": "193", "attributes": { "weight": 2 } }, { "key": "31745", "source": "595", "target": "6", "attributes": { "weight": 1 } }, { "key": "31733", "source": "595", "target": "52", "attributes": { "weight": 1 } }, { "key": "31770", "source": "595", "target": "2828", "attributes": { "weight": 1 } }, { "key": "31746", "source": "595", "target": "2071", "attributes": { "weight": 1 } }, { "key": "31716", "source": "595", "target": "432", "attributes": { "weight": 1 } }, { "key": "14308", "source": "595", "target": "53", "attributes": { "weight": 2 } }, { "key": "31724", "source": "595", "target": "419", "attributes": { "weight": 1 } }, { "key": "11282", "source": "595", "target": "789", "attributes": { "weight": 2 } }, { "key": "31744", "source": "595", "target": "3015", "attributes": { "weight": 1 } }, { "key": "31796", "source": "595", "target": "500", "attributes": { "weight": 1 } }, { "key": "25768", "source": "595", "target": "278", "attributes": { "weight": 2 } }, { "key": "31714", "source": "595", "target": "429", "attributes": { "weight": 2 } }, { "key": "31776", "source": "595", "target": "177", "attributes": { "weight": 1 } }, { "key": "31769", "source": "595", "target": "13", "attributes": { "weight": 1 } }, { "key": "25391", "source": "595", "target": "433", "attributes": { "weight": 2 } }, { "key": "1973", "source": "595", "target": "594", "attributes": { "weight": 2 } }, { "key": "26927", "source": "595", "target": "497", "attributes": { "weight": 2 } }, { "key": "16365", "source": "595", "target": "370", "attributes": { "weight": 2 } }, { "key": "24544", "source": "595", "target": "790", "attributes": { "weight": 2 } }, { "key": "31736", "source": "595", "target": "574", "attributes": { "weight": 1 } }, { "key": "25115", "source": "595", "target": "1547", "attributes": { "weight": 2 } }, { "key": "31711", "source": "595", "target": "3013", "attributes": { "weight": 1 } }, { "key": "9993", "source": "595", "target": "445", "attributes": { "weight": 2 } }, { "key": "31771", "source": "595", "target": "3019", "attributes": { "weight": 1 } }, { "key": "28990", "source": "595", "target": "1926", "attributes": { "weight": 2 } }, { "key": "31795", "source": "595", "target": "1063", "attributes": { "weight": 1 } }, { "key": "25898", "source": "595", "target": "220", "attributes": { "weight": 2 } }, { "key": "31764", "source": "595", "target": "3016", "attributes": { "weight": 1 } }, { "key": "31784", "source": "595", "target": "349", "attributes": { "weight": 1 } }, { "key": "29177", "source": "595", "target": "1750", "attributes": { "weight": 2 } }, { "key": "31373", "source": "595", "target": "59", "attributes": { "weight": 2 } }, { "key": "31374", "source": "595", "target": "674", "attributes": { "weight": 2 } }, { "key": "31375", "source": "595", "target": "70", "attributes": { "weight": 2 } }, { "key": "31729", "source": "595", "target": "693", "attributes": { "weight": 1 } }, { "key": "31763", "source": "595", "target": "11", "attributes": { "weight": 1 } }, { "key": "18347", "source": "595", "target": "2208", "attributes": { "weight": 1 } }, { "key": "31772", "source": "595", "target": "372", "attributes": { "weight": 2 } }, { "key": "35033", "source": "595", "target": "2670", "attributes": { "weight": 1 } }, { "key": "31773", "source": "595", "target": "2103", "attributes": { "weight": 1 } }, { "key": "25953", "source": "595", "target": "1367", "attributes": { "weight": 2 } }, { "key": "26094", "source": "595", "target": "358", "attributes": { "weight": 2 } }, { "key": "31756", "source": "595", "target": "1611", "attributes": { "weight": 1 } }, { "key": "18345", "source": "595", "target": "2086", "attributes": { "weight": 1 } }, { "key": "31727", "source": "595", "target": "182", "attributes": { "weight": 1 } }, { "key": "14849", "source": "595", "target": "259", "attributes": { "weight": 2 } }, { "key": "31740", "source": "595", "target": "18", "attributes": { "weight": 1 } }, { "key": "31718", "source": "595", "target": "130", "attributes": { "weight": 2 } }, { "key": "31792", "source": "595", "target": "828", "attributes": { "weight": 1 } }, { "key": "18346", "source": "595", "target": "1092", "attributes": { "weight": 2 } }, { "key": "31759", "source": "595", "target": "1742", "attributes": { "weight": 1 } }, { "key": "30743", "source": "595", "target": "1026", "attributes": { "weight": 2 } }, { "key": "31739", "source": "595", "target": "2287", "attributes": { "weight": 1 } }, { "key": "25639", "source": "595", "target": "1780", "attributes": { "weight": 1 } }, { "key": "31734", "source": "595", "target": "455", "attributes": { "weight": 1 } }, { "key": "31793", "source": "595", "target": "1967", "attributes": { "weight": 1 } }, { "key": "31712", "source": "595", "target": "2499", "attributes": { "weight": 1 } }, { "key": "31755", "source": "595", "target": "471", "attributes": { "weight": 2 } }, { "key": "31797", "source": "595", "target": "57", "attributes": { "weight": 1 } }, { "key": "31735", "source": "595", "target": "188", "attributes": { "weight": 1 } }, { "key": "31737", "source": "595", "target": "458", "attributes": { "weight": 1 } }, { "key": "31789", "source": "595", "target": "2461", "attributes": { "weight": 1 } }, { "key": "18438", "source": "595", "target": "5", "attributes": { "weight": 2 } }, { "key": "31775", "source": "595", "target": "793", "attributes": { "weight": 1 } }, { "key": "31750", "source": "595", "target": "682", "attributes": { "weight": 1 } }, { "key": "31730", "source": "595", "target": "454", "attributes": { "weight": 1 } }, { "key": "9096", "source": "595", "target": "1087", "attributes": { "weight": 1 } }, { "key": "31747", "source": "595", "target": "1965", "attributes": { "weight": 1 } }, { "key": "31774", "source": "595", "target": "823", "attributes": { "weight": 1 } }, { "key": "3042", "source": "595", "target": "424", "attributes": { "weight": 2 } }, { "key": "28150", "source": "595", "target": "305", "attributes": { "weight": 2 } }, { "key": "31768", "source": "595", "target": "2505", "attributes": { "weight": 1 } }, { "key": "25638", "source": "595", "target": "787", "attributes": { "weight": 1 } }, { "key": "31743", "source": "595", "target": "1024", "attributes": { "weight": 2 } }, { "key": "16364", "source": "595", "target": "1232", "attributes": { "weight": 2 } }, { "key": "31378", "source": "596", "target": "59", "attributes": { "weight": 1 } }, { "key": "36390", "source": "596", "target": "434", "attributes": { "weight": 1 } }, { "key": "17025", "source": "596", "target": "2084", "attributes": { "weight": 4 } }, { "key": "31380", "source": "596", "target": "2093", "attributes": { "weight": 1 } }, { "key": "17024", "source": "596", "target": "1354", "attributes": { "weight": 1 } }, { "key": "36397", "source": "596", "target": "3302", "attributes": { "weight": 1 } }, { "key": "36391", "source": "596", "target": "1862", "attributes": { "weight": 1 } }, { "key": "36389", "source": "596", "target": "3278", "attributes": { "weight": 1 } }, { "key": "17028", "source": "596", "target": "1389", "attributes": { "weight": 2 } }, { "key": "1974", "source": "596", "target": "592", "attributes": { "weight": 1 } }, { "key": "36394", "source": "596", "target": "2089", "attributes": { "weight": 1 } }, { "key": "17026", "source": "596", "target": "135", "attributes": { "weight": 1 } }, { "key": "17027", "source": "596", "target": "70", "attributes": { "weight": 2 } }, { "key": "36396", "source": "596", "target": "3300", "attributes": { "weight": 1 } }, { "key": "36398", "source": "596", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36393", "source": "596", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36392", "source": "596", "target": "3284", "attributes": { "weight": 1 } }, { "key": "31379", "source": "596", "target": "2087", "attributes": { "weight": 2 } }, { "key": "36395", "source": "596", "target": "3288", "attributes": { "weight": 1 } }, { "key": "31381", "source": "596", "target": "1337", "attributes": { "weight": 1 } }, { "key": "1975", "source": "597", "target": "590", "attributes": { "weight": 1 } }, { "key": "35173", "source": "597", "target": "350", "attributes": { "weight": 1 } }, { "key": "10585", "source": "598", "target": "30", "attributes": { "weight": 1 } }, { "key": "10586", "source": "598", "target": "601", "attributes": { "weight": 3 } }, { "key": "23138", "source": "598", "target": "2428", "attributes": { "weight": 2 } }, { "key": "23137", "source": "598", "target": "2426", "attributes": { "weight": 2 } }, { "key": "1976", "source": "598", "target": "600", "attributes": { "weight": 3 } }, { "key": "23146", "source": "599", "target": "2431", "attributes": { "weight": 1 } }, { "key": "1977", "source": "599", "target": "601", "attributes": { "weight": 3 } }, { "key": "23144", "source": "599", "target": "1297", "attributes": { "weight": 1 } }, { "key": "23145", "source": "599", "target": "2430", "attributes": { "weight": 1 } }, { "key": "23156", "source": "600", "target": "2424", "attributes": { "weight": 2 } }, { "key": "26220", "source": "600", "target": "1099", "attributes": { "weight": 1 } }, { "key": "23155", "source": "600", "target": "598", "attributes": { "weight": 2 } }, { "key": "1978", "source": "600", "target": "601", "attributes": { "weight": 3 } }, { "key": "26221", "source": "600", "target": "1349", "attributes": { "weight": 1 } }, { "key": "26258", "source": "601", "target": "387", "attributes": { "weight": 1 } }, { "key": "6289", "source": "601", "target": "368", "attributes": { "weight": 3 } }, { "key": "26255", "source": "601", "target": "2425", "attributes": { "weight": 1 } }, { "key": "26261", "source": "601", "target": "876", "attributes": { "weight": 1 } }, { "key": "26259", "source": "601", "target": "45", "attributes": { "weight": 1 } }, { "key": "23168", "source": "601", "target": "2426", "attributes": { "weight": 2 } }, { "key": "23167", "source": "601", "target": "599", "attributes": { "weight": 2 } }, { "key": "23170", "source": "601", "target": "109", "attributes": { "weight": 3 } }, { "key": "26264", "source": "601", "target": "310", "attributes": { "weight": 2 } }, { "key": "26263", "source": "601", "target": "2429", "attributes": { "weight": 1 } }, { "key": "26256", "source": "601", "target": "778", "attributes": { "weight": 1 } }, { "key": "24221", "source": "601", "target": "471", "attributes": { "weight": 2 } }, { "key": "7393", "source": "601", "target": "369", "attributes": { "weight": 5 } }, { "key": "23169", "source": "601", "target": "2427", "attributes": { "weight": 2 } }, { "key": "23171", "source": "601", "target": "600", "attributes": { "weight": 3 } }, { "key": "1997", "source": "601", "target": "605", "attributes": { "weight": 2 } }, { "key": "23172", "source": "601", "target": "2428", "attributes": { "weight": 2 } }, { "key": "26262", "source": "601", "target": "372", "attributes": { "weight": 1 } }, { "key": "16257", "source": "601", "target": "195", "attributes": { "weight": 2 } }, { "key": "1979", "source": "601", "target": "598", "attributes": { "weight": 4 } }, { "key": "26257", "source": "601", "target": "872", "attributes": { "weight": 1 } }, { "key": "26253", "source": "601", "target": "2424", "attributes": { "weight": 1 } }, { "key": "6293", "source": "601", "target": "1297", "attributes": { "weight": 3 } }, { "key": "35214", "source": "601", "target": "116", "attributes": { "weight": 1 } }, { "key": "9057", "source": "601", "target": "442", "attributes": { "weight": 2 } }, { "key": "26265", "source": "601", "target": "48", "attributes": { "weight": 1 } }, { "key": "10770", "source": "601", "target": "43", "attributes": { "weight": 2 } }, { "key": "26266", "source": "601", "target": "2641", "attributes": { "weight": 1 } }, { "key": "6291", "source": "601", "target": "30", "attributes": { "weight": 6 } }, { "key": "10134", "source": "601", "target": "602", "attributes": { "weight": 2 } }, { "key": "24898", "source": "601", "target": "108", "attributes": { "weight": 2 } }, { "key": "7394", "source": "601", "target": "1063", "attributes": { "weight": 1 } }, { "key": "6292", "source": "601", "target": "371", "attributes": { "weight": 3 } }, { "key": "6290", "source": "601", "target": "370", "attributes": { "weight": 2 } }, { "key": "26254", "source": "601", "target": "603", "attributes": { "weight": 2 } }, { "key": "26260", "source": "601", "target": "2634", "attributes": { "weight": 1 } }, { "key": "14120", "source": "601", "target": "1031", "attributes": { "weight": 1 } }, { "key": "26252", "source": "601", "target": "1146", "attributes": { "weight": 2 } }, { "key": "9900", "source": "601", "target": "396", "attributes": { "weight": 2 } }, { "key": "23173", "source": "601", "target": "2431", "attributes": { "weight": 2 } }, { "key": "10028", "source": "602", "target": "874", "attributes": { "weight": 1 } }, { "key": "10027", "source": "602", "target": "604", "attributes": { "weight": 1 } }, { "key": "10054", "source": "602", "target": "1676", "attributes": { "weight": 1 } }, { "key": "10052", "source": "602", "target": "1674", "attributes": { "weight": 2 } }, { "key": "10051", "source": "602", "target": "1673", "attributes": { "weight": 2 } }, { "key": "3046", "source": "602", "target": "882", "attributes": { "weight": 2 } }, { "key": "10031", "source": "602", "target": "1662", "attributes": { "weight": 1 } }, { "key": "10048", "source": "602", "target": "601", "attributes": { "weight": 2 } }, { "key": "10037", "source": "602", "target": "1666", "attributes": { "weight": 1 } }, { "key": "10023", "source": "602", "target": "872", "attributes": { "weight": 2 } }, { "key": "10045", "source": "602", "target": "881", "attributes": { "weight": 2 } }, { "key": "10022", "source": "602", "target": "871", "attributes": { "weight": 2 } }, { "key": "1980", "source": "602", "target": "605", "attributes": { "weight": 2 } }, { "key": "10041", "source": "602", "target": "1667", "attributes": { "weight": 1 } }, { "key": "10034", "source": "602", "target": "1663", "attributes": { "weight": 2 } }, { "key": "10035", "source": "602", "target": "1664", "attributes": { "weight": 1 } }, { "key": "10020", "source": "602", "target": "603", "attributes": { "weight": 1 } }, { "key": "10029", "source": "602", "target": "1454", "attributes": { "weight": 1 } }, { "key": "10042", "source": "602", "target": "879", "attributes": { "weight": 1 } }, { "key": "10038", "source": "602", "target": "876", "attributes": { "weight": 2 } }, { "key": "10053", "source": "602", "target": "1675", "attributes": { "weight": 2 } }, { "key": "10021", "source": "602", "target": "870", "attributes": { "weight": 2 } }, { "key": "10032", "source": "602", "target": "108", "attributes": { "weight": 1 } }, { "key": "1981", "source": "602", "target": "606", "attributes": { "weight": 2 } }, { "key": "10036", "source": "602", "target": "1665", "attributes": { "weight": 1 } }, { "key": "10044", "source": "602", "target": "880", "attributes": { "weight": 1 } }, { "key": "10049", "source": "602", "target": "1671", "attributes": { "weight": 1 } }, { "key": "3045", "source": "602", "target": "878", "attributes": { "weight": 2 } }, { "key": "10047", "source": "602", "target": "1670", "attributes": { "weight": 1 } }, { "key": "10040", "source": "602", "target": "607", "attributes": { "weight": 1 } }, { "key": "10033", "source": "602", "target": "109", "attributes": { "weight": 3 } }, { "key": "10043", "source": "602", "target": "1668", "attributes": { "weight": 1 } }, { "key": "10026", "source": "602", "target": "1660", "attributes": { "weight": 1 } }, { "key": "10039", "source": "602", "target": "877", "attributes": { "weight": 2 } }, { "key": "10046", "source": "602", "target": "1669", "attributes": { "weight": 1 } }, { "key": "10025", "source": "602", "target": "873", "attributes": { "weight": 2 } }, { "key": "10030", "source": "602", "target": "1661", "attributes": { "weight": 1 } }, { "key": "3044", "source": "602", "target": "875", "attributes": { "weight": 2 } }, { "key": "10024", "source": "602", "target": "1659", "attributes": { "weight": 1 } }, { "key": "10019", "source": "602", "target": "1658", "attributes": { "weight": 1 } }, { "key": "10050", "source": "602", "target": "1672", "attributes": { "weight": 3 } }, { "key": "29189", "source": "602", "target": "2833", "attributes": { "weight": 1 } }, { "key": "3047", "source": "602", "target": "883", "attributes": { "weight": 2 } }, { "key": "10057", "source": "603", "target": "602", "attributes": { "weight": 1 } }, { "key": "4295", "source": "603", "target": "371", "attributes": { "weight": 2 } }, { "key": "26197", "source": "603", "target": "601", "attributes": { "weight": 2 } }, { "key": "1982", "source": "603", "target": "605", "attributes": { "weight": 1 } }, { "key": "24860", "source": "603", "target": "2543", "attributes": { "weight": 2 } }, { "key": "21612", "source": "603", "target": "109", "attributes": { "weight": 3 } }, { "key": "10058", "source": "603", "target": "369", "attributes": { "weight": 3 } }, { "key": "30006", "source": "603", "target": "1349", "attributes": { "weight": 2 } }, { "key": "10587", "source": "603", "target": "30", "attributes": { "weight": 1 } }, { "key": "14012", "source": "603", "target": "1031", "attributes": { "weight": 1 } }, { "key": "7912", "source": "604", "target": "109", "attributes": { "weight": 3 } }, { "key": "37258", "source": "604", "target": "114", "attributes": { "weight": 1 } }, { "key": "21674", "source": "604", "target": "369", "attributes": { "weight": 1 } }, { "key": "28510", "source": "604", "target": "2773", "attributes": { "weight": 1 } }, { "key": "28512", "source": "604", "target": "2776", "attributes": { "weight": 1 } }, { "key": "10078", "source": "604", "target": "602", "attributes": { "weight": 1 } }, { "key": "21675", "source": "604", "target": "108", "attributes": { "weight": 3 } }, { "key": "7911", "source": "604", "target": "1451", "attributes": { "weight": 1 } }, { "key": "24870", "source": "604", "target": "116", "attributes": { "weight": 1 } }, { "key": "28511", "source": "604", "target": "1454", "attributes": { "weight": 1 } }, { "key": "7917", "source": "604", "target": "1505", "attributes": { "weight": 2 } }, { "key": "7913", "source": "604", "target": "1457", "attributes": { "weight": 3 } }, { "key": "8669", "source": "604", "target": "103", "attributes": { "weight": 4 } }, { "key": "7910", "source": "604", "target": "1186", "attributes": { "weight": 1 } }, { "key": "1983", "source": "604", "target": "605", "attributes": { "weight": 1 } }, { "key": "28513", "source": "604", "target": "1507", "attributes": { "weight": 1 } }, { "key": "4657", "source": "604", "target": "607", "attributes": { "weight": 5 } }, { "key": "7914", "source": "604", "target": "1469", "attributes": { "weight": 4 } }, { "key": "7909", "source": "604", "target": "104", "attributes": { "weight": 1 } }, { "key": "7916", "source": "604", "target": "1495", "attributes": { "weight": 1 } }, { "key": "21673", "source": "604", "target": "1445", "attributes": { "weight": 2 } }, { "key": "7915", "source": "604", "target": "1475", "attributes": { "weight": 3 } }, { "key": "28884", "source": "604", "target": "106", "attributes": { "weight": 1 } }, { "key": "1987", "source": "605", "target": "602", "attributes": { "weight": 2 } }, { "key": "10729", "source": "605", "target": "30", "attributes": { "weight": 1 } }, { "key": "1994", "source": "605", "target": "601", "attributes": { "weight": 2 } }, { "key": "14056", "source": "605", "target": "1031", "attributes": { "weight": 1 } }, { "key": "35210", "source": "605", "target": "471", "attributes": { "weight": 1 } }, { "key": "1988", "source": "605", "target": "603", "attributes": { "weight": 1 } }, { "key": "1993", "source": "605", "target": "607", "attributes": { "weight": 2 } }, { "key": "5723", "source": "605", "target": "371", "attributes": { "weight": 2 } }, { "key": "1990", "source": "605", "target": "369", "attributes": { "weight": 4 } }, { "key": "1989", "source": "605", "target": "604", "attributes": { "weight": 1 } }, { "key": "1991", "source": "605", "target": "108", "attributes": { "weight": 1 } }, { "key": "1992", "source": "605", "target": "109", "attributes": { "weight": 5 } }, { "key": "1995", "source": "606", "target": "602", "attributes": { "weight": 2 } }, { "key": "3065", "source": "606", "target": "882", "attributes": { "weight": 1 } }, { "key": "14061", "source": "607", "target": "1031", "attributes": { "weight": 1 } }, { "key": "8048", "source": "607", "target": "1457", "attributes": { "weight": 1 } }, { "key": "1996", "source": "607", "target": "605", "attributes": { "weight": 2 } }, { "key": "21770", "source": "607", "target": "1445", "attributes": { "weight": 2 } }, { "key": "32928", "source": "607", "target": "470", "attributes": { "weight": 1 } }, { "key": "8057", "source": "607", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8054", "source": "607", "target": "1484", "attributes": { "weight": 2 } }, { "key": "8052", "source": "607", "target": "1479", "attributes": { "weight": 1 } }, { "key": "28528", "source": "607", "target": "2778", "attributes": { "weight": 1 } }, { "key": "28527", "source": "607", "target": "2774", "attributes": { "weight": 1 } }, { "key": "21771", "source": "607", "target": "369", "attributes": { "weight": 1 } }, { "key": "8046", "source": "607", "target": "604", "attributes": { "weight": 3 } }, { "key": "10124", "source": "607", "target": "602", "attributes": { "weight": 1 } }, { "key": "8049", "source": "607", "target": "1465", "attributes": { "weight": 1 } }, { "key": "8055", "source": "607", "target": "1492", "attributes": { "weight": 2 } }, { "key": "8058", "source": "607", "target": "1507", "attributes": { "weight": 1 } }, { "key": "21769", "source": "607", "target": "103", "attributes": { "weight": 2 } }, { "key": "8056", "source": "607", "target": "1495", "attributes": { "weight": 1 } }, { "key": "10734", "source": "607", "target": "30", "attributes": { "weight": 2 } }, { "key": "8051", "source": "607", "target": "1475", "attributes": { "weight": 1 } }, { "key": "8053", "source": "607", "target": "1483", "attributes": { "weight": 1 } }, { "key": "8047", "source": "607", "target": "109", "attributes": { "weight": 4 } }, { "key": "8050", "source": "607", "target": "1469", "attributes": { "weight": 1 } }, { "key": "21772", "source": "607", "target": "1454", "attributes": { "weight": 2 } }, { "key": "6179", "source": "607", "target": "371", "attributes": { "weight": 2 } }, { "key": "21773", "source": "607", "target": "108", "attributes": { "weight": 3 } }, { "key": "8045", "source": "607", "target": "1186", "attributes": { "weight": 1 } }, { "key": "2426", "source": "608", "target": "706", "attributes": { "weight": 1 } }, { "key": "2425", "source": "608", "target": "619", "attributes": { "weight": 2 } }, { "key": "1998", "source": "608", "target": "611", "attributes": { "weight": 2 } }, { "key": "1999", "source": "608", "target": "626", "attributes": { "weight": 1 } }, { "key": "2427", "source": "609", "target": "617", "attributes": { "weight": 1 } }, { "key": "2000", "source": "609", "target": "610", "attributes": { "weight": 2 } }, { "key": "2002", "source": "609", "target": "378", "attributes": { "weight": 2 } }, { "key": "2001", "source": "609", "target": "628", "attributes": { "weight": 1 } }, { "key": "2428", "source": "610", "target": "676", "attributes": { "weight": 1 } }, { "key": "2004", "source": "610", "target": "378", "attributes": { "weight": 2 } }, { "key": "2003", "source": "610", "target": "609", "attributes": { "weight": 2 } }, { "key": "2005", "source": "611", "target": "608", "attributes": { "weight": 2 } }, { "key": "2429", "source": "611", "target": "630", "attributes": { "weight": 1 } }, { "key": "2006", "source": "611", "target": "619", "attributes": { "weight": 3 } }, { "key": "2007", "source": "612", "target": "615", "attributes": { "weight": 2 } }, { "key": "2008", "source": "612", "target": "618", "attributes": { "weight": 2 } }, { "key": "2010", "source": "613", "target": "626", "attributes": { "weight": 3 } }, { "key": "2430", "source": "613", "target": "619", "attributes": { "weight": 2 } }, { "key": "2011", "source": "613", "target": "629", "attributes": { "weight": 2 } }, { "key": "2322", "source": "614", "target": "678", "attributes": { "weight": 1 } }, { "key": "2323", "source": "614", "target": "679", "attributes": { "weight": 1 } }, { "key": "23709", "source": "614", "target": "2451", "attributes": { "weight": 1 } }, { "key": "2324", "source": "614", "target": "680", "attributes": { "weight": 1 } }, { "key": "2321", "source": "614", "target": "677", "attributes": { "weight": 1 } }, { "key": "2320", "source": "614", "target": "676", "attributes": { "weight": 1 } }, { "key": "2012", "source": "614", "target": "624", "attributes": { "weight": 2 } }, { "key": "2017", "source": "615", "target": "620", "attributes": { "weight": 2 } }, { "key": "2431", "source": "615", "target": "702", "attributes": { "weight": 1 } }, { "key": "2433", "source": "615", "target": "156", "attributes": { "weight": 1 } }, { "key": "2014", "source": "615", "target": "616", "attributes": { "weight": 2 } }, { "key": "2015", "source": "615", "target": "375", "attributes": { "weight": 2 } }, { "key": "2016", "source": "615", "target": "619", "attributes": { "weight": 3 } }, { "key": "2019", "source": "615", "target": "627", "attributes": { "weight": 2 } }, { "key": "2013", "source": "615", "target": "612", "attributes": { "weight": 2 } }, { "key": "2018", "source": "615", "target": "622", "attributes": { "weight": 2 } }, { "key": "2432", "source": "615", "target": "705", "attributes": { "weight": 1 } }, { "key": "2022", "source": "616", "target": "622", "attributes": { "weight": 2 } }, { "key": "2020", "source": "616", "target": "615", "attributes": { "weight": 2 } }, { "key": "2021", "source": "616", "target": "618", "attributes": { "weight": 1 } }, { "key": "2436", "source": "617", "target": "609", "attributes": { "weight": 1 } }, { "key": "2024", "source": "617", "target": "378", "attributes": { "weight": 1 } }, { "key": "2023", "source": "617", "target": "628", "attributes": { "weight": 2 } }, { "key": "2025", "source": "618", "target": "612", "attributes": { "weight": 2 } }, { "key": "2026", "source": "618", "target": "616", "attributes": { "weight": 1 } }, { "key": "2032", "source": "619", "target": "706", "attributes": { "weight": 2 } }, { "key": "2035", "source": "619", "target": "630", "attributes": { "weight": 2 } }, { "key": "2030", "source": "619", "target": "613", "attributes": { "weight": 3 } }, { "key": "2441", "source": "619", "target": "626", "attributes": { "weight": 2 } }, { "key": "27767", "source": "619", "target": "621", "attributes": { "weight": 1 } }, { "key": "2028", "source": "619", "target": "608", "attributes": { "weight": 3 } }, { "key": "2031", "source": "619", "target": "615", "attributes": { "weight": 2 } }, { "key": "2033", "source": "619", "target": "629", "attributes": { "weight": 2 } }, { "key": "2034", "source": "619", "target": "378", "attributes": { "weight": 3 } }, { "key": "2029", "source": "619", "target": "611", "attributes": { "weight": 3 } }, { "key": "2440", "source": "619", "target": "625", "attributes": { "weight": 2 } }, { "key": "2036", "source": "620", "target": "615", "attributes": { "weight": 2 } }, { "key": "2442", "source": "620", "target": "630", "attributes": { "weight": 1 } }, { "key": "27770", "source": "621", "target": "2713", "attributes": { "weight": 1 } }, { "key": "27772", "source": "621", "target": "625", "attributes": { "weight": 1 } }, { "key": "27769", "source": "621", "target": "2583", "attributes": { "weight": 1 } }, { "key": "27771", "source": "621", "target": "2585", "attributes": { "weight": 1 } }, { "key": "2037", "source": "621", "target": "629", "attributes": { "weight": 2 } }, { "key": "2038", "source": "622", "target": "615", "attributes": { "weight": 2 } }, { "key": "2039", "source": "622", "target": "616", "attributes": { "weight": 2 } }, { "key": "2040", "source": "623", "target": "627", "attributes": { "weight": 2 } }, { "key": "23712", "source": "624", "target": "2451", "attributes": { "weight": 1 } }, { "key": "2042", "source": "624", "target": "378", "attributes": { "weight": 2 } }, { "key": "2041", "source": "624", "target": "614", "attributes": { "weight": 2 } }, { "key": "23713", "source": "624", "target": "2453", "attributes": { "weight": 1 } }, { "key": "27777", "source": "625", "target": "621", "attributes": { "weight": 1 } }, { "key": "7631", "source": "625", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7626", "source": "625", "target": "1408", "attributes": { "weight": 2 } }, { "key": "7627", "source": "625", "target": "154", "attributes": { "weight": 3 } }, { "key": "7622", "source": "625", "target": "123", "attributes": { "weight": 2 } }, { "key": "7624", "source": "625", "target": "375", "attributes": { "weight": 2 } }, { "key": "2044", "source": "625", "target": "629", "attributes": { "weight": 2 } }, { "key": "7625", "source": "625", "target": "1407", "attributes": { "weight": 2 } }, { "key": "36805", "source": "625", "target": "337", "attributes": { "weight": 1 } }, { "key": "7621", "source": "625", "target": "1197", "attributes": { "weight": 2 } }, { "key": "25427", "source": "625", "target": "2585", "attributes": { "weight": 2 } }, { "key": "7629", "source": "625", "target": "1417", "attributes": { "weight": 2 } }, { "key": "16408", "source": "625", "target": "925", "attributes": { "weight": 1 } }, { "key": "36806", "source": "625", "target": "1419", "attributes": { "weight": 1 } }, { "key": "7623", "source": "625", "target": "373", "attributes": { "weight": 3 } }, { "key": "27776", "source": "625", "target": "151", "attributes": { "weight": 1 } }, { "key": "2043", "source": "625", "target": "619", "attributes": { "weight": 3 } }, { "key": "25426", "source": "625", "target": "2583", "attributes": { "weight": 2 } }, { "key": "7628", "source": "625", "target": "333", "attributes": { "weight": 2 } }, { "key": "7630", "source": "625", "target": "377", "attributes": { "weight": 2 } }, { "key": "25429", "source": "625", "target": "2587", "attributes": { "weight": 1 } }, { "key": "25428", "source": "625", "target": "2586", "attributes": { "weight": 1 } }, { "key": "27775", "source": "625", "target": "2713", "attributes": { "weight": 1 } }, { "key": "2045", "source": "626", "target": "619", "attributes": { "weight": 3 } }, { "key": "2447", "source": "626", "target": "613", "attributes": { "weight": 2 } }, { "key": "2047", "source": "627", "target": "623", "attributes": { "weight": 2 } }, { "key": "2046", "source": "627", "target": "615", "attributes": { "weight": 2 } }, { "key": "2448", "source": "628", "target": "378", "attributes": { "weight": 1 } }, { "key": "2048", "source": "628", "target": "609", "attributes": { "weight": 1 } }, { "key": "2049", "source": "628", "target": "617", "attributes": { "weight": 2 } }, { "key": "2053", "source": "629", "target": "625", "attributes": { "weight": 2 } }, { "key": "2050", "source": "629", "target": "613", "attributes": { "weight": 2 } }, { "key": "2051", "source": "629", "target": "619", "attributes": { "weight": 2 } }, { "key": "2052", "source": "629", "target": "621", "attributes": { "weight": 2 } }, { "key": "2061", "source": "630", "target": "619", "attributes": { "weight": 2 } }, { "key": "2451", "source": "630", "target": "611", "attributes": { "weight": 1 } }, { "key": "2452", "source": "630", "target": "620", "attributes": { "weight": 1 } }, { "key": "2062", "source": "630", "target": "706", "attributes": { "weight": 2 } }, { "key": "2063", "source": "631", "target": "632", "attributes": { "weight": 2 } }, { "key": "3485", "source": "631", "target": "986", "attributes": { "weight": 2 } }, { "key": "33913", "source": "631", "target": "1233", "attributes": { "weight": 1 } }, { "key": "15570", "source": "631", "target": "338", "attributes": { "weight": 1 } }, { "key": "15569", "source": "631", "target": "195", "attributes": { "weight": 1 } }, { "key": "4436", "source": "631", "target": "368", "attributes": { "weight": 2 } }, { "key": "3479", "source": "631", "target": "387", "attributes": { "weight": 1 } }, { "key": "4437", "source": "631", "target": "371", "attributes": { "weight": 2 } }, { "key": "33912", "source": "631", "target": "1047", "attributes": { "weight": 1 } }, { "key": "3483", "source": "631", "target": "633", "attributes": { "weight": 1 } }, { "key": "3481", "source": "631", "target": "397", "attributes": { "weight": 1 } }, { "key": "3484", "source": "631", "target": "634", "attributes": { "weight": 1 } }, { "key": "4435", "source": "631", "target": "779", "attributes": { "weight": 2 } }, { "key": "10643", "source": "631", "target": "1314", "attributes": { "weight": 1 } }, { "key": "2064", "source": "632", "target": "631", "attributes": { "weight": 2 } }, { "key": "2065", "source": "632", "target": "391", "attributes": { "weight": 1 } }, { "key": "10742", "source": "633", "target": "1314", "attributes": { "weight": 1 } }, { "key": "29261", "source": "633", "target": "2628", "attributes": { "weight": 1 } }, { "key": "6249", "source": "633", "target": "368", "attributes": { "weight": 2 } }, { "key": "16243", "source": "633", "target": "195", "attributes": { "weight": 1 } }, { "key": "6250", "source": "633", "target": "371", "attributes": { "weight": 2 } }, { "key": "13830", "source": "633", "target": "635", "attributes": { "weight": 2 } }, { "key": "3502", "source": "633", "target": "631", "attributes": { "weight": 1 } }, { "key": "13829", "source": "633", "target": "634", "attributes": { "weight": 2 } }, { "key": "2069", "source": "633", "target": "391", "attributes": { "weight": 2 } }, { "key": "34701", "source": "633", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34708", "source": "634", "target": "1233", "attributes": { "weight": 1 } }, { "key": "3503", "source": "634", "target": "631", "attributes": { "weight": 1 } }, { "key": "2070", "source": "634", "target": "391", "attributes": { "weight": 4 } }, { "key": "28604", "source": "634", "target": "199", "attributes": { "weight": 1 } }, { "key": "10769", "source": "634", "target": "407", "attributes": { "weight": 2 } }, { "key": "14119", "source": "634", "target": "1031", "attributes": { "weight": 1 } }, { "key": "13831", "source": "634", "target": "633", "attributes": { "weight": 2 } }, { "key": "13832", "source": "634", "target": "635", "attributes": { "weight": 1 } }, { "key": "10767", "source": "634", "target": "370", "attributes": { "weight": 1 } }, { "key": "29262", "source": "634", "target": "2628", "attributes": { "weight": 1 } }, { "key": "9899", "source": "634", "target": "396", "attributes": { "weight": 1 } }, { "key": "16245", "source": "634", "target": "195", "attributes": { "weight": 1 } }, { "key": "34707", "source": "634", "target": "1047", "attributes": { "weight": 1 } }, { "key": "10768", "source": "634", "target": "1314", "attributes": { "weight": 1 } }, { "key": "6274", "source": "634", "target": "371", "attributes": { "weight": 4 } }, { "key": "14125", "source": "635", "target": "1031", "attributes": { "weight": 1 } }, { "key": "34819", "source": "635", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6449", "source": "635", "target": "371", "attributes": { "weight": 2 } }, { "key": "16373", "source": "635", "target": "195", "attributes": { "weight": 1 } }, { "key": "10785", "source": "635", "target": "1314", "attributes": { "weight": 1 } }, { "key": "13833", "source": "635", "target": "1935", "attributes": { "weight": 1 } }, { "key": "10786", "source": "635", "target": "407", "attributes": { "weight": 3 } }, { "key": "29263", "source": "635", "target": "2628", "attributes": { "weight": 1 } }, { "key": "13835", "source": "635", "target": "634", "attributes": { "weight": 1 } }, { "key": "2071", "source": "635", "target": "391", "attributes": { "weight": 4 } }, { "key": "13834", "source": "635", "target": "633", "attributes": { "weight": 2 } }, { "key": "30981", "source": "636", "target": "2177", "attributes": { "weight": 1 } }, { "key": "30979", "source": "636", "target": "3026", "attributes": { "weight": 1 } }, { "key": "30982", "source": "636", "target": "3028", "attributes": { "weight": 1 } }, { "key": "30980", "source": "636", "target": "3027", "attributes": { "weight": 1 } }, { "key": "12539", "source": "636", "target": "1866", "attributes": { "weight": 1 } }, { "key": "30983", "source": "636", "target": "3036", "attributes": { "weight": 1 } }, { "key": "11856", "source": "636", "target": "638", "attributes": { "weight": 9 } }, { "key": "30355", "source": "636", "target": "1046", "attributes": { "weight": 1 } }, { "key": "16435", "source": "636", "target": "1387", "attributes": { "weight": 1 } }, { "key": "30984", "source": "636", "target": "1816", "attributes": { "weight": 2 } }, { "key": "30978", "source": "636", "target": "2534", "attributes": { "weight": 1 } }, { "key": "24827", "source": "636", "target": "2535", "attributes": { "weight": 3 } }, { "key": "24826", "source": "636", "target": "2533", "attributes": { "weight": 2 } }, { "key": "11855", "source": "636", "target": "1809", "attributes": { "weight": 4 } }, { "key": "12540", "source": "636", "target": "1867", "attributes": { "weight": 1 } }, { "key": "11857", "source": "636", "target": "1813", "attributes": { "weight": 3 } }, { "key": "4637", "source": "636", "target": "468", "attributes": { "weight": 3 } }, { "key": "17352", "source": "636", "target": "358", "attributes": { "weight": 2 } }, { "key": "27732", "source": "636", "target": "1553", "attributes": { "weight": 1 } }, { "key": "30985", "source": "636", "target": "3039", "attributes": { "weight": 1 } }, { "key": "11041", "source": "636", "target": "220", "attributes": { "weight": 2 } }, { "key": "30977", "source": "636", "target": "2712", "attributes": { "weight": 1 } }, { "key": "2072", "source": "636", "target": "640", "attributes": { "weight": 1 } }, { "key": "31954", "source": "638", "target": "359", "attributes": { "weight": 1 } }, { "key": "31025", "source": "638", "target": "3028", "attributes": { "weight": 1 } }, { "key": "11900", "source": "638", "target": "1813", "attributes": { "weight": 3 } }, { "key": "31029", "source": "638", "target": "1559", "attributes": { "weight": 1 } }, { "key": "31011", "source": "638", "target": "164", "attributes": { "weight": 2 } }, { "key": "5235", "source": "638", "target": "468", "attributes": { "weight": 6 } }, { "key": "31024", "source": "638", "target": "1550", "attributes": { "weight": 1 } }, { "key": "31026", "source": "638", "target": "3029", "attributes": { "weight": 1 } }, { "key": "27868", "source": "638", "target": "339", "attributes": { "weight": 2 } }, { "key": "31033", "source": "638", "target": "3034", "attributes": { "weight": 1 } }, { "key": "27266", "source": "638", "target": "57", "attributes": { "weight": 2 } }, { "key": "29203", "source": "638", "target": "178", "attributes": { "weight": 4 } }, { "key": "31014", "source": "638", "target": "1527", "attributes": { "weight": 1 } }, { "key": "27364", "source": "638", "target": "340", "attributes": { "weight": 1 } }, { "key": "17902", "source": "638", "target": "2167", "attributes": { "weight": 2 } }, { "key": "31007", "source": "638", "target": "35", "attributes": { "weight": 1 } }, { "key": "26595", "source": "638", "target": "454", "attributes": { "weight": 3 } }, { "key": "31032", "source": "638", "target": "3033", "attributes": { "weight": 1 } }, { "key": "31017", "source": "638", "target": "1384", "attributes": { "weight": 1 } }, { "key": "25869", "source": "638", "target": "220", "attributes": { "weight": 1 } }, { "key": "32531", "source": "638", "target": "791", "attributes": { "weight": 1 } }, { "key": "11591", "source": "638", "target": "370", "attributes": { "weight": 4 } }, { "key": "17471", "source": "638", "target": "358", "attributes": { "weight": 2 } }, { "key": "31021", "source": "638", "target": "1544", "attributes": { "weight": 1 } }, { "key": "31009", "source": "638", "target": "3024", "attributes": { "weight": 2 } }, { "key": "12763", "source": "638", "target": "1878", "attributes": { "weight": 2 } }, { "key": "31015", "source": "638", "target": "39", "attributes": { "weight": 3 } }, { "key": "15896", "source": "638", "target": "195", "attributes": { "weight": 1 } }, { "key": "16440", "source": "638", "target": "1387", "attributes": { "weight": 2 } }, { "key": "31013", "source": "638", "target": "1524", "attributes": { "weight": 1 } }, { "key": "31016", "source": "638", "target": "1133", "attributes": { "weight": 1 } }, { "key": "31022", "source": "638", "target": "1548", "attributes": { "weight": 1 } }, { "key": "15099", "source": "638", "target": "1995", "attributes": { "weight": 2 } }, { "key": "31031", "source": "638", "target": "3032", "attributes": { "weight": 1 } }, { "key": "8791", "source": "638", "target": "442", "attributes": { "weight": 2 } }, { "key": "30214", "source": "638", "target": "173", "attributes": { "weight": 2 } }, { "key": "31010", "source": "638", "target": "2533", "attributes": { "weight": 1 } }, { "key": "31038", "source": "638", "target": "3039", "attributes": { "weight": 1 } }, { "key": "31028", "source": "638", "target": "3031", "attributes": { "weight": 1 } }, { "key": "31030", "source": "638", "target": "2626", "attributes": { "weight": 1 } }, { "key": "31019", "source": "638", "target": "1386", "attributes": { "weight": 2 } }, { "key": "23259", "source": "638", "target": "1772", "attributes": { "weight": 2 } }, { "key": "14261", "source": "638", "target": "168", "attributes": { "weight": 2 } }, { "key": "32654", "source": "638", "target": "3110", "attributes": { "weight": 1 } }, { "key": "24830", "source": "638", "target": "2534", "attributes": { "weight": 3 } }, { "key": "3798", "source": "638", "target": "645", "attributes": { "weight": 3 } }, { "key": "11899", "source": "638", "target": "1553", "attributes": { "weight": 3 } }, { "key": "12551", "source": "638", "target": "1864", "attributes": { "weight": 2 } }, { "key": "31035", "source": "638", "target": "3036", "attributes": { "weight": 1 } }, { "key": "24831", "source": "638", "target": "562", "attributes": { "weight": 1 } }, { "key": "11898", "source": "638", "target": "1551", "attributes": { "weight": 2 } }, { "key": "12553", "source": "638", "target": "1866", "attributes": { "weight": 2 } }, { "key": "31036", "source": "638", "target": "3037", "attributes": { "weight": 1 } }, { "key": "30456", "source": "638", "target": "2177", "attributes": { "weight": 3 } }, { "key": "31037", "source": "638", "target": "3038", "attributes": { "weight": 2 } }, { "key": "11902", "source": "638", "target": "1816", "attributes": { "weight": 5 } }, { "key": "27458", "source": "638", "target": "1567", "attributes": { "weight": 2 } }, { "key": "31018", "source": "638", "target": "3026", "attributes": { "weight": 1 } }, { "key": "26596", "source": "638", "target": "189", "attributes": { "weight": 3 } }, { "key": "24888", "source": "638", "target": "109", "attributes": { "weight": 2 } }, { "key": "35188", "source": "638", "target": "1562", "attributes": { "weight": 1 } }, { "key": "11896", "source": "638", "target": "1809", "attributes": { "weight": 4 } }, { "key": "30215", "source": "638", "target": "310", "attributes": { "weight": 2 } }, { "key": "12554", "source": "638", "target": "1867", "attributes": { "weight": 2 } }, { "key": "27761", "source": "638", "target": "2712", "attributes": { "weight": 2 } }, { "key": "31023", "source": "638", "target": "136", "attributes": { "weight": 2 } }, { "key": "17901", "source": "638", "target": "1380", "attributes": { "weight": 2 } }, { "key": "31034", "source": "638", "target": "3035", "attributes": { "weight": 2 } }, { "key": "26054", "source": "638", "target": "163", "attributes": { "weight": 2 } }, { "key": "30455", "source": "638", "target": "1046", "attributes": { "weight": 1 } }, { "key": "31027", "source": "638", "target": "3030", "attributes": { "weight": 1 } }, { "key": "11897", "source": "638", "target": "1539", "attributes": { "weight": 3 } }, { "key": "12552", "source": "638", "target": "1865", "attributes": { "weight": 1 } }, { "key": "11901", "source": "638", "target": "1815", "attributes": { "weight": 3 } }, { "key": "11895", "source": "638", "target": "636", "attributes": { "weight": 9 } }, { "key": "31008", "source": "638", "target": "2624", "attributes": { "weight": 2 } }, { "key": "31012", "source": "638", "target": "3025", "attributes": { "weight": 2 } }, { "key": "2075", "source": "638", "target": "639", "attributes": { "weight": 1 } }, { "key": "11160", "source": "638", "target": "1036", "attributes": { "weight": 4 } }, { "key": "31020", "source": "638", "target": "3027", "attributes": { "weight": 1 } }, { "key": "2076", "source": "639", "target": "638", "attributes": { "weight": 1 } }, { "key": "2077", "source": "640", "target": "636", "attributes": { "weight": 1 } }, { "key": "2078", "source": "640", "target": "638", "attributes": { "weight": 1 } }, { "key": "21502", "source": "641", "target": "89", "attributes": { "weight": 1 } }, { "key": "2084", "source": "641", "target": "651", "attributes": { "weight": 3 } }, { "key": "2087", "source": "641", "target": "664", "attributes": { "weight": 2 } }, { "key": "31460", "source": "641", "target": "178", "attributes": { "weight": 1 } }, { "key": "22260", "source": "641", "target": "794", "attributes": { "weight": 1 } }, { "key": "2081", "source": "641", "target": "354", "attributes": { "weight": 2 } }, { "key": "28920", "source": "641", "target": "171", "attributes": { "weight": 1 } }, { "key": "9383", "source": "641", "target": "1056", "attributes": { "weight": 1 } }, { "key": "2082", "source": "641", "target": "419", "attributes": { "weight": 6 } }, { "key": "31139", "source": "641", "target": "362", "attributes": { "weight": 1 } }, { "key": "2083", "source": "641", "target": "650", "attributes": { "weight": 1 } }, { "key": "2086", "source": "641", "target": "661", "attributes": { "weight": 2 } }, { "key": "17329", "source": "641", "target": "358", "attributes": { "weight": 2 } }, { "key": "30333", "source": "641", "target": "1046", "attributes": { "weight": 1 } }, { "key": "3665", "source": "641", "target": "1036", "attributes": { "weight": 2 } }, { "key": "2079", "source": "641", "target": "644", "attributes": { "weight": 1 } }, { "key": "2080", "source": "641", "target": "645", "attributes": { "weight": 6 } }, { "key": "2085", "source": "641", "target": "659", "attributes": { "weight": 1 } }, { "key": "2092", "source": "642", "target": "651", "attributes": { "weight": 1 } }, { "key": "2093", "source": "642", "target": "669", "attributes": { "weight": 1 } }, { "key": "9384", "source": "642", "target": "1054", "attributes": { "weight": 1 } }, { "key": "2090", "source": "642", "target": "354", "attributes": { "weight": 1 } }, { "key": "2091", "source": "642", "target": "419", "attributes": { "weight": 2 } }, { "key": "2088", "source": "642", "target": "644", "attributes": { "weight": 1 } }, { "key": "2089", "source": "642", "target": "645", "attributes": { "weight": 2 } }, { "key": "2094", "source": "643", "target": "645", "attributes": { "weight": 3 } }, { "key": "2095", "source": "643", "target": "419", "attributes": { "weight": 2 } }, { "key": "2100", "source": "644", "target": "645", "attributes": { "weight": 6 } }, { "key": "2102", "source": "644", "target": "647", "attributes": { "weight": 5 } }, { "key": "2113", "source": "644", "target": "669", "attributes": { "weight": 4 } }, { "key": "3687", "source": "644", "target": "1049", "attributes": { "weight": 4 } }, { "key": "14178", "source": "644", "target": "168", "attributes": { "weight": 2 } }, { "key": "31146", "source": "644", "target": "1615", "attributes": { "weight": 1 } }, { "key": "4360", "source": "644", "target": "468", "attributes": { "weight": 2 } }, { "key": "3685", "source": "644", "target": "646", "attributes": { "weight": 2 } }, { "key": "31143", "source": "644", "target": "3042", "attributes": { "weight": 1 } }, { "key": "22266", "source": "644", "target": "794", "attributes": { "weight": 1 } }, { "key": "3684", "source": "644", "target": "1036", "attributes": { "weight": 3 } }, { "key": "3688", "source": "644", "target": "171", "attributes": { "weight": 3 } }, { "key": "31848", "source": "644", "target": "359", "attributes": { "weight": 1 } }, { "key": "31145", "source": "644", "target": "3044", "attributes": { "weight": 1 } }, { "key": "31142", "source": "644", "target": "1041", "attributes": { "weight": 1 } }, { "key": "2105", "source": "644", "target": "650", "attributes": { "weight": 6 } }, { "key": "17339", "source": "644", "target": "358", "attributes": { "weight": 1 } }, { "key": "8463", "source": "644", "target": "442", "attributes": { "weight": 1 } }, { "key": "31849", "source": "644", "target": "1060", "attributes": { "weight": 1 } }, { "key": "2103", "source": "644", "target": "419", "attributes": { "weight": 6 } }, { "key": "27704", "source": "644", "target": "1042", "attributes": { "weight": 2 } }, { "key": "2110", "source": "644", "target": "662", "attributes": { "weight": 1 } }, { "key": "2106", "source": "644", "target": "651", "attributes": { "weight": 5 } }, { "key": "30341", "source": "644", "target": "1046", "attributes": { "weight": 1 } }, { "key": "9386", "source": "644", "target": "454", "attributes": { "weight": 2 } }, { "key": "2101", "source": "644", "target": "354", "attributes": { "weight": 5 } }, { "key": "2107", "source": "644", "target": "659", "attributes": { "weight": 1 } }, { "key": "2108", "source": "644", "target": "660", "attributes": { "weight": 1 } }, { "key": "2099", "source": "644", "target": "642", "attributes": { "weight": 1 } }, { "key": "2111", "source": "644", "target": "664", "attributes": { "weight": 5 } }, { "key": "3686", "source": "644", "target": "652", "attributes": { "weight": 2 } }, { "key": "36947", "source": "644", "target": "362", "attributes": { "weight": 1 } }, { "key": "31144", "source": "644", "target": "3043", "attributes": { "weight": 1 } }, { "key": "2104", "source": "644", "target": "649", "attributes": { "weight": 1 } }, { "key": "27667", "source": "644", "target": "178", "attributes": { "weight": 3 } }, { "key": "2098", "source": "644", "target": "641", "attributes": { "weight": 1 } }, { "key": "31847", "source": "644", "target": "1045", "attributes": { "weight": 1 } }, { "key": "32264", "source": "644", "target": "164", "attributes": { "weight": 1 } }, { "key": "2109", "source": "644", "target": "661", "attributes": { "weight": 6 } }, { "key": "2112", "source": "644", "target": "667", "attributes": { "weight": 4 } }, { "key": "3691", "source": "645", "target": "1038", "attributes": { "weight": 2 } }, { "key": "3714", "source": "645", "target": "664", "attributes": { "weight": 2 } }, { "key": "2132", "source": "645", "target": "362", "attributes": { "weight": 4 } }, { "key": "3701", "source": "645", "target": "1046", "attributes": { "weight": 3 } }, { "key": "9398", "source": "645", "target": "668", "attributes": { "weight": 1 } }, { "key": "3699", "source": "645", "target": "1044", "attributes": { "weight": 2 } }, { "key": "3708", "source": "645", "target": "361", "attributes": { "weight": 1 } }, { "key": "3712", "source": "645", "target": "163", "attributes": { "weight": 2 } }, { "key": "3705", "source": "645", "target": "1055", "attributes": { "weight": 3 } }, { "key": "3719", "source": "645", "target": "1062", "attributes": { "weight": 3 } }, { "key": "12891", "source": "645", "target": "264", "attributes": { "weight": 1 } }, { "key": "8471", "source": "645", "target": "442", "attributes": { "weight": 1 } }, { "key": "2120", "source": "645", "target": "647", "attributes": { "weight": 7 } }, { "key": "3710", "source": "645", "target": "1056", "attributes": { "weight": 2 } }, { "key": "2134", "source": "645", "target": "663", "attributes": { "weight": 2 } }, { "key": "3695", "source": "645", "target": "223", "attributes": { "weight": 2 } }, { "key": "3702", "source": "645", "target": "168", "attributes": { "weight": 3 } }, { "key": "3698", "source": "645", "target": "357", "attributes": { "weight": 1 } }, { "key": "2126", "source": "645", "target": "652", "attributes": { "weight": 4 } }, { "key": "2122", "source": "645", "target": "358", "attributes": { "weight": 4 } }, { "key": "9399", "source": "645", "target": "57", "attributes": { "weight": 2 } }, { "key": "31150", "source": "645", "target": "1613", "attributes": { "weight": 1 } }, { "key": "24610", "source": "645", "target": "2232", "attributes": { "weight": 1 } }, { "key": "2131", "source": "645", "target": "661", "attributes": { "weight": 7 } }, { "key": "3707", "source": "645", "target": "638", "attributes": { "weight": 3 } }, { "key": "2118", "source": "645", "target": "354", "attributes": { "weight": 5 } }, { "key": "3713", "source": "645", "target": "580", "attributes": { "weight": 2 } }, { "key": "2125", "source": "645", "target": "651", "attributes": { "weight": 5 } }, { "key": "9387", "source": "645", "target": "1380", "attributes": { "weight": 2 } }, { "key": "24482", "source": "645", "target": "790", "attributes": { "weight": 1 } }, { "key": "9393", "source": "645", "target": "791", "attributes": { "weight": 2 } }, { "key": "9395", "source": "645", "target": "1606", "attributes": { "weight": 1 } }, { "key": "3689", "source": "645", "target": "1036", "attributes": { "weight": 4 } }, { "key": "2115", "source": "645", "target": "642", "attributes": { "weight": 2 } }, { "key": "3716", "source": "645", "target": "665", "attributes": { "weight": 3 } }, { "key": "2124", "source": "645", "target": "650", "attributes": { "weight": 6 } }, { "key": "3715", "source": "645", "target": "1058", "attributes": { "weight": 3 } }, { "key": "2117", "source": "645", "target": "644", "attributes": { "weight": 6 } }, { "key": "15542", "source": "645", "target": "220", "attributes": { "weight": 2 } }, { "key": "30700", "source": "645", "target": "889", "attributes": { "weight": 1 } }, { "key": "3692", "source": "645", "target": "1039", "attributes": { "weight": 3 } }, { "key": "2128", "source": "645", "target": "657", "attributes": { "weight": 1 } }, { "key": "31148", "source": "645", "target": "3042", "attributes": { "weight": 1 } }, { "key": "2123", "source": "645", "target": "649", "attributes": { "weight": 1 } }, { "key": "2121", "source": "645", "target": "419", "attributes": { "weight": 6 } }, { "key": "2129", "source": "645", "target": "659", "attributes": { "weight": 5 } }, { "key": "2130", "source": "645", "target": "660", "attributes": { "weight": 5 } }, { "key": "3700", "source": "645", "target": "1045", "attributes": { "weight": 2 } }, { "key": "2136", "source": "645", "target": "667", "attributes": { "weight": 6 } }, { "key": "9392", "source": "645", "target": "1603", "attributes": { "weight": 1 } }, { "key": "2127", "source": "645", "target": "656", "attributes": { "weight": 4 } }, { "key": "29608", "source": "645", "target": "1763", "attributes": { "weight": 1 } }, { "key": "3704", "source": "645", "target": "1053", "attributes": { "weight": 3 } }, { "key": "2116", "source": "645", "target": "643", "attributes": { "weight": 3 } }, { "key": "31147", "source": "645", "target": "1035", "attributes": { "weight": 1 } }, { "key": "3694", "source": "645", "target": "164", "attributes": { "weight": 5 } }, { "key": "9389", "source": "645", "target": "339", "attributes": { "weight": 2 } }, { "key": "9388", "source": "645", "target": "1599", "attributes": { "weight": 1 } }, { "key": "25666", "source": "645", "target": "278", "attributes": { "weight": 1 } }, { "key": "2133", "source": "645", "target": "662", "attributes": { "weight": 5 } }, { "key": "3717", "source": "645", "target": "1060", "attributes": { "weight": 3 } }, { "key": "3703", "source": "645", "target": "1049", "attributes": { "weight": 5 } }, { "key": "24611", "source": "645", "target": "2118", "attributes": { "weight": 1 } }, { "key": "3706", "source": "645", "target": "359", "attributes": { "weight": 3 } }, { "key": "3697", "source": "645", "target": "1042", "attributes": { "weight": 4 } }, { "key": "22267", "source": "645", "target": "794", "attributes": { "weight": 1 } }, { "key": "9394", "source": "645", "target": "1605", "attributes": { "weight": 1 } }, { "key": "2114", "source": "645", "target": "641", "attributes": { "weight": 6 } }, { "key": "2119", "source": "645", "target": "646", "attributes": { "weight": 5 } }, { "key": "9396", "source": "645", "target": "1553", "attributes": { "weight": 2 } }, { "key": "3693", "source": "645", "target": "1040", "attributes": { "weight": 2 } }, { "key": "9391", "source": "645", "target": "454", "attributes": { "weight": 2 } }, { "key": "3711", "source": "645", "target": "468", "attributes": { "weight": 5 } }, { "key": "3709", "source": "645", "target": "171", "attributes": { "weight": 3 } }, { "key": "9397", "source": "645", "target": "189", "attributes": { "weight": 2 } }, { "key": "3690", "source": "645", "target": "1037", "attributes": { "weight": 2 } }, { "key": "3696", "source": "645", "target": "1041", "attributes": { "weight": 3 } }, { "key": "3718", "source": "645", "target": "178", "attributes": { "weight": 3 } }, { "key": "2135", "source": "645", "target": "666", "attributes": { "weight": 2 } }, { "key": "27358", "source": "645", "target": "340", "attributes": { "weight": 1 } }, { "key": "31149", "source": "645", "target": "1607", "attributes": { "weight": 1 } }, { "key": "9390", "source": "645", "target": "1047", "attributes": { "weight": 2 } }, { "key": "3720", "source": "645", "target": "669", "attributes": { "weight": 2 } }, { "key": "9412", "source": "646", "target": "1041", "attributes": { "weight": 1 } }, { "key": "3732", "source": "646", "target": "644", "attributes": { "weight": 2 } }, { "key": "31153", "source": "646", "target": "651", "attributes": { "weight": 1 } }, { "key": "22272", "source": "646", "target": "794", "attributes": { "weight": 1 } }, { "key": "2157", "source": "646", "target": "419", "attributes": { "weight": 1 } }, { "key": "2158", "source": "646", "target": "661", "attributes": { "weight": 4 } }, { "key": "2156", "source": "646", "target": "645", "attributes": { "weight": 5 } }, { "key": "27668", "source": "646", "target": "178", "attributes": { "weight": 2 } }, { "key": "3735", "source": "647", "target": "1045", "attributes": { "weight": 2 } }, { "key": "9575", "source": "647", "target": "171", "attributes": { "weight": 3 } }, { "key": "9415", "source": "647", "target": "1600", "attributes": { "weight": 1 } }, { "key": "9416", "source": "647", "target": "1041", "attributes": { "weight": 2 } }, { "key": "2163", "source": "647", "target": "651", "attributes": { "weight": 2 } }, { "key": "22666", "source": "647", "target": "1037", "attributes": { "weight": 1 } }, { "key": "3738", "source": "647", "target": "794", "attributes": { "weight": 4 } }, { "key": "2165", "source": "647", "target": "667", "attributes": { "weight": 3 } }, { "key": "2162", "source": "647", "target": "358", "attributes": { "weight": 4 } }, { "key": "27671", "source": "647", "target": "178", "attributes": { "weight": 3 } }, { "key": "27720", "source": "647", "target": "1042", "attributes": { "weight": 2 } }, { "key": "3736", "source": "647", "target": "1046", "attributes": { "weight": 2 } }, { "key": "26121", "source": "647", "target": "1056", "attributes": { "weight": 1 } }, { "key": "2159", "source": "647", "target": "644", "attributes": { "weight": 5 } }, { "key": "2160", "source": "647", "target": "645", "attributes": { "weight": 7 } }, { "key": "2164", "source": "647", "target": "661", "attributes": { "weight": 5 } }, { "key": "31154", "source": "647", "target": "1611", "attributes": { "weight": 1 } }, { "key": "31855", "source": "647", "target": "1060", "attributes": { "weight": 1 } }, { "key": "3734", "source": "647", "target": "1036", "attributes": { "weight": 4 } }, { "key": "3737", "source": "647", "target": "362", "attributes": { "weight": 3 } }, { "key": "31155", "source": "647", "target": "664", "attributes": { "weight": 1 } }, { "key": "2161", "source": "647", "target": "419", "attributes": { "weight": 2 } }, { "key": "2194", "source": "648", "target": "649", "attributes": { "weight": 3 } }, { "key": "9448", "source": "648", "target": "1602", "attributes": { "weight": 1 } }, { "key": "2193", "source": "648", "target": "354", "attributes": { "weight": 2 } }, { "key": "25575", "source": "649", "target": "2611", "attributes": { "weight": 1 } }, { "key": "3772", "source": "649", "target": "648", "attributes": { "weight": 2 } }, { "key": "3773", "source": "649", "target": "1052", "attributes": { "weight": 3 } }, { "key": "2205", "source": "649", "target": "653", "attributes": { "weight": 4 } }, { "key": "2201", "source": "649", "target": "644", "attributes": { "weight": 1 } }, { "key": "2203", "source": "649", "target": "354", "attributes": { "weight": 6 } }, { "key": "2202", "source": "649", "target": "645", "attributes": { "weight": 1 } }, { "key": "3771", "source": "649", "target": "1034", "attributes": { "weight": 2 } }, { "key": "25574", "source": "649", "target": "164", "attributes": { "weight": 1 } }, { "key": "2207", "source": "649", "target": "655", "attributes": { "weight": 2 } }, { "key": "2204", "source": "649", "target": "419", "attributes": { "weight": 6 } }, { "key": "2206", "source": "649", "target": "654", "attributes": { "weight": 2 } }, { "key": "22283", "source": "650", "target": "794", "attributes": { "weight": 1 } }, { "key": "34973", "source": "650", "target": "3", "attributes": { "weight": 1 } }, { "key": "2211", "source": "650", "target": "419", "attributes": { "weight": 3 } }, { "key": "2210", "source": "650", "target": "645", "attributes": { "weight": 6 } }, { "key": "2212", "source": "650", "target": "651", "attributes": { "weight": 2 } }, { "key": "3774", "source": "650", "target": "661", "attributes": { "weight": 4 } }, { "key": "2208", "source": "650", "target": "641", "attributes": { "weight": 1 } }, { "key": "9460", "source": "650", "target": "1056", "attributes": { "weight": 1 } }, { "key": "2209", "source": "650", "target": "644", "attributes": { "weight": 6 } }, { "key": "9459", "source": "650", "target": "358", "attributes": { "weight": 1 } }, { "key": "30444", "source": "650", "target": "1046", "attributes": { "weight": 1 } }, { "key": "9461", "source": "650", "target": "664", "attributes": { "weight": 2 } }, { "key": "2220", "source": "651", "target": "358", "attributes": { "weight": 3 } }, { "key": "2217", "source": "651", "target": "354", "attributes": { "weight": 3 } }, { "key": "27678", "source": "651", "target": "178", "attributes": { "weight": 3 } }, { "key": "2215", "source": "651", "target": "644", "attributes": { "weight": 5 } }, { "key": "9465", "source": "651", "target": "359", "attributes": { "weight": 2 } }, { "key": "9468", "source": "651", "target": "1614", "attributes": { "weight": 2 } }, { "key": "32270", "source": "651", "target": "164", "attributes": { "weight": 1 } }, { "key": "30449", "source": "651", "target": "1046", "attributes": { "weight": 1 } }, { "key": "2223", "source": "651", "target": "661", "attributes": { "weight": 5 } }, { "key": "31894", "source": "651", "target": "1045", "attributes": { "weight": 1 } }, { "key": "9469", "source": "651", "target": "1615", "attributes": { "weight": 2 } }, { "key": "9467", "source": "651", "target": "794", "attributes": { "weight": 2 } }, { "key": "2225", "source": "651", "target": "665", "attributes": { "weight": 1 } }, { "key": "2218", "source": "651", "target": "647", "attributes": { "weight": 2 } }, { "key": "31158", "source": "651", "target": "646", "attributes": { "weight": 1 } }, { "key": "31159", "source": "651", "target": "652", "attributes": { "weight": 1 } }, { "key": "14259", "source": "651", "target": "168", "attributes": { "weight": 1 } }, { "key": "2214", "source": "651", "target": "642", "attributes": { "weight": 1 } }, { "key": "2224", "source": "651", "target": "664", "attributes": { "weight": 5 } }, { "key": "5125", "source": "651", "target": "468", "attributes": { "weight": 2 } }, { "key": "2213", "source": "651", "target": "641", "attributes": { "weight": 3 } }, { "key": "2226", "source": "651", "target": "669", "attributes": { "weight": 3 } }, { "key": "2219", "source": "651", "target": "419", "attributes": { "weight": 5 } }, { "key": "3779", "source": "651", "target": "171", "attributes": { "weight": 2 } }, { "key": "9466", "source": "651", "target": "362", "attributes": { "weight": 2 } }, { "key": "3780", "source": "651", "target": "1059", "attributes": { "weight": 3 } }, { "key": "3778", "source": "651", "target": "1036", "attributes": { "weight": 2 } }, { "key": "31160", "source": "651", "target": "1051", "attributes": { "weight": 1 } }, { "key": "2222", "source": "651", "target": "659", "attributes": { "weight": 1 } }, { "key": "2221", "source": "651", "target": "650", "attributes": { "weight": 2 } }, { "key": "31895", "source": "651", "target": "1060", "attributes": { "weight": 1 } }, { "key": "2216", "source": "651", "target": "645", "attributes": { "weight": 5 } }, { "key": "3782", "source": "652", "target": "664", "attributes": { "weight": 2 } }, { "key": "2228", "source": "652", "target": "419", "attributes": { "weight": 5 } }, { "key": "2229", "source": "652", "target": "662", "attributes": { "weight": 1 } }, { "key": "31161", "source": "652", "target": "651", "attributes": { "weight": 1 } }, { "key": "2230", "source": "652", "target": "665", "attributes": { "weight": 1 } }, { "key": "2227", "source": "652", "target": "645", "attributes": { "weight": 4 } }, { "key": "3781", "source": "652", "target": "644", "attributes": { "weight": 2 } }, { "key": "2232", "source": "653", "target": "649", "attributes": { "weight": 4 } }, { "key": "2233", "source": "653", "target": "654", "attributes": { "weight": 1 } }, { "key": "9473", "source": "653", "target": "1034", "attributes": { "weight": 1 } }, { "key": "9474", "source": "653", "target": "1052", "attributes": { "weight": 1 } }, { "key": "2231", "source": "653", "target": "354", "attributes": { "weight": 2 } }, { "key": "2235", "source": "654", "target": "649", "attributes": { "weight": 2 } }, { "key": "2234", "source": "654", "target": "354", "attributes": { "weight": 5 } }, { "key": "2236", "source": "654", "target": "653", "attributes": { "weight": 1 } }, { "key": "25577", "source": "655", "target": "2611", "attributes": { "weight": 1 } }, { "key": "2239", "source": "655", "target": "649", "attributes": { "weight": 2 } }, { "key": "2237", "source": "655", "target": "354", "attributes": { "weight": 6 } }, { "key": "25576", "source": "655", "target": "164", "attributes": { "weight": 1 } }, { "key": "2238", "source": "655", "target": "419", "attributes": { "weight": 6 } }, { "key": "31162", "source": "656", "target": "666", "attributes": { "weight": 1 } }, { "key": "2240", "source": "656", "target": "645", "attributes": { "weight": 4 } }, { "key": "3783", "source": "656", "target": "419", "attributes": { "weight": 4 } }, { "key": "2241", "source": "657", "target": "419", "attributes": { "weight": 6 } }, { "key": "22257", "source": "657", "target": "645", "attributes": { "weight": 1 } }, { "key": "9479", "source": "657", "target": "1050", "attributes": { "weight": 1 } }, { "key": "2242", "source": "657", "target": "666", "attributes": { "weight": 4 } }, { "key": "2243", "source": "658", "target": "645", "attributes": { "weight": 2 } }, { "key": "2244", "source": "658", "target": "354", "attributes": { "weight": 3 } }, { "key": "2246", "source": "658", "target": "663", "attributes": { "weight": 1 } }, { "key": "2245", "source": "658", "target": "419", "attributes": { "weight": 5 } }, { "key": "36953", "source": "659", "target": "362", "attributes": { "weight": 1 } }, { "key": "22290", "source": "659", "target": "794", "attributes": { "weight": 2 } }, { "key": "2250", "source": "659", "target": "354", "attributes": { "weight": 1 } }, { "key": "2248", "source": "659", "target": "644", "attributes": { "weight": 1 } }, { "key": "3794", "source": "659", "target": "419", "attributes": { "weight": 4 } }, { "key": "2251", "source": "659", "target": "651", "attributes": { "weight": 1 } }, { "key": "2249", "source": "659", "target": "645", "attributes": { "weight": 5 } }, { "key": "2247", "source": "659", "target": "641", "attributes": { "weight": 1 } }, { "key": "18065", "source": "659", "target": "1036", "attributes": { "weight": 1 } }, { "key": "9498", "source": "660", "target": "1043", "attributes": { "weight": 1 } }, { "key": "31961", "source": "660", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31960", "source": "660", "target": "359", "attributes": { "weight": 1 } }, { "key": "36958", "source": "660", "target": "362", "attributes": { "weight": 1 } }, { "key": "2255", "source": "660", "target": "419", "attributes": { "weight": 6 } }, { "key": "2254", "source": "660", "target": "645", "attributes": { "weight": 5 } }, { "key": "2256", "source": "660", "target": "663", "attributes": { "weight": 1 } }, { "key": "2253", "source": "660", "target": "644", "attributes": { "weight": 1 } }, { "key": "21589", "source": "660", "target": "358", "attributes": { "weight": 1 } }, { "key": "22678", "source": "661", "target": "1037", "attributes": { "weight": 1 } }, { "key": "3811", "source": "661", "target": "1051", "attributes": { "weight": 4 } }, { "key": "2259", "source": "661", "target": "645", "attributes": { "weight": 7 } }, { "key": "2261", "source": "661", "target": "646", "attributes": { "weight": 4 } }, { "key": "2268", "source": "661", "target": "667", "attributes": { "weight": 4 } }, { "key": "3809", "source": "661", "target": "1036", "attributes": { "weight": 2 } }, { "key": "26145", "source": "661", "target": "1056", "attributes": { "weight": 1 } }, { "key": "5497", "source": "661", "target": "468", "attributes": { "weight": 2 } }, { "key": "2258", "source": "661", "target": "644", "attributes": { "weight": 5 } }, { "key": "2263", "source": "661", "target": "419", "attributes": { "weight": 5 } }, { "key": "31166", "source": "661", "target": "1041", "attributes": { "weight": 1 } }, { "key": "9502", "source": "661", "target": "362", "attributes": { "weight": 2 } }, { "key": "3813", "source": "661", "target": "171", "attributes": { "weight": 4 } }, { "key": "3812", "source": "661", "target": "1054", "attributes": { "weight": 5 } }, { "key": "35189", "source": "661", "target": "1562", "attributes": { "weight": 1 } }, { "key": "2265", "source": "661", "target": "651", "attributes": { "weight": 5 } }, { "key": "18395", "source": "661", "target": "1621", "attributes": { "weight": 1 } }, { "key": "27726", "source": "661", "target": "2181", "attributes": { "weight": 2 } }, { "key": "31963", "source": "661", "target": "359", "attributes": { "weight": 1 } }, { "key": "3814", "source": "661", "target": "1061", "attributes": { "weight": 3 } }, { "key": "31964", "source": "661", "target": "1060", "attributes": { "weight": 1 } }, { "key": "2269", "source": "661", "target": "669", "attributes": { "weight": 2 } }, { "key": "30025", "source": "661", "target": "1611", "attributes": { "weight": 1 } }, { "key": "9504", "source": "661", "target": "794", "attributes": { "weight": 2 } }, { "key": "9500", "source": "661", "target": "1042", "attributes": { "weight": 4 } }, { "key": "9503", "source": "661", "target": "1553", "attributes": { "weight": 2 } }, { "key": "2264", "source": "661", "target": "358", "attributes": { "weight": 2 } }, { "key": "2260", "source": "661", "target": "354", "attributes": { "weight": 3 } }, { "key": "14266", "source": "661", "target": "168", "attributes": { "weight": 1 } }, { "key": "2257", "source": "661", "target": "641", "attributes": { "weight": 2 } }, { "key": "31962", "source": "661", "target": "1045", "attributes": { "weight": 1 } }, { "key": "30024", "source": "661", "target": "357", "attributes": { "weight": 1 } }, { "key": "9501", "source": "661", "target": "454", "attributes": { "weight": 2 } }, { "key": "30464", "source": "661", "target": "1046", "attributes": { "weight": 1 } }, { "key": "2267", "source": "661", "target": "178", "attributes": { "weight": 7 } }, { "key": "2262", "source": "661", "target": "647", "attributes": { "weight": 5 } }, { "key": "32275", "source": "661", "target": "164", "attributes": { "weight": 2 } }, { "key": "2266", "source": "661", "target": "664", "attributes": { "weight": 3 } }, { "key": "3810", "source": "661", "target": "650", "attributes": { "weight": 4 } }, { "key": "2272", "source": "662", "target": "645", "attributes": { "weight": 5 } }, { "key": "2274", "source": "662", "target": "419", "attributes": { "weight": 2 } }, { "key": "22302", "source": "662", "target": "794", "attributes": { "weight": 1 } }, { "key": "2273", "source": "662", "target": "354", "attributes": { "weight": 2 } }, { "key": "9515", "source": "662", "target": "665", "attributes": { "weight": 1 } }, { "key": "2276", "source": "662", "target": "664", "attributes": { "weight": 2 } }, { "key": "2275", "source": "662", "target": "652", "attributes": { "weight": 1 } }, { "key": "2271", "source": "662", "target": "644", "attributes": { "weight": 1 } }, { "key": "2278", "source": "663", "target": "419", "attributes": { "weight": 5 } }, { "key": "2280", "source": "663", "target": "660", "attributes": { "weight": 1 } }, { "key": "2279", "source": "663", "target": "658", "attributes": { "weight": 2 } }, { "key": "2277", "source": "663", "target": "354", "attributes": { "weight": 4 } }, { "key": "2284", "source": "664", "target": "419", "attributes": { "weight": 6 } }, { "key": "2283", "source": "664", "target": "354", "attributes": { "weight": 1 } }, { "key": "9518", "source": "664", "target": "650", "attributes": { "weight": 2 } }, { "key": "31171", "source": "664", "target": "647", "attributes": { "weight": 1 } }, { "key": "2287", "source": "664", "target": "662", "attributes": { "weight": 2 } }, { "key": "3820", "source": "664", "target": "645", "attributes": { "weight": 2 } }, { "key": "24585", "source": "664", "target": "794", "attributes": { "weight": 2 } }, { "key": "2281", "source": "664", "target": "641", "attributes": { "weight": 2 } }, { "key": "2286", "source": "664", "target": "661", "attributes": { "weight": 3 } }, { "key": "2285", "source": "664", "target": "651", "attributes": { "weight": 5 } }, { "key": "2282", "source": "664", "target": "644", "attributes": { "weight": 5 } }, { "key": "3821", "source": "664", "target": "652", "attributes": { "weight": 2 } }, { "key": "2290", "source": "665", "target": "651", "attributes": { "weight": 1 } }, { "key": "3825", "source": "665", "target": "645", "attributes": { "weight": 2 } }, { "key": "3824", "source": "665", "target": "1039", "attributes": { "weight": 2 } }, { "key": "2289", "source": "665", "target": "419", "attributes": { "weight": 4 } }, { "key": "2288", "source": "665", "target": "354", "attributes": { "weight": 1 } }, { "key": "2291", "source": "665", "target": "652", "attributes": { "weight": 1 } }, { "key": "9521", "source": "665", "target": "669", "attributes": { "weight": 1 } }, { "key": "2294", "source": "666", "target": "419", "attributes": { "weight": 6 } }, { "key": "2293", "source": "666", "target": "645", "attributes": { "weight": 1 } }, { "key": "31173", "source": "666", "target": "1035", "attributes": { "weight": 1 } }, { "key": "9534", "source": "666", "target": "1050", "attributes": { "weight": 1 } }, { "key": "2295", "source": "666", "target": "657", "attributes": { "weight": 4 } }, { "key": "31174", "source": "666", "target": "656", "attributes": { "weight": 1 } }, { "key": "9539", "source": "667", "target": "794", "attributes": { "weight": 3 } }, { "key": "22688", "source": "667", "target": "1037", "attributes": { "weight": 1 } }, { "key": "27730", "source": "667", "target": "1042", "attributes": { "weight": 2 } }, { "key": "2296", "source": "667", "target": "644", "attributes": { "weight": 4 } }, { "key": "30033", "source": "667", "target": "2916", "attributes": { "weight": 1 } }, { "key": "26147", "source": "667", "target": "1056", "attributes": { "weight": 1 } }, { "key": "9537", "source": "667", "target": "1611", "attributes": { "weight": 2 } }, { "key": "3832", "source": "667", "target": "362", "attributes": { "weight": 3 } }, { "key": "2300", "source": "667", "target": "661", "attributes": { "weight": 4 } }, { "key": "9538", "source": "667", "target": "1060", "attributes": { "weight": 1 } }, { "key": "2298", "source": "667", "target": "647", "attributes": { "weight": 3 } }, { "key": "27699", "source": "667", "target": "178", "attributes": { "weight": 3 } }, { "key": "3830", "source": "667", "target": "1036", "attributes": { "weight": 3 } }, { "key": "3831", "source": "667", "target": "1045", "attributes": { "weight": 1 } }, { "key": "2299", "source": "667", "target": "358", "attributes": { "weight": 3 } }, { "key": "2297", "source": "667", "target": "645", "attributes": { "weight": 6 } }, { "key": "30486", "source": "667", "target": "1046", "attributes": { "weight": 1 } }, { "key": "9543", "source": "668", "target": "645", "attributes": { "weight": 1 } }, { "key": "2301", "source": "668", "target": "419", "attributes": { "weight": 5 } }, { "key": "3836", "source": "668", "target": "354", "attributes": { "weight": 2 } }, { "key": "9544", "source": "668", "target": "361", "attributes": { "weight": 1 } }, { "key": "9542", "source": "668", "target": "1599", "attributes": { "weight": 1 } }, { "key": "2303", "source": "669", "target": "644", "attributes": { "weight": 4 } }, { "key": "2302", "source": "669", "target": "642", "attributes": { "weight": 1 } }, { "key": "9545", "source": "669", "target": "419", "attributes": { "weight": 1 } }, { "key": "2305", "source": "669", "target": "661", "attributes": { "weight": 2 } }, { "key": "27701", "source": "669", "target": "178", "attributes": { "weight": 2 } }, { "key": "2304", "source": "669", "target": "651", "attributes": { "weight": 3 } }, { "key": "3837", "source": "669", "target": "645", "attributes": { "weight": 3 } }, { "key": "3838", "source": "669", "target": "354", "attributes": { "weight": 2 } }, { "key": "2307", "source": "670", "target": "340", "attributes": { "weight": 2 } }, { "key": "2306", "source": "670", "target": "671", "attributes": { "weight": 2 } }, { "key": "24660", "source": "670", "target": "2512", "attributes": { "weight": 1 } }, { "key": "24663", "source": "671", "target": "2512", "attributes": { "weight": 1 } }, { "key": "2310", "source": "671", "target": "670", "attributes": { "weight": 2 } }, { "key": "33715", "source": "672", "target": "482", "attributes": { "weight": 1 } }, { "key": "33704", "source": "672", "target": "1836", "attributes": { "weight": 1 } }, { "key": "33705", "source": "672", "target": "2258", "attributes": { "weight": 1 } }, { "key": "15383", "source": "672", "target": "443", "attributes": { "weight": 1 } }, { "key": "33716", "source": "672", "target": "2110", "attributes": { "weight": 1 } }, { "key": "15391", "source": "672", "target": "483", "attributes": { "weight": 1 } }, { "key": "17011", "source": "672", "target": "59", "attributes": { "weight": 1 } }, { "key": "33718", "source": "672", "target": "1092", "attributes": { "weight": 1 } }, { "key": "15390", "source": "672", "target": "231", "attributes": { "weight": 2 } }, { "key": "21174", "source": "672", "target": "1832", "attributes": { "weight": 1 } }, { "key": "33714", "source": "672", "target": "480", "attributes": { "weight": 1 } }, { "key": "17012", "source": "672", "target": "130", "attributes": { "weight": 2 } }, { "key": "33702", "source": "672", "target": "52", "attributes": { "weight": 1 } }, { "key": "33712", "source": "672", "target": "191", "attributes": { "weight": 1 } }, { "key": "11398", "source": "672", "target": "1742", "attributes": { "weight": 1 } }, { "key": "17317", "source": "672", "target": "449", "attributes": { "weight": 2 } }, { "key": "33720", "source": "672", "target": "494", "attributes": { "weight": 1 } }, { "key": "15382", "source": "672", "target": "424", "attributes": { "weight": 2 } }, { "key": "15384", "source": "672", "target": "860", "attributes": { "weight": 1 } }, { "key": "31805", "source": "672", "target": "595", "attributes": { "weight": 1 } }, { "key": "31804", "source": "672", "target": "8", "attributes": { "weight": 1 } }, { "key": "15385", "source": "672", "target": "1358", "attributes": { "weight": 1 } }, { "key": "33695", "source": "672", "target": "223", "attributes": { "weight": 1 } }, { "key": "33713", "source": "672", "target": "1125", "attributes": { "weight": 1 } }, { "key": "33694", "source": "672", "target": "51", "attributes": { "weight": 1 } }, { "key": "21177", "source": "672", "target": "489", "attributes": { "weight": 1 } }, { "key": "32935", "source": "672", "target": "470", "attributes": { "weight": 2 } }, { "key": "33691", "source": "672", "target": "429", "attributes": { "weight": 1 } }, { "key": "35704", "source": "672", "target": "1738", "attributes": { "weight": 2 } }, { "key": "15387", "source": "672", "target": "462", "attributes": { "weight": 1 } }, { "key": "33075", "source": "672", "target": "1355", "attributes": { "weight": 1 } }, { "key": "15388", "source": "672", "target": "53", "attributes": { "weight": 1 } }, { "key": "33693", "source": "672", "target": "432", "attributes": { "weight": 1 } }, { "key": "21175", "source": "672", "target": "2095", "attributes": { "weight": 1 } }, { "key": "33076", "source": "672", "target": "1368", "attributes": { "weight": 1 } }, { "key": "33701", "source": "672", "target": "1219", "attributes": { "weight": 1 } }, { "key": "17017", "source": "672", "target": "1389", "attributes": { "weight": 1 } }, { "key": "33696", "source": "672", "target": "425", "attributes": { "weight": 1 } }, { "key": "17013", "source": "672", "target": "434", "attributes": { "weight": 1 } }, { "key": "33703", "source": "672", "target": "135", "attributes": { "weight": 1 } }, { "key": "15386", "source": "672", "target": "458", "attributes": { "weight": 2 } }, { "key": "15381", "source": "672", "target": "1353", "attributes": { "weight": 1 } }, { "key": "33698", "source": "672", "target": "441", "attributes": { "weight": 1 } }, { "key": "33717", "source": "672", "target": "487", "attributes": { "weight": 1 } }, { "key": "31555", "source": "672", "target": "1520", "attributes": { "weight": 1 } }, { "key": "15392", "source": "672", "target": "56", "attributes": { "weight": 3 } }, { "key": "33709", "source": "672", "target": "473", "attributes": { "weight": 1 } }, { "key": "17014", "source": "672", "target": "674", "attributes": { "weight": 2 } }, { "key": "17015", "source": "672", "target": "70", "attributes": { "weight": 1 } }, { "key": "33710", "source": "672", "target": "190", "attributes": { "weight": 1 } }, { "key": "33708", "source": "672", "target": "472", "attributes": { "weight": 1 } }, { "key": "33711", "source": "672", "target": "474", "attributes": { "weight": 1 } }, { "key": "15389", "source": "672", "target": "54", "attributes": { "weight": 2 } }, { "key": "7054", "source": "672", "target": "232", "attributes": { "weight": 2 } }, { "key": "17016", "source": "672", "target": "1337", "attributes": { "weight": 1 } }, { "key": "31556", "source": "672", "target": "428", "attributes": { "weight": 1 } }, { "key": "33697", "source": "672", "target": "440", "attributes": { "weight": 1 } }, { "key": "2311", "source": "672", "target": "340", "attributes": { "weight": 3 } }, { "key": "33692", "source": "672", "target": "220", "attributes": { "weight": 1 } }, { "key": "21173", "source": "672", "target": "221", "attributes": { "weight": 1 } }, { "key": "33719", "source": "672", "target": "192", "attributes": { "weight": 1 } }, { "key": "33706", "source": "672", "target": "228", "attributes": { "weight": 1 } }, { "key": "33700", "source": "672", "target": "452", "attributes": { "weight": 1 } }, { "key": "21176", "source": "672", "target": "2111", "attributes": { "weight": 1 } }, { "key": "33707", "source": "672", "target": "471", "attributes": { "weight": 1 } }, { "key": "33699", "source": "672", "target": "450", "attributes": { "weight": 1 } }, { "key": "27891", "source": "672", "target": "339", "attributes": { "weight": 1 } }, { "key": "15393", "source": "672", "target": "499", "attributes": { "weight": 1 } }, { "key": "33690", "source": "672", "target": "1703", "attributes": { "weight": 1 } }, { "key": "24699", "source": "673", "target": "5", "attributes": { "weight": 2 } }, { "key": "4247", "source": "673", "target": "1136", "attributes": { "weight": 1 } }, { "key": "37413", "source": "673", "target": "2831", "attributes": { "weight": 1 } }, { "key": "4250", "source": "673", "target": "495", "attributes": { "weight": 2 } }, { "key": "4251", "source": "673", "target": "352", "attributes": { "weight": 1 } }, { "key": "21604", "source": "673", "target": "358", "attributes": { "weight": 1 } }, { "key": "11399", "source": "673", "target": "1742", "attributes": { "weight": 1 } }, { "key": "26929", "source": "673", "target": "497", "attributes": { "weight": 1 } }, { "key": "14899", "source": "673", "target": "319", "attributes": { "weight": 1 } }, { "key": "2312", "source": "673", "target": "340", "attributes": { "weight": 3 } }, { "key": "30948", "source": "673", "target": "3", "attributes": { "weight": 1 } }, { "key": "4246", "source": "673", "target": "220", "attributes": { "weight": 2 } }, { "key": "4052", "source": "673", "target": "432", "attributes": { "weight": 1 } }, { "key": "11288", "source": "673", "target": "452", "attributes": { "weight": 1 } }, { "key": "25641", "source": "673", "target": "787", "attributes": { "weight": 1 } }, { "key": "29519", "source": "673", "target": "232", "attributes": { "weight": 2 } }, { "key": "35225", "source": "673", "target": "2112", "attributes": { "weight": 1 } }, { "key": "25899", "source": "673", "target": "1024", "attributes": { "weight": 2 } }, { "key": "16560", "source": "673", "target": "2077", "attributes": { "weight": 1 } }, { "key": "25801", "source": "673", "target": "791", "attributes": { "weight": 2 } }, { "key": "35226", "source": "673", "target": "2114", "attributes": { "weight": 1 } }, { "key": "4248", "source": "673", "target": "442", "attributes": { "weight": 2 } }, { "key": "26762", "source": "673", "target": "189", "attributes": { "weight": 1 } }, { "key": "4249", "source": "673", "target": "695", "attributes": { "weight": 2 } }, { "key": "12980", "source": "674", "target": "304", "attributes": { "weight": 2 } }, { "key": "26427", "source": "674", "target": "189", "attributes": { "weight": 2 } }, { "key": "31260", "source": "674", "target": "1808", "attributes": { "weight": 1 } }, { "key": "16759", "source": "674", "target": "464", "attributes": { "weight": 1 } }, { "key": "31279", "source": "674", "target": "1247", "attributes": { "weight": 1 } }, { "key": "31299", "source": "674", "target": "73", "attributes": { "weight": 2 } }, { "key": "36288", "source": "674", "target": "2081", "attributes": { "weight": 1 } }, { "key": "16746", "source": "674", "target": "59", "attributes": { "weight": 3 } }, { "key": "16762", "source": "674", "target": "135", "attributes": { "weight": 2 } }, { "key": "29614", "source": "674", "target": "1253", "attributes": { "weight": 1 } }, { "key": "16764", "source": "674", "target": "54", "attributes": { "weight": 1 } }, { "key": "25377", "source": "674", "target": "433", "attributes": { "weight": 1 } }, { "key": "16758", "source": "674", "target": "370", "attributes": { "weight": 1 } }, { "key": "7246", "source": "674", "target": "1063", "attributes": { "weight": 3 } }, { "key": "16753", "source": "674", "target": "445", "attributes": { "weight": 1 } }, { "key": "22715", "source": "674", "target": "2382", "attributes": { "weight": 1 } }, { "key": "16769", "source": "674", "target": "479", "attributes": { "weight": 4 } }, { "key": "31298", "source": "674", "target": "72", "attributes": { "weight": 1 } }, { "key": "29387", "source": "674", "target": "232", "attributes": { "weight": 1 } }, { "key": "31297", "source": "674", "target": "595", "attributes": { "weight": 2 } }, { "key": "16763", "source": "674", "target": "470", "attributes": { "weight": 3 } }, { "key": "9948", "source": "674", "target": "494", "attributes": { "weight": 4 } }, { "key": "31276", "source": "674", "target": "1232", "attributes": { "weight": 1 } }, { "key": "24025", "source": "674", "target": "1116", "attributes": { "weight": 2 } }, { "key": "31289", "source": "674", "target": "1873", "attributes": { "weight": 1 } }, { "key": "31275", "source": "674", "target": "2088", "attributes": { "weight": 2 } }, { "key": "31294", "source": "674", "target": "178", "attributes": { "weight": 2 } }, { "key": "16766", "source": "674", "target": "1367", "attributes": { "weight": 1 } }, { "key": "6650", "source": "674", "target": "495", "attributes": { "weight": 5 } }, { "key": "31263", "source": "674", "target": "435", "attributes": { "weight": 1 } }, { "key": "16772", "source": "674", "target": "488", "attributes": { "weight": 2 } }, { "key": "16768", "source": "674", "target": "1125", "attributes": { "weight": 1 } }, { "key": "31264", "source": "674", "target": "1110", "attributes": { "weight": 1 } }, { "key": "31271", "source": "674", "target": "1118", "attributes": { "weight": 1 } }, { "key": "23581", "source": "674", "target": "2248", "attributes": { "weight": 1 } }, { "key": "16767", "source": "674", "target": "474", "attributes": { "weight": 2 } }, { "key": "4636", "source": "674", "target": "468", "attributes": { "weight": 3 } }, { "key": "16775", "source": "674", "target": "1389", "attributes": { "weight": 3 } }, { "key": "37063", "source": "674", "target": "857", "attributes": { "weight": 1 } }, { "key": "11040", "source": "674", "target": "452", "attributes": { "weight": 4 } }, { "key": "16747", "source": "674", "target": "432", "attributes": { "weight": 2 } }, { "key": "18445", "source": "674", "target": "1738", "attributes": { "weight": 3 } }, { "key": "31272", "source": "674", "target": "865", "attributes": { "weight": 1 } }, { "key": "25086", "source": "674", "target": "1547", "attributes": { "weight": 2 } }, { "key": "33328", "source": "674", "target": "425", "attributes": { "weight": 1 } }, { "key": "16761", "source": "674", "target": "338", "attributes": { "weight": 1 } }, { "key": "31277", "source": "674", "target": "791", "attributes": { "weight": 2 } }, { "key": "16748", "source": "674", "target": "130", "attributes": { "weight": 4 } }, { "key": "6649", "source": "674", "target": "193", "attributes": { "weight": 5 } }, { "key": "31284", "source": "674", "target": "473", "attributes": { "weight": 2 } }, { "key": "31261", "source": "674", "target": "1141", "attributes": { "weight": 1 } }, { "key": "31291", "source": "674", "target": "427", "attributes": { "weight": 1 } }, { "key": "12978", "source": "674", "target": "454", "attributes": { "weight": 4 } }, { "key": "16773", "source": "674", "target": "672", "attributes": { "weight": 2 } }, { "key": "31266", "source": "674", "target": "1522", "attributes": { "weight": 1 } }, { "key": "10811", "source": "674", "target": "457", "attributes": { "weight": 3 } }, { "key": "31290", "source": "674", "target": "478", "attributes": { "weight": 1 } }, { "key": "29386", "source": "674", "target": "424", "attributes": { "weight": 1 } }, { "key": "31269", "source": "674", "target": "1047", "attributes": { "weight": 1 } }, { "key": "30354", "source": "674", "target": "1046", "attributes": { "weight": 1 } }, { "key": "31282", "source": "674", "target": "2620", "attributes": { "weight": 1 } }, { "key": "17351", "source": "674", "target": "358", "attributes": { "weight": 2 } }, { "key": "31265", "source": "674", "target": "164", "attributes": { "weight": 2 } }, { "key": "31273", "source": "674", "target": "455", "attributes": { "weight": 1 } }, { "key": "16756", "source": "674", "target": "451", "attributes": { "weight": 1 } }, { "key": "33327", "source": "674", "target": "51", "attributes": { "weight": 1 } }, { "key": "31293", "source": "674", "target": "1323", "attributes": { "weight": 1 } }, { "key": "16744", "source": "674", "target": "429", "attributes": { "weight": 4 } }, { "key": "3937", "source": "674", "target": "487", "attributes": { "weight": 2 } }, { "key": "16745", "source": "674", "target": "1354", "attributes": { "weight": 3 } }, { "key": "16776", "source": "674", "target": "500", "attributes": { "weight": 3 } }, { "key": "31285", "source": "674", "target": "1282", "attributes": { "weight": 1 } }, { "key": "16750", "source": "674", "target": "2086", "attributes": { "weight": 1 } }, { "key": "31296", "source": "674", "target": "1337", "attributes": { "weight": 1 } }, { "key": "7243", "source": "674", "target": "70", "attributes": { "weight": 6 } }, { "key": "31262", "source": "674", "target": "1755", "attributes": { "weight": 1 } }, { "key": "31295", "source": "674", "target": "490", "attributes": { "weight": 1 } }, { "key": "8665", "source": "674", "target": "442", "attributes": { "weight": 4 } }, { "key": "6647", "source": "674", "target": "183", "attributes": { "weight": 4 } }, { "key": "7242", "source": "674", "target": "220", "attributes": { "weight": 6 } }, { "key": "31278", "source": "674", "target": "1764", "attributes": { "weight": 2 } }, { "key": "16751", "source": "674", "target": "440", "attributes": { "weight": 2 } }, { "key": "31286", "source": "674", "target": "580", "attributes": { "weight": 1 } }, { "key": "10477", "source": "674", "target": "225", "attributes": { "weight": 1 } }, { "key": "16755", "source": "674", "target": "450", "attributes": { "weight": 2 } }, { "key": "16774", "source": "674", "target": "340", "attributes": { "weight": 2 } }, { "key": "26298", "source": "674", "target": "1258", "attributes": { "weight": 2 } }, { "key": "16757", "source": "674", "target": "199", "attributes": { "weight": 1 } }, { "key": "23415", "source": "674", "target": "223", "attributes": { "weight": 4 } }, { "key": "24766", "source": "674", "target": "486", "attributes": { "weight": 1 } }, { "key": "31288", "source": "674", "target": "1026", "attributes": { "weight": 1 } }, { "key": "33329", "source": "674", "target": "489", "attributes": { "weight": 1 } }, { "key": "31292", "source": "674", "target": "305", "attributes": { "weight": 1 } }, { "key": "31274", "source": "674", "target": "188", "attributes": { "weight": 2 } }, { "key": "12671", "source": "674", "target": "695", "attributes": { "weight": 3 } }, { "key": "31267", "source": "674", "target": "222", "attributes": { "weight": 1 } }, { "key": "31283", "source": "674", "target": "472", "attributes": { "weight": 3 } }, { "key": "16749", "source": "674", "target": "434", "attributes": { "weight": 2 } }, { "key": "29172", "source": "674", "target": "1750", "attributes": { "weight": 2 } }, { "key": "30651", "source": "674", "target": "2994", "attributes": { "weight": 1 } }, { "key": "7244", "source": "674", "target": "1390", "attributes": { "weight": 2 } }, { "key": "27844", "source": "674", "target": "339", "attributes": { "weight": 2 } }, { "key": "16754", "source": "674", "target": "449", "attributes": { "weight": 3 } }, { "key": "16752", "source": "674", "target": "1070", "attributes": { "weight": 1 } }, { "key": "31287", "source": "674", "target": "123", "attributes": { "weight": 1 } }, { "key": "16743", "source": "674", "target": "1754", "attributes": { "weight": 2 } }, { "key": "31300", "source": "674", "target": "498", "attributes": { "weight": 1 } }, { "key": "31270", "source": "674", "target": "1360", "attributes": { "weight": 1 } }, { "key": "2318", "source": "674", "target": "675", "attributes": { "weight": 1 } }, { "key": "16765", "source": "674", "target": "471", "attributes": { "weight": 3 } }, { "key": "7245", "source": "674", "target": "497", "attributes": { "weight": 3 } }, { "key": "31268", "source": "674", "target": "438", "attributes": { "weight": 1 } }, { "key": "6648", "source": "674", "target": "231", "attributes": { "weight": 3 } }, { "key": "31281", "source": "674", "target": "469", "attributes": { "weight": 1 } }, { "key": "16770", "source": "674", "target": "480", "attributes": { "weight": 1 } }, { "key": "16581", "source": "674", "target": "2082", "attributes": { "weight": 1 } }, { "key": "31280", "source": "674", "target": "8", "attributes": { "weight": 1 } }, { "key": "27231", "source": "674", "target": "57", "attributes": { "weight": 2 } }, { "key": "12979", "source": "674", "target": "52", "attributes": { "weight": 4 } }, { "key": "16760", "source": "674", "target": "2091", "attributes": { "weight": 1 } }, { "key": "16771", "source": "674", "target": "482", "attributes": { "weight": 1 } }, { "key": "2319", "source": "675", "target": "674", "attributes": { "weight": 1 } }, { "key": "2325", "source": "676", "target": "614", "attributes": { "weight": 1 } }, { "key": "2435", "source": "676", "target": "610", "attributes": { "weight": 1 } }, { "key": "2326", "source": "676", "target": "678", "attributes": { "weight": 1 } }, { "key": "2327", "source": "677", "target": "614", "attributes": { "weight": 1 } }, { "key": "2329", "source": "678", "target": "676", "attributes": { "weight": 1 } }, { "key": "2328", "source": "678", "target": "614", "attributes": { "weight": 1 } }, { "key": "2330", "source": "679", "target": "614", "attributes": { "weight": 1 } }, { "key": "2331", "source": "680", "target": "614", "attributes": { "weight": 1 } }, { "key": "37230", "source": "681", "target": "682", "attributes": { "weight": 1 } }, { "key": "33776", "source": "681", "target": "244", "attributes": { "weight": 1 } }, { "key": "37228", "source": "681", "target": "5", "attributes": { "weight": 1 } }, { "key": "30591", "source": "681", "target": "25", "attributes": { "weight": 1 } }, { "key": "24436", "source": "681", "target": "19", "attributes": { "weight": 2 } }, { "key": "37227", "source": "681", "target": "693", "attributes": { "weight": 1 } }, { "key": "37235", "source": "681", "target": "2507", "attributes": { "weight": 1 } }, { "key": "37234", "source": "681", "target": "3023", "attributes": { "weight": 1 } }, { "key": "33778", "source": "681", "target": "14", "attributes": { "weight": 2 } }, { "key": "33777", "source": "681", "target": "246", "attributes": { "weight": 1 } }, { "key": "31627", "source": "681", "target": "595", "attributes": { "weight": 1 } }, { "key": "30899", "source": "681", "target": "3", "attributes": { "weight": 2 } }, { "key": "32109", "source": "681", "target": "792", "attributes": { "weight": 3 } }, { "key": "32108", "source": "681", "target": "788", "attributes": { "weight": 3 } }, { "key": "37229", "source": "681", "target": "3346", "attributes": { "weight": 1 } }, { "key": "30302", "source": "681", "target": "1988", "attributes": { "weight": 1 } }, { "key": "24438", "source": "681", "target": "13", "attributes": { "weight": 2 } }, { "key": "31626", "source": "681", "target": "8", "attributes": { "weight": 2 } }, { "key": "31625", "source": "681", "target": "1965", "attributes": { "weight": 2 } }, { "key": "30301", "source": "681", "target": "789", "attributes": { "weight": 2 } }, { "key": "37225", "source": "681", "target": "0", "attributes": { "weight": 1 } }, { "key": "37231", "source": "681", "target": "3017", "attributes": { "weight": 1 } }, { "key": "34992", "source": "681", "target": "352", "attributes": { "weight": 1 } }, { "key": "37233", "source": "681", "target": "3348", "attributes": { "weight": 1 } }, { "key": "23760", "source": "681", "target": "1774", "attributes": { "weight": 2 } }, { "key": "23444", "source": "681", "target": "304", "attributes": { "weight": 3 } }, { "key": "37226", "source": "681", "target": "358", "attributes": { "weight": 1 } }, { "key": "2337", "source": "681", "target": "21", "attributes": { "weight": 2 } }, { "key": "37232", "source": "681", "target": "3347", "attributes": { "weight": 1 } }, { "key": "24437", "source": "681", "target": "303", "attributes": { "weight": 1 } }, { "key": "30597", "source": "682", "target": "53", "attributes": { "weight": 1 } }, { "key": "2338", "source": "682", "target": "3", "attributes": { "weight": 4 } }, { "key": "31630", "source": "682", "target": "8", "attributes": { "weight": 1 } }, { "key": "31632", "source": "682", "target": "14", "attributes": { "weight": 2 } }, { "key": "30598", "source": "682", "target": "819", "attributes": { "weight": 1 } }, { "key": "2792", "source": "682", "target": "829", "attributes": { "weight": 1 } }, { "key": "16533", "source": "682", "target": "2077", "attributes": { "weight": 1 } }, { "key": "30599", "source": "682", "target": "12", "attributes": { "weight": 1 } }, { "key": "2339", "source": "682", "target": "13", "attributes": { "weight": 2 } }, { "key": "33780", "source": "682", "target": "440", "attributes": { "weight": 1 } }, { "key": "30593", "source": "682", "target": "788", "attributes": { "weight": 2 } }, { "key": "33783", "source": "682", "target": "1812", "attributes": { "weight": 1 } }, { "key": "31631", "source": "682", "target": "595", "attributes": { "weight": 1 } }, { "key": "33782", "source": "682", "target": "244", "attributes": { "weight": 1 } }, { "key": "37236", "source": "682", "target": "681", "attributes": { "weight": 1 } }, { "key": "31629", "source": "682", "target": "693", "attributes": { "weight": 1 } }, { "key": "30601", "source": "682", "target": "2992", "attributes": { "weight": 1 } }, { "key": "32110", "source": "682", "target": "792", "attributes": { "weight": 2 } }, { "key": "30603", "source": "682", "target": "352", "attributes": { "weight": 2 } }, { "key": "21582", "source": "682", "target": "358", "attributes": { "weight": 2 } }, { "key": "30596", "source": "682", "target": "791", "attributes": { "weight": 1 } }, { "key": "2791", "source": "682", "target": "828", "attributes": { "weight": 1 } }, { "key": "30595", "source": "682", "target": "242", "attributes": { "weight": 1 } }, { "key": "30594", "source": "682", "target": "4", "attributes": { "weight": 1 } }, { "key": "30602", "source": "682", "target": "340", "attributes": { "weight": 1 } }, { "key": "11348", "source": "682", "target": "1742", "attributes": { "weight": 1 } }, { "key": "30592", "source": "682", "target": "0", "attributes": { "weight": 2 } }, { "key": "23761", "source": "682", "target": "1774", "attributes": { "weight": 3 } }, { "key": "33781", "source": "682", "target": "189", "attributes": { "weight": 1 } }, { "key": "29434", "source": "682", "target": "232", "attributes": { "weight": 1 } }, { "key": "33784", "source": "682", "target": "487", "attributes": { "weight": 1 } }, { "key": "29037", "source": "682", "target": "495", "attributes": { "weight": 1 } }, { "key": "30303", "source": "682", "target": "789", "attributes": { "weight": 1 } }, { "key": "30600", "source": "682", "target": "479", "attributes": { "weight": 1 } }, { "key": "2352", "source": "683", "target": "21", "attributes": { "weight": 1 } }, { "key": "2351", "source": "683", "target": "3", "attributes": { "weight": 1 } }, { "key": "2354", "source": "683", "target": "25", "attributes": { "weight": 2 } }, { "key": "2353", "source": "683", "target": "13", "attributes": { "weight": 1 } }, { "key": "2359", "source": "684", "target": "176", "attributes": { "weight": 2 } }, { "key": "2360", "source": "684", "target": "690", "attributes": { "weight": 1 } }, { "key": "36202", "source": "685", "target": "691", "attributes": { "weight": 1 } }, { "key": "2361", "source": "685", "target": "687", "attributes": { "weight": 3 } }, { "key": "2362", "source": "685", "target": "176", "attributes": { "weight": 3 } }, { "key": "2363", "source": "686", "target": "688", "attributes": { "weight": 1 } }, { "key": "28069", "source": "687", "target": "287", "attributes": { "weight": 1 } }, { "key": "2364", "source": "687", "target": "685", "attributes": { "weight": 3 } }, { "key": "2365", "source": "687", "target": "689", "attributes": { "weight": 3 } }, { "key": "36206", "source": "687", "target": "176", "attributes": { "weight": 2 } }, { "key": "18072", "source": "687", "target": "164", "attributes": { "weight": 3 } }, { "key": "36205", "source": "687", "target": "3275", "attributes": { "weight": 2 } }, { "key": "18396", "source": "687", "target": "1621", "attributes": { "weight": 1 } }, { "key": "2366", "source": "687", "target": "691", "attributes": { "weight": 2 } }, { "key": "2367", "source": "688", "target": "686", "attributes": { "weight": 1 } }, { "key": "2368", "source": "688", "target": "692", "attributes": { "weight": 1 } }, { "key": "2370", "source": "689", "target": "176", "attributes": { "weight": 3 } }, { "key": "36210", "source": "689", "target": "685", "attributes": { "weight": 1 } }, { "key": "2369", "source": "689", "target": "687", "attributes": { "weight": 3 } }, { "key": "2376", "source": "690", "target": "684", "attributes": { "weight": 1 } }, { "key": "2377", "source": "690", "target": "176", "attributes": { "weight": 1 } }, { "key": "36218", "source": "691", "target": "3273", "attributes": { "weight": 1 } }, { "key": "2378", "source": "691", "target": "687", "attributes": { "weight": 1 } }, { "key": "36219", "source": "691", "target": "176", "attributes": { "weight": 1 } }, { "key": "36217", "source": "691", "target": "685", "attributes": { "weight": 2 } }, { "key": "2380", "source": "692", "target": "176", "attributes": { "weight": 1 } }, { "key": "2379", "source": "692", "target": "688", "attributes": { "weight": 1 } }, { "key": "31592", "source": "693", "target": "823", "attributes": { "weight": 1 } }, { "key": "30323", "source": "693", "target": "8", "attributes": { "weight": 3 } }, { "key": "30324", "source": "693", "target": "14", "attributes": { "weight": 2 } }, { "key": "2382", "source": "693", "target": "694", "attributes": { "weight": 1 } }, { "key": "11050", "source": "693", "target": "452", "attributes": { "weight": 1 } }, { "key": "24414", "source": "693", "target": "2505", "attributes": { "weight": 1 } }, { "key": "26905", "source": "693", "target": "497", "attributes": { "weight": 1 } }, { "key": "37411", "source": "693", "target": "2831", "attributes": { "weight": 1 } }, { "key": "30325", "source": "693", "target": "352", "attributes": { "weight": 2 } }, { "key": "2786", "source": "693", "target": "828", "attributes": { "weight": 1 } }, { "key": "31593", "source": "693", "target": "595", "attributes": { "weight": 1 } }, { "key": "21570", "source": "693", "target": "358", "attributes": { "weight": 1 } }, { "key": "27538", "source": "693", "target": "1520", "attributes": { "weight": 1 } }, { "key": "30320", "source": "693", "target": "432", "attributes": { "weight": 1 } }, { "key": "37274", "source": "693", "target": "349", "attributes": { "weight": 1 } }, { "key": "31591", "source": "693", "target": "9", "attributes": { "weight": 1 } }, { "key": "29026", "source": "693", "target": "495", "attributes": { "weight": 3 } }, { "key": "30880", "source": "693", "target": "3", "attributes": { "weight": 1 } }, { "key": "37372", "source": "693", "target": "829", "attributes": { "weight": 1 } }, { "key": "30321", "source": "693", "target": "2646", "attributes": { "weight": 2 } }, { "key": "31590", "source": "693", "target": "682", "attributes": { "weight": 1 } }, { "key": "30881", "source": "693", "target": "13", "attributes": { "weight": 1 } }, { "key": "17588", "source": "693", "target": "790", "attributes": { "weight": 1 } }, { "key": "8712", "source": "693", "target": "442", "attributes": { "weight": 3 } }, { "key": "30879", "source": "693", "target": "2", "attributes": { "weight": 1 } }, { "key": "37218", "source": "693", "target": "681", "attributes": { "weight": 1 } }, { "key": "16525", "source": "693", "target": "2077", "attributes": { "weight": 1 } }, { "key": "30322", "source": "693", "target": "817", "attributes": { "weight": 2 } }, { "key": "29849", "source": "693", "target": "1024", "attributes": { "weight": 1 } }, { "key": "28933", "source": "693", "target": "479", "attributes": { "weight": 2 } }, { "key": "30319", "source": "693", "target": "0", "attributes": { "weight": 2 } }, { "key": "22282", "source": "693", "target": "794", "attributes": { "weight": 1 } }, { "key": "11338", "source": "693", "target": "1742", "attributes": { "weight": 1 } }, { "key": "2388", "source": "694", "target": "479", "attributes": { "weight": 1 } }, { "key": "2385", "source": "694", "target": "3", "attributes": { "weight": 1 } }, { "key": "2389", "source": "694", "target": "14", "attributes": { "weight": 1 } }, { "key": "2386", "source": "694", "target": "693", "attributes": { "weight": 1 } }, { "key": "2387", "source": "694", "target": "9", "attributes": { "weight": 1 } }, { "key": "12704", "source": "695", "target": "8", "attributes": { "weight": 1 } }, { "key": "2391", "source": "695", "target": "56", "attributes": { "weight": 2 } }, { "key": "12696", "source": "695", "target": "674", "attributes": { "weight": 3 } }, { "key": "12694", "source": "695", "target": "223", "attributes": { "weight": 2 } }, { "key": "12708", "source": "695", "target": "70", "attributes": { "weight": 3 } }, { "key": "7025", "source": "695", "target": "193", "attributes": { "weight": 2 } }, { "key": "12719", "source": "695", "target": "352", "attributes": { "weight": 2 } }, { "key": "11265", "source": "695", "target": "473", "attributes": { "weight": 2 } }, { "key": "12689", "source": "695", "target": "59", "attributes": { "weight": 3 } }, { "key": "12715", "source": "695", "target": "72", "attributes": { "weight": 1 } }, { "key": "12707", "source": "695", "target": "474", "attributes": { "weight": 1 } }, { "key": "32590", "source": "695", "target": "791", "attributes": { "weight": 1 } }, { "key": "12703", "source": "695", "target": "53", "attributes": { "weight": 1 } }, { "key": "23792", "source": "695", "target": "370", "attributes": { "weight": 1 } }, { "key": "12701", "source": "695", "target": "6", "attributes": { "weight": 1 } }, { "key": "12709", "source": "695", "target": "1873", "attributes": { "weight": 1 } }, { "key": "7024", "source": "695", "target": "189", "attributes": { "weight": 2 } }, { "key": "4245", "source": "695", "target": "673", "attributes": { "weight": 2 } }, { "key": "12688", "source": "695", "target": "220", "attributes": { "weight": 2 } }, { "key": "36091", "source": "695", "target": "2248", "attributes": { "weight": 1 } }, { "key": "12721", "source": "695", "target": "497", "attributes": { "weight": 2 } }, { "key": "20914", "source": "695", "target": "2095", "attributes": { "weight": 1 } }, { "key": "12720", "source": "695", "target": "1390", "attributes": { "weight": 1 } }, { "key": "12717", "source": "695", "target": "340", "attributes": { "weight": 1 } }, { "key": "12705", "source": "695", "target": "135", "attributes": { "weight": 1 } }, { "key": "12716", "source": "695", "target": "1750", "attributes": { "weight": 1 } }, { "key": "12712", "source": "695", "target": "1337", "attributes": { "weight": 1 } }, { "key": "11396", "source": "695", "target": "1742", "attributes": { "weight": 2 } }, { "key": "12722", "source": "695", "target": "57", "attributes": { "weight": 1 } }, { "key": "7023", "source": "695", "target": "188", "attributes": { "weight": 2 } }, { "key": "12691", "source": "695", "target": "130", "attributes": { "weight": 1 } }, { "key": "35702", "source": "695", "target": "458", "attributes": { "weight": 1 } }, { "key": "20907", "source": "695", "target": "438", "attributes": { "weight": 1 } }, { "key": "20909", "source": "695", "target": "1832", "attributes": { "weight": 1 } }, { "key": "12686", "source": "695", "target": "1141", "attributes": { "weight": 1 } }, { "key": "12700", "source": "695", "target": "1024", "attributes": { "weight": 2 } }, { "key": "12718", "source": "695", "target": "495", "attributes": { "weight": 2 } }, { "key": "12711", "source": "695", "target": "232", "attributes": { "weight": 1 } }, { "key": "12714", "source": "695", "target": "1774", "attributes": { "weight": 2 } }, { "key": "12690", "source": "695", "target": "432", "attributes": { "weight": 1 } }, { "key": "20910", "source": "695", "target": "2253", "attributes": { "weight": 1 } }, { "key": "12710", "source": "695", "target": "479", "attributes": { "weight": 2 } }, { "key": "20911", "source": "695", "target": "472", "attributes": { "weight": 1 } }, { "key": "16993", "source": "695", "target": "1389", "attributes": { "weight": 1 } }, { "key": "11267", "source": "695", "target": "494", "attributes": { "weight": 2 } }, { "key": "12702", "source": "695", "target": "1025", "attributes": { "weight": 1 } }, { "key": "11264", "source": "695", "target": "452", "attributes": { "weight": 2 } }, { "key": "12687", "source": "695", "target": "1755", "attributes": { "weight": 1 } }, { "key": "12706", "source": "695", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20915", "source": "695", "target": "489", "attributes": { "weight": 1 } }, { "key": "9041", "source": "695", "target": "442", "attributes": { "weight": 2 } }, { "key": "10927", "source": "695", "target": "457", "attributes": { "weight": 2 } }, { "key": "12699", "source": "695", "target": "5", "attributes": { "weight": 2 } }, { "key": "20906", "source": "695", "target": "221", "attributes": { "weight": 1 } }, { "key": "20913", "source": "695", "target": "2267", "attributes": { "weight": 1 } }, { "key": "7021", "source": "695", "target": "183", "attributes": { "weight": 2 } }, { "key": "36093", "source": "695", "target": "73", "attributes": { "weight": 1 } }, { "key": "20912", "source": "695", "target": "2261", "attributes": { "weight": 1 } }, { "key": "12692", "source": "695", "target": "434", "attributes": { "weight": 2 } }, { "key": "12697", "source": "695", "target": "3", "attributes": { "weight": 2 } }, { "key": "36092", "source": "695", "target": "2258", "attributes": { "weight": 1 } }, { "key": "7022", "source": "695", "target": "454", "attributes": { "weight": 3 } }, { "key": "11266", "source": "695", "target": "191", "attributes": { "weight": 2 } }, { "key": "12693", "source": "695", "target": "1522", "attributes": { "weight": 1 } }, { "key": "20908", "source": "695", "target": "449", "attributes": { "weight": 1 } }, { "key": "12698", "source": "695", "target": "1118", "attributes": { "weight": 1 } }, { "key": "12695", "source": "695", "target": "440", "attributes": { "weight": 1 } }, { "key": "12713", "source": "695", "target": "595", "attributes": { "weight": 2 } }, { "key": "37472", "source": "696", "target": "307", "attributes": { "weight": 1 } }, { "key": "2395", "source": "696", "target": "697", "attributes": { "weight": 4 } }, { "key": "12963", "source": "696", "target": "304", "attributes": { "weight": 2 } }, { "key": "25667", "source": "696", "target": "167", "attributes": { "weight": 2 } }, { "key": "14472", "source": "697", "target": "312", "attributes": { "weight": 1 } }, { "key": "25676", "source": "697", "target": "2618", "attributes": { "weight": 1 } }, { "key": "25670", "source": "697", "target": "2615", "attributes": { "weight": 2 } }, { "key": "2398", "source": "697", "target": "582", "attributes": { "weight": 3 } }, { "key": "2396", "source": "697", "target": "696", "attributes": { "weight": 4 } }, { "key": "29192", "source": "697", "target": "2614", "attributes": { "weight": 1 } }, { "key": "12416", "source": "697", "target": "316", "attributes": { "weight": 2 } }, { "key": "25668", "source": "697", "target": "2613", "attributes": { "weight": 2 } }, { "key": "25674", "source": "697", "target": "2617", "attributes": { "weight": 1 } }, { "key": "25669", "source": "697", "target": "278", "attributes": { "weight": 2 } }, { "key": "25671", "source": "697", "target": "2616", "attributes": { "weight": 2 } }, { "key": "25672", "source": "697", "target": "579", "attributes": { "weight": 1 } }, { "key": "3165", "source": "697", "target": "305", "attributes": { "weight": 4 } }, { "key": "29193", "source": "697", "target": "1921", "attributes": { "weight": 1 } }, { "key": "14467", "source": "697", "target": "260", "attributes": { "weight": 1 } }, { "key": "14182", "source": "697", "target": "168", "attributes": { "weight": 2 } }, { "key": "22592", "source": "697", "target": "180", "attributes": { "weight": 1 } }, { "key": "27549", "source": "697", "target": "272", "attributes": { "weight": 1 } }, { "key": "14470", "source": "697", "target": "277", "attributes": { "weight": 1 } }, { "key": "14469", "source": "697", "target": "268", "attributes": { "weight": 1 } }, { "key": "28339", "source": "697", "target": "698", "attributes": { "weight": 2 } }, { "key": "27550", "source": "697", "target": "327", "attributes": { "weight": 1 } }, { "key": "25677", "source": "697", "target": "2619", "attributes": { "weight": 1 } }, { "key": "12415", "source": "697", "target": "263", "attributes": { "weight": 2 } }, { "key": "2397", "source": "697", "target": "699", "attributes": { "weight": 6 } }, { "key": "24919", "source": "697", "target": "170", "attributes": { "weight": 2 } }, { "key": "25673", "source": "697", "target": "304", "attributes": { "weight": 2 } }, { "key": "14471", "source": "697", "target": "307", "attributes": { "weight": 1 } }, { "key": "24920", "source": "697", "target": "580", "attributes": { "weight": 2 } }, { "key": "27914", "source": "697", "target": "321", "attributes": { "weight": 1 } }, { "key": "25675", "source": "697", "target": "1924", "attributes": { "weight": 3 } }, { "key": "14468", "source": "697", "target": "261", "attributes": { "weight": 1 } }, { "key": "27913", "source": "697", "target": "299", "attributes": { "weight": 1 } }, { "key": "14570", "source": "698", "target": "307", "attributes": { "weight": 1 } }, { "key": "12846", "source": "698", "target": "582", "attributes": { "weight": 3 } }, { "key": "14569", "source": "698", "target": "259", "attributes": { "weight": 1 } }, { "key": "21442", "source": "698", "target": "579", "attributes": { "weight": 3 } }, { "key": "28357", "source": "698", "target": "178", "attributes": { "weight": 2 } }, { "key": "22690", "source": "698", "target": "170", "attributes": { "weight": 3 } }, { "key": "5033", "source": "698", "target": "580", "attributes": { "weight": 4 } }, { "key": "2453", "source": "698", "target": "707", "attributes": { "weight": 4 } }, { "key": "12574", "source": "698", "target": "180", "attributes": { "weight": 5 } }, { "key": "21439", "source": "698", "target": "1240", "attributes": { "weight": 3 } }, { "key": "14201", "source": "698", "target": "168", "attributes": { "weight": 3 } }, { "key": "29804", "source": "698", "target": "93", "attributes": { "weight": 1 } }, { "key": "12074", "source": "698", "target": "1823", "attributes": { "weight": 4 } }, { "key": "12072", "source": "698", "target": "904", "attributes": { "weight": 1 } }, { "key": "28353", "source": "698", "target": "697", "attributes": { "weight": 2 } }, { "key": "12071", "source": "698", "target": "1191", "attributes": { "weight": 3 } }, { "key": "2399", "source": "698", "target": "278", "attributes": { "weight": 7 } }, { "key": "15788", "source": "698", "target": "1227", "attributes": { "weight": 2 } }, { "key": "24935", "source": "698", "target": "164", "attributes": { "weight": 2 } }, { "key": "13067", "source": "698", "target": "268", "attributes": { "weight": 2 } }, { "key": "21441", "source": "698", "target": "1870", "attributes": { "weight": 2 } }, { "key": "24938", "source": "698", "target": "177", "attributes": { "weight": 2 } }, { "key": "24939", "source": "698", "target": "313", "attributes": { "weight": 2 } }, { "key": "28358", "source": "698", "target": "2770", "attributes": { "weight": 1 } }, { "key": "28354", "source": "698", "target": "2759", "attributes": { "weight": 2 } }, { "key": "24840", "source": "698", "target": "1979", "attributes": { "weight": 2 } }, { "key": "24936", "source": "698", "target": "574", "attributes": { "weight": 2 } }, { "key": "28355", "source": "698", "target": "700", "attributes": { "weight": 2 } }, { "key": "12073", "source": "698", "target": "1512", "attributes": { "weight": 3 } }, { "key": "28356", "source": "698", "target": "1819", "attributes": { "weight": 1 } }, { "key": "13068", "source": "698", "target": "305", "attributes": { "weight": 3 } }, { "key": "25861", "source": "698", "target": "220", "attributes": { "weight": 1 } }, { "key": "24937", "source": "698", "target": "2538", "attributes": { "weight": 1 } }, { "key": "21440", "source": "698", "target": "1960", "attributes": { "weight": 2 } }, { "key": "24841", "source": "698", "target": "2541", "attributes": { "weight": 1 } }, { "key": "28702", "source": "698", "target": "578", "attributes": { "weight": 1 } }, { "key": "24942", "source": "699", "target": "707", "attributes": { "weight": 4 } }, { "key": "25683", "source": "699", "target": "2614", "attributes": { "weight": 2 } }, { "key": "2401", "source": "699", "target": "170", "attributes": { "weight": 5 } }, { "key": "19005", "source": "699", "target": "839", "attributes": { "weight": 4 } }, { "key": "2402", "source": "699", "target": "579", "attributes": { "weight": 1 } }, { "key": "25685", "source": "699", "target": "582", "attributes": { "weight": 2 } }, { "key": "13069", "source": "699", "target": "304", "attributes": { "weight": 4 } }, { "key": "25682", "source": "699", "target": "2613", "attributes": { "weight": 1 } }, { "key": "2400", "source": "699", "target": "697", "attributes": { "weight": 6 } }, { "key": "25686", "source": "699", "target": "2617", "attributes": { "weight": 2 } }, { "key": "25684", "source": "699", "target": "2616", "attributes": { "weight": 2 } }, { "key": "12575", "source": "699", "target": "315", "attributes": { "weight": 4 } }, { "key": "25687", "source": "699", "target": "2618", "attributes": { "weight": 2 } }, { "key": "15820", "source": "700", "target": "170", "attributes": { "weight": 4 } }, { "key": "34215", "source": "700", "target": "3163", "attributes": { "weight": 1 } }, { "key": "34211", "source": "700", "target": "1227", "attributes": { "weight": 1 } }, { "key": "15821", "source": "700", "target": "579", "attributes": { "weight": 3 } }, { "key": "28360", "source": "700", "target": "698", "attributes": { "weight": 2 } }, { "key": "29805", "source": "700", "target": "93", "attributes": { "weight": 2 } }, { "key": "34209", "source": "700", "target": "1187", "attributes": { "weight": 1 } }, { "key": "34214", "source": "700", "target": "309", "attributes": { "weight": 1 } }, { "key": "28361", "source": "700", "target": "1871", "attributes": { "weight": 2 } }, { "key": "25688", "source": "700", "target": "582", "attributes": { "weight": 1 } }, { "key": "28359", "source": "700", "target": "1191", "attributes": { "weight": 2 } }, { "key": "34216", "source": "700", "target": "3164", "attributes": { "weight": 1 } }, { "key": "34212", "source": "700", "target": "3161", "attributes": { "weight": 1 } }, { "key": "28362", "source": "700", "target": "1823", "attributes": { "weight": 2 } }, { "key": "15822", "source": "700", "target": "580", "attributes": { "weight": 4 } }, { "key": "2403", "source": "700", "target": "278", "attributes": { "weight": 3 } }, { "key": "34210", "source": "700", "target": "168", "attributes": { "weight": 1 } }, { "key": "34213", "source": "700", "target": "1561", "attributes": { "weight": 1 } }, { "key": "12576", "source": "700", "target": "180", "attributes": { "weight": 2 } }, { "key": "6785", "source": "701", "target": "57", "attributes": { "weight": 1 } }, { "key": "2421", "source": "701", "target": "188", "attributes": { "weight": 1 } }, { "key": "26571", "source": "701", "target": "454", "attributes": { "weight": 1 } }, { "key": "6782", "source": "701", "target": "189", "attributes": { "weight": 2 } }, { "key": "6783", "source": "701", "target": "490", "attributes": { "weight": 1 } }, { "key": "6781", "source": "701", "target": "183", "attributes": { "weight": 1 } }, { "key": "6784", "source": "701", "target": "193", "attributes": { "weight": 1 } }, { "key": "2424", "source": "702", "target": "367", "attributes": { "weight": 1 } }, { "key": "2423", "source": "702", "target": "615", "attributes": { "weight": 1 } }, { "key": "2434", "source": "703", "target": "378", "attributes": { "weight": 2 } }, { "key": "2437", "source": "704", "target": "378", "attributes": { "weight": 1 } }, { "key": "24706", "source": "704", "target": "2515", "attributes": { "weight": 1 } }, { "key": "24705", "source": "704", "target": "373", "attributes": { "weight": 1 } }, { "key": "2438", "source": "705", "target": "615", "attributes": { "weight": 1 } }, { "key": "27774", "source": "706", "target": "630", "attributes": { "weight": 1 } }, { "key": "27773", "source": "706", "target": "619", "attributes": { "weight": 1 } }, { "key": "2444", "source": "706", "target": "608", "attributes": { "weight": 1 } }, { "key": "24968", "source": "707", "target": "579", "attributes": { "weight": 1 } }, { "key": "24972", "source": "707", "target": "177", "attributes": { "weight": 1 } }, { "key": "22476", "source": "707", "target": "567", "attributes": { "weight": 2 } }, { "key": "24953", "source": "707", "target": "2536", "attributes": { "weight": 1 } }, { "key": "22477", "source": "707", "target": "572", "attributes": { "weight": 2 } }, { "key": "12078", "source": "707", "target": "1824", "attributes": { "weight": 2 } }, { "key": "12075", "source": "707", "target": "1191", "attributes": { "weight": 4 } }, { "key": "17465", "source": "707", "target": "358", "attributes": { "weight": 2 } }, { "key": "28376", "source": "707", "target": "2764", "attributes": { "weight": 1 } }, { "key": "12077", "source": "707", "target": "1512", "attributes": { "weight": 3 } }, { "key": "12079", "source": "707", "target": "1825", "attributes": { "weight": 2 } }, { "key": "28374", "source": "707", "target": "2762", "attributes": { "weight": 1 } }, { "key": "11886", "source": "707", "target": "468", "attributes": { "weight": 4 } }, { "key": "15105", "source": "707", "target": "171", "attributes": { "weight": 1 } }, { "key": "24964", "source": "707", "target": "2540", "attributes": { "weight": 2 } }, { "key": "2454", "source": "707", "target": "698", "attributes": { "weight": 4 } }, { "key": "24975", "source": "707", "target": "907", "attributes": { "weight": 2 } }, { "key": "23222", "source": "707", "target": "2344", "attributes": { "weight": 3 } }, { "key": "28382", "source": "707", "target": "2769", "attributes": { "weight": 1 } }, { "key": "24957", "source": "707", "target": "2537", "attributes": { "weight": 1 } }, { "key": "24956", "source": "707", "target": "164", "attributes": { "weight": 4 } }, { "key": "15826", "source": "707", "target": "338", "attributes": { "weight": 3 } }, { "key": "26584", "source": "707", "target": "454", "attributes": { "weight": 2 } }, { "key": "24960", "source": "707", "target": "1240", "attributes": { "weight": 2 } }, { "key": "8767", "source": "707", "target": "442", "attributes": { "weight": 3 } }, { "key": "24961", "source": "707", "target": "2547", "attributes": { "weight": 1 } }, { "key": "23224", "source": "707", "target": "2438", "attributes": { "weight": 3 } }, { "key": "24965", "source": "707", "target": "1870", "attributes": { "weight": 2 } }, { "key": "24970", "source": "707", "target": "2280", "attributes": { "weight": 2 } }, { "key": "12582", "source": "707", "target": "315", "attributes": { "weight": 4 } }, { "key": "28377", "source": "707", "target": "93", "attributes": { "weight": 2 } }, { "key": "2456", "source": "707", "target": "708", "attributes": { "weight": 3 } }, { "key": "23220", "source": "707", "target": "1868", "attributes": { "weight": 3 } }, { "key": "15827", "source": "707", "target": "1322", "attributes": { "weight": 1 } }, { "key": "24962", "source": "707", "target": "2539", "attributes": { "weight": 2 } }, { "key": "24974", "source": "707", "target": "178", "attributes": { "weight": 4 } }, { "key": "28371", "source": "707", "target": "574", "attributes": { "weight": 1 } }, { "key": "5102", "source": "707", "target": "1227", "attributes": { "weight": 5 } }, { "key": "25694", "source": "707", "target": "278", "attributes": { "weight": 3 } }, { "key": "28385", "source": "707", "target": "2772", "attributes": { "weight": 1 } }, { "key": "24958", "source": "707", "target": "699", "attributes": { "weight": 4 } }, { "key": "28375", "source": "707", "target": "2763", "attributes": { "weight": 1 } }, { "key": "28380", "source": "707", "target": "2767", "attributes": { "weight": 1 } }, { "key": "28383", "source": "707", "target": "1962", "attributes": { "weight": 1 } }, { "key": "24963", "source": "707", "target": "1960", "attributes": { "weight": 2 } }, { "key": "24959", "source": "707", "target": "1905", "attributes": { "weight": 2 } }, { "key": "13141", "source": "707", "target": "839", "attributes": { "weight": 5 } }, { "key": "14258", "source": "707", "target": "168", "attributes": { "weight": 4 } }, { "key": "24966", "source": "707", "target": "2548", "attributes": { "weight": 1 } }, { "key": "5103", "source": "707", "target": "1323", "attributes": { "weight": 2 } }, { "key": "24977", "source": "707", "target": "2551", "attributes": { "weight": 2 } }, { "key": "28378", "source": "707", "target": "2765", "attributes": { "weight": 1 } }, { "key": "12076", "source": "707", "target": "1820", "attributes": { "weight": 3 } }, { "key": "24967", "source": "707", "target": "2345", "attributes": { "weight": 2 } }, { "key": "2455", "source": "707", "target": "170", "attributes": { "weight": 3 } }, { "key": "7305", "source": "707", "target": "333", "attributes": { "weight": 2 } }, { "key": "28370", "source": "707", "target": "2760", "attributes": { "weight": 1 } }, { "key": "28381", "source": "707", "target": "2768", "attributes": { "weight": 1 } }, { "key": "28373", "source": "707", "target": "1819", "attributes": { "weight": 2 } }, { "key": "26585", "source": "707", "target": "189", "attributes": { "weight": 2 } }, { "key": "13140", "source": "707", "target": "304", "attributes": { "weight": 4 } }, { "key": "28692", "source": "707", "target": "1821", "attributes": { "weight": 1 } }, { "key": "28379", "source": "707", "target": "2766", "attributes": { "weight": 1 } }, { "key": "24969", "source": "707", "target": "1822", "attributes": { "weight": 2 } }, { "key": "28372", "source": "707", "target": "903", "attributes": { "weight": 1 } }, { "key": "23223", "source": "707", "target": "2437", "attributes": { "weight": 3 } }, { "key": "24971", "source": "707", "target": "1871", "attributes": { "weight": 2 } }, { "key": "24954", "source": "707", "target": "2545", "attributes": { "weight": 1 } }, { "key": "24955", "source": "707", "target": "2546", "attributes": { "weight": 2 } }, { "key": "24973", "source": "707", "target": "2549", "attributes": { "weight": 1 } }, { "key": "23221", "source": "707", "target": "1869", "attributes": { "weight": 3 } }, { "key": "24976", "source": "707", "target": "2550", "attributes": { "weight": 2 } }, { "key": "28384", "source": "707", "target": "2771", "attributes": { "weight": 1 } }, { "key": "2458", "source": "708", "target": "707", "attributes": { "weight": 3 } }, { "key": "2459", "source": "709", "target": "750", "attributes": { "weight": 2 } }, { "key": "2460", "source": "709", "target": "758", "attributes": { "weight": 2 } }, { "key": "2462", "source": "710", "target": "714", "attributes": { "weight": 1 } }, { "key": "2463", "source": "710", "target": "717", "attributes": { "weight": 1 } }, { "key": "10165", "source": "711", "target": "1322", "attributes": { "weight": 3 } }, { "key": "2469", "source": "711", "target": "725", "attributes": { "weight": 3 } }, { "key": "10162", "source": "711", "target": "1291", "attributes": { "weight": 1 } }, { "key": "10152", "source": "711", "target": "717", "attributes": { "weight": 1 } }, { "key": "15453", "source": "711", "target": "1329", "attributes": { "weight": 1 } }, { "key": "2468", "source": "711", "target": "719", "attributes": { "weight": 2 } }, { "key": "10156", "source": "711", "target": "1243", "attributes": { "weight": 1 } }, { "key": "10160", "source": "711", "target": "123", "attributes": { "weight": 2 } }, { "key": "26039", "source": "711", "target": "2623", "attributes": { "weight": 1 } }, { "key": "2470", "source": "711", "target": "506", "attributes": { "weight": 2 } }, { "key": "10166", "source": "711", "target": "1698", "attributes": { "weight": 2 } }, { "key": "10159", "source": "711", "target": "748", "attributes": { "weight": 1 } }, { "key": "2465", "source": "711", "target": "77", "attributes": { "weight": 2 } }, { "key": "2466", "source": "711", "target": "712", "attributes": { "weight": 3 } }, { "key": "4286", "source": "711", "target": "1294", "attributes": { "weight": 2 } }, { "key": "2472", "source": "711", "target": "739", "attributes": { "weight": 2 } }, { "key": "2467", "source": "711", "target": "517", "attributes": { "weight": 2 } }, { "key": "10157", "source": "711", "target": "337", "attributes": { "weight": 1 } }, { "key": "10153", "source": "711", "target": "1682", "attributes": { "weight": 2 } }, { "key": "10161", "source": "711", "target": "750", "attributes": { "weight": 1 } }, { "key": "33856", "source": "711", "target": "1197", "attributes": { "weight": 1 } }, { "key": "10154", "source": "711", "target": "1683", "attributes": { "weight": 2 } }, { "key": "10150", "source": "711", "target": "1677", "attributes": { "weight": 1 } }, { "key": "2471", "source": "711", "target": "730", "attributes": { "weight": 2 } }, { "key": "10163", "source": "711", "target": "756", "attributes": { "weight": 1 } }, { "key": "2474", "source": "711", "target": "771", "attributes": { "weight": 2 } }, { "key": "10158", "source": "711", "target": "341", "attributes": { "weight": 2 } }, { "key": "10151", "source": "711", "target": "1678", "attributes": { "weight": 2 } }, { "key": "10167", "source": "711", "target": "1699", "attributes": { "weight": 2 } }, { "key": "15452", "source": "711", "target": "925", "attributes": { "weight": 1 } }, { "key": "10155", "source": "711", "target": "1227", "attributes": { "weight": 1 } }, { "key": "2473", "source": "711", "target": "769", "attributes": { "weight": 3 } }, { "key": "4285", "source": "711", "target": "338", "attributes": { "weight": 2 } }, { "key": "10164", "source": "711", "target": "1696", "attributes": { "weight": 2 } }, { "key": "2476", "source": "712", "target": "720", "attributes": { "weight": 1 } }, { "key": "2477", "source": "712", "target": "729", "attributes": { "weight": 2 } }, { "key": "10168", "source": "712", "target": "341", "attributes": { "weight": 2 } }, { "key": "2475", "source": "712", "target": "711", "attributes": { "weight": 3 } }, { "key": "2478", "source": "712", "target": "737", "attributes": { "weight": 2 } }, { "key": "2480", "source": "712", "target": "760", "attributes": { "weight": 1 } }, { "key": "2479", "source": "712", "target": "755", "attributes": { "weight": 1 } }, { "key": "2481", "source": "713", "target": "729", "attributes": { "weight": 1 } }, { "key": "2484", "source": "714", "target": "717", "attributes": { "weight": 1 } }, { "key": "2483", "source": "714", "target": "710", "attributes": { "weight": 1 } }, { "key": "2486", "source": "715", "target": "724", "attributes": { "weight": 1 } }, { "key": "2499", "source": "716", "target": "722", "attributes": { "weight": 2 } }, { "key": "2500", "source": "716", "target": "750", "attributes": { "weight": 2 } }, { "key": "2502", "source": "717", "target": "714", "attributes": { "weight": 1 } }, { "key": "2504", "source": "717", "target": "752", "attributes": { "weight": 1 } }, { "key": "10186", "source": "717", "target": "506", "attributes": { "weight": 1 } }, { "key": "2503", "source": "717", "target": "745", "attributes": { "weight": 1 } }, { "key": "2501", "source": "717", "target": "710", "attributes": { "weight": 1 } }, { "key": "10185", "source": "717", "target": "711", "attributes": { "weight": 1 } }, { "key": "10187", "source": "717", "target": "756", "attributes": { "weight": 1 } }, { "key": "2505", "source": "718", "target": "507", "attributes": { "weight": 1 } }, { "key": "2506", "source": "718", "target": "756", "attributes": { "weight": 1 } }, { "key": "10190", "source": "719", "target": "1701", "attributes": { "weight": 1 } }, { "key": "2507", "source": "719", "target": "711", "attributes": { "weight": 2 } }, { "key": "2513", "source": "722", "target": "750", "attributes": { "weight": 2 } }, { "key": "2512", "source": "722", "target": "716", "attributes": { "weight": 2 } }, { "key": "2515", "source": "723", "target": "748", "attributes": { "weight": 2 } }, { "key": "2848", "source": "723", "target": "728", "attributes": { "weight": 1 } }, { "key": "2514", "source": "723", "target": "736", "attributes": { "weight": 2 } }, { "key": "23106", "source": "724", "target": "517", "attributes": { "weight": 1 } }, { "key": "2516", "source": "724", "target": "715", "attributes": { "weight": 1 } }, { "key": "2517", "source": "724", "target": "738", "attributes": { "weight": 2 } }, { "key": "2518", "source": "725", "target": "711", "attributes": { "weight": 3 } }, { "key": "2524", "source": "726", "target": "506", "attributes": { "weight": 1 } }, { "key": "2525", "source": "726", "target": "732", "attributes": { "weight": 1 } }, { "key": "2527", "source": "726", "target": "746", "attributes": { "weight": 2 } }, { "key": "2528", "source": "726", "target": "753", "attributes": { "weight": 1 } }, { "key": "2526", "source": "726", "target": "734", "attributes": { "weight": 2 } }, { "key": "2529", "source": "727", "target": "748", "attributes": { "weight": 2 } }, { "key": "2530", "source": "727", "target": "765", "attributes": { "weight": 2 } }, { "key": "2532", "source": "728", "target": "775", "attributes": { "weight": 2 } }, { "key": "2531", "source": "728", "target": "748", "attributes": { "weight": 1 } }, { "key": "2849", "source": "728", "target": "723", "attributes": { "weight": 1 } }, { "key": "2533", "source": "729", "target": "712", "attributes": { "weight": 1 } }, { "key": "2534", "source": "729", "target": "713", "attributes": { "weight": 2 } }, { "key": "2535", "source": "730", "target": "711", "attributes": { "weight": 2 } }, { "key": "2537", "source": "731", "target": "770", "attributes": { "weight": 1 } }, { "key": "2536", "source": "731", "target": "757", "attributes": { "weight": 1 } }, { "key": "2539", "source": "732", "target": "742", "attributes": { "weight": 1 } }, { "key": "3144", "source": "732", "target": "753", "attributes": { "weight": 1 } }, { "key": "3143", "source": "732", "target": "897", "attributes": { "weight": 1 } }, { "key": "2538", "source": "732", "target": "726", "attributes": { "weight": 1 } }, { "key": "2540", "source": "733", "target": "749", "attributes": { "weight": 2 } }, { "key": "2541", "source": "733", "target": "750", "attributes": { "weight": 2 } }, { "key": "3148", "source": "734", "target": "732", "attributes": { "weight": 1 } }, { "key": "2543", "source": "734", "target": "746", "attributes": { "weight": 1 } }, { "key": "2542", "source": "734", "target": "726", "attributes": { "weight": 1 } }, { "key": "2850", "source": "736", "target": "748", "attributes": { "weight": 1 } }, { "key": "2548", "source": "736", "target": "769", "attributes": { "weight": 1 } }, { "key": "2546", "source": "736", "target": "723", "attributes": { "weight": 1 } }, { "key": "2547", "source": "736", "target": "761", "attributes": { "weight": 2 } }, { "key": "2552", "source": "737", "target": "517", "attributes": { "weight": 1 } }, { "key": "2553", "source": "737", "target": "755", "attributes": { "weight": 2 } }, { "key": "2551", "source": "737", "target": "712", "attributes": { "weight": 1 } }, { "key": "2555", "source": "738", "target": "739", "attributes": { "weight": 1 } }, { "key": "2554", "source": "738", "target": "724", "attributes": { "weight": 1 } }, { "key": "2560", "source": "739", "target": "743", "attributes": { "weight": 1 } }, { "key": "2559", "source": "739", "target": "738", "attributes": { "weight": 1 } }, { "key": "2558", "source": "739", "target": "711", "attributes": { "weight": 2 } }, { "key": "2562", "source": "740", "target": "767", "attributes": { "weight": 1 } }, { "key": "2851", "source": "740", "target": "748", "attributes": { "weight": 1 } }, { "key": "2563", "source": "740", "target": "772", "attributes": { "weight": 2 } }, { "key": "2564", "source": "741", "target": "750", "attributes": { "weight": 2 } }, { "key": "2569", "source": "742", "target": "726", "attributes": { "weight": 1 } }, { "key": "3150", "source": "742", "target": "506", "attributes": { "weight": 1 } }, { "key": "2571", "source": "743", "target": "739", "attributes": { "weight": 1 } }, { "key": "2573", "source": "744", "target": "517", "attributes": { "weight": 1 } }, { "key": "2576", "source": "745", "target": "756", "attributes": { "weight": 1 } }, { "key": "2575", "source": "745", "target": "717", "attributes": { "weight": 1 } }, { "key": "2578", "source": "746", "target": "734", "attributes": { "weight": 1 } }, { "key": "3152", "source": "746", "target": "742", "attributes": { "weight": 1 } }, { "key": "2577", "source": "746", "target": "726", "attributes": { "weight": 1 } }, { "key": "2580", "source": "747", "target": "709", "attributes": { "weight": 2 } }, { "key": "2581", "source": "747", "target": "750", "attributes": { "weight": 2 } }, { "key": "10251", "source": "748", "target": "711", "attributes": { "weight": 1 } }, { "key": "2588", "source": "748", "target": "765", "attributes": { "weight": 2 } }, { "key": "2590", "source": "748", "target": "769", "attributes": { "weight": 2 } }, { "key": "2587", "source": "748", "target": "761", "attributes": { "weight": 1 } }, { "key": "2584", "source": "748", "target": "728", "attributes": { "weight": 1 } }, { "key": "2855", "source": "748", "target": "750", "attributes": { "weight": 2 } }, { "key": "2585", "source": "748", "target": "740", "attributes": { "weight": 1 } }, { "key": "2591", "source": "748", "target": "772", "attributes": { "weight": 1 } }, { "key": "2582", "source": "748", "target": "723", "attributes": { "weight": 2 } }, { "key": "2586", "source": "748", "target": "759", "attributes": { "weight": 2 } }, { "key": "2583", "source": "748", "target": "727", "attributes": { "weight": 2 } }, { "key": "2589", "source": "748", "target": "767", "attributes": { "weight": 2 } }, { "key": "2854", "source": "748", "target": "736", "attributes": { "weight": 1 } }, { "key": "2593", "source": "748", "target": "775", "attributes": { "weight": 2 } }, { "key": "2856", "source": "748", "target": "835", "attributes": { "weight": 1 } }, { "key": "2595", "source": "749", "target": "733", "attributes": { "weight": 2 } }, { "key": "2596", "source": "749", "target": "750", "attributes": { "weight": 2 } }, { "key": "2600", "source": "750", "target": "733", "attributes": { "weight": 2 } }, { "key": "2858", "source": "750", "target": "748", "attributes": { "weight": 2 } }, { "key": "2597", "source": "750", "target": "709", "attributes": { "weight": 2 } }, { "key": "2599", "source": "750", "target": "722", "attributes": { "weight": 2 } }, { "key": "2604", "source": "750", "target": "774", "attributes": { "weight": 2 } }, { "key": "10253", "source": "750", "target": "711", "attributes": { "weight": 1 } }, { "key": "2605", "source": "750", "target": "776", "attributes": { "weight": 2 } }, { "key": "2603", "source": "750", "target": "758", "attributes": { "weight": 2 } }, { "key": "2857", "source": "750", "target": "741", "attributes": { "weight": 1 } }, { "key": "2598", "source": "750", "target": "716", "attributes": { "weight": 2 } }, { "key": "2601", "source": "750", "target": "749", "attributes": { "weight": 2 } }, { "key": "2608", "source": "752", "target": "717", "attributes": { "weight": 1 } }, { "key": "2611", "source": "753", "target": "506", "attributes": { "weight": 2 } }, { "key": "2612", "source": "753", "target": "726", "attributes": { "weight": 1 } }, { "key": "2615", "source": "755", "target": "517", "attributes": { "weight": 1 } }, { "key": "2616", "source": "755", "target": "737", "attributes": { "weight": 1 } }, { "key": "2614", "source": "755", "target": "712", "attributes": { "weight": 2 } }, { "key": "2618", "source": "756", "target": "506", "attributes": { "weight": 1 } }, { "key": "2617", "source": "756", "target": "718", "attributes": { "weight": 1 } }, { "key": "10307", "source": "756", "target": "717", "attributes": { "weight": 1 } }, { "key": "10306", "source": "756", "target": "711", "attributes": { "weight": 1 } }, { "key": "2619", "source": "756", "target": "745", "attributes": { "weight": 1 } }, { "key": "2620", "source": "757", "target": "517", "attributes": { "weight": 1 } }, { "key": "2621", "source": "758", "target": "747", "attributes": { "weight": 2 } }, { "key": "2622", "source": "759", "target": "748", "attributes": { "weight": 2 } }, { "key": "2623", "source": "759", "target": "772", "attributes": { "weight": 1 } }, { "key": "2624", "source": "760", "target": "712", "attributes": { "weight": 2 } }, { "key": "2628", "source": "761", "target": "769", "attributes": { "weight": 2 } }, { "key": "2626", "source": "761", "target": "736", "attributes": { "weight": 2 } }, { "key": "2627", "source": "761", "target": "748", "attributes": { "weight": 2 } }, { "key": "2629", "source": "762", "target": "712", "attributes": { "weight": 1 } }, { "key": "2631", "source": "763", "target": "769", "attributes": { "weight": 2 } }, { "key": "2634", "source": "765", "target": "727", "attributes": { "weight": 2 } }, { "key": "2635", "source": "765", "target": "748", "attributes": { "weight": 2 } }, { "key": "2638", "source": "767", "target": "740", "attributes": { "weight": 2 } }, { "key": "2639", "source": "767", "target": "748", "attributes": { "weight": 1 } }, { "key": "2641", "source": "768", "target": "526", "attributes": { "weight": 1 } }, { "key": "2643", "source": "769", "target": "761", "attributes": { "weight": 2 } }, { "key": "2642", "source": "769", "target": "711", "attributes": { "weight": 3 } }, { "key": "2644", "source": "769", "target": "763", "attributes": { "weight": 2 } }, { "key": "2861", "source": "769", "target": "748", "attributes": { "weight": 1 } }, { "key": "2645", "source": "770", "target": "731", "attributes": { "weight": 1 } }, { "key": "2646", "source": "770", "target": "757", "attributes": { "weight": 1 } }, { "key": "2647", "source": "771", "target": "711", "attributes": { "weight": 2 } }, { "key": "2862", "source": "772", "target": "759", "attributes": { "weight": 1 } }, { "key": "2649", "source": "772", "target": "748", "attributes": { "weight": 2 } }, { "key": "2648", "source": "772", "target": "740", "attributes": { "weight": 1 } }, { "key": "2654", "source": "774", "target": "750", "attributes": { "weight": 2 } }, { "key": "2656", "source": "775", "target": "748", "attributes": { "weight": 2 } }, { "key": "2655", "source": "775", "target": "728", "attributes": { "weight": 2 } }, { "key": "2863", "source": "776", "target": "750", "attributes": { "weight": 1 } }, { "key": "2657", "source": "776", "target": "741", "attributes": { "weight": 2 } }, { "key": "35227", "source": "777", "target": "1030", "attributes": { "weight": 1 } }, { "key": "2665", "source": "777", "target": "238", "attributes": { "weight": 1 } }, { "key": "30637", "source": "777", "target": "778", "attributes": { "weight": 3 } }, { "key": "30638", "source": "778", "target": "777", "attributes": { "weight": 3 } }, { "key": "3645", "source": "778", "target": "1027", "attributes": { "weight": 4 } }, { "key": "15576", "source": "778", "target": "195", "attributes": { "weight": 1 } }, { "key": "21639", "source": "778", "target": "109", "attributes": { "weight": 2 } }, { "key": "2667", "source": "778", "target": "238", "attributes": { "weight": 2 } }, { "key": "4451", "source": "778", "target": "961", "attributes": { "weight": 1 } }, { "key": "30311", "source": "778", "target": "2980", "attributes": { "weight": 3 } }, { "key": "32867", "source": "778", "target": "1357", "attributes": { "weight": 1 } }, { "key": "14020", "source": "778", "target": "1031", "attributes": { "weight": 3 } }, { "key": "30310", "source": "778", "target": "1030", "attributes": { "weight": 4 } }, { "key": "4450", "source": "778", "target": "371", "attributes": { "weight": 3 } }, { "key": "30639", "source": "778", "target": "239", "attributes": { "weight": 2 } }, { "key": "30748", "source": "778", "target": "1711", "attributes": { "weight": 1 } }, { "key": "26199", "source": "778", "target": "45", "attributes": { "weight": 1 } }, { "key": "12807", "source": "778", "target": "785", "attributes": { "weight": 1 } }, { "key": "26424", "source": "778", "target": "454", "attributes": { "weight": 1 } }, { "key": "2666", "source": "778", "target": "236", "attributes": { "weight": 6 } }, { "key": "10645", "source": "778", "target": "30", "attributes": { "weight": 2 } }, { "key": "10644", "source": "778", "target": "43", "attributes": { "weight": 4 } }, { "key": "4449", "source": "778", "target": "370", "attributes": { "weight": 1 } }, { "key": "3649", "source": "778", "target": "1032", "attributes": { "weight": 4 } }, { "key": "35236", "source": "778", "target": "3193", "attributes": { "weight": 1 } }, { "key": "35231", "source": "778", "target": "3186", "attributes": { "weight": 1 } }, { "key": "4448", "source": "778", "target": "368", "attributes": { "weight": 1 } }, { "key": "24022", "source": "778", "target": "471", "attributes": { "weight": 3 } }, { "key": "3650", "source": "778", "target": "1033", "attributes": { "weight": 2 } }, { "key": "14019", "source": "778", "target": "782", "attributes": { "weight": 1 } }, { "key": "3648", "source": "778", "target": "1029", "attributes": { "weight": 2 } }, { "key": "33919", "source": "778", "target": "1233", "attributes": { "weight": 1 } }, { "key": "21640", "source": "778", "target": "372", "attributes": { "weight": 1 } }, { "key": "32869", "source": "778", "target": "1744", "attributes": { "weight": 1 } }, { "key": "35233", "source": "778", "target": "3188", "attributes": { "weight": 1 } }, { "key": "3646", "source": "778", "target": "1028", "attributes": { "weight": 2 } }, { "key": "8496", "source": "778", "target": "442", "attributes": { "weight": 1 } }, { "key": "3647", "source": "778", "target": "240", "attributes": { "weight": 5 } }, { "key": "30312", "source": "778", "target": "2981", "attributes": { "weight": 2 } }, { "key": "30640", "source": "778", "target": "2993", "attributes": { "weight": 3 } }, { "key": "35235", "source": "778", "target": "3192", "attributes": { "weight": 1 } }, { "key": "9721", "source": "778", "target": "396", "attributes": { "weight": 1 } }, { "key": "14133", "source": "778", "target": "392", "attributes": { "weight": 2 } }, { "key": "26200", "source": "778", "target": "601", "attributes": { "weight": 1 } }, { "key": "35232", "source": "778", "target": "3187", "attributes": { "weight": 1 } }, { "key": "10067", "source": "778", "target": "369", "attributes": { "weight": 2 } }, { "key": "11034", "source": "778", "target": "452", "attributes": { "weight": 1 } }, { "key": "35234", "source": "778", "target": "3190", "attributes": { "weight": 1 } }, { "key": "32868", "source": "778", "target": "470", "attributes": { "weight": 1 } }, { "key": "4488", "source": "779", "target": "195", "attributes": { "weight": 8 } }, { "key": "4554", "source": "779", "target": "1262", "attributes": { "weight": 2 } }, { "key": "4579", "source": "779", "target": "1294", "attributes": { "weight": 2 } }, { "key": "4526", "source": "779", "target": "1209", "attributes": { "weight": 2 } }, { "key": "4576", "source": "779", "target": "1292", "attributes": { "weight": 2 } }, { "key": "4590", "source": "779", "target": "215", "attributes": { "weight": 2 } }, { "key": "4506", "source": "779", "target": "1180", "attributes": { "weight": 2 } }, { "key": "4615", "source": "779", "target": "375", "attributes": { "weight": 2 } }, { "key": "18147", "source": "779", "target": "2205", "attributes": { "weight": 1 } }, { "key": "4538", "source": "779", "target": "1230", "attributes": { "weight": 2 } }, { "key": "4533", "source": "779", "target": "917", "attributes": { "weight": 2 } }, { "key": "4586", "source": "779", "target": "1305", "attributes": { "weight": 2 } }, { "key": "4519", "source": "779", "target": "913", "attributes": { "weight": 3 } }, { "key": "4591", "source": "779", "target": "1315", "attributes": { "weight": 2 } }, { "key": "4489", "source": "779", "target": "236", "attributes": { "weight": 2 } }, { "key": "4516", "source": "779", "target": "1197", "attributes": { "weight": 2 } }, { "key": "4544", "source": "779", "target": "205", "attributes": { "weight": 2 } }, { "key": "4608", "source": "779", "target": "217", "attributes": { "weight": 2 } }, { "key": "4535", "source": "779", "target": "1226", "attributes": { "weight": 2 } }, { "key": "4503", "source": "779", "target": "442", "attributes": { "weight": 2 } }, { "key": "4522", "source": "779", "target": "1047", "attributes": { "weight": 3 } }, { "key": "4601", "source": "779", "target": "1329", "attributes": { "weight": 3 } }, { "key": "4492", "source": "779", "target": "1154", "attributes": { "weight": 2 } }, { "key": "4520", "source": "779", "target": "449", "attributes": { "weight": 2 } }, { "key": "4509", "source": "779", "target": "911", "attributes": { "weight": 2 } }, { "key": "4557", "source": "779", "target": "923", "attributes": { "weight": 2 } }, { "key": "4604", "source": "779", "target": "124", "attributes": { "weight": 2 } }, { "key": "4548", "source": "779", "target": "920", "attributes": { "weight": 2 } }, { "key": "4508", "source": "779", "target": "1184", "attributes": { "weight": 2 } }, { "key": "4567", "source": "779", "target": "926", "attributes": { "weight": 2 } }, { "key": "2668", "source": "779", "target": "238", "attributes": { "weight": 1 } }, { "key": "4595", "source": "779", "target": "1321", "attributes": { "weight": 2 } }, { "key": "4594", "source": "779", "target": "1319", "attributes": { "weight": 2 } }, { "key": "4528", "source": "779", "target": "454", "attributes": { "weight": 2 } }, { "key": "4546", "source": "779", "target": "337", "attributes": { "weight": 2 } }, { "key": "4602", "source": "779", "target": "1331", "attributes": { "weight": 2 } }, { "key": "4566", "source": "779", "target": "925", "attributes": { "weight": 3 } }, { "key": "4562", "source": "779", "target": "371", "attributes": { "weight": 2 } }, { "key": "4565", "source": "779", "target": "1275", "attributes": { "weight": 2 } }, { "key": "4513", "source": "779", "target": "1193", "attributes": { "weight": 2 } }, { "key": "4599", "source": "779", "target": "407", "attributes": { "weight": 3 } }, { "key": "4613", "source": "779", "target": "1348", "attributes": { "weight": 2 } }, { "key": "4518", "source": "779", "target": "1199", "attributes": { "weight": 2 } }, { "key": "4507", "source": "779", "target": "1182", "attributes": { "weight": 3 } }, { "key": "4531", "source": "779", "target": "1221", "attributes": { "weight": 2 } }, { "key": "4486", "source": "779", "target": "933", "attributes": { "weight": 2 } }, { "key": "4580", "source": "779", "target": "1296", "attributes": { "weight": 2 } }, { "key": "4592", "source": "779", "target": "405", "attributes": { "weight": 2 } }, { "key": "4502", "source": "779", "target": "1176", "attributes": { "weight": 2 } }, { "key": "4491", "source": "779", "target": "1153", "attributes": { "weight": 2 } }, { "key": "4523", "source": "779", "target": "1207", "attributes": { "weight": 2 } }, { "key": "4616", "source": "779", "target": "154", "attributes": { "weight": 2 } }, { "key": "4582", "source": "779", "target": "214", "attributes": { "weight": 2 } }, { "key": "4511", "source": "779", "target": "912", "attributes": { "weight": 3 } }, { "key": "4545", "source": "779", "target": "370", "attributes": { "weight": 4 } }, { "key": "4550", "source": "779", "target": "468", "attributes": { "weight": 2 } }, { "key": "4493", "source": "779", "target": "1156", "attributes": { "weight": 2 } }, { "key": "4536", "source": "779", "target": "945", "attributes": { "weight": 2 } }, { "key": "4525", "source": "779", "target": "199", "attributes": { "weight": 2 } }, { "key": "4561", "source": "779", "target": "1268", "attributes": { "weight": 2 } }, { "key": "4583", "source": "779", "target": "372", "attributes": { "weight": 2 } }, { "key": "4542", "source": "779", "target": "1236", "attributes": { "weight": 2 } }, { "key": "4537", "source": "779", "target": "1229", "attributes": { "weight": 2 } }, { "key": "4603", "source": "779", "target": "1333", "attributes": { "weight": 2 } }, { "key": "4572", "source": "779", "target": "123", "attributes": { "weight": 3 } }, { "key": "4539", "source": "779", "target": "1232", "attributes": { "weight": 3 } }, { "key": "4490", "source": "779", "target": "1152", "attributes": { "weight": 2 } }, { "key": "26426", "source": "779", "target": "189", "attributes": { "weight": 1 } }, { "key": "4497", "source": "779", "target": "1170", "attributes": { "weight": 2 } }, { "key": "4494", "source": "779", "target": "1162", "attributes": { "weight": 2 } }, { "key": "4600", "source": "779", "target": "961", "attributes": { "weight": 2 } }, { "key": "4559", "source": "779", "target": "396", "attributes": { "weight": 2 } }, { "key": "4605", "source": "779", "target": "963", "attributes": { "weight": 2 } }, { "key": "4610", "source": "779", "target": "1340", "attributes": { "weight": 2 } }, { "key": "4551", "source": "779", "target": "544", "attributes": { "weight": 2 } }, { "key": "4532", "source": "779", "target": "109", "attributes": { "weight": 2 } }, { "key": "4485", "source": "779", "target": "1145", "attributes": { "weight": 2 } }, { "key": "18635", "source": "779", "target": "1552", "attributes": { "weight": 2 } }, { "key": "4498", "source": "779", "target": "1172", "attributes": { "weight": 2 } }, { "key": "4589", "source": "779", "target": "1309", "attributes": { "weight": 2 } }, { "key": "29241", "source": "779", "target": "2839", "attributes": { "weight": 1 } }, { "key": "4530", "source": "779", "target": "204", "attributes": { "weight": 2 } }, { "key": "4496", "source": "779", "target": "938", "attributes": { "weight": 3 } }, { "key": "4585", "source": "779", "target": "1792", "attributes": { "weight": 2 } }, { "key": "4495", "source": "779", "target": "1165", "attributes": { "weight": 2 } }, { "key": "4587", "source": "779", "target": "1307", "attributes": { "weight": 2 } }, { "key": "4510", "source": "779", "target": "387", "attributes": { "weight": 2 } }, { "key": "4612", "source": "779", "target": "1347", "attributes": { "weight": 2 } }, { "key": "4524", "source": "779", "target": "452", "attributes": { "weight": 2 } }, { "key": "4577", "source": "779", "target": "1293", "attributes": { "weight": 2 } }, { "key": "4515", "source": "779", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4609", "source": "779", "target": "218", "attributes": { "weight": 2 } }, { "key": "4484", "source": "779", "target": "1138", "attributes": { "weight": 2 } }, { "key": "4487", "source": "779", "target": "248", "attributes": { "weight": 2 } }, { "key": "4560", "source": "779", "target": "1266", "attributes": { "weight": 2 } }, { "key": "4505", "source": "779", "target": "1179", "attributes": { "weight": 2 } }, { "key": "4588", "source": "779", "target": "927", "attributes": { "weight": 2 } }, { "key": "4564", "source": "779", "target": "1270", "attributes": { "weight": 2 } }, { "key": "4555", "source": "779", "target": "1263", "attributes": { "weight": 2 } }, { "key": "4553", "source": "779", "target": "1259", "attributes": { "weight": 2 } }, { "key": "4606", "source": "779", "target": "257", "attributes": { "weight": 2 } }, { "key": "4584", "source": "779", "target": "1301", "attributes": { "weight": 2 } }, { "key": "4575", "source": "779", "target": "1291", "attributes": { "weight": 2 } }, { "key": "4534", "source": "779", "target": "918", "attributes": { "weight": 2 } }, { "key": "4500", "source": "779", "target": "631", "attributes": { "weight": 2 } }, { "key": "4549", "source": "779", "target": "921", "attributes": { "weight": 3 } }, { "key": "4512", "source": "779", "target": "389", "attributes": { "weight": 2 } }, { "key": "4568", "source": "779", "target": "1279", "attributes": { "weight": 2 } }, { "key": "4529", "source": "779", "target": "1214", "attributes": { "weight": 2 } }, { "key": "4611", "source": "779", "target": "930", "attributes": { "weight": 2 } }, { "key": "4563", "source": "779", "target": "1269", "attributes": { "weight": 2 } }, { "key": "4517", "source": "779", "target": "368", "attributes": { "weight": 2 } }, { "key": "4540", "source": "779", "target": "1233", "attributes": { "weight": 3 } }, { "key": "4614", "source": "779", "target": "931", "attributes": { "weight": 2 } }, { "key": "4607", "source": "779", "target": "928", "attributes": { "weight": 2 } }, { "key": "4527", "source": "779", "target": "200", "attributes": { "weight": 2 } }, { "key": "4552", "source": "779", "target": "1255", "attributes": { "weight": 2 } }, { "key": "4547", "source": "779", "target": "338", "attributes": { "weight": 2 } }, { "key": "4597", "source": "779", "target": "1323", "attributes": { "weight": 2 } }, { "key": "4569", "source": "779", "target": "1281", "attributes": { "weight": 2 } }, { "key": "4521", "source": "779", "target": "1204", "attributes": { "weight": 2 } }, { "key": "4573", "source": "779", "target": "1289", "attributes": { "weight": 2 } }, { "key": "4556", "source": "779", "target": "208", "attributes": { "weight": 4 } }, { "key": "4558", "source": "779", "target": "924", "attributes": { "weight": 2 } }, { "key": "4617", "source": "779", "target": "1063", "attributes": { "weight": 3 } }, { "key": "4596", "source": "779", "target": "1322", "attributes": { "weight": 2 } }, { "key": "4598", "source": "779", "target": "406", "attributes": { "weight": 2 } }, { "key": "4499", "source": "779", "target": "1174", "attributes": { "weight": 4 } }, { "key": "4571", "source": "779", "target": "1287", "attributes": { "weight": 2 } }, { "key": "4514", "source": "779", "target": "1194", "attributes": { "weight": 2 } }, { "key": "4504", "source": "779", "target": "910", "attributes": { "weight": 2 } }, { "key": "36519", "source": "779", "target": "1228", "attributes": { "weight": 1 } }, { "key": "35184", "source": "779", "target": "108", "attributes": { "weight": 1 } }, { "key": "4581", "source": "779", "target": "990", "attributes": { "weight": 2 } }, { "key": "4570", "source": "779", "target": "1283", "attributes": { "weight": 2 } }, { "key": "4593", "source": "779", "target": "1316", "attributes": { "weight": 2 } }, { "key": "4578", "source": "779", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4543", "source": "779", "target": "1241", "attributes": { "weight": 2 } }, { "key": "4574", "source": "779", "target": "212", "attributes": { "weight": 2 } }, { "key": "4541", "source": "779", "target": "1235", "attributes": { "weight": 2 } }, { "key": "4501", "source": "779", "target": "1175", "attributes": { "weight": 2 } }, { "key": "12820", "source": "780", "target": "1281", "attributes": { "weight": 1 } }, { "key": "28925", "source": "780", "target": "1892", "attributes": { "weight": 1 } }, { "key": "12822", "source": "780", "target": "257", "attributes": { "weight": 1 } }, { "key": "26158", "source": "780", "target": "1214", "attributes": { "weight": 1 } }, { "key": "11905", "source": "780", "target": "135", "attributes": { "weight": 2 } }, { "key": "25440", "source": "780", "target": "990", "attributes": { "weight": 1 } }, { "key": "7326", "source": "780", "target": "1063", "attributes": { "weight": 4 } }, { "key": "25441", "source": "780", "target": "254", "attributes": { "weight": 1 } }, { "key": "12818", "source": "780", "target": "1262", "attributes": { "weight": 2 } }, { "key": "12819", "source": "780", "target": "208", "attributes": { "weight": 1 } }, { "key": "15897", "source": "780", "target": "195", "attributes": { "weight": 1 } }, { "key": "12816", "source": "780", "target": "248", "attributes": { "weight": 1 } }, { "key": "12817", "source": "780", "target": "1158", "attributes": { "weight": 1 } }, { "key": "12821", "source": "780", "target": "785", "attributes": { "weight": 1 } }, { "key": "11592", "source": "780", "target": "199", "attributes": { "weight": 3 } }, { "key": "14042", "source": "780", "target": "1031", "attributes": { "weight": 2 } }, { "key": "2682", "source": "780", "target": "238", "attributes": { "weight": 1 } }, { "key": "5239", "source": "780", "target": "371", "attributes": { "weight": 2 } }, { "key": "11593", "source": "780", "target": "370", "attributes": { "weight": 3 } }, { "key": "11614", "source": "781", "target": "370", "attributes": { "weight": 1 } }, { "key": "12056", "source": "781", "target": "961", "attributes": { "weight": 1 } }, { "key": "12793", "source": "781", "target": "452", "attributes": { "weight": 2 } }, { "key": "12794", "source": "781", "target": "473", "attributes": { "weight": 1 } }, { "key": "2683", "source": "781", "target": "236", "attributes": { "weight": 1 } }, { "key": "35204", "source": "781", "target": "471", "attributes": { "weight": 1 } }, { "key": "5492", "source": "781", "target": "371", "attributes": { "weight": 2 } }, { "key": "32968", "source": "781", "target": "1350", "attributes": { "weight": 1 } }, { "key": "11637", "source": "782", "target": "199", "attributes": { "weight": 2 } }, { "key": "10717", "source": "782", "target": "43", "attributes": { "weight": 3 } }, { "key": "10719", "source": "782", "target": "1718", "attributes": { "weight": 1 } }, { "key": "10725", "source": "782", "target": "1729", "attributes": { "weight": 1 } }, { "key": "10720", "source": "782", "target": "1719", "attributes": { "weight": 1 } }, { "key": "14051", "source": "782", "target": "993", "attributes": { "weight": 1 } }, { "key": "10723", "source": "782", "target": "471", "attributes": { "weight": 1 } }, { "key": "14052", "source": "782", "target": "778", "attributes": { "weight": 1 } }, { "key": "10722", "source": "782", "target": "30", "attributes": { "weight": 1 } }, { "key": "10721", "source": "782", "target": "370", "attributes": { "weight": 2 } }, { "key": "5540", "source": "782", "target": "371", "attributes": { "weight": 5 } }, { "key": "10715", "source": "782", "target": "1716", "attributes": { "weight": 1 } }, { "key": "10718", "source": "782", "target": "44", "attributes": { "weight": 1 } }, { "key": "26238", "source": "782", "target": "48", "attributes": { "weight": 1 } }, { "key": "14053", "source": "782", "target": "1031", "attributes": { "weight": 1 } }, { "key": "2686", "source": "782", "target": "238", "attributes": { "weight": 1 } }, { "key": "10716", "source": "782", "target": "1717", "attributes": { "weight": 1 } }, { "key": "10724", "source": "782", "target": "1314", "attributes": { "weight": 1 } }, { "key": "30813", "source": "783", "target": "2590", "attributes": { "weight": 1 } }, { "key": "25442", "source": "783", "target": "990", "attributes": { "weight": 1 } }, { "key": "33129", "source": "783", "target": "254", "attributes": { "weight": 1 } }, { "key": "2689", "source": "783", "target": "257", "attributes": { "weight": 1 } }, { "key": "5926", "source": "783", "target": "199", "attributes": { "weight": 4 } }, { "key": "7372", "source": "783", "target": "154", "attributes": { "weight": 1 } }, { "key": "9010", "source": "783", "target": "252", "attributes": { "weight": 2 } }, { "key": "28244", "source": "783", "target": "2731", "attributes": { "weight": 2 } }, { "key": "9876", "source": "783", "target": "1031", "attributes": { "weight": 2 } }, { "key": "5927", "source": "783", "target": "370", "attributes": { "weight": 4 } }, { "key": "5928", "source": "783", "target": "371", "attributes": { "weight": 4 } }, { "key": "16180", "source": "783", "target": "195", "attributes": { "weight": 1 } }, { "key": "30004", "source": "784", "target": "249", "attributes": { "weight": 1 } }, { "key": "25894", "source": "784", "target": "220", "attributes": { "weight": 2 } }, { "key": "30002", "source": "784", "target": "236", "attributes": { "weight": 1 } }, { "key": "2691", "source": "784", "target": "785", "attributes": { "weight": 3 } }, { "key": "30005", "source": "784", "target": "1892", "attributes": { "weight": 1 } }, { "key": "30003", "source": "784", "target": "1437", "attributes": { "weight": 1 } }, { "key": "2690", "source": "784", "target": "238", "attributes": { "weight": 1 } }, { "key": "34660", "source": "785", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34659", "source": "785", "target": "1047", "attributes": { "weight": 1 } }, { "key": "12030", "source": "785", "target": "1347", "attributes": { "weight": 2 } }, { "key": "11659", "source": "785", "target": "370", "attributes": { "weight": 2 } }, { "key": "11658", "source": "785", "target": "199", "attributes": { "weight": 2 } }, { "key": "12837", "source": "785", "target": "1063", "attributes": { "weight": 2 } }, { "key": "12832", "source": "785", "target": "780", "attributes": { "weight": 1 } }, { "key": "2692", "source": "785", "target": "238", "attributes": { "weight": 3 } }, { "key": "6181", "source": "785", "target": "371", "attributes": { "weight": 3 } }, { "key": "12836", "source": "785", "target": "1814", "attributes": { "weight": 1 } }, { "key": "12828", "source": "785", "target": "1158", "attributes": { "weight": 1 } }, { "key": "12833", "source": "785", "target": "135", "attributes": { "weight": 1 } }, { "key": "26818", "source": "785", "target": "2650", "attributes": { "weight": 1 } }, { "key": "12834", "source": "785", "target": "208", "attributes": { "weight": 1 } }, { "key": "12835", "source": "785", "target": "256", "attributes": { "weight": 2 } }, { "key": "12831", "source": "785", "target": "1220", "attributes": { "weight": 3 } }, { "key": "2693", "source": "785", "target": "784", "attributes": { "weight": 3 } }, { "key": "35257", "source": "785", "target": "1030", "attributes": { "weight": 1 } }, { "key": "12829", "source": "785", "target": "778", "attributes": { "weight": 1 } }, { "key": "12830", "source": "785", "target": "1892", "attributes": { "weight": 1 } }, { "key": "9883", "source": "785", "target": "1031", "attributes": { "weight": 2 } }, { "key": "3660", "source": "786", "target": "1027", "attributes": { "weight": 2 } }, { "key": "30316", "source": "786", "target": "1030", "attributes": { "weight": 2 } }, { "key": "2697", "source": "786", "target": "236", "attributes": { "weight": 2 } }, { "key": "2698", "source": "786", "target": "238", "attributes": { "weight": 1 } }, { "key": "3661", "source": "786", "target": "240", "attributes": { "weight": 2 } }, { "key": "14128", "source": "786", "target": "1031", "attributes": { "weight": 1 } }, { "key": "16505", "source": "787", "target": "2068", "attributes": { "weight": 1 } }, { "key": "28927", "source": "787", "target": "479", "attributes": { "weight": 1 } }, { "key": "25587", "source": "787", "target": "2070", "attributes": { "weight": 2 } }, { "key": "2700", "source": "787", "target": "788", "attributes": { "weight": 3 } }, { "key": "25588", "source": "787", "target": "5", "attributes": { "weight": 1 } }, { "key": "14314", "source": "787", "target": "319", "attributes": { "weight": 2 } }, { "key": "25596", "source": "787", "target": "2074", "attributes": { "weight": 1 } }, { "key": "16506", "source": "787", "target": "2069", "attributes": { "weight": 1 } }, { "key": "25600", "source": "787", "target": "595", "attributes": { "weight": 1 } }, { "key": "25584", "source": "787", "target": "164", "attributes": { "weight": 1 } }, { "key": "16512", "source": "787", "target": "2077", "attributes": { "weight": 2 } }, { "key": "26387", "source": "787", "target": "454", "attributes": { "weight": 1 } }, { "key": "16508", "source": "787", "target": "2072", "attributes": { "weight": 1 } }, { "key": "25599", "source": "787", "target": "177", "attributes": { "weight": 1 } }, { "key": "25601", "source": "787", "target": "673", "attributes": { "weight": 1 } }, { "key": "35778", "source": "787", "target": "790", "attributes": { "weight": 1 } }, { "key": "34924", "source": "787", "target": "3", "attributes": { "weight": 1 } }, { "key": "29355", "source": "787", "target": "232", "attributes": { "weight": 1 } }, { "key": "11825", "source": "787", "target": "468", "attributes": { "weight": 2 } }, { "key": "22259", "source": "787", "target": "794", "attributes": { "weight": 1 } }, { "key": "16511", "source": "787", "target": "2076", "attributes": { "weight": 1 } }, { "key": "25590", "source": "787", "target": "278", "attributes": { "weight": 2 } }, { "key": "25804", "source": "787", "target": "220", "attributes": { "weight": 1 } }, { "key": "16510", "source": "787", "target": "2075", "attributes": { "weight": 1 } }, { "key": "25598", "source": "787", "target": "2612", "attributes": { "weight": 1 } }, { "key": "25591", "source": "787", "target": "791", "attributes": { "weight": 2 } }, { "key": "25594", "source": "787", "target": "171", "attributes": { "weight": 1 } }, { "key": "16509", "source": "787", "target": "2073", "attributes": { "weight": 1 } }, { "key": "16514", "source": "787", "target": "2079", "attributes": { "weight": 2 } }, { "key": "18012", "source": "787", "target": "1036", "attributes": { "weight": 2 } }, { "key": "25597", "source": "787", "target": "8", "attributes": { "weight": 2 } }, { "key": "25593", "source": "787", "target": "817", "attributes": { "weight": 1 } }, { "key": "25586", "source": "787", "target": "789", "attributes": { "weight": 2 } }, { "key": "16503", "source": "787", "target": "810", "attributes": { "weight": 2 } }, { "key": "25589", "source": "787", "target": "168", "attributes": { "weight": 1 } }, { "key": "34925", "source": "787", "target": "352", "attributes": { "weight": 1 } }, { "key": "25585", "source": "787", "target": "419", "attributes": { "weight": 1 } }, { "key": "16507", "source": "787", "target": "2071", "attributes": { "weight": 2 } }, { "key": "16513", "source": "787", "target": "1780", "attributes": { "weight": 5 } }, { "key": "23398", "source": "787", "target": "304", "attributes": { "weight": 2 } }, { "key": "16504", "source": "787", "target": "2067", "attributes": { "weight": 2 } }, { "key": "30817", "source": "787", "target": "13", "attributes": { "weight": 1 } }, { "key": "25592", "source": "787", "target": "1024", "attributes": { "weight": 2 } }, { "key": "23731", "source": "787", "target": "1774", "attributes": { "weight": 2 } }, { "key": "25595", "source": "787", "target": "7", "attributes": { "weight": 1 } }, { "key": "2714", "source": "788", "target": "794", "attributes": { "weight": 1 } }, { "key": "2704", "source": "788", "target": "0", "attributes": { "weight": 1 } }, { "key": "32102", "source": "788", "target": "454", "attributes": { "weight": 1 } }, { "key": "33762", "source": "788", "target": "9", "attributes": { "weight": 1 } }, { "key": "33765", "source": "788", "target": "351", "attributes": { "weight": 1 } }, { "key": "2716", "source": "788", "target": "319", "attributes": { "weight": 3 } }, { "key": "33761", "source": "788", "target": "817", "attributes": { "weight": 1 } }, { "key": "2706", "source": "788", "target": "419", "attributes": { "weight": 1 } }, { "key": "30878", "source": "788", "target": "2", "attributes": { "weight": 2 } }, { "key": "33760", "source": "788", "target": "2646", "attributes": { "weight": 1 } }, { "key": "17587", "source": "788", "target": "1801", "attributes": { "weight": 1 } }, { "key": "21568", "source": "788", "target": "358", "attributes": { "weight": 2 } }, { "key": "33764", "source": "788", "target": "823", "attributes": { "weight": 1 } }, { "key": "2709", "source": "788", "target": "790", "attributes": { "weight": 2 } }, { "key": "32103", "source": "788", "target": "681", "attributes": { "weight": 3 } }, { "key": "2715", "source": "788", "target": "14", "attributes": { "weight": 3 } }, { "key": "30577", "source": "788", "target": "19", "attributes": { "weight": 2 } }, { "key": "24413", "source": "788", "target": "2505", "attributes": { "weight": 1 } }, { "key": "33766", "source": "788", "target": "828", "attributes": { "weight": 1 } }, { "key": "2705", "source": "788", "target": "787", "attributes": { "weight": 3 } }, { "key": "32104", "source": "788", "target": "7", "attributes": { "weight": 2 } }, { "key": "2707", "source": "788", "target": "3", "attributes": { "weight": 2 } }, { "key": "33763", "source": "788", "target": "10", "attributes": { "weight": 1 } }, { "key": "2710", "source": "788", "target": "791", "attributes": { "weight": 3 } }, { "key": "30578", "source": "788", "target": "682", "attributes": { "weight": 2 } }, { "key": "2712", "source": "788", "target": "13", "attributes": { "weight": 2 } }, { "key": "2711", "source": "788", "target": "8", "attributes": { "weight": 4 } }, { "key": "2708", "source": "788", "target": "789", "attributes": { "weight": 2 } }, { "key": "2713", "source": "788", "target": "793", "attributes": { "weight": 1 } }, { "key": "32105", "source": "788", "target": "2103", "attributes": { "weight": 1 } }, { "key": "21571", "source": "789", "target": "358", "attributes": { "weight": 1 } }, { "key": "23753", "source": "789", "target": "1774", "attributes": { "weight": 2 } }, { "key": "14567", "source": "789", "target": "319", "attributes": { "weight": 3 } }, { "key": "26103", "source": "789", "target": "13", "attributes": { "weight": 4 } }, { "key": "37315", "source": "789", "target": "7", "attributes": { "weight": 1 } }, { "key": "32381", "source": "789", "target": "1926", "attributes": { "weight": 1 } }, { "key": "30295", "source": "789", "target": "791", "attributes": { "weight": 2 } }, { "key": "26101", "source": "789", "target": "4", "attributes": { "weight": 1 } }, { "key": "26104", "source": "789", "target": "793", "attributes": { "weight": 2 } }, { "key": "30296", "source": "789", "target": "681", "attributes": { "weight": 2 } }, { "key": "26102", "source": "789", "target": "19", "attributes": { "weight": 1 } }, { "key": "31595", "source": "789", "target": "8", "attributes": { "weight": 2 } }, { "key": "30294", "source": "789", "target": "2", "attributes": { "weight": 1 } }, { "key": "29420", "source": "789", "target": "232", "attributes": { "weight": 1 } }, { "key": "2717", "source": "789", "target": "788", "attributes": { "weight": 2 } }, { "key": "30298", "source": "789", "target": "1988", "attributes": { "weight": 3 } }, { "key": "25608", "source": "789", "target": "1780", "attributes": { "weight": 1 } }, { "key": "30297", "source": "789", "target": "682", "attributes": { "weight": 1 } }, { "key": "23123", "source": "789", "target": "3", "attributes": { "weight": 6 } }, { "key": "25607", "source": "789", "target": "787", "attributes": { "weight": 2 } }, { "key": "11136", "source": "789", "target": "595", "attributes": { "weight": 2 } }, { "key": "26105", "source": "789", "target": "14", "attributes": { "weight": 4 } }, { "key": "14640", "source": "790", "target": "319", "attributes": { "weight": 1 } }, { "key": "22289", "source": "790", "target": "794", "attributes": { "weight": 1 } }, { "key": "17467", "source": "790", "target": "358", "attributes": { "weight": 4 } }, { "key": "24509", "source": "790", "target": "5", "attributes": { "weight": 2 } }, { "key": "35790", "source": "790", "target": "305", "attributes": { "weight": 1 } }, { "key": "22669", "source": "790", "target": "1037", "attributes": { "weight": 1 } }, { "key": "31608", "source": "790", "target": "595", "attributes": { "weight": 1 } }, { "key": "24507", "source": "790", "target": "454", "attributes": { "weight": 2 } }, { "key": "24514", "source": "790", "target": "473", "attributes": { "weight": 1 } }, { "key": "17600", "source": "790", "target": "59", "attributes": { "weight": 2 } }, { "key": "24502", "source": "790", "target": "220", "attributes": { "weight": 1 } }, { "key": "17603", "source": "790", "target": "2139", "attributes": { "weight": 1 } }, { "key": "17602", "source": "790", "target": "791", "attributes": { "weight": 5 } }, { "key": "24512", "source": "790", "target": "171", "attributes": { "weight": 2 } }, { "key": "35785", "source": "790", "target": "164", "attributes": { "weight": 1 } }, { "key": "11155", "source": "790", "target": "452", "attributes": { "weight": 2 } }, { "key": "26125", "source": "790", "target": "1056", "attributes": { "weight": 1 } }, { "key": "11344", "source": "790", "target": "1742", "attributes": { "weight": 1 } }, { "key": "35784", "source": "790", "target": "787", "attributes": { "weight": 1 } }, { "key": "35787", "source": "790", "target": "419", "attributes": { "weight": 1 } }, { "key": "24511", "source": "790", "target": "1763", "attributes": { "weight": 1 } }, { "key": "24519", "source": "790", "target": "495", "attributes": { "weight": 2 } }, { "key": "24505", "source": "790", "target": "224", "attributes": { "weight": 1 } }, { "key": "24515", "source": "790", "target": "2289", "attributes": { "weight": 2 } }, { "key": "24510", "source": "790", "target": "188", "attributes": { "weight": 1 } }, { "key": "29432", "source": "790", "target": "232", "attributes": { "weight": 2 } }, { "key": "2718", "source": "790", "target": "788", "attributes": { "weight": 2 } }, { "key": "35786", "source": "790", "target": "259", "attributes": { "weight": 1 } }, { "key": "24517", "source": "790", "target": "304", "attributes": { "weight": 1 } }, { "key": "18063", "source": "790", "target": "1036", "attributes": { "weight": 1 } }, { "key": "24518", "source": "790", "target": "1774", "attributes": { "weight": 1 } }, { "key": "36952", "source": "790", "target": "362", "attributes": { "weight": 1 } }, { "key": "24513", "source": "790", "target": "468", "attributes": { "weight": 1 } }, { "key": "17601", "source": "790", "target": "693", "attributes": { "weight": 1 } }, { "key": "35789", "source": "790", "target": "2114", "attributes": { "weight": 1 } }, { "key": "24504", "source": "790", "target": "645", "attributes": { "weight": 1 } }, { "key": "35788", "source": "790", "target": "183", "attributes": { "weight": 1 } }, { "key": "17604", "source": "790", "target": "422", "attributes": { "weight": 1 } }, { "key": "30450", "source": "790", "target": "1046", "attributes": { "weight": 1 } }, { "key": "24506", "source": "790", "target": "2211", "attributes": { "weight": 2 } }, { "key": "24508", "source": "790", "target": "1118", "attributes": { "weight": 1 } }, { "key": "24516", "source": "790", "target": "1125", "attributes": { "weight": 1 } }, { "key": "24503", "source": "790", "target": "1520", "attributes": { "weight": 1 } }, { "key": "3034", "source": "791", "target": "865", "attributes": { "weight": 1 } }, { "key": "17605", "source": "791", "target": "790", "attributes": { "weight": 5 } }, { "key": "29202", "source": "791", "target": "163", "attributes": { "weight": 2 } }, { "key": "3037", "source": "791", "target": "868", "attributes": { "weight": 4 } }, { "key": "32468", "source": "791", "target": "338", "attributes": { "weight": 2 } }, { "key": "25797", "source": "791", "target": "673", "attributes": { "weight": 2 } }, { "key": "9288", "source": "791", "target": "1579", "attributes": { "weight": 1 } }, { "key": "32272", "source": "791", "target": "164", "attributes": { "weight": 2 } }, { "key": "32469", "source": "791", "target": "467", "attributes": { "weight": 1 } }, { "key": "32473", "source": "791", "target": "136", "attributes": { "weight": 1 } }, { "key": "31611", "source": "791", "target": "0", "attributes": { "weight": 2 } }, { "key": "32522", "source": "791", "target": "2868", "attributes": { "weight": 1 } }, { "key": "32453", "source": "791", "target": "1541", "attributes": { "weight": 1 } }, { "key": "25795", "source": "791", "target": "2258", "attributes": { "weight": 1 } }, { "key": "32506", "source": "791", "target": "1092", "attributes": { "weight": 1 } }, { "key": "9287", "source": "791", "target": "430", "attributes": { "weight": 2 } }, { "key": "11156", "source": "791", "target": "452", "attributes": { "weight": 2 } }, { "key": "31318", "source": "791", "target": "59", "attributes": { "weight": 2 } }, { "key": "32513", "source": "791", "target": "1093", "attributes": { "weight": 1 } }, { "key": "11345", "source": "791", "target": "1742", "attributes": { "weight": 2 } }, { "key": "32447", "source": "791", "target": "3097", "attributes": { "weight": 1 } }, { "key": "3028", "source": "791", "target": "859", "attributes": { "weight": 2 } }, { "key": "32510", "source": "791", "target": "192", "attributes": { "weight": 1 } }, { "key": "31319", "source": "791", "target": "674", "attributes": { "weight": 2 } }, { "key": "31317", "source": "791", "target": "1754", "attributes": { "weight": 2 } }, { "key": "8780", "source": "791", "target": "1087", "attributes": { "weight": 2 } }, { "key": "27860", "source": "791", "target": "891", "attributes": { "weight": 2 } }, { "key": "24767", "source": "791", "target": "486", "attributes": { "weight": 2 } }, { "key": "32514", "source": "791", "target": "2124", "attributes": { "weight": 1 } }, { "key": "32414", "source": "791", "target": "437", "attributes": { "weight": 1 } }, { "key": "31320", "source": "791", "target": "1118", "attributes": { "weight": 2 } }, { "key": "30707", "source": "791", "target": "889", "attributes": { "weight": 2 } }, { "key": "32405", "source": "791", "target": "3092", "attributes": { "weight": 1 } }, { "key": "32518", "source": "791", "target": "492", "attributes": { "weight": 1 } }, { "key": "28403", "source": "791", "target": "170", "attributes": { "weight": 2 } }, { "key": "26592", "source": "791", "target": "454", "attributes": { "weight": 3 } }, { "key": "32415", "source": "791", "target": "1522", "attributes": { "weight": 1 } }, { "key": "29857", "source": "791", "target": "2122", "attributes": { "weight": 3 } }, { "key": "32489", "source": "791", "target": "2867", "attributes": { "weight": 1 } }, { "key": "32486", "source": "791", "target": "423", "attributes": { "weight": 1 } }, { "key": "32504", "source": "791", "target": "487", "attributes": { "weight": 1 } }, { "key": "13181", "source": "791", "target": "305", "attributes": { "weight": 2 } }, { "key": "32461", "source": "791", "target": "1800", "attributes": { "weight": 1 } }, { "key": "25867", "source": "791", "target": "220", "attributes": { "weight": 2 } }, { "key": "32409", "source": "791", "target": "130", "attributes": { "weight": 1 } }, { "key": "32528", "source": "791", "target": "2126", "attributes": { "weight": 1 } }, { "key": "32454", "source": "791", "target": "2696", "attributes": { "weight": 1 } }, { "key": "3038", "source": "791", "target": "869", "attributes": { "weight": 2 } }, { "key": "30729", "source": "791", "target": "1026", "attributes": { "weight": 2 } }, { "key": "32426", "source": "791", "target": "1527", "attributes": { "weight": 1 } }, { "key": "25794", "source": "791", "target": "2139", "attributes": { "weight": 2 } }, { "key": "32401", "source": "791", "target": "35", "attributes": { "weight": 1 } }, { "key": "32448", "source": "791", "target": "421", "attributes": { "weight": 1 } }, { "key": "32493", "source": "791", "target": "3104", "attributes": { "weight": 1 } }, { "key": "32476", "source": "791", "target": "228", "attributes": { "weight": 1 } }, { "key": "32477", "source": "791", "target": "471", "attributes": { "weight": 1 } }, { "key": "32443", "source": "791", "target": "2861", "attributes": { "weight": 1 } }, { "key": "32451", "source": "791", "target": "161", "attributes": { "weight": 1 } }, { "key": "27861", "source": "791", "target": "426", "attributes": { "weight": 2 } }, { "key": "32465", "source": "791", "target": "2863", "attributes": { "weight": 1 } }, { "key": "13180", "source": "791", "target": "304", "attributes": { "weight": 2 } }, { "key": "32491", "source": "791", "target": "41", "attributes": { "weight": 1 } }, { "key": "32438", "source": "791", "target": "109", "attributes": { "weight": 1 } }, { "key": "32432", "source": "791", "target": "2123", "attributes": { "weight": 1 } }, { "key": "30300", "source": "791", "target": "1988", "attributes": { "weight": 2 } }, { "key": "3026", "source": "791", "target": "858", "attributes": { "weight": 3 } }, { "key": "31902", "source": "791", "target": "1060", "attributes": { "weight": 2 } }, { "key": "32436", "source": "791", "target": "1384", "attributes": { "weight": 1 } }, { "key": "32420", "source": "791", "target": "2113", "attributes": { "weight": 1 } }, { "key": "31612", "source": "791", "target": "8", "attributes": { "weight": 2 } }, { "key": "32423", "source": "791", "target": "224", "attributes": { "weight": 1 } }, { "key": "3033", "source": "791", "target": "864", "attributes": { "weight": 2 } }, { "key": "27863", "source": "791", "target": "2670", "attributes": { "weight": 2 } }, { "key": "32407", "source": "791", "target": "2856", "attributes": { "weight": 1 } }, { "key": "32487", "source": "791", "target": "3103", "attributes": { "weight": 1 } }, { "key": "27540", "source": "791", "target": "1520", "attributes": { "weight": 2 } }, { "key": "29128", "source": "791", "target": "500", "attributes": { "weight": 2 } }, { "key": "32496", "source": "791", "target": "123", "attributes": { "weight": 2 } }, { "key": "17469", "source": "791", "target": "358", "attributes": { "weight": 3 } }, { "key": "32497", "source": "791", "target": "3000", "attributes": { "weight": 1 } }, { "key": "32483", "source": "791", "target": "2865", "attributes": { "weight": 1 } }, { "key": "32488", "source": "791", "target": "190", "attributes": { "weight": 1 } }, { "key": "25617", "source": "791", "target": "2070", "attributes": { "weight": 1 } }, { "key": "32494", "source": "791", "target": "1557", "attributes": { "weight": 1 } }, { "key": "32481", "source": "791", "target": "1611", "attributes": { "weight": 1 } }, { "key": "14649", "source": "791", "target": "319", "attributes": { "weight": 1 } }, { "key": "32511", "source": "791", "target": "1805", "attributes": { "weight": 1 } }, { "key": "3031", "source": "791", "target": "862", "attributes": { "weight": 2 } }, { "key": "32446", "source": "791", "target": "1798", "attributes": { "weight": 1 } }, { "key": "32411", "source": "791", "target": "3094", "attributes": { "weight": 1 } }, { "key": "32472", "source": "791", "target": "470", "attributes": { "weight": 2 } }, { "key": "32408", "source": "791", "target": "2857", "attributes": { "weight": 1 } }, { "key": "32517", "source": "791", "target": "340", "attributes": { "weight": 1 } }, { "key": "25619", "source": "791", "target": "1780", "attributes": { "weight": 2 } }, { "key": "32450", "source": "791", "target": "370", "attributes": { "weight": 2 } }, { "key": "32455", "source": "791", "target": "422", "attributes": { "weight": 1 } }, { "key": "32485", "source": "791", "target": "2866", "attributes": { "weight": 1 } }, { "key": "32524", "source": "791", "target": "494", "attributes": { "weight": 1 } }, { "key": "32431", "source": "791", "target": "450", "attributes": { "weight": 1 } }, { "key": "29856", "source": "791", "target": "2831", "attributes": { "weight": 3 } }, { "key": "25616", "source": "791", "target": "787", "attributes": { "weight": 2 } }, { "key": "25919", "source": "791", "target": "1367", "attributes": { "weight": 2 } }, { "key": "31899", "source": "791", "target": "1045", "attributes": { "weight": 2 } }, { "key": "32519", "source": "791", "target": "493", "attributes": { "weight": 2 } }, { "key": "22671", "source": "791", "target": "1037", "attributes": { "weight": 2 } }, { "key": "32444", "source": "791", "target": "1232", "attributes": { "weight": 2 } }, { "key": "32418", "source": "791", "target": "223", "attributes": { "weight": 1 } }, { "key": "32490", "source": "791", "target": "474", "attributes": { "weight": 1 } }, { "key": "32527", "source": "791", "target": "1390", "attributes": { "weight": 1 } }, { "key": "32525", "source": "791", "target": "352", "attributes": { "weight": 2 } }, { "key": "25090", "source": "791", "target": "1547", "attributes": { "weight": 2 } }, { "key": "3032", "source": "791", "target": "863", "attributes": { "weight": 2 } }, { "key": "32478", "source": "791", "target": "472", "attributes": { "weight": 1 } }, { "key": "32521", "source": "791", "target": "351", "attributes": { "weight": 1 } }, { "key": "32427", "source": "791", "target": "133", "attributes": { "weight": 1 } }, { "key": "3023", "source": "791", "target": "856", "attributes": { "weight": 3 } }, { "key": "32424", "source": "791", "target": "3096", "attributes": { "weight": 1 } }, { "key": "32404", "source": "791", "target": "429", "attributes": { "weight": 1 } }, { "key": "9476", "source": "791", "target": "419", "attributes": { "weight": 2 } }, { "key": "32456", "source": "791", "target": "2862", "attributes": { "weight": 1 } }, { "key": "32449", "source": "791", "target": "3098", "attributes": { "weight": 1 } }, { "key": "27264", "source": "791", "target": "57", "attributes": { "weight": 4 } }, { "key": "32475", "source": "791", "target": "2647", "attributes": { "weight": 1 } }, { "key": "32501", "source": "791", "target": "695", "attributes": { "weight": 1 } }, { "key": "31322", "source": "791", "target": "70", "attributes": { "weight": 2 } }, { "key": "9289", "source": "791", "target": "1592", "attributes": { "weight": 2 } }, { "key": "32160", "source": "791", "target": "1779", "attributes": { "weight": 2 } }, { "key": "32523", "source": "791", "target": "2869", "attributes": { "weight": 1 } }, { "key": "32463", "source": "791", "target": "361", "attributes": { "weight": 1 } }, { "key": "32417", "source": "791", "target": "438", "attributes": { "weight": 1 } }, { "key": "32505", "source": "791", "target": "428", "attributes": { "weight": 1 } }, { "key": "25793", "source": "791", "target": "2114", "attributes": { "weight": 2 } }, { "key": "32462", "source": "791", "target": "3101", "attributes": { "weight": 1 } }, { "key": "9475", "source": "791", "target": "645", "attributes": { "weight": 2 } }, { "key": "7320", "source": "791", "target": "1063", "attributes": { "weight": 2 } }, { "key": "32457", "source": "791", "target": "3100", "attributes": { "weight": 1 } }, { "key": "27862", "source": "791", "target": "1024", "attributes": { "weight": 4 } }, { "key": "27859", "source": "791", "target": "339", "attributes": { "weight": 2 } }, { "key": "3969", "source": "791", "target": "432", "attributes": { "weight": 3 } }, { "key": "3025", "source": "791", "target": "424", "attributes": { "weight": 3 } }, { "key": "32425", "source": "791", "target": "357", "attributes": { "weight": 1 } }, { "key": "5162", "source": "791", "target": "468", "attributes": { "weight": 3 } }, { "key": "32498", "source": "791", "target": "13", "attributes": { "weight": 1 } }, { "key": "25618", "source": "791", "target": "2077", "attributes": { "weight": 1 } }, { "key": "27594", "source": "791", "target": "171", "attributes": { "weight": 2 } }, { "key": "32467", "source": "791", "target": "3102", "attributes": { "weight": 1 } }, { "key": "3024", "source": "791", "target": "857", "attributes": { "weight": 4 } }, { "key": "32459", "source": "791", "target": "1763", "attributes": { "weight": 1 } }, { "key": "32526", "source": "791", "target": "1375", "attributes": { "weight": 1 } }, { "key": "25736", "source": "791", "target": "278", "attributes": { "weight": 3 } }, { "key": "32441", "source": "791", "target": "188", "attributes": { "weight": 1 } }, { "key": "32471", "source": "791", "target": "1253", "attributes": { "weight": 1 } }, { "key": "3106", "source": "791", "target": "890", "attributes": { "weight": 3 } }, { "key": "32495", "source": "791", "target": "476", "attributes": { "weight": 1 } }, { "key": "31900", "source": "791", "target": "359", "attributes": { "weight": 2 } }, { "key": "32434", "source": "791", "target": "2211", "attributes": { "weight": 1 } }, { "key": "23756", "source": "791", "target": "1774", "attributes": { "weight": 2 } }, { "key": "32410", "source": "791", "target": "433", "attributes": { "weight": 1 } }, { "key": "32509", "source": "791", "target": "1804", "attributes": { "weight": 1 } }, { "key": "3029", "source": "791", "target": "860", "attributes": { "weight": 2 } }, { "key": "32440", "source": "791", "target": "455", "attributes": { "weight": 1 } }, { "key": "26127", "source": "791", "target": "1056", "attributes": { "weight": 2 } }, { "key": "32421", "source": "791", "target": "440", "attributes": { "weight": 1 } }, { "key": "32402", "source": "791", "target": "1380", "attributes": { "weight": 1 } }, { "key": "31613", "source": "791", "target": "823", "attributes": { "weight": 2 } }, { "key": "10495", "source": "791", "target": "225", "attributes": { "weight": 2 } }, { "key": "32520", "source": "791", "target": "193", "attributes": { "weight": 1 } }, { "key": "31614", "source": "791", "target": "595", "attributes": { "weight": 1 } }, { "key": "3027", "source": "791", "target": "442", "attributes": { "weight": 3 } }, { "key": "32508", "source": "791", "target": "14", "attributes": { "weight": 1 } }, { "key": "32439", "source": "791", "target": "52", "attributes": { "weight": 1 } }, { "key": "32452", "source": "791", "target": "638", "attributes": { "weight": 1 } }, { "key": "32512", "source": "791", "target": "1775", "attributes": { "weight": 1 } }, { "key": "24687", "source": "791", "target": "5", "attributes": { "weight": 2 } }, { "key": "32507", "source": "791", "target": "490", "attributes": { "weight": 1 } }, { "key": "31321", "source": "791", "target": "457", "attributes": { "weight": 2 } }, { "key": "13179", "source": "791", "target": "259", "attributes": { "weight": 2 } }, { "key": "32403", "source": "791", "target": "3091", "attributes": { "weight": 1 } }, { "key": "32482", "source": "791", "target": "2864", "attributes": { "weight": 1 } }, { "key": "32480", "source": "791", "target": "1801", "attributes": { "weight": 1 } }, { "key": "32464", "source": "791", "target": "2513", "attributes": { "weight": 1 } }, { "key": "3036", "source": "791", "target": "867", "attributes": { "weight": 2 } }, { "key": "32460", "source": "791", "target": "1765", "attributes": { "weight": 1 } }, { "key": "2719", "source": "791", "target": "788", "attributes": { "weight": 3 } }, { "key": "3030", "source": "791", "target": "861", "attributes": { "weight": 3 } }, { "key": "18064", "source": "791", "target": "1036", "attributes": { "weight": 2 } }, { "key": "32413", "source": "791", "target": "435", "attributes": { "weight": 1 } }, { "key": "32419", "source": "791", "target": "425", "attributes": { "weight": 1 } }, { "key": "30299", "source": "791", "target": "789", "attributes": { "weight": 2 } }, { "key": "32430", "source": "791", "target": "183", "attributes": { "weight": 1 } }, { "key": "32429", "source": "791", "target": "449", "attributes": { "weight": 1 } }, { "key": "32435", "source": "791", "target": "185", "attributes": { "weight": 1 } }, { "key": "32412", "source": "791", "target": "2112", "attributes": { "weight": 1 } }, { "key": "26908", "source": "791", "target": "497", "attributes": { "weight": 2 } }, { "key": "32437", "source": "791", "target": "1536", "attributes": { "weight": 1 } }, { "key": "29032", "source": "791", "target": "495", "attributes": { "weight": 3 } }, { "key": "32428", "source": "791", "target": "2858", "attributes": { "weight": 1 } }, { "key": "32442", "source": "791", "target": "168", "attributes": { "weight": 1 } }, { "key": "32502", "source": "791", "target": "1312", "attributes": { "weight": 1 } }, { "key": "25796", "source": "791", "target": "10", "attributes": { "weight": 1 } }, { "key": "22480", "source": "791", "target": "178", "attributes": { "weight": 3 } }, { "key": "32479", "source": "791", "target": "362", "attributes": { "weight": 2 } }, { "key": "32499", "source": "791", "target": "479", "attributes": { "weight": 1 } }, { "key": "32445", "source": "791", "target": "1233", "attributes": { "weight": 2 } }, { "key": "30452", "source": "791", "target": "1046", "attributes": { "weight": 2 } }, { "key": "9286", "source": "791", "target": "1571", "attributes": { "weight": 1 } }, { "key": "3035", "source": "791", "target": "866", "attributes": { "weight": 3 } }, { "key": "32466", "source": "791", "target": "7", "attributes": { "weight": 1 } }, { "key": "32474", "source": "791", "target": "1258", "attributes": { "weight": 1 } }, { "key": "26593", "source": "791", "target": "189", "attributes": { "weight": 4 } }, { "key": "32492", "source": "791", "target": "2289", "attributes": { "weight": 1 } }, { "key": "3108", "source": "791", "target": "894", "attributes": { "weight": 3 } }, { "key": "32416", "source": "791", "target": "222", "attributes": { "weight": 1 } }, { "key": "32515", "source": "791", "target": "1750", "attributes": { "weight": 1 } }, { "key": "32516", "source": "791", "target": "233", "attributes": { "weight": 1 } }, { "key": "32503", "source": "791", "target": "2118", "attributes": { "weight": 1 } }, { "key": "32500", "source": "791", "target": "427", "attributes": { "weight": 1 } }, { "key": "32458", "source": "791", "target": "1386", "attributes": { "weight": 2 } }, { "key": "31901", "source": "791", "target": "2115", "attributes": { "weight": 2 } }, { "key": "3608", "source": "791", "target": "1025", "attributes": { "weight": 2 } }, { "key": "32406", "source": "791", "target": "2999", "attributes": { "weight": 1 } }, { "key": "28404", "source": "791", "target": "580", "attributes": { "weight": 2 } }, { "key": "32422", "source": "791", "target": "1136", "attributes": { "weight": 1 } }, { "key": "32470", "source": "791", "target": "135", "attributes": { "weight": 1 } }, { "key": "32484", "source": "791", "target": "473", "attributes": { "weight": 1 } }, { "key": "32433", "source": "791", "target": "2860", "attributes": { "weight": 1 } }, { "key": "32113", "source": "792", "target": "0", "attributes": { "weight": 2 } }, { "key": "32118", "source": "792", "target": "11", "attributes": { "weight": 1 } }, { "key": "32117", "source": "792", "target": "7", "attributes": { "weight": 2 } }, { "key": "32115", "source": "792", "target": "681", "attributes": { "weight": 3 } }, { "key": "32114", "source": "792", "target": "3085", "attributes": { "weight": 1 } }, { "key": "33791", "source": "792", "target": "817", "attributes": { "weight": 1 } }, { "key": "31636", "source": "792", "target": "823", "attributes": { "weight": 1 } }, { "key": "33790", "source": "792", "target": "2646", "attributes": { "weight": 1 } }, { "key": "2722", "source": "792", "target": "13", "attributes": { "weight": 3 } }, { "key": "32119", "source": "792", "target": "14", "attributes": { "weight": 2 } }, { "key": "14712", "source": "792", "target": "319", "attributes": { "weight": 1 } }, { "key": "2720", "source": "792", "target": "3", "attributes": { "weight": 2 } }, { "key": "32116", "source": "792", "target": "682", "attributes": { "weight": 2 } }, { "key": "33792", "source": "792", "target": "351", "attributes": { "weight": 1 } }, { "key": "2723", "source": "792", "target": "793", "attributes": { "weight": 1 } }, { "key": "2721", "source": "792", "target": "8", "attributes": { "weight": 4 } }, { "key": "32120", "source": "792", "target": "349", "attributes": { "weight": 1 } }, { "key": "30901", "source": "792", "target": "2", "attributes": { "weight": 2 } }, { "key": "30565", "source": "792", "target": "2103", "attributes": { "weight": 2 } }, { "key": "31703", "source": "793", "target": "595", "attributes": { "weight": 1 } }, { "key": "35149", "source": "793", "target": "13", "attributes": { "weight": 1 } }, { "key": "3634", "source": "793", "target": "1025", "attributes": { "weight": 1 } }, { "key": "26114", "source": "793", "target": "789", "attributes": { "weight": 2 } }, { "key": "35151", "source": "793", "target": "349", "attributes": { "weight": 1 } }, { "key": "2728", "source": "793", "target": "788", "attributes": { "weight": 1 } }, { "key": "37248", "source": "793", "target": "3023", "attributes": { "weight": 1 } }, { "key": "2729", "source": "793", "target": "792", "attributes": { "weight": 1 } }, { "key": "35152", "source": "793", "target": "351", "attributes": { "weight": 1 } }, { "key": "30309", "source": "793", "target": "1988", "attributes": { "weight": 2 } }, { "key": "35150", "source": "793", "target": "14", "attributes": { "weight": 1 } }, { "key": "30943", "source": "793", "target": "3", "attributes": { "weight": 1 } }, { "key": "22335", "source": "794", "target": "650", "attributes": { "weight": 1 } }, { "key": "22362", "source": "794", "target": "2119", "attributes": { "weight": 2 } }, { "key": "22353", "source": "794", "target": "1801", "attributes": { "weight": 1 } }, { "key": "22359", "source": "794", "target": "823", "attributes": { "weight": 1 } }, { "key": "22358", "source": "794", "target": "2116", "attributes": { "weight": 3 } }, { "key": "22347", "source": "794", "target": "361", "attributes": { "weight": 1 } }, { "key": "22348", "source": "794", "target": "1056", "attributes": { "weight": 1 } }, { "key": "29743", "source": "794", "target": "2892", "attributes": { "weight": 1 } }, { "key": "22343", "source": "794", "target": "359", "attributes": { "weight": 1 } }, { "key": "22368", "source": "794", "target": "351", "attributes": { "weight": 1 } }, { "key": "9529", "source": "794", "target": "667", "attributes": { "weight": 3 } }, { "key": "29744", "source": "794", "target": "2465", "attributes": { "weight": 1 } }, { "key": "22328", "source": "794", "target": "3", "attributes": { "weight": 1 } }, { "key": "9528", "source": "794", "target": "661", "attributes": { "weight": 2 } }, { "key": "22314", "source": "794", "target": "2312", "attributes": { "weight": 1 } }, { "key": "22367", "source": "794", "target": "1780", "attributes": { "weight": 1 } }, { "key": "22322", "source": "794", "target": "355", "attributes": { "weight": 1 } }, { "key": "22366", "source": "794", "target": "2124", "attributes": { "weight": 1 } }, { "key": "22316", "source": "794", "target": "1520", "attributes": { "weight": 1 } }, { "key": "22327", "source": "794", "target": "419", "attributes": { "weight": 1 } }, { "key": "2730", "source": "794", "target": "788", "attributes": { "weight": 1 } }, { "key": "22334", "source": "794", "target": "693", "attributes": { "weight": 1 } }, { "key": "22345", "source": "794", "target": "1763", "attributes": { "weight": 2 } }, { "key": "22365", "source": "794", "target": "1804", "attributes": { "weight": 1 } }, { "key": "22346", "source": "794", "target": "1765", "attributes": { "weight": 1 } }, { "key": "22361", "source": "794", "target": "232", "attributes": { "weight": 1 } }, { "key": "22340", "source": "794", "target": "2287", "attributes": { "weight": 1 } }, { "key": "22320", "source": "794", "target": "2113", "attributes": { "weight": 1 } }, { "key": "3827", "source": "794", "target": "647", "attributes": { "weight": 4 } }, { "key": "19094", "source": "794", "target": "2232", "attributes": { "weight": 1 } }, { "key": "9526", "source": "794", "target": "1041", "attributes": { "weight": 3 } }, { "key": "22310", "source": "794", "target": "2233", "attributes": { "weight": 1 } }, { "key": "22337", "source": "794", "target": "891", "attributes": { "weight": 1 } }, { "key": "22319", "source": "794", "target": "645", "attributes": { "weight": 1 } }, { "key": "22330", "source": "794", "target": "1046", "attributes": { "weight": 2 } }, { "key": "22329", "source": "794", "target": "1045", "attributes": { "weight": 1 } }, { "key": "22324", "source": "794", "target": "646", "attributes": { "weight": 1 } }, { "key": "37088", "source": "794", "target": "1782", "attributes": { "weight": 1 } }, { "key": "22317", "source": "794", "target": "2112", "attributes": { "weight": 1 } }, { "key": "22344", "source": "794", "target": "1024", "attributes": { "weight": 1 } }, { "key": "24587", "source": "794", "target": "664", "attributes": { "weight": 2 } }, { "key": "22325", "source": "794", "target": "1042", "attributes": { "weight": 3 } }, { "key": "22331", "source": "794", "target": "2122", "attributes": { "weight": 1 } }, { "key": "29742", "source": "794", "target": "2288", "attributes": { "weight": 1 } }, { "key": "22338", "source": "794", "target": "2313", "attributes": { "weight": 1 } }, { "key": "22323", "source": "794", "target": "2067", "attributes": { "weight": 1 } }, { "key": "22332", "source": "794", "target": "2114", "attributes": { "weight": 1 } }, { "key": "22311", "source": "794", "target": "787", "attributes": { "weight": 1 } }, { "key": "29741", "source": "794", "target": "1253", "attributes": { "weight": 1 } }, { "key": "22349", "source": "794", "target": "7", "attributes": { "weight": 1 } }, { "key": "22369", "source": "794", "target": "2126", "attributes": { "weight": 1 } }, { "key": "29740", "source": "794", "target": "421", "attributes": { "weight": 1 } }, { "key": "22313", "source": "794", "target": "889", "attributes": { "weight": 1 } }, { "key": "22342", "source": "794", "target": "659", "attributes": { "weight": 2 } }, { "key": "9527", "source": "794", "target": "651", "attributes": { "weight": 2 } }, { "key": "22351", "source": "794", "target": "362", "attributes": { "weight": 1 } }, { "key": "22333", "source": "794", "target": "2123", "attributes": { "weight": 1 } }, { "key": "22355", "source": "794", "target": "163", "attributes": { "weight": 1 } }, { "key": "22321", "source": "794", "target": "339", "attributes": { "weight": 2 } }, { "key": "22364", "source": "794", "target": "14", "attributes": { "weight": 1 } }, { "key": "22326", "source": "794", "target": "357", "attributes": { "weight": 1 } }, { "key": "22341", "source": "794", "target": "790", "attributes": { "weight": 1 } }, { "key": "23794", "source": "794", "target": "1774", "attributes": { "weight": 1 } }, { "key": "24586", "source": "794", "target": "1049", "attributes": { "weight": 1 } }, { "key": "22357", "source": "794", "target": "868", "attributes": { "weight": 1 } }, { "key": "22315", "source": "794", "target": "1037", "attributes": { "weight": 1 } }, { "key": "22352", "source": "794", "target": "2115", "attributes": { "weight": 1 } }, { "key": "22339", "source": "794", "target": "2314", "attributes": { "weight": 1 } }, { "key": "22318", "source": "794", "target": "644", "attributes": { "weight": 1 } }, { "key": "29739", "source": "794", "target": "2883", "attributes": { "weight": 1 } }, { "key": "22356", "source": "794", "target": "2289", "attributes": { "weight": 1 } }, { "key": "22336", "source": "794", "target": "2286", "attributes": { "weight": 1 } }, { "key": "22312", "source": "794", "target": "641", "attributes": { "weight": 1 } }, { "key": "22360", "source": "794", "target": "1060", "attributes": { "weight": 1 } }, { "key": "22363", "source": "794", "target": "2291", "attributes": { "weight": 1 } }, { "key": "31119", "source": "794", "target": "1036", "attributes": { "weight": 1 } }, { "key": "22350", "source": "794", "target": "2144", "attributes": { "weight": 1 } }, { "key": "22354", "source": "794", "target": "662", "attributes": { "weight": 1 } }, { "key": "2744", "source": "797", "target": "540", "attributes": { "weight": 1 } }, { "key": "2745", "source": "798", "target": "804", "attributes": { "weight": 1 } }, { "key": "2746", "source": "798", "target": "407", "attributes": { "weight": 1 } }, { "key": "2748", "source": "800", "target": "804", "attributes": { "weight": 1 } }, { "key": "2758", "source": "804", "target": "805", "attributes": { "weight": 1 } }, { "key": "2755", "source": "804", "target": "798", "attributes": { "weight": 1 } }, { "key": "2754", "source": "804", "target": "797", "attributes": { "weight": 1 } }, { "key": "2753", "source": "804", "target": "540", "attributes": { "weight": 1 } }, { "key": "2762", "source": "805", "target": "804", "attributes": { "weight": 1 } }, { "key": "16501", "source": "810", "target": "2077", "attributes": { "weight": 1 } }, { "key": "16502", "source": "810", "target": "1780", "attributes": { "weight": 2 } }, { "key": "2768", "source": "810", "target": "3", "attributes": { "weight": 2 } }, { "key": "16500", "source": "810", "target": "787", "attributes": { "weight": 2 } }, { "key": "2770", "source": "811", "target": "8", "attributes": { "weight": 1 } }, { "key": "2769", "source": "811", "target": "3", "attributes": { "weight": 1 } }, { "key": "2785", "source": "812", "target": "3", "attributes": { "weight": 1 } }, { "key": "2788", "source": "814", "target": "8", "attributes": { "weight": 1 } }, { "key": "23901", "source": "815", "target": "8", "attributes": { "weight": 1 } }, { "key": "2789", "source": "815", "target": "3", "attributes": { "weight": 2 } }, { "key": "23902", "source": "815", "target": "14", "attributes": { "weight": 1 } }, { "key": "2790", "source": "816", "target": "14", "attributes": { "weight": 1 } }, { "key": "23903", "source": "816", "target": "3", "attributes": { "weight": 1 } }, { "key": "33788", "source": "817", "target": "1988", "attributes": { "weight": 1 } }, { "key": "2793", "source": "817", "target": "4", "attributes": { "weight": 1 } }, { "key": "25623", "source": "817", "target": "787", "attributes": { "weight": 1 } }, { "key": "30900", "source": "817", "target": "3", "attributes": { "weight": 3 } }, { "key": "31633", "source": "817", "target": "8", "attributes": { "weight": 1 } }, { "key": "37237", "source": "817", "target": "3017", "attributes": { "weight": 1 } }, { "key": "28940", "source": "817", "target": "479", "attributes": { "weight": 1 } }, { "key": "26604", "source": "817", "target": "454", "attributes": { "weight": 1 } }, { "key": "37238", "source": "817", "target": "823", "attributes": { "weight": 1 } }, { "key": "34995", "source": "817", "target": "352", "attributes": { "weight": 1 } }, { "key": "23764", "source": "817", "target": "1774", "attributes": { "weight": 2 } }, { "key": "33785", "source": "817", "target": "358", "attributes": { "weight": 1 } }, { "key": "35128", "source": "817", "target": "2646", "attributes": { "weight": 1 } }, { "key": "33787", "source": "817", "target": "792", "attributes": { "weight": 1 } }, { "key": "11349", "source": "817", "target": "1742", "attributes": { "weight": 1 } }, { "key": "33786", "source": "817", "target": "788", "attributes": { "weight": 1 } }, { "key": "30327", "source": "817", "target": "693", "attributes": { "weight": 2 } }, { "key": "2794", "source": "817", "target": "14", "attributes": { "weight": 2 } }, { "key": "21586", "source": "817", "target": "89", "attributes": { "weight": 3 } }, { "key": "31634", "source": "817", "target": "595", "attributes": { "weight": 1 } }, { "key": "2795", "source": "818", "target": "8", "attributes": { "weight": 1 } }, { "key": "35130", "source": "818", "target": "352", "attributes": { "weight": 1 } }, { "key": "35129", "source": "818", "target": "593", "attributes": { "weight": 1 } }, { "key": "2803", "source": "819", "target": "3", "attributes": { "weight": 1 } }, { "key": "30606", "source": "819", "target": "682", "attributes": { "weight": 1 } }, { "key": "2804", "source": "819", "target": "8", "attributes": { "weight": 1 } }, { "key": "16537", "source": "819", "target": "2077", "attributes": { "weight": 1 } }, { "key": "31667", "source": "820", "target": "595", "attributes": { "weight": 1 } }, { "key": "2805", "source": "820", "target": "14", "attributes": { "weight": 1 } }, { "key": "2807", "source": "821", "target": "3", "attributes": { "weight": 1 } }, { "key": "2808", "source": "822", "target": "3", "attributes": { "weight": 1 } }, { "key": "31701", "source": "823", "target": "14", "attributes": { "weight": 1 } }, { "key": "28979", "source": "823", "target": "479", "attributes": { "weight": 1 } }, { "key": "21598", "source": "823", "target": "358", "attributes": { "weight": 1 } }, { "key": "31699", "source": "823", "target": "3021", "attributes": { "weight": 1 } }, { "key": "2809", "source": "823", "target": "4", "attributes": { "weight": 1 } }, { "key": "37247", "source": "823", "target": "817", "attributes": { "weight": 1 } }, { "key": "30942", "source": "823", "target": "3", "attributes": { "weight": 3 } }, { "key": "31694", "source": "823", "target": "424", "attributes": { "weight": 1 } }, { "key": "23793", "source": "823", "target": "1774", "attributes": { "weight": 2 } }, { "key": "31700", "source": "823", "target": "595", "attributes": { "weight": 1 } }, { "key": "2810", "source": "823", "target": "828", "attributes": { "weight": 1 } }, { "key": "31697", "source": "823", "target": "792", "attributes": { "weight": 1 } }, { "key": "33814", "source": "823", "target": "440", "attributes": { "weight": 1 } }, { "key": "29907", "source": "823", "target": "1024", "attributes": { "weight": 2 } }, { "key": "22307", "source": "823", "target": "794", "attributes": { "weight": 1 } }, { "key": "31702", "source": "823", "target": "340", "attributes": { "weight": 1 } }, { "key": "31696", "source": "823", "target": "791", "attributes": { "weight": 2 } }, { "key": "29050", "source": "823", "target": "495", "attributes": { "weight": 1 } }, { "key": "33815", "source": "823", "target": "788", "attributes": { "weight": 1 } }, { "key": "31695", "source": "823", "target": "693", "attributes": { "weight": 1 } }, { "key": "17533", "source": "823", "target": "487", "attributes": { "weight": 1 } }, { "key": "31698", "source": "823", "target": "8", "attributes": { "weight": 2 } }, { "key": "2814", "source": "824", "target": "8", "attributes": { "weight": 1 } }, { "key": "2813", "source": "824", "target": "3", "attributes": { "weight": 1 } }, { "key": "2823", "source": "825", "target": "3", "attributes": { "weight": 1 } }, { "key": "2824", "source": "825", "target": "14", "attributes": { "weight": 1 } }, { "key": "2825", "source": "826", "target": "14", "attributes": { "weight": 1 } }, { "key": "35171", "source": "826", "target": "349", "attributes": { "weight": 1 } }, { "key": "35170", "source": "826", "target": "3085", "attributes": { "weight": 1 } }, { "key": "35181", "source": "827", "target": "594", "attributes": { "weight": 1 } }, { "key": "2826", "source": "827", "target": "3", "attributes": { "weight": 1 } }, { "key": "23859", "source": "828", "target": "1774", "attributes": { "weight": 1 } }, { "key": "21608", "source": "828", "target": "358", "attributes": { "weight": 1 } }, { "key": "33835", "source": "828", "target": "788", "attributes": { "weight": 1 } }, { "key": "30960", "source": "828", "target": "3", "attributes": { "weight": 1 } }, { "key": "2828", "source": "828", "target": "682", "attributes": { "weight": 1 } }, { "key": "2827", "source": "828", "target": "693", "attributes": { "weight": 1 } }, { "key": "2829", "source": "828", "target": "8", "attributes": { "weight": 1 } }, { "key": "23860", "source": "828", "target": "2456", "attributes": { "weight": 1 } }, { "key": "2830", "source": "828", "target": "823", "attributes": { "weight": 1 } }, { "key": "31820", "source": "828", "target": "595", "attributes": { "weight": 1 } }, { "key": "37377", "source": "829", "target": "693", "attributes": { "weight": 1 } }, { "key": "35183", "source": "829", "target": "352", "attributes": { "weight": 1 } }, { "key": "2832", "source": "829", "target": "682", "attributes": { "weight": 1 } }, { "key": "37378", "source": "829", "target": "189", "attributes": { "weight": 1 } }, { "key": "2833", "source": "829", "target": "8", "attributes": { "weight": 2 } }, { "key": "2831", "source": "829", "target": "3", "attributes": { "weight": 2 } }, { "key": "27670", "source": "830", "target": "178", "attributes": { "weight": 4 } }, { "key": "31088", "source": "830", "target": "262", "attributes": { "weight": 1 } }, { "key": "15156", "source": "830", "target": "1621", "attributes": { "weight": 2 } }, { "key": "15157", "source": "830", "target": "2018", "attributes": { "weight": 1 } }, { "key": "12977", "source": "830", "target": "322", "attributes": { "weight": 1 } }, { "key": "14185", "source": "830", "target": "168", "attributes": { "weight": 4 } }, { "key": "9574", "source": "830", "target": "171", "attributes": { "weight": 1 } }, { "key": "8663", "source": "830", "target": "164", "attributes": { "weight": 11 } }, { "key": "18360", "source": "830", "target": "1542", "attributes": { "weight": 1 } }, { "key": "30511", "source": "830", "target": "1549", "attributes": { "weight": 1 } }, { "key": "27918", "source": "830", "target": "287", "attributes": { "weight": 1 } }, { "key": "18361", "source": "830", "target": "578", "attributes": { "weight": 1 } }, { "key": "2837", "source": "830", "target": "278", "attributes": { "weight": 3 } }, { "key": "14479", "source": "830", "target": "259", "attributes": { "weight": 1 } }, { "key": "29567", "source": "830", "target": "1966", "attributes": { "weight": 1 } }, { "key": "25559", "source": "830", "target": "2610", "attributes": { "weight": 1 } }, { "key": "22593", "source": "830", "target": "180", "attributes": { "weight": 1 } }, { "key": "25556", "source": "830", "target": "2609", "attributes": { "weight": 1 } }, { "key": "18359", "source": "830", "target": "169", "attributes": { "weight": 2 } }, { "key": "25557", "source": "830", "target": "2009", "attributes": { "weight": 1 } }, { "key": "18358", "source": "830", "target": "167", "attributes": { "weight": 1 } }, { "key": "3169", "source": "830", "target": "305", "attributes": { "weight": 3 } }, { "key": "25558", "source": "830", "target": "2011", "attributes": { "weight": 1 } }, { "key": "36201", "source": "830", "target": "176", "attributes": { "weight": 1 } }, { "key": "12976", "source": "830", "target": "304", "attributes": { "weight": 1 } }, { "key": "18357", "source": "830", "target": "1622", "attributes": { "weight": 1 } }, { "key": "2844", "source": "831", "target": "77", "attributes": { "weight": 1 } }, { "key": "2853", "source": "834", "target": "750", "attributes": { "weight": 1 } }, { "key": "2860", "source": "835", "target": "772", "attributes": { "weight": 1 } }, { "key": "27898", "source": "836", "target": "300", "attributes": { "weight": 1 } }, { "key": "22180", "source": "836", "target": "1897", "attributes": { "weight": 1 } }, { "key": "25959", "source": "836", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14330", "source": "836", "target": "319", "attributes": { "weight": 1 } }, { "key": "23265", "source": "836", "target": "305", "attributes": { "weight": 1 } }, { "key": "12884", "source": "836", "target": "304", "attributes": { "weight": 3 } }, { "key": "14329", "source": "836", "target": "308", "attributes": { "weight": 3 } }, { "key": "14328", "source": "836", "target": "307", "attributes": { "weight": 1 } }, { "key": "14331", "source": "836", "target": "322", "attributes": { "weight": 1 } }, { "key": "14327", "source": "836", "target": "264", "attributes": { "weight": 1 } }, { "key": "2864", "source": "836", "target": "326", "attributes": { "weight": 2 } }, { "key": "12883", "source": "836", "target": "259", "attributes": { "weight": 2 } }, { "key": "18999", "source": "836", "target": "839", "attributes": { "weight": 2 } }, { "key": "14325", "source": "836", "target": "260", "attributes": { "weight": 2 } }, { "key": "12886", "source": "836", "target": "318", "attributes": { "weight": 2 } }, { "key": "14326", "source": "836", "target": "263", "attributes": { "weight": 1 } }, { "key": "12885", "source": "836", "target": "316", "attributes": { "weight": 3 } }, { "key": "27936", "source": "837", "target": "294", "attributes": { "weight": 1 } }, { "key": "2870", "source": "837", "target": "287", "attributes": { "weight": 3 } }, { "key": "27934", "source": "837", "target": "264", "attributes": { "weight": 1 } }, { "key": "14521", "source": "837", "target": "259", "attributes": { "weight": 1 } }, { "key": "27935", "source": "837", "target": "281", "attributes": { "weight": 1 } }, { "key": "2873", "source": "838", "target": "281", "attributes": { "weight": 2 } }, { "key": "2874", "source": "838", "target": "287", "attributes": { "weight": 3 } }, { "key": "27942", "source": "838", "target": "264", "attributes": { "weight": 1 } }, { "key": "14535", "source": "838", "target": "289", "attributes": { "weight": 1 } }, { "key": "3246", "source": "839", "target": "289", "attributes": { "weight": 6 } }, { "key": "3255", "source": "839", "target": "327", "attributes": { "weight": 6 } }, { "key": "3254", "source": "839", "target": "326", "attributes": { "weight": 5 } }, { "key": "14279", "source": "839", "target": "168", "attributes": { "weight": 5 } }, { "key": "28140", "source": "839", "target": "1928", "attributes": { "weight": 1 } }, { "key": "3253", "source": "839", "target": "319", "attributes": { "weight": 6 } }, { "key": "28136", "source": "839", "target": "288", "attributes": { "weight": 1 } }, { "key": "3257", "source": "839", "target": "908", "attributes": { "weight": 1 } }, { "key": "3238", "source": "839", "target": "259", "attributes": { "weight": 7 } }, { "key": "13519", "source": "839", "target": "1854", "attributes": { "weight": 4 } }, { "key": "26030", "source": "839", "target": "2622", "attributes": { "weight": 2 } }, { "key": "3245", "source": "839", "target": "287", "attributes": { "weight": 5 } }, { "key": "28133", "source": "839", "target": "274", "attributes": { "weight": 1 } }, { "key": "13513", "source": "839", "target": "707", "attributes": { "weight": 5 } }, { "key": "19035", "source": "839", "target": "1913", "attributes": { "weight": 2 } }, { "key": "3239", "source": "839", "target": "901", "attributes": { "weight": 1 } }, { "key": "13515", "source": "839", "target": "578", "attributes": { "weight": 4 } }, { "key": "3242", "source": "839", "target": "264", "attributes": { "weight": 7 } }, { "key": "23290", "source": "839", "target": "1898", "attributes": { "weight": 1 } }, { "key": "28141", "source": "839", "target": "329", "attributes": { "weight": 1 } }, { "key": "19039", "source": "839", "target": "1984", "attributes": { "weight": 2 } }, { "key": "23289", "source": "839", "target": "1973", "attributes": { "weight": 1 } }, { "key": "19038", "source": "839", "target": "290", "attributes": { "weight": 2 } }, { "key": "19045", "source": "839", "target": "331", "attributes": { "weight": 2 } }, { "key": "19041", "source": "839", "target": "307", "attributes": { "weight": 2 } }, { "key": "2938", "source": "839", "target": "842", "attributes": { "weight": 1 } }, { "key": "19044", "source": "839", "target": "321", "attributes": { "weight": 3 } }, { "key": "14825", "source": "839", "target": "322", "attributes": { "weight": 4 } }, { "key": "3243", "source": "839", "target": "282", "attributes": { "weight": 1 } }, { "key": "28138", "source": "839", "target": "906", "attributes": { "weight": 1 } }, { "key": "14824", "source": "839", "target": "1987", "attributes": { "weight": 1 } }, { "key": "23292", "source": "839", "target": "1977", "attributes": { "weight": 1 } }, { "key": "19042", "source": "839", "target": "1872", "attributes": { "weight": 2 } }, { "key": "12608", "source": "839", "target": "315", "attributes": { "weight": 6 } }, { "key": "19037", "source": "839", "target": "286", "attributes": { "weight": 2 } }, { "key": "3241", "source": "839", "target": "263", "attributes": { "weight": 5 } }, { "key": "3251", "source": "839", "target": "312", "attributes": { "weight": 7 } }, { "key": "3248", "source": "839", "target": "308", "attributes": { "weight": 5 } }, { "key": "28139", "source": "839", "target": "1918", "attributes": { "weight": 1 } }, { "key": "28134", "source": "839", "target": "902", "attributes": { "weight": 1 } }, { "key": "14821", "source": "839", "target": "260", "attributes": { "weight": 3 } }, { "key": "3256", "source": "839", "target": "336", "attributes": { "weight": 4 } }, { "key": "13517", "source": "839", "target": "314", "attributes": { "weight": 3 } }, { "key": "3250", "source": "839", "target": "311", "attributes": { "weight": 3 } }, { "key": "28132", "source": "839", "target": "1971", "attributes": { "weight": 1 } }, { "key": "14822", "source": "839", "target": "272", "attributes": { "weight": 4 } }, { "key": "3240", "source": "839", "target": "262", "attributes": { "weight": 7 } }, { "key": "3252", "source": "839", "target": "313", "attributes": { "weight": 6 } }, { "key": "14823", "source": "839", "target": "301", "attributes": { "weight": 4 } }, { "key": "19036", "source": "839", "target": "1976", "attributes": { "weight": 2 } }, { "key": "13516", "source": "839", "target": "304", "attributes": { "weight": 7 } }, { "key": "19031", "source": "839", "target": "836", "attributes": { "weight": 2 } }, { "key": "23293", "source": "839", "target": "2442", "attributes": { "weight": 1 } }, { "key": "19043", "source": "839", "target": "318", "attributes": { "weight": 4 } }, { "key": "28142", "source": "839", "target": "1515", "attributes": { "weight": 1 } }, { "key": "19040", "source": "839", "target": "295", "attributes": { "weight": 2 } }, { "key": "19034", "source": "839", "target": "275", "attributes": { "weight": 2 } }, { "key": "13514", "source": "839", "target": "1912", "attributes": { "weight": 2 } }, { "key": "28137", "source": "839", "target": "292", "attributes": { "weight": 1 } }, { "key": "13518", "source": "839", "target": "316", "attributes": { "weight": 7 } }, { "key": "28135", "source": "839", "target": "1914", "attributes": { "weight": 1 } }, { "key": "3244", "source": "839", "target": "283", "attributes": { "weight": 3 } }, { "key": "19033", "source": "839", "target": "699", "attributes": { "weight": 4 } }, { "key": "3249", "source": "839", "target": "179", "attributes": { "weight": 4 } }, { "key": "19032", "source": "839", "target": "1903", "attributes": { "weight": 2 } }, { "key": "3247", "source": "839", "target": "291", "attributes": { "weight": 3 } }, { "key": "2940", "source": "840", "target": "287", "attributes": { "weight": 3 } }, { "key": "28158", "source": "841", "target": "281", "attributes": { "weight": 1 } }, { "key": "2944", "source": "841", "target": "264", "attributes": { "weight": 1 } }, { "key": "2945", "source": "841", "target": "287", "attributes": { "weight": 2 } }, { "key": "28159", "source": "841", "target": "292", "attributes": { "weight": 1 } }, { "key": "13785", "source": "842", "target": "312", "attributes": { "weight": 2 } }, { "key": "13784", "source": "842", "target": "304", "attributes": { "weight": 2 } }, { "key": "2963", "source": "842", "target": "839", "attributes": { "weight": 1 } }, { "key": "2962", "source": "842", "target": "287", "attributes": { "weight": 1 } }, { "key": "2977", "source": "843", "target": "333", "attributes": { "weight": 1 } }, { "key": "2976", "source": "843", "target": "844", "attributes": { "weight": 1 } }, { "key": "2978", "source": "844", "target": "333", "attributes": { "weight": 1 } }, { "key": "2980", "source": "845", "target": "333", "attributes": { "weight": 2 } }, { "key": "2979", "source": "845", "target": "848", "attributes": { "weight": 3 } }, { "key": "2984", "source": "847", "target": "333", "attributes": { "weight": 1 } }, { "key": "36798", "source": "848", "target": "373", "attributes": { "weight": 1 } }, { "key": "36799", "source": "848", "target": "377", "attributes": { "weight": 1 } }, { "key": "2985", "source": "848", "target": "845", "attributes": { "weight": 2 } }, { "key": "2986", "source": "848", "target": "333", "attributes": { "weight": 3 } }, { "key": "3454", "source": "849", "target": "974", "attributes": { "weight": 2 } }, { "key": "2997", "source": "849", "target": "333", "attributes": { "weight": 3 } }, { "key": "2999", "source": "850", "target": "333", "attributes": { "weight": 2 } }, { "key": "2998", "source": "850", "target": "374", "attributes": { "weight": 1 } }, { "key": "7633", "source": "850", "target": "377", "attributes": { "weight": 1 } }, { "key": "7683", "source": "851", "target": "377", "attributes": { "weight": 2 } }, { "key": "36827", "source": "851", "target": "374", "attributes": { "weight": 1 } }, { "key": "3000", "source": "851", "target": "333", "attributes": { "weight": 3 } }, { "key": "36826", "source": "851", "target": "373", "attributes": { "weight": 1 } }, { "key": "36825", "source": "851", "target": "337", "attributes": { "weight": 1 } }, { "key": "7684", "source": "851", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7682", "source": "851", "target": "1323", "attributes": { "weight": 2 } }, { "key": "10380", "source": "851", "target": "1322", "attributes": { "weight": 1 } }, { "key": "3001", "source": "852", "target": "333", "attributes": { "weight": 1 } }, { "key": "3003", "source": "853", "target": "333", "attributes": { "weight": 1 } }, { "key": "3007", "source": "855", "target": "333", "attributes": { "weight": 1 } }, { "key": "32293", "source": "856", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29330", "source": "856", "target": "857", "attributes": { "weight": 2 } }, { "key": "29334", "source": "856", "target": "2868", "attributes": { "weight": 1 } }, { "key": "29331", "source": "856", "target": "424", "attributes": { "weight": 2 } }, { "key": "29332", "source": "856", "target": "232", "attributes": { "weight": 2 } }, { "key": "3008", "source": "856", "target": "791", "attributes": { "weight": 3 } }, { "key": "25785", "source": "856", "target": "861", "attributes": { "weight": 2 } }, { "key": "29333", "source": "856", "target": "869", "attributes": { "weight": 1 } }, { "key": "25784", "source": "856", "target": "2114", "attributes": { "weight": 2 } }, { "key": "37091", "source": "856", "target": "359", "attributes": { "weight": 1 } }, { "key": "32682", "source": "857", "target": "135", "attributes": { "weight": 2 } }, { "key": "29349", "source": "857", "target": "232", "attributes": { "weight": 3 } }, { "key": "37050", "source": "857", "target": "455", "attributes": { "weight": 1 } }, { "key": "37044", "source": "857", "target": "59", "attributes": { "weight": 1 } }, { "key": "29348", "source": "857", "target": "2864", "attributes": { "weight": 1 } }, { "key": "29341", "source": "857", "target": "859", "attributes": { "weight": 2 } }, { "key": "32681", "source": "857", "target": "435", "attributes": { "weight": 1 } }, { "key": "37046", "source": "857", "target": "224", "attributes": { "weight": 1 } }, { "key": "37045", "source": "857", "target": "438", "attributes": { "weight": 1 } }, { "key": "29343", "source": "857", "target": "2211", "attributes": { "weight": 2 } }, { "key": "25786", "source": "857", "target": "861", "attributes": { "weight": 2 } }, { "key": "37053", "source": "857", "target": "1088", "attributes": { "weight": 1 } }, { "key": "37054", "source": "857", "target": "1131", "attributes": { "weight": 1 } }, { "key": "29342", "source": "857", "target": "183", "attributes": { "weight": 2 } }, { "key": "29346", "source": "857", "target": "866", "attributes": { "weight": 2 } }, { "key": "29344", "source": "857", "target": "863", "attributes": { "weight": 1 } }, { "key": "3009", "source": "857", "target": "791", "attributes": { "weight": 4 } }, { "key": "29351", "source": "857", "target": "490", "attributes": { "weight": 2 } }, { "key": "29347", "source": "857", "target": "2861", "attributes": { "weight": 1 } }, { "key": "29338", "source": "857", "target": "424", "attributes": { "weight": 2 } }, { "key": "37047", "source": "857", "target": "674", "attributes": { "weight": 1 } }, { "key": "37056", "source": "857", "target": "495", "attributes": { "weight": 1 } }, { "key": "37055", "source": "857", "target": "193", "attributes": { "weight": 1 } }, { "key": "29352", "source": "857", "target": "869", "attributes": { "weight": 2 } }, { "key": "37052", "source": "857", "target": "228", "attributes": { "weight": 1 } }, { "key": "26285", "source": "857", "target": "1258", "attributes": { "weight": 1 } }, { "key": "29353", "source": "857", "target": "2869", "attributes": { "weight": 1 } }, { "key": "29335", "source": "857", "target": "856", "attributes": { "weight": 2 } }, { "key": "23299", "source": "857", "target": "442", "attributes": { "weight": 2 } }, { "key": "37051", "source": "857", "target": "457", "attributes": { "weight": 1 } }, { "key": "26385", "source": "857", "target": "189", "attributes": { "weight": 2 } }, { "key": "37057", "source": "857", "target": "57", "attributes": { "weight": 1 } }, { "key": "37048", "source": "857", "target": "448", "attributes": { "weight": 1 } }, { "key": "29336", "source": "857", "target": "2856", "attributes": { "weight": 2 } }, { "key": "32294", "source": "857", "target": "188", "attributes": { "weight": 2 } }, { "key": "17122", "source": "857", "target": "449", "attributes": { "weight": 1 } }, { "key": "23507", "source": "857", "target": "220", "attributes": { "weight": 3 } }, { "key": "29340", "source": "857", "target": "425", "attributes": { "weight": 2 } }, { "key": "29339", "source": "857", "target": "223", "attributes": { "weight": 1 } }, { "key": "29345", "source": "857", "target": "864", "attributes": { "weight": 1 } }, { "key": "37049", "source": "857", "target": "454", "attributes": { "weight": 1 } }, { "key": "29350", "source": "857", "target": "489", "attributes": { "weight": 1 } }, { "key": "32683", "source": "857", "target": "472", "attributes": { "weight": 1 } }, { "key": "29337", "source": "857", "target": "432", "attributes": { "weight": 1 } }, { "key": "27002", "source": "858", "target": "472", "attributes": { "weight": 4 } }, { "key": "32698", "source": "858", "target": "135", "attributes": { "weight": 3 } }, { "key": "33225", "source": "858", "target": "51", "attributes": { "weight": 1 } }, { "key": "27000", "source": "858", "target": "1219", "attributes": { "weight": 1 } }, { "key": "29378", "source": "858", "target": "232", "attributes": { "weight": 2 } }, { "key": "27003", "source": "858", "target": "1282", "attributes": { "weight": 1 } }, { "key": "3013", "source": "858", "target": "791", "attributes": { "weight": 3 } }, { "key": "33227", "source": "858", "target": "1836", "attributes": { "weight": 1 } }, { "key": "33226", "source": "858", "target": "450", "attributes": { "weight": 1 } }, { "key": "23572", "source": "858", "target": "2248", "attributes": { "weight": 1 } }, { "key": "29377", "source": "858", "target": "2211", "attributes": { "weight": 2 } }, { "key": "32699", "source": "858", "target": "1125", "attributes": { "weight": 1 } }, { "key": "37443", "source": "858", "target": "2258", "attributes": { "weight": 1 } }, { "key": "26999", "source": "858", "target": "1832", "attributes": { "weight": 1 } }, { "key": "37442", "source": "858", "target": "435", "attributes": { "weight": 1 } }, { "key": "27001", "source": "858", "target": "1247", "attributes": { "weight": 2 } }, { "key": "33228", "source": "858", "target": "489", "attributes": { "weight": 1 } }, { "key": "23571", "source": "858", "target": "220", "attributes": { "weight": 1 } }, { "key": "29376", "source": "858", "target": "223", "attributes": { "weight": 1 } }, { "key": "23573", "source": "858", "target": "1312", "attributes": { "weight": 1 } }, { "key": "23570", "source": "858", "target": "857", "attributes": { "weight": 1 } }, { "key": "3015", "source": "859", "target": "791", "attributes": { "weight": 2 } }, { "key": "29390", "source": "859", "target": "232", "attributes": { "weight": 2 } }, { "key": "29389", "source": "859", "target": "857", "attributes": { "weight": 2 } }, { "key": "32336", "source": "859", "target": "2211", "attributes": { "weight": 1 } }, { "key": "15229", "source": "860", "target": "672", "attributes": { "weight": 1 } }, { "key": "32721", "source": "860", "target": "2258", "attributes": { "weight": 2 } }, { "key": "27023", "source": "860", "target": "1832", "attributes": { "weight": 2 } }, { "key": "32201", "source": "860", "target": "435", "attributes": { "weight": 4 } }, { "key": "32720", "source": "860", "target": "446", "attributes": { "weight": 1 } }, { "key": "27026", "source": "860", "target": "472", "attributes": { "weight": 6 } }, { "key": "27024", "source": "860", "target": "1219", "attributes": { "weight": 3 } }, { "key": "33333", "source": "860", "target": "450", "attributes": { "weight": 1 } }, { "key": "32202", "source": "860", "target": "51", "attributes": { "weight": 3 } }, { "key": "27027", "source": "860", "target": "1282", "attributes": { "weight": 3 } }, { "key": "15225", "source": "860", "target": "455", "attributes": { "weight": 2 } }, { "key": "23583", "source": "860", "target": "1312", "attributes": { "weight": 1 } }, { "key": "15224", "source": "860", "target": "454", "attributes": { "weight": 2 } }, { "key": "32722", "source": "860", "target": "489", "attributes": { "weight": 2 } }, { "key": "3016", "source": "860", "target": "791", "attributes": { "weight": 2 } }, { "key": "15227", "source": "860", "target": "189", "attributes": { "weight": 2 } }, { "key": "29391", "source": "860", "target": "232", "attributes": { "weight": 1 } }, { "key": "15226", "source": "860", "target": "188", "attributes": { "weight": 1 } }, { "key": "29023", "source": "860", "target": "495", "attributes": { "weight": 1 } }, { "key": "15228", "source": "860", "target": "490", "attributes": { "weight": 2 } }, { "key": "34931", "source": "860", "target": "3", "attributes": { "weight": 1 } }, { "key": "27022", "source": "860", "target": "2105", "attributes": { "weight": 1 } }, { "key": "32203", "source": "860", "target": "135", "attributes": { "weight": 5 } }, { "key": "34932", "source": "860", "target": "352", "attributes": { "weight": 1 } }, { "key": "32200", "source": "860", "target": "2645", "attributes": { "weight": 1 } }, { "key": "15223", "source": "860", "target": "183", "attributes": { "weight": 2 } }, { "key": "23582", "source": "860", "target": "220", "attributes": { "weight": 1 } }, { "key": "27025", "source": "860", "target": "1247", "attributes": { "weight": 3 } }, { "key": "25791", "source": "861", "target": "857", "attributes": { "weight": 2 } }, { "key": "29401", "source": "861", "target": "2211", "attributes": { "weight": 2 } }, { "key": "29400", "source": "861", "target": "424", "attributes": { "weight": 1 } }, { "key": "29404", "source": "861", "target": "232", "attributes": { "weight": 2 } }, { "key": "3017", "source": "861", "target": "791", "attributes": { "weight": 3 } }, { "key": "29403", "source": "861", "target": "2861", "attributes": { "weight": 1 } }, { "key": "29402", "source": "861", "target": "866", "attributes": { "weight": 1 } }, { "key": "25790", "source": "861", "target": "856", "attributes": { "weight": 2 } }, { "key": "3018", "source": "862", "target": "791", "attributes": { "weight": 2 } }, { "key": "32348", "source": "862", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29407", "source": "862", "target": "232", "attributes": { "weight": 2 } }, { "key": "29417", "source": "863", "target": "232", "attributes": { "weight": 2 } }, { "key": "29416", "source": "863", "target": "857", "attributes": { "weight": 1 } }, { "key": "32377", "source": "863", "target": "2211", "attributes": { "weight": 1 } }, { "key": "3019", "source": "863", "target": "791", "attributes": { "weight": 2 } }, { "key": "3020", "source": "864", "target": "791", "attributes": { "weight": 2 } }, { "key": "29421", "source": "864", "target": "857", "attributes": { "weight": 1 } }, { "key": "32382", "source": "864", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29422", "source": "864", "target": "232", "attributes": { "weight": 1 } }, { "key": "31311", "source": "865", "target": "70", "attributes": { "weight": 1 } }, { "key": "10820", "source": "865", "target": "457", "attributes": { "weight": 1 } }, { "key": "29424", "source": "865", "target": "232", "attributes": { "weight": 1 } }, { "key": "3021", "source": "865", "target": "791", "attributes": { "weight": 1 } }, { "key": "32386", "source": "865", "target": "2211", "attributes": { "weight": 1 } }, { "key": "31310", "source": "865", "target": "674", "attributes": { "weight": 1 } }, { "key": "29427", "source": "866", "target": "232", "attributes": { "weight": 2 } }, { "key": "32387", "source": "866", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29426", "source": "866", "target": "861", "attributes": { "weight": 1 } }, { "key": "3022", "source": "866", "target": "791", "attributes": { "weight": 3 } }, { "key": "29425", "source": "866", "target": "857", "attributes": { "weight": 2 } }, { "key": "29438", "source": "867", "target": "232", "attributes": { "weight": 1 } }, { "key": "3040", "source": "867", "target": "791", "attributes": { "weight": 2 } }, { "key": "32567", "source": "867", "target": "2211", "attributes": { "weight": 1 } }, { "key": "35009", "source": "868", "target": "352", "attributes": { "weight": 1 } }, { "key": "29903", "source": "868", "target": "53", "attributes": { "weight": 1 } }, { "key": "22305", "source": "868", "target": "794", "attributes": { "weight": 1 } }, { "key": "29044", "source": "868", "target": "495", "attributes": { "weight": 2 } }, { "key": "3041", "source": "868", "target": "791", "attributes": { "weight": 3 } }, { "key": "29901", "source": "868", "target": "3", "attributes": { "weight": 2 } }, { "key": "21595", "source": "868", "target": "89", "attributes": { "weight": 1 } }, { "key": "31682", "source": "868", "target": "595", "attributes": { "weight": 2 } }, { "key": "26921", "source": "868", "target": "497", "attributes": { "weight": 1 } }, { "key": "26723", "source": "868", "target": "189", "attributes": { "weight": 1 } }, { "key": "29904", "source": "868", "target": "340", "attributes": { "weight": 1 } }, { "key": "29902", "source": "868", "target": "1024", "attributes": { "weight": 2 } }, { "key": "32618", "source": "869", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29523", "source": "869", "target": "857", "attributes": { "weight": 2 } }, { "key": "29524", "source": "869", "target": "0", "attributes": { "weight": 1 } }, { "key": "29526", "source": "869", "target": "232", "attributes": { "weight": 2 } }, { "key": "3043", "source": "869", "target": "791", "attributes": { "weight": 2 } }, { "key": "29522", "source": "869", "target": "856", "attributes": { "weight": 1 } }, { "key": "29525", "source": "869", "target": "424", "attributes": { "weight": 1 } }, { "key": "3048", "source": "870", "target": "875", "attributes": { "weight": 1 } }, { "key": "3049", "source": "870", "target": "879", "attributes": { "weight": 1 } }, { "key": "10060", "source": "870", "target": "602", "attributes": { "weight": 2 } }, { "key": "10062", "source": "871", "target": "602", "attributes": { "weight": 2 } }, { "key": "10063", "source": "871", "target": "872", "attributes": { "weight": 1 } }, { "key": "10065", "source": "871", "target": "876", "attributes": { "weight": 1 } }, { "key": "3050", "source": "871", "target": "873", "attributes": { "weight": 1 } }, { "key": "3051", "source": "871", "target": "874", "attributes": { "weight": 1 } }, { "key": "10064", "source": "871", "target": "369", "attributes": { "weight": 1 } }, { "key": "26205", "source": "872", "target": "601", "attributes": { "weight": 1 } }, { "key": "10072", "source": "872", "target": "1665", "attributes": { "weight": 1 } }, { "key": "10073", "source": "872", "target": "1672", "attributes": { "weight": 1 } }, { "key": "10070", "source": "872", "target": "871", "attributes": { "weight": 1 } }, { "key": "14024", "source": "872", "target": "1031", "attributes": { "weight": 1 } }, { "key": "3052", "source": "872", "target": "876", "attributes": { "weight": 2 } }, { "key": "26204", "source": "872", "target": "30", "attributes": { "weight": 1 } }, { "key": "3053", "source": "872", "target": "882", "attributes": { "weight": 1 } }, { "key": "10069", "source": "872", "target": "602", "attributes": { "weight": 2 } }, { "key": "21671", "source": "872", "target": "109", "attributes": { "weight": 1 } }, { "key": "10071", "source": "872", "target": "369", "attributes": { "weight": 1 } }, { "key": "3054", "source": "873", "target": "877", "attributes": { "weight": 2 } }, { "key": "3055", "source": "873", "target": "879", "attributes": { "weight": 1 } }, { "key": "10075", "source": "873", "target": "602", "attributes": { "weight": 2 } }, { "key": "3056", "source": "873", "target": "881", "attributes": { "weight": 1 } }, { "key": "3057", "source": "874", "target": "871", "attributes": { "weight": 1 } }, { "key": "3058", "source": "874", "target": "873", "attributes": { "weight": 1 } }, { "key": "10079", "source": "874", "target": "602", "attributes": { "weight": 1 } }, { "key": "3060", "source": "875", "target": "870", "attributes": { "weight": 1 } }, { "key": "3059", "source": "875", "target": "602", "attributes": { "weight": 2 } }, { "key": "10121", "source": "876", "target": "369", "attributes": { "weight": 1 } }, { "key": "3061", "source": "876", "target": "872", "attributes": { "weight": 2 } }, { "key": "3062", "source": "876", "target": "877", "attributes": { "weight": 2 } }, { "key": "10122", "source": "876", "target": "1672", "attributes": { "weight": 1 } }, { "key": "10120", "source": "876", "target": "871", "attributes": { "weight": 1 } }, { "key": "26239", "source": "876", "target": "601", "attributes": { "weight": 1 } }, { "key": "10119", "source": "876", "target": "602", "attributes": { "weight": 2 } }, { "key": "3064", "source": "877", "target": "876", "attributes": { "weight": 2 } }, { "key": "10123", "source": "877", "target": "602", "attributes": { "weight": 2 } }, { "key": "3063", "source": "877", "target": "873", "attributes": { "weight": 2 } }, { "key": "3066", "source": "878", "target": "602", "attributes": { "weight": 2 } }, { "key": "3067", "source": "879", "target": "870", "attributes": { "weight": 1 } }, { "key": "10126", "source": "879", "target": "602", "attributes": { "weight": 1 } }, { "key": "10127", "source": "879", "target": "369", "attributes": { "weight": 1 } }, { "key": "3068", "source": "879", "target": "871", "attributes": { "weight": 1 } }, { "key": "3069", "source": "879", "target": "873", "attributes": { "weight": 1 } }, { "key": "3070", "source": "879", "target": "874", "attributes": { "weight": 1 } }, { "key": "10129", "source": "880", "target": "602", "attributes": { "weight": 1 } }, { "key": "3071", "source": "880", "target": "881", "attributes": { "weight": 1 } }, { "key": "26251", "source": "881", "target": "2636", "attributes": { "weight": 1 } }, { "key": "3072", "source": "881", "target": "873", "attributes": { "weight": 1 } }, { "key": "3074", "source": "881", "target": "1675", "attributes": { "weight": 1 } }, { "key": "10130", "source": "881", "target": "602", "attributes": { "weight": 2 } }, { "key": "3073", "source": "881", "target": "880", "attributes": { "weight": 1 } }, { "key": "3077", "source": "882", "target": "606", "attributes": { "weight": 1 } }, { "key": "3076", "source": "882", "target": "872", "attributes": { "weight": 1 } }, { "key": "3075", "source": "882", "target": "602", "attributes": { "weight": 2 } }, { "key": "21783", "source": "882", "target": "109", "attributes": { "weight": 2 } }, { "key": "10132", "source": "882", "target": "369", "attributes": { "weight": 1 } }, { "key": "3078", "source": "883", "target": "602", "attributes": { "weight": 2 } }, { "key": "3079", "source": "884", "target": "378", "attributes": { "weight": 1 } }, { "key": "3080", "source": "885", "target": "378", "attributes": { "weight": 1 } }, { "key": "3081", "source": "886", "target": "378", "attributes": { "weight": 1 } }, { "key": "3082", "source": "887", "target": "378", "attributes": { "weight": 1 } }, { "key": "26869", "source": "888", "target": "894", "attributes": { "weight": 1 } }, { "key": "3087", "source": "888", "target": "890", "attributes": { "weight": 2 } }, { "key": "30681", "source": "889", "target": "2139", "attributes": { "weight": 1 } }, { "key": "24745", "source": "889", "target": "1056", "attributes": { "weight": 3 } }, { "key": "3088", "source": "889", "target": "890", "attributes": { "weight": 3 } }, { "key": "30334", "source": "889", "target": "1046", "attributes": { "weight": 2 } }, { "key": "30684", "source": "889", "target": "1765", "attributes": { "weight": 1 } }, { "key": "24602", "source": "889", "target": "2236", "attributes": { "weight": 1 } }, { "key": "27568", "source": "889", "target": "164", "attributes": { "weight": 2 } }, { "key": "30686", "source": "889", "target": "136", "attributes": { "weight": 1 } }, { "key": "30677", "source": "889", "target": "1045", "attributes": { "weight": 1 } }, { "key": "27799", "source": "889", "target": "339", "attributes": { "weight": 3 } }, { "key": "30670", "source": "889", "target": "2999", "attributes": { "weight": 1 } }, { "key": "6585", "source": "889", "target": "189", "attributes": { "weight": 2 } }, { "key": "6586", "source": "889", "target": "193", "attributes": { "weight": 2 } }, { "key": "30671", "source": "889", "target": "432", "attributes": { "weight": 1 } }, { "key": "30690", "source": "889", "target": "3000", "attributes": { "weight": 2 } }, { "key": "11828", "source": "889", "target": "468", "attributes": { "weight": 2 } }, { "key": "24603", "source": "889", "target": "2118", "attributes": { "weight": 2 } }, { "key": "30672", "source": "889", "target": "2112", "attributes": { "weight": 1 } }, { "key": "30694", "source": "889", "target": "493", "attributes": { "weight": 1 } }, { "key": "30685", "source": "889", "target": "53", "attributes": { "weight": 1 } }, { "key": "24601", "source": "889", "target": "1520", "attributes": { "weight": 3 } }, { "key": "30691", "source": "889", "target": "1026", "attributes": { "weight": 2 } }, { "key": "4281", "source": "889", "target": "123", "attributes": { "weight": 3 } }, { "key": "21503", "source": "889", "target": "89", "attributes": { "weight": 1 } }, { "key": "30682", "source": "889", "target": "359", "attributes": { "weight": 4 } }, { "key": "30678", "source": "889", "target": "2114", "attributes": { "weight": 3 } }, { "key": "23935", "source": "889", "target": "471", "attributes": { "weight": 2 } }, { "key": "10952", "source": "889", "target": "452", "attributes": { "weight": 3 } }, { "key": "8269", "source": "889", "target": "442", "attributes": { "weight": 2 } }, { "key": "9214", "source": "889", "target": "430", "attributes": { "weight": 2 } }, { "key": "30687", "source": "889", "target": "362", "attributes": { "weight": 2 } }, { "key": "18013", "source": "889", "target": "1036", "attributes": { "weight": 3 } }, { "key": "6587", "source": "889", "target": "495", "attributes": { "weight": 3 } }, { "key": "4282", "source": "889", "target": "154", "attributes": { "weight": 3 } }, { "key": "30676", "source": "889", "target": "3", "attributes": { "weight": 2 } }, { "key": "22629", "source": "889", "target": "1037", "attributes": { "weight": 2 } }, { "key": "30683", "source": "889", "target": "1024", "attributes": { "weight": 1 } }, { "key": "30679", "source": "889", "target": "52", "attributes": { "weight": 1 } }, { "key": "4280", "source": "889", "target": "370", "attributes": { "weight": 3 } }, { "key": "30688", "source": "889", "target": "2115", "attributes": { "weight": 3 } }, { "key": "17074", "source": "889", "target": "891", "attributes": { "weight": 1 } }, { "key": "6584", "source": "889", "target": "454", "attributes": { "weight": 3 } }, { "key": "3089", "source": "889", "target": "894", "attributes": { "weight": 3 } }, { "key": "30695", "source": "889", "target": "57", "attributes": { "weight": 1 } }, { "key": "30680", "source": "889", "target": "791", "attributes": { "weight": 2 } }, { "key": "22261", "source": "889", "target": "794", "attributes": { "weight": 1 } }, { "key": "30692", "source": "889", "target": "1060", "attributes": { "weight": 3 } }, { "key": "30673", "source": "889", "target": "645", "attributes": { "weight": 1 } }, { "key": "17330", "source": "889", "target": "358", "attributes": { "weight": 4 } }, { "key": "30674", "source": "889", "target": "2113", "attributes": { "weight": 1 } }, { "key": "30669", "source": "889", "target": "220", "attributes": { "weight": 1 } }, { "key": "23934", "source": "889", "target": "130", "attributes": { "weight": 2 } }, { "key": "24659", "source": "889", "target": "340", "attributes": { "weight": 2 } }, { "key": "30675", "source": "889", "target": "419", "attributes": { "weight": 1 } }, { "key": "30693", "source": "889", "target": "2670", "attributes": { "weight": 1 } }, { "key": "24600", "source": "889", "target": "2232", "attributes": { "weight": 2 } }, { "key": "25906", "source": "890", "target": "1367", "attributes": { "weight": 1 } }, { "key": "3094", "source": "890", "target": "791", "attributes": { "weight": 3 } }, { "key": "3097", "source": "890", "target": "894", "attributes": { "weight": 2 } }, { "key": "3090", "source": "890", "target": "888", "attributes": { "weight": 2 } }, { "key": "26870", "source": "890", "target": "891", "attributes": { "weight": 1 } }, { "key": "26871", "source": "890", "target": "893", "attributes": { "weight": 2 } }, { "key": "3091", "source": "890", "target": "889", "attributes": { "weight": 3 } }, { "key": "3092", "source": "890", "target": "339", "attributes": { "weight": 3 } }, { "key": "3098", "source": "890", "target": "493", "attributes": { "weight": 3 } }, { "key": "3093", "source": "890", "target": "225", "attributes": { "weight": 2 } }, { "key": "3095", "source": "890", "target": "359", "attributes": { "weight": 1 } }, { "key": "28639", "source": "891", "target": "2123", "attributes": { "weight": 1 } }, { "key": "3105", "source": "891", "target": "894", "attributes": { "weight": 2 } }, { "key": "17076", "source": "891", "target": "889", "attributes": { "weight": 1 } }, { "key": "3953", "source": "891", "target": "432", "attributes": { "weight": 2 } }, { "key": "21574", "source": "891", "target": "358", "attributes": { "weight": 1 } }, { "key": "27853", "source": "891", "target": "426", "attributes": { "weight": 1 } }, { "key": "17077", "source": "891", "target": "1045", "attributes": { "weight": 2 } }, { "key": "27854", "source": "891", "target": "791", "attributes": { "weight": 2 } }, { "key": "26874", "source": "891", "target": "890", "attributes": { "weight": 1 } }, { "key": "22285", "source": "891", "target": "794", "attributes": { "weight": 1 } }, { "key": "17080", "source": "891", "target": "1060", "attributes": { "weight": 4 } }, { "key": "17079", "source": "891", "target": "1056", "attributes": { "weight": 6 } }, { "key": "27855", "source": "891", "target": "2115", "attributes": { "weight": 2 } }, { "key": "30447", "source": "891", "target": "1046", "attributes": { "weight": 1 } }, { "key": "26876", "source": "891", "target": "2662", "attributes": { "weight": 1 } }, { "key": "27400", "source": "891", "target": "339", "attributes": { "weight": 2 } }, { "key": "17078", "source": "891", "target": "359", "attributes": { "weight": 7 } }, { "key": "27852", "source": "891", "target": "1520", "attributes": { "weight": 1 } }, { "key": "27401", "source": "891", "target": "2670", "attributes": { "weight": 2 } }, { "key": "28640", "source": "891", "target": "2126", "attributes": { "weight": 1 } }, { "key": "34876", "source": "893", "target": "493", "attributes": { "weight": 1 } }, { "key": "26885", "source": "893", "target": "890", "attributes": { "weight": 2 } }, { "key": "21430", "source": "893", "target": "442", "attributes": { "weight": 1 } }, { "key": "3116", "source": "893", "target": "894", "attributes": { "weight": 4 } }, { "key": "26895", "source": "894", "target": "2661", "attributes": { "weight": 1 } }, { "key": "3118", "source": "894", "target": "890", "attributes": { "weight": 2 } }, { "key": "26889", "source": "894", "target": "2657", "attributes": { "weight": 1 } }, { "key": "3120", "source": "894", "target": "225", "attributes": { "weight": 3 } }, { "key": "3117", "source": "894", "target": "889", "attributes": { "weight": 3 } }, { "key": "26888", "source": "894", "target": "888", "attributes": { "weight": 1 } }, { "key": "3122", "source": "894", "target": "891", "attributes": { "weight": 2 } }, { "key": "25954", "source": "894", "target": "1367", "attributes": { "weight": 2 } }, { "key": "26893", "source": "894", "target": "472", "attributes": { "weight": 1 } }, { "key": "3126", "source": "894", "target": "2662", "attributes": { "weight": 2 } }, { "key": "26890", "source": "894", "target": "2658", "attributes": { "weight": 1 } }, { "key": "3125", "source": "894", "target": "893", "attributes": { "weight": 4 } }, { "key": "3119", "source": "894", "target": "339", "attributes": { "weight": 3 } }, { "key": "21431", "source": "894", "target": "1355", "attributes": { "weight": 1 } }, { "key": "3124", "source": "894", "target": "359", "attributes": { "weight": 1 } }, { "key": "3121", "source": "894", "target": "452", "attributes": { "weight": 2 } }, { "key": "17521", "source": "894", "target": "358", "attributes": { "weight": 1 } }, { "key": "9363", "source": "894", "target": "430", "attributes": { "weight": 2 } }, { "key": "3123", "source": "894", "target": "791", "attributes": { "weight": 3 } }, { "key": "26892", "source": "894", "target": "471", "attributes": { "weight": 1 } }, { "key": "26891", "source": "894", "target": "2659", "attributes": { "weight": 1 } }, { "key": "12044", "source": "894", "target": "468", "attributes": { "weight": 2 } }, { "key": "21432", "source": "894", "target": "1845", "attributes": { "weight": 2 } }, { "key": "3127", "source": "894", "target": "493", "attributes": { "weight": 5 } }, { "key": "3133", "source": "895", "target": "897", "attributes": { "weight": 1 } }, { "key": "3131", "source": "895", "target": "502", "attributes": { "weight": 1 } }, { "key": "3132", "source": "895", "target": "506", "attributes": { "weight": 1 } }, { "key": "3135", "source": "896", "target": "900", "attributes": { "weight": 1 } }, { "key": "3146", "source": "897", "target": "506", "attributes": { "weight": 1 } }, { "key": "3151", "source": "899", "target": "506", "attributes": { "weight": 1 } }, { "key": "3156", "source": "900", "target": "896", "attributes": { "weight": 1 } }, { "key": "3157", "source": "900", "target": "507", "attributes": { "weight": 1 } }, { "key": "14428", "source": "901", "target": "259", "attributes": { "weight": 1 } }, { "key": "22889", "source": "901", "target": "326", "attributes": { "weight": 1 } }, { "key": "14429", "source": "901", "target": "304", "attributes": { "weight": 1 } }, { "key": "3162", "source": "901", "target": "287", "attributes": { "weight": 1 } }, { "key": "3163", "source": "901", "target": "839", "attributes": { "weight": 1 } }, { "key": "14430", "source": "901", "target": "312", "attributes": { "weight": 1 } }, { "key": "22888", "source": "901", "target": "166", "attributes": { "weight": 1 } }, { "key": "22890", "source": "901", "target": "327", "attributes": { "weight": 1 } }, { "key": "3182", "source": "902", "target": "312", "attributes": { "weight": 1 } }, { "key": "22218", "source": "902", "target": "262", "attributes": { "weight": 1 } }, { "key": "22219", "source": "902", "target": "268", "attributes": { "weight": 1 } }, { "key": "27964", "source": "902", "target": "168", "attributes": { "weight": 1 } }, { "key": "3181", "source": "902", "target": "277", "attributes": { "weight": 1 } }, { "key": "27963", "source": "902", "target": "259", "attributes": { "weight": 1 } }, { "key": "27965", "source": "902", "target": "304", "attributes": { "weight": 1 } }, { "key": "22949", "source": "902", "target": "321", "attributes": { "weight": 1 } }, { "key": "22950", "source": "902", "target": "326", "attributes": { "weight": 1 } }, { "key": "22947", "source": "902", "target": "272", "attributes": { "weight": 1 } }, { "key": "22948", "source": "902", "target": "316", "attributes": { "weight": 1 } }, { "key": "27966", "source": "902", "target": "839", "attributes": { "weight": 1 } }, { "key": "28386", "source": "903", "target": "707", "attributes": { "weight": 1 } }, { "key": "3187", "source": "903", "target": "305", "attributes": { "weight": 1 } }, { "key": "33126", "source": "903", "target": "278", "attributes": { "weight": 1 } }, { "key": "12082", "source": "904", "target": "579", "attributes": { "weight": 1 } }, { "key": "12081", "source": "904", "target": "698", "attributes": { "weight": 1 } }, { "key": "12080", "source": "904", "target": "1191", "attributes": { "weight": 1 } }, { "key": "12083", "source": "904", "target": "1824", "attributes": { "weight": 1 } }, { "key": "3188", "source": "904", "target": "305", "attributes": { "weight": 1 } }, { "key": "12586", "source": "905", "target": "259", "attributes": { "weight": 1 } }, { "key": "22602", "source": "905", "target": "1511", "attributes": { "weight": 1 } }, { "key": "13945", "source": "905", "target": "262", "attributes": { "weight": 1 } }, { "key": "22600", "source": "905", "target": "276", "attributes": { "weight": 1 } }, { "key": "8208", "source": "905", "target": "327", "attributes": { "weight": 3 } }, { "key": "13953", "source": "905", "target": "312", "attributes": { "weight": 1 } }, { "key": "28003", "source": "905", "target": "300", "attributes": { "weight": 1 } }, { "key": "11741", "source": "905", "target": "287", "attributes": { "weight": 1 } }, { "key": "14664", "source": "905", "target": "322", "attributes": { "weight": 2 } }, { "key": "18415", "source": "905", "target": "301", "attributes": { "weight": 2 } }, { "key": "11743", "source": "905", "target": "313", "attributes": { "weight": 1 } }, { "key": "8204", "source": "905", "target": "263", "attributes": { "weight": 2 } }, { "key": "13949", "source": "905", "target": "93", "attributes": { "weight": 1 } }, { "key": "18414", "source": "905", "target": "264", "attributes": { "weight": 1 } }, { "key": "13947", "source": "905", "target": "286", "attributes": { "weight": 2 } }, { "key": "8206", "source": "905", "target": "1508", "attributes": { "weight": 1 } }, { "key": "11739", "source": "905", "target": "272", "attributes": { "weight": 3 } }, { "key": "12590", "source": "905", "target": "314", "attributes": { "weight": 1 } }, { "key": "5238", "source": "905", "target": "580", "attributes": { "weight": 5 } }, { "key": "13944", "source": "905", "target": "164", "attributes": { "weight": 1 } }, { "key": "22603", "source": "905", "target": "329", "attributes": { "weight": 1 } }, { "key": "13948", "source": "905", "target": "170", "attributes": { "weight": 2 } }, { "key": "12589", "source": "905", "target": "299", "attributes": { "weight": 1 } }, { "key": "12848", "source": "905", "target": "582", "attributes": { "weight": 1 } }, { "key": "13946", "source": "905", "target": "168", "attributes": { "weight": 3 } }, { "key": "12588", "source": "905", "target": "578", "attributes": { "weight": 3 } }, { "key": "8205", "source": "905", "target": "167", "attributes": { "weight": 2 } }, { "key": "13952", "source": "905", "target": "178", "attributes": { "weight": 2 } }, { "key": "3192", "source": "905", "target": "305", "attributes": { "weight": 4 } }, { "key": "13951", "source": "905", "target": "304", "attributes": { "weight": 1 } }, { "key": "11740", "source": "905", "target": "574", "attributes": { "weight": 2 } }, { "key": "22601", "source": "905", "target": "1509", "attributes": { "weight": 1 } }, { "key": "11742", "source": "905", "target": "177", "attributes": { "weight": 3 } }, { "key": "12591", "source": "905", "target": "316", "attributes": { "weight": 1 } }, { "key": "13950", "source": "905", "target": "1512", "attributes": { "weight": 1 } }, { "key": "12587", "source": "905", "target": "260", "attributes": { "weight": 2 } }, { "key": "8207", "source": "905", "target": "278", "attributes": { "weight": 3 } }, { "key": "28050", "source": "906", "target": "304", "attributes": { "weight": 1 } }, { "key": "28049", "source": "906", "target": "287", "attributes": { "weight": 1 } }, { "key": "28051", "source": "906", "target": "839", "attributes": { "weight": 1 } }, { "key": "14722", "source": "906", "target": "286", "attributes": { "weight": 1 } }, { "key": "28048", "source": "906", "target": "268", "attributes": { "weight": 1 } }, { "key": "3205", "source": "906", "target": "307", "attributes": { "weight": 1 } }, { "key": "3204", "source": "906", "target": "262", "attributes": { "weight": 1 } }, { "key": "22991", "source": "906", "target": "258", "attributes": { "weight": 1 } }, { "key": "14721", "source": "906", "target": "259", "attributes": { "weight": 1 } }, { "key": "3287", "source": "907", "target": "305", "attributes": { "weight": 1 } }, { "key": "13976", "source": "907", "target": "180", "attributes": { "weight": 1 } }, { "key": "28495", "source": "907", "target": "278", "attributes": { "weight": 2 } }, { "key": "25074", "source": "907", "target": "707", "attributes": { "weight": 2 } }, { "key": "28496", "source": "907", "target": "1512", "attributes": { "weight": 1 } }, { "key": "22706", "source": "907", "target": "580", "attributes": { "weight": 1 } }, { "key": "28213", "source": "908", "target": "322", "attributes": { "weight": 1 } }, { "key": "28212", "source": "908", "target": "300", "attributes": { "weight": 1 } }, { "key": "23088", "source": "908", "target": "311", "attributes": { "weight": 1 } }, { "key": "13827", "source": "908", "target": "304", "attributes": { "weight": 3 } }, { "key": "18011", "source": "908", "target": "264", "attributes": { "weight": 1 } }, { "key": "23087", "source": "908", "target": "166", "attributes": { "weight": 1 } }, { "key": "23090", "source": "908", "target": "327", "attributes": { "weight": 1 } }, { "key": "23089", "source": "908", "target": "326", "attributes": { "weight": 1 } }, { "key": "3301", "source": "908", "target": "839", "attributes": { "weight": 1 } }, { "key": "15076", "source": "908", "target": "312", "attributes": { "weight": 1 } }, { "key": "15075", "source": "908", "target": "259", "attributes": { "weight": 1 } }, { "key": "23086", "source": "908", "target": "263", "attributes": { "weight": 1 } }, { "key": "3300", "source": "908", "target": "287", "attributes": { "weight": 1 } }, { "key": "3320", "source": "909", "target": "195", "attributes": { "weight": 2 } }, { "key": "15512", "source": "909", "target": "925", "attributes": { "weight": 1 } }, { "key": "15511", "source": "909", "target": "913", "attributes": { "weight": 1 } }, { "key": "4326", "source": "909", "target": "123", "attributes": { "weight": 2 } }, { "key": "21868", "source": "910", "target": "2301", "attributes": { "weight": 1 } }, { "key": "3321", "source": "910", "target": "195", "attributes": { "weight": 5 } }, { "key": "21869", "source": "910", "target": "2212", "attributes": { "weight": 1 } }, { "key": "4462", "source": "910", "target": "368", "attributes": { "weight": 2 } }, { "key": "4461", "source": "910", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4463", "source": "910", "target": "123", "attributes": { "weight": 2 } }, { "key": "15578", "source": "910", "target": "913", "attributes": { "weight": 1 } }, { "key": "4460", "source": "910", "target": "779", "attributes": { "weight": 2 } }, { "key": "15599", "source": "911", "target": "913", "attributes": { "weight": 1 } }, { "key": "28548", "source": "911", "target": "1279", "attributes": { "weight": 1 } }, { "key": "3322", "source": "911", "target": "195", "attributes": { "weight": 4 } }, { "key": "4654", "source": "912", "target": "123", "attributes": { "weight": 4 } }, { "key": "15604", "source": "912", "target": "1174", "attributes": { "weight": 1 } }, { "key": "15621", "source": "912", "target": "926", "attributes": { "weight": 1 } }, { "key": "21878", "source": "912", "target": "2300", "attributes": { "weight": 1 } }, { "key": "15622", "source": "912", "target": "1296", "attributes": { "weight": 1 } }, { "key": "15615", "source": "912", "target": "1263", "attributes": { "weight": 1 } }, { "key": "15609", "source": "912", "target": "1225", "attributes": { "weight": 1 } }, { "key": "15630", "source": "912", "target": "218", "attributes": { "weight": 1 } }, { "key": "15631", "source": "912", "target": "931", "attributes": { "weight": 1 } }, { "key": "15624", "source": "912", "target": "1305", "attributes": { "weight": 1 } }, { "key": "15620", "source": "912", "target": "925", "attributes": { "weight": 1 } }, { "key": "9748", "source": "912", "target": "387", "attributes": { "weight": 2 } }, { "key": "15613", "source": "912", "target": "338", "attributes": { "weight": 1 } }, { "key": "4652", "source": "912", "target": "370", "attributes": { "weight": 3 } }, { "key": "33994", "source": "912", "target": "1232", "attributes": { "weight": 1 } }, { "key": "15619", "source": "912", "target": "1278", "attributes": { "weight": 1 } }, { "key": "18153", "source": "912", "target": "2205", "attributes": { "weight": 1 } }, { "key": "15610", "source": "912", "target": "1233", "attributes": { "weight": 2 } }, { "key": "15628", "source": "912", "target": "1329", "attributes": { "weight": 1 } }, { "key": "8668", "source": "912", "target": "442", "attributes": { "weight": 2 } }, { "key": "4653", "source": "912", "target": "371", "attributes": { "weight": 2 } }, { "key": "15611", "source": "912", "target": "205", "attributes": { "weight": 1 } }, { "key": "15603", "source": "912", "target": "938", "attributes": { "weight": 1 } }, { "key": "3323", "source": "912", "target": "195", "attributes": { "weight": 7 } }, { "key": "15617", "source": "912", "target": "924", "attributes": { "weight": 1 } }, { "key": "15612", "source": "912", "target": "337", "attributes": { "weight": 1 } }, { "key": "15629", "source": "912", "target": "124", "attributes": { "weight": 1 } }, { "key": "15623", "source": "912", "target": "372", "attributes": { "weight": 1 } }, { "key": "15606", "source": "912", "target": "913", "attributes": { "weight": 1 } }, { "key": "4650", "source": "912", "target": "1196", "attributes": { "weight": 3 } }, { "key": "29242", "source": "912", "target": "2841", "attributes": { "weight": 1 } }, { "key": "15627", "source": "912", "target": "1323", "attributes": { "weight": 1 } }, { "key": "15616", "source": "912", "target": "208", "attributes": { "weight": 1 } }, { "key": "15608", "source": "912", "target": "199", "attributes": { "weight": 1 } }, { "key": "15625", "source": "912", "target": "1307", "attributes": { "weight": 1 } }, { "key": "15601", "source": "912", "target": "1156", "attributes": { "weight": 1 } }, { "key": "4649", "source": "912", "target": "779", "attributes": { "weight": 3 } }, { "key": "15607", "source": "912", "target": "1047", "attributes": { "weight": 2 } }, { "key": "15614", "source": "912", "target": "921", "attributes": { "weight": 1 } }, { "key": "15602", "source": "912", "target": "1165", "attributes": { "weight": 1 } }, { "key": "4651", "source": "912", "target": "368", "attributes": { "weight": 3 } }, { "key": "21879", "source": "912", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15626", "source": "912", "target": "215", "attributes": { "weight": 1 } }, { "key": "15605", "source": "912", "target": "1197", "attributes": { "weight": 3 } }, { "key": "7250", "source": "912", "target": "1063", "attributes": { "weight": 3 } }, { "key": "15618", "source": "912", "target": "1269", "attributes": { "weight": 1 } }, { "key": "4655", "source": "912", "target": "1090", "attributes": { "weight": 3 } }, { "key": "15722", "source": "913", "target": "1278", "attributes": { "weight": 1 } }, { "key": "15757", "source": "913", "target": "1344", "attributes": { "weight": 1 } }, { "key": "4955", "source": "913", "target": "921", "attributes": { "weight": 4 } }, { "key": "15754", "source": "913", "target": "928", "attributes": { "weight": 1 } }, { "key": "15661", "source": "913", "target": "1156", "attributes": { "weight": 1 } }, { "key": "15684", "source": "913", "target": "1200", "attributes": { "weight": 1 } }, { "key": "15737", "source": "913", "target": "1792", "attributes": { "weight": 1 } }, { "key": "8692", "source": "913", "target": "195", "attributes": { "weight": 8 } }, { "key": "14543", "source": "913", "target": "305", "attributes": { "weight": 3 } }, { "key": "15697", "source": "913", "target": "945", "attributes": { "weight": 1 } }, { "key": "15678", "source": "913", "target": "911", "attributes": { "weight": 1 } }, { "key": "15716", "source": "913", "target": "1552", "attributes": { "weight": 3 } }, { "key": "15709", "source": "913", "target": "920", "attributes": { "weight": 1 } }, { "key": "8694", "source": "913", "target": "454", "attributes": { "weight": 5 } }, { "key": "15698", "source": "913", "target": "1229", "attributes": { "weight": 1 } }, { "key": "15714", "source": "913", "target": "208", "attributes": { "weight": 2 } }, { "key": "15680", "source": "913", "target": "1192", "attributes": { "weight": 1 } }, { "key": "15691", "source": "913", "target": "1214", "attributes": { "weight": 1 } }, { "key": "15723", "source": "913", "target": "925", "attributes": { "weight": 1 } }, { "key": "18215", "source": "913", "target": "2205", "attributes": { "weight": 1 } }, { "key": "15705", "source": "913", "target": "370", "attributes": { "weight": 1 } }, { "key": "15750", "source": "913", "target": "961", "attributes": { "weight": 1 } }, { "key": "28552", "source": "913", "target": "2780", "attributes": { "weight": 1 } }, { "key": "8695", "source": "913", "target": "468", "attributes": { "weight": 4 } }, { "key": "15675", "source": "913", "target": "2027", "attributes": { "weight": 1 } }, { "key": "15695", "source": "913", "target": "917", "attributes": { "weight": 1 } }, { "key": "15696", "source": "913", "target": "918", "attributes": { "weight": 1 } }, { "key": "15655", "source": "913", "target": "2020", "attributes": { "weight": 1 } }, { "key": "15681", "source": "913", "target": "1194", "attributes": { "weight": 1 } }, { "key": "4959", "source": "913", "target": "1294", "attributes": { "weight": 4 } }, { "key": "10195", "source": "913", "target": "1315", "attributes": { "weight": 2 } }, { "key": "15751", "source": "913", "target": "1329", "attributes": { "weight": 1 } }, { "key": "15736", "source": "913", "target": "1301", "attributes": { "weight": 1 } }, { "key": "15727", "source": "913", "target": "580", "attributes": { "weight": 1 } }, { "key": "15719", "source": "913", "target": "1269", "attributes": { "weight": 1 } }, { "key": "15662", "source": "913", "target": "1159", "attributes": { "weight": 1 } }, { "key": "15682", "source": "913", "target": "1197", "attributes": { "weight": 5 } }, { "key": "15669", "source": "913", "target": "1174", "attributes": { "weight": 3 } }, { "key": "15666", "source": "913", "target": "1165", "attributes": { "weight": 2 } }, { "key": "15658", "source": "913", "target": "1153", "attributes": { "weight": 1 } }, { "key": "15673", "source": "913", "target": "1180", "attributes": { "weight": 1 } }, { "key": "7269", "source": "913", "target": "1063", "attributes": { "weight": 4 } }, { "key": "15702", "source": "913", "target": "1236", "attributes": { "weight": 1 } }, { "key": "15693", "source": "913", "target": "1225", "attributes": { "weight": 1 } }, { "key": "15760", "source": "913", "target": "375", "attributes": { "weight": 1 } }, { "key": "15728", "source": "913", "target": "1286", "attributes": { "weight": 1 } }, { "key": "15745", "source": "913", "target": "1563", "attributes": { "weight": 1 } }, { "key": "4956", "source": "913", "target": "371", "attributes": { "weight": 3 } }, { "key": "15704", "source": "913", "target": "205", "attributes": { "weight": 1 } }, { "key": "15759", "source": "913", "target": "931", "attributes": { "weight": 1 } }, { "key": "15700", "source": "913", "target": "1233", "attributes": { "weight": 3 } }, { "key": "15712", "source": "913", "target": "922", "attributes": { "weight": 1 } }, { "key": "15701", "source": "913", "target": "278", "attributes": { "weight": 1 } }, { "key": "15676", "source": "913", "target": "1182", "attributes": { "weight": 1 } }, { "key": "15656", "source": "913", "target": "1519", "attributes": { "weight": 1 } }, { "key": "15690", "source": "913", "target": "915", "attributes": { "weight": 1 } }, { "key": "15699", "source": "913", "target": "1232", "attributes": { "weight": 2 } }, { "key": "4960", "source": "913", "target": "154", "attributes": { "weight": 4 } }, { "key": "15686", "source": "913", "target": "2034", "attributes": { "weight": 1 } }, { "key": "15671", "source": "913", "target": "1176", "attributes": { "weight": 1 } }, { "key": "15735", "source": "913", "target": "372", "attributes": { "weight": 1 } }, { "key": "15724", "source": "913", "target": "1279", "attributes": { "weight": 2 } }, { "key": "15729", "source": "913", "target": "1287", "attributes": { "weight": 1 } }, { "key": "15747", "source": "913", "target": "1321", "attributes": { "weight": 1 } }, { "key": "15688", "source": "913", "target": "1047", "attributes": { "weight": 2 } }, { "key": "15730", "source": "913", "target": "1289", "attributes": { "weight": 1 } }, { "key": "4952", "source": "913", "target": "779", "attributes": { "weight": 3 } }, { "key": "15726", "source": "913", "target": "579", "attributes": { "weight": 1 } }, { "key": "15740", "source": "913", "target": "927", "attributes": { "weight": 1 } }, { "key": "15717", "source": "913", "target": "924", "attributes": { "weight": 1 } }, { "key": "15711", "source": "913", "target": "1262", "attributes": { "weight": 1 } }, { "key": "15748", "source": "913", "target": "1322", "attributes": { "weight": 1 } }, { "key": "15746", "source": "913", "target": "1320", "attributes": { "weight": 1 } }, { "key": "15752", "source": "913", "target": "124", "attributes": { "weight": 2 } }, { "key": "8693", "source": "913", "target": "442", "attributes": { "weight": 3 } }, { "key": "15706", "source": "913", "target": "919", "attributes": { "weight": 1 } }, { "key": "15732", "source": "913", "target": "1295", "attributes": { "weight": 1 } }, { "key": "4958", "source": "913", "target": "1090", "attributes": { "weight": 3 } }, { "key": "15670", "source": "913", "target": "1175", "attributes": { "weight": 1 } }, { "key": "15725", "source": "913", "target": "1281", "attributes": { "weight": 1 } }, { "key": "15652", "source": "913", "target": "1138", "attributes": { "weight": 1 } }, { "key": "15654", "source": "913", "target": "220", "attributes": { "weight": 2 } }, { "key": "15657", "source": "913", "target": "1152", "attributes": { "weight": 1 } }, { "key": "14542", "source": "913", "target": "304", "attributes": { "weight": 3 } }, { "key": "15703", "source": "913", "target": "1239", "attributes": { "weight": 1 } }, { "key": "15738", "source": "913", "target": "1305", "attributes": { "weight": 1 } }, { "key": "15755", "source": "913", "target": "218", "attributes": { "weight": 2 } }, { "key": "15720", "source": "913", "target": "1271", "attributes": { "weight": 1 } }, { "key": "15679", "source": "913", "target": "912", "attributes": { "weight": 1 } }, { "key": "15664", "source": "913", "target": "1162", "attributes": { "weight": 1 } }, { "key": "15668", "source": "913", "target": "1172", "attributes": { "weight": 1 } }, { "key": "15743", "source": "913", "target": "405", "attributes": { "weight": 1 } }, { "key": "15756", "source": "913", "target": "1342", "attributes": { "weight": 1 } }, { "key": "9754", "source": "913", "target": "399", "attributes": { "weight": 2 } }, { "key": "15707", "source": "913", "target": "337", "attributes": { "weight": 3 } }, { "key": "15741", "source": "913", "target": "1309", "attributes": { "weight": 1 } }, { "key": "9753", "source": "913", "target": "396", "attributes": { "weight": 2 } }, { "key": "15708", "source": "913", "target": "338", "attributes": { "weight": 3 } }, { "key": "15731", "source": "913", "target": "212", "attributes": { "weight": 1 } }, { "key": "15692", "source": "913", "target": "1222", "attributes": { "weight": 1 } }, { "key": "15718", "source": "913", "target": "1268", "attributes": { "weight": 1 } }, { "key": "15753", "source": "913", "target": "1338", "attributes": { "weight": 1 } }, { "key": "4957", "source": "913", "target": "123", "attributes": { "weight": 4 } }, { "key": "15749", "source": "913", "target": "1323", "attributes": { "weight": 1 } }, { "key": "15674", "source": "913", "target": "1181", "attributes": { "weight": 1 } }, { "key": "15665", "source": "913", "target": "1164", "attributes": { "weight": 1 } }, { "key": "15733", "source": "913", "target": "1296", "attributes": { "weight": 1 } }, { "key": "15659", "source": "913", "target": "1154", "attributes": { "weight": 1 } }, { "key": "15710", "source": "913", "target": "1255", "attributes": { "weight": 1 } }, { "key": "4954", "source": "913", "target": "368", "attributes": { "weight": 4 } }, { "key": "15683", "source": "913", "target": "1199", "attributes": { "weight": 1 } }, { "key": "15685", "source": "913", "target": "1202", "attributes": { "weight": 1 } }, { "key": "4953", "source": "913", "target": "1196", "attributes": { "weight": 3 } }, { "key": "15742", "source": "913", "target": "215", "attributes": { "weight": 2 } }, { "key": "3324", "source": "913", "target": "926", "attributes": { "weight": 4 } }, { "key": "15734", "source": "913", "target": "2046", "attributes": { "weight": 1 } }, { "key": "15677", "source": "913", "target": "1184", "attributes": { "weight": 1 } }, { "key": "15687", "source": "913", "target": "914", "attributes": { "weight": 1 } }, { "key": "15739", "source": "913", "target": "1307", "attributes": { "weight": 1 } }, { "key": "10194", "source": "913", "target": "1291", "attributes": { "weight": 2 } }, { "key": "15653", "source": "913", "target": "933", "attributes": { "weight": 1 } }, { "key": "15721", "source": "913", "target": "1276", "attributes": { "weight": 1 } }, { "key": "9752", "source": "913", "target": "387", "attributes": { "weight": 3 } }, { "key": "15694", "source": "913", "target": "109", "attributes": { "weight": 2 } }, { "key": "15758", "source": "913", "target": "930", "attributes": { "weight": 1 } }, { "key": "15667", "source": "913", "target": "1171", "attributes": { "weight": 1 } }, { "key": "15663", "source": "913", "target": "1160", "attributes": { "weight": 1 } }, { "key": "15689", "source": "913", "target": "199", "attributes": { "weight": 2 } }, { "key": "18214", "source": "913", "target": "2200", "attributes": { "weight": 1 } }, { "key": "15713", "source": "913", "target": "1263", "attributes": { "weight": 1 } }, { "key": "15744", "source": "913", "target": "1316", "attributes": { "weight": 1 } }, { "key": "15715", "source": "913", "target": "923", "attributes": { "weight": 1 } }, { "key": "15660", "source": "913", "target": "909", "attributes": { "weight": 1 } }, { "key": "15672", "source": "913", "target": "910", "attributes": { "weight": 1 } }, { "key": "11488", "source": "913", "target": "938", "attributes": { "weight": 2 } }, { "key": "4986", "source": "914", "target": "123", "attributes": { "weight": 2 } }, { "key": "3325", "source": "914", "target": "195", "attributes": { "weight": 4 } }, { "key": "15767", "source": "914", "target": "913", "attributes": { "weight": 1 } }, { "key": "4985", "source": "914", "target": "368", "attributes": { "weight": 2 } }, { "key": "21910", "source": "915", "target": "2212", "attributes": { "weight": 1 } }, { "key": "5035", "source": "915", "target": "123", "attributes": { "weight": 3 } }, { "key": "15789", "source": "915", "target": "913", "attributes": { "weight": 1 } }, { "key": "5034", "source": "915", "target": "368", "attributes": { "weight": 2 } }, { "key": "21908", "source": "915", "target": "2300", "attributes": { "weight": 1 } }, { "key": "21906", "source": "915", "target": "2293", "attributes": { "weight": 1 } }, { "key": "3326", "source": "915", "target": "195", "attributes": { "weight": 4 } }, { "key": "21909", "source": "915", "target": "2301", "attributes": { "weight": 1 } }, { "key": "15790", "source": "915", "target": "925", "attributes": { "weight": 1 } }, { "key": "21907", "source": "915", "target": "1279", "attributes": { "weight": 1 } }, { "key": "15799", "source": "916", "target": "925", "attributes": { "weight": 1 } }, { "key": "21913", "source": "916", "target": "2212", "attributes": { "weight": 1 } }, { "key": "3327", "source": "916", "target": "929", "attributes": { "weight": 1 } }, { "key": "21912", "source": "916", "target": "337", "attributes": { "weight": 1 } }, { "key": "21911", "source": "916", "target": "2293", "attributes": { "weight": 1 } }, { "key": "15814", "source": "917", "target": "913", "attributes": { "weight": 1 } }, { "key": "5073", "source": "917", "target": "779", "attributes": { "weight": 2 } }, { "key": "34198", "source": "917", "target": "123", "attributes": { "weight": 1 } }, { "key": "5078", "source": "917", "target": "1090", "attributes": { "weight": 2 } }, { "key": "21922", "source": "917", "target": "2212", "attributes": { "weight": 1 } }, { "key": "34197", "source": "917", "target": "1232", "attributes": { "weight": 1 } }, { "key": "3328", "source": "917", "target": "195", "attributes": { "weight": 5 } }, { "key": "5077", "source": "917", "target": "371", "attributes": { "weight": 2 } }, { "key": "34196", "source": "917", "target": "1047", "attributes": { "weight": 1 } }, { "key": "5074", "source": "917", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5075", "source": "917", "target": "368", "attributes": { "weight": 2 } }, { "key": "5076", "source": "917", "target": "921", "attributes": { "weight": 3 } }, { "key": "18226", "source": "917", "target": "1197", "attributes": { "weight": 1 } }, { "key": "21921", "source": "917", "target": "2301", "attributes": { "weight": 1 } }, { "key": "34201", "source": "918", "target": "1232", "attributes": { "weight": 1 } }, { "key": "15815", "source": "918", "target": "913", "attributes": { "weight": 1 } }, { "key": "21924", "source": "918", "target": "2300", "attributes": { "weight": 1 } }, { "key": "36567", "source": "918", "target": "1165", "attributes": { "weight": 1 } }, { "key": "21925", "source": "918", "target": "2301", "attributes": { "weight": 1 } }, { "key": "36568", "source": "918", "target": "1174", "attributes": { "weight": 1 } }, { "key": "36569", "source": "918", "target": "1228", "attributes": { "weight": 1 } }, { "key": "3329", "source": "918", "target": "195", "attributes": { "weight": 5 } }, { "key": "5079", "source": "918", "target": "779", "attributes": { "weight": 2 } }, { "key": "21926", "source": "918", "target": "2212", "attributes": { "weight": 1 } }, { "key": "34199", "source": "918", "target": "1182", "attributes": { "weight": 1 } }, { "key": "5081", "source": "918", "target": "368", "attributes": { "weight": 2 } }, { "key": "15816", "source": "918", "target": "921", "attributes": { "weight": 1 } }, { "key": "18686", "source": "918", "target": "1552", "attributes": { "weight": 2 } }, { "key": "5080", "source": "918", "target": "1196", "attributes": { "weight": 2 } }, { "key": "34202", "source": "918", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34203", "source": "918", "target": "123", "attributes": { "weight": 1 } }, { "key": "5082", "source": "918", "target": "1090", "attributes": { "weight": 2 } }, { "key": "34200", "source": "918", "target": "1047", "attributes": { "weight": 1 } }, { "key": "21923", "source": "918", "target": "199", "attributes": { "weight": 1 } }, { "key": "34469", "source": "919", "target": "123", "attributes": { "weight": 1 } }, { "key": "32098", "source": "919", "target": "1196", "attributes": { "weight": 1 } }, { "key": "15900", "source": "919", "target": "913", "attributes": { "weight": 1 } }, { "key": "21942", "source": "919", "target": "2212", "attributes": { "weight": 1 } }, { "key": "3331", "source": "919", "target": "195", "attributes": { "weight": 2 } }, { "key": "15901", "source": "919", "target": "925", "attributes": { "weight": 2 } }, { "key": "21989", "source": "920", "target": "2300", "attributes": { "weight": 1 } }, { "key": "21988", "source": "920", "target": "199", "attributes": { "weight": 1 } }, { "key": "5342", "source": "920", "target": "779", "attributes": { "weight": 2 } }, { "key": "15927", "source": "920", "target": "921", "attributes": { "weight": 1 } }, { "key": "15928", "source": "920", "target": "925", "attributes": { "weight": 1 } }, { "key": "3332", "source": "920", "target": "195", "attributes": { "weight": 4 } }, { "key": "34495", "source": "920", "target": "1233", "attributes": { "weight": 1 } }, { "key": "15925", "source": "920", "target": "1196", "attributes": { "weight": 1 } }, { "key": "5343", "source": "920", "target": "368", "attributes": { "weight": 2 } }, { "key": "21990", "source": "920", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21991", "source": "920", "target": "2212", "attributes": { "weight": 1 } }, { "key": "5344", "source": "920", "target": "123", "attributes": { "weight": 3 } }, { "key": "15926", "source": "920", "target": "913", "attributes": { "weight": 1 } }, { "key": "15952", "source": "921", "target": "925", "attributes": { "weight": 1 } }, { "key": "15933", "source": "921", "target": "1172", "attributes": { "weight": 1 } }, { "key": "15959", "source": "921", "target": "1350", "attributes": { "weight": 2 } }, { "key": "5353", "source": "921", "target": "368", "attributes": { "weight": 4 } }, { "key": "11598", "source": "921", "target": "199", "attributes": { "weight": 3 } }, { "key": "5368", "source": "921", "target": "124", "attributes": { "weight": 4 } }, { "key": "18754", "source": "921", "target": "1552", "attributes": { "weight": 2 } }, { "key": "15934", "source": "921", "target": "1175", "attributes": { "weight": 1 } }, { "key": "5363", "source": "921", "target": "1296", "attributes": { "weight": 3 } }, { "key": "5346", "source": "921", "target": "1165", "attributes": { "weight": 4 } }, { "key": "5364", "source": "921", "target": "1305", "attributes": { "weight": 3 } }, { "key": "18753", "source": "921", "target": "1176", "attributes": { "weight": 2 } }, { "key": "5360", "source": "921", "target": "1289", "attributes": { "weight": 3 } }, { "key": "5361", "source": "921", "target": "212", "attributes": { "weight": 4 } }, { "key": "15945", "source": "921", "target": "205", "attributes": { "weight": 1 } }, { "key": "15956", "source": "921", "target": "1309", "attributes": { "weight": 1 } }, { "key": "11601", "source": "921", "target": "1333", "attributes": { "weight": 2 } }, { "key": "15958", "source": "921", "target": "928", "attributes": { "weight": 1 } }, { "key": "5371", "source": "921", "target": "154", "attributes": { "weight": 6 } }, { "key": "5349", "source": "921", "target": "779", "attributes": { "weight": 3 } }, { "key": "5372", "source": "921", "target": "1063", "attributes": { "weight": 6 } }, { "key": "5357", "source": "921", "target": "1255", "attributes": { "weight": 2 } }, { "key": "15950", "source": "921", "target": "1269", "attributes": { "weight": 2 } }, { "key": "15942", "source": "921", "target": "918", "attributes": { "weight": 1 } }, { "key": "15932", "source": "921", "target": "1171", "attributes": { "weight": 1 } }, { "key": "11599", "source": "921", "target": "208", "attributes": { "weight": 2 } }, { "key": "5354", "source": "921", "target": "913", "attributes": { "weight": 4 } }, { "key": "5351", "source": "921", "target": "1194", "attributes": { "weight": 3 } }, { "key": "15931", "source": "921", "target": "1162", "attributes": { "weight": 1 } }, { "key": "15953", "source": "921", "target": "1279", "attributes": { "weight": 2 } }, { "key": "5352", "source": "921", "target": "1196", "attributes": { "weight": 3 } }, { "key": "15939", "source": "921", "target": "1199", "attributes": { "weight": 1 } }, { "key": "15954", "source": "921", "target": "1287", "attributes": { "weight": 1 } }, { "key": "5348", "source": "921", "target": "1179", "attributes": { "weight": 3 } }, { "key": "5355", "source": "921", "target": "917", "attributes": { "weight": 3 } }, { "key": "15955", "source": "921", "target": "1792", "attributes": { "weight": 1 } }, { "key": "15944", "source": "921", "target": "1236", "attributes": { "weight": 1 } }, { "key": "15940", "source": "921", "target": "198", "attributes": { "weight": 1 } }, { "key": "15929", "source": "921", "target": "236", "attributes": { "weight": 1 } }, { "key": "15951", "source": "921", "target": "1278", "attributes": { "weight": 1 } }, { "key": "7332", "source": "921", "target": "375", "attributes": { "weight": 2 } }, { "key": "15938", "source": "921", "target": "1197", "attributes": { "weight": 4 } }, { "key": "15948", "source": "921", "target": "924", "attributes": { "weight": 1 } }, { "key": "5347", "source": "921", "target": "938", "attributes": { "weight": 3 } }, { "key": "15930", "source": "921", "target": "1160", "attributes": { "weight": 1 } }, { "key": "5350", "source": "921", "target": "1184", "attributes": { "weight": 3 } }, { "key": "8826", "source": "921", "target": "195", "attributes": { "weight": 7 } }, { "key": "11602", "source": "921", "target": "218", "attributes": { "weight": 2 } }, { "key": "15937", "source": "921", "target": "912", "attributes": { "weight": 1 } }, { "key": "15935", "source": "921", "target": "1180", "attributes": { "weight": 1 } }, { "key": "15947", "source": "921", "target": "1263", "attributes": { "weight": 1 } }, { "key": "5367", "source": "921", "target": "1321", "attributes": { "weight": 3 } }, { "key": "5370", "source": "921", "target": "931", "attributes": { "weight": 2 } }, { "key": "11600", "source": "921", "target": "215", "attributes": { "weight": 2 } }, { "key": "5366", "source": "921", "target": "927", "attributes": { "weight": 2 } }, { "key": "15943", "source": "921", "target": "1233", "attributes": { "weight": 2 } }, { "key": "3333", "source": "921", "target": "926", "attributes": { "weight": 3 } }, { "key": "5369", "source": "921", "target": "930", "attributes": { "weight": 3 } }, { "key": "34497", "source": "921", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5356", "source": "921", "target": "1235", "attributes": { "weight": 3 } }, { "key": "36629", "source": "921", "target": "1228", "attributes": { "weight": 1 } }, { "key": "15936", "source": "921", "target": "1182", "attributes": { "weight": 2 } }, { "key": "5362", "source": "921", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15949", "source": "921", "target": "1268", "attributes": { "weight": 1 } }, { "key": "5358", "source": "921", "target": "371", "attributes": { "weight": 3 } }, { "key": "15941", "source": "921", "target": "1225", "attributes": { "weight": 1 } }, { "key": "5365", "source": "921", "target": "1307", "attributes": { "weight": 3 } }, { "key": "15957", "source": "921", "target": "1316", "attributes": { "weight": 1 } }, { "key": "5359", "source": "921", "target": "123", "attributes": { "weight": 5 } }, { "key": "15946", "source": "921", "target": "920", "attributes": { "weight": 1 } }, { "key": "34519", "source": "922", "target": "123", "attributes": { "weight": 1 } }, { "key": "3334", "source": "922", "target": "195", "attributes": { "weight": 2 } }, { "key": "15969", "source": "922", "target": "913", "attributes": { "weight": 1 } }, { "key": "15970", "source": "922", "target": "925", "attributes": { "weight": 1 } }, { "key": "21995", "source": "923", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15998", "source": "923", "target": "913", "attributes": { "weight": 1 } }, { "key": "5543", "source": "923", "target": "123", "attributes": { "weight": 3 } }, { "key": "5542", "source": "923", "target": "779", "attributes": { "weight": 2 } }, { "key": "18252", "source": "923", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5541", "source": "923", "target": "938", "attributes": { "weight": 2 } }, { "key": "34527", "source": "923", "target": "1232", "attributes": { "weight": 1 } }, { "key": "7344", "source": "923", "target": "1063", "attributes": { "weight": 1 } }, { "key": "3335", "source": "923", "target": "195", "attributes": { "weight": 4 } }, { "key": "5544", "source": "923", "target": "1090", "attributes": { "weight": 2 } }, { "key": "21994", "source": "923", "target": "2301", "attributes": { "weight": 1 } }, { "key": "18253", "source": "923", "target": "208", "attributes": { "weight": 1 } }, { "key": "16013", "source": "924", "target": "1296", "attributes": { "weight": 1 } }, { "key": "16011", "source": "924", "target": "208", "attributes": { "weight": 3 } }, { "key": "18839", "source": "924", "target": "1174", "attributes": { "weight": 2 } }, { "key": "16015", "source": "924", "target": "405", "attributes": { "weight": 1 } }, { "key": "18840", "source": "924", "target": "1228", "attributes": { "weight": 2 } }, { "key": "34528", "source": "924", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16008", "source": "924", "target": "338", "attributes": { "weight": 1 } }, { "key": "18841", "source": "924", "target": "1552", "attributes": { "weight": 2 } }, { "key": "16014", "source": "924", "target": "1305", "attributes": { "weight": 1 } }, { "key": "18842", "source": "924", "target": "218", "attributes": { "weight": 2 } }, { "key": "16004", "source": "924", "target": "913", "attributes": { "weight": 1 } }, { "key": "3336", "source": "924", "target": "926", "attributes": { "weight": 2 } }, { "key": "16009", "source": "924", "target": "921", "attributes": { "weight": 1 } }, { "key": "25527", "source": "924", "target": "2600", "attributes": { "weight": 1 } }, { "key": "5555", "source": "924", "target": "123", "attributes": { "weight": 4 } }, { "key": "5554", "source": "924", "target": "371", "attributes": { "weight": 2 } }, { "key": "16010", "source": "924", "target": "1263", "attributes": { "weight": 1 } }, { "key": "25529", "source": "924", "target": "2602", "attributes": { "weight": 1 } }, { "key": "5552", "source": "924", "target": "1196", "attributes": { "weight": 3 } }, { "key": "16012", "source": "924", "target": "925", "attributes": { "weight": 1 } }, { "key": "5553", "source": "924", "target": "368", "attributes": { "weight": 3 } }, { "key": "16002", "source": "924", "target": "912", "attributes": { "weight": 1 } }, { "key": "16007", "source": "924", "target": "337", "attributes": { "weight": 2 } }, { "key": "25528", "source": "924", "target": "2601", "attributes": { "weight": 1 } }, { "key": "16006", "source": "924", "target": "1236", "attributes": { "weight": 1 } }, { "key": "16003", "source": "924", "target": "1197", "attributes": { "weight": 3 } }, { "key": "16005", "source": "924", "target": "1233", "attributes": { "weight": 2 } }, { "key": "5551", "source": "924", "target": "779", "attributes": { "weight": 2 } }, { "key": "25530", "source": "924", "target": "2604", "attributes": { "weight": 1 } }, { "key": "8875", "source": "924", "target": "195", "attributes": { "weight": 7 } }, { "key": "16001", "source": "924", "target": "1152", "attributes": { "weight": 1 } }, { "key": "16016", "source": "924", "target": "1329", "attributes": { "weight": 1 } }, { "key": "3337", "source": "925", "target": "195", "attributes": { "weight": 7 } }, { "key": "5710", "source": "925", "target": "123", "attributes": { "weight": 5 } }, { "key": "16098", "source": "925", "target": "920", "attributes": { "weight": 1 } }, { "key": "16116", "source": "925", "target": "1291", "attributes": { "weight": 1 } }, { "key": "16111", "source": "925", "target": "1690", "attributes": { "weight": 1 } }, { "key": "16063", "source": "925", "target": "1182", "attributes": { "weight": 2 } }, { "key": "16091", "source": "925", "target": "1236", "attributes": { "weight": 1 } }, { "key": "32099", "source": "925", "target": "372", "attributes": { "weight": 1 } }, { "key": "16086", "source": "925", "target": "1687", "attributes": { "weight": 1 } }, { "key": "16077", "source": "925", "target": "1210", "attributes": { "weight": 1 } }, { "key": "5707", "source": "925", "target": "1196", "attributes": { "weight": 4 } }, { "key": "8923", "source": "925", "target": "1322", "attributes": { "weight": 5 } }, { "key": "16050", "source": "925", "target": "1162", "attributes": { "weight": 1 } }, { "key": "16107", "source": "925", "target": "1269", "attributes": { "weight": 3 } }, { "key": "16052", "source": "925", "target": "2021", "attributes": { "weight": 1 } }, { "key": "16076", "source": "925", "target": "199", "attributes": { "weight": 1 } }, { "key": "16142", "source": "925", "target": "931", "attributes": { "weight": 1 } }, { "key": "16125", "source": "925", "target": "1309", "attributes": { "weight": 1 } }, { "key": "16148", "source": "925", "target": "1417", "attributes": { "weight": 1 } }, { "key": "16089", "source": "925", "target": "1234", "attributes": { "weight": 1 } }, { "key": "16104", "source": "925", "target": "208", "attributes": { "weight": 4 } }, { "key": "5712", "source": "925", "target": "1294", "attributes": { "weight": 6 } }, { "key": "16058", "source": "925", "target": "2023", "attributes": { "weight": 1 } }, { "key": "16147", "source": "925", "target": "625", "attributes": { "weight": 1 } }, { "key": "10244", "source": "925", "target": "1315", "attributes": { "weight": 3 } }, { "key": "16132", "source": "925", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16059", "source": "925", "target": "1172", "attributes": { "weight": 1 } }, { "key": "16064", "source": "925", "target": "1184", "attributes": { "weight": 1 } }, { "key": "16080", "source": "925", "target": "1215", "attributes": { "weight": 1 } }, { "key": "16095", "source": "925", "target": "370", "attributes": { "weight": 2 } }, { "key": "16083", "source": "925", "target": "1225", "attributes": { "weight": 1 } }, { "key": "16135", "source": "925", "target": "124", "attributes": { "weight": 3 } }, { "key": "16070", "source": "925", "target": "2032", "attributes": { "weight": 1 } }, { "key": "16053", "source": "925", "target": "2022", "attributes": { "weight": 1 } }, { "key": "16108", "source": "925", "target": "1271", "attributes": { "weight": 1 } }, { "key": "16079", "source": "925", "target": "915", "attributes": { "weight": 1 } }, { "key": "16127", "source": "925", "target": "215", "attributes": { "weight": 2 } }, { "key": "16123", "source": "925", "target": "2047", "attributes": { "weight": 1 } }, { "key": "16057", "source": "925", "target": "938", "attributes": { "weight": 2 } }, { "key": "16139", "source": "925", "target": "1343", "attributes": { "weight": 1 } }, { "key": "37513", "source": "925", "target": "2192", "attributes": { "weight": 1 } }, { "key": "16054", "source": "925", "target": "1164", "attributes": { "weight": 1 } }, { "key": "16067", "source": "925", "target": "1194", "attributes": { "weight": 1 } }, { "key": "16101", "source": "925", "target": "1257", "attributes": { "weight": 1 } }, { "key": "8921", "source": "925", "target": "338", "attributes": { "weight": 7 } }, { "key": "5709", "source": "925", "target": "371", "attributes": { "weight": 3 } }, { "key": "16055", "source": "925", "target": "1165", "attributes": { "weight": 1 } }, { "key": "16115", "source": "925", "target": "1289", "attributes": { "weight": 1 } }, { "key": "16099", "source": "925", "target": "921", "attributes": { "weight": 1 } }, { "key": "16075", "source": "925", "target": "1685", "attributes": { "weight": 1 } }, { "key": "16096", "source": "925", "target": "919", "attributes": { "weight": 2 } }, { "key": "16126", "source": "925", "target": "1311", "attributes": { "weight": 1 } }, { "key": "16106", "source": "925", "target": "924", "attributes": { "weight": 1 } }, { "key": "16078", "source": "925", "target": "1211", "attributes": { "weight": 1 } }, { "key": "16117", "source": "925", "target": "1295", "attributes": { "weight": 1 } }, { "key": "16114", "source": "925", "target": "1287", "attributes": { "weight": 1 } }, { "key": "8920", "source": "925", "target": "442", "attributes": { "weight": 2 } }, { "key": "5711", "source": "925", "target": "1090", "attributes": { "weight": 3 } }, { "key": "16045", "source": "925", "target": "2020", "attributes": { "weight": 1 } }, { "key": "16044", "source": "925", "target": "711", "attributes": { "weight": 1 } }, { "key": "16144", "source": "925", "target": "1407", "attributes": { "weight": 1 } }, { "key": "16129", "source": "925", "target": "1563", "attributes": { "weight": 1 } }, { "key": "3338", "source": "925", "target": "926", "attributes": { "weight": 4 } }, { "key": "16140", "source": "925", "target": "1344", "attributes": { "weight": 1 } }, { "key": "16113", "source": "925", "target": "1286", "attributes": { "weight": 1 } }, { "key": "16136", "source": "925", "target": "928", "attributes": { "weight": 1 } }, { "key": "16097", "source": "925", "target": "337", "attributes": { "weight": 3 } }, { "key": "16102", "source": "925", "target": "922", "attributes": { "weight": 1 } }, { "key": "16084", "source": "925", "target": "1686", "attributes": { "weight": 1 } }, { "key": "16094", "source": "925", "target": "205", "attributes": { "weight": 1 } }, { "key": "16069", "source": "925", "target": "2031", "attributes": { "weight": 1 } }, { "key": "7348", "source": "925", "target": "1063", "attributes": { "weight": 4 } }, { "key": "16082", "source": "925", "target": "1222", "attributes": { "weight": 1 } }, { "key": "16121", "source": "925", "target": "1303", "attributes": { "weight": 1 } }, { "key": "16049", "source": "925", "target": "1156", "attributes": { "weight": 1 } }, { "key": "16090", "source": "925", "target": "2038", "attributes": { "weight": 1 } }, { "key": "16138", "source": "925", "target": "1342", "attributes": { "weight": 1 } }, { "key": "16068", "source": "925", "target": "1197", "attributes": { "weight": 6 } }, { "key": "8922", "source": "925", "target": "468", "attributes": { "weight": 4 } }, { "key": "16046", "source": "925", "target": "1519", "attributes": { "weight": 1 } }, { "key": "16133", "source": "925", "target": "1331", "attributes": { "weight": 1 } }, { "key": "16092", "source": "925", "target": "2039", "attributes": { "weight": 1 } }, { "key": "16122", "source": "925", "target": "1305", "attributes": { "weight": 1 } }, { "key": "16051", "source": "925", "target": "937", "attributes": { "weight": 1 } }, { "key": "16119", "source": "925", "target": "1693", "attributes": { "weight": 1 } }, { "key": "16100", "source": "925", "target": "2043", "attributes": { "weight": 1 } }, { "key": "16040", "source": "925", "target": "1140", "attributes": { "weight": 1 } }, { "key": "16061", "source": "925", "target": "1681", "attributes": { "weight": 1 } }, { "key": "16087", "source": "925", "target": "1232", "attributes": { "weight": 2 } }, { "key": "16146", "source": "925", "target": "333", "attributes": { "weight": 1 } }, { "key": "5708", "source": "925", "target": "368", "attributes": { "weight": 5 } }, { "key": "16109", "source": "925", "target": "2044", "attributes": { "weight": 1 } }, { "key": "16093", "source": "925", "target": "2040", "attributes": { "weight": 1 } }, { "key": "16143", "source": "925", "target": "373", "attributes": { "weight": 1 } }, { "key": "16145", "source": "925", "target": "154", "attributes": { "weight": 2 } }, { "key": "16074", "source": "925", "target": "1205", "attributes": { "weight": 1 } }, { "key": "5706", "source": "925", "target": "779", "attributes": { "weight": 3 } }, { "key": "16047", "source": "925", "target": "1152", "attributes": { "weight": 1 } }, { "key": "18861", "source": "925", "target": "1284", "attributes": { "weight": 1 } }, { "key": "16048", "source": "925", "target": "909", "attributes": { "weight": 1 } }, { "key": "16085", "source": "925", "target": "2036", "attributes": { "weight": 1 } }, { "key": "16043", "source": "925", "target": "220", "attributes": { "weight": 2 } }, { "key": "16112", "source": "925", "target": "580", "attributes": { "weight": 1 } }, { "key": "16124", "source": "925", "target": "1307", "attributes": { "weight": 1 } }, { "key": "16060", "source": "925", "target": "1174", "attributes": { "weight": 2 } }, { "key": "16071", "source": "925", "target": "1199", "attributes": { "weight": 1 } }, { "key": "16081", "source": "925", "target": "916", "attributes": { "weight": 1 } }, { "key": "16137", "source": "925", "target": "218", "attributes": { "weight": 1 } }, { "key": "16103", "source": "925", "target": "1263", "attributes": { "weight": 3 } }, { "key": "16149", "source": "925", "target": "377", "attributes": { "weight": 1 } }, { "key": "16134", "source": "925", "target": "408", "attributes": { "weight": 1 } }, { "key": "16120", "source": "925", "target": "1300", "attributes": { "weight": 2 } }, { "key": "16062", "source": "925", "target": "1181", "attributes": { "weight": 1 } }, { "key": "16065", "source": "925", "target": "912", "attributes": { "weight": 1 } }, { "key": "16141", "source": "925", "target": "930", "attributes": { "weight": 1 } }, { "key": "8924", "source": "925", "target": "1323", "attributes": { "weight": 5 } }, { "key": "16072", "source": "925", "target": "913", "attributes": { "weight": 1 } }, { "key": "9854", "source": "925", "target": "387", "attributes": { "weight": 3 } }, { "key": "16066", "source": "925", "target": "1192", "attributes": { "weight": 1 } }, { "key": "16056", "source": "925", "target": "1167", "attributes": { "weight": 1 } }, { "key": "16128", "source": "925", "target": "405", "attributes": { "weight": 1 } }, { "key": "16110", "source": "925", "target": "1278", "attributes": { "weight": 1 } }, { "key": "16130", "source": "925", "target": "1321", "attributes": { "weight": 1 } }, { "key": "16118", "source": "925", "target": "1296", "attributes": { "weight": 1 } }, { "key": "16042", "source": "925", "target": "933", "attributes": { "weight": 1 } }, { "key": "16131", "source": "925", "target": "1326", "attributes": { "weight": 1 } }, { "key": "16105", "source": "925", "target": "1552", "attributes": { "weight": 4 } }, { "key": "16073", "source": "925", "target": "1047", "attributes": { "weight": 2 } }, { "key": "16088", "source": "925", "target": "1233", "attributes": { "weight": 3 } }, { "key": "16041", "source": "925", "target": "2019", "attributes": { "weight": 1 } }, { "key": "5719", "source": "926", "target": "1090", "attributes": { "weight": 2 } }, { "key": "18873", "source": "926", "target": "124", "attributes": { "weight": 2 } }, { "key": "36653", "source": "926", "target": "1165", "attributes": { "weight": 1 } }, { "key": "18863", "source": "926", "target": "1526", "attributes": { "weight": 2 } }, { "key": "18874", "source": "926", "target": "218", "attributes": { "weight": 2 } }, { "key": "3342", "source": "926", "target": "924", "attributes": { "weight": 2 } }, { "key": "7350", "source": "926", "target": "1047", "attributes": { "weight": 5 } }, { "key": "5714", "source": "926", "target": "779", "attributes": { "weight": 2 } }, { "key": "18865", "source": "926", "target": "199", "attributes": { "weight": 2 } }, { "key": "18862", "source": "926", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18870", "source": "926", "target": "1552", "attributes": { "weight": 2 } }, { "key": "3343", "source": "926", "target": "925", "attributes": { "weight": 3 } }, { "key": "7351", "source": "926", "target": "1232", "attributes": { "weight": 3 } }, { "key": "18869", "source": "926", "target": "208", "attributes": { "weight": 2 } }, { "key": "10246", "source": "926", "target": "1329", "attributes": { "weight": 2 } }, { "key": "7349", "source": "926", "target": "1197", "attributes": { "weight": 5 } }, { "key": "5718", "source": "926", "target": "123", "attributes": { "weight": 8 } }, { "key": "8925", "source": "926", "target": "195", "attributes": { "weight": 9 } }, { "key": "11638", "source": "926", "target": "938", "attributes": { "weight": 1 } }, { "key": "5716", "source": "926", "target": "368", "attributes": { "weight": 6 } }, { "key": "18864", "source": "926", "target": "198", "attributes": { "weight": 2 } }, { "key": "36654", "source": "926", "target": "1294", "attributes": { "weight": 1 } }, { "key": "3340", "source": "926", "target": "370", "attributes": { "weight": 11 } }, { "key": "16150", "source": "926", "target": "912", "attributes": { "weight": 1 } }, { "key": "18872", "source": "926", "target": "1315", "attributes": { "weight": 2 } }, { "key": "7353", "source": "926", "target": "1063", "attributes": { "weight": 2 } }, { "key": "18868", "source": "926", "target": "1263", "attributes": { "weight": 2 } }, { "key": "10245", "source": "926", "target": "338", "attributes": { "weight": 9 } }, { "key": "5715", "source": "926", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5713", "source": "926", "target": "1152", "attributes": { "weight": 3 } }, { "key": "3341", "source": "926", "target": "921", "attributes": { "weight": 3 } }, { "key": "34555", "source": "926", "target": "1182", "attributes": { "weight": 1 } }, { "key": "18867", "source": "926", "target": "337", "attributes": { "weight": 2 } }, { "key": "3339", "source": "926", "target": "913", "attributes": { "weight": 5 } }, { "key": "18866", "source": "926", "target": "1228", "attributes": { "weight": 2 } }, { "key": "34556", "source": "926", "target": "1323", "attributes": { "weight": 1 } }, { "key": "18871", "source": "926", "target": "1269", "attributes": { "weight": 2 } }, { "key": "5717", "source": "926", "target": "371", "attributes": { "weight": 5 } }, { "key": "7352", "source": "926", "target": "1233", "attributes": { "weight": 4 } }, { "key": "16233", "source": "927", "target": "913", "attributes": { "weight": 1 } }, { "key": "6235", "source": "927", "target": "1090", "attributes": { "weight": 2 } }, { "key": "22090", "source": "927", "target": "2301", "attributes": { "weight": 1 } }, { "key": "34690", "source": "927", "target": "123", "attributes": { "weight": 1 } }, { "key": "22091", "source": "927", "target": "2212", "attributes": { "weight": 1 } }, { "key": "6233", "source": "927", "target": "779", "attributes": { "weight": 2 } }, { "key": "6234", "source": "927", "target": "921", "attributes": { "weight": 2 } }, { "key": "3344", "source": "927", "target": "195", "attributes": { "weight": 4 } }, { "key": "34689", "source": "927", "target": "1232", "attributes": { "weight": 1 } }, { "key": "7409", "source": "928", "target": "1063", "attributes": { "weight": 1 } }, { "key": "34815", "source": "928", "target": "1182", "attributes": { "weight": 1 } }, { "key": "6447", "source": "928", "target": "123", "attributes": { "weight": 3 } }, { "key": "6445", "source": "928", "target": "779", "attributes": { "weight": 2 } }, { "key": "16372", "source": "928", "target": "925", "attributes": { "weight": 1 } }, { "key": "6446", "source": "928", "target": "1196", "attributes": { "weight": 2 } }, { "key": "34816", "source": "928", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16371", "source": "928", "target": "921", "attributes": { "weight": 1 } }, { "key": "11723", "source": "928", "target": "370", "attributes": { "weight": 2 } }, { "key": "11724", "source": "928", "target": "208", "attributes": { "weight": 1 } }, { "key": "6444", "source": "928", "target": "938", "attributes": { "weight": 2 } }, { "key": "34817", "source": "928", "target": "1232", "attributes": { "weight": 1 } }, { "key": "3345", "source": "928", "target": "195", "attributes": { "weight": 4 } }, { "key": "6448", "source": "928", "target": "1090", "attributes": { "weight": 2 } }, { "key": "22156", "source": "928", "target": "2301", "attributes": { "weight": 1 } }, { "key": "16370", "source": "928", "target": "913", "attributes": { "weight": 1 } }, { "key": "3346", "source": "929", "target": "916", "attributes": { "weight": 1 } }, { "key": "18311", "source": "930", "target": "1197", "attributes": { "weight": 2 } }, { "key": "34834", "source": "930", "target": "1232", "attributes": { "weight": 1 } }, { "key": "16391", "source": "930", "target": "925", "attributes": { "weight": 1 } }, { "key": "6486", "source": "930", "target": "921", "attributes": { "weight": 3 } }, { "key": "22166", "source": "930", "target": "2212", "attributes": { "weight": 1 } }, { "key": "6488", "source": "930", "target": "1090", "attributes": { "weight": 2 } }, { "key": "6484", "source": "930", "target": "1196", "attributes": { "weight": 2 } }, { "key": "6483", "source": "930", "target": "779", "attributes": { "weight": 2 } }, { "key": "22163", "source": "930", "target": "199", "attributes": { "weight": 1 } }, { "key": "22165", "source": "930", "target": "2301", "attributes": { "weight": 1 } }, { "key": "6487", "source": "930", "target": "123", "attributes": { "weight": 3 } }, { "key": "34835", "source": "930", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16390", "source": "930", "target": "913", "attributes": { "weight": 1 } }, { "key": "3347", "source": "930", "target": "195", "attributes": { "weight": 6 } }, { "key": "22164", "source": "930", "target": "2300", "attributes": { "weight": 1 } }, { "key": "6485", "source": "930", "target": "368", "attributes": { "weight": 2 } }, { "key": "34833", "source": "930", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16395", "source": "931", "target": "912", "attributes": { "weight": 1 } }, { "key": "6502", "source": "931", "target": "338", "attributes": { "weight": 2 } }, { "key": "22168", "source": "931", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22167", "source": "931", "target": "337", "attributes": { "weight": 1 } }, { "key": "6504", "source": "931", "target": "123", "attributes": { "weight": 3 } }, { "key": "34841", "source": "931", "target": "1197", "attributes": { "weight": 1 } }, { "key": "16396", "source": "931", "target": "913", "attributes": { "weight": 1 } }, { "key": "34842", "source": "931", "target": "1047", "attributes": { "weight": 1 } }, { "key": "6503", "source": "931", "target": "921", "attributes": { "weight": 2 } }, { "key": "16397", "source": "931", "target": "925", "attributes": { "weight": 1 } }, { "key": "3348", "source": "931", "target": "195", "attributes": { "weight": 5 } }, { "key": "6501", "source": "931", "target": "368", "attributes": { "weight": 2 } }, { "key": "34843", "source": "931", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6500", "source": "931", "target": "779", "attributes": { "weight": 2 } }, { "key": "3352", "source": "932", "target": "952", "attributes": { "weight": 1 } }, { "key": "3350", "source": "932", "target": "942", "attributes": { "weight": 1 } }, { "key": "3351", "source": "932", "target": "947", "attributes": { "weight": 1 } }, { "key": "32282", "source": "932", "target": "945", "attributes": { "weight": 1 } }, { "key": "3349", "source": "932", "target": "938", "attributes": { "weight": 1 } }, { "key": "32283", "source": "932", "target": "3090", "attributes": { "weight": 1 } }, { "key": "4277", "source": "933", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15431", "source": "933", "target": "913", "attributes": { "weight": 1 } }, { "key": "33853", "source": "933", "target": "1232", "attributes": { "weight": 1 } }, { "key": "3353", "source": "933", "target": "938", "attributes": { "weight": 1 } }, { "key": "3354", "source": "933", "target": "951", "attributes": { "weight": 1 } }, { "key": "18556", "source": "933", "target": "218", "attributes": { "weight": 2 } }, { "key": "18552", "source": "933", "target": "1174", "attributes": { "weight": 2 } }, { "key": "3355", "source": "933", "target": "954", "attributes": { "weight": 1 } }, { "key": "36457", "source": "933", "target": "208", "attributes": { "weight": 1 } }, { "key": "33852", "source": "933", "target": "1182", "attributes": { "weight": 1 } }, { "key": "18554", "source": "933", "target": "199", "attributes": { "weight": 2 } }, { "key": "4276", "source": "933", "target": "1196", "attributes": { "weight": 2 } }, { "key": "33854", "source": "933", "target": "123", "attributes": { "weight": 1 } }, { "key": "18555", "source": "933", "target": "1552", "attributes": { "weight": 2 } }, { "key": "4275", "source": "933", "target": "779", "attributes": { "weight": 2 } }, { "key": "8266", "source": "933", "target": "195", "attributes": { "weight": 5 } }, { "key": "18553", "source": "933", "target": "1047", "attributes": { "weight": 2 } }, { "key": "36456", "source": "933", "target": "337", "attributes": { "weight": 1 } }, { "key": "15432", "source": "933", "target": "925", "attributes": { "weight": 1 } }, { "key": "3356", "source": "934", "target": "938", "attributes": { "weight": 1 } }, { "key": "30034", "source": "935", "target": "257", "attributes": { "weight": 2 } }, { "key": "26803", "source": "935", "target": "963", "attributes": { "weight": 1 } }, { "key": "26802", "source": "935", "target": "248", "attributes": { "weight": 1 } }, { "key": "3357", "source": "935", "target": "961", "attributes": { "weight": 2 } }, { "key": "3358", "source": "936", "target": "938", "attributes": { "weight": 1 } }, { "key": "3362", "source": "937", "target": "955", "attributes": { "weight": 1 } }, { "key": "10170", "source": "937", "target": "1291", "attributes": { "weight": 1 } }, { "key": "3359", "source": "937", "target": "943", "attributes": { "weight": 1 } }, { "key": "21853", "source": "937", "target": "337", "attributes": { "weight": 1 } }, { "key": "3363", "source": "937", "target": "960", "attributes": { "weight": 1 } }, { "key": "33883", "source": "937", "target": "1197", "attributes": { "weight": 1 } }, { "key": "3360", "source": "937", "target": "944", "attributes": { "weight": 1 } }, { "key": "10171", "source": "937", "target": "1322", "attributes": { "weight": 1 } }, { "key": "3361", "source": "937", "target": "946", "attributes": { "weight": 1 } }, { "key": "15527", "source": "937", "target": "1329", "attributes": { "weight": 1 } }, { "key": "15526", "source": "937", "target": "925", "attributes": { "weight": 1 } }, { "key": "21852", "source": "937", "target": "2293", "attributes": { "weight": 1 } }, { "key": "36496", "source": "938", "target": "124", "attributes": { "weight": 1 } }, { "key": "11465", "source": "938", "target": "254", "attributes": { "weight": 1 } }, { "key": "4396", "source": "938", "target": "371", "attributes": { "weight": 2 } }, { "key": "4387", "source": "938", "target": "387", "attributes": { "weight": 5 } }, { "key": "3372", "source": "938", "target": "958", "attributes": { "weight": 1 } }, { "key": "3368", "source": "938", "target": "947", "attributes": { "weight": 1 } }, { "key": "26406", "source": "938", "target": "454", "attributes": { "weight": 2 } }, { "key": "15548", "source": "938", "target": "1236", "attributes": { "weight": 1 } }, { "key": "15550", "source": "938", "target": "1279", "attributes": { "weight": 2 } }, { "key": "11457", "source": "938", "target": "926", "attributes": { "weight": 2 } }, { "key": "4407", "source": "938", "target": "928", "attributes": { "weight": 2 } }, { "key": "3371", "source": "938", "target": "957", "attributes": { "weight": 1 } }, { "key": "11449", "source": "938", "target": "1047", "attributes": { "weight": 2 } }, { "key": "4388", "source": "938", "target": "1196", "attributes": { "weight": 3 } }, { "key": "10182", "source": "938", "target": "1238", "attributes": { "weight": 2 } }, { "key": "11453", "source": "938", "target": "205", "attributes": { "weight": 2 } }, { "key": "11450", "source": "938", "target": "199", "attributes": { "weight": 2 } }, { "key": "36495", "source": "938", "target": "1269", "attributes": { "weight": 1 } }, { "key": "15549", "source": "938", "target": "925", "attributes": { "weight": 2 } }, { "key": "17149", "source": "938", "target": "449", "attributes": { "weight": 2 } }, { "key": "18583", "source": "938", "target": "1176", "attributes": { "weight": 2 } }, { "key": "11469", "source": "938", "target": "1334", "attributes": { "weight": 1 } }, { "key": "28545", "source": "938", "target": "2780", "attributes": { "weight": 1 } }, { "key": "11467", "source": "938", "target": "1326", "attributes": { "weight": 1 } }, { "key": "4386", "source": "938", "target": "779", "attributes": { "weight": 3 } }, { "key": "11020", "source": "938", "target": "452", "attributes": { "weight": 2 } }, { "key": "11454", "source": "938", "target": "337", "attributes": { "weight": 2 } }, { "key": "11447", "source": "938", "target": "913", "attributes": { "weight": 2 } }, { "key": "3370", "source": "938", "target": "952", "attributes": { "weight": 1 } }, { "key": "11472", "source": "938", "target": "218", "attributes": { "weight": 1 } }, { "key": "10184", "source": "938", "target": "1692", "attributes": { "weight": 2 } }, { "key": "4401", "source": "938", "target": "1294", "attributes": { "weight": 3 } }, { "key": "4391", "source": "938", "target": "338", "attributes": { "weight": 7 } }, { "key": "26407", "source": "938", "target": "189", "attributes": { "weight": 2 } }, { "key": "3365", "source": "938", "target": "933", "attributes": { "weight": 1 } }, { "key": "11452", "source": "938", "target": "1232", "attributes": { "weight": 2 } }, { "key": "11442", "source": "938", "target": "236", "attributes": { "weight": 1 } }, { "key": "11448", "source": "938", "target": "358", "attributes": { "weight": 2 } }, { "key": "3374", "source": "938", "target": "962", "attributes": { "weight": 1 } }, { "key": "11458", "source": "938", "target": "1281", "attributes": { "weight": 2 } }, { "key": "7222", "source": "938", "target": "1350", "attributes": { "weight": 2 } }, { "key": "27219", "source": "938", "target": "57", "attributes": { "weight": 2 } }, { "key": "4389", "source": "938", "target": "368", "attributes": { "weight": 4 } }, { "key": "4395", "source": "938", "target": "923", "attributes": { "weight": 2 } }, { "key": "8473", "source": "938", "target": "442", "attributes": { "weight": 3 } }, { "key": "11468", "source": "938", "target": "961", "attributes": { "weight": 1 } }, { "key": "3366", "source": "938", "target": "934", "attributes": { "weight": 1 } }, { "key": "11451", "source": "938", "target": "1228", "attributes": { "weight": 2 } }, { "key": "11445", "source": "938", "target": "1180", "attributes": { "weight": 2 } }, { "key": "17150", "source": "938", "target": "2111", "attributes": { "weight": 1 } }, { "key": "4397", "source": "938", "target": "580", "attributes": { "weight": 2 } }, { "key": "4394", "source": "938", "target": "471", "attributes": { "weight": 4 } }, { "key": "3367", "source": "938", "target": "936", "attributes": { "weight": 1 } }, { "key": "3369", "source": "938", "target": "949", "attributes": { "weight": 1 } }, { "key": "4385", "source": "938", "target": "1172", "attributes": { "weight": 3 } }, { "key": "15547", "source": "938", "target": "912", "attributes": { "weight": 1 } }, { "key": "11460", "source": "938", "target": "990", "attributes": { "weight": 2 } }, { "key": "11463", "source": "938", "target": "215", "attributes": { "weight": 1 } }, { "key": "15546", "source": "938", "target": "1184", "attributes": { "weight": 1 } }, { "key": "4402", "source": "938", "target": "1296", "attributes": { "weight": 3 } }, { "key": "14017", "source": "938", "target": "1031", "attributes": { "weight": 2 } }, { "key": "10183", "source": "938", "target": "1691", "attributes": { "weight": 2 } }, { "key": "30754", "source": "938", "target": "470", "attributes": { "weight": 2 } }, { "key": "15544", "source": "938", "target": "220", "attributes": { "weight": 2 } }, { "key": "11455", "source": "938", "target": "1251", "attributes": { "weight": 1 } }, { "key": "11456", "source": "938", "target": "208", "attributes": { "weight": 4 } }, { "key": "36493", "source": "938", "target": "1165", "attributes": { "weight": 1 } }, { "key": "18584", "source": "938", "target": "1552", "attributes": { "weight": 2 } }, { "key": "11464", "source": "938", "target": "1316", "attributes": { "weight": 1 } }, { "key": "11470", "source": "938", "target": "963", "attributes": { "weight": 1 } }, { "key": "4406", "source": "938", "target": "1322", "attributes": { "weight": 3 } }, { "key": "4405", "source": "938", "target": "1315", "attributes": { "weight": 3 } }, { "key": "11443", "source": "938", "target": "1152", "attributes": { "weight": 1 } }, { "key": "15545", "source": "938", "target": "1155", "attributes": { "weight": 1 } }, { "key": "11462", "source": "938", "target": "1305", "attributes": { "weight": 2 } }, { "key": "8472", "source": "938", "target": "195", "attributes": { "weight": 7 } }, { "key": "4404", "source": "938", "target": "1309", "attributes": { "weight": 2 } }, { "key": "15551", "source": "938", "target": "1329", "attributes": { "weight": 1 } }, { "key": "11461", "source": "938", "target": "372", "attributes": { "weight": 1 } }, { "key": "35538", "source": "938", "target": "1710", "attributes": { "weight": 1 } }, { "key": "3373", "source": "938", "target": "959", "attributes": { "weight": 1 } }, { "key": "11444", "source": "938", "target": "1174", "attributes": { "weight": 3 } }, { "key": "11466", "source": "938", "target": "1323", "attributes": { "weight": 3 } }, { "key": "30755", "source": "938", "target": "1370", "attributes": { "weight": 2 } }, { "key": "33896", "source": "938", "target": "1182", "attributes": { "weight": 1 } }, { "key": "11471", "source": "938", "target": "257", "attributes": { "weight": 1 } }, { "key": "4400", "source": "938", "target": "1090", "attributes": { "weight": 3 } }, { "key": "29534", "source": "938", "target": "1415", "attributes": { "weight": 1 } }, { "key": "4398", "source": "938", "target": "123", "attributes": { "weight": 5 } }, { "key": "11446", "source": "938", "target": "1197", "attributes": { "weight": 3 } }, { "key": "4403", "source": "938", "target": "1307", "attributes": { "weight": 4 } }, { "key": "11459", "source": "938", "target": "212", "attributes": { "weight": 1 } }, { "key": "3364", "source": "938", "target": "932", "attributes": { "weight": 1 } }, { "key": "36494", "source": "938", "target": "1263", "attributes": { "weight": 1 } }, { "key": "7225", "source": "938", "target": "1063", "attributes": { "weight": 2 } }, { "key": "4392", "source": "938", "target": "921", "attributes": { "weight": 3 } }, { "key": "33897", "source": "938", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4393", "source": "938", "target": "468", "attributes": { "weight": 9 } }, { "key": "7223", "source": "938", "target": "375", "attributes": { "weight": 2 } }, { "key": "4399", "source": "938", "target": "1291", "attributes": { "weight": 3 } }, { "key": "4390", "source": "938", "target": "370", "attributes": { "weight": 4 } }, { "key": "7224", "source": "938", "target": "154", "attributes": { "weight": 2 } }, { "key": "18442", "source": "938", "target": "1738", "attributes": { "weight": 1 } }, { "key": "3375", "source": "939", "target": "124", "attributes": { "weight": 1 } }, { "key": "3376", "source": "940", "target": "961", "attributes": { "weight": 1 } }, { "key": "37309", "source": "941", "target": "589", "attributes": { "weight": 1 } }, { "key": "26813", "source": "941", "target": "257", "attributes": { "weight": 4 } }, { "key": "3377", "source": "941", "target": "961", "attributes": { "weight": 3 } }, { "key": "37090", "source": "941", "target": "250", "attributes": { "weight": 2 } }, { "key": "3378", "source": "941", "target": "963", "attributes": { "weight": 2 } }, { "key": "3381", "source": "942", "target": "952", "attributes": { "weight": 1 } }, { "key": "3379", "source": "942", "target": "932", "attributes": { "weight": 1 } }, { "key": "3380", "source": "942", "target": "945", "attributes": { "weight": 1 } }, { "key": "3382", "source": "943", "target": "937", "attributes": { "weight": 1 } }, { "key": "3383", "source": "944", "target": "937", "attributes": { "weight": 1 } }, { "key": "11537", "source": "945", "target": "215", "attributes": { "weight": 1 } }, { "key": "11535", "source": "945", "target": "208", "attributes": { "weight": 2 } }, { "key": "5117", "source": "945", "target": "123", "attributes": { "weight": 3 } }, { "key": "11538", "source": "945", "target": "218", "attributes": { "weight": 1 } }, { "key": "5115", "source": "945", "target": "779", "attributes": { "weight": 2 } }, { "key": "3386", "source": "945", "target": "952", "attributes": { "weight": 1 } }, { "key": "11536", "source": "945", "target": "212", "attributes": { "weight": 1 } }, { "key": "5116", "source": "945", "target": "1196", "attributes": { "weight": 2 } }, { "key": "11534", "source": "945", "target": "199", "attributes": { "weight": 1 } }, { "key": "3385", "source": "945", "target": "949", "attributes": { "weight": 1 } }, { "key": "32284", "source": "945", "target": "932", "attributes": { "weight": 1 } }, { "key": "15833", "source": "945", "target": "913", "attributes": { "weight": 1 } }, { "key": "5118", "source": "945", "target": "1090", "attributes": { "weight": 2 } }, { "key": "8768", "source": "945", "target": "195", "attributes": { "weight": 3 } }, { "key": "3384", "source": "945", "target": "947", "attributes": { "weight": 1 } }, { "key": "3387", "source": "946", "target": "937", "attributes": { "weight": 1 } }, { "key": "3389", "source": "947", "target": "938", "attributes": { "weight": 1 } }, { "key": "3388", "source": "947", "target": "932", "attributes": { "weight": 1 } }, { "key": "3390", "source": "948", "target": "124", "attributes": { "weight": 1 } }, { "key": "3391", "source": "949", "target": "938", "attributes": { "weight": 1 } }, { "key": "3392", "source": "949", "target": "945", "attributes": { "weight": 1 } }, { "key": "3393", "source": "950", "target": "961", "attributes": { "weight": 1 } }, { "key": "3394", "source": "951", "target": "933", "attributes": { "weight": 1 } }, { "key": "3395", "source": "952", "target": "932", "attributes": { "weight": 1 } }, { "key": "3396", "source": "952", "target": "938", "attributes": { "weight": 1 } }, { "key": "3397", "source": "952", "target": "942", "attributes": { "weight": 1 } }, { "key": "3398", "source": "952", "target": "945", "attributes": { "weight": 1 } }, { "key": "3399", "source": "953", "target": "124", "attributes": { "weight": 1 } }, { "key": "3401", "source": "954", "target": "933", "attributes": { "weight": 1 } }, { "key": "3402", "source": "955", "target": "937", "attributes": { "weight": 1 } }, { "key": "22017", "source": "956", "target": "2212", "attributes": { "weight": 1 } }, { "key": "3403", "source": "956", "target": "124", "attributes": { "weight": 1 } }, { "key": "3404", "source": "957", "target": "938", "attributes": { "weight": 1 } }, { "key": "3405", "source": "958", "target": "938", "attributes": { "weight": 1 } }, { "key": "3406", "source": "959", "target": "938", "attributes": { "weight": 1 } }, { "key": "3407", "source": "960", "target": "937", "attributes": { "weight": 1 } }, { "key": "25455", "source": "961", "target": "1381", "attributes": { "weight": 1 } }, { "key": "11698", "source": "961", "target": "1196", "attributes": { "weight": 1 } }, { "key": "11697", "source": "961", "target": "938", "attributes": { "weight": 1 } }, { "key": "11706", "source": "961", "target": "1334", "attributes": { "weight": 2 } }, { "key": "11699", "source": "961", "target": "1047", "attributes": { "weight": 2 } }, { "key": "3412", "source": "961", "target": "589", "attributes": { "weight": 3 } }, { "key": "25457", "source": "961", "target": "1298", "attributes": { "weight": 1 } }, { "key": "26820", "source": "961", "target": "248", "attributes": { "weight": 1 } }, { "key": "34788", "source": "961", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6376", "source": "961", "target": "370", "attributes": { "weight": 5 } }, { "key": "11701", "source": "961", "target": "205", "attributes": { "weight": 1 } }, { "key": "36771", "source": "961", "target": "1063", "attributes": { "weight": 1 } }, { "key": "11700", "source": "961", "target": "199", "attributes": { "weight": 4 } }, { "key": "3409", "source": "961", "target": "940", "attributes": { "weight": 1 } }, { "key": "6375", "source": "961", "target": "251", "attributes": { "weight": 2 } }, { "key": "6373", "source": "961", "target": "368", "attributes": { "weight": 2 } }, { "key": "12059", "source": "961", "target": "1328", "attributes": { "weight": 1 } }, { "key": "9074", "source": "961", "target": "195", "attributes": { "weight": 8 } }, { "key": "11703", "source": "961", "target": "212", "attributes": { "weight": 1 } }, { "key": "11708", "source": "961", "target": "218", "attributes": { "weight": 2 } }, { "key": "3410", "source": "961", "target": "941", "attributes": { "weight": 4 } }, { "key": "18950", "source": "961", "target": "1288", "attributes": { "weight": 1 } }, { "key": "11702", "source": "961", "target": "208", "attributes": { "weight": 4 } }, { "key": "32287", "source": "961", "target": "253", "attributes": { "weight": 1 } }, { "key": "34789", "source": "961", "target": "1233", "attributes": { "weight": 1 } }, { "key": "3415", "source": "961", "target": "967", "attributes": { "weight": 3 } }, { "key": "36726", "source": "961", "target": "1174", "attributes": { "weight": 1 } }, { "key": "6374", "source": "961", "target": "250", "attributes": { "weight": 4 } }, { "key": "6379", "source": "961", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11696", "source": "961", "target": "1156", "attributes": { "weight": 1 } }, { "key": "6372", "source": "961", "target": "779", "attributes": { "weight": 2 } }, { "key": "3408", "source": "961", "target": "935", "attributes": { "weight": 2 } }, { "key": "6378", "source": "961", "target": "123", "attributes": { "weight": 4 } }, { "key": "11707", "source": "961", "target": "257", "attributes": { "weight": 3 } }, { "key": "6377", "source": "961", "target": "371", "attributes": { "weight": 2 } }, { "key": "3416", "source": "961", "target": "968", "attributes": { "weight": 5 } }, { "key": "3414", "source": "961", "target": "964", "attributes": { "weight": 3 } }, { "key": "15367", "source": "961", "target": "454", "attributes": { "weight": 1 } }, { "key": "3413", "source": "961", "target": "963", "attributes": { "weight": 4 } }, { "key": "25456", "source": "961", "target": "990", "attributes": { "weight": 1 } }, { "key": "6380", "source": "961", "target": "252", "attributes": { "weight": 2 } }, { "key": "11705", "source": "961", "target": "254", "attributes": { "weight": 2 } }, { "key": "3411", "source": "961", "target": "950", "attributes": { "weight": 1 } }, { "key": "11704", "source": "961", "target": "372", "attributes": { "weight": 2 } }, { "key": "16281", "source": "961", "target": "913", "attributes": { "weight": 1 } }, { "key": "14122", "source": "961", "target": "1031", "attributes": { "weight": 1 } }, { "key": "12058", "source": "961", "target": "781", "attributes": { "weight": 1 } }, { "key": "10781", "source": "961", "target": "43", "attributes": { "weight": 1 } }, { "key": "6371", "source": "961", "target": "778", "attributes": { "weight": 1 } }, { "key": "3417", "source": "962", "target": "938", "attributes": { "weight": 1 } }, { "key": "37313", "source": "963", "target": "967", "attributes": { "weight": 1 } }, { "key": "26827", "source": "963", "target": "257", "attributes": { "weight": 2 } }, { "key": "34810", "source": "963", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6421", "source": "963", "target": "371", "attributes": { "weight": 3 } }, { "key": "3425", "source": "963", "target": "961", "attributes": { "weight": 5 } }, { "key": "26826", "source": "963", "target": "935", "attributes": { "weight": 1 } }, { "key": "28606", "source": "963", "target": "199", "attributes": { "weight": 1 } }, { "key": "37312", "source": "963", "target": "589", "attributes": { "weight": 1 } }, { "key": "32288", "source": "963", "target": "253", "attributes": { "weight": 1 } }, { "key": "6420", "source": "963", "target": "370", "attributes": { "weight": 4 } }, { "key": "3424", "source": "963", "target": "941", "attributes": { "weight": 2 } }, { "key": "6419", "source": "963", "target": "779", "attributes": { "weight": 2 } }, { "key": "34809", "source": "963", "target": "1047", "attributes": { "weight": 1 } }, { "key": "9093", "source": "963", "target": "195", "attributes": { "weight": 3 } }, { "key": "34811", "source": "963", "target": "123", "attributes": { "weight": 1 } }, { "key": "3426", "source": "963", "target": "964", "attributes": { "weight": 2 } }, { "key": "6422", "source": "963", "target": "1090", "attributes": { "weight": 2 } }, { "key": "37311", "source": "963", "target": "250", "attributes": { "weight": 1 } }, { "key": "3429", "source": "964", "target": "968", "attributes": { "weight": 1 } }, { "key": "6423", "source": "964", "target": "371", "attributes": { "weight": 2 } }, { "key": "3427", "source": "964", "target": "961", "attributes": { "weight": 3 } }, { "key": "26828", "source": "964", "target": "257", "attributes": { "weight": 1 } }, { "key": "3428", "source": "964", "target": "963", "attributes": { "weight": 2 } }, { "key": "3430", "source": "965", "target": "124", "attributes": { "weight": 1 } }, { "key": "3431", "source": "966", "target": "124", "attributes": { "weight": 1 } }, { "key": "37314", "source": "967", "target": "963", "attributes": { "weight": 1 } }, { "key": "3432", "source": "967", "target": "961", "attributes": { "weight": 3 } }, { "key": "3433", "source": "968", "target": "961", "attributes": { "weight": 5 } }, { "key": "3434", "source": "968", "target": "964", "attributes": { "weight": 1 } }, { "key": "3436", "source": "969", "target": "979", "attributes": { "weight": 1 } }, { "key": "3435", "source": "969", "target": "333", "attributes": { "weight": 1 } }, { "key": "7473", "source": "970", "target": "377", "attributes": { "weight": 2 } }, { "key": "3442", "source": "970", "target": "976", "attributes": { "weight": 1 } }, { "key": "3441", "source": "970", "target": "333", "attributes": { "weight": 2 } }, { "key": "3443", "source": "971", "target": "377", "attributes": { "weight": 1 } }, { "key": "3445", "source": "972", "target": "373", "attributes": { "weight": 1 } }, { "key": "3446", "source": "972", "target": "973", "attributes": { "weight": 1 } }, { "key": "3447", "source": "973", "target": "373", "attributes": { "weight": 1 } }, { "key": "3448", "source": "973", "target": "972", "attributes": { "weight": 1 } }, { "key": "3450", "source": "974", "target": "849", "attributes": { "weight": 2 } }, { "key": "3449", "source": "974", "target": "333", "attributes": { "weight": 2 } }, { "key": "3455", "source": "975", "target": "373", "attributes": { "weight": 1 } }, { "key": "3457", "source": "975", "target": "979", "attributes": { "weight": 1 } }, { "key": "7641", "source": "975", "target": "333", "attributes": { "weight": 2 } }, { "key": "3456", "source": "975", "target": "976", "attributes": { "weight": 1 } }, { "key": "36808", "source": "975", "target": "377", "attributes": { "weight": 1 } }, { "key": "3459", "source": "976", "target": "374", "attributes": { "weight": 1 } }, { "key": "3462", "source": "976", "target": "377", "attributes": { "weight": 2 } }, { "key": "3464", "source": "976", "target": "979", "attributes": { "weight": 1 } }, { "key": "3458", "source": "976", "target": "970", "attributes": { "weight": 1 } }, { "key": "3461", "source": "976", "target": "977", "attributes": { "weight": 1 } }, { "key": "3460", "source": "976", "target": "975", "attributes": { "weight": 1 } }, { "key": "7642", "source": "976", "target": "333", "attributes": { "weight": 2 } }, { "key": "3463", "source": "976", "target": "978", "attributes": { "weight": 1 } }, { "key": "12358", "source": "977", "target": "978", "attributes": { "weight": 1 } }, { "key": "7643", "source": "977", "target": "333", "attributes": { "weight": 3 } }, { "key": "3465", "source": "977", "target": "976", "attributes": { "weight": 1 } }, { "key": "3468", "source": "978", "target": "976", "attributes": { "weight": 1 } }, { "key": "12359", "source": "978", "target": "977", "attributes": { "weight": 1 } }, { "key": "7677", "source": "978", "target": "333", "attributes": { "weight": 2 } }, { "key": "3470", "source": "979", "target": "975", "attributes": { "weight": 1 } }, { "key": "3471", "source": "979", "target": "976", "attributes": { "weight": 1 } }, { "key": "3469", "source": "979", "target": "969", "attributes": { "weight": 1 } }, { "key": "3505", "source": "986", "target": "631", "attributes": { "weight": 2 } }, { "key": "3521", "source": "989", "target": "991", "attributes": { "weight": 1 } }, { "key": "25439", "source": "989", "target": "2591", "attributes": { "weight": 1 } }, { "key": "3520", "source": "989", "target": "990", "attributes": { "weight": 2 } }, { "key": "25443", "source": "990", "target": "2590", "attributes": { "weight": 2 } }, { "key": "34652", "source": "990", "target": "1047", "attributes": { "weight": 1 } }, { "key": "25445", "source": "990", "target": "783", "attributes": { "weight": 1 } }, { "key": "16196", "source": "990", "target": "195", "attributes": { "weight": 1 } }, { "key": "25447", "source": "990", "target": "254", "attributes": { "weight": 1 } }, { "key": "11655", "source": "990", "target": "938", "attributes": { "weight": 2 } }, { "key": "7379", "source": "990", "target": "1063", "attributes": { "weight": 2 } }, { "key": "3522", "source": "990", "target": "989", "attributes": { "weight": 2 } }, { "key": "12024", "source": "990", "target": "1281", "attributes": { "weight": 3 } }, { "key": "25446", "source": "990", "target": "1298", "attributes": { "weight": 1 } }, { "key": "25449", "source": "990", "target": "1334", "attributes": { "weight": 1 } }, { "key": "25450", "source": "990", "target": "2591", "attributes": { "weight": 1 } }, { "key": "11656", "source": "990", "target": "370", "attributes": { "weight": 2 } }, { "key": "7378", "source": "990", "target": "154", "attributes": { "weight": 1 } }, { "key": "25444", "source": "990", "target": "780", "attributes": { "weight": 1 } }, { "key": "6170", "source": "990", "target": "779", "attributes": { "weight": 2 } }, { "key": "6171", "source": "990", "target": "368", "attributes": { "weight": 2 } }, { "key": "6172", "source": "990", "target": "371", "attributes": { "weight": 2 } }, { "key": "6173", "source": "990", "target": "1090", "attributes": { "weight": 2 } }, { "key": "25448", "source": "990", "target": "961", "attributes": { "weight": 1 } }, { "key": "3523", "source": "991", "target": "989", "attributes": { "weight": 1 } }, { "key": "3525", "source": "992", "target": "1017", "attributes": { "weight": 1 } }, { "key": "14011", "source": "993", "target": "1031", "attributes": { "weight": 1 } }, { "key": "3526", "source": "993", "target": "1014", "attributes": { "weight": 1 } }, { "key": "14009", "source": "993", "target": "782", "attributes": { "weight": 1 } }, { "key": "14007", "source": "993", "target": "44", "attributes": { "weight": 2 } }, { "key": "14010", "source": "993", "target": "1726", "attributes": { "weight": 1 } }, { "key": "10584", "source": "993", "target": "43", "attributes": { "weight": 3 } }, { "key": "14006", "source": "993", "target": "1716", "attributes": { "weight": 1 } }, { "key": "14008", "source": "993", "target": "1718", "attributes": { "weight": 1 } }, { "key": "3528", "source": "994", "target": "999", "attributes": { "weight": 3 } }, { "key": "3527", "source": "994", "target": "43", "attributes": { "weight": 1 } }, { "key": "3529", "source": "995", "target": "43", "attributes": { "weight": 2 } }, { "key": "3549", "source": "996", "target": "999", "attributes": { "weight": 1 } }, { "key": "3550", "source": "997", "target": "43", "attributes": { "weight": 2 } }, { "key": "3554", "source": "998", "target": "43", "attributes": { "weight": 2 } }, { "key": "26211", "source": "999", "target": "1726", "attributes": { "weight": 1 } }, { "key": "26209", "source": "999", "target": "1722", "attributes": { "weight": 1 } }, { "key": "3557", "source": "999", "target": "996", "attributes": { "weight": 1 } }, { "key": "3555", "source": "999", "target": "994", "attributes": { "weight": 3 } }, { "key": "26210", "source": "999", "target": "1723", "attributes": { "weight": 1 } }, { "key": "3556", "source": "999", "target": "43", "attributes": { "weight": 1 } }, { "key": "3559", "source": "999", "target": "1020", "attributes": { "weight": 2 } }, { "key": "3558", "source": "999", "target": "1009", "attributes": { "weight": 1 } }, { "key": "3560", "source": "1000", "target": "43", "attributes": { "weight": 2 } }, { "key": "3561", "source": "1001", "target": "44", "attributes": { "weight": 2 } }, { "key": "3562", "source": "1002", "target": "43", "attributes": { "weight": 1 } }, { "key": "3566", "source": "1004", "target": "1006", "attributes": { "weight": 1 } }, { "key": "10692", "source": "1004", "target": "43", "attributes": { "weight": 3 } }, { "key": "3569", "source": "1006", "target": "1004", "attributes": { "weight": 1 } }, { "key": "3570", "source": "1007", "target": "1013", "attributes": { "weight": 1 } }, { "key": "3571", "source": "1008", "target": "43", "attributes": { "weight": 1 } }, { "key": "3572", "source": "1008", "target": "1022", "attributes": { "weight": 2 } }, { "key": "3573", "source": "1009", "target": "999", "attributes": { "weight": 1 } }, { "key": "3575", "source": "1010", "target": "1022", "attributes": { "weight": 1 } }, { "key": "3574", "source": "1010", "target": "43", "attributes": { "weight": 2 } }, { "key": "3576", "source": "1011", "target": "43", "attributes": { "weight": 2 } }, { "key": "3577", "source": "1011", "target": "1022", "attributes": { "weight": 1 } }, { "key": "3578", "source": "1012", "target": "43", "attributes": { "weight": 2 } }, { "key": "10736", "source": "1012", "target": "44", "attributes": { "weight": 1 } }, { "key": "3580", "source": "1013", "target": "44", "attributes": { "weight": 1 } }, { "key": "3581", "source": "1013", "target": "1007", "attributes": { "weight": 1 } }, { "key": "3579", "source": "1013", "target": "43", "attributes": { "weight": 2 } }, { "key": "3582", "source": "1014", "target": "993", "attributes": { "weight": 1 } }, { "key": "3584", "source": "1015", "target": "1019", "attributes": { "weight": 1 } }, { "key": "3583", "source": "1015", "target": "43", "attributes": { "weight": 1 } }, { "key": "3585", "source": "1016", "target": "43", "attributes": { "weight": 2 } }, { "key": "3587", "source": "1017", "target": "43", "attributes": { "weight": 1 } }, { "key": "3586", "source": "1017", "target": "992", "attributes": { "weight": 1 } }, { "key": "3589", "source": "1019", "target": "43", "attributes": { "weight": 1 } }, { "key": "3590", "source": "1019", "target": "1015", "attributes": { "weight": 1 } }, { "key": "3592", "source": "1020", "target": "44", "attributes": { "weight": 1 } }, { "key": "3593", "source": "1020", "target": "999", "attributes": { "weight": 2 } }, { "key": "3591", "source": "1020", "target": "43", "attributes": { "weight": 3 } }, { "key": "3594", "source": "1021", "target": "43", "attributes": { "weight": 1 } }, { "key": "3597", "source": "1022", "target": "1008", "attributes": { "weight": 2 } }, { "key": "3599", "source": "1022", "target": "1011", "attributes": { "weight": 1 } }, { "key": "3595", "source": "1022", "target": "43", "attributes": { "weight": 3 } }, { "key": "3598", "source": "1022", "target": "1010", "attributes": { "weight": 1 } }, { "key": "19577", "source": "1023", "target": "231", "attributes": { "weight": 1 } }, { "key": "35862", "source": "1023", "target": "497", "attributes": { "weight": 1 } }, { "key": "19552", "source": "1023", "target": "1756", "attributes": { "weight": 1 } }, { "key": "19574", "source": "1023", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19560", "source": "1023", "target": "440", "attributes": { "weight": 1 } }, { "key": "35859", "source": "1023", "target": "1092", "attributes": { "weight": 1 } }, { "key": "19592", "source": "1023", "target": "1390", "attributes": { "weight": 2 } }, { "key": "19595", "source": "1023", "target": "2278", "attributes": { "weight": 1 } }, { "key": "19587", "source": "1023", "target": "234", "attributes": { "weight": 1 } }, { "key": "35856", "source": "1023", "target": "465", "attributes": { "weight": 1 } }, { "key": "19569", "source": "1023", "target": "464", "attributes": { "weight": 1 } }, { "key": "3603", "source": "1023", "target": "1025", "attributes": { "weight": 1 } }, { "key": "19551", "source": "1023", "target": "429", "attributes": { "weight": 1 } }, { "key": "19573", "source": "1023", "target": "230", "attributes": { "weight": 1 } }, { "key": "19593", "source": "1023", "target": "2276", "attributes": { "weight": 1 } }, { "key": "19566", "source": "1023", "target": "227", "attributes": { "weight": 1 } }, { "key": "19556", "source": "1023", "target": "221", "attributes": { "weight": 1 } }, { "key": "19582", "source": "1023", "target": "1560", "attributes": { "weight": 1 } }, { "key": "25465", "source": "1023", "target": "2270", "attributes": { "weight": 1 } }, { "key": "19578", "source": "1023", "target": "480", "attributes": { "weight": 1 } }, { "key": "35858", "source": "1023", "target": "478", "attributes": { "weight": 1 } }, { "key": "19557", "source": "1023", "target": "222", "attributes": { "weight": 1 } }, { "key": "19585", "source": "1023", "target": "1374", "attributes": { "weight": 1 } }, { "key": "35863", "source": "1023", "target": "498", "attributes": { "weight": 1 } }, { "key": "19563", "source": "1023", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19558", "source": "1023", "target": "439", "attributes": { "weight": 1 } }, { "key": "19561", "source": "1023", "target": "2242", "attributes": { "weight": 1 } }, { "key": "19559", "source": "1023", "target": "2025", "attributes": { "weight": 1 } }, { "key": "19562", "source": "1023", "target": "441", "attributes": { "weight": 1 } }, { "key": "19576", "source": "1023", "target": "1708", "attributes": { "weight": 1 } }, { "key": "19565", "source": "1023", "target": "451", "attributes": { "weight": 1 } }, { "key": "19553", "source": "1023", "target": "1354", "attributes": { "weight": 1 } }, { "key": "19584", "source": "1023", "target": "2111", "attributes": { "weight": 1 } }, { "key": "19570", "source": "1023", "target": "470", "attributes": { "weight": 1 } }, { "key": "19554", "source": "1023", "target": "130", "attributes": { "weight": 1 } }, { "key": "35860", "source": "1023", "target": "1776", "attributes": { "weight": 1 } }, { "key": "19572", "source": "1023", "target": "472", "attributes": { "weight": 1 } }, { "key": "19586", "source": "1023", "target": "56", "attributes": { "weight": 1 } }, { "key": "35855", "source": "1023", "target": "1360", "attributes": { "weight": 1 } }, { "key": "19571", "source": "1023", "target": "471", "attributes": { "weight": 1 } }, { "key": "19568", "source": "1023", "target": "1998", "attributes": { "weight": 1 } }, { "key": "19575", "source": "1023", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19550", "source": "1023", "target": "1353", "attributes": { "weight": 1 } }, { "key": "19589", "source": "1023", "target": "1777", "attributes": { "weight": 1 } }, { "key": "19590", "source": "1023", "target": "235", "attributes": { "weight": 1 } }, { "key": "19579", "source": "1023", "target": "1770", "attributes": { "weight": 1 } }, { "key": "35853", "source": "1023", "target": "433", "attributes": { "weight": 1 } }, { "key": "35854", "source": "1023", "target": "1760", "attributes": { "weight": 1 } }, { "key": "19580", "source": "1023", "target": "481", "attributes": { "weight": 1 } }, { "key": "19567", "source": "1023", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19581", "source": "1023", "target": "482", "attributes": { "weight": 1 } }, { "key": "35861", "source": "1023", "target": "1778", "attributes": { "weight": 1 } }, { "key": "19564", "source": "1023", "target": "449", "attributes": { "weight": 1 } }, { "key": "19588", "source": "1023", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19583", "source": "1023", "target": "2095", "attributes": { "weight": 1 } }, { "key": "19555", "source": "1023", "target": "49", "attributes": { "weight": 1 } }, { "key": "19591", "source": "1023", "target": "1375", "attributes": { "weight": 1 } }, { "key": "35857", "source": "1023", "target": "1026", "attributes": { "weight": 1 } }, { "key": "19594", "source": "1023", "target": "194", "attributes": { "weight": 1 } }, { "key": "26598", "source": "1024", "target": "189", "attributes": { "weight": 2 } }, { "key": "25621", "source": "1024", "target": "1780", "attributes": { "weight": 2 } }, { "key": "29859", "source": "1024", "target": "432", "attributes": { "weight": 1 } }, { "key": "29173", "source": "1024", "target": "1750", "attributes": { "weight": 1 } }, { "key": "29872", "source": "1024", "target": "6", "attributes": { "weight": 2 } }, { "key": "29870", "source": "1024", "target": "2902", "attributes": { "weight": 2 } }, { "key": "29876", "source": "1024", "target": "470", "attributes": { "weight": 2 } }, { "key": "11161", "source": "1024", "target": "452", "attributes": { "weight": 2 } }, { "key": "24346", "source": "1024", "target": "190", "attributes": { "weight": 1 } }, { "key": "24072", "source": "1024", "target": "471", "attributes": { "weight": 2 } }, { "key": "11904", "source": "1024", "target": "468", "attributes": { "weight": 1 } }, { "key": "29880", "source": "1024", "target": "868", "attributes": { "weight": 2 } }, { "key": "29885", "source": "1024", "target": "14", "attributes": { "weight": 2 } }, { "key": "27871", "source": "1024", "target": "791", "attributes": { "weight": 4 } }, { "key": "29888", "source": "1024", "target": "1390", "attributes": { "weight": 1 } }, { "key": "29864", "source": "1024", "target": "2122", "attributes": { "weight": 2 } }, { "key": "29875", "source": "1024", "target": "135", "attributes": { "weight": 1 } }, { "key": "29868", "source": "1024", "target": "458", "attributes": { "weight": 1 } }, { "key": "29863", "source": "1024", "target": "2831", "attributes": { "weight": 2 } }, { "key": "29860", "source": "1024", "target": "164", "attributes": { "weight": 1 } }, { "key": "29874", "source": "1024", "target": "8", "attributes": { "weight": 4 } }, { "key": "25871", "source": "1024", "target": "673", "attributes": { "weight": 2 } }, { "key": "29884", "source": "1024", "target": "232", "attributes": { "weight": 2 } }, { "key": "27365", "source": "1024", "target": "340", "attributes": { "weight": 2 } }, { "key": "29882", "source": "1024", "target": "483", "attributes": { "weight": 1 } }, { "key": "24688", "source": "1024", "target": "5", "attributes": { "weight": 3 } }, { "key": "31615", "source": "1024", "target": "595", "attributes": { "weight": 2 } }, { "key": "17472", "source": "1024", "target": "358", "attributes": { "weight": 2 } }, { "key": "25620", "source": "1024", "target": "787", "attributes": { "weight": 2 } }, { "key": "29877", "source": "1024", "target": "2647", "attributes": { "weight": 1 } }, { "key": "29034", "source": "1024", "target": "495", "attributes": { "weight": 2 } }, { "key": "29869", "source": "1024", "target": "2287", "attributes": { "weight": 1 } }, { "key": "26597", "source": "1024", "target": "454", "attributes": { "weight": 2 } }, { "key": "29883", "source": "1024", "target": "823", "attributes": { "weight": 2 } }, { "key": "37412", "source": "1024", "target": "3376", "attributes": { "weight": 1 } }, { "key": "29865", "source": "1024", "target": "693", "attributes": { "weight": 1 } }, { "key": "34885", "source": "1024", "target": "424", "attributes": { "weight": 1 } }, { "key": "29873", "source": "1024", "target": "53", "attributes": { "weight": 1 } }, { "key": "29878", "source": "1024", "target": "473", "attributes": { "weight": 1 } }, { "key": "29879", "source": "1024", "target": "474", "attributes": { "weight": 1 } }, { "key": "22292", "source": "1024", "target": "794", "attributes": { "weight": 1 } }, { "key": "29886", "source": "1024", "target": "56", "attributes": { "weight": 1 } }, { "key": "11346", "source": "1024", "target": "1742", "attributes": { "weight": 2 } }, { "key": "29871", "source": "1024", "target": "370", "attributes": { "weight": 1 } }, { "key": "29861", "source": "1024", "target": "223", "attributes": { "weight": 2 } }, { "key": "24071", "source": "1024", "target": "130", "attributes": { "weight": 2 } }, { "key": "34886", "source": "1024", "target": "3021", "attributes": { "weight": 1 } }, { "key": "12675", "source": "1024", "target": "695", "attributes": { "weight": 2 } }, { "key": "29867", "source": "1024", "target": "457", "attributes": { "weight": 1 } }, { "key": "29881", "source": "1024", "target": "13", "attributes": { "weight": 2 } }, { "key": "29862", "source": "1024", "target": "3", "attributes": { "weight": 2 } }, { "key": "28936", "source": "1024", "target": "479", "attributes": { "weight": 3 } }, { "key": "29866", "source": "1024", "target": "52", "attributes": { "weight": 1 } }, { "key": "3609", "source": "1024", "target": "1025", "attributes": { "weight": 1 } }, { "key": "23758", "source": "1024", "target": "1774", "attributes": { "weight": 1 } }, { "key": "8793", "source": "1024", "target": "442", "attributes": { "weight": 2 } }, { "key": "16829", "source": "1024", "target": "70", "attributes": { "weight": 1 } }, { "key": "25870", "source": "1024", "target": "220", "attributes": { "weight": 2 } }, { "key": "26910", "source": "1024", "target": "497", "attributes": { "weight": 2 } }, { "key": "27267", "source": "1024", "target": "57", "attributes": { "weight": 2 } }, { "key": "30710", "source": "1024", "target": "889", "attributes": { "weight": 1 } }, { "key": "29887", "source": "1024", "target": "193", "attributes": { "weight": 1 } }, { "key": "3621", "source": "1025", "target": "8", "attributes": { "weight": 1 } }, { "key": "3617", "source": "1025", "target": "454", "attributes": { "weight": 1 } }, { "key": "3620", "source": "1025", "target": "53", "attributes": { "weight": 1 } }, { "key": "3625", "source": "1025", "target": "793", "attributes": { "weight": 1 } }, { "key": "3614", "source": "1025", "target": "3", "attributes": { "weight": 2 } }, { "key": "35976", "source": "1025", "target": "235", "attributes": { "weight": 1 } }, { "key": "3611", "source": "1025", "target": "432", "attributes": { "weight": 1 } }, { "key": "12677", "source": "1025", "target": "695", "attributes": { "weight": 1 } }, { "key": "3619", "source": "1025", "target": "1024", "attributes": { "weight": 1 } }, { "key": "3623", "source": "1025", "target": "473", "attributes": { "weight": 2 } }, { "key": "3624", "source": "1025", "target": "1026", "attributes": { "weight": 3 } }, { "key": "3626", "source": "1025", "target": "489", "attributes": { "weight": 1 } }, { "key": "3628", "source": "1025", "target": "496", "attributes": { "weight": 2 } }, { "key": "3622", "source": "1025", "target": "470", "attributes": { "weight": 1 } }, { "key": "21581", "source": "1025", "target": "89", "attributes": { "weight": 1 } }, { "key": "3627", "source": "1025", "target": "494", "attributes": { "weight": 2 } }, { "key": "29035", "source": "1025", "target": "495", "attributes": { "weight": 1 } }, { "key": "3612", "source": "1025", "target": "222", "attributes": { "weight": 2 } }, { "key": "3615", "source": "1025", "target": "449", "attributes": { "weight": 1 } }, { "key": "3618", "source": "1025", "target": "791", "attributes": { "weight": 2 } }, { "key": "3616", "source": "1025", "target": "452", "attributes": { "weight": 2 } }, { "key": "3613", "source": "1025", "target": "1023", "attributes": { "weight": 1 } }, { "key": "26599", "source": "1025", "target": "189", "attributes": { "weight": 1 } }, { "key": "35975", "source": "1025", "target": "2244", "attributes": { "weight": 1 } }, { "key": "3610", "source": "1025", "target": "0", "attributes": { "weight": 1 } }, { "key": "32927", "source": "1026", "target": "470", "attributes": { "weight": 1 } }, { "key": "3633", "source": "1026", "target": "1025", "attributes": { "weight": 3 } }, { "key": "36059", "source": "1026", "target": "439", "attributes": { "weight": 1 } }, { "key": "36074", "source": "1026", "target": "235", "attributes": { "weight": 1 } }, { "key": "27369", "source": "1026", "target": "340", "attributes": { "weight": 3 } }, { "key": "18325", "source": "1026", "target": "1092", "attributes": { "weight": 3 } }, { "key": "36056", "source": "1026", "target": "1756", "attributes": { "weight": 1 } }, { "key": "36062", "source": "1026", "target": "2245", "attributes": { "weight": 1 } }, { "key": "29447", "source": "1026", "target": "232", "attributes": { "weight": 1 } }, { "key": "11248", "source": "1026", "target": "1773", "attributes": { "weight": 2 } }, { "key": "36057", "source": "1026", "target": "221", "attributes": { "weight": 1 } }, { "key": "9008", "source": "1026", "target": "442", "attributes": { "weight": 2 } }, { "key": "36077", "source": "1026", "target": "2278", "attributes": { "weight": 1 } }, { "key": "30738", "source": "1026", "target": "474", "attributes": { "weight": 1 } }, { "key": "17964", "source": "1026", "target": "454", "attributes": { "weight": 3 } }, { "key": "30476", "source": "1026", "target": "1046", "attributes": { "weight": 1 } }, { "key": "36075", "source": "1026", "target": "1375", "attributes": { "weight": 1 } }, { "key": "6973", "source": "1026", "target": "193", "attributes": { "weight": 2 } }, { "key": "36066", "source": "1026", "target": "89", "attributes": { "weight": 1 } }, { "key": "30733", "source": "1026", "target": "223", "attributes": { "weight": 2 } }, { "key": "36076", "source": "1026", "target": "496", "attributes": { "weight": 1 } }, { "key": "30736", "source": "1026", "target": "791", "attributes": { "weight": 2 } }, { "key": "21596", "source": "1026", "target": "358", "attributes": { "weight": 2 } }, { "key": "11249", "source": "1026", "target": "1778", "attributes": { "weight": 2 } }, { "key": "4022", "source": "1026", "target": "432", "attributes": { "weight": 3 } }, { "key": "20697", "source": "1026", "target": "449", "attributes": { "weight": 2 } }, { "key": "25385", "source": "1026", "target": "433", "attributes": { "weight": 2 } }, { "key": "27287", "source": "1026", "target": "57", "attributes": { "weight": 1 } }, { "key": "36061", "source": "1026", "target": "2244", "attributes": { "weight": 1 } }, { "key": "36068", "source": "1026", "target": "2258", "attributes": { "weight": 1 } }, { "key": "30718", "source": "1026", "target": "889", "attributes": { "weight": 2 } }, { "key": "36065", "source": "1026", "target": "448", "attributes": { "weight": 1 } }, { "key": "11243", "source": "1026", "target": "1760", "attributes": { "weight": 2 } }, { "key": "25893", "source": "1026", "target": "220", "attributes": { "weight": 2 } }, { "key": "36064", "source": "1026", "target": "226", "attributes": { "weight": 1 } }, { "key": "14306", "source": "1026", "target": "53", "attributes": { "weight": 3 } }, { "key": "24196", "source": "1026", "target": "130", "attributes": { "weight": 5 } }, { "key": "29046", "source": "1026", "target": "495", "attributes": { "weight": 2 } }, { "key": "11245", "source": "1026", "target": "1762", "attributes": { "weight": 2 } }, { "key": "36072", "source": "1026", "target": "480", "attributes": { "weight": 1 } }, { "key": "26923", "source": "1026", "target": "497", "attributes": { "weight": 2 } }, { "key": "20698", "source": "1026", "target": "489", "attributes": { "weight": 1 } }, { "key": "11247", "source": "1026", "target": "1769", "attributes": { "weight": 2 } }, { "key": "36071", "source": "1026", "target": "2266", "attributes": { "weight": 1 } }, { "key": "36067", "source": "1026", "target": "2248", "attributes": { "weight": 1 } }, { "key": "30740", "source": "1026", "target": "595", "attributes": { "weight": 2 } }, { "key": "36073", "source": "1026", "target": "73", "attributes": { "weight": 1 } }, { "key": "11242", "source": "1026", "target": "1757", "attributes": { "weight": 2 } }, { "key": "31351", "source": "1026", "target": "674", "attributes": { "weight": 1 } }, { "key": "30735", "source": "1026", "target": "52", "attributes": { "weight": 2 } }, { "key": "27545", "source": "1026", "target": "1520", "attributes": { "weight": 2 } }, { "key": "36070", "source": "1026", "target": "190", "attributes": { "weight": 1 } }, { "key": "5925", "source": "1026", "target": "468", "attributes": { "weight": 3 } }, { "key": "36063", "source": "1026", "target": "445", "attributes": { "weight": 1 } }, { "key": "26729", "source": "1026", "target": "183", "attributes": { "weight": 1 } }, { "key": "11244", "source": "1026", "target": "452", "attributes": { "weight": 3 } }, { "key": "26730", "source": "1026", "target": "189", "attributes": { "weight": 2 } }, { "key": "30739", "source": "1026", "target": "487", "attributes": { "weight": 1 } }, { "key": "11246", "source": "1026", "target": "469", "attributes": { "weight": 2 } }, { "key": "36058", "source": "1026", "target": "222", "attributes": { "weight": 1 } }, { "key": "33628", "source": "1026", "target": "135", "attributes": { "weight": 1 } }, { "key": "36069", "source": "1026", "target": "473", "attributes": { "weight": 1 } }, { "key": "28946", "source": "1026", "target": "479", "attributes": { "weight": 3 } }, { "key": "30737", "source": "1026", "target": "471", "attributes": { "weight": 3 } }, { "key": "30734", "source": "1026", "target": "440", "attributes": { "weight": 1 } }, { "key": "36060", "source": "1026", "target": "1023", "attributes": { "weight": 1 } }, { "key": "3638", "source": "1027", "target": "778", "attributes": { "weight": 4 } }, { "key": "3643", "source": "1027", "target": "786", "attributes": { "weight": 2 } }, { "key": "3642", "source": "1027", "target": "1032", "attributes": { "weight": 2 } }, { "key": "3641", "source": "1027", "target": "1031", "attributes": { "weight": 1 } }, { "key": "3640", "source": "1027", "target": "1030", "attributes": { "weight": 1 } }, { "key": "3639", "source": "1027", "target": "371", "attributes": { "weight": 1 } }, { "key": "3644", "source": "1028", "target": "778", "attributes": { "weight": 2 } }, { "key": "3654", "source": "1029", "target": "778", "attributes": { "weight": 2 } }, { "key": "35249", "source": "1030", "target": "1220", "attributes": { "weight": 1 } }, { "key": "3655", "source": "1030", "target": "1027", "attributes": { "weight": 1 } }, { "key": "30643", "source": "1030", "target": "1032", "attributes": { "weight": 2 } }, { "key": "35252", "source": "1030", "target": "2993", "attributes": { "weight": 1 } }, { "key": "14159", "source": "1030", "target": "392", "attributes": { "weight": 1 } }, { "key": "35250", "source": "1030", "target": "1261", "attributes": { "weight": 1 } }, { "key": "30313", "source": "1030", "target": "786", "attributes": { "weight": 2 } }, { "key": "35254", "source": "1030", "target": "785", "attributes": { "weight": 1 } }, { "key": "35248", "source": "1030", "target": "777", "attributes": { "weight": 1 } }, { "key": "35253", "source": "1030", "target": "3189", "attributes": { "weight": 1 } }, { "key": "35255", "source": "1030", "target": "2980", "attributes": { "weight": 1 } }, { "key": "35251", "source": "1030", "target": "240", "attributes": { "weight": 1 } }, { "key": "3656", "source": "1030", "target": "778", "attributes": { "weight": 5 } }, { "key": "35256", "source": "1030", "target": "2981", "attributes": { "weight": 1 } }, { "key": "3657", "source": "1031", "target": "1027", "attributes": { "weight": 1 } }, { "key": "14102", "source": "1031", "target": "607", "attributes": { "weight": 1 } }, { "key": "14076", "source": "1031", "target": "1047", "attributes": { "weight": 2 } }, { "key": "9026", "source": "1031", "target": "195", "attributes": { "weight": 3 } }, { "key": "24216", "source": "1031", "target": "471", "attributes": { "weight": 1 } }, { "key": "14116", "source": "1031", "target": "1063", "attributes": { "weight": 1 } }, { "key": "9885", "source": "1031", "target": "390", "attributes": { "weight": 2 } }, { "key": "14062", "source": "1031", "target": "993", "attributes": { "weight": 1 } }, { "key": "9889", "source": "1031", "target": "785", "attributes": { "weight": 2 } }, { "key": "6192", "source": "1031", "target": "368", "attributes": { "weight": 2 } }, { "key": "9888", "source": "1031", "target": "783", "attributes": { "weight": 2 } }, { "key": "14083", "source": "1031", "target": "1232", "attributes": { "weight": 2 } }, { "key": "14094", "source": "1031", "target": "1262", "attributes": { "weight": 1 } }, { "key": "14085", "source": "1031", "target": "29", "attributes": { "weight": 1 } }, { "key": "14098", "source": "1031", "target": "605", "attributes": { "weight": 1 } }, { "key": "14101", "source": "1031", "target": "1726", "attributes": { "weight": 1 } }, { "key": "14104", "source": "1031", "target": "1306", "attributes": { "weight": 1 } }, { "key": "14091", "source": "1031", "target": "544", "attributes": { "weight": 1 } }, { "key": "10739", "source": "1031", "target": "407", "attributes": { "weight": 4 } }, { "key": "14074", "source": "1031", "target": "1719", "attributes": { "weight": 1 } }, { "key": "14099", "source": "1031", "target": "1281", "attributes": { "weight": 1 } }, { "key": "14112", "source": "1031", "target": "218", "attributes": { "weight": 1 } }, { "key": "11259", "source": "1031", "target": "220", "attributes": { "weight": 2 } }, { "key": "10738", "source": "1031", "target": "1314", "attributes": { "weight": 2 } }, { "key": "14088", "source": "1031", "target": "337", "attributes": { "weight": 2 } }, { "key": "14115", "source": "1031", "target": "1349", "attributes": { "weight": 1 } }, { "key": "6193", "source": "1031", "target": "371", "attributes": { "weight": 5 } }, { "key": "14106", "source": "1031", "target": "601", "attributes": { "weight": 1 } }, { "key": "14084", "source": "1031", "target": "1233", "attributes": { "weight": 2 } }, { "key": "9886", "source": "1031", "target": "396", "attributes": { "weight": 2 } }, { "key": "14109", "source": "1031", "target": "1334", "attributes": { "weight": 1 } }, { "key": "14071", "source": "1031", "target": "1186", "attributes": { "weight": 1 } }, { "key": "14070", "source": "1031", "target": "44", "attributes": { "weight": 1 } }, { "key": "14103", "source": "1031", "target": "372", "attributes": { "weight": 1 } }, { "key": "14079", "source": "1031", "target": "109", "attributes": { "weight": 1 } }, { "key": "10737", "source": "1031", "target": "43", "attributes": { "weight": 2 } }, { "key": "14067", "source": "1031", "target": "938", "attributes": { "weight": 2 } }, { "key": "14095", "source": "1031", "target": "208", "attributes": { "weight": 2 } }, { "key": "14108", "source": "1031", "target": "961", "attributes": { "weight": 1 } }, { "key": "9887", "source": "1031", "target": "399", "attributes": { "weight": 2 } }, { "key": "14064", "source": "1031", "target": "236", "attributes": { "weight": 1 } }, { "key": "14114", "source": "1031", "target": "786", "attributes": { "weight": 1 } }, { "key": "14093", "source": "1031", "target": "240", "attributes": { "weight": 1 } }, { "key": "28601", "source": "1031", "target": "199", "attributes": { "weight": 1 } }, { "key": "9027", "source": "1031", "target": "442", "attributes": { "weight": 1 } }, { "key": "14107", "source": "1031", "target": "254", "attributes": { "weight": 2 } }, { "key": "14081", "source": "1031", "target": "45", "attributes": { "weight": 2 } }, { "key": "14105", "source": "1031", "target": "634", "attributes": { "weight": 1 } }, { "key": "14065", "source": "1031", "target": "1716", "attributes": { "weight": 1 } }, { "key": "14113", "source": "1031", "target": "48", "attributes": { "weight": 1 } }, { "key": "14090", "source": "1031", "target": "30", "attributes": { "weight": 1 } }, { "key": "14069", "source": "1031", "target": "778", "attributes": { "weight": 3 } }, { "key": "14089", "source": "1031", "target": "338", "attributes": { "weight": 2 } }, { "key": "14087", "source": "1031", "target": "780", "attributes": { "weight": 1 } }, { "key": "14072", "source": "1031", "target": "872", "attributes": { "weight": 1 } }, { "key": "14073", "source": "1031", "target": "1718", "attributes": { "weight": 1 } }, { "key": "14100", "source": "1031", "target": "123", "attributes": { "weight": 2 } }, { "key": "14078", "source": "1031", "target": "108", "attributes": { "weight": 1 } }, { "key": "14082", "source": "1031", "target": "392", "attributes": { "weight": 2 } }, { "key": "14110", "source": "1031", "target": "257", "attributes": { "weight": 1 } }, { "key": "14063", "source": "1031", "target": "603", "attributes": { "weight": 1 } }, { "key": "14097", "source": "1031", "target": "545", "attributes": { "weight": 2 } }, { "key": "14068", "source": "1031", "target": "103", "attributes": { "weight": 1 } }, { "key": "14075", "source": "1031", "target": "238", "attributes": { "weight": 1 } }, { "key": "14077", "source": "1031", "target": "369", "attributes": { "weight": 1 } }, { "key": "14080", "source": "1031", "target": "391", "attributes": { "weight": 1 } }, { "key": "14086", "source": "1031", "target": "370", "attributes": { "weight": 2 } }, { "key": "14096", "source": "1031", "target": "782", "attributes": { "weight": 1 } }, { "key": "14111", "source": "1031", "target": "635", "attributes": { "weight": 1 } }, { "key": "9884", "source": "1031", "target": "387", "attributes": { "weight": 2 } }, { "key": "14092", "source": "1031", "target": "1261", "attributes": { "weight": 1 } }, { "key": "14066", "source": "1031", "target": "1717", "attributes": { "weight": 1 } }, { "key": "35261", "source": "1032", "target": "3191", "attributes": { "weight": 1 } }, { "key": "30644", "source": "1032", "target": "1030", "attributes": { "weight": 2 } }, { "key": "35260", "source": "1032", "target": "1892", "attributes": { "weight": 1 } }, { "key": "3658", "source": "1032", "target": "1027", "attributes": { "weight": 2 } }, { "key": "3659", "source": "1032", "target": "778", "attributes": { "weight": 4 } }, { "key": "35259", "source": "1032", "target": "3184", "attributes": { "weight": 1 } }, { "key": "3662", "source": "1033", "target": "778", "attributes": { "weight": 2 } }, { "key": "3664", "source": "1034", "target": "649", "attributes": { "weight": 2 } }, { "key": "9382", "source": "1034", "target": "653", "attributes": { "weight": 1 } }, { "key": "3663", "source": "1034", "target": "354", "attributes": { "weight": 3 } }, { "key": "3666", "source": "1035", "target": "419", "attributes": { "weight": 4 } }, { "key": "30336", "source": "1035", "target": "1046", "attributes": { "weight": 1 } }, { "key": "31141", "source": "1035", "target": "666", "attributes": { "weight": 1 } }, { "key": "32156", "source": "1035", "target": "1779", "attributes": { "weight": 1 } }, { "key": "23732", "source": "1035", "target": "1774", "attributes": { "weight": 1 } }, { "key": "31140", "source": "1035", "target": "645", "attributes": { "weight": 1 } }, { "key": "10392", "source": "1036", "target": "225", "attributes": { "weight": 3 } }, { "key": "18042", "source": "1036", "target": "1060", "attributes": { "weight": 3 } }, { "key": "4313", "source": "1036", "target": "123", "attributes": { "weight": 2 } }, { "key": "12332", "source": "1036", "target": "365", "attributes": { "weight": 1 } }, { "key": "18037", "source": "1036", "target": "2115", "attributes": { "weight": 3 } }, { "key": "6590", "source": "1036", "target": "1037", "attributes": { "weight": 8 } }, { "key": "24607", "source": "1036", "target": "2237", "attributes": { "weight": 1 } }, { "key": "6594", "source": "1036", "target": "304", "attributes": { "weight": 5 } }, { "key": "18041", "source": "1036", "target": "305", "attributes": { "weight": 2 } }, { "key": "7211", "source": "1036", "target": "1063", "attributes": { "weight": 2 } }, { "key": "10995", "source": "1036", "target": "1611", "attributes": { "weight": 2 } }, { "key": "18027", "source": "1036", "target": "52", "attributes": { "weight": 2 } }, { "key": "10986", "source": "1036", "target": "164", "attributes": { "weight": 3 } }, { "key": "10993", "source": "1036", "target": "171", "attributes": { "weight": 4 } }, { "key": "4306", "source": "1036", "target": "183", "attributes": { "weight": 3 } }, { "key": "3674", "source": "1036", "target": "651", "attributes": { "weight": 2 } }, { "key": "18016", "source": "1036", "target": "889", "attributes": { "weight": 3 } }, { "key": "18034", "source": "1036", "target": "361", "attributes": { "weight": 1 } }, { "key": "4307", "source": "1036", "target": "1232", "attributes": { "weight": 2 } }, { "key": "18031", "source": "1036", "target": "791", "attributes": { "weight": 2 } }, { "key": "3671", "source": "1036", "target": "647", "attributes": { "weight": 4 } }, { "key": "18026", "source": "1036", "target": "109", "attributes": { "weight": 1 } }, { "key": "10990", "source": "1036", "target": "638", "attributes": { "weight": 4 } }, { "key": "4305", "source": "1036", "target": "1042", "attributes": { "weight": 5 } }, { "key": "3920", "source": "1036", "target": "432", "attributes": { "weight": 2 } }, { "key": "3675", "source": "1036", "target": "1056", "attributes": { "weight": 5 } }, { "key": "12663", "source": "1036", "target": "223", "attributes": { "weight": 3 } }, { "key": "6591", "source": "1036", "target": "454", "attributes": { "weight": 5 } }, { "key": "18029", "source": "1036", "target": "278", "attributes": { "weight": 3 } }, { "key": "10989", "source": "1036", "target": "452", "attributes": { "weight": 2 } }, { "key": "10992", "source": "1036", "target": "1765", "attributes": { "weight": 4 } }, { "key": "29603", "source": "1036", "target": "2891", "attributes": { "weight": 1 } }, { "key": "4311", "source": "1036", "target": "468", "attributes": { "weight": 5 } }, { "key": "3676", "source": "1036", "target": "661", "attributes": { "weight": 2 } }, { "key": "18039", "source": "1036", "target": "580", "attributes": { "weight": 2 } }, { "key": "18018", "source": "1036", "target": "1520", "attributes": { "weight": 2 } }, { "key": "17133", "source": "1036", "target": "449", "attributes": { "weight": 2 } }, { "key": "18028", "source": "1036", "target": "168", "attributes": { "weight": 2 } }, { "key": "10994", "source": "1036", "target": "297", "attributes": { "weight": 3 } }, { "key": "3668", "source": "1036", "target": "644", "attributes": { "weight": 3 } }, { "key": "18035", "source": "1036", "target": "136", "attributes": { "weight": 1 } }, { "key": "18024", "source": "1036", "target": "1046", "attributes": { "weight": 2 } }, { "key": "18017", "source": "1036", "target": "433", "attributes": { "weight": 2 } }, { "key": "3667", "source": "1036", "target": "641", "attributes": { "weight": 2 } }, { "key": "4309", "source": "1036", "target": "370", "attributes": { "weight": 2 } }, { "key": "24606", "source": "1036", "target": "2235", "attributes": { "weight": 1 } }, { "key": "10991", "source": "1036", "target": "1763", "attributes": { "weight": 3 } }, { "key": "18025", "source": "1036", "target": "2114", "attributes": { "weight": 1 } }, { "key": "18044", "source": "1036", "target": "177", "attributes": { "weight": 2 } }, { "key": "18015", "source": "1036", "target": "787", "attributes": { "weight": 2 } }, { "key": "18036", "source": "1036", "target": "472", "attributes": { "weight": 1 } }, { "key": "18033", "source": "1036", "target": "359", "attributes": { "weight": 3 } }, { "key": "18020", "source": "1036", "target": "2113", "attributes": { "weight": 1 } }, { "key": "11329", "source": "1036", "target": "1742", "attributes": { "weight": 2 } }, { "key": "6596", "source": "1036", "target": "193", "attributes": { "weight": 2 } }, { "key": "6593", "source": "1036", "target": "189", "attributes": { "weight": 3 } }, { "key": "6592", "source": "1036", "target": "169", "attributes": { "weight": 2 } }, { "key": "3670", "source": "1036", "target": "1041", "attributes": { "weight": 3 } }, { "key": "4310", "source": "1036", "target": "1253", "attributes": { "weight": 7 } }, { "key": "3669", "source": "1036", "target": "645", "attributes": { "weight": 4 } }, { "key": "18038", "source": "1036", "target": "93", "attributes": { "weight": 2 } }, { "key": "10997", "source": "1036", "target": "163", "attributes": { "weight": 3 } }, { "key": "10996", "source": "1036", "target": "473", "attributes": { "weight": 2 } }, { "key": "6595", "source": "1036", "target": "178", "attributes": { "weight": 6 } }, { "key": "10987", "source": "1036", "target": "567", "attributes": { "weight": 3 } }, { "key": "18022", "source": "1036", "target": "357", "attributes": { "weight": 1 } }, { "key": "10999", "source": "1036", "target": "310", "attributes": { "weight": 3 } }, { "key": "3677", "source": "1036", "target": "667", "attributes": { "weight": 3 } }, { "key": "8431", "source": "1036", "target": "442", "attributes": { "weight": 2 } }, { "key": "18043", "source": "1036", "target": "2118", "attributes": { "weight": 1 } }, { "key": "37263", "source": "1036", "target": "1799", "attributes": { "weight": 1 } }, { "key": "18030", "source": "1036", "target": "790", "attributes": { "weight": 1 } }, { "key": "10998", "source": "1036", "target": "1772", "attributes": { "weight": 3 } }, { "key": "24605", "source": "1036", "target": "2232", "attributes": { "weight": 1 } }, { "key": "18040", "source": "1036", "target": "2116", "attributes": { "weight": 4 } }, { "key": "14292", "source": "1036", "target": "53", "attributes": { "weight": 2 } }, { "key": "18019", "source": "1036", "target": "2112", "attributes": { "weight": 1 } }, { "key": "10988", "source": "1036", "target": "264", "attributes": { "weight": 3 } }, { "key": "18045", "source": "1036", "target": "1780", "attributes": { "weight": 2 } }, { "key": "8430", "source": "1036", "target": "220", "attributes": { "weight": 7 } }, { "key": "18023", "source": "1036", "target": "3", "attributes": { "weight": 2 } }, { "key": "4312", "source": "1036", "target": "362", "attributes": { "weight": 12 } }, { "key": "18032", "source": "1036", "target": "659", "attributes": { "weight": 1 } }, { "key": "3673", "source": "1036", "target": "1045", "attributes": { "weight": 3 } }, { "key": "4308", "source": "1036", "target": "421", "attributes": { "weight": 6 } }, { "key": "18021", "source": "1036", "target": "339", "attributes": { "weight": 2 } }, { "key": "3672", "source": "1036", "target": "419", "attributes": { "weight": 4 } }, { "key": "22638", "source": "1037", "target": "419", "attributes": { "weight": 1 } }, { "key": "22651", "source": "1037", "target": "362", "attributes": { "weight": 3 } }, { "key": "22655", "source": "1037", "target": "2289", "attributes": { "weight": 1 } }, { "key": "22657", "source": "1037", "target": "1060", "attributes": { "weight": 2 } }, { "key": "14173", "source": "1037", "target": "358", "attributes": { "weight": 5 } }, { "key": "22641", "source": "1037", "target": "790", "attributes": { "weight": 1 } }, { "key": "22648", "source": "1037", "target": "53", "attributes": { "weight": 1 } }, { "key": "22639", "source": "1037", "target": "1045", "attributes": { "weight": 2 } }, { "key": "22650", "source": "1037", "target": "661", "attributes": { "weight": 1 } }, { "key": "22632", "source": "1037", "target": "1520", "attributes": { "weight": 1 } }, { "key": "22631", "source": "1037", "target": "889", "attributes": { "weight": 2 } }, { "key": "22634", "source": "1037", "target": "164", "attributes": { "weight": 3 } }, { "key": "22637", "source": "1037", "target": "647", "attributes": { "weight": 1 } }, { "key": "22656", "source": "1037", "target": "2116", "attributes": { "weight": 1 } }, { "key": "22658", "source": "1037", "target": "2118", "attributes": { "weight": 2 } }, { "key": "22633", "source": "1037", "target": "2112", "attributes": { "weight": 1 } }, { "key": "4328", "source": "1037", "target": "468", "attributes": { "weight": 4 } }, { "key": "22635", "source": "1037", "target": "339", "attributes": { "weight": 2 } }, { "key": "22652", "source": "1037", "target": "2115", "attributes": { "weight": 2 } }, { "key": "22636", "source": "1037", "target": "442", "attributes": { "weight": 1 } }, { "key": "21505", "source": "1037", "target": "89", "attributes": { "weight": 2 } }, { "key": "22642", "source": "1037", "target": "421", "attributes": { "weight": 1 } }, { "key": "4327", "source": "1037", "target": "1046", "attributes": { "weight": 10 } }, { "key": "22630", "source": "1037", "target": "1380", "attributes": { "weight": 1 } }, { "key": "22647", "source": "1037", "target": "1056", "attributes": { "weight": 4 } }, { "key": "6607", "source": "1037", "target": "1036", "attributes": { "weight": 8 } }, { "key": "22263", "source": "1037", "target": "794", "attributes": { "weight": 1 } }, { "key": "3678", "source": "1037", "target": "645", "attributes": { "weight": 2 } }, { "key": "22646", "source": "1037", "target": "1765", "attributes": { "weight": 1 } }, { "key": "22640", "source": "1037", "target": "454", "attributes": { "weight": 1 } }, { "key": "22659", "source": "1037", "target": "2119", "attributes": { "weight": 1 } }, { "key": "27703", "source": "1037", "target": "1042", "attributes": { "weight": 2 } }, { "key": "24567", "source": "1037", "target": "1049", "attributes": { "weight": 1 } }, { "key": "22649", "source": "1037", "target": "1253", "attributes": { "weight": 2 } }, { "key": "22654", "source": "1037", "target": "93", "attributes": { "weight": 2 } }, { "key": "22643", "source": "1037", "target": "791", "attributes": { "weight": 2 } }, { "key": "22644", "source": "1037", "target": "359", "attributes": { "weight": 2 } }, { "key": "22660", "source": "1037", "target": "667", "attributes": { "weight": 1 } }, { "key": "22653", "source": "1037", "target": "1801", "attributes": { "weight": 2 } }, { "key": "22645", "source": "1037", "target": "1763", "attributes": { "weight": 1 } }, { "key": "3679", "source": "1038", "target": "645", "attributes": { "weight": 2 } }, { "key": "3680", "source": "1039", "target": "645", "attributes": { "weight": 3 } }, { "key": "3681", "source": "1039", "target": "419", "attributes": { "weight": 3 } }, { "key": "3682", "source": "1040", "target": "645", "attributes": { "weight": 2 } }, { "key": "9402", "source": "1041", "target": "647", "attributes": { "weight": 2 } }, { "key": "30347", "source": "1041", "target": "1046", "attributes": { "weight": 1 } }, { "key": "9404", "source": "1041", "target": "359", "attributes": { "weight": 2 } }, { "key": "24572", "source": "1041", "target": "1056", "attributes": { "weight": 1 } }, { "key": "24569", "source": "1041", "target": "1037", "attributes": { "weight": 1 } }, { "key": "9405", "source": "1041", "target": "1060", "attributes": { "weight": 2 } }, { "key": "24571", "source": "1041", "target": "1049", "attributes": { "weight": 1 } }, { "key": "24570", "source": "1041", "target": "1045", "attributes": { "weight": 2 } }, { "key": "31151", "source": "1041", "target": "644", "attributes": { "weight": 1 } }, { "key": "24574", "source": "1041", "target": "2291", "attributes": { "weight": 1 } }, { "key": "3726", "source": "1041", "target": "645", "attributes": { "weight": 3 } }, { "key": "31152", "source": "1041", "target": "661", "attributes": { "weight": 1 } }, { "key": "24573", "source": "1041", "target": "362", "attributes": { "weight": 2 } }, { "key": "9403", "source": "1041", "target": "358", "attributes": { "weight": 3 } }, { "key": "9406", "source": "1041", "target": "794", "attributes": { "weight": 3 } }, { "key": "24568", "source": "1041", "target": "2510", "attributes": { "weight": 1 } }, { "key": "9401", "source": "1041", "target": "646", "attributes": { "weight": 1 } }, { "key": "3725", "source": "1041", "target": "1036", "attributes": { "weight": 3 } }, { "key": "27917", "source": "1042", "target": "287", "attributes": { "weight": 1 } }, { "key": "15102", "source": "1042", "target": "171", "attributes": { "weight": 4 } }, { "key": "25678", "source": "1042", "target": "278", "attributes": { "weight": 1 } }, { "key": "27716", "source": "1042", "target": "1060", "attributes": { "weight": 3 } }, { "key": "27708", "source": "1042", "target": "567", "attributes": { "weight": 2 } }, { "key": "21509", "source": "1042", "target": "89", "attributes": { "weight": 1 } }, { "key": "14184", "source": "1042", "target": "178", "attributes": { "weight": 5 } }, { "key": "27714", "source": "1042", "target": "359", "attributes": { "weight": 3 } }, { "key": "27706", "source": "1042", "target": "1037", "attributes": { "weight": 2 } }, { "key": "27718", "source": "1042", "target": "667", "attributes": { "weight": 2 } }, { "key": "27710", "source": "1042", "target": "357", "attributes": { "weight": 2 } }, { "key": "34890", "source": "1042", "target": "442", "attributes": { "weight": 1 } }, { "key": "14183", "source": "1042", "target": "164", "attributes": { "weight": 4 } }, { "key": "9413", "source": "1042", "target": "419", "attributes": { "weight": 3 } }, { "key": "27711", "source": "1042", "target": "1045", "attributes": { "weight": 3 } }, { "key": "4618", "source": "1042", "target": "1036", "attributes": { "weight": 5 } }, { "key": "9414", "source": "1042", "target": "661", "attributes": { "weight": 4 } }, { "key": "30008", "source": "1042", "target": "2914", "attributes": { "weight": 1 } }, { "key": "11039", "source": "1042", "target": "452", "attributes": { "weight": 3 } }, { "key": "26120", "source": "1042", "target": "1056", "attributes": { "weight": 3 } }, { "key": "34898", "source": "1042", "target": "305", "attributes": { "weight": 1 } }, { "key": "27715", "source": "1042", "target": "362", "attributes": { "weight": 3 } }, { "key": "27589", "source": "1042", "target": "1763", "attributes": { "weight": 2 } }, { "key": "27717", "source": "1042", "target": "1772", "attributes": { "weight": 2 } }, { "key": "27709", "source": "1042", "target": "647", "attributes": { "weight": 2 } }, { "key": "27707", "source": "1042", "target": "644", "attributes": { "weight": 2 } }, { "key": "27712", "source": "1042", "target": "2181", "attributes": { "weight": 2 } }, { "key": "3733", "source": "1042", "target": "645", "attributes": { "weight": 4 } }, { "key": "34897", "source": "1042", "target": "304", "attributes": { "weight": 1 } }, { "key": "34891", "source": "1042", "target": "3", "attributes": { "weight": 1 } }, { "key": "30352", "source": "1042", "target": "1046", "attributes": { "weight": 2 } }, { "key": "34895", "source": "1042", "target": "468", "attributes": { "weight": 1 } }, { "key": "17348", "source": "1042", "target": "358", "attributes": { "weight": 3 } }, { "key": "34896", "source": "1042", "target": "580", "attributes": { "weight": 1 } }, { "key": "34893", "source": "1042", "target": "3171", "attributes": { "weight": 1 } }, { "key": "27713", "source": "1042", "target": "1051", "attributes": { "weight": 3 } }, { "key": "34892", "source": "1042", "target": "454", "attributes": { "weight": 1 } }, { "key": "27719", "source": "1042", "target": "1061", "attributes": { "weight": 2 } }, { "key": "34894", "source": "1042", "target": "3172", "attributes": { "weight": 1 } }, { "key": "22273", "source": "1042", "target": "794", "attributes": { "weight": 3 } }, { "key": "11854", "source": "1042", "target": "1611", "attributes": { "weight": 10 } }, { "key": "9417", "source": "1043", "target": "660", "attributes": { "weight": 1 } }, { "key": "3741", "source": "1043", "target": "419", "attributes": { "weight": 4 } }, { "key": "3760", "source": "1044", "target": "1057", "attributes": { "weight": 2 } }, { "key": "31870", "source": "1045", "target": "2115", "attributes": { "weight": 2 } }, { "key": "3764", "source": "1045", "target": "419", "attributes": { "weight": 3 } }, { "key": "31866", "source": "1045", "target": "651", "attributes": { "weight": 1 } }, { "key": "8685", "source": "1045", "target": "220", "attributes": { "weight": 3 } }, { "key": "31863", "source": "1045", "target": "2123", "attributes": { "weight": 1 } }, { "key": "37095", "source": "1045", "target": "2126", "attributes": { "weight": 1 } }, { "key": "17851", "source": "1045", "target": "1380", "attributes": { "weight": 1 } }, { "key": "31861", "source": "1045", "target": "357", "attributes": { "weight": 1 } }, { "key": "22667", "source": "1045", "target": "1037", "attributes": { "weight": 2 } }, { "key": "27722", "source": "1045", "target": "1042", "attributes": { "weight": 3 } }, { "key": "19075", "source": "1045", "target": "2232", "attributes": { "weight": 1 } }, { "key": "36950", "source": "1045", "target": "362", "attributes": { "weight": 1 } }, { "key": "3762", "source": "1045", "target": "645", "attributes": { "weight": 2 } }, { "key": "28613", "source": "1045", "target": "1253", "attributes": { "weight": 2 } }, { "key": "8686", "source": "1045", "target": "1056", "attributes": { "weight": 6 } }, { "key": "3761", "source": "1045", "target": "1036", "attributes": { "weight": 3 } }, { "key": "28612", "source": "1045", "target": "421", "attributes": { "weight": 3 } }, { "key": "29622", "source": "1045", "target": "2119", "attributes": { "weight": 1 } }, { "key": "24575", "source": "1045", "target": "1041", "attributes": { "weight": 2 } }, { "key": "31858", "source": "1045", "target": "2233", "attributes": { "weight": 1 } }, { "key": "24576", "source": "1045", "target": "1049", "attributes": { "weight": 1 } }, { "key": "31862", "source": "1045", "target": "3068", "attributes": { "weight": 1 } }, { "key": "31867", "source": "1045", "target": "791", "attributes": { "weight": 2 } }, { "key": "31869", "source": "1045", "target": "661", "attributes": { "weight": 1 } }, { "key": "27848", "source": "1045", "target": "339", "attributes": { "weight": 2 } }, { "key": "19076", "source": "1045", "target": "2239", "attributes": { "weight": 1 } }, { "key": "22277", "source": "1045", "target": "794", "attributes": { "weight": 1 } }, { "key": "31864", "source": "1045", "target": "3070", "attributes": { "weight": 1 } }, { "key": "30704", "source": "1045", "target": "889", "attributes": { "weight": 1 } }, { "key": "31860", "source": "1045", "target": "644", "attributes": { "weight": 1 } }, { "key": "17356", "source": "1045", "target": "358", "attributes": { "weight": 4 } }, { "key": "12344", "source": "1045", "target": "1060", "attributes": { "weight": 3 } }, { "key": "31868", "source": "1045", "target": "359", "attributes": { "weight": 2 } }, { "key": "3765", "source": "1045", "target": "667", "attributes": { "weight": 1 } }, { "key": "29621", "source": "1045", "target": "1763", "attributes": { "weight": 2 } }, { "key": "26431", "source": "1045", "target": "454", "attributes": { "weight": 1 } }, { "key": "21510", "source": "1045", "target": "89", "attributes": { "weight": 1 } }, { "key": "31865", "source": "1045", "target": "2286", "attributes": { "weight": 1 } }, { "key": "29801", "source": "1045", "target": "93", "attributes": { "weight": 2 } }, { "key": "3763", "source": "1045", "target": "647", "attributes": { "weight": 2 } }, { "key": "31871", "source": "1045", "target": "2124", "attributes": { "weight": 2 } }, { "key": "31857", "source": "1045", "target": "3063", "attributes": { "weight": 1 } }, { "key": "31859", "source": "1045", "target": "3066", "attributes": { "weight": 1 } }, { "key": "31872", "source": "1045", "target": "2125", "attributes": { "weight": 1 } }, { "key": "17075", "source": "1045", "target": "891", "attributes": { "weight": 2 } }, { "key": "27535", "source": "1045", "target": "1520", "attributes": { "weight": 1 } }, { "key": "30360", "source": "1045", "target": "1046", "attributes": { "weight": 1 } }, { "key": "24485", "source": "1045", "target": "1801", "attributes": { "weight": 2 } }, { "key": "29802", "source": "1046", "target": "93", "attributes": { "weight": 2 } }, { "key": "24486", "source": "1046", "target": "2144", "attributes": { "weight": 1 } }, { "key": "30397", "source": "1046", "target": "790", "attributes": { "weight": 1 } }, { "key": "29194", "source": "1046", "target": "278", "attributes": { "weight": 2 } }, { "key": "21511", "source": "1046", "target": "89", "attributes": { "weight": 2 } }, { "key": "30368", "source": "1046", "target": "164", "attributes": { "weight": 1 } }, { "key": "30428", "source": "1046", "target": "178", "attributes": { "weight": 1 } }, { "key": "14190", "source": "1046", "target": "432", "attributes": { "weight": 2 } }, { "key": "4937", "source": "1046", "target": "1232", "attributes": { "weight": 2 } }, { "key": "30419", "source": "1046", "target": "163", "attributes": { "weight": 1 } }, { "key": "14191", "source": "1046", "target": "130", "attributes": { "weight": 3 } }, { "key": "29394", "source": "1046", "target": "232", "attributes": { "weight": 1 } }, { "key": "30376", "source": "1046", "target": "567", "attributes": { "weight": 1 } }, { "key": "24666", "source": "1046", "target": "5", "attributes": { "weight": 2 } }, { "key": "30371", "source": "1046", "target": "2113", "attributes": { "weight": 1 } }, { "key": "27591", "source": "1046", "target": "1060", "attributes": { "weight": 3 } }, { "key": "4939", "source": "1046", "target": "370", "attributes": { "weight": 2 } }, { "key": "30400", "source": "1046", "target": "2139", "attributes": { "weight": 1 } }, { "key": "30382", "source": "1046", "target": "264", "attributes": { "weight": 1 } }, { "key": "30410", "source": "1046", "target": "2528", "attributes": { "weight": 1 } }, { "key": "30363", "source": "1046", "target": "641", "attributes": { "weight": 1 } }, { "key": "14193", "source": "1046", "target": "168", "attributes": { "weight": 2 } }, { "key": "14195", "source": "1046", "target": "494", "attributes": { "weight": 2 } }, { "key": "30374", "source": "1046", "target": "354", "attributes": { "weight": 1 } }, { "key": "30361", "source": "1046", "target": "1380", "attributes": { "weight": 1 } }, { "key": "30435", "source": "1046", "target": "497", "attributes": { "weight": 1 } }, { "key": "3767", "source": "1046", "target": "647", "attributes": { "weight": 2 } }, { "key": "30365", "source": "1046", "target": "59", "attributes": { "weight": 1 } }, { "key": "30391", "source": "1046", "target": "452", "attributes": { "weight": 1 } }, { "key": "30411", "source": "1046", "target": "661", "attributes": { "weight": 1 } }, { "key": "30415", "source": "1046", "target": "1801", "attributes": { "weight": 1 } }, { "key": "27536", "source": "1046", "target": "1520", "attributes": { "weight": 2 } }, { "key": "30414", "source": "1046", "target": "297", "attributes": { "weight": 1 } }, { "key": "30426", "source": "1046", "target": "176", "attributes": { "weight": 1 } }, { "key": "30392", "source": "1046", "target": "650", "attributes": { "weight": 1 } }, { "key": "30436", "source": "1046", "target": "154", "attributes": { "weight": 1 } }, { "key": "30395", "source": "1046", "target": "167", "attributes": { "weight": 1 } }, { "key": "30429", "source": "1046", "target": "2291", "attributes": { "weight": 1 } }, { "key": "30389", "source": "1046", "target": "2123", "attributes": { "weight": 1 } }, { "key": "24577", "source": "1046", "target": "1041", "attributes": { "weight": 2 } }, { "key": "24487", "source": "1046", "target": "1804", "attributes": { "weight": 2 } }, { "key": "4936", "source": "1046", "target": "1037", "attributes": { "weight": 12 } }, { "key": "30377", "source": "1046", "target": "262", "attributes": { "weight": 1 } }, { "key": "30421", "source": "1046", "target": "70", "attributes": { "weight": 1 } }, { "key": "24617", "source": "1046", "target": "2232", "attributes": { "weight": 1 } }, { "key": "29623", "source": "1046", "target": "2116", "attributes": { "weight": 2 } }, { "key": "30388", "source": "1046", "target": "2114", "attributes": { "weight": 1 } }, { "key": "30396", "source": "1046", "target": "651", "attributes": { "weight": 1 } }, { "key": "30369", "source": "1046", "target": "644", "attributes": { "weight": 1 } }, { "key": "4941", "source": "1046", "target": "1090", "attributes": { "weight": 2 } }, { "key": "8688", "source": "1046", "target": "362", "attributes": { "weight": 5 } }, { "key": "18057", "source": "1046", "target": "1036", "attributes": { "weight": 2 } }, { "key": "30383", "source": "1046", "target": "357", "attributes": { "weight": 1 } }, { "key": "30427", "source": "1046", "target": "177", "attributes": { "weight": 1 } }, { "key": "30433", "source": "1046", "target": "193", "attributes": { "weight": 1 } }, { "key": "27590", "source": "1046", "target": "171", "attributes": { "weight": 2 } }, { "key": "30387", "source": "1046", "target": "1133", "attributes": { "weight": 1 } }, { "key": "30407", "source": "1046", "target": "1253", "attributes": { "weight": 1 } }, { "key": "30379", "source": "1046", "target": "225", "attributes": { "weight": 1 } }, { "key": "30362", "source": "1046", "target": "430", "attributes": { "weight": 1 } }, { "key": "30367", "source": "1046", "target": "2112", "attributes": { "weight": 1 } }, { "key": "26123", "source": "1046", "target": "1056", "attributes": { "weight": 2 } }, { "key": "30373", "source": "1046", "target": "259", "attributes": { "weight": 1 } }, { "key": "30399", "source": "1046", "target": "791", "attributes": { "weight": 2 } }, { "key": "30420", "source": "1046", "target": "2289", "attributes": { "weight": 1 } }, { "key": "30381", "source": "1046", "target": "569", "attributes": { "weight": 1 } }, { "key": "12345", "source": "1046", "target": "358", "attributes": { "weight": 5 } }, { "key": "30386", "source": "1046", "target": "1045", "attributes": { "weight": 1 } }, { "key": "30385", "source": "1046", "target": "3", "attributes": { "weight": 1 } }, { "key": "8687", "source": "1046", "target": "220", "attributes": { "weight": 3 } }, { "key": "7268", "source": "1046", "target": "454", "attributes": { "weight": 6 } }, { "key": "14192", "source": "1046", "target": "52", "attributes": { "weight": 2 } }, { "key": "30437", "source": "1046", "target": "57", "attributes": { "weight": 1 } }, { "key": "30398", "source": "1046", "target": "421", "attributes": { "weight": 1 } }, { "key": "30406", "source": "1046", "target": "53", "attributes": { "weight": 1 } }, { "key": "30384", "source": "1046", "target": "1527", "attributes": { "weight": 1 } }, { "key": "30394", "source": "1046", "target": "891", "attributes": { "weight": 1 } }, { "key": "22278", "source": "1046", "target": "794", "attributes": { "weight": 2 } }, { "key": "30408", "source": "1046", "target": "468", "attributes": { "weight": 2 } }, { "key": "30404", "source": "1046", "target": "1765", "attributes": { "weight": 2 } }, { "key": "30418", "source": "1046", "target": "473", "attributes": { "weight": 1 } }, { "key": "30366", "source": "1046", "target": "1035", "attributes": { "weight": 1 } }, { "key": "30375", "source": "1046", "target": "442", "attributes": { "weight": 1 } }, { "key": "30364", "source": "1046", "target": "889", "attributes": { "weight": 2 } }, { "key": "24932", "source": "1046", "target": "580", "attributes": { "weight": 3 } }, { "key": "24931", "source": "1046", "target": "170", "attributes": { "weight": 3 } }, { "key": "3766", "source": "1046", "target": "645", "attributes": { "weight": 3 } }, { "key": "30372", "source": "1046", "target": "440", "attributes": { "weight": 1 } }, { "key": "14194", "source": "1046", "target": "471", "attributes": { "weight": 3 } }, { "key": "30409", "source": "1046", "target": "136", "attributes": { "weight": 1 } }, { "key": "30412", "source": "1046", "target": "472", "attributes": { "weight": 2 } }, { "key": "30434", "source": "1046", "target": "495", "attributes": { "weight": 1 } }, { "key": "30380", "source": "1046", "target": "674", "attributes": { "weight": 1 } }, { "key": "30416", "source": "1046", "target": "1611", "attributes": { "weight": 1 } }, { "key": "30393", "source": "1046", "target": "109", "attributes": { "weight": 1 } }, { "key": "4940", "source": "1046", "target": "123", "attributes": { "weight": 2 } }, { "key": "30432", "source": "1046", "target": "493", "attributes": { "weight": 1 } }, { "key": "30422", "source": "1046", "target": "1026", "attributes": { "weight": 1 } }, { "key": "30403", "source": "1046", "target": "1763", "attributes": { "weight": 1 } }, { "key": "30430", "source": "1046", "target": "2124", "attributes": { "weight": 1 } }, { "key": "30370", "source": "1046", "target": "223", "attributes": { "weight": 1 } }, { "key": "30390", "source": "1046", "target": "2211", "attributes": { "weight": 1 } }, { "key": "4938", "source": "1046", "target": "1233", "attributes": { "weight": 3 } }, { "key": "30431", "source": "1046", "target": "667", "attributes": { "weight": 1 } }, { "key": "30425", "source": "1046", "target": "305", "attributes": { "weight": 1 } }, { "key": "30417", "source": "1046", "target": "189", "attributes": { "weight": 2 } }, { "key": "30413", "source": "1046", "target": "2115", "attributes": { "weight": 1 } }, { "key": "27849", "source": "1046", "target": "339", "attributes": { "weight": 2 } }, { "key": "3768", "source": "1046", "target": "419", "attributes": { "weight": 2 } }, { "key": "24618", "source": "1046", "target": "2118", "attributes": { "weight": 2 } }, { "key": "30405", "source": "1046", "target": "361", "attributes": { "weight": 2 } }, { "key": "30378", "source": "1046", "target": "1042", "attributes": { "weight": 2 } }, { "key": "30424", "source": "1046", "target": "173", "attributes": { "weight": 1 } }, { "key": "30402", "source": "1046", "target": "638", "attributes": { "weight": 1 } }, { "key": "30401", "source": "1046", "target": "359", "attributes": { "weight": 2 } }, { "key": "30423", "source": "1046", "target": "304", "attributes": { "weight": 1 } }, { "key": "34144", "source": "1047", "target": "405", "attributes": { "weight": 1 } }, { "key": "4995", "source": "1047", "target": "1090", "attributes": { "weight": 2 } }, { "key": "34103", "source": "1047", "target": "1225", "attributes": { "weight": 1 } }, { "key": "14029", "source": "1047", "target": "1031", "attributes": { "weight": 2 } }, { "key": "11501", "source": "1047", "target": "212", "attributes": { "weight": 2 } }, { "key": "34164", "source": "1047", "target": "1424", "attributes": { "weight": 1 } }, { "key": "34099", "source": "1047", "target": "419", "attributes": { "weight": 1 } }, { "key": "29535", "source": "1047", "target": "1415", "attributes": { "weight": 1 } }, { "key": "4992", "source": "1047", "target": "371", "attributes": { "weight": 3 } }, { "key": "26461", "source": "1047", "target": "188", "attributes": { "weight": 2 } }, { "key": "18676", "source": "1047", "target": "1165", "attributes": { "weight": 3 } }, { "key": "15768", "source": "1047", "target": "220", "attributes": { "weight": 4 } }, { "key": "4989", "source": "1047", "target": "368", "attributes": { "weight": 3 } }, { "key": "26468", "source": "1047", "target": "193", "attributes": { "weight": 2 } }, { "key": "34142", "source": "1047", "target": "1315", "attributes": { "weight": 1 } }, { "key": "11502", "source": "1047", "target": "215", "attributes": { "weight": 2 } }, { "key": "15772", "source": "1047", "target": "1329", "attributes": { "weight": 1 } }, { "key": "31303", "source": "1047", "target": "674", "attributes": { "weight": 1 } }, { "key": "34155", "source": "1047", "target": "928", "attributes": { "weight": 1 } }, { "key": "34137", "source": "1047", "target": "403", "attributes": { "weight": 1 } }, { "key": "34118", "source": "1047", "target": "1262", "attributes": { "weight": 1 } }, { "key": "34090", "source": "1047", "target": "1172", "attributes": { "weight": 1 } }, { "key": "34114", "source": "1047", "target": "337", "attributes": { "weight": 1 } }, { "key": "18677", "source": "1047", "target": "1552", "attributes": { "weight": 2 } }, { "key": "34145", "source": "1047", "target": "1316", "attributes": { "weight": 1 } }, { "key": "7274", "source": "1047", "target": "154", "attributes": { "weight": 2 } }, { "key": "26462", "source": "1047", "target": "471", "attributes": { "weight": 2 } }, { "key": "34109", "source": "1047", "target": "1232", "attributes": { "weight": 1 } }, { "key": "3770", "source": "1047", "target": "223", "attributes": { "weight": 5 } }, { "key": "34130", "source": "1047", "target": "1291", "attributes": { "weight": 1 } }, { "key": "26454", "source": "1047", "target": "435", "attributes": { "weight": 2 } }, { "key": "34088", "source": "1047", "target": "1789", "attributes": { "weight": 1 } }, { "key": "11505", "source": "1047", "target": "218", "attributes": { "weight": 2 } }, { "key": "26467", "source": "1047", "target": "490", "attributes": { "weight": 2 } }, { "key": "34161", "source": "1047", "target": "375", "attributes": { "weight": 1 } }, { "key": "34095", "source": "1047", "target": "1184", "attributes": { "weight": 1 } }, { "key": "7273", "source": "1047", "target": "373", "attributes": { "weight": 2 } }, { "key": "34153", "source": "1047", "target": "963", "attributes": { "weight": 1 } }, { "key": "7276", "source": "1047", "target": "377", "attributes": { "weight": 1 } }, { "key": "34085", "source": "1047", "target": "1152", "attributes": { "weight": 2 } }, { "key": "34147", "source": "1047", "target": "254", "attributes": { "weight": 1 } }, { "key": "13048", "source": "1047", "target": "305", "attributes": { "weight": 2 } }, { "key": "34154", "source": "1047", "target": "257", "attributes": { "weight": 1 } }, { "key": "35098", "source": "1047", "target": "200", "attributes": { "weight": 1 } }, { "key": "34121", "source": "1047", "target": "396", "attributes": { "weight": 1 } }, { "key": "10666", "source": "1047", "target": "1314", "attributes": { "weight": 2 } }, { "key": "31302", "source": "1047", "target": "59", "attributes": { "weight": 2 } }, { "key": "26456", "source": "1047", "target": "183", "attributes": { "weight": 2 } }, { "key": "15769", "source": "1047", "target": "912", "attributes": { "weight": 2 } }, { "key": "34108", "source": "1047", "target": "1227", "attributes": { "weight": 1 } }, { "key": "4990", "source": "1047", "target": "168", "attributes": { "weight": 3 } }, { "key": "26460", "source": "1047", "target": "1219", "attributes": { "weight": 2 } }, { "key": "34159", "source": "1047", "target": "931", "attributes": { "weight": 1 } }, { "key": "15771", "source": "1047", "target": "925", "attributes": { "weight": 2 } }, { "key": "27236", "source": "1047", "target": "52", "attributes": { "weight": 2 } }, { "key": "9453", "source": "1047", "target": "645", "attributes": { "weight": 2 } }, { "key": "34143", "source": "1047", "target": "634", "attributes": { "weight": 1 } }, { "key": "26464", "source": "1047", "target": "189", "attributes": { "weight": 2 } }, { "key": "34111", "source": "1047", "target": "1236", "attributes": { "weight": 1 } }, { "key": "32874", "source": "1047", "target": "1744", "attributes": { "weight": 2 } }, { "key": "7277", "source": "1047", "target": "1063", "attributes": { "weight": 2 } }, { "key": "34107", "source": "1047", "target": "391", "attributes": { "weight": 1 } }, { "key": "34149", "source": "1047", "target": "406", "attributes": { "weight": 1 } }, { "key": "34102", "source": "1047", "target": "1214", "attributes": { "weight": 1 } }, { "key": "34115", "source": "1047", "target": "338", "attributes": { "weight": 2 } }, { "key": "34150", "source": "1047", "target": "407", "attributes": { "weight": 1 } }, { "key": "34123", "source": "1047", "target": "1269", "attributes": { "weight": 1 } }, { "key": "34097", "source": "1047", "target": "1194", "attributes": { "weight": 1 } }, { "key": "26457", "source": "1047", "target": "450", "attributes": { "weight": 2 } }, { "key": "34083", "source": "1047", "target": "248", "attributes": { "weight": 1 } }, { "key": "15770", "source": "1047", "target": "913", "attributes": { "weight": 2 } }, { "key": "34132", "source": "1047", "target": "990", "attributes": { "weight": 1 } }, { "key": "34089", "source": "1047", "target": "1171", "attributes": { "weight": 1 } }, { "key": "34148", "source": "1047", "target": "1323", "attributes": { "weight": 2 } }, { "key": "34127", "source": "1047", "target": "1286", "attributes": { "weight": 1 } }, { "key": "34093", "source": "1047", "target": "1180", "attributes": { "weight": 1 } }, { "key": "34138", "source": "1047", "target": "1792", "attributes": { "weight": 1 } }, { "key": "11499", "source": "1047", "target": "199", "attributes": { "weight": 2 } }, { "key": "36547", "source": "1047", "target": "1228", "attributes": { "weight": 1 } }, { "key": "34096", "source": "1047", "target": "387", "attributes": { "weight": 1 } }, { "key": "34094", "source": "1047", "target": "1182", "attributes": { "weight": 1 } }, { "key": "26463", "source": "1047", "target": "472", "attributes": { "weight": 2 } }, { "key": "34087", "source": "1047", "target": "237", "attributes": { "weight": 1 } }, { "key": "34117", "source": "1047", "target": "544", "attributes": { "weight": 1 } }, { "key": "34092", "source": "1047", "target": "631", "attributes": { "weight": 1 } }, { "key": "34116", "source": "1047", "target": "30", "attributes": { "weight": 1 } }, { "key": "13047", "source": "1047", "target": "304", "attributes": { "weight": 2 } }, { "key": "11504", "source": "1047", "target": "1334", "attributes": { "weight": 1 } }, { "key": "10665", "source": "1047", "target": "43", "attributes": { "weight": 2 } }, { "key": "18447", "source": "1047", "target": "1738", "attributes": { "weight": 1 } }, { "key": "34106", "source": "1047", "target": "918", "attributes": { "weight": 1 } }, { "key": "26455", "source": "1047", "target": "449", "attributes": { "weight": 2 } }, { "key": "34110", "source": "1047", "target": "1233", "attributes": { "weight": 1 } }, { "key": "7272", "source": "1047", "target": "926", "attributes": { "weight": 5 } }, { "key": "34162", "source": "1047", "target": "149", "attributes": { "weight": 1 } }, { "key": "34101", "source": "1047", "target": "1199", "attributes": { "weight": 1 } }, { "key": "4994", "source": "1047", "target": "1125", "attributes": { "weight": 3 } }, { "key": "34151", "source": "1047", "target": "408", "attributes": { "weight": 1 } }, { "key": "34100", "source": "1047", "target": "1197", "attributes": { "weight": 2 } }, { "key": "11503", "source": "1047", "target": "961", "attributes": { "weight": 2 } }, { "key": "34119", "source": "1047", "target": "1263", "attributes": { "weight": 1 } }, { "key": "4991", "source": "1047", "target": "468", "attributes": { "weight": 8 } }, { "key": "34135", "source": "1047", "target": "372", "attributes": { "weight": 1 } }, { "key": "34086", "source": "1047", "target": "1155", "attributes": { "weight": 1 } }, { "key": "34157", "source": "1047", "target": "930", "attributes": { "weight": 1 } }, { "key": "34141", "source": "1047", "target": "1309", "attributes": { "weight": 1 } }, { "key": "34126", "source": "1047", "target": "1281", "attributes": { "weight": 1 } }, { "key": "8715", "source": "1047", "target": "442", "attributes": { "weight": 4 } }, { "key": "34104", "source": "1047", "target": "109", "attributes": { "weight": 1 } }, { "key": "7275", "source": "1047", "target": "333", "attributes": { "weight": 3 } }, { "key": "4988", "source": "1047", "target": "779", "attributes": { "weight": 3 } }, { "key": "34091", "source": "1047", "target": "1174", "attributes": { "weight": 1 } }, { "key": "34120", "source": "1047", "target": "924", "attributes": { "weight": 1 } }, { "key": "34160", "source": "1047", "target": "1350", "attributes": { "weight": 1 } }, { "key": "34124", "source": "1047", "target": "1278", "attributes": { "weight": 1 } }, { "key": "34133", "source": "1047", "target": "1298", "attributes": { "weight": 1 } }, { "key": "34140", "source": "1047", "target": "1307", "attributes": { "weight": 1 } }, { "key": "34146", "source": "1047", "target": "1321", "attributes": { "weight": 1 } }, { "key": "34129", "source": "1047", "target": "1289", "attributes": { "weight": 1 } }, { "key": "4996", "source": "1047", "target": "1294", "attributes": { "weight": 4 } }, { "key": "34113", "source": "1047", "target": "205", "attributes": { "weight": 1 } }, { "key": "4997", "source": "1047", "target": "1322", "attributes": { "weight": 3 } }, { "key": "27362", "source": "1047", "target": "340", "attributes": { "weight": 2 } }, { "key": "26466", "source": "1047", "target": "2111", "attributes": { "weight": 2 } }, { "key": "34156", "source": "1047", "target": "1342", "attributes": { "weight": 1 } }, { "key": "34125", "source": "1047", "target": "1279", "attributes": { "weight": 1 } }, { "key": "34128", "source": "1047", "target": "1287", "attributes": { "weight": 1 } }, { "key": "34105", "source": "1047", "target": "917", "attributes": { "weight": 1 } }, { "key": "34152", "source": "1047", "target": "124", "attributes": { "weight": 2 } }, { "key": "28347", "source": "1047", "target": "580", "attributes": { "weight": 2 } }, { "key": "34098", "source": "1047", "target": "1196", "attributes": { "weight": 1 } }, { "key": "26453", "source": "1047", "target": "2645", "attributes": { "weight": 2 } }, { "key": "34134", "source": "1047", "target": "785", "attributes": { "weight": 1 } }, { "key": "34139", "source": "1047", "target": "1305", "attributes": { "weight": 1 } }, { "key": "34136", "source": "1047", "target": "1301", "attributes": { "weight": 1 } }, { "key": "11498", "source": "1047", "target": "938", "attributes": { "weight": 2 } }, { "key": "34131", "source": "1047", "target": "1296", "attributes": { "weight": 1 } }, { "key": "31304", "source": "1047", "target": "70", "attributes": { "weight": 2 } }, { "key": "34163", "source": "1047", "target": "1406", "attributes": { "weight": 1 } }, { "key": "34082", "source": "1047", "target": "933", "attributes": { "weight": 1 } }, { "key": "11500", "source": "1047", "target": "208", "attributes": { "weight": 2 } }, { "key": "8714", "source": "1047", "target": "195", "attributes": { "weight": 7 } }, { "key": "26465", "source": "1047", "target": "473", "attributes": { "weight": 2 } }, { "key": "34122", "source": "1047", "target": "1268", "attributes": { "weight": 1 } }, { "key": "34112", "source": "1047", "target": "1239", "attributes": { "weight": 1 } }, { "key": "26452", "source": "1047", "target": "130", "attributes": { "weight": 2 } }, { "key": "26459", "source": "1047", "target": "454", "attributes": { "weight": 2 } }, { "key": "27237", "source": "1047", "target": "57", "attributes": { "weight": 2 } }, { "key": "32873", "source": "1047", "target": "470", "attributes": { "weight": 3 } }, { "key": "34158", "source": "1047", "target": "1347", "attributes": { "weight": 1 } }, { "key": "26458", "source": "1047", "target": "452", "attributes": { "weight": 2 } }, { "key": "34084", "source": "1047", "target": "236", "attributes": { "weight": 1 } }, { "key": "4993", "source": "1047", "target": "123", "attributes": { "weight": 3 } }, { "key": "3775", "source": "1048", "target": "419", "attributes": { "weight": 2 } }, { "key": "24580", "source": "1049", "target": "1046", "attributes": { "weight": 1 } }, { "key": "3785", "source": "1049", "target": "645", "attributes": { "weight": 5 } }, { "key": "24579", "source": "1049", "target": "1045", "attributes": { "weight": 1 } }, { "key": "24581", "source": "1049", "target": "794", "attributes": { "weight": 1 } }, { "key": "24578", "source": "1049", "target": "1036", "attributes": { "weight": 1 } }, { "key": "3786", "source": "1049", "target": "358", "attributes": { "weight": 2 } }, { "key": "3784", "source": "1049", "target": "644", "attributes": { "weight": 4 } }, { "key": "9480", "source": "1050", "target": "657", "attributes": { "weight": 1 } }, { "key": "3787", "source": "1050", "target": "419", "attributes": { "weight": 4 } }, { "key": "9481", "source": "1050", "target": "666", "attributes": { "weight": 1 } }, { "key": "27724", "source": "1051", "target": "1042", "attributes": { "weight": 3 } }, { "key": "31164", "source": "1051", "target": "651", "attributes": { "weight": 1 } }, { "key": "3788", "source": "1051", "target": "661", "attributes": { "weight": 4 } }, { "key": "9482", "source": "1052", "target": "653", "attributes": { "weight": 1 } }, { "key": "3789", "source": "1052", "target": "354", "attributes": { "weight": 3 } }, { "key": "3790", "source": "1052", "target": "649", "attributes": { "weight": 3 } }, { "key": "3791", "source": "1053", "target": "645", "attributes": { "weight": 3 } }, { "key": "9483", "source": "1053", "target": "419", "attributes": { "weight": 2 } }, { "key": "9484", "source": "1054", "target": "419", "attributes": { "weight": 1 } }, { "key": "3792", "source": "1054", "target": "354", "attributes": { "weight": 5 } }, { "key": "3793", "source": "1054", "target": "661", "attributes": { "weight": 5 } }, { "key": "3796", "source": "1055", "target": "419", "attributes": { "weight": 3 } }, { "key": "3795", "source": "1055", "target": "645", "attributes": { "weight": 3 } }, { "key": "24750", "source": "1056", "target": "889", "attributes": { "weight": 3 } }, { "key": "24528", "source": "1056", "target": "1798", "attributes": { "weight": 1 } }, { "key": "37108", "source": "1056", "target": "2124", "attributes": { "weight": 1 } }, { "key": "3805", "source": "1056", "target": "1036", "attributes": { "weight": 4 } }, { "key": "12351", "source": "1056", "target": "355", "attributes": { "weight": 1 } }, { "key": "24636", "source": "1056", "target": "2237", "attributes": { "weight": 1 } }, { "key": "9497", "source": "1056", "target": "650", "attributes": { "weight": 1 } }, { "key": "24582", "source": "1056", "target": "1041", "attributes": { "weight": 1 } }, { "key": "5254", "source": "1056", "target": "468", "attributes": { "weight": 3 } }, { "key": "26141", "source": "1056", "target": "661", "attributes": { "weight": 1 } }, { "key": "34468", "source": "1056", "target": "1232", "attributes": { "weight": 1 } }, { "key": "26132", "source": "1056", "target": "647", "attributes": { "weight": 1 } }, { "key": "24755", "source": "1056", "target": "2528", "attributes": { "weight": 2 } }, { "key": "8802", "source": "1056", "target": "1045", "attributes": { "weight": 6 } }, { "key": "26130", "source": "1056", "target": "164", "attributes": { "weight": 1 } }, { "key": "26143", "source": "1056", "target": "667", "attributes": { "weight": 1 } }, { "key": "24635", "source": "1056", "target": "1046", "attributes": { "weight": 3 } }, { "key": "24756", "source": "1056", "target": "2289", "attributes": { "weight": 2 } }, { "key": "26131", "source": "1056", "target": "1042", "attributes": { "weight": 3 } }, { "key": "21587", "source": "1056", "target": "89", "attributes": { "weight": 2 } }, { "key": "27873", "source": "1056", "target": "2670", "attributes": { "weight": 1 } }, { "key": "17615", "source": "1056", "target": "1801", "attributes": { "weight": 3 } }, { "key": "3806", "source": "1056", "target": "645", "attributes": { "weight": 2 } }, { "key": "26134", "source": "1056", "target": "454", "attributes": { "weight": 2 } }, { "key": "17614", "source": "1056", "target": "2143", "attributes": { "weight": 1 } }, { "key": "17477", "source": "1056", "target": "358", "attributes": { "weight": 4 } }, { "key": "17616", "source": "1056", "target": "1804", "attributes": { "weight": 2 } }, { "key": "12352", "source": "1056", "target": "357", "attributes": { "weight": 2 } }, { "key": "24753", "source": "1056", "target": "339", "attributes": { "weight": 3 } }, { "key": "18436", "source": "1056", "target": "359", "attributes": { "weight": 5 } }, { "key": "33050", "source": "1056", "target": "493", "attributes": { "weight": 1 } }, { "key": "26142", "source": "1056", "target": "362", "attributes": { "weight": 2 } }, { "key": "17613", "source": "1056", "target": "1794", "attributes": { "weight": 2 } }, { "key": "26136", "source": "1056", "target": "421", "attributes": { "weight": 1 } }, { "key": "18437", "source": "1056", "target": "422", "attributes": { "weight": 1 } }, { "key": "11167", "source": "1056", "target": "452", "attributes": { "weight": 2 } }, { "key": "26139", "source": "1056", "target": "171", "attributes": { "weight": 1 } }, { "key": "26140", "source": "1056", "target": "1253", "attributes": { "weight": 3 } }, { "key": "17908", "source": "1056", "target": "1380", "attributes": { "weight": 3 } }, { "key": "17082", "source": "1056", "target": "891", "attributes": { "weight": 6 } }, { "key": "22296", "source": "1056", "target": "794", "attributes": { "weight": 1 } }, { "key": "26137", "source": "1056", "target": "791", "attributes": { "weight": 2 } }, { "key": "24751", "source": "1056", "target": "2312", "attributes": { "weight": 1 } }, { "key": "29681", "source": "1056", "target": "2119", "attributes": { "weight": 1 } }, { "key": "9496", "source": "1056", "target": "641", "attributes": { "weight": 1 } }, { "key": "22675", "source": "1056", "target": "1037", "attributes": { "weight": 4 } }, { "key": "24754", "source": "1056", "target": "2313", "attributes": { "weight": 3 } }, { "key": "8801", "source": "1056", "target": "220", "attributes": { "weight": 3 } }, { "key": "24752", "source": "1056", "target": "1520", "attributes": { "weight": 3 } }, { "key": "26135", "source": "1056", "target": "790", "attributes": { "weight": 1 } }, { "key": "26138", "source": "1056", "target": "370", "attributes": { "weight": 1 } }, { "key": "29680", "source": "1056", "target": "2116", "attributes": { "weight": 1 } }, { "key": "26133", "source": "1056", "target": "419", "attributes": { "weight": 1 } }, { "key": "24758", "source": "1056", "target": "232", "attributes": { "weight": 4 } }, { "key": "31958", "source": "1056", "target": "2115", "attributes": { "weight": 2 } }, { "key": "24529", "source": "1056", "target": "2144", "attributes": { "weight": 1 } }, { "key": "24757", "source": "1056", "target": "1060", "attributes": { "weight": 4 } }, { "key": "3819", "source": "1057", "target": "645", "attributes": { "weight": 2 } }, { "key": "3822", "source": "1058", "target": "645", "attributes": { "weight": 3 } }, { "key": "3823", "source": "1059", "target": "651", "attributes": { "weight": 3 } }, { "key": "9524", "source": "1060", "target": "667", "attributes": { "weight": 1 } }, { "key": "32017", "source": "1060", "target": "3074", "attributes": { "weight": 1 } }, { "key": "32003", "source": "1060", "target": "2314", "attributes": { "weight": 1 } }, { "key": "32000", "source": "1060", "target": "3070", "attributes": { "weight": 2 } }, { "key": "28635", "source": "1060", "target": "421", "attributes": { "weight": 3 } }, { "key": "31989", "source": "1060", "target": "3065", "attributes": { "weight": 1 } }, { "key": "32022", "source": "1060", "target": "2126", "attributes": { "weight": 1 } }, { "key": "31992", "source": "1060", "target": "259", "attributes": { "weight": 1 } }, { "key": "17970", "source": "1060", "target": "1380", "attributes": { "weight": 2 } }, { "key": "3826", "source": "1060", "target": "645", "attributes": { "weight": 3 } }, { "key": "11269", "source": "1060", "target": "473", "attributes": { "weight": 2 } }, { "key": "31995", "source": "1060", "target": "647", "attributes": { "weight": 1 } }, { "key": "31996", "source": "1060", "target": "1045", "attributes": { "weight": 2 } }, { "key": "37119", "source": "1060", "target": "2528", "attributes": { "weight": 1 } }, { "key": "29734", "source": "1060", "target": "1763", "attributes": { "weight": 2 } }, { "key": "11268", "source": "1060", "target": "452", "attributes": { "weight": 2 } }, { "key": "10565", "source": "1060", "target": "339", "attributes": { "weight": 3 } }, { "key": "24761", "source": "1060", "target": "1056", "attributes": { "weight": 4 } }, { "key": "37116", "source": "1060", "target": "2312", "attributes": { "weight": 1 } }, { "key": "27728", "source": "1060", "target": "1042", "attributes": { "weight": 3 } }, { "key": "9050", "source": "1060", "target": "442", "attributes": { "weight": 2 } }, { "key": "9522", "source": "1060", "target": "1041", "attributes": { "weight": 2 } }, { "key": "32005", "source": "1060", "target": "1232", "attributes": { "weight": 1 } }, { "key": "9523", "source": "1060", "target": "419", "attributes": { "weight": 2 } }, { "key": "26742", "source": "1060", "target": "454", "attributes": { "weight": 2 } }, { "key": "24643", "source": "1060", "target": "2118", "attributes": { "weight": 2 } }, { "key": "32004", "source": "1060", "target": "651", "attributes": { "weight": 1 } }, { "key": "32001", "source": "1060", "target": "52", "attributes": { "weight": 1 } }, { "key": "32013", "source": "1060", "target": "3071", "attributes": { "weight": 1 } }, { "key": "31999", "source": "1060", "target": "2123", "attributes": { "weight": 1 } }, { "key": "17083", "source": "1060", "target": "891", "attributes": { "weight": 4 } }, { "key": "30719", "source": "1060", "target": "889", "attributes": { "weight": 3 } }, { "key": "29735", "source": "1060", "target": "2119", "attributes": { "weight": 1 } }, { "key": "21599", "source": "1060", "target": "89", "attributes": { "weight": 1 } }, { "key": "31994", "source": "1060", "target": "225", "attributes": { "weight": 1 } }, { "key": "12034", "source": "1060", "target": "468", "attributes": { "weight": 2 } }, { "key": "26743", "source": "1060", "target": "189", "attributes": { "weight": 1 } }, { "key": "31987", "source": "1060", "target": "2233", "attributes": { "weight": 2 } }, { "key": "22685", "source": "1060", "target": "1037", "attributes": { "weight": 2 } }, { "key": "32009", "source": "1060", "target": "660", "attributes": { "weight": 1 } }, { "key": "24644", "source": "1060", "target": "2239", "attributes": { "weight": 1 } }, { "key": "18082", "source": "1060", "target": "1036", "attributes": { "weight": 3 } }, { "key": "32015", "source": "1060", "target": "3073", "attributes": { "weight": 1 } }, { "key": "29831", "source": "1060", "target": "93", "attributes": { "weight": 2 } }, { "key": "32002", "source": "1060", "target": "2286", "attributes": { "weight": 1 } }, { "key": "25764", "source": "1060", "target": "278", "attributes": { "weight": 1 } }, { "key": "28637", "source": "1060", "target": "2116", "attributes": { "weight": 3 } }, { "key": "31986", "source": "1060", "target": "3063", "attributes": { "weight": 1 } }, { "key": "32006", "source": "1060", "target": "791", "attributes": { "weight": 2 } }, { "key": "32020", "source": "1060", "target": "3076", "attributes": { "weight": 1 } }, { "key": "31997", "source": "1060", "target": "3067", "attributes": { "weight": 1 } }, { "key": "37117", "source": "1060", "target": "2313", "attributes": { "weight": 1 } }, { "key": "25765", "source": "1060", "target": "359", "attributes": { "weight": 5 } }, { "key": "28636", "source": "1060", "target": "1253", "attributes": { "weight": 3 } }, { "key": "22308", "source": "1060", "target": "794", "attributes": { "weight": 1 } }, { "key": "31993", "source": "1060", "target": "567", "attributes": { "weight": 1 } }, { "key": "17510", "source": "1060", "target": "358", "attributes": { "weight": 4 } }, { "key": "31991", "source": "1060", "target": "644", "attributes": { "weight": 1 } }, { "key": "32019", "source": "1060", "target": "3075", "attributes": { "weight": 1 } }, { "key": "31998", "source": "1060", "target": "3068", "attributes": { "weight": 1 } }, { "key": "32014", "source": "1060", "target": "3072", "attributes": { "weight": 1 } }, { "key": "27546", "source": "1060", "target": "1520", "attributes": { "weight": 2 } }, { "key": "31471", "source": "1060", "target": "178", "attributes": { "weight": 2 } }, { "key": "32012", "source": "1060", "target": "2115", "attributes": { "weight": 2 } }, { "key": "37118", "source": "1060", "target": "2861", "attributes": { "weight": 1 } }, { "key": "12356", "source": "1060", "target": "357", "attributes": { "weight": 2 } }, { "key": "32018", "source": "1060", "target": "2125", "attributes": { "weight": 1 } }, { "key": "14277", "source": "1060", "target": "168", "attributes": { "weight": 1 } }, { "key": "27886", "source": "1060", "target": "2670", "attributes": { "weight": 3 } }, { "key": "27656", "source": "1060", "target": "1046", "attributes": { "weight": 3 } }, { "key": "31990", "source": "1060", "target": "3066", "attributes": { "weight": 1 } }, { "key": "32008", "source": "1060", "target": "171", "attributes": { "weight": 1 } }, { "key": "31988", "source": "1060", "target": "3064", "attributes": { "weight": 1 } }, { "key": "32016", "source": "1060", "target": "2124", "attributes": { "weight": 2 } }, { "key": "32011", "source": "1060", "target": "362", "attributes": { "weight": 2 } }, { "key": "32007", "source": "1060", "target": "370", "attributes": { "weight": 1 } }, { "key": "37120", "source": "1060", "target": "232", "attributes": { "weight": 1 } }, { "key": "32021", "source": "1060", "target": "3077", "attributes": { "weight": 1 } }, { "key": "32010", "source": "1060", "target": "661", "attributes": { "weight": 1 } }, { "key": "31118", "source": "1060", "target": "1765", "attributes": { "weight": 3 } }, { "key": "3833", "source": "1061", "target": "661", "attributes": { "weight": 3 } }, { "key": "27731", "source": "1061", "target": "1042", "attributes": { "weight": 2 } }, { "key": "24590", "source": "1061", "target": "178", "attributes": { "weight": 2 } }, { "key": "9705", "source": "1061", "target": "171", "attributes": { "weight": 2 } }, { "key": "3835", "source": "1062", "target": "419", "attributes": { "weight": 4 } }, { "key": "3834", "source": "1062", "target": "645", "attributes": { "weight": 3 } }, { "key": "7723", "source": "1063", "target": "1047", "attributes": { "weight": 2 } }, { "key": "7700", "source": "1063", "target": "248", "attributes": { "weight": 2 } }, { "key": "33017", "source": "1063", "target": "472", "attributes": { "weight": 1 } }, { "key": "7753", "source": "1063", "target": "1296", "attributes": { "weight": 2 } }, { "key": "7739", "source": "1063", "target": "30", "attributes": { "weight": 1 } }, { "key": "6549", "source": "1063", "target": "338", "attributes": { "weight": 5 } }, { "key": "6554", "source": "1063", "target": "123", "attributes": { "weight": 6 } }, { "key": "36828", "source": "1063", "target": "1279", "attributes": { "weight": 1 } }, { "key": "29768", "source": "1063", "target": "1253", "attributes": { "weight": 1 } }, { "key": "7703", "source": "1063", "target": "1036", "attributes": { "weight": 2 } }, { "key": "7702", "source": "1063", "target": "236", "attributes": { "weight": 2 } }, { "key": "7720", "source": "1063", "target": "1197", "attributes": { "weight": 2 } }, { "key": "7775", "source": "1063", "target": "1391", "attributes": { "weight": 1 } }, { "key": "7747", "source": "1063", "target": "926", "attributes": { "weight": 2 } }, { "key": "7791", "source": "1063", "target": "1414", "attributes": { "weight": 1 } }, { "key": "7729", "source": "1063", "target": "1220", "attributes": { "weight": 2 } }, { "key": "7744", "source": "1063", "target": "396", "attributes": { "weight": 2 } }, { "key": "7746", "source": "1063", "target": "925", "attributes": { "weight": 4 } }, { "key": "36830", "source": "1063", "target": "257", "attributes": { "weight": 1 } }, { "key": "7756", "source": "1063", "target": "372", "attributes": { "weight": 3 } }, { "key": "7704", "source": "1063", "target": "1381", "attributes": { "weight": 2 } }, { "key": "7754", "source": "1063", "target": "990", "attributes": { "weight": 2 } }, { "key": "7705", "source": "1063", "target": "130", "attributes": { "weight": 2 } }, { "key": "7750", "source": "1063", "target": "580", "attributes": { "weight": 2 } }, { "key": "7731", "source": "1063", "target": "392", "attributes": { "weight": 1 } }, { "key": "7769", "source": "1063", "target": "340", "attributes": { "weight": 2 } }, { "key": "7752", "source": "1063", "target": "1294", "attributes": { "weight": 1 } }, { "key": "7780", "source": "1063", "target": "1350", "attributes": { "weight": 3 } }, { "key": "7761", "source": "1063", "target": "1315", "attributes": { "weight": 1 } }, { "key": "29766", "source": "1063", "target": "421", "attributes": { "weight": 1 } }, { "key": "7764", "source": "1063", "target": "1323", "attributes": { "weight": 2 } }, { "key": "7745", "source": "1063", "target": "1269", "attributes": { "weight": 1 } }, { "key": "7713", "source": "1063", "target": "1383", "attributes": { "weight": 2 } }, { "key": "33018", "source": "1063", "target": "494", "attributes": { "weight": 1 } }, { "key": "10790", "source": "1063", "target": "1314", "attributes": { "weight": 1 } }, { "key": "7784", "source": "1063", "target": "1404", "attributes": { "weight": 1 } }, { "key": "7771", "source": "1063", "target": "1347", "attributes": { "weight": 2 } }, { "key": "6547", "source": "1063", "target": "370", "attributes": { "weight": 6 } }, { "key": "30799", "source": "1063", "target": "1370", "attributes": { "weight": 2 } }, { "key": "7726", "source": "1063", "target": "454", "attributes": { "weight": 2 } }, { "key": "7787", "source": "1063", "target": "1408", "attributes": { "weight": 2 } }, { "key": "7757", "source": "1063", "target": "305", "attributes": { "weight": 2 } }, { "key": "31825", "source": "1063", "target": "595", "attributes": { "weight": 1 } }, { "key": "7714", "source": "1063", "target": "442", "attributes": { "weight": 6 } }, { "key": "7741", "source": "1063", "target": "1262", "attributes": { "weight": 3 } }, { "key": "6552", "source": "1063", "target": "208", "attributes": { "weight": 5 } }, { "key": "7778", "source": "1063", "target": "1397", "attributes": { "weight": 1 } }, { "key": "6555", "source": "1063", "target": "1090", "attributes": { "weight": 4 } }, { "key": "7773", "source": "1063", "target": "1377", "attributes": { "weight": 3 } }, { "key": "7707", "source": "1063", "target": "1156", "attributes": { "weight": 2 } }, { "key": "7730", "source": "1063", "target": "109", "attributes": { "weight": 2 } }, { "key": "32047", "source": "1063", "target": "359", "attributes": { "weight": 1 } }, { "key": "7740", "source": "1063", "target": "544", "attributes": { "weight": 2 } }, { "key": "6545", "source": "1063", "target": "1196", "attributes": { "weight": 3 } }, { "key": "7794", "source": "1063", "target": "625", "attributes": { "weight": 3 } }, { "key": "16413", "source": "1063", "target": "220", "attributes": { "weight": 3 } }, { "key": "7712", "source": "1063", "target": "1174", "attributes": { "weight": 1 } }, { "key": "7742", "source": "1063", "target": "1263", "attributes": { "weight": 1 } }, { "key": "7758", "source": "1063", "target": "1305", "attributes": { "weight": 1 } }, { "key": "7766", "source": "1063", "target": "1388", "attributes": { "weight": 4 } }, { "key": "6551", "source": "1063", "target": "468", "attributes": { "weight": 6 } }, { "key": "14130", "source": "1063", "target": "1031", "attributes": { "weight": 1 } }, { "key": "7718", "source": "1063", "target": "387", "attributes": { "weight": 3 } }, { "key": "7733", "source": "1063", "target": "1385", "attributes": { "weight": 2 } }, { "key": "30797", "source": "1063", "target": "470", "attributes": { "weight": 3 } }, { "key": "36829", "source": "1063", "target": "961", "attributes": { "weight": 1 } }, { "key": "7725", "source": "1063", "target": "199", "attributes": { "weight": 4 } }, { "key": "7763", "source": "1063", "target": "1322", "attributes": { "weight": 1 } }, { "key": "7710", "source": "1063", "target": "43", "attributes": { "weight": 2 } }, { "key": "7767", "source": "1063", "target": "124", "attributes": { "weight": 2 } }, { "key": "7751", "source": "1063", "target": "304", "attributes": { "weight": 3 } }, { "key": "7743", "source": "1063", "target": "923", "attributes": { "weight": 1 } }, { "key": "7777", "source": "1063", "target": "373", "attributes": { "weight": 2 } }, { "key": "7716", "source": "1063", "target": "1184", "attributes": { "weight": 2 } }, { "key": "3839", "source": "1063", "target": "223", "attributes": { "weight": 2 } }, { "key": "7789", "source": "1063", "target": "1412", "attributes": { "weight": 1 } }, { "key": "7774", "source": "1063", "target": "497", "attributes": { "weight": 2 } }, { "key": "7738", "source": "1063", "target": "780", "attributes": { "weight": 4 } }, { "key": "7782", "source": "1063", "target": "375", "attributes": { "weight": 2 } }, { "key": "7802", "source": "1063", "target": "1427", "attributes": { "weight": 1 } }, { "key": "17529", "source": "1063", "target": "358", "attributes": { "weight": 1 } }, { "key": "7779", "source": "1063", "target": "1398", "attributes": { "weight": 1 } }, { "key": "7795", "source": "1063", "target": "1417", "attributes": { "weight": 2 } }, { "key": "7709", "source": "1063", "target": "1165", "attributes": { "weight": 1 } }, { "key": "7776", "source": "1063", "target": "1396", "attributes": { "weight": 2 } }, { "key": "7800", "source": "1063", "target": "851", "attributes": { "weight": 2 } }, { "key": "7717", "source": "1063", "target": "674", "attributes": { "weight": 3 } }, { "key": "7724", "source": "1063", "target": "452", "attributes": { "weight": 5 } }, { "key": "7728", "source": "1063", "target": "201", "attributes": { "weight": 1 } }, { "key": "7708", "source": "1063", "target": "1158", "attributes": { "weight": 2 } }, { "key": "7788", "source": "1063", "target": "1411", "attributes": { "weight": 1 } }, { "key": "7732", "source": "1063", "target": "168", "attributes": { "weight": 2 } }, { "key": "14168", "source": "1063", "target": "1963", "attributes": { "weight": 1 } }, { "key": "7711", "source": "1063", "target": "938", "attributes": { "weight": 2 } }, { "key": "7760", "source": "1063", "target": "215", "attributes": { "weight": 2 } }, { "key": "6550", "source": "1063", "target": "921", "attributes": { "weight": 6 } }, { "key": "6546", "source": "1063", "target": "368", "attributes": { "weight": 5 } }, { "key": "7785", "source": "1063", "target": "1406", "attributes": { "weight": 2 } }, { "key": "7796", "source": "1063", "target": "1419", "attributes": { "weight": 1 } }, { "key": "7781", "source": "1063", "target": "1401", "attributes": { "weight": 2 } }, { "key": "7727", "source": "1063", "target": "1214", "attributes": { "weight": 2 } }, { "key": "7759", "source": "1063", "target": "1309", "attributes": { "weight": 1 } }, { "key": "7701", "source": "1063", "target": "195", "attributes": { "weight": 6 } }, { "key": "27894", "source": "1063", "target": "339", "attributes": { "weight": 1 } }, { "key": "36831", "source": "1063", "target": "374", "attributes": { "weight": 1 } }, { "key": "33016", "source": "1063", "target": "135", "attributes": { "weight": 1 } }, { "key": "7749", "source": "1063", "target": "1281", "attributes": { "weight": 2 } }, { "key": "7797", "source": "1063", "target": "1420", "attributes": { "weight": 1 } }, { "key": "7734", "source": "1063", "target": "1232", "attributes": { "weight": 2 } }, { "key": "12844", "source": "1063", "target": "785", "attributes": { "weight": 2 } }, { "key": "33014", "source": "1063", "target": "432", "attributes": { "weight": 1 } }, { "key": "7786", "source": "1063", "target": "1407", "attributes": { "weight": 3 } }, { "key": "7765", "source": "1063", "target": "407", "attributes": { "weight": 1 } }, { "key": "12843", "source": "1063", "target": "1892", "attributes": { "weight": 2 } }, { "key": "12657", "source": "1063", "target": "180", "attributes": { "weight": 1 } }, { "key": "25782", "source": "1063", "target": "278", "attributes": { "weight": 1 } }, { "key": "7721", "source": "1063", "target": "913", "attributes": { "weight": 5 } }, { "key": "29767", "source": "1063", "target": "1763", "attributes": { "weight": 1 } }, { "key": "6544", "source": "1063", "target": "779", "attributes": { "weight": 3 } }, { "key": "7799", "source": "1063", "target": "1422", "attributes": { "weight": 2 } }, { "key": "17982", "source": "1063", "target": "1380", "attributes": { "weight": 1 } }, { "key": "7755", "source": "1063", "target": "1298", "attributes": { "weight": 2 } }, { "key": "35090", "source": "1063", "target": "352", "attributes": { "weight": 1 } }, { "key": "33015", "source": "1063", "target": "1219", "attributes": { "weight": 1 } }, { "key": "7790", "source": "1063", "target": "1413", "attributes": { "weight": 1 } }, { "key": "7715", "source": "1063", "target": "1182", "attributes": { "weight": 2 } }, { "key": "7783", "source": "1063", "target": "149", "attributes": { "weight": 3 } }, { "key": "7737", "source": "1063", "target": "791", "attributes": { "weight": 2 } }, { "key": "7803", "source": "1063", "target": "57", "attributes": { "weight": 2 } }, { "key": "7792", "source": "1063", "target": "154", "attributes": { "weight": 7 } }, { "key": "7768", "source": "1063", "target": "928", "attributes": { "weight": 1 } }, { "key": "7801", "source": "1063", "target": "1424", "attributes": { "weight": 2 } }, { "key": "18483", "source": "1063", "target": "1738", "attributes": { "weight": 1 } }, { "key": "7793", "source": "1063", "target": "333", "attributes": { "weight": 3 } }, { "key": "7770", "source": "1063", "target": "218", "attributes": { "weight": 2 } }, { "key": "7762", "source": "1063", "target": "601", "attributes": { "weight": 1 } }, { "key": "7706", "source": "1063", "target": "1155", "attributes": { "weight": 2 } }, { "key": "7748", "source": "1063", "target": "189", "attributes": { "weight": 2 } }, { "key": "7722", "source": "1063", "target": "449", "attributes": { "weight": 3 } }, { "key": "7735", "source": "1063", "target": "1233", "attributes": { "weight": 2 } }, { "key": "6548", "source": "1063", "target": "337", "attributes": { "weight": 4 } }, { "key": "6553", "source": "1063", "target": "371", "attributes": { "weight": 4 } }, { "key": "30798", "source": "1063", "target": "1744", "attributes": { "weight": 3 } }, { "key": "7772", "source": "1063", "target": "495", "attributes": { "weight": 3 } }, { "key": "7736", "source": "1063", "target": "1236", "attributes": { "weight": 1 } }, { "key": "7798", "source": "1063", "target": "377", "attributes": { "weight": 2 } }, { "key": "7719", "source": "1063", "target": "912", "attributes": { "weight": 3 } }, { "key": "22843", "source": "1064", "target": "483", "attributes": { "weight": 1 } }, { "key": "3971", "source": "1064", "target": "432", "attributes": { "weight": 2 } }, { "key": "3842", "source": "1064", "target": "487", "attributes": { "weight": 1 } }, { "key": "22842", "source": "1064", "target": "1085", "attributes": { "weight": 2 } }, { "key": "22844", "source": "1065", "target": "1069", "attributes": { "weight": 1 } }, { "key": "22845", "source": "1065", "target": "1371", "attributes": { "weight": 1 } }, { "key": "3977", "source": "1065", "target": "1081", "attributes": { "weight": 2 } }, { "key": "3843", "source": "1065", "target": "432", "attributes": { "weight": 1 } }, { "key": "6848", "source": "1066", "target": "495", "attributes": { "weight": 2 } }, { "key": "3990", "source": "1066", "target": "189", "attributes": { "weight": 2 } }, { "key": "3844", "source": "1066", "target": "487", "attributes": { "weight": 1 } }, { "key": "3989", "source": "1066", "target": "183", "attributes": { "weight": 1 } }, { "key": "23629", "source": "1066", "target": "220", "attributes": { "weight": 1 } }, { "key": "3988", "source": "1066", "target": "59", "attributes": { "weight": 2 } }, { "key": "33435", "source": "1066", "target": "135", "attributes": { "weight": 1 } }, { "key": "3849", "source": "1067", "target": "487", "attributes": { "weight": 1 } }, { "key": "22862", "source": "1067", "target": "483", "attributes": { "weight": 2 } }, { "key": "7037", "source": "1067", "target": "183", "attributes": { "weight": 1 } }, { "key": "7039", "source": "1067", "target": "476", "attributes": { "weight": 1 } }, { "key": "7038", "source": "1067", "target": "189", "attributes": { "weight": 1 } }, { "key": "7040", "source": "1067", "target": "193", "attributes": { "weight": 1 } }, { "key": "4050", "source": "1067", "target": "432", "attributes": { "weight": 2 } }, { "key": "3850", "source": "1068", "target": "432", "attributes": { "weight": 2 } }, { "key": "3851", "source": "1068", "target": "1081", "attributes": { "weight": 2 } }, { "key": "3852", "source": "1068", "target": "483", "attributes": { "weight": 2 } }, { "key": "3921", "source": "1069", "target": "432", "attributes": { "weight": 2 } }, { "key": "22835", "source": "1069", "target": "1065", "attributes": { "weight": 1 } }, { "key": "16738", "source": "1070", "target": "59", "attributes": { "weight": 1 } }, { "key": "19663", "source": "1070", "target": "2248", "attributes": { "weight": 1 } }, { "key": "16739", "source": "1070", "target": "434", "attributes": { "weight": 1 } }, { "key": "19673", "source": "1070", "target": "2095", "attributes": { "weight": 1 } }, { "key": "23579", "source": "1070", "target": "220", "attributes": { "weight": 1 } }, { "key": "19658", "source": "1070", "target": "438", "attributes": { "weight": 1 } }, { "key": "19662", "source": "1070", "target": "449", "attributes": { "weight": 1 } }, { "key": "23580", "source": "1070", "target": "1094", "attributes": { "weight": 1 } }, { "key": "19676", "source": "1070", "target": "1390", "attributes": { "weight": 1 } }, { "key": "19675", "source": "1070", "target": "235", "attributes": { "weight": 1 } }, { "key": "19666", "source": "1070", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19667", "source": "1070", "target": "465", "attributes": { "weight": 1 } }, { "key": "19665", "source": "1070", "target": "186", "attributes": { "weight": 1 } }, { "key": "19668", "source": "1070", "target": "1247", "attributes": { "weight": 1 } }, { "key": "19670", "source": "1070", "target": "2261", "attributes": { "weight": 1 } }, { "key": "16742", "source": "1070", "target": "70", "attributes": { "weight": 2 } }, { "key": "19657", "source": "1070", "target": "2106", "attributes": { "weight": 1 } }, { "key": "6643", "source": "1070", "target": "495", "attributes": { "weight": 3 } }, { "key": "19669", "source": "1070", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19677", "source": "1070", "target": "2276", "attributes": { "weight": 1 } }, { "key": "33326", "source": "1070", "target": "135", "attributes": { "weight": 1 } }, { "key": "16741", "source": "1070", "target": "457", "attributes": { "weight": 1 } }, { "key": "3935", "source": "1070", "target": "432", "attributes": { "weight": 3 } }, { "key": "19661", "source": "1070", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19678", "source": "1070", "target": "498", "attributes": { "weight": 1 } }, { "key": "15218", "source": "1070", "target": "183", "attributes": { "weight": 1 } }, { "key": "19672", "source": "1070", "target": "1812", "attributes": { "weight": 1 } }, { "key": "19674", "source": "1070", "target": "489", "attributes": { "weight": 1 } }, { "key": "3936", "source": "1070", "target": "487", "attributes": { "weight": 3 } }, { "key": "19655", "source": "1070", "target": "221", "attributes": { "weight": 1 } }, { "key": "19656", "source": "1070", "target": "1522", "attributes": { "weight": 1 } }, { "key": "23330", "source": "1070", "target": "223", "attributes": { "weight": 1 } }, { "key": "19671", "source": "1070", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19660", "source": "1070", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19659", "source": "1070", "target": "51", "attributes": { "weight": 1 } }, { "key": "16740", "source": "1070", "target": "674", "attributes": { "weight": 1 } }, { "key": "19664", "source": "1070", "target": "1832", "attributes": { "weight": 1 } }, { "key": "22837", "source": "1071", "target": "1371", "attributes": { "weight": 1 } }, { "key": "23585", "source": "1071", "target": "220", "attributes": { "weight": 1 } }, { "key": "19910", "source": "1071", "target": "489", "attributes": { "weight": 1 } }, { "key": "3946", "source": "1071", "target": "432", "attributes": { "weight": 2 } }, { "key": "33361", "source": "1071", "target": "135", "attributes": { "weight": 1 } }, { "key": "30505", "source": "1072", "target": "352", "attributes": { "weight": 2 } }, { "key": "21576", "source": "1072", "target": "89", "attributes": { "weight": 1 } }, { "key": "36923", "source": "1072", "target": "1375", "attributes": { "weight": 1 } }, { "key": "27438", "source": "1072", "target": "2683", "attributes": { "weight": 1 } }, { "key": "36924", "source": "1072", "target": "1390", "attributes": { "weight": 1 } }, { "key": "24069", "source": "1072", "target": "130", "attributes": { "weight": 2 } }, { "key": "36921", "source": "1072", "target": "53", "attributes": { "weight": 1 } }, { "key": "36916", "source": "1072", "target": "448", "attributes": { "weight": 1 } }, { "key": "36920", "source": "1072", "target": "1137", "attributes": { "weight": 1 } }, { "key": "36918", "source": "1072", "target": "2251", "attributes": { "weight": 1 } }, { "key": "36917", "source": "1072", "target": "186", "attributes": { "weight": 1 } }, { "key": "36914", "source": "1072", "target": "221", "attributes": { "weight": 1 } }, { "key": "35973", "source": "1072", "target": "440", "attributes": { "weight": 1 } }, { "key": "36922", "source": "1072", "target": "235", "attributes": { "weight": 1 } }, { "key": "34987", "source": "1072", "target": "3", "attributes": { "weight": 1 } }, { "key": "27437", "source": "1072", "target": "2682", "attributes": { "weight": 1 } }, { "key": "36919", "source": "1072", "target": "465", "attributes": { "weight": 1 } }, { "key": "36915", "source": "1072", "target": "224", "attributes": { "weight": 1 } }, { "key": "3967", "source": "1072", "target": "432", "attributes": { "weight": 1 } }, { "key": "35974", "source": "1072", "target": "2258", "attributes": { "weight": 1 } }, { "key": "3968", "source": "1073", "target": "432", "attributes": { "weight": 2 } }, { "key": "3970", "source": "1074", "target": "432", "attributes": { "weight": 2 } }, { "key": "22841", "source": "1074", "target": "1084", "attributes": { "weight": 1 } }, { "key": "3974", "source": "1075", "target": "1083", "attributes": { "weight": 2 } }, { "key": "3973", "source": "1075", "target": "462", "attributes": { "weight": 2 } }, { "key": "3972", "source": "1075", "target": "432", "attributes": { "weight": 2 } }, { "key": "3976", "source": "1076", "target": "432", "attributes": { "weight": 2 } }, { "key": "3978", "source": "1077", "target": "432", "attributes": { "weight": 2 } }, { "key": "3979", "source": "1078", "target": "432", "attributes": { "weight": 2 } }, { "key": "3981", "source": "1079", "target": "432", "attributes": { "weight": 2 } }, { "key": "3982", "source": "1079", "target": "1083", "attributes": { "weight": 2 } }, { "key": "23628", "source": "1080", "target": "1066", "attributes": { "weight": 1 } }, { "key": "22846", "source": "1080", "target": "1094", "attributes": { "weight": 1 } }, { "key": "3987", "source": "1080", "target": "432", "attributes": { "weight": 2 } }, { "key": "3991", "source": "1081", "target": "1068", "attributes": { "weight": 2 } }, { "key": "3992", "source": "1081", "target": "1065", "attributes": { "weight": 2 } }, { "key": "3994", "source": "1082", "target": "483", "attributes": { "weight": 2 } }, { "key": "4003", "source": "1083", "target": "1075", "attributes": { "weight": 2 } }, { "key": "4002", "source": "1083", "target": "432", "attributes": { "weight": 2 } }, { "key": "4004", "source": "1083", "target": "1079", "attributes": { "weight": 2 } }, { "key": "22849", "source": "1084", "target": "1085", "attributes": { "weight": 1 } }, { "key": "22848", "source": "1084", "target": "1074", "attributes": { "weight": 1 } }, { "key": "4005", "source": "1084", "target": "432", "attributes": { "weight": 2 } }, { "key": "22850", "source": "1084", "target": "487", "attributes": { "weight": 1 } }, { "key": "22852", "source": "1085", "target": "1084", "attributes": { "weight": 1 } }, { "key": "23636", "source": "1085", "target": "220", "attributes": { "weight": 1 } }, { "key": "6889", "source": "1085", "target": "183", "attributes": { "weight": 1 } }, { "key": "4010", "source": "1085", "target": "487", "attributes": { "weight": 2 } }, { "key": "22853", "source": "1085", "target": "483", "attributes": { "weight": 1 } }, { "key": "4009", "source": "1085", "target": "432", "attributes": { "weight": 2 } }, { "key": "6890", "source": "1085", "target": "189", "attributes": { "weight": 1 } }, { "key": "22851", "source": "1085", "target": "1064", "attributes": { "weight": 1 } }, { "key": "4011", "source": "1086", "target": "432", "attributes": { "weight": 2 } }, { "key": "10513", "source": "1087", "target": "225", "attributes": { "weight": 1 } }, { "key": "20555", "source": "1087", "target": "194", "attributes": { "weight": 1 } }, { "key": "8911", "source": "1087", "target": "595", "attributes": { "weight": 1 } }, { "key": "20535", "source": "1087", "target": "2248", "attributes": { "weight": 1 } }, { "key": "9305", "source": "1087", "target": "1571", "attributes": { "weight": 2 } }, { "key": "20539", "source": "1087", "target": "459", "attributes": { "weight": 1 } }, { "key": "8898", "source": "1087", "target": "50", "attributes": { "weight": 2 } }, { "key": "8913", "source": "1087", "target": "493", "attributes": { "weight": 2 } }, { "key": "20544", "source": "1087", "target": "1744", "attributes": { "weight": 1 } }, { "key": "8899", "source": "1087", "target": "442", "attributes": { "weight": 8 } }, { "key": "27463", "source": "1087", "target": "1567", "attributes": { "weight": 1 } }, { "key": "4176", "source": "1087", "target": "233", "attributes": { "weight": 1 } }, { "key": "8894", "source": "1087", "target": "220", "attributes": { "weight": 2 } }, { "key": "9307", "source": "1087", "target": "1574", "attributes": { "weight": 1 } }, { "key": "29441", "source": "1087", "target": "232", "attributes": { "weight": 1 } }, { "key": "32172", "source": "1087", "target": "52", "attributes": { "weight": 1 } }, { "key": "20533", "source": "1087", "target": "445", "attributes": { "weight": 1 } }, { "key": "8909", "source": "1087", "target": "482", "attributes": { "weight": 3 } }, { "key": "9306", "source": "1087", "target": "1573", "attributes": { "weight": 2 } }, { "key": "9312", "source": "1087", "target": "1597", "attributes": { "weight": 2 } }, { "key": "17950", "source": "1087", "target": "454", "attributes": { "weight": 2 } }, { "key": "20542", "source": "1087", "target": "1367", "attributes": { "weight": 2 } }, { "key": "8912", "source": "1087", "target": "340", "attributes": { "weight": 2 } }, { "key": "24164", "source": "1087", "target": "130", "attributes": { "weight": 2 } }, { "key": "20545", "source": "1087", "target": "1708", "attributes": { "weight": 1 } }, { "key": "20538", "source": "1087", "target": "1998", "attributes": { "weight": 1 } }, { "key": "20543", "source": "1087", "target": "230", "attributes": { "weight": 1 } }, { "key": "32174", "source": "1087", "target": "1128", "attributes": { "weight": 1 } }, { "key": "20553", "source": "1087", "target": "1375", "attributes": { "weight": 1 } }, { "key": "8896", "source": "1087", "target": "436", "attributes": { "weight": 3 } }, { "key": "26631", "source": "1087", "target": "189", "attributes": { "weight": 1 } }, { "key": "31132", "source": "1087", "target": "1562", "attributes": { "weight": 1 } }, { "key": "20552", "source": "1087", "target": "2273", "attributes": { "weight": 1 } }, { "key": "20537", "source": "1087", "target": "227", "attributes": { "weight": 1 } }, { "key": "20554", "source": "1087", "target": "2276", "attributes": { "weight": 1 } }, { "key": "8901", "source": "1087", "target": "452", "attributes": { "weight": 2 } }, { "key": "4012", "source": "1087", "target": "432", "attributes": { "weight": 3 } }, { "key": "8893", "source": "1087", "target": "430", "attributes": { "weight": 3 } }, { "key": "8897", "source": "1087", "target": "1110", "attributes": { "weight": 1 } }, { "key": "20534", "source": "1087", "target": "450", "attributes": { "weight": 1 } }, { "key": "9309", "source": "1087", "target": "1579", "attributes": { "weight": 2 } }, { "key": "20551", "source": "1087", "target": "234", "attributes": { "weight": 1 } }, { "key": "12404", "source": "1087", "target": "1355", "attributes": { "weight": 2 } }, { "key": "20540", "source": "1087", "target": "470", "attributes": { "weight": 2 } }, { "key": "31131", "source": "1087", "target": "1530", "attributes": { "weight": 1 } }, { "key": "31425", "source": "1087", "target": "223", "attributes": { "weight": 1 } }, { "key": "20549", "source": "1087", "target": "489", "attributes": { "weight": 1 } }, { "key": "8905", "source": "1087", "target": "473", "attributes": { "weight": 4 } }, { "key": "33060", "source": "1087", "target": "1845", "attributes": { "weight": 1 } }, { "key": "32976", "source": "1087", "target": "154", "attributes": { "weight": 1 } }, { "key": "8914", "source": "1087", "target": "193", "attributes": { "weight": 1 } }, { "key": "20532", "source": "1087", "target": "2245", "attributes": { "weight": 1 } }, { "key": "8895", "source": "1087", "target": "1109", "attributes": { "weight": 2 } }, { "key": "20541", "source": "1087", "target": "471", "attributes": { "weight": 2 } }, { "key": "4175", "source": "1087", "target": "1131", "attributes": { "weight": 1 } }, { "key": "33568", "source": "1087", "target": "135", "attributes": { "weight": 1 } }, { "key": "4013", "source": "1087", "target": "458", "attributes": { "weight": 1 } }, { "key": "8908", "source": "1087", "target": "479", "attributes": { "weight": 1 } }, { "key": "4174", "source": "1087", "target": "228", "attributes": { "weight": 1 } }, { "key": "20528", "source": "1087", "target": "429", "attributes": { "weight": 1 } }, { "key": "20546", "source": "1087", "target": "231", "attributes": { "weight": 3 } }, { "key": "20550", "source": "1087", "target": "1374", "attributes": { "weight": 1 } }, { "key": "31542", "source": "1087", "target": "3056", "attributes": { "weight": 1 } }, { "key": "20547", "source": "1087", "target": "477", "attributes": { "weight": 1 } }, { "key": "8904", "source": "1087", "target": "1121", "attributes": { "weight": 2 } }, { "key": "9310", "source": "1087", "target": "1592", "attributes": { "weight": 2 } }, { "key": "8903", "source": "1087", "target": "791", "attributes": { "weight": 2 } }, { "key": "20527", "source": "1087", "target": "1703", "attributes": { "weight": 1 } }, { "key": "9308", "source": "1087", "target": "1578", "attributes": { "weight": 1 } }, { "key": "5701", "source": "1087", "target": "468", "attributes": { "weight": 2 } }, { "key": "9311", "source": "1087", "target": "1593", "attributes": { "weight": 2 } }, { "key": "20529", "source": "1087", "target": "441", "attributes": { "weight": 1 } }, { "key": "20536", "source": "1087", "target": "1705", "attributes": { "weight": 1 } }, { "key": "17268", "source": "1087", "target": "449", "attributes": { "weight": 1 } }, { "key": "8902", "source": "1087", "target": "1117", "attributes": { "weight": 3 } }, { "key": "20548", "source": "1087", "target": "1560", "attributes": { "weight": 1 } }, { "key": "8915", "source": "1087", "target": "494", "attributes": { "weight": 2 } }, { "key": "20530", "source": "1087", "target": "1070", "attributes": { "weight": 1 } }, { "key": "20531", "source": "1087", "target": "2244", "attributes": { "weight": 1 } }, { "key": "8906", "source": "1087", "target": "1088", "attributes": { "weight": 2 } }, { "key": "32171", "source": "1087", "target": "1115", "attributes": { "weight": 1 } }, { "key": "8892", "source": "1087", "target": "1107", "attributes": { "weight": 3 } }, { "key": "8900", "source": "1087", "target": "444", "attributes": { "weight": 3 } }, { "key": "8907", "source": "1087", "target": "1125", "attributes": { "weight": 2 } }, { "key": "8910", "source": "1087", "target": "1130", "attributes": { "weight": 1 } }, { "key": "8964", "source": "1088", "target": "1107", "attributes": { "weight": 3 } }, { "key": "8966", "source": "1088", "target": "436", "attributes": { "weight": 3 } }, { "key": "33617", "source": "1088", "target": "425", "attributes": { "weight": 1 } }, { "key": "8972", "source": "1088", "target": "1125", "attributes": { "weight": 1 } }, { "key": "35315", "source": "1088", "target": "1116", "attributes": { "weight": 1 } }, { "key": "12410", "source": "1088", "target": "493", "attributes": { "weight": 2 } }, { "key": "32802", "source": "1088", "target": "193", "attributes": { "weight": 1 } }, { "key": "32800", "source": "1088", "target": "1367", "attributes": { "weight": 1 } }, { "key": "32799", "source": "1088", "target": "1845", "attributes": { "weight": 1 } }, { "key": "4189", "source": "1088", "target": "444", "attributes": { "weight": 2 } }, { "key": "4195", "source": "1088", "target": "473", "attributes": { "weight": 3 } }, { "key": "35320", "source": "1088", "target": "1126", "attributes": { "weight": 1 } }, { "key": "35321", "source": "1088", "target": "231", "attributes": { "weight": 1 } }, { "key": "32798", "source": "1088", "target": "470", "attributes": { "weight": 1 } }, { "key": "4187", "source": "1088", "target": "50", "attributes": { "weight": 2 } }, { "key": "4019", "source": "1088", "target": "432", "attributes": { "weight": 2 } }, { "key": "8971", "source": "1088", "target": "474", "attributes": { "weight": 2 } }, { "key": "24177", "source": "1088", "target": "1374", "attributes": { "weight": 3 } }, { "key": "4192", "source": "1088", "target": "1121", "attributes": { "weight": 1 } }, { "key": "32797", "source": "1088", "target": "458", "attributes": { "weight": 1 } }, { "key": "4188", "source": "1088", "target": "223", "attributes": { "weight": 2 } }, { "key": "33619", "source": "1088", "target": "135", "attributes": { "weight": 1 } }, { "key": "24175", "source": "1088", "target": "452", "attributes": { "weight": 4 } }, { "key": "24174", "source": "1088", "target": "130", "attributes": { "weight": 2 } }, { "key": "8970", "source": "1088", "target": "1087", "attributes": { "weight": 2 } }, { "key": "35325", "source": "1088", "target": "1375", "attributes": { "weight": 1 } }, { "key": "35324", "source": "1088", "target": "56", "attributes": { "weight": 1 } }, { "key": "37071", "source": "1088", "target": "857", "attributes": { "weight": 1 } }, { "key": "32801", "source": "1088", "target": "1744", "attributes": { "weight": 1 } }, { "key": "4194", "source": "1088", "target": "229", "attributes": { "weight": 2 } }, { "key": "24176", "source": "1088", "target": "471", "attributes": { "weight": 1 } }, { "key": "4190", "source": "1088", "target": "183", "attributes": { "weight": 2 } }, { "key": "35317", "source": "1088", "target": "189", "attributes": { "weight": 1 } }, { "key": "35323", "source": "1088", "target": "479", "attributes": { "weight": 1 } }, { "key": "35316", "source": "1088", "target": "1358", "attributes": { "weight": 1 } }, { "key": "10527", "source": "1088", "target": "482", "attributes": { "weight": 2 } }, { "key": "20620", "source": "1088", "target": "449", "attributes": { "weight": 1 } }, { "key": "8965", "source": "1088", "target": "220", "attributes": { "weight": 2 } }, { "key": "4193", "source": "1088", "target": "228", "attributes": { "weight": 3 } }, { "key": "4196", "source": "1088", "target": "1131", "attributes": { "weight": 2 } }, { "key": "8973", "source": "1088", "target": "1564", "attributes": { "weight": 2 } }, { "key": "8968", "source": "1088", "target": "1363", "attributes": { "weight": 2 } }, { "key": "35318", "source": "1088", "target": "190", "attributes": { "weight": 1 } }, { "key": "12409", "source": "1088", "target": "1355", "attributes": { "weight": 3 } }, { "key": "4197", "source": "1088", "target": "233", "attributes": { "weight": 2 } }, { "key": "8967", "source": "1088", "target": "442", "attributes": { "weight": 3 } }, { "key": "10526", "source": "1088", "target": "225", "attributes": { "weight": 1 } }, { "key": "35319", "source": "1088", "target": "191", "attributes": { "weight": 1 } }, { "key": "33618", "source": "1088", "target": "52", "attributes": { "weight": 1 } }, { "key": "32803", "source": "1088", "target": "494", "attributes": { "weight": 2 } }, { "key": "20621", "source": "1088", "target": "227", "attributes": { "weight": 1 } }, { "key": "8969", "source": "1088", "target": "472", "attributes": { "weight": 2 } }, { "key": "24173", "source": "1088", "target": "429", "attributes": { "weight": 2 } }, { "key": "35322", "source": "1088", "target": "477", "attributes": { "weight": 1 } }, { "key": "4191", "source": "1088", "target": "1117", "attributes": { "weight": 2 } }, { "key": "4023", "source": "1089", "target": "432", "attributes": { "weight": 2 } }, { "key": "6049", "source": "1090", "target": "1305", "attributes": { "weight": 3 } }, { "key": "6020", "source": "1090", "target": "338", "attributes": { "weight": 3 } }, { "key": "6052", "source": "1090", "target": "1309", "attributes": { "weight": 2 } }, { "key": "6047", "source": "1090", "target": "1301", "attributes": { "weight": 2 } }, { "key": "6060", "source": "1090", "target": "254", "attributes": { "weight": 2 } }, { "key": "6006", "source": "1090", "target": "1214", "attributes": { "weight": 2 } }, { "key": "16185", "source": "1090", "target": "370", "attributes": { "weight": 1 } }, { "key": "6014", "source": "1090", "target": "1236", "attributes": { "weight": 2 } }, { "key": "6008", "source": "1090", "target": "917", "attributes": { "weight": 2 } }, { "key": "6035", "source": "1090", "target": "189", "attributes": { "weight": 2 } }, { "key": "5966", "source": "1090", "target": "1150", "attributes": { "weight": 2 } }, { "key": "6059", "source": "1090", "target": "1321", "attributes": { "weight": 2 } }, { "key": "5989", "source": "1090", "target": "779", "attributes": { "weight": 2 } }, { "key": "6061", "source": "1090", "target": "1322", "attributes": { "weight": 3 } }, { "key": "6045", "source": "1090", "target": "990", "attributes": { "weight": 2 } }, { "key": "6070", "source": "1090", "target": "340", "attributes": { "weight": 2 } }, { "key": "6026", "source": "1090", "target": "1262", "attributes": { "weight": 2 } }, { "key": "5986", "source": "1090", "target": "1179", "attributes": { "weight": 2 } }, { "key": "6062", "source": "1090", "target": "1323", "attributes": { "weight": 4 } }, { "key": "34642", "source": "1090", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6022", "source": "1090", "target": "468", "attributes": { "weight": 5 } }, { "key": "5974", "source": "1090", "target": "1159", "attributes": { "weight": 2 } }, { "key": "5996", "source": "1090", "target": "368", "attributes": { "weight": 3 } }, { "key": "6055", "source": "1090", "target": "405", "attributes": { "weight": 2 } }, { "key": "6072", "source": "1090", "target": "930", "attributes": { "weight": 2 } }, { "key": "6001", "source": "1090", "target": "1202", "attributes": { "weight": 2 } }, { "key": "6000", "source": "1090", "target": "1200", "attributes": { "weight": 2 } }, { "key": "6038", "source": "1090", "target": "123", "attributes": { "weight": 3 } }, { "key": "6078", "source": "1090", "target": "1063", "attributes": { "weight": 4 } }, { "key": "6079", "source": "1090", "target": "57", "attributes": { "weight": 2 } }, { "key": "5978", "source": "1090", "target": "938", "attributes": { "weight": 3 } }, { "key": "5994", "source": "1090", "target": "1196", "attributes": { "weight": 2 } }, { "key": "6015", "source": "1090", "target": "1237", "attributes": { "weight": 2 } }, { "key": "18898", "source": "1090", "target": "1552", "attributes": { "weight": 2 } }, { "key": "5968", "source": "1090", "target": "236", "attributes": { "weight": 2 } }, { "key": "6028", "source": "1090", "target": "208", "attributes": { "weight": 4 } }, { "key": "6040", "source": "1090", "target": "212", "attributes": { "weight": 2 } }, { "key": "6033", "source": "1090", "target": "925", "attributes": { "weight": 3 } }, { "key": "6064", "source": "1090", "target": "1329", "attributes": { "weight": 3 } }, { "key": "6063", "source": "1090", "target": "961", "attributes": { "weight": 2 } }, { "key": "5992", "source": "1090", "target": "912", "attributes": { "weight": 3 } }, { "key": "6046", "source": "1090", "target": "372", "attributes": { "weight": 3 } }, { "key": "5999", "source": "1090", "target": "449", "attributes": { "weight": 2 } }, { "key": "6071", "source": "1090", "target": "218", "attributes": { "weight": 3 } }, { "key": "6011", "source": "1090", "target": "1231", "attributes": { "weight": 2 } }, { "key": "5997", "source": "1090", "target": "1046", "attributes": { "weight": 2 } }, { "key": "5977", "source": "1090", "target": "1165", "attributes": { "weight": 3 } }, { "key": "5964", "source": "1090", "target": "933", "attributes": { "weight": 2 } }, { "key": "5967", "source": "1090", "target": "195", "attributes": { "weight": 9 } }, { "key": "5995", "source": "1090", "target": "1197", "attributes": { "weight": 5 } }, { "key": "6057", "source": "1090", "target": "1319", "attributes": { "weight": 2 } }, { "key": "6017", "source": "1090", "target": "1239", "attributes": { "weight": 2 } }, { "key": "5985", "source": "1090", "target": "442", "attributes": { "weight": 4 } }, { "key": "4024", "source": "1090", "target": "432", "attributes": { "weight": 3 } }, { "key": "6009", "source": "1090", "target": "918", "attributes": { "weight": 2 } }, { "key": "6024", "source": "1090", "target": "471", "attributes": { "weight": 2 } }, { "key": "5972", "source": "1090", "target": "1155", "attributes": { "weight": 2 } }, { "key": "5979", "source": "1090", "target": "223", "attributes": { "weight": 2 } }, { "key": "6051", "source": "1090", "target": "927", "attributes": { "weight": 2 } }, { "key": "6068", "source": "1090", "target": "257", "attributes": { "weight": 2 } }, { "key": "6012", "source": "1090", "target": "1233", "attributes": { "weight": 3 } }, { "key": "6010", "source": "1090", "target": "945", "attributes": { "weight": 2 } }, { "key": "5988", "source": "1090", "target": "1182", "attributes": { "weight": 2 } }, { "key": "6069", "source": "1090", "target": "928", "attributes": { "weight": 2 } }, { "key": "6005", "source": "1090", "target": "454", "attributes": { "weight": 3 } }, { "key": "6056", "source": "1090", "target": "1316", "attributes": { "weight": 2 } }, { "key": "6054", "source": "1090", "target": "1315", "attributes": { "weight": 2 } }, { "key": "5991", "source": "1090", "target": "387", "attributes": { "weight": 3 } }, { "key": "6002", "source": "1090", "target": "1047", "attributes": { "weight": 2 } }, { "key": "6034", "source": "1090", "target": "926", "attributes": { "weight": 2 } }, { "key": "6066", "source": "1090", "target": "963", "attributes": { "weight": 2 } }, { "key": "6053", "source": "1090", "target": "215", "attributes": { "weight": 3 } }, { "key": "6021", "source": "1090", "target": "921", "attributes": { "weight": 2 } }, { "key": "5982", "source": "1090", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18897", "source": "1090", "target": "1234", "attributes": { "weight": 1 } }, { "key": "6019", "source": "1090", "target": "337", "attributes": { "weight": 4 } }, { "key": "6048", "source": "1090", "target": "1792", "attributes": { "weight": 2 } }, { "key": "6004", "source": "1090", "target": "199", "attributes": { "weight": 4 } }, { "key": "6074", "source": "1090", "target": "1350", "attributes": { "weight": 2 } }, { "key": "6075", "source": "1090", "target": "375", "attributes": { "weight": 2 } }, { "key": "6036", "source": "1090", "target": "1279", "attributes": { "weight": 3 } }, { "key": "6016", "source": "1090", "target": "1238", "attributes": { "weight": 2 } }, { "key": "6037", "source": "1090", "target": "1281", "attributes": { "weight": 2 } }, { "key": "5980", "source": "1090", "target": "1171", "attributes": { "weight": 2 } }, { "key": "6032", "source": "1090", "target": "1269", "attributes": { "weight": 2 } }, { "key": "5976", "source": "1090", "target": "1162", "attributes": { "weight": 2 } }, { "key": "6042", "source": "1090", "target": "1293", "attributes": { "weight": 2 } }, { "key": "6025", "source": "1090", "target": "472", "attributes": { "weight": 2 } }, { "key": "6050", "source": "1090", "target": "1307", "attributes": { "weight": 2 } }, { "key": "6065", "source": "1090", "target": "124", "attributes": { "weight": 3 } }, { "key": "6018", "source": "1090", "target": "205", "attributes": { "weight": 2 } }, { "key": "6067", "source": "1090", "target": "1338", "attributes": { "weight": 2 } }, { "key": "5973", "source": "1090", "target": "1156", "attributes": { "weight": 2 } }, { "key": "6013", "source": "1090", "target": "1235", "attributes": { "weight": 2 } }, { "key": "5998", "source": "1090", "target": "913", "attributes": { "weight": 3 } }, { "key": "6029", "source": "1090", "target": "923", "attributes": { "weight": 2 } }, { "key": "6039", "source": "1090", "target": "1289", "attributes": { "weight": 2 } }, { "key": "6043", "source": "1090", "target": "1294", "attributes": { "weight": 4 } }, { "key": "6030", "source": "1090", "target": "1268", "attributes": { "weight": 2 } }, { "key": "5983", "source": "1090", "target": "1175", "attributes": { "weight": 2 } }, { "key": "5965", "source": "1090", "target": "220", "attributes": { "weight": 2 } }, { "key": "5975", "source": "1090", "target": "1160", "attributes": { "weight": 2 } }, { "key": "5963", "source": "1090", "target": "1138", "attributes": { "weight": 2 } }, { "key": "5993", "source": "1090", "target": "1194", "attributes": { "weight": 2 } }, { "key": "6023", "source": "1090", "target": "470", "attributes": { "weight": 3 } }, { "key": "6077", "source": "1090", "target": "154", "attributes": { "weight": 2 } }, { "key": "6073", "source": "1090", "target": "494", "attributes": { "weight": 2 } }, { "key": "6007", "source": "1090", "target": "1219", "attributes": { "weight": 2 } }, { "key": "6058", "source": "1090", "target": "1320", "attributes": { "weight": 2 } }, { "key": "6041", "source": "1090", "target": "1291", "attributes": { "weight": 2 } }, { "key": "6076", "source": "1090", "target": "149", "attributes": { "weight": 2 } }, { "key": "6044", "source": "1090", "target": "1296", "attributes": { "weight": 2 } }, { "key": "5984", "source": "1090", "target": "1176", "attributes": { "weight": 2 } }, { "key": "6027", "source": "1090", "target": "1263", "attributes": { "weight": 2 } }, { "key": "5969", "source": "1090", "target": "1152", "attributes": { "weight": 2 } }, { "key": "6031", "source": "1090", "target": "371", "attributes": { "weight": 2 } }, { "key": "5971", "source": "1090", "target": "130", "attributes": { "weight": 2 } }, { "key": "6003", "source": "1090", "target": "452", "attributes": { "weight": 2 } }, { "key": "5970", "source": "1090", "target": "1154", "attributes": { "weight": 2 } }, { "key": "5990", "source": "1090", "target": "1184", "attributes": { "weight": 2 } }, { "key": "5981", "source": "1090", "target": "1172", "attributes": { "weight": 2 } }, { "key": "5987", "source": "1090", "target": "1180", "attributes": { "weight": 2 } }, { "key": "4049", "source": "1091", "target": "432", "attributes": { "weight": 2 } }, { "key": "22861", "source": "1091", "target": "487", "attributes": { "weight": 1 } }, { "key": "33666", "source": "1092", "target": "672", "attributes": { "weight": 1 } }, { "key": "18338", "source": "1092", "target": "479", "attributes": { "weight": 2 } }, { "key": "18343", "source": "1092", "target": "497", "attributes": { "weight": 2 } }, { "key": "11274", "source": "1092", "target": "452", "attributes": { "weight": 3 } }, { "key": "36109", "source": "1092", "target": "221", "attributes": { "weight": 1 } }, { "key": "32601", "source": "1092", "target": "791", "attributes": { "weight": 1 } }, { "key": "18332", "source": "1092", "target": "2086", "attributes": { "weight": 1 } }, { "key": "25390", "source": "1092", "target": "433", "attributes": { "weight": 1 } }, { "key": "18340", "source": "1092", "target": "340", "attributes": { "weight": 2 } }, { "key": "33665", "source": "1092", "target": "489", "attributes": { "weight": 1 } }, { "key": "18344", "source": "1092", "target": "57", "attributes": { "weight": 1 } }, { "key": "36118", "source": "1092", "target": "1375", "attributes": { "weight": 1 } }, { "key": "18333", "source": "1092", "target": "223", "attributes": { "weight": 1 } }, { "key": "14307", "source": "1092", "target": "53", "attributes": { "weight": 3 } }, { "key": "18331", "source": "1092", "target": "130", "attributes": { "weight": 2 } }, { "key": "7041", "source": "1092", "target": "193", "attributes": { "weight": 3 } }, { "key": "11275", "source": "1092", "target": "473", "attributes": { "weight": 2 } }, { "key": "18335", "source": "1092", "target": "1026", "attributes": { "weight": 3 } }, { "key": "33664", "source": "1092", "target": "472", "attributes": { "weight": 1 } }, { "key": "36117", "source": "1092", "target": "2258", "attributes": { "weight": 1 } }, { "key": "18334", "source": "1092", "target": "471", "attributes": { "weight": 3 } }, { "key": "33663", "source": "1092", "target": "135", "attributes": { "weight": 1 } }, { "key": "4051", "source": "1092", "target": "432", "attributes": { "weight": 4 } }, { "key": "9079", "source": "1092", "target": "442", "attributes": { "weight": 2 } }, { "key": "18330", "source": "1092", "target": "220", "attributes": { "weight": 1 } }, { "key": "6400", "source": "1092", "target": "468", "attributes": { "weight": 3 } }, { "key": "26751", "source": "1092", "target": "189", "attributes": { "weight": 1 } }, { "key": "36112", "source": "1092", "target": "2245", "attributes": { "weight": 1 } }, { "key": "36115", "source": "1092", "target": "2248", "attributes": { "weight": 1 } }, { "key": "18341", "source": "1092", "target": "2208", "attributes": { "weight": 1 } }, { "key": "18336", "source": "1092", "target": "1812", "attributes": { "weight": 1 } }, { "key": "36110", "source": "1092", "target": "222", "attributes": { "weight": 1 } }, { "key": "18337", "source": "1092", "target": "231", "attributes": { "weight": 1 } }, { "key": "36111", "source": "1092", "target": "1023", "attributes": { "weight": 1 } }, { "key": "36116", "source": "1092", "target": "2253", "attributes": { "weight": 1 } }, { "key": "18339", "source": "1092", "target": "595", "attributes": { "weight": 2 } }, { "key": "36114", "source": "1092", "target": "89", "attributes": { "weight": 1 } }, { "key": "18342", "source": "1092", "target": "495", "attributes": { "weight": 2 } }, { "key": "36113", "source": "1092", "target": "448", "attributes": { "weight": 1 } }, { "key": "18329", "source": "1092", "target": "429", "attributes": { "weight": 1 } }, { "key": "17975", "source": "1092", "target": "454", "attributes": { "weight": 3 } }, { "key": "11294", "source": "1093", "target": "492", "attributes": { "weight": 1 } }, { "key": "12800", "source": "1093", "target": "221", "attributes": { "weight": 1 } }, { "key": "12043", "source": "1093", "target": "135", "attributes": { "weight": 1 } }, { "key": "9998", "source": "1093", "target": "473", "attributes": { "weight": 5 } }, { "key": "29057", "source": "1093", "target": "495", "attributes": { "weight": 1 } }, { "key": "4053", "source": "1093", "target": "432", "attributes": { "weight": 2 } }, { "key": "32610", "source": "1093", "target": "791", "attributes": { "weight": 1 } }, { "key": "11293", "source": "1093", "target": "452", "attributes": { "weight": 2 } }, { "key": "11292", "source": "1093", "target": "439", "attributes": { "weight": 1 } }, { "key": "29520", "source": "1093", "target": "232", "attributes": { "weight": 1 } }, { "key": "10001", "source": "1093", "target": "496", "attributes": { "weight": 5 } }, { "key": "9997", "source": "1093", "target": "1536", "attributes": { "weight": 2 } }, { "key": "10000", "source": "1093", "target": "494", "attributes": { "weight": 3 } }, { "key": "9996", "source": "1093", "target": "222", "attributes": { "weight": 4 } }, { "key": "26763", "source": "1093", "target": "189", "attributes": { "weight": 1 } }, { "key": "9999", "source": "1093", "target": "480", "attributes": { "weight": 3 } }, { "key": "25118", "source": "1093", "target": "1547", "attributes": { "weight": 1 } }, { "key": "25117", "source": "1093", "target": "454", "attributes": { "weight": 1 } }, { "key": "32858", "source": "1094", "target": "135", "attributes": { "weight": 2 } }, { "key": "7200", "source": "1094", "target": "495", "attributes": { "weight": 2 } }, { "key": "23376", "source": "1094", "target": "223", "attributes": { "weight": 1 } }, { "key": "4061", "source": "1094", "target": "432", "attributes": { "weight": 2 } }, { "key": "27188", "source": "1094", "target": "1247", "attributes": { "weight": 1 } }, { "key": "22863", "source": "1094", "target": "1071", "attributes": { "weight": 1 } }, { "key": "21426", "source": "1094", "target": "2245", "attributes": { "weight": 1 } }, { "key": "15409", "source": "1094", "target": "472", "attributes": { "weight": 2 } }, { "key": "23708", "source": "1094", "target": "220", "attributes": { "weight": 1 } }, { "key": "22864", "source": "1094", "target": "1080", "attributes": { "weight": 1 } }, { "key": "7199", "source": "1094", "target": "189", "attributes": { "weight": 1 } }, { "key": "7198", "source": "1094", "target": "183", "attributes": { "weight": 1 } }, { "key": "4062", "source": "1095", "target": "1103", "attributes": { "weight": 2 } }, { "key": "4063", "source": "1095", "target": "1105", "attributes": { "weight": 2 } }, { "key": "28898", "source": "1096", "target": "1097", "attributes": { "weight": 1 } }, { "key": "28902", "source": "1096", "target": "1349", "attributes": { "weight": 2 } }, { "key": "4064", "source": "1096", "target": "1104", "attributes": { "weight": 1 } }, { "key": "28899", "source": "1096", "target": "1099", "attributes": { "weight": 2 } }, { "key": "28901", "source": "1096", "target": "1105", "attributes": { "weight": 1 } }, { "key": "28900", "source": "1096", "target": "2826", "attributes": { "weight": 1 } }, { "key": "28903", "source": "1097", "target": "1096", "attributes": { "weight": 1 } }, { "key": "4065", "source": "1097", "target": "1104", "attributes": { "weight": 1 } }, { "key": "4066", "source": "1098", "target": "1104", "attributes": { "weight": 1 } }, { "key": "5490", "source": "1099", "target": "1349", "attributes": { "weight": 5 } }, { "key": "28906", "source": "1099", "target": "1097", "attributes": { "weight": 1 } }, { "key": "37418", "source": "1099", "target": "1149", "attributes": { "weight": 1 } }, { "key": "4068", "source": "1099", "target": "1103", "attributes": { "weight": 1 } }, { "key": "4067", "source": "1099", "target": "1101", "attributes": { "weight": 2 } }, { "key": "28905", "source": "1099", "target": "1096", "attributes": { "weight": 2 } }, { "key": "4069", "source": "1099", "target": "1104", "attributes": { "weight": 1 } }, { "key": "37420", "source": "1099", "target": "3377", "attributes": { "weight": 1 } }, { "key": "37419", "source": "1099", "target": "27", "attributes": { "weight": 1 } }, { "key": "10709", "source": "1099", "target": "43", "attributes": { "weight": 1 } }, { "key": "9806", "source": "1099", "target": "30", "attributes": { "weight": 3 } }, { "key": "28908", "source": "1099", "target": "1105", "attributes": { "weight": 2 } }, { "key": "23157", "source": "1099", "target": "2424", "attributes": { "weight": 1 } }, { "key": "26237", "source": "1099", "target": "600", "attributes": { "weight": 1 } }, { "key": "37421", "source": "1099", "target": "3378", "attributes": { "weight": 1 } }, { "key": "28907", "source": "1099", "target": "2826", "attributes": { "weight": 2 } }, { "key": "4070", "source": "1100", "target": "1096", "attributes": { "weight": 2 } }, { "key": "4071", "source": "1100", "target": "1103", "attributes": { "weight": 2 } }, { "key": "4072", "source": "1101", "target": "1099", "attributes": { "weight": 2 } }, { "key": "4073", "source": "1102", "target": "1104", "attributes": { "weight": 1 } }, { "key": "4077", "source": "1103", "target": "1104", "attributes": { "weight": 2 } }, { "key": "4075", "source": "1103", "target": "1099", "attributes": { "weight": 1 } }, { "key": "4076", "source": "1103", "target": "1100", "attributes": { "weight": 2 } }, { "key": "4074", "source": "1103", "target": "1095", "attributes": { "weight": 2 } }, { "key": "4078", "source": "1104", "target": "1096", "attributes": { "weight": 1 } }, { "key": "4083", "source": "1104", "target": "1103", "attributes": { "weight": 2 } }, { "key": "4079", "source": "1104", "target": "1097", "attributes": { "weight": 1 } }, { "key": "4081", "source": "1104", "target": "1099", "attributes": { "weight": 1 } }, { "key": "4080", "source": "1104", "target": "1098", "attributes": { "weight": 1 } }, { "key": "37425", "source": "1104", "target": "3377", "attributes": { "weight": 1 } }, { "key": "4082", "source": "1104", "target": "1102", "attributes": { "weight": 1 } }, { "key": "28913", "source": "1105", "target": "1096", "attributes": { "weight": 1 } }, { "key": "28914", "source": "1105", "target": "1099", "attributes": { "weight": 2 } }, { "key": "28915", "source": "1105", "target": "1349", "attributes": { "weight": 2 } }, { "key": "4084", "source": "1105", "target": "1095", "attributes": { "weight": 2 } }, { "key": "37426", "source": "1105", "target": "2826", "attributes": { "weight": 1 } }, { "key": "4085", "source": "1106", "target": "1114", "attributes": { "weight": 1 } }, { "key": "4086", "source": "1106", "target": "1125", "attributes": { "weight": 1 } }, { "key": "8260", "source": "1107", "target": "228", "attributes": { "weight": 4 } }, { "key": "13836", "source": "1107", "target": "1936", "attributes": { "weight": 1 } }, { "key": "35271", "source": "1107", "target": "50", "attributes": { "weight": 1 } }, { "key": "8265", "source": "1107", "target": "233", "attributes": { "weight": 3 } }, { "key": "8264", "source": "1107", "target": "1125", "attributes": { "weight": 2 } }, { "key": "16612", "source": "1107", "target": "70", "attributes": { "weight": 1 } }, { "key": "4089", "source": "1107", "target": "1127", "attributes": { "weight": 1 } }, { "key": "23302", "source": "1107", "target": "1121", "attributes": { "weight": 2 } }, { "key": "8261", "source": "1107", "target": "1087", "attributes": { "weight": 3 } }, { "key": "8263", "source": "1107", "target": "1088", "attributes": { "weight": 3 } }, { "key": "8259", "source": "1107", "target": "1545", "attributes": { "weight": 2 } }, { "key": "35270", "source": "1107", "target": "1109", "attributes": { "weight": 1 } }, { "key": "26289", "source": "1107", "target": "1258", "attributes": { "weight": 1 } }, { "key": "33174", "source": "1107", "target": "52", "attributes": { "weight": 1 } }, { "key": "16611", "source": "1107", "target": "59", "attributes": { "weight": 1 } }, { "key": "8262", "source": "1107", "target": "474", "attributes": { "weight": 3 } }, { "key": "33172", "source": "1107", "target": "425", "attributes": { "weight": 1 } }, { "key": "4087", "source": "1107", "target": "1111", "attributes": { "weight": 1 } }, { "key": "23511", "source": "1107", "target": "191", "attributes": { "weight": 1 } }, { "key": "33175", "source": "1107", "target": "135", "attributes": { "weight": 1 } }, { "key": "33173", "source": "1107", "target": "442", "attributes": { "weight": 1 } }, { "key": "35273", "source": "1107", "target": "229", "attributes": { "weight": 1 } }, { "key": "35272", "source": "1107", "target": "1113", "attributes": { "weight": 1 } }, { "key": "4088", "source": "1107", "target": "1114", "attributes": { "weight": 1 } }, { "key": "35274", "source": "1107", "target": "1131", "attributes": { "weight": 1 } }, { "key": "4092", "source": "1108", "target": "1125", "attributes": { "weight": 1 } }, { "key": "13839", "source": "1109", "target": "50", "attributes": { "weight": 1 } }, { "key": "8439", "source": "1109", "target": "1087", "attributes": { "weight": 2 } }, { "key": "35276", "source": "1109", "target": "1107", "attributes": { "weight": 1 } }, { "key": "8438", "source": "1109", "target": "1363", "attributes": { "weight": 2 } }, { "key": "4094", "source": "1109", "target": "474", "attributes": { "weight": 1 } }, { "key": "8437", "source": "1109", "target": "442", "attributes": { "weight": 2 } }, { "key": "8440", "source": "1109", "target": "1125", "attributes": { "weight": 1 } }, { "key": "23993", "source": "1109", "target": "130", "attributes": { "weight": 2 } }, { "key": "35277", "source": "1109", "target": "436", "attributes": { "weight": 1 } }, { "key": "8441", "source": "1109", "target": "1564", "attributes": { "weight": 2 } }, { "key": "4093", "source": "1109", "target": "228", "attributes": { "weight": 2 } }, { "key": "8455", "source": "1110", "target": "1087", "attributes": { "weight": 1 } }, { "key": "4096", "source": "1110", "target": "52", "attributes": { "weight": 2 } }, { "key": "35282", "source": "1110", "target": "1131", "attributes": { "weight": 1 } }, { "key": "4097", "source": "1110", "target": "1121", "attributes": { "weight": 1 } }, { "key": "33224", "source": "1110", "target": "442", "attributes": { "weight": 1 } }, { "key": "4099", "source": "1110", "target": "474", "attributes": { "weight": 1 } }, { "key": "19369", "source": "1110", "target": "449", "attributes": { "weight": 1 } }, { "key": "4098", "source": "1110", "target": "228", "attributes": { "weight": 1 } }, { "key": "19368", "source": "1110", "target": "2245", "attributes": { "weight": 1 } }, { "key": "8456", "source": "1110", "target": "1125", "attributes": { "weight": 1 } }, { "key": "19370", "source": "1110", "target": "2262", "attributes": { "weight": 1 } }, { "key": "31248", "source": "1110", "target": "674", "attributes": { "weight": 1 } }, { "key": "19371", "source": "1110", "target": "489", "attributes": { "weight": 1 } }, { "key": "8484", "source": "1111", "target": "1363", "attributes": { "weight": 2 } }, { "key": "19596", "source": "1111", "target": "489", "attributes": { "weight": 1 } }, { "key": "4109", "source": "1111", "target": "1107", "attributes": { "weight": 1 } }, { "key": "4110", "source": "1111", "target": "1125", "attributes": { "weight": 1 } }, { "key": "19640", "source": "1112", "target": "1744", "attributes": { "weight": 1 } }, { "key": "4111", "source": "1112", "target": "220", "attributes": { "weight": 3 } }, { "key": "4112", "source": "1112", "target": "228", "attributes": { "weight": 1 } }, { "key": "8648", "source": "1112", "target": "442", "attributes": { "weight": 2 } }, { "key": "8649", "source": "1112", "target": "1125", "attributes": { "weight": 1 } }, { "key": "4113", "source": "1112", "target": "474", "attributes": { "weight": 1 } }, { "key": "4114", "source": "1113", "target": "228", "attributes": { "weight": 1 } }, { "key": "4116", "source": "1113", "target": "1125", "attributes": { "weight": 1 } }, { "key": "4115", "source": "1113", "target": "474", "attributes": { "weight": 1 } }, { "key": "35296", "source": "1113", "target": "1107", "attributes": { "weight": 1 } }, { "key": "4118", "source": "1114", "target": "1106", "attributes": { "weight": 1 } }, { "key": "4120", "source": "1114", "target": "1125", "attributes": { "weight": 1 } }, { "key": "4119", "source": "1114", "target": "1107", "attributes": { "weight": 1 } }, { "key": "32164", "source": "1115", "target": "233", "attributes": { "weight": 1 } }, { "key": "4123", "source": "1115", "target": "474", "attributes": { "weight": 1 } }, { "key": "4122", "source": "1115", "target": "228", "attributes": { "weight": 1 } }, { "key": "32163", "source": "1115", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9267", "source": "1115", "target": "430", "attributes": { "weight": 1 } }, { "key": "24054", "source": "1116", "target": "1125", "attributes": { "weight": 2 } }, { "key": "24050", "source": "1116", "target": "674", "attributes": { "weight": 2 } }, { "key": "24056", "source": "1116", "target": "193", "attributes": { "weight": 2 } }, { "key": "6732", "source": "1116", "target": "183", "attributes": { "weight": 3 } }, { "key": "11130", "source": "1116", "target": "452", "attributes": { "weight": 1 } }, { "key": "24048", "source": "1116", "target": "439", "attributes": { "weight": 2 } }, { "key": "24051", "source": "1116", "target": "445", "attributes": { "weight": 3 } }, { "key": "24053", "source": "1116", "target": "471", "attributes": { "weight": 2 } }, { "key": "35300", "source": "1116", "target": "50", "attributes": { "weight": 1 } }, { "key": "8732", "source": "1116", "target": "442", "attributes": { "weight": 2 } }, { "key": "35301", "source": "1116", "target": "1088", "attributes": { "weight": 1 } }, { "key": "11131", "source": "1116", "target": "52", "attributes": { "weight": 2 } }, { "key": "31422", "source": "1116", "target": "223", "attributes": { "weight": 1 } }, { "key": "17537", "source": "1116", "target": "189", "attributes": { "weight": 2 } }, { "key": "18101", "source": "1116", "target": "57", "attributes": { "weight": 2 } }, { "key": "24055", "source": "1116", "target": "477", "attributes": { "weight": 3 } }, { "key": "24049", "source": "1116", "target": "441", "attributes": { "weight": 2 } }, { "key": "12214", "source": "1116", "target": "435", "attributes": { "weight": 1 } }, { "key": "24052", "source": "1116", "target": "135", "attributes": { "weight": 2 } }, { "key": "8733", "source": "1116", "target": "1363", "attributes": { "weight": 3 } }, { "key": "4127", "source": "1116", "target": "228", "attributes": { "weight": 2 } }, { "key": "6733", "source": "1116", "target": "490", "attributes": { "weight": 2 } }, { "key": "26473", "source": "1116", "target": "454", "attributes": { "weight": 1 } }, { "key": "6734", "source": "1116", "target": "495", "attributes": { "weight": 5 } }, { "key": "11129", "source": "1116", "target": "220", "attributes": { "weight": 2 } }, { "key": "24047", "source": "1116", "target": "130", "attributes": { "weight": 2 } }, { "key": "37042", "source": "1117", "target": "1125", "attributes": { "weight": 1 } }, { "key": "35302", "source": "1117", "target": "50", "attributes": { "weight": 1 } }, { "key": "8741", "source": "1117", "target": "474", "attributes": { "weight": 3 } }, { "key": "26308", "source": "1117", "target": "1258", "attributes": { "weight": 1 } }, { "key": "8740", "source": "1117", "target": "1087", "attributes": { "weight": 3 } }, { "key": "4128", "source": "1117", "target": "1121", "attributes": { "weight": 1 } }, { "key": "4129", "source": "1117", "target": "1088", "attributes": { "weight": 2 } }, { "key": "26307", "source": "1117", "target": "2643", "attributes": { "weight": 1 } }, { "key": "20058", "source": "1117", "target": "2245", "attributes": { "weight": 1 } }, { "key": "4130", "source": "1118", "target": "228", "attributes": { "weight": 2 } }, { "key": "11880", "source": "1118", "target": "1808", "attributes": { "weight": 1 } }, { "key": "16809", "source": "1118", "target": "452", "attributes": { "weight": 1 } }, { "key": "23383", "source": "1118", "target": "2445", "attributes": { "weight": 1 } }, { "key": "25863", "source": "1118", "target": "220", "attributes": { "weight": 1 } }, { "key": "26564", "source": "1118", "target": "183", "attributes": { "weight": 1 } }, { "key": "12523", "source": "1118", "target": "1337", "attributes": { "weight": 1 } }, { "key": "12522", "source": "1118", "target": "435", "attributes": { "weight": 1 } }, { "key": "6775", "source": "1118", "target": "193", "attributes": { "weight": 3 } }, { "key": "23384", "source": "1118", "target": "2001", "attributes": { "weight": 1 } }, { "key": "16811", "source": "1118", "target": "474", "attributes": { "weight": 1 } }, { "key": "31308", "source": "1118", "target": "231", "attributes": { "weight": 1 } }, { "key": "11881", "source": "1118", "target": "472", "attributes": { "weight": 1 } }, { "key": "16807", "source": "1118", "target": "1354", "attributes": { "weight": 1 } }, { "key": "8749", "source": "1118", "target": "442", "attributes": { "weight": 2 } }, { "key": "26565", "source": "1118", "target": "189", "attributes": { "weight": 2 } }, { "key": "31307", "source": "1118", "target": "70", "attributes": { "weight": 2 } }, { "key": "17886", "source": "1118", "target": "454", "attributes": { "weight": 3 } }, { "key": "16806", "source": "1118", "target": "429", "attributes": { "weight": 2 } }, { "key": "10817", "source": "1118", "target": "457", "attributes": { "weight": 1 } }, { "key": "16808", "source": "1118", "target": "130", "attributes": { "weight": 3 } }, { "key": "31423", "source": "1118", "target": "223", "attributes": { "weight": 2 } }, { "key": "5059", "source": "1118", "target": "468", "attributes": { "weight": 4 } }, { "key": "16810", "source": "1118", "target": "135", "attributes": { "weight": 1 } }, { "key": "12673", "source": "1118", "target": "695", "attributes": { "weight": 1 } }, { "key": "31309", "source": "1118", "target": "488", "attributes": { "weight": 1 } }, { "key": "24492", "source": "1118", "target": "790", "attributes": { "weight": 1 } }, { "key": "31305", "source": "1118", "target": "674", "attributes": { "weight": 1 } }, { "key": "35685", "source": "1118", "target": "2114", "attributes": { "weight": 1 } }, { "key": "10816", "source": "1118", "target": "1733", "attributes": { "weight": 2 } }, { "key": "13070", "source": "1118", "target": "59", "attributes": { "weight": 4 } }, { "key": "31306", "source": "1118", "target": "791", "attributes": { "weight": 2 } }, { "key": "4132", "source": "1119", "target": "1125", "attributes": { "weight": 1 } }, { "key": "24078", "source": "1120", "target": "471", "attributes": { "weight": 1 } }, { "key": "4133", "source": "1120", "target": "1125", "attributes": { "weight": 1 } }, { "key": "23344", "source": "1120", "target": "223", "attributes": { "weight": 1 } }, { "key": "20313", "source": "1120", "target": "489", "attributes": { "weight": 1 } }, { "key": "20312", "source": "1120", "target": "221", "attributes": { "weight": 1 } }, { "key": "4138", "source": "1121", "target": "228", "attributes": { "weight": 1 } }, { "key": "12398", "source": "1121", "target": "1355", "attributes": { "weight": 2 } }, { "key": "32762", "source": "1121", "target": "494", "attributes": { "weight": 1 } }, { "key": "4140", "source": "1121", "target": "1088", "attributes": { "weight": 1 } }, { "key": "20334", "source": "1121", "target": "1744", "attributes": { "weight": 1 } }, { "key": "4135", "source": "1121", "target": "1110", "attributes": { "weight": 1 } }, { "key": "4139", "source": "1121", "target": "229", "attributes": { "weight": 1 } }, { "key": "8833", "source": "1121", "target": "474", "attributes": { "weight": 2 } }, { "key": "9292", "source": "1121", "target": "1592", "attributes": { "weight": 2 } }, { "key": "4141", "source": "1121", "target": "1131", "attributes": { "weight": 1 } }, { "key": "23354", "source": "1121", "target": "451", "attributes": { "weight": 1 } }, { "key": "8832", "source": "1121", "target": "1087", "attributes": { "weight": 2 } }, { "key": "23352", "source": "1121", "target": "443", "attributes": { "weight": 1 } }, { "key": "23355", "source": "1121", "target": "1358", "attributes": { "weight": 1 } }, { "key": "23356", "source": "1121", "target": "458", "attributes": { "weight": 1 } }, { "key": "23357", "source": "1121", "target": "1545", "attributes": { "weight": 1 } }, { "key": "32759", "source": "1121", "target": "1703", "attributes": { "weight": 1 } }, { "key": "23359", "source": "1121", "target": "488", "attributes": { "weight": 1 } }, { "key": "9291", "source": "1121", "target": "430", "attributes": { "weight": 2 } }, { "key": "4134", "source": "1121", "target": "436", "attributes": { "weight": 2 } }, { "key": "33492", "source": "1121", "target": "52", "attributes": { "weight": 1 } }, { "key": "23358", "source": "1121", "target": "483", "attributes": { "weight": 1 } }, { "key": "32761", "source": "1121", "target": "482", "attributes": { "weight": 1 } }, { "key": "32760", "source": "1121", "target": "1708", "attributes": { "weight": 1 } }, { "key": "23351", "source": "1121", "target": "1107", "attributes": { "weight": 2 } }, { "key": "4142", "source": "1121", "target": "233", "attributes": { "weight": 2 } }, { "key": "4137", "source": "1121", "target": "1117", "attributes": { "weight": 1 } }, { "key": "4136", "source": "1121", "target": "50", "attributes": { "weight": 2 } }, { "key": "24088", "source": "1121", "target": "130", "attributes": { "weight": 2 } }, { "key": "23353", "source": "1121", "target": "447", "attributes": { "weight": 1 } }, { "key": "20407", "source": "1122", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20409", "source": "1122", "target": "489", "attributes": { "weight": 1 } }, { "key": "20408", "source": "1122", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20406", "source": "1122", "target": "449", "attributes": { "weight": 1 } }, { "key": "4143", "source": "1122", "target": "1125", "attributes": { "weight": 1 } }, { "key": "20405", "source": "1122", "target": "2245", "attributes": { "weight": 1 } }, { "key": "8846", "source": "1122", "target": "1564", "attributes": { "weight": 2 } }, { "key": "4144", "source": "1122", "target": "1127", "attributes": { "weight": 2 } }, { "key": "32139", "source": "1123", "target": "228", "attributes": { "weight": 1 } }, { "key": "4145", "source": "1123", "target": "1125", "attributes": { "weight": 1 } }, { "key": "8979", "source": "1125", "target": "1107", "attributes": { "weight": 2 } }, { "key": "32822", "source": "1125", "target": "494", "attributes": { "weight": 2 } }, { "key": "9001", "source": "1125", "target": "1128", "attributes": { "weight": 1 } }, { "key": "16899", "source": "1125", "target": "59", "attributes": { "weight": 1 } }, { "key": "8986", "source": "1125", "target": "444", "attributes": { "weight": 2 } }, { "key": "37489", "source": "1125", "target": "36", "attributes": { "weight": 1 } }, { "key": "16900", "source": "1125", "target": "434", "attributes": { "weight": 1 } }, { "key": "32806", "source": "1125", "target": "432", "attributes": { "weight": 2 } }, { "key": "24192", "source": "1125", "target": "1374", "attributes": { "weight": 3 } }, { "key": "32816", "source": "1125", "target": "190", "attributes": { "weight": 2 } }, { "key": "33070", "source": "1125", "target": "3115", "attributes": { "weight": 1 } }, { "key": "24193", "source": "1125", "target": "1711", "attributes": { "weight": 1 } }, { "key": "32809", "source": "1125", "target": "440", "attributes": { "weight": 1 } }, { "key": "4200", "source": "1125", "target": "1111", "attributes": { "weight": 1 } }, { "key": "32820", "source": "1125", "target": "340", "attributes": { "weight": 1 } }, { "key": "8982", "source": "1125", "target": "1110", "attributes": { "weight": 1 } }, { "key": "32815", "source": "1125", "target": "1845", "attributes": { "weight": 2 } }, { "key": "9351", "source": "1125", "target": "1597", "attributes": { "weight": 2 } }, { "key": "4209", "source": "1125", "target": "1132", "attributes": { "weight": 1 } }, { "key": "8997", "source": "1125", "target": "474", "attributes": { "weight": 2 } }, { "key": "9005", "source": "1125", "target": "1566", "attributes": { "weight": 1 } }, { "key": "31484", "source": "1125", "target": "39", "attributes": { "weight": 1 } }, { "key": "24186", "source": "1125", "target": "452", "attributes": { "weight": 3 } }, { "key": "24195", "source": "1125", "target": "1375", "attributes": { "weight": 2 } }, { "key": "9350", "source": "1125", "target": "1593", "attributes": { "weight": 2 } }, { "key": "4203", "source": "1125", "target": "1119", "attributes": { "weight": 1 } }, { "key": "16901", "source": "1125", "target": "674", "attributes": { "weight": 1 } }, { "key": "8999", "source": "1125", "target": "231", "attributes": { "weight": 4 } }, { "key": "10528", "source": "1125", "target": "1703", "attributes": { "weight": 2 } }, { "key": "8984", "source": "1125", "target": "249", "attributes": { "weight": 3 } }, { "key": "24183", "source": "1125", "target": "130", "attributes": { "weight": 2 } }, { "key": "10532", "source": "1125", "target": "1708", "attributes": { "weight": 2 } }, { "key": "32812", "source": "1125", "target": "1355", "attributes": { "weight": 3 } }, { "key": "9002", "source": "1125", "target": "1562", "attributes": { "weight": 3 } }, { "key": "32818", "source": "1125", "target": "479", "attributes": { "weight": 1 } }, { "key": "8992", "source": "1125", "target": "471", "attributes": { "weight": 3 } }, { "key": "4205", "source": "1125", "target": "1122", "attributes": { "weight": 1 } }, { "key": "24190", "source": "1125", "target": "54", "attributes": { "weight": 2 } }, { "key": "10530", "source": "1125", "target": "1705", "attributes": { "weight": 2 } }, { "key": "9004", "source": "1125", "target": "1131", "attributes": { "weight": 1 } }, { "key": "4207", "source": "1125", "target": "1126", "attributes": { "weight": 1 } }, { "key": "31486", "source": "1125", "target": "257", "attributes": { "weight": 2 } }, { "key": "4208", "source": "1125", "target": "1129", "attributes": { "weight": 1 } }, { "key": "8998", "source": "1125", "target": "1088", "attributes": { "weight": 1 } }, { "key": "8980", "source": "1125", "target": "1109", "attributes": { "weight": 1 } }, { "key": "6970", "source": "1125", "target": "468", "attributes": { "weight": 3 } }, { "key": "24184", "source": "1125", "target": "437", "attributes": { "weight": 2 } }, { "key": "32807", "source": "1125", "target": "424", "attributes": { "weight": 1 } }, { "key": "32819", "source": "1125", "target": "480", "attributes": { "weight": 2 } }, { "key": "33627", "source": "1125", "target": "672", "attributes": { "weight": 1 } }, { "key": "24182", "source": "1125", "target": "1354", "attributes": { "weight": 2 } }, { "key": "31487", "source": "1125", "target": "154", "attributes": { "weight": 1 } }, { "key": "32821", "source": "1125", "target": "493", "attributes": { "weight": 2 } }, { "key": "24540", "source": "1125", "target": "790", "attributes": { "weight": 1 } }, { "key": "8993", "source": "1125", "target": "1367", "attributes": { "weight": 3 } }, { "key": "24187", "source": "1125", "target": "1116", "attributes": { "weight": 2 } }, { "key": "10531", "source": "1125", "target": "227", "attributes": { "weight": 1 } }, { "key": "8981", "source": "1125", "target": "436", "attributes": { "weight": 2 } }, { "key": "32178", "source": "1125", "target": "3088", "attributes": { "weight": 1 } }, { "key": "33128", "source": "1125", "target": "783", "attributes": { "weight": 1 } }, { "key": "9343", "source": "1125", "target": "1571", "attributes": { "weight": 2 } }, { "key": "32813", "source": "1125", "target": "451", "attributes": { "weight": 2 } }, { "key": "24189", "source": "1125", "target": "470", "attributes": { "weight": 5 } }, { "key": "24191", "source": "1125", "target": "1744", "attributes": { "weight": 5 } }, { "key": "8995", "source": "1125", "target": "229", "attributes": { "weight": 1 } }, { "key": "4206", "source": "1125", "target": "1123", "attributes": { "weight": 1 } }, { "key": "24194", "source": "1125", "target": "56", "attributes": { "weight": 1 } }, { "key": "10536", "source": "1125", "target": "234", "attributes": { "weight": 1 } }, { "key": "29446", "source": "1125", "target": "232", "attributes": { "weight": 2 } }, { "key": "8989", "source": "1125", "target": "1363", "attributes": { "weight": 2 } }, { "key": "24188", "source": "1125", "target": "459", "attributes": { "weight": 3 } }, { "key": "4204", "source": "1125", "target": "1120", "attributes": { "weight": 1 } }, { "key": "24181", "source": "1125", "target": "429", "attributes": { "weight": 3 } }, { "key": "8990", "source": "1125", "target": "469", "attributes": { "weight": 3 } }, { "key": "4198", "source": "1125", "target": "1106", "attributes": { "weight": 1 } }, { "key": "5922", "source": "1125", "target": "1047", "attributes": { "weight": 3 } }, { "key": "9003", "source": "1125", "target": "1564", "attributes": { "weight": 2 } }, { "key": "34857", "source": "1125", "target": "3165", "attributes": { "weight": 1 } }, { "key": "32810", "source": "1125", "target": "445", "attributes": { "weight": 1 } }, { "key": "8996", "source": "1125", "target": "1087", "attributes": { "weight": 1 } }, { "key": "8991", "source": "1125", "target": "228", "attributes": { "weight": 1 } }, { "key": "16902", "source": "1125", "target": "457", "attributes": { "weight": 1 } }, { "key": "37490", "source": "1125", "target": "1357", "attributes": { "weight": 1 } }, { "key": "32808", "source": "1125", "target": "858", "attributes": { "weight": 1 } }, { "key": "4201", "source": "1125", "target": "1113", "attributes": { "weight": 1 } }, { "key": "8987", "source": "1125", "target": "446", "attributes": { "weight": 2 } }, { "key": "30781", "source": "1125", "target": "1370", "attributes": { "weight": 1 } }, { "key": "9006", "source": "1125", "target": "233", "attributes": { "weight": 2 } }, { "key": "33626", "source": "1125", "target": "52", "attributes": { "weight": 1 } }, { "key": "31483", "source": "1125", "target": "34", "attributes": { "weight": 1 } }, { "key": "9349", "source": "1125", "target": "1592", "attributes": { "weight": 2 } }, { "key": "32177", "source": "1125", "target": "1546", "attributes": { "weight": 1 } }, { "key": "8983", "source": "1125", "target": "50", "attributes": { "weight": 1 } }, { "key": "9347", "source": "1125", "target": "1576", "attributes": { "weight": 2 } }, { "key": "16903", "source": "1125", "target": "70", "attributes": { "weight": 1 } }, { "key": "9348", "source": "1125", "target": "1579", "attributes": { "weight": 2 } }, { "key": "9346", "source": "1125", "target": "1574", "attributes": { "weight": 1 } }, { "key": "10534", "source": "1125", "target": "482", "attributes": { "weight": 2 } }, { "key": "35011", "source": "1125", "target": "352", "attributes": { "weight": 2 } }, { "key": "32814", "source": "1125", "target": "458", "attributes": { "weight": 1 } }, { "key": "10535", "source": "1125", "target": "1560", "attributes": { "weight": 3 } }, { "key": "9344", "source": "1125", "target": "430", "attributes": { "weight": 2 } }, { "key": "31485", "source": "1125", "target": "1530", "attributes": { "weight": 2 } }, { "key": "37043", "source": "1125", "target": "1117", "attributes": { "weight": 1 } }, { "key": "10529", "source": "1125", "target": "225", "attributes": { "weight": 1 } }, { "key": "4202", "source": "1125", "target": "1114", "attributes": { "weight": 1 } }, { "key": "8988", "source": "1125", "target": "251", "attributes": { "weight": 3 } }, { "key": "32817", "source": "1125", "target": "477", "attributes": { "weight": 2 } }, { "key": "14158", "source": "1125", "target": "1891", "attributes": { "weight": 1 } }, { "key": "24185", "source": "1125", "target": "222", "attributes": { "weight": 2 } }, { "key": "5923", "source": "1125", "target": "370", "attributes": { "weight": 3 } }, { "key": "32811", "source": "1125", "target": "447", "attributes": { "weight": 1 } }, { "key": "9000", "source": "1125", "target": "252", "attributes": { "weight": 3 } }, { "key": "8985", "source": "1125", "target": "1112", "attributes": { "weight": 1 } }, { "key": "9345", "source": "1125", "target": "1573", "attributes": { "weight": 2 } }, { "key": "4199", "source": "1125", "target": "1108", "attributes": { "weight": 1 } }, { "key": "10533", "source": "1125", "target": "1709", "attributes": { "weight": 1 } }, { "key": "6971", "source": "1125", "target": "193", "attributes": { "weight": 1 } }, { "key": "4210", "source": "1126", "target": "1125", "attributes": { "weight": 1 } }, { "key": "20719", "source": "1126", "target": "2245", "attributes": { "weight": 1 } }, { "key": "17298", "source": "1126", "target": "449", "attributes": { "weight": 1 } }, { "key": "20720", "source": "1126", "target": "489", "attributes": { "weight": 1 } }, { "key": "35330", "source": "1126", "target": "1088", "attributes": { "weight": 1 } }, { "key": "20743", "source": "1127", "target": "489", "attributes": { "weight": 1 } }, { "key": "4212", "source": "1127", "target": "1122", "attributes": { "weight": 2 } }, { "key": "4213", "source": "1127", "target": "228", "attributes": { "weight": 2 } }, { "key": "20742", "source": "1127", "target": "2111", "attributes": { "weight": 1 } }, { "key": "4211", "source": "1127", "target": "1107", "attributes": { "weight": 1 } }, { "key": "32181", "source": "1128", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9029", "source": "1128", "target": "1125", "attributes": { "weight": 1 } }, { "key": "9028", "source": "1128", "target": "442", "attributes": { "weight": 2 } }, { "key": "4215", "source": "1128", "target": "228", "attributes": { "weight": 1 } }, { "key": "20881", "source": "1129", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20882", "source": "1129", "target": "449", "attributes": { "weight": 1 } }, { "key": "4216", "source": "1129", "target": "1125", "attributes": { "weight": 1 } }, { "key": "20883", "source": "1129", "target": "489", "attributes": { "weight": 1 } }, { "key": "13845", "source": "1130", "target": "50", "attributes": { "weight": 1 } }, { "key": "4219", "source": "1130", "target": "233", "attributes": { "weight": 1 } }, { "key": "4217", "source": "1130", "target": "228", "attributes": { "weight": 1 } }, { "key": "9044", "source": "1130", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9042", "source": "1130", "target": "442", "attributes": { "weight": 2 } }, { "key": "9045", "source": "1130", "target": "1564", "attributes": { "weight": 2 } }, { "key": "24220", "source": "1130", "target": "130", "attributes": { "weight": 2 } }, { "key": "9043", "source": "1130", "target": "1535", "attributes": { "weight": 2 } }, { "key": "4218", "source": "1130", "target": "474", "attributes": { "weight": 1 } }, { "key": "10569", "source": "1131", "target": "225", "attributes": { "weight": 1 } }, { "key": "35342", "source": "1131", "target": "477", "attributes": { "weight": 1 } }, { "key": "33074", "source": "1131", "target": "493", "attributes": { "weight": 1 } }, { "key": "35341", "source": "1131", "target": "1110", "attributes": { "weight": 1 } }, { "key": "21171", "source": "1131", "target": "1744", "attributes": { "weight": 1 } }, { "key": "35340", "source": "1131", "target": "436", "attributes": { "weight": 1 } }, { "key": "32849", "source": "1131", "target": "482", "attributes": { "weight": 1 } }, { "key": "9098", "source": "1131", "target": "474", "attributes": { "weight": 1 } }, { "key": "24241", "source": "1131", "target": "471", "attributes": { "weight": 1 } }, { "key": "37072", "source": "1131", "target": "857", "attributes": { "weight": 1 } }, { "key": "4225", "source": "1131", "target": "229", "attributes": { "weight": 2 } }, { "key": "33689", "source": "1131", "target": "135", "attributes": { "weight": 1 } }, { "key": "31431", "source": "1131", "target": "223", "attributes": { "weight": 1 } }, { "key": "21172", "source": "1131", "target": "489", "attributes": { "weight": 1 } }, { "key": "4227", "source": "1131", "target": "1088", "attributes": { "weight": 2 } }, { "key": "4221", "source": "1131", "target": "50", "attributes": { "weight": 2 } }, { "key": "35339", "source": "1131", "target": "1107", "attributes": { "weight": 1 } }, { "key": "9099", "source": "1131", "target": "1125", "attributes": { "weight": 1 } }, { "key": "28984", "source": "1131", "target": "479", "attributes": { "weight": 2 } }, { "key": "4224", "source": "1131", "target": "228", "attributes": { "weight": 1 } }, { "key": "4223", "source": "1131", "target": "1121", "attributes": { "weight": 1 } }, { "key": "9100", "source": "1131", "target": "233", "attributes": { "weight": 1 } }, { "key": "33073", "source": "1131", "target": "1355", "attributes": { "weight": 1 } }, { "key": "4226", "source": "1131", "target": "1087", "attributes": { "weight": 1 } }, { "key": "4222", "source": "1131", "target": "452", "attributes": { "weight": 3 } }, { "key": "4220", "source": "1131", "target": "220", "attributes": { "weight": 3 } }, { "key": "4233", "source": "1132", "target": "1125", "attributes": { "weight": 1 } }, { "key": "30996", "source": "1133", "target": "638", "attributes": { "weight": 1 } }, { "key": "7271", "source": "1133", "target": "223", "attributes": { "weight": 4 } }, { "key": "17853", "source": "1133", "target": "1380", "attributes": { "weight": 1 } }, { "key": "29931", "source": "1133", "target": "1527", "attributes": { "weight": 2 } }, { "key": "17854", "source": "1133", "target": "1386", "attributes": { "weight": 5 } }, { "key": "27850", "source": "1133", "target": "339", "attributes": { "weight": 1 } }, { "key": "26051", "source": "1133", "target": "163", "attributes": { "weight": 3 } }, { "key": "34864", "source": "1133", "target": "2511", "attributes": { "weight": 1 } }, { "key": "17455", "source": "1133", "target": "358", "attributes": { "weight": 1 } }, { "key": "4974", "source": "1133", "target": "468", "attributes": { "weight": 2 } }, { "key": "8703", "source": "1133", "target": "220", "attributes": { "weight": 3 } }, { "key": "30438", "source": "1133", "target": "1046", "attributes": { "weight": 1 } }, { "key": "29932", "source": "1133", "target": "1541", "attributes": { "weight": 2 } }, { "key": "23177", "source": "1133", "target": "2432", "attributes": { "weight": 1 } }, { "key": "33839", "source": "1133", "target": "162", "attributes": { "weight": 1 } }, { "key": "4235", "source": "1133", "target": "1134", "attributes": { "weight": 1 } }, { "key": "32342", "source": "1133", "target": "791", "attributes": { "weight": 1 } }, { "key": "33837", "source": "1133", "target": "1382", "attributes": { "weight": 1 } }, { "key": "33838", "source": "1133", "target": "556", "attributes": { "weight": 1 } }, { "key": "4237", "source": "1134", "target": "1133", "attributes": { "weight": 1 } }, { "key": "11335", "source": "1136", "target": "1742", "attributes": { "weight": 1 } }, { "key": "4240", "source": "1136", "target": "3", "attributes": { "weight": 2 } }, { "key": "4241", "source": "1136", "target": "673", "attributes": { "weight": 1 } }, { "key": "32329", "source": "1136", "target": "791", "attributes": { "weight": 1 } }, { "key": "37406", "source": "1136", "target": "2831", "attributes": { "weight": 1 } }, { "key": "11350", "source": "1137", "target": "1742", "attributes": { "weight": 1 } }, { "key": "36926", "source": "1137", "target": "2122", "attributes": { "weight": 1 } }, { "key": "35999", "source": "1137", "target": "497", "attributes": { "weight": 1 } }, { "key": "4244", "source": "1137", "target": "673", "attributes": { "weight": 1 } }, { "key": "36927", "source": "1137", "target": "2287", "attributes": { "weight": 1 } }, { "key": "35998", "source": "1137", "target": "1390", "attributes": { "weight": 1 } }, { "key": "36928", "source": "1137", "target": "1072", "attributes": { "weight": 1 } }, { "key": "35997", "source": "1137", "target": "465", "attributes": { "weight": 1 } }, { "key": "33842", "source": "1138", "target": "123", "attributes": { "weight": 1 } }, { "key": "21806", "source": "1138", "target": "2300", "attributes": { "weight": 1 } }, { "key": "4256", "source": "1138", "target": "1090", "attributes": { "weight": 2 } }, { "key": "8249", "source": "1138", "target": "195", "attributes": { "weight": 3 } }, { "key": "21807", "source": "1138", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21805", "source": "1138", "target": "1279", "attributes": { "weight": 1 } }, { "key": "15426", "source": "1138", "target": "913", "attributes": { "weight": 1 } }, { "key": "4255", "source": "1138", "target": "779", "attributes": { "weight": 2 } }, { "key": "21808", "source": "1138", "target": "2212", "attributes": { "weight": 1 } }, { "key": "4257", "source": "1139", "target": "368", "attributes": { "weight": 2 } }, { "key": "18548", "source": "1140", "target": "337", "attributes": { "weight": 2 } }, { "key": "27202", "source": "1140", "target": "2664", "attributes": { "weight": 1 } }, { "key": "36454", "source": "1140", "target": "1315", "attributes": { "weight": 1 } }, { "key": "36453", "source": "1140", "target": "1284", "attributes": { "weight": 1 } }, { "key": "36450", "source": "1140", "target": "1174", "attributes": { "weight": 1 } }, { "key": "36455", "source": "1140", "target": "1322", "attributes": { "weight": 1 } }, { "key": "4261", "source": "1140", "target": "1294", "attributes": { "weight": 3 } }, { "key": "18549", "source": "1140", "target": "1263", "attributes": { "weight": 2 } }, { "key": "36451", "source": "1140", "target": "1526", "attributes": { "weight": 1 } }, { "key": "15427", "source": "1140", "target": "925", "attributes": { "weight": 1 } }, { "key": "4258", "source": "1140", "target": "368", "attributes": { "weight": 2 } }, { "key": "4260", "source": "1140", "target": "123", "attributes": { "weight": 3 } }, { "key": "18547", "source": "1140", "target": "1197", "attributes": { "weight": 3 } }, { "key": "4259", "source": "1140", "target": "338", "attributes": { "weight": 5 } }, { "key": "15428", "source": "1140", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18550", "source": "1140", "target": "1552", "attributes": { "weight": 2 } }, { "key": "27201", "source": "1140", "target": "2663", "attributes": { "weight": 1 } }, { "key": "33843", "source": "1140", "target": "1233", "attributes": { "weight": 1 } }, { "key": "8251", "source": "1140", "target": "195", "attributes": { "weight": 5 } }, { "key": "11427", "source": "1140", "target": "370", "attributes": { "weight": 1 } }, { "key": "36452", "source": "1140", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18551", "source": "1140", "target": "1291", "attributes": { "weight": 2 } }, { "key": "33844", "source": "1140", "target": "1323", "attributes": { "weight": 1 } }, { "key": "8255", "source": "1141", "target": "442", "attributes": { "weight": 3 } }, { "key": "4262", "source": "1141", "target": "468", "attributes": { "weight": 5 } }, { "key": "32125", "source": "1141", "target": "1761", "attributes": { "weight": 1 } }, { "key": "32126", "source": "1141", "target": "1247", "attributes": { "weight": 1 } }, { "key": "32127", "source": "1141", "target": "1767", "attributes": { "weight": 1 } }, { "key": "32129", "source": "1141", "target": "1839", "attributes": { "weight": 1 } }, { "key": "32124", "source": "1141", "target": "1832", "attributes": { "weight": 1 } }, { "key": "32130", "source": "1141", "target": "1842", "attributes": { "weight": 1 } }, { "key": "12505", "source": "1141", "target": "1861", "attributes": { "weight": 1 } }, { "key": "12122", "source": "1141", "target": "472", "attributes": { "weight": 2 } }, { "key": "12507", "source": "1141", "target": "1768", "attributes": { "weight": 2 } }, { "key": "26383", "source": "1141", "target": "454", "attributes": { "weight": 1 } }, { "key": "11821", "source": "1141", "target": "1363", "attributes": { "weight": 1 } }, { "key": "17119", "source": "1141", "target": "449", "attributes": { "weight": 1 } }, { "key": "12120", "source": "1141", "target": "1835", "attributes": { "weight": 1 } }, { "key": "12658", "source": "1141", "target": "695", "attributes": { "weight": 1 } }, { "key": "32128", "source": "1141", "target": "1282", "attributes": { "weight": 1 } }, { "key": "12504", "source": "1141", "target": "51", "attributes": { "weight": 1 } }, { "key": "33163", "source": "1141", "target": "2258", "attributes": { "weight": 1 } }, { "key": "33162", "source": "1141", "target": "135", "attributes": { "weight": 1 } }, { "key": "12506", "source": "1141", "target": "1863", "attributes": { "weight": 1 } }, { "key": "12121", "source": "1141", "target": "1837", "attributes": { "weight": 1 } }, { "key": "31213", "source": "1141", "target": "1337", "attributes": { "weight": 3 } }, { "key": "12119", "source": "1141", "target": "435", "attributes": { "weight": 1 } }, { "key": "31212", "source": "1141", "target": "674", "attributes": { "weight": 1 } }, { "key": "12508", "source": "1141", "target": "70", "attributes": { "weight": 2 } }, { "key": "12118", "source": "1141", "target": "1161", "attributes": { "weight": 1 } }, { "key": "31211", "source": "1141", "target": "434", "attributes": { "weight": 2 } }, { "key": "25802", "source": "1141", "target": "220", "attributes": { "weight": 1 } }, { "key": "4264", "source": "1142", "target": "368", "attributes": { "weight": 2 } }, { "key": "37529", "source": "1143", "target": "2971", "attributes": { "weight": 1 } }, { "key": "25125", "source": "1143", "target": "165", "attributes": { "weight": 2 } }, { "key": "37527", "source": "1143", "target": "3397", "attributes": { "weight": 1 } }, { "key": "31177", "source": "1143", "target": "3051", "attributes": { "weight": 1 } }, { "key": "17327", "source": "1143", "target": "358", "attributes": { "weight": 2 } }, { "key": "30141", "source": "1143", "target": "2973", "attributes": { "weight": 1 } }, { "key": "37525", "source": "1143", "target": "3392", "attributes": { "weight": 1 } }, { "key": "14169", "source": "1143", "target": "168", "attributes": { "weight": 1 } }, { "key": "30139", "source": "1143", "target": "1177", "attributes": { "weight": 2 } }, { "key": "4265", "source": "1143", "target": "1166", "attributes": { "weight": 5 } }, { "key": "25126", "source": "1143", "target": "297", "attributes": { "weight": 4 } }, { "key": "15101", "source": "1143", "target": "171", "attributes": { "weight": 2 } }, { "key": "25128", "source": "1143", "target": "173", "attributes": { "weight": 3 } }, { "key": "4266", "source": "1143", "target": "310", "attributes": { "weight": 5 } }, { "key": "37530", "source": "1143", "target": "3408", "attributes": { "weight": 1 } }, { "key": "37526", "source": "1143", "target": "3393", "attributes": { "weight": 1 } }, { "key": "37524", "source": "1143", "target": "3390", "attributes": { "weight": 1 } }, { "key": "17805", "source": "1143", "target": "178", "attributes": { "weight": 3 } }, { "key": "30138", "source": "1143", "target": "1151", "attributes": { "weight": 1 } }, { "key": "30142", "source": "1143", "target": "2975", "attributes": { "weight": 2 } }, { "key": "25122", "source": "1143", "target": "1146", "attributes": { "weight": 4 } }, { "key": "25124", "source": "1143", "target": "572", "attributes": { "weight": 2 } }, { "key": "30140", "source": "1143", "target": "2803", "attributes": { "weight": 1 } }, { "key": "37528", "source": "1143", "target": "3399", "attributes": { "weight": 1 } }, { "key": "25123", "source": "1143", "target": "1187", "attributes": { "weight": 1 } }, { "key": "25127", "source": "1143", "target": "1996", "attributes": { "weight": 2 } }, { "key": "33850", "source": "1144", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4267", "source": "1144", "target": "368", "attributes": { "weight": 2 } }, { "key": "8256", "source": "1144", "target": "195", "attributes": { "weight": 3 } }, { "key": "8258", "source": "1145", "target": "195", "attributes": { "weight": 3 } }, { "key": "4269", "source": "1145", "target": "779", "attributes": { "weight": 2 } }, { "key": "4270", "source": "1145", "target": "1196", "attributes": { "weight": 2 } }, { "key": "28731", "source": "1146", "target": "2808", "attributes": { "weight": 1 } }, { "key": "14312", "source": "1146", "target": "259", "attributes": { "weight": 1 } }, { "key": "25134", "source": "1146", "target": "2121", "attributes": { "weight": 2 } }, { "key": "18485", "source": "1146", "target": "1280", "attributes": { "weight": 3 } }, { "key": "26194", "source": "1146", "target": "601", "attributes": { "weight": 2 } }, { "key": "28745", "source": "1146", "target": "2822", "attributes": { "weight": 1 } }, { "key": "25133", "source": "1146", "target": "2120", "attributes": { "weight": 2 } }, { "key": "25130", "source": "1146", "target": "1178", "attributes": { "weight": 2 } }, { "key": "17328", "source": "1146", "target": "297", "attributes": { "weight": 7 } }, { "key": "28737", "source": "1146", "target": "2423", "attributes": { "weight": 2 } }, { "key": "12877", "source": "1146", "target": "305", "attributes": { "weight": 2 } }, { "key": "28744", "source": "1146", "target": "2821", "attributes": { "weight": 1 } }, { "key": "28735", "source": "1146", "target": "2812", "attributes": { "weight": 1 } }, { "key": "27567", "source": "1146", "target": "171", "attributes": { "weight": 1 } }, { "key": "28722", "source": "1146", "target": "2213", "attributes": { "weight": 2 } }, { "key": "28732", "source": "1146", "target": "2809", "attributes": { "weight": 1 } }, { "key": "28734", "source": "1146", "target": "173", "attributes": { "weight": 2 } }, { "key": "28245", "source": "1146", "target": "2228", "attributes": { "weight": 2 } }, { "key": "14170", "source": "1146", "target": "168", "attributes": { "weight": 2 } }, { "key": "28730", "source": "1146", "target": "2745", "attributes": { "weight": 2 } }, { "key": "4273", "source": "1146", "target": "1299", "attributes": { "weight": 4 } }, { "key": "28723", "source": "1146", "target": "2791", "attributes": { "weight": 1 } }, { "key": "28728", "source": "1146", "target": "2804", "attributes": { "weight": 1 } }, { "key": "25129", "source": "1146", "target": "1143", "attributes": { "weight": 3 } }, { "key": "28742", "source": "1146", "target": "2819", "attributes": { "weight": 1 } }, { "key": "17806", "source": "1146", "target": "178", "attributes": { "weight": 3 } }, { "key": "28724", "source": "1146", "target": "1187", "attributes": { "weight": 2 } }, { "key": "28741", "source": "1146", "target": "2818", "attributes": { "weight": 1 } }, { "key": "28740", "source": "1146", "target": "2224", "attributes": { "weight": 2 } }, { "key": "25131", "source": "1146", "target": "2555", "attributes": { "weight": 2 } }, { "key": "25660", "source": "1146", "target": "278", "attributes": { "weight": 1 } }, { "key": "28725", "source": "1146", "target": "2797", "attributes": { "weight": 1 } }, { "key": "28738", "source": "1146", "target": "2815", "attributes": { "weight": 1 } }, { "key": "28736", "source": "1146", "target": "2813", "attributes": { "weight": 1 } }, { "key": "28726", "source": "1146", "target": "2799", "attributes": { "weight": 1 } }, { "key": "28729", "source": "1146", "target": "338", "attributes": { "weight": 2 } }, { "key": "4274", "source": "1146", "target": "310", "attributes": { "weight": 10 } }, { "key": "28733", "source": "1146", "target": "2810", "attributes": { "weight": 1 } }, { "key": "32244", "source": "1146", "target": "164", "attributes": { "weight": 2 } }, { "key": "28336", "source": "1146", "target": "580", "attributes": { "weight": 3 } }, { "key": "25132", "source": "1146", "target": "1996", "attributes": { "weight": 3 } }, { "key": "28727", "source": "1146", "target": "2802", "attributes": { "weight": 1 } }, { "key": "4272", "source": "1146", "target": "1166", "attributes": { "weight": 7 } }, { "key": "28739", "source": "1146", "target": "1323", "attributes": { "weight": 2 } }, { "key": "28743", "source": "1146", "target": "2820", "attributes": { "weight": 1 } }, { "key": "4278", "source": "1147", "target": "123", "attributes": { "weight": 2 } }, { "key": "18557", "source": "1148", "target": "1526", "attributes": { "weight": 2 } }, { "key": "18559", "source": "1148", "target": "1552", "attributes": { "weight": 1 } }, { "key": "33855", "source": "1148", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4279", "source": "1148", "target": "368", "attributes": { "weight": 2 } }, { "key": "36458", "source": "1148", "target": "337", "attributes": { "weight": 1 } }, { "key": "18558", "source": "1148", "target": "1197", "attributes": { "weight": 3 } }, { "key": "4290", "source": "1149", "target": "30", "attributes": { "weight": 5 } }, { "key": "26195", "source": "1149", "target": "27", "attributes": { "weight": 1 } }, { "key": "29296", "source": "1149", "target": "2639", "attributes": { "weight": 1 } }, { "key": "9713", "source": "1149", "target": "1244", "attributes": { "weight": 2 } }, { "key": "37416", "source": "1149", "target": "1099", "attributes": { "weight": 1 } }, { "key": "4292", "source": "1150", "target": "123", "attributes": { "weight": 2 } }, { "key": "4293", "source": "1150", "target": "1090", "attributes": { "weight": 2 } }, { "key": "30147", "source": "1151", "target": "1187", "attributes": { "weight": 1 } }, { "key": "4294", "source": "1151", "target": "310", "attributes": { "weight": 3 } }, { "key": "30148", "source": "1151", "target": "165", "attributes": { "weight": 1 } }, { "key": "30145", "source": "1151", "target": "2553", "attributes": { "weight": 1 } }, { "key": "30149", "source": "1151", "target": "297", "attributes": { "weight": 2 } }, { "key": "30150", "source": "1151", "target": "173", "attributes": { "weight": 1 } }, { "key": "30144", "source": "1151", "target": "1143", "attributes": { "weight": 1 } }, { "key": "30146", "source": "1151", "target": "1166", "attributes": { "weight": 1 } }, { "key": "18567", "source": "1152", "target": "1326", "attributes": { "weight": 2 } }, { "key": "36462", "source": "1152", "target": "1196", "attributes": { "weight": 1 } }, { "key": "4319", "source": "1152", "target": "926", "attributes": { "weight": 2 } }, { "key": "8432", "source": "1152", "target": "195", "attributes": { "weight": 7 } }, { "key": "11433", "source": "1152", "target": "208", "attributes": { "weight": 4 } }, { "key": "35664", "source": "1152", "target": "396", "attributes": { "weight": 1 } }, { "key": "15504", "source": "1152", "target": "913", "attributes": { "weight": 1 } }, { "key": "18566", "source": "1152", "target": "1284", "attributes": { "weight": 2 } }, { "key": "11434", "source": "1152", "target": "1323", "attributes": { "weight": 3 } }, { "key": "11431", "source": "1152", "target": "199", "attributes": { "weight": 2 } }, { "key": "4318", "source": "1152", "target": "468", "attributes": { "weight": 4 } }, { "key": "21812", "source": "1152", "target": "337", "attributes": { "weight": 2 } }, { "key": "4316", "source": "1152", "target": "370", "attributes": { "weight": 4 } }, { "key": "36465", "source": "1152", "target": "1315", "attributes": { "weight": 1 } }, { "key": "33866", "source": "1152", "target": "1047", "attributes": { "weight": 2 } }, { "key": "11432", "source": "1152", "target": "1251", "attributes": { "weight": 1 } }, { "key": "33867", "source": "1152", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18564", "source": "1152", "target": "2229", "attributes": { "weight": 2 } }, { "key": "15506", "source": "1152", "target": "925", "attributes": { "weight": 1 } }, { "key": "4315", "source": "1152", "target": "368", "attributes": { "weight": 2 } }, { "key": "33868", "source": "1152", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18562", "source": "1152", "target": "387", "attributes": { "weight": 2 } }, { "key": "36464", "source": "1152", "target": "1248", "attributes": { "weight": 1 } }, { "key": "36460", "source": "1152", "target": "1174", "attributes": { "weight": 1 } }, { "key": "15505", "source": "1152", "target": "924", "attributes": { "weight": 1 } }, { "key": "4320", "source": "1152", "target": "123", "attributes": { "weight": 3 } }, { "key": "18133", "source": "1152", "target": "1197", "attributes": { "weight": 4 } }, { "key": "36463", "source": "1152", "target": "1228", "attributes": { "weight": 1 } }, { "key": "4322", "source": "1152", "target": "1294", "attributes": { "weight": 3 } }, { "key": "15507", "source": "1152", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10169", "source": "1152", "target": "1322", "attributes": { "weight": 1 } }, { "key": "18568", "source": "1152", "target": "1331", "attributes": { "weight": 1 } }, { "key": "18563", "source": "1152", "target": "1201", "attributes": { "weight": 2 } }, { "key": "33865", "source": "1152", "target": "1182", "attributes": { "weight": 1 } }, { "key": "18565", "source": "1152", "target": "1552", "attributes": { "weight": 2 } }, { "key": "11430", "source": "1152", "target": "938", "attributes": { "weight": 1 } }, { "key": "4321", "source": "1152", "target": "1090", "attributes": { "weight": 2 } }, { "key": "36466", "source": "1152", "target": "218", "attributes": { "weight": 1 } }, { "key": "4314", "source": "1152", "target": "779", "attributes": { "weight": 2 } }, { "key": "36459", "source": "1152", "target": "1165", "attributes": { "weight": 1 } }, { "key": "4317", "source": "1152", "target": "338", "attributes": { "weight": 5 } }, { "key": "36461", "source": "1152", "target": "1526", "attributes": { "weight": 1 } }, { "key": "33869", "source": "1153", "target": "123", "attributes": { "weight": 1 } }, { "key": "21813", "source": "1153", "target": "199", "attributes": { "weight": 1 } }, { "key": "4323", "source": "1153", "target": "779", "attributes": { "weight": 2 } }, { "key": "21816", "source": "1153", "target": "2212", "attributes": { "weight": 1 } }, { "key": "8433", "source": "1153", "target": "195", "attributes": { "weight": 4 } }, { "key": "15508", "source": "1153", "target": "913", "attributes": { "weight": 1 } }, { "key": "21815", "source": "1153", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21814", "source": "1153", "target": "2300", "attributes": { "weight": 1 } }, { "key": "15509", "source": "1154", "target": "195", "attributes": { "weight": 2 } }, { "key": "4324", "source": "1154", "target": "779", "attributes": { "weight": 2 } }, { "key": "33870", "source": "1154", "target": "123", "attributes": { "weight": 1 } }, { "key": "4325", "source": "1154", "target": "1090", "attributes": { "weight": 2 } }, { "key": "21817", "source": "1154", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15510", "source": "1154", "target": "913", "attributes": { "weight": 1 } }, { "key": "4333", "source": "1155", "target": "370", "attributes": { "weight": 4 } }, { "key": "7215", "source": "1155", "target": "1063", "attributes": { "weight": 2 } }, { "key": "11836", "source": "1155", "target": "135", "attributes": { "weight": 2 } }, { "key": "4335", "source": "1155", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4334", "source": "1155", "target": "371", "attributes": { "weight": 2 } }, { "key": "15513", "source": "1155", "target": "195", "attributes": { "weight": 1 } }, { "key": "15514", "source": "1155", "target": "938", "attributes": { "weight": 1 } }, { "key": "33871", "source": "1155", "target": "1047", "attributes": { "weight": 1 } }, { "key": "11440", "source": "1156", "target": "218", "attributes": { "weight": 2 } }, { "key": "4341", "source": "1156", "target": "123", "attributes": { "weight": 3 } }, { "key": "4336", "source": "1156", "target": "779", "attributes": { "weight": 2 } }, { "key": "4343", "source": "1156", "target": "1296", "attributes": { "weight": 2 } }, { "key": "8435", "source": "1156", "target": "195", "attributes": { "weight": 7 } }, { "key": "15516", "source": "1156", "target": "913", "attributes": { "weight": 1 } }, { "key": "11436", "source": "1156", "target": "199", "attributes": { "weight": 2 } }, { "key": "4337", "source": "1156", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4342", "source": "1156", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11438", "source": "1156", "target": "212", "attributes": { "weight": 1 } }, { "key": "36468", "source": "1156", "target": "337", "attributes": { "weight": 1 } }, { "key": "18569", "source": "1156", "target": "1174", "attributes": { "weight": 2 } }, { "key": "15517", "source": "1156", "target": "925", "attributes": { "weight": 1 } }, { "key": "36467", "source": "1156", "target": "1197", "attributes": { "weight": 1 } }, { "key": "4338", "source": "1156", "target": "368", "attributes": { "weight": 2 } }, { "key": "18570", "source": "1156", "target": "1552", "attributes": { "weight": 2 } }, { "key": "33872", "source": "1156", "target": "1232", "attributes": { "weight": 1 } }, { "key": "4340", "source": "1156", "target": "371", "attributes": { "weight": 2 } }, { "key": "15518", "source": "1156", "target": "1305", "attributes": { "weight": 1 } }, { "key": "11439", "source": "1156", "target": "961", "attributes": { "weight": 1 } }, { "key": "7216", "source": "1156", "target": "154", "attributes": { "weight": 2 } }, { "key": "7217", "source": "1156", "target": "1063", "attributes": { "weight": 2 } }, { "key": "11437", "source": "1156", "target": "208", "attributes": { "weight": 4 } }, { "key": "4339", "source": "1156", "target": "338", "attributes": { "weight": 3 } }, { "key": "15515", "source": "1156", "target": "912", "attributes": { "weight": 1 } }, { "key": "36469", "source": "1156", "target": "215", "attributes": { "weight": 1 } }, { "key": "33878", "source": "1157", "target": "1323", "attributes": { "weight": 1 } }, { "key": "4344", "source": "1157", "target": "1294", "attributes": { "weight": 2 } }, { "key": "33875", "source": "1157", "target": "1197", "attributes": { "weight": 1 } }, { "key": "33876", "source": "1157", "target": "1233", "attributes": { "weight": 1 } }, { "key": "33877", "source": "1157", "target": "338", "attributes": { "weight": 1 } }, { "key": "26809", "source": "1158", "target": "2650", "attributes": { "weight": 1 } }, { "key": "12804", "source": "1158", "target": "780", "attributes": { "weight": 1 } }, { "key": "4345", "source": "1158", "target": "371", "attributes": { "weight": 2 } }, { "key": "21617", "source": "1158", "target": "109", "attributes": { "weight": 1 } }, { "key": "15215", "source": "1158", "target": "454", "attributes": { "weight": 1 } }, { "key": "12806", "source": "1158", "target": "257", "attributes": { "weight": 1 } }, { "key": "12803", "source": "1158", "target": "248", "attributes": { "weight": 2 } }, { "key": "26805", "source": "1158", "target": "251", "attributes": { "weight": 1 } }, { "key": "15216", "source": "1158", "target": "472", "attributes": { "weight": 2 } }, { "key": "7218", "source": "1158", "target": "1063", "attributes": { "weight": 2 } }, { "key": "26807", "source": "1158", "target": "2649", "attributes": { "weight": 1 } }, { "key": "11441", "source": "1158", "target": "370", "attributes": { "weight": 1 } }, { "key": "12805", "source": "1158", "target": "785", "attributes": { "weight": 1 } }, { "key": "26806", "source": "1158", "target": "1220", "attributes": { "weight": 1 } }, { "key": "26804", "source": "1158", "target": "250", "attributes": { "weight": 1 } }, { "key": "26808", "source": "1158", "target": "256", "attributes": { "weight": 1 } }, { "key": "11838", "source": "1158", "target": "135", "attributes": { "weight": 3 } }, { "key": "33879", "source": "1159", "target": "1232", "attributes": { "weight": 1 } }, { "key": "4346", "source": "1159", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15519", "source": "1159", "target": "913", "attributes": { "weight": 1 } }, { "key": "15520", "source": "1160", "target": "913", "attributes": { "weight": 1 } }, { "key": "4348", "source": "1160", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4349", "source": "1160", "target": "1090", "attributes": { "weight": 2 } }, { "key": "21850", "source": "1160", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21851", "source": "1160", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15521", "source": "1160", "target": "921", "attributes": { "weight": 1 } }, { "key": "17137", "source": "1161", "target": "451", "attributes": { "weight": 1 } }, { "key": "12136", "source": "1161", "target": "435", "attributes": { "weight": 1 } }, { "key": "4350", "source": "1161", "target": "468", "attributes": { "weight": 4 } }, { "key": "12143", "source": "1161", "target": "1247", "attributes": { "weight": 1 } }, { "key": "12140", "source": "1161", "target": "1535", "attributes": { "weight": 1 } }, { "key": "12139", "source": "1161", "target": "1832", "attributes": { "weight": 1 } }, { "key": "12135", "source": "1161", "target": "1141", "attributes": { "weight": 1 } }, { "key": "12146", "source": "1161", "target": "1564", "attributes": { "weight": 1 } }, { "key": "12141", "source": "1161", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12144", "source": "1161", "target": "472", "attributes": { "weight": 1 } }, { "key": "12142", "source": "1161", "target": "1834", "attributes": { "weight": 1 } }, { "key": "35355", "source": "1161", "target": "1811", "attributes": { "weight": 1 } }, { "key": "17138", "source": "1161", "target": "135", "attributes": { "weight": 1 } }, { "key": "12138", "source": "1161", "target": "450", "attributes": { "weight": 1 } }, { "key": "17136", "source": "1161", "target": "429", "attributes": { "weight": 1 } }, { "key": "12145", "source": "1161", "target": "1282", "attributes": { "weight": 1 } }, { "key": "12137", "source": "1161", "target": "446", "attributes": { "weight": 1 } }, { "key": "17139", "source": "1161", "target": "231", "attributes": { "weight": 1 } }, { "key": "18574", "source": "1162", "target": "218", "attributes": { "weight": 2 } }, { "key": "36470", "source": "1162", "target": "1228", "attributes": { "weight": 1 } }, { "key": "4351", "source": "1162", "target": "779", "attributes": { "weight": 2 } }, { "key": "15525", "source": "1162", "target": "925", "attributes": { "weight": 1 } }, { "key": "18571", "source": "1162", "target": "1174", "attributes": { "weight": 2 } }, { "key": "33882", "source": "1162", "target": "123", "attributes": { "weight": 1 } }, { "key": "4354", "source": "1162", "target": "371", "attributes": { "weight": 2 } }, { "key": "4352", "source": "1162", "target": "1196", "attributes": { "weight": 2 } }, { "key": "15523", "source": "1162", "target": "921", "attributes": { "weight": 1 } }, { "key": "8444", "source": "1162", "target": "195", "attributes": { "weight": 6 } }, { "key": "36471", "source": "1162", "target": "1552", "attributes": { "weight": 1 } }, { "key": "35093", "source": "1162", "target": "200", "attributes": { "weight": 1 } }, { "key": "4353", "source": "1162", "target": "368", "attributes": { "weight": 2 } }, { "key": "4355", "source": "1162", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15522", "source": "1162", "target": "913", "attributes": { "weight": 1 } }, { "key": "33881", "source": "1162", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18573", "source": "1162", "target": "337", "attributes": { "weight": 2 } }, { "key": "15524", "source": "1162", "target": "208", "attributes": { "weight": 3 } }, { "key": "33880", "source": "1162", "target": "1197", "attributes": { "weight": 1 } }, { "key": "18572", "source": "1162", "target": "1526", "attributes": { "weight": 2 } }, { "key": "9718", "source": "1163", "target": "1323", "attributes": { "weight": 1 } }, { "key": "15530", "source": "1163", "target": "195", "attributes": { "weight": 1 } }, { "key": "4356", "source": "1163", "target": "368", "attributes": { "weight": 2 } }, { "key": "33884", "source": "1163", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9719", "source": "1163", "target": "411", "attributes": { "weight": 2 } }, { "key": "9716", "source": "1163", "target": "396", "attributes": { "weight": 1 } }, { "key": "15531", "source": "1163", "target": "338", "attributes": { "weight": 2 } }, { "key": "37130", "source": "1163", "target": "387", "attributes": { "weight": 1 } }, { "key": "37131", "source": "1163", "target": "1552", "attributes": { "weight": 1 } }, { "key": "9717", "source": "1163", "target": "399", "attributes": { "weight": 2 } }, { "key": "15532", "source": "1164", "target": "913", "attributes": { "weight": 1 } }, { "key": "4361", "source": "1164", "target": "368", "attributes": { "weight": 2 } }, { "key": "21863", "source": "1164", "target": "2212", "attributes": { "weight": 1 } }, { "key": "18136", "source": "1164", "target": "1197", "attributes": { "weight": 1 } }, { "key": "4362", "source": "1164", "target": "123", "attributes": { "weight": 2 } }, { "key": "8464", "source": "1164", "target": "195", "attributes": { "weight": 3 } }, { "key": "18137", "source": "1164", "target": "208", "attributes": { "weight": 1 } }, { "key": "15533", "source": "1164", "target": "925", "attributes": { "weight": 1 } }, { "key": "18577", "source": "1165", "target": "1228", "attributes": { "weight": 2 } }, { "key": "15537", "source": "1165", "target": "925", "attributes": { "weight": 1 } }, { "key": "18578", "source": "1165", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18579", "source": "1165", "target": "1296", "attributes": { "weight": 2 } }, { "key": "8465", "source": "1165", "target": "195", "attributes": { "weight": 6 } }, { "key": "18575", "source": "1165", "target": "1174", "attributes": { "weight": 2 } }, { "key": "4365", "source": "1165", "target": "368", "attributes": { "weight": 2 } }, { "key": "4366", "source": "1165", "target": "370", "attributes": { "weight": 3 } }, { "key": "18576", "source": "1165", "target": "1180", "attributes": { "weight": 2 } }, { "key": "36479", "source": "1165", "target": "199", "attributes": { "weight": 1 } }, { "key": "15535", "source": "1165", "target": "913", "attributes": { "weight": 2 } }, { "key": "4367", "source": "1165", "target": "338", "attributes": { "weight": 5 } }, { "key": "36477", "source": "1165", "target": "1184", "attributes": { "weight": 1 } }, { "key": "36478", "source": "1165", "target": "1532", "attributes": { "weight": 1 } }, { "key": "36480", "source": "1165", "target": "918", "attributes": { "weight": 1 } }, { "key": "4370", "source": "1165", "target": "123", "attributes": { "weight": 3 } }, { "key": "15534", "source": "1165", "target": "912", "attributes": { "weight": 1 } }, { "key": "36486", "source": "1165", "target": "214", "attributes": { "weight": 1 } }, { "key": "36476", "source": "1165", "target": "938", "attributes": { "weight": 1 } }, { "key": "7220", "source": "1165", "target": "1063", "attributes": { "weight": 1 } }, { "key": "36490", "source": "1165", "target": "124", "attributes": { "weight": 1 } }, { "key": "15538", "source": "1165", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18580", "source": "1165", "target": "1301", "attributes": { "weight": 1 } }, { "key": "36483", "source": "1165", "target": "1263", "attributes": { "weight": 1 } }, { "key": "36481", "source": "1165", "target": "205", "attributes": { "weight": 1 } }, { "key": "36482", "source": "1165", "target": "337", "attributes": { "weight": 1 } }, { "key": "33888", "source": "1165", "target": "1047", "attributes": { "weight": 2 } }, { "key": "33887", "source": "1165", "target": "1182", "attributes": { "weight": 2 } }, { "key": "36484", "source": "1165", "target": "926", "attributes": { "weight": 1 } }, { "key": "36487", "source": "1165", "target": "1305", "attributes": { "weight": 1 } }, { "key": "15536", "source": "1165", "target": "208", "attributes": { "weight": 3 } }, { "key": "4369", "source": "1165", "target": "371", "attributes": { "weight": 2 } }, { "key": "36475", "source": "1165", "target": "1152", "attributes": { "weight": 1 } }, { "key": "25511", "source": "1165", "target": "2599", "attributes": { "weight": 1 } }, { "key": "36488", "source": "1165", "target": "1315", "attributes": { "weight": 1 } }, { "key": "33890", "source": "1165", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4363", "source": "1165", "target": "779", "attributes": { "weight": 2 } }, { "key": "36485", "source": "1165", "target": "1294", "attributes": { "weight": 1 } }, { "key": "18138", "source": "1165", "target": "1197", "attributes": { "weight": 3 } }, { "key": "33889", "source": "1165", "target": "1232", "attributes": { "weight": 1 } }, { "key": "25512", "source": "1165", "target": "2604", "attributes": { "weight": 1 } }, { "key": "18581", "source": "1165", "target": "218", "attributes": { "weight": 2 } }, { "key": "36489", "source": "1165", "target": "405", "attributes": { "weight": 1 } }, { "key": "4364", "source": "1165", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4371", "source": "1165", "target": "1090", "attributes": { "weight": 3 } }, { "key": "18139", "source": "1165", "target": "2205", "attributes": { "weight": 1 } }, { "key": "4368", "source": "1165", "target": "921", "attributes": { "weight": 4 } }, { "key": "28754", "source": "1166", "target": "2807", "attributes": { "weight": 1 } }, { "key": "28752", "source": "1166", "target": "2793", "attributes": { "weight": 3 } }, { "key": "28751", "source": "1166", "target": "1178", "attributes": { "weight": 3 } }, { "key": "30171", "source": "1166", "target": "2934", "attributes": { "weight": 2 } }, { "key": "4374", "source": "1166", "target": "1177", "attributes": { "weight": 3 } }, { "key": "4380", "source": "1166", "target": "310", "attributes": { "weight": 5 } }, { "key": "30173", "source": "1166", "target": "2968", "attributes": { "weight": 1 } }, { "key": "6616", "source": "1166", "target": "178", "attributes": { "weight": 9 } }, { "key": "4376", "source": "1166", "target": "165", "attributes": { "weight": 6 } }, { "key": "30176", "source": "1166", "target": "2974", "attributes": { "weight": 1 } }, { "key": "30163", "source": "1166", "target": "1151", "attributes": { "weight": 1 } }, { "key": "24276", "source": "1166", "target": "2216", "attributes": { "weight": 2 } }, { "key": "4381", "source": "1166", "target": "1341", "attributes": { "weight": 4 } }, { "key": "4372", "source": "1166", "target": "1143", "attributes": { "weight": 5 } }, { "key": "22393", "source": "1166", "target": "572", "attributes": { "weight": 3 } }, { "key": "14349", "source": "1166", "target": "259", "attributes": { "weight": 1 } }, { "key": "28756", "source": "1166", "target": "2121", "attributes": { "weight": 2 } }, { "key": "30168", "source": "1166", "target": "2962", "attributes": { "weight": 2 } }, { "key": "25138", "source": "1166", "target": "2556", "attributes": { "weight": 2 } }, { "key": "25143", "source": "1166", "target": "2562", "attributes": { "weight": 2 } }, { "key": "12565", "source": "1166", "target": "180", "attributes": { "weight": 2 } }, { "key": "4379", "source": "1166", "target": "173", "attributes": { "weight": 4 } }, { "key": "25141", "source": "1166", "target": "2560", "attributes": { "weight": 3 } }, { "key": "30169", "source": "1166", "target": "2963", "attributes": { "weight": 2 } }, { "key": "30166", "source": "1166", "target": "2958", "attributes": { "weight": 1 } }, { "key": "17341", "source": "1166", "target": "358", "attributes": { "weight": 2 } }, { "key": "30164", "source": "1166", "target": "2955", "attributes": { "weight": 1 } }, { "key": "25139", "source": "1166", "target": "2557", "attributes": { "weight": 2 } }, { "key": "4373", "source": "1166", "target": "1146", "attributes": { "weight": 8 } }, { "key": "30165", "source": "1166", "target": "2956", "attributes": { "weight": 2 } }, { "key": "35367", "source": "1166", "target": "2213", "attributes": { "weight": 1 } }, { "key": "28994", "source": "1166", "target": "2829", "attributes": { "weight": 1 } }, { "key": "28755", "source": "1166", "target": "2120", "attributes": { "weight": 2 } }, { "key": "27584", "source": "1166", "target": "171", "attributes": { "weight": 1 } }, { "key": "18488", "source": "1166", "target": "1280", "attributes": { "weight": 3 } }, { "key": "25140", "source": "1166", "target": "2558", "attributes": { "weight": 1 } }, { "key": "4375", "source": "1166", "target": "1187", "attributes": { "weight": 8 } }, { "key": "28753", "source": "1166", "target": "2555", "attributes": { "weight": 2 } }, { "key": "30174", "source": "1166", "target": "2970", "attributes": { "weight": 2 } }, { "key": "30175", "source": "1166", "target": "2745", "attributes": { "weight": 2 } }, { "key": "30172", "source": "1166", "target": "2967", "attributes": { "weight": 1 } }, { "key": "13846", "source": "1166", "target": "1952", "attributes": { "weight": 4 } }, { "key": "4378", "source": "1166", "target": "297", "attributes": { "weight": 5 } }, { "key": "28249", "source": "1166", "target": "2749", "attributes": { "weight": 2 } }, { "key": "4377", "source": "1166", "target": "338", "attributes": { "weight": 4 } }, { "key": "28250", "source": "1166", "target": "2228", "attributes": { "weight": 3 } }, { "key": "30177", "source": "1166", "target": "2814", "attributes": { "weight": 2 } }, { "key": "17340", "source": "1166", "target": "2957", "attributes": { "weight": 2 } }, { "key": "17342", "source": "1166", "target": "2969", "attributes": { "weight": 2 } }, { "key": "23179", "source": "1166", "target": "1227", "attributes": { "weight": 1 } }, { "key": "30046", "source": "1166", "target": "2940", "attributes": { "weight": 1 } }, { "key": "10805", "source": "1166", "target": "168", "attributes": { "weight": 3 } }, { "key": "17343", "source": "1166", "target": "2117", "attributes": { "weight": 3 } }, { "key": "30045", "source": "1166", "target": "2938", "attributes": { "weight": 2 } }, { "key": "30167", "source": "1166", "target": "2929", "attributes": { "weight": 1 } }, { "key": "25142", "source": "1166", "target": "2561", "attributes": { "weight": 3 } }, { "key": "32265", "source": "1166", "target": "164", "attributes": { "weight": 2 } }, { "key": "25665", "source": "1166", "target": "278", "attributes": { "weight": 1 } }, { "key": "30170", "source": "1166", "target": "2966", "attributes": { "weight": 1 } }, { "key": "18582", "source": "1167", "target": "1197", "attributes": { "weight": 3 } }, { "key": "10178", "source": "1167", "target": "1315", "attributes": { "weight": 1 } }, { "key": "36492", "source": "1167", "target": "1284", "attributes": { "weight": 1 } }, { "key": "33891", "source": "1167", "target": "338", "attributes": { "weight": 1 } }, { "key": "10176", "source": "1167", "target": "1689", "attributes": { "weight": 1 } }, { "key": "4384", "source": "1167", "target": "1294", "attributes": { "weight": 3 } }, { "key": "10177", "source": "1167", "target": "1291", "attributes": { "weight": 1 } }, { "key": "21864", "source": "1167", "target": "337", "attributes": { "weight": 2 } }, { "key": "33893", "source": "1167", "target": "1323", "attributes": { "weight": 1 } }, { "key": "36491", "source": "1167", "target": "1215", "attributes": { "weight": 1 } }, { "key": "10180", "source": "1167", "target": "1326", "attributes": { "weight": 1 } }, { "key": "10181", "source": "1167", "target": "1331", "attributes": { "weight": 1 } }, { "key": "15540", "source": "1167", "target": "925", "attributes": { "weight": 1 } }, { "key": "15541", "source": "1167", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10179", "source": "1167", "target": "1322", "attributes": { "weight": 1 } }, { "key": "33892", "source": "1167", "target": "123", "attributes": { "weight": 1 } }, { "key": "4408", "source": "1168", "target": "368", "attributes": { "weight": 2 } }, { "key": "4409", "source": "1169", "target": "368", "attributes": { "weight": 2 } }, { "key": "33899", "source": "1169", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4415", "source": "1170", "target": "368", "attributes": { "weight": 2 } }, { "key": "4414", "source": "1170", "target": "779", "attributes": { "weight": 2 } }, { "key": "33900", "source": "1170", "target": "1233", "attributes": { "weight": 1 } }, { "key": "8481", "source": "1170", "target": "195", "attributes": { "weight": 3 } }, { "key": "33901", "source": "1171", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4416", "source": "1171", "target": "1196", "attributes": { "weight": 2 } }, { "key": "15558", "source": "1171", "target": "913", "attributes": { "weight": 1 } }, { "key": "21865", "source": "1171", "target": "2212", "attributes": { "weight": 1 } }, { "key": "33903", "source": "1171", "target": "123", "attributes": { "weight": 1 } }, { "key": "15557", "source": "1171", "target": "195", "attributes": { "weight": 2 } }, { "key": "15559", "source": "1171", "target": "921", "attributes": { "weight": 1 } }, { "key": "33902", "source": "1171", "target": "1232", "attributes": { "weight": 1 } }, { "key": "11475", "source": "1171", "target": "370", "attributes": { "weight": 1 } }, { "key": "4417", "source": "1171", "target": "1090", "attributes": { "weight": 2 } }, { "key": "36498", "source": "1172", "target": "1294", "attributes": { "weight": 1 } }, { "key": "33904", "source": "1172", "target": "1182", "attributes": { "weight": 1 } }, { "key": "4423", "source": "1172", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11477", "source": "1172", "target": "208", "attributes": { "weight": 3 } }, { "key": "15562", "source": "1172", "target": "925", "attributes": { "weight": 1 } }, { "key": "18587", "source": "1172", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18585", "source": "1172", "target": "1174", "attributes": { "weight": 2 } }, { "key": "36499", "source": "1172", "target": "218", "attributes": { "weight": 1 } }, { "key": "4421", "source": "1172", "target": "1196", "attributes": { "weight": 2 } }, { "key": "8483", "source": "1172", "target": "195", "attributes": { "weight": 4 } }, { "key": "36497", "source": "1172", "target": "337", "attributes": { "weight": 1 } }, { "key": "15560", "source": "1172", "target": "913", "attributes": { "weight": 1 } }, { "key": "15561", "source": "1172", "target": "921", "attributes": { "weight": 1 } }, { "key": "4419", "source": "1172", "target": "938", "attributes": { "weight": 3 } }, { "key": "33905", "source": "1172", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4422", "source": "1172", "target": "123", "attributes": { "weight": 3 } }, { "key": "33906", "source": "1172", "target": "1232", "attributes": { "weight": 1 } }, { "key": "4420", "source": "1172", "target": "779", "attributes": { "weight": 2 } }, { "key": "11476", "source": "1172", "target": "370", "attributes": { "weight": 2 } }, { "key": "18586", "source": "1172", "target": "199", "attributes": { "weight": 2 } }, { "key": "33908", "source": "1173", "target": "1323", "attributes": { "weight": 1 } }, { "key": "4425", "source": "1173", "target": "1294", "attributes": { "weight": 3 } }, { "key": "4426", "source": "1173", "target": "1322", "attributes": { "weight": 2 } }, { "key": "15563", "source": "1173", "target": "1329", "attributes": { "weight": 1 } }, { "key": "36502", "source": "1173", "target": "1331", "attributes": { "weight": 1 } }, { "key": "36500", "source": "1173", "target": "1284", "attributes": { "weight": 1 } }, { "key": "33907", "source": "1173", "target": "1197", "attributes": { "weight": 2 } }, { "key": "11478", "source": "1173", "target": "370", "attributes": { "weight": 1 } }, { "key": "4424", "source": "1173", "target": "1291", "attributes": { "weight": 2 } }, { "key": "18588", "source": "1173", "target": "337", "attributes": { "weight": 2 } }, { "key": "25513", "source": "1173", "target": "2603", "attributes": { "weight": 1 } }, { "key": "36501", "source": "1173", "target": "1326", "attributes": { "weight": 1 } }, { "key": "15564", "source": "1174", "target": "912", "attributes": { "weight": 1 } }, { "key": "18615", "source": "1174", "target": "1296", "attributes": { "weight": 2 } }, { "key": "4428", "source": "1174", "target": "368", "attributes": { "weight": 3 } }, { "key": "18604", "source": "1174", "target": "1238", "attributes": { "weight": 2 } }, { "key": "18618", "source": "1174", "target": "1792", "attributes": { "weight": 2 } }, { "key": "18592", "source": "1174", "target": "1152", "attributes": { "weight": 2 } }, { "key": "18596", "source": "1174", "target": "1182", "attributes": { "weight": 3 } }, { "key": "36506", "source": "1174", "target": "1225", "attributes": { "weight": 1 } }, { "key": "18626", "source": "1174", "target": "218", "attributes": { "weight": 2 } }, { "key": "36508", "source": "1174", "target": "1228", "attributes": { "weight": 1 } }, { "key": "4431", "source": "1174", "target": "371", "attributes": { "weight": 2 } }, { "key": "18610", "source": "1174", "target": "924", "attributes": { "weight": 2 } }, { "key": "18601", "source": "1174", "target": "199", "attributes": { "weight": 3 } }, { "key": "18594", "source": "1174", "target": "1165", "attributes": { "weight": 2 } }, { "key": "36507", "source": "1174", "target": "918", "attributes": { "weight": 1 } }, { "key": "18605", "source": "1174", "target": "337", "attributes": { "weight": 3 } }, { "key": "18625", "source": "1174", "target": "124", "attributes": { "weight": 2 } }, { "key": "33910", "source": "1174", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18608", "source": "1174", "target": "208", "attributes": { "weight": 2 } }, { "key": "36505", "source": "1174", "target": "1532", "attributes": { "weight": 1 } }, { "key": "18612", "source": "1174", "target": "926", "attributes": { "weight": 2 } }, { "key": "18614", "source": "1174", "target": "1289", "attributes": { "weight": 2 } }, { "key": "36511", "source": "1174", "target": "1263", "attributes": { "weight": 1 } }, { "key": "18595", "source": "1174", "target": "1172", "attributes": { "weight": 2 } }, { "key": "15568", "source": "1174", "target": "1329", "attributes": { "weight": 3 } }, { "key": "36509", "source": "1174", "target": "205", "attributes": { "weight": 1 } }, { "key": "18589", "source": "1174", "target": "1140", "attributes": { "weight": 2 } }, { "key": "36504", "source": "1174", "target": "1180", "attributes": { "weight": 1 } }, { "key": "18602", "source": "1174", "target": "1210", "attributes": { "weight": 2 } }, { "key": "36510", "source": "1174", "target": "1255", "attributes": { "weight": 1 } }, { "key": "36513", "source": "1174", "target": "1286", "attributes": { "weight": 1 } }, { "key": "18613", "source": "1174", "target": "1281", "attributes": { "weight": 1 } }, { "key": "4427", "source": "1174", "target": "779", "attributes": { "weight": 4 } }, { "key": "18624", "source": "1174", "target": "961", "attributes": { "weight": 2 } }, { "key": "18598", "source": "1174", "target": "387", "attributes": { "weight": 1 } }, { "key": "18607", "source": "1174", "target": "1262", "attributes": { "weight": 1 } }, { "key": "33909", "source": "1174", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18609", "source": "1174", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18600", "source": "1174", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18597", "source": "1174", "target": "1184", "attributes": { "weight": 2 } }, { "key": "18606", "source": "1174", "target": "338", "attributes": { "weight": 3 } }, { "key": "33911", "source": "1174", "target": "1323", "attributes": { "weight": 1 } }, { "key": "4434", "source": "1174", "target": "1294", "attributes": { "weight": 4 } }, { "key": "4430", "source": "1174", "target": "468", "attributes": { "weight": 4 } }, { "key": "4432", "source": "1174", "target": "123", "attributes": { "weight": 3 } }, { "key": "15566", "source": "1174", "target": "925", "attributes": { "weight": 2 } }, { "key": "18603", "source": "1174", "target": "1236", "attributes": { "weight": 2 } }, { "key": "18623", "source": "1174", "target": "1321", "attributes": { "weight": 2 } }, { "key": "11479", "source": "1174", "target": "938", "attributes": { "weight": 3 } }, { "key": "28547", "source": "1174", "target": "1279", "attributes": { "weight": 1 } }, { "key": "36512", "source": "1174", "target": "1269", "attributes": { "weight": 1 } }, { "key": "8485", "source": "1174", "target": "195", "attributes": { "weight": 7 } }, { "key": "4429", "source": "1174", "target": "370", "attributes": { "weight": 3 } }, { "key": "7234", "source": "1174", "target": "1063", "attributes": { "weight": 1 } }, { "key": "18620", "source": "1174", "target": "215", "attributes": { "weight": 2 } }, { "key": "18617", "source": "1174", "target": "1301", "attributes": { "weight": 2 } }, { "key": "18616", "source": "1174", "target": "372", "attributes": { "weight": 1 } }, { "key": "18621", "source": "1174", "target": "1315", "attributes": { "weight": 2 } }, { "key": "15567", "source": "1174", "target": "1305", "attributes": { "weight": 3 } }, { "key": "18611", "source": "1174", "target": "1268", "attributes": { "weight": 2 } }, { "key": "36515", "source": "1174", "target": "1322", "attributes": { "weight": 1 } }, { "key": "35094", "source": "1174", "target": "200", "attributes": { "weight": 1 } }, { "key": "18599", "source": "1174", "target": "1194", "attributes": { "weight": 2 } }, { "key": "18622", "source": "1174", "target": "405", "attributes": { "weight": 2 } }, { "key": "18619", "source": "1174", "target": "1309", "attributes": { "weight": 2 } }, { "key": "15565", "source": "1174", "target": "913", "attributes": { "weight": 3 } }, { "key": "36514", "source": "1174", "target": "212", "attributes": { "weight": 1 } }, { "key": "18590", "source": "1174", "target": "933", "attributes": { "weight": 2 } }, { "key": "18593", "source": "1174", "target": "1156", "attributes": { "weight": 2 } }, { "key": "18591", "source": "1174", "target": "236", "attributes": { "weight": 1 } }, { "key": "36503", "source": "1174", "target": "1162", "attributes": { "weight": 1 } }, { "key": "4433", "source": "1174", "target": "1090", "attributes": { "weight": 2 } }, { "key": "8487", "source": "1175", "target": "195", "attributes": { "weight": 4 } }, { "key": "33917", "source": "1175", "target": "123", "attributes": { "weight": 1 } }, { "key": "33915", "source": "1175", "target": "1232", "attributes": { "weight": 1 } }, { "key": "4440", "source": "1175", "target": "368", "attributes": { "weight": 2 } }, { "key": "4438", "source": "1175", "target": "779", "attributes": { "weight": 2 } }, { "key": "4441", "source": "1175", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15573", "source": "1175", "target": "913", "attributes": { "weight": 1 } }, { "key": "4439", "source": "1175", "target": "1196", "attributes": { "weight": 2 } }, { "key": "33916", "source": "1175", "target": "1233", "attributes": { "weight": 1 } }, { "key": "15574", "source": "1175", "target": "921", "attributes": { "weight": 1 } }, { "key": "4444", "source": "1176", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4443", "source": "1176", "target": "1196", "attributes": { "weight": 2 } }, { "key": "15575", "source": "1176", "target": "913", "attributes": { "weight": 1 } }, { "key": "18627", "source": "1176", "target": "938", "attributes": { "weight": 2 } }, { "key": "36516", "source": "1176", "target": "1197", "attributes": { "weight": 1 } }, { "key": "18630", "source": "1176", "target": "218", "attributes": { "weight": 2 } }, { "key": "8489", "source": "1176", "target": "195", "attributes": { "weight": 5 } }, { "key": "18629", "source": "1176", "target": "208", "attributes": { "weight": 2 } }, { "key": "4442", "source": "1176", "target": "779", "attributes": { "weight": 2 } }, { "key": "33918", "source": "1176", "target": "123", "attributes": { "weight": 1 } }, { "key": "18628", "source": "1176", "target": "921", "attributes": { "weight": 2 } }, { "key": "30179", "source": "1177", "target": "1143", "attributes": { "weight": 2 } }, { "key": "30180", "source": "1177", "target": "173", "attributes": { "weight": 1 } }, { "key": "4446", "source": "1177", "target": "297", "attributes": { "weight": 3 } }, { "key": "35369", "source": "1177", "target": "1996", "attributes": { "weight": 1 } }, { "key": "4447", "source": "1177", "target": "310", "attributes": { "weight": 3 } }, { "key": "4445", "source": "1177", "target": "1166", "attributes": { "weight": 3 } }, { "key": "17835", "source": "1178", "target": "178", "attributes": { "weight": 2 } }, { "key": "28759", "source": "1178", "target": "1166", "attributes": { "weight": 2 } }, { "key": "28766", "source": "1178", "target": "2810", "attributes": { "weight": 1 } }, { "key": "28761", "source": "1178", "target": "2798", "attributes": { "weight": 1 } }, { "key": "28770", "source": "1178", "target": "2818", "attributes": { "weight": 1 } }, { "key": "28769", "source": "1178", "target": "2815", "attributes": { "weight": 1 } }, { "key": "28771", "source": "1178", "target": "2121", "attributes": { "weight": 1 } }, { "key": "25148", "source": "1178", "target": "1996", "attributes": { "weight": 3 } }, { "key": "28763", "source": "1178", "target": "2801", "attributes": { "weight": 1 } }, { "key": "25149", "source": "1178", "target": "2120", "attributes": { "weight": 2 } }, { "key": "28762", "source": "1178", "target": "2799", "attributes": { "weight": 1 } }, { "key": "4464", "source": "1178", "target": "310", "attributes": { "weight": 7 } }, { "key": "28767", "source": "1178", "target": "2812", "attributes": { "weight": 1 } }, { "key": "28764", "source": "1178", "target": "2808", "attributes": { "weight": 1 } }, { "key": "28758", "source": "1178", "target": "2791", "attributes": { "weight": 1 } }, { "key": "28760", "source": "1178", "target": "2555", "attributes": { "weight": 1 } }, { "key": "28768", "source": "1178", "target": "2813", "attributes": { "weight": 1 } }, { "key": "25146", "source": "1178", "target": "1146", "attributes": { "weight": 2 } }, { "key": "28765", "source": "1178", "target": "2809", "attributes": { "weight": 1 } }, { "key": "25147", "source": "1178", "target": "297", "attributes": { "weight": 3 } }, { "key": "8651", "source": "1179", "target": "195", "attributes": { "weight": 3 } }, { "key": "4466", "source": "1179", "target": "921", "attributes": { "weight": 3 } }, { "key": "4467", "source": "1179", "target": "123", "attributes": { "weight": 2 } }, { "key": "4465", "source": "1179", "target": "779", "attributes": { "weight": 2 } }, { "key": "33922", "source": "1179", "target": "1232", "attributes": { "weight": 1 } }, { "key": "4468", "source": "1179", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4470", "source": "1180", "target": "1196", "attributes": { "weight": 2 } }, { "key": "33926", "source": "1180", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18632", "source": "1180", "target": "1552", "attributes": { "weight": 2 } }, { "key": "4472", "source": "1180", "target": "371", "attributes": { "weight": 2 } }, { "key": "36518", "source": "1180", "target": "1228", "attributes": { "weight": 1 } }, { "key": "8652", "source": "1180", "target": "195", "attributes": { "weight": 6 } }, { "key": "33923", "source": "1180", "target": "1182", "attributes": { "weight": 1 } }, { "key": "11480", "source": "1180", "target": "938", "attributes": { "weight": 2 } }, { "key": "18631", "source": "1180", "target": "1174", "attributes": { "weight": 2 } }, { "key": "33924", "source": "1180", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4473", "source": "1180", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4469", "source": "1180", "target": "779", "attributes": { "weight": 2 } }, { "key": "4471", "source": "1180", "target": "368", "attributes": { "weight": 2 } }, { "key": "15579", "source": "1180", "target": "913", "attributes": { "weight": 1 } }, { "key": "18633", "source": "1180", "target": "218", "attributes": { "weight": 1 } }, { "key": "36517", "source": "1180", "target": "1165", "attributes": { "weight": 1 } }, { "key": "11481", "source": "1180", "target": "370", "attributes": { "weight": 2 } }, { "key": "33925", "source": "1180", "target": "1232", "attributes": { "weight": 1 } }, { "key": "15580", "source": "1180", "target": "921", "attributes": { "weight": 1 } }, { "key": "33927", "source": "1180", "target": "123", "attributes": { "weight": 1 } }, { "key": "18142", "source": "1181", "target": "1197", "attributes": { "weight": 2 } }, { "key": "4475", "source": "1181", "target": "123", "attributes": { "weight": 3 } }, { "key": "21872", "source": "1181", "target": "2300", "attributes": { "weight": 1 } }, { "key": "8653", "source": "1181", "target": "195", "attributes": { "weight": 3 } }, { "key": "15581", "source": "1181", "target": "913", "attributes": { "weight": 1 } }, { "key": "21874", "source": "1181", "target": "2212", "attributes": { "weight": 1 } }, { "key": "4474", "source": "1181", "target": "368", "attributes": { "weight": 2 } }, { "key": "15582", "source": "1181", "target": "925", "attributes": { "weight": 1 } }, { "key": "21870", "source": "1181", "target": "2293", "attributes": { "weight": 1 } }, { "key": "21871", "source": "1181", "target": "337", "attributes": { "weight": 1 } }, { "key": "21873", "source": "1181", "target": "2301", "attributes": { "weight": 1 } }, { "key": "15584", "source": "1182", "target": "913", "attributes": { "weight": 1 } }, { "key": "33962", "source": "1182", "target": "1294", "attributes": { "weight": 1 } }, { "key": "33943", "source": "1182", "target": "3138", "attributes": { "weight": 1 } }, { "key": "7239", "source": "1182", "target": "1063", "attributes": { "weight": 2 } }, { "key": "4481", "source": "1182", "target": "1090", "attributes": { "weight": 2 } }, { "key": "33939", "source": "1182", "target": "1180", "attributes": { "weight": 1 } }, { "key": "33942", "source": "1182", "target": "1196", "attributes": { "weight": 1 } }, { "key": "33947", "source": "1182", "target": "199", "attributes": { "weight": 1 } }, { "key": "33965", "source": "1182", "target": "1309", "attributes": { "weight": 1 } }, { "key": "33944", "source": "1182", "target": "1202", "attributes": { "weight": 1 } }, { "key": "33958", "source": "1182", "target": "208", "attributes": { "weight": 1 } }, { "key": "33961", "source": "1182", "target": "212", "attributes": { "weight": 1 } }, { "key": "33951", "source": "1182", "target": "1232", "attributes": { "weight": 1 } }, { "key": "33953", "source": "1182", "target": "1236", "attributes": { "weight": 1 } }, { "key": "33955", "source": "1182", "target": "337", "attributes": { "weight": 2 } }, { "key": "33933", "source": "1182", "target": "1152", "attributes": { "weight": 1 } }, { "key": "33971", "source": "1182", "target": "218", "attributes": { "weight": 1 } }, { "key": "4478", "source": "1182", "target": "370", "attributes": { "weight": 3 } }, { "key": "4476", "source": "1182", "target": "779", "attributes": { "weight": 3 } }, { "key": "18145", "source": "1182", "target": "372", "attributes": { "weight": 1 } }, { "key": "33932", "source": "1182", "target": "933", "attributes": { "weight": 1 } }, { "key": "15585", "source": "1182", "target": "921", "attributes": { "weight": 2 } }, { "key": "33936", "source": "1182", "target": "938", "attributes": { "weight": 1 } }, { "key": "8656", "source": "1182", "target": "195", "attributes": { "weight": 6 } }, { "key": "33950", "source": "1182", "target": "918", "attributes": { "weight": 1 } }, { "key": "33934", "source": "1182", "target": "3132", "attributes": { "weight": 1 } }, { "key": "4479", "source": "1182", "target": "371", "attributes": { "weight": 2 } }, { "key": "33940", "source": "1182", "target": "1184", "attributes": { "weight": 1 } }, { "key": "18144", "source": "1182", "target": "1197", "attributes": { "weight": 3 } }, { "key": "33967", "source": "1182", "target": "1321", "attributes": { "weight": 1 } }, { "key": "33966", "source": "1182", "target": "215", "attributes": { "weight": 1 } }, { "key": "33938", "source": "1182", "target": "1174", "attributes": { "weight": 2 } }, { "key": "33960", "source": "1182", "target": "926", "attributes": { "weight": 1 } }, { "key": "33948", "source": "1182", "target": "1210", "attributes": { "weight": 1 } }, { "key": "33937", "source": "1182", "target": "1172", "attributes": { "weight": 1 } }, { "key": "18146", "source": "1182", "target": "2205", "attributes": { "weight": 1 } }, { "key": "15586", "source": "1182", "target": "925", "attributes": { "weight": 2 } }, { "key": "33954", "source": "1182", "target": "3146", "attributes": { "weight": 1 } }, { "key": "33957", "source": "1182", "target": "1263", "attributes": { "weight": 1 } }, { "key": "33952", "source": "1182", "target": "1233", "attributes": { "weight": 1 } }, { "key": "33963", "source": "1182", "target": "3157", "attributes": { "weight": 1 } }, { "key": "33964", "source": "1182", "target": "1307", "attributes": { "weight": 1 } }, { "key": "18634", "source": "1182", "target": "1552", "attributes": { "weight": 2 } }, { "key": "33959", "source": "1182", "target": "1269", "attributes": { "weight": 1 } }, { "key": "33949", "source": "1182", "target": "1225", "attributes": { "weight": 1 } }, { "key": "33945", "source": "1182", "target": "1047", "attributes": { "weight": 1 } }, { "key": "33969", "source": "1182", "target": "124", "attributes": { "weight": 1 } }, { "key": "18143", "source": "1182", "target": "387", "attributes": { "weight": 2 } }, { "key": "33941", "source": "1182", "target": "1194", "attributes": { "weight": 1 } }, { "key": "4480", "source": "1182", "target": "123", "attributes": { "weight": 3 } }, { "key": "33956", "source": "1182", "target": "338", "attributes": { "weight": 1 } }, { "key": "33935", "source": "1182", "target": "1165", "attributes": { "weight": 2 } }, { "key": "33946", "source": "1182", "target": "3141", "attributes": { "weight": 1 } }, { "key": "4477", "source": "1182", "target": "368", "attributes": { "weight": 3 } }, { "key": "33970", "source": "1182", "target": "928", "attributes": { "weight": 1 } }, { "key": "33968", "source": "1182", "target": "1323", "attributes": { "weight": 1 } }, { "key": "4482", "source": "1183", "target": "368", "attributes": { "weight": 2 } }, { "key": "33972", "source": "1183", "target": "1233", "attributes": { "weight": 1 } }, { "key": "33974", "source": "1184", "target": "1182", "attributes": { "weight": 1 } }, { "key": "36522", "source": "1184", "target": "337", "attributes": { "weight": 1 } }, { "key": "33977", "source": "1184", "target": "1232", "attributes": { "weight": 1 } }, { "key": "7240", "source": "1184", "target": "1063", "attributes": { "weight": 2 } }, { "key": "15590", "source": "1184", "target": "925", "attributes": { "weight": 1 } }, { "key": "4622", "source": "1184", "target": "370", "attributes": { "weight": 3 } }, { "key": "33975", "source": "1184", "target": "1197", "attributes": { "weight": 2 } }, { "key": "15587", "source": "1184", "target": "938", "attributes": { "weight": 1 } }, { "key": "4627", "source": "1184", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4620", "source": "1184", "target": "1196", "attributes": { "weight": 2 } }, { "key": "33976", "source": "1184", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18636", "source": "1184", "target": "1174", "attributes": { "weight": 2 } }, { "key": "4623", "source": "1184", "target": "338", "attributes": { "weight": 4 } }, { "key": "4621", "source": "1184", "target": "368", "attributes": { "weight": 2 } }, { "key": "36521", "source": "1184", "target": "199", "attributes": { "weight": 1 } }, { "key": "33978", "source": "1184", "target": "1233", "attributes": { "weight": 1 } }, { "key": "36520", "source": "1184", "target": "1165", "attributes": { "weight": 1 } }, { "key": "15592", "source": "1184", "target": "215", "attributes": { "weight": 2 } }, { "key": "15588", "source": "1184", "target": "913", "attributes": { "weight": 1 } }, { "key": "4628", "source": "1184", "target": "1294", "attributes": { "weight": 3 } }, { "key": "18639", "source": "1184", "target": "124", "attributes": { "weight": 2 } }, { "key": "18638", "source": "1184", "target": "1308", "attributes": { "weight": 1 } }, { "key": "4619", "source": "1184", "target": "779", "attributes": { "weight": 2 } }, { "key": "4626", "source": "1184", "target": "123", "attributes": { "weight": 3 } }, { "key": "8661", "source": "1184", "target": "195", "attributes": { "weight": 8 } }, { "key": "15589", "source": "1184", "target": "208", "attributes": { "weight": 2 } }, { "key": "4625", "source": "1184", "target": "371", "attributes": { "weight": 2 } }, { "key": "35095", "source": "1184", "target": "200", "attributes": { "weight": 1 } }, { "key": "4624", "source": "1184", "target": "921", "attributes": { "weight": 3 } }, { "key": "15591", "source": "1184", "target": "1305", "attributes": { "weight": 1 } }, { "key": "15593", "source": "1184", "target": "218", "attributes": { "weight": 2 } }, { "key": "18637", "source": "1184", "target": "1552", "attributes": { "weight": 2 } }, { "key": "4629", "source": "1185", "target": "368", "attributes": { "weight": 2 } }, { "key": "4630", "source": "1185", "target": "123", "attributes": { "weight": 2 } }, { "key": "7883", "source": "1186", "target": "1438", "attributes": { "weight": 3 } }, { "key": "7903", "source": "1186", "target": "117", "attributes": { "weight": 1 } }, { "key": "21669", "source": "1186", "target": "108", "attributes": { "weight": 2 } }, { "key": "7884", "source": "1186", "target": "103", "attributes": { "weight": 4 } }, { "key": "7898", "source": "1186", "target": "114", "attributes": { "weight": 1 } }, { "key": "7889", "source": "1186", "target": "1455", "attributes": { "weight": 1 } }, { "key": "7887", "source": "1186", "target": "1450", "attributes": { "weight": 1 } }, { "key": "7892", "source": "1186", "target": "1458", "attributes": { "weight": 1 } }, { "key": "7897", "source": "1186", "target": "607", "attributes": { "weight": 1 } }, { "key": "7882", "source": "1186", "target": "1437", "attributes": { "weight": 1 } }, { "key": "7902", "source": "1186", "target": "116", "attributes": { "weight": 3 } }, { "key": "7891", "source": "1186", "target": "110", "attributes": { "weight": 2 } }, { "key": "21668", "source": "1186", "target": "1445", "attributes": { "weight": 2 } }, { "key": "7901", "source": "1186", "target": "1498", "attributes": { "weight": 1 } }, { "key": "7900", "source": "1186", "target": "1495", "attributes": { "weight": 3 } }, { "key": "7904", "source": "1186", "target": "118", "attributes": { "weight": 2 } }, { "key": "7885", "source": "1186", "target": "105", "attributes": { "weight": 1 } }, { "key": "7907", "source": "1186", "target": "1506", "attributes": { "weight": 2 } }, { "key": "7886", "source": "1186", "target": "1447", "attributes": { "weight": 1 } }, { "key": "4631", "source": "1186", "target": "371", "attributes": { "weight": 3 } }, { "key": "7899", "source": "1186", "target": "1306", "attributes": { "weight": 2 } }, { "key": "7896", "source": "1186", "target": "1477", "attributes": { "weight": 2 } }, { "key": "14023", "source": "1186", "target": "1031", "attributes": { "weight": 1 } }, { "key": "7906", "source": "1186", "target": "119", "attributes": { "weight": 1 } }, { "key": "7893", "source": "1186", "target": "1460", "attributes": { "weight": 1 } }, { "key": "7895", "source": "1186", "target": "1261", "attributes": { "weight": 1 } }, { "key": "7894", "source": "1186", "target": "1463", "attributes": { "weight": 1 } }, { "key": "7888", "source": "1186", "target": "604", "attributes": { "weight": 1 } }, { "key": "7890", "source": "1186", "target": "109", "attributes": { "weight": 4 } }, { "key": "10068", "source": "1186", "target": "602", "attributes": { "weight": 1 } }, { "key": "7905", "source": "1186", "target": "1505", "attributes": { "weight": 2 } }, { "key": "32870", "source": "1186", "target": "470", "attributes": { "weight": 1 } }, { "key": "21670", "source": "1186", "target": "1459", "attributes": { "weight": 1 } }, { "key": "30186", "source": "1187", "target": "2965", "attributes": { "weight": 1 } }, { "key": "30061", "source": "1187", "target": "2935", "attributes": { "weight": 1 } }, { "key": "30059", "source": "1187", "target": "2933", "attributes": { "weight": 1 } }, { "key": "30057", "source": "1187", "target": "2930", "attributes": { "weight": 1 } }, { "key": "30184", "source": "1187", "target": "1151", "attributes": { "weight": 1 } }, { "key": "4632", "source": "1187", "target": "1166", "attributes": { "weight": 9 } }, { "key": "25150", "source": "1187", "target": "1143", "attributes": { "weight": 1 } }, { "key": "29944", "source": "1187", "target": "1952", "attributes": { "weight": 2 } }, { "key": "30056", "source": "1187", "target": "2923", "attributes": { "weight": 1 } }, { "key": "30062", "source": "1187", "target": "2936", "attributes": { "weight": 1 } }, { "key": "30187", "source": "1187", "target": "2557", "attributes": { "weight": 1 } }, { "key": "24921", "source": "1187", "target": "170", "attributes": { "weight": 3 } }, { "key": "28773", "source": "1187", "target": "1146", "attributes": { "weight": 3 } }, { "key": "30055", "source": "1187", "target": "2922", "attributes": { "weight": 1 } }, { "key": "25151", "source": "1187", "target": "165", "attributes": { "weight": 2 } }, { "key": "24922", "source": "1187", "target": "580", "attributes": { "weight": 3 } }, { "key": "25154", "source": "1187", "target": "173", "attributes": { "weight": 1 } }, { "key": "17350", "source": "1187", "target": "2964", "attributes": { "weight": 2 } }, { "key": "30188", "source": "1187", "target": "1341", "attributes": { "weight": 1 } }, { "key": "25155", "source": "1187", "target": "310", "attributes": { "weight": 4 } }, { "key": "30063", "source": "1187", "target": "2942", "attributes": { "weight": 2 } }, { "key": "12328", "source": "1187", "target": "1843", "attributes": { "weight": 1 } }, { "key": "33980", "source": "1187", "target": "700", "attributes": { "weight": 1 } }, { "key": "25152", "source": "1187", "target": "297", "attributes": { "weight": 4 } }, { "key": "30060", "source": "1187", "target": "2934", "attributes": { "weight": 1 } }, { "key": "29945", "source": "1187", "target": "1953", "attributes": { "weight": 1 } }, { "key": "10810", "source": "1187", "target": "168", "attributes": { "weight": 3 } }, { "key": "30058", "source": "1187", "target": "2932", "attributes": { "weight": 1 } }, { "key": "25153", "source": "1187", "target": "1996", "attributes": { "weight": 1 } }, { "key": "30185", "source": "1187", "target": "2553", "attributes": { "weight": 1 } }, { "key": "33985", "source": "1188", "target": "338", "attributes": { "weight": 1 } }, { "key": "33982", "source": "1188", "target": "1197", "attributes": { "weight": 1 } }, { "key": "33984", "source": "1188", "target": "1233", "attributes": { "weight": 1 } }, { "key": "21876", "source": "1188", "target": "337", "attributes": { "weight": 1 } }, { "key": "33983", "source": "1188", "target": "1232", "attributes": { "weight": 1 } }, { "key": "10191", "source": "1188", "target": "1322", "attributes": { "weight": 1 } }, { "key": "15596", "source": "1188", "target": "195", "attributes": { "weight": 2 } }, { "key": "33987", "source": "1188", "target": "1323", "attributes": { "weight": 1 } }, { "key": "15597", "source": "1188", "target": "1329", "attributes": { "weight": 1 } }, { "key": "33986", "source": "1188", "target": "123", "attributes": { "weight": 1 } }, { "key": "4633", "source": "1188", "target": "368", "attributes": { "weight": 2 } }, { "key": "4634", "source": "1189", "target": "368", "attributes": { "weight": 2 } }, { "key": "4635", "source": "1189", "target": "123", "attributes": { "weight": 2 } }, { "key": "36523", "source": "1190", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18640", "source": "1190", "target": "1248", "attributes": { "weight": 1 } }, { "key": "4638", "source": "1190", "target": "368", "attributes": { "weight": 2 } }, { "key": "33989", "source": "1190", "target": "1233", "attributes": { "weight": 1 } }, { "key": "24923", "source": "1191", "target": "2536", "attributes": { "weight": 1 } }, { "key": "23180", "source": "1191", "target": "1227", "attributes": { "weight": 1 } }, { "key": "28344", "source": "1191", "target": "2768", "attributes": { "weight": 1 } }, { "key": "23216", "source": "1191", "target": "1871", "attributes": { "weight": 2 } }, { "key": "12069", "source": "1191", "target": "1824", "attributes": { "weight": 3 } }, { "key": "12984", "source": "1191", "target": "304", "attributes": { "weight": 2 } }, { "key": "12065", "source": "1191", "target": "707", "attributes": { "weight": 4 } }, { "key": "24927", "source": "1191", "target": "278", "attributes": { "weight": 4 } }, { "key": "28340", "source": "1191", "target": "700", "attributes": { "weight": 2 } }, { "key": "24928", "source": "1191", "target": "2437", "attributes": { "weight": 2 } }, { "key": "28345", "source": "1191", "target": "2772", "attributes": { "weight": 1 } }, { "key": "24924", "source": "1191", "target": "2546", "attributes": { "weight": 2 } }, { "key": "4639", "source": "1191", "target": "580", "attributes": { "weight": 6 } }, { "key": "24925", "source": "1191", "target": "1905", "attributes": { "weight": 2 } }, { "key": "32266", "source": "1191", "target": "164", "attributes": { "weight": 1 } }, { "key": "24835", "source": "1191", "target": "2541", "attributes": { "weight": 1 } }, { "key": "14187", "source": "1191", "target": "168", "attributes": { "weight": 2 } }, { "key": "28343", "source": "1191", "target": "1512", "attributes": { "weight": 1 } }, { "key": "12064", "source": "1191", "target": "698", "attributes": { "weight": 3 } }, { "key": "12070", "source": "1191", "target": "1825", "attributes": { "weight": 1 } }, { "key": "23217", "source": "1191", "target": "1962", "attributes": { "weight": 2 } }, { "key": "24926", "source": "1191", "target": "2538", "attributes": { "weight": 1 } }, { "key": "25679", "source": "1191", "target": "582", "attributes": { "weight": 1 } }, { "key": "12068", "source": "1191", "target": "1823", "attributes": { "weight": 5 } }, { "key": "23862", "source": "1191", "target": "2461", "attributes": { "weight": 1 } }, { "key": "12066", "source": "1191", "target": "904", "attributes": { "weight": 1 } }, { "key": "23214", "source": "1191", "target": "1979", "attributes": { "weight": 3 } }, { "key": "12067", "source": "1191", "target": "579", "attributes": { "weight": 4 } }, { "key": "24929", "source": "1191", "target": "305", "attributes": { "weight": 2 } }, { "key": "28342", "source": "1191", "target": "2344", "attributes": { "weight": 1 } }, { "key": "12571", "source": "1191", "target": "180", "attributes": { "weight": 4 } }, { "key": "28341", "source": "1191", "target": "1869", "attributes": { "weight": 1 } }, { "key": "21437", "source": "1191", "target": "1240", "attributes": { "weight": 3 } }, { "key": "23213", "source": "1191", "target": "2279", "attributes": { "weight": 2 } }, { "key": "23215", "source": "1191", "target": "1870", "attributes": { "weight": 2 } }, { "key": "22689", "source": "1191", "target": "170", "attributes": { "weight": 4 } }, { "key": "15632", "source": "1192", "target": "913", "attributes": { "weight": 1 } }, { "key": "4656", "source": "1192", "target": "123", "attributes": { "weight": 3 } }, { "key": "15633", "source": "1192", "target": "925", "attributes": { "weight": 1 } }, { "key": "8675", "source": "1193", "target": "195", "attributes": { "weight": 3 } }, { "key": "4661", "source": "1193", "target": "779", "attributes": { "weight": 2 } }, { "key": "33997", "source": "1194", "target": "1182", "attributes": { "weight": 1 } }, { "key": "36530", "source": "1194", "target": "208", "attributes": { "weight": 1 } }, { "key": "33998", "source": "1194", "target": "1197", "attributes": { "weight": 2 } }, { "key": "4663", "source": "1194", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4665", "source": "1194", "target": "921", "attributes": { "weight": 3 } }, { "key": "34000", "source": "1194", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18662", "source": "1194", "target": "218", "attributes": { "weight": 2 } }, { "key": "18661", "source": "1194", "target": "1174", "attributes": { "weight": 2 } }, { "key": "8678", "source": "1194", "target": "195", "attributes": { "weight": 6 } }, { "key": "15634", "source": "1194", "target": "913", "attributes": { "weight": 1 } }, { "key": "4664", "source": "1194", "target": "368", "attributes": { "weight": 2 } }, { "key": "4666", "source": "1194", "target": "123", "attributes": { "weight": 3 } }, { "key": "4662", "source": "1194", "target": "779", "attributes": { "weight": 2 } }, { "key": "15635", "source": "1194", "target": "925", "attributes": { "weight": 1 } }, { "key": "33999", "source": "1194", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4667", "source": "1194", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4668", "source": "1195", "target": "123", "attributes": { "weight": 2 } }, { "key": "4740", "source": "1196", "target": "1348", "attributes": { "weight": 2 } }, { "key": "4739", "source": "1196", "target": "930", "attributes": { "weight": 2 } }, { "key": "4699", "source": "1196", "target": "1238", "attributes": { "weight": 2 } }, { "key": "4718", "source": "1196", "target": "123", "attributes": { "weight": 3 } }, { "key": "4685", "source": "1196", "target": "912", "attributes": { "weight": 3 } }, { "key": "4680", "source": "1196", "target": "910", "attributes": { "weight": 2 } }, { "key": "4712", "source": "1196", "target": "925", "attributes": { "weight": 4 } }, { "key": "15637", "source": "1196", "target": "1278", "attributes": { "weight": 1 } }, { "key": "4669", "source": "1196", "target": "1145", "attributes": { "weight": 2 } }, { "key": "4686", "source": "1196", "target": "1194", "attributes": { "weight": 2 } }, { "key": "4675", "source": "1196", "target": "938", "attributes": { "weight": 3 } }, { "key": "4692", "source": "1196", "target": "917", "attributes": { "weight": 2 } }, { "key": "7252", "source": "1196", "target": "375", "attributes": { "weight": 1 } }, { "key": "4721", "source": "1196", "target": "1291", "attributes": { "weight": 2 } }, { "key": "18157", "source": "1196", "target": "1197", "attributes": { "weight": 2 } }, { "key": "4681", "source": "1196", "target": "1180", "attributes": { "weight": 2 } }, { "key": "4720", "source": "1196", "target": "212", "attributes": { "weight": 2 } }, { "key": "4673", "source": "1196", "target": "1162", "attributes": { "weight": 2 } }, { "key": "4710", "source": "1196", "target": "1268", "attributes": { "weight": 2 } }, { "key": "4713", "source": "1196", "target": "926", "attributes": { "weight": 2 } }, { "key": "4677", "source": "1196", "target": "1172", "attributes": { "weight": 2 } }, { "key": "4741", "source": "1196", "target": "1350", "attributes": { "weight": 2 } }, { "key": "4737", "source": "1196", "target": "217", "attributes": { "weight": 2 } }, { "key": "4724", "source": "1196", "target": "1296", "attributes": { "weight": 2 } }, { "key": "11484", "source": "1196", "target": "961", "attributes": { "weight": 1 } }, { "key": "34004", "source": "1196", "target": "1323", "attributes": { "weight": 2 } }, { "key": "4671", "source": "1196", "target": "1156", "attributes": { "weight": 2 } }, { "key": "4688", "source": "1196", "target": "1199", "attributes": { "weight": 2 } }, { "key": "4730", "source": "1196", "target": "215", "attributes": { "weight": 4 } }, { "key": "32097", "source": "1196", "target": "919", "attributes": { "weight": 1 } }, { "key": "18663", "source": "1196", "target": "1269", "attributes": { "weight": 2 } }, { "key": "34001", "source": "1196", "target": "1182", "attributes": { "weight": 1 } }, { "key": "4727", "source": "1196", "target": "1792", "attributes": { "weight": 2 } }, { "key": "4722", "source": "1196", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4698", "source": "1196", "target": "1236", "attributes": { "weight": 2 } }, { "key": "4674", "source": "1196", "target": "1165", "attributes": { "weight": 2 } }, { "key": "4707", "source": "1196", "target": "1263", "attributes": { "weight": 3 } }, { "key": "4714", "source": "1196", "target": "1279", "attributes": { "weight": 2 } }, { "key": "4705", "source": "1196", "target": "921", "attributes": { "weight": 3 } }, { "key": "4682", "source": "1196", "target": "779", "attributes": { "weight": 2 } }, { "key": "36532", "source": "1196", "target": "1228", "attributes": { "weight": 1 } }, { "key": "4672", "source": "1196", "target": "1160", "attributes": { "weight": 2 } }, { "key": "4732", "source": "1196", "target": "1316", "attributes": { "weight": 2 } }, { "key": "4716", "source": "1196", "target": "1283", "attributes": { "weight": 2 } }, { "key": "4709", "source": "1196", "target": "924", "attributes": { "weight": 3 } }, { "key": "4725", "source": "1196", "target": "214", "attributes": { "weight": 2 } }, { "key": "4729", "source": "1196", "target": "1309", "attributes": { "weight": 2 } }, { "key": "4726", "source": "1196", "target": "1301", "attributes": { "weight": 2 } }, { "key": "4743", "source": "1196", "target": "1063", "attributes": { "weight": 3 } }, { "key": "4702", "source": "1196", "target": "370", "attributes": { "weight": 3 } }, { "key": "4693", "source": "1196", "target": "918", "attributes": { "weight": 2 } }, { "key": "36531", "source": "1196", "target": "1152", "attributes": { "weight": 1 } }, { "key": "4695", "source": "1196", "target": "945", "attributes": { "weight": 2 } }, { "key": "4690", "source": "1196", "target": "1207", "attributes": { "weight": 2 } }, { "key": "34002", "source": "1196", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4683", "source": "1196", "target": "1184", "attributes": { "weight": 2 } }, { "key": "4697", "source": "1196", "target": "1235", "attributes": { "weight": 2 } }, { "key": "4742", "source": "1196", "target": "154", "attributes": { "weight": 3 } }, { "key": "4731", "source": "1196", "target": "1315", "attributes": { "weight": 2 } }, { "key": "4701", "source": "1196", "target": "205", "attributes": { "weight": 2 } }, { "key": "4691", "source": "1196", "target": "199", "attributes": { "weight": 3 } }, { "key": "4670", "source": "1196", "target": "933", "attributes": { "weight": 2 } }, { "key": "4676", "source": "1196", "target": "1171", "attributes": { "weight": 2 } }, { "key": "4706", "source": "1196", "target": "1255", "attributes": { "weight": 2 } }, { "key": "4679", "source": "1196", "target": "1176", "attributes": { "weight": 2 } }, { "key": "4704", "source": "1196", "target": "338", "attributes": { "weight": 4 } }, { "key": "4678", "source": "1196", "target": "1175", "attributes": { "weight": 2 } }, { "key": "4715", "source": "1196", "target": "1281", "attributes": { "weight": 2 } }, { "key": "4723", "source": "1196", "target": "1294", "attributes": { "weight": 2 } }, { "key": "4717", "source": "1196", "target": "1287", "attributes": { "weight": 3 } }, { "key": "4735", "source": "1196", "target": "124", "attributes": { "weight": 3 } }, { "key": "4711", "source": "1196", "target": "371", "attributes": { "weight": 2 } }, { "key": "15636", "source": "1196", "target": "920", "attributes": { "weight": 1 } }, { "key": "4696", "source": "1196", "target": "1229", "attributes": { "weight": 2 } }, { "key": "4736", "source": "1196", "target": "928", "attributes": { "weight": 2 } }, { "key": "4719", "source": "1196", "target": "1289", "attributes": { "weight": 2 } }, { "key": "15638", "source": "1196", "target": "1329", "attributes": { "weight": 1 } }, { "key": "4694", "source": "1196", "target": "1226", "attributes": { "weight": 2 } }, { "key": "4703", "source": "1196", "target": "337", "attributes": { "weight": 2 } }, { "key": "4700", "source": "1196", "target": "1241", "attributes": { "weight": 2 } }, { "key": "4708", "source": "1196", "target": "208", "attributes": { "weight": 3 } }, { "key": "8679", "source": "1196", "target": "195", "attributes": { "weight": 7 } }, { "key": "4689", "source": "1196", "target": "913", "attributes": { "weight": 3 } }, { "key": "4734", "source": "1196", "target": "1333", "attributes": { "weight": 2 } }, { "key": "4684", "source": "1196", "target": "911", "attributes": { "weight": 2 } }, { "key": "4687", "source": "1196", "target": "368", "attributes": { "weight": 2 } }, { "key": "4728", "source": "1196", "target": "1305", "attributes": { "weight": 2 } }, { "key": "4733", "source": "1196", "target": "1321", "attributes": { "weight": 2 } }, { "key": "4738", "source": "1196", "target": "218", "attributes": { "weight": 3 } }, { "key": "10192", "source": "1196", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34003", "source": "1196", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34009", "source": "1197", "target": "1162", "attributes": { "weight": 1 } }, { "key": "34032", "source": "1197", "target": "1232", "attributes": { "weight": 2 } }, { "key": "7253", "source": "1197", "target": "195", "attributes": { "weight": 11 } }, { "key": "18672", "source": "1197", "target": "1343", "attributes": { "weight": 3 } }, { "key": "37499", "source": "1197", "target": "3382", "attributes": { "weight": 1 } }, { "key": "18173", "source": "1197", "target": "1196", "attributes": { "weight": 2 } }, { "key": "34051", "source": "1197", "target": "1296", "attributes": { "weight": 2 } }, { "key": "15644", "source": "1197", "target": "1329", "attributes": { "weight": 5 } }, { "key": "34016", "source": "1197", "target": "1194", "attributes": { "weight": 2 } }, { "key": "34011", "source": "1197", "target": "1167", "attributes": { "weight": 2 } }, { "key": "7258", "source": "1197", "target": "154", "attributes": { "weight": 2 } }, { "key": "18195", "source": "1197", "target": "1278", "attributes": { "weight": 2 } }, { "key": "18182", "source": "1197", "target": "917", "attributes": { "weight": 1 } }, { "key": "18180", "source": "1197", "target": "1211", "attributes": { "weight": 2 } }, { "key": "34057", "source": "1197", "target": "1308", "attributes": { "weight": 2 } }, { "key": "18200", "source": "1197", "target": "2203", "attributes": { "weight": 3 } }, { "key": "18191", "source": "1197", "target": "923", "attributes": { "weight": 1 } }, { "key": "34061", "source": "1197", "target": "2049", "attributes": { "weight": 1 } }, { "key": "34025", "source": "1197", "target": "1225", "attributes": { "weight": 2 } }, { "key": "18167", "source": "1197", "target": "1681", "attributes": { "weight": 2 } }, { "key": "34034", "source": "1197", "target": "2037", "attributes": { "weight": 1 } }, { "key": "34052", "source": "1197", "target": "1693", "attributes": { "weight": 1 } }, { "key": "11485", "source": "1197", "target": "938", "attributes": { "weight": 3 } }, { "key": "36538", "source": "1197", "target": "1305", "attributes": { "weight": 1 } }, { "key": "34053", "source": "1197", "target": "3159", "attributes": { "weight": 1 } }, { "key": "18667", "source": "1197", "target": "1184", "attributes": { "weight": 3 } }, { "key": "18162", "source": "1197", "target": "1152", "attributes": { "weight": 3 } }, { "key": "7260", "source": "1197", "target": "625", "attributes": { "weight": 2 } }, { "key": "34060", "source": "1197", "target": "1324", "attributes": { "weight": 1 } }, { "key": "37495", "source": "1197", "target": "3379", "attributes": { "weight": 1 } }, { "key": "34048", "source": "1197", "target": "3155", "attributes": { "weight": 1 } }, { "key": "18668", "source": "1197", "target": "1288", "attributes": { "weight": 3 } }, { "key": "34023", "source": "1197", "target": "2035", "attributes": { "weight": 1 } }, { "key": "37504", "source": "1197", "target": "3387", "attributes": { "weight": 1 } }, { "key": "18184", "source": "1197", "target": "2200", "attributes": { "weight": 1 } }, { "key": "34033", "source": "1197", "target": "1234", "attributes": { "weight": 1 } }, { "key": "18669", "source": "1197", "target": "1289", "attributes": { "weight": 1 } }, { "key": "18179", "source": "1197", "target": "2197", "attributes": { "weight": 3 } }, { "key": "34028", "source": "1197", "target": "3144", "attributes": { "weight": 1 } }, { "key": "7256", "source": "1197", "target": "1401", "attributes": { "weight": 2 } }, { "key": "18161", "source": "1197", "target": "2191", "attributes": { "weight": 3 } }, { "key": "18192", "source": "1197", "target": "1552", "attributes": { "weight": 3 } }, { "key": "34007", "source": "1197", "target": "3131", "attributes": { "weight": 1 } }, { "key": "18193", "source": "1197", "target": "1269", "attributes": { "weight": 4 } }, { "key": "18186", "source": "1197", "target": "337", "attributes": { "weight": 5 } }, { "key": "26430", "source": "1197", "target": "454", "attributes": { "weight": 2 } }, { "key": "34027", "source": "1197", "target": "3143", "attributes": { "weight": 1 } }, { "key": "18201", "source": "1197", "target": "1300", "attributes": { "weight": 2 } }, { "key": "34030", "source": "1197", "target": "1227", "attributes": { "weight": 1 } }, { "key": "34037", "source": "1197", "target": "1245", "attributes": { "weight": 1 } }, { "key": "18212", "source": "1197", "target": "930", "attributes": { "weight": 2 } }, { "key": "4744", "source": "1197", "target": "779", "attributes": { "weight": 2 } }, { "key": "34029", "source": "1197", "target": "1687", "attributes": { "weight": 1 } }, { "key": "4745", "source": "1197", "target": "368", "attributes": { "weight": 5 } }, { "key": "34039", "source": "1197", "target": "1248", "attributes": { "weight": 1 } }, { "key": "34013", "source": "1197", "target": "2029", "attributes": { "weight": 1 } }, { "key": "34018", "source": "1197", "target": "1198", "attributes": { "weight": 1 } }, { "key": "18181", "source": "1197", "target": "1215", "attributes": { "weight": 4 } }, { "key": "18204", "source": "1197", "target": "1315", "attributes": { "weight": 4 } }, { "key": "34065", "source": "1197", "target": "931", "attributes": { "weight": 1 } }, { "key": "34026", "source": "1197", "target": "1686", "attributes": { "weight": 1 } }, { "key": "18177", "source": "1197", "target": "1206", "attributes": { "weight": 2 } }, { "key": "7257", "source": "1197", "target": "1407", "attributes": { "weight": 2 } }, { "key": "15639", "source": "1197", "target": "912", "attributes": { "weight": 3 } }, { "key": "11486", "source": "1197", "target": "370", "attributes": { "weight": 2 } }, { "key": "18666", "source": "1197", "target": "1174", "attributes": { "weight": 3 } }, { "key": "34014", "source": "1197", "target": "1188", "attributes": { "weight": 1 } }, { "key": "18199", "source": "1197", "target": "1293", "attributes": { "weight": 1 } }, { "key": "34042", "source": "1197", "target": "1260", "attributes": { "weight": 1 } }, { "key": "18446", "source": "1197", "target": "1738", "attributes": { "weight": 1 } }, { "key": "18164", "source": "1197", "target": "2193", "attributes": { "weight": 1 } }, { "key": "7261", "source": "1197", "target": "1417", "attributes": { "weight": 2 } }, { "key": "4746", "source": "1197", "target": "338", "attributes": { "weight": 7 } }, { "key": "4750", "source": "1197", "target": "1090", "attributes": { "weight": 4 } }, { "key": "18166", "source": "1197", "target": "1165", "attributes": { "weight": 4 } }, { "key": "37497", "source": "1197", "target": "2196", "attributes": { "weight": 1 } }, { "key": "18171", "source": "1197", "target": "2195", "attributes": { "weight": 3 } }, { "key": "18175", "source": "1197", "target": "1203", "attributes": { "weight": 2 } }, { "key": "15641", "source": "1197", "target": "921", "attributes": { "weight": 4 } }, { "key": "34056", "source": "1197", "target": "2048", "attributes": { "weight": 1 } }, { "key": "18168", "source": "1197", "target": "1181", "attributes": { "weight": 2 } }, { "key": "34041", "source": "1197", "target": "2043", "attributes": { "weight": 1 } }, { "key": "37503", "source": "1197", "target": "3386", "attributes": { "weight": 1 } }, { "key": "18665", "source": "1197", "target": "1148", "attributes": { "weight": 3 } }, { "key": "34055", "source": "1197", "target": "1304", "attributes": { "weight": 1 } }, { "key": "18664", "source": "1197", "target": "1140", "attributes": { "weight": 3 } }, { "key": "37500", "source": "1197", "target": "2201", "attributes": { "weight": 1 } }, { "key": "18187", "source": "1197", "target": "544", "attributes": { "weight": 1 } }, { "key": "36536", "source": "1197", "target": "205", "attributes": { "weight": 1 } }, { "key": "18202", "source": "1197", "target": "403", "attributes": { "weight": 2 } }, { "key": "34031", "source": "1197", "target": "1229", "attributes": { "weight": 1 } }, { "key": "7263", "source": "1197", "target": "1063", "attributes": { "weight": 2 } }, { "key": "37502", "source": "1197", "target": "2202", "attributes": { "weight": 1 } }, { "key": "18169", "source": "1197", "target": "1182", "attributes": { "weight": 2 } }, { "key": "34020", "source": "1197", "target": "1201", "attributes": { "weight": 1 } }, { "key": "4752", "source": "1197", "target": "1322", "attributes": { "weight": 5 } }, { "key": "4749", "source": "1197", "target": "123", "attributes": { "weight": 4 } }, { "key": "18190", "source": "1197", "target": "208", "attributes": { "weight": 4 } }, { "key": "18209", "source": "1197", "target": "408", "attributes": { "weight": 4 } }, { "key": "7254", "source": "1197", "target": "926", "attributes": { "weight": 5 } }, { "key": "18211", "source": "1197", "target": "218", "attributes": { "weight": 4 } }, { "key": "18194", "source": "1197", "target": "2044", "attributes": { "weight": 2 } }, { "key": "7259", "source": "1197", "target": "333", "attributes": { "weight": 2 } }, { "key": "18170", "source": "1197", "target": "387", "attributes": { "weight": 3 } }, { "key": "37496", "source": "1197", "target": "3380", "attributes": { "weight": 1 } }, { "key": "34019", "source": "1197", "target": "3140", "attributes": { "weight": 1 } }, { "key": "34044", "source": "1197", "target": "1265", "attributes": { "weight": 1 } }, { "key": "34040", "source": "1197", "target": "1254", "attributes": { "weight": 1 } }, { "key": "18165", "source": "1197", "target": "1164", "attributes": { "weight": 1 } }, { "key": "34062", "source": "1197", "target": "1325", "attributes": { "weight": 1 } }, { "key": "34022", "source": "1197", "target": "1685", "attributes": { "weight": 1 } }, { "key": "18206", "source": "1197", "target": "1323", "attributes": { "weight": 3 } }, { "key": "34021", "source": "1197", "target": "1047", "attributes": { "weight": 2 } }, { "key": "18172", "source": "1197", "target": "389", "attributes": { "weight": 1 } }, { "key": "7255", "source": "1197", "target": "373", "attributes": { "weight": 2 } }, { "key": "34015", "source": "1197", "target": "2030", "attributes": { "weight": 1 } }, { "key": "34059", "source": "1197", "target": "1321", "attributes": { "weight": 2 } }, { "key": "34050", "source": "1197", "target": "1295", "attributes": { "weight": 1 } }, { "key": "18178", "source": "1197", "target": "199", "attributes": { "weight": 4 } }, { "key": "18197", "source": "1197", "target": "1287", "attributes": { "weight": 4 } }, { "key": "4748", "source": "1197", "target": "371", "attributes": { "weight": 3 } }, { "key": "34036", "source": "1197", "target": "2041", "attributes": { "weight": 1 } }, { "key": "34043", "source": "1197", "target": "396", "attributes": { "weight": 2 } }, { "key": "34010", "source": "1197", "target": "937", "attributes": { "weight": 1 } }, { "key": "36535", "source": "1197", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18207", "source": "1197", "target": "406", "attributes": { "weight": 3 } }, { "key": "37501", "source": "1197", "target": "3384", "attributes": { "weight": 1 } }, { "key": "34038", "source": "1197", "target": "3150", "attributes": { "weight": 1 } }, { "key": "18183", "source": "1197", "target": "1233", "attributes": { "weight": 3 } }, { "key": "18163", "source": "1197", "target": "2021", "attributes": { "weight": 2 } }, { "key": "18174", "source": "1197", "target": "1199", "attributes": { "weight": 2 } }, { "key": "18203", "source": "1197", "target": "215", "attributes": { "weight": 2 } }, { "key": "36537", "source": "1197", "target": "1284", "attributes": { "weight": 1 } }, { "key": "4747", "source": "1197", "target": "468", "attributes": { "weight": 4 } }, { "key": "18670", "source": "1197", "target": "405", "attributes": { "weight": 3 } }, { "key": "15640", "source": "1197", "target": "913", "attributes": { "weight": 5 } }, { "key": "34045", "source": "1197", "target": "1271", "attributes": { "weight": 1 } }, { "key": "34024", "source": "1197", "target": "1218", "attributes": { "weight": 1 } }, { "key": "4751", "source": "1197", "target": "1294", "attributes": { "weight": 7 } }, { "key": "18176", "source": "1197", "target": "1205", "attributes": { "weight": 2 } }, { "key": "34064", "source": "1197", "target": "1342", "attributes": { "weight": 2 } }, { "key": "34047", "source": "1197", "target": "1690", "attributes": { "weight": 1 } }, { "key": "34035", "source": "1197", "target": "2040", "attributes": { "weight": 1 } }, { "key": "18185", "source": "1197", "target": "1236", "attributes": { "weight": 4 } }, { "key": "34008", "source": "1197", "target": "1157", "attributes": { "weight": 1 } }, { "key": "34049", "source": "1197", "target": "1285", "attributes": { "weight": 1 } }, { "key": "18210", "source": "1197", "target": "124", "attributes": { "weight": 3 } }, { "key": "18189", "source": "1197", "target": "1263", "attributes": { "weight": 4 } }, { "key": "15642", "source": "1197", "target": "924", "attributes": { "weight": 3 } }, { "key": "18188", "source": "1197", "target": "1255", "attributes": { "weight": 2 } }, { "key": "36534", "source": "1197", "target": "1176", "attributes": { "weight": 1 } }, { "key": "34063", "source": "1197", "target": "1326", "attributes": { "weight": 2 } }, { "key": "18205", "source": "1197", "target": "1317", "attributes": { "weight": 2 } }, { "key": "18671", "source": "1197", "target": "1331", "attributes": { "weight": 3 } }, { "key": "18208", "source": "1197", "target": "407", "attributes": { "weight": 1 } }, { "key": "34054", "source": "1197", "target": "1303", "attributes": { "weight": 1 } }, { "key": "18196", "source": "1197", "target": "1286", "attributes": { "weight": 4 } }, { "key": "18160", "source": "1197", "target": "2190", "attributes": { "weight": 3 } }, { "key": "7262", "source": "1197", "target": "377", "attributes": { "weight": 2 } }, { "key": "34012", "source": "1197", "target": "1173", "attributes": { "weight": 2 } }, { "key": "36533", "source": "1197", "target": "1156", "attributes": { "weight": 1 } }, { "key": "34017", "source": "1197", "target": "2031", "attributes": { "weight": 1 } }, { "key": "34046", "source": "1197", "target": "1277", "attributes": { "weight": 1 } }, { "key": "28346", "source": "1197", "target": "580", "attributes": { "weight": 2 } }, { "key": "34006", "source": "1197", "target": "711", "attributes": { "weight": 1 } }, { "key": "15643", "source": "1197", "target": "925", "attributes": { "weight": 6 } }, { "key": "18198", "source": "1197", "target": "1291", "attributes": { "weight": 3 } }, { "key": "34058", "source": "1197", "target": "1313", "attributes": { "weight": 1 } }, { "key": "34070", "source": "1198", "target": "1197", "attributes": { "weight": 1 } }, { "key": "4943", "source": "1198", "target": "368", "attributes": { "weight": 2 } }, { "key": "4944", "source": "1198", "target": "1294", "attributes": { "weight": 2 } }, { "key": "4947", "source": "1199", "target": "779", "attributes": { "weight": 2 } }, { "key": "21885", "source": "1199", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21882", "source": "1199", "target": "337", "attributes": { "weight": 2 } }, { "key": "34072", "source": "1199", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4948", "source": "1199", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4951", "source": "1199", "target": "1294", "attributes": { "weight": 3 } }, { "key": "34071", "source": "1199", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4949", "source": "1199", "target": "368", "attributes": { "weight": 2 } }, { "key": "21884", "source": "1199", "target": "2301", "attributes": { "weight": 1 } }, { "key": "15651", "source": "1199", "target": "925", "attributes": { "weight": 1 } }, { "key": "18213", "source": "1199", "target": "1197", "attributes": { "weight": 2 } }, { "key": "18673", "source": "1199", "target": "1552", "attributes": { "weight": 2 } }, { "key": "8691", "source": "1199", "target": "195", "attributes": { "weight": 3 } }, { "key": "15649", "source": "1199", "target": "913", "attributes": { "weight": 1 } }, { "key": "4950", "source": "1199", "target": "123", "attributes": { "weight": 3 } }, { "key": "15650", "source": "1199", "target": "921", "attributes": { "weight": 1 } }, { "key": "21883", "source": "1199", "target": "2300", "attributes": { "weight": 1 } }, { "key": "4977", "source": "1200", "target": "1090", "attributes": { "weight": 2 } }, { "key": "21886", "source": "1200", "target": "2301", "attributes": { "weight": 1 } }, { "key": "34077", "source": "1200", "target": "123", "attributes": { "weight": 1 } }, { "key": "21887", "source": "1200", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15763", "source": "1200", "target": "913", "attributes": { "weight": 1 } }, { "key": "36546", "source": "1201", "target": "337", "attributes": { "weight": 1 } }, { "key": "34078", "source": "1201", "target": "1197", "attributes": { "weight": 1 } }, { "key": "8710", "source": "1201", "target": "195", "attributes": { "weight": 3 } }, { "key": "18674", "source": "1201", "target": "1090", "attributes": { "weight": 1 } }, { "key": "18675", "source": "1201", "target": "405", "attributes": { "weight": 2 } }, { "key": "36545", "source": "1201", "target": "1228", "attributes": { "weight": 1 } }, { "key": "36544", "source": "1201", "target": "1526", "attributes": { "weight": 1 } }, { "key": "4979", "source": "1201", "target": "338", "attributes": { "weight": 5 } }, { "key": "4978", "source": "1201", "target": "368", "attributes": { "weight": 2 } }, { "key": "36543", "source": "1201", "target": "1152", "attributes": { "weight": 1 } }, { "key": "34079", "source": "1201", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4981", "source": "1201", "target": "1294", "attributes": { "weight": 3 } }, { "key": "4980", "source": "1201", "target": "123", "attributes": { "weight": 2 } }, { "key": "34080", "source": "1202", "target": "1182", "attributes": { "weight": 1 } }, { "key": "4982", "source": "1202", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15764", "source": "1202", "target": "913", "attributes": { "weight": 1 } }, { "key": "18216", "source": "1203", "target": "1197", "attributes": { "weight": 2 } }, { "key": "4984", "source": "1203", "target": "1291", "attributes": { "weight": 3 } }, { "key": "21888", "source": "1203", "target": "2293", "attributes": { "weight": 1 } }, { "key": "10197", "source": "1203", "target": "1322", "attributes": { "weight": 1 } }, { "key": "21890", "source": "1203", "target": "1284", "attributes": { "weight": 1 } }, { "key": "15766", "source": "1203", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34081", "source": "1203", "target": "1323", "attributes": { "weight": 1 } }, { "key": "21889", "source": "1203", "target": "337", "attributes": { "weight": 1 } }, { "key": "4983", "source": "1203", "target": "338", "attributes": { "weight": 3 } }, { "key": "8713", "source": "1204", "target": "195", "attributes": { "weight": 3 } }, { "key": "4987", "source": "1204", "target": "779", "attributes": { "weight": 2 } }, { "key": "18217", "source": "1205", "target": "1197", "attributes": { "weight": 2 } }, { "key": "21893", "source": "1205", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21891", "source": "1205", "target": "2293", "attributes": { "weight": 1 } }, { "key": "5000", "source": "1205", "target": "123", "attributes": { "weight": 3 } }, { "key": "21892", "source": "1205", "target": "337", "attributes": { "weight": 1 } }, { "key": "15777", "source": "1205", "target": "1329", "attributes": { "weight": 1 } }, { "key": "4999", "source": "1205", "target": "368", "attributes": { "weight": 2 } }, { "key": "15776", "source": "1205", "target": "925", "attributes": { "weight": 1 } }, { "key": "21894", "source": "1205", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15775", "source": "1205", "target": "195", "attributes": { "weight": 1 } }, { "key": "10200", "source": "1206", "target": "1315", "attributes": { "weight": 1 } }, { "key": "10201", "source": "1206", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34166", "source": "1206", "target": "1323", "attributes": { "weight": 1 } }, { "key": "10199", "source": "1206", "target": "1291", "attributes": { "weight": 1 } }, { "key": "5002", "source": "1206", "target": "338", "attributes": { "weight": 4 } }, { "key": "9756", "source": "1206", "target": "390", "attributes": { "weight": 3 } }, { "key": "5003", "source": "1206", "target": "1294", "attributes": { "weight": 2 } }, { "key": "5001", "source": "1206", "target": "368", "attributes": { "weight": 2 } }, { "key": "21895", "source": "1206", "target": "337", "attributes": { "weight": 2 } }, { "key": "18218", "source": "1206", "target": "1197", "attributes": { "weight": 2 } }, { "key": "15778", "source": "1206", "target": "1329", "attributes": { "weight": 1 } }, { "key": "5004", "source": "1207", "target": "779", "attributes": { "weight": 2 } }, { "key": "5005", "source": "1207", "target": "1196", "attributes": { "weight": 2 } }, { "key": "8721", "source": "1207", "target": "195", "attributes": { "weight": 3 } }, { "key": "34167", "source": "1207", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5013", "source": "1208", "target": "1294", "attributes": { "weight": 2 } }, { "key": "5021", "source": "1209", "target": "779", "attributes": { "weight": 2 } }, { "key": "18683", "source": "1210", "target": "208", "attributes": { "weight": 2 } }, { "key": "18682", "source": "1210", "target": "1174", "attributes": { "weight": 2 } }, { "key": "5022", "source": "1210", "target": "123", "attributes": { "weight": 2 } }, { "key": "15784", "source": "1210", "target": "925", "attributes": { "weight": 1 } }, { "key": "18684", "source": "1210", "target": "218", "attributes": { "weight": 2 } }, { "key": "34175", "source": "1210", "target": "1182", "attributes": { "weight": 1 } }, { "key": "36561", "source": "1210", "target": "337", "attributes": { "weight": 1 } }, { "key": "8735", "source": "1210", "target": "195", "attributes": { "weight": 3 } }, { "key": "5031", "source": "1211", "target": "123", "attributes": { "weight": 3 } }, { "key": "21905", "source": "1211", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21903", "source": "1211", "target": "337", "attributes": { "weight": 1 } }, { "key": "15787", "source": "1211", "target": "925", "attributes": { "weight": 1 } }, { "key": "15786", "source": "1211", "target": "195", "attributes": { "weight": 1 } }, { "key": "5030", "source": "1211", "target": "368", "attributes": { "weight": 2 } }, { "key": "21904", "source": "1211", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21902", "source": "1211", "target": "2293", "attributes": { "weight": 1 } }, { "key": "18224", "source": "1211", "target": "1197", "attributes": { "weight": 2 } }, { "key": "8742", "source": "1212", "target": "195", "attributes": { "weight": 3 } }, { "key": "5032", "source": "1212", "target": "368", "attributes": { "weight": 2 } }, { "key": "5036", "source": "1213", "target": "368", "attributes": { "weight": 2 } }, { "key": "26150", "source": "1214", "target": "2627", "attributes": { "weight": 1 } }, { "key": "5037", "source": "1214", "target": "779", "attributes": { "weight": 2 } }, { "key": "5038", "source": "1214", "target": "371", "attributes": { "weight": 3 } }, { "key": "34178", "source": "1214", "target": "1047", "attributes": { "weight": 1 } }, { "key": "34179", "source": "1214", "target": "1232", "attributes": { "weight": 1 } }, { "key": "26154", "source": "1214", "target": "2629", "attributes": { "weight": 1 } }, { "key": "26151", "source": "1214", "target": "392", "attributes": { "weight": 1 } }, { "key": "5039", "source": "1214", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11874", "source": "1214", "target": "1281", "attributes": { "weight": 1 } }, { "key": "34180", "source": "1214", "target": "1233", "attributes": { "weight": 1 } }, { "key": "15793", "source": "1214", "target": "195", "attributes": { "weight": 1 } }, { "key": "15794", "source": "1214", "target": "913", "attributes": { "weight": 1 } }, { "key": "26153", "source": "1214", "target": "2628", "attributes": { "weight": 2 } }, { "key": "11531", "source": "1214", "target": "370", "attributes": { "weight": 2 } }, { "key": "7296", "source": "1214", "target": "1063", "attributes": { "weight": 2 } }, { "key": "26152", "source": "1214", "target": "780", "attributes": { "weight": 1 } }, { "key": "26155", "source": "1214", "target": "123", "attributes": { "weight": 1 } }, { "key": "26156", "source": "1214", "target": "218", "attributes": { "weight": 1 } }, { "key": "15798", "source": "1215", "target": "1329", "attributes": { "weight": 1 } }, { "key": "36562", "source": "1215", "target": "1167", "attributes": { "weight": 1 } }, { "key": "15796", "source": "1215", "target": "338", "attributes": { "weight": 1 } }, { "key": "36564", "source": "1215", "target": "1284", "attributes": { "weight": 1 } }, { "key": "15797", "source": "1215", "target": "925", "attributes": { "weight": 1 } }, { "key": "18225", "source": "1215", "target": "1197", "attributes": { "weight": 4 } }, { "key": "5044", "source": "1215", "target": "1294", "attributes": { "weight": 3 } }, { "key": "36563", "source": "1215", "target": "337", "attributes": { "weight": 1 } }, { "key": "10205", "source": "1215", "target": "1322", "attributes": { "weight": 1 } }, { "key": "10204", "source": "1215", "target": "1291", "attributes": { "weight": 1 } }, { "key": "5045", "source": "1216", "target": "368", "attributes": { "weight": 2 } }, { "key": "37447", "source": "1217", "target": "435", "attributes": { "weight": 1 } }, { "key": "37449", "source": "1217", "target": "472", "attributes": { "weight": 1 } }, { "key": "5047", "source": "1217", "target": "468", "attributes": { "weight": 2 } }, { "key": "33369", "source": "1217", "target": "135", "attributes": { "weight": 1 } }, { "key": "37448", "source": "1217", "target": "2258", "attributes": { "weight": 1 } }, { "key": "34183", "source": "1218", "target": "1197", "attributes": { "weight": 1 } }, { "key": "21914", "source": "1218", "target": "337", "attributes": { "weight": 1 } }, { "key": "15803", "source": "1218", "target": "1329", "attributes": { "weight": 1 } }, { "key": "5052", "source": "1218", "target": "368", "attributes": { "weight": 2 } }, { "key": "5053", "source": "1218", "target": "1294", "attributes": { "weight": 2 } }, { "key": "34184", "source": "1218", "target": "1233", "attributes": { "weight": 1 } }, { "key": "27056", "source": "1219", "target": "429", "attributes": { "weight": 3 } }, { "key": "27062", "source": "1219", "target": "452", "attributes": { "weight": 1 } }, { "key": "15282", "source": "1219", "target": "387", "attributes": { "weight": 2 } }, { "key": "32961", "source": "1219", "target": "377", "attributes": { "weight": 1 } }, { "key": "12227", "source": "1219", "target": "1833", "attributes": { "weight": 1 } }, { "key": "12229", "source": "1219", "target": "1835", "attributes": { "weight": 1 } }, { "key": "18449", "source": "1219", "target": "1738", "attributes": { "weight": 1 } }, { "key": "33375", "source": "1219", "target": "489", "attributes": { "weight": 1 } }, { "key": "33371", "source": "1219", "target": "51", "attributes": { "weight": 1 } }, { "key": "11876", "source": "1219", "target": "1363", "attributes": { "weight": 1 } }, { "key": "12235", "source": "1219", "target": "1840", "attributes": { "weight": 1 } }, { "key": "12233", "source": "1219", "target": "1564", "attributes": { "weight": 1 } }, { "key": "17460", "source": "1219", "target": "358", "attributes": { "weight": 2 } }, { "key": "12221", "source": "1219", "target": "435", "attributes": { "weight": 1 } }, { "key": "11877", "source": "1219", "target": "135", "attributes": { "weight": 2 } }, { "key": "12231", "source": "1219", "target": "1837", "attributes": { "weight": 1 } }, { "key": "12224", "source": "1219", "target": "1829", "attributes": { "weight": 1 } }, { "key": "26561", "source": "1219", "target": "1047", "attributes": { "weight": 2 } }, { "key": "32206", "source": "1219", "target": "1368", "attributes": { "weight": 1 } }, { "key": "12220", "source": "1219", "target": "1161", "attributes": { "weight": 1 } }, { "key": "26560", "source": "1219", "target": "183", "attributes": { "weight": 1 } }, { "key": "12223", "source": "1219", "target": "1828", "attributes": { "weight": 1 } }, { "key": "27068", "source": "1219", "target": "231", "attributes": { "weight": 4 } }, { "key": "32205", "source": "1219", "target": "424", "attributes": { "weight": 1 } }, { "key": "12234", "source": "1219", "target": "1839", "attributes": { "weight": 1 } }, { "key": "33372", "source": "1219", "target": "442", "attributes": { "weight": 1 } }, { "key": "27063", "source": "1219", "target": "1358", "attributes": { "weight": 2 } }, { "key": "8746", "source": "1219", "target": "446", "attributes": { "weight": 2 } }, { "key": "33373", "source": "1219", "target": "462", "attributes": { "weight": 1 } }, { "key": "33374", "source": "1219", "target": "2258", "attributes": { "weight": 1 } }, { "key": "27069", "source": "1219", "target": "483", "attributes": { "weight": 2 } }, { "key": "27061", "source": "1219", "target": "451", "attributes": { "weight": 3 } }, { "key": "32860", "source": "1219", "target": "1357", "attributes": { "weight": 1 } }, { "key": "33376", "source": "1219", "target": "672", "attributes": { "weight": 1 } }, { "key": "32730", "source": "1219", "target": "53", "attributes": { "weight": 1 } }, { "key": "5055", "source": "1219", "target": "1090", "attributes": { "weight": 2 } }, { "key": "12222", "source": "1219", "target": "1827", "attributes": { "weight": 1 } }, { "key": "15283", "source": "1219", "target": "208", "attributes": { "weight": 3 } }, { "key": "12226", "source": "1219", "target": "1535", "attributes": { "weight": 1 } }, { "key": "32962", "source": "1219", "target": "1063", "attributes": { "weight": 1 } }, { "key": "27060", "source": "1219", "target": "860", "attributes": { "weight": 3 } }, { "key": "35958", "source": "1219", "target": "1360", "attributes": { "weight": 1 } }, { "key": "25916", "source": "1219", "target": "1367", "attributes": { "weight": 1 } }, { "key": "27067", "source": "1219", "target": "1812", "attributes": { "weight": 1 } }, { "key": "12228", "source": "1219", "target": "1362", "attributes": { "weight": 2 } }, { "key": "35959", "source": "1219", "target": "497", "attributes": { "weight": 1 } }, { "key": "27070", "source": "1219", "target": "56", "attributes": { "weight": 4 } }, { "key": "11138", "source": "1219", "target": "220", "attributes": { "weight": 3 } }, { "key": "15281", "source": "1219", "target": "1353", "attributes": { "weight": 5 } }, { "key": "27064", "source": "1219", "target": "458", "attributes": { "weight": 1 } }, { "key": "27065", "source": "1219", "target": "459", "attributes": { "weight": 2 } }, { "key": "27066", "source": "1219", "target": "54", "attributes": { "weight": 3 } }, { "key": "12225", "source": "1219", "target": "1832", "attributes": { "weight": 1 } }, { "key": "17241", "source": "1219", "target": "449", "attributes": { "weight": 1 } }, { "key": "27057", "source": "1219", "target": "1354", "attributes": { "weight": 3 } }, { "key": "27059", "source": "1219", "target": "858", "attributes": { "weight": 2 } }, { "key": "33370", "source": "1219", "target": "2645", "attributes": { "weight": 1 } }, { "key": "5054", "source": "1219", "target": "468", "attributes": { "weight": 3 } }, { "key": "12230", "source": "1219", "target": "1247", "attributes": { "weight": 1 } }, { "key": "12219", "source": "1219", "target": "1826", "attributes": { "weight": 1 } }, { "key": "12232", "source": "1219", "target": "472", "attributes": { "weight": 1 } }, { "key": "27058", "source": "1219", "target": "130", "attributes": { "weight": 1 } }, { "key": "17242", "source": "1219", "target": "2108", "attributes": { "weight": 1 } }, { "key": "11878", "source": "1220", "target": "1347", "attributes": { "weight": 2 } }, { "key": "5056", "source": "1220", "target": "371", "attributes": { "weight": 2 } }, { "key": "35240", "source": "1220", "target": "1030", "attributes": { "weight": 1 } }, { "key": "26815", "source": "1220", "target": "1158", "attributes": { "weight": 1 } }, { "key": "7299", "source": "1220", "target": "1063", "attributes": { "weight": 2 } }, { "key": "12811", "source": "1220", "target": "370", "attributes": { "weight": 2 } }, { "key": "12812", "source": "1220", "target": "785", "attributes": { "weight": 3 } }, { "key": "26816", "source": "1220", "target": "2650", "attributes": { "weight": 1 } }, { "key": "5061", "source": "1221", "target": "368", "attributes": { "weight": 2 } }, { "key": "8750", "source": "1221", "target": "195", "attributes": { "weight": 4 } }, { "key": "34185", "source": "1221", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5060", "source": "1221", "target": "779", "attributes": { "weight": 2 } }, { "key": "5062", "source": "1222", "target": "123", "attributes": { "weight": 3 } }, { "key": "15804", "source": "1222", "target": "913", "attributes": { "weight": 1 } }, { "key": "8751", "source": "1222", "target": "195", "attributes": { "weight": 3 } }, { "key": "15805", "source": "1222", "target": "925", "attributes": { "weight": 1 } }, { "key": "21916", "source": "1223", "target": "337", "attributes": { "weight": 1 } }, { "key": "21915", "source": "1223", "target": "2293", "attributes": { "weight": 1 } }, { "key": "5063", "source": "1223", "target": "368", "attributes": { "weight": 2 } }, { "key": "8752", "source": "1224", "target": "195", "attributes": { "weight": 3 } }, { "key": "34186", "source": "1224", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5064", "source": "1224", "target": "368", "attributes": { "weight": 2 } }, { "key": "21919", "source": "1225", "target": "2301", "attributes": { "weight": 1 } }, { "key": "15807", "source": "1225", "target": "913", "attributes": { "weight": 1 } }, { "key": "15806", "source": "1225", "target": "912", "attributes": { "weight": 1 } }, { "key": "15808", "source": "1225", "target": "921", "attributes": { "weight": 1 } }, { "key": "15809", "source": "1225", "target": "208", "attributes": { "weight": 2 } }, { "key": "18685", "source": "1225", "target": "124", "attributes": { "weight": 2 } }, { "key": "5066", "source": "1225", "target": "123", "attributes": { "weight": 3 } }, { "key": "34191", "source": "1225", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34190", "source": "1225", "target": "1232", "attributes": { "weight": 1 } }, { "key": "36566", "source": "1225", "target": "218", "attributes": { "weight": 1 } }, { "key": "5065", "source": "1225", "target": "368", "attributes": { "weight": 2 } }, { "key": "8753", "source": "1225", "target": "195", "attributes": { "weight": 3 } }, { "key": "34187", "source": "1225", "target": "1182", "attributes": { "weight": 1 } }, { "key": "21917", "source": "1225", "target": "2293", "attributes": { "weight": 1 } }, { "key": "34188", "source": "1225", "target": "1197", "attributes": { "weight": 2 } }, { "key": "34189", "source": "1225", "target": "1047", "attributes": { "weight": 1 } }, { "key": "21920", "source": "1225", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15810", "source": "1225", "target": "925", "attributes": { "weight": 1 } }, { "key": "21918", "source": "1225", "target": "337", "attributes": { "weight": 1 } }, { "key": "36565", "source": "1225", "target": "1174", "attributes": { "weight": 1 } }, { "key": "5094", "source": "1226", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5093", "source": "1226", "target": "779", "attributes": { "weight": 2 } }, { "key": "23190", "source": "1227", "target": "2436", "attributes": { "weight": 1 } }, { "key": "5104", "source": "1227", "target": "368", "attributes": { "weight": 2 } }, { "key": "7306", "source": "1227", "target": "333", "attributes": { "weight": 3 } }, { "key": "15829", "source": "1227", "target": "698", "attributes": { "weight": 2 } }, { "key": "15831", "source": "1227", "target": "1323", "attributes": { "weight": 3 } }, { "key": "10212", "source": "1227", "target": "1291", "attributes": { "weight": 2 } }, { "key": "13142", "source": "1227", "target": "304", "attributes": { "weight": 3 } }, { "key": "23184", "source": "1227", "target": "370", "attributes": { "weight": 1 } }, { "key": "23188", "source": "1227", "target": "2435", "attributes": { "weight": 2 } }, { "key": "27980", "source": "1227", "target": "305", "attributes": { "weight": 1 } }, { "key": "18494", "source": "1227", "target": "2214", "attributes": { "weight": 2 } }, { "key": "10210", "source": "1227", "target": "711", "attributes": { "weight": 1 } }, { "key": "18493", "source": "1227", "target": "2213", "attributes": { "weight": 1 } }, { "key": "15830", "source": "1227", "target": "278", "attributes": { "weight": 4 } }, { "key": "34220", "source": "1227", "target": "1197", "attributes": { "weight": 1 } }, { "key": "23181", "source": "1227", "target": "1146", "attributes": { "weight": 4 } }, { "key": "28214", "source": "1227", "target": "2726", "attributes": { "weight": 1 } }, { "key": "34221", "source": "1227", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18495", "source": "1227", "target": "1280", "attributes": { "weight": 2 } }, { "key": "23191", "source": "1227", "target": "1299", "attributes": { "weight": 1 } }, { "key": "5107", "source": "1227", "target": "338", "attributes": { "weight": 9 } }, { "key": "23192", "source": "1227", "target": "1823", "attributes": { "weight": 1 } }, { "key": "29806", "source": "1227", "target": "93", "attributes": { "weight": 1 } }, { "key": "34225", "source": "1227", "target": "2830", "attributes": { "weight": 1 } }, { "key": "34223", "source": "1227", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34224", "source": "1227", "target": "1233", "attributes": { "weight": 1 } }, { "key": "23182", "source": "1227", "target": "1166", "attributes": { "weight": 1 } }, { "key": "23186", "source": "1227", "target": "1254", "attributes": { "weight": 4 } }, { "key": "5106", "source": "1227", "target": "170", "attributes": { "weight": 4 } }, { "key": "10214", "source": "1227", "target": "1322", "attributes": { "weight": 3 } }, { "key": "25168", "source": "1227", "target": "297", "attributes": { "weight": 2 } }, { "key": "23185", "source": "1227", "target": "1245", "attributes": { "weight": 2 } }, { "key": "23187", "source": "1227", "target": "2434", "attributes": { "weight": 2 } }, { "key": "34222", "source": "1227", "target": "700", "attributes": { "weight": 1 } }, { "key": "5113", "source": "1227", "target": "310", "attributes": { "weight": 5 } }, { "key": "34226", "source": "1227", "target": "123", "attributes": { "weight": 1 } }, { "key": "5110", "source": "1227", "target": "1284", "attributes": { "weight": 3 } }, { "key": "5108", "source": "1227", "target": "579", "attributes": { "weight": 3 } }, { "key": "23189", "source": "1227", "target": "1285", "attributes": { "weight": 5 } }, { "key": "15832", "source": "1227", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10211", "source": "1227", "target": "1680", "attributes": { "weight": 1 } }, { "key": "23193", "source": "1227", "target": "1331", "attributes": { "weight": 1 } }, { "key": "15828", "source": "1227", "target": "195", "attributes": { "weight": 2 } }, { "key": "5105", "source": "1227", "target": "707", "attributes": { "weight": 5 } }, { "key": "21930", "source": "1227", "target": "337", "attributes": { "weight": 2 } }, { "key": "5112", "source": "1227", "target": "1326", "attributes": { "weight": 2 } }, { "key": "13941", "source": "1227", "target": "180", "attributes": { "weight": 2 } }, { "key": "5109", "source": "1227", "target": "580", "attributes": { "weight": 7 } }, { "key": "10213", "source": "1227", "target": "1315", "attributes": { "weight": 2 } }, { "key": "5111", "source": "1227", "target": "1294", "attributes": { "weight": 3 } }, { "key": "23183", "source": "1227", "target": "2433", "attributes": { "weight": 2 } }, { "key": "11532", "source": "1228", "target": "938", "attributes": { "weight": 2 } }, { "key": "36573", "source": "1228", "target": "1165", "attributes": { "weight": 1 } }, { "key": "5114", "source": "1228", "target": "368", "attributes": { "weight": 2 } }, { "key": "36586", "source": "1228", "target": "1296", "attributes": { "weight": 1 } }, { "key": "18689", "source": "1228", "target": "1180", "attributes": { "weight": 2 } }, { "key": "18707", "source": "1228", "target": "1305", "attributes": { "weight": 2 } }, { "key": "18704", "source": "1228", "target": "1286", "attributes": { "weight": 2 } }, { "key": "11533", "source": "1228", "target": "370", "attributes": { "weight": 1 } }, { "key": "36584", "source": "1228", "target": "924", "attributes": { "weight": 1 } }, { "key": "18702", "source": "1228", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18699", "source": "1228", "target": "1255", "attributes": { "weight": 2 } }, { "key": "18690", "source": "1228", "target": "779", "attributes": { "weight": 2 } }, { "key": "36583", "source": "1228", "target": "1260", "attributes": { "weight": 1 } }, { "key": "18705", "source": "1228", "target": "1294", "attributes": { "weight": 2 } }, { "key": "36577", "source": "1228", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18695", "source": "1228", "target": "2229", "attributes": { "weight": 2 } }, { "key": "36572", "source": "1228", "target": "2193", "attributes": { "weight": 1 } }, { "key": "18708", "source": "1228", "target": "405", "attributes": { "weight": 2 } }, { "key": "36585", "source": "1228", "target": "1284", "attributes": { "weight": 1 } }, { "key": "18691", "source": "1228", "target": "1190", "attributes": { "weight": 2 } }, { "key": "36581", "source": "1228", "target": "205", "attributes": { "weight": 1 } }, { "key": "36588", "source": "1228", "target": "1315", "attributes": { "weight": 1 } }, { "key": "18688", "source": "1228", "target": "1174", "attributes": { "weight": 2 } }, { "key": "36571", "source": "1228", "target": "1162", "attributes": { "weight": 1 } }, { "key": "18700", "source": "1228", "target": "1263", "attributes": { "weight": 2 } }, { "key": "36580", "source": "1228", "target": "1241", "attributes": { "weight": 1 } }, { "key": "36579", "source": "1228", "target": "1236", "attributes": { "weight": 1 } }, { "key": "18710", "source": "1228", "target": "218", "attributes": { "weight": 2 } }, { "key": "18709", "source": "1228", "target": "408", "attributes": { "weight": 2 } }, { "key": "18697", "source": "1228", "target": "337", "attributes": { "weight": 2 } }, { "key": "36575", "source": "1228", "target": "1532", "attributes": { "weight": 1 } }, { "key": "18706", "source": "1228", "target": "1301", "attributes": { "weight": 1 } }, { "key": "18693", "source": "1228", "target": "1197", "attributes": { "weight": 2 } }, { "key": "18703", "source": "1228", "target": "926", "attributes": { "weight": 2 } }, { "key": "36574", "source": "1228", "target": "1196", "attributes": { "weight": 1 } }, { "key": "36570", "source": "1228", "target": "1140", "attributes": { "weight": 1 } }, { "key": "11147", "source": "1228", "target": "195", "attributes": { "weight": 6 } }, { "key": "18711", "source": "1228", "target": "1342", "attributes": { "weight": 2 } }, { "key": "18692", "source": "1228", "target": "1526", "attributes": { "weight": 2 } }, { "key": "18698", "source": "1228", "target": "338", "attributes": { "weight": 2 } }, { "key": "18694", "source": "1228", "target": "918", "attributes": { "weight": 2 } }, { "key": "36576", "source": "1228", "target": "1201", "attributes": { "weight": 1 } }, { "key": "36587", "source": "1228", "target": "214", "attributes": { "weight": 1 } }, { "key": "18687", "source": "1228", "target": "1152", "attributes": { "weight": 2 } }, { "key": "18701", "source": "1228", "target": "208", "attributes": { "weight": 2 } }, { "key": "36578", "source": "1228", "target": "199", "attributes": { "weight": 1 } }, { "key": "36589", "source": "1228", "target": "124", "attributes": { "weight": 1 } }, { "key": "36582", "source": "1228", "target": "921", "attributes": { "weight": 1 } }, { "key": "18696", "source": "1228", "target": "1238", "attributes": { "weight": 1 } }, { "key": "8771", "source": "1229", "target": "195", "attributes": { "weight": 5 } }, { "key": "34230", "source": "1229", "target": "1232", "attributes": { "weight": 1 } }, { "key": "15834", "source": "1229", "target": "913", "attributes": { "weight": 1 } }, { "key": "5120", "source": "1229", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5119", "source": "1229", "target": "779", "attributes": { "weight": 2 } }, { "key": "34231", "source": "1229", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5122", "source": "1229", "target": "123", "attributes": { "weight": 3 } }, { "key": "34229", "source": "1229", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5121", "source": "1229", "target": "368", "attributes": { "weight": 2 } }, { "key": "5123", "source": "1230", "target": "779", "attributes": { "weight": 2 } }, { "key": "21932", "source": "1230", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21933", "source": "1230", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21931", "source": "1230", "target": "1279", "attributes": { "weight": 1 } }, { "key": "5124", "source": "1231", "target": "1090", "attributes": { "weight": 2 } }, { "key": "26587", "source": "1232", "target": "454", "attributes": { "weight": 2 } }, { "key": "34272", "source": "1232", "target": "206", "attributes": { "weight": 1 } }, { "key": "34261", "source": "1232", "target": "918", "attributes": { "weight": 1 } }, { "key": "34288", "source": "1232", "target": "1301", "attributes": { "weight": 1 } }, { "key": "34285", "source": "1232", "target": "1294", "attributes": { "weight": 1 } }, { "key": "5128", "source": "1232", "target": "368", "attributes": { "weight": 3 } }, { "key": "7309", "source": "1232", "target": "926", "attributes": { "weight": 3 } }, { "key": "34304", "source": "1232", "target": "1331", "attributes": { "weight": 1 } }, { "key": "26586", "source": "1232", "target": "223", "attributes": { "weight": 3 } }, { "key": "11539", "source": "1232", "target": "938", "attributes": { "weight": 2 } }, { "key": "11541", "source": "1232", "target": "370", "attributes": { "weight": 3 } }, { "key": "34235", "source": "1232", "target": "236", "attributes": { "weight": 1 } }, { "key": "7311", "source": "1232", "target": "154", "attributes": { "weight": 2 } }, { "key": "34309", "source": "1232", "target": "1342", "attributes": { "weight": 1 } }, { "key": "27263", "source": "1232", "target": "57", "attributes": { "weight": 2 } }, { "key": "34267", "source": "1232", "target": "205", "attributes": { "weight": 1 } }, { "key": "34294", "source": "1232", "target": "1315", "attributes": { "weight": 1 } }, { "key": "34277", "source": "1232", "target": "923", "attributes": { "weight": 1 } }, { "key": "31006", "source": "1232", "target": "39", "attributes": { "weight": 3 } }, { "key": "34276", "source": "1232", "target": "208", "attributes": { "weight": 1 } }, { "key": "34289", "source": "1232", "target": "1792", "attributes": { "weight": 1 } }, { "key": "15837", "source": "1232", "target": "278", "attributes": { "weight": 2 } }, { "key": "34298", "source": "1232", "target": "1321", "attributes": { "weight": 1 } }, { "key": "34265", "source": "1232", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34303", "source": "1232", "target": "961", "attributes": { "weight": 1 } }, { "key": "34268", "source": "1232", "target": "3147", "attributes": { "weight": 1 } }, { "key": "34255", "source": "1232", "target": "452", "attributes": { "weight": 1 } }, { "key": "34251", "source": "1232", "target": "912", "attributes": { "weight": 1 } }, { "key": "34247", "source": "1232", "target": "1184", "attributes": { "weight": 1 } }, { "key": "11542", "source": "1232", "target": "1251", "attributes": { "weight": 1 } }, { "key": "34242", "source": "1232", "target": "1172", "attributes": { "weight": 1 } }, { "key": "5130", "source": "1232", "target": "338", "attributes": { "weight": 4 } }, { "key": "34241", "source": "1232", "target": "1171", "attributes": { "weight": 1 } }, { "key": "34233", "source": "1232", "target": "933", "attributes": { "weight": 1 } }, { "key": "34234", "source": "1232", "target": "3130", "attributes": { "weight": 1 } }, { "key": "34266", "source": "1232", "target": "1236", "attributes": { "weight": 1 } }, { "key": "31897", "source": "1232", "target": "1060", "attributes": { "weight": 1 } }, { "key": "34306", "source": "1232", "target": "963", "attributes": { "weight": 1 } }, { "key": "34246", "source": "1232", "target": "1182", "attributes": { "weight": 1 } }, { "key": "7312", "source": "1232", "target": "1063", "attributes": { "weight": 2 } }, { "key": "34299", "source": "1232", "target": "1322", "attributes": { "weight": 1 } }, { "key": "15836", "source": "1232", "target": "913", "attributes": { "weight": 2 } }, { "key": "18714", "source": "1232", "target": "1197", "attributes": { "weight": 3 } }, { "key": "34236", "source": "1232", "target": "1152", "attributes": { "weight": 1 } }, { "key": "34269", "source": "1232", "target": "1056", "attributes": { "weight": 1 } }, { "key": "34275", "source": "1232", "target": "1263", "attributes": { "weight": 1 } }, { "key": "18715", "source": "1232", "target": "1552", "attributes": { "weight": 2 } }, { "key": "34305", "source": "1232", "target": "124", "attributes": { "weight": 1 } }, { "key": "34278", "source": "1232", "target": "3152", "attributes": { "weight": 1 } }, { "key": "5132", "source": "1232", "target": "371", "attributes": { "weight": 3 } }, { "key": "32394", "source": "1232", "target": "791", "attributes": { "weight": 2 } }, { "key": "9785", "source": "1232", "target": "396", "attributes": { "weight": 3 } }, { "key": "34245", "source": "1232", "target": "1180", "attributes": { "weight": 1 } }, { "key": "34300", "source": "1232", "target": "1323", "attributes": { "weight": 2 } }, { "key": "34243", "source": "1232", "target": "1175", "attributes": { "weight": 1 } }, { "key": "34262", "source": "1232", "target": "391", "attributes": { "weight": 1 } }, { "key": "34274", "source": "1232", "target": "1262", "attributes": { "weight": 1 } }, { "key": "31316", "source": "1232", "target": "674", "attributes": { "weight": 1 } }, { "key": "10682", "source": "1232", "target": "1314", "attributes": { "weight": 2 } }, { "key": "34250", "source": "1232", "target": "387", "attributes": { "weight": 1 } }, { "key": "34301", "source": "1232", "target": "3162", "attributes": { "weight": 1 } }, { "key": "7310", "source": "1232", "target": "375", "attributes": { "weight": 2 } }, { "key": "34296", "source": "1232", "target": "1316", "attributes": { "weight": 1 } }, { "key": "34282", "source": "1232", "target": "1289", "attributes": { "weight": 1 } }, { "key": "34291", "source": "1232", "target": "1307", "attributes": { "weight": 1 } }, { "key": "34286", "source": "1232", "target": "1296", "attributes": { "weight": 1 } }, { "key": "34252", "source": "1232", "target": "1194", "attributes": { "weight": 1 } }, { "key": "34290", "source": "1232", "target": "1305", "attributes": { "weight": 1 } }, { "key": "27262", "source": "1232", "target": "52", "attributes": { "weight": 2 } }, { "key": "17246", "source": "1232", "target": "449", "attributes": { "weight": 2 } }, { "key": "34271", "source": "1232", "target": "921", "attributes": { "weight": 1 } }, { "key": "28387", "source": "1232", "target": "580", "attributes": { "weight": 2 } }, { "key": "34240", "source": "1232", "target": "1165", "attributes": { "weight": 1 } }, { "key": "34258", "source": "1232", "target": "1225", "attributes": { "weight": 1 } }, { "key": "34257", "source": "1232", "target": "1214", "attributes": { "weight": 1 } }, { "key": "34256", "source": "1232", "target": "199", "attributes": { "weight": 1 } }, { "key": "34308", "source": "1232", "target": "928", "attributes": { "weight": 1 } }, { "key": "34297", "source": "1232", "target": "1320", "attributes": { "weight": 1 } }, { "key": "34253", "source": "1232", "target": "1047", "attributes": { "weight": 1 } }, { "key": "34248", "source": "1232", "target": "1188", "attributes": { "weight": 1 } }, { "key": "34302", "source": "1232", "target": "407", "attributes": { "weight": 1 } }, { "key": "34273", "source": "1232", "target": "472", "attributes": { "weight": 1 } }, { "key": "27206", "source": "1232", "target": "2665", "attributes": { "weight": 1 } }, { "key": "34292", "source": "1232", "target": "927", "attributes": { "weight": 1 } }, { "key": "34295", "source": "1232", "target": "405", "attributes": { "weight": 1 } }, { "key": "34307", "source": "1232", "target": "257", "attributes": { "weight": 1 } }, { "key": "11540", "source": "1232", "target": "358", "attributes": { "weight": 3 } }, { "key": "18716", "source": "1232", "target": "218", "attributes": { "weight": 2 } }, { "key": "18450", "source": "1232", "target": "1738", "attributes": { "weight": 1 } }, { "key": "34270", "source": "1232", "target": "337", "attributes": { "weight": 1 } }, { "key": "34239", "source": "1232", "target": "3133", "attributes": { "weight": 1 } }, { "key": "14037", "source": "1232", "target": "1031", "attributes": { "weight": 2 } }, { "key": "34310", "source": "1232", "target": "930", "attributes": { "weight": 1 } }, { "key": "15835", "source": "1232", "target": "220", "attributes": { "weight": 4 } }, { "key": "8773", "source": "1232", "target": "442", "attributes": { "weight": 5 } }, { "key": "34249", "source": "1232", "target": "911", "attributes": { "weight": 1 } }, { "key": "13157", "source": "1232", "target": "304", "attributes": { "weight": 2 } }, { "key": "34263", "source": "1232", "target": "1227", "attributes": { "weight": 1 } }, { "key": "27205", "source": "1232", "target": "2296", "attributes": { "weight": 1 } }, { "key": "8772", "source": "1232", "target": "195", "attributes": { "weight": 9 } }, { "key": "5129", "source": "1232", "target": "1046", "attributes": { "weight": 2 } }, { "key": "34281", "source": "1232", "target": "123", "attributes": { "weight": 1 } }, { "key": "34264", "source": "1232", "target": "1229", "attributes": { "weight": 1 } }, { "key": "17893", "source": "1232", "target": "1380", "attributes": { "weight": 1 } }, { "key": "34237", "source": "1232", "target": "1156", "attributes": { "weight": 1 } }, { "key": "34254", "source": "1232", "target": "1207", "attributes": { "weight": 1 } }, { "key": "5127", "source": "1232", "target": "779", "attributes": { "weight": 3 } }, { "key": "34293", "source": "1232", "target": "1309", "attributes": { "weight": 1 } }, { "key": "15838", "source": "1232", "target": "925", "attributes": { "weight": 2 } }, { "key": "34238", "source": "1232", "target": "1159", "attributes": { "weight": 1 } }, { "key": "10681", "source": "1232", "target": "43", "attributes": { "weight": 2 } }, { "key": "5131", "source": "1232", "target": "468", "attributes": { "weight": 8 } }, { "key": "31896", "source": "1232", "target": "359", "attributes": { "weight": 1 } }, { "key": "29029", "source": "1232", "target": "495", "attributes": { "weight": 2 } }, { "key": "29536", "source": "1232", "target": "1415", "attributes": { "weight": 1 } }, { "key": "26588", "source": "1232", "target": "189", "attributes": { "weight": 2 } }, { "key": "34259", "source": "1232", "target": "109", "attributes": { "weight": 1 } }, { "key": "15839", "source": "1232", "target": "595", "attributes": { "weight": 2 } }, { "key": "34244", "source": "1232", "target": "1179", "attributes": { "weight": 1 } }, { "key": "34260", "source": "1232", "target": "917", "attributes": { "weight": 1 } }, { "key": "34287", "source": "1232", "target": "372", "attributes": { "weight": 1 } }, { "key": "34279", "source": "1232", "target": "1286", "attributes": { "weight": 1 } }, { "key": "5126", "source": "1232", "target": "1036", "attributes": { "weight": 2 } }, { "key": "34283", "source": "1232", "target": "1291", "attributes": { "weight": 1 } }, { "key": "34280", "source": "1232", "target": "1287", "attributes": { "weight": 1 } }, { "key": "34284", "source": "1232", "target": "1090", "attributes": { "weight": 1 } }, { "key": "34344", "source": "1233", "target": "1201", "attributes": { "weight": 1 } }, { "key": "34360", "source": "1233", "target": "2229", "attributes": { "weight": 1 } }, { "key": "7315", "source": "1233", "target": "154", "attributes": { "weight": 2 } }, { "key": "11543", "source": "1233", "target": "358", "attributes": { "weight": 2 } }, { "key": "34366", "source": "1233", "target": "1241", "attributes": { "weight": 1 } }, { "key": "18228", "source": "1233", "target": "1197", "attributes": { "weight": 3 } }, { "key": "34431", "source": "1233", "target": "48", "attributes": { "weight": 1 } }, { "key": "34326", "source": "1233", "target": "1174", "attributes": { "weight": 1 } }, { "key": "34315", "source": "1233", "target": "380", "attributes": { "weight": 1 } }, { "key": "34437", "source": "1233", "target": "417", "attributes": { "weight": 1 } }, { "key": "34324", "source": "1233", "target": "1169", "attributes": { "weight": 1 } }, { "key": "34428", "source": "1233", "target": "1343", "attributes": { "weight": 1 } }, { "key": "28388", "source": "1233", "target": "580", "attributes": { "weight": 2 } }, { "key": "34385", "source": "1233", "target": "1273", "attributes": { "weight": 1 } }, { "key": "34345", "source": "1233", "target": "1047", "attributes": { "weight": 1 } }, { "key": "5141", "source": "1233", "target": "1294", "attributes": { "weight": 3 } }, { "key": "34368", "source": "1233", "target": "1248", "attributes": { "weight": 1 } }, { "key": "34379", "source": "1233", "target": "1263", "attributes": { "weight": 1 } }, { "key": "34371", "source": "1233", "target": "1250", "attributes": { "weight": 1 } }, { "key": "34339", "source": "1233", "target": "389", "attributes": { "weight": 1 } }, { "key": "34322", "source": "1233", "target": "237", "attributes": { "weight": 1 } }, { "key": "34376", "source": "1233", "target": "1256", "attributes": { "weight": 1 } }, { "key": "34433", "source": "1233", "target": "1348", "attributes": { "weight": 1 } }, { "key": "34329", "source": "1233", "target": "778", "attributes": { "weight": 1 } }, { "key": "7317", "source": "1233", "target": "1063", "attributes": { "weight": 2 } }, { "key": "10683", "source": "1233", "target": "43", "attributes": { "weight": 2 } }, { "key": "34372", "source": "1233", "target": "30", "attributes": { "weight": 1 } }, { "key": "34381", "source": "1233", "target": "545", "attributes": { "weight": 1 } }, { "key": "34416", "source": "1233", "target": "407", "attributes": { "weight": 1 } }, { "key": "34311", "source": "1233", "target": "1140", "attributes": { "weight": 1 } }, { "key": "34343", "source": "1233", "target": "1199", "attributes": { "weight": 1 } }, { "key": "34363", "source": "1233", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34350", "source": "1233", "target": "108", "attributes": { "weight": 1 } }, { "key": "34364", "source": "1233", "target": "1234", "attributes": { "weight": 1 } }, { "key": "15846", "source": "1233", "target": "1329", "attributes": { "weight": 2 } }, { "key": "34313", "source": "1233", "target": "2780", "attributes": { "weight": 1 } }, { "key": "34340", "source": "1233", "target": "1526", "attributes": { "weight": 1 } }, { "key": "34403", "source": "1233", "target": "1302", "attributes": { "weight": 1 } }, { "key": "34361", "source": "1233", "target": "1229", "attributes": { "weight": 1 } }, { "key": "34419", "source": "1233", "target": "1655", "attributes": { "weight": 1 } }, { "key": "9786", "source": "1233", "target": "396", "attributes": { "weight": 4 } }, { "key": "34346", "source": "1233", "target": "369", "attributes": { "weight": 1 } }, { "key": "34386", "source": "1233", "target": "1275", "attributes": { "weight": 1 } }, { "key": "7313", "source": "1233", "target": "926", "attributes": { "weight": 4 } }, { "key": "15844", "source": "1233", "target": "924", "attributes": { "weight": 2 } }, { "key": "34395", "source": "1233", "target": "1290", "attributes": { "weight": 1 } }, { "key": "34342", "source": "1233", "target": "1645", "attributes": { "weight": 1 } }, { "key": "15840", "source": "1233", "target": "220", "attributes": { "weight": 4 } }, { "key": "34412", "source": "1233", "target": "1321", "attributes": { "weight": 1 } }, { "key": "34320", "source": "1233", "target": "1163", "attributes": { "weight": 1 } }, { "key": "27207", "source": "1233", "target": "2666", "attributes": { "weight": 1 } }, { "key": "28576", "source": "1233", "target": "208", "attributes": { "weight": 2 } }, { "key": "5138", "source": "1233", "target": "371", "attributes": { "weight": 3 } }, { "key": "5135", "source": "1233", "target": "1046", "attributes": { "weight": 3 } }, { "key": "34408", "source": "1233", "target": "1315", "attributes": { "weight": 1 } }, { "key": "34316", "source": "1233", "target": "1148", "attributes": { "weight": 1 } }, { "key": "5139", "source": "1233", "target": "123", "attributes": { "weight": 4 } }, { "key": "14039", "source": "1233", "target": "1323", "attributes": { "weight": 2 } }, { "key": "34335", "source": "1233", "target": "1188", "attributes": { "weight": 1 } }, { "key": "34424", "source": "1233", "target": "635", "attributes": { "weight": 1 } }, { "key": "15845", "source": "1233", "target": "925", "attributes": { "weight": 3 } }, { "key": "34353", "source": "1233", "target": "1224", "attributes": { "weight": 1 } }, { "key": "34348", "source": "1233", "target": "1214", "attributes": { "weight": 1 } }, { "key": "28575", "source": "1233", "target": "337", "attributes": { "weight": 2 } }, { "key": "34383", "source": "1233", "target": "1269", "attributes": { "weight": 1 } }, { "key": "34375", "source": "1233", "target": "136", "attributes": { "weight": 1 } }, { "key": "34377", "source": "1233", "target": "1260", "attributes": { "weight": 1 } }, { "key": "10215", "source": "1233", "target": "1322", "attributes": { "weight": 3 } }, { "key": "34352", "source": "1233", "target": "1221", "attributes": { "weight": 1 } }, { "key": "7314", "source": "1233", "target": "373", "attributes": { "weight": 2 } }, { "key": "34407", "source": "1233", "target": "633", "attributes": { "weight": 1 } }, { "key": "34400", "source": "1233", "target": "785", "attributes": { "weight": 1 } }, { "key": "34347", "source": "1233", "target": "199", "attributes": { "weight": 1 } }, { "key": "26589", "source": "1233", "target": "454", "attributes": { "weight": 2 } }, { "key": "34421", "source": "1233", "target": "408", "attributes": { "weight": 1 } }, { "key": "34404", "source": "1233", "target": "1305", "attributes": { "weight": 1 } }, { "key": "34398", "source": "1233", "target": "1296", "attributes": { "weight": 1 } }, { "key": "34354", "source": "1233", "target": "1225", "attributes": { "weight": 1 } }, { "key": "34418", "source": "1233", "target": "1330", "attributes": { "weight": 1 } }, { "key": "34390", "source": "1233", "target": "401", "attributes": { "weight": 1 } }, { "key": "34323", "source": "1233", "target": "938", "attributes": { "weight": 1 } }, { "key": "34396", "source": "1233", "target": "212", "attributes": { "weight": 1 } }, { "key": "34373", "source": "1233", "target": "544", "attributes": { "weight": 1 } }, { "key": "5134", "source": "1233", "target": "368", "attributes": { "weight": 3 } }, { "key": "34401", "source": "1233", "target": "1300", "attributes": { "weight": 1 } }, { "key": "34411", "source": "1233", "target": "1316", "attributes": { "weight": 1 } }, { "key": "34405", "source": "1233", "target": "1307", "attributes": { "weight": 1 } }, { "key": "34349", "source": "1233", "target": "390", "attributes": { "weight": 1 } }, { "key": "31467", "source": "1233", "target": "3", "attributes": { "weight": 2 } }, { "key": "34392", "source": "1233", "target": "1287", "attributes": { "weight": 1 } }, { "key": "34387", "source": "1233", "target": "399", "attributes": { "weight": 2 } }, { "key": "34318", "source": "1233", "target": "1157", "attributes": { "weight": 1 } }, { "key": "34429", "source": "1233", "target": "1346", "attributes": { "weight": 1 } }, { "key": "34334", "source": "1233", "target": "1184", "attributes": { "weight": 1 } }, { "key": "34336", "source": "1233", "target": "1190", "attributes": { "weight": 1 } }, { "key": "34312", "source": "1233", "target": "379", "attributes": { "weight": 1 } }, { "key": "34378", "source": "1233", "target": "1262", "attributes": { "weight": 1 } }, { "key": "34394", "source": "1233", "target": "1289", "attributes": { "weight": 1 } }, { "key": "34333", "source": "1233", "target": "383", "attributes": { "weight": 1 } }, { "key": "34425", "source": "1233", "target": "218", "attributes": { "weight": 1 } }, { "key": "34409", "source": "1233", "target": "634", "attributes": { "weight": 1 } }, { "key": "34314", "source": "1233", "target": "1144", "attributes": { "weight": 1 } }, { "key": "34370", "source": "1233", "target": "920", "attributes": { "weight": 1 } }, { "key": "34430", "source": "1233", "target": "930", "attributes": { "weight": 1 } }, { "key": "34415", "source": "1233", "target": "406", "attributes": { "weight": 1 } }, { "key": "32395", "source": "1233", "target": "791", "attributes": { "weight": 2 } }, { "key": "15841", "source": "1233", "target": "912", "attributes": { "weight": 2 } }, { "key": "8775", "source": "1233", "target": "442", "attributes": { "weight": 3 } }, { "key": "34410", "source": "1233", "target": "405", "attributes": { "weight": 1 } }, { "key": "34426", "source": "1233", "target": "413", "attributes": { "weight": 1 } }, { "key": "34367", "source": "1233", "target": "205", "attributes": { "weight": 1 } }, { "key": "34382", "source": "1233", "target": "397", "attributes": { "weight": 1 } }, { "key": "13159", "source": "1233", "target": "304", "attributes": { "weight": 2 } }, { "key": "34338", "source": "1233", "target": "388", "attributes": { "weight": 1 } }, { "key": "15843", "source": "1233", "target": "921", "attributes": { "weight": 2 } }, { "key": "34356", "source": "1233", "target": "918", "attributes": { "weight": 1 } }, { "key": "15842", "source": "1233", "target": "913", "attributes": { "weight": 3 } }, { "key": "34422", "source": "1233", "target": "124", "attributes": { "weight": 1 } }, { "key": "34399", "source": "1233", "target": "214", "attributes": { "weight": 1 } }, { "key": "34438", "source": "1233", "target": "418", "attributes": { "weight": 1 } }, { "key": "34417", "source": "1233", "target": "961", "attributes": { "weight": 1 } }, { "key": "5137", "source": "1233", "target": "468", "attributes": { "weight": 6 } }, { "key": "34414", "source": "1233", "target": "1326", "attributes": { "weight": 1 } }, { "key": "34321", "source": "1233", "target": "1165", "attributes": { "weight": 1 } }, { "key": "34374", "source": "1233", "target": "1255", "attributes": { "weight": 1 } }, { "key": "34406", "source": "1233", "target": "215", "attributes": { "weight": 1 } }, { "key": "8774", "source": "1233", "target": "195", "attributes": { "weight": 9 } }, { "key": "34341", "source": "1233", "target": "1196", "attributes": { "weight": 1 } }, { "key": "34358", "source": "1233", "target": "1227", "attributes": { "weight": 1 } }, { "key": "34351", "source": "1233", "target": "1218", "attributes": { "weight": 1 } }, { "key": "34355", "source": "1233", "target": "109", "attributes": { "weight": 1 } }, { "key": "34388", "source": "1233", "target": "189", "attributes": { "weight": 1 } }, { "key": "34389", "source": "1233", "target": "1281", "attributes": { "weight": 1 } }, { "key": "34328", "source": "1233", "target": "1175", "attributes": { "weight": 1 } }, { "key": "34362", "source": "1233", "target": "394", "attributes": { "weight": 1 } }, { "key": "34331", "source": "1233", "target": "1182", "attributes": { "weight": 1 } }, { "key": "34402", "source": "1233", "target": "403", "attributes": { "weight": 1 } }, { "key": "34330", "source": "1233", "target": "1180", "attributes": { "weight": 1 } }, { "key": "34420", "source": "1233", "target": "1331", "attributes": { "weight": 1 } }, { "key": "25695", "source": "1233", "target": "278", "attributes": { "weight": 1 } }, { "key": "7316", "source": "1233", "target": "377", "attributes": { "weight": 2 } }, { "key": "10684", "source": "1233", "target": "1314", "attributes": { "weight": 3 } }, { "key": "34332", "source": "1233", "target": "1183", "attributes": { "weight": 1 } }, { "key": "5136", "source": "1233", "target": "338", "attributes": { "weight": 5 } }, { "key": "34365", "source": "1233", "target": "1236", "attributes": { "weight": 1 } }, { "key": "34319", "source": "1233", "target": "1162", "attributes": { "weight": 1 } }, { "key": "34413", "source": "1233", "target": "1325", "attributes": { "weight": 1 } }, { "key": "34357", "source": "1233", "target": "391", "attributes": { "weight": 1 } }, { "key": "34397", "source": "1233", "target": "1291", "attributes": { "weight": 1 } }, { "key": "34436", "source": "1233", "target": "333", "attributes": { "weight": 1 } }, { "key": "5140", "source": "1233", "target": "1090", "attributes": { "weight": 3 } }, { "key": "34393", "source": "1233", "target": "1288", "attributes": { "weight": 1 } }, { "key": "34384", "source": "1233", "target": "1272", "attributes": { "weight": 1 } }, { "key": "34434", "source": "1233", "target": "415", "attributes": { "weight": 1 } }, { "key": "34423", "source": "1233", "target": "409", "attributes": { "weight": 1 } }, { "key": "34380", "source": "1233", "target": "1264", "attributes": { "weight": 1 } }, { "key": "14038", "source": "1233", "target": "1031", "attributes": { "weight": 2 } }, { "key": "34427", "source": "1233", "target": "1342", "attributes": { "weight": 1 } }, { "key": "34432", "source": "1233", "target": "414", "attributes": { "weight": 1 } }, { "key": "5133", "source": "1233", "target": "779", "attributes": { "weight": 3 } }, { "key": "34435", "source": "1233", "target": "931", "attributes": { "weight": 1 } }, { "key": "34317", "source": "1233", "target": "1152", "attributes": { "weight": 1 } }, { "key": "34327", "source": "1233", "target": "631", "attributes": { "weight": 1 } }, { "key": "34337", "source": "1233", "target": "911", "attributes": { "weight": 1 } }, { "key": "34369", "source": "1233", "target": "1249", "attributes": { "weight": 1 } }, { "key": "34391", "source": "1233", "target": "1286", "attributes": { "weight": 1 } }, { "key": "13158", "source": "1233", "target": "387", "attributes": { "weight": 2 } }, { "key": "34359", "source": "1233", "target": "3145", "attributes": { "weight": 1 } }, { "key": "34325", "source": "1233", "target": "1170", "attributes": { "weight": 1 } }, { "key": "5143", "source": "1234", "target": "368", "attributes": { "weight": 2 } }, { "key": "34440", "source": "1234", "target": "1233", "attributes": { "weight": 1 } }, { "key": "21938", "source": "1234", "target": "337", "attributes": { "weight": 2 } }, { "key": "15857", "source": "1234", "target": "925", "attributes": { "weight": 1 } }, { "key": "18718", "source": "1234", "target": "1552", "attributes": { "weight": 2 } }, { "key": "8777", "source": "1234", "target": "195", "attributes": { "weight": 4 } }, { "key": "18717", "source": "1234", "target": "1526", "attributes": { "weight": 2 } }, { "key": "21937", "source": "1234", "target": "2293", "attributes": { "weight": 1 } }, { "key": "34439", "source": "1234", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34441", "source": "1234", "target": "338", "attributes": { "weight": 1 } }, { "key": "5144", "source": "1234", "target": "123", "attributes": { "weight": 3 } }, { "key": "5147", "source": "1235", "target": "921", "attributes": { "weight": 3 } }, { "key": "5148", "source": "1235", "target": "1090", "attributes": { "weight": 2 } }, { "key": "5145", "source": "1235", "target": "779", "attributes": { "weight": 2 } }, { "key": "5146", "source": "1235", "target": "1196", "attributes": { "weight": 2 } }, { "key": "8778", "source": "1235", "target": "195", "attributes": { "weight": 4 } }, { "key": "34444", "source": "1236", "target": "1047", "attributes": { "weight": 1 } }, { "key": "5153", "source": "1236", "target": "338", "attributes": { "weight": 4 } }, { "key": "18237", "source": "1236", "target": "2205", "attributes": { "weight": 1 } }, { "key": "15864", "source": "1236", "target": "1262", "attributes": { "weight": 1 } }, { "key": "15863", "source": "1236", "target": "921", "attributes": { "weight": 1 } }, { "key": "18236", "source": "1236", "target": "1197", "attributes": { "weight": 4 } }, { "key": "36593", "source": "1236", "target": "199", "attributes": { "weight": 1 } }, { "key": "15869", "source": "1236", "target": "215", "attributes": { "weight": 2 } }, { "key": "34446", "source": "1236", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5150", "source": "1236", "target": "1196", "attributes": { "weight": 2 } }, { "key": "8779", "source": "1236", "target": "195", "attributes": { "weight": 9 } }, { "key": "15861", "source": "1236", "target": "938", "attributes": { "weight": 1 } }, { "key": "18721", "source": "1236", "target": "1263", "attributes": { "weight": 2 } }, { "key": "9787", "source": "1236", "target": "387", "attributes": { "weight": 2 } }, { "key": "18720", "source": "1236", "target": "337", "attributes": { "weight": 2 } }, { "key": "5154", "source": "1236", "target": "371", "attributes": { "weight": 2 } }, { "key": "15867", "source": "1236", "target": "925", "attributes": { "weight": 1 } }, { "key": "15865", "source": "1236", "target": "208", "attributes": { "weight": 3 } }, { "key": "34445", "source": "1236", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5157", "source": "1236", "target": "1294", "attributes": { "weight": 3 } }, { "key": "34443", "source": "1236", "target": "1182", "attributes": { "weight": 1 } }, { "key": "7319", "source": "1236", "target": "1063", "attributes": { "weight": 1 } }, { "key": "15862", "source": "1236", "target": "913", "attributes": { "weight": 1 } }, { "key": "15871", "source": "1236", "target": "218", "attributes": { "weight": 3 } }, { "key": "34447", "source": "1236", "target": "1323", "attributes": { "weight": 1 } }, { "key": "15870", "source": "1236", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18719", "source": "1236", "target": "1174", "attributes": { "weight": 2 } }, { "key": "15866", "source": "1236", "target": "924", "attributes": { "weight": 1 } }, { "key": "15868", "source": "1236", "target": "1305", "attributes": { "weight": 1 } }, { "key": "5152", "source": "1236", "target": "370", "attributes": { "weight": 3 } }, { "key": "5151", "source": "1236", "target": "368", "attributes": { "weight": 2 } }, { "key": "36594", "source": "1236", "target": "1228", "attributes": { "weight": 1 } }, { "key": "5156", "source": "1236", "target": "1090", "attributes": { "weight": 2 } }, { "key": "5149", "source": "1236", "target": "779", "attributes": { "weight": 2 } }, { "key": "5155", "source": "1236", "target": "123", "attributes": { "weight": 3 } }, { "key": "5158", "source": "1237", "target": "1090", "attributes": { "weight": 2 } }, { "key": "5160", "source": "1238", "target": "1196", "attributes": { "weight": 2 } }, { "key": "18722", "source": "1238", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18723", "source": "1238", "target": "199", "attributes": { "weight": 2 } }, { "key": "18725", "source": "1238", "target": "408", "attributes": { "weight": 1 } }, { "key": "5161", "source": "1238", "target": "1090", "attributes": { "weight": 2 } }, { "key": "18726", "source": "1238", "target": "218", "attributes": { "weight": 2 } }, { "key": "36595", "source": "1238", "target": "212", "attributes": { "weight": 1 } }, { "key": "10216", "source": "1238", "target": "938", "attributes": { "weight": 2 } }, { "key": "21941", "source": "1238", "target": "2300", "attributes": { "weight": 1 } }, { "key": "18724", "source": "1238", "target": "208", "attributes": { "weight": 2 } }, { "key": "5163", "source": "1239", "target": "1090", "attributes": { "weight": 2 } }, { "key": "34449", "source": "1239", "target": "1047", "attributes": { "weight": 1 } }, { "key": "15875", "source": "1239", "target": "913", "attributes": { "weight": 1 } }, { "key": "24994", "source": "1240", "target": "2345", "attributes": { "weight": 2 } }, { "key": "24990", "source": "1240", "target": "1960", "attributes": { "weight": 2 } }, { "key": "24996", "source": "1240", "target": "1512", "attributes": { "weight": 2 } }, { "key": "24992", "source": "1240", "target": "1820", "attributes": { "weight": 2 } }, { "key": "24987", "source": "1240", "target": "2538", "attributes": { "weight": 1 } }, { "key": "21449", "source": "1240", "target": "1823", "attributes": { "weight": 3 } }, { "key": "24985", "source": "1240", "target": "2537", "attributes": { "weight": 1 } }, { "key": "24984", "source": "1240", "target": "2546", "attributes": { "weight": 2 } }, { "key": "24991", "source": "1240", "target": "2540", "attributes": { "weight": 2 } }, { "key": "21446", "source": "1240", "target": "2279", "attributes": { "weight": 2 } }, { "key": "24988", "source": "1240", "target": "707", "attributes": { "weight": 2 } }, { "key": "21448", "source": "1240", "target": "2280", "attributes": { "weight": 3 } }, { "key": "24993", "source": "1240", "target": "2548", "attributes": { "weight": 1 } }, { "key": "24995", "source": "1240", "target": "1822", "attributes": { "weight": 2 } }, { "key": "5164", "source": "1240", "target": "580", "attributes": { "weight": 3 } }, { "key": "28405", "source": "1240", "target": "2539", "attributes": { "weight": 1 } }, { "key": "21447", "source": "1240", "target": "698", "attributes": { "weight": 3 } }, { "key": "24982", "source": "1240", "target": "2536", "attributes": { "weight": 1 } }, { "key": "24986", "source": "1240", "target": "1869", "attributes": { "weight": 1 } }, { "key": "24983", "source": "1240", "target": "2545", "attributes": { "weight": 1 } }, { "key": "24989", "source": "1240", "target": "1979", "attributes": { "weight": 2 } }, { "key": "21445", "source": "1240", "target": "1191", "attributes": { "weight": 3 } }, { "key": "8782", "source": "1241", "target": "195", "attributes": { "weight": 5 } }, { "key": "5165", "source": "1241", "target": "779", "attributes": { "weight": 2 } }, { "key": "34452", "source": "1241", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34453", "source": "1241", "target": "123", "attributes": { "weight": 1 } }, { "key": "36596", "source": "1241", "target": "1552", "attributes": { "weight": 1 } }, { "key": "5166", "source": "1241", "target": "1196", "attributes": { "weight": 2 } }, { "key": "18727", "source": "1241", "target": "1228", "attributes": { "weight": 2 } }, { "key": "5167", "source": "1241", "target": "368", "attributes": { "weight": 2 } }, { "key": "18728", "source": "1241", "target": "208", "attributes": { "weight": 2 } }, { "key": "5234", "source": "1242", "target": "368", "attributes": { "weight": 2 } }, { "key": "24737", "source": "1243", "target": "2525", "attributes": { "weight": 2 } }, { "key": "5236", "source": "1243", "target": "128", "attributes": { "weight": 3 } }, { "key": "10219", "source": "1243", "target": "1322", "attributes": { "weight": 1 } }, { "key": "10217", "source": "1243", "target": "711", "attributes": { "weight": 1 } }, { "key": "24735", "source": "1243", "target": "2523", "attributes": { "weight": 2 } }, { "key": "10218", "source": "1243", "target": "1694", "attributes": { "weight": 1 } }, { "key": "10220", "source": "1243", "target": "1697", "attributes": { "weight": 1 } }, { "key": "24733", "source": "1243", "target": "2521", "attributes": { "weight": 2 } }, { "key": "24734", "source": "1243", "target": "2522", "attributes": { "weight": 2 } }, { "key": "10221", "source": "1243", "target": "1701", "attributes": { "weight": 1 } }, { "key": "24732", "source": "1243", "target": "2519", "attributes": { "weight": 1 } }, { "key": "26223", "source": "1244", "target": "30", "attributes": { "weight": 1 } }, { "key": "5237", "source": "1244", "target": "1149", "attributes": { "weight": 4 } }, { "key": "9789", "source": "1244", "target": "27", "attributes": { "weight": 2 } }, { "key": "23198", "source": "1245", "target": "1285", "attributes": { "weight": 2 } }, { "key": "5242", "source": "1245", "target": "1284", "attributes": { "weight": 2 } }, { "key": "23197", "source": "1245", "target": "1227", "attributes": { "weight": 2 } }, { "key": "10222", "source": "1245", "target": "1322", "attributes": { "weight": 1 } }, { "key": "5244", "source": "1245", "target": "1326", "attributes": { "weight": 2 } }, { "key": "5243", "source": "1245", "target": "1294", "attributes": { "weight": 2 } }, { "key": "34461", "source": "1245", "target": "1197", "attributes": { "weight": 1 } }, { "key": "28218", "source": "1245", "target": "2726", "attributes": { "weight": 1 } }, { "key": "34462", "source": "1245", "target": "1323", "attributes": { "weight": 1 } }, { "key": "36758", "source": "1245", "target": "333", "attributes": { "weight": 1 } }, { "key": "5241", "source": "1245", "target": "338", "attributes": { "weight": 5 } }, { "key": "5269", "source": "1246", "target": "368", "attributes": { "weight": 2 } }, { "key": "20301", "source": "1247", "target": "1546", "attributes": { "weight": 1 } }, { "key": "20290", "source": "1247", "target": "221", "attributes": { "weight": 1 } }, { "key": "20298", "source": "1247", "target": "459", "attributes": { "weight": 3 } }, { "key": "20294", "source": "1247", "target": "451", "attributes": { "weight": 3 } }, { "key": "32138", "source": "1247", "target": "1564", "attributes": { "weight": 1 } }, { "key": "20300", "source": "1247", "target": "464", "attributes": { "weight": 1 } }, { "key": "27099", "source": "1247", "target": "494", "attributes": { "weight": 1 } }, { "key": "20307", "source": "1247", "target": "56", "attributes": { "weight": 4 } }, { "key": "29682", "source": "1247", "target": "421", "attributes": { "weight": 1 } }, { "key": "27081", "source": "1247", "target": "130", "attributes": { "weight": 2 } }, { "key": "27100", "source": "1247", "target": "1094", "attributes": { "weight": 1 } }, { "key": "20297", "source": "1247", "target": "2251", "attributes": { "weight": 1 } }, { "key": "31327", "source": "1247", "target": "674", "attributes": { "weight": 1 } }, { "key": "20287", "source": "1247", "target": "1353", "attributes": { "weight": 3 } }, { "key": "27083", "source": "1247", "target": "440", "attributes": { "weight": 1 } }, { "key": "27087", "source": "1247", "target": "183", "attributes": { "weight": 1 } }, { "key": "27085", "source": "1247", "target": "447", "attributes": { "weight": 1 } }, { "key": "27091", "source": "1247", "target": "1362", "attributes": { "weight": 1 } }, { "key": "27090", "source": "1247", "target": "458", "attributes": { "weight": 2 } }, { "key": "27086", "source": "1247", "target": "860", "attributes": { "weight": 3 } }, { "key": "27093", "source": "1247", "target": "54", "attributes": { "weight": 1 } }, { "key": "20289", "source": "1247", "target": "1354", "attributes": { "weight": 2 } }, { "key": "32137", "source": "1247", "target": "1141", "attributes": { "weight": 1 } }, { "key": "20296", "source": "1247", "target": "1360", "attributes": { "weight": 1 } }, { "key": "5338", "source": "1247", "target": "468", "attributes": { "weight": 3 } }, { "key": "20304", "source": "1247", "target": "229", "attributes": { "weight": 1 } }, { "key": "20291", "source": "1247", "target": "443", "attributes": { "weight": 1 } }, { "key": "27094", "source": "1247", "target": "1366", "attributes": { "weight": 2 } }, { "key": "12268", "source": "1247", "target": "1219", "attributes": { "weight": 1 } }, { "key": "27084", "source": "1247", "target": "442", "attributes": { "weight": 1 } }, { "key": "20302", "source": "1247", "target": "2094", "attributes": { "weight": 2 } }, { "key": "37451", "source": "1247", "target": "424", "attributes": { "weight": 1 } }, { "key": "20303", "source": "1247", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20308", "source": "1247", "target": "235", "attributes": { "weight": 1 } }, { "key": "12267", "source": "1247", "target": "1161", "attributes": { "weight": 1 } }, { "key": "27097", "source": "1247", "target": "479", "attributes": { "weight": 1 } }, { "key": "20288", "source": "1247", "target": "429", "attributes": { "weight": 2 } }, { "key": "27095", "source": "1247", "target": "474", "attributes": { "weight": 1 } }, { "key": "27082", "source": "1247", "target": "858", "attributes": { "weight": 2 } }, { "key": "20293", "source": "1247", "target": "449", "attributes": { "weight": 1 } }, { "key": "27096", "source": "1247", "target": "1812", "attributes": { "weight": 1 } }, { "key": "20295", "source": "1247", "target": "1358", "attributes": { "weight": 2 } }, { "key": "20292", "source": "1247", "target": "1070", "attributes": { "weight": 1 } }, { "key": "27098", "source": "1247", "target": "483", "attributes": { "weight": 1 } }, { "key": "20305", "source": "1247", "target": "231", "attributes": { "weight": 4 } }, { "key": "20299", "source": "1247", "target": "462", "attributes": { "weight": 2 } }, { "key": "20306", "source": "1247", "target": "480", "attributes": { "weight": 2 } }, { "key": "27092", "source": "1247", "target": "53", "attributes": { "weight": 2 } }, { "key": "27088", "source": "1247", "target": "452", "attributes": { "weight": 1 } }, { "key": "11169", "source": "1247", "target": "220", "attributes": { "weight": 3 } }, { "key": "27089", "source": "1247", "target": "1357", "attributes": { "weight": 1 } }, { "key": "18751", "source": "1248", "target": "2229", "attributes": { "weight": 1 } }, { "key": "18750", "source": "1248", "target": "1526", "attributes": { "weight": 2 } }, { "key": "18752", "source": "1248", "target": "337", "attributes": { "weight": 2 } }, { "key": "5339", "source": "1248", "target": "368", "attributes": { "weight": 2 } }, { "key": "34493", "source": "1248", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34492", "source": "1248", "target": "1197", "attributes": { "weight": 1 } }, { "key": "36628", "source": "1248", "target": "1152", "attributes": { "weight": 1 } }, { "key": "34494", "source": "1249", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5341", "source": "1249", "target": "368", "attributes": { "weight": 2 } }, { "key": "5345", "source": "1250", "target": "368", "attributes": { "weight": 2 } }, { "key": "8824", "source": "1250", "target": "195", "attributes": { "weight": 3 } }, { "key": "34496", "source": "1250", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5374", "source": "1251", "target": "1294", "attributes": { "weight": 2 } }, { "key": "5373", "source": "1251", "target": "1291", "attributes": { "weight": 3 } }, { "key": "11604", "source": "1251", "target": "938", "attributes": { "weight": 1 } }, { "key": "11605", "source": "1251", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5375", "source": "1251", "target": "1322", "attributes": { "weight": 3 } }, { "key": "11606", "source": "1251", "target": "370", "attributes": { "weight": 1 } }, { "key": "11610", "source": "1251", "target": "1329", "attributes": { "weight": 2 } }, { "key": "11609", "source": "1251", "target": "1323", "attributes": { "weight": 1 } }, { "key": "11611", "source": "1251", "target": "1331", "attributes": { "weight": 1 } }, { "key": "11608", "source": "1251", "target": "1284", "attributes": { "weight": 1 } }, { "key": "11607", "source": "1251", "target": "337", "attributes": { "weight": 1 } }, { "key": "11603", "source": "1251", "target": "1152", "attributes": { "weight": 1 } }, { "key": "9661", "source": "1252", "target": "1626", "attributes": { "weight": 1 } }, { "key": "5376", "source": "1252", "target": "171", "attributes": { "weight": 4 } }, { "key": "21476", "source": "1252", "target": "2285", "attributes": { "weight": 3 } }, { "key": "9663", "source": "1252", "target": "178", "attributes": { "weight": 5 } }, { "key": "9662", "source": "1252", "target": "172", "attributes": { "weight": 4 } }, { "key": "32555", "source": "1253", "target": "791", "attributes": { "weight": 1 } }, { "key": "29687", "source": "1253", "target": "421", "attributes": { "weight": 1 } }, { "key": "29688", "source": "1253", "target": "171", "attributes": { "weight": 1 } }, { "key": "32274", "source": "1253", "target": "164", "attributes": { "weight": 1 } }, { "key": "29698", "source": "1253", "target": "2782", "attributes": { "weight": 1 } }, { "key": "23891", "source": "1253", "target": "2463", "attributes": { "weight": 2 } }, { "key": "28624", "source": "1253", "target": "1060", "attributes": { "weight": 3 } }, { "key": "29692", "source": "1253", "target": "2288", "attributes": { "weight": 1 } }, { "key": "29686", "source": "1253", "target": "1046", "attributes": { "weight": 2 } }, { "key": "23893", "source": "1253", "target": "2465", "attributes": { "weight": 3 } }, { "key": "22677", "source": "1253", "target": "1037", "attributes": { "weight": 2 } }, { "key": "29695", "source": "1253", "target": "2116", "attributes": { "weight": 1 } }, { "key": "29694", "source": "1253", "target": "70", "attributes": { "weight": 1 } }, { "key": "28623", "source": "1253", "target": "1801", "attributes": { "weight": 1 } }, { "key": "26144", "source": "1253", "target": "1056", "attributes": { "weight": 3 } }, { "key": "29697", "source": "1253", "target": "794", "attributes": { "weight": 1 } }, { "key": "5380", "source": "1253", "target": "1036", "attributes": { "weight": 7 } }, { "key": "29691", "source": "1253", "target": "2115", "attributes": { "weight": 1 } }, { "key": "28621", "source": "1253", "target": "359", "attributes": { "weight": 4 } }, { "key": "29684", "source": "1253", "target": "2883", "attributes": { "weight": 1 } }, { "key": "29696", "source": "1253", "target": "2891", "attributes": { "weight": 1 } }, { "key": "29693", "source": "1253", "target": "473", "attributes": { "weight": 1 } }, { "key": "17482", "source": "1253", "target": "358", "attributes": { "weight": 3 } }, { "key": "28620", "source": "1253", "target": "1045", "attributes": { "weight": 2 } }, { "key": "29690", "source": "1253", "target": "472", "attributes": { "weight": 1 } }, { "key": "23892", "source": "1253", "target": "1763", "attributes": { "weight": 3 } }, { "key": "29685", "source": "1253", "target": "419", "attributes": { "weight": 1 } }, { "key": "28622", "source": "1253", "target": "362", "attributes": { "weight": 3 } }, { "key": "29699", "source": "1253", "target": "1063", "attributes": { "weight": 1 } }, { "key": "29683", "source": "1253", "target": "130", "attributes": { "weight": 1 } }, { "key": "29689", "source": "1253", "target": "468", "attributes": { "weight": 1 } }, { "key": "5469", "source": "1254", "target": "338", "attributes": { "weight": 5 } }, { "key": "5470", "source": "1254", "target": "1284", "attributes": { "weight": 2 } }, { "key": "36763", "source": "1254", "target": "333", "attributes": { "weight": 1 } }, { "key": "23200", "source": "1254", "target": "1227", "attributes": { "weight": 4 } }, { "key": "10231", "source": "1254", "target": "1315", "attributes": { "weight": 1 } }, { "key": "34499", "source": "1254", "target": "1323", "attributes": { "weight": 1 } }, { "key": "5471", "source": "1254", "target": "1294", "attributes": { "weight": 2 } }, { "key": "34498", "source": "1254", "target": "1197", "attributes": { "weight": 1 } }, { "key": "10232", "source": "1254", "target": "1322", "attributes": { "weight": 1 } }, { "key": "5472", "source": "1254", "target": "1326", "attributes": { "weight": 2 } }, { "key": "23201", "source": "1254", "target": "1285", "attributes": { "weight": 1 } }, { "key": "5485", "source": "1255", "target": "1196", "attributes": { "weight": 2 } }, { "key": "18243", "source": "1255", "target": "1197", "attributes": { "weight": 2 } }, { "key": "18756", "source": "1255", "target": "1526", "attributes": { "weight": 2 } }, { "key": "5488", "source": "1255", "target": "123", "attributes": { "weight": 3 } }, { "key": "34504", "source": "1255", "target": "1233", "attributes": { "weight": 1 } }, { "key": "21992", "source": "1255", "target": "2212", "attributes": { "weight": 1 } }, { "key": "18755", "source": "1255", "target": "1174", "attributes": { "weight": 2 } }, { "key": "15962", "source": "1255", "target": "913", "attributes": { "weight": 1 } }, { "key": "36630", "source": "1255", "target": "1228", "attributes": { "weight": 1 } }, { "key": "36633", "source": "1255", "target": "1294", "attributes": { "weight": 1 } }, { "key": "8840", "source": "1255", "target": "195", "attributes": { "weight": 4 } }, { "key": "5487", "source": "1255", "target": "921", "attributes": { "weight": 2 } }, { "key": "36632", "source": "1255", "target": "1552", "attributes": { "weight": 1 } }, { "key": "18757", "source": "1255", "target": "124", "attributes": { "weight": 1 } }, { "key": "36631", "source": "1255", "target": "337", "attributes": { "weight": 1 } }, { "key": "5484", "source": "1255", "target": "779", "attributes": { "weight": 2 } }, { "key": "5486", "source": "1255", "target": "368", "attributes": { "weight": 2 } }, { "key": "21993", "source": "1256", "target": "337", "attributes": { "weight": 1 } }, { "key": "34510", "source": "1256", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5491", "source": "1256", "target": "368", "attributes": { "weight": 2 } }, { "key": "15965", "source": "1257", "target": "925", "attributes": { "weight": 1 } }, { "key": "5493", "source": "1257", "target": "123", "attributes": { "weight": 2 } }, { "key": "26335", "source": "1258", "target": "451", "attributes": { "weight": 1 } }, { "key": "26353", "source": "1258", "target": "231", "attributes": { "weight": 1 } }, { "key": "26333", "source": "1258", "target": "1355", "attributes": { "weight": 1 } }, { "key": "26345", "source": "1258", "target": "470", "attributes": { "weight": 3 } }, { "key": "26361", "source": "1258", "target": "499", "attributes": { "weight": 1 } }, { "key": "5494", "source": "1258", "target": "468", "attributes": { "weight": 2 } }, { "key": "26319", "source": "1258", "target": "857", "attributes": { "weight": 1 } }, { "key": "33539", "source": "1258", "target": "135", "attributes": { "weight": 1 } }, { "key": "26358", "source": "1258", "target": "193", "attributes": { "weight": 2 } }, { "key": "26338", "source": "1258", "target": "1117", "attributes": { "weight": 1 } }, { "key": "26342", "source": "1258", "target": "459", "attributes": { "weight": 1 } }, { "key": "26323", "source": "1258", "target": "59", "attributes": { "weight": 1 } }, { "key": "26326", "source": "1258", "target": "2644", "attributes": { "weight": 1 } }, { "key": "26341", "source": "1258", "target": "458", "attributes": { "weight": 1 } }, { "key": "26325", "source": "1258", "target": "436", "attributes": { "weight": 1 } }, { "key": "26322", "source": "1258", "target": "1107", "attributes": { "weight": 1 } }, { "key": "25877", "source": "1258", "target": "220", "attributes": { "weight": 1 } }, { "key": "26347", "source": "1258", "target": "471", "attributes": { "weight": 1 } }, { "key": "26340", "source": "1258", "target": "52", "attributes": { "weight": 1 } }, { "key": "27275", "source": "1258", "target": "57", "attributes": { "weight": 1 } }, { "key": "26343", "source": "1258", "target": "462", "attributes": { "weight": 1 } }, { "key": "26320", "source": "1258", "target": "1703", "attributes": { "weight": 1 } }, { "key": "26330", "source": "1258", "target": "674", "attributes": { "weight": 2 } }, { "key": "8851", "source": "1258", "target": "442", "attributes": { "weight": 2 } }, { "key": "26328", "source": "1258", "target": "443", "attributes": { "weight": 1 } }, { "key": "26334", "source": "1258", "target": "449", "attributes": { "weight": 1 } }, { "key": "26360", "source": "1258", "target": "495", "attributes": { "weight": 2 } }, { "key": "26339", "source": "1258", "target": "1358", "attributes": { "weight": 1 } }, { "key": "26351", "source": "1258", "target": "474", "attributes": { "weight": 1 } }, { "key": "26356", "source": "1258", "target": "1372", "attributes": { "weight": 2 } }, { "key": "23378", "source": "1258", "target": "183", "attributes": { "weight": 2 } }, { "key": "26329", "source": "1258", "target": "444", "attributes": { "weight": 1 } }, { "key": "26344", "source": "1258", "target": "1363", "attributes": { "weight": 1 } }, { "key": "26357", "source": "1258", "target": "56", "attributes": { "weight": 1 } }, { "key": "26349", "source": "1258", "target": "189", "attributes": { "weight": 2 } }, { "key": "26318", "source": "1258", "target": "1353", "attributes": { "weight": 1 } }, { "key": "26324", "source": "1258", "target": "424", "attributes": { "weight": 1 } }, { "key": "26331", "source": "1258", "target": "445", "attributes": { "weight": 1 } }, { "key": "26359", "source": "1258", "target": "2208", "attributes": { "weight": 1 } }, { "key": "26352", "source": "1258", "target": "1744", "attributes": { "weight": 2 } }, { "key": "26355", "source": "1258", "target": "483", "attributes": { "weight": 1 } }, { "key": "26321", "source": "1258", "target": "429", "attributes": { "weight": 1 } }, { "key": "11195", "source": "1258", "target": "473", "attributes": { "weight": 3 } }, { "key": "24101", "source": "1258", "target": "130", "attributes": { "weight": 3 } }, { "key": "11194", "source": "1258", "target": "452", "attributes": { "weight": 2 } }, { "key": "26332", "source": "1258", "target": "447", "attributes": { "weight": 1 } }, { "key": "26350", "source": "1258", "target": "190", "attributes": { "weight": 1 } }, { "key": "26337", "source": "1258", "target": "454", "attributes": { "weight": 1 } }, { "key": "26346", "source": "1258", "target": "54", "attributes": { "weight": 1 } }, { "key": "26327", "source": "1258", "target": "441", "attributes": { "weight": 1 } }, { "key": "32558", "source": "1258", "target": "791", "attributes": { "weight": 1 } }, { "key": "26336", "source": "1258", "target": "1357", "attributes": { "weight": 1 } }, { "key": "26348", "source": "1258", "target": "1367", "attributes": { "weight": 1 } }, { "key": "26354", "source": "1258", "target": "482", "attributes": { "weight": 1 } }, { "key": "5495", "source": "1259", "target": "779", "attributes": { "weight": 2 } }, { "key": "36634", "source": "1260", "target": "1228", "attributes": { "weight": 1 } }, { "key": "34512", "source": "1260", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5505", "source": "1260", "target": "368", "attributes": { "weight": 2 } }, { "key": "18758", "source": "1260", "target": "1526", "attributes": { "weight": 2 } }, { "key": "36635", "source": "1260", "target": "337", "attributes": { "weight": 1 } }, { "key": "34513", "source": "1260", "target": "1233", "attributes": { "weight": 1 } }, { "key": "7992", "source": "1261", "target": "1439", "attributes": { "weight": 3 } }, { "key": "7999", "source": "1261", "target": "1501", "attributes": { "weight": 1 } }, { "key": "8000", "source": "1261", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7996", "source": "1261", "target": "1490", "attributes": { "weight": 2 } }, { "key": "5511", "source": "1261", "target": "371", "attributes": { "weight": 3 } }, { "key": "8869", "source": "1261", "target": "109", "attributes": { "weight": 4 } }, { "key": "7990", "source": "1261", "target": "1436", "attributes": { "weight": 1 } }, { "key": "7993", "source": "1261", "target": "1446", "attributes": { "weight": 1 } }, { "key": "21752", "source": "1261", "target": "103", "attributes": { "weight": 2 } }, { "key": "24891", "source": "1261", "target": "1455", "attributes": { "weight": 1 } }, { "key": "14047", "source": "1261", "target": "1031", "attributes": { "weight": 1 } }, { "key": "7998", "source": "1261", "target": "1500", "attributes": { "weight": 1 } }, { "key": "21753", "source": "1261", "target": "108", "attributes": { "weight": 2 } }, { "key": "35242", "source": "1261", "target": "1030", "attributes": { "weight": 1 } }, { "key": "7991", "source": "1261", "target": "1437", "attributes": { "weight": 3 } }, { "key": "7994", "source": "1261", "target": "1186", "attributes": { "weight": 1 } }, { "key": "7997", "source": "1261", "target": "1499", "attributes": { "weight": 3 } }, { "key": "7995", "source": "1261", "target": "1486", "attributes": { "weight": 1 } }, { "key": "7341", "source": "1262", "target": "1063", "attributes": { "weight": 3 } }, { "key": "34516", "source": "1262", "target": "1047", "attributes": { "weight": 1 } }, { "key": "11617", "source": "1262", "target": "208", "attributes": { "weight": 2 } }, { "key": "5516", "source": "1262", "target": "123", "attributes": { "weight": 3 } }, { "key": "11616", "source": "1262", "target": "370", "attributes": { "weight": 3 } }, { "key": "29011", "source": "1262", "target": "220", "attributes": { "weight": 1 } }, { "key": "18244", "source": "1262", "target": "124", "attributes": { "weight": 1 } }, { "key": "35567", "source": "1262", "target": "135", "attributes": { "weight": 1 } }, { "key": "15967", "source": "1262", "target": "913", "attributes": { "weight": 1 } }, { "key": "12824", "source": "1262", "target": "780", "attributes": { "weight": 1 } }, { "key": "15968", "source": "1262", "target": "1236", "attributes": { "weight": 1 } }, { "key": "14049", "source": "1262", "target": "1031", "attributes": { "weight": 1 } }, { "key": "5517", "source": "1262", "target": "1090", "attributes": { "weight": 2 } }, { "key": "7340", "source": "1262", "target": "154", "attributes": { "weight": 2 } }, { "key": "18759", "source": "1262", "target": "1174", "attributes": { "weight": 1 } }, { "key": "11615", "source": "1262", "target": "199", "attributes": { "weight": 3 } }, { "key": "18760", "source": "1262", "target": "1552", "attributes": { "weight": 1 } }, { "key": "34517", "source": "1262", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5514", "source": "1262", "target": "368", "attributes": { "weight": 2 } }, { "key": "7339", "source": "1262", "target": "1350", "attributes": { "weight": 3 } }, { "key": "34518", "source": "1262", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5515", "source": "1262", "target": "371", "attributes": { "weight": 2 } }, { "key": "8870", "source": "1262", "target": "195", "attributes": { "weight": 4 } }, { "key": "15335", "source": "1262", "target": "454", "attributes": { "weight": 1 } }, { "key": "26162", "source": "1262", "target": "1214", "attributes": { "weight": 1 } }, { "key": "5513", "source": "1262", "target": "779", "attributes": { "weight": 2 } }, { "key": "25526", "source": "1263", "target": "2607", "attributes": { "weight": 1 } }, { "key": "15972", "source": "1263", "target": "913", "attributes": { "weight": 1 } }, { "key": "18770", "source": "1263", "target": "124", "attributes": { "weight": 2 } }, { "key": "34523", "source": "1263", "target": "1233", "attributes": { "weight": 1 } }, { "key": "7342", "source": "1263", "target": "1063", "attributes": { "weight": 1 } }, { "key": "34522", "source": "1263", "target": "1232", "attributes": { "weight": 1 } }, { "key": "8871", "source": "1263", "target": "195", "attributes": { "weight": 8 } }, { "key": "25525", "source": "1263", "target": "2602", "attributes": { "weight": 1 } }, { "key": "18246", "source": "1263", "target": "1197", "attributes": { "weight": 4 } }, { "key": "15975", "source": "1263", "target": "208", "attributes": { "weight": 3 } }, { "key": "5520", "source": "1263", "target": "368", "attributes": { "weight": 2 } }, { "key": "36640", "source": "1263", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18764", "source": "1263", "target": "337", "attributes": { "weight": 2 } }, { "key": "18767", "source": "1263", "target": "926", "attributes": { "weight": 2 } }, { "key": "5518", "source": "1263", "target": "779", "attributes": { "weight": 2 } }, { "key": "36639", "source": "1263", "target": "199", "attributes": { "weight": 1 } }, { "key": "36637", "source": "1263", "target": "1165", "attributes": { "weight": 1 } }, { "key": "18762", "source": "1263", "target": "1526", "attributes": { "weight": 2 } }, { "key": "15976", "source": "1263", "target": "924", "attributes": { "weight": 1 } }, { "key": "5524", "source": "1263", "target": "1322", "attributes": { "weight": 3 } }, { "key": "5522", "source": "1263", "target": "1090", "attributes": { "weight": 3 } }, { "key": "5521", "source": "1263", "target": "123", "attributes": { "weight": 3 } }, { "key": "15978", "source": "1263", "target": "1329", "attributes": { "weight": 1 } }, { "key": "36636", "source": "1263", "target": "1140", "attributes": { "weight": 1 } }, { "key": "18765", "source": "1263", "target": "1552", "attributes": { "weight": 2 } }, { "key": "5519", "source": "1263", "target": "1196", "attributes": { "weight": 3 } }, { "key": "34520", "source": "1263", "target": "1182", "attributes": { "weight": 1 } }, { "key": "36641", "source": "1263", "target": "1284", "attributes": { "weight": 1 } }, { "key": "18769", "source": "1263", "target": "1323", "attributes": { "weight": 2 } }, { "key": "18761", "source": "1263", "target": "1174", "attributes": { "weight": 2 } }, { "key": "15974", "source": "1263", "target": "921", "attributes": { "weight": 1 } }, { "key": "34521", "source": "1263", "target": "1047", "attributes": { "weight": 1 } }, { "key": "5523", "source": "1263", "target": "1294", "attributes": { "weight": 3 } }, { "key": "36638", "source": "1263", "target": "938", "attributes": { "weight": 1 } }, { "key": "15977", "source": "1263", "target": "925", "attributes": { "weight": 3 } }, { "key": "18768", "source": "1263", "target": "1291", "attributes": { "weight": 2 } }, { "key": "18763", "source": "1263", "target": "1236", "attributes": { "weight": 2 } }, { "key": "15971", "source": "1263", "target": "912", "attributes": { "weight": 1 } }, { "key": "15973", "source": "1263", "target": "338", "attributes": { "weight": 3 } }, { "key": "18771", "source": "1263", "target": "218", "attributes": { "weight": 2 } }, { "key": "36642", "source": "1263", "target": "1315", "attributes": { "weight": 1 } }, { "key": "18766", "source": "1263", "target": "1269", "attributes": { "weight": 2 } }, { "key": "18245", "source": "1263", "target": "387", "attributes": { "weight": 1 } }, { "key": "21996", "source": "1264", "target": "337", "attributes": { "weight": 1 } }, { "key": "35668", "source": "1264", "target": "1330", "attributes": { "weight": 1 } }, { "key": "34531", "source": "1264", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5561", "source": "1264", "target": "368", "attributes": { "weight": 2 } }, { "key": "35667", "source": "1264", "target": "396", "attributes": { "weight": 1 } }, { "key": "16017", "source": "1265", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34533", "source": "1265", "target": "1323", "attributes": { "weight": 1 } }, { "key": "34532", "source": "1265", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5562", "source": "1265", "target": "338", "attributes": { "weight": 3 } }, { "key": "10240", "source": "1265", "target": "1322", "attributes": { "weight": 1 } }, { "key": "21997", "source": "1265", "target": "337", "attributes": { "weight": 1 } }, { "key": "10239", "source": "1265", "target": "1291", "attributes": { "weight": 1 } }, { "key": "8878", "source": "1266", "target": "195", "attributes": { "weight": 3 } }, { "key": "5565", "source": "1266", "target": "368", "attributes": { "weight": 2 } }, { "key": "5564", "source": "1266", "target": "779", "attributes": { "weight": 2 } }, { "key": "5568", "source": "1267", "target": "123", "attributes": { "weight": 2 } }, { "key": "5567", "source": "1267", "target": "368", "attributes": { "weight": 2 } }, { "key": "16019", "source": "1268", "target": "195", "attributes": { "weight": 2 } }, { "key": "16020", "source": "1268", "target": "913", "attributes": { "weight": 1 } }, { "key": "5570", "source": "1268", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5569", "source": "1268", "target": "779", "attributes": { "weight": 2 } }, { "key": "16021", "source": "1268", "target": "921", "attributes": { "weight": 1 } }, { "key": "34538", "source": "1268", "target": "123", "attributes": { "weight": 1 } }, { "key": "36652", "source": "1268", "target": "208", "attributes": { "weight": 1 } }, { "key": "18844", "source": "1268", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18846", "source": "1268", "target": "218", "attributes": { "weight": 2 } }, { "key": "5571", "source": "1268", "target": "1090", "attributes": { "weight": 2 } }, { "key": "18843", "source": "1268", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18845", "source": "1268", "target": "925", "attributes": { "weight": 1 } }, { "key": "34537", "source": "1268", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18847", "source": "1269", "target": "938", "attributes": { "weight": 2 } }, { "key": "18850", "source": "1269", "target": "1196", "attributes": { "weight": 2 } }, { "key": "16026", "source": "1269", "target": "208", "attributes": { "weight": 3 } }, { "key": "18851", "source": "1269", "target": "199", "attributes": { "weight": 2 } }, { "key": "18849", "source": "1269", "target": "387", "attributes": { "weight": 1 } }, { "key": "18859", "source": "1269", "target": "124", "attributes": { "weight": 2 } }, { "key": "5691", "source": "1269", "target": "1294", "attributes": { "weight": 4 } }, { "key": "18848", "source": "1269", "target": "1174", "attributes": { "weight": 2 } }, { "key": "16023", "source": "1269", "target": "912", "attributes": { "weight": 1 } }, { "key": "34540", "source": "1269", "target": "1182", "attributes": { "weight": 1 } }, { "key": "5688", "source": "1269", "target": "368", "attributes": { "weight": 2 } }, { "key": "18852", "source": "1269", "target": "337", "attributes": { "weight": 2 } }, { "key": "7347", "source": "1269", "target": "1063", "attributes": { "weight": 1 } }, { "key": "18860", "source": "1269", "target": "218", "attributes": { "weight": 2 } }, { "key": "34542", "source": "1269", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18853", "source": "1269", "target": "338", "attributes": { "weight": 2 } }, { "key": "16024", "source": "1269", "target": "913", "attributes": { "weight": 1 } }, { "key": "18857", "source": "1269", "target": "1322", "attributes": { "weight": 2 } }, { "key": "5687", "source": "1269", "target": "779", "attributes": { "weight": 2 } }, { "key": "18854", "source": "1269", "target": "1263", "attributes": { "weight": 2 } }, { "key": "18855", "source": "1269", "target": "926", "attributes": { "weight": 2 } }, { "key": "8879", "source": "1269", "target": "195", "attributes": { "weight": 7 } }, { "key": "16025", "source": "1269", "target": "921", "attributes": { "weight": 2 } }, { "key": "16027", "source": "1269", "target": "925", "attributes": { "weight": 3 } }, { "key": "34541", "source": "1269", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18856", "source": "1269", "target": "215", "attributes": { "weight": 2 } }, { "key": "18257", "source": "1269", "target": "1197", "attributes": { "weight": 4 } }, { "key": "18858", "source": "1269", "target": "1323", "attributes": { "weight": 2 } }, { "key": "5689", "source": "1269", "target": "123", "attributes": { "weight": 3 } }, { "key": "5690", "source": "1269", "target": "1090", "attributes": { "weight": 2 } }, { "key": "8884", "source": "1270", "target": "195", "attributes": { "weight": 3 } }, { "key": "5692", "source": "1270", "target": "779", "attributes": { "weight": 2 } }, { "key": "16029", "source": "1271", "target": "925", "attributes": { "weight": 1 } }, { "key": "34544", "source": "1271", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5693", "source": "1271", "target": "368", "attributes": { "weight": 2 } }, { "key": "21999", "source": "1271", "target": "337", "attributes": { "weight": 1 } }, { "key": "8886", "source": "1271", "target": "195", "attributes": { "weight": 3 } }, { "key": "16028", "source": "1271", "target": "913", "attributes": { "weight": 1 } }, { "key": "5694", "source": "1271", "target": "123", "attributes": { "weight": 3 } }, { "key": "21998", "source": "1271", "target": "2293", "attributes": { "weight": 1 } }, { "key": "22001", "source": "1271", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22000", "source": "1271", "target": "2301", "attributes": { "weight": 1 } }, { "key": "34545", "source": "1272", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9852", "source": "1272", "target": "396", "attributes": { "weight": 2 } }, { "key": "5695", "source": "1272", "target": "368", "attributes": { "weight": 3 } }, { "key": "37164", "source": "1272", "target": "338", "attributes": { "weight": 1 } }, { "key": "37165", "source": "1272", "target": "1552", "attributes": { "weight": 1 } }, { "key": "37166", "source": "1272", "target": "411", "attributes": { "weight": 1 } }, { "key": "9853", "source": "1272", "target": "1323", "attributes": { "weight": 1 } }, { "key": "5696", "source": "1273", "target": "368", "attributes": { "weight": 2 } }, { "key": "34546", "source": "1273", "target": "1233", "attributes": { "weight": 1 } }, { "key": "8887", "source": "1273", "target": "195", "attributes": { "weight": 3 } }, { "key": "5697", "source": "1274", "target": "338", "attributes": { "weight": 2 } }, { "key": "5699", "source": "1275", "target": "368", "attributes": { "weight": 2 } }, { "key": "34548", "source": "1275", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34549", "source": "1275", "target": "123", "attributes": { "weight": 1 } }, { "key": "5698", "source": "1275", "target": "779", "attributes": { "weight": 2 } }, { "key": "8888", "source": "1275", "target": "195", "attributes": { "weight": 3 } }, { "key": "5700", "source": "1276", "target": "123", "attributes": { "weight": 2 } }, { "key": "16031", "source": "1276", "target": "913", "attributes": { "weight": 1 } }, { "key": "34551", "source": "1277", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34552", "source": "1277", "target": "1323", "attributes": { "weight": 1 } }, { "key": "22004", "source": "1277", "target": "337", "attributes": { "weight": 1 } }, { "key": "10241", "source": "1277", "target": "1315", "attributes": { "weight": 1 } }, { "key": "5703", "source": "1277", "target": "1294", "attributes": { "weight": 2 } }, { "key": "5702", "source": "1277", "target": "338", "attributes": { "weight": 4 } }, { "key": "5705", "source": "1278", "target": "123", "attributes": { "weight": 3 } }, { "key": "16034", "source": "1278", "target": "913", "attributes": { "weight": 1 } }, { "key": "16035", "source": "1278", "target": "921", "attributes": { "weight": 1 } }, { "key": "16033", "source": "1278", "target": "1196", "attributes": { "weight": 1 } }, { "key": "16037", "source": "1278", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16032", "source": "1278", "target": "912", "attributes": { "weight": 1 } }, { "key": "34553", "source": "1278", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16036", "source": "1278", "target": "925", "attributes": { "weight": 1 } }, { "key": "8919", "source": "1278", "target": "195", "attributes": { "weight": 3 } }, { "key": "5704", "source": "1278", "target": "368", "attributes": { "weight": 2 } }, { "key": "18259", "source": "1278", "target": "1197", "attributes": { "weight": 2 } }, { "key": "28593", "source": "1279", "target": "123", "attributes": { "weight": 2 } }, { "key": "28587", "source": "1279", "target": "1174", "attributes": { "weight": 1 } }, { "key": "5727", "source": "1279", "target": "779", "attributes": { "weight": 2 } }, { "key": "5728", "source": "1279", "target": "1196", "attributes": { "weight": 2 } }, { "key": "36765", "source": "1279", "target": "1063", "attributes": { "weight": 1 } }, { "key": "28586", "source": "1279", "target": "2780", "attributes": { "weight": 1 } }, { "key": "16153", "source": "1279", "target": "921", "attributes": { "weight": 2 } }, { "key": "22009", "source": "1279", "target": "1230", "attributes": { "weight": 1 } }, { "key": "22010", "source": "1279", "target": "2308", "attributes": { "weight": 1 } }, { "key": "28588", "source": "1279", "target": "911", "attributes": { "weight": 1 } }, { "key": "28594", "source": "1279", "target": "1691", "attributes": { "weight": 1 } }, { "key": "28592", "source": "1279", "target": "2781", "attributes": { "weight": 1 } }, { "key": "16151", "source": "1279", "target": "938", "attributes": { "weight": 2 } }, { "key": "34561", "source": "1279", "target": "1047", "attributes": { "weight": 1 } }, { "key": "5729", "source": "1279", "target": "1090", "attributes": { "weight": 3 } }, { "key": "22008", "source": "1279", "target": "915", "attributes": { "weight": 1 } }, { "key": "16152", "source": "1279", "target": "913", "attributes": { "weight": 2 } }, { "key": "22007", "source": "1279", "target": "1138", "attributes": { "weight": 1 } }, { "key": "28589", "source": "1279", "target": "368", "attributes": { "weight": 1 } }, { "key": "8930", "source": "1279", "target": "195", "attributes": { "weight": 4 } }, { "key": "28591", "source": "1279", "target": "2297", "attributes": { "weight": 1 } }, { "key": "28590", "source": "1279", "target": "199", "attributes": { "weight": 1 } }, { "key": "29538", "source": "1279", "target": "1415", "attributes": { "weight": 1 } }, { "key": "18519", "source": "1280", "target": "2228", "attributes": { "weight": 2 } }, { "key": "18511", "source": "1280", "target": "297", "attributes": { "weight": 3 } }, { "key": "18506", "source": "1280", "target": "1178", "attributes": { "weight": 2 } }, { "key": "18503", "source": "1280", "target": "1146", "attributes": { "weight": 4 } }, { "key": "18508", "source": "1280", "target": "1227", "attributes": { "weight": 2 } }, { "key": "18514", "source": "1280", "target": "2223", "attributes": { "weight": 1 } }, { "key": "18505", "source": "1280", "target": "1166", "attributes": { "weight": 3 } }, { "key": "18517", "source": "1280", "target": "2225", "attributes": { "weight": 1 } }, { "key": "18510", "source": "1280", "target": "2219", "attributes": { "weight": 1 } }, { "key": "18518", "source": "1280", "target": "2226", "attributes": { "weight": 1 } }, { "key": "31073", "source": "1280", "target": "2745", "attributes": { "weight": 1 } }, { "key": "18512", "source": "1280", "target": "2221", "attributes": { "weight": 1 } }, { "key": "5732", "source": "1280", "target": "338", "attributes": { "weight": 4 } }, { "key": "31074", "source": "1280", "target": "3041", "attributes": { "weight": 1 } }, { "key": "24319", "source": "1280", "target": "2216", "attributes": { "weight": 2 } }, { "key": "18507", "source": "1280", "target": "2214", "attributes": { "weight": 2 } }, { "key": "18513", "source": "1280", "target": "2222", "attributes": { "weight": 1 } }, { "key": "25746", "source": "1280", "target": "278", "attributes": { "weight": 1 } }, { "key": "18515", "source": "1280", "target": "310", "attributes": { "weight": 4 } }, { "key": "29962", "source": "1280", "target": "1952", "attributes": { "weight": 1 } }, { "key": "18504", "source": "1280", "target": "2213", "attributes": { "weight": 1 } }, { "key": "14270", "source": "1280", "target": "168", "attributes": { "weight": 2 } }, { "key": "18516", "source": "1280", "target": "2224", "attributes": { "weight": 1 } }, { "key": "18509", "source": "1280", "target": "2218", "attributes": { "weight": 1 } }, { "key": "29781", "source": "1281", "target": "1429", "attributes": { "weight": 2 } }, { "key": "29780", "source": "1281", "target": "2898", "attributes": { "weight": 2 } }, { "key": "5733", "source": "1281", "target": "779", "attributes": { "weight": 2 } }, { "key": "35112", "source": "1281", "target": "212", "attributes": { "weight": 1 } }, { "key": "5736", "source": "1281", "target": "371", "attributes": { "weight": 3 } }, { "key": "16154", "source": "1281", "target": "913", "attributes": { "weight": 1 } }, { "key": "14157", "source": "1281", "target": "392", "attributes": { "weight": 2 } }, { "key": "29776", "source": "1281", "target": "2894", "attributes": { "weight": 2 } }, { "key": "34564", "source": "1281", "target": "123", "attributes": { "weight": 1 } }, { "key": "29775", "source": "1281", "target": "202", "attributes": { "weight": 2 } }, { "key": "29778", "source": "1281", "target": "2896", "attributes": { "weight": 2 } }, { "key": "11642", "source": "1281", "target": "370", "attributes": { "weight": 2 } }, { "key": "30102", "source": "1281", "target": "200", "attributes": { "weight": 2 } }, { "key": "29777", "source": "1281", "target": "2895", "attributes": { "weight": 1 } }, { "key": "30104", "source": "1281", "target": "210", "attributes": { "weight": 2 } }, { "key": "11643", "source": "1281", "target": "208", "attributes": { "weight": 2 } }, { "key": "34563", "source": "1281", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18875", "source": "1281", "target": "1174", "attributes": { "weight": 1 } }, { "key": "29773", "source": "1281", "target": "2893", "attributes": { "weight": 2 } }, { "key": "35111", "source": "1281", "target": "3178", "attributes": { "weight": 1 } }, { "key": "5735", "source": "1281", "target": "368", "attributes": { "weight": 2 } }, { "key": "35110", "source": "1281", "target": "3177", "attributes": { "weight": 1 } }, { "key": "5737", "source": "1281", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11641", "source": "1281", "target": "199", "attributes": { "weight": 2 } }, { "key": "8932", "source": "1281", "target": "195", "attributes": { "weight": 4 } }, { "key": "7359", "source": "1281", "target": "1063", "attributes": { "weight": 2 } }, { "key": "30103", "source": "1281", "target": "201", "attributes": { "weight": 2 } }, { "key": "35109", "source": "1281", "target": "3176", "attributes": { "weight": 1 } }, { "key": "35108", "source": "1281", "target": "3175", "attributes": { "weight": 1 } }, { "key": "11640", "source": "1281", "target": "938", "attributes": { "weight": 2 } }, { "key": "12012", "source": "1281", "target": "468", "attributes": { "weight": 1 } }, { "key": "34562", "source": "1281", "target": "1047", "attributes": { "weight": 1 } }, { "key": "29779", "source": "1281", "target": "2897", "attributes": { "weight": 2 } }, { "key": "29774", "source": "1281", "target": "197", "attributes": { "weight": 2 } }, { "key": "14057", "source": "1281", "target": "1031", "attributes": { "weight": 1 } }, { "key": "12011", "source": "1281", "target": "1214", "attributes": { "weight": 1 } }, { "key": "12013", "source": "1281", "target": "990", "attributes": { "weight": 3 } }, { "key": "12827", "source": "1281", "target": "780", "attributes": { "weight": 1 } }, { "key": "5734", "source": "1281", "target": "1196", "attributes": { "weight": 2 } }, { "key": "33612", "source": "1282", "target": "2645", "attributes": { "weight": 1 } }, { "key": "8956", "source": "1282", "target": "442", "attributes": { "weight": 3 } }, { "key": "33615", "source": "1282", "target": "135", "attributes": { "weight": 1 } }, { "key": "33614", "source": "1282", "target": "1362", "attributes": { "weight": 1 } }, { "key": "27143", "source": "1282", "target": "464", "attributes": { "weight": 1 } }, { "key": "20565", "source": "1282", "target": "2251", "attributes": { "weight": 1 } }, { "key": "27147", "source": "1282", "target": "1812", "attributes": { "weight": 2 } }, { "key": "32226", "source": "1282", "target": "1358", "attributes": { "weight": 1 } }, { "key": "27136", "source": "1282", "target": "858", "attributes": { "weight": 1 } }, { "key": "31339", "source": "1282", "target": "1337", "attributes": { "weight": 3 } }, { "key": "17276", "source": "1282", "target": "2108", "attributes": { "weight": 1 } }, { "key": "25949", "source": "1282", "target": "1367", "attributes": { "weight": 2 } }, { "key": "27141", "source": "1282", "target": "458", "attributes": { "weight": 2 } }, { "key": "32227", "source": "1282", "target": "1368", "attributes": { "weight": 3 } }, { "key": "27149", "source": "1282", "target": "479", "attributes": { "weight": 1 } }, { "key": "27134", "source": "1282", "target": "429", "attributes": { "weight": 3 } }, { "key": "27137", "source": "1282", "target": "447", "attributes": { "weight": 1 } }, { "key": "32143", "source": "1282", "target": "435", "attributes": { "weight": 1 } }, { "key": "27133", "source": "1282", "target": "1353", "attributes": { "weight": 4 } }, { "key": "27148", "source": "1282", "target": "231", "attributes": { "weight": 4 } }, { "key": "17275", "source": "1282", "target": "449", "attributes": { "weight": 2 } }, { "key": "33613", "source": "1282", "target": "51", "attributes": { "weight": 1 } }, { "key": "27142", "source": "1282", "target": "459", "attributes": { "weight": 2 } }, { "key": "27135", "source": "1282", "target": "1354", "attributes": { "weight": 3 } }, { "key": "27138", "source": "1282", "target": "860", "attributes": { "weight": 4 } }, { "key": "27150", "source": "1282", "target": "480", "attributes": { "weight": 1 } }, { "key": "32142", "source": "1282", "target": "1141", "attributes": { "weight": 1 } }, { "key": "26716", "source": "1282", "target": "183", "attributes": { "weight": 1 } }, { "key": "35363", "source": "1282", "target": "1811", "attributes": { "weight": 1 } }, { "key": "33616", "source": "1282", "target": "474", "attributes": { "weight": 1 } }, { "key": "27139", "source": "1282", "target": "451", "attributes": { "weight": 3 } }, { "key": "25888", "source": "1282", "target": "220", "attributes": { "weight": 2 } }, { "key": "12529", "source": "1282", "target": "223", "attributes": { "weight": 2 } }, { "key": "5740", "source": "1282", "target": "468", "attributes": { "weight": 3 } }, { "key": "27145", "source": "1282", "target": "1366", "attributes": { "weight": 1 } }, { "key": "27146", "source": "1282", "target": "2094", "attributes": { "weight": 1 } }, { "key": "33611", "source": "1282", "target": "130", "attributes": { "weight": 1 } }, { "key": "17502", "source": "1282", "target": "358", "attributes": { "weight": 2 } }, { "key": "27154", "source": "1282", "target": "494", "attributes": { "weight": 1 } }, { "key": "31338", "source": "1282", "target": "674", "attributes": { "weight": 1 } }, { "key": "27140", "source": "1282", "target": "452", "attributes": { "weight": 1 } }, { "key": "12293", "source": "1282", "target": "1161", "attributes": { "weight": 1 } }, { "key": "12294", "source": "1282", "target": "1564", "attributes": { "weight": 1 } }, { "key": "27151", "source": "1282", "target": "2269", "attributes": { "weight": 1 } }, { "key": "32144", "source": "1282", "target": "446", "attributes": { "weight": 1 } }, { "key": "32228", "source": "1282", "target": "2670", "attributes": { "weight": 1 } }, { "key": "27144", "source": "1282", "target": "54", "attributes": { "weight": 1 } }, { "key": "27152", "source": "1282", "target": "483", "attributes": { "weight": 2 } }, { "key": "27153", "source": "1282", "target": "56", "attributes": { "weight": 4 } }, { "key": "8975", "source": "1283", "target": "195", "attributes": { "weight": 3 } }, { "key": "5765", "source": "1283", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5764", "source": "1283", "target": "779", "attributes": { "weight": 2 } }, { "key": "5766", "source": "1284", "target": "1227", "attributes": { "weight": 3 } }, { "key": "18879", "source": "1284", "target": "1552", "attributes": { "weight": 2 } }, { "key": "37170", "source": "1284", "target": "390", "attributes": { "weight": 1 } }, { "key": "22012", "source": "1284", "target": "1680", "attributes": { "weight": 1 } }, { "key": "11645", "source": "1284", "target": "1251", "attributes": { "weight": 1 } }, { "key": "18881", "source": "1284", "target": "408", "attributes": { "weight": 2 } }, { "key": "16897", "source": "1284", "target": "59", "attributes": { "weight": 1 } }, { "key": "36658", "source": "1284", "target": "1173", "attributes": { "weight": 1 } }, { "key": "28596", "source": "1284", "target": "123", "attributes": { "weight": 1 } }, { "key": "36659", "source": "1284", "target": "1215", "attributes": { "weight": 1 } }, { "key": "36661", "source": "1284", "target": "1263", "attributes": { "weight": 1 } }, { "key": "5771", "source": "1284", "target": "1294", "attributes": { "weight": 3 } }, { "key": "18878", "source": "1284", "target": "337", "attributes": { "weight": 3 } }, { "key": "5772", "source": "1284", "target": "1322", "attributes": { "weight": 3 } }, { "key": "22011", "source": "1284", "target": "2293", "attributes": { "weight": 1 } }, { "key": "28595", "source": "1284", "target": "368", "attributes": { "weight": 1 } }, { "key": "36656", "source": "1284", "target": "1152", "attributes": { "weight": 1 } }, { "key": "16165", "source": "1284", "target": "1329", "attributes": { "weight": 2 } }, { "key": "18876", "source": "1284", "target": "1184", "attributes": { "weight": 1 } }, { "key": "5768", "source": "1284", "target": "1254", "attributes": { "weight": 2 } }, { "key": "5767", "source": "1284", "target": "1245", "attributes": { "weight": 2 } }, { "key": "36657", "source": "1284", "target": "1167", "attributes": { "weight": 1 } }, { "key": "36663", "source": "1284", "target": "1315", "attributes": { "weight": 1 } }, { "key": "18880", "source": "1284", "target": "1286", "attributes": { "weight": 1 } }, { "key": "18877", "source": "1284", "target": "1197", "attributes": { "weight": 2 } }, { "key": "36655", "source": "1284", "target": "1140", "attributes": { "weight": 1 } }, { "key": "22013", "source": "1284", "target": "1203", "attributes": { "weight": 1 } }, { "key": "16164", "source": "1284", "target": "338", "attributes": { "weight": 3 } }, { "key": "11644", "source": "1284", "target": "370", "attributes": { "weight": 1 } }, { "key": "36660", "source": "1284", "target": "1228", "attributes": { "weight": 1 } }, { "key": "22014", "source": "1284", "target": "2303", "attributes": { "weight": 1 } }, { "key": "36662", "source": "1284", "target": "1288", "attributes": { "weight": 1 } }, { "key": "5770", "source": "1284", "target": "1291", "attributes": { "weight": 3 } }, { "key": "5769", "source": "1284", "target": "1285", "attributes": { "weight": 3 } }, { "key": "28224", "source": "1285", "target": "2434", "attributes": { "weight": 1 } }, { "key": "34568", "source": "1285", "target": "1323", "attributes": { "weight": 1 } }, { "key": "23204", "source": "1285", "target": "1227", "attributes": { "weight": 5 } }, { "key": "28225", "source": "1285", "target": "2435", "attributes": { "weight": 1 } }, { "key": "23207", "source": "1285", "target": "1254", "attributes": { "weight": 1 } }, { "key": "23205", "source": "1285", "target": "2433", "attributes": { "weight": 1 } }, { "key": "5773", "source": "1285", "target": "368", "attributes": { "weight": 2 } }, { "key": "28226", "source": "1285", "target": "2727", "attributes": { "weight": 1 } }, { "key": "5775", "source": "1285", "target": "1284", "attributes": { "weight": 3 } }, { "key": "5777", "source": "1285", "target": "1326", "attributes": { "weight": 3 } }, { "key": "34566", "source": "1285", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5776", "source": "1285", "target": "1294", "attributes": { "weight": 2 } }, { "key": "10247", "source": "1285", "target": "1291", "attributes": { "weight": 1 } }, { "key": "28223", "source": "1285", "target": "2725", "attributes": { "weight": 1 } }, { "key": "10248", "source": "1285", "target": "1315", "attributes": { "weight": 1 } }, { "key": "5778", "source": "1285", "target": "1331", "attributes": { "weight": 3 } }, { "key": "10249", "source": "1285", "target": "1322", "attributes": { "weight": 2 } }, { "key": "34567", "source": "1285", "target": "123", "attributes": { "weight": 1 } }, { "key": "23206", "source": "1285", "target": "1245", "attributes": { "weight": 2 } }, { "key": "5774", "source": "1285", "target": "338", "attributes": { "weight": 7 } }, { "key": "7363", "source": "1285", "target": "333", "attributes": { "weight": 2 } }, { "key": "18882", "source": "1286", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18883", "source": "1286", "target": "1526", "attributes": { "weight": 2 } }, { "key": "36664", "source": "1286", "target": "1294", "attributes": { "weight": 1 } }, { "key": "18260", "source": "1286", "target": "1197", "attributes": { "weight": 4 } }, { "key": "8976", "source": "1286", "target": "195", "attributes": { "weight": 6 } }, { "key": "5779", "source": "1286", "target": "368", "attributes": { "weight": 2 } }, { "key": "34571", "source": "1286", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34572", "source": "1286", "target": "1323", "attributes": { "weight": 1 } }, { "key": "18885", "source": "1286", "target": "337", "attributes": { "weight": 2 } }, { "key": "34569", "source": "1286", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16167", "source": "1286", "target": "925", "attributes": { "weight": 1 } }, { "key": "22016", "source": "1286", "target": "2212", "attributes": { "weight": 1 } }, { "key": "18886", "source": "1286", "target": "1552", "attributes": { "weight": 2 } }, { "key": "16168", "source": "1286", "target": "1329", "attributes": { "weight": 1 } }, { "key": "5780", "source": "1286", "target": "338", "attributes": { "weight": 4 } }, { "key": "5781", "source": "1286", "target": "123", "attributes": { "weight": 3 } }, { "key": "16166", "source": "1286", "target": "913", "attributes": { "weight": 1 } }, { "key": "18887", "source": "1286", "target": "124", "attributes": { "weight": 2 } }, { "key": "18884", "source": "1286", "target": "1228", "attributes": { "weight": 2 } }, { "key": "34570", "source": "1286", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18261", "source": "1287", "target": "1197", "attributes": { "weight": 3 } }, { "key": "8977", "source": "1287", "target": "195", "attributes": { "weight": 4 } }, { "key": "16170", "source": "1287", "target": "921", "attributes": { "weight": 1 } }, { "key": "5783", "source": "1287", "target": "1196", "attributes": { "weight": 3 } }, { "key": "5785", "source": "1287", "target": "123", "attributes": { "weight": 3 } }, { "key": "5786", "source": "1287", "target": "1294", "attributes": { "weight": 3 } }, { "key": "18889", "source": "1287", "target": "1315", "attributes": { "weight": 1 } }, { "key": "5782", "source": "1287", "target": "779", "attributes": { "weight": 2 } }, { "key": "18888", "source": "1287", "target": "1552", "attributes": { "weight": 2 } }, { "key": "16171", "source": "1287", "target": "208", "attributes": { "weight": 1 } }, { "key": "5784", "source": "1287", "target": "368", "attributes": { "weight": 2 } }, { "key": "18890", "source": "1287", "target": "124", "attributes": { "weight": 2 } }, { "key": "34573", "source": "1287", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16172", "source": "1287", "target": "925", "attributes": { "weight": 1 } }, { "key": "36665", "source": "1287", "target": "337", "attributes": { "weight": 1 } }, { "key": "10250", "source": "1287", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34574", "source": "1287", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16173", "source": "1287", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16169", "source": "1287", "target": "913", "attributes": { "weight": 1 } }, { "key": "34576", "source": "1288", "target": "1323", "attributes": { "weight": 1 } }, { "key": "9874", "source": "1288", "target": "390", "attributes": { "weight": 3 } }, { "key": "5787", "source": "1288", "target": "368", "attributes": { "weight": 2 } }, { "key": "36666", "source": "1288", "target": "1552", "attributes": { "weight": 1 } }, { "key": "5788", "source": "1288", "target": "1291", "attributes": { "weight": 2 } }, { "key": "5789", "source": "1288", "target": "1294", "attributes": { "weight": 3 } }, { "key": "18891", "source": "1288", "target": "1197", "attributes": { "weight": 3 } }, { "key": "36668", "source": "1288", "target": "1326", "attributes": { "weight": 1 } }, { "key": "34575", "source": "1288", "target": "1233", "attributes": { "weight": 1 } }, { "key": "36669", "source": "1288", "target": "1331", "attributes": { "weight": 1 } }, { "key": "5790", "source": "1288", "target": "1322", "attributes": { "weight": 2 } }, { "key": "36667", "source": "1288", "target": "1284", "attributes": { "weight": 1 } }, { "key": "16174", "source": "1288", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18892", "source": "1288", "target": "337", "attributes": { "weight": 2 } }, { "key": "5915", "source": "1289", "target": "779", "attributes": { "weight": 2 } }, { "key": "34629", "source": "1289", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16179", "source": "1289", "target": "925", "attributes": { "weight": 1 } }, { "key": "34630", "source": "1289", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34632", "source": "1289", "target": "123", "attributes": { "weight": 1 } }, { "key": "5919", "source": "1289", "target": "921", "attributes": { "weight": 3 } }, { "key": "16178", "source": "1289", "target": "208", "attributes": { "weight": 3 } }, { "key": "5917", "source": "1289", "target": "368", "attributes": { "weight": 2 } }, { "key": "8978", "source": "1289", "target": "195", "attributes": { "weight": 7 } }, { "key": "5921", "source": "1289", "target": "1090", "attributes": { "weight": 2 } }, { "key": "5920", "source": "1289", "target": "371", "attributes": { "weight": 2 } }, { "key": "18893", "source": "1289", "target": "1174", "attributes": { "weight": 2 } }, { "key": "16177", "source": "1289", "target": "913", "attributes": { "weight": 1 } }, { "key": "18894", "source": "1289", "target": "1552", "attributes": { "weight": 2 } }, { "key": "5918", "source": "1289", "target": "370", "attributes": { "weight": 3 } }, { "key": "34631", "source": "1289", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5916", "source": "1289", "target": "1196", "attributes": { "weight": 2 } }, { "key": "34635", "source": "1290", "target": "1233", "attributes": { "weight": 1 } }, { "key": "37174", "source": "1290", "target": "411", "attributes": { "weight": 1 } }, { "key": "37172", "source": "1290", "target": "387", "attributes": { "weight": 1 } }, { "key": "5929", "source": "1290", "target": "368", "attributes": { "weight": 2 } }, { "key": "9880", "source": "1290", "target": "399", "attributes": { "weight": 1 } }, { "key": "37173", "source": "1290", "target": "390", "attributes": { "weight": 1 } }, { "key": "10258", "source": "1291", "target": "1167", "attributes": { "weight": 1 } }, { "key": "36672", "source": "1291", "target": "1140", "attributes": { "weight": 1 } }, { "key": "10271", "source": "1291", "target": "1308", "attributes": { "weight": 2 } }, { "key": "10263", "source": "1291", "target": "1227", "attributes": { "weight": 2 } }, { "key": "34638", "source": "1291", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16182", "source": "1291", "target": "220", "attributes": { "weight": 2 } }, { "key": "10274", "source": "1291", "target": "1329", "attributes": { "weight": 3 } }, { "key": "10259", "source": "1291", "target": "913", "attributes": { "weight": 2 } }, { "key": "10277", "source": "1291", "target": "1343", "attributes": { "weight": 1 } }, { "key": "25536", "source": "1291", "target": "2606", "attributes": { "weight": 1 } }, { "key": "5951", "source": "1291", "target": "1326", "attributes": { "weight": 3 } }, { "key": "10260", "source": "1291", "target": "1203", "attributes": { "weight": 2 } }, { "key": "10272", "source": "1291", "target": "1317", "attributes": { "weight": 1 } }, { "key": "5939", "source": "1291", "target": "779", "attributes": { "weight": 2 } }, { "key": "10264", "source": "1291", "target": "337", "attributes": { "weight": 3 } }, { "key": "5942", "source": "1291", "target": "338", "attributes": { "weight": 4 } }, { "key": "5940", "source": "1291", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5952", "source": "1291", "target": "408", "attributes": { "weight": 2 } }, { "key": "34640", "source": "1291", "target": "1233", "attributes": { "weight": 1 } }, { "key": "10255", "source": "1291", "target": "711", "attributes": { "weight": 1 } }, { "key": "10267", "source": "1291", "target": "1285", "attributes": { "weight": 1 } }, { "key": "5947", "source": "1291", "target": "1090", "attributes": { "weight": 2 } }, { "key": "25535", "source": "1291", "target": "2605", "attributes": { "weight": 1 } }, { "key": "10261", "source": "1291", "target": "1206", "attributes": { "weight": 1 } }, { "key": "34641", "source": "1291", "target": "3151", "attributes": { "weight": 1 } }, { "key": "16183", "source": "1291", "target": "925", "attributes": { "weight": 1 } }, { "key": "11654", "source": "1291", "target": "370", "attributes": { "weight": 2 } }, { "key": "10269", "source": "1291", "target": "1300", "attributes": { "weight": 1 } }, { "key": "10276", "source": "1291", "target": "1335", "attributes": { "weight": 1 } }, { "key": "10270", "source": "1291", "target": "1304", "attributes": { "weight": 2 } }, { "key": "5937", "source": "1291", "target": "938", "attributes": { "weight": 3 } }, { "key": "5944", "source": "1291", "target": "1284", "attributes": { "weight": 4 } }, { "key": "18895", "source": "1291", "target": "1552", "attributes": { "weight": 2 } }, { "key": "34639", "source": "1291", "target": "1232", "attributes": { "weight": 1 } }, { "key": "7373", "source": "1291", "target": "377", "attributes": { "weight": 2 } }, { "key": "5946", "source": "1291", "target": "123", "attributes": { "weight": 4 } }, { "key": "5941", "source": "1291", "target": "368", "attributes": { "weight": 4 } }, { "key": "10262", "source": "1291", "target": "1215", "attributes": { "weight": 1 } }, { "key": "10273", "source": "1291", "target": "1322", "attributes": { "weight": 2 } }, { "key": "10275", "source": "1291", "target": "1331", "attributes": { "weight": 2 } }, { "key": "16184", "source": "1291", "target": "580", "attributes": { "weight": 1 } }, { "key": "5950", "source": "1291", "target": "1323", "attributes": { "weight": 4 } }, { "key": "5943", "source": "1291", "target": "1251", "attributes": { "weight": 3 } }, { "key": "5948", "source": "1291", "target": "1294", "attributes": { "weight": 4 } }, { "key": "10266", "source": "1291", "target": "1690", "attributes": { "weight": 1 } }, { "key": "18896", "source": "1291", "target": "1286", "attributes": { "weight": 1 } }, { "key": "9012", "source": "1291", "target": "195", "attributes": { "weight": 4 } }, { "key": "36673", "source": "1291", "target": "1263", "attributes": { "weight": 1 } }, { "key": "5949", "source": "1291", "target": "1315", "attributes": { "weight": 3 } }, { "key": "5938", "source": "1291", "target": "1173", "attributes": { "weight": 2 } }, { "key": "10265", "source": "1291", "target": "1265", "attributes": { "weight": 1 } }, { "key": "10268", "source": "1291", "target": "1693", "attributes": { "weight": 1 } }, { "key": "5945", "source": "1291", "target": "1288", "attributes": { "weight": 2 } }, { "key": "10257", "source": "1291", "target": "1680", "attributes": { "weight": 1 } }, { "key": "10256", "source": "1291", "target": "937", "attributes": { "weight": 1 } }, { "key": "18263", "source": "1291", "target": "1197", "attributes": { "weight": 4 } }, { "key": "5953", "source": "1291", "target": "333", "attributes": { "weight": 4 } }, { "key": "5960", "source": "1292", "target": "779", "attributes": { "weight": 2 } }, { "key": "18265", "source": "1293", "target": "1197", "attributes": { "weight": 1 } }, { "key": "9015", "source": "1293", "target": "195", "attributes": { "weight": 3 } }, { "key": "5961", "source": "1293", "target": "779", "attributes": { "weight": 2 } }, { "key": "22039", "source": "1293", "target": "2212", "attributes": { "weight": 1 } }, { "key": "5962", "source": "1293", "target": "1090", "attributes": { "weight": 2 } }, { "key": "6123", "source": "1294", "target": "400", "attributes": { "weight": 2 } }, { "key": "6149", "source": "1294", "target": "373", "attributes": { "weight": 3 } }, { "key": "6088", "source": "1294", "target": "1174", "attributes": { "weight": 3 } }, { "key": "6100", "source": "1294", "target": "1206", "attributes": { "weight": 2 } }, { "key": "37516", "source": "1294", "target": "2202", "attributes": { "weight": 1 } }, { "key": "6104", "source": "1294", "target": "1215", "attributes": { "weight": 3 } }, { "key": "6122", "source": "1294", "target": "925", "attributes": { "weight": 5 } }, { "key": "9882", "source": "1294", "target": "393", "attributes": { "weight": 3 } }, { "key": "36680", "source": "1294", "target": "1305", "attributes": { "weight": 1 } }, { "key": "6128", "source": "1294", "target": "123", "attributes": { "weight": 3 } }, { "key": "36682", "source": "1294", "target": "1342", "attributes": { "weight": 1 } }, { "key": "6098", "source": "1294", "target": "1201", "attributes": { "weight": 3 } }, { "key": "36675", "source": "1294", "target": "1172", "attributes": { "weight": 1 } }, { "key": "6107", "source": "1294", "target": "1233", "attributes": { "weight": 3 } }, { "key": "6130", "source": "1294", "target": "1090", "attributes": { "weight": 4 } }, { "key": "6099", "source": "1294", "target": "1047", "attributes": { "weight": 4 } }, { "key": "6113", "source": "1294", "target": "1251", "attributes": { "weight": 2 } }, { "key": "6084", "source": "1294", "target": "1157", "attributes": { "weight": 2 } }, { "key": "6103", "source": "1294", "target": "390", "attributes": { "weight": 3 } }, { "key": "6108", "source": "1294", "target": "1236", "attributes": { "weight": 3 } }, { "key": "36681", "source": "1294", "target": "1321", "attributes": { "weight": 1 } }, { "key": "6131", "source": "1294", "target": "1296", "attributes": { "weight": 3 } }, { "key": "6094", "source": "1294", "target": "368", "attributes": { "weight": 3 } }, { "key": "6111", "source": "1294", "target": "337", "attributes": { "weight": 4 } }, { "key": "18899", "source": "1294", "target": "1228", "attributes": { "weight": 2 } }, { "key": "6144", "source": "1294", "target": "1331", "attributes": { "weight": 3 } }, { "key": "6089", "source": "1294", "target": "779", "attributes": { "weight": 2 } }, { "key": "36679", "source": "1294", "target": "1286", "attributes": { "weight": 1 } }, { "key": "6114", "source": "1294", "target": "468", "attributes": { "weight": 4 } }, { "key": "6146", "source": "1294", "target": "124", "attributes": { "weight": 3 } }, { "key": "6137", "source": "1294", "target": "1317", "attributes": { "weight": 2 } }, { "key": "6101", "source": "1294", "target": "1208", "attributes": { "weight": 2 } }, { "key": "6092", "source": "1294", "target": "1196", "attributes": { "weight": 2 } }, { "key": "6133", "source": "1294", "target": "403", "attributes": { "weight": 2 } }, { "key": "6115", "source": "1294", "target": "1254", "attributes": { "weight": 2 } }, { "key": "6125", "source": "1294", "target": "1285", "attributes": { "weight": 2 } }, { "key": "6086", "source": "1294", "target": "938", "attributes": { "weight": 3 } }, { "key": "6096", "source": "1294", "target": "1199", "attributes": { "weight": 2 } }, { "key": "6140", "source": "1294", "target": "1323", "attributes": { "weight": 4 } }, { "key": "6112", "source": "1294", "target": "338", "attributes": { "weight": 6 } }, { "key": "6093", "source": "1294", "target": "1197", "attributes": { "weight": 7 } }, { "key": "6126", "source": "1294", "target": "1287", "attributes": { "weight": 3 } }, { "key": "6139", "source": "1294", "target": "1322", "attributes": { "weight": 4 } }, { "key": "6148", "source": "1294", "target": "1343", "attributes": { "weight": 2 } }, { "key": "6082", "source": "1294", "target": "195", "attributes": { "weight": 9 } }, { "key": "6109", "source": "1294", "target": "370", "attributes": { "weight": 4 } }, { "key": "6135", "source": "1294", "target": "1315", "attributes": { "weight": 4 } }, { "key": "6152", "source": "1294", "target": "377", "attributes": { "weight": 3 } }, { "key": "6147", "source": "1294", "target": "218", "attributes": { "weight": 3 } }, { "key": "6091", "source": "1294", "target": "387", "attributes": { "weight": 2 } }, { "key": "6127", "source": "1294", "target": "1288", "attributes": { "weight": 4 } }, { "key": "18266", "source": "1294", "target": "2204", "attributes": { "weight": 3 } }, { "key": "6136", "source": "1294", "target": "405", "attributes": { "weight": 3 } }, { "key": "6141", "source": "1294", "target": "1326", "attributes": { "weight": 4 } }, { "key": "6097", "source": "1294", "target": "913", "attributes": { "weight": 4 } }, { "key": "6118", "source": "1294", "target": "396", "attributes": { "weight": 3 } }, { "key": "6153", "source": "1294", "target": "417", "attributes": { "weight": 2 } }, { "key": "36676", "source": "1294", "target": "1255", "attributes": { "weight": 1 } }, { "key": "6120", "source": "1294", "target": "1269", "attributes": { "weight": 3 } }, { "key": "6106", "source": "1294", "target": "1227", "attributes": { "weight": 3 } }, { "key": "6138", "source": "1294", "target": "1318", "attributes": { "weight": 2 } }, { "key": "6080", "source": "1294", "target": "1140", "attributes": { "weight": 4 } }, { "key": "6119", "source": "1294", "target": "371", "attributes": { "weight": 2 } }, { "key": "6083", "source": "1294", "target": "1152", "attributes": { "weight": 3 } }, { "key": "34644", "source": "1294", "target": "1232", "attributes": { "weight": 1 } }, { "key": "36677", "source": "1294", "target": "1552", "attributes": { "weight": 1 } }, { "key": "6081", "source": "1294", "target": "711", "attributes": { "weight": 2 } }, { "key": "7376", "source": "1294", "target": "1063", "attributes": { "weight": 1 } }, { "key": "6145", "source": "1294", "target": "408", "attributes": { "weight": 4 } }, { "key": "6142", "source": "1294", "target": "406", "attributes": { "weight": 2 } }, { "key": "6132", "source": "1294", "target": "1300", "attributes": { "weight": 2 } }, { "key": "6117", "source": "1294", "target": "208", "attributes": { "weight": 3 } }, { "key": "6105", "source": "1294", "target": "1218", "attributes": { "weight": 2 } }, { "key": "6095", "source": "1294", "target": "1198", "attributes": { "weight": 2 } }, { "key": "36678", "source": "1294", "target": "926", "attributes": { "weight": 1 } }, { "key": "6110", "source": "1294", "target": "1245", "attributes": { "weight": 2 } }, { "key": "36674", "source": "1294", "target": "1165", "attributes": { "weight": 1 } }, { "key": "6129", "source": "1294", "target": "1291", "attributes": { "weight": 5 } }, { "key": "6116", "source": "1294", "target": "1263", "attributes": { "weight": 3 } }, { "key": "6150", "source": "1294", "target": "1352", "attributes": { "weight": 2 } }, { "key": "34643", "source": "1294", "target": "1182", "attributes": { "weight": 1 } }, { "key": "6151", "source": "1294", "target": "333", "attributes": { "weight": 2 } }, { "key": "6087", "source": "1294", "target": "1173", "attributes": { "weight": 3 } }, { "key": "6090", "source": "1294", "target": "1184", "attributes": { "weight": 3 } }, { "key": "6143", "source": "1294", "target": "1329", "attributes": { "weight": 4 } }, { "key": "6102", "source": "1294", "target": "199", "attributes": { "weight": 4 } }, { "key": "6124", "source": "1294", "target": "1284", "attributes": { "weight": 4 } }, { "key": "6134", "source": "1294", "target": "1308", "attributes": { "weight": 3 } }, { "key": "6121", "source": "1294", "target": "1277", "attributes": { "weight": 2 } }, { "key": "6085", "source": "1294", "target": "1167", "attributes": { "weight": 3 } }, { "key": "22041", "source": "1295", "target": "337", "attributes": { "weight": 1 } }, { "key": "16186", "source": "1295", "target": "913", "attributes": { "weight": 1 } }, { "key": "22043", "source": "1295", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22042", "source": "1295", "target": "2300", "attributes": { "weight": 1 } }, { "key": "16187", "source": "1295", "target": "925", "attributes": { "weight": 1 } }, { "key": "6154", "source": "1295", "target": "368", "attributes": { "weight": 2 } }, { "key": "34645", "source": "1295", "target": "1197", "attributes": { "weight": 1 } }, { "key": "9016", "source": "1295", "target": "195", "attributes": { "weight": 3 } }, { "key": "6155", "source": "1295", "target": "123", "attributes": { "weight": 3 } }, { "key": "22040", "source": "1295", "target": "2293", "attributes": { "weight": 1 } }, { "key": "16194", "source": "1296", "target": "372", "attributes": { "weight": 2 } }, { "key": "16192", "source": "1296", "target": "924", "attributes": { "weight": 1 } }, { "key": "6165", "source": "1296", "target": "123", "attributes": { "weight": 3 } }, { "key": "36686", "source": "1296", "target": "337", "attributes": { "weight": 1 } }, { "key": "16191", "source": "1296", "target": "208", "attributes": { "weight": 3 } }, { "key": "9018", "source": "1296", "target": "442", "attributes": { "weight": 2 } }, { "key": "6162", "source": "1296", "target": "338", "attributes": { "weight": 4 } }, { "key": "6163", "source": "1296", "target": "921", "attributes": { "weight": 3 } }, { "key": "34650", "source": "1296", "target": "1323", "attributes": { "weight": 1 } }, { "key": "16189", "source": "1296", "target": "912", "attributes": { "weight": 1 } }, { "key": "6164", "source": "1296", "target": "371", "attributes": { "weight": 2 } }, { "key": "9017", "source": "1296", "target": "195", "attributes": { "weight": 7 } }, { "key": "6169", "source": "1296", "target": "124", "attributes": { "weight": 2 } }, { "key": "16193", "source": "1296", "target": "925", "attributes": { "weight": 1 } }, { "key": "18901", "source": "1296", "target": "1552", "attributes": { "weight": 2 } }, { "key": "6158", "source": "1296", "target": "779", "attributes": { "weight": 2 } }, { "key": "16190", "source": "1296", "target": "913", "attributes": { "weight": 1 } }, { "key": "6168", "source": "1296", "target": "1305", "attributes": { "weight": 2 } }, { "key": "18902", "source": "1296", "target": "218", "attributes": { "weight": 2 } }, { "key": "34649", "source": "1296", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6160", "source": "1296", "target": "368", "attributes": { "weight": 3 } }, { "key": "18900", "source": "1296", "target": "1174", "attributes": { "weight": 2 } }, { "key": "36683", "source": "1296", "target": "1165", "attributes": { "weight": 1 } }, { "key": "36685", "source": "1296", "target": "1228", "attributes": { "weight": 1 } }, { "key": "34647", "source": "1296", "target": "1047", "attributes": { "weight": 1 } }, { "key": "34648", "source": "1296", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34646", "source": "1296", "target": "1197", "attributes": { "weight": 2 } }, { "key": "6159", "source": "1296", "target": "1196", "attributes": { "weight": 2 } }, { "key": "7377", "source": "1296", "target": "1063", "attributes": { "weight": 2 } }, { "key": "6167", "source": "1296", "target": "1294", "attributes": { "weight": 3 } }, { "key": "6166", "source": "1296", "target": "1090", "attributes": { "weight": 2 } }, { "key": "6161", "source": "1296", "target": "370", "attributes": { "weight": 3 } }, { "key": "6156", "source": "1296", "target": "1156", "attributes": { "weight": 2 } }, { "key": "36687", "source": "1296", "target": "215", "attributes": { "weight": 1 } }, { "key": "6157", "source": "1296", "target": "938", "attributes": { "weight": 3 } }, { "key": "36684", "source": "1296", "target": "199", "attributes": { "weight": 1 } }, { "key": "18270", "source": "1296", "target": "387", "attributes": { "weight": 1 } }, { "key": "23164", "source": "1297", "target": "601", "attributes": { "weight": 3 } }, { "key": "23162", "source": "1297", "target": "2425", "attributes": { "weight": 2 } }, { "key": "6174", "source": "1297", "target": "2429", "attributes": { "weight": 3 } }, { "key": "23163", "source": "1297", "target": "599", "attributes": { "weight": 1 } }, { "key": "26246", "source": "1297", "target": "2635", "attributes": { "weight": 1 } }, { "key": "7380", "source": "1298", "target": "1350", "attributes": { "weight": 1 } }, { "key": "32978", "source": "1298", "target": "1381", "attributes": { "weight": 1 } }, { "key": "7381", "source": "1298", "target": "1063", "attributes": { "weight": 2 } }, { "key": "25451", "source": "1298", "target": "990", "attributes": { "weight": 1 } }, { "key": "29013", "source": "1298", "target": "372", "attributes": { "weight": 1 } }, { "key": "6180", "source": "1298", "target": "371", "attributes": { "weight": 2 } }, { "key": "7009", "source": "1298", "target": "183", "attributes": { "weight": 1 } }, { "key": "15353", "source": "1298", "target": "454", "attributes": { "weight": 1 } }, { "key": "25452", "source": "1298", "target": "961", "attributes": { "weight": 1 } }, { "key": "31133", "source": "1298", "target": "442", "attributes": { "weight": 1 } }, { "key": "11657", "source": "1298", "target": "370", "attributes": { "weight": 1 } }, { "key": "32979", "source": "1298", "target": "781", "attributes": { "weight": 1 } }, { "key": "34658", "source": "1298", "target": "1047", "attributes": { "weight": 1 } }, { "key": "15352", "source": "1298", "target": "248", "attributes": { "weight": 1 } }, { "key": "35611", "source": "1299", "target": "3216", "attributes": { "weight": 1 } }, { "key": "35627", "source": "1299", "target": "3238", "attributes": { "weight": 1 } }, { "key": "35616", "source": "1299", "target": "3225", "attributes": { "weight": 1 } }, { "key": "35624", "source": "1299", "target": "3234", "attributes": { "weight": 1 } }, { "key": "26247", "source": "1299", "target": "2634", "attributes": { "weight": 1 } }, { "key": "31081", "source": "1299", "target": "2745", "attributes": { "weight": 1 } }, { "key": "35615", "source": "1299", "target": "3221", "attributes": { "weight": 1 } }, { "key": "35629", "source": "1299", "target": "3242", "attributes": { "weight": 1 } }, { "key": "35610", "source": "1299", "target": "3215", "attributes": { "weight": 1 } }, { "key": "35623", "source": "1299", "target": "3233", "attributes": { "weight": 1 } }, { "key": "35626", "source": "1299", "target": "3236", "attributes": { "weight": 1 } }, { "key": "35620", "source": "1299", "target": "3230", "attributes": { "weight": 1 } }, { "key": "6182", "source": "1299", "target": "1146", "attributes": { "weight": 4 } }, { "key": "35618", "source": "1299", "target": "3228", "attributes": { "weight": 1 } }, { "key": "35612", "source": "1299", "target": "3217", "attributes": { "weight": 1 } }, { "key": "23209", "source": "1299", "target": "1227", "attributes": { "weight": 1 } }, { "key": "35614", "source": "1299", "target": "3220", "attributes": { "weight": 1 } }, { "key": "35619", "source": "1299", "target": "3229", "attributes": { "weight": 1 } }, { "key": "6183", "source": "1299", "target": "338", "attributes": { "weight": 6 } }, { "key": "35617", "source": "1299", "target": "3227", "attributes": { "weight": 1 } }, { "key": "23130", "source": "1299", "target": "2423", "attributes": { "weight": 2 } }, { "key": "35628", "source": "1299", "target": "3239", "attributes": { "weight": 1 } }, { "key": "35625", "source": "1299", "target": "3235", "attributes": { "weight": 1 } }, { "key": "35621", "source": "1299", "target": "3231", "attributes": { "weight": 1 } }, { "key": "35613", "source": "1299", "target": "3218", "attributes": { "weight": 1 } }, { "key": "35609", "source": "1299", "target": "3214", "attributes": { "weight": 1 } }, { "key": "25057", "source": "1299", "target": "580", "attributes": { "weight": 2 } }, { "key": "6188", "source": "1300", "target": "1294", "attributes": { "weight": 2 } }, { "key": "10284", "source": "1300", "target": "1322", "attributes": { "weight": 1 } }, { "key": "36768", "source": "1300", "target": "377", "attributes": { "weight": 1 } }, { "key": "22078", "source": "1300", "target": "1680", "attributes": { "weight": 1 } }, { "key": "6187", "source": "1300", "target": "123", "attributes": { "weight": 2 } }, { "key": "18271", "source": "1300", "target": "1197", "attributes": { "weight": 2 } }, { "key": "36767", "source": "1300", "target": "333", "attributes": { "weight": 1 } }, { "key": "36766", "source": "1300", "target": "373", "attributes": { "weight": 1 } }, { "key": "6186", "source": "1300", "target": "368", "attributes": { "weight": 2 } }, { "key": "10285", "source": "1300", "target": "1331", "attributes": { "weight": 1 } }, { "key": "16200", "source": "1300", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34664", "source": "1300", "target": "337", "attributes": { "weight": 1 } }, { "key": "16199", "source": "1300", "target": "925", "attributes": { "weight": 2 } }, { "key": "34663", "source": "1300", "target": "1233", "attributes": { "weight": 1 } }, { "key": "10283", "source": "1300", "target": "1291", "attributes": { "weight": 1 } }, { "key": "6189", "source": "1300", "target": "1323", "attributes": { "weight": 5 } }, { "key": "34665", "source": "1300", "target": "338", "attributes": { "weight": 1 } }, { "key": "6199", "source": "1301", "target": "1090", "attributes": { "weight": 2 } }, { "key": "34669", "source": "1301", "target": "1047", "attributes": { "weight": 1 } }, { "key": "11667", "source": "1301", "target": "208", "attributes": { "weight": 3 } }, { "key": "11666", "source": "1301", "target": "199", "attributes": { "weight": 2 } }, { "key": "16205", "source": "1301", "target": "913", "attributes": { "weight": 1 } }, { "key": "6197", "source": "1301", "target": "779", "attributes": { "weight": 2 } }, { "key": "34671", "source": "1301", "target": "123", "attributes": { "weight": 1 } }, { "key": "18905", "source": "1301", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18906", "source": "1301", "target": "337", "attributes": { "weight": 1 } }, { "key": "34670", "source": "1301", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18907", "source": "1301", "target": "1552", "attributes": { "weight": 2 } }, { "key": "36690", "source": "1301", "target": "215", "attributes": { "weight": 1 } }, { "key": "36691", "source": "1301", "target": "218", "attributes": { "weight": 1 } }, { "key": "6198", "source": "1301", "target": "1196", "attributes": { "weight": 2 } }, { "key": "18909", "source": "1301", "target": "1329", "attributes": { "weight": 1 } }, { "key": "9032", "source": "1301", "target": "195", "attributes": { "weight": 3 } }, { "key": "18908", "source": "1301", "target": "1315", "attributes": { "weight": 1 } }, { "key": "37176", "source": "1302", "target": "387", "attributes": { "weight": 1 } }, { "key": "6207", "source": "1302", "target": "368", "attributes": { "weight": 2 } }, { "key": "37177", "source": "1302", "target": "411", "attributes": { "weight": 1 } }, { "key": "34674", "source": "1302", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9895", "source": "1302", "target": "399", "attributes": { "weight": 2 } }, { "key": "34675", "source": "1303", "target": "1197", "attributes": { "weight": 1 } }, { "key": "6208", "source": "1303", "target": "368", "attributes": { "weight": 2 } }, { "key": "22082", "source": "1303", "target": "2293", "attributes": { "weight": 1 } }, { "key": "22083", "source": "1303", "target": "337", "attributes": { "weight": 1 } }, { "key": "16208", "source": "1303", "target": "925", "attributes": { "weight": 1 } }, { "key": "34676", "source": "1303", "target": "123", "attributes": { "weight": 1 } }, { "key": "16209", "source": "1303", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34679", "source": "1304", "target": "1323", "attributes": { "weight": 1 } }, { "key": "10289", "source": "1304", "target": "1322", "attributes": { "weight": 1 } }, { "key": "16210", "source": "1304", "target": "1329", "attributes": { "weight": 1 } }, { "key": "6209", "source": "1304", "target": "338", "attributes": { "weight": 2 } }, { "key": "10288", "source": "1304", "target": "1291", "attributes": { "weight": 2 } }, { "key": "34678", "source": "1304", "target": "1197", "attributes": { "weight": 1 } }, { "key": "16220", "source": "1305", "target": "925", "attributes": { "weight": 1 } }, { "key": "6210", "source": "1305", "target": "779", "attributes": { "weight": 2 } }, { "key": "18912", "source": "1305", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18277", "source": "1305", "target": "2205", "attributes": { "weight": 1 } }, { "key": "34680", "source": "1305", "target": "1047", "attributes": { "weight": 1 } }, { "key": "34681", "source": "1305", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6213", "source": "1305", "target": "370", "attributes": { "weight": 4 } }, { "key": "11669", "source": "1305", "target": "938", "attributes": { "weight": 2 } }, { "key": "18911", "source": "1305", "target": "1165", "attributes": { "weight": 2 } }, { "key": "16212", "source": "1305", "target": "1174", "attributes": { "weight": 3 } }, { "key": "36695", "source": "1305", "target": "124", "attributes": { "weight": 1 } }, { "key": "6220", "source": "1305", "target": "1296", "attributes": { "weight": 2 } }, { "key": "6218", "source": "1305", "target": "123", "attributes": { "weight": 3 } }, { "key": "34682", "source": "1305", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16213", "source": "1305", "target": "1184", "attributes": { "weight": 1 } }, { "key": "16211", "source": "1305", "target": "1156", "attributes": { "weight": 1 } }, { "key": "6219", "source": "1305", "target": "1090", "attributes": { "weight": 3 } }, { "key": "9896", "source": "1305", "target": "387", "attributes": { "weight": 2 } }, { "key": "6212", "source": "1305", "target": "368", "attributes": { "weight": 2 } }, { "key": "7389", "source": "1305", "target": "1063", "attributes": { "weight": 1 } }, { "key": "16214", "source": "1305", "target": "912", "attributes": { "weight": 1 } }, { "key": "16219", "source": "1305", "target": "924", "attributes": { "weight": 1 } }, { "key": "16221", "source": "1305", "target": "1329", "attributes": { "weight": 1 } }, { "key": "6215", "source": "1305", "target": "921", "attributes": { "weight": 3 } }, { "key": "9038", "source": "1305", "target": "195", "attributes": { "weight": 9 } }, { "key": "6211", "source": "1305", "target": "1196", "attributes": { "weight": 2 } }, { "key": "36692", "source": "1305", "target": "1197", "attributes": { "weight": 1 } }, { "key": "11670", "source": "1305", "target": "199", "attributes": { "weight": 3 } }, { "key": "16222", "source": "1305", "target": "218", "attributes": { "weight": 3 } }, { "key": "36693", "source": "1305", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18913", "source": "1305", "target": "1323", "attributes": { "weight": 2 } }, { "key": "6214", "source": "1305", "target": "338", "attributes": { "weight": 4 } }, { "key": "16216", "source": "1305", "target": "1236", "attributes": { "weight": 1 } }, { "key": "16215", "source": "1305", "target": "913", "attributes": { "weight": 1 } }, { "key": "6216", "source": "1305", "target": "468", "attributes": { "weight": 6 } }, { "key": "36694", "source": "1305", "target": "1294", "attributes": { "weight": 1 } }, { "key": "16217", "source": "1305", "target": "337", "attributes": { "weight": 2 } }, { "key": "16218", "source": "1305", "target": "208", "attributes": { "weight": 3 } }, { "key": "6217", "source": "1305", "target": "371", "attributes": { "weight": 2 } }, { "key": "14118", "source": "1306", "target": "1031", "attributes": { "weight": 1 } }, { "key": "21782", "source": "1306", "target": "1487", "attributes": { "weight": 2 } }, { "key": "8075", "source": "1306", "target": "1502", "attributes": { "weight": 1 } }, { "key": "8073", "source": "1306", "target": "1478", "attributes": { "weight": 1 } }, { "key": "8076", "source": "1306", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21779", "source": "1306", "target": "103", "attributes": { "weight": 3 } }, { "key": "21780", "source": "1306", "target": "108", "attributes": { "weight": 3 } }, { "key": "15355", "source": "1306", "target": "454", "attributes": { "weight": 1 } }, { "key": "8067", "source": "1306", "target": "1432", "attributes": { "weight": 2 } }, { "key": "21781", "source": "1306", "target": "1464", "attributes": { "weight": 1 } }, { "key": "8068", "source": "1306", "target": "1186", "attributes": { "weight": 2 } }, { "key": "6221", "source": "1306", "target": "371", "attributes": { "weight": 3 } }, { "key": "32932", "source": "1306", "target": "470", "attributes": { "weight": 1 } }, { "key": "8071", "source": "1306", "target": "109", "attributes": { "weight": 4 } }, { "key": "8074", "source": "1306", "target": "116", "attributes": { "weight": 4 } }, { "key": "8070", "source": "1306", "target": "1455", "attributes": { "weight": 3 } }, { "key": "8072", "source": "1306", "target": "1473", "attributes": { "weight": 1 } }, { "key": "8069", "source": "1306", "target": "1453", "attributes": { "weight": 2 } }, { "key": "34685", "source": "1307", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6226", "source": "1307", "target": "371", "attributes": { "weight": 2 } }, { "key": "6227", "source": "1307", "target": "123", "attributes": { "weight": 3 } }, { "key": "34686", "source": "1307", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16229", "source": "1307", "target": "925", "attributes": { "weight": 1 } }, { "key": "16228", "source": "1307", "target": "370", "attributes": { "weight": 1 } }, { "key": "35114", "source": "1307", "target": "200", "attributes": { "weight": 1 } }, { "key": "9040", "source": "1307", "target": "195", "attributes": { "weight": 7 } }, { "key": "16227", "source": "1307", "target": "913", "attributes": { "weight": 1 } }, { "key": "6224", "source": "1307", "target": "368", "attributes": { "weight": 2 } }, { "key": "11672", "source": "1307", "target": "208", "attributes": { "weight": 3 } }, { "key": "34684", "source": "1307", "target": "1047", "attributes": { "weight": 1 } }, { "key": "6222", "source": "1307", "target": "938", "attributes": { "weight": 4 } }, { "key": "6223", "source": "1307", "target": "779", "attributes": { "weight": 2 } }, { "key": "6225", "source": "1307", "target": "921", "attributes": { "weight": 3 } }, { "key": "16226", "source": "1307", "target": "912", "attributes": { "weight": 1 } }, { "key": "34683", "source": "1307", "target": "1182", "attributes": { "weight": 1 } }, { "key": "6228", "source": "1307", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11671", "source": "1307", "target": "199", "attributes": { "weight": 1 } }, { "key": "18915", "source": "1308", "target": "1552", "attributes": { "weight": 2 } }, { "key": "6232", "source": "1308", "target": "1294", "attributes": { "weight": 3 } }, { "key": "6230", "source": "1308", "target": "338", "attributes": { "weight": 5 } }, { "key": "16232", "source": "1308", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18914", "source": "1308", "target": "1197", "attributes": { "weight": 3 } }, { "key": "6229", "source": "1308", "target": "368", "attributes": { "weight": 2 } }, { "key": "22089", "source": "1308", "target": "337", "attributes": { "weight": 2 } }, { "key": "6231", "source": "1308", "target": "123", "attributes": { "weight": 2 } }, { "key": "10291", "source": "1308", "target": "1322", "attributes": { "weight": 2 } }, { "key": "36696", "source": "1308", "target": "1315", "attributes": { "weight": 1 } }, { "key": "34688", "source": "1308", "target": "1323", "attributes": { "weight": 1 } }, { "key": "10292", "source": "1308", "target": "1326", "attributes": { "weight": 1 } }, { "key": "10290", "source": "1308", "target": "1291", "attributes": { "weight": 2 } }, { "key": "34693", "source": "1309", "target": "1232", "attributes": { "weight": 1 } }, { "key": "16234", "source": "1309", "target": "913", "attributes": { "weight": 1 } }, { "key": "6236", "source": "1309", "target": "938", "attributes": { "weight": 2 } }, { "key": "18916", "source": "1309", "target": "208", "attributes": { "weight": 2 } }, { "key": "9046", "source": "1309", "target": "195", "attributes": { "weight": 4 } }, { "key": "34691", "source": "1309", "target": "1182", "attributes": { "weight": 1 } }, { "key": "11673", "source": "1309", "target": "370", "attributes": { "weight": 2 } }, { "key": "36698", "source": "1309", "target": "218", "attributes": { "weight": 1 } }, { "key": "6240", "source": "1309", "target": "1090", "attributes": { "weight": 2 } }, { "key": "36697", "source": "1309", "target": "1174", "attributes": { "weight": 1 } }, { "key": "6237", "source": "1309", "target": "779", "attributes": { "weight": 2 } }, { "key": "6238", "source": "1309", "target": "1196", "attributes": { "weight": 2 } }, { "key": "6239", "source": "1309", "target": "123", "attributes": { "weight": 3 } }, { "key": "16235", "source": "1309", "target": "921", "attributes": { "weight": 1 } }, { "key": "7390", "source": "1309", "target": "1063", "attributes": { "weight": 1 } }, { "key": "34692", "source": "1309", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18917", "source": "1309", "target": "1552", "attributes": { "weight": 2 } }, { "key": "16236", "source": "1309", "target": "925", "attributes": { "weight": 1 } }, { "key": "6241", "source": "1310", "target": "368", "attributes": { "weight": 2 } }, { "key": "16237", "source": "1311", "target": "925", "attributes": { "weight": 1 } }, { "key": "22092", "source": "1311", "target": "2293", "attributes": { "weight": 1 } }, { "key": "6242", "source": "1311", "target": "123", "attributes": { "weight": 2 } }, { "key": "6251", "source": "1312", "target": "468", "attributes": { "weight": 2 } }, { "key": "23663", "source": "1312", "target": "130", "attributes": { "weight": 1 } }, { "key": "23679", "source": "1312", "target": "483", "attributes": { "weight": 1 } }, { "key": "23682", "source": "1312", "target": "1566", "attributes": { "weight": 1 } }, { "key": "23669", "source": "1312", "target": "452", "attributes": { "weight": 1 } }, { "key": "26741", "source": "1312", "target": "189", "attributes": { "weight": 1 } }, { "key": "23681", "source": "1312", "target": "488", "attributes": { "weight": 1 } }, { "key": "23666", "source": "1312", "target": "1533", "attributes": { "weight": 1 } }, { "key": "23662", "source": "1312", "target": "424", "attributes": { "weight": 1 } }, { "key": "23668", "source": "1312", "target": "451", "attributes": { "weight": 1 } }, { "key": "23661", "source": "1312", "target": "1354", "attributes": { "weight": 1 } }, { "key": "23677", "source": "1312", "target": "479", "attributes": { "weight": 1 } }, { "key": "23683", "source": "1312", "target": "495", "attributes": { "weight": 1 } }, { "key": "32591", "source": "1312", "target": "791", "attributes": { "weight": 1 } }, { "key": "23665", "source": "1312", "target": "440", "attributes": { "weight": 1 } }, { "key": "23672", "source": "1312", "target": "459", "attributes": { "weight": 1 } }, { "key": "23671", "source": "1312", "target": "458", "attributes": { "weight": 1 } }, { "key": "23673", "source": "1312", "target": "471", "attributes": { "weight": 1 } }, { "key": "23680", "source": "1312", "target": "232", "attributes": { "weight": 1 } }, { "key": "23678", "source": "1312", "target": "482", "attributes": { "weight": 1 } }, { "key": "9049", "source": "1312", "target": "1363", "attributes": { "weight": 4 } }, { "key": "23670", "source": "1312", "target": "2251", "attributes": { "weight": 1 } }, { "key": "23660", "source": "1312", "target": "429", "attributes": { "weight": 1 } }, { "key": "23674", "source": "1312", "target": "229", "attributes": { "weight": 1 } }, { "key": "23675", "source": "1312", "target": "474", "attributes": { "weight": 1 } }, { "key": "23667", "source": "1312", "target": "2248", "attributes": { "weight": 1 } }, { "key": "23664", "source": "1312", "target": "858", "attributes": { "weight": 1 } }, { "key": "23676", "source": "1312", "target": "231", "attributes": { "weight": 1 } }, { "key": "23684", "source": "1312", "target": "1375", "attributes": { "weight": 1 } }, { "key": "6252", "source": "1313", "target": "368", "attributes": { "weight": 2 } }, { "key": "34702", "source": "1313", "target": "1197", "attributes": { "weight": 1 } }, { "key": "6253", "source": "1313", "target": "338", "attributes": { "weight": 3 } }, { "key": "10752", "source": "1314", "target": "370", "attributes": { "weight": 3 } }, { "key": "10751", "source": "1314", "target": "1233", "attributes": { "weight": 3 } }, { "key": "10746", "source": "1314", "target": "387", "attributes": { "weight": 1 } }, { "key": "10764", "source": "1314", "target": "635", "attributes": { "weight": 1 } }, { "key": "10748", "source": "1314", "target": "391", "attributes": { "weight": 1 } }, { "key": "10757", "source": "1314", "target": "782", "attributes": { "weight": 1 } }, { "key": "32185", "source": "1314", "target": "392", "attributes": { "weight": 1 } }, { "key": "10756", "source": "1314", "target": "208", "attributes": { "weight": 2 } }, { "key": "10766", "source": "1314", "target": "1063", "attributes": { "weight": 1 } }, { "key": "10758", "source": "1314", "target": "123", "attributes": { "weight": 1 } }, { "key": "10759", "source": "1314", "target": "1031", "attributes": { "weight": 2 } }, { "key": "10760", "source": "1314", "target": "633", "attributes": { "weight": 1 } }, { "key": "10762", "source": "1314", "target": "1323", "attributes": { "weight": 3 } }, { "key": "10747", "source": "1314", "target": "1047", "attributes": { "weight": 2 } }, { "key": "10745", "source": "1314", "target": "44", "attributes": { "weight": 1 } }, { "key": "28603", "source": "1314", "target": "199", "attributes": { "weight": 1 } }, { "key": "10763", "source": "1314", "target": "407", "attributes": { "weight": 1 } }, { "key": "12035", "source": "1314", "target": "471", "attributes": { "weight": 2 } }, { "key": "26974", "source": "1314", "target": "545", "attributes": { "weight": 2 } }, { "key": "10754", "source": "1314", "target": "30", "attributes": { "weight": 1 } }, { "key": "9898", "source": "1314", "target": "396", "attributes": { "weight": 2 } }, { "key": "10750", "source": "1314", "target": "1232", "attributes": { "weight": 2 } }, { "key": "10765", "source": "1314", "target": "48", "attributes": { "weight": 1 } }, { "key": "10753", "source": "1314", "target": "338", "attributes": { "weight": 3 } }, { "key": "6255", "source": "1314", "target": "371", "attributes": { "weight": 4 } }, { "key": "10761", "source": "1314", "target": "634", "attributes": { "weight": 1 } }, { "key": "16244", "source": "1314", "target": "195", "attributes": { "weight": 1 } }, { "key": "10749", "source": "1314", "target": "45", "attributes": { "weight": 1 } }, { "key": "10744", "source": "1314", "target": "631", "attributes": { "weight": 1 } }, { "key": "10755", "source": "1314", "target": "544", "attributes": { "weight": 1 } }, { "key": "6254", "source": "1314", "target": "368", "attributes": { "weight": 4 } }, { "key": "10743", "source": "1314", "target": "43", "attributes": { "weight": 1 } }, { "key": "6266", "source": "1315", "target": "123", "attributes": { "weight": 4 } }, { "key": "10301", "source": "1315", "target": "406", "attributes": { "weight": 2 } }, { "key": "10302", "source": "1315", "target": "1329", "attributes": { "weight": 2 } }, { "key": "10295", "source": "1315", "target": "1206", "attributes": { "weight": 1 } }, { "key": "6260", "source": "1315", "target": "370", "attributes": { "weight": 6 } }, { "key": "6272", "source": "1315", "target": "1335", "attributes": { "weight": 2 } }, { "key": "36707", "source": "1315", "target": "1552", "attributes": { "weight": 1 } }, { "key": "36710", "source": "1315", "target": "1331", "attributes": { "weight": 1 } }, { "key": "10298", "source": "1315", "target": "1277", "attributes": { "weight": 1 } }, { "key": "36706", "source": "1315", "target": "1165", "attributes": { "weight": 1 } }, { "key": "6259", "source": "1315", "target": "368", "attributes": { "weight": 4 } }, { "key": "7392", "source": "1315", "target": "1063", "attributes": { "weight": 1 } }, { "key": "36708", "source": "1315", "target": "926", "attributes": { "weight": 1 } }, { "key": "37178", "source": "1315", "target": "396", "attributes": { "weight": 1 } }, { "key": "6270", "source": "1315", "target": "403", "attributes": { "weight": 3 } }, { "key": "6273", "source": "1315", "target": "377", "attributes": { "weight": 2 } }, { "key": "10293", "source": "1315", "target": "1167", "attributes": { "weight": 1 } }, { "key": "25537", "source": "1315", "target": "2603", "attributes": { "weight": 1 } }, { "key": "34703", "source": "1315", "target": "1047", "attributes": { "weight": 1 } }, { "key": "6267", "source": "1315", "target": "1291", "attributes": { "weight": 3 } }, { "key": "18923", "source": "1315", "target": "1263", "attributes": { "weight": 2 } }, { "key": "18922", "source": "1315", "target": "337", "attributes": { "weight": 3 } }, { "key": "34704", "source": "1315", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6265", "source": "1315", "target": "580", "attributes": { "weight": 3 } }, { "key": "22093", "source": "1315", "target": "1680", "attributes": { "weight": 1 } }, { "key": "18925", "source": "1315", "target": "405", "attributes": { "weight": 2 } }, { "key": "6262", "source": "1315", "target": "468", "attributes": { "weight": 4 } }, { "key": "10299", "source": "1315", "target": "925", "attributes": { "weight": 3 } }, { "key": "6258", "source": "1315", "target": "1196", "attributes": { "weight": 2 } }, { "key": "10300", "source": "1315", "target": "1285", "attributes": { "weight": 1 } }, { "key": "10297", "source": "1315", "target": "1254", "attributes": { "weight": 1 } }, { "key": "10296", "source": "1315", "target": "1227", "attributes": { "weight": 2 } }, { "key": "36711", "source": "1315", "target": "124", "attributes": { "weight": 1 } }, { "key": "18927", "source": "1315", "target": "1326", "attributes": { "weight": 2 } }, { "key": "36709", "source": "1315", "target": "1284", "attributes": { "weight": 1 } }, { "key": "18281", "source": "1315", "target": "1197", "attributes": { "weight": 4 } }, { "key": "6271", "source": "1315", "target": "1322", "attributes": { "weight": 3 } }, { "key": "6263", "source": "1315", "target": "208", "attributes": { "weight": 2 } }, { "key": "18921", "source": "1315", "target": "1228", "attributes": { "weight": 2 } }, { "key": "18924", "source": "1315", "target": "1308", "attributes": { "weight": 2 } }, { "key": "9053", "source": "1315", "target": "195", "attributes": { "weight": 8 } }, { "key": "6264", "source": "1315", "target": "371", "attributes": { "weight": 2 } }, { "key": "18926", "source": "1315", "target": "1321", "attributes": { "weight": 1 } }, { "key": "6256", "source": "1315", "target": "938", "attributes": { "weight": 3 } }, { "key": "34705", "source": "1315", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6268", "source": "1315", "target": "1090", "attributes": { "weight": 2 } }, { "key": "6261", "source": "1315", "target": "338", "attributes": { "weight": 5 } }, { "key": "10294", "source": "1315", "target": "913", "attributes": { "weight": 2 } }, { "key": "36704", "source": "1315", "target": "1140", "attributes": { "weight": 1 } }, { "key": "6269", "source": "1315", "target": "1294", "attributes": { "weight": 4 } }, { "key": "6257", "source": "1315", "target": "779", "attributes": { "weight": 2 } }, { "key": "34706", "source": "1315", "target": "1323", "attributes": { "weight": 3 } }, { "key": "36705", "source": "1315", "target": "1152", "attributes": { "weight": 1 } }, { "key": "36712", "source": "1315", "target": "1343", "attributes": { "weight": 1 } }, { "key": "18920", "source": "1315", "target": "1174", "attributes": { "weight": 2 } }, { "key": "34716", "source": "1316", "target": "123", "attributes": { "weight": 1 } }, { "key": "16252", "source": "1316", "target": "913", "attributes": { "weight": 1 } }, { "key": "34714", "source": "1316", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6282", "source": "1316", "target": "368", "attributes": { "weight": 2 } }, { "key": "9055", "source": "1316", "target": "195", "attributes": { "weight": 6 } }, { "key": "6281", "source": "1316", "target": "1196", "attributes": { "weight": 2 } }, { "key": "11680", "source": "1316", "target": "370", "attributes": { "weight": 2 } }, { "key": "34713", "source": "1316", "target": "1047", "attributes": { "weight": 1 } }, { "key": "11679", "source": "1316", "target": "938", "attributes": { "weight": 1 } }, { "key": "16253", "source": "1316", "target": "921", "attributes": { "weight": 1 } }, { "key": "34715", "source": "1316", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6283", "source": "1316", "target": "1090", "attributes": { "weight": 2 } }, { "key": "6280", "source": "1316", "target": "779", "attributes": { "weight": 2 } }, { "key": "34718", "source": "1317", "target": "1323", "attributes": { "weight": 1 } }, { "key": "6284", "source": "1317", "target": "1294", "attributes": { "weight": 2 } }, { "key": "10305", "source": "1317", "target": "1322", "attributes": { "weight": 1 } }, { "key": "18282", "source": "1317", "target": "1197", "attributes": { "weight": 2 } }, { "key": "34717", "source": "1317", "target": "338", "attributes": { "weight": 1 } }, { "key": "10304", "source": "1317", "target": "1291", "attributes": { "weight": 1 } }, { "key": "34721", "source": "1318", "target": "1323", "attributes": { "weight": 1 } }, { "key": "34720", "source": "1318", "target": "338", "attributes": { "weight": 1 } }, { "key": "6285", "source": "1318", "target": "1294", "attributes": { "weight": 2 } }, { "key": "6286", "source": "1319", "target": "779", "attributes": { "weight": 2 } }, { "key": "6287", "source": "1319", "target": "1090", "attributes": { "weight": 2 } }, { "key": "34722", "source": "1320", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34723", "source": "1320", "target": "123", "attributes": { "weight": 1 } }, { "key": "6288", "source": "1320", "target": "1090", "attributes": { "weight": 2 } }, { "key": "16256", "source": "1320", "target": "913", "attributes": { "weight": 1 } }, { "key": "6297", "source": "1321", "target": "921", "attributes": { "weight": 3 } }, { "key": "36718", "source": "1321", "target": "1294", "attributes": { "weight": 1 } }, { "key": "16260", "source": "1321", "target": "208", "attributes": { "weight": 3 } }, { "key": "6296", "source": "1321", "target": "368", "attributes": { "weight": 2 } }, { "key": "34728", "source": "1321", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18939", "source": "1321", "target": "1552", "attributes": { "weight": 2 } }, { "key": "34724", "source": "1321", "target": "1182", "attributes": { "weight": 1 } }, { "key": "16261", "source": "1321", "target": "925", "attributes": { "weight": 1 } }, { "key": "6294", "source": "1321", "target": "779", "attributes": { "weight": 2 } }, { "key": "18938", "source": "1321", "target": "1174", "attributes": { "weight": 2 } }, { "key": "6295", "source": "1321", "target": "1196", "attributes": { "weight": 2 } }, { "key": "6299", "source": "1321", "target": "123", "attributes": { "weight": 3 } }, { "key": "6300", "source": "1321", "target": "1090", "attributes": { "weight": 2 } }, { "key": "36717", "source": "1321", "target": "337", "attributes": { "weight": 1 } }, { "key": "16258", "source": "1321", "target": "913", "attributes": { "weight": 1 } }, { "key": "36719", "source": "1321", "target": "218", "attributes": { "weight": 1 } }, { "key": "34727", "source": "1321", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34725", "source": "1321", "target": "1197", "attributes": { "weight": 2 } }, { "key": "6298", "source": "1321", "target": "371", "attributes": { "weight": 2 } }, { "key": "34726", "source": "1321", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16259", "source": "1321", "target": "370", "attributes": { "weight": 1 } }, { "key": "9058", "source": "1321", "target": "195", "attributes": { "weight": 6 } }, { "key": "6309", "source": "1322", "target": "370", "attributes": { "weight": 5 } }, { "key": "10331", "source": "1322", "target": "1689", "attributes": { "weight": 1 } }, { "key": "10319", "source": "1322", "target": "1203", "attributes": { "weight": 1 } }, { "key": "10310", "source": "1322", "target": "711", "attributes": { "weight": 3 } }, { "key": "34730", "source": "1322", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6305", "source": "1322", "target": "779", "attributes": { "weight": 2 } }, { "key": "10343", "source": "1322", "target": "405", "attributes": { "weight": 1 } }, { "key": "10321", "source": "1322", "target": "1206", "attributes": { "weight": 1 } }, { "key": "6313", "source": "1322", "target": "468", "attributes": { "weight": 8 } }, { "key": "7395", "source": "1322", "target": "1063", "attributes": { "weight": 1 } }, { "key": "10312", "source": "1322", "target": "937", "attributes": { "weight": 1 } }, { "key": "10344", "source": "1322", "target": "1317", "attributes": { "weight": 1 } }, { "key": "10323", "source": "1322", "target": "199", "attributes": { "weight": 1 } }, { "key": "10348", "source": "1322", "target": "373", "attributes": { "weight": 1 } }, { "key": "10337", "source": "1322", "target": "1291", "attributes": { "weight": 2 } }, { "key": "6317", "source": "1322", "target": "1284", "attributes": { "weight": 4 } }, { "key": "10327", "source": "1322", "target": "1243", "attributes": { "weight": 1 } }, { "key": "16269", "source": "1322", "target": "580", "attributes": { "weight": 3 } }, { "key": "10339", "source": "1322", "target": "1300", "attributes": { "weight": 1 } }, { "key": "6308", "source": "1322", "target": "1047", "attributes": { "weight": 3 } }, { "key": "36720", "source": "1322", "target": "1140", "attributes": { "weight": 1 } }, { "key": "16267", "source": "1322", "target": "707", "attributes": { "weight": 1 } }, { "key": "6310", "source": "1322", "target": "128", "attributes": { "weight": 3 } }, { "key": "6307", "source": "1322", "target": "368", "attributes": { "weight": 3 } }, { "key": "6316", "source": "1322", "target": "371", "attributes": { "weight": 2 } }, { "key": "6304", "source": "1322", "target": "1173", "attributes": { "weight": 2 } }, { "key": "10342", "source": "1322", "target": "1308", "attributes": { "weight": 2 } }, { "key": "6320", "source": "1322", "target": "304", "attributes": { "weight": 5 } }, { "key": "18478", "source": "1322", "target": "1738", "attributes": { "weight": 1 } }, { "key": "6314", "source": "1322", "target": "1263", "attributes": { "weight": 2 } }, { "key": "6327", "source": "1322", "target": "408", "attributes": { "weight": 2 } }, { "key": "10318", "source": "1322", "target": "1684", "attributes": { "weight": 1 } }, { "key": "15364", "source": "1322", "target": "454", "attributes": { "weight": 3 } }, { "key": "10347", "source": "1322", "target": "1343", "attributes": { "weight": 1 } }, { "key": "10334", "source": "1322", "target": "925", "attributes": { "weight": 3 } }, { "key": "10320", "source": "1322", "target": "506", "attributes": { "weight": 1 } }, { "key": "16268", "source": "1322", "target": "278", "attributes": { "weight": 4 } }, { "key": "10329", "source": "1322", "target": "337", "attributes": { "weight": 4 } }, { "key": "6319", "source": "1322", "target": "123", "attributes": { "weight": 4 } }, { "key": "18941", "source": "1322", "target": "1552", "attributes": { "weight": 2 } }, { "key": "10309", "source": "1322", "target": "1679", "attributes": { "weight": 1 } }, { "key": "6315", "source": "1322", "target": "208", "attributes": { "weight": 2 } }, { "key": "9061", "source": "1322", "target": "442", "attributes": { "weight": 3 } }, { "key": "6318", "source": "1322", "target": "1288", "attributes": { "weight": 2 } }, { "key": "10313", "source": "1322", "target": "1680", "attributes": { "weight": 1 } }, { "key": "6312", "source": "1322", "target": "1251", "attributes": { "weight": 3 } }, { "key": "10326", "source": "1322", "target": "1233", "attributes": { "weight": 4 } }, { "key": "10349", "source": "1322", "target": "1702", "attributes": { "weight": 1 } }, { "key": "9060", "source": "1322", "target": "195", "attributes": { "weight": 6 } }, { "key": "10324", "source": "1322", "target": "1215", "attributes": { "weight": 1 } }, { "key": "12605", "source": "1322", "target": "180", "attributes": { "weight": 2 } }, { "key": "6326", "source": "1322", "target": "1331", "attributes": { "weight": 4 } }, { "key": "6322", "source": "1322", "target": "1294", "attributes": { "weight": 5 } }, { "key": "10325", "source": "1322", "target": "1686", "attributes": { "weight": 1 } }, { "key": "6303", "source": "1322", "target": "938", "attributes": { "weight": 3 } }, { "key": "6325", "source": "1322", "target": "1326", "attributes": { "weight": 3 } }, { "key": "10352", "source": "1322", "target": "851", "attributes": { "weight": 1 } }, { "key": "9062", "source": "1322", "target": "1227", "attributes": { "weight": 5 } }, { "key": "18942", "source": "1322", "target": "1269", "attributes": { "weight": 2 } }, { "key": "18940", "source": "1322", "target": "1174", "attributes": { "weight": 2 } }, { "key": "10351", "source": "1322", "target": "377", "attributes": { "weight": 1 } }, { "key": "10333", "source": "1322", "target": "1690", "attributes": { "weight": 1 } }, { "key": "16266", "source": "1322", "target": "913", "attributes": { "weight": 1 } }, { "key": "6323", "source": "1322", "target": "1315", "attributes": { "weight": 4 } }, { "key": "6329", "source": "1322", "target": "333", "attributes": { "weight": 5 } }, { "key": "10336", "source": "1322", "target": "1287", "attributes": { "weight": 1 } }, { "key": "10314", "source": "1322", "target": "1167", "attributes": { "weight": 1 } }, { "key": "10345", "source": "1322", "target": "1329", "attributes": { "weight": 4 } }, { "key": "11686", "source": "1322", "target": "358", "attributes": { "weight": 2 } }, { "key": "10350", "source": "1322", "target": "374", "attributes": { "weight": 1 } }, { "key": "6306", "source": "1322", "target": "1197", "attributes": { "weight": 6 } }, { "key": "10316", "source": "1322", "target": "1188", "attributes": { "weight": 1 } }, { "key": "10330", "source": "1322", "target": "1254", "attributes": { "weight": 1 } }, { "key": "16270", "source": "1322", "target": "305", "attributes": { "weight": 2 } }, { "key": "10346", "source": "1322", "target": "1335", "attributes": { "weight": 1 } }, { "key": "6328", "source": "1322", "target": "124", "attributes": { "weight": 2 } }, { "key": "10332", "source": "1322", "target": "1265", "attributes": { "weight": 1 } }, { "key": "10315", "source": "1322", "target": "1681", "attributes": { "weight": 1 } }, { "key": "10328", "source": "1322", "target": "1245", "attributes": { "weight": 1 } }, { "key": "10322", "source": "1322", "target": "1685", "attributes": { "weight": 1 } }, { "key": "10340", "source": "1322", "target": "1695", "attributes": { "weight": 1 } }, { "key": "6324", "source": "1322", "target": "1323", "attributes": { "weight": 5 } }, { "key": "10338", "source": "1322", "target": "1693", "attributes": { "weight": 1 } }, { "key": "10341", "source": "1322", "target": "1304", "attributes": { "weight": 1 } }, { "key": "16265", "source": "1322", "target": "220", "attributes": { "weight": 2 } }, { "key": "10311", "source": "1322", "target": "1152", "attributes": { "weight": 1 } }, { "key": "10317", "source": "1322", "target": "1196", "attributes": { "weight": 1 } }, { "key": "6311", "source": "1322", "target": "338", "attributes": { "weight": 5 } }, { "key": "6321", "source": "1322", "target": "1090", "attributes": { "weight": 3 } }, { "key": "10335", "source": "1322", "target": "1285", "attributes": { "weight": 2 } }, { "key": "34743", "source": "1323", "target": "1203", "attributes": { "weight": 1 } }, { "key": "34749", "source": "1323", "target": "1245", "attributes": { "weight": 1 } }, { "key": "34773", "source": "1323", "target": "408", "attributes": { "weight": 2 } }, { "key": "34775", "source": "1323", "target": "1343", "attributes": { "weight": 1 } }, { "key": "6334", "source": "1323", "target": "370", "attributes": { "weight": 7 } }, { "key": "34738", "source": "1323", "target": "3135", "attributes": { "weight": 1 } }, { "key": "34769", "source": "1323", "target": "405", "attributes": { "weight": 1 } }, { "key": "31361", "source": "1323", "target": "674", "attributes": { "weight": 1 } }, { "key": "34760", "source": "1323", "target": "1288", "attributes": { "weight": 1 } }, { "key": "6336", "source": "1323", "target": "468", "attributes": { "weight": 10 } }, { "key": "34732", "source": "1323", "target": "3129", "attributes": { "weight": 1 } }, { "key": "6342", "source": "1323", "target": "1300", "attributes": { "weight": 4 } }, { "key": "6337", "source": "1323", "target": "371", "attributes": { "weight": 3 } }, { "key": "11687", "source": "1323", "target": "1152", "attributes": { "weight": 3 } }, { "key": "34733", "source": "1323", "target": "1157", "attributes": { "weight": 1 } }, { "key": "13510", "source": "1323", "target": "304", "attributes": { "weight": 3 } }, { "key": "11689", "source": "1323", "target": "358", "attributes": { "weight": 2 } }, { "key": "26746", "source": "1323", "target": "454", "attributes": { "weight": 3 } }, { "key": "34774", "source": "1323", "target": "124", "attributes": { "weight": 1 } }, { "key": "16272", "source": "1323", "target": "912", "attributes": { "weight": 1 } }, { "key": "34739", "source": "1323", "target": "1182", "attributes": { "weight": 1 } }, { "key": "6344", "source": "1323", "target": "1322", "attributes": { "weight": 6 } }, { "key": "12606", "source": "1323", "target": "180", "attributes": { "weight": 5 } }, { "key": "6335", "source": "1323", "target": "338", "attributes": { "weight": 7 } }, { "key": "34742", "source": "1323", "target": "1196", "attributes": { "weight": 2 } }, { "key": "34735", "source": "1323", "target": "1173", "attributes": { "weight": 1 } }, { "key": "34764", "source": "1323", "target": "3160", "attributes": { "weight": 1 } }, { "key": "34759", "source": "1323", "target": "1286", "attributes": { "weight": 1 } }, { "key": "34772", "source": "1323", "target": "1331", "attributes": { "weight": 1 } }, { "key": "11691", "source": "1323", "target": "1251", "attributes": { "weight": 1 } }, { "key": "34737", "source": "1323", "target": "3134", "attributes": { "weight": 1 } }, { "key": "34734", "source": "1323", "target": "1167", "attributes": { "weight": 1 } }, { "key": "34736", "source": "1323", "target": "1174", "attributes": { "weight": 1 } }, { "key": "34767", "source": "1323", "target": "1308", "attributes": { "weight": 1 } }, { "key": "9064", "source": "1323", "target": "442", "attributes": { "weight": 4 } }, { "key": "16271", "source": "1323", "target": "220", "attributes": { "weight": 2 } }, { "key": "34768", "source": "1323", "target": "1315", "attributes": { "weight": 3 } }, { "key": "34766", "source": "1323", "target": "1305", "attributes": { "weight": 1 } }, { "key": "34754", "source": "1323", "target": "1265", "attributes": { "weight": 1 } }, { "key": "9902", "source": "1323", "target": "390", "attributes": { "weight": 3 } }, { "key": "34741", "source": "1323", "target": "387", "attributes": { "weight": 2 } }, { "key": "34758", "source": "1323", "target": "1285", "attributes": { "weight": 1 } }, { "key": "34757", "source": "1323", "target": "926", "attributes": { "weight": 1 } }, { "key": "28487", "source": "1323", "target": "580", "attributes": { "weight": 2 } }, { "key": "9065", "source": "1323", "target": "1227", "attributes": { "weight": 5 } }, { "key": "7400", "source": "1323", "target": "851", "attributes": { "weight": 2 } }, { "key": "7397", "source": "1323", "target": "154", "attributes": { "weight": 2 } }, { "key": "9905", "source": "1323", "target": "406", "attributes": { "weight": 4 } }, { "key": "34763", "source": "1323", "target": "1693", "attributes": { "weight": 1 } }, { "key": "17306", "source": "1323", "target": "449", "attributes": { "weight": 1 } }, { "key": "18945", "source": "1323", "target": "1289", "attributes": { "weight": 1 } }, { "key": "9525", "source": "1323", "target": "278", "attributes": { "weight": 7 } }, { "key": "9063", "source": "1323", "target": "195", "attributes": { "weight": 11 } }, { "key": "6332", "source": "1323", "target": "168", "attributes": { "weight": 6 } }, { "key": "34750", "source": "1323", "target": "1254", "attributes": { "weight": 1 } }, { "key": "9901", "source": "1323", "target": "1163", "attributes": { "weight": 1 } }, { "key": "29832", "source": "1323", "target": "93", "attributes": { "weight": 1 } }, { "key": "34746", "source": "1323", "target": "1232", "attributes": { "weight": 2 } }, { "key": "28837", "source": "1323", "target": "1146", "attributes": { "weight": 3 } }, { "key": "6330", "source": "1323", "target": "779", "attributes": { "weight": 2 } }, { "key": "18944", "source": "1323", "target": "1269", "attributes": { "weight": 2 } }, { "key": "11688", "source": "1323", "target": "938", "attributes": { "weight": 3 } }, { "key": "34747", "source": "1323", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34745", "source": "1323", "target": "1206", "attributes": { "weight": 1 } }, { "key": "34756", "source": "1323", "target": "1277", "attributes": { "weight": 1 } }, { "key": "6343", "source": "1323", "target": "403", "attributes": { "weight": 5 } }, { "key": "26747", "source": "1323", "target": "189", "attributes": { "weight": 2 } }, { "key": "28838", "source": "1323", "target": "310", "attributes": { "weight": 2 } }, { "key": "7399", "source": "1323", "target": "377", "attributes": { "weight": 3 } }, { "key": "7401", "source": "1323", "target": "1063", "attributes": { "weight": 2 } }, { "key": "6331", "source": "1323", "target": "368", "attributes": { "weight": 5 } }, { "key": "16274", "source": "1323", "target": "925", "attributes": { "weight": 3 } }, { "key": "34748", "source": "1323", "target": "1236", "attributes": { "weight": 1 } }, { "key": "34770", "source": "1323", "target": "1317", "attributes": { "weight": 1 } }, { "key": "34755", "source": "1323", "target": "3154", "attributes": { "weight": 1 } }, { "key": "27298", "source": "1323", "target": "57", "attributes": { "weight": 2 } }, { "key": "18283", "source": "1323", "target": "1197", "attributes": { "weight": 4 } }, { "key": "18943", "source": "1323", "target": "1552", "attributes": { "weight": 2 } }, { "key": "7398", "source": "1323", "target": "333", "attributes": { "weight": 3 } }, { "key": "34752", "source": "1323", "target": "1263", "attributes": { "weight": 1 } }, { "key": "10773", "source": "1323", "target": "1314", "attributes": { "weight": 3 } }, { "key": "9904", "source": "1323", "target": "1272", "attributes": { "weight": 1 } }, { "key": "11690", "source": "1323", "target": "199", "attributes": { "weight": 3 } }, { "key": "34771", "source": "1323", "target": "1318", "attributes": { "weight": 1 } }, { "key": "13511", "source": "1323", "target": "305", "attributes": { "weight": 4 } }, { "key": "16273", "source": "1323", "target": "913", "attributes": { "weight": 1 } }, { "key": "6339", "source": "1323", "target": "1291", "attributes": { "weight": 4 } }, { "key": "34751", "source": "1323", "target": "3151", "attributes": { "weight": 1 } }, { "key": "23210", "source": "1323", "target": "337", "attributes": { "weight": 4 } }, { "key": "7396", "source": "1323", "target": "373", "attributes": { "weight": 2 } }, { "key": "34731", "source": "1323", "target": "1140", "attributes": { "weight": 1 } }, { "key": "6333", "source": "1323", "target": "707", "attributes": { "weight": 2 } }, { "key": "6341", "source": "1323", "target": "1294", "attributes": { "weight": 4 } }, { "key": "34744", "source": "1323", "target": "1047", "attributes": { "weight": 2 } }, { "key": "34765", "source": "1323", "target": "1304", "attributes": { "weight": 1 } }, { "key": "34753", "source": "1323", "target": "208", "attributes": { "weight": 2 } }, { "key": "28486", "source": "1323", "target": "170", "attributes": { "weight": 2 } }, { "key": "16275", "source": "1323", "target": "1329", "attributes": { "weight": 2 } }, { "key": "6340", "source": "1323", "target": "1090", "attributes": { "weight": 4 } }, { "key": "34762", "source": "1323", "target": "1296", "attributes": { "weight": 1 } }, { "key": "34740", "source": "1323", "target": "1188", "attributes": { "weight": 1 } }, { "key": "6338", "source": "1323", "target": "123", "attributes": { "weight": 5 } }, { "key": "34761", "source": "1323", "target": "2605", "attributes": { "weight": 1 } }, { "key": "9903", "source": "1323", "target": "396", "attributes": { "weight": 4 } }, { "key": "34776", "source": "1324", "target": "1197", "attributes": { "weight": 1 } }, { "key": "9066", "source": "1324", "target": "195", "attributes": { "weight": 3 } }, { "key": "6346", "source": "1324", "target": "123", "attributes": { "weight": 3 } }, { "key": "22148", "source": "1324", "target": "337", "attributes": { "weight": 1 } }, { "key": "22149", "source": "1324", "target": "2300", "attributes": { "weight": 1 } }, { "key": "22150", "source": "1324", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22151", "source": "1324", "target": "2212", "attributes": { "weight": 1 } }, { "key": "6345", "source": "1324", "target": "368", "attributes": { "weight": 2 } }, { "key": "22147", "source": "1324", "target": "2293", "attributes": { "weight": 1 } }, { "key": "34779", "source": "1325", "target": "1197", "attributes": { "weight": 1 } }, { "key": "6348", "source": "1325", "target": "368", "attributes": { "weight": 2 } }, { "key": "22152", "source": "1325", "target": "337", "attributes": { "weight": 1 } }, { "key": "34780", "source": "1325", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9070", "source": "1325", "target": "195", "attributes": { "weight": 3 } }, { "key": "18947", "source": "1326", "target": "337", "attributes": { "weight": 2 } }, { "key": "9906", "source": "1326", "target": "406", "attributes": { "weight": 2 } }, { "key": "36723", "source": "1326", "target": "1552", "attributes": { "weight": 1 } }, { "key": "16277", "source": "1326", "target": "195", "attributes": { "weight": 2 } }, { "key": "6353", "source": "1326", "target": "1245", "attributes": { "weight": 2 } }, { "key": "36722", "source": "1326", "target": "1173", "attributes": { "weight": 1 } }, { "key": "6356", "source": "1326", "target": "1285", "attributes": { "weight": 3 } }, { "key": "36724", "source": "1326", "target": "1288", "attributes": { "weight": 1 } }, { "key": "6359", "source": "1326", "target": "1294", "attributes": { "weight": 3 } }, { "key": "10356", "source": "1326", "target": "1308", "attributes": { "weight": 1 } }, { "key": "34781", "source": "1326", "target": "1233", "attributes": { "weight": 1 } }, { "key": "36725", "source": "1326", "target": "408", "attributes": { "weight": 1 } }, { "key": "10355", "source": "1326", "target": "1167", "attributes": { "weight": 1 } }, { "key": "16279", "source": "1326", "target": "1329", "attributes": { "weight": 1 } }, { "key": "11692", "source": "1326", "target": "938", "attributes": { "weight": 1 } }, { "key": "6351", "source": "1326", "target": "390", "attributes": { "weight": 4 } }, { "key": "6352", "source": "1326", "target": "1227", "attributes": { "weight": 2 } }, { "key": "18946", "source": "1326", "target": "1197", "attributes": { "weight": 3 } }, { "key": "28493", "source": "1326", "target": "580", "attributes": { "weight": 2 } }, { "key": "18948", "source": "1326", "target": "1315", "attributes": { "weight": 2 } }, { "key": "11693", "source": "1326", "target": "370", "attributes": { "weight": 1 } }, { "key": "6355", "source": "1326", "target": "1254", "attributes": { "weight": 2 } }, { "key": "6350", "source": "1326", "target": "368", "attributes": { "weight": 2 } }, { "key": "6354", "source": "1326", "target": "338", "attributes": { "weight": 9 } }, { "key": "6357", "source": "1326", "target": "123", "attributes": { "weight": 2 } }, { "key": "36721", "source": "1326", "target": "1152", "attributes": { "weight": 1 } }, { "key": "16278", "source": "1326", "target": "925", "attributes": { "weight": 1 } }, { "key": "6360", "source": "1326", "target": "1322", "attributes": { "weight": 3 } }, { "key": "6358", "source": "1326", "target": "1291", "attributes": { "weight": 3 } }, { "key": "6370", "source": "1327", "target": "368", "attributes": { "weight": 2 } }, { "key": "12060", "source": "1328", "target": "589", "attributes": { "weight": 2 } }, { "key": "12061", "source": "1328", "target": "961", "attributes": { "weight": 1 } }, { "key": "26821", "source": "1328", "target": "257", "attributes": { "weight": 2 } }, { "key": "6381", "source": "1328", "target": "371", "attributes": { "weight": 2 } }, { "key": "35115", "source": "1328", "target": "1281", "attributes": { "weight": 1 } }, { "key": "12038", "source": "1328", "target": "248", "attributes": { "weight": 3 } }, { "key": "18952", "source": "1329", "target": "1268", "attributes": { "weight": 1 } }, { "key": "6385", "source": "1329", "target": "123", "attributes": { "weight": 4 } }, { "key": "16342", "source": "1329", "target": "1326", "attributes": { "weight": 1 } }, { "key": "9911", "source": "1329", "target": "403", "attributes": { "weight": 2 } }, { "key": "16299", "source": "1329", "target": "1197", "attributes": { "weight": 4 } }, { "key": "16319", "source": "1329", "target": "1689", "attributes": { "weight": 1 } }, { "key": "9910", "source": "1329", "target": "387", "attributes": { "weight": 2 } }, { "key": "16304", "source": "1329", "target": "1205", "attributes": { "weight": 1 } }, { "key": "16323", "source": "1329", "target": "1265", "attributes": { "weight": 1 } }, { "key": "16308", "source": "1329", "target": "390", "attributes": { "weight": 1 } }, { "key": "16287", "source": "1329", "target": "1167", "attributes": { "weight": 1 } }, { "key": "16325", "source": "1329", "target": "1690", "attributes": { "weight": 1 } }, { "key": "16344", "source": "1329", "target": "408", "attributes": { "weight": 1 } }, { "key": "6383", "source": "1329", "target": "368", "attributes": { "weight": 3 } }, { "key": "16292", "source": "1329", "target": "1681", "attributes": { "weight": 1 } }, { "key": "10360", "source": "1329", "target": "1291", "attributes": { "weight": 4 } }, { "key": "6382", "source": "1329", "target": "779", "attributes": { "weight": 3 } }, { "key": "9912", "source": "1329", "target": "406", "attributes": { "weight": 2 } }, { "key": "16340", "source": "1329", "target": "1323", "attributes": { "weight": 2 } }, { "key": "6387", "source": "1329", "target": "1294", "attributes": { "weight": 4 } }, { "key": "16313", "source": "1329", "target": "1227", "attributes": { "weight": 1 } }, { "key": "16350", "source": "1329", "target": "333", "attributes": { "weight": 1 } }, { "key": "6384", "source": "1329", "target": "338", "attributes": { "weight": 7 } }, { "key": "10358", "source": "1329", "target": "912", "attributes": { "weight": 2 } }, { "key": "16322", "source": "1329", "target": "924", "attributes": { "weight": 1 } }, { "key": "16311", "source": "1329", "target": "1686", "attributes": { "weight": 1 } }, { "key": "16293", "source": "1329", "target": "2026", "attributes": { "weight": 1 } }, { "key": "16309", "source": "1329", "target": "1215", "attributes": { "weight": 1 } }, { "key": "16318", "source": "1329", "target": "337", "attributes": { "weight": 3 } }, { "key": "16302", "source": "1329", "target": "1203", "attributes": { "weight": 1 } }, { "key": "16283", "source": "1329", "target": "711", "attributes": { "weight": 1 } }, { "key": "9075", "source": "1329", "target": "195", "attributes": { "weight": 6 } }, { "key": "16333", "source": "1329", "target": "1300", "attributes": { "weight": 1 } }, { "key": "16315", "source": "1329", "target": "2037", "attributes": { "weight": 1 } }, { "key": "16339", "source": "1329", "target": "405", "attributes": { "weight": 1 } }, { "key": "16320", "source": "1329", "target": "1263", "attributes": { "weight": 1 } }, { "key": "16286", "source": "1329", "target": "1165", "attributes": { "weight": 1 } }, { "key": "16289", "source": "1329", "target": "2024", "attributes": { "weight": 1 } }, { "key": "16298", "source": "1329", "target": "1196", "attributes": { "weight": 1 } }, { "key": "16328", "source": "1329", "target": "1286", "attributes": { "weight": 1 } }, { "key": "16294", "source": "1329", "target": "2028", "attributes": { "weight": 1 } }, { "key": "10362", "source": "1329", "target": "1322", "attributes": { "weight": 4 } }, { "key": "11710", "source": "1329", "target": "1251", "attributes": { "weight": 2 } }, { "key": "16327", "source": "1329", "target": "1284", "attributes": { "weight": 3 } }, { "key": "16321", "source": "1329", "target": "208", "attributes": { "weight": 1 } }, { "key": "16351", "source": "1329", "target": "377", "attributes": { "weight": 1 } }, { "key": "16295", "source": "1329", "target": "2029", "attributes": { "weight": 1 } }, { "key": "16343", "source": "1329", "target": "1331", "attributes": { "weight": 1 } }, { "key": "16314", "source": "1329", "target": "1233", "attributes": { "weight": 2 } }, { "key": "9076", "source": "1329", "target": "442", "attributes": { "weight": 2 } }, { "key": "16331", "source": "1329", "target": "2045", "attributes": { "weight": 1 } }, { "key": "16324", "source": "1329", "target": "1278", "attributes": { "weight": 1 } }, { "key": "16300", "source": "1329", "target": "913", "attributes": { "weight": 1 } }, { "key": "16307", "source": "1329", "target": "2035", "attributes": { "weight": 1 } }, { "key": "16348", "source": "1329", "target": "2050", "attributes": { "weight": 1 } }, { "key": "10359", "source": "1329", "target": "926", "attributes": { "weight": 2 } }, { "key": "16296", "source": "1329", "target": "1188", "attributes": { "weight": 1 } }, { "key": "16310", "source": "1329", "target": "1218", "attributes": { "weight": 1 } }, { "key": "16297", "source": "1329", "target": "2030", "attributes": { "weight": 1 } }, { "key": "16282", "source": "1329", "target": "1140", "attributes": { "weight": 1 } }, { "key": "16332", "source": "1329", "target": "1693", "attributes": { "weight": 1 } }, { "key": "16346", "source": "1329", "target": "1342", "attributes": { "weight": 1 } }, { "key": "16330", "source": "1329", "target": "1288", "attributes": { "weight": 1 } }, { "key": "16301", "source": "1329", "target": "2033", "attributes": { "weight": 1 } }, { "key": "16312", "source": "1329", "target": "1687", "attributes": { "weight": 1 } }, { "key": "16336", "source": "1329", "target": "1305", "attributes": { "weight": 1 } }, { "key": "10361", "source": "1329", "target": "1315", "attributes": { "weight": 2 } }, { "key": "16345", "source": "1329", "target": "124", "attributes": { "weight": 1 } }, { "key": "16341", "source": "1329", "target": "2049", "attributes": { "weight": 1 } }, { "key": "16338", "source": "1329", "target": "1308", "attributes": { "weight": 1 } }, { "key": "16306", "source": "1329", "target": "1685", "attributes": { "weight": 1 } }, { "key": "16317", "source": "1329", "target": "2041", "attributes": { "weight": 1 } }, { "key": "16316", "source": "1329", "target": "1236", "attributes": { "weight": 1 } }, { "key": "16337", "source": "1329", "target": "2048", "attributes": { "weight": 1 } }, { "key": "16291", "source": "1329", "target": "1174", "attributes": { "weight": 3 } }, { "key": "16284", "source": "1329", "target": "1152", "attributes": { "weight": 1 } }, { "key": "11709", "source": "1329", "target": "370", "attributes": { "weight": 2 } }, { "key": "16347", "source": "1329", "target": "1343", "attributes": { "weight": 2 } }, { "key": "16305", "source": "1329", "target": "1206", "attributes": { "weight": 1 } }, { "key": "16334", "source": "1329", "target": "1303", "attributes": { "weight": 1 } }, { "key": "16288", "source": "1329", "target": "938", "attributes": { "weight": 1 } }, { "key": "16335", "source": "1329", "target": "1304", "attributes": { "weight": 1 } }, { "key": "6386", "source": "1329", "target": "1090", "attributes": { "weight": 3 } }, { "key": "18951", "source": "1329", "target": "1552", "attributes": { "weight": 2 } }, { "key": "16329", "source": "1329", "target": "1287", "attributes": { "weight": 1 } }, { "key": "16290", "source": "1329", "target": "1173", "attributes": { "weight": 1 } }, { "key": "16349", "source": "1329", "target": "2051", "attributes": { "weight": 1 } }, { "key": "16303", "source": "1329", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16285", "source": "1329", "target": "937", "attributes": { "weight": 1 } }, { "key": "16326", "source": "1329", "target": "925", "attributes": { "weight": 1 } }, { "key": "37180", "source": "1330", "target": "387", "attributes": { "weight": 1 } }, { "key": "37181", "source": "1330", "target": "411", "attributes": { "weight": 1 } }, { "key": "34790", "source": "1330", "target": "1233", "attributes": { "weight": 1 } }, { "key": "35669", "source": "1330", "target": "1264", "attributes": { "weight": 1 } }, { "key": "9913", "source": "1330", "target": "396", "attributes": { "weight": 2 } }, { "key": "6388", "source": "1330", "target": "368", "attributes": { "weight": 2 } }, { "key": "36729", "source": "1331", "target": "1288", "attributes": { "weight": 1 } }, { "key": "34793", "source": "1331", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6392", "source": "1331", "target": "1285", "attributes": { "weight": 2 } }, { "key": "34794", "source": "1331", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16352", "source": "1331", "target": "925", "attributes": { "weight": 1 } }, { "key": "36727", "source": "1331", "target": "1173", "attributes": { "weight": 1 } }, { "key": "6391", "source": "1331", "target": "338", "attributes": { "weight": 7 } }, { "key": "10363", "source": "1331", "target": "1167", "attributes": { "weight": 1 } }, { "key": "11711", "source": "1331", "target": "370", "attributes": { "weight": 1 } }, { "key": "10364", "source": "1331", "target": "1291", "attributes": { "weight": 2 } }, { "key": "6390", "source": "1331", "target": "368", "attributes": { "weight": 2 } }, { "key": "10365", "source": "1331", "target": "1300", "attributes": { "weight": 1 } }, { "key": "6389", "source": "1331", "target": "779", "attributes": { "weight": 2 } }, { "key": "34796", "source": "1331", "target": "1323", "attributes": { "weight": 1 } }, { "key": "9915", "source": "1331", "target": "390", "attributes": { "weight": 3 } }, { "key": "11712", "source": "1331", "target": "1251", "attributes": { "weight": 1 } }, { "key": "34795", "source": "1331", "target": "123", "attributes": { "weight": 1 } }, { "key": "6394", "source": "1331", "target": "1322", "attributes": { "weight": 5 } }, { "key": "18955", "source": "1331", "target": "1315", "attributes": { "weight": 2 } }, { "key": "18954", "source": "1331", "target": "337", "attributes": { "weight": 2 } }, { "key": "16353", "source": "1331", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18956", "source": "1331", "target": "408", "attributes": { "weight": 2 } }, { "key": "36728", "source": "1331", "target": "1552", "attributes": { "weight": 1 } }, { "key": "6393", "source": "1331", "target": "1294", "attributes": { "weight": 4 } }, { "key": "23211", "source": "1331", "target": "1227", "attributes": { "weight": 1 } }, { "key": "34792", "source": "1331", "target": "3129", "attributes": { "weight": 1 } }, { "key": "9077", "source": "1331", "target": "195", "attributes": { "weight": 4 } }, { "key": "18953", "source": "1331", "target": "1197", "attributes": { "weight": 3 } }, { "key": "6401", "source": "1332", "target": "368", "attributes": { "weight": 2 } }, { "key": "11713", "source": "1333", "target": "370", "attributes": { "weight": 1 } }, { "key": "9088", "source": "1333", "target": "195", "attributes": { "weight": 5 } }, { "key": "11714", "source": "1333", "target": "921", "attributes": { "weight": 2 } }, { "key": "34802", "source": "1333", "target": "123", "attributes": { "weight": 1 } }, { "key": "6402", "source": "1333", "target": "779", "attributes": { "weight": 2 } }, { "key": "6403", "source": "1333", "target": "1196", "attributes": { "weight": 2 } }, { "key": "11717", "source": "1334", "target": "370", "attributes": { "weight": 2 } }, { "key": "28605", "source": "1334", "target": "199", "attributes": { "weight": 1 } }, { "key": "11716", "source": "1334", "target": "1047", "attributes": { "weight": 1 } }, { "key": "11718", "source": "1334", "target": "961", "attributes": { "weight": 2 } }, { "key": "25458", "source": "1334", "target": "990", "attributes": { "weight": 1 } }, { "key": "11715", "source": "1334", "target": "938", "attributes": { "weight": 1 } }, { "key": "6405", "source": "1334", "target": "371", "attributes": { "weight": 2 } }, { "key": "14123", "source": "1334", "target": "1031", "attributes": { "weight": 1 } }, { "key": "6417", "source": "1335", "target": "338", "attributes": { "weight": 2 } }, { "key": "10368", "source": "1335", "target": "1291", "attributes": { "weight": 1 } }, { "key": "6418", "source": "1335", "target": "1315", "attributes": { "weight": 2 } }, { "key": "10369", "source": "1335", "target": "1322", "attributes": { "weight": 1 } }, { "key": "6424", "source": "1336", "target": "123", "attributes": { "weight": 2 } }, { "key": "36383", "source": "1337", "target": "3283", "attributes": { "weight": 1 } }, { "key": "24231", "source": "1337", "target": "130", "attributes": { "weight": 2 } }, { "key": "12532", "source": "1337", "target": "1862", "attributes": { "weight": 1 } }, { "key": "16590", "source": "1337", "target": "1522", "attributes": { "weight": 1 } }, { "key": "31366", "source": "1337", "target": "1141", "attributes": { "weight": 3 } }, { "key": "17003", "source": "1337", "target": "1354", "attributes": { "weight": 2 } }, { "key": "18480", "source": "1337", "target": "1738", "attributes": { "weight": 1 } }, { "key": "31368", "source": "1337", "target": "674", "attributes": { "weight": 1 } }, { "key": "36120", "source": "1337", "target": "465", "attributes": { "weight": 1 } }, { "key": "12724", "source": "1337", "target": "695", "attributes": { "weight": 1 } }, { "key": "6425", "source": "1337", "target": "468", "attributes": { "weight": 3 } }, { "key": "16589", "source": "1337", "target": "1754", "attributes": { "weight": 1 } }, { "key": "26760", "source": "1337", "target": "454", "attributes": { "weight": 2 } }, { "key": "17008", "source": "1337", "target": "70", "attributes": { "weight": 3 } }, { "key": "30656", "source": "1337", "target": "2994", "attributes": { "weight": 1 } }, { "key": "17004", "source": "1337", "target": "434", "attributes": { "weight": 4 } }, { "key": "17009", "source": "1337", "target": "672", "attributes": { "weight": 1 } }, { "key": "36119", "source": "1337", "target": "1360", "attributes": { "weight": 1 } }, { "key": "16591", "source": "1337", "target": "2083", "attributes": { "weight": 1 } }, { "key": "11279", "source": "1337", "target": "220", "attributes": { "weight": 2 } }, { "key": "36121", "source": "1337", "target": "2096", "attributes": { "weight": 1 } }, { "key": "31367", "source": "1337", "target": "59", "attributes": { "weight": 1 } }, { "key": "12534", "source": "1337", "target": "1863", "attributes": { "weight": 2 } }, { "key": "31371", "source": "1337", "target": "596", "attributes": { "weight": 1 } }, { "key": "17005", "source": "1337", "target": "464", "attributes": { "weight": 1 } }, { "key": "36122", "source": "1337", "target": "1390", "attributes": { "weight": 1 } }, { "key": "36385", "source": "1337", "target": "73", "attributes": { "weight": 1 } }, { "key": "17010", "source": "1337", "target": "497", "attributes": { "weight": 1 } }, { "key": "36384", "source": "1337", "target": "1764", "attributes": { "weight": 1 } }, { "key": "17006", "source": "1337", "target": "135", "attributes": { "weight": 1 } }, { "key": "9094", "source": "1337", "target": "442", "attributes": { "weight": 2 } }, { "key": "17007", "source": "1337", "target": "472", "attributes": { "weight": 1 } }, { "key": "31370", "source": "1337", "target": "1282", "attributes": { "weight": 3 } }, { "key": "31369", "source": "1337", "target": "450", "attributes": { "weight": 1 } }, { "key": "17002", "source": "1337", "target": "429", "attributes": { "weight": 1 } }, { "key": "12533", "source": "1337", "target": "1118", "attributes": { "weight": 1 } }, { "key": "31372", "source": "1337", "target": "1389", "attributes": { "weight": 1 } }, { "key": "11719", "source": "1338", "target": "199", "attributes": { "weight": 1 } }, { "key": "11720", "source": "1338", "target": "208", "attributes": { "weight": 1 } }, { "key": "22155", "source": "1338", "target": "2301", "attributes": { "weight": 1 } }, { "key": "6426", "source": "1338", "target": "1090", "attributes": { "weight": 2 } }, { "key": "16368", "source": "1338", "target": "913", "attributes": { "weight": 1 } }, { "key": "6456", "source": "1339", "target": "123", "attributes": { "weight": 2 } }, { "key": "22159", "source": "1339", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22157", "source": "1339", "target": "2300", "attributes": { "weight": 1 } }, { "key": "22158", "source": "1339", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22161", "source": "1340", "target": "2212", "attributes": { "weight": 1 } }, { "key": "6468", "source": "1340", "target": "779", "attributes": { "weight": 2 } }, { "key": "9121", "source": "1340", "target": "195", "attributes": { "weight": 3 } }, { "key": "22160", "source": "1340", "target": "2301", "attributes": { "weight": 1 } }, { "key": "30283", "source": "1341", "target": "2560", "attributes": { "weight": 1 } }, { "key": "6469", "source": "1341", "target": "1166", "attributes": { "weight": 4 } }, { "key": "30284", "source": "1341", "target": "2970", "attributes": { "weight": 1 } }, { "key": "37590", "source": "1341", "target": "3407", "attributes": { "weight": 1 } }, { "key": "30280", "source": "1341", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30281", "source": "1341", "target": "165", "attributes": { "weight": 2 } }, { "key": "30282", "source": "1341", "target": "2934", "attributes": { "weight": 2 } }, { "key": "25221", "source": "1341", "target": "310", "attributes": { "weight": 2 } }, { "key": "25220", "source": "1341", "target": "297", "attributes": { "weight": 1 } }, { "key": "30279", "source": "1341", "target": "2793", "attributes": { "weight": 1 } }, { "key": "34827", "source": "1342", "target": "1232", "attributes": { "weight": 1 } }, { "key": "36752", "source": "1342", "target": "337", "attributes": { "weight": 1 } }, { "key": "36753", "source": "1342", "target": "1552", "attributes": { "weight": 1 } }, { "key": "36751", "source": "1342", "target": "1228", "attributes": { "weight": 1 } }, { "key": "34826", "source": "1342", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18994", "source": "1342", "target": "1197", "attributes": { "weight": 3 } }, { "key": "36754", "source": "1342", "target": "1294", "attributes": { "weight": 1 } }, { "key": "9123", "source": "1342", "target": "195", "attributes": { "weight": 4 } }, { "key": "16382", "source": "1342", "target": "913", "attributes": { "weight": 1 } }, { "key": "22162", "source": "1342", "target": "2212", "attributes": { "weight": 1 } }, { "key": "6472", "source": "1342", "target": "123", "attributes": { "weight": 3 } }, { "key": "6470", "source": "1342", "target": "368", "attributes": { "weight": 2 } }, { "key": "34828", "source": "1342", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16383", "source": "1342", "target": "925", "attributes": { "weight": 1 } }, { "key": "6471", "source": "1342", "target": "371", "attributes": { "weight": 2 } }, { "key": "36750", "source": "1342", "target": "1526", "attributes": { "weight": 1 } }, { "key": "16384", "source": "1342", "target": "1329", "attributes": { "weight": 1 } }, { "key": "36755", "source": "1342", "target": "124", "attributes": { "weight": 1 } }, { "key": "34831", "source": "1343", "target": "1323", "attributes": { "weight": 1 } }, { "key": "18995", "source": "1343", "target": "337", "attributes": { "weight": 2 } }, { "key": "10371", "source": "1343", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34829", "source": "1343", "target": "1197", "attributes": { "weight": 2 } }, { "key": "6476", "source": "1343", "target": "1294", "attributes": { "weight": 2 } }, { "key": "16385", "source": "1343", "target": "925", "attributes": { "weight": 1 } }, { "key": "16386", "source": "1343", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34830", "source": "1343", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18996", "source": "1343", "target": "1552", "attributes": { "weight": 2 } }, { "key": "6473", "source": "1343", "target": "368", "attributes": { "weight": 2 } }, { "key": "18997", "source": "1343", "target": "1326", "attributes": { "weight": 1 } }, { "key": "6474", "source": "1343", "target": "338", "attributes": { "weight": 6 } }, { "key": "6475", "source": "1343", "target": "123", "attributes": { "weight": 2 } }, { "key": "10370", "source": "1343", "target": "1291", "attributes": { "weight": 1 } }, { "key": "9126", "source": "1343", "target": "195", "attributes": { "weight": 5 } }, { "key": "36756", "source": "1343", "target": "1315", "attributes": { "weight": 1 } }, { "key": "6477", "source": "1344", "target": "123", "attributes": { "weight": 3 } }, { "key": "16388", "source": "1344", "target": "925", "attributes": { "weight": 1 } }, { "key": "16387", "source": "1344", "target": "913", "attributes": { "weight": 1 } }, { "key": "6478", "source": "1345", "target": "368", "attributes": { "weight": 2 } }, { "key": "6482", "source": "1346", "target": "368", "attributes": { "weight": 2 } }, { "key": "34832", "source": "1346", "target": "1233", "attributes": { "weight": 1 } }, { "key": "12048", "source": "1347", "target": "135", "attributes": { "weight": 3 } }, { "key": "11731", "source": "1347", "target": "370", "attributes": { "weight": 1 } }, { "key": "6491", "source": "1347", "target": "371", "attributes": { "weight": 2 } }, { "key": "34837", "source": "1347", "target": "1047", "attributes": { "weight": 1 } }, { "key": "12047", "source": "1347", "target": "1220", "attributes": { "weight": 3 } }, { "key": "15399", "source": "1347", "target": "1158", "attributes": { "weight": 1 } }, { "key": "16393", "source": "1347", "target": "195", "attributes": { "weight": 1 } }, { "key": "7414", "source": "1347", "target": "1063", "attributes": { "weight": 2 } }, { "key": "6490", "source": "1347", "target": "779", "attributes": { "weight": 2 } }, { "key": "12049", "source": "1347", "target": "785", "attributes": { "weight": 2 } }, { "key": "35568", "source": "1347", "target": "248", "attributes": { "weight": 1 } }, { "key": "9137", "source": "1348", "target": "195", "attributes": { "weight": 3 } }, { "key": "6495", "source": "1348", "target": "779", "attributes": { "weight": 2 } }, { "key": "34839", "source": "1348", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6497", "source": "1348", "target": "368", "attributes": { "weight": 2 } }, { "key": "6496", "source": "1348", "target": "1196", "attributes": { "weight": 2 } }, { "key": "9935", "source": "1349", "target": "30", "attributes": { "weight": 3 } }, { "key": "21803", "source": "1349", "target": "109", "attributes": { "weight": 2 } }, { "key": "28919", "source": "1349", "target": "1105", "attributes": { "weight": 2 } }, { "key": "26274", "source": "1349", "target": "600", "attributes": { "weight": 1 } }, { "key": "28917", "source": "1349", "target": "471", "attributes": { "weight": 2 } }, { "key": "10146", "source": "1349", "target": "369", "attributes": { "weight": 2 } }, { "key": "6498", "source": "1349", "target": "371", "attributes": { "weight": 2 } }, { "key": "30007", "source": "1349", "target": "603", "attributes": { "weight": 2 } }, { "key": "28916", "source": "1349", "target": "1096", "attributes": { "weight": 2 } }, { "key": "14129", "source": "1349", "target": "1031", "attributes": { "weight": 1 } }, { "key": "28918", "source": "1349", "target": "2826", "attributes": { "weight": 2 } }, { "key": "26275", "source": "1349", "target": "1099", "attributes": { "weight": 3 } }, { "key": "36789", "source": "1350", "target": "372", "attributes": { "weight": 1 } }, { "key": "6510", "source": "1350", "target": "1090", "attributes": { "weight": 2 } }, { "key": "7461", "source": "1350", "target": "1396", "attributes": { "weight": 1 } }, { "key": "7458", "source": "1350", "target": "938", "attributes": { "weight": 2 } }, { "key": "7466", "source": "1350", "target": "1411", "attributes": { "weight": 1 } }, { "key": "7471", "source": "1350", "target": "1424", "attributes": { "weight": 4 } }, { "key": "15407", "source": "1350", "target": "454", "attributes": { "weight": 1 } }, { "key": "36791", "source": "1350", "target": "377", "attributes": { "weight": 1 } }, { "key": "34846", "source": "1350", "target": "1047", "attributes": { "weight": 1 } }, { "key": "36790", "source": "1350", "target": "3315", "attributes": { "weight": 1 } }, { "key": "16399", "source": "1350", "target": "921", "attributes": { "weight": 2 } }, { "key": "7459", "source": "1350", "target": "468", "attributes": { "weight": 2 } }, { "key": "7469", "source": "1350", "target": "1422", "attributes": { "weight": 1 } }, { "key": "7464", "source": "1350", "target": "1406", "attributes": { "weight": 1 } }, { "key": "7462", "source": "1350", "target": "1397", "attributes": { "weight": 1 } }, { "key": "7470", "source": "1350", "target": "1423", "attributes": { "weight": 1 } }, { "key": "7472", "source": "1350", "target": "1063", "attributes": { "weight": 3 } }, { "key": "7460", "source": "1350", "target": "123", "attributes": { "weight": 2 } }, { "key": "7467", "source": "1350", "target": "1413", "attributes": { "weight": 1 } }, { "key": "32989", "source": "1350", "target": "208", "attributes": { "weight": 2 } }, { "key": "7465", "source": "1350", "target": "1410", "attributes": { "weight": 1 } }, { "key": "36787", "source": "1350", "target": "387", "attributes": { "weight": 1 } }, { "key": "36788", "source": "1350", "target": "1262", "attributes": { "weight": 1 } }, { "key": "29600", "source": "1350", "target": "2880", "attributes": { "weight": 1 } }, { "key": "6509", "source": "1350", "target": "1196", "attributes": { "weight": 2 } }, { "key": "7463", "source": "1350", "target": "375", "attributes": { "weight": 3 } }, { "key": "29309", "source": "1350", "target": "2848", "attributes": { "weight": 1 } }, { "key": "7468", "source": "1350", "target": "154", "attributes": { "weight": 2 } }, { "key": "6511", "source": "1351", "target": "123", "attributes": { "weight": 2 } }, { "key": "36792", "source": "1351", "target": "377", "attributes": { "weight": 1 } }, { "key": "6526", "source": "1352", "target": "1294", "attributes": { "weight": 2 } }, { "key": "34850", "source": "1352", "target": "338", "attributes": { "weight": 1 } }, { "key": "19108", "source": "1353", "target": "450", "attributes": { "weight": 1 } }, { "key": "23910", "source": "1353", "target": "437", "attributes": { "weight": 3 } }, { "key": "28653", "source": "1353", "target": "54", "attributes": { "weight": 2 } }, { "key": "19103", "source": "1353", "target": "222", "attributes": { "weight": 1 } }, { "key": "15200", "source": "1353", "target": "454", "attributes": { "weight": 2 } }, { "key": "35198", "source": "1353", "target": "2470", "attributes": { "weight": 1 } }, { "key": "26978", "source": "1353", "target": "2105", "attributes": { "weight": 1 } }, { "key": "19101", "source": "1353", "target": "130", "attributes": { "weight": 3 } }, { "key": "19124", "source": "1353", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19121", "source": "1353", "target": "2271", "attributes": { "weight": 1 } }, { "key": "19105", "source": "1353", "target": "51", "attributes": { "weight": 2 } }, { "key": "23506", "source": "1353", "target": "220", "attributes": { "weight": 1 } }, { "key": "6565", "source": "1353", "target": "188", "attributes": { "weight": 2 } }, { "key": "19115", "source": "1353", "target": "2258", "attributes": { "weight": 3 } }, { "key": "6562", "source": "1353", "target": "224", "attributes": { "weight": 1 } }, { "key": "19102", "source": "1353", "target": "221", "attributes": { "weight": 1 } }, { "key": "26284", "source": "1353", "target": "1258", "attributes": { "weight": 1 } }, { "key": "15202", "source": "1353", "target": "455", "attributes": { "weight": 2 } }, { "key": "19106", "source": "1353", "target": "1023", "attributes": { "weight": 1 } }, { "key": "15199", "source": "1353", "target": "435", "attributes": { "weight": 6 } }, { "key": "19107", "source": "1353", "target": "2245", "attributes": { "weight": 1 } }, { "key": "15203", "source": "1353", "target": "472", "attributes": { "weight": 7 } }, { "key": "15204", "source": "1353", "target": "1369", "attributes": { "weight": 1 } }, { "key": "15206", "source": "1353", "target": "672", "attributes": { "weight": 1 } }, { "key": "17121", "source": "1353", "target": "2108", "attributes": { "weight": 2 } }, { "key": "19122", "source": "1353", "target": "2111", "attributes": { "weight": 1 } }, { "key": "6563", "source": "1353", "target": "183", "attributes": { "weight": 2 } }, { "key": "19116", "source": "1353", "target": "471", "attributes": { "weight": 3 } }, { "key": "15201", "source": "1353", "target": "1219", "attributes": { "weight": 5 } }, { "key": "6567", "source": "1353", "target": "189", "attributes": { "weight": 2 } }, { "key": "26977", "source": "1353", "target": "2645", "attributes": { "weight": 2 } }, { "key": "6566", "source": "1353", "target": "467", "attributes": { "weight": 2 } }, { "key": "19114", "source": "1353", "target": "1836", "attributes": { "weight": 2 } }, { "key": "11822", "source": "1353", "target": "135", "attributes": { "weight": 9 } }, { "key": "6568", "source": "1353", "target": "193", "attributes": { "weight": 1 } }, { "key": "19120", "source": "1353", "target": "2109", "attributes": { "weight": 2 } }, { "key": "19111", "source": "1353", "target": "453", "attributes": { "weight": 1 } }, { "key": "6569", "source": "1353", "target": "57", "attributes": { "weight": 2 } }, { "key": "19118", "source": "1353", "target": "2261", "attributes": { "weight": 1 } }, { "key": "31491", "source": "1353", "target": "438", "attributes": { "weight": 1 } }, { "key": "19104", "source": "1353", "target": "2106", "attributes": { "weight": 1 } }, { "key": "19117", "source": "1353", "target": "1838", "attributes": { "weight": 1 } }, { "key": "26979", "source": "1353", "target": "1282", "attributes": { "weight": 4 } }, { "key": "19110", "source": "1353", "target": "1832", "attributes": { "weight": 6 } }, { "key": "6564", "source": "1353", "target": "1358", "attributes": { "weight": 5 } }, { "key": "19109", "source": "1353", "target": "2248", "attributes": { "weight": 1 } }, { "key": "17120", "source": "1353", "target": "449", "attributes": { "weight": 2 } }, { "key": "19125", "source": "1353", "target": "2278", "attributes": { "weight": 1 } }, { "key": "19119", "source": "1353", "target": "2267", "attributes": { "weight": 1 } }, { "key": "28654", "source": "1353", "target": "1711", "attributes": { "weight": 1 } }, { "key": "15205", "source": "1353", "target": "490", "attributes": { "weight": 2 } }, { "key": "19113", "source": "1353", "target": "1247", "attributes": { "weight": 3 } }, { "key": "19112", "source": "1353", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19123", "source": "1353", "target": "489", "attributes": { "weight": 3 } }, { "key": "19212", "source": "1354", "target": "2253", "attributes": { "weight": 1 } }, { "key": "16625", "source": "1354", "target": "70", "attributes": { "weight": 2 } }, { "key": "19232", "source": "1354", "target": "2276", "attributes": { "weight": 1 } }, { "key": "26987", "source": "1354", "target": "1282", "attributes": { "weight": 3 } }, { "key": "23925", "source": "1354", "target": "130", "attributes": { "weight": 2 } }, { "key": "19213", "source": "1354", "target": "2107", "attributes": { "weight": 1 } }, { "key": "12126", "source": "1354", "target": "1535", "attributes": { "weight": 1 } }, { "key": "19211", "source": "1354", "target": "2088", "attributes": { "weight": 1 } }, { "key": "19197", "source": "1354", "target": "221", "attributes": { "weight": 1 } }, { "key": "33177", "source": "1354", "target": "52", "attributes": { "weight": 1 } }, { "key": "6576", "source": "1354", "target": "183", "attributes": { "weight": 1 } }, { "key": "19200", "source": "1354", "target": "438", "attributes": { "weight": 1 } }, { "key": "23930", "source": "1354", "target": "459", "attributes": { "weight": 2 } }, { "key": "16618", "source": "1354", "target": "224", "attributes": { "weight": 1 } }, { "key": "16631", "source": "1354", "target": "1389", "attributes": { "weight": 2 } }, { "key": "19206", "source": "1354", "target": "2248", "attributes": { "weight": 2 } }, { "key": "19222", "source": "1354", "target": "2261", "attributes": { "weight": 1 } }, { "key": "35199", "source": "1354", "target": "56", "attributes": { "weight": 1 } }, { "key": "19220", "source": "1354", "target": "2260", "attributes": { "weight": 1 } }, { "key": "19219", "source": "1354", "target": "472", "attributes": { "weight": 5 } }, { "key": "19229", "source": "1354", "target": "1751", "attributes": { "weight": 1 } }, { "key": "16615", "source": "1354", "target": "59", "attributes": { "weight": 2 } }, { "key": "19207", "source": "1354", "target": "1832", "attributes": { "weight": 4 } }, { "key": "23927", "source": "1354", "target": "446", "attributes": { "weight": 3 } }, { "key": "19208", "source": "1354", "target": "453", "attributes": { "weight": 1 } }, { "key": "9156", "source": "1354", "target": "1592", "attributes": { "weight": 3 } }, { "key": "19210", "source": "1354", "target": "1998", "attributes": { "weight": 1 } }, { "key": "26984", "source": "1354", "target": "2645", "attributes": { "weight": 2 } }, { "key": "19224", "source": "1354", "target": "2262", "attributes": { "weight": 1 } }, { "key": "6580", "source": "1354", "target": "231", "attributes": { "weight": 3 } }, { "key": "16624", "source": "1354", "target": "2081", "attributes": { "weight": 1 } }, { "key": "19231", "source": "1354", "target": "76", "attributes": { "weight": 1 } }, { "key": "33178", "source": "1354", "target": "2258", "attributes": { "weight": 2 } }, { "key": "19198", "source": "1354", "target": "222", "attributes": { "weight": 1 } }, { "key": "16632", "source": "1354", "target": "73", "attributes": { "weight": 2 } }, { "key": "9155", "source": "1354", "target": "430", "attributes": { "weight": 1 } }, { "key": "6578", "source": "1354", "target": "188", "attributes": { "weight": 2 } }, { "key": "19202", "source": "1354", "target": "223", "attributes": { "weight": 4 } }, { "key": "19205", "source": "1354", "target": "450", "attributes": { "weight": 3 } }, { "key": "16633", "source": "1354", "target": "1752", "attributes": { "weight": 1 } }, { "key": "19209", "source": "1354", "target": "186", "attributes": { "weight": 1 } }, { "key": "19216", "source": "1354", "target": "2254", "attributes": { "weight": 1 } }, { "key": "26985", "source": "1354", "target": "2105", "attributes": { "weight": 1 } }, { "key": "19223", "source": "1354", "target": "476", "attributes": { "weight": 1 } }, { "key": "19217", "source": "1354", "target": "1247", "attributes": { "weight": 2 } }, { "key": "16626", "source": "1354", "target": "1745", "attributes": { "weight": 1 } }, { "key": "16620", "source": "1354", "target": "1862", "attributes": { "weight": 1 } }, { "key": "33176", "source": "1354", "target": "425", "attributes": { "weight": 1 } }, { "key": "35670", "source": "1354", "target": "1738", "attributes": { "weight": 2 } }, { "key": "16628", "source": "1354", "target": "1337", "attributes": { "weight": 2 } }, { "key": "23926", "source": "1354", "target": "437", "attributes": { "weight": 2 } }, { "key": "16623", "source": "1354", "target": "66", "attributes": { "weight": 1 } }, { "key": "11826", "source": "1354", "target": "135", "attributes": { "weight": 6 } }, { "key": "23928", "source": "1354", "target": "3", "attributes": { "weight": 4 } }, { "key": "17128", "source": "1354", "target": "2108", "attributes": { "weight": 1 } }, { "key": "6577", "source": "1354", "target": "454", "attributes": { "weight": 1 } }, { "key": "19230", "source": "1354", "target": "2275", "attributes": { "weight": 1 } }, { "key": "16613", "source": "1354", "target": "1754", "attributes": { "weight": 1 } }, { "key": "19199", "source": "1354", "target": "2106", "attributes": { "weight": 1 } }, { "key": "19226", "source": "1354", "target": "2109", "attributes": { "weight": 1 } }, { "key": "19214", "source": "1354", "target": "464", "attributes": { "weight": 1 } }, { "key": "26986", "source": "1354", "target": "1219", "attributes": { "weight": 3 } }, { "key": "16630", "source": "1354", "target": "596", "attributes": { "weight": 1 } }, { "key": "19225", "source": "1354", "target": "2267", "attributes": { "weight": 1 } }, { "key": "23512", "source": "1354", "target": "220", "attributes": { "weight": 3 } }, { "key": "19215", "source": "1354", "target": "465", "attributes": { "weight": 1 } }, { "key": "6583", "source": "1354", "target": "57", "attributes": { "weight": 1 } }, { "key": "19218", "source": "1354", "target": "1836", "attributes": { "weight": 2 } }, { "key": "19203", "source": "1354", "target": "1023", "attributes": { "weight": 1 } }, { "key": "6579", "source": "1354", "target": "189", "attributes": { "weight": 2 } }, { "key": "23931", "source": "1354", "target": "54", "attributes": { "weight": 1 } }, { "key": "31218", "source": "1354", "target": "1764", "attributes": { "weight": 1 } }, { "key": "19227", "source": "1354", "target": "2111", "attributes": { "weight": 1 } }, { "key": "6581", "source": "1354", "target": "490", "attributes": { "weight": 1 } }, { "key": "23513", "source": "1354", "target": "1312", "attributes": { "weight": 1 } }, { "key": "33179", "source": "1354", "target": "2110", "attributes": { "weight": 1 } }, { "key": "12127", "source": "1354", "target": "1564", "attributes": { "weight": 1 } }, { "key": "16616", "source": "1354", "target": "434", "attributes": { "weight": 2 } }, { "key": "16629", "source": "1354", "target": "72", "attributes": { "weight": 1 } }, { "key": "23929", "source": "1354", "target": "452", "attributes": { "weight": 2 } }, { "key": "19228", "source": "1354", "target": "489", "attributes": { "weight": 1 } }, { "key": "16617", "source": "1354", "target": "1522", "attributes": { "weight": 2 } }, { "key": "16614", "source": "1354", "target": "1755", "attributes": { "weight": 1 } }, { "key": "19201", "source": "1354", "target": "51", "attributes": { "weight": 3 } }, { "key": "23933", "source": "1354", "target": "1125", "attributes": { "weight": 2 } }, { "key": "19233", "source": "1354", "target": "498", "attributes": { "weight": 1 } }, { "key": "16619", "source": "1354", "target": "674", "attributes": { "weight": 3 } }, { "key": "6582", "source": "1354", "target": "193", "attributes": { "weight": 1 } }, { "key": "23932", "source": "1354", "target": "471", "attributes": { "weight": 1 } }, { "key": "19204", "source": "1354", "target": "2245", "attributes": { "weight": 1 } }, { "key": "12125", "source": "1354", "target": "435", "attributes": { "weight": 4 } }, { "key": "19221", "source": "1354", "target": "1838", "attributes": { "weight": 1 } }, { "key": "16621", "source": "1354", "target": "1118", "attributes": { "weight": 1 } }, { "key": "16627", "source": "1354", "target": "2095", "attributes": { "weight": 2 } }, { "key": "16622", "source": "1354", "target": "457", "attributes": { "weight": 1 } }, { "key": "17127", "source": "1354", "target": "449", "attributes": { "weight": 2 } }, { "key": "6657", "source": "1355", "target": "183", "attributes": { "weight": 3 } }, { "key": "12388", "source": "1355", "target": "442", "attributes": { "weight": 2 } }, { "key": "32719", "source": "1355", "target": "1125", "attributes": { "weight": 3 } }, { "key": "33040", "source": "1355", "target": "672", "attributes": { "weight": 1 } }, { "key": "33038", "source": "1355", "target": "474", "attributes": { "weight": 1 } }, { "key": "33035", "source": "1355", "target": "425", "attributes": { "weight": 1 } }, { "key": "12394", "source": "1355", "target": "1088", "attributes": { "weight": 3 } }, { "key": "12393", "source": "1355", "target": "189", "attributes": { "weight": 3 } }, { "key": "21428", "source": "1355", "target": "894", "attributes": { "weight": 1 } }, { "key": "12389", "source": "1355", "target": "1121", "attributes": { "weight": 2 } }, { "key": "26300", "source": "1355", "target": "1258", "attributes": { "weight": 1 } }, { "key": "33039", "source": "1355", "target": "1131", "attributes": { "weight": 1 } }, { "key": "12390", "source": "1355", "target": "228", "attributes": { "weight": 2 } }, { "key": "33034", "source": "1355", "target": "223", "attributes": { "weight": 1 } }, { "key": "6658", "source": "1355", "target": "476", "attributes": { "weight": 1 } }, { "key": "15221", "source": "1355", "target": "454", "attributes": { "weight": 2 } }, { "key": "34869", "source": "1355", "target": "493", "attributes": { "weight": 1 } }, { "key": "12392", "source": "1355", "target": "1087", "attributes": { "weight": 2 } }, { "key": "15222", "source": "1355", "target": "467", "attributes": { "weight": 1 } }, { "key": "33036", "source": "1355", "target": "52", "attributes": { "weight": 1 } }, { "key": "26301", "source": "1355", "target": "1368", "attributes": { "weight": 1 } }, { "key": "33041", "source": "1355", "target": "57", "attributes": { "weight": 1 } }, { "key": "33037", "source": "1355", "target": "188", "attributes": { "weight": 1 } }, { "key": "35682", "source": "1356", "target": "438", "attributes": { "weight": 1 } }, { "key": "6737", "source": "1356", "target": "443", "attributes": { "weight": 1 } }, { "key": "26474", "source": "1356", "target": "454", "attributes": { "weight": 1 } }, { "key": "6739", "source": "1356", "target": "231", "attributes": { "weight": 1 } }, { "key": "35684", "source": "1356", "target": "57", "attributes": { "weight": 1 } }, { "key": "6736", "source": "1356", "target": "424", "attributes": { "weight": 1 } }, { "key": "6738", "source": "1356", "target": "459", "attributes": { "weight": 1 } }, { "key": "35683", "source": "1356", "target": "490", "attributes": { "weight": 1 } }, { "key": "26475", "source": "1356", "target": "189", "attributes": { "weight": 1 } }, { "key": "20052", "source": "1356", "target": "429", "attributes": { "weight": 1 } }, { "key": "20053", "source": "1356", "target": "2251", "attributes": { "weight": 1 } }, { "key": "30757", "source": "1357", "target": "1744", "attributes": { "weight": 3 } }, { "key": "31529", "source": "1357", "target": "438", "attributes": { "weight": 1 } }, { "key": "36995", "source": "1357", "target": "455", "attributes": { "weight": 1 } }, { "key": "32728", "source": "1357", "target": "135", "attributes": { "weight": 4 } }, { "key": "23334", "source": "1357", "target": "223", "attributes": { "weight": 1 } }, { "key": "32875", "source": "1357", "target": "778", "attributes": { "weight": 1 } }, { "key": "23610", "source": "1357", "target": "220", "attributes": { "weight": 1 } }, { "key": "30496", "source": "1357", "target": "479", "attributes": { "weight": 1 } }, { "key": "32727", "source": "1357", "target": "435", "attributes": { "weight": 2 } }, { "key": "6740", "source": "1357", "target": "183", "attributes": { "weight": 2 } }, { "key": "36994", "source": "1357", "target": "224", "attributes": { "weight": 1 } }, { "key": "26305", "source": "1357", "target": "1258", "attributes": { "weight": 1 } }, { "key": "27054", "source": "1357", "target": "472", "attributes": { "weight": 2 } }, { "key": "6742", "source": "1357", "target": "189", "attributes": { "weight": 2 } }, { "key": "36993", "source": "1357", "target": "425", "attributes": { "weight": 1 } }, { "key": "15236", "source": "1357", "target": "188", "attributes": { "weight": 1 } }, { "key": "28659", "source": "1357", "target": "54", "attributes": { "weight": 2 } }, { "key": "6745", "source": "1357", "target": "57", "attributes": { "weight": 2 } }, { "key": "28660", "source": "1357", "target": "1370", "attributes": { "weight": 3 } }, { "key": "15237", "source": "1357", "target": "490", "attributes": { "weight": 2 } }, { "key": "27052", "source": "1357", "target": "1832", "attributes": { "weight": 1 } }, { "key": "27053", "source": "1357", "target": "1247", "attributes": { "weight": 1 } }, { "key": "15235", "source": "1357", "target": "454", "attributes": { "weight": 2 } }, { "key": "37484", "source": "1357", "target": "1125", "attributes": { "weight": 1 } }, { "key": "33367", "source": "1357", "target": "51", "attributes": { "weight": 1 } }, { "key": "32859", "source": "1357", "target": "1219", "attributes": { "weight": 1 } }, { "key": "6741", "source": "1357", "target": "467", "attributes": { "weight": 2 } }, { "key": "6743", "source": "1357", "target": "193", "attributes": { "weight": 1 } }, { "key": "6744", "source": "1357", "target": "495", "attributes": { "weight": 4 } }, { "key": "30756", "source": "1357", "target": "470", "attributes": { "weight": 4 } }, { "key": "28661", "source": "1358", "target": "54", "attributes": { "weight": 2 } }, { "key": "33368", "source": "1358", "target": "425", "attributes": { "weight": 2 } }, { "key": "6762", "source": "1358", "target": "224", "attributes": { "weight": 2 } }, { "key": "20066", "source": "1358", "target": "1832", "attributes": { "weight": 4 } }, { "key": "15278", "source": "1358", "target": "1369", "attributes": { "weight": 1 } }, { "key": "26309", "source": "1358", "target": "1258", "attributes": { "weight": 1 } }, { "key": "20068", "source": "1358", "target": "1836", "attributes": { "weight": 2 } }, { "key": "23612", "source": "1358", "target": "220", "attributes": { "weight": 1 } }, { "key": "20061", "source": "1358", "target": "435", "attributes": { "weight": 5 } }, { "key": "6770", "source": "1358", "target": "495", "attributes": { "weight": 2 } }, { "key": "28662", "source": "1358", "target": "1711", "attributes": { "weight": 1 } }, { "key": "24345", "source": "1358", "target": "496", "attributes": { "weight": 1 } }, { "key": "16804", "source": "1358", "target": "135", "attributes": { "weight": 5 } }, { "key": "27055", "source": "1358", "target": "1219", "attributes": { "weight": 2 } }, { "key": "20071", "source": "1358", "target": "2261", "attributes": { "weight": 1 } }, { "key": "6768", "source": "1358", "target": "192", "attributes": { "weight": 2 } }, { "key": "20059", "source": "1358", "target": "130", "attributes": { "weight": 3 } }, { "key": "24344", "source": "1358", "target": "473", "attributes": { "weight": 1 } }, { "key": "24343", "source": "1358", "target": "452", "attributes": { "weight": 1 } }, { "key": "23611", "source": "1358", "target": "1353", "attributes": { "weight": 1 } }, { "key": "15279", "source": "1358", "target": "490", "attributes": { "weight": 2 } }, { "key": "20062", "source": "1358", "target": "2106", "attributes": { "weight": 1 } }, { "key": "6763", "source": "1358", "target": "183", "attributes": { "weight": 3 } }, { "key": "15277", "source": "1358", "target": "472", "attributes": { "weight": 5 } }, { "key": "24057", "source": "1358", "target": "437", "attributes": { "weight": 2 } }, { "key": "31530", "source": "1358", "target": "3058", "attributes": { "weight": 1 } }, { "key": "20069", "source": "1358", "target": "2258", "attributes": { "weight": 2 } }, { "key": "20070", "source": "1358", "target": "471", "attributes": { "weight": 3 } }, { "key": "15280", "source": "1358", "target": "672", "attributes": { "weight": 1 } }, { "key": "6765", "source": "1358", "target": "467", "attributes": { "weight": 2 } }, { "key": "20075", "source": "1358", "target": "2111", "attributes": { "weight": 1 } }, { "key": "36999", "source": "1358", "target": "3341", "attributes": { "weight": 1 } }, { "key": "20073", "source": "1358", "target": "2267", "attributes": { "weight": 1 } }, { "key": "35303", "source": "1358", "target": "1088", "attributes": { "weight": 1 } }, { "key": "20076", "source": "1358", "target": "489", "attributes": { "weight": 2 } }, { "key": "6771", "source": "1358", "target": "57", "attributes": { "weight": 2 } }, { "key": "23335", "source": "1358", "target": "223", "attributes": { "weight": 1 } }, { "key": "6769", "source": "1358", "target": "193", "attributes": { "weight": 1 } }, { "key": "17240", "source": "1358", "target": "449", "attributes": { "weight": 2 } }, { "key": "6764", "source": "1358", "target": "188", "attributes": { "weight": 2 } }, { "key": "15275", "source": "1358", "target": "454", "attributes": { "weight": 2 } }, { "key": "32729", "source": "1358", "target": "51", "attributes": { "weight": 2 } }, { "key": "20067", "source": "1358", "target": "1247", "attributes": { "weight": 2 } }, { "key": "20060", "source": "1358", "target": "221", "attributes": { "weight": 1 } }, { "key": "15276", "source": "1358", "target": "455", "attributes": { "weight": 2 } }, { "key": "23336", "source": "1358", "target": "56", "attributes": { "weight": 2 } }, { "key": "6767", "source": "1358", "target": "476", "attributes": { "weight": 1 } }, { "key": "20064", "source": "1358", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20072", "source": "1358", "target": "2108", "attributes": { "weight": 1 } }, { "key": "20065", "source": "1358", "target": "450", "attributes": { "weight": 1 } }, { "key": "20063", "source": "1358", "target": "438", "attributes": { "weight": 2 } }, { "key": "6766", "source": "1358", "target": "189", "attributes": { "weight": 3 } }, { "key": "20074", "source": "1358", "target": "480", "attributes": { "weight": 1 } }, { "key": "12215", "source": "1359", "target": "435", "attributes": { "weight": 1 } }, { "key": "31191", "source": "1359", "target": "220", "attributes": { "weight": 1 } }, { "key": "22870", "source": "1359", "target": "2394", "attributes": { "weight": 1 } }, { "key": "22873", "source": "1359", "target": "1832", "attributes": { "weight": 1 } }, { "key": "22876", "source": "1359", "target": "489", "attributes": { "weight": 1 } }, { "key": "12218", "source": "1359", "target": "1564", "attributes": { "weight": 2 } }, { "key": "22872", "source": "1359", "target": "2247", "attributes": { "weight": 1 } }, { "key": "22875", "source": "1359", "target": "472", "attributes": { "weight": 1 } }, { "key": "22874", "source": "1359", "target": "135", "attributes": { "weight": 1 } }, { "key": "22871", "source": "1359", "target": "51", "attributes": { "weight": 1 } }, { "key": "12217", "source": "1359", "target": "1768", "attributes": { "weight": 1 } }, { "key": "6773", "source": "1359", "target": "1362", "attributes": { "weight": 4 } }, { "key": "6772", "source": "1359", "target": "183", "attributes": { "weight": 1 } }, { "key": "12216", "source": "1359", "target": "1535", "attributes": { "weight": 1 } }, { "key": "35939", "source": "1360", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20078", "source": "1360", "target": "51", "attributes": { "weight": 1 } }, { "key": "35954", "source": "1360", "target": "1337", "attributes": { "weight": 1 } }, { "key": "35946", "source": "1360", "target": "1998", "attributes": { "weight": 1 } }, { "key": "26558", "source": "1360", "target": "454", "attributes": { "weight": 2 } }, { "key": "35953", "source": "1360", "target": "2262", "attributes": { "weight": 1 } }, { "key": "20086", "source": "1360", "target": "489", "attributes": { "weight": 1 } }, { "key": "25469", "source": "1360", "target": "220", "attributes": { "weight": 1 } }, { "key": "25471", "source": "1360", "target": "457", "attributes": { "weight": 1 } }, { "key": "35935", "source": "1360", "target": "1755", "attributes": { "weight": 1 } }, { "key": "35951", "source": "1360", "target": "2258", "attributes": { "weight": 1 } }, { "key": "35937", "source": "1360", "target": "434", "attributes": { "weight": 1 } }, { "key": "35944", "source": "1360", "target": "452", "attributes": { "weight": 1 } }, { "key": "6774", "source": "1360", "target": "193", "attributes": { "weight": 1 } }, { "key": "20080", "source": "1360", "target": "450", "attributes": { "weight": 1 } }, { "key": "35949", "source": "1360", "target": "2255", "attributes": { "weight": 1 } }, { "key": "26906", "source": "1360", "target": "497", "attributes": { "weight": 1 } }, { "key": "35956", "source": "1360", "target": "1389", "attributes": { "weight": 1 } }, { "key": "20083", "source": "1360", "target": "2108", "attributes": { "weight": 1 } }, { "key": "25474", "source": "1360", "target": "498", "attributes": { "weight": 1 } }, { "key": "35943", "source": "1360", "target": "2248", "attributes": { "weight": 1 } }, { "key": "25473", "source": "1360", "target": "2259", "attributes": { "weight": 1 } }, { "key": "7297", "source": "1360", "target": "674", "attributes": { "weight": 2 } }, { "key": "35948", "source": "1360", "target": "1764", "attributes": { "weight": 1 } }, { "key": "25470", "source": "1360", "target": "223", "attributes": { "weight": 1 } }, { "key": "20077", "source": "1360", "target": "435", "attributes": { "weight": 1 } }, { "key": "35938", "source": "1360", "target": "221", "attributes": { "weight": 1 } }, { "key": "20084", "source": "1360", "target": "480", "attributes": { "weight": 1 } }, { "key": "16805", "source": "1360", "target": "70", "attributes": { "weight": 2 } }, { "key": "20082", "source": "1360", "target": "472", "attributes": { "weight": 1 } }, { "key": "35945", "source": "1360", "target": "1219", "attributes": { "weight": 1 } }, { "key": "35957", "source": "1360", "target": "73", "attributes": { "weight": 1 } }, { "key": "35950", "source": "1360", "target": "1836", "attributes": { "weight": 1 } }, { "key": "35942", "source": "1360", "target": "448", "attributes": { "weight": 1 } }, { "key": "35940", "source": "1360", "target": "224", "attributes": { "weight": 1 } }, { "key": "35941", "source": "1360", "target": "1831", "attributes": { "weight": 1 } }, { "key": "25472", "source": "1360", "target": "464", "attributes": { "weight": 1 } }, { "key": "35947", "source": "1360", "target": "2088", "attributes": { "weight": 1 } }, { "key": "25475", "source": "1360", "target": "57", "attributes": { "weight": 1 } }, { "key": "20081", "source": "1360", "target": "1247", "attributes": { "weight": 1 } }, { "key": "20087", "source": "1360", "target": "2276", "attributes": { "weight": 1 } }, { "key": "20085", "source": "1360", "target": "2095", "attributes": { "weight": 1 } }, { "key": "35952", "source": "1360", "target": "1741", "attributes": { "weight": 1 } }, { "key": "26559", "source": "1360", "target": "189", "attributes": { "weight": 2 } }, { "key": "35955", "source": "1360", "target": "72", "attributes": { "weight": 1 } }, { "key": "20079", "source": "1360", "target": "449", "attributes": { "weight": 1 } }, { "key": "35936", "source": "1360", "target": "130", "attributes": { "weight": 1 } }, { "key": "29031", "source": "1361", "target": "495", "attributes": { "weight": 1 } }, { "key": "23624", "source": "1361", "target": "2248", "attributes": { "weight": 1 } }, { "key": "6835", "source": "1361", "target": "231", "attributes": { "weight": 2 } }, { "key": "26591", "source": "1361", "target": "454", "attributes": { "weight": 2 } }, { "key": "23623", "source": "1361", "target": "220", "attributes": { "weight": 1 } }, { "key": "33418", "source": "1361", "target": "135", "attributes": { "weight": 1 } }, { "key": "12261", "source": "1362", "target": "1564", "attributes": { "weight": 2 } }, { "key": "33424", "source": "1362", "target": "1282", "attributes": { "weight": 1 } }, { "key": "27078", "source": "1362", "target": "1247", "attributes": { "weight": 1 } }, { "key": "8785", "source": "1362", "target": "446", "attributes": { "weight": 3 } }, { "key": "12253", "source": "1362", "target": "450", "attributes": { "weight": 1 } }, { "key": "31195", "source": "1362", "target": "442", "attributes": { "weight": 1 } }, { "key": "33423", "source": "1362", "target": "1836", "attributes": { "weight": 1 } }, { "key": "11893", "source": "1362", "target": "135", "attributes": { "weight": 2 } }, { "key": "12259", "source": "1362", "target": "472", "attributes": { "weight": 2 } }, { "key": "6839", "source": "1362", "target": "490", "attributes": { "weight": 1 } }, { "key": "6836", "source": "1362", "target": "183", "attributes": { "weight": 1 } }, { "key": "33425", "source": "1362", "target": "2110", "attributes": { "weight": 1 } }, { "key": "6837", "source": "1362", "target": "454", "attributes": { "weight": 1 } }, { "key": "6838", "source": "1362", "target": "455", "attributes": { "weight": 1 } }, { "key": "12256", "source": "1362", "target": "1359", "attributes": { "weight": 3 } }, { "key": "12258", "source": "1362", "target": "1761", "attributes": { "weight": 1 } }, { "key": "12260", "source": "1362", "target": "1768", "attributes": { "weight": 1 } }, { "key": "31196", "source": "1362", "target": "52", "attributes": { "weight": 1 } }, { "key": "17250", "source": "1362", "target": "2108", "attributes": { "weight": 1 } }, { "key": "12251", "source": "1362", "target": "435", "attributes": { "weight": 1 } }, { "key": "31193", "source": "1362", "target": "220", "attributes": { "weight": 1 } }, { "key": "17249", "source": "1362", "target": "449", "attributes": { "weight": 1 } }, { "key": "12255", "source": "1362", "target": "1535", "attributes": { "weight": 1 } }, { "key": "12252", "source": "1362", "target": "1831", "attributes": { "weight": 1 } }, { "key": "22877", "source": "1362", "target": "489", "attributes": { "weight": 1 } }, { "key": "12257", "source": "1362", "target": "1219", "attributes": { "weight": 2 } }, { "key": "31197", "source": "1362", "target": "1363", "attributes": { "weight": 1 } }, { "key": "12254", "source": "1362", "target": "1832", "attributes": { "weight": 1 } }, { "key": "31194", "source": "1362", "target": "51", "attributes": { "weight": 1 } }, { "key": "31198", "source": "1362", "target": "57", "attributes": { "weight": 1 } }, { "key": "11914", "source": "1363", "target": "1219", "attributes": { "weight": 1 } }, { "key": "8812", "source": "1363", "target": "1109", "attributes": { "weight": 2 } }, { "key": "8819", "source": "1363", "target": "469", "attributes": { "weight": 2 } }, { "key": "8822", "source": "1363", "target": "1312", "attributes": { "weight": 4 } }, { "key": "27270", "source": "1363", "target": "425", "attributes": { "weight": 1 } }, { "key": "11922", "source": "1363", "target": "494", "attributes": { "weight": 1 } }, { "key": "8821", "source": "1363", "target": "1125", "attributes": { "weight": 2 } }, { "key": "6853", "source": "1363", "target": "454", "attributes": { "weight": 3 } }, { "key": "8820", "source": "1363", "target": "1088", "attributes": { "weight": 2 } }, { "key": "31199", "source": "1363", "target": "1362", "attributes": { "weight": 1 } }, { "key": "11911", "source": "1363", "target": "1522", "attributes": { "weight": 1 } }, { "key": "11910", "source": "1363", "target": "59", "attributes": { "weight": 1 } }, { "key": "11913", "source": "1363", "target": "450", "attributes": { "weight": 1 } }, { "key": "11918", "source": "1363", "target": "471", "attributes": { "weight": 2 } }, { "key": "11916", "source": "1363", "target": "459", "attributes": { "weight": 2 } }, { "key": "26315", "source": "1363", "target": "1258", "attributes": { "weight": 1 } }, { "key": "8816", "source": "1363", "target": "449", "attributes": { "weight": 2 } }, { "key": "11915", "source": "1363", "target": "1810", "attributes": { "weight": 2 } }, { "key": "11921", "source": "1363", "target": "231", "attributes": { "weight": 2 } }, { "key": "8814", "source": "1363", "target": "1529", "attributes": { "weight": 2 } }, { "key": "8811", "source": "1363", "target": "1518", "attributes": { "weight": 2 } }, { "key": "11917", "source": "1363", "target": "1811", "attributes": { "weight": 1 } }, { "key": "11908", "source": "1363", "target": "1141", "attributes": { "weight": 1 } }, { "key": "11920", "source": "1363", "target": "474", "attributes": { "weight": 1 } }, { "key": "8810", "source": "1363", "target": "220", "attributes": { "weight": 4 } }, { "key": "27271", "source": "1363", "target": "52", "attributes": { "weight": 1 } }, { "key": "8817", "source": "1363", "target": "452", "attributes": { "weight": 2 } }, { "key": "32091", "source": "1363", "target": "3084", "attributes": { "weight": 1 } }, { "key": "11919", "source": "1363", "target": "1366", "attributes": { "weight": 1 } }, { "key": "11909", "source": "1363", "target": "429", "attributes": { "weight": 2 } }, { "key": "8818", "source": "1363", "target": "1116", "attributes": { "weight": 3 } }, { "key": "6854", "source": "1363", "target": "57", "attributes": { "weight": 3 } }, { "key": "8815", "source": "1363", "target": "182", "attributes": { "weight": 2 } }, { "key": "8813", "source": "1363", "target": "1111", "attributes": { "weight": 2 } }, { "key": "11912", "source": "1363", "target": "183", "attributes": { "weight": 1 } }, { "key": "24081", "source": "1364", "target": "471", "attributes": { "weight": 2 } }, { "key": "23630", "source": "1364", "target": "220", "attributes": { "weight": 1 } }, { "key": "33445", "source": "1364", "target": "135", "attributes": { "weight": 1 } }, { "key": "20321", "source": "1364", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20323", "source": "1364", "target": "489", "attributes": { "weight": 1 } }, { "key": "32742", "source": "1364", "target": "472", "attributes": { "weight": 2 } }, { "key": "20319", "source": "1364", "target": "2245", "attributes": { "weight": 1 } }, { "key": "23345", "source": "1364", "target": "223", "attributes": { "weight": 1 } }, { "key": "20320", "source": "1364", "target": "449", "attributes": { "weight": 1 } }, { "key": "37454", "source": "1364", "target": "435", "attributes": { "weight": 1 } }, { "key": "24080", "source": "1364", "target": "130", "attributes": { "weight": 2 } }, { "key": "35203", "source": "1364", "target": "1374", "attributes": { "weight": 1 } }, { "key": "6856", "source": "1364", "target": "231", "attributes": { "weight": 1 } }, { "key": "24082", "source": "1364", "target": "2469", "attributes": { "weight": 1 } }, { "key": "20322", "source": "1364", "target": "2261", "attributes": { "weight": 1 } }, { "key": "37069", "source": "1365", "target": "192", "attributes": { "weight": 1 } }, { "key": "26616", "source": "1365", "target": "183", "attributes": { "weight": 2 } }, { "key": "6868", "source": "1365", "target": "458", "attributes": { "weight": 2 } }, { "key": "37068", "source": "1365", "target": "424", "attributes": { "weight": 1 } }, { "key": "26617", "source": "1365", "target": "454", "attributes": { "weight": 2 } }, { "key": "20344", "source": "1365", "target": "489", "attributes": { "weight": 1 } }, { "key": "29041", "source": "1365", "target": "495", "attributes": { "weight": 1 } }, { "key": "6869", "source": "1365", "target": "231", "attributes": { "weight": 2 } }, { "key": "6887", "source": "1366", "target": "231", "attributes": { "weight": 2 } }, { "key": "20453", "source": "1366", "target": "1375", "attributes": { "weight": 2 } }, { "key": "37015", "source": "1366", "target": "188", "attributes": { "weight": 1 } }, { "key": "24157", "source": "1366", "target": "471", "attributes": { "weight": 1 } }, { "key": "12001", "source": "1366", "target": "1363", "attributes": { "weight": 1 } }, { "key": "20452", "source": "1366", "target": "1832", "attributes": { "weight": 3 } }, { "key": "37013", "source": "1366", "target": "454", "attributes": { "weight": 1 } }, { "key": "27106", "source": "1366", "target": "450", "attributes": { "weight": 1 } }, { "key": "23362", "source": "1366", "target": "2251", "attributes": { "weight": 1 } }, { "key": "37461", "source": "1366", "target": "2258", "attributes": { "weight": 1 } }, { "key": "6885", "source": "1366", "target": "183", "attributes": { "weight": 1 } }, { "key": "27109", "source": "1366", "target": "1282", "attributes": { "weight": 1 } }, { "key": "6886", "source": "1366", "target": "189", "attributes": { "weight": 1 } }, { "key": "6884", "source": "1366", "target": "224", "attributes": { "weight": 1 } }, { "key": "27107", "source": "1366", "target": "1247", "attributes": { "weight": 2 } }, { "key": "6888", "source": "1366", "target": "193", "attributes": { "weight": 1 } }, { "key": "23361", "source": "1366", "target": "223", "attributes": { "weight": 1 } }, { "key": "37016", "source": "1366", "target": "490", "attributes": { "weight": 1 } }, { "key": "20451", "source": "1366", "target": "130", "attributes": { "weight": 3 } }, { "key": "27108", "source": "1366", "target": "472", "attributes": { "weight": 3 } }, { "key": "37014", "source": "1366", "target": "455", "attributes": { "weight": 1 } }, { "key": "32776", "source": "1366", "target": "135", "attributes": { "weight": 3 } }, { "key": "37460", "source": "1366", "target": "435", "attributes": { "weight": 1 } }, { "key": "20513", "source": "1367", "target": "2262", "attributes": { "weight": 1 } }, { "key": "25936", "source": "1367", "target": "791", "attributes": { "weight": 2 } }, { "key": "20501", "source": "1367", "target": "449", "attributes": { "weight": 1 } }, { "key": "25941", "source": "1367", "target": "1282", "attributes": { "weight": 2 } }, { "key": "8881", "source": "1367", "target": "228", "attributes": { "weight": 2 } }, { "key": "20500", "source": "1367", "target": "51", "attributes": { "weight": 2 } }, { "key": "34874", "source": "1367", "target": "493", "attributes": { "weight": 1 } }, { "key": "24349", "source": "1367", "target": "445", "attributes": { "weight": 3 } }, { "key": "20515", "source": "1367", "target": "480", "attributes": { "weight": 1 } }, { "key": "8880", "source": "1367", "target": "442", "attributes": { "weight": 2 } }, { "key": "20519", "source": "1367", "target": "492", "attributes": { "weight": 1 } }, { "key": "25926", "source": "1367", "target": "223", "attributes": { "weight": 2 } }, { "key": "20509", "source": "1367", "target": "1836", "attributes": { "weight": 1 } }, { "key": "17496", "source": "1367", "target": "894", "attributes": { "weight": 3 } }, { "key": "16883", "source": "1367", "target": "70", "attributes": { "weight": 1 } }, { "key": "20517", "source": "1367", "target": "489", "attributes": { "weight": 1 } }, { "key": "32792", "source": "1367", "target": "1088", "attributes": { "weight": 1 } }, { "key": "16882", "source": "1367", "target": "674", "attributes": { "weight": 1 } }, { "key": "25939", "source": "1367", "target": "472", "attributes": { "weight": 4 } }, { "key": "25940", "source": "1367", "target": "189", "attributes": { "weight": 2 } }, { "key": "24159", "source": "1367", "target": "130", "attributes": { "weight": 2 } }, { "key": "20502", "source": "1367", "target": "450", "attributes": { "weight": 1 } }, { "key": "25924", "source": "1367", "target": "432", "attributes": { "weight": 1 } }, { "key": "20508", "source": "1367", "target": "1247", "attributes": { "weight": 1 } }, { "key": "24350", "source": "1367", "target": "469", "attributes": { "weight": 2 } }, { "key": "17495", "source": "1367", "target": "53", "attributes": { "weight": 2 } }, { "key": "20521", "source": "1367", "target": "498", "attributes": { "weight": 1 } }, { "key": "8883", "source": "1367", "target": "233", "attributes": { "weight": 1 } }, { "key": "20498", "source": "1367", "target": "2106", "attributes": { "weight": 1 } }, { "key": "20520", "source": "1367", "target": "235", "attributes": { "weight": 1 } }, { "key": "25928", "source": "1367", "target": "446", "attributes": { "weight": 1 } }, { "key": "25932", "source": "1367", "target": "454", "attributes": { "weight": 2 } }, { "key": "25935", "source": "1367", "target": "188", "attributes": { "weight": 1 } }, { "key": "25929", "source": "1367", "target": "3", "attributes": { "weight": 1 } }, { "key": "20507", "source": "1367", "target": "2254", "attributes": { "weight": 1 } }, { "key": "25934", "source": "1367", "target": "52", "attributes": { "weight": 1 } }, { "key": "12004", "source": "1367", "target": "135", "attributes": { "weight": 4 } }, { "key": "25931", "source": "1367", "target": "1535", "attributes": { "weight": 1 } }, { "key": "25933", "source": "1367", "target": "1219", "attributes": { "weight": 1 } }, { "key": "25925", "source": "1367", "target": "890", "attributes": { "weight": 1 } }, { "key": "6891", "source": "1367", "target": "495", "attributes": { "weight": 4 } }, { "key": "23638", "source": "1367", "target": "1368", "attributes": { "weight": 1 } }, { "key": "20512", "source": "1367", "target": "1087", "attributes": { "weight": 2 } }, { "key": "23637", "source": "1367", "target": "220", "attributes": { "weight": 2 } }, { "key": "20514", "source": "1367", "target": "2267", "attributes": { "weight": 1 } }, { "key": "25937", "source": "1367", "target": "8", "attributes": { "weight": 1 } }, { "key": "11205", "source": "1367", "target": "452", "attributes": { "weight": 3 } }, { "key": "20495", "source": "1367", "target": "435", "attributes": { "weight": 2 } }, { "key": "25945", "source": "1367", "target": "595", "attributes": { "weight": 2 } }, { "key": "12681", "source": "1367", "target": "695", "attributes": { "weight": 1 } }, { "key": "25923", "source": "1367", "target": "430", "attributes": { "weight": 1 } }, { "key": "25946", "source": "1367", "target": "193", "attributes": { "weight": 1 } }, { "key": "20505", "source": "1367", "target": "1998", "attributes": { "weight": 1 } }, { "key": "33564", "source": "1367", "target": "2645", "attributes": { "weight": 1 } }, { "key": "25943", "source": "1367", "target": "479", "attributes": { "weight": 2 } }, { "key": "20510", "source": "1367", "target": "2258", "attributes": { "weight": 1 } }, { "key": "25942", "source": "1367", "target": "1768", "attributes": { "weight": 1 } }, { "key": "25938", "source": "1367", "target": "468", "attributes": { "weight": 1 } }, { "key": "25927", "source": "1367", "target": "440", "attributes": { "weight": 2 } }, { "key": "25930", "source": "1367", "target": "183", "attributes": { "weight": 2 } }, { "key": "20518", "source": "1367", "target": "2189", "attributes": { "weight": 1 } }, { "key": "31336", "source": "1367", "target": "59", "attributes": { "weight": 1 } }, { "key": "37463", "source": "1367", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20503", "source": "1367", "target": "2248", "attributes": { "weight": 1 } }, { "key": "25944", "source": "1367", "target": "232", "attributes": { "weight": 2 } }, { "key": "8882", "source": "1367", "target": "1125", "attributes": { "weight": 3 } }, { "key": "20497", "source": "1367", "target": "222", "attributes": { "weight": 1 } }, { "key": "20494", "source": "1367", "target": "221", "attributes": { "weight": 1 } }, { "key": "20506", "source": "1367", "target": "464", "attributes": { "weight": 1 } }, { "key": "20496", "source": "1367", "target": "1522", "attributes": { "weight": 1 } }, { "key": "20499", "source": "1367", "target": "439", "attributes": { "weight": 1 } }, { "key": "20511", "source": "1367", "target": "471", "attributes": { "weight": 1 } }, { "key": "20516", "source": "1367", "target": "2095", "attributes": { "weight": 1 } }, { "key": "26363", "source": "1367", "target": "1258", "attributes": { "weight": 1 } }, { "key": "25947", "source": "1367", "target": "57", "attributes": { "weight": 2 } }, { "key": "20504", "source": "1367", "target": "2251", "attributes": { "weight": 1 } }, { "key": "32225", "source": "1368", "target": "1282", "attributes": { "weight": 3 } }, { "key": "32796", "source": "1368", "target": "446", "attributes": { "weight": 1 } }, { "key": "35007", "source": "1368", "target": "595", "attributes": { "weight": 1 } }, { "key": "33064", "source": "1368", "target": "57", "attributes": { "weight": 1 } }, { "key": "33063", "source": "1368", "target": "672", "attributes": { "weight": 1 } }, { "key": "23363", "source": "1368", "target": "223", "attributes": { "weight": 1 } }, { "key": "23644", "source": "1368", "target": "220", "attributes": { "weight": 1 } }, { "key": "6942", "source": "1368", "target": "183", "attributes": { "weight": 3 } }, { "key": "32223", "source": "1368", "target": "135", "attributes": { "weight": 4 } }, { "key": "32224", "source": "1368", "target": "472", "attributes": { "weight": 4 } }, { "key": "6944", "source": "1368", "target": "476", "attributes": { "weight": 1 } }, { "key": "6943", "source": "1368", "target": "189", "attributes": { "weight": 3 } }, { "key": "6945", "source": "1368", "target": "193", "attributes": { "weight": 1 } }, { "key": "33062", "source": "1368", "target": "188", "attributes": { "weight": 1 } }, { "key": "6941", "source": "1368", "target": "182", "attributes": { "weight": 1 } }, { "key": "32222", "source": "1368", "target": "1219", "attributes": { "weight": 2 } }, { "key": "26366", "source": "1368", "target": "1258", "attributes": { "weight": 1 } }, { "key": "12408", "source": "1368", "target": "8", "attributes": { "weight": 2 } }, { "key": "32220", "source": "1368", "target": "51", "attributes": { "weight": 3 } }, { "key": "12406", "source": "1368", "target": "3", "attributes": { "weight": 2 } }, { "key": "32221", "source": "1368", "target": "1832", "attributes": { "weight": 3 } }, { "key": "6940", "source": "1368", "target": "224", "attributes": { "weight": 1 } }, { "key": "31545", "source": "1368", "target": "438", "attributes": { "weight": 1 } }, { "key": "32795", "source": "1368", "target": "435", "attributes": { "weight": 1 } }, { "key": "12407", "source": "1368", "target": "454", "attributes": { "weight": 2 } }, { "key": "26731", "source": "1369", "target": "189", "attributes": { "weight": 1 } }, { "key": "15349", "source": "1369", "target": "56", "attributes": { "weight": 1 } }, { "key": "6976", "source": "1369", "target": "231", "attributes": { "weight": 2 } }, { "key": "15346", "source": "1369", "target": "1353", "attributes": { "weight": 1 } }, { "key": "15348", "source": "1369", "target": "54", "attributes": { "weight": 1 } }, { "key": "6975", "source": "1369", "target": "459", "attributes": { "weight": 1 } }, { "key": "15347", "source": "1369", "target": "1358", "attributes": { "weight": 1 } }, { "key": "6974", "source": "1369", "target": "424", "attributes": { "weight": 3 } }, { "key": "30790", "source": "1370", "target": "1063", "attributes": { "weight": 2 } }, { "key": "6977", "source": "1370", "target": "183", "attributes": { "weight": 1 } }, { "key": "31445", "source": "1370", "target": "3053", "attributes": { "weight": 1 } }, { "key": "31449", "source": "1370", "target": "3003", "attributes": { "weight": 1 } }, { "key": "30782", "source": "1370", "target": "220", "attributes": { "weight": 1 } }, { "key": "30786", "source": "1370", "target": "135", "attributes": { "weight": 1 } }, { "key": "30789", "source": "1370", "target": "1125", "attributes": { "weight": 1 } }, { "key": "31448", "source": "1370", "target": "3055", "attributes": { "weight": 1 } }, { "key": "31446", "source": "1370", "target": "3001", "attributes": { "weight": 1 } }, { "key": "30784", "source": "1370", "target": "938", "attributes": { "weight": 2 } }, { "key": "31447", "source": "1370", "target": "3002", "attributes": { "weight": 1 } }, { "key": "30787", "source": "1370", "target": "470", "attributes": { "weight": 2 } }, { "key": "30783", "source": "1370", "target": "59", "attributes": { "weight": 1 } }, { "key": "30788", "source": "1370", "target": "1744", "attributes": { "weight": 2 } }, { "key": "30785", "source": "1370", "target": "454", "attributes": { "weight": 1 } }, { "key": "31450", "source": "1370", "target": "3004", "attributes": { "weight": 1 } }, { "key": "28676", "source": "1370", "target": "1357", "attributes": { "weight": 3 } }, { "key": "32835", "source": "1371", "target": "135", "attributes": { "weight": 2 } }, { "key": "22854", "source": "1371", "target": "443", "attributes": { "weight": 1 } }, { "key": "7013", "source": "1371", "target": "189", "attributes": { "weight": 1 } }, { "key": "22855", "source": "1371", "target": "1071", "attributes": { "weight": 1 } }, { "key": "22856", "source": "1371", "target": "1065", "attributes": { "weight": 1 } }, { "key": "7014", "source": "1371", "target": "495", "attributes": { "weight": 2 } }, { "key": "32836", "source": "1371", "target": "472", "attributes": { "weight": 1 } }, { "key": "7012", "source": "1371", "target": "183", "attributes": { "weight": 1 } }, { "key": "23654", "source": "1371", "target": "220", "attributes": { "weight": 1 } }, { "key": "7031", "source": "1372", "target": "231", "attributes": { "weight": 1 } }, { "key": "26372", "source": "1372", "target": "188", "attributes": { "weight": 2 } }, { "key": "26373", "source": "1372", "target": "1258", "attributes": { "weight": 2 } }, { "key": "7032", "source": "1372", "target": "193", "attributes": { "weight": 4 } }, { "key": "28679", "source": "1373", "target": "54", "attributes": { "weight": 1 } }, { "key": "15369", "source": "1373", "target": "189", "attributes": { "weight": 1 } }, { "key": "23690", "source": "1373", "target": "220", "attributes": { "weight": 1 } }, { "key": "7042", "source": "1373", "target": "183", "attributes": { "weight": 1 } }, { "key": "28680", "source": "1373", "target": "1711", "attributes": { "weight": 2 } }, { "key": "15368", "source": "1373", "target": "454", "attributes": { "weight": 1 } }, { "key": "24229", "source": "1373", "target": "471", "attributes": { "weight": 1 } }, { "key": "21163", "source": "1374", "target": "1087", "attributes": { "weight": 1 } }, { "key": "21166", "source": "1374", "target": "482", "attributes": { "weight": 1 } }, { "key": "24237", "source": "1374", "target": "1125", "attributes": { "weight": 3 } }, { "key": "21151", "source": "1374", "target": "130", "attributes": { "weight": 3 } }, { "key": "21167", "source": "1374", "target": "2109", "attributes": { "weight": 1 } }, { "key": "9097", "source": "1374", "target": "233", "attributes": { "weight": 2 } }, { "key": "21159", "source": "1374", "target": "449", "attributes": { "weight": 1 } }, { "key": "21157", "source": "1374", "target": "2244", "attributes": { "weight": 1 } }, { "key": "21170", "source": "1374", "target": "56", "attributes": { "weight": 1 } }, { "key": "31430", "source": "1374", "target": "223", "attributes": { "weight": 1 } }, { "key": "24236", "source": "1374", "target": "1088", "attributes": { "weight": 3 } }, { "key": "21162", "source": "1374", "target": "54", "attributes": { "weight": 4 } }, { "key": "30793", "source": "1374", "target": "470", "attributes": { "weight": 3 } }, { "key": "24232", "source": "1374", "target": "437", "attributes": { "weight": 2 } }, { "key": "21164", "source": "1374", "target": "477", "attributes": { "weight": 1 } }, { "key": "33688", "source": "1374", "target": "52", "attributes": { "weight": 1 } }, { "key": "21152", "source": "1374", "target": "221", "attributes": { "weight": 1 } }, { "key": "23693", "source": "1374", "target": "220", "attributes": { "weight": 3 } }, { "key": "24239", "source": "1374", "target": "1711", "attributes": { "weight": 3 } }, { "key": "23694", "source": "1374", "target": "1364", "attributes": { "weight": 2 } }, { "key": "21169", "source": "1374", "target": "489", "attributes": { "weight": 1 } }, { "key": "33687", "source": "1374", "target": "425", "attributes": { "weight": 1 } }, { "key": "21153", "source": "1374", "target": "222", "attributes": { "weight": 1 } }, { "key": "21161", "source": "1374", "target": "135", "attributes": { "weight": 2 } }, { "key": "7053", "source": "1374", "target": "231", "attributes": { "weight": 5 } }, { "key": "21168", "source": "1374", "target": "2271", "attributes": { "weight": 1 } }, { "key": "21154", "source": "1374", "target": "50", "attributes": { "weight": 1 } }, { "key": "21160", "source": "1374", "target": "2248", "attributes": { "weight": 1 } }, { "key": "21155", "source": "1374", "target": "439", "attributes": { "weight": 1 } }, { "key": "21150", "source": "1374", "target": "1353", "attributes": { "weight": 1 } }, { "key": "24240", "source": "1374", "target": "1375", "attributes": { "weight": 1 } }, { "key": "24238", "source": "1374", "target": "2470", "attributes": { "weight": 2 } }, { "key": "21156", "source": "1374", "target": "1023", "attributes": { "weight": 1 } }, { "key": "24234", "source": "1374", "target": "228", "attributes": { "weight": 3 } }, { "key": "24233", "source": "1374", "target": "1766", "attributes": { "weight": 2 } }, { "key": "21158", "source": "1374", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21165", "source": "1374", "target": "480", "attributes": { "weight": 1 } }, { "key": "24235", "source": "1374", "target": "471", "attributes": { "weight": 1 } }, { "key": "7173", "source": "1375", "target": "231", "attributes": { "weight": 5 } }, { "key": "21337", "source": "1375", "target": "1777", "attributes": { "weight": 1 } }, { "key": "24270", "source": "1375", "target": "1374", "attributes": { "weight": 1 } }, { "key": "11320", "source": "1375", "target": "452", "attributes": { "weight": 3 } }, { "key": "21316", "source": "1375", "target": "439", "attributes": { "weight": 1 } }, { "key": "24268", "source": "1375", "target": "1125", "attributes": { "weight": 2 } }, { "key": "23703", "source": "1375", "target": "220", "attributes": { "weight": 3 } }, { "key": "21325", "source": "1375", "target": "459", "attributes": { "weight": 3 } }, { "key": "18123", "source": "1375", "target": "52", "attributes": { "weight": 1 } }, { "key": "21326", "source": "1375", "target": "54", "attributes": { "weight": 2 } }, { "key": "23704", "source": "1375", "target": "2248", "attributes": { "weight": 1 } }, { "key": "21338", "source": "1375", "target": "235", "attributes": { "weight": 1 } }, { "key": "21335", "source": "1375", "target": "489", "attributes": { "weight": 1 } }, { "key": "10942", "source": "1375", "target": "471", "attributes": { "weight": 3 } }, { "key": "33736", "source": "1375", "target": "135", "attributes": { "weight": 1 } }, { "key": "24267", "source": "1375", "target": "437", "attributes": { "weight": 1 } }, { "key": "23705", "source": "1375", "target": "1312", "attributes": { "weight": 1 } }, { "key": "21315", "source": "1375", "target": "222", "attributes": { "weight": 1 } }, { "key": "36167", "source": "1375", "target": "1092", "attributes": { "weight": 1 } }, { "key": "21319", "source": "1375", "target": "1023", "attributes": { "weight": 1 } }, { "key": "21320", "source": "1375", "target": "2244", "attributes": { "weight": 1 } }, { "key": "21322", "source": "1375", "target": "449", "attributes": { "weight": 1 } }, { "key": "9135", "source": "1375", "target": "442", "attributes": { "weight": 2 } }, { "key": "24269", "source": "1375", "target": "2470", "attributes": { "weight": 2 } }, { "key": "21328", "source": "1375", "target": "472", "attributes": { "weight": 1 } }, { "key": "28987", "source": "1375", "target": "479", "attributes": { "weight": 2 } }, { "key": "10581", "source": "1375", "target": "225", "attributes": { "weight": 2 } }, { "key": "36942", "source": "1375", "target": "1072", "attributes": { "weight": 1 } }, { "key": "21332", "source": "1375", "target": "480", "attributes": { "weight": 1 } }, { "key": "7416", "source": "1375", "target": "454", "attributes": { "weight": 2 } }, { "key": "36165", "source": "1375", "target": "1760", "attributes": { "weight": 1 } }, { "key": "35353", "source": "1375", "target": "1088", "attributes": { "weight": 1 } }, { "key": "26780", "source": "1375", "target": "183", "attributes": { "weight": 1 } }, { "key": "7174", "source": "1375", "target": "495", "attributes": { "weight": 2 } }, { "key": "24266", "source": "1375", "target": "429", "attributes": { "weight": 1 } }, { "key": "21314", "source": "1375", "target": "221", "attributes": { "weight": 1 } }, { "key": "21324", "source": "1375", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21317", "source": "1375", "target": "51", "attributes": { "weight": 1 } }, { "key": "30959", "source": "1375", "target": "3", "attributes": { "weight": 1 } }, { "key": "21321", "source": "1375", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21323", "source": "1375", "target": "1832", "attributes": { "weight": 1 } }, { "key": "32628", "source": "1375", "target": "791", "attributes": { "weight": 1 } }, { "key": "24271", "source": "1375", "target": "1711", "attributes": { "weight": 1 } }, { "key": "27307", "source": "1375", "target": "57", "attributes": { "weight": 1 } }, { "key": "36943", "source": "1375", "target": "2647", "attributes": { "weight": 1 } }, { "key": "36168", "source": "1375", "target": "1778", "attributes": { "weight": 1 } }, { "key": "21318", "source": "1375", "target": "223", "attributes": { "weight": 3 } }, { "key": "26781", "source": "1375", "target": "189", "attributes": { "weight": 1 } }, { "key": "21336", "source": "1375", "target": "56", "attributes": { "weight": 1 } }, { "key": "21333", "source": "1375", "target": "2109", "attributes": { "weight": 1 } }, { "key": "21330", "source": "1375", "target": "2261", "attributes": { "weight": 1 } }, { "key": "21327", "source": "1375", "target": "1366", "attributes": { "weight": 2 } }, { "key": "21329", "source": "1375", "target": "1087", "attributes": { "weight": 1 } }, { "key": "30796", "source": "1375", "target": "470", "attributes": { "weight": 3 } }, { "key": "36166", "source": "1375", "target": "1026", "attributes": { "weight": 1 } }, { "key": "21334", "source": "1375", "target": "2271", "attributes": { "weight": 1 } }, { "key": "21331", "source": "1375", "target": "1744", "attributes": { "weight": 1 } }, { "key": "23706", "source": "1376", "target": "220", "attributes": { "weight": 1 } }, { "key": "21353", "source": "1376", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21352", "source": "1376", "target": "2245", "attributes": { "weight": 1 } }, { "key": "7175", "source": "1376", "target": "495", "attributes": { "weight": 2 } }, { "key": "15400", "source": "1377", "target": "454", "attributes": { "weight": 1 } }, { "key": "7419", "source": "1377", "target": "154", "attributes": { "weight": 3 } }, { "key": "32988", "source": "1377", "target": "1350", "attributes": { "weight": 1 } }, { "key": "29017", "source": "1377", "target": "387", "attributes": { "weight": 1 } }, { "key": "35088", "source": "1377", "target": "3", "attributes": { "weight": 1 } }, { "key": "7420", "source": "1377", "target": "377", "attributes": { "weight": 1 } }, { "key": "7421", "source": "1377", "target": "1063", "attributes": { "weight": 3 } }, { "key": "32987", "source": "1377", "target": "1388", "attributes": { "weight": 1 } }, { "key": "7176", "source": "1377", "target": "183", "attributes": { "weight": 1 } }, { "key": "7201", "source": "1378", "target": "116", "attributes": { "weight": 1 } }, { "key": "7202", "source": "1379", "target": "1378", "attributes": { "weight": 1 } }, { "key": "17752", "source": "1380", "target": "2165", "attributes": { "weight": 1 } }, { "key": "17778", "source": "1380", "target": "638", "attributes": { "weight": 2 } }, { "key": "17800", "source": "1380", "target": "305", "attributes": { "weight": 1 } }, { "key": "17761", "source": "1380", "target": "2168", "attributes": { "weight": 1 } }, { "key": "17753", "source": "1380", "target": "1520", "attributes": { "weight": 1 } }, { "key": "17749", "source": "1380", "target": "35", "attributes": { "weight": 1 } }, { "key": "17765", "source": "1380", "target": "2169", "attributes": { "weight": 1 } }, { "key": "17763", "source": "1380", "target": "1045", "attributes": { "weight": 1 } }, { "key": "17804", "source": "1380", "target": "340", "attributes": { "weight": 1 } }, { "key": "12876", "source": "1380", "target": "304", "attributes": { "weight": 2 } }, { "key": "17784", "source": "1380", "target": "1387", "attributes": { "weight": 2 } }, { "key": "22628", "source": "1380", "target": "1037", "attributes": { "weight": 1 } }, { "key": "17792", "source": "1380", "target": "362", "attributes": { "weight": 2 } }, { "key": "17769", "source": "1380", "target": "454", "attributes": { "weight": 2 } }, { "key": "7205", "source": "1380", "target": "359", "attributes": { "weight": 6 } }, { "key": "17802", "source": "1380", "target": "1565", "attributes": { "weight": 2 } }, { "key": "17789", "source": "1380", "target": "136", "attributes": { "weight": 1 } }, { "key": "17764", "source": "1380", "target": "1133", "attributes": { "weight": 2 } }, { "key": "30331", "source": "1380", "target": "1046", "attributes": { "weight": 1 } }, { "key": "17760", "source": "1380", "target": "1527", "attributes": { "weight": 2 } }, { "key": "17775", "source": "1380", "target": "161", "attributes": { "weight": 4 } }, { "key": "17787", "source": "1380", "target": "468", "attributes": { "weight": 1 } }, { "key": "17759", "source": "1380", "target": "38", "attributes": { "weight": 1 } }, { "key": "17766", "source": "1380", "target": "1878", "attributes": { "weight": 1 } }, { "key": "17774", "source": "1380", "target": "1539", "attributes": { "weight": 4 } }, { "key": "17755", "source": "1380", "target": "164", "attributes": { "weight": 2 } }, { "key": "24591", "source": "1380", "target": "2118", "attributes": { "weight": 1 } }, { "key": "17788", "source": "1380", "target": "1548", "attributes": { "weight": 1 } }, { "key": "17773", "source": "1380", "target": "168", "attributes": { "weight": 1 } }, { "key": "17794", "source": "1380", "target": "2178", "attributes": { "weight": 1 } }, { "key": "17786", "source": "1380", "target": "40", "attributes": { "weight": 1 } }, { "key": "17758", "source": "1380", "target": "442", "attributes": { "weight": 1 } }, { "key": "9377", "source": "1380", "target": "645", "attributes": { "weight": 2 } }, { "key": "17754", "source": "1380", "target": "2166", "attributes": { "weight": 1 } }, { "key": "12875", "source": "1380", "target": "259", "attributes": { "weight": 3 } }, { "key": "17770", "source": "1380", "target": "2171", "attributes": { "weight": 1 } }, { "key": "9378", "source": "1380", "target": "419", "attributes": { "weight": 2 } }, { "key": "17785", "source": "1380", "target": "1544", "attributes": { "weight": 1 } }, { "key": "17776", "source": "1380", "target": "2173", "attributes": { "weight": 1 } }, { "key": "17797", "source": "1380", "target": "41", "attributes": { "weight": 1 } }, { "key": "17768", "source": "1380", "target": "1384", "attributes": { "weight": 1 } }, { "key": "17799", "source": "1380", "target": "1559", "attributes": { "weight": 1 } }, { "key": "17326", "source": "1380", "target": "358", "attributes": { "weight": 3 } }, { "key": "17767", "source": "1380", "target": "452", "attributes": { "weight": 1 } }, { "key": "17750", "source": "1380", "target": "2163", "attributes": { "weight": 1 } }, { "key": "17771", "source": "1380", "target": "2172", "attributes": { "weight": 1 } }, { "key": "17795", "source": "1380", "target": "163", "attributes": { "weight": 4 } }, { "key": "17757", "source": "1380", "target": "339", "attributes": { "weight": 2 } }, { "key": "17772", "source": "1380", "target": "1782", "attributes": { "weight": 1 } }, { "key": "32295", "source": "1380", "target": "791", "attributes": { "weight": 1 } }, { "key": "17791", "source": "1380", "target": "560", "attributes": { "weight": 2 } }, { "key": "17751", "source": "1380", "target": "2164", "attributes": { "weight": 1 } }, { "key": "17801", "source": "1380", "target": "1060", "attributes": { "weight": 2 } }, { "key": "17793", "source": "1380", "target": "2177", "attributes": { "weight": 1 } }, { "key": "17782", "source": "1380", "target": "1765", "attributes": { "weight": 2 } }, { "key": "17762", "source": "1380", "target": "133", "attributes": { "weight": 2 } }, { "key": "17777", "source": "1380", "target": "2174", "attributes": { "weight": 1 } }, { "key": "17748", "source": "1380", "target": "1516", "attributes": { "weight": 1 } }, { "key": "17779", "source": "1380", "target": "1541", "attributes": { "weight": 1 } }, { "key": "17783", "source": "1380", "target": "1056", "attributes": { "weight": 2 } }, { "key": "17756", "source": "1380", "target": "36", "attributes": { "weight": 2 } }, { "key": "17780", "source": "1380", "target": "556", "attributes": { "weight": 2 } }, { "key": "17790", "source": "1380", "target": "1550", "attributes": { "weight": 1 } }, { "key": "17796", "source": "1380", "target": "1555", "attributes": { "weight": 1 } }, { "key": "17781", "source": "1380", "target": "1386", "attributes": { "weight": 2 } }, { "key": "17798", "source": "1380", "target": "42", "attributes": { "weight": 1 } }, { "key": "7212", "source": "1381", "target": "154", "attributes": { "weight": 2 } }, { "key": "25437", "source": "1381", "target": "961", "attributes": { "weight": 1 } }, { "key": "11435", "source": "1381", "target": "370", "attributes": { "weight": 1 } }, { "key": "7213", "source": "1381", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7219", "source": "1382", "target": "163", "attributes": { "weight": 6 } }, { "key": "17817", "source": "1382", "target": "1386", "attributes": { "weight": 6 } }, { "key": "33836", "source": "1382", "target": "1133", "attributes": { "weight": 1 } }, { "key": "14132", "source": "1383", "target": "1377", "attributes": { "weight": 1 } }, { "key": "32955", "source": "1383", "target": "154", "attributes": { "weight": 1 } }, { "key": "14131", "source": "1383", "target": "392", "attributes": { "weight": 1 } }, { "key": "32954", "source": "1383", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7235", "source": "1383", "target": "1063", "attributes": { "weight": 2 } }, { "key": "31000", "source": "1384", "target": "638", "attributes": { "weight": 1 } }, { "key": "17858", "source": "1384", "target": "1544", "attributes": { "weight": 1 } }, { "key": "12749", "source": "1384", "target": "1878", "attributes": { "weight": 1 } }, { "key": "25860", "source": "1384", "target": "163", "attributes": { "weight": 2 } }, { "key": "12748", "source": "1384", "target": "1875", "attributes": { "weight": 1 } }, { "key": "12754", "source": "1384", "target": "1888", "attributes": { "weight": 1 } }, { "key": "12753", "source": "1384", "target": "1887", "attributes": { "weight": 1 } }, { "key": "12755", "source": "1384", "target": "1889", "attributes": { "weight": 1 } }, { "key": "12752", "source": "1384", "target": "1884", "attributes": { "weight": 1 } }, { "key": "7281", "source": "1384", "target": "223", "attributes": { "weight": 4 } }, { "key": "12751", "source": "1384", "target": "1883", "attributes": { "weight": 1 } }, { "key": "7282", "source": "1384", "target": "133", "attributes": { "weight": 5 } }, { "key": "32379", "source": "1384", "target": "791", "attributes": { "weight": 1 } }, { "key": "12750", "source": "1384", "target": "1879", "attributes": { "weight": 1 } }, { "key": "8730", "source": "1384", "target": "442", "attributes": { "weight": 1 } }, { "key": "10488", "source": "1384", "target": "1524", "attributes": { "weight": 4 } }, { "key": "15299", "source": "1385", "target": "1262", "attributes": { "weight": 1 } }, { "key": "7308", "source": "1385", "target": "1063", "attributes": { "weight": 2 } }, { "key": "32207", "source": "1385", "target": "472", "attributes": { "weight": 1 } }, { "key": "14154", "source": "1385", "target": "392", "attributes": { "weight": 1 } }, { "key": "12792", "source": "1385", "target": "473", "attributes": { "weight": 1 } }, { "key": "29010", "source": "1385", "target": "387", "attributes": { "weight": 1 } }, { "key": "15298", "source": "1385", "target": "454", "attributes": { "weight": 1 } }, { "key": "7307", "source": "1385", "target": "154", "attributes": { "weight": 3 } }, { "key": "8795", "source": "1386", "target": "1382", "attributes": { "weight": 7 } }, { "key": "36226", "source": "1386", "target": "223", "attributes": { "weight": 1 } }, { "key": "36234", "source": "1386", "target": "1544", "attributes": { "weight": 1 } }, { "key": "36228", "source": "1386", "target": "1527", "attributes": { "weight": 1 } }, { "key": "31039", "source": "1386", "target": "638", "attributes": { "weight": 2 } }, { "key": "7325", "source": "1386", "target": "163", "attributes": { "weight": 7 } }, { "key": "36236", "source": "1386", "target": "560", "attributes": { "weight": 1 } }, { "key": "36229", "source": "1386", "target": "358", "attributes": { "weight": 1 } }, { "key": "36230", "source": "1386", "target": "791", "attributes": { "weight": 1 } }, { "key": "36227", "source": "1386", "target": "1524", "attributes": { "weight": 1 } }, { "key": "36231", "source": "1386", "target": "1541", "attributes": { "weight": 1 } }, { "key": "36233", "source": "1386", "target": "3277", "attributes": { "weight": 1 } }, { "key": "17906", "source": "1386", "target": "1380", "attributes": { "weight": 2 } }, { "key": "36232", "source": "1386", "target": "556", "attributes": { "weight": 1 } }, { "key": "7324", "source": "1386", "target": "1133", "attributes": { "weight": 11 } }, { "key": "36235", "source": "1386", "target": "136", "attributes": { "weight": 1 } }, { "key": "16451", "source": "1387", "target": "470", "attributes": { "weight": 2 } }, { "key": "26605", "source": "1387", "target": "454", "attributes": { "weight": 1 } }, { "key": "16441", "source": "1387", "target": "1524", "attributes": { "weight": 1 } }, { "key": "16454", "source": "1387", "target": "2058", "attributes": { "weight": 1 } }, { "key": "16463", "source": "1387", "target": "2065", "attributes": { "weight": 1 } }, { "key": "16458", "source": "1387", "target": "2060", "attributes": { "weight": 1 } }, { "key": "16464", "source": "1387", "target": "2066", "attributes": { "weight": 1 } }, { "key": "24073", "source": "1387", "target": "471", "attributes": { "weight": 1 } }, { "key": "16443", "source": "1387", "target": "2055", "attributes": { "weight": 1 } }, { "key": "32655", "source": "1387", "target": "2177", "attributes": { "weight": 1 } }, { "key": "16444", "source": "1387", "target": "636", "attributes": { "weight": 1 } }, { "key": "26058", "source": "1387", "target": "163", "attributes": { "weight": 1 } }, { "key": "16452", "source": "1387", "target": "2056", "attributes": { "weight": 1 } }, { "key": "18094", "source": "1387", "target": "2185", "attributes": { "weight": 1 } }, { "key": "16446", "source": "1387", "target": "108", "attributes": { "weight": 1 } }, { "key": "8803", "source": "1387", "target": "442", "attributes": { "weight": 1 } }, { "key": "16445", "source": "1387", "target": "358", "attributes": { "weight": 2 } }, { "key": "16449", "source": "1387", "target": "1539", "attributes": { "weight": 1 } }, { "key": "16465", "source": "1387", "target": "1816", "attributes": { "weight": 2 } }, { "key": "16442", "source": "1387", "target": "2054", "attributes": { "weight": 1 } }, { "key": "16447", "source": "1387", "target": "109", "attributes": { "weight": 1 } }, { "key": "11906", "source": "1387", "target": "468", "attributes": { "weight": 2 } }, { "key": "17909", "source": "1387", "target": "1380", "attributes": { "weight": 2 } }, { "key": "16448", "source": "1387", "target": "392", "attributes": { "weight": 1 } }, { "key": "16461", "source": "1387", "target": "2063", "attributes": { "weight": 2 } }, { "key": "16462", "source": "1387", "target": "2064", "attributes": { "weight": 1 } }, { "key": "16460", "source": "1387", "target": "2062", "attributes": { "weight": 1 } }, { "key": "7327", "source": "1387", "target": "1384", "attributes": { "weight": 4 } }, { "key": "16450", "source": "1387", "target": "638", "attributes": { "weight": 2 } }, { "key": "16459", "source": "1387", "target": "2061", "attributes": { "weight": 1 } }, { "key": "10498", "source": "1387", "target": "225", "attributes": { "weight": 1 } }, { "key": "16457", "source": "1387", "target": "304", "attributes": { "weight": 1 } }, { "key": "16453", "source": "1387", "target": "2057", "attributes": { "weight": 1 } }, { "key": "16455", "source": "1387", "target": "2059", "attributes": { "weight": 1 } }, { "key": "16456", "source": "1387", "target": "1744", "attributes": { "weight": 1 } }, { "key": "25873", "source": "1387", "target": "220", "attributes": { "weight": 1 } }, { "key": "32983", "source": "1388", "target": "1383", "attributes": { "weight": 1 } }, { "key": "7406", "source": "1388", "target": "1063", "attributes": { "weight": 4 } }, { "key": "7405", "source": "1388", "target": "154", "attributes": { "weight": 3 } }, { "key": "7404", "source": "1388", "target": "1350", "attributes": { "weight": 1 } }, { "key": "18481", "source": "1389", "target": "1738", "attributes": { "weight": 1 } }, { "key": "17031", "source": "1389", "target": "424", "attributes": { "weight": 1 } }, { "key": "31384", "source": "1389", "target": "2087", "attributes": { "weight": 2 } }, { "key": "36403", "source": "1389", "target": "3292", "attributes": { "weight": 1 } }, { "key": "36400", "source": "1389", "target": "1764", "attributes": { "weight": 1 } }, { "key": "17042", "source": "1389", "target": "73", "attributes": { "weight": 3 } }, { "key": "17032", "source": "1389", "target": "434", "attributes": { "weight": 2 } }, { "key": "17041", "source": "1389", "target": "596", "attributes": { "weight": 2 } }, { "key": "17037", "source": "1389", "target": "474", "attributes": { "weight": 1 } }, { "key": "17036", "source": "1389", "target": "135", "attributes": { "weight": 1 } }, { "key": "17035", "source": "1389", "target": "464", "attributes": { "weight": 1 } }, { "key": "17039", "source": "1389", "target": "695", "attributes": { "weight": 1 } }, { "key": "36399", "source": "1389", "target": "3280", "attributes": { "weight": 1 } }, { "key": "17040", "source": "1389", "target": "672", "attributes": { "weight": 1 } }, { "key": "31382", "source": "1389", "target": "1755", "attributes": { "weight": 1 } }, { "key": "36401", "source": "1389", "target": "1863", "attributes": { "weight": 1 } }, { "key": "17038", "source": "1389", "target": "70", "attributes": { "weight": 2 } }, { "key": "36132", "source": "1389", "target": "1360", "attributes": { "weight": 1 } }, { "key": "11296", "source": "1389", "target": "220", "attributes": { "weight": 2 } }, { "key": "36406", "source": "1389", "target": "3303", "attributes": { "weight": 1 } }, { "key": "17029", "source": "1389", "target": "429", "attributes": { "weight": 1 } }, { "key": "17030", "source": "1389", "target": "1354", "attributes": { "weight": 2 } }, { "key": "36405", "source": "1389", "target": "3297", "attributes": { "weight": 1 } }, { "key": "31385", "source": "1389", "target": "1337", "attributes": { "weight": 1 } }, { "key": "36402", "source": "1389", "target": "3291", "attributes": { "weight": 1 } }, { "key": "17033", "source": "1389", "target": "447", "attributes": { "weight": 1 } }, { "key": "29187", "source": "1389", "target": "1750", "attributes": { "weight": 2 } }, { "key": "17034", "source": "1389", "target": "1862", "attributes": { "weight": 2 } }, { "key": "31383", "source": "1389", "target": "59", "attributes": { "weight": 1 } }, { "key": "36404", "source": "1389", "target": "3294", "attributes": { "weight": 1 } }, { "key": "7413", "source": "1389", "target": "674", "attributes": { "weight": 4 } }, { "key": "36173", "source": "1390", "target": "2248", "attributes": { "weight": 1 } }, { "key": "37376", "source": "1390", "target": "8", "attributes": { "weight": 1 } }, { "key": "11403", "source": "1390", "target": "1742", "attributes": { "weight": 1 } }, { "key": "29915", "source": "1390", "target": "1024", "attributes": { "weight": 1 } }, { "key": "17060", "source": "1390", "target": "70", "attributes": { "weight": 1 } }, { "key": "21348", "source": "1390", "target": "1836", "attributes": { "weight": 1 } }, { "key": "10943", "source": "1390", "target": "457", "attributes": { "weight": 2 } }, { "key": "21344", "source": "1390", "target": "1070", "attributes": { "weight": 1 } }, { "key": "36170", "source": "1390", "target": "434", "attributes": { "weight": 1 } }, { "key": "21340", "source": "1390", "target": "130", "attributes": { "weight": 2 } }, { "key": "36944", "source": "1390", "target": "1072", "attributes": { "weight": 1 } }, { "key": "21343", "source": "1390", "target": "1023", "attributes": { "weight": 2 } }, { "key": "21341", "source": "1390", "target": "221", "attributes": { "weight": 2 } }, { "key": "27194", "source": "1390", "target": "442", "attributes": { "weight": 1 } }, { "key": "17059", "source": "1390", "target": "59", "attributes": { "weight": 2 } }, { "key": "21346", "source": "1390", "target": "2245", "attributes": { "weight": 1 } }, { "key": "35715", "source": "1390", "target": "458", "attributes": { "weight": 1 } }, { "key": "29106", "source": "1390", "target": "495", "attributes": { "weight": 1 } }, { "key": "36172", "source": "1390", "target": "448", "attributes": { "weight": 1 } }, { "key": "21350", "source": "1390", "target": "2095", "attributes": { "weight": 1 } }, { "key": "36169", "source": "1390", "target": "1755", "attributes": { "weight": 1 } }, { "key": "12732", "source": "1390", "target": "223", "attributes": { "weight": 4 } }, { "key": "27195", "source": "1390", "target": "189", "attributes": { "weight": 1 } }, { "key": "21342", "source": "1390", "target": "438", "attributes": { "weight": 1 } }, { "key": "26934", "source": "1390", "target": "497", "attributes": { "weight": 1 } }, { "key": "36178", "source": "1390", "target": "340", "attributes": { "weight": 1 } }, { "key": "35182", "source": "1390", "target": "352", "attributes": { "weight": 1 } }, { "key": "36177", "source": "1390", "target": "1337", "attributes": { "weight": 1 } }, { "key": "21349", "source": "1390", "target": "2108", "attributes": { "weight": 1 } }, { "key": "7418", "source": "1390", "target": "454", "attributes": { "weight": 2 } }, { "key": "27197", "source": "1390", "target": "1750", "attributes": { "weight": 3 } }, { "key": "7417", "source": "1390", "target": "674", "attributes": { "weight": 2 } }, { "key": "21345", "source": "1390", "target": "2244", "attributes": { "weight": 1 } }, { "key": "27196", "source": "1390", "target": "479", "attributes": { "weight": 1 } }, { "key": "36175", "source": "1390", "target": "1137", "attributes": { "weight": 1 } }, { "key": "31819", "source": "1390", "target": "595", "attributes": { "weight": 1 } }, { "key": "36179", "source": "1390", "target": "73", "attributes": { "weight": 1 } }, { "key": "21347", "source": "1390", "target": "449", "attributes": { "weight": 1 } }, { "key": "36171", "source": "1390", "target": "1831", "attributes": { "weight": 1 } }, { "key": "21351", "source": "1390", "target": "489", "attributes": { "weight": 1 } }, { "key": "12733", "source": "1390", "target": "695", "attributes": { "weight": 1 } }, { "key": "35087", "source": "1390", "target": "3", "attributes": { "weight": 1 } }, { "key": "36174", "source": "1390", "target": "452", "attributes": { "weight": 1 } }, { "key": "27198", "source": "1390", "target": "193", "attributes": { "weight": 1 } }, { "key": "36176", "source": "1390", "target": "2258", "attributes": { "weight": 1 } }, { "key": "32629", "source": "1390", "target": "791", "attributes": { "weight": 1 } }, { "key": "25401", "source": "1391", "target": "1408", "attributes": { "weight": 1 } }, { "key": "29539", "source": "1391", "target": "1415", "attributes": { "weight": 1 } }, { "key": "25402", "source": "1391", "target": "1412", "attributes": { "weight": 1 } }, { "key": "7424", "source": "1391", "target": "1063", "attributes": { "weight": 1 } }, { "key": "29264", "source": "1392", "target": "149", "attributes": { "weight": 2 } }, { "key": "7425", "source": "1392", "target": "154", "attributes": { "weight": 1 } }, { "key": "29265", "source": "1392", "target": "158", "attributes": { "weight": 1 } }, { "key": "7426", "source": "1392", "target": "1425", "attributes": { "weight": 2 } }, { "key": "29266", "source": "1393", "target": "2844", "attributes": { "weight": 1 } }, { "key": "29268", "source": "1393", "target": "160", "attributes": { "weight": 1 } }, { "key": "29267", "source": "1393", "target": "149", "attributes": { "weight": 1 } }, { "key": "7427", "source": "1393", "target": "154", "attributes": { "weight": 1 } }, { "key": "36774", "source": "1394", "target": "377", "attributes": { "weight": 1 } }, { "key": "7428", "source": "1394", "target": "333", "attributes": { "weight": 1 } }, { "key": "7430", "source": "1395", "target": "377", "attributes": { "weight": 1 } }, { "key": "7429", "source": "1395", "target": "333", "attributes": { "weight": 1 } }, { "key": "7431", "source": "1396", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7434", "source": "1396", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7432", "source": "1396", "target": "1423", "attributes": { "weight": 2 } }, { "key": "7433", "source": "1396", "target": "1424", "attributes": { "weight": 2 } }, { "key": "7453", "source": "1397", "target": "1063", "attributes": { "weight": 1 } }, { "key": "7450", "source": "1397", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7451", "source": "1397", "target": "375", "attributes": { "weight": 1 } }, { "key": "7452", "source": "1397", "target": "154", "attributes": { "weight": 1 } }, { "key": "7454", "source": "1398", "target": "1063", "attributes": { "weight": 1 } }, { "key": "7456", "source": "1399", "target": "149", "attributes": { "weight": 1 } }, { "key": "7455", "source": "1399", "target": "1400", "attributes": { "weight": 1 } }, { "key": "29270", "source": "1400", "target": "2845", "attributes": { "weight": 1 } }, { "key": "7457", "source": "1400", "target": "1399", "attributes": { "weight": 1 } }, { "key": "29269", "source": "1400", "target": "149", "attributes": { "weight": 1 } }, { "key": "7476", "source": "1401", "target": "1197", "attributes": { "weight": 2 } }, { "key": "24709", "source": "1401", "target": "1403", "attributes": { "weight": 1 } }, { "key": "7479", "source": "1401", "target": "377", "attributes": { "weight": 2 } }, { "key": "7478", "source": "1401", "target": "333", "attributes": { "weight": 1 } }, { "key": "7480", "source": "1401", "target": "1063", "attributes": { "weight": 2 } }, { "key": "24708", "source": "1401", "target": "2514", "attributes": { "weight": 1 } }, { "key": "7477", "source": "1401", "target": "373", "attributes": { "weight": 3 } }, { "key": "7500", "source": "1402", "target": "333", "attributes": { "weight": 2 } }, { "key": "24713", "source": "1403", "target": "1401", "attributes": { "weight": 1 } }, { "key": "7506", "source": "1403", "target": "377", "attributes": { "weight": 1 } }, { "key": "24712", "source": "1403", "target": "374", "attributes": { "weight": 1 } }, { "key": "7507", "source": "1404", "target": "1063", "attributes": { "weight": 1 } }, { "key": "36796", "source": "1404", "target": "377", "attributes": { "weight": 1 } }, { "key": "29542", "source": "1404", "target": "1415", "attributes": { "weight": 1 } }, { "key": "7508", "source": "1405", "target": "377", "attributes": { "weight": 1 } }, { "key": "7509", "source": "1406", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7511", "source": "1406", "target": "154", "attributes": { "weight": 1 } }, { "key": "34849", "source": "1406", "target": "1047", "attributes": { "weight": 1 } }, { "key": "7512", "source": "1406", "target": "1063", "attributes": { "weight": 2 } }, { "key": "32992", "source": "1406", "target": "208", "attributes": { "weight": 2 } }, { "key": "7510", "source": "1406", "target": "375", "attributes": { "weight": 2 } }, { "key": "36797", "source": "1406", "target": "3315", "attributes": { "weight": 1 } }, { "key": "16401", "source": "1407", "target": "925", "attributes": { "weight": 1 } }, { "key": "7518", "source": "1407", "target": "377", "attributes": { "weight": 2 } }, { "key": "7516", "source": "1407", "target": "333", "attributes": { "weight": 2 } }, { "key": "7514", "source": "1407", "target": "123", "attributes": { "weight": 2 } }, { "key": "7515", "source": "1407", "target": "373", "attributes": { "weight": 2 } }, { "key": "7513", "source": "1407", "target": "1197", "attributes": { "weight": 2 } }, { "key": "7519", "source": "1407", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7517", "source": "1407", "target": "625", "attributes": { "weight": 2 } }, { "key": "36800", "source": "1407", "target": "337", "attributes": { "weight": 1 } }, { "key": "25416", "source": "1408", "target": "2588", "attributes": { "weight": 2 } }, { "key": "36873", "source": "1408", "target": "3336", "attributes": { "weight": 1 } }, { "key": "7521", "source": "1408", "target": "1063", "attributes": { "weight": 2 } }, { "key": "36872", "source": "1408", "target": "3327", "attributes": { "weight": 1 } }, { "key": "7520", "source": "1408", "target": "625", "attributes": { "weight": 3 } }, { "key": "25415", "source": "1408", "target": "1414", "attributes": { "weight": 1 } }, { "key": "29543", "source": "1408", "target": "1415", "attributes": { "weight": 1 } }, { "key": "25414", "source": "1408", "target": "1391", "attributes": { "weight": 1 } }, { "key": "25413", "source": "1408", "target": "2582", "attributes": { "weight": 1 } }, { "key": "7522", "source": "1409", "target": "373", "attributes": { "weight": 2 } }, { "key": "7523", "source": "1409", "target": "377", "attributes": { "weight": 2 } }, { "key": "7525", "source": "1410", "target": "1423", "attributes": { "weight": 1 } }, { "key": "7526", "source": "1410", "target": "1424", "attributes": { "weight": 1 } }, { "key": "7524", "source": "1410", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7527", "source": "1411", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7528", "source": "1411", "target": "1063", "attributes": { "weight": 1 } }, { "key": "7529", "source": "1412", "target": "1063", "attributes": { "weight": 1 } }, { "key": "25421", "source": "1412", "target": "1408", "attributes": { "weight": 1 } }, { "key": "25420", "source": "1412", "target": "1391", "attributes": { "weight": 1 } }, { "key": "25423", "source": "1412", "target": "1420", "attributes": { "weight": 1 } }, { "key": "25422", "source": "1412", "target": "1414", "attributes": { "weight": 1 } }, { "key": "29544", "source": "1412", "target": "1415", "attributes": { "weight": 1 } }, { "key": "7531", "source": "1413", "target": "154", "attributes": { "weight": 1 } }, { "key": "7530", "source": "1413", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7532", "source": "1413", "target": "1063", "attributes": { "weight": 1 } }, { "key": "37359", "source": "1414", "target": "3357", "attributes": { "weight": 1 } }, { "key": "25424", "source": "1414", "target": "1412", "attributes": { "weight": 1 } }, { "key": "7533", "source": "1414", "target": "1063", "attributes": { "weight": 1 } }, { "key": "29545", "source": "1414", "target": "1415", "attributes": { "weight": 1 } }, { "key": "25425", "source": "1414", "target": "2589", "attributes": { "weight": 1 } }, { "key": "29553", "source": "1415", "target": "149", "attributes": { "weight": 1 } }, { "key": "29546", "source": "1415", "target": "938", "attributes": { "weight": 1 } }, { "key": "29554", "source": "1415", "target": "1404", "attributes": { "weight": 1 } }, { "key": "29555", "source": "1415", "target": "1408", "attributes": { "weight": 1 } }, { "key": "29552", "source": "1415", "target": "375", "attributes": { "weight": 1 } }, { "key": "29551", "source": "1415", "target": "1391", "attributes": { "weight": 1 } }, { "key": "29557", "source": "1415", "target": "1414", "attributes": { "weight": 1 } }, { "key": "29548", "source": "1415", "target": "1232", "attributes": { "weight": 1 } }, { "key": "29550", "source": "1415", "target": "1279", "attributes": { "weight": 1 } }, { "key": "29549", "source": "1415", "target": "1552", "attributes": { "weight": 1 } }, { "key": "29547", "source": "1415", "target": "1047", "attributes": { "weight": 1 } }, { "key": "7534", "source": "1415", "target": "154", "attributes": { "weight": 2 } }, { "key": "29556", "source": "1415", "target": "1412", "attributes": { "weight": 1 } }, { "key": "37361", "source": "1416", "target": "3355", "attributes": { "weight": 1 } }, { "key": "37362", "source": "1416", "target": "3356", "attributes": { "weight": 1 } }, { "key": "7586", "source": "1416", "target": "155", "attributes": { "weight": 2 } }, { "key": "29285", "source": "1416", "target": "2844", "attributes": { "weight": 1 } }, { "key": "7585", "source": "1416", "target": "154", "attributes": { "weight": 2 } }, { "key": "7636", "source": "1417", "target": "333", "attributes": { "weight": 2 } }, { "key": "7639", "source": "1417", "target": "1063", "attributes": { "weight": 2 } }, { "key": "16409", "source": "1417", "target": "925", "attributes": { "weight": 1 } }, { "key": "7637", "source": "1417", "target": "625", "attributes": { "weight": 2 } }, { "key": "34852", "source": "1417", "target": "123", "attributes": { "weight": 1 } }, { "key": "7638", "source": "1417", "target": "377", "attributes": { "weight": 2 } }, { "key": "36807", "source": "1417", "target": "337", "attributes": { "weight": 1 } }, { "key": "7635", "source": "1417", "target": "373", "attributes": { "weight": 2 } }, { "key": "7634", "source": "1417", "target": "1197", "attributes": { "weight": 2 } }, { "key": "7640", "source": "1418", "target": "377", "attributes": { "weight": 1 } }, { "key": "36809", "source": "1419", "target": "625", "attributes": { "weight": 1 } }, { "key": "7644", "source": "1419", "target": "123", "attributes": { "weight": 2 } }, { "key": "7646", "source": "1419", "target": "1063", "attributes": { "weight": 1 } }, { "key": "7645", "source": "1419", "target": "375", "attributes": { "weight": 1 } }, { "key": "36810", "source": "1419", "target": "377", "attributes": { "weight": 1 } }, { "key": "7647", "source": "1420", "target": "1063", "attributes": { "weight": 1 } }, { "key": "25434", "source": "1420", "target": "1412", "attributes": { "weight": 1 } }, { "key": "7678", "source": "1421", "target": "333", "attributes": { "weight": 1 } }, { "key": "7681", "source": "1422", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7679", "source": "1422", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7680", "source": "1422", "target": "154", "attributes": { "weight": 1 } }, { "key": "36432", "source": "1423", "target": "3308", "attributes": { "weight": 1 } }, { "key": "29323", "source": "1423", "target": "2849", "attributes": { "weight": 2 } }, { "key": "29322", "source": "1423", "target": "2847", "attributes": { "weight": 1 } }, { "key": "7689", "source": "1423", "target": "1424", "attributes": { "weight": 2 } }, { "key": "7688", "source": "1423", "target": "158", "attributes": { "weight": 2 } }, { "key": "29324", "source": "1423", "target": "2854", "attributes": { "weight": 1 } }, { "key": "29325", "source": "1423", "target": "2855", "attributes": { "weight": 1 } }, { "key": "7686", "source": "1423", "target": "1350", "attributes": { "weight": 1 } }, { "key": "29321", "source": "1423", "target": "2846", "attributes": { "weight": 1 } }, { "key": "7685", "source": "1423", "target": "1396", "attributes": { "weight": 2 } }, { "key": "7687", "source": "1423", "target": "1410", "attributes": { "weight": 1 } }, { "key": "7696", "source": "1424", "target": "1423", "attributes": { "weight": 2 } }, { "key": "7695", "source": "1424", "target": "154", "attributes": { "weight": 1 } }, { "key": "34853", "source": "1424", "target": "1047", "attributes": { "weight": 1 } }, { "key": "29326", "source": "1424", "target": "2846", "attributes": { "weight": 1 } }, { "key": "7697", "source": "1424", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7694", "source": "1424", "target": "1410", "attributes": { "weight": 1 } }, { "key": "29602", "source": "1424", "target": "2880", "attributes": { "weight": 1 } }, { "key": "7693", "source": "1424", "target": "375", "attributes": { "weight": 2 } }, { "key": "33013", "source": "1424", "target": "208", "attributes": { "weight": 2 } }, { "key": "7692", "source": "1424", "target": "1350", "attributes": { "weight": 4 } }, { "key": "7690", "source": "1424", "target": "468", "attributes": { "weight": 2 } }, { "key": "7691", "source": "1424", "target": "1396", "attributes": { "weight": 2 } }, { "key": "29327", "source": "1424", "target": "2851", "attributes": { "weight": 1 } }, { "key": "7698", "source": "1425", "target": "1392", "attributes": { "weight": 2 } }, { "key": "30115", "source": "1425", "target": "158", "attributes": { "weight": 1 } }, { "key": "7699", "source": "1425", "target": "154", "attributes": { "weight": 1 } }, { "key": "29291", "source": "1425", "target": "160", "attributes": { "weight": 2 } }, { "key": "29290", "source": "1425", "target": "2845", "attributes": { "weight": 1 } }, { "key": "29289", "source": "1425", "target": "149", "attributes": { "weight": 1 } }, { "key": "7805", "source": "1426", "target": "333", "attributes": { "weight": 1 } }, { "key": "7806", "source": "1427", "target": "1063", "attributes": { "weight": 1 } }, { "key": "7809", "source": "1428", "target": "154", "attributes": { "weight": 1 } }, { "key": "7812", "source": "1429", "target": "990", "attributes": { "weight": 1 } }, { "key": "28610", "source": "1429", "target": "199", "attributes": { "weight": 1 } }, { "key": "29786", "source": "1429", "target": "1281", "attributes": { "weight": 2 } }, { "key": "7813", "source": "1430", "target": "1488", "attributes": { "weight": 1 } }, { "key": "7814", "source": "1431", "target": "105", "attributes": { "weight": 1 } }, { "key": "7818", "source": "1432", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21611", "source": "1432", "target": "109", "attributes": { "weight": 2 } }, { "key": "28878", "source": "1432", "target": "103", "attributes": { "weight": 1 } }, { "key": "21610", "source": "1432", "target": "108", "attributes": { "weight": 1 } }, { "key": "24859", "source": "1432", "target": "1495", "attributes": { "weight": 1 } }, { "key": "7816", "source": "1432", "target": "1306", "attributes": { "weight": 2 } }, { "key": "7815", "source": "1432", "target": "1473", "attributes": { "weight": 1 } }, { "key": "7817", "source": "1432", "target": "116", "attributes": { "weight": 4 } }, { "key": "7819", "source": "1433", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7820", "source": "1434", "target": "109", "attributes": { "weight": 1 } }, { "key": "7821", "source": "1434", "target": "1505", "attributes": { "weight": 1 } }, { "key": "27428", "source": "1435", "target": "3418", "attributes": { "weight": 1 } }, { "key": "7822", "source": "1435", "target": "1437", "attributes": { "weight": 2 } }, { "key": "7823", "source": "1435", "target": "1499", "attributes": { "weight": 1 } }, { "key": "7826", "source": "1436", "target": "1261", "attributes": { "weight": 1 } }, { "key": "21614", "source": "1437", "target": "108", "attributes": { "weight": 2 } }, { "key": "27429", "source": "1437", "target": "3419", "attributes": { "weight": 1 } }, { "key": "7829", "source": "1437", "target": "1186", "attributes": { "weight": 1 } }, { "key": "24861", "source": "1437", "target": "371", "attributes": { "weight": 1 } }, { "key": "7827", "source": "1437", "target": "1435", "attributes": { "weight": 2 } }, { "key": "7830", "source": "1437", "target": "1455", "attributes": { "weight": 3 } }, { "key": "21613", "source": "1437", "target": "103", "attributes": { "weight": 2 } }, { "key": "7828", "source": "1437", "target": "1447", "attributes": { "weight": 1 } }, { "key": "29995", "source": "1437", "target": "249", "attributes": { "weight": 1 } }, { "key": "21615", "source": "1437", "target": "109", "attributes": { "weight": 2 } }, { "key": "7835", "source": "1437", "target": "1499", "attributes": { "weight": 5 } }, { "key": "7833", "source": "1437", "target": "1261", "attributes": { "weight": 3 } }, { "key": "7831", "source": "1437", "target": "1458", "attributes": { "weight": 1 } }, { "key": "7832", "source": "1437", "target": "1471", "attributes": { "weight": 4 } }, { "key": "29996", "source": "1437", "target": "784", "attributes": { "weight": 1 } }, { "key": "27430", "source": "1437", "target": "2681", "attributes": { "weight": 1 } }, { "key": "21616", "source": "1437", "target": "1498", "attributes": { "weight": 2 } }, { "key": "7834", "source": "1437", "target": "1472", "attributes": { "weight": 3 } }, { "key": "7838", "source": "1438", "target": "116", "attributes": { "weight": 2 } }, { "key": "24862", "source": "1438", "target": "1445", "attributes": { "weight": 1 } }, { "key": "7839", "source": "1438", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21618", "source": "1438", "target": "109", "attributes": { "weight": 2 } }, { "key": "7837", "source": "1438", "target": "1495", "attributes": { "weight": 1 } }, { "key": "7836", "source": "1438", "target": "1186", "attributes": { "weight": 4 } }, { "key": "7848", "source": "1439", "target": "1261", "attributes": { "weight": 3 } }, { "key": "7849", "source": "1440", "target": "105", "attributes": { "weight": 1 } }, { "key": "7850", "source": "1441", "target": "1505", "attributes": { "weight": 1 } }, { "key": "32235", "source": "1442", "target": "1506", "attributes": { "weight": 1 } }, { "key": "32234", "source": "1442", "target": "1474", "attributes": { "weight": 1 } }, { "key": "7853", "source": "1442", "target": "1495", "attributes": { "weight": 2 } }, { "key": "7854", "source": "1443", "target": "1505", "attributes": { "weight": 1 } }, { "key": "28507", "source": "1443", "target": "1454", "attributes": { "weight": 1 } }, { "key": "7856", "source": "1444", "target": "1505", "attributes": { "weight": 1 } }, { "key": "32236", "source": "1444", "target": "1495", "attributes": { "weight": 1 } }, { "key": "7855", "source": "1444", "target": "112", "attributes": { "weight": 1 } }, { "key": "21659", "source": "1445", "target": "1489", "attributes": { "weight": 1 } }, { "key": "21652", "source": "1445", "target": "110", "attributes": { "weight": 2 } }, { "key": "21662", "source": "1445", "target": "1506", "attributes": { "weight": 2 } }, { "key": "21655", "source": "1445", "target": "1469", "attributes": { "weight": 2 } }, { "key": "24867", "source": "1445", "target": "1459", "attributes": { "weight": 1 } }, { "key": "21644", "source": "1445", "target": "105", "attributes": { "weight": 2 } }, { "key": "21658", "source": "1445", "target": "607", "attributes": { "weight": 2 } }, { "key": "21660", "source": "1445", "target": "116", "attributes": { "weight": 3 } }, { "key": "21648", "source": "1445", "target": "604", "attributes": { "weight": 2 } }, { "key": "21657", "source": "1445", "target": "1479", "attributes": { "weight": 2 } }, { "key": "24866", "source": "1445", "target": "1457", "attributes": { "weight": 1 } }, { "key": "21650", "source": "1445", "target": "1454", "attributes": { "weight": 3 } }, { "key": "21646", "source": "1445", "target": "1448", "attributes": { "weight": 1 } }, { "key": "21654", "source": "1445", "target": "1468", "attributes": { "weight": 1 } }, { "key": "24865", "source": "1445", "target": "1438", "attributes": { "weight": 1 } }, { "key": "7871", "source": "1445", "target": "1495", "attributes": { "weight": 4 } }, { "key": "21643", "source": "1445", "target": "103", "attributes": { "weight": 3 } }, { "key": "24868", "source": "1445", "target": "114", "attributes": { "weight": 1 } }, { "key": "21656", "source": "1445", "target": "1475", "attributes": { "weight": 1 } }, { "key": "21647", "source": "1445", "target": "1186", "attributes": { "weight": 2 } }, { "key": "21653", "source": "1445", "target": "1465", "attributes": { "weight": 2 } }, { "key": "24869", "source": "1445", "target": "115", "attributes": { "weight": 1 } }, { "key": "21661", "source": "1445", "target": "118", "attributes": { "weight": 2 } }, { "key": "21649", "source": "1445", "target": "1451", "attributes": { "weight": 1 } }, { "key": "21645", "source": "1445", "target": "106", "attributes": { "weight": 2 } }, { "key": "21651", "source": "1445", "target": "108", "attributes": { "weight": 2 } }, { "key": "7876", "source": "1446", "target": "1261", "attributes": { "weight": 1 } }, { "key": "7879", "source": "1447", "target": "1471", "attributes": { "weight": 2 } }, { "key": "7877", "source": "1447", "target": "1437", "attributes": { "weight": 1 } }, { "key": "7878", "source": "1447", "target": "1186", "attributes": { "weight": 1 } }, { "key": "21667", "source": "1448", "target": "1445", "attributes": { "weight": 1 } }, { "key": "7880", "source": "1448", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7881", "source": "1449", "target": "106", "attributes": { "weight": 1 } }, { "key": "21672", "source": "1450", "target": "116", "attributes": { "weight": 1 } }, { "key": "7908", "source": "1450", "target": "1487", "attributes": { "weight": 1 } }, { "key": "7918", "source": "1451", "target": "604", "attributes": { "weight": 1 } }, { "key": "7919", "source": "1451", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21676", "source": "1451", "target": "1445", "attributes": { "weight": 1 } }, { "key": "7921", "source": "1452", "target": "1501", "attributes": { "weight": 1 } }, { "key": "7923", "source": "1453", "target": "1306", "attributes": { "weight": 2 } }, { "key": "7922", "source": "1453", "target": "1478", "attributes": { "weight": 1 } }, { "key": "21687", "source": "1454", "target": "1507", "attributes": { "weight": 2 } }, { "key": "28518", "source": "1454", "target": "2777", "attributes": { "weight": 1 } }, { "key": "28516", "source": "1454", "target": "1443", "attributes": { "weight": 1 } }, { "key": "21683", "source": "1454", "target": "369", "attributes": { "weight": 1 } }, { "key": "10101", "source": "1454", "target": "602", "attributes": { "weight": 1 } }, { "key": "21685", "source": "1454", "target": "109", "attributes": { "weight": 3 } }, { "key": "7924", "source": "1454", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21684", "source": "1454", "target": "108", "attributes": { "weight": 3 } }, { "key": "24871", "source": "1454", "target": "103", "attributes": { "weight": 2 } }, { "key": "28517", "source": "1454", "target": "604", "attributes": { "weight": 1 } }, { "key": "21682", "source": "1454", "target": "1445", "attributes": { "weight": 3 } }, { "key": "21686", "source": "1454", "target": "607", "attributes": { "weight": 2 } }, { "key": "24872", "source": "1455", "target": "1261", "attributes": { "weight": 1 } }, { "key": "7925", "source": "1455", "target": "1437", "attributes": { "weight": 3 } }, { "key": "21688", "source": "1455", "target": "103", "attributes": { "weight": 3 } }, { "key": "21691", "source": "1455", "target": "109", "attributes": { "weight": 3 } }, { "key": "23906", "source": "1455", "target": "473", "attributes": { "weight": 1 } }, { "key": "7928", "source": "1455", "target": "1478", "attributes": { "weight": 3 } }, { "key": "35542", "source": "1455", "target": "1710", "attributes": { "weight": 1 } }, { "key": "7926", "source": "1455", "target": "1186", "attributes": { "weight": 1 } }, { "key": "21692", "source": "1455", "target": "116", "attributes": { "weight": 2 } }, { "key": "21689", "source": "1455", "target": "369", "attributes": { "weight": 1 } }, { "key": "7929", "source": "1455", "target": "1485", "attributes": { "weight": 1 } }, { "key": "7927", "source": "1455", "target": "1466", "attributes": { "weight": 1 } }, { "key": "7932", "source": "1455", "target": "1502", "attributes": { "weight": 3 } }, { "key": "32876", "source": "1455", "target": "470", "attributes": { "weight": 1 } }, { "key": "7931", "source": "1455", "target": "1498", "attributes": { "weight": 3 } }, { "key": "7933", "source": "1455", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7930", "source": "1455", "target": "1306", "attributes": { "weight": 3 } }, { "key": "21690", "source": "1455", "target": "108", "attributes": { "weight": 3 } }, { "key": "28885", "source": "1455", "target": "1464", "attributes": { "weight": 1 } }, { "key": "7950", "source": "1456", "target": "112", "attributes": { "weight": 1 } }, { "key": "7957", "source": "1457", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7955", "source": "1457", "target": "604", "attributes": { "weight": 3 } }, { "key": "24885", "source": "1457", "target": "30", "attributes": { "weight": 2 } }, { "key": "7956", "source": "1457", "target": "607", "attributes": { "weight": 1 } }, { "key": "21740", "source": "1457", "target": "109", "attributes": { "weight": 2 } }, { "key": "24884", "source": "1457", "target": "1445", "attributes": { "weight": 1 } }, { "key": "21739", "source": "1457", "target": "108", "attributes": { "weight": 2 } }, { "key": "7958", "source": "1458", "target": "1437", "attributes": { "weight": 1 } }, { "key": "7959", "source": "1458", "target": "1186", "attributes": { "weight": 1 } }, { "key": "21741", "source": "1458", "target": "103", "attributes": { "weight": 2 } }, { "key": "21742", "source": "1458", "target": "1498", "attributes": { "weight": 2 } }, { "key": "7961", "source": "1459", "target": "116", "attributes": { "weight": 3 } }, { "key": "21743", "source": "1459", "target": "1186", "attributes": { "weight": 1 } }, { "key": "24887", "source": "1459", "target": "1495", "attributes": { "weight": 1 } }, { "key": "7962", "source": "1459", "target": "1505", "attributes": { "weight": 1 } }, { "key": "28888", "source": "1459", "target": "103", "attributes": { "weight": 1 } }, { "key": "24886", "source": "1459", "target": "1445", "attributes": { "weight": 1 } }, { "key": "7960", "source": "1459", "target": "109", "attributes": { "weight": 1 } }, { "key": "7963", "source": "1460", "target": "1186", "attributes": { "weight": 1 } }, { "key": "7964", "source": "1460", "target": "109", "attributes": { "weight": 1 } }, { "key": "7965", "source": "1460", "target": "112", "attributes": { "weight": 1 } }, { "key": "7966", "source": "1461", "target": "1501", "attributes": { "weight": 1 } }, { "key": "7967", "source": "1462", "target": "1499", "attributes": { "weight": 2 } }, { "key": "7969", "source": "1463", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7968", "source": "1463", "target": "1186", "attributes": { "weight": 1 } }, { "key": "28891", "source": "1464", "target": "109", "attributes": { "weight": 1 } }, { "key": "28889", "source": "1464", "target": "103", "attributes": { "weight": 1 } }, { "key": "21744", "source": "1464", "target": "1306", "attributes": { "weight": 1 } }, { "key": "28890", "source": "1464", "target": "1455", "attributes": { "weight": 1 } }, { "key": "7970", "source": "1464", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7971", "source": "1465", "target": "607", "attributes": { "weight": 1 } }, { "key": "24889", "source": "1465", "target": "109", "attributes": { "weight": 1 } }, { "key": "7972", "source": "1465", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21745", "source": "1465", "target": "1445", "attributes": { "weight": 2 } }, { "key": "7975", "source": "1466", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7974", "source": "1466", "target": "116", "attributes": { "weight": 1 } }, { "key": "21748", "source": "1466", "target": "109", "attributes": { "weight": 2 } }, { "key": "21747", "source": "1466", "target": "108", "attributes": { "weight": 3 } }, { "key": "21746", "source": "1466", "target": "103", "attributes": { "weight": 3 } }, { "key": "7973", "source": "1466", "target": "1455", "attributes": { "weight": 1 } }, { "key": "7976", "source": "1467", "target": "105", "attributes": { "weight": 2 } }, { "key": "7977", "source": "1468", "target": "1476", "attributes": { "weight": 1 } }, { "key": "21749", "source": "1468", "target": "1445", "attributes": { "weight": 1 } }, { "key": "7978", "source": "1468", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7981", "source": "1469", "target": "1475", "attributes": { "weight": 1 } }, { "key": "7979", "source": "1469", "target": "105", "attributes": { "weight": 1 } }, { "key": "7983", "source": "1469", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7982", "source": "1469", "target": "607", "attributes": { "weight": 1 } }, { "key": "21751", "source": "1469", "target": "109", "attributes": { "weight": 2 } }, { "key": "7980", "source": "1469", "target": "604", "attributes": { "weight": 3 } }, { "key": "21750", "source": "1469", "target": "1445", "attributes": { "weight": 2 } }, { "key": "7984", "source": "1470", "target": "116", "attributes": { "weight": 1 } }, { "key": "7986", "source": "1471", "target": "1437", "attributes": { "weight": 3 } }, { "key": "7988", "source": "1471", "target": "1447", "attributes": { "weight": 1 } }, { "key": "30805", "source": "1471", "target": "3009", "attributes": { "weight": 1 } }, { "key": "7987", "source": "1471", "target": "103", "attributes": { "weight": 3 } }, { "key": "7989", "source": "1471", "target": "1504", "attributes": { "weight": 1 } }, { "key": "7985", "source": "1471", "target": "101", "attributes": { "weight": 1 } }, { "key": "30804", "source": "1471", "target": "3008", "attributes": { "weight": 1 } }, { "key": "30803", "source": "1471", "target": "1458", "attributes": { "weight": 1 } }, { "key": "8001", "source": "1472", "target": "1437", "attributes": { "weight": 3 } }, { "key": "21756", "source": "1473", "target": "109", "attributes": { "weight": 3 } }, { "key": "8002", "source": "1473", "target": "1432", "attributes": { "weight": 1 } }, { "key": "8003", "source": "1473", "target": "1306", "attributes": { "weight": 1 } }, { "key": "21757", "source": "1473", "target": "116", "attributes": { "weight": 2 } }, { "key": "21755", "source": "1473", "target": "108", "attributes": { "weight": 2 } }, { "key": "8004", "source": "1473", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21754", "source": "1473", "target": "103", "attributes": { "weight": 3 } }, { "key": "8005", "source": "1474", "target": "1495", "attributes": { "weight": 2 } }, { "key": "32237", "source": "1474", "target": "1442", "attributes": { "weight": 1 } }, { "key": "8006", "source": "1474", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21758", "source": "1475", "target": "1445", "attributes": { "weight": 1 } }, { "key": "8008", "source": "1475", "target": "604", "attributes": { "weight": 3 } }, { "key": "21760", "source": "1475", "target": "109", "attributes": { "weight": 1 } }, { "key": "8007", "source": "1475", "target": "105", "attributes": { "weight": 1 } }, { "key": "8010", "source": "1475", "target": "607", "attributes": { "weight": 1 } }, { "key": "21759", "source": "1475", "target": "106", "attributes": { "weight": 1 } }, { "key": "8011", "source": "1475", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8009", "source": "1475", "target": "1469", "attributes": { "weight": 1 } }, { "key": "8013", "source": "1476", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8012", "source": "1476", "target": "1468", "attributes": { "weight": 1 } }, { "key": "8015", "source": "1477", "target": "112", "attributes": { "weight": 1 } }, { "key": "8014", "source": "1477", "target": "1186", "attributes": { "weight": 2 } }, { "key": "32920", "source": "1478", "target": "470", "attributes": { "weight": 1 } }, { "key": "21763", "source": "1478", "target": "108", "attributes": { "weight": 2 } }, { "key": "8016", "source": "1478", "target": "1186", "attributes": { "weight": 1 } }, { "key": "8019", "source": "1478", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8018", "source": "1478", "target": "1306", "attributes": { "weight": 1 } }, { "key": "21761", "source": "1478", "target": "103", "attributes": { "weight": 3 } }, { "key": "21762", "source": "1478", "target": "1455", "attributes": { "weight": 2 } }, { "key": "21764", "source": "1478", "target": "109", "attributes": { "weight": 3 } }, { "key": "21765", "source": "1478", "target": "116", "attributes": { "weight": 1 } }, { "key": "8017", "source": "1478", "target": "1453", "attributes": { "weight": 1 } }, { "key": "21767", "source": "1479", "target": "108", "attributes": { "weight": 1 } }, { "key": "8020", "source": "1479", "target": "109", "attributes": { "weight": 2 } }, { "key": "8022", "source": "1479", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21766", "source": "1479", "target": "1445", "attributes": { "weight": 2 } }, { "key": "8021", "source": "1479", "target": "607", "attributes": { "weight": 1 } }, { "key": "8023", "source": "1480", "target": "105", "attributes": { "weight": 1 } }, { "key": "8024", "source": "1481", "target": "1501", "attributes": { "weight": 1 } }, { "key": "8025", "source": "1482", "target": "116", "attributes": { "weight": 1 } }, { "key": "8026", "source": "1483", "target": "607", "attributes": { "weight": 3 } }, { "key": "8028", "source": "1484", "target": "1505", "attributes": { "weight": 1 } }, { "key": "28526", "source": "1484", "target": "2774", "attributes": { "weight": 1 } }, { "key": "8027", "source": "1484", "target": "607", "attributes": { "weight": 2 } }, { "key": "28892", "source": "1484", "target": "109", "attributes": { "weight": 1 } }, { "key": "8030", "source": "1485", "target": "1502", "attributes": { "weight": 1 } }, { "key": "8029", "source": "1485", "target": "1455", "attributes": { "weight": 1 } }, { "key": "8031", "source": "1486", "target": "1261", "attributes": { "weight": 1 } }, { "key": "28894", "source": "1487", "target": "116", "attributes": { "weight": 1 } }, { "key": "28893", "source": "1487", "target": "103", "attributes": { "weight": 1 } }, { "key": "8044", "source": "1487", "target": "1186", "attributes": { "weight": 1 } }, { "key": "21768", "source": "1487", "target": "1306", "attributes": { "weight": 2 } }, { "key": "8059", "source": "1488", "target": "112", "attributes": { "weight": 1 } }, { "key": "8060", "source": "1489", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21774", "source": "1489", "target": "1445", "attributes": { "weight": 1 } }, { "key": "8061", "source": "1490", "target": "105", "attributes": { "weight": 3 } }, { "key": "8062", "source": "1490", "target": "1261", "attributes": { "weight": 2 } }, { "key": "8063", "source": "1490", "target": "1491", "attributes": { "weight": 2 } }, { "key": "21776", "source": "1490", "target": "103", "attributes": { "weight": 2 } }, { "key": "8066", "source": "1491", "target": "1490", "attributes": { "weight": 2 } }, { "key": "21777", "source": "1491", "target": "103", "attributes": { "weight": 2 } }, { "key": "21778", "source": "1491", "target": "2292", "attributes": { "weight": 1 } }, { "key": "28529", "source": "1492", "target": "2775", "attributes": { "weight": 1 } }, { "key": "8077", "source": "1492", "target": "607", "attributes": { "weight": 2 } }, { "key": "28530", "source": "1492", "target": "2779", "attributes": { "weight": 1 } }, { "key": "8078", "source": "1493", "target": "105", "attributes": { "weight": 1 } }, { "key": "8079", "source": "1494", "target": "1505", "attributes": { "weight": 1 } }, { "key": "24900", "source": "1495", "target": "1459", "attributes": { "weight": 1 } }, { "key": "8084", "source": "1495", "target": "604", "attributes": { "weight": 1 } }, { "key": "8080", "source": "1495", "target": "1438", "attributes": { "weight": 1 } }, { "key": "32238", "source": "1495", "target": "1444", "attributes": { "weight": 1 } }, { "key": "8087", "source": "1495", "target": "1474", "attributes": { "weight": 2 } }, { "key": "8085", "source": "1495", "target": "109", "attributes": { "weight": 2 } }, { "key": "8089", "source": "1495", "target": "1496", "attributes": { "weight": 2 } }, { "key": "24899", "source": "1495", "target": "1432", "attributes": { "weight": 1 } }, { "key": "8081", "source": "1495", "target": "1442", "attributes": { "weight": 1 } }, { "key": "28895", "source": "1495", "target": "116", "attributes": { "weight": 1 } }, { "key": "21784", "source": "1495", "target": "103", "attributes": { "weight": 3 } }, { "key": "8082", "source": "1495", "target": "1445", "attributes": { "weight": 4 } }, { "key": "8083", "source": "1495", "target": "1186", "attributes": { "weight": 3 } }, { "key": "37261", "source": "1495", "target": "114", "attributes": { "weight": 1 } }, { "key": "8091", "source": "1495", "target": "1506", "attributes": { "weight": 3 } }, { "key": "8088", "source": "1495", "target": "607", "attributes": { "weight": 1 } }, { "key": "8086", "source": "1495", "target": "110", "attributes": { "weight": 1 } }, { "key": "8090", "source": "1495", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8092", "source": "1496", "target": "112", "attributes": { "weight": 1 } }, { "key": "8093", "source": "1496", "target": "1495", "attributes": { "weight": 2 } }, { "key": "8094", "source": "1497", "target": "1501", "attributes": { "weight": 1 } }, { "key": "21785", "source": "1498", "target": "1437", "attributes": { "weight": 3 } }, { "key": "21787", "source": "1498", "target": "108", "attributes": { "weight": 2 } }, { "key": "8098", "source": "1498", "target": "1455", "attributes": { "weight": 3 } }, { "key": "8099", "source": "1498", "target": "1502", "attributes": { "weight": 1 } }, { "key": "21786", "source": "1498", "target": "103", "attributes": { "weight": 2 } }, { "key": "21788", "source": "1498", "target": "109", "attributes": { "weight": 2 } }, { "key": "21789", "source": "1498", "target": "1458", "attributes": { "weight": 2 } }, { "key": "8097", "source": "1498", "target": "1186", "attributes": { "weight": 1 } }, { "key": "8113", "source": "1499", "target": "1462", "attributes": { "weight": 2 } }, { "key": "8111", "source": "1499", "target": "1435", "attributes": { "weight": 1 } }, { "key": "8115", "source": "1499", "target": "1503", "attributes": { "weight": 1 } }, { "key": "27436", "source": "1499", "target": "3418", "attributes": { "weight": 1 } }, { "key": "8114", "source": "1499", "target": "1261", "attributes": { "weight": 5 } }, { "key": "8112", "source": "1499", "target": "1437", "attributes": { "weight": 3 } }, { "key": "27434", "source": "1499", "target": "2681", "attributes": { "weight": 1 } }, { "key": "8116", "source": "1500", "target": "1261", "attributes": { "weight": 1 } }, { "key": "8118", "source": "1501", "target": "1461", "attributes": { "weight": 1 } }, { "key": "8121", "source": "1501", "target": "1497", "attributes": { "weight": 1 } }, { "key": "8120", "source": "1501", "target": "1481", "attributes": { "weight": 1 } }, { "key": "8119", "source": "1501", "target": "1261", "attributes": { "weight": 1 } }, { "key": "8117", "source": "1501", "target": "1452", "attributes": { "weight": 1 } }, { "key": "8124", "source": "1502", "target": "1306", "attributes": { "weight": 1 } }, { "key": "8125", "source": "1502", "target": "1498", "attributes": { "weight": 1 } }, { "key": "21798", "source": "1502", "target": "109", "attributes": { "weight": 2 } }, { "key": "8126", "source": "1502", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8122", "source": "1502", "target": "1455", "attributes": { "weight": 3 } }, { "key": "8123", "source": "1502", "target": "1485", "attributes": { "weight": 1 } }, { "key": "21797", "source": "1502", "target": "103", "attributes": { "weight": 2 } }, { "key": "8127", "source": "1503", "target": "1499", "attributes": { "weight": 1 } }, { "key": "8128", "source": "1504", "target": "1437", "attributes": { "weight": 1 } }, { "key": "8148", "source": "1505", "target": "604", "attributes": { "weight": 2 } }, { "key": "8147", "source": "1505", "target": "1186", "attributes": { "weight": 2 } }, { "key": "8163", "source": "1505", "target": "1261", "attributes": { "weight": 1 } }, { "key": "8144", "source": "1505", "target": "105", "attributes": { "weight": 1 } }, { "key": "8177", "source": "1505", "target": "1495", "attributes": { "weight": 1 } }, { "key": "8180", "source": "1505", "target": "1502", "attributes": { "weight": 1 } }, { "key": "8169", "source": "1505", "target": "1479", "attributes": { "weight": 1 } }, { "key": "8135", "source": "1505", "target": "1432", "attributes": { "weight": 1 } }, { "key": "8139", "source": "1505", "target": "103", "attributes": { "weight": 3 } }, { "key": "8145", "source": "1505", "target": "106", "attributes": { "weight": 1 } }, { "key": "8167", "source": "1505", "target": "1476", "attributes": { "weight": 1 } }, { "key": "8142", "source": "1505", "target": "1443", "attributes": { "weight": 1 } }, { "key": "8182", "source": "1505", "target": "118", "attributes": { "weight": 1 } }, { "key": "8138", "source": "1505", "target": "1438", "attributes": { "weight": 1 } }, { "key": "8136", "source": "1505", "target": "1433", "attributes": { "weight": 1 } }, { "key": "8140", "source": "1505", "target": "1441", "attributes": { "weight": 1 } }, { "key": "8178", "source": "1505", "target": "115", "attributes": { "weight": 1 } }, { "key": "8151", "source": "1505", "target": "1454", "attributes": { "weight": 1 } }, { "key": "8172", "source": "1505", "target": "607", "attributes": { "weight": 1 } }, { "key": "8174", "source": "1505", "target": "114", "attributes": { "weight": 1 } }, { "key": "8143", "source": "1505", "target": "1444", "attributes": { "weight": 1 } }, { "key": "32939", "source": "1505", "target": "470", "attributes": { "weight": 1 } }, { "key": "8159", "source": "1505", "target": "1465", "attributes": { "weight": 1 } }, { "key": "8179", "source": "1505", "target": "116", "attributes": { "weight": 1 } }, { "key": "8152", "source": "1505", "target": "1455", "attributes": { "weight": 1 } }, { "key": "8175", "source": "1505", "target": "1306", "attributes": { "weight": 1 } }, { "key": "8162", "source": "1505", "target": "1469", "attributes": { "weight": 1 } }, { "key": "8146", "source": "1505", "target": "1448", "attributes": { "weight": 1 } }, { "key": "8176", "source": "1505", "target": "1494", "attributes": { "weight": 1 } }, { "key": "8149", "source": "1505", "target": "1451", "attributes": { "weight": 1 } }, { "key": "8171", "source": "1505", "target": "112", "attributes": { "weight": 1 } }, { "key": "8181", "source": "1505", "target": "117", "attributes": { "weight": 1 } }, { "key": "8184", "source": "1505", "target": "1507", "attributes": { "weight": 1 } }, { "key": "8165", "source": "1505", "target": "1474", "attributes": { "weight": 1 } }, { "key": "8168", "source": "1505", "target": "1478", "attributes": { "weight": 1 } }, { "key": "8170", "source": "1505", "target": "1484", "attributes": { "weight": 1 } }, { "key": "8158", "source": "1505", "target": "1464", "attributes": { "weight": 1 } }, { "key": "8166", "source": "1505", "target": "1475", "attributes": { "weight": 1 } }, { "key": "8157", "source": "1505", "target": "1463", "attributes": { "weight": 1 } }, { "key": "8183", "source": "1505", "target": "1506", "attributes": { "weight": 1 } }, { "key": "8141", "source": "1505", "target": "104", "attributes": { "weight": 1 } }, { "key": "8155", "source": "1505", "target": "1457", "attributes": { "weight": 1 } }, { "key": "8137", "source": "1505", "target": "1434", "attributes": { "weight": 1 } }, { "key": "8156", "source": "1505", "target": "1459", "attributes": { "weight": 1 } }, { "key": "8173", "source": "1505", "target": "1489", "attributes": { "weight": 1 } }, { "key": "8160", "source": "1505", "target": "1466", "attributes": { "weight": 1 } }, { "key": "8153", "source": "1505", "target": "108", "attributes": { "weight": 3 } }, { "key": "8161", "source": "1505", "target": "1468", "attributes": { "weight": 1 } }, { "key": "8154", "source": "1505", "target": "110", "attributes": { "weight": 1 } }, { "key": "8150", "source": "1505", "target": "107", "attributes": { "weight": 1 } }, { "key": "8164", "source": "1505", "target": "1473", "attributes": { "weight": 1 } }, { "key": "8188", "source": "1506", "target": "1495", "attributes": { "weight": 3 } }, { "key": "21800", "source": "1506", "target": "1445", "attributes": { "weight": 2 } }, { "key": "21802", "source": "1506", "target": "109", "attributes": { "weight": 2 } }, { "key": "21801", "source": "1506", "target": "108", "attributes": { "weight": 2 } }, { "key": "8187", "source": "1506", "target": "1186", "attributes": { "weight": 2 } }, { "key": "32239", "source": "1506", "target": "1442", "attributes": { "weight": 1 } }, { "key": "8190", "source": "1506", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8189", "source": "1506", "target": "116", "attributes": { "weight": 2 } }, { "key": "24904", "source": "1506", "target": "103", "attributes": { "weight": 1 } }, { "key": "8192", "source": "1507", "target": "1505", "attributes": { "weight": 1 } }, { "key": "28534", "source": "1507", "target": "604", "attributes": { "weight": 1 } }, { "key": "8191", "source": "1507", "target": "607", "attributes": { "weight": 1 } }, { "key": "21804", "source": "1507", "target": "1454", "attributes": { "weight": 2 } }, { "key": "8202", "source": "1508", "target": "905", "attributes": { "weight": 1 } }, { "key": "22598", "source": "1508", "target": "1513", "attributes": { "weight": 1 } }, { "key": "31090", "source": "1508", "target": "314", "attributes": { "weight": 1 } }, { "key": "22599", "source": "1508", "target": "315", "attributes": { "weight": 1 } }, { "key": "22605", "source": "1509", "target": "1511", "attributes": { "weight": 1 } }, { "key": "8210", "source": "1509", "target": "315", "attributes": { "weight": 2 } }, { "key": "8209", "source": "1509", "target": "1513", "attributes": { "weight": 1 } }, { "key": "22604", "source": "1509", "target": "905", "attributes": { "weight": 1 } }, { "key": "8212", "source": "1510", "target": "1513", "attributes": { "weight": 1 } }, { "key": "14738", "source": "1510", "target": "259", "attributes": { "weight": 1 } }, { "key": "14739", "source": "1510", "target": "168", "attributes": { "weight": 1 } }, { "key": "14740", "source": "1510", "target": "312", "attributes": { "weight": 1 } }, { "key": "14741", "source": "1510", "target": "336", "attributes": { "weight": 1 } }, { "key": "8213", "source": "1511", "target": "1513", "attributes": { "weight": 1 } }, { "key": "22607", "source": "1511", "target": "905", "attributes": { "weight": 1 } }, { "key": "8214", "source": "1511", "target": "315", "attributes": { "weight": 2 } }, { "key": "22608", "source": "1511", "target": "1509", "attributes": { "weight": 1 } }, { "key": "28696", "source": "1512", "target": "1871", "attributes": { "weight": 1 } }, { "key": "28476", "source": "1512", "target": "1823", "attributes": { "weight": 1 } }, { "key": "26847", "source": "1512", "target": "278", "attributes": { "weight": 3 } }, { "key": "28477", "source": "1512", "target": "907", "attributes": { "weight": 1 } }, { "key": "13345", "source": "1512", "target": "304", "attributes": { "weight": 2 } }, { "key": "13963", "source": "1512", "target": "905", "attributes": { "weight": 1 } }, { "key": "22705", "source": "1512", "target": "170", "attributes": { "weight": 4 } }, { "key": "12101", "source": "1512", "target": "1825", "attributes": { "weight": 1 } }, { "key": "28695", "source": "1512", "target": "1870", "attributes": { "weight": 1 } }, { "key": "8218", "source": "1512", "target": "1513", "attributes": { "weight": 1 } }, { "key": "25052", "source": "1512", "target": "1240", "attributes": { "weight": 2 } }, { "key": "12100", "source": "1512", "target": "1824", "attributes": { "weight": 2 } }, { "key": "12096", "source": "1512", "target": "1819", "attributes": { "weight": 4 } }, { "key": "28471", "source": "1512", "target": "1960", "attributes": { "weight": 1 } }, { "key": "12099", "source": "1512", "target": "580", "attributes": { "weight": 5 } }, { "key": "28473", "source": "1512", "target": "1820", "attributes": { "weight": 1 } }, { "key": "12095", "source": "1512", "target": "707", "attributes": { "weight": 3 } }, { "key": "13964", "source": "1512", "target": "180", "attributes": { "weight": 3 } }, { "key": "12094", "source": "1512", "target": "698", "attributes": { "weight": 3 } }, { "key": "28472", "source": "1512", "target": "2540", "attributes": { "weight": 1 } }, { "key": "14274", "source": "1512", "target": "168", "attributes": { "weight": 3 } }, { "key": "28470", "source": "1512", "target": "1979", "attributes": { "weight": 1 } }, { "key": "28467", "source": "1512", "target": "1191", "attributes": { "weight": 1 } }, { "key": "28474", "source": "1512", "target": "2345", "attributes": { "weight": 1 } }, { "key": "23280", "source": "1512", "target": "305", "attributes": { "weight": 3 } }, { "key": "12098", "source": "1512", "target": "579", "attributes": { "weight": 3 } }, { "key": "28469", "source": "1512", "target": "1905", "attributes": { "weight": 1 } }, { "key": "29213", "source": "1512", "target": "582", "attributes": { "weight": 1 } }, { "key": "28697", "source": "1512", "target": "2785", "attributes": { "weight": 1 } }, { "key": "28475", "source": "1512", "target": "1822", "attributes": { "weight": 1 } }, { "key": "12097", "source": "1512", "target": "1821", "attributes": { "weight": 3 } }, { "key": "8224", "source": "1513", "target": "1510", "attributes": { "weight": 1 } }, { "key": "12603", "source": "1513", "target": "578", "attributes": { "weight": 2 } }, { "key": "11748", "source": "1513", "target": "263", "attributes": { "weight": 1 } }, { "key": "8219", "source": "1513", "target": "260", "attributes": { "weight": 1 } }, { "key": "11750", "source": "1513", "target": "312", "attributes": { "weight": 1 } }, { "key": "8221", "source": "1513", "target": "167", "attributes": { "weight": 2 } }, { "key": "22614", "source": "1513", "target": "301", "attributes": { "weight": 1 } }, { "key": "11751", "source": "1513", "target": "327", "attributes": { "weight": 2 } }, { "key": "22613", "source": "1513", "target": "1508", "attributes": { "weight": 1 } }, { "key": "8227", "source": "1513", "target": "1512", "attributes": { "weight": 1 } }, { "key": "22612", "source": "1513", "target": "272", "attributes": { "weight": 1 } }, { "key": "11749", "source": "1513", "target": "300", "attributes": { "weight": 1 } }, { "key": "8226", "source": "1513", "target": "299", "attributes": { "weight": 2 } }, { "key": "8223", "source": "1513", "target": "1509", "attributes": { "weight": 1 } }, { "key": "11747", "source": "1513", "target": "259", "attributes": { "weight": 1 } }, { "key": "31092", "source": "1513", "target": "314", "attributes": { "weight": 1 } }, { "key": "13968", "source": "1513", "target": "170", "attributes": { "weight": 1 } }, { "key": "8222", "source": "1513", "target": "168", "attributes": { "weight": 3 } }, { "key": "8220", "source": "1513", "target": "574", "attributes": { "weight": 1 } }, { "key": "31091", "source": "1513", "target": "313", "attributes": { "weight": 1 } }, { "key": "22615", "source": "1513", "target": "305", "attributes": { "weight": 1 } }, { "key": "8228", "source": "1513", "target": "177", "attributes": { "weight": 1 } }, { "key": "8225", "source": "1513", "target": "1511", "attributes": { "weight": 1 } }, { "key": "8244", "source": "1514", "target": "315", "attributes": { "weight": 1 } }, { "key": "28207", "source": "1515", "target": "839", "attributes": { "weight": 1 } }, { "key": "15051", "source": "1515", "target": "277", "attributes": { "weight": 2 } }, { "key": "28206", "source": "1515", "target": "168", "attributes": { "weight": 1 } }, { "key": "15050", "source": "1515", "target": "268", "attributes": { "weight": 1 } }, { "key": "13809", "source": "1515", "target": "304", "attributes": { "weight": 2 } }, { "key": "15055", "source": "1515", "target": "327", "attributes": { "weight": 2 } }, { "key": "28205", "source": "1515", "target": "263", "attributes": { "weight": 1 } }, { "key": "8248", "source": "1515", "target": "180", "attributes": { "weight": 3 } }, { "key": "15053", "source": "1515", "target": "307", "attributes": { "weight": 1 } }, { "key": "15054", "source": "1515", "target": "322", "attributes": { "weight": 1 } }, { "key": "28208", "source": "1515", "target": "326", "attributes": { "weight": 1 } }, { "key": "17740", "source": "1516", "target": "1380", "attributes": { "weight": 1 } }, { "key": "26382", "source": "1516", "target": "1565", "attributes": { "weight": 1 } }, { "key": "35720", "source": "1516", "target": "3252", "attributes": { "weight": 1 } }, { "key": "35722", "source": "1516", "target": "3253", "attributes": { "weight": 1 } }, { "key": "35729", "source": "1516", "target": "136", "attributes": { "weight": 1 } }, { "key": "35725", "source": "1516", "target": "3255", "attributes": { "weight": 1 } }, { "key": "17743", "source": "1516", "target": "1555", "attributes": { "weight": 1 } }, { "key": "26381", "source": "1516", "target": "454", "attributes": { "weight": 1 } }, { "key": "35730", "source": "1516", "target": "3260", "attributes": { "weight": 1 } }, { "key": "17742", "source": "1516", "target": "40", "attributes": { "weight": 1 } }, { "key": "8252", "source": "1516", "target": "442", "attributes": { "weight": 3 } }, { "key": "35731", "source": "1516", "target": "3261", "attributes": { "weight": 1 } }, { "key": "35726", "source": "1516", "target": "3256", "attributes": { "weight": 1 } }, { "key": "17741", "source": "1516", "target": "38", "attributes": { "weight": 1 } }, { "key": "35732", "source": "1516", "target": "3263", "attributes": { "weight": 1 } }, { "key": "35728", "source": "1516", "target": "2696", "attributes": { "weight": 1 } }, { "key": "8253", "source": "1516", "target": "1558", "attributes": { "weight": 4 } }, { "key": "35727", "source": "1516", "target": "3257", "attributes": { "weight": 1 } }, { "key": "11820", "source": "1516", "target": "468", "attributes": { "weight": 1 } }, { "key": "35733", "source": "1516", "target": "3264", "attributes": { "weight": 1 } }, { "key": "35724", "source": "1516", "target": "2169", "attributes": { "weight": 1 } }, { "key": "17744", "source": "1516", "target": "41", "attributes": { "weight": 1 } }, { "key": "27796", "source": "1516", "target": "339", "attributes": { "weight": 1 } }, { "key": "35721", "source": "1516", "target": "35", "attributes": { "weight": 1 } }, { "key": "35723", "source": "1516", "target": "3254", "attributes": { "weight": 1 } }, { "key": "8254", "source": "1517", "target": "195", "attributes": { "weight": 4 } }, { "key": "8289", "source": "1518", "target": "1363", "attributes": { "weight": 2 } }, { "key": "8429", "source": "1519", "target": "195", "attributes": { "weight": 3 } }, { "key": "21809", "source": "1519", "target": "2293", "attributes": { "weight": 1 } }, { "key": "21811", "source": "1519", "target": "2212", "attributes": { "weight": 1 } }, { "key": "33862", "source": "1519", "target": "123", "attributes": { "weight": 1 } }, { "key": "15500", "source": "1519", "target": "913", "attributes": { "weight": 1 } }, { "key": "21810", "source": "1519", "target": "337", "attributes": { "weight": 1 } }, { "key": "15501", "source": "1519", "target": "925", "attributes": { "weight": 1 } }, { "key": "27530", "source": "1520", "target": "493", "attributes": { "weight": 2 } }, { "key": "24608", "source": "1520", "target": "889", "attributes": { "weight": 3 } }, { "key": "24476", "source": "1520", "target": "790", "attributes": { "weight": 1 } }, { "key": "27510", "source": "1520", "target": "35", "attributes": { "weight": 1 } }, { "key": "22661", "source": "1520", "target": "1037", "attributes": { "weight": 1 } }, { "key": "10393", "source": "1520", "target": "225", "attributes": { "weight": 1 } }, { "key": "27528", "source": "1520", "target": "1060", "attributes": { "weight": 2 } }, { "key": "27522", "source": "1520", "target": "359", "attributes": { "weight": 2 } }, { "key": "24477", "source": "1520", "target": "1801", "attributes": { "weight": 1 } }, { "key": "26392", "source": "1520", "target": "454", "attributes": { "weight": 2 } }, { "key": "18049", "source": "1520", "target": "1036", "attributes": { "weight": 2 } }, { "key": "36945", "source": "1520", "target": "362", "attributes": { "weight": 1 } }, { "key": "11837", "source": "1520", "target": "468", "attributes": { "weight": 2 } }, { "key": "27514", "source": "1520", "target": "2113", "attributes": { "weight": 1 } }, { "key": "24609", "source": "1520", "target": "2118", "attributes": { "weight": 1 } }, { "key": "27525", "source": "1520", "target": "2115", "attributes": { "weight": 2 } }, { "key": "22264", "source": "1520", "target": "794", "attributes": { "weight": 1 } }, { "key": "24747", "source": "1520", "target": "1056", "attributes": { "weight": 3 } }, { "key": "27511", "source": "1520", "target": "432", "attributes": { "weight": 1 } }, { "key": "17334", "source": "1520", "target": "358", "attributes": { "weight": 2 } }, { "key": "31500", "source": "1520", "target": "672", "attributes": { "weight": 1 } }, { "key": "11009", "source": "1520", "target": "452", "attributes": { "weight": 2 } }, { "key": "11010", "source": "1520", "target": "473", "attributes": { "weight": 2 } }, { "key": "11332", "source": "1520", "target": "1742", "attributes": { "weight": 1 } }, { "key": "27515", "source": "1520", "target": "339", "attributes": { "weight": 2 } }, { "key": "29374", "source": "1520", "target": "232", "attributes": { "weight": 1 } }, { "key": "21507", "source": "1520", "target": "89", "attributes": { "weight": 1 } }, { "key": "27527", "source": "1520", "target": "1026", "attributes": { "weight": 2 } }, { "key": "27803", "source": "1520", "target": "891", "attributes": { "weight": 1 } }, { "key": "14293", "source": "1520", "target": "53", "attributes": { "weight": 2 } }, { "key": "27518", "source": "1520", "target": "2114", "attributes": { "weight": 2 } }, { "key": "27520", "source": "1520", "target": "52", "attributes": { "weight": 1 } }, { "key": "27517", "source": "1520", "target": "1046", "attributes": { "weight": 2 } }, { "key": "27529", "source": "1520", "target": "595", "attributes": { "weight": 2 } }, { "key": "27521", "source": "1520", "target": "791", "attributes": { "weight": 2 } }, { "key": "27512", "source": "1520", "target": "2112", "attributes": { "weight": 1 } }, { "key": "17815", "source": "1520", "target": "1380", "attributes": { "weight": 1 } }, { "key": "27524", "source": "1520", "target": "136", "attributes": { "weight": 1 } }, { "key": "9223", "source": "1520", "target": "430", "attributes": { "weight": 1 } }, { "key": "27526", "source": "1520", "target": "2289", "attributes": { "weight": 1 } }, { "key": "27519", "source": "1520", "target": "693", "attributes": { "weight": 1 } }, { "key": "8442", "source": "1520", "target": "442", "attributes": { "weight": 2 } }, { "key": "27523", "source": "1520", "target": "2696", "attributes": { "weight": 1 } }, { "key": "27516", "source": "1520", "target": "1045", "attributes": { "weight": 1 } }, { "key": "27513", "source": "1520", "target": "223", "attributes": { "weight": 1 } }, { "key": "8443", "source": "1521", "target": "1557", "attributes": { "weight": 1 } }, { "key": "10394", "source": "1521", "target": "225", "attributes": { "weight": 1 } }, { "key": "17816", "source": "1521", "target": "133", "attributes": { "weight": 1 } }, { "key": "19383", "source": "1522", "target": "231", "attributes": { "weight": 1 } }, { "key": "11847", "source": "1522", "target": "70", "attributes": { "weight": 3 } }, { "key": "19385", "source": "1522", "target": "489", "attributes": { "weight": 1 } }, { "key": "19373", "source": "1522", "target": "1756", "attributes": { "weight": 1 } }, { "key": "19381", "source": "1522", "target": "2251", "attributes": { "weight": 1 } }, { "key": "11842", "source": "1522", "target": "223", "attributes": { "weight": 1 } }, { "key": "19387", "source": "1522", "target": "235", "attributes": { "weight": 1 } }, { "key": "19386", "source": "1522", "target": "56", "attributes": { "weight": 1 } }, { "key": "11844", "source": "1522", "target": "1363", "attributes": { "weight": 1 } }, { "key": "30650", "source": "1522", "target": "2994", "attributes": { "weight": 1 } }, { "key": "19377", "source": "1522", "target": "443", "attributes": { "weight": 1 } }, { "key": "19380", "source": "1522", "target": "451", "attributes": { "weight": 1 } }, { "key": "11846", "source": "1522", "target": "189", "attributes": { "weight": 1 } }, { "key": "19388", "source": "1522", "target": "194", "attributes": { "weight": 1 } }, { "key": "29379", "source": "1522", "target": "424", "attributes": { "weight": 1 } }, { "key": "11843", "source": "1522", "target": "183", "attributes": { "weight": 1 } }, { "key": "11848", "source": "1522", "target": "57", "attributes": { "weight": 1 } }, { "key": "31250", "source": "1522", "target": "59", "attributes": { "weight": 1 } }, { "key": "31251", "source": "1522", "target": "674", "attributes": { "weight": 1 } }, { "key": "11014", "source": "1522", "target": "220", "attributes": { "weight": 2 } }, { "key": "19384", "source": "1522", "target": "480", "attributes": { "weight": 1 } }, { "key": "19375", "source": "1522", "target": "440", "attributes": { "weight": 1 } }, { "key": "31252", "source": "1522", "target": "791", "attributes": { "weight": 2 } }, { "key": "18441", "source": "1522", "target": "1738", "attributes": { "weight": 1 } }, { "key": "12666", "source": "1522", "target": "695", "attributes": { "weight": 1 } }, { "key": "8461", "source": "1522", "target": "442", "attributes": { "weight": 2 } }, { "key": "16578", "source": "1522", "target": "1754", "attributes": { "weight": 2 } }, { "key": "16579", "source": "1522", "target": "1861", "attributes": { "weight": 1 } }, { "key": "19382", "source": "1522", "target": "1367", "attributes": { "weight": 1 } }, { "key": "19379", "source": "1522", "target": "2244", "attributes": { "weight": 1 } }, { "key": "26403", "source": "1522", "target": "454", "attributes": { "weight": 2 } }, { "key": "19378", "source": "1522", "target": "1070", "attributes": { "weight": 1 } }, { "key": "16580", "source": "1522", "target": "1337", "attributes": { "weight": 1 } }, { "key": "11841", "source": "1522", "target": "434", "attributes": { "weight": 1 } }, { "key": "11845", "source": "1522", "target": "472", "attributes": { "weight": 1 } }, { "key": "19376", "source": "1522", "target": "2243", "attributes": { "weight": 1 } }, { "key": "19374", "source": "1522", "target": "221", "attributes": { "weight": 1 } }, { "key": "16726", "source": "1522", "target": "1354", "attributes": { "weight": 2 } }, { "key": "19372", "source": "1522", "target": "429", "attributes": { "weight": 1 } }, { "key": "8474", "source": "1523", "target": "195", "attributes": { "weight": 3 } }, { "key": "30976", "source": "1524", "target": "638", "attributes": { "weight": 1 } }, { "key": "23236", "source": "1524", "target": "1544", "attributes": { "weight": 2 } }, { "key": "16430", "source": "1524", "target": "1387", "attributes": { "weight": 1 } }, { "key": "25853", "source": "1524", "target": "163", "attributes": { "weight": 2 } }, { "key": "26179", "source": "1524", "target": "38", "attributes": { "weight": 3 } }, { "key": "17829", "source": "1524", "target": "1380", "attributes": { "weight": 1 } }, { "key": "10404", "source": "1524", "target": "225", "attributes": { "weight": 1 } }, { "key": "36220", "source": "1524", "target": "1386", "attributes": { "weight": 1 } }, { "key": "25852", "source": "1524", "target": "1384", "attributes": { "weight": 3 } }, { "key": "8486", "source": "1524", "target": "442", "attributes": { "weight": 2 } }, { "key": "26278", "source": "1524", "target": "2642", "attributes": { "weight": 1 } }, { "key": "17830", "source": "1524", "target": "133", "attributes": { "weight": 3 } }, { "key": "10405", "source": "1524", "target": "1559", "attributes": { "weight": 4 } }, { "key": "8666", "source": "1525", "target": "195", "attributes": { "weight": 3 } }, { "key": "25514", "source": "1526", "target": "2600", "attributes": { "weight": 1 } }, { "key": "18648", "source": "1526", "target": "1162", "attributes": { "weight": 2 } }, { "key": "18656", "source": "1526", "target": "405", "attributes": { "weight": 2 } }, { "key": "18659", "source": "1526", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18647", "source": "1526", "target": "1152", "attributes": { "weight": 2 } }, { "key": "36529", "source": "1526", "target": "1342", "attributes": { "weight": 1 } }, { "key": "18653", "source": "1526", "target": "1263", "attributes": { "weight": 2 } }, { "key": "18660", "source": "1526", "target": "124", "attributes": { "weight": 2 } }, { "key": "18646", "source": "1526", "target": "1148", "attributes": { "weight": 2 } }, { "key": "18649", "source": "1526", "target": "1228", "attributes": { "weight": 2 } }, { "key": "36525", "source": "1526", "target": "2193", "attributes": { "weight": 1 } }, { "key": "18658", "source": "1526", "target": "1323", "attributes": { "weight": 1 } }, { "key": "36527", "source": "1526", "target": "2229", "attributes": { "weight": 1 } }, { "key": "36528", "source": "1526", "target": "1234", "attributes": { "weight": 1 } }, { "key": "18652", "source": "1526", "target": "1260", "attributes": { "weight": 2 } }, { "key": "18650", "source": "1526", "target": "1248", "attributes": { "weight": 2 } }, { "key": "8676", "source": "1526", "target": "195", "attributes": { "weight": 4 } }, { "key": "33996", "source": "1526", "target": "1233", "attributes": { "weight": 1 } }, { "key": "36524", "source": "1526", "target": "1140", "attributes": { "weight": 1 } }, { "key": "18654", "source": "1526", "target": "926", "attributes": { "weight": 2 } }, { "key": "18651", "source": "1526", "target": "1255", "attributes": { "weight": 2 } }, { "key": "18655", "source": "1526", "target": "1286", "attributes": { "weight": 2 } }, { "key": "18657", "source": "1526", "target": "1322", "attributes": { "weight": 1 } }, { "key": "36526", "source": "1526", "target": "1201", "attributes": { "weight": 1 } }, { "key": "24616", "source": "1527", "target": "163", "attributes": { "weight": 6 } }, { "key": "30986", "source": "1527", "target": "638", "attributes": { "weight": 1 } }, { "key": "36221", "source": "1527", "target": "1386", "attributes": { "weight": 1 } }, { "key": "17353", "source": "1527", "target": "358", "attributes": { "weight": 1 } }, { "key": "27846", "source": "1527", "target": "1539", "attributes": { "weight": 1 } }, { "key": "17841", "source": "1527", "target": "1380", "attributes": { "weight": 1 } }, { "key": "29926", "source": "1527", "target": "1538", "attributes": { "weight": 1 } }, { "key": "17842", "source": "1527", "target": "1548", "attributes": { "weight": 1 } }, { "key": "29928", "source": "1527", "target": "2905", "attributes": { "weight": 1 } }, { "key": "32335", "source": "1527", "target": "791", "attributes": { "weight": 1 } }, { "key": "29929", "source": "1527", "target": "2625", "attributes": { "weight": 1 } }, { "key": "30358", "source": "1527", "target": "1046", "attributes": { "weight": 1 } }, { "key": "8677", "source": "1527", "target": "220", "attributes": { "weight": 3 } }, { "key": "29924", "source": "1527", "target": "2903", "attributes": { "weight": 1 } }, { "key": "29930", "source": "1527", "target": "2906", "attributes": { "weight": 1 } }, { "key": "29925", "source": "1527", "target": "1133", "attributes": { "weight": 2 } }, { "key": "29927", "source": "1527", "target": "1541", "attributes": { "weight": 3 } }, { "key": "37468", "source": "1527", "target": "1530", "attributes": { "weight": 1 } }, { "key": "36949", "source": "1527", "target": "362", "attributes": { "weight": 1 } }, { "key": "17843", "source": "1527", "target": "562", "attributes": { "weight": 4 } }, { "key": "32650", "source": "1527", "target": "2626", "attributes": { "weight": 1 } }, { "key": "27845", "source": "1527", "target": "339", "attributes": { "weight": 1 } }, { "key": "8681", "source": "1528", "target": "195", "attributes": { "weight": 3 } }, { "key": "8689", "source": "1529", "target": "1363", "attributes": { "weight": 2 } }, { "key": "37470", "source": "1530", "target": "2689", "attributes": { "weight": 1 } }, { "key": "37469", "source": "1530", "target": "1527", "attributes": { "weight": 1 } }, { "key": "27452", "source": "1530", "target": "2685", "attributes": { "weight": 1 } }, { "key": "31128", "source": "1530", "target": "1562", "attributes": { "weight": 2 } }, { "key": "8702", "source": "1530", "target": "1538", "attributes": { "weight": 5 } }, { "key": "27453", "source": "1530", "target": "2687", "attributes": { "weight": 2 } }, { "key": "27454", "source": "1530", "target": "1567", "attributes": { "weight": 3 } }, { "key": "8704", "source": "1531", "target": "436", "attributes": { "weight": 2 } }, { "key": "29399", "source": "1531", "target": "232", "attributes": { "weight": 1 } }, { "key": "19880", "source": "1531", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19879", "source": "1531", "target": "227", "attributes": { "weight": 1 } }, { "key": "36542", "source": "1532", "target": "124", "attributes": { "weight": 1 } }, { "key": "36539", "source": "1532", "target": "1165", "attributes": { "weight": 1 } }, { "key": "8705", "source": "1532", "target": "195", "attributes": { "weight": 3 } }, { "key": "36540", "source": "1532", "target": "1174", "attributes": { "weight": 1 } }, { "key": "36541", "source": "1532", "target": "1228", "attributes": { "weight": 1 } }, { "key": "19914", "source": "1533", "target": "1836", "attributes": { "weight": 1 } }, { "key": "8709", "source": "1533", "target": "1564", "attributes": { "weight": 2 } }, { "key": "23586", "source": "1533", "target": "1312", "attributes": { "weight": 1 } }, { "key": "19915", "source": "1533", "target": "489", "attributes": { "weight": 1 } }, { "key": "19911", "source": "1533", "target": "51", "attributes": { "weight": 1 } }, { "key": "32162", "source": "1533", "target": "3088", "attributes": { "weight": 1 } }, { "key": "19912", "source": "1533", "target": "2245", "attributes": { "weight": 1 } }, { "key": "8708", "source": "1533", "target": "1535", "attributes": { "weight": 2 } }, { "key": "19913", "source": "1533", "target": "1832", "attributes": { "weight": 1 } }, { "key": "8711", "source": "1534", "target": "322", "attributes": { "weight": 4 } }, { "key": "12202", "source": "1535", "target": "1161", "attributes": { "weight": 1 } }, { "key": "24416", "source": "1535", "target": "475", "attributes": { "weight": 1 } }, { "key": "8716", "source": "1535", "target": "442", "attributes": { "weight": 2 } }, { "key": "12204", "source": "1535", "target": "183", "attributes": { "weight": 1 } }, { "key": "12211", "source": "1535", "target": "231", "attributes": { "weight": 3 } }, { "key": "12206", "source": "1535", "target": "451", "attributes": { "weight": 2 } }, { "key": "12205", "source": "1535", "target": "450", "attributes": { "weight": 1 } }, { "key": "12200", "source": "1535", "target": "1354", "attributes": { "weight": 1 } }, { "key": "12207", "source": "1535", "target": "1359", "attributes": { "weight": 1 } }, { "key": "25914", "source": "1535", "target": "1367", "attributes": { "weight": 1 } }, { "key": "24415", "source": "1535", "target": "2502", "attributes": { "weight": 1 } }, { "key": "12208", "source": "1535", "target": "1219", "attributes": { "weight": 1 } }, { "key": "8717", "source": "1535", "target": "1533", "attributes": { "weight": 2 } }, { "key": "12203", "source": "1535", "target": "449", "attributes": { "weight": 1 } }, { "key": "12209", "source": "1535", "target": "1362", "attributes": { "weight": 1 } }, { "key": "8718", "source": "1535", "target": "1130", "attributes": { "weight": 2 } }, { "key": "12201", "source": "1535", "target": "220", "attributes": { "weight": 1 } }, { "key": "12199", "source": "1535", "target": "429", "attributes": { "weight": 1 } }, { "key": "12210", "source": "1535", "target": "472", "attributes": { "weight": 1 } }, { "key": "35306", "source": "1536", "target": "191", "attributes": { "weight": 1 } }, { "key": "35307", "source": "1536", "target": "477", "attributes": { "weight": 1 } }, { "key": "20089", "source": "1536", "target": "441", "attributes": { "weight": 1 } }, { "key": "20092", "source": "1536", "target": "2189", "attributes": { "weight": 1 } }, { "key": "32383", "source": "1536", "target": "791", "attributes": { "weight": 1 } }, { "key": "20091", "source": "1536", "target": "489", "attributes": { "weight": 1 } }, { "key": "11139", "source": "1536", "target": "452", "attributes": { "weight": 1 } }, { "key": "24059", "source": "1536", "target": "130", "attributes": { "weight": 2 } }, { "key": "26562", "source": "1536", "target": "189", "attributes": { "weight": 1 } }, { "key": "20088", "source": "1536", "target": "439", "attributes": { "weight": 1 } }, { "key": "35305", "source": "1536", "target": "190", "attributes": { "weight": 1 } }, { "key": "8748", "source": "1536", "target": "442", "attributes": { "weight": 2 } }, { "key": "11879", "source": "1536", "target": "135", "attributes": { "weight": 1 } }, { "key": "20090", "source": "1536", "target": "2245", "attributes": { "weight": 1 } }, { "key": "9962", "source": "1536", "target": "1093", "attributes": { "weight": 2 } }, { "key": "30885", "source": "1536", "target": "3", "attributes": { "weight": 1 } }, { "key": "35304", "source": "1536", "target": "445", "attributes": { "weight": 1 } }, { "key": "8755", "source": "1537", "target": "195", "attributes": { "weight": 3 } }, { "key": "11406", "source": "1538", "target": "560", "attributes": { "weight": 1 } }, { "key": "27457", "source": "1538", "target": "1567", "attributes": { "weight": 1 } }, { "key": "29933", "source": "1538", "target": "1527", "attributes": { "weight": 1 } }, { "key": "35186", "source": "1538", "target": "1530", "attributes": { "weight": 2 } }, { "key": "24623", "source": "1538", "target": "161", "attributes": { "weight": 1 } }, { "key": "8760", "source": "1538", "target": "163", "attributes": { "weight": 3 } }, { "key": "35187", "source": "1538", "target": "1562", "attributes": { "weight": 1 } }, { "key": "31005", "source": "1539", "target": "1809", "attributes": { "weight": 1 } }, { "key": "17891", "source": "1539", "target": "1380", "attributes": { "weight": 2 } }, { "key": "27856", "source": "1539", "target": "1527", "attributes": { "weight": 1 } }, { "key": "8769", "source": "1539", "target": "1550", "attributes": { "weight": 11 } }, { "key": "34918", "source": "1539", "target": "3025", "attributes": { "weight": 1 } }, { "key": "34919", "source": "1539", "target": "1815", "attributes": { "weight": 1 } }, { "key": "11887", "source": "1539", "target": "638", "attributes": { "weight": 3 } }, { "key": "12550", "source": "1539", "target": "1866", "attributes": { "weight": 1 } }, { "key": "17892", "source": "1539", "target": "1548", "attributes": { "weight": 1 } }, { "key": "8770", "source": "1539", "target": "163", "attributes": { "weight": 3 } }, { "key": "32053", "source": "1539", "target": "1816", "attributes": { "weight": 1 } }, { "key": "8781", "source": "1540", "target": "1543", "attributes": { "weight": 2 } }, { "key": "8792", "source": "1541", "target": "1527", "attributes": { "weight": 6 } }, { "key": "18086", "source": "1541", "target": "1787", "attributes": { "weight": 2 } }, { "key": "36224", "source": "1541", "target": "1386", "attributes": { "weight": 1 } }, { "key": "17904", "source": "1541", "target": "562", "attributes": { "weight": 2 } }, { "key": "17903", "source": "1541", "target": "1380", "attributes": { "weight": 2 } }, { "key": "26056", "source": "1541", "target": "163", "attributes": { "weight": 2 } }, { "key": "29934", "source": "1541", "target": "1133", "attributes": { "weight": 2 } }, { "key": "32532", "source": "1541", "target": "560", "attributes": { "weight": 1 } }, { "key": "26055", "source": "1541", "target": "2625", "attributes": { "weight": 2 } }, { "key": "9598", "source": "1542", "target": "171", "attributes": { "weight": 2 } }, { "key": "15182", "source": "1542", "target": "1621", "attributes": { "weight": 2 } }, { "key": "18391", "source": "1542", "target": "830", "attributes": { "weight": 1 } }, { "key": "8794", "source": "1542", "target": "164", "attributes": { "weight": 8 } }, { "key": "18392", "source": "1542", "target": "178", "attributes": { "weight": 2 } }, { "key": "29570", "source": "1542", "target": "1966", "attributes": { "weight": 1 } }, { "key": "8798", "source": "1543", "target": "457", "attributes": { "weight": 2 } }, { "key": "15423", "source": "1544", "target": "136", "attributes": { "weight": 2 } }, { "key": "17910", "source": "1544", "target": "1380", "attributes": { "weight": 1 } }, { "key": "8808", "source": "1544", "target": "442", "attributes": { "weight": 1 } }, { "key": "15422", "source": "1544", "target": "38", "attributes": { "weight": 3 } }, { "key": "32551", "source": "1544", "target": "791", "attributes": { "weight": 1 } }, { "key": "30131", "source": "1544", "target": "133", "attributes": { "weight": 3 } }, { "key": "17913", "source": "1544", "target": "1557", "attributes": { "weight": 1 } }, { "key": "23240", "source": "1544", "target": "1524", "attributes": { "weight": 2 } }, { "key": "23239", "source": "1544", "target": "34", "attributes": { "weight": 1 } }, { "key": "10500", "source": "1544", "target": "1565", "attributes": { "weight": 1 } }, { "key": "17912", "source": "1544", "target": "40", "attributes": { "weight": 1 } }, { "key": "17914", "source": "1544", "target": "1559", "attributes": { "weight": 3 } }, { "key": "36238", "source": "1544", "target": "1386", "attributes": { "weight": 1 } }, { "key": "10499", "source": "1544", "target": "225", "attributes": { "weight": 1 } }, { "key": "17911", "source": "1544", "target": "1384", "attributes": { "weight": 1 } }, { "key": "31042", "source": "1544", "target": "638", "attributes": { "weight": 1 } }, { "key": "8828", "source": "1545", "target": "436", "attributes": { "weight": 2 } }, { "key": "23350", "source": "1545", "target": "483", "attributes": { "weight": 1 } }, { "key": "23349", "source": "1545", "target": "231", "attributes": { "weight": 1 } }, { "key": "23346", "source": "1545", "target": "1703", "attributes": { "weight": 1 } }, { "key": "23348", "source": "1545", "target": "1121", "attributes": { "weight": 1 } }, { "key": "8827", "source": "1545", "target": "1107", "attributes": { "weight": 2 } }, { "key": "23347", "source": "1545", "target": "458", "attributes": { "weight": 1 } }, { "key": "32168", "source": "1546", "target": "1125", "attributes": { "weight": 1 } }, { "key": "20329", "source": "1546", "target": "51", "attributes": { "weight": 1 } }, { "key": "8831", "source": "1546", "target": "1564", "attributes": { "weight": 2 } }, { "key": "13842", "source": "1546", "target": "1936", "attributes": { "weight": 1 } }, { "key": "20331", "source": "1546", "target": "1247", "attributes": { "weight": 1 } }, { "key": "20330", "source": "1546", "target": "1832", "attributes": { "weight": 1 } }, { "key": "13843", "source": "1546", "target": "228", "attributes": { "weight": 1 } }, { "key": "20333", "source": "1546", "target": "489", "attributes": { "weight": 1 } }, { "key": "20332", "source": "1546", "target": "1836", "attributes": { "weight": 1 } }, { "key": "32167", "source": "1546", "target": "474", "attributes": { "weight": 1 } }, { "key": "8841", "source": "1547", "target": "442", "attributes": { "weight": 2 } }, { "key": "36003", "source": "1547", "target": "2258", "attributes": { "weight": 1 } }, { "key": "36002", "source": "1547", "target": "2245", "attributes": { "weight": 1 } }, { "key": "25105", "source": "1547", "target": "497", "attributes": { "weight": 2 } }, { "key": "33499", "source": "1547", "target": "489", "attributes": { "weight": 1 } }, { "key": "25093", "source": "1547", "target": "674", "attributes": { "weight": 2 } }, { "key": "10906", "source": "1547", "target": "457", "attributes": { "weight": 1 } }, { "key": "25383", "source": "1547", "target": "433", "attributes": { "weight": 1 } }, { "key": "25103", "source": "1547", "target": "1093", "attributes": { "weight": 1 } }, { "key": "25094", "source": "1547", "target": "454", "attributes": { "weight": 2 } }, { "key": "25104", "source": "1547", "target": "495", "attributes": { "weight": 2 } }, { "key": "25106", "source": "1547", "target": "57", "attributes": { "weight": 2 } }, { "key": "25099", "source": "1547", "target": "486", "attributes": { "weight": 1 } }, { "key": "25102", "source": "1547", "target": "1775", "attributes": { "weight": 2 } }, { "key": "25100", "source": "1547", "target": "428", "attributes": { "weight": 1 } }, { "key": "25098", "source": "1547", "target": "427", "attributes": { "weight": 1 } }, { "key": "25101", "source": "1547", "target": "595", "attributes": { "weight": 2 } }, { "key": "25091", "source": "1547", "target": "220", "attributes": { "weight": 1 } }, { "key": "25095", "source": "1547", "target": "791", "attributes": { "weight": 2 } }, { "key": "25096", "source": "1547", "target": "189", "attributes": { "weight": 2 } }, { "key": "25097", "source": "1547", "target": "479", "attributes": { "weight": 1 } }, { "key": "25092", "source": "1547", "target": "223", "attributes": { "weight": 2 } }, { "key": "17933", "source": "1548", "target": "1539", "attributes": { "weight": 1 } }, { "key": "31043", "source": "1548", "target": "638", "attributes": { "weight": 1 } }, { "key": "8842", "source": "1548", "target": "1550", "attributes": { "weight": 5 } }, { "key": "8843", "source": "1548", "target": "163", "attributes": { "weight": 3 } }, { "key": "17931", "source": "1548", "target": "2167", "attributes": { "weight": 1 } }, { "key": "17932", "source": "1548", "target": "1527", "attributes": { "weight": 1 } }, { "key": "30518", "source": "1549", "target": "281", "attributes": { "weight": 1 } }, { "key": "30520", "source": "1549", "target": "175", "attributes": { "weight": 2 } }, { "key": "30519", "source": "1549", "target": "2985", "attributes": { "weight": 1 } }, { "key": "30517", "source": "1549", "target": "574", "attributes": { "weight": 2 } }, { "key": "26281", "source": "1549", "target": "1642", "attributes": { "weight": 2 } }, { "key": "8845", "source": "1549", "target": "164", "attributes": { "weight": 4 } }, { "key": "30516", "source": "1549", "target": "830", "attributes": { "weight": 1 } }, { "key": "29230", "source": "1550", "target": "2836", "attributes": { "weight": 1 } }, { "key": "29231", "source": "1550", "target": "1995", "attributes": { "weight": 1 } }, { "key": "31046", "source": "1550", "target": "638", "attributes": { "weight": 1 } }, { "key": "29228", "source": "1550", "target": "2835", "attributes": { "weight": 1 } }, { "key": "31045", "source": "1550", "target": "1809", "attributes": { "weight": 1 } }, { "key": "16467", "source": "1550", "target": "1387", "attributes": { "weight": 1 } }, { "key": "29229", "source": "1550", "target": "1551", "attributes": { "weight": 1 } }, { "key": "12555", "source": "1550", "target": "1866", "attributes": { "weight": 1 } }, { "key": "17485", "source": "1550", "target": "358", "attributes": { "weight": 1 } }, { "key": "8850", "source": "1550", "target": "163", "attributes": { "weight": 4 } }, { "key": "8848", "source": "1550", "target": "1539", "attributes": { "weight": 7 } }, { "key": "29227", "source": "1550", "target": "2834", "attributes": { "weight": 1 } }, { "key": "26061", "source": "1550", "target": "1816", "attributes": { "weight": 2 } }, { "key": "8847", "source": "1550", "target": "220", "attributes": { "weight": 3 } }, { "key": "8849", "source": "1550", "target": "1548", "attributes": { "weight": 5 } }, { "key": "17939", "source": "1550", "target": "2167", "attributes": { "weight": 1 } }, { "key": "17938", "source": "1550", "target": "1380", "attributes": { "weight": 1 } }, { "key": "11998", "source": "1551", "target": "638", "attributes": { "weight": 2 } }, { "key": "29233", "source": "1551", "target": "1550", "attributes": { "weight": 1 } }, { "key": "31047", "source": "1551", "target": "3028", "attributes": { "weight": 1 } }, { "key": "8852", "source": "1551", "target": "1539", "attributes": { "weight": 3 } }, { "key": "18254", "source": "1552", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18784", "source": "1552", "target": "1152", "attributes": { "weight": 2 } }, { "key": "29248", "source": "1552", "target": "2840", "attributes": { "weight": 1 } }, { "key": "18829", "source": "1552", "target": "1321", "attributes": { "weight": 2 } }, { "key": "15999", "source": "1552", "target": "913", "attributes": { "weight": 3 } }, { "key": "18824", "source": "1552", "target": "1305", "attributes": { "weight": 2 } }, { "key": "8874", "source": "1552", "target": "195", "attributes": { "weight": 5 } }, { "key": "18821", "source": "1552", "target": "1296", "attributes": { "weight": 2 } }, { "key": "18835", "source": "1552", "target": "124", "attributes": { "weight": 2 } }, { "key": "18836", "source": "1552", "target": "218", "attributes": { "weight": 2 } }, { "key": "18782", "source": "1552", "target": "1140", "attributes": { "weight": 2 } }, { "key": "18820", "source": "1552", "target": "1294", "attributes": { "weight": 2 } }, { "key": "18812", "source": "1552", "target": "926", "attributes": { "weight": 2 } }, { "key": "18814", "source": "1552", "target": "1286", "attributes": { "weight": 2 } }, { "key": "18799", "source": "1552", "target": "1228", "attributes": { "weight": 2 } }, { "key": "18806", "source": "1552", "target": "1255", "attributes": { "weight": 2 } }, { "key": "18810", "source": "1552", "target": "924", "attributes": { "weight": 2 } }, { "key": "18832", "source": "1552", "target": "1326", "attributes": { "weight": 2 } }, { "key": "18834", "source": "1552", "target": "1331", "attributes": { "weight": 2 } }, { "key": "18794", "source": "1552", "target": "1184", "attributes": { "weight": 2 } }, { "key": "18789", "source": "1552", "target": "1172", "attributes": { "weight": 2 } }, { "key": "18818", "source": "1552", "target": "1291", "attributes": { "weight": 2 } }, { "key": "18808", "source": "1552", "target": "1263", "attributes": { "weight": 2 } }, { "key": "18786", "source": "1552", "target": "1162", "attributes": { "weight": 2 } }, { "key": "18826", "source": "1552", "target": "215", "attributes": { "weight": 2 } }, { "key": "37160", "source": "1552", "target": "390", "attributes": { "weight": 1 } }, { "key": "18785", "source": "1552", "target": "1156", "attributes": { "weight": 2 } }, { "key": "18822", "source": "1552", "target": "372", "attributes": { "weight": 1 } }, { "key": "18827", "source": "1552", "target": "1315", "attributes": { "weight": 2 } }, { "key": "18798", "source": "1552", "target": "918", "attributes": { "weight": 2 } }, { "key": "18817", "source": "1552", "target": "1289", "attributes": { "weight": 2 } }, { "key": "18807", "source": "1552", "target": "1262", "attributes": { "weight": 1 } }, { "key": "18838", "source": "1552", "target": "1343", "attributes": { "weight": 2 } }, { "key": "18811", "source": "1552", "target": "1268", "attributes": { "weight": 2 } }, { "key": "36648", "source": "1552", "target": "2193", "attributes": { "weight": 1 } }, { "key": "18791", "source": "1552", "target": "1180", "attributes": { "weight": 2 } }, { "key": "18805", "source": "1552", "target": "921", "attributes": { "weight": 2 } }, { "key": "29537", "source": "1552", "target": "1415", "attributes": { "weight": 1 } }, { "key": "16000", "source": "1552", "target": "925", "attributes": { "weight": 4 } }, { "key": "18795", "source": "1552", "target": "387", "attributes": { "weight": 1 } }, { "key": "37162", "source": "1552", "target": "416", "attributes": { "weight": 1 } }, { "key": "36651", "source": "1552", "target": "1308", "attributes": { "weight": 1 } }, { "key": "18796", "source": "1552", "target": "1199", "attributes": { "weight": 2 } }, { "key": "18837", "source": "1552", "target": "1342", "attributes": { "weight": 2 } }, { "key": "18804", "source": "1552", "target": "338", "attributes": { "weight": 2 } }, { "key": "37159", "source": "1552", "target": "1163", "attributes": { "weight": 1 } }, { "key": "18813", "source": "1552", "target": "1284", "attributes": { "weight": 2 } }, { "key": "18803", "source": "1552", "target": "337", "attributes": { "weight": 2 } }, { "key": "18256", "source": "1552", "target": "2205", "attributes": { "weight": 1 } }, { "key": "18800", "source": "1552", "target": "1232", "attributes": { "weight": 2 } }, { "key": "36649", "source": "1552", "target": "199", "attributes": { "weight": 1 } }, { "key": "18255", "source": "1552", "target": "2200", "attributes": { "weight": 1 } }, { "key": "18801", "source": "1552", "target": "1234", "attributes": { "weight": 2 } }, { "key": "18787", "source": "1552", "target": "1165", "attributes": { "weight": 2 } }, { "key": "18825", "source": "1552", "target": "1309", "attributes": { "weight": 2 } }, { "key": "18792", "source": "1552", "target": "1182", "attributes": { "weight": 2 } }, { "key": "18819", "source": "1552", "target": "1090", "attributes": { "weight": 2 } }, { "key": "37161", "source": "1552", "target": "1272", "attributes": { "weight": 1 } }, { "key": "18809", "source": "1552", "target": "208", "attributes": { "weight": 2 } }, { "key": "18831", "source": "1552", "target": "1323", "attributes": { "weight": 2 } }, { "key": "18797", "source": "1552", "target": "1047", "attributes": { "weight": 2 } }, { "key": "18815", "source": "1552", "target": "1287", "attributes": { "weight": 2 } }, { "key": "18802", "source": "1552", "target": "1241", "attributes": { "weight": 2 } }, { "key": "18788", "source": "1552", "target": "938", "attributes": { "weight": 2 } }, { "key": "18783", "source": "1552", "target": "933", "attributes": { "weight": 2 } }, { "key": "18816", "source": "1552", "target": "1288", "attributes": { "weight": 2 } }, { "key": "18830", "source": "1552", "target": "1322", "attributes": { "weight": 2 } }, { "key": "18823", "source": "1552", "target": "1301", "attributes": { "weight": 2 } }, { "key": "36650", "source": "1552", "target": "205", "attributes": { "weight": 1 } }, { "key": "18790", "source": "1552", "target": "1174", "attributes": { "weight": 2 } }, { "key": "29247", "source": "1552", "target": "2839", "attributes": { "weight": 1 } }, { "key": "18828", "source": "1552", "target": "405", "attributes": { "weight": 2 } }, { "key": "18793", "source": "1552", "target": "779", "attributes": { "weight": 2 } }, { "key": "18833", "source": "1552", "target": "1329", "attributes": { "weight": 2 } }, { "key": "27742", "source": "1553", "target": "305", "attributes": { "weight": 1 } }, { "key": "9510", "source": "1553", "target": "644", "attributes": { "weight": 2 } }, { "key": "23260", "source": "1553", "target": "1772", "attributes": { "weight": 1 } }, { "key": "27736", "source": "1553", "target": "636", "attributes": { "weight": 1 } }, { "key": "9512", "source": "1553", "target": "419", "attributes": { "weight": 2 } }, { "key": "26063", "source": "1553", "target": "163", "attributes": { "weight": 2 } }, { "key": "27743", "source": "1553", "target": "2711", "attributes": { "weight": 1 } }, { "key": "31482", "source": "1553", "target": "1125", "attributes": { "weight": 1 } }, { "key": "8917", "source": "1553", "target": "1562", "attributes": { "weight": 4 } }, { "key": "17498", "source": "1553", "target": "358", "attributes": { "weight": 2 } }, { "key": "9511", "source": "1553", "target": "645", "attributes": { "weight": 2 } }, { "key": "12007", "source": "1553", "target": "638", "attributes": { "weight": 3 } }, { "key": "27738", "source": "1553", "target": "168", "attributes": { "weight": 1 } }, { "key": "27464", "source": "1553", "target": "1567", "attributes": { "weight": 2 } }, { "key": "8916", "source": "1553", "target": "442", "attributes": { "weight": 2 } }, { "key": "15339", "source": "1553", "target": "454", "attributes": { "weight": 1 } }, { "key": "27740", "source": "1553", "target": "304", "attributes": { "weight": 1 } }, { "key": "35003", "source": "1553", "target": "352", "attributes": { "weight": 1 } }, { "key": "12008", "source": "1553", "target": "135", "attributes": { "weight": 2 } }, { "key": "24352", "source": "1553", "target": "452", "attributes": { "weight": 1 } }, { "key": "27629", "source": "1553", "target": "171", "attributes": { "weight": 2 } }, { "key": "27741", "source": "1553", "target": "173", "attributes": { "weight": 1 } }, { "key": "27737", "source": "1553", "target": "1809", "attributes": { "weight": 1 } }, { "key": "27739", "source": "1553", "target": "468", "attributes": { "weight": 1 } }, { "key": "8918", "source": "1553", "target": "1570", "attributes": { "weight": 3 } }, { "key": "28074", "source": "1554", "target": "316", "attributes": { "weight": 1 } }, { "key": "14748", "source": "1554", "target": "304", "attributes": { "weight": 1 } }, { "key": "8940", "source": "1554", "target": "307", "attributes": { "weight": 2 } }, { "key": "14747", "source": "1554", "target": "261", "attributes": { "weight": 1 } }, { "key": "32580", "source": "1555", "target": "791", "attributes": { "weight": 1 } }, { "key": "17956", "source": "1555", "target": "41", "attributes": { "weight": 1 } }, { "key": "8957", "source": "1555", "target": "442", "attributes": { "weight": 1 } }, { "key": "17954", "source": "1555", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17955", "source": "1555", "target": "133", "attributes": { "weight": 1 } }, { "key": "31115", "source": "1555", "target": "2696", "attributes": { "weight": 1 } }, { "key": "30134", "source": "1555", "target": "1557", "attributes": { "weight": 1 } }, { "key": "30133", "source": "1555", "target": "2952", "attributes": { "weight": 1 } }, { "key": "17953", "source": "1555", "target": "1516", "attributes": { "weight": 1 } }, { "key": "24172", "source": "1556", "target": "54", "attributes": { "weight": 1 } }, { "key": "16426", "source": "1556", "target": "39", "attributes": { "weight": 3 } }, { "key": "33068", "source": "1556", "target": "493", "attributes": { "weight": 1 } }, { "key": "26187", "source": "1556", "target": "36", "attributes": { "weight": 1 } }, { "key": "26189", "source": "1556", "target": "2631", "attributes": { "weight": 1 } }, { "key": "26188", "source": "1556", "target": "2630", "attributes": { "weight": 1 } }, { "key": "8959", "source": "1556", "target": "442", "attributes": { "weight": 1 } }, { "key": "8960", "source": "1556", "target": "132", "attributes": { "weight": 1 } }, { "key": "10523", "source": "1556", "target": "225", "attributes": { "weight": 2 } }, { "key": "10524", "source": "1557", "target": "225", "attributes": { "weight": 1 } }, { "key": "30136", "source": "1557", "target": "2950", "attributes": { "weight": 1 } }, { "key": "26090", "source": "1557", "target": "163", "attributes": { "weight": 1 } }, { "key": "8963", "source": "1557", "target": "442", "attributes": { "weight": 2 } }, { "key": "17962", "source": "1557", "target": "1544", "attributes": { "weight": 1 } }, { "key": "26719", "source": "1557", "target": "223", "attributes": { "weight": 4 } }, { "key": "10525", "source": "1557", "target": "133", "attributes": { "weight": 7 } }, { "key": "9014", "source": "1558", "target": "1516", "attributes": { "weight": 4 } }, { "key": "26732", "source": "1558", "target": "136", "attributes": { "weight": 4 } }, { "key": "17966", "source": "1559", "target": "1380", "attributes": { "weight": 1 } }, { "key": "10546", "source": "1559", "target": "1524", "attributes": { "weight": 4 } }, { "key": "17967", "source": "1559", "target": "1544", "attributes": { "weight": 3 } }, { "key": "17084", "source": "1559", "target": "2097", "attributes": { "weight": 1 } }, { "key": "10547", "source": "1559", "target": "225", "attributes": { "weight": 1 } }, { "key": "26193", "source": "1559", "target": "38", "attributes": { "weight": 4 } }, { "key": "9020", "source": "1559", "target": "442", "attributes": { "weight": 2 } }, { "key": "30107", "source": "1559", "target": "133", "attributes": { "weight": 1 } }, { "key": "31058", "source": "1559", "target": "638", "attributes": { "weight": 1 } }, { "key": "9037", "source": "1560", "target": "442", "attributes": { "weight": 1 } }, { "key": "10562", "source": "1560", "target": "225", "attributes": { "weight": 1 } }, { "key": "20879", "source": "1560", "target": "1087", "attributes": { "weight": 1 } }, { "key": "20875", "source": "1560", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20876", "source": "1560", "target": "2245", "attributes": { "weight": 1 } }, { "key": "10563", "source": "1560", "target": "1125", "attributes": { "weight": 3 } }, { "key": "20877", "source": "1560", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20878", "source": "1560", "target": "471", "attributes": { "weight": 1 } }, { "key": "20880", "source": "1560", "target": "489", "attributes": { "weight": 1 } }, { "key": "34697", "source": "1561", "target": "93", "attributes": { "weight": 1 } }, { "key": "13969", "source": "1561", "target": "180", "attributes": { "weight": 2 } }, { "key": "34696", "source": "1561", "target": "700", "attributes": { "weight": 1 } }, { "key": "9047", "source": "1561", "target": "580", "attributes": { "weight": 3 } }, { "key": "34698", "source": "1561", "target": "3164", "attributes": { "weight": 1 } }, { "key": "25761", "source": "1561", "target": "278", "attributes": { "weight": 2 } }, { "key": "35197", "source": "1562", "target": "2693", "attributes": { "weight": 1 } }, { "key": "35195", "source": "1562", "target": "661", "attributes": { "weight": 1 } }, { "key": "31137", "source": "1562", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9051", "source": "1562", "target": "1553", "attributes": { "weight": 4 } }, { "key": "35192", "source": "1562", "target": "1530", "attributes": { "weight": 1 } }, { "key": "27468", "source": "1562", "target": "2690", "attributes": { "weight": 1 } }, { "key": "27467", "source": "1562", "target": "2685", "attributes": { "weight": 1 } }, { "key": "35193", "source": "1562", "target": "1538", "attributes": { "weight": 1 } }, { "key": "9052", "source": "1562", "target": "1125", "attributes": { "weight": 3 } }, { "key": "35196", "source": "1562", "target": "2689", "attributes": { "weight": 1 } }, { "key": "35191", "source": "1562", "target": "442", "attributes": { "weight": 1 } }, { "key": "27469", "source": "1562", "target": "1567", "attributes": { "weight": 2 } }, { "key": "35194", "source": "1562", "target": "638", "attributes": { "weight": 1 } }, { "key": "22095", "source": "1563", "target": "337", "attributes": { "weight": 1 } }, { "key": "34719", "source": "1563", "target": "123", "attributes": { "weight": 1 } }, { "key": "22098", "source": "1563", "target": "2212", "attributes": { "weight": 1 } }, { "key": "16255", "source": "1563", "target": "925", "attributes": { "weight": 1 } }, { "key": "22097", "source": "1563", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22094", "source": "1563", "target": "2293", "attributes": { "weight": 1 } }, { "key": "9056", "source": "1563", "target": "195", "attributes": { "weight": 3 } }, { "key": "16254", "source": "1563", "target": "913", "attributes": { "weight": 1 } }, { "key": "22096", "source": "1563", "target": "2300", "attributes": { "weight": 1 } }, { "key": "22880", "source": "1564", "target": "2394", "attributes": { "weight": 1 } }, { "key": "12305", "source": "1564", "target": "429", "attributes": { "weight": 1 } }, { "key": "12306", "source": "1564", "target": "1354", "attributes": { "weight": 1 } }, { "key": "9081", "source": "1564", "target": "1533", "attributes": { "weight": 2 } }, { "key": "9080", "source": "1564", "target": "1109", "attributes": { "weight": 2 } }, { "key": "9085", "source": "1564", "target": "1088", "attributes": { "weight": 2 } }, { "key": "9087", "source": "1564", "target": "1130", "attributes": { "weight": 2 } }, { "key": "12311", "source": "1564", "target": "451", "attributes": { "weight": 1 } }, { "key": "12307", "source": "1564", "target": "220", "attributes": { "weight": 1 } }, { "key": "9086", "source": "1564", "target": "1125", "attributes": { "weight": 2 } }, { "key": "12312", "source": "1564", "target": "1359", "attributes": { "weight": 2 } }, { "key": "9082", "source": "1564", "target": "1546", "attributes": { "weight": 2 } }, { "key": "12308", "source": "1564", "target": "1161", "attributes": { "weight": 1 } }, { "key": "12317", "source": "1564", "target": "231", "attributes": { "weight": 1 } }, { "key": "12313", "source": "1564", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12309", "source": "1564", "target": "449", "attributes": { "weight": 1 } }, { "key": "9084", "source": "1564", "target": "474", "attributes": { "weight": 2 } }, { "key": "32146", "source": "1564", "target": "1247", "attributes": { "weight": 1 } }, { "key": "12316", "source": "1564", "target": "1282", "attributes": { "weight": 1 } }, { "key": "12310", "source": "1564", "target": "450", "attributes": { "weight": 1 } }, { "key": "12314", "source": "1564", "target": "1362", "attributes": { "weight": 2 } }, { "key": "12315", "source": "1564", "target": "472", "attributes": { "weight": 1 } }, { "key": "9083", "source": "1564", "target": "1122", "attributes": { "weight": 2 } }, { "key": "26753", "source": "1565", "target": "1516", "attributes": { "weight": 1 } }, { "key": "9089", "source": "1565", "target": "133", "attributes": { "weight": 5 } }, { "key": "10566", "source": "1565", "target": "225", "attributes": { "weight": 1 } }, { "key": "10567", "source": "1565", "target": "1544", "attributes": { "weight": 2 } }, { "key": "24230", "source": "1565", "target": "471", "attributes": { "weight": 1 } }, { "key": "12873", "source": "1565", "target": "1893", "attributes": { "weight": 1 } }, { "key": "12874", "source": "1565", "target": "38", "attributes": { "weight": 1 } }, { "key": "17976", "source": "1565", "target": "1380", "attributes": { "weight": 2 } }, { "key": "9103", "source": "1566", "target": "1125", "attributes": { "weight": 1 } }, { "key": "21224", "source": "1566", "target": "489", "attributes": { "weight": 1 } }, { "key": "23697", "source": "1566", "target": "1312", "attributes": { "weight": 1 } }, { "key": "31489", "source": "1567", "target": "1125", "attributes": { "weight": 2 } }, { "key": "27486", "source": "1567", "target": "164", "attributes": { "weight": 2 } }, { "key": "27489", "source": "1567", "target": "2686", "attributes": { "weight": 1 } }, { "key": "27502", "source": "1567", "target": "2694", "attributes": { "weight": 1 } }, { "key": "27494", "source": "1567", "target": "1087", "attributes": { "weight": 1 } }, { "key": "27495", "source": "1567", "target": "1553", "attributes": { "weight": 2 } }, { "key": "27488", "source": "1567", "target": "1530", "attributes": { "weight": 1 } }, { "key": "27491", "source": "1567", "target": "638", "attributes": { "weight": 2 } }, { "key": "27501", "source": "1567", "target": "2693", "attributes": { "weight": 1 } }, { "key": "27498", "source": "1567", "target": "2690", "attributes": { "weight": 1 } }, { "key": "26095", "source": "1567", "target": "163", "attributes": { "weight": 1 } }, { "key": "27496", "source": "1567", "target": "2689", "attributes": { "weight": 1 } }, { "key": "27493", "source": "1567", "target": "2688", "attributes": { "weight": 1 } }, { "key": "27487", "source": "1567", "target": "2685", "attributes": { "weight": 1 } }, { "key": "27492", "source": "1567", "target": "2687", "attributes": { "weight": 1 } }, { "key": "27497", "source": "1567", "target": "1562", "attributes": { "weight": 2 } }, { "key": "27499", "source": "1567", "target": "2691", "attributes": { "weight": 1 } }, { "key": "27485", "source": "1567", "target": "2684", "attributes": { "weight": 1 } }, { "key": "9118", "source": "1567", "target": "442", "attributes": { "weight": 2 } }, { "key": "27500", "source": "1567", "target": "2692", "attributes": { "weight": 1 } }, { "key": "27490", "source": "1567", "target": "1538", "attributes": { "weight": 1 } }, { "key": "10941", "source": "1568", "target": "471", "attributes": { "weight": 4 } }, { "key": "9133", "source": "1568", "target": "442", "attributes": { "weight": 3 } }, { "key": "24265", "source": "1568", "target": "56", "attributes": { "weight": 1 } }, { "key": "24263", "source": "1568", "target": "130", "attributes": { "weight": 2 } }, { "key": "24264", "source": "1568", "target": "437", "attributes": { "weight": 1 } }, { "key": "9136", "source": "1569", "target": "195", "attributes": { "weight": 3 } }, { "key": "9146", "source": "1570", "target": "1553", "attributes": { "weight": 3 } }, { "key": "9149", "source": "1571", "target": "791", "attributes": { "weight": 1 } }, { "key": "9148", "source": "1571", "target": "442", "attributes": { "weight": 1 } }, { "key": "9153", "source": "1571", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9147", "source": "1571", "target": "430", "attributes": { "weight": 1 } }, { "key": "9151", "source": "1571", "target": "1087", "attributes": { "weight": 2 } }, { "key": "9152", "source": "1571", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9150", "source": "1571", "target": "228", "attributes": { "weight": 1 } }, { "key": "9217", "source": "1572", "target": "1579", "attributes": { "weight": 1 } }, { "key": "9219", "source": "1572", "target": "1591", "attributes": { "weight": 1 } }, { "key": "9220", "source": "1572", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9215", "source": "1572", "target": "430", "attributes": { "weight": 1 } }, { "key": "9218", "source": "1572", "target": "1588", "attributes": { "weight": 1 } }, { "key": "9216", "source": "1572", "target": "1575", "attributes": { "weight": 1 } }, { "key": "9226", "source": "1573", "target": "1087", "attributes": { "weight": 2 } }, { "key": "9225", "source": "1573", "target": "228", "attributes": { "weight": 1 } }, { "key": "9224", "source": "1573", "target": "430", "attributes": { "weight": 1 } }, { "key": "9227", "source": "1573", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9229", "source": "1574", "target": "430", "attributes": { "weight": 1 } }, { "key": "9230", "source": "1574", "target": "228", "attributes": { "weight": 1 } }, { "key": "9232", "source": "1574", "target": "1125", "attributes": { "weight": 1 } }, { "key": "9231", "source": "1574", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9233", "source": "1575", "target": "1572", "attributes": { "weight": 1 } }, { "key": "9238", "source": "1576", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9237", "source": "1576", "target": "228", "attributes": { "weight": 1 } }, { "key": "9236", "source": "1576", "target": "430", "attributes": { "weight": 1 } }, { "key": "9240", "source": "1577", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9244", "source": "1578", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9251", "source": "1579", "target": "1585", "attributes": { "weight": 1 } }, { "key": "9247", "source": "1579", "target": "430", "attributes": { "weight": 1 } }, { "key": "9250", "source": "1579", "target": "1584", "attributes": { "weight": 1 } }, { "key": "9258", "source": "1579", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9253", "source": "1579", "target": "228", "attributes": { "weight": 2 } }, { "key": "9248", "source": "1579", "target": "1572", "attributes": { "weight": 1 } }, { "key": "9252", "source": "1579", "target": "791", "attributes": { "weight": 1 } }, { "key": "9255", "source": "1579", "target": "1087", "attributes": { "weight": 2 } }, { "key": "9256", "source": "1579", "target": "474", "attributes": { "weight": 1 } }, { "key": "9257", "source": "1579", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9249", "source": "1579", "target": "442", "attributes": { "weight": 1 } }, { "key": "9260", "source": "1580", "target": "1598", "attributes": { "weight": 1 } }, { "key": "9259", "source": "1580", "target": "1591", "attributes": { "weight": 1 } }, { "key": "9263", "source": "1581", "target": "430", "attributes": { "weight": 1 } }, { "key": "9264", "source": "1582", "target": "1591", "attributes": { "weight": 1 } }, { "key": "9265", "source": "1582", "target": "1598", "attributes": { "weight": 1 } }, { "key": "9266", "source": "1583", "target": "430", "attributes": { "weight": 1 } }, { "key": "9273", "source": "1584", "target": "1598", "attributes": { "weight": 1 } }, { "key": "9271", "source": "1584", "target": "1579", "attributes": { "weight": 1 } }, { "key": "9272", "source": "1584", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9270", "source": "1584", "target": "430", "attributes": { "weight": 1 } }, { "key": "9278", "source": "1585", "target": "1587", "attributes": { "weight": 1 } }, { "key": "37367", "source": "1585", "target": "135", "attributes": { "weight": 1 } }, { "key": "9279", "source": "1585", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9276", "source": "1585", "target": "1579", "attributes": { "weight": 1 } }, { "key": "9277", "source": "1585", "target": "1586", "attributes": { "weight": 1 } }, { "key": "9275", "source": "1585", "target": "430", "attributes": { "weight": 1 } }, { "key": "9280", "source": "1586", "target": "430", "attributes": { "weight": 1 } }, { "key": "9281", "source": "1586", "target": "1585", "attributes": { "weight": 1 } }, { "key": "9283", "source": "1587", "target": "1591", "attributes": { "weight": 1 } }, { "key": "9282", "source": "1587", "target": "1585", "attributes": { "weight": 1 } }, { "key": "9285", "source": "1588", "target": "1598", "attributes": { "weight": 1 } }, { "key": "9284", "source": "1588", "target": "430", "attributes": { "weight": 1 } }, { "key": "9314", "source": "1589", "target": "1596", "attributes": { "weight": 1 } }, { "key": "9313", "source": "1589", "target": "430", "attributes": { "weight": 1 } }, { "key": "9316", "source": "1590", "target": "430", "attributes": { "weight": 1 } }, { "key": "9324", "source": "1591", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9323", "source": "1591", "target": "1587", "attributes": { "weight": 1 } }, { "key": "9321", "source": "1591", "target": "1572", "attributes": { "weight": 1 } }, { "key": "9320", "source": "1591", "target": "430", "attributes": { "weight": 1 } }, { "key": "9322", "source": "1591", "target": "1582", "attributes": { "weight": 1 } }, { "key": "11241", "source": "1592", "target": "452", "attributes": { "weight": 1 } }, { "key": "9337", "source": "1592", "target": "1121", "attributes": { "weight": 2 } }, { "key": "9334", "source": "1592", "target": "1584", "attributes": { "weight": 1 } }, { "key": "9330", "source": "1592", "target": "1577", "attributes": { "weight": 1 } }, { "key": "9333", "source": "1592", "target": "1579", "attributes": { "weight": 1 } }, { "key": "33069", "source": "1592", "target": "493", "attributes": { "weight": 1 } }, { "key": "9329", "source": "1592", "target": "130", "attributes": { "weight": 3 } }, { "key": "9327", "source": "1592", "target": "430", "attributes": { "weight": 1 } }, { "key": "9340", "source": "1592", "target": "1591", "attributes": { "weight": 1 } }, { "key": "9325", "source": "1592", "target": "1571", "attributes": { "weight": 1 } }, { "key": "24180", "source": "1592", "target": "471", "attributes": { "weight": 1 } }, { "key": "9328", "source": "1592", "target": "1572", "attributes": { "weight": 1 } }, { "key": "9332", "source": "1592", "target": "225", "attributes": { "weight": 1 } }, { "key": "9339", "source": "1592", "target": "1087", "attributes": { "weight": 2 } }, { "key": "9335", "source": "1592", "target": "1585", "attributes": { "weight": 1 } }, { "key": "9338", "source": "1592", "target": "228", "attributes": { "weight": 2 } }, { "key": "9326", "source": "1592", "target": "1354", "attributes": { "weight": 3 } }, { "key": "9336", "source": "1592", "target": "791", "attributes": { "weight": 2 } }, { "key": "31981", "source": "1592", "target": "2115", "attributes": { "weight": 1 } }, { "key": "9331", "source": "1592", "target": "442", "attributes": { "weight": 2 } }, { "key": "9342", "source": "1592", "target": "233", "attributes": { "weight": 2 } }, { "key": "9341", "source": "1592", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9355", "source": "1593", "target": "430", "attributes": { "weight": 1 } }, { "key": "9356", "source": "1593", "target": "228", "attributes": { "weight": 2 } }, { "key": "9357", "source": "1593", "target": "1087", "attributes": { "weight": 2 } }, { "key": "9358", "source": "1593", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9360", "source": "1594", "target": "430", "attributes": { "weight": 1 } }, { "key": "9361", "source": "1595", "target": "430", "attributes": { "weight": 1 } }, { "key": "9362", "source": "1596", "target": "430", "attributes": { "weight": 1 } }, { "key": "9365", "source": "1597", "target": "228", "attributes": { "weight": 1 } }, { "key": "9364", "source": "1597", "target": "430", "attributes": { "weight": 1 } }, { "key": "9367", "source": "1597", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9366", "source": "1597", "target": "1087", "attributes": { "weight": 2 } }, { "key": "9370", "source": "1598", "target": "430", "attributes": { "weight": 1 } }, { "key": "9371", "source": "1598", "target": "1582", "attributes": { "weight": 1 } }, { "key": "9373", "source": "1598", "target": "1588", "attributes": { "weight": 1 } }, { "key": "9372", "source": "1598", "target": "1584", "attributes": { "weight": 1 } }, { "key": "9380", "source": "1599", "target": "1604", "attributes": { "weight": 1 } }, { "key": "9379", "source": "1599", "target": "645", "attributes": { "weight": 1 } }, { "key": "9381", "source": "1600", "target": "647", "attributes": { "weight": 1 } }, { "key": "9447", "source": "1601", "target": "419", "attributes": { "weight": 2 } }, { "key": "9450", "source": "1602", "target": "648", "attributes": { "weight": 1 } }, { "key": "9449", "source": "1602", "target": "354", "attributes": { "weight": 1 } }, { "key": "9462", "source": "1603", "target": "645", "attributes": { "weight": 1 } }, { "key": "9463", "source": "1604", "target": "668", "attributes": { "weight": 1 } }, { "key": "9477", "source": "1605", "target": "645", "attributes": { "weight": 1 } }, { "key": "9478", "source": "1605", "target": "419", "attributes": { "weight": 1 } }, { "key": "9489", "source": "1606", "target": "645", "attributes": { "weight": 1 } }, { "key": "9490", "source": "1607", "target": "419", "attributes": { "weight": 2 } }, { "key": "31165", "source": "1607", "target": "645", "attributes": { "weight": 1 } }, { "key": "9492", "source": "1608", "target": "419", "attributes": { "weight": 1 } }, { "key": "9495", "source": "1609", "target": "419", "attributes": { "weight": 1 } }, { "key": "9499", "source": "1610", "target": "419", "attributes": { "weight": 1 } }, { "key": "36978", "source": "1611", "target": "362", "attributes": { "weight": 1 } }, { "key": "31666", "source": "1611", "target": "595", "attributes": { "weight": 1 } }, { "key": "31468", "source": "1611", "target": "178", "attributes": { "weight": 2 } }, { "key": "30028", "source": "1611", "target": "2914", "attributes": { "weight": 1 } }, { "key": "23452", "source": "1611", "target": "304", "attributes": { "weight": 2 } }, { "key": "14268", "source": "1611", "target": "168", "attributes": { "weight": 2 } }, { "key": "31169", "source": "1611", "target": "647", "attributes": { "weight": 1 } }, { "key": "30030", "source": "1611", "target": "2917", "attributes": { "weight": 1 } }, { "key": "30029", "source": "1611", "target": "2915", "attributes": { "weight": 1 } }, { "key": "9509", "source": "1611", "target": "667", "attributes": { "weight": 2 } }, { "key": "24351", "source": "1611", "target": "473", "attributes": { "weight": 1 } }, { "key": "30032", "source": "1611", "target": "661", "attributes": { "weight": 1 } }, { "key": "21591", "source": "1611", "target": "89", "attributes": { "weight": 1 } }, { "key": "12005", "source": "1611", "target": "1042", "attributes": { "weight": 10 } }, { "key": "11206", "source": "1611", "target": "1036", "attributes": { "weight": 2 } }, { "key": "15338", "source": "1611", "target": "454", "attributes": { "weight": 1 } }, { "key": "30026", "source": "1611", "target": "2912", "attributes": { "weight": 1 } }, { "key": "17497", "source": "1611", "target": "358", "attributes": { "weight": 1 } }, { "key": "29573", "source": "1611", "target": "164", "attributes": { "weight": 1 } }, { "key": "30469", "source": "1611", "target": "1046", "attributes": { "weight": 1 } }, { "key": "18074", "source": "1611", "target": "2181", "attributes": { "weight": 2 } }, { "key": "30031", "source": "1611", "target": "2918", "attributes": { "weight": 1 } }, { "key": "35002", "source": "1611", "target": "352", "attributes": { "weight": 1 } }, { "key": "12006", "source": "1611", "target": "135", "attributes": { "weight": 1 } }, { "key": "14737", "source": "1611", "target": "259", "attributes": { "weight": 1 } }, { "key": "32566", "source": "1611", "target": "791", "attributes": { "weight": 1 } }, { "key": "27628", "source": "1611", "target": "171", "attributes": { "weight": 1 } }, { "key": "27199", "source": "1611", "target": "305", "attributes": { "weight": 1 } }, { "key": "9530", "source": "1612", "target": "354", "attributes": { "weight": 1 } }, { "key": "31172", "source": "1613", "target": "645", "attributes": { "weight": 1 } }, { "key": "9533", "source": "1613", "target": "419", "attributes": { "weight": 2 } }, { "key": "9536", "source": "1614", "target": "651", "attributes": { "weight": 2 } }, { "key": "31176", "source": "1615", "target": "644", "attributes": { "weight": 1 } }, { "key": "9540", "source": "1615", "target": "651", "attributes": { "weight": 2 } }, { "key": "21465", "source": "1616", "target": "2285", "attributes": { "weight": 3 } }, { "key": "9548", "source": "1616", "target": "171", "attributes": { "weight": 2 } }, { "key": "22385", "source": "1617", "target": "1637", "attributes": { "weight": 3 } }, { "key": "25241", "source": "1617", "target": "2316", "attributes": { "weight": 1 } }, { "key": "22384", "source": "1617", "target": "178", "attributes": { "weight": 5 } }, { "key": "25244", "source": "1617", "target": "1631", "attributes": { "weight": 2 } }, { "key": "25242", "source": "1617", "target": "2281", "attributes": { "weight": 1 } }, { "key": "9549", "source": "1617", "target": "171", "attributes": { "weight": 3 } }, { "key": "22383", "source": "1617", "target": "572", "attributes": { "weight": 4 } }, { "key": "30547", "source": "1617", "target": "1623", "attributes": { "weight": 1 } }, { "key": "25243", "source": "1617", "target": "1624", "attributes": { "weight": 1 } }, { "key": "22394", "source": "1618", "target": "2317", "attributes": { "weight": 3 } }, { "key": "25249", "source": "1618", "target": "1636", "attributes": { "weight": 1 } }, { "key": "22396", "source": "1618", "target": "1624", "attributes": { "weight": 4 } }, { "key": "22398", "source": "1618", "target": "178", "attributes": { "weight": 3 } }, { "key": "22397", "source": "1618", "target": "2328", "attributes": { "weight": 2 } }, { "key": "9565", "source": "1618", "target": "171", "attributes": { "weight": 1 } }, { "key": "30288", "source": "1618", "target": "572", "attributes": { "weight": 1 } }, { "key": "22400", "source": "1618", "target": "2342", "attributes": { "weight": 3 } }, { "key": "25248", "source": "1618", "target": "2334", "attributes": { "weight": 2 } }, { "key": "22401", "source": "1618", "target": "1640", "attributes": { "weight": 4 } }, { "key": "25246", "source": "1618", "target": "2316", "attributes": { "weight": 2 } }, { "key": "22395", "source": "1618", "target": "567", "attributes": { "weight": 5 } }, { "key": "22399", "source": "1618", "target": "1637", "attributes": { "weight": 4 } }, { "key": "25247", "source": "1618", "target": "2281", "attributes": { "weight": 1 } }, { "key": "21467", "source": "1619", "target": "172", "attributes": { "weight": 2 } }, { "key": "9566", "source": "1619", "target": "171", "attributes": { "weight": 1 } }, { "key": "22404", "source": "1619", "target": "567", "attributes": { "weight": 2 } }, { "key": "27585", "source": "1620", "target": "564", "attributes": { "weight": 1 } }, { "key": "9568", "source": "1620", "target": "171", "attributes": { "weight": 2 } }, { "key": "27586", "source": "1620", "target": "1629", "attributes": { "weight": 1 } }, { "key": "9567", "source": "1620", "target": "1626", "attributes": { "weight": 2 } }, { "key": "27587", "source": "1620", "target": "1633", "attributes": { "weight": 1 } }, { "key": "18375", "source": "1621", "target": "172", "attributes": { "weight": 1 } }, { "key": "15169", "source": "1621", "target": "2010", "attributes": { "weight": 2 } }, { "key": "30553", "source": "1621", "target": "567", "attributes": { "weight": 1 } }, { "key": "18379", "source": "1621", "target": "178", "attributes": { "weight": 1 } }, { "key": "15168", "source": "1621", "target": "2009", "attributes": { "weight": 1 } }, { "key": "18368", "source": "1621", "target": "2209", "attributes": { "weight": 1 } }, { "key": "18366", "source": "1621", "target": "167", "attributes": { "weight": 1 } }, { "key": "18373", "source": "1621", "target": "2210", "attributes": { "weight": 1 } }, { "key": "15176", "source": "1621", "target": "2016", "attributes": { "weight": 2 } }, { "key": "15158", "source": "1621", "target": "2003", "attributes": { "weight": 1 } }, { "key": "18367", "source": "1621", "target": "168", "attributes": { "weight": 1 } }, { "key": "18365", "source": "1621", "target": "574", "attributes": { "weight": 1 } }, { "key": "17087", "source": "1621", "target": "263", "attributes": { "weight": 2 } }, { "key": "15178", "source": "1621", "target": "1641", "attributes": { "weight": 2 } }, { "key": "15171", "source": "1621", "target": "2012", "attributes": { "weight": 1 } }, { "key": "18364", "source": "1621", "target": "572", "attributes": { "weight": 1 } }, { "key": "18371", "source": "1621", "target": "687", "attributes": { "weight": 1 } }, { "key": "18363", "source": "1621", "target": "262", "attributes": { "weight": 1 } }, { "key": "15160", "source": "1621", "target": "2005", "attributes": { "weight": 1 } }, { "key": "15175", "source": "1621", "target": "2015", "attributes": { "weight": 2 } }, { "key": "18380", "source": "1621", "target": "312", "attributes": { "weight": 1 } }, { "key": "18378", "source": "1621", "target": "177", "attributes": { "weight": 1 } }, { "key": "15163", "source": "1621", "target": "169", "attributes": { "weight": 4 } }, { "key": "15173", "source": "1621", "target": "2013", "attributes": { "weight": 1 } }, { "key": "30554", "source": "1621", "target": "1637", "attributes": { "weight": 1 } }, { "key": "18377", "source": "1621", "target": "175", "attributes": { "weight": 1 } }, { "key": "18381", "source": "1621", "target": "322", "attributes": { "weight": 1 } }, { "key": "18382", "source": "1621", "target": "326", "attributes": { "weight": 1 } }, { "key": "15165", "source": "1621", "target": "2006", "attributes": { "weight": 2 } }, { "key": "17088", "source": "1621", "target": "286", "attributes": { "weight": 1 } }, { "key": "15161", "source": "1621", "target": "830", "attributes": { "weight": 2 } }, { "key": "15177", "source": "1621", "target": "2017", "attributes": { "weight": 1 } }, { "key": "15174", "source": "1621", "target": "2014", "attributes": { "weight": 1 } }, { "key": "18362", "source": "1621", "target": "259", "attributes": { "weight": 2 } }, { "key": "15166", "source": "1621", "target": "2007", "attributes": { "weight": 1 } }, { "key": "18376", "source": "1621", "target": "174", "attributes": { "weight": 1 } }, { "key": "15179", "source": "1621", "target": "2018", "attributes": { "weight": 2 } }, { "key": "15162", "source": "1621", "target": "1622", "attributes": { "weight": 2 } }, { "key": "18372", "source": "1621", "target": "578", "attributes": { "weight": 1 } }, { "key": "18369", "source": "1621", "target": "287", "attributes": { "weight": 1 } }, { "key": "15170", "source": "1621", "target": "2011", "attributes": { "weight": 2 } }, { "key": "15159", "source": "1621", "target": "2004", "attributes": { "weight": 2 } }, { "key": "15167", "source": "1621", "target": "2008", "attributes": { "weight": 1 } }, { "key": "9576", "source": "1621", "target": "171", "attributes": { "weight": 3 } }, { "key": "15172", "source": "1621", "target": "176", "attributes": { "weight": 2 } }, { "key": "18370", "source": "1621", "target": "661", "attributes": { "weight": 1 } }, { "key": "15164", "source": "1621", "target": "1542", "attributes": { "weight": 2 } }, { "key": "18374", "source": "1621", "target": "299", "attributes": { "weight": 1 } }, { "key": "32269", "source": "1622", "target": "164", "attributes": { "weight": 1 } }, { "key": "9579", "source": "1622", "target": "171", "attributes": { "weight": 1 } }, { "key": "18385", "source": "1622", "target": "830", "attributes": { "weight": 1 } }, { "key": "15180", "source": "1622", "target": "1621", "attributes": { "weight": 2 } }, { "key": "32941", "source": "1622", "target": "178", "attributes": { "weight": 1 } }, { "key": "9588", "source": "1623", "target": "1629", "attributes": { "weight": 1 } }, { "key": "9591", "source": "1623", "target": "1639", "attributes": { "weight": 1 } }, { "key": "9590", "source": "1623", "target": "1633", "attributes": { "weight": 1 } }, { "key": "30557", "source": "1623", "target": "1617", "attributes": { "weight": 1 } }, { "key": "21470", "source": "1623", "target": "2285", "attributes": { "weight": 3 } }, { "key": "9589", "source": "1623", "target": "172", "attributes": { "weight": 1 } }, { "key": "30290", "source": "1623", "target": "1637", "attributes": { "weight": 2 } }, { "key": "9587", "source": "1623", "target": "171", "attributes": { "weight": 2 } }, { "key": "9586", "source": "1623", "target": "1626", "attributes": { "weight": 1 } }, { "key": "9584", "source": "1623", "target": "564", "attributes": { "weight": 1 } }, { "key": "30558", "source": "1623", "target": "567", "attributes": { "weight": 1 } }, { "key": "9585", "source": "1623", "target": "1625", "attributes": { "weight": 3 } }, { "key": "30667", "source": "1624", "target": "1632", "attributes": { "weight": 1 } }, { "key": "25283", "source": "1624", "target": "1637", "attributes": { "weight": 2 } }, { "key": "22487", "source": "1624", "target": "1640", "attributes": { "weight": 2 } }, { "key": "25281", "source": "1624", "target": "1628", "attributes": { "weight": 1 } }, { "key": "22484", "source": "1624", "target": "567", "attributes": { "weight": 5 } }, { "key": "22483", "source": "1624", "target": "1618", "attributes": { "weight": 4 } }, { "key": "25282", "source": "1624", "target": "1631", "attributes": { "weight": 2 } }, { "key": "22485", "source": "1624", "target": "572", "attributes": { "weight": 3 } }, { "key": "25280", "source": "1624", "target": "2281", "attributes": { "weight": 1 } }, { "key": "25278", "source": "1624", "target": "2316", "attributes": { "weight": 1 } }, { "key": "22486", "source": "1624", "target": "178", "attributes": { "weight": 5 } }, { "key": "25279", "source": "1624", "target": "1617", "attributes": { "weight": 1 } }, { "key": "9592", "source": "1624", "target": "171", "attributes": { "weight": 1 } }, { "key": "9596", "source": "1625", "target": "171", "attributes": { "weight": 2 } }, { "key": "9595", "source": "1625", "target": "1626", "attributes": { "weight": 1 } }, { "key": "9594", "source": "1625", "target": "1623", "attributes": { "weight": 3 } }, { "key": "21472", "source": "1625", "target": "2285", "attributes": { "weight": 3 } }, { "key": "9593", "source": "1625", "target": "564", "attributes": { "weight": 1 } }, { "key": "9597", "source": "1625", "target": "178", "attributes": { "weight": 1 } }, { "key": "21471", "source": "1625", "target": "172", "attributes": { "weight": 3 } }, { "key": "9601", "source": "1626", "target": "1623", "attributes": { "weight": 1 } }, { "key": "9603", "source": "1626", "target": "171", "attributes": { "weight": 4 } }, { "key": "12378", "source": "1626", "target": "1844", "attributes": { "weight": 2 } }, { "key": "27596", "source": "1626", "target": "2335", "attributes": { "weight": 1 } }, { "key": "9599", "source": "1626", "target": "564", "attributes": { "weight": 2 } }, { "key": "9604", "source": "1626", "target": "1252", "attributes": { "weight": 1 } }, { "key": "27595", "source": "1626", "target": "2706", "attributes": { "weight": 1 } }, { "key": "9607", "source": "1626", "target": "1633", "attributes": { "weight": 2 } }, { "key": "9602", "source": "1626", "target": "1625", "attributes": { "weight": 1 } }, { "key": "9600", "source": "1626", "target": "1620", "attributes": { "weight": 2 } }, { "key": "9606", "source": "1626", "target": "172", "attributes": { "weight": 1 } }, { "key": "9605", "source": "1626", "target": "1629", "attributes": { "weight": 3 } }, { "key": "9608", "source": "1626", "target": "178", "attributes": { "weight": 4 } }, { "key": "9660", "source": "1627", "target": "171", "attributes": { "weight": 2 } }, { "key": "27615", "source": "1627", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27614", "source": "1627", "target": "564", "attributes": { "weight": 1 } }, { "key": "22501", "source": "1628", "target": "178", "attributes": { "weight": 3 } }, { "key": "22502", "source": "1628", "target": "1637", "attributes": { "weight": 3 } }, { "key": "25172", "source": "1628", "target": "173", "attributes": { "weight": 1 } }, { "key": "9664", "source": "1628", "target": "171", "attributes": { "weight": 1 } }, { "key": "22497", "source": "1628", "target": "2320", "attributes": { "weight": 1 } }, { "key": "25293", "source": "1628", "target": "1624", "attributes": { "weight": 1 } }, { "key": "22499", "source": "1628", "target": "572", "attributes": { "weight": 2 } }, { "key": "22503", "source": "1628", "target": "1640", "attributes": { "weight": 1 } }, { "key": "22500", "source": "1628", "target": "2326", "attributes": { "weight": 1 } }, { "key": "22498", "source": "1628", "target": "567", "attributes": { "weight": 2 } }, { "key": "9668", "source": "1629", "target": "1626", "attributes": { "weight": 3 } }, { "key": "9666", "source": "1629", "target": "564", "attributes": { "weight": 2 } }, { "key": "27641", "source": "1629", "target": "2704", "attributes": { "weight": 1 } }, { "key": "27642", "source": "1629", "target": "2705", "attributes": { "weight": 1 } }, { "key": "9667", "source": "1629", "target": "1623", "attributes": { "weight": 1 } }, { "key": "27646", "source": "1629", "target": "2708", "attributes": { "weight": 1 } }, { "key": "27637", "source": "1629", "target": "1620", "attributes": { "weight": 1 } }, { "key": "27643", "source": "1629", "target": "2706", "attributes": { "weight": 1 } }, { "key": "27638", "source": "1629", "target": "1627", "attributes": { "weight": 1 } }, { "key": "27636", "source": "1629", "target": "2697", "attributes": { "weight": 1 } }, { "key": "27647", "source": "1629", "target": "1633", "attributes": { "weight": 1 } }, { "key": "27640", "source": "1629", "target": "2703", "attributes": { "weight": 1 } }, { "key": "27645", "source": "1629", "target": "1844", "attributes": { "weight": 1 } }, { "key": "9672", "source": "1629", "target": "1638", "attributes": { "weight": 1 } }, { "key": "9670", "source": "1629", "target": "172", "attributes": { "weight": 1 } }, { "key": "27644", "source": "1629", "target": "2707", "attributes": { "weight": 1 } }, { "key": "9669", "source": "1629", "target": "171", "attributes": { "weight": 2 } }, { "key": "9671", "source": "1629", "target": "178", "attributes": { "weight": 1 } }, { "key": "37402", "source": "1629", "target": "93", "attributes": { "weight": 1 } }, { "key": "27639", "source": "1629", "target": "2702", "attributes": { "weight": 1 } }, { "key": "22517", "source": "1630", "target": "567", "attributes": { "weight": 4 } }, { "key": "9674", "source": "1630", "target": "171", "attributes": { "weight": 1 } }, { "key": "25313", "source": "1630", "target": "2281", "attributes": { "weight": 2 } }, { "key": "25317", "source": "1631", "target": "2281", "attributes": { "weight": 2 } }, { "key": "22522", "source": "1631", "target": "178", "attributes": { "weight": 3 } }, { "key": "21483", "source": "1631", "target": "2285", "attributes": { "weight": 2 } }, { "key": "9680", "source": "1631", "target": "171", "attributes": { "weight": 1 } }, { "key": "25316", "source": "1631", "target": "1617", "attributes": { "weight": 2 } }, { "key": "22521", "source": "1631", "target": "567", "attributes": { "weight": 6 } }, { "key": "25318", "source": "1631", "target": "1624", "attributes": { "weight": 2 } }, { "key": "25321", "source": "1632", "target": "2339", "attributes": { "weight": 1 } }, { "key": "30668", "source": "1632", "target": "1624", "attributes": { "weight": 1 } }, { "key": "22525", "source": "1632", "target": "572", "attributes": { "weight": 1 } }, { "key": "22526", "source": "1632", "target": "178", "attributes": { "weight": 3 } }, { "key": "9681", "source": "1632", "target": "171", "attributes": { "weight": 1 } }, { "key": "22524", "source": "1632", "target": "567", "attributes": { "weight": 4 } }, { "key": "25320", "source": "1632", "target": "2281", "attributes": { "weight": 2 } }, { "key": "31205", "source": "1632", "target": "2332", "attributes": { "weight": 1 } }, { "key": "27657", "source": "1633", "target": "564", "attributes": { "weight": 1 } }, { "key": "27658", "source": "1633", "target": "1620", "attributes": { "weight": 1 } }, { "key": "9686", "source": "1633", "target": "171", "attributes": { "weight": 3 } }, { "key": "27659", "source": "1633", "target": "1629", "attributes": { "weight": 1 } }, { "key": "9684", "source": "1633", "target": "1623", "attributes": { "weight": 1 } }, { "key": "9685", "source": "1633", "target": "1626", "attributes": { "weight": 2 } }, { "key": "27661", "source": "1634", "target": "1639", "attributes": { "weight": 1 } }, { "key": "9687", "source": "1634", "target": "564", "attributes": { "weight": 2 } }, { "key": "9688", "source": "1634", "target": "171", "attributes": { "weight": 2 } }, { "key": "27660", "source": "1634", "target": "2699", "attributes": { "weight": 1 } }, { "key": "24404", "source": "1635", "target": "2496", "attributes": { "weight": 1 } }, { "key": "22545", "source": "1635", "target": "178", "attributes": { "weight": 3 } }, { "key": "22544", "source": "1635", "target": "567", "attributes": { "weight": 3 } }, { "key": "9696", "source": "1635", "target": "171", "attributes": { "weight": 1 } }, { "key": "25333", "source": "1636", "target": "2281", "attributes": { "weight": 1 } }, { "key": "9697", "source": "1636", "target": "171", "attributes": { "weight": 1 } }, { "key": "24405", "source": "1636", "target": "2496", "attributes": { "weight": 1 } }, { "key": "22548", "source": "1636", "target": "567", "attributes": { "weight": 3 } }, { "key": "22549", "source": "1636", "target": "572", "attributes": { "weight": 2 } }, { "key": "22550", "source": "1636", "target": "178", "attributes": { "weight": 4 } }, { "key": "25331", "source": "1636", "target": "2316", "attributes": { "weight": 1 } }, { "key": "22551", "source": "1636", "target": "1637", "attributes": { "weight": 3 } }, { "key": "25332", "source": "1636", "target": "1618", "attributes": { "weight": 1 } }, { "key": "13972", "source": "1637", "target": "178", "attributes": { "weight": 8 } }, { "key": "14281", "source": "1637", "target": "168", "attributes": { "weight": 1 } }, { "key": "22553", "source": "1637", "target": "2316", "attributes": { "weight": 3 } }, { "key": "22556", "source": "1637", "target": "567", "attributes": { "weight": 6 } }, { "key": "12609", "source": "1637", "target": "180", "attributes": { "weight": 1 } }, { "key": "22557", "source": "1637", "target": "572", "attributes": { "weight": 4 } }, { "key": "25336", "source": "1637", "target": "2326", "attributes": { "weight": 3 } }, { "key": "25335", "source": "1637", "target": "1624", "attributes": { "weight": 2 } }, { "key": "22555", "source": "1637", "target": "1618", "attributes": { "weight": 4 } }, { "key": "25334", "source": "1637", "target": "2281", "attributes": { "weight": 2 } }, { "key": "9698", "source": "1637", "target": "171", "attributes": { "weight": 3 } }, { "key": "22560", "source": "1637", "target": "1636", "attributes": { "weight": 3 } }, { "key": "22558", "source": "1637", "target": "359", "attributes": { "weight": 1 } }, { "key": "25337", "source": "1637", "target": "2328", "attributes": { "weight": 3 } }, { "key": "24406", "source": "1637", "target": "2496", "attributes": { "weight": 1 } }, { "key": "22552", "source": "1637", "target": "2315", "attributes": { "weight": 2 } }, { "key": "30291", "source": "1637", "target": "1623", "attributes": { "weight": 2 } }, { "key": "25338", "source": "1637", "target": "2333", "attributes": { "weight": 1 } }, { "key": "12384", "source": "1637", "target": "565", "attributes": { "weight": 2 } }, { "key": "22554", "source": "1637", "target": "1617", "attributes": { "weight": 3 } }, { "key": "22559", "source": "1637", "target": "1628", "attributes": { "weight": 3 } }, { "key": "22561", "source": "1637", "target": "1640", "attributes": { "weight": 4 } }, { "key": "30562", "source": "1637", "target": "172", "attributes": { "weight": 1 } }, { "key": "30561", "source": "1637", "target": "1621", "attributes": { "weight": 1 } }, { "key": "25339", "source": "1637", "target": "2342", "attributes": { "weight": 1 } }, { "key": "9702", "source": "1638", "target": "1629", "attributes": { "weight": 1 } }, { "key": "21498", "source": "1638", "target": "2285", "attributes": { "weight": 3 } }, { "key": "9703", "source": "1638", "target": "178", "attributes": { "weight": 1 } }, { "key": "9701", "source": "1638", "target": "171", "attributes": { "weight": 2 } }, { "key": "9706", "source": "1639", "target": "564", "attributes": { "weight": 2 } }, { "key": "9708", "source": "1639", "target": "171", "attributes": { "weight": 2 } }, { "key": "27665", "source": "1639", "target": "2342", "attributes": { "weight": 1 } }, { "key": "9707", "source": "1639", "target": "1623", "attributes": { "weight": 1 } }, { "key": "27664", "source": "1639", "target": "1634", "attributes": { "weight": 1 } }, { "key": "22579", "source": "1640", "target": "567", "attributes": { "weight": 4 } }, { "key": "22585", "source": "1640", "target": "1628", "attributes": { "weight": 1 } }, { "key": "22576", "source": "1640", "target": "2315", "attributes": { "weight": 3 } }, { "key": "31208", "source": "1640", "target": "2337", "attributes": { "weight": 1 } }, { "key": "25346", "source": "1640", "target": "2569", "attributes": { "weight": 2 } }, { "key": "22587", "source": "1640", "target": "2334", "attributes": { "weight": 3 } }, { "key": "22589", "source": "1640", "target": "2336", "attributes": { "weight": 2 } }, { "key": "22584", "source": "1640", "target": "2325", "attributes": { "weight": 3 } }, { "key": "22582", "source": "1640", "target": "2324", "attributes": { "weight": 3 } }, { "key": "22577", "source": "1640", "target": "2318", "attributes": { "weight": 2 } }, { "key": "22578", "source": "1640", "target": "1618", "attributes": { "weight": 4 } }, { "key": "22591", "source": "1640", "target": "2343", "attributes": { "weight": 3 } }, { "key": "22588", "source": "1640", "target": "178", "attributes": { "weight": 3 } }, { "key": "22590", "source": "1640", "target": "1637", "attributes": { "weight": 4 } }, { "key": "9709", "source": "1640", "target": "171", "attributes": { "weight": 1 } }, { "key": "31207", "source": "1640", "target": "2330", "attributes": { "weight": 1 } }, { "key": "22581", "source": "1640", "target": "572", "attributes": { "weight": 3 } }, { "key": "22583", "source": "1640", "target": "1624", "attributes": { "weight": 2 } }, { "key": "22580", "source": "1640", "target": "2322", "attributes": { "weight": 3 } }, { "key": "25350", "source": "1640", "target": "2342", "attributes": { "weight": 1 } }, { "key": "25348", "source": "1640", "target": "2576", "attributes": { "weight": 1 } }, { "key": "22586", "source": "1640", "target": "2328", "attributes": { "weight": 2 } }, { "key": "25344", "source": "1640", "target": "2563", "attributes": { "weight": 1 } }, { "key": "9710", "source": "1641", "target": "171", "attributes": { "weight": 1 } }, { "key": "15196", "source": "1641", "target": "1621", "attributes": { "weight": 2 } }, { "key": "32281", "source": "1641", "target": "164", "attributes": { "weight": 1 } }, { "key": "30539", "source": "1642", "target": "174", "attributes": { "weight": 2 } }, { "key": "26283", "source": "1642", "target": "1549", "attributes": { "weight": 2 } }, { "key": "30542", "source": "1642", "target": "2987", "attributes": { "weight": 1 } }, { "key": "26282", "source": "1642", "target": "164", "attributes": { "weight": 4 } }, { "key": "30537", "source": "1642", "target": "2984", "attributes": { "weight": 1 } }, { "key": "35534", "source": "1642", "target": "1860", "attributes": { "weight": 1 } }, { "key": "28169", "source": "1642", "target": "301", "attributes": { "weight": 1 } }, { "key": "30535", "source": "1642", "target": "2982", "attributes": { "weight": 1 } }, { "key": "30533", "source": "1642", "target": "259", "attributes": { "weight": 1 } }, { "key": "9711", "source": "1642", "target": "171", "attributes": { "weight": 1 } }, { "key": "30541", "source": "1642", "target": "2986", "attributes": { "weight": 1 } }, { "key": "28168", "source": "1642", "target": "287", "attributes": { "weight": 2 } }, { "key": "30538", "source": "1642", "target": "2985", "attributes": { "weight": 1 } }, { "key": "30534", "source": "1642", "target": "574", "attributes": { "weight": 2 } }, { "key": "26848", "source": "1642", "target": "278", "attributes": { "weight": 2 } }, { "key": "30536", "source": "1642", "target": "2983", "attributes": { "weight": 1 } }, { "key": "30540", "source": "1642", "target": "178", "attributes": { "weight": 1 } }, { "key": "37133", "source": "1643", "target": "411", "attributes": { "weight": 1 } }, { "key": "9728", "source": "1643", "target": "396", "attributes": { "weight": 2 } }, { "key": "9749", "source": "1644", "target": "396", "attributes": { "weight": 2 } }, { "key": "9751", "source": "1645", "target": "411", "attributes": { "weight": 1 } }, { "key": "34066", "source": "1645", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34067", "source": "1645", "target": "338", "attributes": { "weight": 1 } }, { "key": "9750", "source": "1645", "target": "396", "attributes": { "weight": 2 } }, { "key": "9788", "source": "1646", "target": "396", "attributes": { "weight": 2 } }, { "key": "9804", "source": "1647", "target": "396", "attributes": { "weight": 1 } }, { "key": "37157", "source": "1647", "target": "390", "attributes": { "weight": 1 } }, { "key": "37158", "source": "1647", "target": "411", "attributes": { "weight": 1 } }, { "key": "9803", "source": "1647", "target": "393", "attributes": { "weight": 1 } }, { "key": "9805", "source": "1647", "target": "400", "attributes": { "weight": 1 } }, { "key": "9807", "source": "1648", "target": "396", "attributes": { "weight": 2 } }, { "key": "9811", "source": "1649", "target": "396", "attributes": { "weight": 2 } }, { "key": "9868", "source": "1650", "target": "396", "attributes": { "weight": 2 } }, { "key": "9867", "source": "1650", "target": "393", "attributes": { "weight": 1 } }, { "key": "37168", "source": "1650", "target": "390", "attributes": { "weight": 1 } }, { "key": "9872", "source": "1651", "target": "396", "attributes": { "weight": 1 } }, { "key": "9878", "source": "1652", "target": "404", "attributes": { "weight": 2 } }, { "key": "9879", "source": "1652", "target": "415", "attributes": { "weight": 2 } }, { "key": "9877", "source": "1652", "target": "396", "attributes": { "weight": 2 } }, { "key": "9881", "source": "1653", "target": "396", "attributes": { "weight": 2 } }, { "key": "9894", "source": "1654", "target": "396", "attributes": { "weight": 3 } }, { "key": "34791", "source": "1655", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9914", "source": "1655", "target": "396", "attributes": { "weight": 1 } }, { "key": "9918", "source": "1656", "target": "391", "attributes": { "weight": 1 } }, { "key": "9919", "source": "1656", "target": "396", "attributes": { "weight": 1 } }, { "key": "9928", "source": "1657", "target": "396", "attributes": { "weight": 2 } }, { "key": "37206", "source": "1657", "target": "411", "attributes": { "weight": 1 } }, { "key": "10056", "source": "1658", "target": "1666", "attributes": { "weight": 1 } }, { "key": "10055", "source": "1658", "target": "602", "attributes": { "weight": 1 } }, { "key": "10074", "source": "1659", "target": "602", "attributes": { "weight": 1 } }, { "key": "10076", "source": "1660", "target": "602", "attributes": { "weight": 1 } }, { "key": "10102", "source": "1661", "target": "602", "attributes": { "weight": 1 } }, { "key": "10103", "source": "1662", "target": "602", "attributes": { "weight": 1 } }, { "key": "10105", "source": "1662", "target": "1675", "attributes": { "weight": 2 } }, { "key": "10104", "source": "1662", "target": "369", "attributes": { "weight": 1 } }, { "key": "10110", "source": "1663", "target": "602", "attributes": { "weight": 2 } }, { "key": "10111", "source": "1663", "target": "369", "attributes": { "weight": 1 } }, { "key": "10112", "source": "1663", "target": "1672", "attributes": { "weight": 1 } }, { "key": "10113", "source": "1664", "target": "602", "attributes": { "weight": 1 } }, { "key": "10114", "source": "1665", "target": "602", "attributes": { "weight": 1 } }, { "key": "10115", "source": "1665", "target": "872", "attributes": { "weight": 1 } }, { "key": "10117", "source": "1666", "target": "602", "attributes": { "weight": 1 } }, { "key": "10125", "source": "1667", "target": "602", "attributes": { "weight": 1 } }, { "key": "10128", "source": "1668", "target": "602", "attributes": { "weight": 1 } }, { "key": "10131", "source": "1669", "target": "602", "attributes": { "weight": 1 } }, { "key": "10133", "source": "1670", "target": "1658", "attributes": { "weight": 1 } }, { "key": "10135", "source": "1671", "target": "602", "attributes": { "weight": 1 } }, { "key": "10139", "source": "1672", "target": "876", "attributes": { "weight": 1 } }, { "key": "10136", "source": "1672", "target": "602", "attributes": { "weight": 3 } }, { "key": "10137", "source": "1672", "target": "872", "attributes": { "weight": 1 } }, { "key": "10138", "source": "1672", "target": "1663", "attributes": { "weight": 1 } }, { "key": "10140", "source": "1673", "target": "602", "attributes": { "weight": 2 } }, { "key": "26271", "source": "1674", "target": "876", "attributes": { "weight": 1 } }, { "key": "10141", "source": "1674", "target": "602", "attributes": { "weight": 1 } }, { "key": "10142", "source": "1675", "target": "602", "attributes": { "weight": 2 } }, { "key": "10143", "source": "1675", "target": "369", "attributes": { "weight": 1 } }, { "key": "10144", "source": "1675", "target": "1662", "attributes": { "weight": 1 } }, { "key": "10145", "source": "1676", "target": "879", "attributes": { "weight": 1 } }, { "key": "10147", "source": "1677", "target": "711", "attributes": { "weight": 1 } }, { "key": "23096", "source": "1678", "target": "2417", "attributes": { "weight": 1 } }, { "key": "23092", "source": "1678", "target": "1683", "attributes": { "weight": 1 } }, { "key": "23095", "source": "1678", "target": "2414", "attributes": { "weight": 1 } }, { "key": "10148", "source": "1678", "target": "711", "attributes": { "weight": 2 } }, { "key": "10149", "source": "1679", "target": "1322", "attributes": { "weight": 1 } }, { "key": "21857", "source": "1680", "target": "2293", "attributes": { "weight": 1 } }, { "key": "21861", "source": "1680", "target": "1315", "attributes": { "weight": 1 } }, { "key": "10172", "source": "1680", "target": "1227", "attributes": { "weight": 1 } }, { "key": "10173", "source": "1680", "target": "337", "attributes": { "weight": 2 } }, { "key": "10174", "source": "1680", "target": "1291", "attributes": { "weight": 1 } }, { "key": "21860", "source": "1680", "target": "1300", "attributes": { "weight": 1 } }, { "key": "21859", "source": "1680", "target": "1284", "attributes": { "weight": 1 } }, { "key": "10175", "source": "1680", "target": "1322", "attributes": { "weight": 1 } }, { "key": "21858", "source": "1680", "target": "338", "attributes": { "weight": 1 } }, { "key": "18140", "source": "1681", "target": "1197", "attributes": { "weight": 2 } }, { "key": "15571", "source": "1681", "target": "925", "attributes": { "weight": 1 } }, { "key": "21867", "source": "1681", "target": "337", "attributes": { "weight": 1 } }, { "key": "33914", "source": "1681", "target": "123", "attributes": { "weight": 1 } }, { "key": "21866", "source": "1681", "target": "2293", "attributes": { "weight": 1 } }, { "key": "15572", "source": "1681", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10188", "source": "1681", "target": "1322", "attributes": { "weight": 1 } }, { "key": "23100", "source": "1682", "target": "2413", "attributes": { "weight": 1 } }, { "key": "23099", "source": "1682", "target": "2412", "attributes": { "weight": 1 } }, { "key": "10189", "source": "1682", "target": "711", "attributes": { "weight": 2 } }, { "key": "23098", "source": "1682", "target": "2408", "attributes": { "weight": 1 } }, { "key": "10193", "source": "1683", "target": "711", "attributes": { "weight": 2 } }, { "key": "23101", "source": "1683", "target": "1678", "attributes": { "weight": 1 } }, { "key": "10196", "source": "1684", "target": "1322", "attributes": { "weight": 1 } }, { "key": "21896", "source": "1685", "target": "337", "attributes": { "weight": 1 } }, { "key": "34168", "source": "1685", "target": "1197", "attributes": { "weight": 1 } }, { "key": "15779", "source": "1685", "target": "925", "attributes": { "weight": 1 } }, { "key": "15780", "source": "1685", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10202", "source": "1685", "target": "1322", "attributes": { "weight": 1 } }, { "key": "10207", "source": "1686", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34204", "source": "1686", "target": "1197", "attributes": { "weight": 1 } }, { "key": "15817", "source": "1686", "target": "925", "attributes": { "weight": 1 } }, { "key": "21927", "source": "1686", "target": "2293", "attributes": { "weight": 1 } }, { "key": "15818", "source": "1686", "target": "1329", "attributes": { "weight": 1 } }, { "key": "21928", "source": "1686", "target": "337", "attributes": { "weight": 1 } }, { "key": "10206", "source": "1686", "target": "1687", "attributes": { "weight": 1 } }, { "key": "15824", "source": "1687", "target": "925", "attributes": { "weight": 1 } }, { "key": "10208", "source": "1687", "target": "1686", "attributes": { "weight": 1 } }, { "key": "15825", "source": "1687", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10209", "source": "1687", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34219", "source": "1687", "target": "1197", "attributes": { "weight": 1 } }, { "key": "10233", "source": "1688", "target": "338", "attributes": { "weight": 1 } }, { "key": "15966", "source": "1689", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10235", "source": "1689", "target": "1695", "attributes": { "weight": 1 } }, { "key": "10234", "source": "1689", "target": "1167", "attributes": { "weight": 1 } }, { "key": "10236", "source": "1689", "target": "1322", "attributes": { "weight": 1 } }, { "key": "10242", "source": "1690", "target": "1291", "attributes": { "weight": 1 } }, { "key": "16038", "source": "1690", "target": "925", "attributes": { "weight": 1 } }, { "key": "34554", "source": "1690", "target": "1197", "attributes": { "weight": 1 } }, { "key": "16039", "source": "1690", "target": "1329", "attributes": { "weight": 1 } }, { "key": "22006", "source": "1690", "target": "337", "attributes": { "weight": 1 } }, { "key": "22005", "source": "1690", "target": "2293", "attributes": { "weight": 1 } }, { "key": "10243", "source": "1690", "target": "1322", "attributes": { "weight": 1 } }, { "key": "10254", "source": "1691", "target": "938", "attributes": { "weight": 2 } }, { "key": "22020", "source": "1691", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22019", "source": "1691", "target": "2301", "attributes": { "weight": 1 } }, { "key": "28600", "source": "1691", "target": "1279", "attributes": { "weight": 1 } }, { "key": "22018", "source": "1691", "target": "199", "attributes": { "weight": 2 } }, { "key": "10278", "source": "1692", "target": "938", "attributes": { "weight": 2 } }, { "key": "10279", "source": "1693", "target": "1291", "attributes": { "weight": 1 } }, { "key": "34662", "source": "1693", "target": "1323", "attributes": { "weight": 1 } }, { "key": "22075", "source": "1693", "target": "2293", "attributes": { "weight": 1 } }, { "key": "16198", "source": "1693", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10280", "source": "1693", "target": "1322", "attributes": { "weight": 1 } }, { "key": "22076", "source": "1693", "target": "337", "attributes": { "weight": 1 } }, { "key": "16197", "source": "1693", "target": "925", "attributes": { "weight": 1 } }, { "key": "34661", "source": "1693", "target": "1197", "attributes": { "weight": 1 } }, { "key": "10281", "source": "1694", "target": "1243", "attributes": { "weight": 1 } }, { "key": "10282", "source": "1694", "target": "1700", "attributes": { "weight": 1 } }, { "key": "10287", "source": "1695", "target": "1322", "attributes": { "weight": 1 } }, { "key": "10286", "source": "1695", "target": "1689", "attributes": { "weight": 1 } }, { "key": "10308", "source": "1696", "target": "711", "attributes": { "weight": 2 } }, { "key": "10354", "source": "1697", "target": "128", "attributes": { "weight": 1 } }, { "key": "10353", "source": "1697", "target": "1243", "attributes": { "weight": 2 } }, { "key": "10366", "source": "1698", "target": "711", "attributes": { "weight": 2 } }, { "key": "26117", "source": "1698", "target": "1699", "attributes": { "weight": 1 } }, { "key": "26118", "source": "1699", "target": "1698", "attributes": { "weight": 1 } }, { "key": "10367", "source": "1699", "target": "711", "attributes": { "weight": 2 } }, { "key": "10372", "source": "1700", "target": "128", "attributes": { "weight": 1 } }, { "key": "10373", "source": "1700", "target": "1694", "attributes": { "weight": 1 } }, { "key": "10374", "source": "1701", "target": "719", "attributes": { "weight": 1 } }, { "key": "10375", "source": "1701", "target": "1243", "attributes": { "weight": 1 } }, { "key": "10377", "source": "1702", "target": "1322", "attributes": { "weight": 1 } }, { "key": "28655", "source": "1703", "target": "54", "attributes": { "weight": 1 } }, { "key": "33165", "source": "1703", "target": "228", "attributes": { "weight": 1 } }, { "key": "23300", "source": "1703", "target": "1121", "attributes": { "weight": 2 } }, { "key": "33164", "source": "1703", "target": "442", "attributes": { "weight": 1 } }, { "key": "15207", "source": "1703", "target": "183", "attributes": { "weight": 1 } }, { "key": "15208", "source": "1703", "target": "454", "attributes": { "weight": 1 } }, { "key": "19127", "source": "1703", "target": "1087", "attributes": { "weight": 1 } }, { "key": "10383", "source": "1703", "target": "223", "attributes": { "weight": 3 } }, { "key": "10385", "source": "1703", "target": "1706", "attributes": { "weight": 1 } }, { "key": "33166", "source": "1703", "target": "672", "attributes": { "weight": 1 } }, { "key": "19126", "source": "1703", "target": "2245", "attributes": { "weight": 1 } }, { "key": "10386", "source": "1703", "target": "1125", "attributes": { "weight": 2 } }, { "key": "32685", "source": "1703", "target": "472", "attributes": { "weight": 3 } }, { "key": "10387", "source": "1703", "target": "1714", "attributes": { "weight": 1 } }, { "key": "32684", "source": "1703", "target": "135", "attributes": { "weight": 3 } }, { "key": "26286", "source": "1703", "target": "1258", "attributes": { "weight": 1 } }, { "key": "10384", "source": "1703", "target": "225", "attributes": { "weight": 1 } }, { "key": "15210", "source": "1703", "target": "189", "attributes": { "weight": 1 } }, { "key": "15209", "source": "1703", "target": "467", "attributes": { "weight": 1 } }, { "key": "23508", "source": "1703", "target": "220", "attributes": { "weight": 1 } }, { "key": "10389", "source": "1704", "target": "225", "attributes": { "weight": 1 } }, { "key": "10482", "source": "1705", "target": "1125", "attributes": { "weight": 2 } }, { "key": "19985", "source": "1705", "target": "1087", "attributes": { "weight": 1 } }, { "key": "10484", "source": "1706", "target": "225", "attributes": { "weight": 1 } }, { "key": "28658", "source": "1706", "target": "54", "attributes": { "weight": 2 } }, { "key": "10483", "source": "1706", "target": "1703", "attributes": { "weight": 1 } }, { "key": "10539", "source": "1708", "target": "225", "attributes": { "weight": 1 } }, { "key": "20702", "source": "1708", "target": "2261", "attributes": { "weight": 1 } }, { "key": "32824", "source": "1708", "target": "228", "attributes": { "weight": 1 } }, { "key": "10538", "source": "1708", "target": "223", "attributes": { "weight": 1 } }, { "key": "20700", "source": "1708", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20699", "source": "1708", "target": "1023", "attributes": { "weight": 1 } }, { "key": "10540", "source": "1708", "target": "1125", "attributes": { "weight": 2 } }, { "key": "20701", "source": "1708", "target": "1087", "attributes": { "weight": 1 } }, { "key": "32823", "source": "1708", "target": "1121", "attributes": { "weight": 1 } }, { "key": "10544", "source": "1709", "target": "225", "attributes": { "weight": 1 } }, { "key": "10545", "source": "1709", "target": "1125", "attributes": { "weight": 1 } }, { "key": "35551", "source": "1710", "target": "3114", "attributes": { "weight": 1 } }, { "key": "35550", "source": "1710", "target": "2450", "attributes": { "weight": 1 } }, { "key": "10550", "source": "1710", "target": "137", "attributes": { "weight": 1 } }, { "key": "35545", "source": "1710", "target": "2644", "attributes": { "weight": 1 } }, { "key": "10549", "source": "1710", "target": "225", "attributes": { "weight": 1 } }, { "key": "16427", "source": "1710", "target": "39", "attributes": { "weight": 2 } }, { "key": "16477", "source": "1710", "target": "2064", "attributes": { "weight": 1 } }, { "key": "35547", "source": "1710", "target": "1455", "attributes": { "weight": 1 } }, { "key": "35549", "source": "1710", "target": "3212", "attributes": { "weight": 1 } }, { "key": "35546", "source": "1710", "target": "442", "attributes": { "weight": 1 } }, { "key": "35548", "source": "1710", "target": "3211", "attributes": { "weight": 1 } }, { "key": "32930", "source": "1710", "target": "470", "attributes": { "weight": 2 } }, { "key": "28677", "source": "1710", "target": "54", "attributes": { "weight": 1 } }, { "key": "35544", "source": "1710", "target": "938", "attributes": { "weight": 1 } }, { "key": "10548", "source": "1710", "target": "131", "attributes": { "weight": 1 } }, { "key": "10570", "source": "1711", "target": "225", "attributes": { "weight": 1 } }, { "key": "28681", "source": "1711", "target": "1353", "attributes": { "weight": 1 } }, { "key": "28687", "source": "1711", "target": "2784", "attributes": { "weight": 1 } }, { "key": "28685", "source": "1711", "target": "54", "attributes": { "weight": 2 } }, { "key": "28682", "source": "1711", "target": "39", "attributes": { "weight": 1 } }, { "key": "24243", "source": "1711", "target": "437", "attributes": { "weight": 3 } }, { "key": "30749", "source": "1711", "target": "778", "attributes": { "weight": 1 } }, { "key": "28684", "source": "1711", "target": "2783", "attributes": { "weight": 1 } }, { "key": "28686", "source": "1711", "target": "1373", "attributes": { "weight": 2 } }, { "key": "24246", "source": "1711", "target": "1374", "attributes": { "weight": 3 } }, { "key": "11289", "source": "1711", "target": "471", "attributes": { "weight": 5 } }, { "key": "24242", "source": "1711", "target": "429", "attributes": { "weight": 3 } }, { "key": "24247", "source": "1711", "target": "1375", "attributes": { "weight": 1 } }, { "key": "21182", "source": "1711", "target": "130", "attributes": { "weight": 4 } }, { "key": "28683", "source": "1711", "target": "1358", "attributes": { "weight": 1 } }, { "key": "24244", "source": "1711", "target": "1125", "attributes": { "weight": 1 } }, { "key": "24245", "source": "1711", "target": "2109", "attributes": { "weight": 1 } }, { "key": "10576", "source": "1712", "target": "225", "attributes": { "weight": 1 } }, { "key": "10577", "source": "1713", "target": "1704", "attributes": { "weight": 1 } }, { "key": "10580", "source": "1714", "target": "225", "attributes": { "weight": 1 } }, { "key": "29790", "source": "1714", "target": "54", "attributes": { "weight": 1 } }, { "key": "10579", "source": "1714", "target": "1703", "attributes": { "weight": 1 } }, { "key": "10589", "source": "1715", "target": "43", "attributes": { "weight": 1 } }, { "key": "28544", "source": "1715", "target": "199", "attributes": { "weight": 1 } }, { "key": "10592", "source": "1716", "target": "782", "attributes": { "weight": 1 } }, { "key": "10593", "source": "1716", "target": "371", "attributes": { "weight": 3 } }, { "key": "10590", "source": "1716", "target": "43", "attributes": { "weight": 3 } }, { "key": "14014", "source": "1716", "target": "993", "attributes": { "weight": 1 } }, { "key": "10591", "source": "1716", "target": "44", "attributes": { "weight": 1 } }, { "key": "14015", "source": "1716", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10595", "source": "1717", "target": "43", "attributes": { "weight": 3 } }, { "key": "14016", "source": "1717", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10596", "source": "1717", "target": "782", "attributes": { "weight": 1 } }, { "key": "10655", "source": "1718", "target": "43", "attributes": { "weight": 3 } }, { "key": "10656", "source": "1718", "target": "44", "attributes": { "weight": 1 } }, { "key": "14025", "source": "1718", "target": "993", "attributes": { "weight": 1 } }, { "key": "14026", "source": "1718", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10658", "source": "1718", "target": "371", "attributes": { "weight": 3 } }, { "key": "28549", "source": "1718", "target": "199", "attributes": { "weight": 1 } }, { "key": "10657", "source": "1718", "target": "782", "attributes": { "weight": 1 } }, { "key": "11482", "source": "1718", "target": "370", "attributes": { "weight": 1 } }, { "key": "14027", "source": "1719", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10660", "source": "1719", "target": "782", "attributes": { "weight": 1 } }, { "key": "10659", "source": "1719", "target": "43", "attributes": { "weight": 2 } }, { "key": "10664", "source": "1720", "target": "43", "attributes": { "weight": 1 } }, { "key": "10667", "source": "1721", "target": "43", "attributes": { "weight": 2 } }, { "key": "26217", "source": "1722", "target": "999", "attributes": { "weight": 1 } }, { "key": "10685", "source": "1722", "target": "43", "attributes": { "weight": 2 } }, { "key": "10728", "source": "1723", "target": "43", "attributes": { "weight": 2 } }, { "key": "26242", "source": "1723", "target": "999", "attributes": { "weight": 1 } }, { "key": "10730", "source": "1724", "target": "43", "attributes": { "weight": 1 } }, { "key": "10731", "source": "1725", "target": "43", "attributes": { "weight": 2 } }, { "key": "26243", "source": "1726", "target": "999", "attributes": { "weight": 1 } }, { "key": "14060", "source": "1726", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10733", "source": "1726", "target": "43", "attributes": { "weight": 3 } }, { "key": "14059", "source": "1726", "target": "993", "attributes": { "weight": 1 } }, { "key": "10735", "source": "1727", "target": "43", "attributes": { "weight": 1 } }, { "key": "10741", "source": "1728", "target": "43", "attributes": { "weight": 1 } }, { "key": "10782", "source": "1729", "target": "43", "attributes": { "weight": 3 } }, { "key": "10783", "source": "1729", "target": "782", "attributes": { "weight": 1 } }, { "key": "10784", "source": "1730", "target": "44", "attributes": { "weight": 1 } }, { "key": "10789", "source": "1731", "target": "43", "attributes": { "weight": 2 } }, { "key": "10792", "source": "1732", "target": "35", "attributes": { "weight": 3 } }, { "key": "10804", "source": "1733", "target": "1752", "attributes": { "weight": 2 } }, { "key": "10801", "source": "1733", "target": "1118", "attributes": { "weight": 2 } }, { "key": "10803", "source": "1733", "target": "1741", "attributes": { "weight": 2 } }, { "key": "10802", "source": "1733", "target": "457", "attributes": { "weight": 2 } }, { "key": "15140", "source": "1733", "target": "74", "attributes": { "weight": 2 } }, { "key": "15139", "source": "1733", "target": "2002", "attributes": { "weight": 1 } }, { "key": "32240", "source": "1733", "target": "2447", "attributes": { "weight": 1 } }, { "key": "31393", "source": "1733", "target": "223", "attributes": { "weight": 2 } }, { "key": "15137", "source": "1733", "target": "2000", "attributes": { "weight": 2 } }, { "key": "15138", "source": "1733", "target": "2001", "attributes": { "weight": 2 } }, { "key": "15136", "source": "1733", "target": "1999", "attributes": { "weight": 2 } }, { "key": "15134", "source": "1733", "target": "1997", "attributes": { "weight": 2 } }, { "key": "11849", "source": "1733", "target": "1808", "attributes": { "weight": 1 } }, { "key": "15135", "source": "1733", "target": "61", "attributes": { "weight": 2 } }, { "key": "15141", "source": "1733", "target": "76", "attributes": { "weight": 2 } }, { "key": "10889", "source": "1734", "target": "457", "attributes": { "weight": 1 } }, { "key": "10890", "source": "1735", "target": "457", "attributes": { "weight": 2 } }, { "key": "10891", "source": "1735", "target": "1739", "attributes": { "weight": 1 } }, { "key": "10892", "source": "1736", "target": "457", "attributes": { "weight": 2 } }, { "key": "10893", "source": "1737", "target": "457", "attributes": { "weight": 1 } }, { "key": "18470", "source": "1738", "target": "2212", "attributes": { "weight": 1 } }, { "key": "18460", "source": "1738", "target": "1047", "attributes": { "weight": 1 } }, { "key": "33433", "source": "1738", "target": "2258", "attributes": { "weight": 1 } }, { "key": "18464", "source": "1738", "target": "370", "attributes": { "weight": 1 } }, { "key": "18469", "source": "1738", "target": "1322", "attributes": { "weight": 1 } }, { "key": "35692", "source": "1738", "target": "1354", "attributes": { "weight": 2 } }, { "key": "16830", "source": "1738", "target": "434", "attributes": { "weight": 2 } }, { "key": "18455", "source": "1738", "target": "938", "attributes": { "weight": 1 } }, { "key": "18466", "source": "1738", "target": "468", "attributes": { "weight": 1 } }, { "key": "18471", "source": "1738", "target": "373", "attributes": { "weight": 1 } }, { "key": "10894", "source": "1738", "target": "457", "attributes": { "weight": 2 } }, { "key": "16831", "source": "1738", "target": "70", "attributes": { "weight": 3 } }, { "key": "33431", "source": "1738", "target": "425", "attributes": { "weight": 1 } }, { "key": "33430", "source": "1738", "target": "51", "attributes": { "weight": 1 } }, { "key": "18468", "source": "1738", "target": "189", "attributes": { "weight": 1 } }, { "key": "18454", "source": "1738", "target": "1522", "attributes": { "weight": 1 } }, { "key": "22774", "source": "1738", "target": "2349", "attributes": { "weight": 1 } }, { "key": "18463", "source": "1738", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18461", "source": "1738", "target": "454", "attributes": { "weight": 1 } }, { "key": "18452", "source": "1738", "target": "220", "attributes": { "weight": 1 } }, { "key": "18459", "source": "1738", "target": "1197", "attributes": { "weight": 1 } }, { "key": "35693", "source": "1738", "target": "672", "attributes": { "weight": 2 } }, { "key": "18456", "source": "1738", "target": "223", "attributes": { "weight": 1 } }, { "key": "18458", "source": "1738", "target": "674", "attributes": { "weight": 3 } }, { "key": "18472", "source": "1738", "target": "1063", "attributes": { "weight": 1 } }, { "key": "18457", "source": "1738", "target": "442", "attributes": { "weight": 3 } }, { "key": "18462", "source": "1738", "target": "1219", "attributes": { "weight": 1 } }, { "key": "18473", "source": "1738", "target": "57", "attributes": { "weight": 1 } }, { "key": "18453", "source": "1738", "target": "59", "attributes": { "weight": 1 } }, { "key": "18465", "source": "1738", "target": "135", "attributes": { "weight": 3 } }, { "key": "18467", "source": "1738", "target": "472", "attributes": { "weight": 2 } }, { "key": "33432", "source": "1738", "target": "450", "attributes": { "weight": 1 } }, { "key": "10895", "source": "1739", "target": "457", "attributes": { "weight": 2 } }, { "key": "10899", "source": "1740", "target": "457", "attributes": { "weight": 1 } }, { "key": "36036", "source": "1741", "target": "433", "attributes": { "weight": 1 } }, { "key": "36037", "source": "1741", "target": "440", "attributes": { "weight": 1 } }, { "key": "20522", "source": "1741", "target": "429", "attributes": { "weight": 1 } }, { "key": "20523", "source": "1741", "target": "489", "attributes": { "weight": 1 } }, { "key": "36038", "source": "1741", "target": "1360", "attributes": { "weight": 1 } }, { "key": "36042", "source": "1741", "target": "497", "attributes": { "weight": 1 } }, { "key": "15145", "source": "1741", "target": "74", "attributes": { "weight": 2 } }, { "key": "10912", "source": "1741", "target": "1733", "attributes": { "weight": 2 } }, { "key": "23389", "source": "1741", "target": "2446", "attributes": { "weight": 1 } }, { "key": "36040", "source": "1741", "target": "428", "attributes": { "weight": 1 } }, { "key": "16884", "source": "1741", "target": "59", "attributes": { "weight": 2 } }, { "key": "36039", "source": "1741", "target": "465", "attributes": { "weight": 1 } }, { "key": "36041", "source": "1741", "target": "3272", "attributes": { "weight": 1 } }, { "key": "11373", "source": "1742", "target": "1024", "attributes": { "weight": 2 } }, { "key": "11369", "source": "1742", "target": "5", "attributes": { "weight": 1 } }, { "key": "11361", "source": "1742", "target": "440", "attributes": { "weight": 1 } }, { "key": "11362", "source": "1742", "target": "1136", "attributes": { "weight": 1 } }, { "key": "11366", "source": "1742", "target": "452", "attributes": { "weight": 1 } }, { "key": "11375", "source": "1742", "target": "682", "attributes": { "weight": 1 } }, { "key": "11374", "source": "1742", "target": "6", "attributes": { "weight": 1 } }, { "key": "11370", "source": "1742", "target": "455", "attributes": { "weight": 1 } }, { "key": "11358", "source": "1742", "target": "1036", "attributes": { "weight": 2 } }, { "key": "11381", "source": "1742", "target": "473", "attributes": { "weight": 1 } }, { "key": "11354", "source": "1742", "target": "0", "attributes": { "weight": 1 } }, { "key": "11389", "source": "1742", "target": "1780", "attributes": { "weight": 1 } }, { "key": "11365", "source": "1742", "target": "693", "attributes": { "weight": 1 } }, { "key": "11379", "source": "1742", "target": "8", "attributes": { "weight": 3 } }, { "key": "11391", "source": "1742", "target": "1390", "attributes": { "weight": 1 } }, { "key": "11372", "source": "1742", "target": "791", "attributes": { "weight": 2 } }, { "key": "11382", "source": "1742", "target": "474", "attributes": { "weight": 1 } }, { "key": "11390", "source": "1742", "target": "495", "attributes": { "weight": 2 } }, { "key": "11383", "source": "1742", "target": "479", "attributes": { "weight": 2 } }, { "key": "11360", "source": "1742", "target": "1520", "attributes": { "weight": 1 } }, { "key": "11367", "source": "1742", "target": "454", "attributes": { "weight": 2 } }, { "key": "11386", "source": "1742", "target": "672", "attributes": { "weight": 1 } }, { "key": "11385", "source": "1742", "target": "14", "attributes": { "weight": 1 } }, { "key": "11377", "source": "1742", "target": "1137", "attributes": { "weight": 1 } }, { "key": "11378", "source": "1742", "target": "53", "attributes": { "weight": 1 } }, { "key": "31672", "source": "1742", "target": "595", "attributes": { "weight": 1 } }, { "key": "11384", "source": "1742", "target": "695", "attributes": { "weight": 2 } }, { "key": "11371", "source": "1742", "target": "790", "attributes": { "weight": 1 } }, { "key": "11359", "source": "1742", "target": "130", "attributes": { "weight": 1 } }, { "key": "11364", "source": "1742", "target": "3", "attributes": { "weight": 3 } }, { "key": "11368", "source": "1742", "target": "52", "attributes": { "weight": 1 } }, { "key": "11387", "source": "1742", "target": "673", "attributes": { "weight": 1 } }, { "key": "11388", "source": "1742", "target": "340", "attributes": { "weight": 1 } }, { "key": "11356", "source": "1742", "target": "59", "attributes": { "weight": 1 } }, { "key": "11376", "source": "1742", "target": "817", "attributes": { "weight": 1 } }, { "key": "11380", "source": "1742", "target": "135", "attributes": { "weight": 1 } }, { "key": "10913", "source": "1742", "target": "457", "attributes": { "weight": 2 } }, { "key": "11355", "source": "1742", "target": "220", "attributes": { "weight": 1 } }, { "key": "11392", "source": "1742", "target": "497", "attributes": { "weight": 2 } }, { "key": "11363", "source": "1742", "target": "442", "attributes": { "weight": 1 } }, { "key": "11357", "source": "1742", "target": "1779", "attributes": { "weight": 1 } }, { "key": "10917", "source": "1743", "target": "457", "attributes": { "weight": 2 } }, { "key": "20681", "source": "1744", "target": "56", "attributes": { "weight": 1 } }, { "key": "33624", "source": "1744", "target": "425", "attributes": { "weight": 1 } }, { "key": "20684", "source": "1744", "target": "2277", "attributes": { "weight": 1 } }, { "key": "20667", "source": "1744", "target": "186", "attributes": { "weight": 1 } }, { "key": "20670", "source": "1744", "target": "470", "attributes": { "weight": 5 } }, { "key": "27284", "source": "1744", "target": "52", "attributes": { "weight": 3 } }, { "key": "30777", "source": "1744", "target": "189", "attributes": { "weight": 1 } }, { "key": "20650", "source": "1744", "target": "221", "attributes": { "weight": 1 } }, { "key": "32804", "source": "1744", "target": "228", "attributes": { "weight": 2 } }, { "key": "32805", "source": "1744", "target": "1088", "attributes": { "weight": 1 } }, { "key": "20656", "source": "1744", "target": "2243", "attributes": { "weight": 1 } }, { "key": "20649", "source": "1744", "target": "130", "attributes": { "weight": 5 } }, { "key": "24179", "source": "1744", "target": "1125", "attributes": { "weight": 5 } }, { "key": "18077", "source": "1744", "target": "220", "attributes": { "weight": 3 } }, { "key": "32923", "source": "1744", "target": "1047", "attributes": { "weight": 2 } }, { "key": "20655", "source": "1744", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20668", "source": "1744", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20658", "source": "1744", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20669", "source": "1744", "target": "1121", "attributes": { "weight": 1 } }, { "key": "11239", "source": "1744", "target": "452", "attributes": { "weight": 2 } }, { "key": "20679", "source": "1744", "target": "489", "attributes": { "weight": 1 } }, { "key": "20654", "source": "1744", "target": "223", "attributes": { "weight": 5 } }, { "key": "10919", "source": "1744", "target": "57", "attributes": { "weight": 3 } }, { "key": "26368", "source": "1744", "target": "1258", "attributes": { "weight": 2 } }, { "key": "32925", "source": "1744", "target": "109", "attributes": { "weight": 1 } }, { "key": "20660", "source": "1744", "target": "2246", "attributes": { "weight": 1 } }, { "key": "20651", "source": "1744", "target": "222", "attributes": { "weight": 1 } }, { "key": "20664", "source": "1744", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20671", "source": "1744", "target": "54", "attributes": { "weight": 1 } }, { "key": "32924", "source": "1744", "target": "108", "attributes": { "weight": 1 } }, { "key": "20662", "source": "1744", "target": "449", "attributes": { "weight": 1 } }, { "key": "20666", "source": "1744", "target": "453", "attributes": { "weight": 1 } }, { "key": "12019", "source": "1744", "target": "468", "attributes": { "weight": 1 } }, { "key": "20653", "source": "1744", "target": "438", "attributes": { "weight": 1 } }, { "key": "11240", "source": "1744", "target": "473", "attributes": { "weight": 2 } }, { "key": "30780", "source": "1744", "target": "1063", "attributes": { "weight": 2 } }, { "key": "20674", "source": "1744", "target": "471", "attributes": { "weight": 6 } }, { "key": "20657", "source": "1744", "target": "1112", "attributes": { "weight": 1 } }, { "key": "20665", "source": "1744", "target": "451", "attributes": { "weight": 1 } }, { "key": "30776", "source": "1744", "target": "1357", "attributes": { "weight": 3 } }, { "key": "20672", "source": "1744", "target": "1836", "attributes": { "weight": 1 } }, { "key": "20663", "source": "1744", "target": "1531", "attributes": { "weight": 1 } }, { "key": "20661", "source": "1744", "target": "448", "attributes": { "weight": 1 } }, { "key": "20678", "source": "1744", "target": "231", "attributes": { "weight": 1 } }, { "key": "20676", "source": "1744", "target": "2260", "attributes": { "weight": 1 } }, { "key": "32926", "source": "1744", "target": "135", "attributes": { "weight": 2 } }, { "key": "32922", "source": "1744", "target": "778", "attributes": { "weight": 1 } }, { "key": "16475", "source": "1744", "target": "1387", "attributes": { "weight": 1 } }, { "key": "20677", "source": "1744", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20682", "source": "1744", "target": "2273", "attributes": { "weight": 1 } }, { "key": "20673", "source": "1744", "target": "1122", "attributes": { "weight": 1 } }, { "key": "20680", "source": "1744", "target": "1131", "attributes": { "weight": 1 } }, { "key": "26725", "source": "1744", "target": "454", "attributes": { "weight": 2 } }, { "key": "33625", "source": "1744", "target": "442", "attributes": { "weight": 1 } }, { "key": "20683", "source": "1744", "target": "1375", "attributes": { "weight": 1 } }, { "key": "30779", "source": "1744", "target": "3004", "attributes": { "weight": 2 } }, { "key": "30778", "source": "1744", "target": "1370", "attributes": { "weight": 2 } }, { "key": "20675", "source": "1744", "target": "1087", "attributes": { "weight": 1 } }, { "key": "20659", "source": "1744", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20652", "source": "1744", "target": "50", "attributes": { "weight": 1 } }, { "key": "12302", "source": "1744", "target": "435", "attributes": { "weight": 1 } }, { "key": "10922", "source": "1745", "target": "457", "attributes": { "weight": 2 } }, { "key": "31352", "source": "1745", "target": "59", "attributes": { "weight": 1 } }, { "key": "16973", "source": "1745", "target": "1354", "attributes": { "weight": 1 } }, { "key": "10924", "source": "1746", "target": "471", "attributes": { "weight": 2 } }, { "key": "10928", "source": "1747", "target": "457", "attributes": { "weight": 2 } }, { "key": "10930", "source": "1748", "target": "457", "attributes": { "weight": 2 } }, { "key": "10934", "source": "1749", "target": "457", "attributes": { "weight": 2 } }, { "key": "21223", "source": "1750", "target": "489", "attributes": { "weight": 1 } }, { "key": "29182", "source": "1750", "target": "8", "attributes": { "weight": 1 } }, { "key": "12728", "source": "1750", "target": "695", "attributes": { "weight": 1 } }, { "key": "29184", "source": "1750", "target": "488", "attributes": { "weight": 1 } }, { "key": "17021", "source": "1750", "target": "70", "attributes": { "weight": 3 } }, { "key": "21219", "source": "1750", "target": "438", "attributes": { "weight": 1 } }, { "key": "32612", "source": "1750", "target": "791", "attributes": { "weight": 1 } }, { "key": "35706", "source": "1750", "target": "3248", "attributes": { "weight": 1 } }, { "key": "35705", "source": "1750", "target": "458", "attributes": { "weight": 1 } }, { "key": "27192", "source": "1750", "target": "1390", "attributes": { "weight": 3 } }, { "key": "26764", "source": "1750", "target": "454", "attributes": { "weight": 1 } }, { "key": "21220", "source": "1750", "target": "2251", "attributes": { "weight": 1 } }, { "key": "29181", "source": "1750", "target": "1024", "attributes": { "weight": 1 } }, { "key": "21221", "source": "1750", "target": "472", "attributes": { "weight": 1 } }, { "key": "21218", "source": "1750", "target": "221", "attributes": { "weight": 1 } }, { "key": "21222", "source": "1750", "target": "2095", "attributes": { "weight": 1 } }, { "key": "25900", "source": "1750", "target": "220", "attributes": { "weight": 2 } }, { "key": "29180", "source": "1750", "target": "674", "attributes": { "weight": 2 } }, { "key": "29178", "source": "1750", "target": "59", "attributes": { "weight": 2 } }, { "key": "29185", "source": "1750", "target": "595", "attributes": { "weight": 2 } }, { "key": "35708", "source": "1750", "target": "3250", "attributes": { "weight": 1 } }, { "key": "26930", "source": "1750", "target": "497", "attributes": { "weight": 1 } }, { "key": "10936", "source": "1750", "target": "457", "attributes": { "weight": 1 } }, { "key": "29179", "source": "1750", "target": "223", "attributes": { "weight": 2 } }, { "key": "29186", "source": "1750", "target": "1389", "attributes": { "weight": 2 } }, { "key": "29183", "source": "1750", "target": "474", "attributes": { "weight": 1 } }, { "key": "35707", "source": "1750", "target": "3249", "attributes": { "weight": 1 } }, { "key": "33723", "source": "1750", "target": "135", "attributes": { "weight": 1 } }, { "key": "21231", "source": "1751", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21225", "source": "1751", "target": "429", "attributes": { "weight": 1 } }, { "key": "21230", "source": "1751", "target": "2251", "attributes": { "weight": 1 } }, { "key": "21232", "source": "1751", "target": "489", "attributes": { "weight": 1 } }, { "key": "21226", "source": "1751", "target": "1354", "attributes": { "weight": 1 } }, { "key": "10938", "source": "1751", "target": "457", "attributes": { "weight": 1 } }, { "key": "21227", "source": "1751", "target": "221", "attributes": { "weight": 1 } }, { "key": "21228", "source": "1751", "target": "438", "attributes": { "weight": 1 } }, { "key": "21229", "source": "1751", "target": "440", "attributes": { "weight": 1 } }, { "key": "13619", "source": "1751", "target": "59", "attributes": { "weight": 3 } }, { "key": "17055", "source": "1752", "target": "59", "attributes": { "weight": 2 } }, { "key": "17054", "source": "1752", "target": "1354", "attributes": { "weight": 1 } }, { "key": "32243", "source": "1752", "target": "193", "attributes": { "weight": 1 } }, { "key": "10939", "source": "1752", "target": "1733", "attributes": { "weight": 2 } }, { "key": "23395", "source": "1752", "target": "2092", "attributes": { "weight": 1 } }, { "key": "23396", "source": "1752", "target": "2447", "attributes": { "weight": 1 } }, { "key": "10940", "source": "1753", "target": "457", "attributes": { "weight": 1 } }, { "key": "13677", "source": "1753", "target": "59", "attributes": { "weight": 4 } }, { "key": "10946", "source": "1754", "target": "220", "attributes": { "weight": 2 } }, { "key": "16592", "source": "1754", "target": "429", "attributes": { "weight": 1 } }, { "key": "16594", "source": "1754", "target": "674", "attributes": { "weight": 2 } }, { "key": "23908", "source": "1754", "target": "130", "attributes": { "weight": 2 } }, { "key": "16596", "source": "1754", "target": "231", "attributes": { "weight": 1 } }, { "key": "11814", "source": "1754", "target": "1808", "attributes": { "weight": 1 } }, { "key": "16595", "source": "1754", "target": "135", "attributes": { "weight": 1 } }, { "key": "32290", "source": "1754", "target": "791", "attributes": { "weight": 1 } }, { "key": "16593", "source": "1754", "target": "1354", "attributes": { "weight": 1 } }, { "key": "16577", "source": "1754", "target": "1337", "attributes": { "weight": 1 } }, { "key": "31209", "source": "1754", "target": "59", "attributes": { "weight": 1 } }, { "key": "16576", "source": "1754", "target": "1522", "attributes": { "weight": 3 } }, { "key": "11815", "source": "1754", "target": "70", "attributes": { "weight": 3 } }, { "key": "35792", "source": "1755", "target": "1360", "attributes": { "weight": 1 } }, { "key": "16599", "source": "1755", "target": "70", "attributes": { "weight": 2 } }, { "key": "12659", "source": "1755", "target": "695", "attributes": { "weight": 1 } }, { "key": "10948", "source": "1755", "target": "220", "attributes": { "weight": 2 } }, { "key": "16597", "source": "1755", "target": "1354", "attributes": { "weight": 1 } }, { "key": "35793", "source": "1755", "target": "1390", "attributes": { "weight": 1 } }, { "key": "16598", "source": "1755", "target": "135", "attributes": { "weight": 1 } }, { "key": "31214", "source": "1755", "target": "434", "attributes": { "weight": 2 } }, { "key": "31215", "source": "1755", "target": "674", "attributes": { "weight": 1 } }, { "key": "31216", "source": "1755", "target": "1389", "attributes": { "weight": 1 } }, { "key": "19193", "source": "1756", "target": "489", "attributes": { "weight": 1 } }, { "key": "19188", "source": "1756", "target": "471", "attributes": { "weight": 1 } }, { "key": "19184", "source": "1756", "target": "2251", "attributes": { "weight": 1 } }, { "key": "10950", "source": "1756", "target": "469", "attributes": { "weight": 1 } }, { "key": "19171", "source": "1756", "target": "431", "attributes": { "weight": 1 } }, { "key": "35795", "source": "1756", "target": "1026", "attributes": { "weight": 1 } }, { "key": "19172", "source": "1756", "target": "221", "attributes": { "weight": 1 } }, { "key": "19195", "source": "1756", "target": "1777", "attributes": { "weight": 1 } }, { "key": "19185", "source": "1756", "target": "1998", "attributes": { "weight": 1 } }, { "key": "33171", "source": "1756", "target": "473", "attributes": { "weight": 1 } }, { "key": "19173", "source": "1756", "target": "1522", "attributes": { "weight": 1 } }, { "key": "19181", "source": "1756", "target": "449", "attributes": { "weight": 1 } }, { "key": "19196", "source": "1756", "target": "235", "attributes": { "weight": 1 } }, { "key": "19183", "source": "1756", "target": "186", "attributes": { "weight": 1 } }, { "key": "25082", "source": "1756", "target": "452", "attributes": { "weight": 1 } }, { "key": "19178", "source": "1756", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19190", "source": "1756", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19176", "source": "1756", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19194", "source": "1756", "target": "73", "attributes": { "weight": 1 } }, { "key": "19189", "source": "1756", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19187", "source": "1756", "target": "2258", "attributes": { "weight": 1 } }, { "key": "10951", "source": "1756", "target": "492", "attributes": { "weight": 1 } }, { "key": "19191", "source": "1756", "target": "2268", "attributes": { "weight": 1 } }, { "key": "19174", "source": "1756", "target": "222", "attributes": { "weight": 1 } }, { "key": "19177", "source": "1756", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19182", "source": "1756", "target": "2248", "attributes": { "weight": 1 } }, { "key": "19179", "source": "1756", "target": "226", "attributes": { "weight": 1 } }, { "key": "19180", "source": "1756", "target": "448", "attributes": { "weight": 1 } }, { "key": "19186", "source": "1756", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19175", "source": "1756", "target": "2025", "attributes": { "weight": 1 } }, { "key": "19192", "source": "1756", "target": "480", "attributes": { "weight": 1 } }, { "key": "11000", "source": "1757", "target": "1026", "attributes": { "weight": 2 } }, { "key": "11029", "source": "1758", "target": "452", "attributes": { "weight": 2 } }, { "key": "11037", "source": "1759", "target": "469", "attributes": { "weight": 1 } }, { "key": "19729", "source": "1759", "target": "480", "attributes": { "weight": 1 } }, { "key": "19726", "source": "1759", "target": "449", "attributes": { "weight": 1 } }, { "key": "19727", "source": "1759", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19724", "source": "1759", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19730", "source": "1759", "target": "489", "attributes": { "weight": 1 } }, { "key": "19728", "source": "1759", "target": "2254", "attributes": { "weight": 1 } }, { "key": "19725", "source": "1759", "target": "2245", "attributes": { "weight": 1 } }, { "key": "29021", "source": "1760", "target": "495", "attributes": { "weight": 2 } }, { "key": "35874", "source": "1760", "target": "222", "attributes": { "weight": 1 } }, { "key": "35872", "source": "1760", "target": "130", "attributes": { "weight": 1 } }, { "key": "35876", "source": "1760", "target": "2244", "attributes": { "weight": 1 } }, { "key": "35884", "source": "1760", "target": "1375", "attributes": { "weight": 1 } }, { "key": "11038", "source": "1760", "target": "1026", "attributes": { "weight": 2 } }, { "key": "35882", "source": "1760", "target": "340", "attributes": { "weight": 1 } }, { "key": "35881", "source": "1760", "target": "471", "attributes": { "weight": 1 } }, { "key": "35885", "source": "1760", "target": "2278", "attributes": { "weight": 1 } }, { "key": "35879", "source": "1760", "target": "2248", "attributes": { "weight": 1 } }, { "key": "35883", "source": "1760", "target": "235", "attributes": { "weight": 1 } }, { "key": "35877", "source": "1760", "target": "2245", "attributes": { "weight": 1 } }, { "key": "28932", "source": "1760", "target": "479", "attributes": { "weight": 2 } }, { "key": "35875", "source": "1760", "target": "1023", "attributes": { "weight": 1 } }, { "key": "35873", "source": "1760", "target": "221", "attributes": { "weight": 1 } }, { "key": "35878", "source": "1760", "target": "448", "attributes": { "weight": 1 } }, { "key": "26425", "source": "1760", "target": "189", "attributes": { "weight": 1 } }, { "key": "35880", "source": "1760", "target": "2258", "attributes": { "weight": 1 } }, { "key": "32136", "source": "1761", "target": "1768", "attributes": { "weight": 1 } }, { "key": "11148", "source": "1761", "target": "220", "attributes": { "weight": 2 } }, { "key": "12238", "source": "1761", "target": "1362", "attributes": { "weight": 1 } }, { "key": "32135", "source": "1761", "target": "1141", "attributes": { "weight": 1 } }, { "key": "11150", "source": "1762", "target": "452", "attributes": { "weight": 2 } }, { "key": "30727", "source": "1762", "target": "2258", "attributes": { "weight": 1 } }, { "key": "11152", "source": "1762", "target": "492", "attributes": { "weight": 2 } }, { "key": "30728", "source": "1762", "target": "340", "attributes": { "weight": 1 } }, { "key": "11149", "source": "1762", "target": "222", "attributes": { "weight": 2 } }, { "key": "11151", "source": "1762", "target": "1026", "attributes": { "weight": 2 } }, { "key": "29030", "source": "1762", "target": "495", "attributes": { "weight": 2 } }, { "key": "22293", "source": "1763", "target": "794", "attributes": { "weight": 2 } }, { "key": "23888", "source": "1763", "target": "2288", "attributes": { "weight": 3 } }, { "key": "29659", "source": "1763", "target": "2883", "attributes": { "weight": 1 } }, { "key": "29673", "source": "1763", "target": "2782", "attributes": { "weight": 1 } }, { "key": "32539", "source": "1763", "target": "791", "attributes": { "weight": 1 } }, { "key": "29675", "source": "1763", "target": "1063", "attributes": { "weight": 1 } }, { "key": "29658", "source": "1763", "target": "357", "attributes": { "weight": 1 } }, { "key": "29671", "source": "1763", "target": "1060", "attributes": { "weight": 2 } }, { "key": "23884", "source": "1763", "target": "2463", "attributes": { "weight": 2 } }, { "key": "17473", "source": "1763", "target": "358", "attributes": { "weight": 4 } }, { "key": "29661", "source": "1763", "target": "1045", "attributes": { "weight": 2 } }, { "key": "29663", "source": "1763", "target": "359", "attributes": { "weight": 3 } }, { "key": "27598", "source": "1763", "target": "1042", "attributes": { "weight": 2 } }, { "key": "29674", "source": "1763", "target": "2892", "attributes": { "weight": 1 } }, { "key": "22673", "source": "1763", "target": "1037", "attributes": { "weight": 1 } }, { "key": "23885", "source": "1763", "target": "421", "attributes": { "weight": 3 } }, { "key": "29662", "source": "1763", "target": "2886", "attributes": { "weight": 1 } }, { "key": "29664", "source": "1763", "target": "361", "attributes": { "weight": 1 } }, { "key": "29669", "source": "1763", "target": "2888", "attributes": { "weight": 1 } }, { "key": "23887", "source": "1763", "target": "2464", "attributes": { "weight": 2 } }, { "key": "11162", "source": "1763", "target": "1036", "attributes": { "weight": 3 } }, { "key": "29665", "source": "1763", "target": "171", "attributes": { "weight": 1 } }, { "key": "23886", "source": "1763", "target": "1253", "attributes": { "weight": 3 } }, { "key": "29667", "source": "1763", "target": "362", "attributes": { "weight": 3 } }, { "key": "30457", "source": "1763", "target": "1046", "attributes": { "weight": 1 } }, { "key": "29657", "source": "1763", "target": "645", "attributes": { "weight": 1 } }, { "key": "23890", "source": "1763", "target": "2465", "attributes": { "weight": 3 } }, { "key": "29660", "source": "1763", "target": "419", "attributes": { "weight": 1 } }, { "key": "13207", "source": "1763", "target": "264", "attributes": { "weight": 1 } }, { "key": "14262", "source": "1763", "target": "164", "attributes": { "weight": 2 } }, { "key": "29672", "source": "1763", "target": "2891", "attributes": { "weight": 1 } }, { "key": "29668", "source": "1763", "target": "2115", "attributes": { "weight": 1 } }, { "key": "23889", "source": "1763", "target": "2116", "attributes": { "weight": 3 } }, { "key": "24524", "source": "1763", "target": "790", "attributes": { "weight": 1 } }, { "key": "29666", "source": "1763", "target": "468", "attributes": { "weight": 1 } }, { "key": "29670", "source": "1763", "target": "2889", "attributes": { "weight": 1 } }, { "key": "16841", "source": "1764", "target": "70", "attributes": { "weight": 2 } }, { "key": "36322", "source": "1764", "target": "1337", "attributes": { "weight": 1 } }, { "key": "31325", "source": "1764", "target": "674", "attributes": { "weight": 2 } }, { "key": "35977", "source": "1764", "target": "1360", "attributes": { "weight": 1 } }, { "key": "36321", "source": "1764", "target": "434", "attributes": { "weight": 1 } }, { "key": "36323", "source": "1764", "target": "1389", "attributes": { "weight": 1 } }, { "key": "11164", "source": "1764", "target": "220", "attributes": { "weight": 2 } }, { "key": "31324", "source": "1764", "target": "1354", "attributes": { "weight": 1 } }, { "key": "17475", "source": "1765", "target": "358", "attributes": { "weight": 3 } }, { "key": "24723", "source": "1765", "target": "2290", "attributes": { "weight": 2 } }, { "key": "30458", "source": "1765", "target": "1046", "attributes": { "weight": 2 } }, { "key": "31112", "source": "1765", "target": "556", "attributes": { "weight": 2 } }, { "key": "24634", "source": "1765", "target": "2118", "attributes": { "weight": 1 } }, { "key": "31111", "source": "1765", "target": "359", "attributes": { "weight": 3 } }, { "key": "24724", "source": "1765", "target": "2518", "attributes": { "weight": 2 } }, { "key": "26057", "source": "1765", "target": "163", "attributes": { "weight": 1 } }, { "key": "31114", "source": "1765", "target": "1060", "attributes": { "weight": 3 } }, { "key": "17907", "source": "1765", "target": "1380", "attributes": { "weight": 2 } }, { "key": "27872", "source": "1765", "target": "339", "attributes": { "weight": 2 } }, { "key": "32540", "source": "1765", "target": "791", "attributes": { "weight": 1 } }, { "key": "11165", "source": "1765", "target": "1036", "attributes": { "weight": 4 } }, { "key": "30711", "source": "1765", "target": "889", "attributes": { "weight": 2 } }, { "key": "24722", "source": "1765", "target": "2517", "attributes": { "weight": 2 } }, { "key": "22294", "source": "1765", "target": "794", "attributes": { "weight": 2 } }, { "key": "21583", "source": "1765", "target": "89", "attributes": { "weight": 1 } }, { "key": "24721", "source": "1765", "target": "2516", "attributes": { "weight": 2 } }, { "key": "22674", "source": "1765", "target": "1037", "attributes": { "weight": 1 } }, { "key": "34866", "source": "1765", "target": "2511", "attributes": { "weight": 1 } }, { "key": "37107", "source": "1765", "target": "2115", "attributes": { "weight": 1 } }, { "key": "31113", "source": "1765", "target": "1555", "attributes": { "weight": 1 } }, { "key": "24075", "source": "1766", "target": "437", "attributes": { "weight": 2 } }, { "key": "11170", "source": "1766", "target": "471", "attributes": { "weight": 3 } }, { "key": "32881", "source": "1766", "target": "470", "attributes": { "weight": 1 } }, { "key": "24074", "source": "1766", "target": "130", "attributes": { "weight": 2 } }, { "key": "24076", "source": "1766", "target": "468", "attributes": { "weight": 2 } }, { "key": "24077", "source": "1766", "target": "1374", "attributes": { "weight": 2 } }, { "key": "32141", "source": "1767", "target": "1141", "attributes": { "weight": 1 } }, { "key": "11207", "source": "1767", "target": "220", "attributes": { "weight": 2 } }, { "key": "12298", "source": "1768", "target": "450", "attributes": { "weight": 1 } }, { "key": "12301", "source": "1768", "target": "472", "attributes": { "weight": 1 } }, { "key": "32145", "source": "1768", "target": "1761", "attributes": { "weight": 1 } }, { "key": "25950", "source": "1768", "target": "1367", "attributes": { "weight": 1 } }, { "key": "12300", "source": "1768", "target": "1362", "attributes": { "weight": 1 } }, { "key": "12530", "source": "1768", "target": "1141", "attributes": { "weight": 2 } }, { "key": "11236", "source": "1768", "target": "220", "attributes": { "weight": 2 } }, { "key": "12299", "source": "1768", "target": "1359", "attributes": { "weight": 1 } }, { "key": "11238", "source": "1769", "target": "1026", "attributes": { "weight": 2 } }, { "key": "20848", "source": "1770", "target": "441", "attributes": { "weight": 1 } }, { "key": "20852", "source": "1770", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20850", "source": "1770", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20851", "source": "1770", "target": "2253", "attributes": { "weight": 1 } }, { "key": "11258", "source": "1770", "target": "469", "attributes": { "weight": 1 } }, { "key": "20849", "source": "1770", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20847", "source": "1770", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20846", "source": "1770", "target": "221", "attributes": { "weight": 1 } }, { "key": "20853", "source": "1770", "target": "489", "attributes": { "weight": 1 } }, { "key": "11263", "source": "1771", "target": "492", "attributes": { "weight": 1 } }, { "key": "11261", "source": "1771", "target": "452", "attributes": { "weight": 2 } }, { "key": "11262", "source": "1771", "target": "469", "attributes": { "weight": 2 } }, { "key": "35338", "source": "1771", "target": "494", "attributes": { "weight": 1 } }, { "key": "11270", "source": "1772", "target": "1036", "attributes": { "weight": 3 } }, { "key": "23263", "source": "1772", "target": "1553", "attributes": { "weight": 1 } }, { "key": "15365", "source": "1772", "target": "454", "attributes": { "weight": 1 } }, { "key": "35024", "source": "1772", "target": "352", "attributes": { "weight": 1 } }, { "key": "26093", "source": "1772", "target": "163", "attributes": { "weight": 1 } }, { "key": "23264", "source": "1772", "target": "2441", "attributes": { "weight": 1 } }, { "key": "27729", "source": "1772", "target": "1042", "attributes": { "weight": 2 } }, { "key": "23262", "source": "1772", "target": "638", "attributes": { "weight": 2 } }, { "key": "17512", "source": "1772", "target": "358", "attributes": { "weight": 1 } }, { "key": "11278", "source": "1773", "target": "1026", "attributes": { "weight": 2 } }, { "key": "23805", "source": "1774", "target": "241", "attributes": { "weight": 1 } }, { "key": "23806", "source": "1774", "target": "164", "attributes": { "weight": 1 } }, { "key": "23810", "source": "1774", "target": "358", "attributes": { "weight": 1 } }, { "key": "23801", "source": "1774", "target": "0", "attributes": { "weight": 2 } }, { "key": "23812", "source": "1774", "target": "242", "attributes": { "weight": 1 } }, { "key": "23833", "source": "1774", "target": "245", "attributes": { "weight": 1 } }, { "key": "23832", "source": "1774", "target": "580", "attributes": { "weight": 1 } }, { "key": "23841", "source": "1774", "target": "349", "attributes": { "weight": 1 } }, { "key": "23821", "source": "1774", "target": "682", "attributes": { "weight": 3 } }, { "key": "23829", "source": "1774", "target": "473", "attributes": { "weight": 1 } }, { "key": "23819", "source": "1774", "target": "6", "attributes": { "weight": 2 } }, { "key": "23842", "source": "1774", "target": "340", "attributes": { "weight": 1 } }, { "key": "23814", "source": "1774", "target": "789", "attributes": { "weight": 2 } }, { "key": "33829", "source": "1774", "target": "2646", "attributes": { "weight": 1 } }, { "key": "12726", "source": "1774", "target": "695", "attributes": { "weight": 2 } }, { "key": "23820", "source": "1774", "target": "681", "attributes": { "weight": 2 } }, { "key": "23804", "source": "1774", "target": "2454", "attributes": { "weight": 1 } }, { "key": "23823", "source": "1774", "target": "817", "attributes": { "weight": 2 } }, { "key": "23822", "source": "1774", "target": "243", "attributes": { "weight": 1 } }, { "key": "14898", "source": "1774", "target": "319", "attributes": { "weight": 2 } }, { "key": "23827", "source": "1774", "target": "468", "attributes": { "weight": 1 } }, { "key": "23818", "source": "1774", "target": "1024", "attributes": { "weight": 1 } }, { "key": "33828", "source": "1774", "target": "2", "attributes": { "weight": 1 } }, { "key": "23813", "source": "1774", "target": "454", "attributes": { "weight": 1 } }, { "key": "23836", "source": "1774", "target": "823", "attributes": { "weight": 2 } }, { "key": "23807", "source": "1774", "target": "442", "attributes": { "weight": 1 } }, { "key": "23825", "source": "1774", "target": "7", "attributes": { "weight": 1 } }, { "key": "23838", "source": "1774", "target": "178", "attributes": { "weight": 2 } }, { "key": "23845", "source": "1774", "target": "351", "attributes": { "weight": 1 } }, { "key": "23803", "source": "1774", "target": "1035", "attributes": { "weight": 1 } }, { "key": "23824", "source": "1774", "target": "171", "attributes": { "weight": 2 } }, { "key": "24463", "source": "1774", "target": "2505", "attributes": { "weight": 1 } }, { "key": "23843", "source": "1774", "target": "2455", "attributes": { "weight": 1 } }, { "key": "23817", "source": "1774", "target": "791", "attributes": { "weight": 2 } }, { "key": "23809", "source": "1774", "target": "3", "attributes": { "weight": 1 } }, { "key": "23839", "source": "1774", "target": "246", "attributes": { "weight": 1 } }, { "key": "23808", "source": "1774", "target": "419", "attributes": { "weight": 1 } }, { "key": "30618", "source": "1774", "target": "19", "attributes": { "weight": 1 } }, { "key": "14897", "source": "1774", "target": "304", "attributes": { "weight": 2 } }, { "key": "23802", "source": "1774", "target": "787", "attributes": { "weight": 2 } }, { "key": "23847", "source": "1774", "target": "828", "attributes": { "weight": 1 } }, { "key": "23831", "source": "1774", "target": "244", "attributes": { "weight": 1 } }, { "key": "23840", "source": "1774", "target": "14", "attributes": { "weight": 2 } }, { "key": "35040", "source": "1774", "target": "352", "attributes": { "weight": 1 } }, { "key": "23834", "source": "1774", "target": "13", "attributes": { "weight": 2 } }, { "key": "23815", "source": "1774", "target": "5", "attributes": { "weight": 1 } }, { "key": "23844", "source": "1774", "target": "1780", "attributes": { "weight": 2 } }, { "key": "23837", "source": "1774", "target": "794", "attributes": { "weight": 1 } }, { "key": "24549", "source": "1774", "target": "790", "attributes": { "weight": 1 } }, { "key": "23830", "source": "1774", "target": "346", "attributes": { "weight": 1 } }, { "key": "23826", "source": "1774", "target": "8", "attributes": { "weight": 2 } }, { "key": "23811", "source": "1774", "target": "452", "attributes": { "weight": 1 } }, { "key": "23816", "source": "1774", "target": "278", "attributes": { "weight": 3 } }, { "key": "23846", "source": "1774", "target": "2456", "attributes": { "weight": 1 } }, { "key": "23835", "source": "1774", "target": "479", "attributes": { "weight": 2 } }, { "key": "23828", "source": "1774", "target": "9", "attributes": { "weight": 2 } }, { "key": "11287", "source": "1774", "target": "595", "attributes": { "weight": 2 } }, { "key": "29056", "source": "1775", "target": "495", "attributes": { "weight": 2 } }, { "key": "21216", "source": "1775", "target": "2245", "attributes": { "weight": 1 } }, { "key": "37329", "source": "1775", "target": "57", "attributes": { "weight": 1 } }, { "key": "21217", "source": "1775", "target": "489", "attributes": { "weight": 1 } }, { "key": "11290", "source": "1775", "target": "452", "attributes": { "weight": 2 } }, { "key": "32609", "source": "1775", "target": "791", "attributes": { "weight": 1 } }, { "key": "37325", "source": "1775", "target": "442", "attributes": { "weight": 1 } }, { "key": "25392", "source": "1775", "target": "433", "attributes": { "weight": 2 } }, { "key": "37328", "source": "1775", "target": "454", "attributes": { "weight": 1 } }, { "key": "37326", "source": "1775", "target": "3", "attributes": { "weight": 1 } }, { "key": "25116", "source": "1775", "target": "1547", "attributes": { "weight": 2 } }, { "key": "37327", "source": "1775", "target": "183", "attributes": { "weight": 1 } }, { "key": "36126", "source": "1776", "target": "448", "attributes": { "weight": 1 } }, { "key": "36127", "source": "1776", "target": "2258", "attributes": { "weight": 1 } }, { "key": "36125", "source": "1776", "target": "1023", "attributes": { "weight": 1 } }, { "key": "11291", "source": "1776", "target": "1026", "attributes": { "weight": 2 } }, { "key": "11306", "source": "1777", "target": "469", "attributes": { "weight": 1 } }, { "key": "21277", "source": "1777", "target": "489", "attributes": { "weight": 1 } }, { "key": "26769", "source": "1777", "target": "189", "attributes": { "weight": 1 } }, { "key": "21278", "source": "1777", "target": "2189", "attributes": { "weight": 1 } }, { "key": "11305", "source": "1777", "target": "452", "attributes": { "weight": 1 } }, { "key": "11307", "source": "1777", "target": "190", "attributes": { "weight": 1 } }, { "key": "21275", "source": "1777", "target": "1023", "attributes": { "weight": 1 } }, { "key": "21273", "source": "1777", "target": "1756", "attributes": { "weight": 1 } }, { "key": "21279", "source": "1777", "target": "1375", "attributes": { "weight": 1 } }, { "key": "21274", "source": "1777", "target": "439", "attributes": { "weight": 1 } }, { "key": "21276", "source": "1777", "target": "2245", "attributes": { "weight": 1 } }, { "key": "26770", "source": "1778", "target": "189", "attributes": { "weight": 1 } }, { "key": "36155", "source": "1778", "target": "448", "attributes": { "weight": 1 } }, { "key": "36157", "source": "1778", "target": "471", "attributes": { "weight": 1 } }, { "key": "36153", "source": "1778", "target": "1023", "attributes": { "weight": 1 } }, { "key": "36158", "source": "1778", "target": "235", "attributes": { "weight": 1 } }, { "key": "36159", "source": "1778", "target": "1375", "attributes": { "weight": 1 } }, { "key": "11308", "source": "1778", "target": "1026", "attributes": { "weight": 2 } }, { "key": "36152", "source": "1778", "target": "222", "attributes": { "weight": 1 } }, { "key": "36154", "source": "1778", "target": "2244", "attributes": { "weight": 1 } }, { "key": "36151", "source": "1778", "target": "221", "attributes": { "weight": 1 } }, { "key": "36156", "source": "1778", "target": "2258", "attributes": { "weight": 1 } }, { "key": "36150", "source": "1778", "target": "130", "attributes": { "weight": 1 } }, { "key": "21504", "source": "1779", "target": "358", "attributes": { "weight": 2 } }, { "key": "32153", "source": "1779", "target": "454", "attributes": { "weight": 1 } }, { "key": "32154", "source": "1779", "target": "791", "attributes": { "weight": 2 } }, { "key": "32155", "source": "1779", "target": "468", "attributes": { "weight": 1 } }, { "key": "32152", "source": "1779", "target": "419", "attributes": { "weight": 1 } }, { "key": "30818", "source": "1779", "target": "3", "attributes": { "weight": 2 } }, { "key": "32150", "source": "1779", "target": "1035", "attributes": { "weight": 1 } }, { "key": "14323", "source": "1779", "target": "319", "attributes": { "weight": 1 } }, { "key": "26389", "source": "1779", "target": "5", "attributes": { "weight": 2 } }, { "key": "11328", "source": "1779", "target": "1742", "attributes": { "weight": 1 } }, { "key": "32151", "source": "1779", "target": "435", "attributes": { "weight": 1 } }, { "key": "25646", "source": "1780", "target": "791", "attributes": { "weight": 2 } }, { "key": "25647", "source": "1780", "target": "1024", "attributes": { "weight": 2 } }, { "key": "14911", "source": "1780", "target": "319", "attributes": { "weight": 2 } }, { "key": "25655", "source": "1780", "target": "2612", "attributes": { "weight": 1 } }, { "key": "16562", "source": "1780", "target": "787", "attributes": { "weight": 5 } }, { "key": "16567", "source": "1780", "target": "2076", "attributes": { "weight": 1 } }, { "key": "25652", "source": "1780", "target": "2505", "attributes": { "weight": 1 } }, { "key": "25654", "source": "1780", "target": "304", "attributes": { "weight": 1 } }, { "key": "25648", "source": "1780", "target": "2073", "attributes": { "weight": 1 } }, { "key": "23852", "source": "1780", "target": "1774", "attributes": { "weight": 2 } }, { "key": "25644", "source": "1780", "target": "789", "attributes": { "weight": 1 } }, { "key": "35043", "source": "1780", "target": "3", "attributes": { "weight": 1 } }, { "key": "25645", "source": "1780", "target": "5", "attributes": { "weight": 1 } }, { "key": "25649", "source": "1780", "target": "2074", "attributes": { "weight": 1 } }, { "key": "16566", "source": "1780", "target": "2075", "attributes": { "weight": 1 } }, { "key": "25651", "source": "1780", "target": "468", "attributes": { "weight": 1 } }, { "key": "25642", "source": "1780", "target": "2069", "attributes": { "weight": 1 } }, { "key": "25650", "source": "1780", "target": "8", "attributes": { "weight": 2 } }, { "key": "25653", "source": "1780", "target": "13", "attributes": { "weight": 1 } }, { "key": "18085", "source": "1780", "target": "1036", "attributes": { "weight": 2 } }, { "key": "11401", "source": "1780", "target": "1742", "attributes": { "weight": 1 } }, { "key": "16565", "source": "1780", "target": "2070", "attributes": { "weight": 2 } }, { "key": "16569", "source": "1780", "target": "2079", "attributes": { "weight": 2 } }, { "key": "25657", "source": "1780", "target": "14", "attributes": { "weight": 1 } }, { "key": "25658", "source": "1780", "target": "495", "attributes": { "weight": 2 } }, { "key": "25643", "source": "1780", "target": "454", "attributes": { "weight": 3 } }, { "key": "16561", "source": "1780", "target": "810", "attributes": { "weight": 2 } }, { "key": "16563", "source": "1780", "target": "2067", "attributes": { "weight": 2 } }, { "key": "16568", "source": "1780", "target": "2077", "attributes": { "weight": 2 } }, { "key": "25656", "source": "1780", "target": "595", "attributes": { "weight": 1 } }, { "key": "37429", "source": "1780", "target": "2080", "attributes": { "weight": 1 } }, { "key": "16564", "source": "1780", "target": "2068", "attributes": { "weight": 1 } }, { "key": "35044", "source": "1780", "target": "352", "attributes": { "weight": 1 } }, { "key": "22375", "source": "1780", "target": "794", "attributes": { "weight": 1 } }, { "key": "11405", "source": "1781", "target": "1787", "attributes": { "weight": 2 } }, { "key": "11407", "source": "1782", "target": "1788", "attributes": { "weight": 2 } }, { "key": "17889", "source": "1782", "target": "1380", "attributes": { "weight": 1 } }, { "key": "37083", "source": "1782", "target": "2579", "attributes": { "weight": 1 } }, { "key": "15097", "source": "1782", "target": "162", "attributes": { "weight": 2 } }, { "key": "15096", "source": "1782", "target": "161", "attributes": { "weight": 1 } }, { "key": "11408", "source": "1783", "target": "1787", "attributes": { "weight": 1 } }, { "key": "11409", "source": "1784", "target": "1787", "attributes": { "weight": 1 } }, { "key": "11412", "source": "1785", "target": "1787", "attributes": { "weight": 3 } }, { "key": "11415", "source": "1786", "target": "1787", "attributes": { "weight": 3 } }, { "key": "18093", "source": "1787", "target": "2184", "attributes": { "weight": 2 } }, { "key": "11417", "source": "1787", "target": "1783", "attributes": { "weight": 1 } }, { "key": "11422", "source": "1787", "target": "1788", "attributes": { "weight": 1 } }, { "key": "11419", "source": "1787", "target": "1784", "attributes": { "weight": 1 } }, { "key": "18091", "source": "1787", "target": "1541", "attributes": { "weight": 2 } }, { "key": "11420", "source": "1787", "target": "1785", "attributes": { "weight": 3 } }, { "key": "11418", "source": "1787", "target": "558", "attributes": { "weight": 3 } }, { "key": "18092", "source": "1787", "target": "2183", "attributes": { "weight": 2 } }, { "key": "11416", "source": "1787", "target": "1781", "attributes": { "weight": 1 } }, { "key": "11421", "source": "1787", "target": "1786", "attributes": { "weight": 3 } }, { "key": "11424", "source": "1788", "target": "162", "attributes": { "weight": 1 } }, { "key": "11426", "source": "1788", "target": "1787", "attributes": { "weight": 1 } }, { "key": "11425", "source": "1788", "target": "163", "attributes": { "weight": 2 } }, { "key": "11423", "source": "1788", "target": "1782", "attributes": { "weight": 1 } }, { "key": "33898", "source": "1789", "target": "1047", "attributes": { "weight": 1 } }, { "key": "28546", "source": "1789", "target": "199", "attributes": { "weight": 1 } }, { "key": "11474", "source": "1789", "target": "208", "attributes": { "weight": 1 } }, { "key": "11473", "source": "1789", "target": "370", "attributes": { "weight": 1 } }, { "key": "11647", "source": "1790", "target": "208", "attributes": { "weight": 1 } }, { "key": "11646", "source": "1790", "target": "199", "attributes": { "weight": 1 } }, { "key": "11661", "source": "1791", "target": "208", "attributes": { "weight": 1 } }, { "key": "11660", "source": "1791", "target": "370", "attributes": { "weight": 1 } }, { "key": "11668", "source": "1792", "target": "370", "attributes": { "weight": 1 } }, { "key": "18910", "source": "1792", "target": "1174", "attributes": { "weight": 1 } }, { "key": "11768", "source": "1793", "target": "1801", "attributes": { "weight": 2 } }, { "key": "11769", "source": "1793", "target": "1806", "attributes": { "weight": 3 } }, { "key": "17554", "source": "1793", "target": "1804", "attributes": { "weight": 1 } }, { "key": "11775", "source": "1794", "target": "1806", "attributes": { "weight": 4 } }, { "key": "17559", "source": "1794", "target": "1056", "attributes": { "weight": 2 } }, { "key": "31842", "source": "1794", "target": "2115", "attributes": { "weight": 1 } }, { "key": "11773", "source": "1794", "target": "1803", "attributes": { "weight": 2 } }, { "key": "24473", "source": "1794", "target": "1802", "attributes": { "weight": 1 } }, { "key": "24472", "source": "1794", "target": "358", "attributes": { "weight": 1 } }, { "key": "11774", "source": "1794", "target": "1804", "attributes": { "weight": 3 } }, { "key": "24471", "source": "1794", "target": "1796", "attributes": { "weight": 1 } }, { "key": "11771", "source": "1794", "target": "1799", "attributes": { "weight": 2 } }, { "key": "11770", "source": "1794", "target": "1798", "attributes": { "weight": 2 } }, { "key": "11772", "source": "1794", "target": "1801", "attributes": { "weight": 3 } }, { "key": "24474", "source": "1794", "target": "1805", "attributes": { "weight": 1 } }, { "key": "17560", "source": "1794", "target": "2148", "attributes": { "weight": 1 } }, { "key": "17562", "source": "1795", "target": "1806", "attributes": { "weight": 2 } }, { "key": "31843", "source": "1795", "target": "2115", "attributes": { "weight": 1 } }, { "key": "17561", "source": "1795", "target": "1796", "attributes": { "weight": 1 } }, { "key": "11776", "source": "1795", "target": "1801", "attributes": { "weight": 3 } }, { "key": "17570", "source": "1796", "target": "1804", "attributes": { "weight": 2 } }, { "key": "17567", "source": "1796", "target": "1798", "attributes": { "weight": 2 } }, { "key": "17565", "source": "1796", "target": "1795", "attributes": { "weight": 1 } }, { "key": "24479", "source": "1796", "target": "1803", "attributes": { "weight": 1 } }, { "key": "24480", "source": "1796", "target": "1805", "attributes": { "weight": 1 } }, { "key": "17566", "source": "1796", "target": "358", "attributes": { "weight": 2 } }, { "key": "17568", "source": "1796", "target": "1799", "attributes": { "weight": 3 } }, { "key": "24478", "source": "1796", "target": "1794", "attributes": { "weight": 1 } }, { "key": "17569", "source": "1796", "target": "1802", "attributes": { "weight": 1 } }, { "key": "17571", "source": "1796", "target": "1806", "attributes": { "weight": 2 } }, { "key": "24481", "source": "1796", "target": "2152", "attributes": { "weight": 1 } }, { "key": "11777", "source": "1796", "target": "1801", "attributes": { "weight": 2 } }, { "key": "11780", "source": "1798", "target": "1801", "attributes": { "weight": 3 } }, { "key": "24496", "source": "1798", "target": "358", "attributes": { "weight": 1 } }, { "key": "24497", "source": "1798", "target": "2141", "attributes": { "weight": 1 } }, { "key": "24501", "source": "1798", "target": "1805", "attributes": { "weight": 1 } }, { "key": "11779", "source": "1798", "target": "1794", "attributes": { "weight": 2 } }, { "key": "32396", "source": "1798", "target": "791", "attributes": { "weight": 1 } }, { "key": "31898", "source": "1798", "target": "2115", "attributes": { "weight": 1 } }, { "key": "24500", "source": "1798", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17596", "source": "1798", "target": "1796", "attributes": { "weight": 2 } }, { "key": "24499", "source": "1798", "target": "1056", "attributes": { "weight": 1 } }, { "key": "37265", "source": "1798", "target": "3349", "attributes": { "weight": 1 } }, { "key": "17598", "source": "1798", "target": "1806", "attributes": { "weight": 2 } }, { "key": "24498", "source": "1798", "target": "1799", "attributes": { "weight": 2 } }, { "key": "17597", "source": "1798", "target": "2148", "attributes": { "weight": 1 } }, { "key": "37267", "source": "1799", "target": "358", "attributes": { "weight": 1 } }, { "key": "11781", "source": "1799", "target": "1794", "attributes": { "weight": 2 } }, { "key": "17612", "source": "1799", "target": "1796", "attributes": { "weight": 3 } }, { "key": "11782", "source": "1799", "target": "1804", "attributes": { "weight": 4 } }, { "key": "37266", "source": "1799", "target": "1036", "attributes": { "weight": 1 } }, { "key": "24526", "source": "1799", "target": "1806", "attributes": { "weight": 2 } }, { "key": "24525", "source": "1799", "target": "1798", "attributes": { "weight": 2 } }, { "key": "11783", "source": "1800", "target": "1801", "attributes": { "weight": 2 } }, { "key": "11784", "source": "1800", "target": "1806", "attributes": { "weight": 3 } }, { "key": "32541", "source": "1800", "target": "791", "attributes": { "weight": 1 } }, { "key": "17626", "source": "1801", "target": "358", "attributes": { "weight": 1 } }, { "key": "24537", "source": "1801", "target": "2509", "attributes": { "weight": 1 } }, { "key": "11788", "source": "1801", "target": "1796", "attributes": { "weight": 2 } }, { "key": "11785", "source": "1801", "target": "1793", "attributes": { "weight": 2 } }, { "key": "11792", "source": "1801", "target": "1802", "attributes": { "weight": 3 } }, { "key": "32565", "source": "1801", "target": "791", "attributes": { "weight": 1 } }, { "key": "11786", "source": "1801", "target": "1794", "attributes": { "weight": 3 } }, { "key": "17636", "source": "1801", "target": "2149", "attributes": { "weight": 1 } }, { "key": "17630", "source": "1801", "target": "420", "attributes": { "weight": 1 } }, { "key": "17633", "source": "1801", "target": "1056", "attributes": { "weight": 3 } }, { "key": "24535", "source": "1801", "target": "1520", "attributes": { "weight": 1 } }, { "key": "11794", "source": "1801", "target": "1804", "attributes": { "weight": 3 } }, { "key": "17627", "source": "1801", "target": "788", "attributes": { "weight": 1 } }, { "key": "11793", "source": "1801", "target": "1803", "attributes": { "weight": 2 } }, { "key": "31978", "source": "1801", "target": "2115", "attributes": { "weight": 1 } }, { "key": "11787", "source": "1801", "target": "1795", "attributes": { "weight": 3 } }, { "key": "11796", "source": "1801", "target": "1806", "attributes": { "weight": 4 } }, { "key": "17625", "source": "1801", "target": "2132", "attributes": { "weight": 1 } }, { "key": "17632", "source": "1801", "target": "2140", "attributes": { "weight": 1 } }, { "key": "11791", "source": "1801", "target": "1800", "attributes": { "weight": 2 } }, { "key": "17624", "source": "1801", "target": "2127", "attributes": { "weight": 1 } }, { "key": "17631", "source": "1801", "target": "422", "attributes": { "weight": 1 } }, { "key": "11797", "source": "1801", "target": "1807", "attributes": { "weight": 3 } }, { "key": "11795", "source": "1801", "target": "1805", "attributes": { "weight": 3 } }, { "key": "24536", "source": "1801", "target": "1045", "attributes": { "weight": 2 } }, { "key": "17629", "source": "1801", "target": "2137", "attributes": { "weight": 1 } }, { "key": "30468", "source": "1801", "target": "1046", "attributes": { "weight": 1 } }, { "key": "24534", "source": "1801", "target": "2128", "attributes": { "weight": 1 } }, { "key": "11790", "source": "1801", "target": "1798", "attributes": { "weight": 3 } }, { "key": "22301", "source": "1801", "target": "794", "attributes": { "weight": 1 } }, { "key": "17634", "source": "1801", "target": "423", "attributes": { "weight": 1 } }, { "key": "22681", "source": "1801", "target": "1037", "attributes": { "weight": 2 } }, { "key": "28629", "source": "1801", "target": "1253", "attributes": { "weight": 1 } }, { "key": "29712", "source": "1801", "target": "2465", "attributes": { "weight": 1 } }, { "key": "17628", "source": "1801", "target": "2135", "attributes": { "weight": 1 } }, { "key": "17637", "source": "1801", "target": "2152", "attributes": { "weight": 1 } }, { "key": "37268", "source": "1801", "target": "1799", "attributes": { "weight": 1 } }, { "key": "17635", "source": "1801", "target": "2145", "attributes": { "weight": 1 } }, { "key": "11798", "source": "1802", "target": "1801", "attributes": { "weight": 3 } }, { "key": "17648", "source": "1802", "target": "1796", "attributes": { "weight": 1 } }, { "key": "17649", "source": "1802", "target": "2148", "attributes": { "weight": 1 } }, { "key": "17650", "source": "1802", "target": "1804", "attributes": { "weight": 1 } }, { "key": "31985", "source": "1802", "target": "2115", "attributes": { "weight": 1 } }, { "key": "24542", "source": "1802", "target": "1794", "attributes": { "weight": 1 } }, { "key": "17651", "source": "1802", "target": "1806", "attributes": { "weight": 2 } }, { "key": "24543", "source": "1803", "target": "1796", "attributes": { "weight": 1 } }, { "key": "17655", "source": "1803", "target": "1804", "attributes": { "weight": 1 } }, { "key": "11799", "source": "1803", "target": "1794", "attributes": { "weight": 2 } }, { "key": "11800", "source": "1803", "target": "1801", "attributes": { "weight": 2 } }, { "key": "17666", "source": "1804", "target": "1802", "attributes": { "weight": 1 } }, { "key": "32026", "source": "1804", "target": "2115", "attributes": { "weight": 1 } }, { "key": "17658", "source": "1804", "target": "358", "attributes": { "weight": 1 } }, { "key": "17656", "source": "1804", "target": "1793", "attributes": { "weight": 1 } }, { "key": "17663", "source": "1804", "target": "2144", "attributes": { "weight": 1 } }, { "key": "17665", "source": "1804", "target": "2148", "attributes": { "weight": 1 } }, { "key": "17657", "source": "1804", "target": "1796", "attributes": { "weight": 2 } }, { "key": "11802", "source": "1804", "target": "1799", "attributes": { "weight": 4 } }, { "key": "24547", "source": "1804", "target": "1046", "attributes": { "weight": 2 } }, { "key": "11803", "source": "1804", "target": "1801", "attributes": { "weight": 3 } }, { "key": "17661", "source": "1804", "target": "1056", "attributes": { "weight": 2 } }, { "key": "17660", "source": "1804", "target": "2141", "attributes": { "weight": 1 } }, { "key": "32605", "source": "1804", "target": "791", "attributes": { "weight": 1 } }, { "key": "17669", "source": "1804", "target": "1807", "attributes": { "weight": 1 } }, { "key": "17662", "source": "1804", "target": "2143", "attributes": { "weight": 1 } }, { "key": "17668", "source": "1804", "target": "1805", "attributes": { "weight": 1 } }, { "key": "24546", "source": "1804", "target": "2132", "attributes": { "weight": 1 } }, { "key": "17667", "source": "1804", "target": "1803", "attributes": { "weight": 1 } }, { "key": "11801", "source": "1804", "target": "1794", "attributes": { "weight": 3 } }, { "key": "24545", "source": "1804", "target": "2130", "attributes": { "weight": 1 } }, { "key": "30125", "source": "1804", "target": "2949", "attributes": { "weight": 1 } }, { "key": "17664", "source": "1804", "target": "362", "attributes": { "weight": 1 } }, { "key": "22373", "source": "1804", "target": "794", "attributes": { "weight": 1 } }, { "key": "24548", "source": "1804", "target": "1798", "attributes": { "weight": 1 } }, { "key": "11804", "source": "1804", "target": "1806", "attributes": { "weight": 3 } }, { "key": "32607", "source": "1805", "target": "791", "attributes": { "weight": 1 } }, { "key": "17670", "source": "1805", "target": "358", "attributes": { "weight": 1 } }, { "key": "11806", "source": "1805", "target": "1806", "attributes": { "weight": 4 } }, { "key": "11805", "source": "1805", "target": "1801", "attributes": { "weight": 3 } }, { "key": "24700", "source": "1805", "target": "5", "attributes": { "weight": 1 } }, { "key": "32027", "source": "1805", "target": "2115", "attributes": { "weight": 1 } }, { "key": "17671", "source": "1805", "target": "1804", "attributes": { "weight": 1 } }, { "key": "24550", "source": "1805", "target": "1794", "attributes": { "weight": 1 } }, { "key": "24552", "source": "1805", "target": "1798", "attributes": { "weight": 1 } }, { "key": "24551", "source": "1805", "target": "1796", "attributes": { "weight": 1 } }, { "key": "24556", "source": "1806", "target": "1799", "attributes": { "weight": 2 } }, { "key": "17686", "source": "1806", "target": "2146", "attributes": { "weight": 2 } }, { "key": "17674", "source": "1806", "target": "1795", "attributes": { "weight": 2 } }, { "key": "17679", "source": "1806", "target": "2134", "attributes": { "weight": 1 } }, { "key": "11809", "source": "1806", "target": "1800", "attributes": { "weight": 3 } }, { "key": "17680", "source": "1806", "target": "2135", "attributes": { "weight": 2 } }, { "key": "24557", "source": "1806", "target": "2144", "attributes": { "weight": 1 } }, { "key": "17690", "source": "1806", "target": "2149", "attributes": { "weight": 1 } }, { "key": "17694", "source": "1806", "target": "2152", "attributes": { "weight": 1 } }, { "key": "17675", "source": "1806", "target": "2131", "attributes": { "weight": 1 } }, { "key": "11812", "source": "1806", "target": "1805", "attributes": { "weight": 4 } }, { "key": "17691", "source": "1806", "target": "2150", "attributes": { "weight": 1 } }, { "key": "32028", "source": "1806", "target": "2115", "attributes": { "weight": 1 } }, { "key": "17685", "source": "1806", "target": "2145", "attributes": { "weight": 1 } }, { "key": "17681", "source": "1806", "target": "2136", "attributes": { "weight": 1 } }, { "key": "24555", "source": "1806", "target": "2508", "attributes": { "weight": 1 } }, { "key": "17693", "source": "1806", "target": "1807", "attributes": { "weight": 2 } }, { "key": "24558", "source": "1806", "target": "2509", "attributes": { "weight": 1 } }, { "key": "17684", "source": "1806", "target": "2142", "attributes": { "weight": 1 } }, { "key": "17687", "source": "1806", "target": "2147", "attributes": { "weight": 1 } }, { "key": "17676", "source": "1806", "target": "1796", "attributes": { "weight": 2 } }, { "key": "11810", "source": "1806", "target": "1801", "attributes": { "weight": 4 } }, { "key": "37271", "source": "1806", "target": "3349", "attributes": { "weight": 1 } }, { "key": "17683", "source": "1806", "target": "2138", "attributes": { "weight": 1 } }, { "key": "17672", "source": "1806", "target": "2128", "attributes": { "weight": 2 } }, { "key": "11807", "source": "1806", "target": "1793", "attributes": { "weight": 3 } }, { "key": "17682", "source": "1806", "target": "1798", "attributes": { "weight": 2 } }, { "key": "17689", "source": "1806", "target": "1802", "attributes": { "weight": 2 } }, { "key": "11808", "source": "1806", "target": "1794", "attributes": { "weight": 4 } }, { "key": "17677", "source": "1806", "target": "2132", "attributes": { "weight": 2 } }, { "key": "24554", "source": "1806", "target": "2141", "attributes": { "weight": 1 } }, { "key": "11811", "source": "1806", "target": "1804", "attributes": { "weight": 3 } }, { "key": "17688", "source": "1806", "target": "2148", "attributes": { "weight": 1 } }, { "key": "17678", "source": "1806", "target": "2133", "attributes": { "weight": 1 } }, { "key": "17673", "source": "1806", "target": "2129", "attributes": { "weight": 1 } }, { "key": "17692", "source": "1806", "target": "2151", "attributes": { "weight": 1 } }, { "key": "11813", "source": "1807", "target": "1801", "attributes": { "weight": 3 } }, { "key": "24562", "source": "1807", "target": "2141", "attributes": { "weight": 1 } }, { "key": "17696", "source": "1807", "target": "358", "attributes": { "weight": 1 } }, { "key": "17699", "source": "1807", "target": "1806", "attributes": { "weight": 2 } }, { "key": "17698", "source": "1807", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17697", "source": "1807", "target": "2135", "attributes": { "weight": 2 } }, { "key": "24563", "source": "1807", "target": "2152", "attributes": { "weight": 1 } }, { "key": "19100", "source": "1808", "target": "489", "attributes": { "weight": 1 } }, { "key": "31210", "source": "1808", "target": "674", "attributes": { "weight": 1 } }, { "key": "11818", "source": "1808", "target": "1118", "attributes": { "weight": 1 } }, { "key": "11819", "source": "1808", "target": "70", "attributes": { "weight": 1 } }, { "key": "11816", "source": "1808", "target": "1754", "attributes": { "weight": 1 } }, { "key": "11817", "source": "1808", "target": "1733", "attributes": { "weight": 1 } }, { "key": "19098", "source": "1808", "target": "429", "attributes": { "weight": 1 } }, { "key": "19099", "source": "1808", "target": "231", "attributes": { "weight": 1 } }, { "key": "11864", "source": "1809", "target": "1813", "attributes": { "weight": 2 } }, { "key": "30995", "source": "1809", "target": "3028", "attributes": { "weight": 1 } }, { "key": "30994", "source": "1809", "target": "2177", "attributes": { "weight": 1 } }, { "key": "30991", "source": "1809", "target": "2534", "attributes": { "weight": 1 } }, { "key": "17360", "source": "1809", "target": "358", "attributes": { "weight": 2 } }, { "key": "11863", "source": "1809", "target": "638", "attributes": { "weight": 4 } }, { "key": "27758", "source": "1809", "target": "2535", "attributes": { "weight": 1 } }, { "key": "30989", "source": "1809", "target": "2533", "attributes": { "weight": 1 } }, { "key": "11862", "source": "1809", "target": "636", "attributes": { "weight": 4 } }, { "key": "30990", "source": "1809", "target": "2712", "attributes": { "weight": 1 } }, { "key": "27733", "source": "1809", "target": "1553", "attributes": { "weight": 1 } }, { "key": "30992", "source": "1809", "target": "1539", "attributes": { "weight": 1 } }, { "key": "30993", "source": "1809", "target": "1550", "attributes": { "weight": 1 } }, { "key": "11883", "source": "1810", "target": "1363", "attributes": { "weight": 2 } }, { "key": "24061", "source": "1810", "target": "471", "attributes": { "weight": 1 } }, { "key": "24062", "source": "1810", "target": "2469", "attributes": { "weight": 1 } }, { "key": "24063", "source": "1810", "target": "231", "attributes": { "weight": 3 } }, { "key": "24060", "source": "1810", "target": "130", "attributes": { "weight": 2 } }, { "key": "17248", "source": "1811", "target": "449", "attributes": { "weight": 1 } }, { "key": "33422", "source": "1811", "target": "135", "attributes": { "weight": 1 } }, { "key": "35361", "source": "1811", "target": "3194", "attributes": { "weight": 1 } }, { "key": "35362", "source": "1811", "target": "1282", "attributes": { "weight": 1 } }, { "key": "11891", "source": "1811", "target": "1363", "attributes": { "weight": 1 } }, { "key": "12249", "source": "1811", "target": "1836", "attributes": { "weight": 2 } }, { "key": "12248", "source": "1811", "target": "435", "attributes": { "weight": 1 } }, { "key": "35359", "source": "1811", "target": "1161", "attributes": { "weight": 1 } }, { "key": "35360", "source": "1811", "target": "2105", "attributes": { "weight": 1 } }, { "key": "12250", "source": "1811", "target": "472", "attributes": { "weight": 1 } }, { "key": "32826", "source": "1812", "target": "51", "attributes": { "weight": 2 } }, { "key": "20711", "source": "1812", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20709", "source": "1812", "target": "432", "attributes": { "weight": 1 } }, { "key": "20713", "source": "1812", "target": "464", "attributes": { "weight": 1 } }, { "key": "20712", "source": "1812", "target": "2250", "attributes": { "weight": 1 } }, { "key": "27158", "source": "1812", "target": "1282", "attributes": { "weight": 2 } }, { "key": "20717", "source": "1812", "target": "487", "attributes": { "weight": 1 } }, { "key": "33812", "source": "1812", "target": "682", "attributes": { "weight": 1 } }, { "key": "12023", "source": "1812", "target": "135", "attributes": { "weight": 5 } }, { "key": "27155", "source": "1812", "target": "1832", "attributes": { "weight": 3 } }, { "key": "32827", "source": "1812", "target": "2258", "attributes": { "weight": 2 } }, { "key": "20714", "source": "1812", "target": "2254", "attributes": { "weight": 1 } }, { "key": "27156", "source": "1812", "target": "1219", "attributes": { "weight": 1 } }, { "key": "27157", "source": "1812", "target": "1247", "attributes": { "weight": 1 } }, { "key": "20716", "source": "1812", "target": "2262", "attributes": { "weight": 1 } }, { "key": "33630", "source": "1812", "target": "450", "attributes": { "weight": 1 } }, { "key": "23648", "source": "1812", "target": "220", "attributes": { "weight": 1 } }, { "key": "20710", "source": "1812", "target": "1070", "attributes": { "weight": 1 } }, { "key": "30935", "source": "1812", "target": "3", "attributes": { "weight": 2 } }, { "key": "20715", "source": "1812", "target": "472", "attributes": { "weight": 6 } }, { "key": "35018", "source": "1812", "target": "352", "attributes": { "weight": 1 } }, { "key": "18326", "source": "1812", "target": "1092", "attributes": { "weight": 1 } }, { "key": "23365", "source": "1812", "target": "223", "attributes": { "weight": 1 } }, { "key": "32825", "source": "1812", "target": "435", "attributes": { "weight": 2 } }, { "key": "20718", "source": "1812", "target": "489", "attributes": { "weight": 2 } }, { "key": "12025", "source": "1813", "target": "636", "attributes": { "weight": 3 } }, { "key": "12027", "source": "1813", "target": "638", "attributes": { "weight": 3 } }, { "key": "31057", "source": "1813", "target": "2712", "attributes": { "weight": 1 } }, { "key": "12026", "source": "1813", "target": "1809", "attributes": { "weight": 2 } }, { "key": "15394", "source": "1814", "target": "1158", "attributes": { "weight": 1 } }, { "key": "12041", "source": "1814", "target": "248", "attributes": { "weight": 1 } }, { "key": "12841", "source": "1814", "target": "370", "attributes": { "weight": 1 } }, { "key": "12842", "source": "1814", "target": "785", "attributes": { "weight": 1 } }, { "key": "34920", "source": "1815", "target": "3025", "attributes": { "weight": 1 } }, { "key": "32063", "source": "1815", "target": "1867", "attributes": { "weight": 1 } }, { "key": "12052", "source": "1815", "target": "638", "attributes": { "weight": 3 } }, { "key": "32064", "source": "1815", "target": "1816", "attributes": { "weight": 1 } }, { "key": "34921", "source": "1815", "target": "1539", "attributes": { "weight": 1 } }, { "key": "16499", "source": "1816", "target": "2060", "attributes": { "weight": 1 } }, { "key": "12054", "source": "1816", "target": "638", "attributes": { "weight": 5 } }, { "key": "32071", "source": "1816", "target": "3039", "attributes": { "weight": 1 } }, { "key": "32066", "source": "1816", "target": "454", "attributes": { "weight": 1 } }, { "key": "26096", "source": "1816", "target": "1550", "attributes": { "weight": 2 } }, { "key": "32068", "source": "1816", "target": "3079", "attributes": { "weight": 1 } }, { "key": "16498", "source": "1816", "target": "1387", "attributes": { "weight": 2 } }, { "key": "32070", "source": "1816", "target": "1815", "attributes": { "weight": 1 } }, { "key": "31068", "source": "1816", "target": "636", "attributes": { "weight": 2 } }, { "key": "32069", "source": "1816", "target": "1867", "attributes": { "weight": 1 } }, { "key": "32067", "source": "1816", "target": "1539", "attributes": { "weight": 1 } }, { "key": "32065", "source": "1816", "target": "35", "attributes": { "weight": 1 } }, { "key": "28401", "source": "1819", "target": "1821", "attributes": { "weight": 1 } }, { "key": "28402", "source": "1819", "target": "579", "attributes": { "weight": 1 } }, { "key": "28399", "source": "1819", "target": "698", "attributes": { "weight": 1 } }, { "key": "27748", "source": "1819", "target": "170", "attributes": { "weight": 3 } }, { "key": "12084", "source": "1819", "target": "1512", "attributes": { "weight": 4 } }, { "key": "13942", "source": "1819", "target": "180", "attributes": { "weight": 2 } }, { "key": "28400", "source": "1819", "target": "707", "attributes": { "weight": 2 } }, { "key": "23725", "source": "1820", "target": "168", "attributes": { "weight": 1 } }, { "key": "12086", "source": "1820", "target": "1824", "attributes": { "weight": 1 } }, { "key": "25020", "source": "1820", "target": "1240", "attributes": { "weight": 2 } }, { "key": "22696", "source": "1820", "target": "580", "attributes": { "weight": 1 } }, { "key": "27754", "source": "1820", "target": "170", "attributes": { "weight": 1 } }, { "key": "25021", "source": "1820", "target": "305", "attributes": { "weight": 2 } }, { "key": "22695", "source": "1820", "target": "579", "attributes": { "weight": 2 } }, { "key": "25019", "source": "1820", "target": "278", "attributes": { "weight": 2 } }, { "key": "28425", "source": "1820", "target": "1512", "attributes": { "weight": 1 } }, { "key": "13960", "source": "1820", "target": "180", "attributes": { "weight": 1 } }, { "key": "12085", "source": "1820", "target": "707", "attributes": { "weight": 3 } }, { "key": "28431", "source": "1821", "target": "1819", "attributes": { "weight": 1 } }, { "key": "28694", "source": "1821", "target": "707", "attributes": { "weight": 1 } }, { "key": "12087", "source": "1821", "target": "1512", "attributes": { "weight": 3 } }, { "key": "28447", "source": "1822", "target": "2759", "attributes": { "weight": 2 } }, { "key": "25035", "source": "1822", "target": "1240", "attributes": { "weight": 2 } }, { "key": "25034", "source": "1822", "target": "707", "attributes": { "weight": 2 } }, { "key": "28451", "source": "1822", "target": "2770", "attributes": { "weight": 2 } }, { "key": "28449", "source": "1822", "target": "579", "attributes": { "weight": 1 } }, { "key": "28448", "source": "1822", "target": "2761", "attributes": { "weight": 2 } }, { "key": "28450", "source": "1822", "target": "1512", "attributes": { "weight": 1 } }, { "key": "27756", "source": "1822", "target": "170", "attributes": { "weight": 1 } }, { "key": "26846", "source": "1822", "target": "278", "attributes": { "weight": 1 } }, { "key": "25036", "source": "1822", "target": "305", "attributes": { "weight": 2 } }, { "key": "12091", "source": "1822", "target": "1824", "attributes": { "weight": 1 } }, { "key": "21464", "source": "1823", "target": "579", "attributes": { "weight": 2 } }, { "key": "21462", "source": "1823", "target": "1240", "attributes": { "weight": 3 } }, { "key": "12604", "source": "1823", "target": "180", "attributes": { "weight": 2 } }, { "key": "27757", "source": "1823", "target": "170", "attributes": { "weight": 1 } }, { "key": "12103", "source": "1823", "target": "698", "attributes": { "weight": 4 } }, { "key": "13509", "source": "1823", "target": "305", "attributes": { "weight": 2 } }, { "key": "28483", "source": "1823", "target": "278", "attributes": { "weight": 2 } }, { "key": "12104", "source": "1823", "target": "1824", "attributes": { "weight": 1 } }, { "key": "21463", "source": "1823", "target": "1870", "attributes": { "weight": 2 } }, { "key": "28484", "source": "1823", "target": "580", "attributes": { "weight": 1 } }, { "key": "12102", "source": "1823", "target": "1191", "attributes": { "weight": 6 } }, { "key": "28482", "source": "1823", "target": "700", "attributes": { "weight": 2 } }, { "key": "21461", "source": "1823", "target": "1905", "attributes": { "weight": 2 } }, { "key": "28485", "source": "1823", "target": "1512", "attributes": { "weight": 1 } }, { "key": "12111", "source": "1824", "target": "1823", "attributes": { "weight": 1 } }, { "key": "12110", "source": "1824", "target": "1512", "attributes": { "weight": 2 } }, { "key": "12106", "source": "1824", "target": "707", "attributes": { "weight": 2 } }, { "key": "12105", "source": "1824", "target": "1191", "attributes": { "weight": 3 } }, { "key": "12108", "source": "1824", "target": "1820", "attributes": { "weight": 1 } }, { "key": "12112", "source": "1824", "target": "1825", "attributes": { "weight": 1 } }, { "key": "12107", "source": "1824", "target": "904", "attributes": { "weight": 1 } }, { "key": "12109", "source": "1824", "target": "1822", "attributes": { "weight": 1 } }, { "key": "12117", "source": "1825", "target": "1824", "attributes": { "weight": 1 } }, { "key": "12116", "source": "1825", "target": "1512", "attributes": { "weight": 1 } }, { "key": "12115", "source": "1825", "target": "580", "attributes": { "weight": 1 } }, { "key": "12113", "source": "1825", "target": "1191", "attributes": { "weight": 1 } }, { "key": "12114", "source": "1825", "target": "707", "attributes": { "weight": 2 } }, { "key": "28506", "source": "1825", "target": "278", "attributes": { "weight": 2 } }, { "key": "12133", "source": "1826", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12134", "source": "1826", "target": "1839", "attributes": { "weight": 1 } }, { "key": "12167", "source": "1827", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12168", "source": "1828", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12169", "source": "1829", "target": "449", "attributes": { "weight": 1 } }, { "key": "12170", "source": "1829", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12174", "source": "1830", "target": "489", "attributes": { "weight": 1 } }, { "key": "35903", "source": "1831", "target": "1390", "attributes": { "weight": 1 } }, { "key": "32723", "source": "1831", "target": "231", "attributes": { "weight": 2 } }, { "key": "35904", "source": "1831", "target": "497", "attributes": { "weight": 1 } }, { "key": "35901", "source": "1831", "target": "465", "attributes": { "weight": 1 } }, { "key": "12175", "source": "1831", "target": "1362", "attributes": { "weight": 1 } }, { "key": "35900", "source": "1831", "target": "1360", "attributes": { "weight": 1 } }, { "key": "35905", "source": "1831", "target": "498", "attributes": { "weight": 1 } }, { "key": "35902", "source": "1831", "target": "478", "attributes": { "weight": 1 } }, { "key": "27041", "source": "1832", "target": "458", "attributes": { "weight": 1 } }, { "key": "27039", "source": "1832", "target": "860", "attributes": { "weight": 3 } }, { "key": "32204", "source": "1832", "target": "1368", "attributes": { "weight": 3 } }, { "key": "19954", "source": "1832", "target": "443", "attributes": { "weight": 1 } }, { "key": "27038", "source": "1832", "target": "447", "attributes": { "weight": 1 } }, { "key": "19958", "source": "1832", "target": "449", "attributes": { "weight": 1 } }, { "key": "19957", "source": "1832", "target": "2247", "attributes": { "weight": 1 } }, { "key": "19961", "source": "1832", "target": "1358", "attributes": { "weight": 2 } }, { "key": "19952", "source": "1832", "target": "221", "attributes": { "weight": 1 } }, { "key": "22869", "source": "1832", "target": "1359", "attributes": { "weight": 1 } }, { "key": "27035", "source": "1832", "target": "858", "attributes": { "weight": 1 } }, { "key": "19964", "source": "1832", "target": "464", "attributes": { "weight": 1 } }, { "key": "12194", "source": "1832", "target": "220", "attributes": { "weight": 1 } }, { "key": "12196", "source": "1832", "target": "450", "attributes": { "weight": 1 } }, { "key": "32724", "source": "1832", "target": "53", "attributes": { "weight": 1 } }, { "key": "19959", "source": "1832", "target": "1533", "attributes": { "weight": 1 } }, { "key": "37444", "source": "1832", "target": "1367", "attributes": { "weight": 1 } }, { "key": "19970", "source": "1832", "target": "2094", "attributes": { "weight": 2 } }, { "key": "27042", "source": "1832", "target": "1812", "attributes": { "weight": 3 } }, { "key": "19981", "source": "1832", "target": "235", "attributes": { "weight": 1 } }, { "key": "12197", "source": "1832", "target": "1219", "attributes": { "weight": 1 } }, { "key": "19971", "source": "1832", "target": "1838", "attributes": { "weight": 1 } }, { "key": "19984", "source": "1832", "target": "498", "attributes": { "weight": 1 } }, { "key": "27037", "source": "1832", "target": "442", "attributes": { "weight": 1 } }, { "key": "12195", "source": "1832", "target": "1161", "attributes": { "weight": 1 } }, { "key": "19960", "source": "1832", "target": "451", "attributes": { "weight": 4 } }, { "key": "19972", "source": "1832", "target": "2108", "attributes": { "weight": 1 } }, { "key": "19976", "source": "1832", "target": "483", "attributes": { "weight": 3 } }, { "key": "19951", "source": "1832", "target": "130", "attributes": { "weight": 1 } }, { "key": "19969", "source": "1832", "target": "1366", "attributes": { "weight": 3 } }, { "key": "19956", "source": "1832", "target": "2244", "attributes": { "weight": 1 } }, { "key": "27036", "source": "1832", "target": "440", "attributes": { "weight": 1 } }, { "key": "19979", "source": "1832", "target": "672", "attributes": { "weight": 1 } }, { "key": "19982", "source": "1832", "target": "1375", "attributes": { "weight": 1 } }, { "key": "19980", "source": "1832", "target": "56", "attributes": { "weight": 6 } }, { "key": "19983", "source": "1832", "target": "2276", "attributes": { "weight": 1 } }, { "key": "19962", "source": "1832", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19955", "source": "1832", "target": "1070", "attributes": { "weight": 1 } }, { "key": "19973", "source": "1832", "target": "231", "attributes": { "weight": 5 } }, { "key": "12198", "source": "1832", "target": "1362", "attributes": { "weight": 1 } }, { "key": "19978", "source": "1832", "target": "2270", "attributes": { "weight": 1 } }, { "key": "19966", "source": "1832", "target": "1546", "attributes": { "weight": 1 } }, { "key": "19949", "source": "1832", "target": "429", "attributes": { "weight": 3 } }, { "key": "19974", "source": "1832", "target": "480", "attributes": { "weight": 1 } }, { "key": "19977", "source": "1832", "target": "695", "attributes": { "weight": 1 } }, { "key": "19953", "source": "1832", "target": "2243", "attributes": { "weight": 1 } }, { "key": "27043", "source": "1832", "target": "479", "attributes": { "weight": 1 } }, { "key": "32134", "source": "1832", "target": "1141", "attributes": { "weight": 1 } }, { "key": "19967", "source": "1832", "target": "54", "attributes": { "weight": 3 } }, { "key": "19975", "source": "1832", "target": "2269", "attributes": { "weight": 1 } }, { "key": "27040", "source": "1832", "target": "1357", "attributes": { "weight": 1 } }, { "key": "19963", "source": "1832", "target": "459", "attributes": { "weight": 3 } }, { "key": "19950", "source": "1832", "target": "1354", "attributes": { "weight": 4 } }, { "key": "19968", "source": "1832", "target": "1122", "attributes": { "weight": 1 } }, { "key": "19965", "source": "1832", "target": "1364", "attributes": { "weight": 1 } }, { "key": "12519", "source": "1832", "target": "223", "attributes": { "weight": 1 } }, { "key": "19948", "source": "1832", "target": "1353", "attributes": { "weight": 6 } }, { "key": "12239", "source": "1833", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12244", "source": "1834", "target": "1835", "attributes": { "weight": 1 } }, { "key": "12240", "source": "1834", "target": "220", "attributes": { "weight": 1 } }, { "key": "33421", "source": "1834", "target": "2258", "attributes": { "weight": 1 } }, { "key": "33420", "source": "1834", "target": "135", "attributes": { "weight": 1 } }, { "key": "12247", "source": "1834", "target": "1839", "attributes": { "weight": 1 } }, { "key": "12243", "source": "1834", "target": "450", "attributes": { "weight": 1 } }, { "key": "12241", "source": "1834", "target": "1161", "attributes": { "weight": 1 } }, { "key": "12246", "source": "1834", "target": "472", "attributes": { "weight": 1 } }, { "key": "33419", "source": "1834", "target": "51", "attributes": { "weight": 1 } }, { "key": "12242", "source": "1834", "target": "435", "attributes": { "weight": 1 } }, { "key": "12245", "source": "1834", "target": "1837", "attributes": { "weight": 1 } }, { "key": "12264", "source": "1835", "target": "1219", "attributes": { "weight": 1 } }, { "key": "26852", "source": "1835", "target": "2653", "attributes": { "weight": 1 } }, { "key": "26855", "source": "1835", "target": "2656", "attributes": { "weight": 1 } }, { "key": "26850", "source": "1835", "target": "2651", "attributes": { "weight": 1 } }, { "key": "26853", "source": "1835", "target": "2654", "attributes": { "weight": 1 } }, { "key": "12265", "source": "1835", "target": "1834", "attributes": { "weight": 1 } }, { "key": "12262", "source": "1835", "target": "1141", "attributes": { "weight": 1 } }, { "key": "12263", "source": "1835", "target": "450", "attributes": { "weight": 1 } }, { "key": "12266", "source": "1835", "target": "1837", "attributes": { "weight": 1 } }, { "key": "26851", "source": "1835", "target": "2652", "attributes": { "weight": 1 } }, { "key": "26854", "source": "1835", "target": "2655", "attributes": { "weight": 1 } }, { "key": "36005", "source": "1836", "target": "497", "attributes": { "weight": 1 } }, { "key": "20373", "source": "1836", "target": "2025", "attributes": { "weight": 1 } }, { "key": "33500", "source": "1836", "target": "220", "attributes": { "weight": 1 } }, { "key": "20370", "source": "1836", "target": "429", "attributes": { "weight": 2 } }, { "key": "33505", "source": "1836", "target": "1362", "attributes": { "weight": 1 } }, { "key": "20390", "source": "1836", "target": "231", "attributes": { "weight": 2 } }, { "key": "20388", "source": "1836", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20375", "source": "1836", "target": "449", "attributes": { "weight": 1 } }, { "key": "20389", "source": "1836", "target": "2108", "attributes": { "weight": 1 } }, { "key": "33506", "source": "1836", "target": "53", "attributes": { "weight": 1 } }, { "key": "20391", "source": "1836", "target": "478", "attributes": { "weight": 1 } }, { "key": "20372", "source": "1836", "target": "130", "attributes": { "weight": 2 } }, { "key": "20378", "source": "1836", "target": "2249", "attributes": { "weight": 1 } }, { "key": "20371", "source": "1836", "target": "1354", "attributes": { "weight": 2 } }, { "key": "33508", "source": "1836", "target": "471", "attributes": { "weight": 1 } }, { "key": "33509", "source": "1836", "target": "190", "attributes": { "weight": 1 } }, { "key": "20382", "source": "1836", "target": "464", "attributes": { "weight": 2 } }, { "key": "33503", "source": "1836", "target": "442", "attributes": { "weight": 1 } }, { "key": "33502", "source": "1836", "target": "858", "attributes": { "weight": 1 } }, { "key": "20386", "source": "1836", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20381", "source": "1836", "target": "462", "attributes": { "weight": 1 } }, { "key": "20376", "source": "1836", "target": "1533", "attributes": { "weight": 1 } }, { "key": "20374", "source": "1836", "target": "2243", "attributes": { "weight": 1 } }, { "key": "33507", "source": "1836", "target": "470", "attributes": { "weight": 1 } }, { "key": "36004", "source": "1836", "target": "1360", "attributes": { "weight": 1 } }, { "key": "12269", "source": "1836", "target": "1811", "attributes": { "weight": 2 } }, { "key": "20395", "source": "1836", "target": "2111", "attributes": { "weight": 1 } }, { "key": "33504", "source": "1836", "target": "52", "attributes": { "weight": 1 } }, { "key": "33510", "source": "1836", "target": "474", "attributes": { "weight": 1 } }, { "key": "20392", "source": "1836", "target": "480", "attributes": { "weight": 1 } }, { "key": "20380", "source": "1836", "target": "459", "attributes": { "weight": 1 } }, { "key": "20383", "source": "1836", "target": "2256", "attributes": { "weight": 1 } }, { "key": "20393", "source": "1836", "target": "2269", "attributes": { "weight": 1 } }, { "key": "20379", "source": "1836", "target": "1358", "attributes": { "weight": 2 } }, { "key": "20399", "source": "1836", "target": "1390", "attributes": { "weight": 1 } }, { "key": "20377", "source": "1836", "target": "451", "attributes": { "weight": 2 } }, { "key": "20396", "source": "1836", "target": "2096", "attributes": { "weight": 1 } }, { "key": "20398", "source": "1836", "target": "73", "attributes": { "weight": 1 } }, { "key": "20401", "source": "1836", "target": "498", "attributes": { "weight": 1 } }, { "key": "20369", "source": "1836", "target": "1353", "attributes": { "weight": 2 } }, { "key": "20400", "source": "1836", "target": "2276", "attributes": { "weight": 1 } }, { "key": "33511", "source": "1836", "target": "672", "attributes": { "weight": 1 } }, { "key": "20385", "source": "1836", "target": "54", "attributes": { "weight": 1 } }, { "key": "20397", "source": "1836", "target": "56", "attributes": { "weight": 1 } }, { "key": "33501", "source": "1836", "target": "2645", "attributes": { "weight": 1 } }, { "key": "20394", "source": "1836", "target": "483", "attributes": { "weight": 2 } }, { "key": "20387", "source": "1836", "target": "1838", "attributes": { "weight": 1 } }, { "key": "20384", "source": "1836", "target": "1546", "attributes": { "weight": 1 } }, { "key": "12270", "source": "1837", "target": "1141", "attributes": { "weight": 1 } }, { "key": "12273", "source": "1837", "target": "1834", "attributes": { "weight": 1 } }, { "key": "12274", "source": "1837", "target": "1835", "attributes": { "weight": 1 } }, { "key": "12272", "source": "1837", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12271", "source": "1837", "target": "450", "attributes": { "weight": 1 } }, { "key": "20571", "source": "1838", "target": "429", "attributes": { "weight": 1 } }, { "key": "20570", "source": "1838", "target": "1353", "attributes": { "weight": 1 } }, { "key": "20580", "source": "1838", "target": "489", "attributes": { "weight": 1 } }, { "key": "20573", "source": "1838", "target": "51", "attributes": { "weight": 1 } }, { "key": "20581", "source": "1838", "target": "56", "attributes": { "weight": 1 } }, { "key": "17277", "source": "1838", "target": "135", "attributes": { "weight": 1 } }, { "key": "20576", "source": "1838", "target": "451", "attributes": { "weight": 1 } }, { "key": "20575", "source": "1838", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20572", "source": "1838", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20579", "source": "1838", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20574", "source": "1838", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20578", "source": "1838", "target": "1836", "attributes": { "weight": 1 } }, { "key": "12295", "source": "1838", "target": "435", "attributes": { "weight": 1 } }, { "key": "12296", "source": "1838", "target": "472", "attributes": { "weight": 1 } }, { "key": "20577", "source": "1838", "target": "2254", "attributes": { "weight": 1 } }, { "key": "32147", "source": "1839", "target": "1141", "attributes": { "weight": 1 } }, { "key": "12323", "source": "1839", "target": "1834", "attributes": { "weight": 1 } }, { "key": "12321", "source": "1839", "target": "450", "attributes": { "weight": 1 } }, { "key": "12322", "source": "1839", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12320", "source": "1839", "target": "1826", "attributes": { "weight": 1 } }, { "key": "12324", "source": "1840", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12325", "source": "1841", "target": "435", "attributes": { "weight": 1 } }, { "key": "12326", "source": "1841", "target": "472", "attributes": { "weight": 1 } }, { "key": "32149", "source": "1842", "target": "1141", "attributes": { "weight": 1 } }, { "key": "12327", "source": "1842", "target": "450", "attributes": { "weight": 1 } }, { "key": "12331", "source": "1843", "target": "165", "attributes": { "weight": 2 } }, { "key": "32635", "source": "1843", "target": "2964", "attributes": { "weight": 1 } }, { "key": "12330", "source": "1843", "target": "1187", "attributes": { "weight": 1 } }, { "key": "27649", "source": "1844", "target": "1629", "attributes": { "weight": 1 } }, { "key": "12381", "source": "1844", "target": "1626", "attributes": { "weight": 2 } }, { "key": "12380", "source": "1844", "target": "565", "attributes": { "weight": 2 } }, { "key": "27648", "source": "1844", "target": "564", "attributes": { "weight": 1 } }, { "key": "33056", "source": "1845", "target": "223", "attributes": { "weight": 1 } }, { "key": "33059", "source": "1845", "target": "474", "attributes": { "weight": 1 } }, { "key": "32791", "source": "1845", "target": "1125", "attributes": { "weight": 2 } }, { "key": "32790", "source": "1845", "target": "1088", "attributes": { "weight": 1 } }, { "key": "12402", "source": "1845", "target": "442", "attributes": { "weight": 2 } }, { "key": "32789", "source": "1845", "target": "228", "attributes": { "weight": 2 } }, { "key": "33057", "source": "1845", "target": "52", "attributes": { "weight": 1 } }, { "key": "21429", "source": "1845", "target": "894", "attributes": { "weight": 2 } }, { "key": "12403", "source": "1845", "target": "493", "attributes": { "weight": 2 } }, { "key": "33058", "source": "1845", "target": "1087", "attributes": { "weight": 1 } }, { "key": "12431", "source": "1846", "target": "277", "attributes": { "weight": 2 } }, { "key": "12432", "source": "1846", "target": "1852", "attributes": { "weight": 1 } }, { "key": "12435", "source": "1847", "target": "263", "attributes": { "weight": 2 } }, { "key": "14602", "source": "1847", "target": "259", "attributes": { "weight": 1 } }, { "key": "12441", "source": "1848", "target": "1852", "attributes": { "weight": 1 } }, { "key": "12440", "source": "1848", "target": "277", "attributes": { "weight": 2 } }, { "key": "22964", "source": "1848", "target": "1906", "attributes": { "weight": 1 } }, { "key": "22969", "source": "1849", "target": "307", "attributes": { "weight": 1 } }, { "key": "19008", "source": "1849", "target": "313", "attributes": { "weight": 2 } }, { "key": "14658", "source": "1849", "target": "305", "attributes": { "weight": 1 } }, { "key": "13199", "source": "1849", "target": "304", "attributes": { "weight": 3 } }, { "key": "12442", "source": "1849", "target": "277", "attributes": { "weight": 1 } }, { "key": "23439", "source": "1849", "target": "268", "attributes": { "weight": 1 } }, { "key": "24431", "source": "1849", "target": "1965", "attributes": { "weight": 1 } }, { "key": "14662", "source": "1850", "target": "307", "attributes": { "weight": 1 } }, { "key": "19011", "source": "1850", "target": "313", "attributes": { "weight": 2 } }, { "key": "24792", "source": "1850", "target": "304", "attributes": { "weight": 2 } }, { "key": "12443", "source": "1850", "target": "277", "attributes": { "weight": 1 } }, { "key": "28044", "source": "1851", "target": "312", "attributes": { "weight": 1 } }, { "key": "28043", "source": "1851", "target": "287", "attributes": { "weight": 1 } }, { "key": "12446", "source": "1851", "target": "263", "attributes": { "weight": 1 } }, { "key": "14783", "source": "1852", "target": "277", "attributes": { "weight": 1 } }, { "key": "12450", "source": "1852", "target": "1846", "attributes": { "weight": 1 } }, { "key": "12451", "source": "1852", "target": "1848", "attributes": { "weight": 1 } }, { "key": "23029", "source": "1853", "target": "289", "attributes": { "weight": 1 } }, { "key": "14902", "source": "1853", "target": "304", "attributes": { "weight": 1 } }, { "key": "14901", "source": "1853", "target": "259", "attributes": { "weight": 1 } }, { "key": "12459", "source": "1853", "target": "263", "attributes": { "weight": 1 } }, { "key": "14903", "source": "1853", "target": "312", "attributes": { "weight": 1 } }, { "key": "13806", "source": "1854", "target": "314", "attributes": { "weight": 2 } }, { "key": "13807", "source": "1854", "target": "322", "attributes": { "weight": 3 } }, { "key": "13795", "source": "1854", "target": "261", "attributes": { "weight": 3 } }, { "key": "15048", "source": "1854", "target": "263", "attributes": { "weight": 1 } }, { "key": "13802", "source": "1854", "target": "305", "attributes": { "weight": 3 } }, { "key": "28204", "source": "1854", "target": "168", "attributes": { "weight": 1 } }, { "key": "13800", "source": "1854", "target": "300", "attributes": { "weight": 3 } }, { "key": "12482", "source": "1854", "target": "316", "attributes": { "weight": 2 } }, { "key": "25081", "source": "1854", "target": "170", "attributes": { "weight": 2 } }, { "key": "15049", "source": "1854", "target": "307", "attributes": { "weight": 1 } }, { "key": "13804", "source": "1854", "target": "308", "attributes": { "weight": 2 } }, { "key": "13794", "source": "1854", "target": "259", "attributes": { "weight": 3 } }, { "key": "13805", "source": "1854", "target": "312", "attributes": { "weight": 2 } }, { "key": "13803", "source": "1854", "target": "839", "attributes": { "weight": 4 } }, { "key": "31104", "source": "1854", "target": "276", "attributes": { "weight": 1 } }, { "key": "13798", "source": "1854", "target": "277", "attributes": { "weight": 5 } }, { "key": "13799", "source": "1854", "target": "278", "attributes": { "weight": 5 } }, { "key": "13801", "source": "1854", "target": "304", "attributes": { "weight": 4 } }, { "key": "12481", "source": "1854", "target": "268", "attributes": { "weight": 1 } }, { "key": "13797", "source": "1854", "target": "167", "attributes": { "weight": 2 } }, { "key": "31105", "source": "1854", "target": "180", "attributes": { "weight": 1 } }, { "key": "13808", "source": "1854", "target": "326", "attributes": { "weight": 2 } }, { "key": "13796", "source": "1854", "target": "264", "attributes": { "weight": 3 } }, { "key": "12486", "source": "1855", "target": "177", "attributes": { "weight": 3 } }, { "key": "35459", "source": "1855", "target": "1857", "attributes": { "weight": 1 } }, { "key": "12487", "source": "1855", "target": "1860", "attributes": { "weight": 1 } }, { "key": "35445", "source": "1855", "target": "574", "attributes": { "weight": 2 } }, { "key": "12488", "source": "1856", "target": "177", "attributes": { "weight": 3 } }, { "key": "35446", "source": "1856", "target": "574", "attributes": { "weight": 2 } }, { "key": "35464", "source": "1856", "target": "1857", "attributes": { "weight": 1 } }, { "key": "35465", "source": "1856", "target": "3", "attributes": { "weight": 1 } }, { "key": "35470", "source": "1857", "target": "167", "attributes": { "weight": 1 } }, { "key": "35472", "source": "1857", "target": "305", "attributes": { "weight": 1 } }, { "key": "35473", "source": "1857", "target": "3203", "attributes": { "weight": 1 } }, { "key": "12490", "source": "1857", "target": "177", "attributes": { "weight": 3 } }, { "key": "35474", "source": "1857", "target": "1860", "attributes": { "weight": 1 } }, { "key": "27674", "source": "1857", "target": "178", "attributes": { "weight": 3 } }, { "key": "14517", "source": "1857", "target": "259", "attributes": { "weight": 2 } }, { "key": "35476", "source": "1857", "target": "327", "attributes": { "weight": 1 } }, { "key": "35468", "source": "1857", "target": "1856", "attributes": { "weight": 1 } }, { "key": "27673", "source": "1857", "target": "175", "attributes": { "weight": 4 } }, { "key": "35467", "source": "1857", "target": "264", "attributes": { "weight": 1 } }, { "key": "27931", "source": "1857", "target": "287", "attributes": { "weight": 1 } }, { "key": "28701", "source": "1857", "target": "578", "attributes": { "weight": 1 } }, { "key": "35466", "source": "1857", "target": "1855", "attributes": { "weight": 1 } }, { "key": "35471", "source": "1857", "target": "1858", "attributes": { "weight": 1 } }, { "key": "35475", "source": "1857", "target": "321", "attributes": { "weight": 1 } }, { "key": "25680", "source": "1857", "target": "278", "attributes": { "weight": 3 } }, { "key": "35469", "source": "1857", "target": "3198", "attributes": { "weight": 1 } }, { "key": "12489", "source": "1857", "target": "574", "attributes": { "weight": 3 } }, { "key": "14188", "source": "1857", "target": "168", "attributes": { "weight": 2 } }, { "key": "35495", "source": "1858", "target": "1857", "attributes": { "weight": 1 } }, { "key": "12493", "source": "1858", "target": "177", "attributes": { "weight": 3 } }, { "key": "35497", "source": "1859", "target": "574", "attributes": { "weight": 1 } }, { "key": "12494", "source": "1859", "target": "177", "attributes": { "weight": 3 } }, { "key": "35498", "source": "1859", "target": "3206", "attributes": { "weight": 1 } }, { "key": "35532", "source": "1860", "target": "1642", "attributes": { "weight": 1 } }, { "key": "12503", "source": "1860", "target": "177", "attributes": { "weight": 3 } }, { "key": "35531", "source": "1860", "target": "574", "attributes": { "weight": 1 } }, { "key": "12502", "source": "1860", "target": "1855", "attributes": { "weight": 1 } }, { "key": "35530", "source": "1860", "target": "1857", "attributes": { "weight": 1 } }, { "key": "16582", "source": "1861", "target": "1522", "attributes": { "weight": 1 } }, { "key": "12518", "source": "1861", "target": "1141", "attributes": { "weight": 1 } }, { "key": "16792", "source": "1862", "target": "70", "attributes": { "weight": 2 } }, { "key": "16791", "source": "1862", "target": "1354", "attributes": { "weight": 1 } }, { "key": "36289", "source": "1862", "target": "3278", "attributes": { "weight": 1 } }, { "key": "12520", "source": "1862", "target": "1337", "attributes": { "weight": 1 } }, { "key": "16793", "source": "1862", "target": "1389", "attributes": { "weight": 2 } }, { "key": "36291", "source": "1862", "target": "596", "attributes": { "weight": 1 } }, { "key": "36290", "source": "1862", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36325", "source": "1863", "target": "2081", "attributes": { "weight": 1 } }, { "key": "36324", "source": "1863", "target": "434", "attributes": { "weight": 1 } }, { "key": "12525", "source": "1863", "target": "1141", "attributes": { "weight": 1 } }, { "key": "36326", "source": "1863", "target": "1389", "attributes": { "weight": 1 } }, { "key": "12526", "source": "1863", "target": "1337", "attributes": { "weight": 2 } }, { "key": "31326", "source": "1863", "target": "70", "attributes": { "weight": 1 } }, { "key": "12536", "source": "1864", "target": "1866", "attributes": { "weight": 1 } }, { "key": "12537", "source": "1864", "target": "638", "attributes": { "weight": 2 } }, { "key": "12538", "source": "1864", "target": "1867", "attributes": { "weight": 1 } }, { "key": "12542", "source": "1865", "target": "638", "attributes": { "weight": 1 } }, { "key": "12541", "source": "1865", "target": "1866", "attributes": { "weight": 1 } }, { "key": "12549", "source": "1866", "target": "1867", "attributes": { "weight": 1 } }, { "key": "12547", "source": "1866", "target": "638", "attributes": { "weight": 2 } }, { "key": "26052", "source": "1866", "target": "163", "attributes": { "weight": 1 } }, { "key": "12543", "source": "1866", "target": "1864", "attributes": { "weight": 1 } }, { "key": "12544", "source": "1866", "target": "636", "attributes": { "weight": 1 } }, { "key": "12545", "source": "1866", "target": "1865", "attributes": { "weight": 1 } }, { "key": "12546", "source": "1866", "target": "1539", "attributes": { "weight": 1 } }, { "key": "12548", "source": "1866", "target": "1550", "attributes": { "weight": 1 } }, { "key": "12556", "source": "1867", "target": "1864", "attributes": { "weight": 1 } }, { "key": "12559", "source": "1867", "target": "638", "attributes": { "weight": 2 } }, { "key": "12557", "source": "1867", "target": "636", "attributes": { "weight": 1 } }, { "key": "12558", "source": "1867", "target": "1866", "attributes": { "weight": 1 } }, { "key": "32057", "source": "1867", "target": "1815", "attributes": { "weight": 1 } }, { "key": "32058", "source": "1867", "target": "1816", "attributes": { "weight": 1 } }, { "key": "23212", "source": "1868", "target": "707", "attributes": { "weight": 3 } }, { "key": "12560", "source": "1868", "target": "180", "attributes": { "weight": 3 } }, { "key": "28335", "source": "1868", "target": "579", "attributes": { "weight": 1 } }, { "key": "28369", "source": "1869", "target": "579", "attributes": { "weight": 1 } }, { "key": "28368", "source": "1869", "target": "170", "attributes": { "weight": 1 } }, { "key": "24949", "source": "1869", "target": "1240", "attributes": { "weight": 1 } }, { "key": "23219", "source": "1869", "target": "707", "attributes": { "weight": 3 } }, { "key": "12580", "source": "1869", "target": "180", "attributes": { "weight": 3 } }, { "key": "28367", "source": "1869", "target": "1191", "attributes": { "weight": 1 } }, { "key": "23226", "source": "1870", "target": "1191", "attributes": { "weight": 2 } }, { "key": "12592", "source": "1870", "target": "180", "attributes": { "weight": 2 } }, { "key": "21453", "source": "1870", "target": "1823", "attributes": { "weight": 2 } }, { "key": "25017", "source": "1870", "target": "278", "attributes": { "weight": 2 } }, { "key": "25016", "source": "1870", "target": "707", "attributes": { "weight": 2 } }, { "key": "21452", "source": "1870", "target": "580", "attributes": { "weight": 2 } }, { "key": "25018", "source": "1870", "target": "305", "attributes": { "weight": 2 } }, { "key": "28693", "source": "1870", "target": "1512", "attributes": { "weight": 1 } }, { "key": "21451", "source": "1870", "target": "698", "attributes": { "weight": 2 } }, { "key": "25053", "source": "1871", "target": "707", "attributes": { "weight": 2 } }, { "key": "28478", "source": "1871", "target": "700", "attributes": { "weight": 2 } }, { "key": "23230", "source": "1871", "target": "1191", "attributes": { "weight": 2 } }, { "key": "25751", "source": "1871", "target": "278", "attributes": { "weight": 1 } }, { "key": "25054", "source": "1871", "target": "305", "attributes": { "weight": 2 } }, { "key": "28698", "source": "1871", "target": "1512", "attributes": { "weight": 1 } }, { "key": "12600", "source": "1871", "target": "180", "attributes": { "weight": 2 } }, { "key": "28711", "source": "1871", "target": "578", "attributes": { "weight": 1 } }, { "key": "14913", "source": "1872", "target": "259", "attributes": { "weight": 1 } }, { "key": "14919", "source": "1872", "target": "327", "attributes": { "weight": 3 } }, { "key": "25774", "source": "1872", "target": "278", "attributes": { "weight": 2 } }, { "key": "14917", "source": "1872", "target": "313", "attributes": { "weight": 1 } }, { "key": "24815", "source": "1872", "target": "326", "attributes": { "weight": 1 } }, { "key": "23044", "source": "1872", "target": "316", "attributes": { "weight": 1 } }, { "key": "19055", "source": "1872", "target": "262", "attributes": { "weight": 2 } }, { "key": "23043", "source": "1872", "target": "166", "attributes": { "weight": 1 } }, { "key": "12654", "source": "1872", "target": "180", "attributes": { "weight": 1 } }, { "key": "28165", "source": "1872", "target": "276", "attributes": { "weight": 1 } }, { "key": "14915", "source": "1872", "target": "268", "attributes": { "weight": 1 } }, { "key": "14916", "source": "1872", "target": "312", "attributes": { "weight": 1 } }, { "key": "14914", "source": "1872", "target": "263", "attributes": { "weight": 1 } }, { "key": "13655", "source": "1872", "target": "304", "attributes": { "weight": 2 } }, { "key": "14918", "source": "1872", "target": "318", "attributes": { "weight": 2 } }, { "key": "29222", "source": "1872", "target": "582", "attributes": { "weight": 1 } }, { "key": "19056", "source": "1872", "target": "264", "attributes": { "weight": 2 } }, { "key": "19057", "source": "1872", "target": "839", "attributes": { "weight": 2 } }, { "key": "12684", "source": "1873", "target": "695", "attributes": { "weight": 1 } }, { "key": "31353", "source": "1873", "target": "674", "attributes": { "weight": 1 } }, { "key": "16974", "source": "1873", "target": "70", "attributes": { "weight": 1 } }, { "key": "12736", "source": "1874", "target": "1884", "attributes": { "weight": 1 } }, { "key": "12737", "source": "1874", "target": "1885", "attributes": { "weight": 1 } }, { "key": "12738", "source": "1875", "target": "1887", "attributes": { "weight": 1 } }, { "key": "12740", "source": "1876", "target": "1881", "attributes": { "weight": 1 } }, { "key": "12739", "source": "1876", "target": "1877", "attributes": { "weight": 1 } }, { "key": "12743", "source": "1877", "target": "1882", "attributes": { "weight": 1 } }, { "key": "12742", "source": "1877", "target": "1881", "attributes": { "weight": 1 } }, { "key": "12741", "source": "1877", "target": "1876", "attributes": { "weight": 1 } }, { "key": "17856", "source": "1878", "target": "1995", "attributes": { "weight": 3 } }, { "key": "12745", "source": "1878", "target": "638", "attributes": { "weight": 2 } }, { "key": "12747", "source": "1878", "target": "1888", "attributes": { "weight": 1 } }, { "key": "25859", "source": "1878", "target": "163", "attributes": { "weight": 2 } }, { "key": "12744", "source": "1878", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12746", "source": "1878", "target": "1883", "attributes": { "weight": 1 } }, { "key": "12757", "source": "1879", "target": "1881", "attributes": { "weight": 1 } }, { "key": "12756", "source": "1879", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12758", "source": "1880", "target": "1887", "attributes": { "weight": 1 } }, { "key": "12759", "source": "1881", "target": "1874", "attributes": { "weight": 1 } }, { "key": "12761", "source": "1881", "target": "1879", "attributes": { "weight": 1 } }, { "key": "12760", "source": "1881", "target": "1876", "attributes": { "weight": 1 } }, { "key": "12762", "source": "1882", "target": "1879", "attributes": { "weight": 1 } }, { "key": "12765", "source": "1883", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12766", "source": "1883", "target": "1889", "attributes": { "weight": 1 } }, { "key": "12764", "source": "1883", "target": "1878", "attributes": { "weight": 1 } }, { "key": "12767", "source": "1884", "target": "1874", "attributes": { "weight": 1 } }, { "key": "12768", "source": "1884", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12769", "source": "1885", "target": "3414", "attributes": { "weight": 1 } }, { "key": "12770", "source": "1886", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12771", "source": "1887", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12772", "source": "1887", "target": "1880", "attributes": { "weight": 1 } }, { "key": "12774", "source": "1888", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12773", "source": "1888", "target": "1878", "attributes": { "weight": 1 } }, { "key": "12775", "source": "1889", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12776", "source": "1889", "target": "1883", "attributes": { "weight": 1 } }, { "key": "12783", "source": "1890", "target": "473", "attributes": { "weight": 1 } }, { "key": "14138", "source": "1890", "target": "1891", "attributes": { "weight": 1 } }, { "key": "14137", "source": "1890", "target": "392", "attributes": { "weight": 1 } }, { "key": "14161", "source": "1891", "target": "254", "attributes": { "weight": 1 } }, { "key": "14160", "source": "1891", "target": "392", "attributes": { "weight": 1 } }, { "key": "14162", "source": "1891", "target": "154", "attributes": { "weight": 1 } }, { "key": "12799", "source": "1891", "target": "452", "attributes": { "weight": 2 } }, { "key": "12808", "source": "1892", "target": "370", "attributes": { "weight": 1 } }, { "key": "29999", "source": "1892", "target": "371", "attributes": { "weight": 1 } }, { "key": "12809", "source": "1892", "target": "785", "attributes": { "weight": 1 } }, { "key": "30000", "source": "1892", "target": "784", "attributes": { "weight": 1 } }, { "key": "12810", "source": "1892", "target": "1063", "attributes": { "weight": 2 } }, { "key": "35239", "source": "1892", "target": "1032", "attributes": { "weight": 1 } }, { "key": "28924", "source": "1892", "target": "780", "attributes": { "weight": 1 } }, { "key": "12870", "source": "1893", "target": "1565", "attributes": { "weight": 1 } }, { "key": "12869", "source": "1893", "target": "38", "attributes": { "weight": 1 } }, { "key": "12878", "source": "1894", "target": "264", "attributes": { "weight": 2 } }, { "key": "14313", "source": "1894", "target": "319", "attributes": { "weight": 4 } }, { "key": "33112", "source": "1895", "target": "294", "attributes": { "weight": 1 } }, { "key": "12892", "source": "1895", "target": "264", "attributes": { "weight": 2 } }, { "key": "27909", "source": "1896", "target": "268", "attributes": { "weight": 1 } }, { "key": "12960", "source": "1896", "target": "304", "attributes": { "weight": 2 } }, { "key": "22896", "source": "1897", "target": "1906", "attributes": { "weight": 1 } }, { "key": "22185", "source": "1897", "target": "268", "attributes": { "weight": 1 } }, { "key": "22895", "source": "1897", "target": "275", "attributes": { "weight": 3 } }, { "key": "22184", "source": "1897", "target": "836", "attributes": { "weight": 1 } }, { "key": "12961", "source": "1897", "target": "304", "attributes": { "weight": 2 } }, { "key": "22898", "source": "1897", "target": "316", "attributes": { "weight": 2 } }, { "key": "27910", "source": "1897", "target": "277", "attributes": { "weight": 1 } }, { "key": "22897", "source": "1897", "target": "307", "attributes": { "weight": 1 } }, { "key": "25962", "source": "1897", "target": "2622", "attributes": { "weight": 2 } }, { "key": "27911", "source": "1897", "target": "300", "attributes": { "weight": 1 } }, { "key": "23413", "source": "1898", "target": "327", "attributes": { "weight": 1 } }, { "key": "27912", "source": "1898", "target": "322", "attributes": { "weight": 1 } }, { "key": "23412", "source": "1898", "target": "316", "attributes": { "weight": 1 } }, { "key": "23270", "source": "1898", "target": "839", "attributes": { "weight": 1 } }, { "key": "14465", "source": "1898", "target": "266", "attributes": { "weight": 1 } }, { "key": "23411", "source": "1898", "target": "166", "attributes": { "weight": 1 } }, { "key": "12962", "source": "1898", "target": "264", "attributes": { "weight": 2 } }, { "key": "14464", "source": "1898", "target": "259", "attributes": { "weight": 1 } }, { "key": "22899", "source": "1898", "target": "318", "attributes": { "weight": 3 } }, { "key": "14466", "source": "1898", "target": "304", "attributes": { "weight": 2 } }, { "key": "25963", "source": "1898", "target": "2622", "attributes": { "weight": 2 } }, { "key": "27933", "source": "1899", "target": "305", "attributes": { "weight": 1 } }, { "key": "13022", "source": "1899", "target": "312", "attributes": { "weight": 2 } }, { "key": "13020", "source": "1899", "target": "287", "attributes": { "weight": 2 } }, { "key": "13021", "source": "1899", "target": "304", "attributes": { "weight": 2 } }, { "key": "13019", "source": "1899", "target": "259", "attributes": { "weight": 2 } }, { "key": "13023", "source": "1900", "target": "304", "attributes": { "weight": 2 } }, { "key": "14519", "source": "1900", "target": "305", "attributes": { "weight": 1 } }, { "key": "19002", "source": "1900", "target": "313", "attributes": { "weight": 2 } }, { "key": "13041", "source": "1901", "target": "304", "attributes": { "weight": 3 } }, { "key": "14540", "source": "1901", "target": "313", "attributes": { "weight": 2 } }, { "key": "25225", "source": "1902", "target": "171", "attributes": { "weight": 1 } }, { "key": "25227", "source": "1902", "target": "1967", "attributes": { "weight": 1 } }, { "key": "25226", "source": "1902", "target": "307", "attributes": { "weight": 1 } }, { "key": "13050", "source": "1902", "target": "304", "attributes": { "weight": 2 } }, { "key": "22212", "source": "1903", "target": "268", "attributes": { "weight": 1 } }, { "key": "13066", "source": "1903", "target": "304", "attributes": { "weight": 2 } }, { "key": "22919", "source": "1903", "target": "321", "attributes": { "weight": 1 } }, { "key": "22920", "source": "1903", "target": "326", "attributes": { "weight": 1 } }, { "key": "19004", "source": "1903", "target": "839", "attributes": { "weight": 2 } }, { "key": "22921", "source": "1903", "target": "327", "attributes": { "weight": 1 } }, { "key": "22213", "source": "1903", "target": "167", "attributes": { "weight": 1 } }, { "key": "14568", "source": "1903", "target": "259", "attributes": { "weight": 1 } }, { "key": "22918", "source": "1903", "target": "316", "attributes": { "weight": 1 } }, { "key": "13078", "source": "1904", "target": "312", "attributes": { "weight": 2 } }, { "key": "13077", "source": "1904", "target": "304", "attributes": { "weight": 2 } }, { "key": "13076", "source": "1904", "target": "167", "attributes": { "weight": 2 } }, { "key": "13075", "source": "1904", "target": "259", "attributes": { "weight": 2 } }, { "key": "21444", "source": "1905", "target": "1823", "attributes": { "weight": 2 } }, { "key": "28366", "source": "1905", "target": "1512", "attributes": { "weight": 1 } }, { "key": "24947", "source": "1905", "target": "707", "attributes": { "weight": 2 } }, { "key": "24948", "source": "1905", "target": "305", "attributes": { "weight": 2 } }, { "key": "21443", "source": "1905", "target": "580", "attributes": { "weight": 2 } }, { "key": "13126", "source": "1905", "target": "268", "attributes": { "weight": 2 } }, { "key": "13937", "source": "1905", "target": "180", "attributes": { "weight": 1 } }, { "key": "28365", "source": "1905", "target": "278", "attributes": { "weight": 3 } }, { "key": "24946", "source": "1905", "target": "1191", "attributes": { "weight": 2 } }, { "key": "23275", "source": "1906", "target": "1925", "attributes": { "weight": 1 } }, { "key": "13135", "source": "1906", "target": "18", "attributes": { "weight": 1 } }, { "key": "13134", "source": "1906", "target": "275", "attributes": { "weight": 5 } }, { "key": "25973", "source": "1906", "target": "2622", "attributes": { "weight": 2 } }, { "key": "22953", "source": "1906", "target": "1848", "attributes": { "weight": 1 } }, { "key": "22951", "source": "1906", "target": "1897", "attributes": { "weight": 1 } }, { "key": "22952", "source": "1906", "target": "277", "attributes": { "weight": 1 } }, { "key": "27784", "source": "1906", "target": "2098", "attributes": { "weight": 1 } }, { "key": "13136", "source": "1906", "target": "304", "attributes": { "weight": 5 } }, { "key": "13137", "source": "1907", "target": "304", "attributes": { "weight": 2 } }, { "key": "22955", "source": "1907", "target": "307", "attributes": { "weight": 1 } }, { "key": "22954", "source": "1907", "target": "275", "attributes": { "weight": 2 } }, { "key": "25974", "source": "1907", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13138", "source": "1908", "target": "1917", "attributes": { "weight": 2 } }, { "key": "22956", "source": "1908", "target": "326", "attributes": { "weight": 1 } }, { "key": "27979", "source": "1908", "target": "305", "attributes": { "weight": 1 } }, { "key": "13139", "source": "1908", "target": "304", "attributes": { "weight": 2 } }, { "key": "14610", "source": "1908", "target": "319", "attributes": { "weight": 3 } }, { "key": "14609", "source": "1908", "target": "260", "attributes": { "weight": 1 } }, { "key": "14626", "source": "1909", "target": "1984", "attributes": { "weight": 1 } }, { "key": "25976", "source": "1909", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13150", "source": "1909", "target": "283", "attributes": { "weight": 4 } }, { "key": "27984", "source": "1909", "target": "305", "attributes": { "weight": 1 } }, { "key": "14629", "source": "1909", "target": "327", "attributes": { "weight": 2 } }, { "key": "14627", "source": "1909", "target": "304", "attributes": { "weight": 2 } }, { "key": "14628", "source": "1909", "target": "312", "attributes": { "weight": 1 } }, { "key": "13152", "source": "1910", "target": "319", "attributes": { "weight": 6 } }, { "key": "13155", "source": "1911", "target": "312", "attributes": { "weight": 2 } }, { "key": "13154", "source": "1911", "target": "304", "attributes": { "weight": 2 } }, { "key": "13153", "source": "1911", "target": "259", "attributes": { "weight": 3 } }, { "key": "17993", "source": "1911", "target": "322", "attributes": { "weight": 1 } }, { "key": "26170", "source": "1911", "target": "262", "attributes": { "weight": 2 } }, { "key": "13156", "source": "1911", "target": "336", "attributes": { "weight": 2 } }, { "key": "26171", "source": "1911", "target": "263", "attributes": { "weight": 2 } }, { "key": "13187", "source": "1912", "target": "312", "attributes": { "weight": 2 } }, { "key": "13182", "source": "1912", "target": "259", "attributes": { "weight": 2 } }, { "key": "13185", "source": "1912", "target": "304", "attributes": { "weight": 2 } }, { "key": "13188", "source": "1912", "target": "326", "attributes": { "weight": 2 } }, { "key": "13183", "source": "1912", "target": "264", "attributes": { "weight": 2 } }, { "key": "13184", "source": "1912", "target": "272", "attributes": { "weight": 2 } }, { "key": "13186", "source": "1912", "target": "839", "attributes": { "weight": 2 } }, { "key": "13189", "source": "1912", "target": "327", "attributes": { "weight": 2 } }, { "key": "13191", "source": "1913", "target": "304", "attributes": { "weight": 2 } }, { "key": "27990", "source": "1913", "target": "312", "attributes": { "weight": 1 } }, { "key": "14650", "source": "1913", "target": "259", "attributes": { "weight": 1 } }, { "key": "17994", "source": "1913", "target": "264", "attributes": { "weight": 1 } }, { "key": "19007", "source": "1913", "target": "839", "attributes": { "weight": 2 } }, { "key": "27991", "source": "1913", "target": "326", "attributes": { "weight": 1 } }, { "key": "17995", "source": "1913", "target": "327", "attributes": { "weight": 1 } }, { "key": "13192", "source": "1914", "target": "304", "attributes": { "weight": 2 } }, { "key": "13193", "source": "1914", "target": "327", "attributes": { "weight": 2 } }, { "key": "27995", "source": "1914", "target": "839", "attributes": { "weight": 1 } }, { "key": "14653", "source": "1914", "target": "259", "attributes": { "weight": 1 } }, { "key": "13200", "source": "1915", "target": "313", "attributes": { "weight": 2 } }, { "key": "19010", "source": "1915", "target": "305", "attributes": { "weight": 2 } }, { "key": "23440", "source": "1915", "target": "167", "attributes": { "weight": 1 } }, { "key": "13201", "source": "1916", "target": "312", "attributes": { "weight": 2 } }, { "key": "25982", "source": "1916", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13202", "source": "1916", "target": "327", "attributes": { "weight": 2 } }, { "key": "29797", "source": "1917", "target": "262", "attributes": { "weight": 1 } }, { "key": "13228", "source": "1917", "target": "264", "attributes": { "weight": 2 } }, { "key": "13229", "source": "1917", "target": "1908", "attributes": { "weight": 2 } }, { "key": "23445", "source": "1917", "target": "260", "attributes": { "weight": 1 } }, { "key": "14688", "source": "1917", "target": "319", "attributes": { "weight": 4 } }, { "key": "28059", "source": "1918", "target": "263", "attributes": { "weight": 1 } }, { "key": "18004", "source": "1918", "target": "327", "attributes": { "weight": 1 } }, { "key": "28061", "source": "1918", "target": "839", "attributes": { "weight": 1 } }, { "key": "28060", "source": "1918", "target": "305", "attributes": { "weight": 1 } }, { "key": "22238", "source": "1918", "target": "336", "attributes": { "weight": 1 } }, { "key": "18003", "source": "1918", "target": "312", "attributes": { "weight": 1 } }, { "key": "22237", "source": "1918", "target": "262", "attributes": { "weight": 1 } }, { "key": "18001", "source": "1918", "target": "264", "attributes": { "weight": 1 } }, { "key": "13269", "source": "1918", "target": "304", "attributes": { "weight": 2 } }, { "key": "18002", "source": "1918", "target": "287", "attributes": { "weight": 1 } }, { "key": "14726", "source": "1918", "target": "259", "attributes": { "weight": 1 } }, { "key": "28062", "source": "1918", "target": "311", "attributes": { "weight": 1 } }, { "key": "28063", "source": "1918", "target": "322", "attributes": { "weight": 1 } }, { "key": "22998", "source": "1919", "target": "301", "attributes": { "weight": 1 } }, { "key": "14727", "source": "1919", "target": "263", "attributes": { "weight": 2 } }, { "key": "28066", "source": "1919", "target": "304", "attributes": { "weight": 1 } }, { "key": "28067", "source": "1919", "target": "305", "attributes": { "weight": 1 } }, { "key": "14728", "source": "1919", "target": "312", "attributes": { "weight": 1 } }, { "key": "28064", "source": "1919", "target": "167", "attributes": { "weight": 1 } }, { "key": "22239", "source": "1919", "target": "289", "attributes": { "weight": 1 } }, { "key": "22999", "source": "1919", "target": "326", "attributes": { "weight": 1 } }, { "key": "22997", "source": "1919", "target": "166", "attributes": { "weight": 1 } }, { "key": "13270", "source": "1919", "target": "259", "attributes": { "weight": 2 } }, { "key": "28065", "source": "1919", "target": "287", "attributes": { "weight": 1 } }, { "key": "14729", "source": "1920", "target": "268", "attributes": { "weight": 1 } }, { "key": "23000", "source": "1920", "target": "307", "attributes": { "weight": 1 } }, { "key": "28068", "source": "1920", "target": "313", "attributes": { "weight": 1 } }, { "key": "14730", "source": "1920", "target": "278", "attributes": { "weight": 2 } }, { "key": "13273", "source": "1920", "target": "304", "attributes": { "weight": 4 } }, { "key": "14731", "source": "1920", "target": "305", "attributes": { "weight": 1 } }, { "key": "23002", "source": "1921", "target": "316", "attributes": { "weight": 1 } }, { "key": "29210", "source": "1921", "target": "697", "attributes": { "weight": 1 } }, { "key": "28071", "source": "1921", "target": "305", "attributes": { "weight": 1 } }, { "key": "13294", "source": "1921", "target": "304", "attributes": { "weight": 2 } }, { "key": "28710", "source": "1921", "target": "578", "attributes": { "weight": 1 } }, { "key": "14749", "source": "1922", "target": "305", "attributes": { "weight": 1 } }, { "key": "26026", "source": "1922", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13297", "source": "1922", "target": "304", "attributes": { "weight": 3 } }, { "key": "19018", "source": "1922", "target": "313", "attributes": { "weight": 2 } }, { "key": "23013", "source": "1923", "target": "326", "attributes": { "weight": 1 } }, { "key": "13508", "source": "1923", "target": "304", "attributes": { "weight": 2 } }, { "key": "23011", "source": "1923", "target": "275", "attributes": { "weight": 1 } }, { "key": "28155", "source": "1924", "target": "305", "attributes": { "weight": 1 } }, { "key": "13590", "source": "1924", "target": "304", "attributes": { "weight": 1 } }, { "key": "25772", "source": "1924", "target": "278", "attributes": { "weight": 1 } }, { "key": "25771", "source": "1924", "target": "697", "attributes": { "weight": 3 } }, { "key": "23296", "source": "1925", "target": "305", "attributes": { "weight": 1 } }, { "key": "13617", "source": "1925", "target": "304", "attributes": { "weight": 3 } }, { "key": "24812", "source": "1925", "target": "167", "attributes": { "weight": 1 } }, { "key": "23030", "source": "1925", "target": "314", "attributes": { "weight": 1 } }, { "key": "23295", "source": "1925", "target": "1906", "attributes": { "weight": 1 } }, { "key": "14904", "source": "1925", "target": "275", "attributes": { "weight": 3 } }, { "key": "24813", "source": "1925", "target": "277", "attributes": { "weight": 2 } }, { "key": "28160", "source": "1925", "target": "300", "attributes": { "weight": 1 } }, { "key": "27792", "source": "1926", "target": "2715", "attributes": { "weight": 1 } }, { "key": "25775", "source": "1926", "target": "278", "attributes": { "weight": 2 } }, { "key": "17097", "source": "1926", "target": "2099", "attributes": { "weight": 2 } }, { "key": "27790", "source": "1926", "target": "3421", "attributes": { "weight": 1 } }, { "key": "17096", "source": "1926", "target": "2098", "attributes": { "weight": 2 } }, { "key": "28993", "source": "1926", "target": "595", "attributes": { "weight": 2 } }, { "key": "17099", "source": "1926", "target": "2101", "attributes": { "weight": 1 } }, { "key": "28992", "source": "1926", "target": "580", "attributes": { "weight": 1 } }, { "key": "27791", "source": "1926", "target": "168", "attributes": { "weight": 2 } }, { "key": "13669", "source": "1926", "target": "304", "attributes": { "weight": 2 } }, { "key": "27793", "source": "1926", "target": "2717", "attributes": { "weight": 1 } }, { "key": "27789", "source": "1926", "target": "2714", "attributes": { "weight": 1 } }, { "key": "27788", "source": "1926", "target": "164", "attributes": { "weight": 1 } }, { "key": "32620", "source": "1926", "target": "789", "attributes": { "weight": 1 } }, { "key": "17098", "source": "1926", "target": "2100", "attributes": { "weight": 1 } }, { "key": "13692", "source": "1927", "target": "304", "attributes": { "weight": 3 } }, { "key": "26034", "source": "1927", "target": "2622", "attributes": { "weight": 2 } }, { "key": "23497", "source": "1927", "target": "326", "attributes": { "weight": 1 } }, { "key": "23056", "source": "1927", "target": "275", "attributes": { "weight": 2 } }, { "key": "13710", "source": "1928", "target": "313", "attributes": { "weight": 2 } }, { "key": "27564", "source": "1928", "target": "168", "attributes": { "weight": 1 } }, { "key": "13711", "source": "1928", "target": "327", "attributes": { "weight": 3 } }, { "key": "13708", "source": "1928", "target": "259", "attributes": { "weight": 2 } }, { "key": "13709", "source": "1928", "target": "262", "attributes": { "weight": 2 } }, { "key": "28179", "source": "1928", "target": "839", "attributes": { "weight": 1 } }, { "key": "31100", "source": "1928", "target": "314", "attributes": { "weight": 1 } }, { "key": "31101", "source": "1928", "target": "326", "attributes": { "weight": 1 } }, { "key": "14993", "source": "1928", "target": "304", "attributes": { "weight": 2 } }, { "key": "14996", "source": "1929", "target": "259", "attributes": { "weight": 1 } }, { "key": "13724", "source": "1929", "target": "312", "attributes": { "weight": 3 } }, { "key": "23297", "source": "1929", "target": "305", "attributes": { "weight": 1 } }, { "key": "22251", "source": "1929", "target": "167", "attributes": { "weight": 1 } }, { "key": "26035", "source": "1929", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13723", "source": "1929", "target": "304", "attributes": { "weight": 2 } }, { "key": "22250", "source": "1929", "target": "262", "attributes": { "weight": 1 } }, { "key": "14997", "source": "1929", "target": "327", "attributes": { "weight": 1 } }, { "key": "28184", "source": "1929", "target": "322", "attributes": { "weight": 1 } }, { "key": "26036", "source": "1930", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13725", "source": "1930", "target": "304", "attributes": { "weight": 2 } }, { "key": "14998", "source": "1930", "target": "275", "attributes": { "weight": 3 } }, { "key": "15031", "source": "1931", "target": "277", "attributes": { "weight": 1 } }, { "key": "28201", "source": "1931", "target": "300", "attributes": { "weight": 1 } }, { "key": "28202", "source": "1931", "target": "318", "attributes": { "weight": 1 } }, { "key": "13783", "source": "1931", "target": "319", "attributes": { "weight": 2 } }, { "key": "13779", "source": "1931", "target": "304", "attributes": { "weight": 2 } }, { "key": "13775", "source": "1931", "target": "264", "attributes": { "weight": 2 } }, { "key": "15029", "source": "1931", "target": "262", "attributes": { "weight": 1 } }, { "key": "13776", "source": "1931", "target": "167", "attributes": { "weight": 2 } }, { "key": "19062", "source": "1931", "target": "305", "attributes": { "weight": 2 } }, { "key": "13781", "source": "1931", "target": "313", "attributes": { "weight": 2 } }, { "key": "13782", "source": "1931", "target": "316", "attributes": { "weight": 2 } }, { "key": "13780", "source": "1931", "target": "312", "attributes": { "weight": 2 } }, { "key": "13774", "source": "1931", "target": "259", "attributes": { "weight": 2 } }, { "key": "15030", "source": "1931", "target": "263", "attributes": { "weight": 1 } }, { "key": "13778", "source": "1931", "target": "291", "attributes": { "weight": 2 } }, { "key": "28203", "source": "1931", "target": "322", "attributes": { "weight": 1 } }, { "key": "13777", "source": "1931", "target": "287", "attributes": { "weight": 2 } }, { "key": "15032", "source": "1931", "target": "311", "attributes": { "weight": 1 } }, { "key": "13788", "source": "1932", "target": "264", "attributes": { "weight": 2 } }, { "key": "15035", "source": "1932", "target": "319", "attributes": { "weight": 2 } }, { "key": "15038", "source": "1933", "target": "277", "attributes": { "weight": 1 } }, { "key": "23078", "source": "1933", "target": "295", "attributes": { "weight": 1 } }, { "key": "15040", "source": "1933", "target": "307", "attributes": { "weight": 1 } }, { "key": "23077", "source": "1933", "target": "283", "attributes": { "weight": 1 } }, { "key": "15044", "source": "1933", "target": "336", "attributes": { "weight": 1 } }, { "key": "23505", "source": "1933", "target": "326", "attributes": { "weight": 1 } }, { "key": "15039", "source": "1933", "target": "287", "attributes": { "weight": 1 } }, { "key": "13789", "source": "1933", "target": "264", "attributes": { "weight": 2 } }, { "key": "13790", "source": "1933", "target": "304", "attributes": { "weight": 3 } }, { "key": "15036", "source": "1933", "target": "259", "attributes": { "weight": 1 } }, { "key": "15043", "source": "1933", "target": "327", "attributes": { "weight": 1 } }, { "key": "15037", "source": "1933", "target": "260", "attributes": { "weight": 1 } }, { "key": "15042", "source": "1933", "target": "319", "attributes": { "weight": 1 } }, { "key": "15041", "source": "1933", "target": "179", "attributes": { "weight": 2 } }, { "key": "13791", "source": "1934", "target": "278", "attributes": { "weight": 4 } }, { "key": "13793", "source": "1934", "target": "313", "attributes": { "weight": 3 } }, { "key": "13792", "source": "1934", "target": "304", "attributes": { "weight": 3 } }, { "key": "15046", "source": "1934", "target": "268", "attributes": { "weight": 1 } }, { "key": "15045", "source": "1934", "target": "261", "attributes": { "weight": 1 } }, { "key": "15047", "source": "1934", "target": "305", "attributes": { "weight": 2 } }, { "key": "13828", "source": "1935", "target": "635", "attributes": { "weight": 1 } }, { "key": "29260", "source": "1935", "target": "2628", "attributes": { "weight": 1 } }, { "key": "13837", "source": "1936", "target": "1107", "attributes": { "weight": 1 } }, { "key": "13838", "source": "1936", "target": "1546", "attributes": { "weight": 1 } }, { "key": "13847", "source": "1937", "target": "1953", "attributes": { "weight": 2 } }, { "key": "29940", "source": "1937", "target": "1952", "attributes": { "weight": 1 } }, { "key": "13850", "source": "1938", "target": "1957", "attributes": { "weight": 1 } }, { "key": "13849", "source": "1938", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13848", "source": "1938", "target": "1944", "attributes": { "weight": 1 } }, { "key": "13851", "source": "1939", "target": "1941", "attributes": { "weight": 1 } }, { "key": "13853", "source": "1939", "target": "1947", "attributes": { "weight": 1 } }, { "key": "13854", "source": "1939", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13852", "source": "1939", "target": "1944", "attributes": { "weight": 1 } }, { "key": "13858", "source": "1940", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13857", "source": "1940", "target": "1951", "attributes": { "weight": 1 } }, { "key": "13856", "source": "1940", "target": "1949", "attributes": { "weight": 2 } }, { "key": "13862", "source": "1941", "target": "1950", "attributes": { "weight": 1 } }, { "key": "13860", "source": "1941", "target": "1944", "attributes": { "weight": 1 } }, { "key": "13861", "source": "1941", "target": "1947", "attributes": { "weight": 1 } }, { "key": "13866", "source": "1941", "target": "1958", "attributes": { "weight": 2 } }, { "key": "13865", "source": "1941", "target": "1956", "attributes": { "weight": 1 } }, { "key": "13864", "source": "1941", "target": "1954", "attributes": { "weight": 1 } }, { "key": "13863", "source": "1941", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13859", "source": "1941", "target": "1939", "attributes": { "weight": 1 } }, { "key": "13869", "source": "1942", "target": "1953", "attributes": { "weight": 2 } }, { "key": "13867", "source": "1942", "target": "1944", "attributes": { "weight": 2 } }, { "key": "13868", "source": "1942", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13870", "source": "1943", "target": "1953", "attributes": { "weight": 2 } }, { "key": "29949", "source": "1943", "target": "1948", "attributes": { "weight": 1 } }, { "key": "29950", "source": "1943", "target": "1952", "attributes": { "weight": 1 } }, { "key": "13875", "source": "1944", "target": "1947", "attributes": { "weight": 1 } }, { "key": "13873", "source": "1944", "target": "1941", "attributes": { "weight": 1 } }, { "key": "13874", "source": "1944", "target": "1942", "attributes": { "weight": 2 } }, { "key": "13877", "source": "1944", "target": "1951", "attributes": { "weight": 1 } }, { "key": "13879", "source": "1944", "target": "1953", "attributes": { "weight": 1 } }, { "key": "13878", "source": "1944", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13872", "source": "1944", "target": "1939", "attributes": { "weight": 1 } }, { "key": "13876", "source": "1944", "target": "1948", "attributes": { "weight": 1 } }, { "key": "13871", "source": "1944", "target": "1938", "attributes": { "weight": 1 } }, { "key": "29954", "source": "1947", "target": "2910", "attributes": { "weight": 1 } }, { "key": "29953", "source": "1947", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29952", "source": "1947", "target": "1948", "attributes": { "weight": 1 } }, { "key": "13883", "source": "1947", "target": "1941", "attributes": { "weight": 1 } }, { "key": "13885", "source": "1947", "target": "1958", "attributes": { "weight": 2 } }, { "key": "13882", "source": "1947", "target": "1939", "attributes": { "weight": 1 } }, { "key": "13884", "source": "1947", "target": "1944", "attributes": { "weight": 1 } }, { "key": "29958", "source": "1948", "target": "1953", "attributes": { "weight": 1 } }, { "key": "29957", "source": "1948", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29955", "source": "1948", "target": "1943", "attributes": { "weight": 1 } }, { "key": "13886", "source": "1948", "target": "1944", "attributes": { "weight": 1 } }, { "key": "29956", "source": "1948", "target": "1947", "attributes": { "weight": 1 } }, { "key": "29960", "source": "1949", "target": "1937", "attributes": { "weight": 1 } }, { "key": "13887", "source": "1949", "target": "1940", "attributes": { "weight": 1 } }, { "key": "13888", "source": "1950", "target": "1941", "attributes": { "weight": 2 } }, { "key": "13889", "source": "1950", "target": "1952", "attributes": { "weight": 1 } }, { "key": "13892", "source": "1951", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13891", "source": "1951", "target": "1944", "attributes": { "weight": 1 } }, { "key": "13890", "source": "1951", "target": "1940", "attributes": { "weight": 1 } }, { "key": "29968", "source": "1952", "target": "572", "attributes": { "weight": 1 } }, { "key": "13909", "source": "1952", "target": "1957", "attributes": { "weight": 2 } }, { "key": "13897", "source": "1952", "target": "1939", "attributes": { "weight": 2 } }, { "key": "29980", "source": "1952", "target": "2910", "attributes": { "weight": 1 } }, { "key": "29966", "source": "1952", "target": "2908", "attributes": { "weight": 1 } }, { "key": "29965", "source": "1952", "target": "566", "attributes": { "weight": 1 } }, { "key": "13898", "source": "1952", "target": "1940", "attributes": { "weight": 2 } }, { "key": "13906", "source": "1952", "target": "1954", "attributes": { "weight": 2 } }, { "key": "13908", "source": "1952", "target": "1956", "attributes": { "weight": 2 } }, { "key": "29981", "source": "1952", "target": "2911", "attributes": { "weight": 1 } }, { "key": "29964", "source": "1952", "target": "1937", "attributes": { "weight": 1 } }, { "key": "13899", "source": "1952", "target": "1941", "attributes": { "weight": 2 } }, { "key": "29982", "source": "1952", "target": "1958", "attributes": { "weight": 1 } }, { "key": "29971", "source": "1952", "target": "1943", "attributes": { "weight": 1 } }, { "key": "13900", "source": "1952", "target": "1942", "attributes": { "weight": 2 } }, { "key": "13904", "source": "1952", "target": "1951", "attributes": { "weight": 2 } }, { "key": "29970", "source": "1952", "target": "168", "attributes": { "weight": 1 } }, { "key": "13894", "source": "1952", "target": "1166", "attributes": { "weight": 4 } }, { "key": "13896", "source": "1952", "target": "1938", "attributes": { "weight": 2 } }, { "key": "29975", "source": "1952", "target": "93", "attributes": { "weight": 1 } }, { "key": "29973", "source": "1952", "target": "1948", "attributes": { "weight": 1 } }, { "key": "29974", "source": "1952", "target": "2909", "attributes": { "weight": 1 } }, { "key": "13903", "source": "1952", "target": "1950", "attributes": { "weight": 1 } }, { "key": "13905", "source": "1952", "target": "1953", "attributes": { "weight": 2 } }, { "key": "13901", "source": "1952", "target": "1944", "attributes": { "weight": 2 } }, { "key": "29976", "source": "1952", "target": "1280", "attributes": { "weight": 1 } }, { "key": "13895", "source": "1952", "target": "2907", "attributes": { "weight": 1 } }, { "key": "29969", "source": "1952", "target": "2216", "attributes": { "weight": 1 } }, { "key": "29972", "source": "1952", "target": "1947", "attributes": { "weight": 1 } }, { "key": "29977", "source": "1952", "target": "580", "attributes": { "weight": 1 } }, { "key": "29978", "source": "1952", "target": "178", "attributes": { "weight": 1 } }, { "key": "29967", "source": "1952", "target": "1187", "attributes": { "weight": 2 } }, { "key": "29979", "source": "1952", "target": "310", "attributes": { "weight": 2 } }, { "key": "13912", "source": "1953", "target": "1943", "attributes": { "weight": 2 } }, { "key": "13913", "source": "1953", "target": "1944", "attributes": { "weight": 1 } }, { "key": "13910", "source": "1953", "target": "1937", "attributes": { "weight": 2 } }, { "key": "29983", "source": "1953", "target": "1187", "attributes": { "weight": 1 } }, { "key": "29984", "source": "1953", "target": "1948", "attributes": { "weight": 1 } }, { "key": "13911", "source": "1953", "target": "1942", "attributes": { "weight": 2 } }, { "key": "13915", "source": "1953", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13916", "source": "1954", "target": "1941", "attributes": { "weight": 1 } }, { "key": "13918", "source": "1954", "target": "1957", "attributes": { "weight": 1 } }, { "key": "13917", "source": "1954", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13920", "source": "1956", "target": "1941", "attributes": { "weight": 1 } }, { "key": "13921", "source": "1956", "target": "1950", "attributes": { "weight": 1 } }, { "key": "29987", "source": "1956", "target": "1952", "attributes": { "weight": 1 } }, { "key": "13924", "source": "1957", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13925", "source": "1957", "target": "1954", "attributes": { "weight": 1 } }, { "key": "13922", "source": "1957", "target": "1938", "attributes": { "weight": 1 } }, { "key": "13923", "source": "1957", "target": "1941", "attributes": { "weight": 1 } }, { "key": "13926", "source": "1958", "target": "1941", "attributes": { "weight": 2 } }, { "key": "13927", "source": "1958", "target": "1947", "attributes": { "weight": 2 } }, { "key": "29992", "source": "1958", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29993", "source": "1958", "target": "2910", "attributes": { "weight": 1 } }, { "key": "13959", "source": "1960", "target": "180", "attributes": { "weight": 1 } }, { "key": "28421", "source": "1960", "target": "1512", "attributes": { "weight": 1 } }, { "key": "28420", "source": "1960", "target": "579", "attributes": { "weight": 1 } }, { "key": "25012", "source": "1960", "target": "707", "attributes": { "weight": 2 } }, { "key": "25013", "source": "1960", "target": "1240", "attributes": { "weight": 2 } }, { "key": "21450", "source": "1960", "target": "698", "attributes": { "weight": 2 } }, { "key": "28419", "source": "1960", "target": "278", "attributes": { "weight": 2 } }, { "key": "13977", "source": "1961", "target": "168", "attributes": { "weight": 1 } }, { "key": "28498", "source": "1962", "target": "278", "attributes": { "weight": 2 } }, { "key": "19052", "source": "1962", "target": "305", "attributes": { "weight": 2 } }, { "key": "13978", "source": "1962", "target": "180", "attributes": { "weight": 1 } }, { "key": "14906", "source": "1962", "target": "268", "attributes": { "weight": 1 } }, { "key": "28497", "source": "1962", "target": "707", "attributes": { "weight": 1 } }, { "key": "23231", "source": "1962", "target": "1191", "attributes": { "weight": 2 } }, { "key": "14134", "source": "1963", "target": "392", "attributes": { "weight": 1 } }, { "key": "14136", "source": "1963", "target": "1063", "attributes": { "weight": 1 } }, { "key": "14135", "source": "1963", "target": "154", "attributes": { "weight": 1 } }, { "key": "14141", "source": "1964", "target": "392", "attributes": { "weight": 1 } }, { "key": "14263", "source": "1965", "target": "168", "attributes": { "weight": 2 } }, { "key": "29205", "source": "1965", "target": "278", "attributes": { "weight": 2 } }, { "key": "30898", "source": "1965", "target": "3019", "attributes": { "weight": 2 } }, { "key": "24435", "source": "1965", "target": "2507", "attributes": { "weight": 1 } }, { "key": "30590", "source": "1965", "target": "25", "attributes": { "weight": 1 } }, { "key": "30585", "source": "1965", "target": "2500", "attributes": { "weight": 1 } }, { "key": "24999", "source": "1965", "target": "580", "attributes": { "weight": 2 } }, { "key": "23868", "source": "1965", "target": "2461", "attributes": { "weight": 3 } }, { "key": "30587", "source": "1965", "target": "2878", "attributes": { "weight": 1 } }, { "key": "31622", "source": "1965", "target": "681", "attributes": { "weight": 2 } }, { "key": "30586", "source": "1965", "target": "2989", "attributes": { "weight": 1 } }, { "key": "24434", "source": "1965", "target": "1849", "attributes": { "weight": 1 } }, { "key": "23443", "source": "1965", "target": "304", "attributes": { "weight": 3 } }, { "key": "24432", "source": "1965", "target": "2501", "attributes": { "weight": 3 } }, { "key": "23867", "source": "1965", "target": "277", "attributes": { "weight": 2 } }, { "key": "34991", "source": "1965", "target": "3", "attributes": { "weight": 1 } }, { "key": "31624", "source": "1965", "target": "1967", "attributes": { "weight": 2 } }, { "key": "30588", "source": "1965", "target": "2990", "attributes": { "weight": 1 } }, { "key": "31621", "source": "1965", "target": "19", "attributes": { "weight": 1 } }, { "key": "24433", "source": "1965", "target": "18", "attributes": { "weight": 1 } }, { "key": "30897", "source": "1965", "target": "13", "attributes": { "weight": 3 } }, { "key": "31623", "source": "1965", "target": "595", "attributes": { "weight": 1 } }, { "key": "27700", "source": "1966", "target": "178", "attributes": { "weight": 4 } }, { "key": "29579", "source": "1966", "target": "169", "attributes": { "weight": 1 } }, { "key": "21500", "source": "1966", "target": "2285", "attributes": { "weight": 2 } }, { "key": "14284", "source": "1966", "target": "168", "attributes": { "weight": 2 } }, { "key": "29581", "source": "1966", "target": "2873", "attributes": { "weight": 1 } }, { "key": "27666", "source": "1966", "target": "171", "attributes": { "weight": 2 } }, { "key": "29580", "source": "1966", "target": "1542", "attributes": { "weight": 1 } }, { "key": "21499", "source": "1966", "target": "172", "attributes": { "weight": 2 } }, { "key": "29577", "source": "1966", "target": "164", "attributes": { "weight": 2 } }, { "key": "29578", "source": "1966", "target": "830", "attributes": { "weight": 1 } }, { "key": "35089", "source": "1967", "target": "3", "attributes": { "weight": 1 } }, { "key": "31823", "source": "1967", "target": "595", "attributes": { "weight": 1 } }, { "key": "14286", "source": "1967", "target": "168", "attributes": { "weight": 2 } }, { "key": "30627", "source": "1967", "target": "25", "attributes": { "weight": 2 } }, { "key": "25778", "source": "1967", "target": "278", "attributes": { "weight": 5 } }, { "key": "31822", "source": "1967", "target": "582", "attributes": { "weight": 1 } }, { "key": "30965", "source": "1967", "target": "3019", "attributes": { "weight": 2 } }, { "key": "25080", "source": "1967", "target": "580", "attributes": { "weight": 2 } }, { "key": "24467", "source": "1967", "target": "2500", "attributes": { "weight": 1 } }, { "key": "30962", "source": "1967", "target": "19", "attributes": { "weight": 1 } }, { "key": "31821", "source": "1967", "target": "1965", "attributes": { "weight": 2 } }, { "key": "25230", "source": "1967", "target": "1902", "attributes": { "weight": 1 } }, { "key": "30966", "source": "1967", "target": "2461", "attributes": { "weight": 2 } }, { "key": "30964", "source": "1967", "target": "304", "attributes": { "weight": 1 } }, { "key": "30963", "source": "1967", "target": "13", "attributes": { "weight": 2 } }, { "key": "14310", "source": "1968", "target": "319", "attributes": { "weight": 2 } }, { "key": "27895", "source": "1969", "target": "305", "attributes": { "weight": 1 } }, { "key": "22174", "source": "1969", "target": "289", "attributes": { "weight": 1 } }, { "key": "22173", "source": "1969", "target": "262", "attributes": { "weight": 1 } }, { "key": "25957", "source": "1969", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14311", "source": "1969", "target": "259", "attributes": { "weight": 1 } }, { "key": "18998", "source": "1970", "target": "305", "attributes": { "weight": 2 } }, { "key": "14321", "source": "1970", "target": "304", "attributes": { "weight": 1 } }, { "key": "14322", "source": "1971", "target": "259", "attributes": { "weight": 1 } }, { "key": "22883", "source": "1971", "target": "166", "attributes": { "weight": 1 } }, { "key": "22884", "source": "1971", "target": "304", "attributes": { "weight": 1 } }, { "key": "22177", "source": "1971", "target": "262", "attributes": { "weight": 1 } }, { "key": "22178", "source": "1971", "target": "327", "attributes": { "weight": 1 } }, { "key": "27896", "source": "1971", "target": "839", "attributes": { "weight": 1 } }, { "key": "27897", "source": "1971", "target": "322", "attributes": { "weight": 1 } }, { "key": "14324", "source": "1972", "target": "259", "attributes": { "weight": 1 } }, { "key": "22179", "source": "1972", "target": "262", "attributes": { "weight": 1 } }, { "key": "25958", "source": "1972", "target": "2622", "attributes": { "weight": 2 } }, { "key": "25960", "source": "1973", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14333", "source": "1973", "target": "312", "attributes": { "weight": 1 } }, { "key": "22181", "source": "1973", "target": "262", "attributes": { "weight": 1 } }, { "key": "14332", "source": "1973", "target": "259", "attributes": { "weight": 1 } }, { "key": "23266", "source": "1973", "target": "287", "attributes": { "weight": 1 } }, { "key": "22182", "source": "1973", "target": "289", "attributes": { "weight": 1 } }, { "key": "23267", "source": "1973", "target": "839", "attributes": { "weight": 1 } }, { "key": "14350", "source": "1974", "target": "287", "attributes": { "weight": 2 } }, { "key": "14630", "source": "1975", "target": "259", "attributes": { "weight": 1 } }, { "key": "22220", "source": "1975", "target": "289", "attributes": { "weight": 2 } }, { "key": "17996", "source": "1976", "target": "264", "attributes": { "weight": 1 } }, { "key": "19009", "source": "1976", "target": "839", "attributes": { "weight": 2 } }, { "key": "22225", "source": "1976", "target": "326", "attributes": { "weight": 1 } }, { "key": "27996", "source": "1976", "target": "277", "attributes": { "weight": 1 } }, { "key": "22224", "source": "1976", "target": "268", "attributes": { "weight": 1 } }, { "key": "27997", "source": "1976", "target": "287", "attributes": { "weight": 1 } }, { "key": "27998", "source": "1976", "target": "304", "attributes": { "weight": 1 } }, { "key": "17997", "source": "1976", "target": "307", "attributes": { "weight": 1 } }, { "key": "14659", "source": "1976", "target": "259", "attributes": { "weight": 1 } }, { "key": "14661", "source": "1977", "target": "327", "attributes": { "weight": 2 } }, { "key": "14660", "source": "1977", "target": "259", "attributes": { "weight": 1 } }, { "key": "23277", "source": "1977", "target": "839", "attributes": { "weight": 1 } }, { "key": "23276", "source": "1977", "target": "264", "attributes": { "weight": 1 } }, { "key": "25981", "source": "1977", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14663", "source": "1978", "target": "319", "attributes": { "weight": 2 } }, { "key": "28410", "source": "1979", "target": "580", "attributes": { "weight": 1 } }, { "key": "14674", "source": "1979", "target": "277", "attributes": { "weight": 1 } }, { "key": "28411", "source": "1979", "target": "1512", "attributes": { "weight": 1 } }, { "key": "23225", "source": "1979", "target": "1191", "attributes": { "weight": 3 } }, { "key": "25002", "source": "1979", "target": "305", "attributes": { "weight": 2 } }, { "key": "28409", "source": "1979", "target": "579", "attributes": { "weight": 1 } }, { "key": "25000", "source": "1979", "target": "278", "attributes": { "weight": 2 } }, { "key": "24845", "source": "1979", "target": "698", "attributes": { "weight": 2 } }, { "key": "24846", "source": "1979", "target": "2542", "attributes": { "weight": 1 } }, { "key": "25001", "source": "1979", "target": "1240", "attributes": { "weight": 2 } }, { "key": "14689", "source": "1980", "target": "319", "attributes": { "weight": 2 } }, { "key": "14713", "source": "1981", "target": "277", "attributes": { "weight": 1 } }, { "key": "28037", "source": "1981", "target": "268", "attributes": { "weight": 1 } }, { "key": "14719", "source": "1982", "target": "259", "attributes": { "weight": 1 } }, { "key": "14720", "source": "1983", "target": "287", "attributes": { "weight": 2 } }, { "key": "22235", "source": "1984", "target": "268", "attributes": { "weight": 2 } }, { "key": "28054", "source": "1984", "target": "304", "attributes": { "weight": 1 } }, { "key": "25984", "source": "1984", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14724", "source": "1984", "target": "1909", "attributes": { "weight": 1 } }, { "key": "19015", "source": "1984", "target": "839", "attributes": { "weight": 2 } }, { "key": "22236", "source": "1984", "target": "272", "attributes": { "weight": 1 } }, { "key": "28052", "source": "1984", "target": "167", "attributes": { "weight": 1 } }, { "key": "28053", "source": "1984", "target": "168", "attributes": { "weight": 1 } }, { "key": "14725", "source": "1984", "target": "329", "attributes": { "weight": 1 } }, { "key": "17999", "source": "1984", "target": "264", "attributes": { "weight": 1 } }, { "key": "14723", "source": "1984", "target": "259", "attributes": { "weight": 1 } }, { "key": "18000", "source": "1984", "target": "307", "attributes": { "weight": 1 } }, { "key": "28055", "source": "1984", "target": "322", "attributes": { "weight": 1 } }, { "key": "14742", "source": "1985", "target": "259", "attributes": { "weight": 1 } }, { "key": "14743", "source": "1985", "target": "304", "attributes": { "weight": 1 } }, { "key": "14744", "source": "1985", "target": "312", "attributes": { "weight": 1 } }, { "key": "23003", "source": "1985", "target": "326", "attributes": { "weight": 1 } }, { "key": "28072", "source": "1985", "target": "287", "attributes": { "weight": 1 } }, { "key": "28073", "source": "1985", "target": "305", "attributes": { "weight": 1 } }, { "key": "14766", "source": "1986", "target": "319", "attributes": { "weight": 2 } }, { "key": "14780", "source": "1987", "target": "839", "attributes": { "weight": 1 } }, { "key": "14776", "source": "1987", "target": "259", "attributes": { "weight": 1 } }, { "key": "14778", "source": "1987", "target": "264", "attributes": { "weight": 1 } }, { "key": "14781", "source": "1987", "target": "312", "attributes": { "weight": 1 } }, { "key": "14777", "source": "1987", "target": "260", "attributes": { "weight": 1 } }, { "key": "14779", "source": "1987", "target": "167", "attributes": { "weight": 1 } }, { "key": "26028", "source": "1987", "target": "2622", "attributes": { "weight": 2 } }, { "key": "30304", "source": "1988", "target": "2", "attributes": { "weight": 2 } }, { "key": "33809", "source": "1988", "target": "817", "attributes": { "weight": 1 } }, { "key": "31686", "source": "1988", "target": "8", "attributes": { "weight": 2 } }, { "key": "30308", "source": "1988", "target": "793", "attributes": { "weight": 2 } }, { "key": "26108", "source": "1988", "target": "3", "attributes": { "weight": 5 } }, { "key": "14784", "source": "1988", "target": "319", "attributes": { "weight": 2 } }, { "key": "30305", "source": "1988", "target": "789", "attributes": { "weight": 3 } }, { "key": "26110", "source": "1988", "target": "13", "attributes": { "weight": 4 } }, { "key": "30306", "source": "1988", "target": "791", "attributes": { "weight": 2 } }, { "key": "30307", "source": "1988", "target": "681", "attributes": { "weight": 2 } }, { "key": "26109", "source": "1988", "target": "19", "attributes": { "weight": 2 } }, { "key": "26111", "source": "1988", "target": "14", "attributes": { "weight": 3 } }, { "key": "37318", "source": "1988", "target": "7", "attributes": { "weight": 1 } }, { "key": "14900", "source": "1989", "target": "319", "attributes": { "weight": 2 } }, { "key": "28210", "source": "1991", "target": "262", "attributes": { "weight": 1 } }, { "key": "15063", "source": "1991", "target": "287", "attributes": { "weight": 2 } }, { "key": "15082", "source": "1992", "target": "352", "attributes": { "weight": 1 } }, { "key": "15077", "source": "1992", "target": "3", "attributes": { "weight": 1 } }, { "key": "15079", "source": "1992", "target": "6", "attributes": { "weight": 1 } }, { "key": "15078", "source": "1992", "target": "457", "attributes": { "weight": 1 } }, { "key": "15083", "source": "1992", "target": "1994", "attributes": { "weight": 1 } }, { "key": "15080", "source": "1992", "target": "8", "attributes": { "weight": 1 } }, { "key": "15081", "source": "1992", "target": "592", "attributes": { "weight": 1 } }, { "key": "15088", "source": "1993", "target": "3", "attributes": { "weight": 1 } }, { "key": "15094", "source": "1994", "target": "1992", "attributes": { "weight": 1 } }, { "key": "25889", "source": "1995", "target": "1878", "attributes": { "weight": 2 } }, { "key": "29237", "source": "1995", "target": "2837", "attributes": { "weight": 1 } }, { "key": "25890", "source": "1995", "target": "163", "attributes": { "weight": 2 } }, { "key": "17961", "source": "1995", "target": "1380", "attributes": { "weight": 1 } }, { "key": "15100", "source": "1995", "target": "638", "attributes": { "weight": 2 } }, { "key": "29236", "source": "1995", "target": "1550", "attributes": { "weight": 1 } }, { "key": "25204", "source": "1996", "target": "2561", "attributes": { "weight": 1 } }, { "key": "15128", "source": "1996", "target": "171", "attributes": { "weight": 1 } }, { "key": "25056", "source": "1996", "target": "580", "attributes": { "weight": 3 } }, { "key": "25201", "source": "1996", "target": "1178", "attributes": { "weight": 3 } }, { "key": "35380", "source": "1996", "target": "1177", "attributes": { "weight": 1 } }, { "key": "25202", "source": "1996", "target": "1187", "attributes": { "weight": 1 } }, { "key": "25199", "source": "1996", "target": "1143", "attributes": { "weight": 2 } }, { "key": "33155", "source": "1996", "target": "178", "attributes": { "weight": 1 } }, { "key": "25200", "source": "1996", "target": "1146", "attributes": { "weight": 3 } }, { "key": "25055", "source": "1996", "target": "170", "attributes": { "weight": 3 } }, { "key": "25203", "source": "1996", "target": "297", "attributes": { "weight": 3 } }, { "key": "30244", "source": "1996", "target": "2934", "attributes": { "weight": 2 } }, { "key": "25205", "source": "1996", "target": "310", "attributes": { "weight": 4 } }, { "key": "31217", "source": "1997", "target": "59", "attributes": { "weight": 1 } }, { "key": "15133", "source": "1997", "target": "1733", "attributes": { "weight": 2 } }, { "key": "20143", "source": "1998", "target": "221", "attributes": { "weight": 1 } }, { "key": "35963", "source": "1998", "target": "428", "attributes": { "weight": 1 } }, { "key": "20141", "source": "1998", "target": "1756", "attributes": { "weight": 1 } }, { "key": "20145", "source": "1998", "target": "2244", "attributes": { "weight": 1 } }, { "key": "35961", "source": "1998", "target": "440", "attributes": { "weight": 1 } }, { "key": "20148", "source": "1998", "target": "1087", "attributes": { "weight": 1 } }, { "key": "20144", "source": "1998", "target": "1023", "attributes": { "weight": 1 } }, { "key": "35960", "source": "1998", "target": "433", "attributes": { "weight": 1 } }, { "key": "15142", "source": "1998", "target": "74", "attributes": { "weight": 2 } }, { "key": "35964", "source": "1998", "target": "3272", "attributes": { "weight": 1 } }, { "key": "20146", "source": "1998", "target": "450", "attributes": { "weight": 1 } }, { "key": "35962", "source": "1998", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20140", "source": "1998", "target": "429", "attributes": { "weight": 1 } }, { "key": "35965", "source": "1998", "target": "497", "attributes": { "weight": 1 } }, { "key": "20149", "source": "1998", "target": "231", "attributes": { "weight": 1 } }, { "key": "20142", "source": "1998", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20152", "source": "1998", "target": "194", "attributes": { "weight": 1 } }, { "key": "20151", "source": "1998", "target": "489", "attributes": { "weight": 1 } }, { "key": "20147", "source": "1998", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20150", "source": "1998", "target": "480", "attributes": { "weight": 1 } }, { "key": "31323", "source": "1999", "target": "59", "attributes": { "weight": 1 } }, { "key": "15144", "source": "1999", "target": "1733", "attributes": { "weight": 2 } }, { "key": "31359", "source": "2000", "target": "59", "attributes": { "weight": 1 } }, { "key": "15146", "source": "2000", "target": "1733", "attributes": { "weight": 2 } }, { "key": "31360", "source": "2001", "target": "59", "attributes": { "weight": 1 } }, { "key": "23394", "source": "2001", "target": "2092", "attributes": { "weight": 1 } }, { "key": "23393", "source": "2001", "target": "1118", "attributes": { "weight": 1 } }, { "key": "15147", "source": "2001", "target": "1733", "attributes": { "weight": 2 } }, { "key": "15148", "source": "2002", "target": "1733", "attributes": { "weight": 1 } }, { "key": "15153", "source": "2003", "target": "1621", "attributes": { "weight": 1 } }, { "key": "24918", "source": "2004", "target": "164", "attributes": { "weight": 8 } }, { "key": "15154", "source": "2004", "target": "1621", "attributes": { "weight": 2 } }, { "key": "27905", "source": "2004", "target": "287", "attributes": { "weight": 1 } }, { "key": "15155", "source": "2005", "target": "1621", "attributes": { "weight": 1 } }, { "key": "15183", "source": "2006", "target": "1621", "attributes": { "weight": 2 } }, { "key": "15184", "source": "2007", "target": "1621", "attributes": { "weight": 1 } }, { "key": "15185", "source": "2008", "target": "1621", "attributes": { "weight": 1 } }, { "key": "25561", "source": "2009", "target": "830", "attributes": { "weight": 1 } }, { "key": "15186", "source": "2009", "target": "1621", "attributes": { "weight": 1 } }, { "key": "15187", "source": "2010", "target": "1621", "attributes": { "weight": 2 } }, { "key": "15188", "source": "2011", "target": "1621", "attributes": { "weight": 2 } }, { "key": "25562", "source": "2011", "target": "830", "attributes": { "weight": 1 } }, { "key": "15189", "source": "2012", "target": "1621", "attributes": { "weight": 1 } }, { "key": "15191", "source": "2013", "target": "1621", "attributes": { "weight": 1 } }, { "key": "15192", "source": "2014", "target": "1621", "attributes": { "weight": 1 } }, { "key": "15193", "source": "2015", "target": "1621", "attributes": { "weight": 2 } }, { "key": "15194", "source": "2016", "target": "1621", "attributes": { "weight": 2 } }, { "key": "32280", "source": "2016", "target": "164", "attributes": { "weight": 1 } }, { "key": "15195", "source": "2017", "target": "1621", "attributes": { "weight": 1 } }, { "key": "18408", "source": "2018", "target": "169", "attributes": { "weight": 1 } }, { "key": "29582", "source": "2018", "target": "164", "attributes": { "weight": 2 } }, { "key": "15198", "source": "2018", "target": "1621", "attributes": { "weight": 2 } }, { "key": "15197", "source": "2018", "target": "830", "attributes": { "weight": 1 } }, { "key": "15429", "source": "2019", "target": "925", "attributes": { "weight": 1 } }, { "key": "15455", "source": "2020", "target": "925", "attributes": { "weight": 1 } }, { "key": "15454", "source": "2020", "target": "913", "attributes": { "weight": 1 } }, { "key": "18134", "source": "2021", "target": "1197", "attributes": { "weight": 2 } }, { "key": "21855", "source": "2021", "target": "337", "attributes": { "weight": 1 } }, { "key": "15528", "source": "2021", "target": "925", "attributes": { "weight": 1 } }, { "key": "21856", "source": "2021", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21854", "source": "2021", "target": "2293", "attributes": { "weight": 1 } }, { "key": "15529", "source": "2022", "target": "925", "attributes": { "weight": 1 } }, { "key": "15552", "source": "2023", "target": "2039", "attributes": { "weight": 1 } }, { "key": "15553", "source": "2023", "target": "925", "attributes": { "weight": 1 } }, { "key": "15555", "source": "2024", "target": "1329", "attributes": { "weight": 1 } }, { "key": "19523", "source": "2025", "target": "1756", "attributes": { "weight": 1 } }, { "key": "15556", "source": "2025", "target": "479", "attributes": { "weight": 3 } }, { "key": "16731", "source": "2025", "target": "70", "attributes": { "weight": 1 } }, { "key": "19522", "source": "2025", "target": "429", "attributes": { "weight": 1 } }, { "key": "19524", "source": "2025", "target": "221", "attributes": { "weight": 1 } }, { "key": "19527", "source": "2025", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19528", "source": "2025", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19529", "source": "2025", "target": "449", "attributes": { "weight": 1 } }, { "key": "19530", "source": "2025", "target": "450", "attributes": { "weight": 1 } }, { "key": "19525", "source": "2025", "target": "435", "attributes": { "weight": 1 } }, { "key": "19535", "source": "2025", "target": "489", "attributes": { "weight": 1 } }, { "key": "19534", "source": "2025", "target": "231", "attributes": { "weight": 1 } }, { "key": "19536", "source": "2025", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19533", "source": "2025", "target": "2258", "attributes": { "weight": 1 } }, { "key": "28929", "source": "2025", "target": "2042", "attributes": { "weight": 1 } }, { "key": "19531", "source": "2025", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19532", "source": "2025", "target": "1836", "attributes": { "weight": 1 } }, { "key": "19526", "source": "2025", "target": "1023", "attributes": { "weight": 1 } }, { "key": "15577", "source": "2026", "target": "1329", "attributes": { "weight": 1 } }, { "key": "15583", "source": "2027", "target": "913", "attributes": { "weight": 1 } }, { "key": "15594", "source": "2028", "target": "1329", "attributes": { "weight": 1 } }, { "key": "15595", "source": "2029", "target": "1329", "attributes": { "weight": 1 } }, { "key": "33981", "source": "2029", "target": "1197", "attributes": { "weight": 1 } }, { "key": "33988", "source": "2030", "target": "1197", "attributes": { "weight": 1 } }, { "key": "15598", "source": "2030", "target": "1329", "attributes": { "weight": 1 } }, { "key": "21877", "source": "2030", "target": "337", "attributes": { "weight": 1 } }, { "key": "15646", "source": "2031", "target": "925", "attributes": { "weight": 1 } }, { "key": "34068", "source": "2031", "target": "1197", "attributes": { "weight": 1 } }, { "key": "21881", "source": "2032", "target": "337", "attributes": { "weight": 1 } }, { "key": "34069", "source": "2032", "target": "123", "attributes": { "weight": 1 } }, { "key": "15648", "source": "2032", "target": "925", "attributes": { "weight": 1 } }, { "key": "21880", "source": "2032", "target": "2293", "attributes": { "weight": 1 } }, { "key": "15762", "source": "2033", "target": "1329", "attributes": { "weight": 1 } }, { "key": "15765", "source": "2034", "target": "913", "attributes": { "weight": 1 } }, { "key": "15791", "source": "2035", "target": "2048", "attributes": { "weight": 1 } }, { "key": "34177", "source": "2035", "target": "1197", "attributes": { "weight": 1 } }, { "key": "15792", "source": "2035", "target": "1329", "attributes": { "weight": 1 } }, { "key": "15823", "source": "2036", "target": "925", "attributes": { "weight": 1 } }, { "key": "21940", "source": "2037", "target": "337", "attributes": { "weight": 1 } }, { "key": "15858", "source": "2037", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34442", "source": "2037", "target": "1197", "attributes": { "weight": 1 } }, { "key": "21939", "source": "2037", "target": "2293", "attributes": { "weight": 1 } }, { "key": "15860", "source": "2038", "target": "2047", "attributes": { "weight": 1 } }, { "key": "15859", "source": "2038", "target": "925", "attributes": { "weight": 1 } }, { "key": "15873", "source": "2039", "target": "925", "attributes": { "weight": 1 } }, { "key": "15872", "source": "2039", "target": "2023", "attributes": { "weight": 1 } }, { "key": "15874", "source": "2040", "target": "925", "attributes": { "weight": 1 } }, { "key": "34448", "source": "2040", "target": "1197", "attributes": { "weight": 1 } }, { "key": "15876", "source": "2041", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34451", "source": "2041", "target": "1197", "attributes": { "weight": 1 } }, { "key": "28939", "source": "2042", "target": "479", "attributes": { "weight": 2 } }, { "key": "15899", "source": "2042", "target": "2025", "attributes": { "weight": 2 } }, { "key": "35978", "source": "2042", "target": "2258", "attributes": { "weight": 1 } }, { "key": "29038", "source": "2042", "target": "495", "attributes": { "weight": 1 } }, { "key": "34507", "source": "2043", "target": "1197", "attributes": { "weight": 1 } }, { "key": "15963", "source": "2043", "target": "925", "attributes": { "weight": 1 } }, { "key": "34508", "source": "2043", "target": "123", "attributes": { "weight": 1 } }, { "key": "22003", "source": "2044", "target": "337", "attributes": { "weight": 1 } }, { "key": "22002", "source": "2044", "target": "2293", "attributes": { "weight": 1 } }, { "key": "18258", "source": "2044", "target": "1197", "attributes": { "weight": 2 } }, { "key": "16030", "source": "2044", "target": "925", "attributes": { "weight": 1 } }, { "key": "16188", "source": "2045", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16195", "source": "2046", "target": "913", "attributes": { "weight": 1 } }, { "key": "16225", "source": "2047", "target": "925", "attributes": { "weight": 1 } }, { "key": "16224", "source": "2047", "target": "2038", "attributes": { "weight": 1 } }, { "key": "16231", "source": "2048", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34687", "source": "2048", "target": "1197", "attributes": { "weight": 1 } }, { "key": "16230", "source": "2048", "target": "2035", "attributes": { "weight": 1 } }, { "key": "16276", "source": "2049", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34777", "source": "2049", "target": "1197", "attributes": { "weight": 1 } }, { "key": "16389", "source": "2050", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16394", "source": "2051", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16419", "source": "2052", "target": "39", "attributes": { "weight": 1 } }, { "key": "16428", "source": "2053", "target": "2052", "attributes": { "weight": 1 } }, { "key": "16429", "source": "2053", "target": "39", "attributes": { "weight": 1 } }, { "key": "16431", "source": "2054", "target": "1387", "attributes": { "weight": 2 } }, { "key": "16432", "source": "2054", "target": "2063", "attributes": { "weight": 1 } }, { "key": "16433", "source": "2055", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16434", "source": "2055", "target": "2066", "attributes": { "weight": 1 } }, { "key": "16468", "source": "2056", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16470", "source": "2057", "target": "2065", "attributes": { "weight": 1 } }, { "key": "16469", "source": "2057", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16471", "source": "2058", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16472", "source": "2059", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16473", "source": "2059", "target": "2061", "attributes": { "weight": 1 } }, { "key": "16474", "source": "2059", "target": "2066", "attributes": { "weight": 1 } }, { "key": "16479", "source": "2060", "target": "2066", "attributes": { "weight": 1 } }, { "key": "16480", "source": "2060", "target": "1816", "attributes": { "weight": 1 } }, { "key": "16478", "source": "2060", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16483", "source": "2061", "target": "2066", "attributes": { "weight": 1 } }, { "key": "16482", "source": "2061", "target": "2059", "attributes": { "weight": 1 } }, { "key": "16481", "source": "2061", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16484", "source": "2062", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16485", "source": "2062", "target": "2066", "attributes": { "weight": 1 } }, { "key": "16486", "source": "2063", "target": "2054", "attributes": { "weight": 1 } }, { "key": "16487", "source": "2063", "target": "1387", "attributes": { "weight": 2 } }, { "key": "16488", "source": "2064", "target": "1387", "attributes": { "weight": 1 } }, { "key": "32937", "source": "2064", "target": "470", "attributes": { "weight": 1 } }, { "key": "16489", "source": "2064", "target": "1710", "attributes": { "weight": 1 } }, { "key": "16490", "source": "2065", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16491", "source": "2065", "target": "2057", "attributes": { "weight": 1 } }, { "key": "16496", "source": "2066", "target": "2061", "attributes": { "weight": 1 } }, { "key": "16497", "source": "2066", "target": "2062", "attributes": { "weight": 1 } }, { "key": "16494", "source": "2066", "target": "2059", "attributes": { "weight": 1 } }, { "key": "16495", "source": "2066", "target": "2060", "attributes": { "weight": 1 } }, { "key": "16492", "source": "2066", "target": "2055", "attributes": { "weight": 1 } }, { "key": "16493", "source": "2066", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16518", "source": "2067", "target": "2077", "attributes": { "weight": 1 } }, { "key": "22271", "source": "2067", "target": "794", "attributes": { "weight": 1 } }, { "key": "34929", "source": "2067", "target": "352", "attributes": { "weight": 1 } }, { "key": "17101", "source": "2067", "target": "8", "attributes": { "weight": 1 } }, { "key": "16519", "source": "2067", "target": "1780", "attributes": { "weight": 2 } }, { "key": "16516", "source": "2067", "target": "787", "attributes": { "weight": 2 } }, { "key": "16517", "source": "2067", "target": "3", "attributes": { "weight": 1 } }, { "key": "30828", "source": "2067", "target": "13", "attributes": { "weight": 1 } }, { "key": "16521", "source": "2068", "target": "1780", "attributes": { "weight": 1 } }, { "key": "17102", "source": "2068", "target": "3", "attributes": { "weight": 1 } }, { "key": "17103", "source": "2068", "target": "14", "attributes": { "weight": 1 } }, { "key": "16520", "source": "2068", "target": "787", "attributes": { "weight": 1 } }, { "key": "16524", "source": "2069", "target": "787", "attributes": { "weight": 1 } }, { "key": "25605", "source": "2069", "target": "1780", "attributes": { "weight": 1 } }, { "key": "25610", "source": "2070", "target": "220", "attributes": { "weight": 1 } }, { "key": "16526", "source": "2070", "target": "2077", "attributes": { "weight": 2 } }, { "key": "37428", "source": "2070", "target": "2080", "attributes": { "weight": 1 } }, { "key": "25611", "source": "2070", "target": "791", "attributes": { "weight": 1 } }, { "key": "34974", "source": "2070", "target": "352", "attributes": { "weight": 1 } }, { "key": "16527", "source": "2070", "target": "1780", "attributes": { "weight": 2 } }, { "key": "25609", "source": "2070", "target": "787", "attributes": { "weight": 2 } }, { "key": "16531", "source": "2071", "target": "2079", "attributes": { "weight": 1 } }, { "key": "31619", "source": "2071", "target": "8", "attributes": { "weight": 1 } }, { "key": "34990", "source": "2071", "target": "3", "attributes": { "weight": 1 } }, { "key": "16530", "source": "2071", "target": "2074", "attributes": { "weight": 1 } }, { "key": "16529", "source": "2071", "target": "787", "attributes": { "weight": 2 } }, { "key": "31620", "source": "2071", "target": "595", "attributes": { "weight": 1 } }, { "key": "34993", "source": "2072", "target": "3", "attributes": { "weight": 1 } }, { "key": "16532", "source": "2072", "target": "787", "attributes": { "weight": 1 } }, { "key": "25622", "source": "2073", "target": "1780", "attributes": { "weight": 1 } }, { "key": "16534", "source": "2073", "target": "787", "attributes": { "weight": 1 } }, { "key": "34994", "source": "2073", "target": "352", "attributes": { "weight": 1 } }, { "key": "25626", "source": "2074", "target": "787", "attributes": { "weight": 1 } }, { "key": "16535", "source": "2074", "target": "2071", "attributes": { "weight": 1 } }, { "key": "16536", "source": "2074", "target": "2077", "attributes": { "weight": 1 } }, { "key": "25627", "source": "2074", "target": "1780", "attributes": { "weight": 1 } }, { "key": "16541", "source": "2075", "target": "2079", "attributes": { "weight": 1 } }, { "key": "16540", "source": "2075", "target": "1780", "attributes": { "weight": 1 } }, { "key": "16539", "source": "2075", "target": "787", "attributes": { "weight": 1 } }, { "key": "16543", "source": "2076", "target": "1780", "attributes": { "weight": 1 } }, { "key": "16542", "source": "2076", "target": "787", "attributes": { "weight": 1 } }, { "key": "16545", "source": "2077", "target": "787", "attributes": { "weight": 2 } }, { "key": "16553", "source": "2077", "target": "2074", "attributes": { "weight": 1 } }, { "key": "16551", "source": "2077", "target": "5", "attributes": { "weight": 2 } }, { "key": "16547", "source": "2077", "target": "2067", "attributes": { "weight": 1 } }, { "key": "16544", "source": "2077", "target": "810", "attributes": { "weight": 1 } }, { "key": "25636", "source": "2077", "target": "791", "attributes": { "weight": 1 } }, { "key": "16552", "source": "2077", "target": "682", "attributes": { "weight": 1 } }, { "key": "16549", "source": "2077", "target": "693", "attributes": { "weight": 1 } }, { "key": "16555", "source": "2077", "target": "9", "attributes": { "weight": 1 } }, { "key": "16546", "source": "2077", "target": "1", "attributes": { "weight": 1 } }, { "key": "16557", "source": "2077", "target": "1780", "attributes": { "weight": 2 } }, { "key": "16550", "source": "2077", "target": "2070", "attributes": { "weight": 2 } }, { "key": "16554", "source": "2077", "target": "819", "attributes": { "weight": 1 } }, { "key": "35023", "source": "2077", "target": "352", "attributes": { "weight": 1 } }, { "key": "16558", "source": "2077", "target": "2080", "attributes": { "weight": 1 } }, { "key": "16548", "source": "2077", "target": "3", "attributes": { "weight": 1 } }, { "key": "16556", "source": "2077", "target": "673", "attributes": { "weight": 1 } }, { "key": "30952", "source": "2079", "target": "3", "attributes": { "weight": 1 } }, { "key": "16572", "source": "2079", "target": "2075", "attributes": { "weight": 1 } }, { "key": "16571", "source": "2079", "target": "2071", "attributes": { "weight": 1 } }, { "key": "16574", "source": "2079", "target": "1780", "attributes": { "weight": 2 } }, { "key": "16570", "source": "2079", "target": "787", "attributes": { "weight": 2 } }, { "key": "16575", "source": "2080", "target": "2077", "attributes": { "weight": 1 } }, { "key": "37431", "source": "2080", "target": "1780", "attributes": { "weight": 1 } }, { "key": "37430", "source": "2080", "target": "2070", "attributes": { "weight": 1 } }, { "key": "16583", "source": "2081", "target": "2083", "attributes": { "weight": 1 } }, { "key": "36341", "source": "2081", "target": "434", "attributes": { "weight": 1 } }, { "key": "16885", "source": "2081", "target": "1354", "attributes": { "weight": 1 } }, { "key": "16886", "source": "2081", "target": "70", "attributes": { "weight": 2 } }, { "key": "36343", "source": "2081", "target": "1863", "attributes": { "weight": 1 } }, { "key": "36342", "source": "2081", "target": "674", "attributes": { "weight": 1 } }, { "key": "16585", "source": "2082", "target": "674", "attributes": { "weight": 1 } }, { "key": "16587", "source": "2083", "target": "70", "attributes": { "weight": 1 } }, { "key": "16586", "source": "2083", "target": "2081", "attributes": { "weight": 1 } }, { "key": "16588", "source": "2083", "target": "1337", "attributes": { "weight": 1 } }, { "key": "16634", "source": "2084", "target": "70", "attributes": { "weight": 2 } }, { "key": "36245", "source": "2084", "target": "3302", "attributes": { "weight": 1 } }, { "key": "36246", "source": "2084", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36242", "source": "2084", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36243", "source": "2084", "target": "2089", "attributes": { "weight": 1 } }, { "key": "36244", "source": "2084", "target": "3288", "attributes": { "weight": 1 } }, { "key": "16635", "source": "2084", "target": "596", "attributes": { "weight": 3 } }, { "key": "16696", "source": "2085", "target": "70", "attributes": { "weight": 1 } }, { "key": "16727", "source": "2086", "target": "674", "attributes": { "weight": 1 } }, { "key": "18317", "source": "2086", "target": "8", "attributes": { "weight": 2 } }, { "key": "16729", "source": "2086", "target": "70", "attributes": { "weight": 1 } }, { "key": "16728", "source": "2086", "target": "457", "attributes": { "weight": 1 } }, { "key": "18319", "source": "2086", "target": "595", "attributes": { "weight": 1 } }, { "key": "35831", "source": "2086", "target": "2258", "attributes": { "weight": 1 } }, { "key": "18320", "source": "2086", "target": "2208", "attributes": { "weight": 1 } }, { "key": "17148", "source": "2086", "target": "449", "attributes": { "weight": 1 } }, { "key": "18318", "source": "2086", "target": "1092", "attributes": { "weight": 1 } }, { "key": "23304", "source": "2086", "target": "223", "attributes": { "weight": 1 } }, { "key": "30822", "source": "2086", "target": "3", "attributes": { "weight": 1 } }, { "key": "36276", "source": "2087", "target": "3289", "attributes": { "weight": 1 } }, { "key": "36272", "source": "2087", "target": "3278", "attributes": { "weight": 1 } }, { "key": "36275", "source": "2087", "target": "1862", "attributes": { "weight": 1 } }, { "key": "16730", "source": "2087", "target": "70", "attributes": { "weight": 2 } }, { "key": "36281", "source": "2087", "target": "3300", "attributes": { "weight": 1 } }, { "key": "31256", "source": "2087", "target": "1389", "attributes": { "weight": 2 } }, { "key": "36280", "source": "2087", "target": "3295", "attributes": { "weight": 1 } }, { "key": "36274", "source": "2087", "target": "3280", "attributes": { "weight": 1 } }, { "key": "31255", "source": "2087", "target": "596", "attributes": { "weight": 2 } }, { "key": "36279", "source": "2087", "target": "3293", "attributes": { "weight": 1 } }, { "key": "36283", "source": "2087", "target": "3304", "attributes": { "weight": 1 } }, { "key": "36273", "source": "2087", "target": "434", "attributes": { "weight": 1 } }, { "key": "36282", "source": "2087", "target": "3303", "attributes": { "weight": 1 } }, { "key": "36278", "source": "2087", "target": "3292", "attributes": { "weight": 1 } }, { "key": "36277", "source": "2087", "target": "3291", "attributes": { "weight": 1 } }, { "key": "20155", "source": "2088", "target": "438", "attributes": { "weight": 1 } }, { "key": "31314", "source": "2088", "target": "674", "attributes": { "weight": 2 } }, { "key": "35967", "source": "2088", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20158", "source": "2088", "target": "194", "attributes": { "weight": 1 } }, { "key": "16813", "source": "2088", "target": "70", "attributes": { "weight": 2 } }, { "key": "20153", "source": "2088", "target": "429", "attributes": { "weight": 1 } }, { "key": "20157", "source": "2088", "target": "489", "attributes": { "weight": 1 } }, { "key": "20156", "source": "2088", "target": "480", "attributes": { "weight": 1 } }, { "key": "36301", "source": "2088", "target": "434", "attributes": { "weight": 1 } }, { "key": "20154", "source": "2088", "target": "1354", "attributes": { "weight": 1 } }, { "key": "36318", "source": "2089", "target": "596", "attributes": { "weight": 1 } }, { "key": "16832", "source": "2089", "target": "70", "attributes": { "weight": 2 } }, { "key": "36319", "source": "2089", "target": "3305", "attributes": { "weight": 1 } }, { "key": "36317", "source": "2089", "target": "3288", "attributes": { "weight": 1 } }, { "key": "36320", "source": "2089", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36316", "source": "2089", "target": "2084", "attributes": { "weight": 1 } }, { "key": "23385", "source": "2090", "target": "60", "attributes": { "weight": 1 } }, { "key": "16839", "source": "2090", "target": "59", "attributes": { "weight": 2 } }, { "key": "16840", "source": "2091", "target": "674", "attributes": { "weight": 1 } }, { "key": "23387", "source": "2092", "target": "2001", "attributes": { "weight": 1 } }, { "key": "23388", "source": "2092", "target": "1752", "attributes": { "weight": 1 } }, { "key": "16869", "source": "2092", "target": "59", "attributes": { "weight": 2 } }, { "key": "23386", "source": "2092", "target": "60", "attributes": { "weight": 1 } }, { "key": "35695", "source": "2092", "target": "3248", "attributes": { "weight": 1 } }, { "key": "16876", "source": "2093", "target": "70", "attributes": { "weight": 2 } }, { "key": "31333", "source": "2093", "target": "596", "attributes": { "weight": 1 } }, { "key": "20490", "source": "2094", "target": "2258", "attributes": { "weight": 1 } }, { "key": "33563", "source": "2094", "target": "135", "attributes": { "weight": 1 } }, { "key": "20484", "source": "2094", "target": "435", "attributes": { "weight": 1 } }, { "key": "20492", "source": "2094", "target": "2267", "attributes": { "weight": 1 } }, { "key": "20489", "source": "2094", "target": "1247", "attributes": { "weight": 2 } }, { "key": "27128", "source": "2094", "target": "2645", "attributes": { "weight": 1 } }, { "key": "16881", "source": "2094", "target": "70", "attributes": { "weight": 1 } }, { "key": "24158", "source": "2094", "target": "471", "attributes": { "weight": 1 } }, { "key": "20485", "source": "2094", "target": "2106", "attributes": { "weight": 1 } }, { "key": "20486", "source": "2094", "target": "449", "attributes": { "weight": 1 } }, { "key": "20491", "source": "2094", "target": "472", "attributes": { "weight": 2 } }, { "key": "20493", "source": "2094", "target": "489", "attributes": { "weight": 1 } }, { "key": "33562", "source": "2094", "target": "51", "attributes": { "weight": 1 } }, { "key": "27130", "source": "2094", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20488", "source": "2094", "target": "1832", "attributes": { "weight": 2 } }, { "key": "27129", "source": "2094", "target": "450", "attributes": { "weight": 1 } }, { "key": "20487", "source": "2094", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20949", "source": "2095", "target": "194", "attributes": { "weight": 1 } }, { "key": "20919", "source": "2095", "target": "222", "attributes": { "weight": 1 } }, { "key": "20942", "source": "2095", "target": "489", "attributes": { "weight": 1 } }, { "key": "20924", "source": "2095", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20934", "source": "2095", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20929", "source": "2095", "target": "462", "attributes": { "weight": 1 } }, { "key": "20928", "source": "2095", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20945", "source": "2095", "target": "235", "attributes": { "weight": 1 } }, { "key": "20923", "source": "2095", "target": "1070", "attributes": { "weight": 1 } }, { "key": "16995", "source": "2095", "target": "1354", "attributes": { "weight": 2 } }, { "key": "20948", "source": "2095", "target": "498", "attributes": { "weight": 1 } }, { "key": "20922", "source": "2095", "target": "443", "attributes": { "weight": 1 } }, { "key": "20927", "source": "2095", "target": "450", "attributes": { "weight": 1 } }, { "key": "20937", "source": "2095", "target": "481", "attributes": { "weight": 1 } }, { "key": "20947", "source": "2095", "target": "2276", "attributes": { "weight": 1 } }, { "key": "20925", "source": "2095", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20917", "source": "2095", "target": "130", "attributes": { "weight": 1 } }, { "key": "20921", "source": "2095", "target": "2242", "attributes": { "weight": 1 } }, { "key": "20936", "source": "2095", "target": "478", "attributes": { "weight": 1 } }, { "key": "20931", "source": "2095", "target": "2254", "attributes": { "weight": 1 } }, { "key": "20939", "source": "2095", "target": "695", "attributes": { "weight": 1 } }, { "key": "20932", "source": "2095", "target": "471", "attributes": { "weight": 1 } }, { "key": "20926", "source": "2095", "target": "449", "attributes": { "weight": 1 } }, { "key": "20930", "source": "2095", "target": "464", "attributes": { "weight": 1 } }, { "key": "20933", "source": "2095", "target": "472", "attributes": { "weight": 1 } }, { "key": "20946", "source": "2095", "target": "1390", "attributes": { "weight": 1 } }, { "key": "20940", "source": "2095", "target": "2270", "attributes": { "weight": 1 } }, { "key": "20935", "source": "2095", "target": "231", "attributes": { "weight": 1 } }, { "key": "20938", "source": "2095", "target": "483", "attributes": { "weight": 1 } }, { "key": "20941", "source": "2095", "target": "487", "attributes": { "weight": 1 } }, { "key": "20944", "source": "2095", "target": "1750", "attributes": { "weight": 1 } }, { "key": "20943", "source": "2095", "target": "672", "attributes": { "weight": 1 } }, { "key": "20920", "source": "2095", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20918", "source": "2095", "target": "221", "attributes": { "weight": 1 } }, { "key": "16994", "source": "2095", "target": "429", "attributes": { "weight": 2 } }, { "key": "21180", "source": "2096", "target": "1836", "attributes": { "weight": 1 } }, { "key": "36123", "source": "2096", "target": "1337", "attributes": { "weight": 1 } }, { "key": "17018", "source": "2096", "target": "70", "attributes": { "weight": 1 } }, { "key": "36124", "source": "2096", "target": "73", "attributes": { "weight": 1 } }, { "key": "26928", "source": "2096", "target": "497", "attributes": { "weight": 1 } }, { "key": "21181", "source": "2096", "target": "489", "attributes": { "weight": 1 } }, { "key": "21179", "source": "2096", "target": "449", "attributes": { "weight": 1 } }, { "key": "17085", "source": "2097", "target": "1559", "attributes": { "weight": 1 } }, { "key": "27781", "source": "2098", "target": "1906", "attributes": { "weight": 1 } }, { "key": "17093", "source": "2098", "target": "1926", "attributes": { "weight": 2 } }, { "key": "27782", "source": "2098", "target": "303", "attributes": { "weight": 1 } }, { "key": "17094", "source": "2099", "target": "1926", "attributes": { "weight": 2 } }, { "key": "17095", "source": "2100", "target": "1926", "attributes": { "weight": 1 } }, { "key": "17100", "source": "2101", "target": "1926", "attributes": { "weight": 1 } }, { "key": "17108", "source": "2102", "target": "13", "attributes": { "weight": 1 } }, { "key": "17109", "source": "2102", "target": "2103", "attributes": { "weight": 1 } }, { "key": "17107", "source": "2102", "target": "2068", "attributes": { "weight": 1 } }, { "key": "17106", "source": "2102", "target": "2067", "attributes": { "weight": 1 } }, { "key": "17113", "source": "2103", "target": "2102", "attributes": { "weight": 1 } }, { "key": "30570", "source": "2103", "target": "792", "attributes": { "weight": 2 } }, { "key": "30569", "source": "2103", "target": "788", "attributes": { "weight": 2 } }, { "key": "30571", "source": "2103", "target": "8", "attributes": { "weight": 1 } }, { "key": "31693", "source": "2103", "target": "595", "attributes": { "weight": 1 } }, { "key": "30568", "source": "2103", "target": "3", "attributes": { "weight": 1 } }, { "key": "17118", "source": "2104", "target": "14", "attributes": { "weight": 2 } }, { "key": "17116", "source": "2104", "target": "2067", "attributes": { "weight": 1 } }, { "key": "17117", "source": "2104", "target": "3", "attributes": { "weight": 3 } }, { "key": "33831", "source": "2104", "target": "8", "attributes": { "weight": 1 } }, { "key": "27008", "source": "2105", "target": "451", "attributes": { "weight": 1 } }, { "key": "27004", "source": "2105", "target": "1353", "attributes": { "weight": 1 } }, { "key": "27010", "source": "2105", "target": "56", "attributes": { "weight": 1 } }, { "key": "35356", "source": "2105", "target": "1811", "attributes": { "weight": 1 } }, { "key": "27009", "source": "2105", "target": "231", "attributes": { "weight": 1 } }, { "key": "27006", "source": "2105", "target": "1354", "attributes": { "weight": 1 } }, { "key": "17144", "source": "2105", "target": "449", "attributes": { "weight": 1 } }, { "key": "27007", "source": "2105", "target": "860", "attributes": { "weight": 1 } }, { "key": "27005", "source": "2105", "target": "429", "attributes": { "weight": 1 } }, { "key": "19439", "source": "2106", "target": "480", "attributes": { "weight": 1 } }, { "key": "19426", "source": "2106", "target": "1353", "attributes": { "weight": 1 } }, { "key": "19430", "source": "2106", "target": "1070", "attributes": { "weight": 1 } }, { "key": "17147", "source": "2106", "target": "449", "attributes": { "weight": 1 } }, { "key": "19428", "source": "2106", "target": "1354", "attributes": { "weight": 1 } }, { "key": "19434", "source": "2106", "target": "459", "attributes": { "weight": 1 } }, { "key": "19433", "source": "2106", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19441", "source": "2106", "target": "56", "attributes": { "weight": 2 } }, { "key": "19427", "source": "2106", "target": "429", "attributes": { "weight": 1 } }, { "key": "19436", "source": "2106", "target": "2094", "attributes": { "weight": 1 } }, { "key": "19435", "source": "2106", "target": "54", "attributes": { "weight": 1 } }, { "key": "19440", "source": "2106", "target": "483", "attributes": { "weight": 1 } }, { "key": "19437", "source": "2106", "target": "1367", "attributes": { "weight": 1 } }, { "key": "19429", "source": "2106", "target": "2243", "attributes": { "weight": 1 } }, { "key": "19432", "source": "2106", "target": "1358", "attributes": { "weight": 1 } }, { "key": "19438", "source": "2106", "target": "231", "attributes": { "weight": 2 } }, { "key": "19431", "source": "2106", "target": "451", "attributes": { "weight": 1 } }, { "key": "20234", "source": "2107", "target": "489", "attributes": { "weight": 1 } }, { "key": "20232", "source": "2107", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20231", "source": "2107", "target": "451", "attributes": { "weight": 1 } }, { "key": "20233", "source": "2107", "target": "2258", "attributes": { "weight": 1 } }, { "key": "17252", "source": "2107", "target": "449", "attributes": { "weight": 1 } }, { "key": "20230", "source": "2107", "target": "1354", "attributes": { "weight": 1 } }, { "key": "17291", "source": "2108", "target": "468", "attributes": { "weight": 1 } }, { "key": "17282", "source": "2108", "target": "130", "attributes": { "weight": 1 } }, { "key": "20690", "source": "2108", "target": "1836", "attributes": { "weight": 1 } }, { "key": "17279", "source": "2108", "target": "429", "attributes": { "weight": 2 } }, { "key": "17280", "source": "2108", "target": "1354", "attributes": { "weight": 1 } }, { "key": "17289", "source": "2108", "target": "1219", "attributes": { "weight": 1 } }, { "key": "20687", "source": "2108", "target": "1360", "attributes": { "weight": 1 } }, { "key": "17295", "source": "2108", "target": "474", "attributes": { "weight": 1 } }, { "key": "17285", "source": "2108", "target": "223", "attributes": { "weight": 1 } }, { "key": "17290", "source": "2108", "target": "1362", "attributes": { "weight": 1 } }, { "key": "20689", "source": "2108", "target": "54", "attributes": { "weight": 1 } }, { "key": "17287", "source": "2108", "target": "450", "attributes": { "weight": 1 } }, { "key": "17281", "source": "2108", "target": "220", "attributes": { "weight": 1 } }, { "key": "20686", "source": "2108", "target": "1358", "attributes": { "weight": 1 } }, { "key": "17278", "source": "2108", "target": "1353", "attributes": { "weight": 2 } }, { "key": "20688", "source": "2108", "target": "135", "attributes": { "weight": 1 } }, { "key": "17284", "source": "2108", "target": "51", "attributes": { "weight": 1 } }, { "key": "17294", "source": "2108", "target": "189", "attributes": { "weight": 1 } }, { "key": "20693", "source": "2108", "target": "1390", "attributes": { "weight": 1 } }, { "key": "17283", "source": "2108", "target": "435", "attributes": { "weight": 1 } }, { "key": "17296", "source": "2108", "target": "1282", "attributes": { "weight": 1 } }, { "key": "17288", "source": "2108", "target": "451", "attributes": { "weight": 2 } }, { "key": "17297", "source": "2108", "target": "231", "attributes": { "weight": 2 } }, { "key": "17292", "source": "2108", "target": "470", "attributes": { "weight": 1 } }, { "key": "20692", "source": "2108", "target": "56", "attributes": { "weight": 1 } }, { "key": "20694", "source": "2108", "target": "498", "attributes": { "weight": 1 } }, { "key": "20691", "source": "2108", "target": "489", "attributes": { "weight": 1 } }, { "key": "20685", "source": "2108", "target": "1832", "attributes": { "weight": 1 } }, { "key": "17286", "source": "2108", "target": "442", "attributes": { "weight": 1 } }, { "key": "17293", "source": "2108", "target": "472", "attributes": { "weight": 1 } }, { "key": "24224", "source": "2109", "target": "442", "attributes": { "weight": 2 } }, { "key": "24222", "source": "2109", "target": "437", "attributes": { "weight": 2 } }, { "key": "17304", "source": "2109", "target": "449", "attributes": { "weight": 1 } }, { "key": "33646", "source": "2109", "target": "135", "attributes": { "weight": 1 } }, { "key": "20958", "source": "2109", "target": "429", "attributes": { "weight": 3 } }, { "key": "33645", "source": "2109", "target": "52", "attributes": { "weight": 1 } }, { "key": "35215", "source": "2109", "target": "459", "attributes": { "weight": 1 } }, { "key": "33644", "source": "2109", "target": "425", "attributes": { "weight": 1 } }, { "key": "20957", "source": "2109", "target": "1353", "attributes": { "weight": 2 } }, { "key": "20960", "source": "2109", "target": "130", "attributes": { "weight": 3 } }, { "key": "20968", "source": "2109", "target": "56", "attributes": { "weight": 2 } }, { "key": "24225", "source": "2109", "target": "1711", "attributes": { "weight": 1 } }, { "key": "20961", "source": "2109", "target": "221", "attributes": { "weight": 1 } }, { "key": "24223", "source": "2109", "target": "223", "attributes": { "weight": 2 } }, { "key": "20965", "source": "2109", "target": "231", "attributes": { "weight": 3 } }, { "key": "20969", "source": "2109", "target": "1375", "attributes": { "weight": 1 } }, { "key": "20964", "source": "2109", "target": "471", "attributes": { "weight": 2 } }, { "key": "20962", "source": "2109", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20967", "source": "2109", "target": "1374", "attributes": { "weight": 1 } }, { "key": "20966", "source": "2109", "target": "489", "attributes": { "weight": 1 } }, { "key": "20963", "source": "2109", "target": "54", "attributes": { "weight": 3 } }, { "key": "20959", "source": "2109", "target": "1354", "attributes": { "weight": 1 } }, { "key": "33657", "source": "2110", "target": "231", "attributes": { "weight": 1 } }, { "key": "33655", "source": "2110", "target": "1362", "attributes": { "weight": 1 } }, { "key": "33647", "source": "2110", "target": "429", "attributes": { "weight": 1 } }, { "key": "33648", "source": "2110", "target": "1354", "attributes": { "weight": 1 } }, { "key": "33652", "source": "2110", "target": "451", "attributes": { "weight": 1 } }, { "key": "33659", "source": "2110", "target": "494", "attributes": { "weight": 1 } }, { "key": "33656", "source": "2110", "target": "464", "attributes": { "weight": 1 } }, { "key": "33651", "source": "2110", "target": "450", "attributes": { "weight": 1 } }, { "key": "33654", "source": "2110", "target": "459", "attributes": { "weight": 1 } }, { "key": "33653", "source": "2110", "target": "52", "attributes": { "weight": 1 } }, { "key": "17305", "source": "2110", "target": "449", "attributes": { "weight": 1 } }, { "key": "33650", "source": "2110", "target": "130", "attributes": { "weight": 1 } }, { "key": "33649", "source": "2110", "target": "220", "attributes": { "weight": 1 } }, { "key": "33658", "source": "2110", "target": "672", "attributes": { "weight": 1 } }, { "key": "17308", "source": "2111", "target": "435", "attributes": { "weight": 1 } }, { "key": "21003", "source": "2111", "target": "1354", "attributes": { "weight": 1 } }, { "key": "21015", "source": "2111", "target": "56", "attributes": { "weight": 1 } }, { "key": "21012", "source": "2111", "target": "231", "attributes": { "weight": 1 } }, { "key": "21008", "source": "2111", "target": "135", "attributes": { "weight": 1 } }, { "key": "21004", "source": "2111", "target": "1023", "attributes": { "weight": 1 } }, { "key": "17311", "source": "2111", "target": "450", "attributes": { "weight": 1 } }, { "key": "17309", "source": "2111", "target": "938", "attributes": { "weight": 1 } }, { "key": "21010", "source": "2111", "target": "474", "attributes": { "weight": 1 } }, { "key": "17312", "source": "2111", "target": "451", "attributes": { "weight": 2 } }, { "key": "21007", "source": "2111", "target": "464", "attributes": { "weight": 1 } }, { "key": "21005", "source": "2111", "target": "186", "attributes": { "weight": 1 } }, { "key": "21011", "source": "2111", "target": "1127", "attributes": { "weight": 1 } }, { "key": "21014", "source": "2111", "target": "672", "attributes": { "weight": 1 } }, { "key": "17315", "source": "2111", "target": "472", "attributes": { "weight": 1 } }, { "key": "21009", "source": "2111", "target": "1836", "attributes": { "weight": 1 } }, { "key": "17313", "source": "2111", "target": "370", "attributes": { "weight": 1 } }, { "key": "21013", "source": "2111", "target": "489", "attributes": { "weight": 1 } }, { "key": "21002", "source": "2111", "target": "1353", "attributes": { "weight": 1 } }, { "key": "26750", "source": "2111", "target": "1047", "attributes": { "weight": 2 } }, { "key": "21006", "source": "2111", "target": "1358", "attributes": { "weight": 1 } }, { "key": "17307", "source": "2111", "target": "429", "attributes": { "weight": 2 } }, { "key": "21016", "source": "2111", "target": "2276", "attributes": { "weight": 1 } }, { "key": "17314", "source": "2111", "target": "468", "attributes": { "weight": 1 } }, { "key": "21017", "source": "2111", "target": "498", "attributes": { "weight": 1 } }, { "key": "17310", "source": "2111", "target": "51", "attributes": { "weight": 1 } }, { "key": "30338", "source": "2112", "target": "1046", "attributes": { "weight": 1 } }, { "key": "27804", "source": "2112", "target": "339", "attributes": { "weight": 1 } }, { "key": "32317", "source": "2112", "target": "2211", "attributes": { "weight": 1 } }, { "key": "27531", "source": "2112", "target": "1520", "attributes": { "weight": 1 } }, { "key": "35223", "source": "2112", "target": "673", "attributes": { "weight": 1 } }, { "key": "18050", "source": "2112", "target": "1036", "attributes": { "weight": 1 } }, { "key": "30699", "source": "2112", "target": "889", "attributes": { "weight": 1 } }, { "key": "32316", "source": "2112", "target": "424", "attributes": { "weight": 1 } }, { "key": "17335", "source": "2112", "target": "358", "attributes": { "weight": 2 } }, { "key": "22265", "source": "2112", "target": "794", "attributes": { "weight": 1 } }, { "key": "22662", "source": "2112", "target": "1037", "attributes": { "weight": 1 } }, { "key": "35676", "source": "2112", "target": "59", "attributes": { "weight": 1 } }, { "key": "32318", "source": "2112", "target": "791", "attributes": { "weight": 1 } }, { "key": "30701", "source": "2113", "target": "889", "attributes": { "weight": 1 } }, { "key": "27533", "source": "2113", "target": "1520", "attributes": { "weight": 1 } }, { "key": "30343", "source": "2113", "target": "1046", "attributes": { "weight": 1 } }, { "key": "17344", "source": "2113", "target": "358", "attributes": { "weight": 2 } }, { "key": "18052", "source": "2113", "target": "1036", "attributes": { "weight": 1 } }, { "key": "32327", "source": "2113", "target": "791", "attributes": { "weight": 1 } }, { "key": "22268", "source": "2113", "target": "794", "attributes": { "weight": 1 } }, { "key": "35224", "source": "2114", "target": "673", "attributes": { "weight": 1 } }, { "key": "27851", "source": "2114", "target": "339", "attributes": { "weight": 1 } }, { "key": "35783", "source": "2114", "target": "790", "attributes": { "weight": 1 } }, { "key": "17456", "source": "2114", "target": "358", "attributes": { "weight": 2 } }, { "key": "27537", "source": "2114", "target": "1520", "attributes": { "weight": 2 } }, { "key": "18058", "source": "2114", "target": "1036", "attributes": { "weight": 1 } }, { "key": "26448", "source": "2114", "target": "454", "attributes": { "weight": 1 } }, { "key": "29025", "source": "2114", "target": "495", "attributes": { "weight": 1 } }, { "key": "31518", "source": "2114", "target": "59", "attributes": { "weight": 3 } }, { "key": "30705", "source": "2114", "target": "889", "attributes": { "weight": 3 } }, { "key": "25787", "source": "2114", "target": "856", "attributes": { "weight": 2 } }, { "key": "25788", "source": "2114", "target": "2211", "attributes": { "weight": 3 } }, { "key": "31520", "source": "2114", "target": "189", "attributes": { "weight": 1 } }, { "key": "22280", "source": "2114", "target": "794", "attributes": { "weight": 1 } }, { "key": "35679", "source": "2114", "target": "1118", "attributes": { "weight": 1 } }, { "key": "30439", "source": "2114", "target": "1046", "attributes": { "weight": 1 } }, { "key": "25789", "source": "2114", "target": "791", "attributes": { "weight": 2 } }, { "key": "31519", "source": "2114", "target": "183", "attributes": { "weight": 1 } }, { "key": "23584", "source": "2114", "target": "220", "attributes": { "weight": 1 } }, { "key": "32343", "source": "2114", "target": "424", "attributes": { "weight": 1 } }, { "key": "31974", "source": "2115", "target": "359", "attributes": { "weight": 2 } }, { "key": "27882", "source": "2115", "target": "339", "attributes": { "weight": 2 } }, { "key": "31971", "source": "2115", "target": "2123", "attributes": { "weight": 1 } }, { "key": "22300", "source": "2115", "target": "794", "attributes": { "weight": 1 } }, { "key": "30715", "source": "2115", "target": "889", "attributes": { "weight": 2 } }, { "key": "31970", "source": "2115", "target": "1045", "attributes": { "weight": 2 } }, { "key": "37111", "source": "2115", "target": "3070", "attributes": { "weight": 1 } }, { "key": "37112", "source": "2115", "target": "2861", "attributes": { "weight": 1 } }, { "key": "28628", "source": "2115", "target": "2288", "attributes": { "weight": 2 } }, { "key": "29710", "source": "2115", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29709", "source": "2115", "target": "421", "attributes": { "weight": 1 } }, { "key": "37115", "source": "2115", "target": "232", "attributes": { "weight": 1 } }, { "key": "36977", "source": "2115", "target": "362", "attributes": { "weight": 1 } }, { "key": "31973", "source": "2115", "target": "791", "attributes": { "weight": 2 } }, { "key": "33055", "source": "2115", "target": "493", "attributes": { "weight": 1 } }, { "key": "30466", "source": "2115", "target": "1046", "attributes": { "weight": 1 } }, { "key": "31975", "source": "2115", "target": "1060", "attributes": { "weight": 2 } }, { "key": "17490", "source": "2115", "target": "358", "attributes": { "weight": 3 } }, { "key": "37113", "source": "2115", "target": "1765", "attributes": { "weight": 1 } }, { "key": "31972", "source": "2115", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29711", "source": "2115", "target": "1253", "attributes": { "weight": 1 } }, { "key": "31977", "source": "2115", "target": "3075", "attributes": { "weight": 1 } }, { "key": "31969", "source": "2115", "target": "2233", "attributes": { "weight": 1 } }, { "key": "27883", "source": "2115", "target": "891", "attributes": { "weight": 1 } }, { "key": "37114", "source": "2115", "target": "1056", "attributes": { "weight": 1 } }, { "key": "22680", "source": "2115", "target": "1037", "attributes": { "weight": 2 } }, { "key": "18073", "source": "2115", "target": "1036", "attributes": { "weight": 2 } }, { "key": "31976", "source": "2115", "target": "2125", "attributes": { "weight": 1 } }, { "key": "17506", "source": "2116", "target": "358", "attributes": { "weight": 2 } }, { "key": "28631", "source": "2116", "target": "2510", "attributes": { "weight": 1 } }, { "key": "29727", "source": "2116", "target": "422", "attributes": { "weight": 1 } }, { "key": "29729", "source": "2116", "target": "1056", "attributes": { "weight": 1 } }, { "key": "23896", "source": "2116", "target": "1763", "attributes": { "weight": 3 } }, { "key": "18079", "source": "2116", "target": "1036", "attributes": { "weight": 4 } }, { "key": "29725", "source": "2116", "target": "2884", "attributes": { "weight": 1 } }, { "key": "22684", "source": "2116", "target": "1037", "attributes": { "weight": 1 } }, { "key": "29726", "source": "2116", "target": "421", "attributes": { "weight": 1 } }, { "key": "28633", "source": "2116", "target": "362", "attributes": { "weight": 2 } }, { "key": "28634", "source": "2116", "target": "1060", "attributes": { "weight": 3 } }, { "key": "29728", "source": "2116", "target": "171", "attributes": { "weight": 1 } }, { "key": "28632", "source": "2116", "target": "359", "attributes": { "weight": 2 } }, { "key": "29730", "source": "2116", "target": "1253", "attributes": { "weight": 1 } }, { "key": "29724", "source": "2116", "target": "1046", "attributes": { "weight": 2 } }, { "key": "22306", "source": "2116", "target": "794", "attributes": { "weight": 3 } }, { "key": "29723", "source": "2116", "target": "2881", "attributes": { "weight": 1 } }, { "key": "30261", "source": "2117", "target": "2560", "attributes": { "weight": 1 } }, { "key": "30260", "source": "2117", "target": "2963", "attributes": { "weight": 1 } }, { "key": "17509", "source": "2117", "target": "1166", "attributes": { "weight": 3 } }, { "key": "24655", "source": "2118", "target": "1060", "attributes": { "weight": 2 } }, { "key": "24654", "source": "2118", "target": "163", "attributes": { "weight": 1 } }, { "key": "19087", "source": "2118", "target": "2232", "attributes": { "weight": 3 } }, { "key": "24650", "source": "2118", "target": "359", "attributes": { "weight": 2 } }, { "key": "24652", "source": "2118", "target": "1765", "attributes": { "weight": 1 } }, { "key": "24649", "source": "2118", "target": "339", "attributes": { "weight": 2 } }, { "key": "19086", "source": "2118", "target": "2231", "attributes": { "weight": 2 } }, { "key": "18083", "source": "2118", "target": "1036", "attributes": { "weight": 1 } }, { "key": "19090", "source": "2118", "target": "2236", "attributes": { "weight": 2 } }, { "key": "24648", "source": "2118", "target": "1520", "attributes": { "weight": 1 } }, { "key": "24653", "source": "2118", "target": "1056", "attributes": { "weight": 2 } }, { "key": "24645", "source": "2118", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17511", "source": "2118", "target": "358", "attributes": { "weight": 3 } }, { "key": "19092", "source": "2118", "target": "2239", "attributes": { "weight": 2 } }, { "key": "19091", "source": "2118", "target": "2237", "attributes": { "weight": 2 } }, { "key": "22686", "source": "2118", "target": "1037", "attributes": { "weight": 2 } }, { "key": "19088", "source": "2118", "target": "2234", "attributes": { "weight": 1 } }, { "key": "19089", "source": "2118", "target": "2235", "attributes": { "weight": 2 } }, { "key": "30481", "source": "2118", "target": "1046", "attributes": { "weight": 1 } }, { "key": "24651", "source": "2118", "target": "161", "attributes": { "weight": 1 } }, { "key": "24647", "source": "2118", "target": "2511", "attributes": { "weight": 1 } }, { "key": "24646", "source": "2118", "target": "889", "attributes": { "weight": 2 } }, { "key": "29750", "source": "2119", "target": "1060", "attributes": { "weight": 1 } }, { "key": "22687", "source": "2119", "target": "1037", "attributes": { "weight": 1 } }, { "key": "29748", "source": "2119", "target": "1056", "attributes": { "weight": 1 } }, { "key": "22370", "source": "2119", "target": "794", "attributes": { "weight": 2 } }, { "key": "29745", "source": "2119", "target": "1045", "attributes": { "weight": 1 } }, { "key": "29749", "source": "2119", "target": "362", "attributes": { "weight": 1 } }, { "key": "29747", "source": "2119", "target": "359", "attributes": { "weight": 1 } }, { "key": "17516", "source": "2119", "target": "358", "attributes": { "weight": 2 } }, { "key": "29746", "source": "2119", "target": "421", "attributes": { "weight": 1 } }, { "key": "28858", "source": "2120", "target": "2808", "attributes": { "weight": 1 } }, { "key": "17527", "source": "2120", "target": "297", "attributes": { "weight": 5 } }, { "key": "28853", "source": "2120", "target": "1166", "attributes": { "weight": 2 } }, { "key": "28863", "source": "2120", "target": "2817", "attributes": { "weight": 1 } }, { "key": "28861", "source": "2120", "target": "2812", "attributes": { "weight": 1 } }, { "key": "28866", "source": "2120", "target": "2822", "attributes": { "weight": 1 } }, { "key": "28864", "source": "2120", "target": "2818", "attributes": { "weight": 1 } }, { "key": "28862", "source": "2120", "target": "2815", "attributes": { "weight": 1 } }, { "key": "28867", "source": "2120", "target": "2823", "attributes": { "weight": 1 } }, { "key": "28855", "source": "2120", "target": "2797", "attributes": { "weight": 1 } }, { "key": "28852", "source": "2120", "target": "2791", "attributes": { "weight": 1 } }, { "key": "28859", "source": "2120", "target": "2809", "attributes": { "weight": 1 } }, { "key": "17528", "source": "2120", "target": "310", "attributes": { "weight": 5 } }, { "key": "28857", "source": "2120", "target": "2801", "attributes": { "weight": 1 } }, { "key": "28856", "source": "2120", "target": "2799", "attributes": { "weight": 1 } }, { "key": "28854", "source": "2120", "target": "2555", "attributes": { "weight": 1 } }, { "key": "28865", "source": "2120", "target": "2819", "attributes": { "weight": 1 } }, { "key": "25222", "source": "2120", "target": "1146", "attributes": { "weight": 2 } }, { "key": "28868", "source": "2120", "target": "2121", "attributes": { "weight": 1 } }, { "key": "25223", "source": "2120", "target": "1178", "attributes": { "weight": 2 } }, { "key": "28860", "source": "2120", "target": "2810", "attributes": { "weight": 1 } }, { "key": "25224", "source": "2121", "target": "1146", "attributes": { "weight": 2 } }, { "key": "17530", "source": "2121", "target": "310", "attributes": { "weight": 3 } }, { "key": "28872", "source": "2121", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28873", "source": "2121", "target": "2120", "attributes": { "weight": 1 } }, { "key": "17532", "source": "2122", "target": "487", "attributes": { "weight": 1 } }, { "key": "34963", "source": "2122", "target": "3", "attributes": { "weight": 1 } }, { "key": "29395", "source": "2122", "target": "232", "attributes": { "weight": 1 } }, { "key": "36906", "source": "2122", "target": "1137", "attributes": { "weight": 1 } }, { "key": "29846", "source": "2122", "target": "1024", "attributes": { "weight": 2 } }, { "key": "31587", "source": "2122", "target": "595", "attributes": { "weight": 1 } }, { "key": "29848", "source": "2122", "target": "340", "attributes": { "weight": 1 } }, { "key": "29847", "source": "2122", "target": "53", "attributes": { "weight": 1 } }, { "key": "29845", "source": "2122", "target": "791", "attributes": { "weight": 3 } }, { "key": "26432", "source": "2122", "target": "189", "attributes": { "weight": 1 } }, { "key": "22279", "source": "2122", "target": "794", "attributes": { "weight": 1 } }, { "key": "21512", "source": "2122", "target": "89", "attributes": { "weight": 1 } }, { "key": "17550", "source": "2123", "target": "339", "attributes": { "weight": 4 } }, { "key": "22281", "source": "2123", "target": "794", "attributes": { "weight": 1 } }, { "key": "31880", "source": "2123", "target": "359", "attributes": { "weight": 1 } }, { "key": "31882", "source": "2123", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31881", "source": "2123", "target": "2115", "attributes": { "weight": 1 } }, { "key": "31879", "source": "2123", "target": "1045", "attributes": { "weight": 1 } }, { "key": "32345", "source": "2123", "target": "791", "attributes": { "weight": 1 } }, { "key": "30440", "source": "2123", "target": "1046", "attributes": { "weight": 1 } }, { "key": "21569", "source": "2123", "target": "358", "attributes": { "weight": 1 } }, { "key": "32030", "source": "2124", "target": "1045", "attributes": { "weight": 2 } }, { "key": "22374", "source": "2124", "target": "794", "attributes": { "weight": 1 } }, { "key": "37124", "source": "2124", "target": "1056", "attributes": { "weight": 1 } }, { "key": "32031", "source": "2124", "target": "1060", "attributes": { "weight": 2 } }, { "key": "32611", "source": "2124", "target": "791", "attributes": { "weight": 1 } }, { "key": "21605", "source": "2124", "target": "358", "attributes": { "weight": 1 } }, { "key": "30485", "source": "2124", "target": "1046", "attributes": { "weight": 1 } }, { "key": "17551", "source": "2124", "target": "339", "attributes": { "weight": 3 } }, { "key": "32029", "source": "2124", "target": "2233", "attributes": { "weight": 1 } }, { "key": "32036", "source": "2125", "target": "359", "attributes": { "weight": 1 } }, { "key": "17552", "source": "2125", "target": "339", "attributes": { "weight": 3 } }, { "key": "21606", "source": "2125", "target": "358", "attributes": { "weight": 1 } }, { "key": "32037", "source": "2125", "target": "2115", "attributes": { "weight": 1 } }, { "key": "32038", "source": "2125", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32034", "source": "2125", "target": "2233", "attributes": { "weight": 1 } }, { "key": "32035", "source": "2125", "target": "1045", "attributes": { "weight": 1 } }, { "key": "17553", "source": "2126", "target": "339", "attributes": { "weight": 3 } }, { "key": "21609", "source": "2126", "target": "358", "attributes": { "weight": 1 } }, { "key": "37125", "source": "2126", "target": "1045", "attributes": { "weight": 1 } }, { "key": "22377", "source": "2126", "target": "794", "attributes": { "weight": 1 } }, { "key": "32046", "source": "2126", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32045", "source": "2126", "target": "359", "attributes": { "weight": 1 } }, { "key": "32630", "source": "2126", "target": "791", "attributes": { "weight": 1 } }, { "key": "17555", "source": "2127", "target": "1801", "attributes": { "weight": 1 } }, { "key": "24469", "source": "2128", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17556", "source": "2128", "target": "1806", "attributes": { "weight": 2 } }, { "key": "17557", "source": "2129", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17563", "source": "2130", "target": "358", "attributes": { "weight": 1 } }, { "key": "24475", "source": "2130", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17564", "source": "2131", "target": "1806", "attributes": { "weight": 1 } }, { "key": "24483", "source": "2132", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17573", "source": "2132", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17572", "source": "2132", "target": "358", "attributes": { "weight": 1 } }, { "key": "17574", "source": "2132", "target": "1806", "attributes": { "weight": 2 } }, { "key": "17575", "source": "2133", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17576", "source": "2134", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17589", "source": "2135", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17591", "source": "2135", "target": "1807", "attributes": { "weight": 2 } }, { "key": "31883", "source": "2135", "target": "2115", "attributes": { "weight": 1 } }, { "key": "17590", "source": "2135", "target": "1806", "attributes": { "weight": 2 } }, { "key": "17592", "source": "2136", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17594", "source": "2137", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17599", "source": "2138", "target": "1806", "attributes": { "weight": 1 } }, { "key": "21577", "source": "2139", "target": "358", "attributes": { "weight": 1 } }, { "key": "25798", "source": "2139", "target": "791", "attributes": { "weight": 2 } }, { "key": "30708", "source": "2139", "target": "889", "attributes": { "weight": 1 } }, { "key": "31534", "source": "2139", "target": "189", "attributes": { "weight": 1 } }, { "key": "31532", "source": "2139", "target": "59", "attributes": { "weight": 2 } }, { "key": "31533", "source": "2139", "target": "183", "attributes": { "weight": 1 } }, { "key": "17606", "source": "2139", "target": "790", "attributes": { "weight": 1 } }, { "key": "30453", "source": "2139", "target": "1046", "attributes": { "weight": 1 } }, { "key": "18434", "source": "2140", "target": "358", "attributes": { "weight": 1 } }, { "key": "18433", "source": "2140", "target": "419", "attributes": { "weight": 1 } }, { "key": "18435", "source": "2140", "target": "422", "attributes": { "weight": 2 } }, { "key": "17609", "source": "2140", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17610", "source": "2141", "target": "1804", "attributes": { "weight": 1 } }, { "key": "24520", "source": "2141", "target": "1798", "attributes": { "weight": 1 } }, { "key": "24521", "source": "2141", "target": "1806", "attributes": { "weight": 1 } }, { "key": "24522", "source": "2141", "target": "1807", "attributes": { "weight": 1 } }, { "key": "17611", "source": "2142", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17618", "source": "2143", "target": "1056", "attributes": { "weight": 1 } }, { "key": "17617", "source": "2143", "target": "358", "attributes": { "weight": 1 } }, { "key": "17619", "source": "2143", "target": "1804", "attributes": { "weight": 1 } }, { "key": "22298", "source": "2144", "target": "794", "attributes": { "weight": 1 } }, { "key": "24531", "source": "2144", "target": "1046", "attributes": { "weight": 1 } }, { "key": "24533", "source": "2144", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17620", "source": "2144", "target": "358", "attributes": { "weight": 1 } }, { "key": "24532", "source": "2144", "target": "1056", "attributes": { "weight": 1 } }, { "key": "17621", "source": "2144", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17639", "source": "2145", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17640", "source": "2145", "target": "1806", "attributes": { "weight": 1 } }, { "key": "31980", "source": "2146", "target": "2115", "attributes": { "weight": 1 } }, { "key": "17641", "source": "2146", "target": "1806", "attributes": { "weight": 2 } }, { "key": "17642", "source": "2147", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17647", "source": "2148", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17643", "source": "2148", "target": "1794", "attributes": { "weight": 1 } }, { "key": "17646", "source": "2148", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17644", "source": "2148", "target": "1798", "attributes": { "weight": 1 } }, { "key": "17645", "source": "2148", "target": "1802", "attributes": { "weight": 1 } }, { "key": "17653", "source": "2149", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17652", "source": "2149", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17654", "source": "2150", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17695", "source": "2151", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17700", "source": "2152", "target": "362", "attributes": { "weight": 1 } }, { "key": "24564", "source": "2152", "target": "1796", "attributes": { "weight": 1 } }, { "key": "17701", "source": "2152", "target": "1801", "attributes": { "weight": 1 } }, { "key": "24565", "source": "2152", "target": "1807", "attributes": { "weight": 1 } }, { "key": "17702", "source": "2152", "target": "1806", "attributes": { "weight": 2 } }, { "key": "17704", "source": "2153", "target": "45", "attributes": { "weight": 1 } }, { "key": "17705", "source": "2153", "target": "48", "attributes": { "weight": 2 } }, { "key": "17708", "source": "2154", "target": "48", "attributes": { "weight": 1 } }, { "key": "17706", "source": "2154", "target": "44", "attributes": { "weight": 1 } }, { "key": "17707", "source": "2154", "target": "45", "attributes": { "weight": 1 } }, { "key": "17709", "source": "2155", "target": "48", "attributes": { "weight": 1 } }, { "key": "17710", "source": "2156", "target": "45", "attributes": { "weight": 2 } }, { "key": "17719", "source": "2158", "target": "45", "attributes": { "weight": 1 } }, { "key": "17720", "source": "2158", "target": "48", "attributes": { "weight": 1 } }, { "key": "17721", "source": "2159", "target": "45", "attributes": { "weight": 1 } }, { "key": "17722", "source": "2159", "target": "46", "attributes": { "weight": 1 } }, { "key": "17723", "source": "2160", "target": "48", "attributes": { "weight": 1 } }, { "key": "17725", "source": "2161", "target": "48", "attributes": { "weight": 1 } }, { "key": "17736", "source": "2162", "target": "2161", "attributes": { "weight": 1 } }, { "key": "17807", "source": "2163", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17811", "source": "2164", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17812", "source": "2165", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17813", "source": "2165", "target": "2175", "attributes": { "weight": 1 } }, { "key": "17819", "source": "2166", "target": "2175", "attributes": { "weight": 1 } }, { "key": "17818", "source": "2166", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17824", "source": "2167", "target": "638", "attributes": { "weight": 2 } }, { "key": "26046", "source": "2167", "target": "163", "attributes": { "weight": 1 } }, { "key": "17823", "source": "2167", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17825", "source": "2167", "target": "1548", "attributes": { "weight": 1 } }, { "key": "17845", "source": "2168", "target": "161", "attributes": { "weight": 1 } }, { "key": "17844", "source": "2168", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17846", "source": "2168", "target": "2173", "attributes": { "weight": 1 } }, { "key": "35739", "source": "2169", "target": "1516", "attributes": { "weight": 1 } }, { "key": "17855", "source": "2169", "target": "1380", "attributes": { "weight": 1 } }, { "key": "35740", "source": "2169", "target": "136", "attributes": { "weight": 1 } }, { "key": "17880", "source": "2170", "target": "2173", "attributes": { "weight": 1 } }, { "key": "17881", "source": "2171", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17882", "source": "2171", "target": "2175", "attributes": { "weight": 1 } }, { "key": "17884", "source": "2172", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17885", "source": "2172", "target": "2164", "attributes": { "weight": 1 } }, { "key": "17898", "source": "2173", "target": "2170", "attributes": { "weight": 1 } }, { "key": "17896", "source": "2173", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17897", "source": "2173", "target": "2168", "attributes": { "weight": 1 } }, { "key": "17899", "source": "2174", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17900", "source": "2174", "target": "2163", "attributes": { "weight": 1 } }, { "key": "17928", "source": "2175", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17930", "source": "2175", "target": "2171", "attributes": { "weight": 1 } }, { "key": "17929", "source": "2175", "target": "2165", "attributes": { "weight": 1 } }, { "key": "17945", "source": "2176", "target": "134", "attributes": { "weight": 1 } }, { "key": "17944", "source": "2176", "target": "35", "attributes": { "weight": 1 } }, { "key": "32663", "source": "2177", "target": "3038", "attributes": { "weight": 1 } }, { "key": "32657", "source": "2177", "target": "3024", "attributes": { "weight": 1 } }, { "key": "32659", "source": "2177", "target": "1387", "attributes": { "weight": 1 } }, { "key": "26062", "source": "2177", "target": "163", "attributes": { "weight": 1 } }, { "key": "32661", "source": "2177", "target": "3035", "attributes": { "weight": 1 } }, { "key": "32662", "source": "2177", "target": "3111", "attributes": { "weight": 1 } }, { "key": "31048", "source": "2177", "target": "636", "attributes": { "weight": 1 } }, { "key": "32658", "source": "2177", "target": "3110", "attributes": { "weight": 1 } }, { "key": "17946", "source": "2177", "target": "1380", "attributes": { "weight": 1 } }, { "key": "32656", "source": "2177", "target": "2624", "attributes": { "weight": 1 } }, { "key": "32919", "source": "2177", "target": "470", "attributes": { "weight": 1 } }, { "key": "30470", "source": "2177", "target": "638", "attributes": { "weight": 3 } }, { "key": "31049", "source": "2177", "target": "1809", "attributes": { "weight": 1 } }, { "key": "32664", "source": "2177", "target": "3112", "attributes": { "weight": 1 } }, { "key": "32660", "source": "2177", "target": "2626", "attributes": { "weight": 1 } }, { "key": "17947", "source": "2178", "target": "1380", "attributes": { "weight": 1 } }, { "key": "27723", "source": "2181", "target": "359", "attributes": { "weight": 2 } }, { "key": "34905", "source": "2181", "target": "304", "attributes": { "weight": 1 } }, { "key": "18061", "source": "2181", "target": "1042", "attributes": { "weight": 3 } }, { "key": "34906", "source": "2181", "target": "305", "attributes": { "weight": 1 } }, { "key": "18081", "source": "2182", "target": "470", "attributes": { "weight": 3 } }, { "key": "18089", "source": "2183", "target": "1787", "attributes": { "weight": 1 } }, { "key": "29251", "source": "2183", "target": "1785", "attributes": { "weight": 1 } }, { "key": "18088", "source": "2183", "target": "2184", "attributes": { "weight": 2 } }, { "key": "18090", "source": "2184", "target": "2183", "attributes": { "weight": 2 } }, { "key": "29252", "source": "2184", "target": "1787", "attributes": { "weight": 1 } }, { "key": "18095", "source": "2185", "target": "1387", "attributes": { "weight": 1 } }, { "key": "18113", "source": "2186", "target": "477", "attributes": { "weight": 1 } }, { "key": "18112", "source": "2186", "target": "445", "attributes": { "weight": 1 } }, { "key": "35309", "source": "2186", "target": "494", "attributes": { "weight": 1 } }, { "key": "27274", "source": "2187", "target": "57", "attributes": { "weight": 1 } }, { "key": "18114", "source": "2187", "target": "52", "attributes": { "weight": 1 } }, { "key": "18117", "source": "2188", "target": "477", "attributes": { "weight": 1 } }, { "key": "35336", "source": "2188", "target": "494", "attributes": { "weight": 1 } }, { "key": "18118", "source": "2188", "target": "2189", "attributes": { "weight": 1 } }, { "key": "21249", "source": "2189", "target": "2251", "attributes": { "weight": 1 } }, { "key": "18121", "source": "2189", "target": "2188", "attributes": { "weight": 1 } }, { "key": "21246", "source": "2189", "target": "453", "attributes": { "weight": 1 } }, { "key": "21261", "source": "2189", "target": "235", "attributes": { "weight": 1 } }, { "key": "21254", "source": "2189", "target": "1367", "attributes": { "weight": 1 } }, { "key": "21255", "source": "2189", "target": "2260", "attributes": { "weight": 1 } }, { "key": "21257", "source": "2189", "target": "2268", "attributes": { "weight": 1 } }, { "key": "21259", "source": "2189", "target": "492", "attributes": { "weight": 1 } }, { "key": "21253", "source": "2189", "target": "472", "attributes": { "weight": 1 } }, { "key": "21251", "source": "2189", "target": "464", "attributes": { "weight": 1 } }, { "key": "21252", "source": "2189", "target": "2254", "attributes": { "weight": 1 } }, { "key": "21248", "source": "2189", "target": "1536", "attributes": { "weight": 1 } }, { "key": "21240", "source": "2189", "target": "1023", "attributes": { "weight": 1 } }, { "key": "21241", "source": "2189", "target": "441", "attributes": { "weight": 1 } }, { "key": "21256", "source": "2189", "target": "2266", "attributes": { "weight": 1 } }, { "key": "21243", "source": "2189", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21238", "source": "2189", "target": "222", "attributes": { "weight": 1 } }, { "key": "21236", "source": "2189", "target": "431", "attributes": { "weight": 1 } }, { "key": "21245", "source": "2189", "target": "2248", "attributes": { "weight": 1 } }, { "key": "21242", "source": "2189", "target": "2244", "attributes": { "weight": 1 } }, { "key": "21239", "source": "2189", "target": "2025", "attributes": { "weight": 1 } }, { "key": "21250", "source": "2189", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21237", "source": "2189", "target": "221", "attributes": { "weight": 1 } }, { "key": "21260", "source": "2189", "target": "1777", "attributes": { "weight": 1 } }, { "key": "21247", "source": "2189", "target": "186", "attributes": { "weight": 1 } }, { "key": "21258", "source": "2189", "target": "480", "attributes": { "weight": 1 } }, { "key": "21244", "source": "2189", "target": "226", "attributes": { "weight": 1 } }, { "key": "21262", "source": "2189", "target": "2276", "attributes": { "weight": 1 } }, { "key": "18128", "source": "2190", "target": "2194", "attributes": { "weight": 3 } }, { "key": "18130", "source": "2191", "target": "2197", "attributes": { "weight": 3 } }, { "key": "18129", "source": "2191", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18132", "source": "2192", "target": "2203", "attributes": { "weight": 2 } }, { "key": "37492", "source": "2192", "target": "925", "attributes": { "weight": 1 } }, { "key": "36473", "source": "2193", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18135", "source": "2193", "target": "1197", "attributes": { "weight": 1 } }, { "key": "36472", "source": "2193", "target": "1526", "attributes": { "weight": 1 } }, { "key": "36474", "source": "2193", "target": "1552", "attributes": { "weight": 1 } }, { "key": "18141", "source": "2194", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18154", "source": "2195", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18155", "source": "2195", "target": "2207", "attributes": { "weight": 3 } }, { "key": "18159", "source": "2196", "target": "2201", "attributes": { "weight": 3 } }, { "key": "18158", "source": "2196", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18223", "source": "2197", "target": "2204", "attributes": { "weight": 3 } }, { "key": "18221", "source": "2197", "target": "2191", "attributes": { "weight": 3 } }, { "key": "18222", "source": "2197", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18227", "source": "2198", "target": "2203", "attributes": { "weight": 3 } }, { "key": "18235", "source": "2200", "target": "218", "attributes": { "weight": 1 } }, { "key": "18233", "source": "2200", "target": "1552", "attributes": { "weight": 1 } }, { "key": "18231", "source": "2200", "target": "913", "attributes": { "weight": 1 } }, { "key": "18232", "source": "2200", "target": "208", "attributes": { "weight": 1 } }, { "key": "18234", "source": "2200", "target": "215", "attributes": { "weight": 1 } }, { "key": "18230", "source": "2200", "target": "1197", "attributes": { "weight": 1 } }, { "key": "18240", "source": "2201", "target": "2196", "attributes": { "weight": 3 } }, { "key": "18241", "source": "2201", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18264", "source": "2202", "target": "1197", "attributes": { "weight": 3 } }, { "key": "37515", "source": "2202", "target": "1294", "attributes": { "weight": 1 } }, { "key": "37380", "source": "2202", "target": "3365", "attributes": { "weight": 1 } }, { "key": "18267", "source": "2203", "target": "2192", "attributes": { "weight": 2 } }, { "key": "18268", "source": "2203", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18269", "source": "2203", "target": "2198", "attributes": { "weight": 3 } }, { "key": "18287", "source": "2204", "target": "2197", "attributes": { "weight": 3 } }, { "key": "18288", "source": "2204", "target": "1294", "attributes": { "weight": 3 } }, { "key": "18307", "source": "2205", "target": "1305", "attributes": { "weight": 1 } }, { "key": "18309", "source": "2205", "target": "218", "attributes": { "weight": 1 } }, { "key": "18308", "source": "2205", "target": "215", "attributes": { "weight": 1 } }, { "key": "18301", "source": "2205", "target": "912", "attributes": { "weight": 1 } }, { "key": "18298", "source": "2205", "target": "1165", "attributes": { "weight": 1 } }, { "key": "18306", "source": "2205", "target": "1552", "attributes": { "weight": 1 } }, { "key": "18297", "source": "2205", "target": "195", "attributes": { "weight": 1 } }, { "key": "18299", "source": "2205", "target": "1182", "attributes": { "weight": 1 } }, { "key": "18304", "source": "2205", "target": "1236", "attributes": { "weight": 1 } }, { "key": "18302", "source": "2205", "target": "913", "attributes": { "weight": 1 } }, { "key": "18300", "source": "2205", "target": "779", "attributes": { "weight": 1 } }, { "key": "18305", "source": "2205", "target": "208", "attributes": { "weight": 1 } }, { "key": "18310", "source": "2205", "target": "2206", "attributes": { "weight": 1 } }, { "key": "18303", "source": "2205", "target": "199", "attributes": { "weight": 1 } }, { "key": "18312", "source": "2206", "target": "2205", "attributes": { "weight": 1 } }, { "key": "18313", "source": "2207", "target": "2195", "attributes": { "weight": 3 } }, { "key": "29058", "source": "2208", "target": "495", "attributes": { "weight": 1 } }, { "key": "18350", "source": "2208", "target": "1092", "attributes": { "weight": 1 } }, { "key": "26377", "source": "2208", "target": "1258", "attributes": { "weight": 1 } }, { "key": "23375", "source": "2208", "target": "223", "attributes": { "weight": 1 } }, { "key": "18351", "source": "2208", "target": "595", "attributes": { "weight": 1 } }, { "key": "30958", "source": "2208", "target": "3", "attributes": { "weight": 1 } }, { "key": "25395", "source": "2208", "target": "433", "attributes": { "weight": 1 } }, { "key": "36163", "source": "2208", "target": "2258", "attributes": { "weight": 1 } }, { "key": "18349", "source": "2208", "target": "2086", "attributes": { "weight": 1 } }, { "key": "18393", "source": "2209", "target": "1621", "attributes": { "weight": 1 } }, { "key": "32273", "source": "2209", "target": "164", "attributes": { "weight": 1 } }, { "key": "18399", "source": "2210", "target": "1621", "attributes": { "weight": 1 } }, { "key": "32367", "source": "2211", "target": "2862", "attributes": { "weight": 1 } }, { "key": "32353", "source": "2211", "target": "2857", "attributes": { "weight": 1 } }, { "key": "24490", "source": "2211", "target": "790", "attributes": { "weight": 2 } }, { "key": "32351", "source": "2211", "target": "3092", "attributes": { "weight": 1 } }, { "key": "29411", "source": "2211", "target": "183", "attributes": { "weight": 1 } }, { "key": "32355", "source": "2211", "target": "2112", "attributes": { "weight": 1 } }, { "key": "18425", "source": "2211", "target": "791", "attributes": { "weight": 2 } }, { "key": "32358", "source": "2211", "target": "2860", "attributes": { "weight": 1 } }, { "key": "32375", "source": "2211", "target": "2868", "attributes": { "weight": 1 } }, { "key": "32361", "source": "2211", "target": "454", "attributes": { "weight": 1 } }, { "key": "30442", "source": "2211", "target": "1046", "attributes": { "weight": 1 } }, { "key": "32363", "source": "2211", "target": "865", "attributes": { "weight": 1 } }, { "key": "32369", "source": "2211", "target": "3101", "attributes": { "weight": 1 } }, { "key": "32373", "source": "2211", "target": "3105", "attributes": { "weight": 1 } }, { "key": "29408", "source": "2211", "target": "857", "attributes": { "weight": 2 } }, { "key": "29410", "source": "2211", "target": "224", "attributes": { "weight": 1 } }, { "key": "32349", "source": "2211", "target": "856", "attributes": { "weight": 1 } }, { "key": "32376", "source": "2211", "target": "352", "attributes": { "weight": 1 } }, { "key": "29409", "source": "2211", "target": "858", "attributes": { "weight": 2 } }, { "key": "32360", "source": "2211", "target": "863", "attributes": { "weight": 1 } }, { "key": "32370", "source": "2211", "target": "867", "attributes": { "weight": 1 } }, { "key": "29412", "source": "2211", "target": "861", "attributes": { "weight": 2 } }, { "key": "32362", "source": "2211", "target": "864", "attributes": { "weight": 1 } }, { "key": "32365", "source": "2211", "target": "2861", "attributes": { "weight": 1 } }, { "key": "24667", "source": "2211", "target": "5", "attributes": { "weight": 1 } }, { "key": "30441", "source": "2211", "target": "433", "attributes": { "weight": 1 } }, { "key": "32374", "source": "2211", "target": "869", "attributes": { "weight": 1 } }, { "key": "32350", "source": "2211", "target": "3091", "attributes": { "weight": 1 } }, { "key": "32368", "source": "2211", "target": "3099", "attributes": { "weight": 1 } }, { "key": "29414", "source": "2211", "target": "490", "attributes": { "weight": 1 } }, { "key": "32354", "source": "2211", "target": "3094", "attributes": { "weight": 1 } }, { "key": "32359", "source": "2211", "target": "862", "attributes": { "weight": 1 } }, { "key": "32371", "source": "2211", "target": "2864", "attributes": { "weight": 1 } }, { "key": "29415", "source": "2211", "target": "495", "attributes": { "weight": 2 } }, { "key": "32372", "source": "2211", "target": "2865", "attributes": { "weight": 1 } }, { "key": "32366", "source": "2211", "target": "3097", "attributes": { "weight": 1 } }, { "key": "32352", "source": "2211", "target": "424", "attributes": { "weight": 1 } }, { "key": "26451", "source": "2211", "target": "189", "attributes": { "weight": 1 } }, { "key": "29413", "source": "2211", "target": "232", "attributes": { "weight": 2 } }, { "key": "32356", "source": "2211", "target": "3095", "attributes": { "weight": 1 } }, { "key": "25792", "source": "2211", "target": "2114", "attributes": { "weight": 3 } }, { "key": "32357", "source": "2211", "target": "859", "attributes": { "weight": 1 } }, { "key": "32364", "source": "2211", "target": "866", "attributes": { "weight": 1 } }, { "key": "22122", "source": "2212", "target": "2296", "attributes": { "weight": 1 } }, { "key": "22144", "source": "2212", "target": "930", "attributes": { "weight": 1 } }, { "key": "22109", "source": "2212", "target": "910", "attributes": { "weight": 1 } }, { "key": "22112", "source": "2212", "target": "912", "attributes": { "weight": 1 } }, { "key": "22121", "source": "2212", "target": "918", "attributes": { "weight": 1 } }, { "key": "22116", "source": "2212", "target": "1211", "attributes": { "weight": 1 } }, { "key": "22126", "source": "2212", "target": "2298", "attributes": { "weight": 1 } }, { "key": "22128", "source": "2212", "target": "1255", "attributes": { "weight": 1 } }, { "key": "22118", "source": "2212", "target": "916", "attributes": { "weight": 1 } }, { "key": "22119", "source": "2212", "target": "1225", "attributes": { "weight": 1 } }, { "key": "22141", "source": "2212", "target": "1339", "attributes": { "weight": 1 } }, { "key": "22106", "source": "2212", "target": "2294", "attributes": { "weight": 1 } }, { "key": "22117", "source": "2212", "target": "915", "attributes": { "weight": 1 } }, { "key": "22138", "source": "2212", "target": "1563", "attributes": { "weight": 1 } }, { "key": "22105", "source": "2212", "target": "2021", "attributes": { "weight": 1 } }, { "key": "22101", "source": "2212", "target": "1519", "attributes": { "weight": 1 } }, { "key": "22135", "source": "2212", "target": "2302", "attributes": { "weight": 1 } }, { "key": "22136", "source": "2212", "target": "2304", "attributes": { "weight": 1 } }, { "key": "22140", "source": "2212", "target": "3413", "attributes": { "weight": 1 } }, { "key": "22102", "source": "2212", "target": "1153", "attributes": { "weight": 1 } }, { "key": "22103", "source": "2212", "target": "1154", "attributes": { "weight": 1 } }, { "key": "22143", "source": "2212", "target": "1342", "attributes": { "weight": 1 } }, { "key": "22107", "source": "2212", "target": "1164", "attributes": { "weight": 1 } }, { "key": "22124", "source": "2212", "target": "2297", "attributes": { "weight": 1 } }, { "key": "22132", "source": "2212", "target": "956", "attributes": { "weight": 1 } }, { "key": "22123", "source": "2212", "target": "1230", "attributes": { "weight": 1 } }, { "key": "22113", "source": "2212", "target": "1199", "attributes": { "weight": 1 } }, { "key": "18479", "source": "2212", "target": "1738", "attributes": { "weight": 1 } }, { "key": "22134", "source": "2212", "target": "1293", "attributes": { "weight": 1 } }, { "key": "22100", "source": "2212", "target": "1138", "attributes": { "weight": 1 } }, { "key": "22115", "source": "2212", "target": "1205", "attributes": { "weight": 1 } }, { "key": "22130", "source": "2212", "target": "1271", "attributes": { "weight": 1 } }, { "key": "29016", "source": "2212", "target": "371", "attributes": { "weight": 1 } }, { "key": "22139", "source": "2212", "target": "1324", "attributes": { "weight": 1 } }, { "key": "22108", "source": "2212", "target": "1171", "attributes": { "weight": 1 } }, { "key": "22110", "source": "2212", "target": "1181", "attributes": { "weight": 1 } }, { "key": "22114", "source": "2212", "target": "1200", "attributes": { "weight": 1 } }, { "key": "22145", "source": "2212", "target": "931", "attributes": { "weight": 1 } }, { "key": "22129", "source": "2212", "target": "923", "attributes": { "weight": 1 } }, { "key": "22125", "source": "2212", "target": "919", "attributes": { "weight": 1 } }, { "key": "22131", "source": "2212", "target": "1286", "attributes": { "weight": 1 } }, { "key": "22104", "source": "2212", "target": "1160", "attributes": { "weight": 1 } }, { "key": "22133", "source": "2212", "target": "1691", "attributes": { "weight": 1 } }, { "key": "22111", "source": "2212", "target": "2295", "attributes": { "weight": 1 } }, { "key": "22142", "source": "2212", "target": "1340", "attributes": { "weight": 1 } }, { "key": "22137", "source": "2212", "target": "927", "attributes": { "weight": 1 } }, { "key": "22146", "source": "2212", "target": "2308", "attributes": { "weight": 1 } }, { "key": "22120", "source": "2212", "target": "917", "attributes": { "weight": 1 } }, { "key": "22127", "source": "2212", "target": "920", "attributes": { "weight": 1 } }, { "key": "18486", "source": "2213", "target": "1227", "attributes": { "weight": 1 } }, { "key": "18487", "source": "2213", "target": "1280", "attributes": { "weight": 1 } }, { "key": "28747", "source": "2213", "target": "1146", "attributes": { "weight": 3 } }, { "key": "18490", "source": "2214", "target": "1280", "attributes": { "weight": 2 } }, { "key": "18489", "source": "2214", "target": "1227", "attributes": { "weight": 2 } }, { "key": "18491", "source": "2215", "target": "2222", "attributes": { "weight": 1 } }, { "key": "24297", "source": "2216", "target": "2480", "attributes": { "weight": 1 } }, { "key": "24299", "source": "2216", "target": "2482", "attributes": { "weight": 1 } }, { "key": "24306", "source": "2216", "target": "2488", "attributes": { "weight": 1 } }, { "key": "24308", "source": "2216", "target": "2490", "attributes": { "weight": 1 } }, { "key": "24290", "source": "2216", "target": "2474", "attributes": { "weight": 1 } }, { "key": "24294", "source": "2216", "target": "2477", "attributes": { "weight": 1 } }, { "key": "24301", "source": "2216", "target": "1280", "attributes": { "weight": 2 } }, { "key": "24296", "source": "2216", "target": "2479", "attributes": { "weight": 1 } }, { "key": "24302", "source": "2216", "target": "2484", "attributes": { "weight": 1 } }, { "key": "24295", "source": "2216", "target": "2478", "attributes": { "weight": 1 } }, { "key": "29947", "source": "2216", "target": "1952", "attributes": { "weight": 1 } }, { "key": "18492", "source": "2216", "target": "2228", "attributes": { "weight": 3 } }, { "key": "24300", "source": "2216", "target": "2483", "attributes": { "weight": 1 } }, { "key": "24304", "source": "2216", "target": "2486", "attributes": { "weight": 1 } }, { "key": "24307", "source": "2216", "target": "2489", "attributes": { "weight": 1 } }, { "key": "24305", "source": "2216", "target": "2487", "attributes": { "weight": 1 } }, { "key": "24303", "source": "2216", "target": "2485", "attributes": { "weight": 1 } }, { "key": "24293", "source": "2216", "target": "2476", "attributes": { "weight": 1 } }, { "key": "24291", "source": "2216", "target": "1166", "attributes": { "weight": 2 } }, { "key": "18496", "source": "2217", "target": "2222", "attributes": { "weight": 1 } }, { "key": "18497", "source": "2218", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18498", "source": "2218", "target": "2222", "attributes": { "weight": 1 } }, { "key": "18500", "source": "2219", "target": "2222", "attributes": { "weight": 1 } }, { "key": "18499", "source": "2219", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18501", "source": "2220", "target": "2222", "attributes": { "weight": 1 } }, { "key": "18520", "source": "2221", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18526", "source": "2222", "target": "2220", "attributes": { "weight": 1 } }, { "key": "18531", "source": "2222", "target": "2226", "attributes": { "weight": 1 } }, { "key": "18528", "source": "2222", "target": "2223", "attributes": { "weight": 1 } }, { "key": "18525", "source": "2222", "target": "2219", "attributes": { "weight": 1 } }, { "key": "18527", "source": "2222", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18524", "source": "2222", "target": "2218", "attributes": { "weight": 1 } }, { "key": "18523", "source": "2222", "target": "2217", "attributes": { "weight": 1 } }, { "key": "18529", "source": "2222", "target": "310", "attributes": { "weight": 1 } }, { "key": "18522", "source": "2222", "target": "2215", "attributes": { "weight": 1 } }, { "key": "18532", "source": "2222", "target": "2227", "attributes": { "weight": 1 } }, { "key": "18521", "source": "2222", "target": "1146", "attributes": { "weight": 1 } }, { "key": "18530", "source": "2222", "target": "2224", "attributes": { "weight": 1 } }, { "key": "18535", "source": "2223", "target": "2226", "attributes": { "weight": 1 } }, { "key": "18533", "source": "2223", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18534", "source": "2223", "target": "2222", "attributes": { "weight": 1 } }, { "key": "35388", "source": "2224", "target": "310", "attributes": { "weight": 1 } }, { "key": "18539", "source": "2224", "target": "2222", "attributes": { "weight": 1 } }, { "key": "18538", "source": "2224", "target": "1280", "attributes": { "weight": 1 } }, { "key": "28843", "source": "2224", "target": "1146", "attributes": { "weight": 2 } }, { "key": "29001", "source": "2225", "target": "2830", "attributes": { "weight": 1 } }, { "key": "29000", "source": "2225", "target": "2829", "attributes": { "weight": 1 } }, { "key": "18540", "source": "2225", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18541", "source": "2226", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18542", "source": "2226", "target": "2222", "attributes": { "weight": 1 } }, { "key": "18543", "source": "2226", "target": "2223", "attributes": { "weight": 1 } }, { "key": "18544", "source": "2227", "target": "2222", "attributes": { "weight": 1 } }, { "key": "28320", "source": "2228", "target": "2742", "attributes": { "weight": 1 } }, { "key": "28327", "source": "2228", "target": "2752", "attributes": { "weight": 1 } }, { "key": "18546", "source": "2228", "target": "1280", "attributes": { "weight": 2 } }, { "key": "28321", "source": "2228", "target": "2745", "attributes": { "weight": 2 } }, { "key": "28329", "source": "2228", "target": "2756", "attributes": { "weight": 1 } }, { "key": "28326", "source": "2228", "target": "310", "attributes": { "weight": 2 } }, { "key": "18545", "source": "2228", "target": "2216", "attributes": { "weight": 3 } }, { "key": "28323", "source": "2228", "target": "2747", "attributes": { "weight": 1 } }, { "key": "28319", "source": "2228", "target": "2740", "attributes": { "weight": 1 } }, { "key": "28315", "source": "2228", "target": "2735", "attributes": { "weight": 1 } }, { "key": "28325", "source": "2228", "target": "2751", "attributes": { "weight": 1 } }, { "key": "28313", "source": "2228", "target": "1166", "attributes": { "weight": 3 } }, { "key": "28312", "source": "2228", "target": "1146", "attributes": { "weight": 2 } }, { "key": "28322", "source": "2228", "target": "2746", "attributes": { "weight": 1 } }, { "key": "28316", "source": "2228", "target": "2736", "attributes": { "weight": 1 } }, { "key": "28328", "source": "2228", "target": "2753", "attributes": { "weight": 1 } }, { "key": "28324", "source": "2228", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28317", "source": "2228", "target": "2738", "attributes": { "weight": 1 } }, { "key": "28314", "source": "2228", "target": "2734", "attributes": { "weight": 1 } }, { "key": "28318", "source": "2228", "target": "2739", "attributes": { "weight": 1 } }, { "key": "34228", "source": "2229", "target": "1233", "attributes": { "weight": 1 } }, { "key": "36592", "source": "2229", "target": "405", "attributes": { "weight": 1 } }, { "key": "36591", "source": "2229", "target": "1526", "attributes": { "weight": 1 } }, { "key": "36590", "source": "2229", "target": "1152", "attributes": { "weight": 1 } }, { "key": "18713", "source": "2229", "target": "1260", "attributes": { "weight": 1 } }, { "key": "18712", "source": "2229", "target": "1228", "attributes": { "weight": 2 } }, { "key": "28645", "source": "2230", "target": "313", "attributes": { "weight": 1 } }, { "key": "22241", "source": "2230", "target": "268", "attributes": { "weight": 1 } }, { "key": "22242", "source": "2230", "target": "308", "attributes": { "weight": 3 } }, { "key": "19047", "source": "2230", "target": "305", "attributes": { "weight": 2 } }, { "key": "19064", "source": "2231", "target": "2118", "attributes": { "weight": 1 } }, { "key": "24595", "source": "2232", "target": "339", "attributes": { "weight": 1 } }, { "key": "24594", "source": "2232", "target": "645", "attributes": { "weight": 1 } }, { "key": "19070", "source": "2232", "target": "2118", "attributes": { "weight": 2 } }, { "key": "19066", "source": "2232", "target": "1045", "attributes": { "weight": 2 } }, { "key": "37076", "source": "2232", "target": "2579", "attributes": { "weight": 1 } }, { "key": "19065", "source": "2232", "target": "2233", "attributes": { "weight": 1 } }, { "key": "19068", "source": "2232", "target": "162", "attributes": { "weight": 1 } }, { "key": "19067", "source": "2232", "target": "2235", "attributes": { "weight": 1 } }, { "key": "24599", "source": "2232", "target": "1060", "attributes": { "weight": 1 } }, { "key": "19071", "source": "2232", "target": "794", "attributes": { "weight": 1 } }, { "key": "24593", "source": "2232", "target": "1036", "attributes": { "weight": 1 } }, { "key": "34858", "source": "2232", "target": "2511", "attributes": { "weight": 1 } }, { "key": "24598", "source": "2232", "target": "359", "attributes": { "weight": 2 } }, { "key": "24597", "source": "2232", "target": "358", "attributes": { "weight": 2 } }, { "key": "32296", "source": "2232", "target": "791", "attributes": { "weight": 1 } }, { "key": "24592", "source": "2232", "target": "889", "attributes": { "weight": 2 } }, { "key": "24596", "source": "2232", "target": "1046", "attributes": { "weight": 1 } }, { "key": "19069", "source": "2232", "target": "2237", "attributes": { "weight": 1 } }, { "key": "31836", "source": "2233", "target": "2125", "attributes": { "weight": 1 } }, { "key": "19073", "source": "2233", "target": "2118", "attributes": { "weight": 1 } }, { "key": "19072", "source": "2233", "target": "2232", "attributes": { "weight": 1 } }, { "key": "31833", "source": "2233", "target": "2115", "attributes": { "weight": 1 } }, { "key": "21501", "source": "2233", "target": "358", "attributes": { "weight": 1 } }, { "key": "31832", "source": "2233", "target": "359", "attributes": { "weight": 2 } }, { "key": "22258", "source": "2233", "target": "794", "attributes": { "weight": 1 } }, { "key": "31831", "source": "2233", "target": "1045", "attributes": { "weight": 1 } }, { "key": "31834", "source": "2233", "target": "1060", "attributes": { "weight": 2 } }, { "key": "31835", "source": "2233", "target": "2124", "attributes": { "weight": 1 } }, { "key": "27798", "source": "2233", "target": "339", "attributes": { "weight": 3 } }, { "key": "19074", "source": "2234", "target": "2118", "attributes": { "weight": 1 } }, { "key": "24621", "source": "2235", "target": "1036", "attributes": { "weight": 1 } }, { "key": "19077", "source": "2235", "target": "2232", "attributes": { "weight": 1 } }, { "key": "19078", "source": "2235", "target": "2118", "attributes": { "weight": 2 } }, { "key": "24622", "source": "2235", "target": "359", "attributes": { "weight": 1 } }, { "key": "24626", "source": "2236", "target": "359", "attributes": { "weight": 1 } }, { "key": "19079", "source": "2236", "target": "2118", "attributes": { "weight": 2 } }, { "key": "24625", "source": "2236", "target": "339", "attributes": { "weight": 1 } }, { "key": "24624", "source": "2236", "target": "889", "attributes": { "weight": 1 } }, { "key": "24639", "source": "2237", "target": "339", "attributes": { "weight": 1 } }, { "key": "19082", "source": "2237", "target": "2232", "attributes": { "weight": 2 } }, { "key": "19085", "source": "2237", "target": "794", "attributes": { "weight": 1 } }, { "key": "19083", "source": "2237", "target": "2118", "attributes": { "weight": 2 } }, { "key": "19084", "source": "2237", "target": "2238", "attributes": { "weight": 2 } }, { "key": "24642", "source": "2237", "target": "1056", "attributes": { "weight": 1 } }, { "key": "24638", "source": "2237", "target": "1036", "attributes": { "weight": 1 } }, { "key": "24641", "source": "2237", "target": "359", "attributes": { "weight": 1 } }, { "key": "24640", "source": "2237", "target": "358", "attributes": { "weight": 1 } }, { "key": "19093", "source": "2238", "target": "2237", "attributes": { "weight": 2 } }, { "key": "19097", "source": "2239", "target": "2118", "attributes": { "weight": 2 } }, { "key": "24657", "source": "2239", "target": "359", "attributes": { "weight": 1 } }, { "key": "19096", "source": "2239", "target": "161", "attributes": { "weight": 1 } }, { "key": "24656", "source": "2239", "target": "339", "attributes": { "weight": 1 } }, { "key": "19095", "source": "2239", "target": "1045", "attributes": { "weight": 1 } }, { "key": "24658", "source": "2239", "target": "1060", "attributes": { "weight": 1 } }, { "key": "19485", "source": "2240", "target": "489", "attributes": { "weight": 1 } }, { "key": "19598", "source": "2241", "target": "449", "attributes": { "weight": 1 } }, { "key": "19597", "source": "2241", "target": "435", "attributes": { "weight": 1 } }, { "key": "19599", "source": "2241", "target": "489", "attributes": { "weight": 1 } }, { "key": "19608", "source": "2242", "target": "2095", "attributes": { "weight": 1 } }, { "key": "19605", "source": "2242", "target": "472", "attributes": { "weight": 1 } }, { "key": "19606", "source": "2242", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19601", "source": "2242", "target": "51", "attributes": { "weight": 1 } }, { "key": "19604", "source": "2242", "target": "2258", "attributes": { "weight": 1 } }, { "key": "19602", "source": "2242", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19603", "source": "2242", "target": "450", "attributes": { "weight": 1 } }, { "key": "19600", "source": "2242", "target": "438", "attributes": { "weight": 1 } }, { "key": "19607", "source": "2242", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19638", "source": "2243", "target": "2267", "attributes": { "weight": 1 } }, { "key": "19639", "source": "2243", "target": "489", "attributes": { "weight": 1 } }, { "key": "19631", "source": "2243", "target": "2106", "attributes": { "weight": 1 } }, { "key": "19630", "source": "2243", "target": "1522", "attributes": { "weight": 1 } }, { "key": "19635", "source": "2243", "target": "1832", "attributes": { "weight": 1 } }, { "key": "19634", "source": "2243", "target": "2248", "attributes": { "weight": 1 } }, { "key": "19636", "source": "2243", "target": "1836", "attributes": { "weight": 1 } }, { "key": "19632", "source": "2243", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19637", "source": "2243", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19633", "source": "2243", "target": "449", "attributes": { "weight": 1 } }, { "key": "19698", "source": "2244", "target": "453", "attributes": { "weight": 1 } }, { "key": "19685", "source": "2244", "target": "439", "attributes": { "weight": 1 } }, { "key": "19718", "source": "2244", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19695", "source": "2244", "target": "450", "attributes": { "weight": 1 } }, { "key": "19689", "source": "2244", "target": "441", "attributes": { "weight": 1 } }, { "key": "19694", "source": "2244", "target": "449", "attributes": { "weight": 1 } }, { "key": "35870", "source": "2244", "target": "1026", "attributes": { "weight": 1 } }, { "key": "19719", "source": "2244", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19708", "source": "2244", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19712", "source": "2244", "target": "478", "attributes": { "weight": 1 } }, { "key": "19686", "source": "2244", "target": "2025", "attributes": { "weight": 1 } }, { "key": "19700", "source": "2244", "target": "1998", "attributes": { "weight": 1 } }, { "key": "19701", "source": "2244", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19704", "source": "2244", "target": "471", "attributes": { "weight": 1 } }, { "key": "19683", "source": "2244", "target": "1522", "attributes": { "weight": 1 } }, { "key": "19702", "source": "2244", "target": "459", "attributes": { "weight": 1 } }, { "key": "19690", "source": "2244", "target": "443", "attributes": { "weight": 1 } }, { "key": "19720", "source": "2244", "target": "1375", "attributes": { "weight": 1 } }, { "key": "19684", "source": "2244", "target": "50", "attributes": { "weight": 1 } }, { "key": "19707", "source": "2244", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19693", "source": "2244", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19688", "source": "2244", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19692", "source": "2244", "target": "1759", "attributes": { "weight": 1 } }, { "key": "19682", "source": "2244", "target": "49", "attributes": { "weight": 1 } }, { "key": "19717", "source": "2244", "target": "489", "attributes": { "weight": 1 } }, { "key": "19705", "source": "2244", "target": "472", "attributes": { "weight": 1 } }, { "key": "19715", "source": "2244", "target": "2271", "attributes": { "weight": 1 } }, { "key": "19714", "source": "2244", "target": "2095", "attributes": { "weight": 1 } }, { "key": "19681", "source": "2244", "target": "130", "attributes": { "weight": 1 } }, { "key": "19723", "source": "2244", "target": "498", "attributes": { "weight": 1 } }, { "key": "35869", "source": "2244", "target": "465", "attributes": { "weight": 1 } }, { "key": "19713", "source": "2244", "target": "482", "attributes": { "weight": 1 } }, { "key": "19696", "source": "2244", "target": "2248", "attributes": { "weight": 1 } }, { "key": "19699", "source": "2244", "target": "186", "attributes": { "weight": 1 } }, { "key": "35868", "source": "2244", "target": "1025", "attributes": { "weight": 1 } }, { "key": "19679", "source": "2244", "target": "429", "attributes": { "weight": 1 } }, { "key": "19721", "source": "2244", "target": "1390", "attributes": { "weight": 1 } }, { "key": "35867", "source": "2244", "target": "1760", "attributes": { "weight": 1 } }, { "key": "19706", "source": "2244", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19711", "source": "2244", "target": "231", "attributes": { "weight": 1 } }, { "key": "19697", "source": "2244", "target": "1832", "attributes": { "weight": 1 } }, { "key": "19716", "source": "2244", "target": "487", "attributes": { "weight": 1 } }, { "key": "19703", "source": "2244", "target": "464", "attributes": { "weight": 1 } }, { "key": "19680", "source": "2244", "target": "1756", "attributes": { "weight": 1 } }, { "key": "35871", "source": "2244", "target": "1778", "attributes": { "weight": 1 } }, { "key": "19687", "source": "2244", "target": "440", "attributes": { "weight": 1 } }, { "key": "19709", "source": "2244", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19722", "source": "2244", "target": "2276", "attributes": { "weight": 1 } }, { "key": "19710", "source": "2244", "target": "2267", "attributes": { "weight": 1 } }, { "key": "19691", "source": "2244", "target": "1070", "attributes": { "weight": 1 } }, { "key": "19752", "source": "2245", "target": "449", "attributes": { "weight": 1 } }, { "key": "19738", "source": "2245", "target": "49", "attributes": { "weight": 1 } }, { "key": "19780", "source": "2245", "target": "1770", "attributes": { "weight": 1 } }, { "key": "19801", "source": "2245", "target": "1376", "attributes": { "weight": 1 } }, { "key": "19767", "source": "2245", "target": "471", "attributes": { "weight": 1 } }, { "key": "19746", "source": "2245", "target": "441", "attributes": { "weight": 1 } }, { "key": "19749", "source": "2245", "target": "1070", "attributes": { "weight": 1 } }, { "key": "19802", "source": "2245", "target": "2276", "attributes": { "weight": 1 } }, { "key": "19800", "source": "2245", "target": "1390", "attributes": { "weight": 1 } }, { "key": "19739", "source": "2245", "target": "221", "attributes": { "weight": 1 } }, { "key": "19755", "source": "2245", "target": "451", "attributes": { "weight": 1 } }, { "key": "19734", "source": "2245", "target": "1756", "attributes": { "weight": 1 } }, { "key": "19748", "source": "2245", "target": "443", "attributes": { "weight": 1 } }, { "key": "19757", "source": "2245", "target": "2249", "attributes": { "weight": 1 } }, { "key": "19777", "source": "2245", "target": "1126", "attributes": { "weight": 1 } }, { "key": "19744", "source": "2245", "target": "2025", "attributes": { "weight": 1 } }, { "key": "19772", "source": "2245", "target": "2262", "attributes": { "weight": 1 } }, { "key": "35891", "source": "2245", "target": "1026", "attributes": { "weight": 1 } }, { "key": "19733", "source": "2245", "target": "429", "attributes": { "weight": 1 } }, { "key": "19805", "source": "2245", "target": "1094", "attributes": { "weight": 1 } }, { "key": "19742", "source": "2245", "target": "50", "attributes": { "weight": 1 } }, { "key": "19750", "source": "2245", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19781", "source": "2245", "target": "481", "attributes": { "weight": 1 } }, { "key": "19776", "source": "2245", "target": "1812", "attributes": { "weight": 1 } }, { "key": "19804", "source": "2245", "target": "2278", "attributes": { "weight": 1 } }, { "key": "19774", "source": "2245", "target": "1708", "attributes": { "weight": 1 } }, { "key": "19747", "source": "2245", "target": "2243", "attributes": { "weight": 1 } }, { "key": "19803", "source": "2245", "target": "194", "attributes": { "weight": 1 } }, { "key": "19785", "source": "2245", "target": "2269", "attributes": { "weight": 1 } }, { "key": "19737", "source": "2245", "target": "130", "attributes": { "weight": 1 } }, { "key": "19788", "source": "2245", "target": "2271", "attributes": { "weight": 1 } }, { "key": "19783", "source": "2245", "target": "1560", "attributes": { "weight": 1 } }, { "key": "19768", "source": "2245", "target": "472", "attributes": { "weight": 1 } }, { "key": "19764", "source": "2245", "target": "1364", "attributes": { "weight": 1 } }, { "key": "19798", "source": "2245", "target": "235", "attributes": { "weight": 1 } }, { "key": "19758", "source": "2245", "target": "1117", "attributes": { "weight": 1 } }, { "key": "19796", "source": "2245", "target": "492", "attributes": { "weight": 1 } }, { "key": "19775", "source": "2245", "target": "2266", "attributes": { "weight": 1 } }, { "key": "19762", "source": "2245", "target": "459", "attributes": { "weight": 1 } }, { "key": "19792", "source": "2245", "target": "56", "attributes": { "weight": 1 } }, { "key": "19741", "source": "2245", "target": "222", "attributes": { "weight": 1 } }, { "key": "19794", "source": "2245", "target": "234", "attributes": { "weight": 1 } }, { "key": "19799", "source": "2245", "target": "1375", "attributes": { "weight": 1 } }, { "key": "19751", "source": "2245", "target": "1759", "attributes": { "weight": 1 } }, { "key": "19740", "source": "2245", "target": "1110", "attributes": { "weight": 1 } }, { "key": "19763", "source": "2245", "target": "464", "attributes": { "weight": 1 } }, { "key": "29388", "source": "2245", "target": "232", "attributes": { "weight": 1 } }, { "key": "35889", "source": "2245", "target": "1760", "attributes": { "weight": 1 } }, { "key": "19761", "source": "2245", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19756", "source": "2245", "target": "227", "attributes": { "weight": 1 } }, { "key": "19791", "source": "2245", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19745", "source": "2245", "target": "440", "attributes": { "weight": 2 } }, { "key": "19787", "source": "2245", "target": "2095", "attributes": { "weight": 1 } }, { "key": "19784", "source": "2245", "target": "1129", "attributes": { "weight": 1 } }, { "key": "19754", "source": "2245", "target": "1533", "attributes": { "weight": 1 } }, { "key": "19790", "source": "2245", "target": "491", "attributes": { "weight": 1 } }, { "key": "19771", "source": "2245", "target": "230", "attributes": { "weight": 1 } }, { "key": "19732", "source": "2245", "target": "1703", "attributes": { "weight": 1 } }, { "key": "35892", "source": "2245", "target": "428", "attributes": { "weight": 1 } }, { "key": "19766", "source": "2245", "target": "1122", "attributes": { "weight": 1 } }, { "key": "19795", "source": "2245", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19735", "source": "2245", "target": "1354", "attributes": { "weight": 1 } }, { "key": "19793", "source": "2245", "target": "1775", "attributes": { "weight": 1 } }, { "key": "19786", "source": "2245", "target": "483", "attributes": { "weight": 1 } }, { "key": "35888", "source": "2245", "target": "433", "attributes": { "weight": 1 } }, { "key": "19760", "source": "2245", "target": "1536", "attributes": { "weight": 1 } }, { "key": "19769", "source": "2245", "target": "229", "attributes": { "weight": 1 } }, { "key": "19743", "source": "2245", "target": "439", "attributes": { "weight": 1 } }, { "key": "19765", "source": "2245", "target": "54", "attributes": { "weight": 1 } }, { "key": "35890", "source": "2245", "target": "1547", "attributes": { "weight": 1 } }, { "key": "19773", "source": "2245", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19797", "source": "2245", "target": "1777", "attributes": { "weight": 1 } }, { "key": "19736", "source": "2245", "target": "431", "attributes": { "weight": 1 } }, { "key": "19759", "source": "2245", "target": "1358", "attributes": { "weight": 1 } }, { "key": "19731", "source": "2245", "target": "1353", "attributes": { "weight": 1 } }, { "key": "19778", "source": "2245", "target": "231", "attributes": { "weight": 1 } }, { "key": "19782", "source": "2245", "target": "482", "attributes": { "weight": 1 } }, { "key": "19753", "source": "2245", "target": "450", "attributes": { "weight": 1 } }, { "key": "19789", "source": "2245", "target": "487", "attributes": { "weight": 1 } }, { "key": "35893", "source": "2245", "target": "1092", "attributes": { "weight": 1 } }, { "key": "19770", "source": "2245", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19779", "source": "2245", "target": "480", "attributes": { "weight": 1 } }, { "key": "35894", "source": "2245", "target": "497", "attributes": { "weight": 1 } }, { "key": "19814", "source": "2246", "target": "470", "attributes": { "weight": 1 } }, { "key": "19815", "source": "2246", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19816", "source": "2246", "target": "482", "attributes": { "weight": 1 } }, { "key": "22868", "source": "2247", "target": "1359", "attributes": { "weight": 1 } }, { "key": "19818", "source": "2247", "target": "489", "attributes": { "weight": 1 } }, { "key": "19817", "source": "2247", "target": "1832", "attributes": { "weight": 1 } }, { "key": "23597", "source": "2248", "target": "471", "attributes": { "weight": 1 } }, { "key": "35926", "source": "2248", "target": "695", "attributes": { "weight": 1 } }, { "key": "23593", "source": "2248", "target": "860", "attributes": { "weight": 1 } }, { "key": "23590", "source": "2248", "target": "858", "attributes": { "weight": 1 } }, { "key": "19946", "source": "2248", "target": "235", "attributes": { "weight": 1 } }, { "key": "19938", "source": "2248", "target": "1744", "attributes": { "weight": 1 } }, { "key": "35930", "source": "2248", "target": "497", "attributes": { "weight": 1 } }, { "key": "19945", "source": "2248", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19931", "source": "2248", "target": "459", "attributes": { "weight": 2 } }, { "key": "23591", "source": "2248", "target": "222", "attributes": { "weight": 1 } }, { "key": "23603", "source": "2248", "target": "494", "attributes": { "weight": 1 } }, { "key": "23601", "source": "2248", "target": "232", "attributes": { "weight": 1 } }, { "key": "23587", "source": "2248", "target": "432", "attributes": { "weight": 1 } }, { "key": "19940", "source": "2248", "target": "480", "attributes": { "weight": 1 } }, { "key": "35924", "source": "2248", "target": "465", "attributes": { "weight": 1 } }, { "key": "19923", "source": "2248", "target": "443", "attributes": { "weight": 1 } }, { "key": "23589", "source": "2248", "target": "130", "attributes": { "weight": 1 } }, { "key": "19934", "source": "2248", "target": "2094", "attributes": { "weight": 1 } }, { "key": "19918", "source": "2248", "target": "1756", "attributes": { "weight": 1 } }, { "key": "23588", "source": "2248", "target": "424", "attributes": { "weight": 1 } }, { "key": "19921", "source": "2248", "target": "221", "attributes": { "weight": 1 } }, { "key": "19927", "source": "2248", "target": "449", "attributes": { "weight": 1 } }, { "key": "23592", "source": "2248", "target": "674", "attributes": { "weight": 1 } }, { "key": "19916", "source": "2248", "target": "1353", "attributes": { "weight": 1 } }, { "key": "23595", "source": "2248", "target": "1361", "attributes": { "weight": 1 } }, { "key": "23600", "source": "2248", "target": "1312", "attributes": { "weight": 1 } }, { "key": "19933", "source": "2248", "target": "54", "attributes": { "weight": 2 } }, { "key": "19937", "source": "2248", "target": "1838", "attributes": { "weight": 1 } }, { "key": "19947", "source": "2248", "target": "2276", "attributes": { "weight": 1 } }, { "key": "35919", "source": "2248", "target": "433", "attributes": { "weight": 1 } }, { "key": "35921", "source": "2248", "target": "1760", "attributes": { "weight": 1 } }, { "key": "23594", "source": "2248", "target": "2252", "attributes": { "weight": 1 } }, { "key": "19928", "source": "2248", "target": "451", "attributes": { "weight": 2 } }, { "key": "19941", "source": "2248", "target": "482", "attributes": { "weight": 1 } }, { "key": "35928", "source": "2248", "target": "1092", "attributes": { "weight": 1 } }, { "key": "19919", "source": "2248", "target": "1354", "attributes": { "weight": 2 } }, { "key": "19943", "source": "2248", "target": "489", "attributes": { "weight": 1 } }, { "key": "19935", "source": "2248", "target": "1367", "attributes": { "weight": 1 } }, { "key": "35920", "source": "2248", "target": "440", "attributes": { "weight": 1 } }, { "key": "19944", "source": "2248", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19936", "source": "2248", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19939", "source": "2248", "target": "231", "attributes": { "weight": 2 } }, { "key": "23596", "source": "2248", "target": "470", "attributes": { "weight": 1 } }, { "key": "19922", "source": "2248", "target": "2243", "attributes": { "weight": 1 } }, { "key": "23602", "source": "2248", "target": "193", "attributes": { "weight": 1 } }, { "key": "35925", "source": "2248", "target": "1026", "attributes": { "weight": 1 } }, { "key": "23604", "source": "2248", "target": "1375", "attributes": { "weight": 1 } }, { "key": "19929", "source": "2248", "target": "227", "attributes": { "weight": 1 } }, { "key": "19942", "source": "2248", "target": "2269", "attributes": { "weight": 1 } }, { "key": "35922", "source": "2248", "target": "3271", "attributes": { "weight": 1 } }, { "key": "23598", "source": "2248", "target": "190", "attributes": { "weight": 1 } }, { "key": "19930", "source": "2248", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19917", "source": "2248", "target": "429", "attributes": { "weight": 2 } }, { "key": "23599", "source": "2248", "target": "474", "attributes": { "weight": 1 } }, { "key": "35927", "source": "2248", "target": "428", "attributes": { "weight": 1 } }, { "key": "19926", "source": "2248", "target": "445", "attributes": { "weight": 1 } }, { "key": "19920", "source": "2248", "target": "49", "attributes": { "weight": 1 } }, { "key": "19924", "source": "2248", "target": "1070", "attributes": { "weight": 1 } }, { "key": "19925", "source": "2248", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19932", "source": "2248", "target": "464", "attributes": { "weight": 1 } }, { "key": "35929", "source": "2248", "target": "1390", "attributes": { "weight": 1 } }, { "key": "35923", "source": "2248", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20056", "source": "2249", "target": "1836", "attributes": { "weight": 1 } }, { "key": "20054", "source": "2249", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20057", "source": "2249", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20055", "source": "2249", "target": "227", "attributes": { "weight": 1 } }, { "key": "37000", "source": "2250", "target": "183", "attributes": { "weight": 1 } }, { "key": "37001", "source": "2250", "target": "454", "attributes": { "weight": 1 } }, { "key": "20093", "source": "2250", "target": "1812", "attributes": { "weight": 1 } }, { "key": "20134", "source": "2251", "target": "1750", "attributes": { "weight": 1 } }, { "key": "20125", "source": "2251", "target": "231", "attributes": { "weight": 1 } }, { "key": "20115", "source": "2251", "target": "459", "attributes": { "weight": 1 } }, { "key": "20103", "source": "2251", "target": "441", "attributes": { "weight": 1 } }, { "key": "20114", "source": "2251", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20104", "source": "2251", "target": "224", "attributes": { "weight": 1 } }, { "key": "20095", "source": "2251", "target": "49", "attributes": { "weight": 1 } }, { "key": "20108", "source": "2251", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20094", "source": "2251", "target": "1756", "attributes": { "weight": 1 } }, { "key": "20101", "source": "2251", "target": "2025", "attributes": { "weight": 1 } }, { "key": "20123", "source": "2251", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20130", "source": "2251", "target": "1560", "attributes": { "weight": 1 } }, { "key": "20117", "source": "2251", "target": "1247", "attributes": { "weight": 1 } }, { "key": "20099", "source": "2251", "target": "438", "attributes": { "weight": 1 } }, { "key": "20107", "source": "2251", "target": "449", "attributes": { "weight": 1 } }, { "key": "20118", "source": "2251", "target": "2257", "attributes": { "weight": 1 } }, { "key": "20129", "source": "2251", "target": "482", "attributes": { "weight": 1 } }, { "key": "20126", "source": "2251", "target": "478", "attributes": { "weight": 1 } }, { "key": "20110", "source": "2251", "target": "453", "attributes": { "weight": 1 } }, { "key": "20120", "source": "2251", "target": "472", "attributes": { "weight": 1 } }, { "key": "20121", "source": "2251", "target": "1367", "attributes": { "weight": 1 } }, { "key": "36911", "source": "2251", "target": "1072", "attributes": { "weight": 1 } }, { "key": "20096", "source": "2251", "target": "221", "attributes": { "weight": 1 } }, { "key": "20098", "source": "2251", "target": "2106", "attributes": { "weight": 1 } }, { "key": "23614", "source": "2251", "target": "1312", "attributes": { "weight": 1 } }, { "key": "20122", "source": "2251", "target": "2260", "attributes": { "weight": 1 } }, { "key": "20100", "source": "2251", "target": "51", "attributes": { "weight": 1 } }, { "key": "20113", "source": "2251", "target": "2252", "attributes": { "weight": 1 } }, { "key": "36912", "source": "2251", "target": "2647", "attributes": { "weight": 1 } }, { "key": "23613", "source": "2251", "target": "220", "attributes": { "weight": 1 } }, { "key": "20097", "source": "2251", "target": "1522", "attributes": { "weight": 1 } }, { "key": "20132", "source": "2251", "target": "487", "attributes": { "weight": 1 } }, { "key": "20131", "source": "2251", "target": "2272", "attributes": { "weight": 1 } }, { "key": "20137", "source": "2251", "target": "498", "attributes": { "weight": 1 } }, { "key": "23337", "source": "2251", "target": "223", "attributes": { "weight": 1 } }, { "key": "20133", "source": "2251", "target": "489", "attributes": { "weight": 1 } }, { "key": "20109", "source": "2251", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20135", "source": "2251", "target": "1751", "attributes": { "weight": 1 } }, { "key": "20106", "source": "2251", "target": "448", "attributes": { "weight": 1 } }, { "key": "20136", "source": "2251", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20128", "source": "2251", "target": "1770", "attributes": { "weight": 1 } }, { "key": "20119", "source": "2251", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20111", "source": "2251", "target": "186", "attributes": { "weight": 1 } }, { "key": "20102", "source": "2251", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20127", "source": "2251", "target": "480", "attributes": { "weight": 1 } }, { "key": "20105", "source": "2251", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20124", "source": "2251", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20112", "source": "2251", "target": "1356", "attributes": { "weight": 1 } }, { "key": "20116", "source": "2251", "target": "464", "attributes": { "weight": 1 } }, { "key": "20139", "source": "2252", "target": "231", "attributes": { "weight": 2 } }, { "key": "20138", "source": "2252", "target": "2251", "attributes": { "weight": 1 } }, { "key": "23615", "source": "2252", "target": "451", "attributes": { "weight": 1 } }, { "key": "23616", "source": "2252", "target": "54", "attributes": { "weight": 1 } }, { "key": "23617", "source": "2252", "target": "2260", "attributes": { "weight": 1 } }, { "key": "20192", "source": "2253", "target": "489", "attributes": { "weight": 1 } }, { "key": "20188", "source": "2253", "target": "695", "attributes": { "weight": 1 } }, { "key": "20159", "source": "2253", "target": "1353", "attributes": { "weight": 1 } }, { "key": "20176", "source": "2253", "target": "2254", "attributes": { "weight": 1 } }, { "key": "20182", "source": "2253", "target": "231", "attributes": { "weight": 1 } }, { "key": "20199", "source": "2253", "target": "1376", "attributes": { "weight": 1 } }, { "key": "20180", "source": "2253", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20187", "source": "2253", "target": "2269", "attributes": { "weight": 1 } }, { "key": "20160", "source": "2253", "target": "429", "attributes": { "weight": 1 } }, { "key": "35969", "source": "2253", "target": "465", "attributes": { "weight": 1 } }, { "key": "20193", "source": "2253", "target": "491", "attributes": { "weight": 1 } }, { "key": "20190", "source": "2253", "target": "2271", "attributes": { "weight": 1 } }, { "key": "20183", "source": "2253", "target": "480", "attributes": { "weight": 1 } }, { "key": "20168", "source": "2253", "target": "1759", "attributes": { "weight": 1 } }, { "key": "20185", "source": "2253", "target": "481", "attributes": { "weight": 1 } }, { "key": "20195", "source": "2253", "target": "1751", "attributes": { "weight": 1 } }, { "key": "20173", "source": "2253", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20172", "source": "2253", "target": "227", "attributes": { "weight": 1 } }, { "key": "35971", "source": "2253", "target": "1092", "attributes": { "weight": 1 } }, { "key": "35970", "source": "2253", "target": "428", "attributes": { "weight": 1 } }, { "key": "20184", "source": "2253", "target": "1770", "attributes": { "weight": 1 } }, { "key": "20200", "source": "2253", "target": "499", "attributes": { "weight": 1 } }, { "key": "20178", "source": "2253", "target": "229", "attributes": { "weight": 1 } }, { "key": "20186", "source": "2253", "target": "482", "attributes": { "weight": 1 } }, { "key": "20163", "source": "2253", "target": "221", "attributes": { "weight": 1 } }, { "key": "20166", "source": "2253", "target": "1070", "attributes": { "weight": 1 } }, { "key": "35968", "source": "2253", "target": "440", "attributes": { "weight": 1 } }, { "key": "20162", "source": "2253", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20194", "source": "2253", "target": "56", "attributes": { "weight": 1 } }, { "key": "20174", "source": "2253", "target": "459", "attributes": { "weight": 1 } }, { "key": "20161", "source": "2253", "target": "1756", "attributes": { "weight": 1 } }, { "key": "20191", "source": "2253", "target": "487", "attributes": { "weight": 1 } }, { "key": "20201", "source": "2253", "target": "194", "attributes": { "weight": 1 } }, { "key": "20169", "source": "2253", "target": "449", "attributes": { "weight": 1 } }, { "key": "20196", "source": "2253", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20175", "source": "2253", "target": "2107", "attributes": { "weight": 1 } }, { "key": "20197", "source": "2253", "target": "235", "attributes": { "weight": 1 } }, { "key": "20170", "source": "2253", "target": "450", "attributes": { "weight": 1 } }, { "key": "20189", "source": "2253", "target": "2109", "attributes": { "weight": 1 } }, { "key": "20177", "source": "2253", "target": "470", "attributes": { "weight": 1 } }, { "key": "20181", "source": "2253", "target": "2265", "attributes": { "weight": 1 } }, { "key": "20198", "source": "2253", "target": "1375", "attributes": { "weight": 1 } }, { "key": "20164", "source": "2253", "target": "439", "attributes": { "weight": 1 } }, { "key": "20179", "source": "2253", "target": "230", "attributes": { "weight": 1 } }, { "key": "20171", "source": "2253", "target": "451", "attributes": { "weight": 1 } }, { "key": "20165", "source": "2253", "target": "441", "attributes": { "weight": 1 } }, { "key": "20167", "source": "2253", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20273", "source": "2254", "target": "449", "attributes": { "weight": 1 } }, { "key": "20283", "source": "2254", "target": "483", "attributes": { "weight": 1 } }, { "key": "20277", "source": "2254", "target": "135", "attributes": { "weight": 1 } }, { "key": "20272", "source": "2254", "target": "1759", "attributes": { "weight": 1 } }, { "key": "20270", "source": "2254", "target": "51", "attributes": { "weight": 1 } }, { "key": "20274", "source": "2254", "target": "450", "attributes": { "weight": 1 } }, { "key": "20279", "source": "2254", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20281", "source": "2254", "target": "1812", "attributes": { "weight": 1 } }, { "key": "20275", "source": "2254", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20269", "source": "2254", "target": "435", "attributes": { "weight": 1 } }, { "key": "20271", "source": "2254", "target": "441", "attributes": { "weight": 1 } }, { "key": "20284", "source": "2254", "target": "2095", "attributes": { "weight": 1 } }, { "key": "20286", "source": "2254", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20278", "source": "2254", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20282", "source": "2254", "target": "231", "attributes": { "weight": 1 } }, { "key": "20276", "source": "2254", "target": "462", "attributes": { "weight": 1 } }, { "key": "20268", "source": "2254", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20285", "source": "2254", "target": "489", "attributes": { "weight": 1 } }, { "key": "20280", "source": "2254", "target": "1838", "attributes": { "weight": 1 } }, { "key": "36000", "source": "2255", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20310", "source": "2255", "target": "231", "attributes": { "weight": 1 } }, { "key": "20311", "source": "2255", "target": "480", "attributes": { "weight": 1 } }, { "key": "20309", "source": "2255", "target": "221", "attributes": { "weight": 1 } }, { "key": "20316", "source": "2256", "target": "1836", "attributes": { "weight": 1 } }, { "key": "20315", "source": "2256", "target": "451", "attributes": { "weight": 1 } }, { "key": "20314", "source": "2256", "target": "435", "attributes": { "weight": 1 } }, { "key": "20318", "source": "2256", "target": "489", "attributes": { "weight": 1 } }, { "key": "20317", "source": "2256", "target": "2267", "attributes": { "weight": 1 } }, { "key": "20403", "source": "2257", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20402", "source": "2257", "target": "221", "attributes": { "weight": 1 } }, { "key": "20404", "source": "2257", "target": "2261", "attributes": { "weight": 1 } }, { "key": "33533", "source": "2258", "target": "473", "attributes": { "weight": 1 } }, { "key": "36013", "source": "2258", "target": "2042", "attributes": { "weight": 1 } }, { "key": "32765", "source": "2258", "target": "424", "attributes": { "weight": 2 } }, { "key": "33512", "source": "2258", "target": "1141", "attributes": { "weight": 1 } }, { "key": "20416", "source": "2258", "target": "1358", "attributes": { "weight": 2 } }, { "key": "33518", "source": "2258", "target": "440", "attributes": { "weight": 2 } }, { "key": "33521", "source": "2258", "target": "445", "attributes": { "weight": 1 } }, { "key": "33537", "source": "2258", "target": "494", "attributes": { "weight": 1 } }, { "key": "36017", "source": "2258", "target": "1026", "attributes": { "weight": 1 } }, { "key": "33536", "source": "2258", "target": "672", "attributes": { "weight": 1 } }, { "key": "33524", "source": "2258", "target": "1219", "attributes": { "weight": 1 } }, { "key": "33529", "source": "2258", "target": "1738", "attributes": { "weight": 1 } }, { "key": "20414", "source": "2258", "target": "449", "attributes": { "weight": 1 } }, { "key": "20411", "source": "2258", "target": "1756", "attributes": { "weight": 1 } }, { "key": "36026", "source": "2258", "target": "1390", "attributes": { "weight": 1 } }, { "key": "20422", "source": "2258", "target": "1367", "attributes": { "weight": 1 } }, { "key": "36006", "source": "2258", "target": "433", "attributes": { "weight": 1 } }, { "key": "37458", "source": "2258", "target": "1366", "attributes": { "weight": 1 } }, { "key": "36008", "source": "2258", "target": "1760", "attributes": { "weight": 1 } }, { "key": "20415", "source": "2258", "target": "2249", "attributes": { "weight": 1 } }, { "key": "32770", "source": "2258", "target": "1812", "attributes": { "weight": 2 } }, { "key": "33526", "source": "2258", "target": "188", "attributes": { "weight": 1 } }, { "key": "33517", "source": "2258", "target": "50", "attributes": { "weight": 1 } }, { "key": "20418", "source": "2258", "target": "2107", "attributes": { "weight": 1 } }, { "key": "33523", "source": "2258", "target": "450", "attributes": { "weight": 1 } }, { "key": "36028", "source": "2258", "target": "498", "attributes": { "weight": 1 } }, { "key": "36018", "source": "2258", "target": "478", "attributes": { "weight": 1 } }, { "key": "36024", "source": "2258", "target": "1778", "attributes": { "weight": 1 } }, { "key": "33513", "source": "2258", "target": "1354", "attributes": { "weight": 2 } }, { "key": "33528", "source": "2258", "target": "1834", "attributes": { "weight": 1 } }, { "key": "32764", "source": "2258", "target": "429", "attributes": { "weight": 3 } }, { "key": "36012", "source": "2258", "target": "1072", "attributes": { "weight": 1 } }, { "key": "36022", "source": "2258", "target": "1092", "attributes": { "weight": 1 } }, { "key": "32772", "source": "2258", "target": "2670", "attributes": { "weight": 3 } }, { "key": "33531", "source": "2258", "target": "471", "attributes": { "weight": 1 } }, { "key": "33538", "source": "2258", "target": "57", "attributes": { "weight": 1 } }, { "key": "36010", "source": "2258", "target": "3271", "attributes": { "weight": 1 } }, { "key": "32768", "source": "2258", "target": "459", "attributes": { "weight": 2 } }, { "key": "32771", "source": "2258", "target": "231", "attributes": { "weight": 3 } }, { "key": "27368", "source": "2258", "target": "340", "attributes": { "weight": 2 } }, { "key": "32766", "source": "2258", "target": "860", "attributes": { "weight": 2 } }, { "key": "20426", "source": "2258", "target": "2270", "attributes": { "weight": 1 } }, { "key": "33534", "source": "2258", "target": "474", "attributes": { "weight": 1 } }, { "key": "20412", "source": "2258", "target": "2025", "attributes": { "weight": 1 } }, { "key": "33525", "source": "2258", "target": "52", "attributes": { "weight": 1 } }, { "key": "20427", "source": "2258", "target": "56", "attributes": { "weight": 3 } }, { "key": "33519", "source": "2258", "target": "442", "attributes": { "weight": 1 } }, { "key": "20420", "source": "2258", "target": "54", "attributes": { "weight": 2 } }, { "key": "36009", "source": "2258", "target": "3270", "attributes": { "weight": 1 } }, { "key": "20425", "source": "2258", "target": "2269", "attributes": { "weight": 2 } }, { "key": "30730", "source": "2258", "target": "1762", "attributes": { "weight": 1 } }, { "key": "20417", "source": "2258", "target": "2251", "attributes": { "weight": 1 } }, { "key": "36027", "source": "2258", "target": "497", "attributes": { "weight": 1 } }, { "key": "36015", "source": "2258", "target": "1547", "attributes": { "weight": 1 } }, { "key": "36014", "source": "2258", "target": "465", "attributes": { "weight": 1 } }, { "key": "36025", "source": "2258", "target": "2208", "attributes": { "weight": 1 } }, { "key": "37457", "source": "2258", "target": "1217", "attributes": { "weight": 1 } }, { "key": "33520", "source": "2258", "target": "443", "attributes": { "weight": 1 } }, { "key": "33532", "source": "2258", "target": "229", "attributes": { "weight": 1 } }, { "key": "37459", "source": "2258", "target": "190", "attributes": { "weight": 1 } }, { "key": "36021", "source": "2258", "target": "428", "attributes": { "weight": 1 } }, { "key": "36011", "source": "2258", "target": "1360", "attributes": { "weight": 1 } }, { "key": "37455", "source": "2258", "target": "858", "attributes": { "weight": 1 } }, { "key": "33514", "source": "2258", "target": "220", "attributes": { "weight": 1 } }, { "key": "36020", "source": "2258", "target": "695", "attributes": { "weight": 1 } }, { "key": "20413", "source": "2258", "target": "2242", "attributes": { "weight": 1 } }, { "key": "36007", "source": "2258", "target": "2086", "attributes": { "weight": 1 } }, { "key": "33527", "source": "2258", "target": "458", "attributes": { "weight": 1 } }, { "key": "36016", "source": "2258", "target": "2259", "attributes": { "weight": 1 } }, { "key": "37456", "source": "2258", "target": "452", "attributes": { "weight": 1 } }, { "key": "20423", "source": "2258", "target": "1838", "attributes": { "weight": 1 } }, { "key": "33516", "source": "2258", "target": "2645", "attributes": { "weight": 1 } }, { "key": "36023", "source": "2258", "target": "1776", "attributes": { "weight": 1 } }, { "key": "33535", "source": "2258", "target": "480", "attributes": { "weight": 1 } }, { "key": "32767", "source": "2258", "target": "451", "attributes": { "weight": 3 } }, { "key": "32769", "source": "2258", "target": "53", "attributes": { "weight": 2 } }, { "key": "33522", "source": "2258", "target": "448", "attributes": { "weight": 1 } }, { "key": "25799", "source": "2258", "target": "791", "attributes": { "weight": 1 } }, { "key": "20419", "source": "2258", "target": "2254", "attributes": { "weight": 1 } }, { "key": "20410", "source": "2258", "target": "1353", "attributes": { "weight": 3 } }, { "key": "33530", "source": "2258", "target": "470", "attributes": { "weight": 1 } }, { "key": "33515", "source": "2258", "target": "130", "attributes": { "weight": 1 } }, { "key": "36019", "source": "2258", "target": "479", "attributes": { "weight": 1 } }, { "key": "20421", "source": "2258", "target": "2094", "attributes": { "weight": 1 } }, { "key": "20424", "source": "2258", "target": "482", "attributes": { "weight": 1 } }, { "key": "36030", "source": "2259", "target": "73", "attributes": { "weight": 1 } }, { "key": "35268", "source": "2259", "target": "452", "attributes": { "weight": 1 } }, { "key": "25480", "source": "2259", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20428", "source": "2259", "target": "489", "attributes": { "weight": 1 } }, { "key": "25481", "source": "2259", "target": "473", "attributes": { "weight": 1 } }, { "key": "36029", "source": "2259", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20556", "source": "2260", "target": "1354", "attributes": { "weight": 1 } }, { "key": "23641", "source": "2260", "target": "458", "attributes": { "weight": 1 } }, { "key": "20558", "source": "2260", "target": "451", "attributes": { "weight": 1 } }, { "key": "23640", "source": "2260", "target": "424", "attributes": { "weight": 1 } }, { "key": "20563", "source": "2260", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20559", "source": "2260", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20560", "source": "2260", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20557", "source": "2260", "target": "439", "attributes": { "weight": 1 } }, { "key": "20561", "source": "2260", "target": "231", "attributes": { "weight": 1 } }, { "key": "20562", "source": "2260", "target": "56", "attributes": { "weight": 1 } }, { "key": "20600", "source": "2261", "target": "459", "attributes": { "weight": 1 } }, { "key": "20588", "source": "2261", "target": "222", "attributes": { "weight": 1 } }, { "key": "20613", "source": "2261", "target": "487", "attributes": { "weight": 1 } }, { "key": "20587", "source": "2261", "target": "221", "attributes": { "weight": 1 } }, { "key": "20589", "source": "2261", "target": "439", "attributes": { "weight": 1 } }, { "key": "20616", "source": "2261", "target": "56", "attributes": { "weight": 1 } }, { "key": "20599", "source": "2261", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20614", "source": "2261", "target": "489", "attributes": { "weight": 1 } }, { "key": "20602", "source": "2261", "target": "54", "attributes": { "weight": 1 } }, { "key": "20597", "source": "2261", "target": "227", "attributes": { "weight": 1 } }, { "key": "20595", "source": "2261", "target": "450", "attributes": { "weight": 1 } }, { "key": "20594", "source": "2261", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20608", "source": "2261", "target": "480", "attributes": { "weight": 1 } }, { "key": "20593", "source": "2261", "target": "1070", "attributes": { "weight": 1 } }, { "key": "20584", "source": "2261", "target": "1756", "attributes": { "weight": 1 } }, { "key": "20617", "source": "2261", "target": "235", "attributes": { "weight": 1 } }, { "key": "20586", "source": "2261", "target": "431", "attributes": { "weight": 1 } }, { "key": "20611", "source": "2261", "target": "695", "attributes": { "weight": 1 } }, { "key": "20609", "source": "2261", "target": "1770", "attributes": { "weight": 1 } }, { "key": "20583", "source": "2261", "target": "429", "attributes": { "weight": 1 } }, { "key": "20604", "source": "2261", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20619", "source": "2261", "target": "194", "attributes": { "weight": 1 } }, { "key": "20582", "source": "2261", "target": "1353", "attributes": { "weight": 1 } }, { "key": "20615", "source": "2261", "target": "491", "attributes": { "weight": 1 } }, { "key": "20590", "source": "2261", "target": "2242", "attributes": { "weight": 1 } }, { "key": "20596", "source": "2261", "target": "451", "attributes": { "weight": 1 } }, { "key": "20591", "source": "2261", "target": "441", "attributes": { "weight": 1 } }, { "key": "20598", "source": "2261", "target": "1358", "attributes": { "weight": 1 } }, { "key": "20585", "source": "2261", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20606", "source": "2261", "target": "231", "attributes": { "weight": 1 } }, { "key": "20603", "source": "2261", "target": "2257", "attributes": { "weight": 1 } }, { "key": "20601", "source": "2261", "target": "1364", "attributes": { "weight": 1 } }, { "key": "20612", "source": "2261", "target": "2271", "attributes": { "weight": 1 } }, { "key": "20607", "source": "2261", "target": "477", "attributes": { "weight": 1 } }, { "key": "20605", "source": "2261", "target": "1708", "attributes": { "weight": 1 } }, { "key": "20610", "source": "2261", "target": "482", "attributes": { "weight": 1 } }, { "key": "20618", "source": "2261", "target": "1375", "attributes": { "weight": 1 } }, { "key": "20592", "source": "2261", "target": "443", "attributes": { "weight": 1 } }, { "key": "20634", "source": "2262", "target": "1070", "attributes": { "weight": 1 } }, { "key": "36054", "source": "2262", "target": "428", "attributes": { "weight": 1 } }, { "key": "20638", "source": "2262", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20646", "source": "2262", "target": "235", "attributes": { "weight": 1 } }, { "key": "20639", "source": "2262", "target": "1812", "attributes": { "weight": 1 } }, { "key": "20635", "source": "2262", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20630", "source": "2262", "target": "1110", "attributes": { "weight": 1 } }, { "key": "20631", "source": "2262", "target": "438", "attributes": { "weight": 1 } }, { "key": "20645", "source": "2262", "target": "489", "attributes": { "weight": 1 } }, { "key": "36050", "source": "2262", "target": "440", "attributes": { "weight": 1 } }, { "key": "36052", "source": "2262", "target": "465", "attributes": { "weight": 1 } }, { "key": "20627", "source": "2262", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20642", "source": "2262", "target": "483", "attributes": { "weight": 1 } }, { "key": "20632", "source": "2262", "target": "1023", "attributes": { "weight": 1 } }, { "key": "36055", "source": "2262", "target": "497", "attributes": { "weight": 1 } }, { "key": "20648", "source": "2262", "target": "194", "attributes": { "weight": 1 } }, { "key": "20626", "source": "2262", "target": "1756", "attributes": { "weight": 1 } }, { "key": "20637", "source": "2262", "target": "464", "attributes": { "weight": 1 } }, { "key": "20629", "source": "2262", "target": "221", "attributes": { "weight": 1 } }, { "key": "20640", "source": "2262", "target": "231", "attributes": { "weight": 1 } }, { "key": "20628", "source": "2262", "target": "130", "attributes": { "weight": 1 } }, { "key": "36053", "source": "2262", "target": "478", "attributes": { "weight": 1 } }, { "key": "20643", "source": "2262", "target": "484", "attributes": { "weight": 1 } }, { "key": "20633", "source": "2262", "target": "2242", "attributes": { "weight": 1 } }, { "key": "20641", "source": "2262", "target": "480", "attributes": { "weight": 1 } }, { "key": "20625", "source": "2262", "target": "429", "attributes": { "weight": 1 } }, { "key": "36051", "source": "2262", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20644", "source": "2262", "target": "487", "attributes": { "weight": 1 } }, { "key": "36049", "source": "2262", "target": "433", "attributes": { "weight": 1 } }, { "key": "20636", "source": "2262", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20647", "source": "2262", "target": "2276", "attributes": { "weight": 1 } }, { "key": "29133", "source": "2263", "target": "488", "attributes": { "weight": 1 } }, { "key": "29134", "source": "2263", "target": "500", "attributes": { "weight": 1 } }, { "key": "29132", "source": "2263", "target": "447", "attributes": { "weight": 1 } }, { "key": "20695", "source": "2263", "target": "489", "attributes": { "weight": 1 } }, { "key": "28945", "source": "2264", "target": "479", "attributes": { "weight": 2 } }, { "key": "20696", "source": "2264", "target": "489", "attributes": { "weight": 1 } }, { "key": "30498", "source": "2264", "target": "442", "attributes": { "weight": 1 } }, { "key": "20704", "source": "2265", "target": "489", "attributes": { "weight": 1 } }, { "key": "20703", "source": "2265", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20706", "source": "2266", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20707", "source": "2266", "target": "489", "attributes": { "weight": 1 } }, { "key": "20708", "source": "2266", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20705", "source": "2266", "target": "441", "attributes": { "weight": 1 } }, { "key": "36078", "source": "2266", "target": "1026", "attributes": { "weight": 1 } }, { "key": "20724", "source": "2267", "target": "130", "attributes": { "weight": 1 } }, { "key": "20721", "source": "2267", "target": "1353", "attributes": { "weight": 1 } }, { "key": "20730", "source": "2267", "target": "1358", "attributes": { "weight": 1 } }, { "key": "20737", "source": "2267", "target": "2269", "attributes": { "weight": 1 } }, { "key": "20723", "source": "2267", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20740", "source": "2267", "target": "2276", "attributes": { "weight": 1 } }, { "key": "20736", "source": "2267", "target": "231", "attributes": { "weight": 1 } }, { "key": "20725", "source": "2267", "target": "2243", "attributes": { "weight": 1 } }, { "key": "20722", "source": "2267", "target": "429", "attributes": { "weight": 1 } }, { "key": "20726", "source": "2267", "target": "443", "attributes": { "weight": 1 } }, { "key": "20727", "source": "2267", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20735", "source": "2267", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20741", "source": "2267", "target": "498", "attributes": { "weight": 1 } }, { "key": "20733", "source": "2267", "target": "54", "attributes": { "weight": 1 } }, { "key": "20729", "source": "2267", "target": "451", "attributes": { "weight": 1 } }, { "key": "20734", "source": "2267", "target": "2094", "attributes": { "weight": 1 } }, { "key": "20732", "source": "2267", "target": "2256", "attributes": { "weight": 1 } }, { "key": "20739", "source": "2267", "target": "56", "attributes": { "weight": 1 } }, { "key": "20731", "source": "2267", "target": "459", "attributes": { "weight": 1 } }, { "key": "20728", "source": "2267", "target": "449", "attributes": { "weight": 1 } }, { "key": "20738", "source": "2267", "target": "695", "attributes": { "weight": 1 } }, { "key": "20746", "source": "2268", "target": "489", "attributes": { "weight": 1 } }, { "key": "20745", "source": "2268", "target": "441", "attributes": { "weight": 1 } }, { "key": "20747", "source": "2268", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20744", "source": "2268", "target": "1756", "attributes": { "weight": 1 } }, { "key": "27171", "source": "2269", "target": "2645", "attributes": { "weight": 1 } }, { "key": "20888", "source": "2269", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20894", "source": "2269", "target": "2267", "attributes": { "weight": 1 } }, { "key": "20892", "source": "2269", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20895", "source": "2269", "target": "231", "attributes": { "weight": 1 } }, { "key": "20891", "source": "2269", "target": "1836", "attributes": { "weight": 1 } }, { "key": "20889", "source": "2269", "target": "1832", "attributes": { "weight": 1 } }, { "key": "27172", "source": "2269", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20890", "source": "2269", "target": "2253", "attributes": { "weight": 1 } }, { "key": "23368", "source": "2269", "target": "223", "attributes": { "weight": 1 } }, { "key": "20886", "source": "2269", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20887", "source": "2269", "target": "449", "attributes": { "weight": 1 } }, { "key": "20884", "source": "2269", "target": "435", "attributes": { "weight": 1 } }, { "key": "20896", "source": "2269", "target": "489", "attributes": { "weight": 1 } }, { "key": "20885", "source": "2269", "target": "51", "attributes": { "weight": 2 } }, { "key": "20893", "source": "2269", "target": "472", "attributes": { "weight": 3 } }, { "key": "20952", "source": "2270", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20953", "source": "2270", "target": "2258", "attributes": { "weight": 1 } }, { "key": "26926", "source": "2270", "target": "497", "attributes": { "weight": 1 } }, { "key": "20954", "source": "2270", "target": "472", "attributes": { "weight": 1 } }, { "key": "20950", "source": "2270", "target": "51", "attributes": { "weight": 1 } }, { "key": "26744", "source": "2270", "target": "454", "attributes": { "weight": 1 } }, { "key": "20951", "source": "2270", "target": "449", "attributes": { "weight": 1 } }, { "key": "25483", "source": "2270", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20956", "source": "2270", "target": "489", "attributes": { "weight": 1 } }, { "key": "25484", "source": "2270", "target": "452", "attributes": { "weight": 1 } }, { "key": "20955", "source": "2270", "target": "2095", "attributes": { "weight": 1 } }, { "key": "20985", "source": "2271", "target": "1375", "attributes": { "weight": 1 } }, { "key": "20977", "source": "2271", "target": "450", "attributes": { "weight": 1 } }, { "key": "20980", "source": "2271", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20983", "source": "2271", "target": "1374", "attributes": { "weight": 1 } }, { "key": "20974", "source": "2271", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20979", "source": "2271", "target": "54", "attributes": { "weight": 1 } }, { "key": "20984", "source": "2271", "target": "56", "attributes": { "weight": 1 } }, { "key": "20976", "source": "2271", "target": "449", "attributes": { "weight": 1 } }, { "key": "20981", "source": "2271", "target": "231", "attributes": { "weight": 1 } }, { "key": "20973", "source": "2271", "target": "221", "attributes": { "weight": 1 } }, { "key": "20970", "source": "2271", "target": "1353", "attributes": { "weight": 1 } }, { "key": "24226", "source": "2271", "target": "471", "attributes": { "weight": 1 } }, { "key": "20975", "source": "2271", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20972", "source": "2271", "target": "130", "attributes": { "weight": 3 } }, { "key": "20978", "source": "2271", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20982", "source": "2271", "target": "489", "attributes": { "weight": 1 } }, { "key": "20971", "source": "2271", "target": "429", "attributes": { "weight": 1 } }, { "key": "20987", "source": "2272", "target": "489", "attributes": { "weight": 1 } }, { "key": "20986", "source": "2272", "target": "2251", "attributes": { "weight": 1 } }, { "key": "31362", "source": "2272", "target": "59", "attributes": { "weight": 1 } }, { "key": "21309", "source": "2273", "target": "449", "attributes": { "weight": 1 } }, { "key": "21310", "source": "2273", "target": "1087", "attributes": { "weight": 1 } }, { "key": "21312", "source": "2273", "target": "482", "attributes": { "weight": 1 } }, { "key": "21311", "source": "2273", "target": "1744", "attributes": { "weight": 1 } }, { "key": "21313", "source": "2273", "target": "489", "attributes": { "weight": 1 } }, { "key": "21339", "source": "2274", "target": "130", "attributes": { "weight": 3 } }, { "key": "35221", "source": "2274", "target": "231", "attributes": { "weight": 1 } }, { "key": "21356", "source": "2275", "target": "489", "attributes": { "weight": 1 } }, { "key": "21355", "source": "2275", "target": "1354", "attributes": { "weight": 1 } }, { "key": "21354", "source": "2275", "target": "429", "attributes": { "weight": 1 } }, { "key": "21365", "source": "2276", "target": "2244", "attributes": { "weight": 1 } }, { "key": "21376", "source": "2276", "target": "231", "attributes": { "weight": 1 } }, { "key": "21374", "source": "2276", "target": "2262", "attributes": { "weight": 1 } }, { "key": "21377", "source": "2276", "target": "480", "attributes": { "weight": 1 } }, { "key": "21362", "source": "2276", "target": "51", "attributes": { "weight": 1 } }, { "key": "21372", "source": "2276", "target": "472", "attributes": { "weight": 1 } }, { "key": "21358", "source": "2276", "target": "1354", "attributes": { "weight": 1 } }, { "key": "21363", "source": "2276", "target": "1023", "attributes": { "weight": 1 } }, { "key": "21359", "source": "2276", "target": "130", "attributes": { "weight": 1 } }, { "key": "21368", "source": "2276", "target": "2248", "attributes": { "weight": 1 } }, { "key": "21369", "source": "2276", "target": "1832", "attributes": { "weight": 1 } }, { "key": "21375", "source": "2276", "target": "2267", "attributes": { "weight": 1 } }, { "key": "21371", "source": "2276", "target": "1836", "attributes": { "weight": 1 } }, { "key": "21367", "source": "2276", "target": "449", "attributes": { "weight": 1 } }, { "key": "21366", "source": "2276", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21382", "source": "2276", "target": "2189", "attributes": { "weight": 1 } }, { "key": "21379", "source": "2276", "target": "487", "attributes": { "weight": 1 } }, { "key": "21373", "source": "2276", "target": "1087", "attributes": { "weight": 1 } }, { "key": "21380", "source": "2276", "target": "2111", "attributes": { "weight": 1 } }, { "key": "21383", "source": "2276", "target": "498", "attributes": { "weight": 1 } }, { "key": "21370", "source": "2276", "target": "1360", "attributes": { "weight": 1 } }, { "key": "21381", "source": "2276", "target": "489", "attributes": { "weight": 1 } }, { "key": "21360", "source": "2276", "target": "221", "attributes": { "weight": 1 } }, { "key": "21378", "source": "2276", "target": "2095", "attributes": { "weight": 1 } }, { "key": "21361", "source": "2276", "target": "222", "attributes": { "weight": 1 } }, { "key": "21364", "source": "2276", "target": "1070", "attributes": { "weight": 1 } }, { "key": "21402", "source": "2277", "target": "1744", "attributes": { "weight": 1 } }, { "key": "21403", "source": "2277", "target": "482", "attributes": { "weight": 1 } }, { "key": "35222", "source": "2278", "target": "231", "attributes": { "weight": 1 } }, { "key": "21425", "source": "2278", "target": "489", "attributes": { "weight": 1 } }, { "key": "36199", "source": "2278", "target": "1760", "attributes": { "weight": 1 } }, { "key": "21424", "source": "2278", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21421", "source": "2278", "target": "1353", "attributes": { "weight": 1 } }, { "key": "21422", "source": "2278", "target": "221", "attributes": { "weight": 1 } }, { "key": "36200", "source": "2278", "target": "1026", "attributes": { "weight": 1 } }, { "key": "21423", "source": "2278", "target": "1023", "attributes": { "weight": 1 } }, { "key": "23218", "source": "2279", "target": "1191", "attributes": { "weight": 2 } }, { "key": "21438", "source": "2279", "target": "1240", "attributes": { "weight": 2 } }, { "key": "21460", "source": "2280", "target": "579", "attributes": { "weight": 2 } }, { "key": "25750", "source": "2280", "target": "278", "attributes": { "weight": 1 } }, { "key": "22704", "source": "2280", "target": "580", "attributes": { "weight": 1 } }, { "key": "21459", "source": "2280", "target": "1240", "attributes": { "weight": 3 } }, { "key": "25051", "source": "2280", "target": "707", "attributes": { "weight": 2 } }, { "key": "25257", "source": "2281", "target": "1630", "attributes": { "weight": 2 } }, { "key": "25261", "source": "2281", "target": "2335", "attributes": { "weight": 1 } }, { "key": "22402", "source": "2281", "target": "567", "attributes": { "weight": 4 } }, { "key": "25252", "source": "2281", "target": "1618", "attributes": { "weight": 1 } }, { "key": "25262", "source": "2281", "target": "1636", "attributes": { "weight": 1 } }, { "key": "25258", "source": "2281", "target": "2332", "attributes": { "weight": 1 } }, { "key": "25253", "source": "2281", "target": "2321", "attributes": { "weight": 2 } }, { "key": "25256", "source": "2281", "target": "2575", "attributes": { "weight": 1 } }, { "key": "25259", "source": "2281", "target": "1631", "attributes": { "weight": 2 } }, { "key": "25260", "source": "2281", "target": "1632", "attributes": { "weight": 2 } }, { "key": "22403", "source": "2281", "target": "2339", "attributes": { "weight": 2 } }, { "key": "25255", "source": "2281", "target": "1624", "attributes": { "weight": 1 } }, { "key": "21466", "source": "2281", "target": "2285", "attributes": { "weight": 2 } }, { "key": "25251", "source": "2281", "target": "2319", "attributes": { "weight": 1 } }, { "key": "25250", "source": "2281", "target": "1617", "attributes": { "weight": 1 } }, { "key": "25263", "source": "2281", "target": "1637", "attributes": { "weight": 2 } }, { "key": "25254", "source": "2281", "target": "572", "attributes": { "weight": 1 } }, { "key": "21469", "source": "2282", "target": "178", "attributes": { "weight": 2 } }, { "key": "21473", "source": "2283", "target": "2285", "attributes": { "weight": 2 } }, { "key": "27599", "source": "2284", "target": "171", "attributes": { "weight": 1 } }, { "key": "21475", "source": "2284", "target": "178", "attributes": { "weight": 2 } }, { "key": "21474", "source": "2284", "target": "172", "attributes": { "weight": 2 } }, { "key": "21497", "source": "2285", "target": "1966", "attributes": { "weight": 2 } }, { "key": "21492", "source": "2285", "target": "1252", "attributes": { "weight": 3 } }, { "key": "21489", "source": "2285", "target": "1623", "attributes": { "weight": 3 } }, { "key": "24744", "source": "2285", "target": "2527", "attributes": { "weight": 1 } }, { "key": "21491", "source": "2285", "target": "2283", "attributes": { "weight": 2 } }, { "key": "21488", "source": "2285", "target": "2281", "attributes": { "weight": 2 } }, { "key": "21496", "source": "2285", "target": "1638", "attributes": { "weight": 3 } }, { "key": "21490", "source": "2285", "target": "1625", "attributes": { "weight": 3 } }, { "key": "21494", "source": "2285", "target": "1631", "attributes": { "weight": 2 } }, { "key": "21495", "source": "2285", "target": "178", "attributes": { "weight": 2 } }, { "key": "21487", "source": "2285", "target": "1616", "attributes": { "weight": 3 } }, { "key": "21493", "source": "2285", "target": "172", "attributes": { "weight": 3 } }, { "key": "22284", "source": "2286", "target": "794", "attributes": { "weight": 1 } }, { "key": "21573", "source": "2286", "target": "358", "attributes": { "weight": 1 } }, { "key": "31890", "source": "2286", "target": "359", "attributes": { "weight": 1 } }, { "key": "31889", "source": "2286", "target": "1045", "attributes": { "weight": 1 } }, { "key": "31891", "source": "2286", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31606", "source": "2287", "target": "595", "attributes": { "weight": 1 } }, { "key": "29853", "source": "2287", "target": "1024", "attributes": { "weight": 1 } }, { "key": "29854", "source": "2287", "target": "53", "attributes": { "weight": 1 } }, { "key": "22288", "source": "2287", "target": "794", "attributes": { "weight": 1 } }, { "key": "36913", "source": "2287", "target": "1137", "attributes": { "weight": 1 } }, { "key": "29428", "source": "2287", "target": "232", "attributes": { "weight": 1 } }, { "key": "35972", "source": "2287", "target": "497", "attributes": { "weight": 1 } }, { "key": "29028", "source": "2287", "target": "495", "attributes": { "weight": 2 } }, { "key": "21575", "source": "2287", "target": "358", "attributes": { "weight": 1 } }, { "key": "28630", "source": "2288", "target": "2115", "attributes": { "weight": 2 } }, { "key": "29717", "source": "2288", "target": "1253", "attributes": { "weight": 1 } }, { "key": "23895", "source": "2288", "target": "1763", "attributes": { "weight": 3 } }, { "key": "29719", "source": "2288", "target": "2465", "attributes": { "weight": 1 } }, { "key": "29716", "source": "2288", "target": "359", "attributes": { "weight": 1 } }, { "key": "21593", "source": "2288", "target": "358", "attributes": { "weight": 2 } }, { "key": "29718", "source": "2288", "target": "794", "attributes": { "weight": 1 } }, { "key": "29715", "source": "2288", "target": "421", "attributes": { "weight": 1 } }, { "key": "32581", "source": "2289", "target": "791", "attributes": { "weight": 1 } }, { "key": "30723", "source": "2289", "target": "889", "attributes": { "weight": 1 } }, { "key": "30474", "source": "2289", "target": "1046", "attributes": { "weight": 1 } }, { "key": "24539", "source": "2289", "target": "790", "attributes": { "weight": 2 } }, { "key": "24760", "source": "2289", "target": "1056", "attributes": { "weight": 2 } }, { "key": "21594", "source": "2289", "target": "358", "attributes": { "weight": 1 } }, { "key": "22683", "source": "2289", "target": "1037", "attributes": { "weight": 1 } }, { "key": "22304", "source": "2289", "target": "794", "attributes": { "weight": 1 } }, { "key": "27544", "source": "2289", "target": "1520", "attributes": { "weight": 1 } }, { "key": "21597", "source": "2290", "target": "1765", "attributes": { "weight": 3 } }, { "key": "31116", "source": "2290", "target": "339", "attributes": { "weight": 1 } }, { "key": "31117", "source": "2290", "target": "359", "attributes": { "weight": 1 } }, { "key": "24589", "source": "2291", "target": "1041", "attributes": { "weight": 1 } }, { "key": "22371", "source": "2291", "target": "794", "attributes": { "weight": 1 } }, { "key": "36981", "source": "2291", "target": "359", "attributes": { "weight": 1 } }, { "key": "21602", "source": "2291", "target": "358", "attributes": { "weight": 2 } }, { "key": "36982", "source": "2291", "target": "362", "attributes": { "weight": 1 } }, { "key": "30484", "source": "2291", "target": "1046", "attributes": { "weight": 1 } }, { "key": "21677", "source": "2292", "target": "1491", "attributes": { "weight": 1 } }, { "key": "21848", "source": "2293", "target": "1324", "attributes": { "weight": 1 } }, { "key": "21828", "source": "2293", "target": "915", "attributes": { "weight": 1 } }, { "key": "21829", "source": "2293", "target": "916", "attributes": { "weight": 1 } }, { "key": "21822", "source": "2293", "target": "1681", "attributes": { "weight": 1 } }, { "key": "21840", "source": "2293", "target": "2299", "attributes": { "weight": 1 } }, { "key": "21826", "source": "2293", "target": "1205", "attributes": { "weight": 1 } }, { "key": "21846", "source": "2293", "target": "1311", "attributes": { "weight": 1 } }, { "key": "21839", "source": "2293", "target": "1284", "attributes": { "weight": 1 } }, { "key": "21831", "source": "2293", "target": "1225", "attributes": { "weight": 1 } }, { "key": "21830", "source": "2293", "target": "1223", "attributes": { "weight": 1 } }, { "key": "21827", "source": "2293", "target": "1211", "attributes": { "weight": 1 } }, { "key": "21835", "source": "2293", "target": "337", "attributes": { "weight": 1 } }, { "key": "21845", "source": "2293", "target": "2304", "attributes": { "weight": 1 } }, { "key": "21847", "source": "2293", "target": "1563", "attributes": { "weight": 1 } }, { "key": "21832", "source": "2293", "target": "1686", "attributes": { "weight": 1 } }, { "key": "21844", "source": "2293", "target": "1303", "attributes": { "weight": 1 } }, { "key": "21841", "source": "2293", "target": "1295", "attributes": { "weight": 1 } }, { "key": "21825", "source": "2293", "target": "1203", "attributes": { "weight": 1 } }, { "key": "21849", "source": "2293", "target": "2307", "attributes": { "weight": 1 } }, { "key": "21833", "source": "2293", "target": "1234", "attributes": { "weight": 1 } }, { "key": "21820", "source": "2293", "target": "2021", "attributes": { "weight": 1 } }, { "key": "21838", "source": "2293", "target": "1690", "attributes": { "weight": 1 } }, { "key": "21836", "source": "2293", "target": "1271", "attributes": { "weight": 1 } }, { "key": "21823", "source": "2293", "target": "1181", "attributes": { "weight": 1 } }, { "key": "21821", "source": "2293", "target": "1680", "attributes": { "weight": 1 } }, { "key": "21834", "source": "2293", "target": "2037", "attributes": { "weight": 1 } }, { "key": "21824", "source": "2293", "target": "2032", "attributes": { "weight": 1 } }, { "key": "21837", "source": "2293", "target": "2044", "attributes": { "weight": 1 } }, { "key": "21843", "source": "2293", "target": "2303", "attributes": { "weight": 1 } }, { "key": "21819", "source": "2293", "target": "937", "attributes": { "weight": 1 } }, { "key": "21842", "source": "2293", "target": "1693", "attributes": { "weight": 1 } }, { "key": "21818", "source": "2293", "target": "1519", "attributes": { "weight": 1 } }, { "key": "21862", "source": "2294", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21875", "source": "2295", "target": "2212", "attributes": { "weight": 1 } }, { "key": "33929", "source": "2295", "target": "1232", "attributes": { "weight": 1 } }, { "key": "33930", "source": "2295", "target": "3152", "attributes": { "weight": 1 } }, { "key": "27204", "source": "2296", "target": "1232", "attributes": { "weight": 1 } }, { "key": "21929", "source": "2296", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21934", "source": "2297", "target": "2300", "attributes": { "weight": 1 } }, { "key": "28574", "source": "2297", "target": "1279", "attributes": { "weight": 1 } }, { "key": "21935", "source": "2297", "target": "2301", "attributes": { "weight": 1 } }, { "key": "28573", "source": "2297", "target": "199", "attributes": { "weight": 1 } }, { "key": "21936", "source": "2297", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21987", "source": "2298", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21986", "source": "2298", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22015", "source": "2299", "target": "2293", "attributes": { "weight": 1 } }, { "key": "22028", "source": "2300", "target": "2297", "attributes": { "weight": 1 } }, { "key": "22037", "source": "2300", "target": "930", "attributes": { "weight": 1 } }, { "key": "22033", "source": "2300", "target": "1563", "attributes": { "weight": 1 } }, { "key": "22026", "source": "2300", "target": "915", "attributes": { "weight": 1 } }, { "key": "22038", "source": "2300", "target": "2308", "attributes": { "weight": 1 } }, { "key": "22032", "source": "2300", "target": "2304", "attributes": { "weight": 1 } }, { "key": "22027", "source": "2300", "target": "918", "attributes": { "weight": 1 } }, { "key": "22021", "source": "2300", "target": "1138", "attributes": { "weight": 1 } }, { "key": "22029", "source": "2300", "target": "1238", "attributes": { "weight": 1 } }, { "key": "22034", "source": "2300", "target": "1324", "attributes": { "weight": 1 } }, { "key": "22035", "source": "2300", "target": "3413", "attributes": { "weight": 1 } }, { "key": "22030", "source": "2300", "target": "920", "attributes": { "weight": 1 } }, { "key": "22024", "source": "2300", "target": "912", "attributes": { "weight": 1 } }, { "key": "22023", "source": "2300", "target": "1181", "attributes": { "weight": 1 } }, { "key": "22031", "source": "2300", "target": "1295", "attributes": { "weight": 1 } }, { "key": "22025", "source": "2300", "target": "1199", "attributes": { "weight": 1 } }, { "key": "22036", "source": "2300", "target": "1339", "attributes": { "weight": 1 } }, { "key": "22022", "source": "2300", "target": "1153", "attributes": { "weight": 1 } }, { "key": "22068", "source": "2301", "target": "1324", "attributes": { "weight": 1 } }, { "key": "22063", "source": "2301", "target": "1691", "attributes": { "weight": 1 } }, { "key": "22069", "source": "2301", "target": "1338", "attributes": { "weight": 1 } }, { "key": "22055", "source": "2301", "target": "917", "attributes": { "weight": 1 } }, { "key": "22052", "source": "2301", "target": "1211", "attributes": { "weight": 1 } }, { "key": "22067", "source": "2301", "target": "1563", "attributes": { "weight": 1 } }, { "key": "22058", "source": "2301", "target": "2297", "attributes": { "weight": 1 } }, { "key": "22045", "source": "2301", "target": "1153", "attributes": { "weight": 1 } }, { "key": "22056", "source": "2301", "target": "918", "attributes": { "weight": 1 } }, { "key": "22046", "source": "2301", "target": "1160", "attributes": { "weight": 1 } }, { "key": "22048", "source": "2301", "target": "1181", "attributes": { "weight": 1 } }, { "key": "22071", "source": "2301", "target": "1339", "attributes": { "weight": 1 } }, { "key": "22062", "source": "2301", "target": "1271", "attributes": { "weight": 1 } }, { "key": "22057", "source": "2301", "target": "1230", "attributes": { "weight": 1 } }, { "key": "22064", "source": "2301", "target": "1295", "attributes": { "weight": 1 } }, { "key": "22066", "source": "2301", "target": "927", "attributes": { "weight": 1 } }, { "key": "22053", "source": "2301", "target": "915", "attributes": { "weight": 1 } }, { "key": "22049", "source": "2301", "target": "1199", "attributes": { "weight": 1 } }, { "key": "22051", "source": "2301", "target": "1205", "attributes": { "weight": 1 } }, { "key": "22050", "source": "2301", "target": "1200", "attributes": { "weight": 1 } }, { "key": "22074", "source": "2301", "target": "2308", "attributes": { "weight": 1 } }, { "key": "22044", "source": "2301", "target": "1138", "attributes": { "weight": 1 } }, { "key": "22061", "source": "2301", "target": "923", "attributes": { "weight": 1 } }, { "key": "22065", "source": "2301", "target": "2304", "attributes": { "weight": 1 } }, { "key": "22054", "source": "2301", "target": "1225", "attributes": { "weight": 1 } }, { "key": "22059", "source": "2301", "target": "2298", "attributes": { "weight": 1 } }, { "key": "22070", "source": "2301", "target": "928", "attributes": { "weight": 1 } }, { "key": "22047", "source": "2301", "target": "910", "attributes": { "weight": 1 } }, { "key": "22073", "source": "2301", "target": "930", "attributes": { "weight": 1 } }, { "key": "22072", "source": "2301", "target": "1340", "attributes": { "weight": 1 } }, { "key": "22060", "source": "2301", "target": "920", "attributes": { "weight": 1 } }, { "key": "22077", "source": "2302", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22081", "source": "2303", "target": "1284", "attributes": { "weight": 1 } }, { "key": "22080", "source": "2303", "target": "338", "attributes": { "weight": 1 } }, { "key": "22079", "source": "2303", "target": "2293", "attributes": { "weight": 1 } }, { "key": "22087", "source": "2304", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22085", "source": "2304", "target": "337", "attributes": { "weight": 1 } }, { "key": "22084", "source": "2304", "target": "2293", "attributes": { "weight": 1 } }, { "key": "22088", "source": "2304", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22086", "source": "2304", "target": "2300", "attributes": { "weight": 1 } }, { "key": "22099", "source": "2305", "target": "337", "attributes": { "weight": 1 } }, { "key": "34797", "source": "2306", "target": "338", "attributes": { "weight": 1 } }, { "key": "22153", "source": "2306", "target": "337", "attributes": { "weight": 1 } }, { "key": "22154", "source": "2307", "target": "2293", "attributes": { "weight": 1 } }, { "key": "34803", "source": "2307", "target": "123", "attributes": { "weight": 1 } }, { "key": "22171", "source": "2308", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22169", "source": "2308", "target": "1279", "attributes": { "weight": 1 } }, { "key": "22172", "source": "2308", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22170", "source": "2308", "target": "2300", "attributes": { "weight": 1 } }, { "key": "22175", "source": "2309", "target": "262", "attributes": { "weight": 1 } }, { "key": "23397", "source": "2309", "target": "259", "attributes": { "weight": 1 } }, { "key": "22176", "source": "2309", "target": "290", "attributes": { "weight": 1 } }, { "key": "23420", "source": "2310", "target": "277", "attributes": { "weight": 1 } }, { "key": "23419", "source": "2310", "target": "259", "attributes": { "weight": 1 } }, { "key": "23421", "source": "2310", "target": "304", "attributes": { "weight": 1 } }, { "key": "22208", "source": "2310", "target": "262", "attributes": { "weight": 1 } }, { "key": "23272", "source": "2310", "target": "305", "attributes": { "weight": 1 } }, { "key": "22209", "source": "2310", "target": "268", "attributes": { "weight": 1 } }, { "key": "22248", "source": "2311", "target": "301", "attributes": { "weight": 1 } }, { "key": "22247", "source": "2311", "target": "289", "attributes": { "weight": 1 } }, { "key": "22249", "source": "2311", "target": "336", "attributes": { "weight": 1 } }, { "key": "37094", "source": "2312", "target": "1060", "attributes": { "weight": 1 } }, { "key": "24746", "source": "2312", "target": "1056", "attributes": { "weight": 1 } }, { "key": "37093", "source": "2312", "target": "359", "attributes": { "weight": 1 } }, { "key": "27392", "source": "2312", "target": "339", "attributes": { "weight": 2 } }, { "key": "22262", "source": "2312", "target": "794", "attributes": { "weight": 1 } }, { "key": "22286", "source": "2313", "target": "794", "attributes": { "weight": 1 } }, { "key": "27402", "source": "2313", "target": "339", "attributes": { "weight": 2 } }, { "key": "24749", "source": "2313", "target": "1056", "attributes": { "weight": 3 } }, { "key": "37097", "source": "2313", "target": "1060", "attributes": { "weight": 1 } }, { "key": "27403", "source": "2313", "target": "359", "attributes": { "weight": 2 } }, { "key": "31892", "source": "2314", "target": "359", "attributes": { "weight": 1 } }, { "key": "31893", "source": "2314", "target": "1060", "attributes": { "weight": 1 } }, { "key": "22287", "source": "2314", "target": "794", "attributes": { "weight": 1 } }, { "key": "22378", "source": "2315", "target": "567", "attributes": { "weight": 3 } }, { "key": "25234", "source": "2315", "target": "2574", "attributes": { "weight": 1 } }, { "key": "25231", "source": "2315", "target": "2565", "attributes": { "weight": 1 } }, { "key": "24385", "source": "2315", "target": "2497", "attributes": { "weight": 1 } }, { "key": "25235", "source": "2315", "target": "2336", "attributes": { "weight": 1 } }, { "key": "25232", "source": "2315", "target": "2494", "attributes": { "weight": 1 } }, { "key": "22380", "source": "2315", "target": "1640", "attributes": { "weight": 3 } }, { "key": "22379", "source": "2315", "target": "1637", "attributes": { "weight": 2 } }, { "key": "25233", "source": "2315", "target": "2330", "attributes": { "weight": 1 } }, { "key": "22381", "source": "2316", "target": "567", "attributes": { "weight": 4 } }, { "key": "25238", "source": "2316", "target": "1624", "attributes": { "weight": 1 } }, { "key": "25240", "source": "2316", "target": "1636", "attributes": { "weight": 1 } }, { "key": "25236", "source": "2316", "target": "1617", "attributes": { "weight": 1 } }, { "key": "25237", "source": "2316", "target": "1618", "attributes": { "weight": 2 } }, { "key": "24386", "source": "2316", "target": "2496", "attributes": { "weight": 1 } }, { "key": "22382", "source": "2316", "target": "1637", "attributes": { "weight": 4 } }, { "key": "22386", "source": "2317", "target": "1618", "attributes": { "weight": 3 } }, { "key": "22387", "source": "2318", "target": "2322", "attributes": { "weight": 2 } }, { "key": "22388", "source": "2318", "target": "1640", "attributes": { "weight": 2 } }, { "key": "25245", "source": "2319", "target": "2281", "attributes": { "weight": 1 } }, { "key": "22390", "source": "2319", "target": "567", "attributes": { "weight": 4 } }, { "key": "22391", "source": "2320", "target": "572", "attributes": { "weight": 2 } }, { "key": "22392", "source": "2320", "target": "1628", "attributes": { "weight": 1 } }, { "key": "25268", "source": "2321", "target": "2281", "attributes": { "weight": 2 } }, { "key": "22444", "source": "2321", "target": "567", "attributes": { "weight": 4 } }, { "key": "25269", "source": "2322", "target": "2574", "attributes": { "weight": 1 } }, { "key": "22446", "source": "2322", "target": "567", "attributes": { "weight": 2 } }, { "key": "22448", "source": "2322", "target": "2330", "attributes": { "weight": 2 } }, { "key": "22450", "source": "2322", "target": "1640", "attributes": { "weight": 3 } }, { "key": "24389", "source": "2322", "target": "2498", "attributes": { "weight": 1 } }, { "key": "24388", "source": "2322", "target": "2495", "attributes": { "weight": 1 } }, { "key": "22449", "source": "2322", "target": "2337", "attributes": { "weight": 2 } }, { "key": "22445", "source": "2322", "target": "2318", "attributes": { "weight": 2 } }, { "key": "22447", "source": "2322", "target": "2329", "attributes": { "weight": 3 } }, { "key": "22473", "source": "2323", "target": "2326", "attributes": { "weight": 2 } }, { "key": "22474", "source": "2323", "target": "2327", "attributes": { "weight": 2 } }, { "key": "22475", "source": "2324", "target": "1640", "attributes": { "weight": 3 } }, { "key": "25277", "source": "2324", "target": "2328", "attributes": { "weight": 1 } }, { "key": "22488", "source": "2325", "target": "1640", "attributes": { "weight": 3 } }, { "key": "25287", "source": "2325", "target": "567", "attributes": { "weight": 1 } }, { "key": "25292", "source": "2326", "target": "1637", "attributes": { "weight": 3 } }, { "key": "22492", "source": "2326", "target": "2323", "attributes": { "weight": 2 } }, { "key": "22491", "source": "2326", "target": "572", "attributes": { "weight": 2 } }, { "key": "22494", "source": "2326", "target": "2340", "attributes": { "weight": 1 } }, { "key": "25291", "source": "2326", "target": "2572", "attributes": { "weight": 1 } }, { "key": "22493", "source": "2326", "target": "1628", "attributes": { "weight": 1 } }, { "key": "22496", "source": "2327", "target": "2323", "attributes": { "weight": 2 } }, { "key": "22495", "source": "2327", "target": "572", "attributes": { "weight": 2 } }, { "key": "25300", "source": "2328", "target": "1637", "attributes": { "weight": 3 } }, { "key": "22504", "source": "2328", "target": "1618", "attributes": { "weight": 2 } }, { "key": "22508", "source": "2328", "target": "1640", "attributes": { "weight": 2 } }, { "key": "22505", "source": "2328", "target": "567", "attributes": { "weight": 3 } }, { "key": "22506", "source": "2328", "target": "178", "attributes": { "weight": 3 } }, { "key": "25296", "source": "2328", "target": "2566", "attributes": { "weight": 1 } }, { "key": "22507", "source": "2328", "target": "2343", "attributes": { "weight": 3 } }, { "key": "25298", "source": "2328", "target": "2573", "attributes": { "weight": 1 } }, { "key": "25295", "source": "2328", "target": "2324", "attributes": { "weight": 1 } }, { "key": "25297", "source": "2328", "target": "2571", "attributes": { "weight": 1 } }, { "key": "25299", "source": "2328", "target": "2336", "attributes": { "weight": 1 } }, { "key": "22511", "source": "2329", "target": "2322", "attributes": { "weight": 3 } }, { "key": "25302", "source": "2330", "target": "2315", "attributes": { "weight": 1 } }, { "key": "22512", "source": "2330", "target": "2322", "attributes": { "weight": 2 } }, { "key": "25303", "source": "2330", "target": "2565", "attributes": { "weight": 1 } }, { "key": "22513", "source": "2330", "target": "2336", "attributes": { "weight": 2 } }, { "key": "31203", "source": "2330", "target": "1640", "attributes": { "weight": 1 } }, { "key": "25304", "source": "2331", "target": "572", "attributes": { "weight": 1 } }, { "key": "22514", "source": "2331", "target": "567", "attributes": { "weight": 2 } }, { "key": "25314", "source": "2332", "target": "2281", "attributes": { "weight": 1 } }, { "key": "25315", "source": "2332", "target": "2338", "attributes": { "weight": 1 } }, { "key": "22520", "source": "2332", "target": "567", "attributes": { "weight": 4 } }, { "key": "31204", "source": "2332", "target": "1632", "attributes": { "weight": 1 } }, { "key": "22523", "source": "2333", "target": "567", "attributes": { "weight": 2 } }, { "key": "25319", "source": "2333", "target": "1637", "attributes": { "weight": 1 } }, { "key": "25323", "source": "2334", "target": "1637", "attributes": { "weight": 1 } }, { "key": "25322", "source": "2334", "target": "1618", "attributes": { "weight": 2 } }, { "key": "22527", "source": "2334", "target": "567", "attributes": { "weight": 2 } }, { "key": "22528", "source": "2334", "target": "1640", "attributes": { "weight": 3 } }, { "key": "24403", "source": "2335", "target": "2493", "attributes": { "weight": 1 } }, { "key": "25324", "source": "2335", "target": "2281", "attributes": { "weight": 1 } }, { "key": "22529", "source": "2335", "target": "567", "attributes": { "weight": 3 } }, { "key": "27654", "source": "2335", "target": "1626", "attributes": { "weight": 1 } }, { "key": "25329", "source": "2336", "target": "2565", "attributes": { "weight": 1 } }, { "key": "25327", "source": "2336", "target": "2315", "attributes": { "weight": 1 } }, { "key": "22546", "source": "2336", "target": "2330", "attributes": { "weight": 2 } }, { "key": "22547", "source": "2336", "target": "1640", "attributes": { "weight": 2 } }, { "key": "25328", "source": "2336", "target": "2564", "attributes": { "weight": 1 } }, { "key": "25330", "source": "2336", "target": "2328", "attributes": { "weight": 1 } }, { "key": "22564", "source": "2337", "target": "2322", "attributes": { "weight": 2 } }, { "key": "31206", "source": "2337", "target": "1640", "attributes": { "weight": 1 } }, { "key": "22565", "source": "2337", "target": "572", "attributes": { "weight": 1 } }, { "key": "22566", "source": "2338", "target": "567", "attributes": { "weight": 3 } }, { "key": "25340", "source": "2338", "target": "2332", "attributes": { "weight": 1 } }, { "key": "22567", "source": "2339", "target": "2281", "attributes": { "weight": 2 } }, { "key": "22568", "source": "2339", "target": "567", "attributes": { "weight": 3 } }, { "key": "22570", "source": "2340", "target": "2326", "attributes": { "weight": 1 } }, { "key": "22569", "source": "2340", "target": "572", "attributes": { "weight": 2 } }, { "key": "22571", "source": "2341", "target": "567", "attributes": { "weight": 3 } }, { "key": "25343", "source": "2342", "target": "1640", "attributes": { "weight": 1 } }, { "key": "25341", "source": "2342", "target": "567", "attributes": { "weight": 1 } }, { "key": "27663", "source": "2342", "target": "1639", "attributes": { "weight": 1 } }, { "key": "22572", "source": "2342", "target": "1618", "attributes": { "weight": 3 } }, { "key": "25342", "source": "2342", "target": "1637", "attributes": { "weight": 1 } }, { "key": "22575", "source": "2343", "target": "1640", "attributes": { "weight": 3 } }, { "key": "22574", "source": "2343", "target": "2328", "attributes": { "weight": 3 } }, { "key": "22573", "source": "2343", "target": "567", "attributes": { "weight": 2 } }, { "key": "23227", "source": "2344", "target": "707", "attributes": { "weight": 3 } }, { "key": "22606", "source": "2344", "target": "180", "attributes": { "weight": 1 } }, { "key": "28426", "source": "2344", "target": "1191", "attributes": { "weight": 1 } }, { "key": "25025", "source": "2345", "target": "707", "attributes": { "weight": 2 } }, { "key": "25027", "source": "2345", "target": "305", "attributes": { "weight": 2 } }, { "key": "28434", "source": "2345", "target": "579", "attributes": { "weight": 1 } }, { "key": "28435", "source": "2345", "target": "1512", "attributes": { "weight": 1 } }, { "key": "27755", "source": "2345", "target": "170", "attributes": { "weight": 1 } }, { "key": "25026", "source": "2345", "target": "1240", "attributes": { "weight": 2 } }, { "key": "28433", "source": "2345", "target": "278", "attributes": { "weight": 2 } }, { "key": "22697", "source": "2345", "target": "580", "attributes": { "weight": 1 } }, { "key": "22714", "source": "2348", "target": "2374", "attributes": { "weight": 1 } }, { "key": "22717", "source": "2349", "target": "2356", "attributes": { "weight": 1 } }, { "key": "22716", "source": "2349", "target": "2354", "attributes": { "weight": 1 } }, { "key": "22718", "source": "2349", "target": "2357", "attributes": { "weight": 1 } }, { "key": "22722", "source": "2349", "target": "2382", "attributes": { "weight": 1 } }, { "key": "22720", "source": "2349", "target": "1738", "attributes": { "weight": 1 } }, { "key": "22719", "source": "2349", "target": "2362", "attributes": { "weight": 1 } }, { "key": "22723", "source": "2349", "target": "2389", "attributes": { "weight": 1 } }, { "key": "28714", "source": "2349", "target": "2789", "attributes": { "weight": 1 } }, { "key": "22733", "source": "2354", "target": "2361", "attributes": { "weight": 1 } }, { "key": "22732", "source": "2354", "target": "2355", "attributes": { "weight": 1 } }, { "key": "22731", "source": "2354", "target": "2349", "attributes": { "weight": 1 } }, { "key": "22734", "source": "2354", "target": "2365", "attributes": { "weight": 1 } }, { "key": "22735", "source": "2354", "target": "2382", "attributes": { "weight": 1 } }, { "key": "22738", "source": "2355", "target": "2382", "attributes": { "weight": 1 } }, { "key": "22736", "source": "2355", "target": "2354", "attributes": { "weight": 1 } }, { "key": "22737", "source": "2355", "target": "2357", "attributes": { "weight": 1 } }, { "key": "22739", "source": "2356", "target": "2349", "attributes": { "weight": 1 } }, { "key": "22740", "source": "2356", "target": "2389", "attributes": { "weight": 1 } }, { "key": "22743", "source": "2357", "target": "2382", "attributes": { "weight": 1 } }, { "key": "22742", "source": "2357", "target": "2355", "attributes": { "weight": 1 } }, { "key": "22741", "source": "2357", "target": "2349", "attributes": { "weight": 1 } }, { "key": "22747", "source": "2358", "target": "2375", "attributes": { "weight": 1 } }, { "key": "22744", "source": "2358", "target": "2359", "attributes": { "weight": 1 } }, { "key": "22750", "source": "2358", "target": "2389", "attributes": { "weight": 1 } }, { "key": "22746", "source": "2358", "target": "2370", "attributes": { "weight": 1 } }, { "key": "22745", "source": "2358", "target": "2360", "attributes": { "weight": 1 } }, { "key": "22752", "source": "2359", "target": "2370", "attributes": { "weight": 1 } }, { "key": "22751", "source": "2359", "target": "2358", "attributes": { "weight": 1 } }, { "key": "22757", "source": "2360", "target": "2389", "attributes": { "weight": 1 } }, { "key": "22755", "source": "2360", "target": "2358", "attributes": { "weight": 1 } }, { "key": "22758", "source": "2361", "target": "2354", "attributes": { "weight": 1 } }, { "key": "22759", "source": "2361", "target": "2390", "attributes": { "weight": 1 } }, { "key": "22761", "source": "2362", "target": "2382", "attributes": { "weight": 1 } }, { "key": "22760", "source": "2362", "target": "2349", "attributes": { "weight": 1 } }, { "key": "22770", "source": "2365", "target": "2371", "attributes": { "weight": 1 } }, { "key": "22767", "source": "2365", "target": "2354", "attributes": { "weight": 1 } }, { "key": "22785", "source": "2370", "target": "2359", "attributes": { "weight": 1 } }, { "key": "22784", "source": "2370", "target": "2358", "attributes": { "weight": 1 } }, { "key": "22786", "source": "2371", "target": "2365", "attributes": { "weight": 1 } }, { "key": "22788", "source": "2371", "target": "2386", "attributes": { "weight": 1 } }, { "key": "22792", "source": "2374", "target": "2348", "attributes": { "weight": 1 } }, { "key": "22804", "source": "2382", "target": "2354", "attributes": { "weight": 1 } }, { "key": "22802", "source": "2382", "target": "674", "attributes": { "weight": 1 } }, { "key": "22807", "source": "2382", "target": "2362", "attributes": { "weight": 1 } }, { "key": "22809", "source": "2382", "target": "2389", "attributes": { "weight": 1 } }, { "key": "22805", "source": "2382", "target": "2355", "attributes": { "weight": 1 } }, { "key": "22803", "source": "2382", "target": "2349", "attributes": { "weight": 1 } }, { "key": "22806", "source": "2382", "target": "2357", "attributes": { "weight": 1 } }, { "key": "22813", "source": "2386", "target": "2371", "attributes": { "weight": 1 } }, { "key": "22818", "source": "2389", "target": "2349", "attributes": { "weight": 1 } }, { "key": "22820", "source": "2389", "target": "2358", "attributes": { "weight": 1 } }, { "key": "22822", "source": "2389", "target": "2382", "attributes": { "weight": 1 } }, { "key": "22821", "source": "2389", "target": "2360", "attributes": { "weight": 1 } }, { "key": "22819", "source": "2389", "target": "2356", "attributes": { "weight": 1 } }, { "key": "22825", "source": "2390", "target": "2361", "attributes": { "weight": 1 } }, { "key": "22847", "source": "2393", "target": "432", "attributes": { "weight": 1 } }, { "key": "22866", "source": "2394", "target": "1564", "attributes": { "weight": 1 } }, { "key": "22865", "source": "2394", "target": "1359", "attributes": { "weight": 1 } }, { "key": "22887", "source": "2395", "target": "319", "attributes": { "weight": 1 } }, { "key": "24780", "source": "2396", "target": "304", "attributes": { "weight": 1 } }, { "key": "22915", "source": "2396", "target": "275", "attributes": { "weight": 1 } }, { "key": "22962", "source": "2397", "target": "291", "attributes": { "weight": 3 } }, { "key": "22963", "source": "2397", "target": "326", "attributes": { "weight": 1 } }, { "key": "25977", "source": "2397", "target": "2622", "attributes": { "weight": 2 } }, { "key": "25980", "source": "2398", "target": "2622", "attributes": { "weight": 2 } }, { "key": "25979", "source": "2398", "target": "280", "attributes": { "weight": 2 } }, { "key": "22966", "source": "2398", "target": "326", "attributes": { "weight": 1 } }, { "key": "22965", "source": "2398", "target": "291", "attributes": { "weight": 1 } }, { "key": "23079", "source": "2399", "target": "291", "attributes": { "weight": 1 } }, { "key": "23080", "source": "2399", "target": "326", "attributes": { "weight": 2 } }, { "key": "23091", "source": "2400", "target": "2401", "attributes": { "weight": 1 } }, { "key": "23102", "source": "2401", "target": "2400", "attributes": { "weight": 1 } }, { "key": "23103", "source": "2401", "target": "2404", "attributes": { "weight": 1 } }, { "key": "23104", "source": "2401", "target": "2411", "attributes": { "weight": 1 } }, { "key": "23105", "source": "2402", "target": "1678", "attributes": { "weight": 1 } }, { "key": "23107", "source": "2403", "target": "1678", "attributes": { "weight": 1 } }, { "key": "23108", "source": "2404", "target": "2401", "attributes": { "weight": 1 } }, { "key": "23112", "source": "2408", "target": "1682", "attributes": { "weight": 1 } }, { "key": "23114", "source": "2410", "target": "1678", "attributes": { "weight": 1 } }, { "key": "23115", "source": "2411", "target": "2401", "attributes": { "weight": 1 } }, { "key": "23116", "source": "2412", "target": "1682", "attributes": { "weight": 1 } }, { "key": "23117", "source": "2413", "target": "1682", "attributes": { "weight": 1 } }, { "key": "23119", "source": "2415", "target": "1678", "attributes": { "weight": 1 } }, { "key": "23121", "source": "2417", "target": "2402", "attributes": { "weight": 1 } }, { "key": "23125", "source": "2418", "target": "2423", "attributes": { "weight": 2 } }, { "key": "23124", "source": "2418", "target": "2419", "attributes": { "weight": 1 } }, { "key": "23126", "source": "2419", "target": "2423", "attributes": { "weight": 1 } }, { "key": "23127", "source": "2420", "target": "2423", "attributes": { "weight": 1 } }, { "key": "23128", "source": "2421", "target": "2423", "attributes": { "weight": 1 } }, { "key": "23129", "source": "2422", "target": "2423", "attributes": { "weight": 1 } }, { "key": "28831", "source": "2423", "target": "338", "attributes": { "weight": 2 } }, { "key": "23136", "source": "2423", "target": "1299", "attributes": { "weight": 2 } }, { "key": "23133", "source": "2423", "target": "2420", "attributes": { "weight": 1 } }, { "key": "23135", "source": "2423", "target": "2422", "attributes": { "weight": 1 } }, { "key": "28830", "source": "2423", "target": "1146", "attributes": { "weight": 3 } }, { "key": "23134", "source": "2423", "target": "2421", "attributes": { "weight": 1 } }, { "key": "28832", "source": "2423", "target": "310", "attributes": { "weight": 1 } }, { "key": "23131", "source": "2423", "target": "2418", "attributes": { "weight": 2 } }, { "key": "23132", "source": "2423", "target": "2419", "attributes": { "weight": 1 } }, { "key": "23141", "source": "2424", "target": "1099", "attributes": { "weight": 1 } }, { "key": "26196", "source": "2424", "target": "601", "attributes": { "weight": 1 } }, { "key": "23139", "source": "2424", "target": "598", "attributes": { "weight": 1 } }, { "key": "23140", "source": "2424", "target": "600", "attributes": { "weight": 2 } }, { "key": "23142", "source": "2425", "target": "1297", "attributes": { "weight": 2 } }, { "key": "26198", "source": "2425", "target": "601", "attributes": { "weight": 1 } }, { "key": "23143", "source": "2425", "target": "2429", "attributes": { "weight": 1 } }, { "key": "23150", "source": "2426", "target": "601", "attributes": { "weight": 2 } }, { "key": "23147", "source": "2426", "target": "598", "attributes": { "weight": 1 } }, { "key": "23149", "source": "2426", "target": "2428", "attributes": { "weight": 2 } }, { "key": "23148", "source": "2426", "target": "2427", "attributes": { "weight": 1 } }, { "key": "23151", "source": "2427", "target": "2426", "attributes": { "weight": 1 } }, { "key": "23153", "source": "2427", "target": "601", "attributes": { "weight": 2 } }, { "key": "23152", "source": "2427", "target": "2428", "attributes": { "weight": 1 } }, { "key": "23161", "source": "2428", "target": "601", "attributes": { "weight": 2 } }, { "key": "23159", "source": "2428", "target": "2426", "attributes": { "weight": 2 } }, { "key": "23158", "source": "2428", "target": "598", "attributes": { "weight": 2 } }, { "key": "23160", "source": "2428", "target": "2427", "attributes": { "weight": 1 } }, { "key": "26250", "source": "2429", "target": "881", "attributes": { "weight": 1 } }, { "key": "24895", "source": "2429", "target": "601", "attributes": { "weight": 2 } }, { "key": "23166", "source": "2429", "target": "1297", "attributes": { "weight": 3 } }, { "key": "23165", "source": "2429", "target": "2425", "attributes": { "weight": 1 } }, { "key": "26276", "source": "2430", "target": "601", "attributes": { "weight": 1 } }, { "key": "23174", "source": "2430", "target": "599", "attributes": { "weight": 1 } }, { "key": "23176", "source": "2431", "target": "601", "attributes": { "weight": 2 } }, { "key": "23175", "source": "2431", "target": "599", "attributes": { "weight": 1 } }, { "key": "23178", "source": "2432", "target": "1133", "attributes": { "weight": 1 } }, { "key": "34450", "source": "2433", "target": "338", "attributes": { "weight": 1 } }, { "key": "23195", "source": "2433", "target": "1285", "attributes": { "weight": 1 } }, { "key": "23194", "source": "2433", "target": "1227", "attributes": { "weight": 2 } }, { "key": "28220", "source": "2434", "target": "1285", "attributes": { "weight": 1 } }, { "key": "28219", "source": "2434", "target": "2435", "attributes": { "weight": 1 } }, { "key": "23202", "source": "2434", "target": "1227", "attributes": { "weight": 2 } }, { "key": "23203", "source": "2435", "target": "1227", "attributes": { "weight": 2 } }, { "key": "28221", "source": "2435", "target": "1285", "attributes": { "weight": 1 } }, { "key": "23208", "source": "2436", "target": "1227", "attributes": { "weight": 1 } }, { "key": "23228", "source": "2437", "target": "707", "attributes": { "weight": 3 } }, { "key": "28430", "source": "2437", "target": "579", "attributes": { "weight": 1 } }, { "key": "25022", "source": "2437", "target": "1191", "attributes": { "weight": 2 } }, { "key": "23229", "source": "2438", "target": "707", "attributes": { "weight": 3 } }, { "key": "23261", "source": "2441", "target": "1772", "attributes": { "weight": 1 } }, { "key": "23279", "source": "2442", "target": "839", "attributes": { "weight": 1 } }, { "key": "23298", "source": "2443", "target": "305", "attributes": { "weight": 1 } }, { "key": "23364", "source": "2444", "target": "1545", "attributes": { "weight": 1 } }, { "key": "23379", "source": "2445", "target": "1118", "attributes": { "weight": 1 } }, { "key": "23380", "source": "2445", "target": "2446", "attributes": { "weight": 1 } }, { "key": "23391", "source": "2446", "target": "1741", "attributes": { "weight": 1 } }, { "key": "23390", "source": "2446", "target": "2445", "attributes": { "weight": 1 } }, { "key": "23392", "source": "2447", "target": "1752", "attributes": { "weight": 1 } }, { "key": "32241", "source": "2447", "target": "1733", "attributes": { "weight": 1 } }, { "key": "31343", "source": "2447", "target": "59", "attributes": { "weight": 1 } }, { "key": "23423", "source": "2448", "target": "304", "attributes": { "weight": 1 } }, { "key": "23422", "source": "2448", "target": "262", "attributes": { "weight": 1 } }, { "key": "25970", "source": "2448", "target": "2622", "attributes": { "weight": 2 } }, { "key": "27948", "source": "2448", "target": "326", "attributes": { "weight": 1 } }, { "key": "23494", "source": "2449", "target": "304", "attributes": { "weight": 1 } }, { "key": "23493", "source": "2449", "target": "299", "attributes": { "weight": 1 } }, { "key": "23495", "source": "2449", "target": "305", "attributes": { "weight": 1 } }, { "key": "23490", "source": "2449", "target": "259", "attributes": { "weight": 1 } }, { "key": "23492", "source": "2449", "target": "167", "attributes": { "weight": 1 } }, { "key": "23496", "source": "2449", "target": "307", "attributes": { "weight": 1 } }, { "key": "23491", "source": "2449", "target": "268", "attributes": { "weight": 1 } }, { "key": "32933", "source": "2450", "target": "470", "attributes": { "weight": 2 } }, { "key": "23688", "source": "2450", "target": "220", "attributes": { "weight": 2 } }, { "key": "32842", "source": "2450", "target": "135", "attributes": { "weight": 2 } }, { "key": "37021", "source": "2450", "target": "224", "attributes": { "weight": 1 } }, { "key": "35553", "source": "2450", "target": "2644", "attributes": { "weight": 1 } }, { "key": "37024", "source": "2450", "target": "189", "attributes": { "weight": 1 } }, { "key": "35556", "source": "2450", "target": "3114", "attributes": { "weight": 1 } }, { "key": "26374", "source": "2450", "target": "1258", "attributes": { "weight": 1 } }, { "key": "35555", "source": "2450", "target": "3213", "attributes": { "weight": 1 } }, { "key": "37022", "source": "2450", "target": "454", "attributes": { "weight": 1 } }, { "key": "31138", "source": "2450", "target": "442", "attributes": { "weight": 2 } }, { "key": "37025", "source": "2450", "target": "490", "attributes": { "weight": 1 } }, { "key": "35554", "source": "2450", "target": "1710", "attributes": { "weight": 1 } }, { "key": "32843", "source": "2450", "target": "472", "attributes": { "weight": 2 } }, { "key": "37023", "source": "2450", "target": "455", "attributes": { "weight": 1 } }, { "key": "23711", "source": "2451", "target": "624", "attributes": { "weight": 1 } }, { "key": "23710", "source": "2451", "target": "614", "attributes": { "weight": 1 } }, { "key": "23714", "source": "2452", "target": "378", "attributes": { "weight": 1 } }, { "key": "23715", "source": "2452", "target": "2453", "attributes": { "weight": 1 } }, { "key": "23717", "source": "2453", "target": "624", "attributes": { "weight": 1 } }, { "key": "23718", "source": "2453", "target": "2452", "attributes": { "weight": 1 } }, { "key": "23734", "source": "2454", "target": "8", "attributes": { "weight": 1 } }, { "key": "23733", "source": "2454", "target": "3", "attributes": { "weight": 1 } }, { "key": "23735", "source": "2454", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23850", "source": "2455", "target": "3", "attributes": { "weight": 1 } }, { "key": "23851", "source": "2455", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23856", "source": "2456", "target": "8", "attributes": { "weight": 2 } }, { "key": "23854", "source": "2456", "target": "241", "attributes": { "weight": 1 } }, { "key": "23855", "source": "2456", "target": "3", "attributes": { "weight": 2 } }, { "key": "23858", "source": "2456", "target": "828", "attributes": { "weight": 1 } }, { "key": "23857", "source": "2456", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23863", "source": "2458", "target": "2461", "attributes": { "weight": 1 } }, { "key": "23864", "source": "2459", "target": "2461", "attributes": { "weight": 1 } }, { "key": "31816", "source": "2461", "target": "595", "attributes": { "weight": 1 } }, { "key": "23872", "source": "2461", "target": "1191", "attributes": { "weight": 1 } }, { "key": "23874", "source": "2461", "target": "2459", "attributes": { "weight": 1 } }, { "key": "23873", "source": "2461", "target": "2458", "attributes": { "weight": 1 } }, { "key": "29224", "source": "2461", "target": "278", "attributes": { "weight": 2 } }, { "key": "23876", "source": "2461", "target": "580", "attributes": { "weight": 1 } }, { "key": "30956", "source": "2461", "target": "1965", "attributes": { "weight": 2 } }, { "key": "30957", "source": "2461", "target": "1967", "attributes": { "weight": 2 } }, { "key": "23875", "source": "2461", "target": "277", "attributes": { "weight": 2 } }, { "key": "35045", "source": "2461", "target": "3", "attributes": { "weight": 1 } }, { "key": "23878", "source": "2462", "target": "128", "attributes": { "weight": 2 } }, { "key": "29606", "source": "2463", "target": "421", "attributes": { "weight": 1 } }, { "key": "23881", "source": "2463", "target": "1253", "attributes": { "weight": 2 } }, { "key": "23880", "source": "2463", "target": "1763", "attributes": { "weight": 2 } }, { "key": "23894", "source": "2464", "target": "1763", "attributes": { "weight": 2 } }, { "key": "23897", "source": "2465", "target": "421", "attributes": { "weight": 3 } }, { "key": "29764", "source": "2465", "target": "794", "attributes": { "weight": 1 } }, { "key": "29762", "source": "2465", "target": "2288", "attributes": { "weight": 1 } }, { "key": "23898", "source": "2465", "target": "1763", "attributes": { "weight": 3 } }, { "key": "29761", "source": "2465", "target": "1801", "attributes": { "weight": 1 } }, { "key": "29763", "source": "2465", "target": "2890", "attributes": { "weight": 1 } }, { "key": "23899", "source": "2465", "target": "1253", "attributes": { "weight": 3 } }, { "key": "29765", "source": "2465", "target": "2892", "attributes": { "weight": 1 } }, { "key": "24043", "source": "2466", "target": "471", "attributes": { "weight": 1 } }, { "key": "24042", "source": "2466", "target": "130", "attributes": { "weight": 2 } }, { "key": "24070", "source": "2467", "target": "231", "attributes": { "weight": 1 } }, { "key": "24084", "source": "2468", "target": "130", "attributes": { "weight": 1 } }, { "key": "24163", "source": "2469", "target": "471", "attributes": { "weight": 1 } }, { "key": "24161", "source": "2469", "target": "1810", "attributes": { "weight": 1 } }, { "key": "24160", "source": "2469", "target": "429", "attributes": { "weight": 2 } }, { "key": "24162", "source": "2469", "target": "1364", "attributes": { "weight": 1 } }, { "key": "24202", "source": "2470", "target": "1374", "attributes": { "weight": 2 } }, { "key": "24200", "source": "2470", "target": "471", "attributes": { "weight": 2 } }, { "key": "35212", "source": "2470", "target": "56", "attributes": { "weight": 1 } }, { "key": "33629", "source": "2470", "target": "489", "attributes": { "weight": 1 } }, { "key": "24198", "source": "2470", "target": "130", "attributes": { "weight": 2 } }, { "key": "24203", "source": "2470", "target": "1375", "attributes": { "weight": 2 } }, { "key": "24201", "source": "2470", "target": "231", "attributes": { "weight": 2 } }, { "key": "24197", "source": "2470", "target": "429", "attributes": { "weight": 2 } }, { "key": "24199", "source": "2470", "target": "442", "attributes": { "weight": 2 } }, { "key": "35211", "source": "2470", "target": "1353", "attributes": { "weight": 1 } }, { "key": "24218", "source": "2471", "target": "130", "attributes": { "weight": 1 } }, { "key": "24219", "source": "2472", "target": "471", "attributes": { "weight": 1 } }, { "key": "24228", "source": "2473", "target": "130", "attributes": { "weight": 1 } }, { "key": "24275", "source": "2474", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24279", "source": "2476", "target": "2479", "attributes": { "weight": 1 } }, { "key": "24283", "source": "2477", "target": "2490", "attributes": { "weight": 1 } }, { "key": "24280", "source": "2477", "target": "2479", "attributes": { "weight": 1 } }, { "key": "24281", "source": "2477", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24282", "source": "2477", "target": "2485", "attributes": { "weight": 1 } }, { "key": "24284", "source": "2478", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24285", "source": "2478", "target": "2490", "attributes": { "weight": 1 } }, { "key": "24289", "source": "2479", "target": "2483", "attributes": { "weight": 1 } }, { "key": "24286", "source": "2479", "target": "2476", "attributes": { "weight": 1 } }, { "key": "24288", "source": "2479", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24287", "source": "2479", "target": "2477", "attributes": { "weight": 1 } }, { "key": "24311", "source": "2480", "target": "2486", "attributes": { "weight": 1 } }, { "key": "24309", "source": "2480", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24310", "source": "2480", "target": "2484", "attributes": { "weight": 1 } }, { "key": "24314", "source": "2482", "target": "2483", "attributes": { "weight": 1 } }, { "key": "24313", "source": "2482", "target": "2479", "attributes": { "weight": 1 } }, { "key": "24318", "source": "2483", "target": "2482", "attributes": { "weight": 1 } }, { "key": "24317", "source": "2483", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24316", "source": "2483", "target": "2479", "attributes": { "weight": 1 } }, { "key": "24315", "source": "2483", "target": "2477", "attributes": { "weight": 1 } }, { "key": "24321", "source": "2484", "target": "2480", "attributes": { "weight": 1 } }, { "key": "24320", "source": "2484", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24322", "source": "2485", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24323", "source": "2485", "target": "2483", "attributes": { "weight": 1 } }, { "key": "24325", "source": "2486", "target": "2480", "attributes": { "weight": 1 } }, { "key": "24324", "source": "2486", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24327", "source": "2487", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24328", "source": "2488", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24329", "source": "2489", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24330", "source": "2490", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24372", "source": "2491", "target": "221", "attributes": { "weight": 1 } }, { "key": "24390", "source": "2492", "target": "2494", "attributes": { "weight": 1 } }, { "key": "24391", "source": "2493", "target": "2496", "attributes": { "weight": 1 } }, { "key": "24392", "source": "2493", "target": "2335", "attributes": { "weight": 1 } }, { "key": "24393", "source": "2494", "target": "2315", "attributes": { "weight": 2 } }, { "key": "24394", "source": "2494", "target": "2492", "attributes": { "weight": 1 } }, { "key": "24395", "source": "2495", "target": "2322", "attributes": { "weight": 1 } }, { "key": "24397", "source": "2496", "target": "567", "attributes": { "weight": 1 } }, { "key": "24396", "source": "2496", "target": "2316", "attributes": { "weight": 1 } }, { "key": "24398", "source": "2496", "target": "2493", "attributes": { "weight": 1 } }, { "key": "24401", "source": "2496", "target": "1636", "attributes": { "weight": 1 } }, { "key": "24400", "source": "2496", "target": "1635", "attributes": { "weight": 1 } }, { "key": "24399", "source": "2496", "target": "2496", "attributes": { "weight": 1 } }, { "key": "24402", "source": "2496", "target": "1637", "attributes": { "weight": 1 } }, { "key": "24407", "source": "2497", "target": "2494", "attributes": { "weight": 1 } }, { "key": "24408", "source": "2498", "target": "2322", "attributes": { "weight": 1 } }, { "key": "30815", "source": "2499", "target": "3", "attributes": { "weight": 1 } }, { "key": "37214", "source": "2499", "target": "3017", "attributes": { "weight": 1 } }, { "key": "31565", "source": "2499", "target": "595", "attributes": { "weight": 1 } }, { "key": "24409", "source": "2499", "target": "19", "attributes": { "weight": 1 } }, { "key": "24410", "source": "2500", "target": "18", "attributes": { "weight": 1 } }, { "key": "30574", "source": "2500", "target": "25", "attributes": { "weight": 1 } }, { "key": "30573", "source": "2500", "target": "1965", "attributes": { "weight": 1 } }, { "key": "34928", "source": "2500", "target": "3", "attributes": { "weight": 1 } }, { "key": "24411", "source": "2500", "target": "1967", "attributes": { "weight": 1 } }, { "key": "24417", "source": "2501", "target": "1965", "attributes": { "weight": 3 } }, { "key": "30884", "source": "2501", "target": "19", "attributes": { "weight": 1 } }, { "key": "24418", "source": "2501", "target": "25", "attributes": { "weight": 1 } }, { "key": "34972", "source": "2501", "target": "3", "attributes": { "weight": 1 } }, { "key": "24429", "source": "2502", "target": "2504", "attributes": { "weight": 1 } }, { "key": "24430", "source": "2502", "target": "475", "attributes": { "weight": 1 } }, { "key": "24428", "source": "2502", "target": "1535", "attributes": { "weight": 1 } }, { "key": "24439", "source": "2503", "target": "19", "attributes": { "weight": 1 } }, { "key": "24440", "source": "2504", "target": "2502", "attributes": { "weight": 1 } }, { "key": "24454", "source": "2505", "target": "12", "attributes": { "weight": 1 } }, { "key": "29445", "source": "2505", "target": "232", "attributes": { "weight": 1 } }, { "key": "24456", "source": "2505", "target": "1774", "attributes": { "weight": 1 } }, { "key": "35010", "source": "2505", "target": "89", "attributes": { "weight": 1 } }, { "key": "31683", "source": "2505", "target": "0", "attributes": { "weight": 1 } }, { "key": "24455", "source": "2505", "target": "13", "attributes": { "weight": 1 } }, { "key": "24450", "source": "2505", "target": "788", "attributes": { "weight": 1 } }, { "key": "24453", "source": "2505", "target": "11", "attributes": { "weight": 1 } }, { "key": "24449", "source": "2505", "target": "3", "attributes": { "weight": 3 } }, { "key": "24451", "source": "2505", "target": "693", "attributes": { "weight": 1 } }, { "key": "31685", "source": "2505", "target": "595", "attributes": { "weight": 1 } }, { "key": "25631", "source": "2505", "target": "1780", "attributes": { "weight": 1 } }, { "key": "35139", "source": "2505", "target": "3085", "attributes": { "weight": 1 } }, { "key": "31684", "source": "2505", "target": "8", "attributes": { "weight": 1 } }, { "key": "24452", "source": "2505", "target": "5", "attributes": { "weight": 1 } }, { "key": "37294", "source": "2506", "target": "3352", "attributes": { "weight": 1 } }, { "key": "37292", "source": "2506", "target": "14", "attributes": { "weight": 1 } }, { "key": "37291", "source": "2506", "target": "347", "attributes": { "weight": 1 } }, { "key": "37289", "source": "2506", "target": "3351", "attributes": { "weight": 1 } }, { "key": "24462", "source": "2506", "target": "13", "attributes": { "weight": 1 } }, { "key": "37290", "source": "2506", "target": "12", "attributes": { "weight": 1 } }, { "key": "37293", "source": "2506", "target": "349", "attributes": { "weight": 1 } }, { "key": "37288", "source": "2506", "target": "3", "attributes": { "weight": 1 } }, { "key": "31815", "source": "2507", "target": "595", "attributes": { "weight": 1 } }, { "key": "24464", "source": "2507", "target": "19", "attributes": { "weight": 1 } }, { "key": "24466", "source": "2507", "target": "303", "attributes": { "weight": 1 } }, { "key": "30955", "source": "2507", "target": "304", "attributes": { "weight": 1 } }, { "key": "24465", "source": "2507", "target": "1965", "attributes": { "weight": 1 } }, { "key": "37255", "source": "2507", "target": "18", "attributes": { "weight": 1 } }, { "key": "30953", "source": "2507", "target": "3", "attributes": { "weight": 2 } }, { "key": "30954", "source": "2507", "target": "13", "attributes": { "weight": 1 } }, { "key": "30621", "source": "2507", "target": "25", "attributes": { "weight": 1 } }, { "key": "37256", "source": "2507", "target": "681", "attributes": { "weight": 1 } }, { "key": "24523", "source": "2508", "target": "1806", "attributes": { "weight": 1 } }, { "key": "24561", "source": "2509", "target": "1806", "attributes": { "weight": 1 } }, { "key": "24560", "source": "2509", "target": "1801", "attributes": { "weight": 1 } }, { "key": "24566", "source": "2510", "target": "1041", "attributes": { "weight": 1 } }, { "key": "28611", "source": "2510", "target": "2116", "attributes": { "weight": 1 } }, { "key": "34860", "source": "2511", "target": "359", "attributes": { "weight": 1 } }, { "key": "27800", "source": "2511", "target": "339", "attributes": { "weight": 1 } }, { "key": "34863", "source": "2511", "target": "163", "attributes": { "weight": 1 } }, { "key": "34862", "source": "2511", "target": "1765", "attributes": { "weight": 1 } }, { "key": "34859", "source": "2511", "target": "2232", "attributes": { "weight": 1 } }, { "key": "34861", "source": "2511", "target": "556", "attributes": { "weight": 1 } }, { "key": "24604", "source": "2511", "target": "2118", "attributes": { "weight": 1 } }, { "key": "24662", "source": "2512", "target": "671", "attributes": { "weight": 1 } }, { "key": "24661", "source": "2512", "target": "670", "attributes": { "weight": 1 } }, { "key": "24690", "source": "2513", "target": "8", "attributes": { "weight": 1 } }, { "key": "24689", "source": "2513", "target": "5", "attributes": { "weight": 1 } }, { "key": "33789", "source": "2513", "target": "3", "attributes": { "weight": 1 } }, { "key": "32546", "source": "2513", "target": "791", "attributes": { "weight": 1 } }, { "key": "24710", "source": "2514", "target": "1401", "attributes": { "weight": 1 } }, { "key": "24711", "source": "2514", "target": "2515", "attributes": { "weight": 1 } }, { "key": "24717", "source": "2515", "target": "378", "attributes": { "weight": 1 } }, { "key": "24715", "source": "2515", "target": "704", "attributes": { "weight": 1 } }, { "key": "24714", "source": "2515", "target": "373", "attributes": { "weight": 1 } }, { "key": "24716", "source": "2515", "target": "2514", "attributes": { "weight": 1 } }, { "key": "24719", "source": "2516", "target": "1765", "attributes": { "weight": 2 } }, { "key": "24720", "source": "2517", "target": "1765", "attributes": { "weight": 2 } }, { "key": "24725", "source": "2518", "target": "1765", "attributes": { "weight": 2 } }, { "key": "24727", "source": "2520", "target": "1243", "attributes": { "weight": 1 } }, { "key": "24728", "source": "2521", "target": "1243", "attributes": { "weight": 2 } }, { "key": "25517", "source": "2521", "target": "2522", "attributes": { "weight": 1 } }, { "key": "24729", "source": "2522", "target": "1243", "attributes": { "weight": 2 } }, { "key": "25518", "source": "2522", "target": "2521", "attributes": { "weight": 1 } }, { "key": "24731", "source": "2523", "target": "2525", "attributes": { "weight": 2 } }, { "key": "24730", "source": "2523", "target": "1243", "attributes": { "weight": 2 } }, { "key": "24739", "source": "2525", "target": "1243", "attributes": { "weight": 2 } }, { "key": "25538", "source": "2525", "target": "2523", "attributes": { "weight": 1 } }, { "key": "24741", "source": "2527", "target": "178", "attributes": { "weight": 1 } }, { "key": "24742", "source": "2527", "target": "2285", "attributes": { "weight": 1 } }, { "key": "24759", "source": "2528", "target": "1056", "attributes": { "weight": 2 } }, { "key": "30463", "source": "2528", "target": "1046", "attributes": { "weight": 1 } }, { "key": "27878", "source": "2528", "target": "468", "attributes": { "weight": 1 } }, { "key": "27876", "source": "2528", "target": "442", "attributes": { "weight": 1 } }, { "key": "37110", "source": "2528", "target": "1060", "attributes": { "weight": 1 } }, { "key": "27407", "source": "2528", "target": "339", "attributes": { "weight": 2 } }, { "key": "27877", "source": "2528", "target": "359", "attributes": { "weight": 2 } }, { "key": "24764", "source": "2529", "target": "486", "attributes": { "weight": 1 } }, { "key": "25373", "source": "2529", "target": "433", "attributes": { "weight": 1 } }, { "key": "24765", "source": "2529", "target": "57", "attributes": { "weight": 1 } }, { "key": "24773", "source": "2530", "target": "2531", "attributes": { "weight": 1 } }, { "key": "24774", "source": "2531", "target": "2530", "attributes": { "weight": 1 } }, { "key": "24821", "source": "2532", "target": "275", "attributes": { "weight": 1 } }, { "key": "24825", "source": "2533", "target": "636", "attributes": { "weight": 2 } }, { "key": "30972", "source": "2533", "target": "1809", "attributes": { "weight": 1 } }, { "key": "30973", "source": "2533", "target": "638", "attributes": { "weight": 1 } }, { "key": "31001", "source": "2534", "target": "636", "attributes": { "weight": 1 } }, { "key": "31002", "source": "2534", "target": "1809", "attributes": { "weight": 1 } }, { "key": "24828", "source": "2534", "target": "638", "attributes": { "weight": 3 } }, { "key": "27760", "source": "2535", "target": "1809", "attributes": { "weight": 1 } }, { "key": "24829", "source": "2535", "target": "636", "attributes": { "weight": 3 } }, { "key": "24833", "source": "2536", "target": "2542", "attributes": { "weight": 1 } }, { "key": "25662", "source": "2536", "target": "278", "attributes": { "weight": 1 } }, { "key": "24905", "source": "2536", "target": "1191", "attributes": { "weight": 1 } }, { "key": "24907", "source": "2536", "target": "1240", "attributes": { "weight": 1 } }, { "key": "24906", "source": "2536", "target": "707", "attributes": { "weight": 1 } }, { "key": "24842", "source": "2537", "target": "2542", "attributes": { "weight": 1 } }, { "key": "24940", "source": "2537", "target": "707", "attributes": { "weight": 1 } }, { "key": "24941", "source": "2537", "target": "1240", "attributes": { "weight": 1 } }, { "key": "24950", "source": "2538", "target": "1191", "attributes": { "weight": 1 } }, { "key": "24951", "source": "2538", "target": "698", "attributes": { "weight": 1 } }, { "key": "24952", "source": "2538", "target": "1240", "attributes": { "weight": 1 } }, { "key": "24843", "source": "2538", "target": "2542", "attributes": { "weight": 1 } }, { "key": "28408", "source": "2539", "target": "1240", "attributes": { "weight": 1 } }, { "key": "24998", "source": "2539", "target": "707", "attributes": { "weight": 2 } }, { "key": "24844", "source": "2539", "target": "2542", "attributes": { "weight": 1 } }, { "key": "28423", "source": "2540", "target": "579", "attributes": { "weight": 1 } }, { "key": "24847", "source": "2540", "target": "2542", "attributes": { "weight": 1 } }, { "key": "28422", "source": "2540", "target": "278", "attributes": { "weight": 2 } }, { "key": "25015", "source": "2540", "target": "1240", "attributes": { "weight": 2 } }, { "key": "25014", "source": "2540", "target": "707", "attributes": { "weight": 2 } }, { "key": "28424", "source": "2540", "target": "1512", "attributes": { "weight": 1 } }, { "key": "24849", "source": "2541", "target": "1191", "attributes": { "weight": 1 } }, { "key": "24850", "source": "2541", "target": "698", "attributes": { "weight": 1 } }, { "key": "24851", "source": "2542", "target": "2536", "attributes": { "weight": 1 } }, { "key": "24854", "source": "2542", "target": "2539", "attributes": { "weight": 1 } }, { "key": "24853", "source": "2542", "target": "2538", "attributes": { "weight": 1 } }, { "key": "24856", "source": "2542", "target": "2540", "attributes": { "weight": 1 } }, { "key": "24852", "source": "2542", "target": "2537", "attributes": { "weight": 1 } }, { "key": "24855", "source": "2542", "target": "1979", "attributes": { "weight": 1 } }, { "key": "24857", "source": "2543", "target": "603", "attributes": { "weight": 2 } }, { "key": "24858", "source": "2543", "target": "109", "attributes": { "weight": 2 } }, { "key": "24908", "source": "2545", "target": "707", "attributes": { "weight": 1 } }, { "key": "24909", "source": "2545", "target": "1240", "attributes": { "weight": 1 } }, { "key": "24911", "source": "2546", "target": "707", "attributes": { "weight": 2 } }, { "key": "24910", "source": "2546", "target": "1191", "attributes": { "weight": 2 } }, { "key": "24912", "source": "2546", "target": "1240", "attributes": { "weight": 2 } }, { "key": "28337", "source": "2546", "target": "579", "attributes": { "weight": 1 } }, { "key": "25663", "source": "2546", "target": "278", "attributes": { "weight": 1 } }, { "key": "24997", "source": "2547", "target": "707", "attributes": { "weight": 1 } }, { "key": "25024", "source": "2548", "target": "1240", "attributes": { "weight": 1 } }, { "key": "25023", "source": "2548", "target": "707", "attributes": { "weight": 1 } }, { "key": "25071", "source": "2549", "target": "707", "attributes": { "weight": 1 } }, { "key": "25077", "source": "2550", "target": "707", "attributes": { "weight": 2 } }, { "key": "29223", "source": "2551", "target": "278", "attributes": { "weight": 1 } }, { "key": "25079", "source": "2551", "target": "707", "attributes": { "weight": 2 } }, { "key": "25135", "source": "2552", "target": "310", "attributes": { "weight": 1 } }, { "key": "25136", "source": "2553", "target": "310", "attributes": { "weight": 2 } }, { "key": "30151", "source": "2553", "target": "1151", "attributes": { "weight": 1 } }, { "key": "30152", "source": "2553", "target": "1187", "attributes": { "weight": 1 } }, { "key": "25145", "source": "2554", "target": "310", "attributes": { "weight": 3 } }, { "key": "25144", "source": "2554", "target": "297", "attributes": { "weight": 1 } }, { "key": "37537", "source": "2554", "target": "2561", "attributes": { "weight": 1 } }, { "key": "28776", "source": "2555", "target": "2120", "attributes": { "weight": 1 } }, { "key": "25162", "source": "2555", "target": "1146", "attributes": { "weight": 2 } }, { "key": "28775", "source": "2555", "target": "1178", "attributes": { "weight": 1 } }, { "key": "25164", "source": "2556", "target": "297", "attributes": { "weight": 4 } }, { "key": "25163", "source": "2556", "target": "1166", "attributes": { "weight": 2 } }, { "key": "25165", "source": "2556", "target": "310", "attributes": { "weight": 3 } }, { "key": "25170", "source": "2557", "target": "297", "attributes": { "weight": 2 } }, { "key": "25169", "source": "2557", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30207", "source": "2557", "target": "1187", "attributes": { "weight": 1 } }, { "key": "25171", "source": "2557", "target": "310", "attributes": { "weight": 2 } }, { "key": "25174", "source": "2558", "target": "297", "attributes": { "weight": 3 } }, { "key": "31182", "source": "2558", "target": "3046", "attributes": { "weight": 1 } }, { "key": "25173", "source": "2558", "target": "1166", "attributes": { "weight": 1 } }, { "key": "25175", "source": "2558", "target": "310", "attributes": { "weight": 2 } }, { "key": "31183", "source": "2558", "target": "3047", "attributes": { "weight": 1 } }, { "key": "25176", "source": "2559", "target": "297", "attributes": { "weight": 3 } }, { "key": "25177", "source": "2559", "target": "310", "attributes": { "weight": 2 } }, { "key": "30235", "source": "2560", "target": "2117", "attributes": { "weight": 1 } }, { "key": "35379", "source": "2560", "target": "310", "attributes": { "weight": 1 } }, { "key": "25194", "source": "2560", "target": "1166", "attributes": { "weight": 3 } }, { "key": "30236", "source": "2560", "target": "1341", "attributes": { "weight": 1 } }, { "key": "33020", "source": "2560", "target": "297", "attributes": { "weight": 1 } }, { "key": "25196", "source": "2561", "target": "1166", "attributes": { "weight": 3 } }, { "key": "37571", "source": "2561", "target": "310", "attributes": { "weight": 1 } }, { "key": "37570", "source": "2561", "target": "2554", "attributes": { "weight": 1 } }, { "key": "25198", "source": "2561", "target": "1996", "attributes": { "weight": 1 } }, { "key": "25197", "source": "2561", "target": "297", "attributes": { "weight": 2 } }, { "key": "25209", "source": "2562", "target": "1166", "attributes": { "weight": 2 } }, { "key": "33021", "source": "2562", "target": "310", "attributes": { "weight": 1 } }, { "key": "25264", "source": "2563", "target": "1640", "attributes": { "weight": 1 } }, { "key": "25265", "source": "2564", "target": "2336", "attributes": { "weight": 1 } }, { "key": "25274", "source": "2565", "target": "2568", "attributes": { "weight": 1 } }, { "key": "25276", "source": "2565", "target": "2336", "attributes": { "weight": 1 } }, { "key": "25275", "source": "2565", "target": "2330", "attributes": { "weight": 1 } }, { "key": "25284", "source": "2566", "target": "2328", "attributes": { "weight": 1 } }, { "key": "25289", "source": "2568", "target": "2565", "attributes": { "weight": 1 } }, { "key": "25288", "source": "2568", "target": "2315", "attributes": { "weight": 1 } }, { "key": "25290", "source": "2568", "target": "2574", "attributes": { "weight": 1 } }, { "key": "25294", "source": "2569", "target": "1640", "attributes": { "weight": 2 } }, { "key": "25305", "source": "2571", "target": "2328", "attributes": { "weight": 1 } }, { "key": "25307", "source": "2572", "target": "2326", "attributes": { "weight": 2 } }, { "key": "25306", "source": "2572", "target": "572", "attributes": { "weight": 1 } }, { "key": "25308", "source": "2573", "target": "2328", "attributes": { "weight": 1 } }, { "key": "25310", "source": "2574", "target": "2322", "attributes": { "weight": 1 } }, { "key": "25309", "source": "2574", "target": "2315", "attributes": { "weight": 1 } }, { "key": "25311", "source": "2574", "target": "2568", "attributes": { "weight": 1 } }, { "key": "25312", "source": "2575", "target": "2281", "attributes": { "weight": 1 } }, { "key": "25325", "source": "2576", "target": "1640", "attributes": { "weight": 1 } }, { "key": "25351", "source": "2578", "target": "572", "attributes": { "weight": 1 } }, { "key": "37078", "source": "2579", "target": "358", "attributes": { "weight": 1 } }, { "key": "37077", "source": "2579", "target": "2232", "attributes": { "weight": 1 } }, { "key": "25352", "source": "2579", "target": "2580", "attributes": { "weight": 2 } }, { "key": "37079", "source": "2579", "target": "162", "attributes": { "weight": 1 } }, { "key": "37080", "source": "2579", "target": "794", "attributes": { "weight": 1 } }, { "key": "25353", "source": "2579", "target": "161", "attributes": { "weight": 1 } }, { "key": "25375", "source": "2580", "target": "2579", "attributes": { "weight": 2 } }, { "key": "25376", "source": "2580", "target": "2581", "attributes": { "weight": 2 } }, { "key": "37081", "source": "2581", "target": "162", "attributes": { "weight": 1 } }, { "key": "25379", "source": "2581", "target": "2580", "attributes": { "weight": 2 } }, { "key": "37082", "source": "2581", "target": "1788", "attributes": { "weight": 1 } }, { "key": "25399", "source": "2582", "target": "2586", "attributes": { "weight": 1 } }, { "key": "25400", "source": "2582", "target": "1408", "attributes": { "weight": 1 } }, { "key": "27763", "source": "2583", "target": "625", "attributes": { "weight": 1 } }, { "key": "27762", "source": "2583", "target": "621", "attributes": { "weight": 1 } }, { "key": "25403", "source": "2583", "target": "2585", "attributes": { "weight": 2 } }, { "key": "25406", "source": "2584", "target": "2587", "attributes": { "weight": 1 } }, { "key": "25404", "source": "2584", "target": "2586", "attributes": { "weight": 1 } }, { "key": "25407", "source": "2584", "target": "2588", "attributes": { "weight": 1 } }, { "key": "25405", "source": "2584", "target": "1408", "attributes": { "weight": 1 } }, { "key": "27766", "source": "2585", "target": "621", "attributes": { "weight": 1 } }, { "key": "25408", "source": "2585", "target": "2583", "attributes": { "weight": 2 } }, { "key": "25409", "source": "2585", "target": "625", "attributes": { "weight": 2 } }, { "key": "25411", "source": "2586", "target": "2584", "attributes": { "weight": 1 } }, { "key": "25412", "source": "2586", "target": "625", "attributes": { "weight": 1 } }, { "key": "25410", "source": "2586", "target": "2582", "attributes": { "weight": 1 } }, { "key": "25418", "source": "2587", "target": "625", "attributes": { "weight": 1 } }, { "key": "36874", "source": "2587", "target": "3333", "attributes": { "weight": 1 } }, { "key": "36875", "source": "2587", "target": "3335", "attributes": { "weight": 1 } }, { "key": "36876", "source": "2587", "target": "3339", "attributes": { "weight": 1 } }, { "key": "25417", "source": "2587", "target": "2584", "attributes": { "weight": 1 } }, { "key": "25419", "source": "2587", "target": "2588", "attributes": { "weight": 2 } }, { "key": "36889", "source": "2588", "target": "3324", "attributes": { "weight": 1 } }, { "key": "36888", "source": "2588", "target": "3323", "attributes": { "weight": 1 } }, { "key": "36884", "source": "2588", "target": "3318", "attributes": { "weight": 1 } }, { "key": "36893", "source": "2588", "target": "3337", "attributes": { "weight": 1 } }, { "key": "36890", "source": "2588", "target": "3325", "attributes": { "weight": 1 } }, { "key": "36892", "source": "2588", "target": "3334", "attributes": { "weight": 1 } }, { "key": "36885", "source": "2588", "target": "3319", "attributes": { "weight": 1 } }, { "key": "25432", "source": "2588", "target": "1408", "attributes": { "weight": 2 } }, { "key": "25431", "source": "2588", "target": "2584", "attributes": { "weight": 1 } }, { "key": "25430", "source": "2588", "target": "2582", "attributes": { "weight": 1 } }, { "key": "36895", "source": "2588", "target": "3339", "attributes": { "weight": 1 } }, { "key": "36894", "source": "2588", "target": "3338", "attributes": { "weight": 1 } }, { "key": "36886", "source": "2588", "target": "3321", "attributes": { "weight": 1 } }, { "key": "36887", "source": "2588", "target": "3322", "attributes": { "weight": 1 } }, { "key": "36891", "source": "2588", "target": "3326", "attributes": { "weight": 1 } }, { "key": "25433", "source": "2588", "target": "2587", "attributes": { "weight": 2 } }, { "key": "25436", "source": "2589", "target": "1414", "attributes": { "weight": 1 } }, { "key": "25435", "source": "2589", "target": "1408", "attributes": { "weight": 1 } }, { "key": "30812", "source": "2590", "target": "783", "attributes": { "weight": 1 } }, { "key": "25438", "source": "2590", "target": "990", "attributes": { "weight": 2 } }, { "key": "25459", "source": "2591", "target": "989", "attributes": { "weight": 1 } }, { "key": "25460", "source": "2591", "target": "990", "attributes": { "weight": 1 } }, { "key": "25499", "source": "2593", "target": "128", "attributes": { "weight": 1 } }, { "key": "25510", "source": "2599", "target": "1165", "attributes": { "weight": 1 } }, { "key": "25516", "source": "2600", "target": "2601", "attributes": { "weight": 1 } }, { "key": "25515", "source": "2600", "target": "1526", "attributes": { "weight": 1 } }, { "key": "25519", "source": "2601", "target": "2600", "attributes": { "weight": 1 } }, { "key": "25520", "source": "2601", "target": "924", "attributes": { "weight": 1 } }, { "key": "25521", "source": "2602", "target": "1263", "attributes": { "weight": 1 } }, { "key": "25522", "source": "2602", "target": "924", "attributes": { "weight": 1 } }, { "key": "25524", "source": "2603", "target": "1315", "attributes": { "weight": 1 } }, { "key": "25523", "source": "2603", "target": "1173", "attributes": { "weight": 1 } }, { "key": "25532", "source": "2604", "target": "924", "attributes": { "weight": 1 } }, { "key": "25531", "source": "2604", "target": "1165", "attributes": { "weight": 1 } }, { "key": "25533", "source": "2605", "target": "1291", "attributes": { "weight": 1 } }, { "key": "34633", "source": "2605", "target": "1323", "attributes": { "weight": 1 } }, { "key": "25534", "source": "2606", "target": "1291", "attributes": { "weight": 1 } }, { "key": "25539", "source": "2607", "target": "1263", "attributes": { "weight": 1 } }, { "key": "25543", "source": "2608", "target": "175", "attributes": { "weight": 1 } }, { "key": "25560", "source": "2609", "target": "830", "attributes": { "weight": 1 } }, { "key": "25563", "source": "2610", "target": "830", "attributes": { "weight": 1 } }, { "key": "25583", "source": "2611", "target": "361", "attributes": { "weight": 1 } }, { "key": "25581", "source": "2611", "target": "649", "attributes": { "weight": 1 } }, { "key": "25582", "source": "2611", "target": "655", "attributes": { "weight": 1 } }, { "key": "25580", "source": "2611", "target": "357", "attributes": { "weight": 1 } }, { "key": "25579", "source": "2611", "target": "354", "attributes": { "weight": 1 } }, { "key": "25635", "source": "2612", "target": "1780", "attributes": { "weight": 1 } }, { "key": "25634", "source": "2612", "target": "787", "attributes": { "weight": 1 } }, { "key": "30940", "source": "2612", "target": "3", "attributes": { "weight": 1 } }, { "key": "25693", "source": "2613", "target": "699", "attributes": { "weight": 1 } }, { "key": "25692", "source": "2613", "target": "697", "attributes": { "weight": 2 } }, { "key": "25739", "source": "2614", "target": "699", "attributes": { "weight": 2 } }, { "key": "29207", "source": "2614", "target": "697", "attributes": { "weight": 1 } }, { "key": "25741", "source": "2615", "target": "697", "attributes": { "weight": 2 } }, { "key": "25743", "source": "2616", "target": "699", "attributes": { "weight": 2 } }, { "key": "25742", "source": "2616", "target": "697", "attributes": { "weight": 2 } }, { "key": "25762", "source": "2617", "target": "697", "attributes": { "weight": 1 } }, { "key": "25763", "source": "2617", "target": "699", "attributes": { "weight": 2 } }, { "key": "25776", "source": "2618", "target": "697", "attributes": { "weight": 1 } }, { "key": "25777", "source": "2618", "target": "699", "attributes": { "weight": 2 } }, { "key": "25779", "source": "2619", "target": "697", "attributes": { "weight": 1 } }, { "key": "25876", "source": "2620", "target": "220", "attributes": { "weight": 1 } }, { "key": "31332", "source": "2620", "target": "674", "attributes": { "weight": 1 } }, { "key": "25971", "source": "2621", "target": "2622", "attributes": { "weight": 2 } }, { "key": "26002", "source": "2622", "target": "1906", "attributes": { "weight": 2 } }, { "key": "26003", "source": "2622", "target": "1907", "attributes": { "weight": 2 } }, { "key": "25999", "source": "2622", "target": "2448", "attributes": { "weight": 2 } }, { "key": "26011", "source": "2622", "target": "1984", "attributes": { "weight": 2 } }, { "key": "25992", "source": "2622", "target": "1898", "attributes": { "weight": 2 } }, { "key": "26007", "source": "2622", "target": "2398", "attributes": { "weight": 2 } }, { "key": "25998", "source": "2622", "target": "270", "attributes": { "weight": 2 } }, { "key": "26009", "source": "2622", "target": "1916", "attributes": { "weight": 2 } }, { "key": "25986", "source": "2622", "target": "1969", "attributes": { "weight": 2 } }, { "key": "26020", "source": "2622", "target": "321", "attributes": { "weight": 2 } }, { "key": "26008", "source": "2622", "target": "1977", "attributes": { "weight": 2 } }, { "key": "26017", "source": "2622", "target": "839", "attributes": { "weight": 2 } }, { "key": "26016", "source": "2622", "target": "303", "attributes": { "weight": 2 } }, { "key": "26025", "source": "2622", "target": "334", "attributes": { "weight": 2 } }, { "key": "25994", "source": "2622", "target": "263", "attributes": { "weight": 2 } }, { "key": "26000", "source": "2622", "target": "2621", "attributes": { "weight": 2 } }, { "key": "25990", "source": "2622", "target": "259", "attributes": { "weight": 2 } }, { "key": "26022", "source": "2622", "target": "1929", "attributes": { "weight": 2 } }, { "key": "25997", "source": "2622", "target": "266", "attributes": { "weight": 2 } }, { "key": "26006", "source": "2622", "target": "2397", "attributes": { "weight": 2 } }, { "key": "25996", "source": "2622", "target": "265", "attributes": { "weight": 2 } }, { "key": "25995", "source": "2622", "target": "264", "attributes": { "weight": 2 } }, { "key": "26019", "source": "2622", "target": "320", "attributes": { "weight": 2 } }, { "key": "26023", "source": "2622", "target": "1930", "attributes": { "weight": 2 } }, { "key": "26018", "source": "2622", "target": "312", "attributes": { "weight": 2 } }, { "key": "26024", "source": "2622", "target": "327", "attributes": { "weight": 2 } }, { "key": "25989", "source": "2622", "target": "1973", "attributes": { "weight": 2 } }, { "key": "26005", "source": "2622", "target": "1909", "attributes": { "weight": 2 } }, { "key": "26015", "source": "2622", "target": "1987", "attributes": { "weight": 2 } }, { "key": "25993", "source": "2622", "target": "262", "attributes": { "weight": 2 } }, { "key": "26013", "source": "2622", "target": "1922", "attributes": { "weight": 2 } }, { "key": "26012", "source": "2622", "target": "295", "attributes": { "weight": 2 } }, { "key": "25991", "source": "2622", "target": "1897", "attributes": { "weight": 2 } }, { "key": "26001", "source": "2622", "target": "275", "attributes": { "weight": 2 } }, { "key": "25988", "source": "2622", "target": "836", "attributes": { "weight": 2 } }, { "key": "26014", "source": "2622", "target": "299", "attributes": { "weight": 2 } }, { "key": "26010", "source": "2622", "target": "286", "attributes": { "weight": 2 } }, { "key": "25987", "source": "2622", "target": "1972", "attributes": { "weight": 2 } }, { "key": "26021", "source": "2622", "target": "1927", "attributes": { "weight": 2 } }, { "key": "26004", "source": "2622", "target": "277", "attributes": { "weight": 2 } }, { "key": "26040", "source": "2623", "target": "711", "attributes": { "weight": 1 } }, { "key": "26043", "source": "2624", "target": "163", "attributes": { "weight": 1 } }, { "key": "32641", "source": "2624", "target": "3024", "attributes": { "weight": 1 } }, { "key": "26044", "source": "2624", "target": "2626", "attributes": { "weight": 2 } }, { "key": "30970", "source": "2624", "target": "638", "attributes": { "weight": 2 } }, { "key": "32643", "source": "2624", "target": "3035", "attributes": { "weight": 1 } }, { "key": "32644", "source": "2624", "target": "3113", "attributes": { "weight": 1 } }, { "key": "32642", "source": "2624", "target": "2177", "attributes": { "weight": 1 } }, { "key": "29937", "source": "2625", "target": "1527", "attributes": { "weight": 1 } }, { "key": "29936", "source": "2625", "target": "2904", "attributes": { "weight": 1 } }, { "key": "26064", "source": "2625", "target": "1541", "attributes": { "weight": 2 } }, { "key": "26065", "source": "2625", "target": "163", "attributes": { "weight": 2 } }, { "key": "32666", "source": "2626", "target": "1527", "attributes": { "weight": 1 } }, { "key": "31059", "source": "2626", "target": "638", "attributes": { "weight": 1 } }, { "key": "26091", "source": "2626", "target": "2624", "attributes": { "weight": 2 } }, { "key": "26092", "source": "2626", "target": "163", "attributes": { "weight": 2 } }, { "key": "32665", "source": "2626", "target": "3024", "attributes": { "weight": 1 } }, { "key": "32667", "source": "2626", "target": "2177", "attributes": { "weight": 1 } }, { "key": "26148", "source": "2627", "target": "1214", "attributes": { "weight": 1 } }, { "key": "26149", "source": "2627", "target": "2629", "attributes": { "weight": 1 } }, { "key": "29257", "source": "2628", "target": "634", "attributes": { "weight": 1 } }, { "key": "26159", "source": "2628", "target": "1214", "attributes": { "weight": 2 } }, { "key": "29259", "source": "2628", "target": "3422", "attributes": { "weight": 1 } }, { "key": "29258", "source": "2628", "target": "635", "attributes": { "weight": 1 } }, { "key": "29256", "source": "2628", "target": "633", "attributes": { "weight": 1 } }, { "key": "29254", "source": "2628", "target": "2842", "attributes": { "weight": 1 } }, { "key": "29255", "source": "2628", "target": "1935", "attributes": { "weight": 1 } }, { "key": "26160", "source": "2629", "target": "2627", "attributes": { "weight": 1 } }, { "key": "26161", "source": "2629", "target": "1214", "attributes": { "weight": 1 } }, { "key": "26186", "source": "2630", "target": "2631", "attributes": { "weight": 1 } }, { "key": "26184", "source": "2630", "target": "54", "attributes": { "weight": 2 } }, { "key": "26185", "source": "2630", "target": "1556", "attributes": { "weight": 1 } }, { "key": "26192", "source": "2631", "target": "1556", "attributes": { "weight": 1 } }, { "key": "26191", "source": "2631", "target": "2630", "attributes": { "weight": 1 } }, { "key": "26190", "source": "2631", "target": "225", "attributes": { "weight": 1 } }, { "key": "26201", "source": "2632", "target": "30", "attributes": { "weight": 1 } }, { "key": "26202", "source": "2633", "target": "30", "attributes": { "weight": 2 } }, { "key": "26218", "source": "2634", "target": "1299", "attributes": { "weight": 1 } }, { "key": "26219", "source": "2634", "target": "601", "attributes": { "weight": 1 } }, { "key": "26240", "source": "2635", "target": "1297", "attributes": { "weight": 1 } }, { "key": "26241", "source": "2636", "target": "2429", "attributes": { "weight": 1 } }, { "key": "26245", "source": "2637", "target": "30", "attributes": { "weight": 2 } }, { "key": "26268", "source": "2638", "target": "30", "attributes": { "weight": 1 } }, { "key": "26269", "source": "2639", "target": "30", "attributes": { "weight": 1 } }, { "key": "29297", "source": "2639", "target": "1149", "attributes": { "weight": 1 } }, { "key": "26270", "source": "2640", "target": "30", "attributes": { "weight": 1 } }, { "key": "26277", "source": "2641", "target": "2430", "attributes": { "weight": 1 } }, { "key": "26279", "source": "2642", "target": "1524", "attributes": { "weight": 1 } }, { "key": "26290", "source": "2643", "target": "1117", "attributes": { "weight": 1 } }, { "key": "35539", "source": "2644", "target": "1710", "attributes": { "weight": 1 } }, { "key": "32705", "source": "2644", "target": "435", "attributes": { "weight": 2 } }, { "key": "32707", "source": "2644", "target": "472", "attributes": { "weight": 2 } }, { "key": "32706", "source": "2644", "target": "135", "attributes": { "weight": 1 } }, { "key": "32866", "source": "2644", "target": "470", "attributes": { "weight": 2 } }, { "key": "26294", "source": "2644", "target": "2450", "attributes": { "weight": 4 } }, { "key": "33204", "source": "2645", "target": "442", "attributes": { "weight": 1 } }, { "key": "33213", "source": "2645", "target": "474", "attributes": { "weight": 1 } }, { "key": "33201", "source": "2645", "target": "130", "attributes": { "weight": 1 } }, { "key": "26993", "source": "2645", "target": "447", "attributes": { "weight": 1 } }, { "key": "32191", "source": "2645", "target": "53", "attributes": { "weight": 1 } }, { "key": "33203", "source": "2645", "target": "51", "attributes": { "weight": 1 } }, { "key": "33210", "source": "2645", "target": "2258", "attributes": { "weight": 1 } }, { "key": "26990", "source": "2645", "target": "1353", "attributes": { "weight": 1 } }, { "key": "33200", "source": "2645", "target": "220", "attributes": { "weight": 1 } }, { "key": "33215", "source": "2645", "target": "489", "attributes": { "weight": 1 } }, { "key": "32190", "source": "2645", "target": "860", "attributes": { "weight": 1 } }, { "key": "26998", "source": "2645", "target": "56", "attributes": { "weight": 2 } }, { "key": "33205", "source": "2645", "target": "450", "attributes": { "weight": 1 } }, { "key": "26994", "source": "2645", "target": "451", "attributes": { "weight": 2 } }, { "key": "33212", "source": "2645", "target": "1367", "attributes": { "weight": 1 } }, { "key": "26997", "source": "2645", "target": "2269", "attributes": { "weight": 1 } }, { "key": "33209", "source": "2645", "target": "1836", "attributes": { "weight": 1 } }, { "key": "33214", "source": "2645", "target": "1282", "attributes": { "weight": 1 } }, { "key": "33208", "source": "2645", "target": "135", "attributes": { "weight": 1 } }, { "key": "26996", "source": "2645", "target": "231", "attributes": { "weight": 3 } }, { "key": "26393", "source": "2645", "target": "1047", "attributes": { "weight": 2 } }, { "key": "33207", "source": "2645", "target": "464", "attributes": { "weight": 1 } }, { "key": "26991", "source": "2645", "target": "429", "attributes": { "weight": 2 } }, { "key": "32192", "source": "2645", "target": "1368", "attributes": { "weight": 1 } }, { "key": "33202", "source": "2645", "target": "435", "attributes": { "weight": 1 } }, { "key": "26995", "source": "2645", "target": "2094", "attributes": { "weight": 1 } }, { "key": "33211", "source": "2645", "target": "472", "attributes": { "weight": 1 } }, { "key": "26992", "source": "2645", "target": "1354", "attributes": { "weight": 2 } }, { "key": "33206", "source": "2645", "target": "1219", "attributes": { "weight": 1 } }, { "key": "35119", "source": "2646", "target": "817", "attributes": { "weight": 1 } }, { "key": "33769", "source": "2646", "target": "89", "attributes": { "weight": 1 } }, { "key": "33771", "source": "2646", "target": "792", "attributes": { "weight": 1 } }, { "key": "35121", "source": "2646", "target": "352", "attributes": { "weight": 1 } }, { "key": "33773", "source": "2646", "target": "1774", "attributes": { "weight": 1 } }, { "key": "31597", "source": "2646", "target": "595", "attributes": { "weight": 1 } }, { "key": "35120", "source": "2646", "target": "14", "attributes": { "weight": 1 } }, { "key": "33772", "source": "2646", "target": "244", "attributes": { "weight": 1 } }, { "key": "28934", "source": "2646", "target": "479", "attributes": { "weight": 2 } }, { "key": "30886", "source": "2646", "target": "3", "attributes": { "weight": 2 } }, { "key": "30326", "source": "2646", "target": "693", "attributes": { "weight": 2 } }, { "key": "37219", "source": "2646", "target": "4", "attributes": { "weight": 1 } }, { "key": "37220", "source": "2646", "target": "3017", "attributes": { "weight": 1 } }, { "key": "33770", "source": "2646", "target": "788", "attributes": { "weight": 1 } }, { "key": "26563", "source": "2646", "target": "454", "attributes": { "weight": 1 } }, { "key": "36936", "source": "2647", "target": "235", "attributes": { "weight": 1 } }, { "key": "29898", "source": "2647", "target": "53", "attributes": { "weight": 1 } }, { "key": "32559", "source": "2647", "target": "791", "attributes": { "weight": 1 } }, { "key": "36935", "source": "2647", "target": "340", "attributes": { "weight": 1 } }, { "key": "29042", "source": "2647", "target": "495", "attributes": { "weight": 2 } }, { "key": "26917", "source": "2647", "target": "497", "attributes": { "weight": 1 } }, { "key": "36932", "source": "2647", "target": "452", "attributes": { "weight": 1 } }, { "key": "36933", "source": "2647", "target": "2251", "attributes": { "weight": 1 } }, { "key": "36931", "source": "2647", "target": "448", "attributes": { "weight": 1 } }, { "key": "36934", "source": "2647", "target": "190", "attributes": { "weight": 1 } }, { "key": "29897", "source": "2647", "target": "1024", "attributes": { "weight": 1 } }, { "key": "36930", "source": "2647", "target": "221", "attributes": { "weight": 1 } }, { "key": "29436", "source": "2647", "target": "232", "attributes": { "weight": 1 } }, { "key": "26620", "source": "2647", "target": "189", "attributes": { "weight": 1 } }, { "key": "30506", "source": "2647", "target": "352", "attributes": { "weight": 1 } }, { "key": "36937", "source": "2647", "target": "1375", "attributes": { "weight": 1 } }, { "key": "29051", "source": "2648", "target": "495", "attributes": { "weight": 2 } }, { "key": "30741", "source": "2648", "target": "1026", "attributes": { "weight": 1 } }, { "key": "26745", "source": "2648", "target": "189", "attributes": { "weight": 2 } }, { "key": "26817", "source": "2649", "target": "1158", "attributes": { "weight": 1 } }, { "key": "26832", "source": "2650", "target": "256", "attributes": { "weight": 1 } }, { "key": "26830", "source": "2650", "target": "1220", "attributes": { "weight": 1 } }, { "key": "26831", "source": "2650", "target": "785", "attributes": { "weight": 1 } }, { "key": "26829", "source": "2650", "target": "1158", "attributes": { "weight": 1 } }, { "key": "26849", "source": "2651", "target": "1835", "attributes": { "weight": 1 } }, { "key": "26856", "source": "2652", "target": "1835", "attributes": { "weight": 1 } }, { "key": "26857", "source": "2652", "target": "2655", "attributes": { "weight": 1 } }, { "key": "26861", "source": "2653", "target": "2654", "attributes": { "weight": 1 } }, { "key": "26859", "source": "2653", "target": "1835", "attributes": { "weight": 1 } }, { "key": "26860", "source": "2653", "target": "2652", "attributes": { "weight": 1 } }, { "key": "26858", "source": "2653", "target": "2651", "attributes": { "weight": 1 } }, { "key": "26864", "source": "2654", "target": "2656", "attributes": { "weight": 1 } }, { "key": "26862", "source": "2654", "target": "1835", "attributes": { "weight": 1 } }, { "key": "26863", "source": "2654", "target": "2653", "attributes": { "weight": 1 } }, { "key": "26865", "source": "2655", "target": "1835", "attributes": { "weight": 1 } }, { "key": "26866", "source": "2655", "target": "2652", "attributes": { "weight": 1 } }, { "key": "26867", "source": "2656", "target": "1835", "attributes": { "weight": 1 } }, { "key": "26868", "source": "2656", "target": "2654", "attributes": { "weight": 1 } }, { "key": "26873", "source": "2657", "target": "894", "attributes": { "weight": 1 } }, { "key": "26878", "source": "2658", "target": "493", "attributes": { "weight": 2 } }, { "key": "26877", "source": "2658", "target": "894", "attributes": { "weight": 1 } }, { "key": "26879", "source": "2659", "target": "894", "attributes": { "weight": 1 } }, { "key": "26887", "source": "2661", "target": "493", "attributes": { "weight": 1 } }, { "key": "26886", "source": "2661", "target": "894", "attributes": { "weight": 1 } }, { "key": "26897", "source": "2662", "target": "894", "attributes": { "weight": 1 } }, { "key": "26898", "source": "2662", "target": "493", "attributes": { "weight": 2 } }, { "key": "26896", "source": "2662", "target": "891", "attributes": { "weight": 1 } }, { "key": "27203", "source": "2663", "target": "1140", "attributes": { "weight": 1 } }, { "key": "27208", "source": "2664", "target": "1140", "attributes": { "weight": 1 } }, { "key": "27209", "source": "2665", "target": "1232", "attributes": { "weight": 1 } }, { "key": "27210", "source": "2666", "target": "1233", "attributes": { "weight": 1 } }, { "key": "27387", "source": "2667", "target": "70", "attributes": { "weight": 1 } }, { "key": "27390", "source": "2668", "target": "70", "attributes": { "weight": 1 } }, { "key": "27391", "source": "2669", "target": "339", "attributes": { "weight": 2 } }, { "key": "37092", "source": "2669", "target": "359", "attributes": { "weight": 1 } }, { "key": "27801", "source": "2669", "target": "2718", "attributes": { "weight": 1 } }, { "key": "27889", "source": "2670", "target": "1056", "attributes": { "weight": 1 } }, { "key": "27890", "source": "2670", "target": "1060", "attributes": { "weight": 3 } }, { "key": "33669", "source": "2670", "target": "473", "attributes": { "weight": 1 } }, { "key": "32845", "source": "2670", "target": "489", "attributes": { "weight": 2 } }, { "key": "30720", "source": "2670", "target": "889", "attributes": { "weight": 1 } }, { "key": "27409", "source": "2670", "target": "891", "attributes": { "weight": 2 } }, { "key": "32231", "source": "2670", "target": "472", "attributes": { "weight": 5 } }, { "key": "27408", "source": "2670", "target": "339", "attributes": { "weight": 2 } }, { "key": "27888", "source": "2670", "target": "359", "attributes": { "weight": 2 } }, { "key": "35028", "source": "2670", "target": "14", "attributes": { "weight": 1 } }, { "key": "32844", "source": "2670", "target": "2258", "attributes": { "weight": 3 } }, { "key": "32232", "source": "2670", "target": "1282", "attributes": { "weight": 1 } }, { "key": "35029", "source": "2670", "target": "352", "attributes": { "weight": 1 } }, { "key": "35026", "source": "2670", "target": "3", "attributes": { "weight": 1 } }, { "key": "32229", "source": "2670", "target": "435", "attributes": { "weight": 4 } }, { "key": "32230", "source": "2670", "target": "135", "attributes": { "weight": 5 } }, { "key": "27887", "source": "2670", "target": "791", "attributes": { "weight": 2 } }, { "key": "35027", "source": "2670", "target": "595", "attributes": { "weight": 1 } }, { "key": "27411", "source": "2671", "target": "2674", "attributes": { "weight": 1 } }, { "key": "27410", "source": "2671", "target": "2672", "attributes": { "weight": 1 } }, { "key": "27412", "source": "2672", "target": "2671", "attributes": { "weight": 1 } }, { "key": "27415", "source": "2674", "target": "2676", "attributes": { "weight": 1 } }, { "key": "27418", "source": "2676", "target": "2671", "attributes": { "weight": 1 } }, { "key": "27432", "source": "2681", "target": "3418", "attributes": { "weight": 1 } }, { "key": "27433", "source": "2681", "target": "1499", "attributes": { "weight": 1 } }, { "key": "27431", "source": "2681", "target": "1437", "attributes": { "weight": 1 } }, { "key": "27439", "source": "2682", "target": "1072", "attributes": { "weight": 1 } }, { "key": "27440", "source": "2682", "target": "352", "attributes": { "weight": 1 } }, { "key": "27441", "source": "2683", "target": "1072", "attributes": { "weight": 1 } }, { "key": "27445", "source": "2684", "target": "2694", "attributes": { "weight": 1 } }, { "key": "27443", "source": "2684", "target": "2693", "attributes": { "weight": 1 } }, { "key": "27444", "source": "2684", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27448", "source": "2685", "target": "2689", "attributes": { "weight": 1 } }, { "key": "27450", "source": "2685", "target": "2691", "attributes": { "weight": 1 } }, { "key": "27447", "source": "2685", "target": "1530", "attributes": { "weight": 1 } }, { "key": "27449", "source": "2685", "target": "1562", "attributes": { "weight": 1 } }, { "key": "27451", "source": "2685", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27455", "source": "2686", "target": "2692", "attributes": { "weight": 1 } }, { "key": "27456", "source": "2686", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27459", "source": "2687", "target": "1530", "attributes": { "weight": 2 } }, { "key": "27460", "source": "2687", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27461", "source": "2688", "target": "2692", "attributes": { "weight": 1 } }, { "key": "27462", "source": "2688", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27466", "source": "2689", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27465", "source": "2689", "target": "2685", "attributes": { "weight": 1 } }, { "key": "37471", "source": "2689", "target": "1530", "attributes": { "weight": 1 } }, { "key": "35190", "source": "2689", "target": "1562", "attributes": { "weight": 1 } }, { "key": "27472", "source": "2690", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27471", "source": "2690", "target": "2693", "attributes": { "weight": 1 } }, { "key": "27470", "source": "2690", "target": "1562", "attributes": { "weight": 1 } }, { "key": "27475", "source": "2691", "target": "2694", "attributes": { "weight": 1 } }, { "key": "27474", "source": "2691", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27473", "source": "2691", "target": "2685", "attributes": { "weight": 1 } }, { "key": "27478", "source": "2692", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27476", "source": "2692", "target": "2686", "attributes": { "weight": 1 } }, { "key": "27477", "source": "2692", "target": "2688", "attributes": { "weight": 1 } }, { "key": "27484", "source": "2693", "target": "2695", "attributes": { "weight": 1 } }, { "key": "27483", "source": "2693", "target": "2694", "attributes": { "weight": 1 } }, { "key": "27479", "source": "2693", "target": "2684", "attributes": { "weight": 1 } }, { "key": "27480", "source": "2693", "target": "1562", "attributes": { "weight": 2 } }, { "key": "27482", "source": "2693", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27481", "source": "2693", "target": "2690", "attributes": { "weight": 1 } }, { "key": "27504", "source": "2694", "target": "2691", "attributes": { "weight": 1 } }, { "key": "27503", "source": "2694", "target": "2684", "attributes": { "weight": 1 } }, { "key": "27505", "source": "2694", "target": "2693", "attributes": { "weight": 1 } }, { "key": "27506", "source": "2694", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27507", "source": "2695", "target": "2693", "attributes": { "weight": 1 } }, { "key": "27542", "source": "2696", "target": "1520", "attributes": { "weight": 1 } }, { "key": "35749", "source": "2696", "target": "136", "attributes": { "weight": 1 } }, { "key": "35748", "source": "2696", "target": "1516", "attributes": { "weight": 1 } }, { "key": "27870", "source": "2696", "target": "339", "attributes": { "weight": 1 } }, { "key": "31110", "source": "2696", "target": "1765", "attributes": { "weight": 1 } }, { "key": "31955", "source": "2696", "target": "359", "attributes": { "weight": 1 } }, { "key": "32533", "source": "2696", "target": "1555", "attributes": { "weight": 1 } }, { "key": "27569", "source": "2697", "target": "2707", "attributes": { "weight": 1 } }, { "key": "27570", "source": "2697", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27583", "source": "2698", "target": "2705", "attributes": { "weight": 1 } }, { "key": "27600", "source": "2699", "target": "564", "attributes": { "weight": 1 } }, { "key": "27601", "source": "2699", "target": "1634", "attributes": { "weight": 1 } }, { "key": "27616", "source": "2701", "target": "564", "attributes": { "weight": 1 } }, { "key": "27617", "source": "2702", "target": "2707", "attributes": { "weight": 1 } }, { "key": "27618", "source": "2702", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27620", "source": "2703", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27619", "source": "2703", "target": "2707", "attributes": { "weight": 1 } }, { "key": "27621", "source": "2704", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27624", "source": "2705", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27623", "source": "2705", "target": "2698", "attributes": { "weight": 1 } }, { "key": "27622", "source": "2705", "target": "564", "attributes": { "weight": 1 } }, { "key": "27627", "source": "2706", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27626", "source": "2706", "target": "1626", "attributes": { "weight": 1 } }, { "key": "27633", "source": "2707", "target": "2703", "attributes": { "weight": 1 } }, { "key": "27630", "source": "2707", "target": "2697", "attributes": { "weight": 1 } }, { "key": "27632", "source": "2707", "target": "2702", "attributes": { "weight": 1 } }, { "key": "27635", "source": "2707", "target": "2708", "attributes": { "weight": 1 } }, { "key": "27634", "source": "2707", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27650", "source": "2708", "target": "2707", "attributes": { "weight": 1 } }, { "key": "27651", "source": "2708", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27675", "source": "2710", "target": "178", "attributes": { "weight": 1 } }, { "key": "30192", "source": "2710", "target": "165", "attributes": { "weight": 2 } }, { "key": "31201", "source": "2710", "target": "572", "attributes": { "weight": 1 } }, { "key": "27747", "source": "2711", "target": "1553", "attributes": { "weight": 1 } }, { "key": "27759", "source": "2712", "target": "638", "attributes": { "weight": 2 } }, { "key": "30999", "source": "2712", "target": "1813", "attributes": { "weight": 1 } }, { "key": "30998", "source": "2712", "target": "1809", "attributes": { "weight": 1 } }, { "key": "30997", "source": "2712", "target": "636", "attributes": { "weight": 1 } }, { "key": "27764", "source": "2713", "target": "621", "attributes": { "weight": 1 } }, { "key": "27765", "source": "2713", "target": "625", "attributes": { "weight": 1 } }, { "key": "27779", "source": "2714", "target": "2716", "attributes": { "weight": 1 } }, { "key": "27780", "source": "2714", "target": "1926", "attributes": { "weight": 1 } }, { "key": "27785", "source": "2715", "target": "1926", "attributes": { "weight": 1 } }, { "key": "27786", "source": "2716", "target": "2714", "attributes": { "weight": 1 } }, { "key": "27794", "source": "2717", "target": "1926", "attributes": { "weight": 1 } }, { "key": "27795", "source": "2718", "target": "2669", "attributes": { "weight": 1 } }, { "key": "27950", "source": "2719", "target": "328", "attributes": { "weight": 1 } }, { "key": "27949", "source": "2719", "target": "326", "attributes": { "weight": 1 } }, { "key": "28000", "source": "2720", "target": "264", "attributes": { "weight": 1 } }, { "key": "28079", "source": "2721", "target": "285", "attributes": { "weight": 1 } }, { "key": "33123", "source": "2721", "target": "294", "attributes": { "weight": 1 } }, { "key": "29574", "source": "2722", "target": "164", "attributes": { "weight": 1 } }, { "key": "28097", "source": "2722", "target": "287", "attributes": { "weight": 1 } }, { "key": "28209", "source": "2723", "target": "328", "attributes": { "weight": 2 } }, { "key": "28211", "source": "2724", "target": "308", "attributes": { "weight": 2 } }, { "key": "28215", "source": "2725", "target": "1285", "attributes": { "weight": 1 } }, { "key": "28217", "source": "2726", "target": "1245", "attributes": { "weight": 1 } }, { "key": "28216", "source": "2726", "target": "1227", "attributes": { "weight": 1 } }, { "key": "28222", "source": "2727", "target": "1285", "attributes": { "weight": 1 } }, { "key": "28243", "source": "2731", "target": "783", "attributes": { "weight": 2 } }, { "key": "28242", "source": "2731", "target": "236", "attributes": { "weight": 1 } }, { "key": "28246", "source": "2732", "target": "2752", "attributes": { "weight": 1 } }, { "key": "28248", "source": "2733", "target": "2752", "attributes": { "weight": 1 } }, { "key": "28247", "source": "2733", "target": "2737", "attributes": { "weight": 1 } }, { "key": "28251", "source": "2734", "target": "2739", "attributes": { "weight": 1 } }, { "key": "28252", "source": "2734", "target": "2746", "attributes": { "weight": 1 } }, { "key": "28253", "source": "2734", "target": "2755", "attributes": { "weight": 1 } }, { "key": "28254", "source": "2735", "target": "2738", "attributes": { "weight": 1 } }, { "key": "28255", "source": "2735", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28256", "source": "2736", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28257", "source": "2737", "target": "2733", "attributes": { "weight": 1 } }, { "key": "28258", "source": "2737", "target": "2752", "attributes": { "weight": 1 } }, { "key": "28259", "source": "2738", "target": "2735", "attributes": { "weight": 1 } }, { "key": "28260", "source": "2738", "target": "2752", "attributes": { "weight": 1 } }, { "key": "28261", "source": "2738", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28262", "source": "2739", "target": "2734", "attributes": { "weight": 1 } }, { "key": "28263", "source": "2739", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28264", "source": "2740", "target": "2741", "attributes": { "weight": 1 } }, { "key": "28266", "source": "2740", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28265", "source": "2740", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28267", "source": "2741", "target": "2740", "attributes": { "weight": 1 } }, { "key": "28268", "source": "2741", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28269", "source": "2742", "target": "2746", "attributes": { "weight": 1 } }, { "key": "28270", "source": "2742", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28272", "source": "2743", "target": "2754", "attributes": { "weight": 1 } }, { "key": "28273", "source": "2743", "target": "2758", "attributes": { "weight": 1 } }, { "key": "28271", "source": "2743", "target": "2748", "attributes": { "weight": 1 } }, { "key": "28274", "source": "2744", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28799", "source": "2745", "target": "1146", "attributes": { "weight": 2 } }, { "key": "30242", "source": "2745", "target": "310", "attributes": { "weight": 2 } }, { "key": "31076", "source": "2745", "target": "1280", "attributes": { "weight": 1 } }, { "key": "31075", "source": "2745", "target": "170", "attributes": { "weight": 1 } }, { "key": "31079", "source": "2745", "target": "3041", "attributes": { "weight": 1 } }, { "key": "31078", "source": "2745", "target": "1299", "attributes": { "weight": 1 } }, { "key": "31077", "source": "2745", "target": "580", "attributes": { "weight": 1 } }, { "key": "28275", "source": "2745", "target": "2228", "attributes": { "weight": 2 } }, { "key": "30241", "source": "2745", "target": "1166", "attributes": { "weight": 2 } }, { "key": "28279", "source": "2746", "target": "2751", "attributes": { "weight": 1 } }, { "key": "28280", "source": "2746", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28276", "source": "2746", "target": "2734", "attributes": { "weight": 1 } }, { "key": "28278", "source": "2746", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28277", "source": "2746", "target": "2742", "attributes": { "weight": 1 } }, { "key": "28281", "source": "2747", "target": "2755", "attributes": { "weight": 1 } }, { "key": "28282", "source": "2747", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28283", "source": "2748", "target": "2743", "attributes": { "weight": 1 } }, { "key": "28285", "source": "2748", "target": "2754", "attributes": { "weight": 1 } }, { "key": "28284", "source": "2748", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28294", "source": "2749", "target": "2757", "attributes": { "weight": 1 } }, { "key": "28289", "source": "2749", "target": "2744", "attributes": { "weight": 1 } }, { "key": "28287", "source": "2749", "target": "2740", "attributes": { "weight": 1 } }, { "key": "28292", "source": "2749", "target": "2750", "attributes": { "weight": 1 } }, { "key": "28291", "source": "2749", "target": "2748", "attributes": { "weight": 1 } }, { "key": "28293", "source": "2749", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28288", "source": "2749", "target": "2741", "attributes": { "weight": 1 } }, { "key": "28295", "source": "2749", "target": "2758", "attributes": { "weight": 1 } }, { "key": "28286", "source": "2749", "target": "1166", "attributes": { "weight": 2 } }, { "key": "28290", "source": "2749", "target": "2746", "attributes": { "weight": 1 } }, { "key": "28296", "source": "2750", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28298", "source": "2751", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28297", "source": "2751", "target": "2746", "attributes": { "weight": 1 } }, { "key": "28304", "source": "2752", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28300", "source": "2752", "target": "2732", "attributes": { "weight": 1 } }, { "key": "28302", "source": "2752", "target": "2737", "attributes": { "weight": 1 } }, { "key": "28303", "source": "2752", "target": "2738", "attributes": { "weight": 1 } }, { "key": "28301", "source": "2752", "target": "2733", "attributes": { "weight": 1 } }, { "key": "28305", "source": "2753", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28306", "source": "2754", "target": "2743", "attributes": { "weight": 1 } }, { "key": "28307", "source": "2754", "target": "2748", "attributes": { "weight": 1 } }, { "key": "28308", "source": "2754", "target": "2758", "attributes": { "weight": 1 } }, { "key": "28310", "source": "2755", "target": "2747", "attributes": { "weight": 1 } }, { "key": "28309", "source": "2755", "target": "2734", "attributes": { "weight": 1 } }, { "key": "28311", "source": "2755", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28330", "source": "2756", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28331", "source": "2757", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28332", "source": "2758", "target": "2743", "attributes": { "weight": 1 } }, { "key": "28333", "source": "2758", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28334", "source": "2758", "target": "2754", "attributes": { "weight": 1 } }, { "key": "28352", "source": "2759", "target": "1822", "attributes": { "weight": 2 } }, { "key": "28351", "source": "2759", "target": "698", "attributes": { "weight": 2 } }, { "key": "28363", "source": "2760", "target": "707", "attributes": { "weight": 1 } }, { "key": "28398", "source": "2761", "target": "1822", "attributes": { "weight": 2 } }, { "key": "28406", "source": "2762", "target": "707", "attributes": { "weight": 1 } }, { "key": "28407", "source": "2763", "target": "707", "attributes": { "weight": 1 } }, { "key": "28427", "source": "2764", "target": "707", "attributes": { "weight": 1 } }, { "key": "28465", "source": "2765", "target": "707", "attributes": { "weight": 1 } }, { "key": "28466", "source": "2766", "target": "707", "attributes": { "weight": 1 } }, { "key": "28479", "source": "2767", "target": "707", "attributes": { "weight": 1 } }, { "key": "28488", "source": "2768", "target": "1191", "attributes": { "weight": 1 } }, { "key": "28489", "source": "2768", "target": "707", "attributes": { "weight": 1 } }, { "key": "28494", "source": "2769", "target": "707", "attributes": { "weight": 1 } }, { "key": "28499", "source": "2770", "target": "698", "attributes": { "weight": 1 } }, { "key": "28500", "source": "2770", "target": "1822", "attributes": { "weight": 2 } }, { "key": "28501", "source": "2771", "target": "707", "attributes": { "weight": 1 } }, { "key": "28503", "source": "2772", "target": "1191", "attributes": { "weight": 1 } }, { "key": "28504", "source": "2772", "target": "707", "attributes": { "weight": 1 } }, { "key": "28508", "source": "2773", "target": "604", "attributes": { "weight": 1 } }, { "key": "28509", "source": "2773", "target": "2777", "attributes": { "weight": 1 } }, { "key": "28515", "source": "2774", "target": "1484", "attributes": { "weight": 1 } }, { "key": "28514", "source": "2774", "target": "2777", "attributes": { "weight": 1 } }, { "key": "28519", "source": "2775", "target": "607", "attributes": { "weight": 1 } }, { "key": "28520", "source": "2775", "target": "1492", "attributes": { "weight": 1 } }, { "key": "28521", "source": "2776", "target": "604", "attributes": { "weight": 1 } }, { "key": "28524", "source": "2777", "target": "1454", "attributes": { "weight": 1 } }, { "key": "28523", "source": "2777", "target": "2774", "attributes": { "weight": 1 } }, { "key": "28522", "source": "2777", "target": "2773", "attributes": { "weight": 1 } }, { "key": "28532", "source": "2778", "target": "2775", "attributes": { "weight": 1 } }, { "key": "28533", "source": "2779", "target": "1492", "attributes": { "weight": 1 } }, { "key": "28540", "source": "2780", "target": "123", "attributes": { "weight": 2 } }, { "key": "28537", "source": "2780", "target": "199", "attributes": { "weight": 1 } }, { "key": "28541", "source": "2780", "target": "215", "attributes": { "weight": 1 } }, { "key": "28542", "source": "2780", "target": "218", "attributes": { "weight": 1 } }, { "key": "33849", "source": "2780", "target": "1233", "attributes": { "weight": 1 } }, { "key": "28539", "source": "2780", "target": "1279", "attributes": { "weight": 1 } }, { "key": "28536", "source": "2780", "target": "913", "attributes": { "weight": 1 } }, { "key": "28538", "source": "2780", "target": "208", "attributes": { "weight": 1 } }, { "key": "28535", "source": "2780", "target": "938", "attributes": { "weight": 1 } }, { "key": "28579", "source": "2781", "target": "199", "attributes": { "weight": 1 } }, { "key": "28580", "source": "2781", "target": "208", "attributes": { "weight": 1 } }, { "key": "28581", "source": "2781", "target": "1279", "attributes": { "weight": 1 } }, { "key": "29753", "source": "2782", "target": "1253", "attributes": { "weight": 1 } }, { "key": "28638", "source": "2782", "target": "421", "attributes": { "weight": 2 } }, { "key": "29752", "source": "2782", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29751", "source": "2782", "target": "2463", "attributes": { "weight": 1 } }, { "key": "29754", "source": "2782", "target": "2888", "attributes": { "weight": 1 } }, { "key": "28663", "source": "2783", "target": "1711", "attributes": { "weight": 1 } }, { "key": "28690", "source": "2784", "target": "1711", "attributes": { "weight": 1 } }, { "key": "28691", "source": "2784", "target": "56", "attributes": { "weight": 1 } }, { "key": "28689", "source": "2784", "target": "54", "attributes": { "weight": 1 } }, { "key": "28699", "source": "2785", "target": "1512", "attributes": { "weight": 1 } }, { "key": "28712", "source": "2786", "target": "2789", "attributes": { "weight": 1 } }, { "key": "28713", "source": "2787", "target": "2789", "attributes": { "weight": 1 } }, { "key": "28715", "source": "2788", "target": "2789", "attributes": { "weight": 1 } }, { "key": "28719", "source": "2789", "target": "2349", "attributes": { "weight": 1 } }, { "key": "28720", "source": "2789", "target": "2788", "attributes": { "weight": 1 } }, { "key": "28717", "source": "2789", "target": "2786", "attributes": { "weight": 1 } }, { "key": "28718", "source": "2789", "target": "2787", "attributes": { "weight": 1 } }, { "key": "35365", "source": "2790", "target": "2792", "attributes": { "weight": 1 } }, { "key": "28746", "source": "2790", "target": "173", "attributes": { "weight": 2 } }, { "key": "28748", "source": "2791", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28749", "source": "2791", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28750", "source": "2791", "target": "2120", "attributes": { "weight": 1 } }, { "key": "35368", "source": "2792", "target": "2790", "attributes": { "weight": 1 } }, { "key": "28757", "source": "2792", "target": "173", "attributes": { "weight": 2 } }, { "key": "28772", "source": "2793", "target": "1166", "attributes": { "weight": 3 } }, { "key": "30182", "source": "2793", "target": "2934", "attributes": { "weight": 1 } }, { "key": "30183", "source": "2793", "target": "1341", "attributes": { "weight": 1 } }, { "key": "28774", "source": "2794", "target": "173", "attributes": { "weight": 2 } }, { "key": "28777", "source": "2795", "target": "173", "attributes": { "weight": 2 } }, { "key": "35373", "source": "2795", "target": "2816", "attributes": { "weight": 1 } }, { "key": "28778", "source": "2796", "target": "173", "attributes": { "weight": 3 } }, { "key": "28780", "source": "2797", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28779", "source": "2797", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28781", "source": "2798", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28783", "source": "2799", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28785", "source": "2799", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28782", "source": "2799", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28784", "source": "2799", "target": "2812", "attributes": { "weight": 1 } }, { "key": "28786", "source": "2800", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28788", "source": "2801", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28787", "source": "2801", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28789", "source": "2802", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28790", "source": "2803", "target": "173", "attributes": { "weight": 3 } }, { "key": "35376", "source": "2803", "target": "297", "attributes": { "weight": 1 } }, { "key": "30216", "source": "2803", "target": "1143", "attributes": { "weight": 1 } }, { "key": "28791", "source": "2804", "target": "1146", "attributes": { "weight": 1 } }, { "key": "30217", "source": "2805", "target": "2958", "attributes": { "weight": 2 } }, { "key": "28792", "source": "2805", "target": "173", "attributes": { "weight": 4 } }, { "key": "30218", "source": "2805", "target": "165", "attributes": { "weight": 2 } }, { "key": "28795", "source": "2806", "target": "173", "attributes": { "weight": 3 } }, { "key": "28797", "source": "2807", "target": "1166", "attributes": { "weight": 1 } }, { "key": "28798", "source": "2807", "target": "310", "attributes": { "weight": 1 } }, { "key": "28796", "source": "2807", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28802", "source": "2808", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28801", "source": "2808", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28800", "source": "2808", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28804", "source": "2809", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28805", "source": "2809", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28803", "source": "2809", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28808", "source": "2810", "target": "2812", "attributes": { "weight": 1 } }, { "key": "28806", "source": "2810", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28809", "source": "2810", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28807", "source": "2810", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28810", "source": "2811", "target": "173", "attributes": { "weight": 3 } }, { "key": "28823", "source": "2812", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28822", "source": "2812", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28826", "source": "2812", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28825", "source": "2812", "target": "2810", "attributes": { "weight": 1 } }, { "key": "28824", "source": "2812", "target": "2799", "attributes": { "weight": 1 } }, { "key": "28828", "source": "2813", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28827", "source": "2813", "target": "1146", "attributes": { "weight": 1 } }, { "key": "30257", "source": "2814", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30258", "source": "2814", "target": "2968", "attributes": { "weight": 1 } }, { "key": "28829", "source": "2814", "target": "310", "attributes": { "weight": 3 } }, { "key": "28834", "source": "2815", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28833", "source": "2815", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28835", "source": "2815", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28836", "source": "2816", "target": "173", "attributes": { "weight": 2 } }, { "key": "28844", "source": "2817", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28847", "source": "2818", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28846", "source": "2818", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28845", "source": "2818", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28849", "source": "2819", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28848", "source": "2819", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28850", "source": "2820", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28851", "source": "2821", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28870", "source": "2822", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28869", "source": "2822", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28871", "source": "2823", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28876", "source": "2824", "target": "35", "attributes": { "weight": 1 } }, { "key": "28877", "source": "2825", "target": "35", "attributes": { "weight": 2 } }, { "key": "37424", "source": "2826", "target": "1105", "attributes": { "weight": 1 } }, { "key": "28912", "source": "2826", "target": "1349", "attributes": { "weight": 2 } }, { "key": "28911", "source": "2826", "target": "1099", "attributes": { "weight": 2 } }, { "key": "28910", "source": "2826", "target": "1096", "attributes": { "weight": 1 } }, { "key": "28938", "source": "2827", "target": "595", "attributes": { "weight": 2 } }, { "key": "33779", "source": "2827", "target": "14", "attributes": { "weight": 1 } }, { "key": "28937", "source": "2827", "target": "8", "attributes": { "weight": 2 } }, { "key": "28947", "source": "2828", "target": "479", "attributes": { "weight": 1 } }, { "key": "33811", "source": "2828", "target": "89", "attributes": { "weight": 1 } }, { "key": "31689", "source": "2828", "target": "595", "attributes": { "weight": 1 } }, { "key": "30930", "source": "2828", "target": "3", "attributes": { "weight": 2 } }, { "key": "31688", "source": "2828", "target": "8", "attributes": { "weight": 1 } }, { "key": "28996", "source": "2829", "target": "2830", "attributes": { "weight": 1 } }, { "key": "28997", "source": "2829", "target": "2225", "attributes": { "weight": 1 } }, { "key": "28995", "source": "2829", "target": "1166", "attributes": { "weight": 1 } }, { "key": "34515", "source": "2830", "target": "3149", "attributes": { "weight": 1 } }, { "key": "28998", "source": "2830", "target": "2829", "attributes": { "weight": 1 } }, { "key": "34514", "source": "2830", "target": "1227", "attributes": { "weight": 1 } }, { "key": "28999", "source": "2830", "target": "2225", "attributes": { "weight": 1 } }, { "key": "34962", "source": "2831", "target": "3", "attributes": { "weight": 2 } }, { "key": "29842", "source": "2831", "target": "791", "attributes": { "weight": 3 } }, { "key": "37409", "source": "2831", "target": "693", "attributes": { "weight": 1 } }, { "key": "37408", "source": "2831", "target": "1136", "attributes": { "weight": 1 } }, { "key": "29024", "source": "2831", "target": "495", "attributes": { "weight": 2 } }, { "key": "31586", "source": "2831", "target": "595", "attributes": { "weight": 1 } }, { "key": "29843", "source": "2831", "target": "1024", "attributes": { "weight": 2 } }, { "key": "29844", "source": "2831", "target": "340", "attributes": { "weight": 1 } }, { "key": "37410", "source": "2831", "target": "673", "attributes": { "weight": 1 } }, { "key": "29115", "source": "2832", "target": "500", "attributes": { "weight": 1 } }, { "key": "29190", "source": "2833", "target": "602", "attributes": { "weight": 1 } }, { "key": "29225", "source": "2834", "target": "1550", "attributes": { "weight": 1 } }, { "key": "29226", "source": "2835", "target": "1995", "attributes": { "weight": 1 } }, { "key": "29234", "source": "2836", "target": "1550", "attributes": { "weight": 1 } }, { "key": "29235", "source": "2837", "target": "1550", "attributes": { "weight": 1 } }, { "key": "29244", "source": "2839", "target": "1552", "attributes": { "weight": 1 } }, { "key": "29245", "source": "2839", "target": "2841", "attributes": { "weight": 1 } }, { "key": "29243", "source": "2839", "target": "779", "attributes": { "weight": 1 } }, { "key": "29246", "source": "2840", "target": "1552", "attributes": { "weight": 1 } }, { "key": "29250", "source": "2841", "target": "2839", "attributes": { "weight": 1 } }, { "key": "29249", "source": "2841", "target": "912", "attributes": { "weight": 1 } }, { "key": "29253", "source": "2842", "target": "2628", "attributes": { "weight": 1 } }, { "key": "30108", "source": "2843", "target": "2947", "attributes": { "weight": 1 } }, { "key": "29271", "source": "2843", "target": "160", "attributes": { "weight": 2 } }, { "key": "29274", "source": "2844", "target": "1416", "attributes": { "weight": 1 } }, { "key": "29275", "source": "2844", "target": "160", "attributes": { "weight": 1 } }, { "key": "29272", "source": "2844", "target": "1393", "attributes": { "weight": 1 } }, { "key": "29273", "source": "2844", "target": "149", "attributes": { "weight": 1 } }, { "key": "29282", "source": "2845", "target": "1400", "attributes": { "weight": 1 } }, { "key": "29284", "source": "2845", "target": "1428", "attributes": { "weight": 1 } }, { "key": "29283", "source": "2845", "target": "1425", "attributes": { "weight": 1 } }, { "key": "29300", "source": "2846", "target": "1424", "attributes": { "weight": 1 } }, { "key": "29299", "source": "2846", "target": "1423", "attributes": { "weight": 1 } }, { "key": "29298", "source": "2846", "target": "2847", "attributes": { "weight": 1 } }, { "key": "29301", "source": "2847", "target": "2846", "attributes": { "weight": 1 } }, { "key": "36417", "source": "2847", "target": "2945", "attributes": { "weight": 1 } }, { "key": "29302", "source": "2847", "target": "1423", "attributes": { "weight": 1 } }, { "key": "29304", "source": "2848", "target": "158", "attributes": { "weight": 1 } }, { "key": "29303", "source": "2848", "target": "1350", "attributes": { "weight": 1 } }, { "key": "29305", "source": "2849", "target": "2853", "attributes": { "weight": 2 } }, { "key": "29306", "source": "2849", "target": "1423", "attributes": { "weight": 2 } }, { "key": "29308", "source": "2850", "target": "2853", "attributes": { "weight": 2 } }, { "key": "36418", "source": "2850", "target": "2854", "attributes": { "weight": 1 } }, { "key": "29307", "source": "2850", "target": "2852", "attributes": { "weight": 1 } }, { "key": "29310", "source": "2851", "target": "1396", "attributes": { "weight": 1 } }, { "key": "29311", "source": "2852", "target": "2850", "attributes": { "weight": 1 } }, { "key": "36426", "source": "2852", "target": "3308", "attributes": { "weight": 1 } }, { "key": "29312", "source": "2852", "target": "2854", "attributes": { "weight": 2 } }, { "key": "29313", "source": "2853", "target": "2849", "attributes": { "weight": 2 } }, { "key": "29314", "source": "2853", "target": "2850", "attributes": { "weight": 2 } }, { "key": "29315", "source": "2854", "target": "2852", "attributes": { "weight": 2 } }, { "key": "29316", "source": "2854", "target": "1423", "attributes": { "weight": 1 } }, { "key": "36431", "source": "2854", "target": "2850", "attributes": { "weight": 1 } }, { "key": "29328", "source": "2855", "target": "158", "attributes": { "weight": 1 } }, { "key": "29329", "source": "2855", "target": "1423", "attributes": { "weight": 1 } }, { "key": "29359", "source": "2856", "target": "857", "attributes": { "weight": 2 } }, { "key": "29361", "source": "2856", "target": "232", "attributes": { "weight": 2 } }, { "key": "32305", "source": "2856", "target": "791", "attributes": { "weight": 1 } }, { "key": "37059", "source": "2856", "target": "220", "attributes": { "weight": 1 } }, { "key": "29360", "source": "2856", "target": "183", "attributes": { "weight": 1 } }, { "key": "32311", "source": "2857", "target": "791", "attributes": { "weight": 1 } }, { "key": "29372", "source": "2857", "target": "232", "attributes": { "weight": 1 } }, { "key": "32310", "source": "2857", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32339", "source": "2858", "target": "791", "attributes": { "weight": 1 } }, { "key": "29393", "source": "2858", "target": "232", "attributes": { "weight": 1 } }, { "key": "29405", "source": "2859", "target": "232", "attributes": { "weight": 1 } }, { "key": "32346", "source": "2860", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32347", "source": "2860", "target": "791", "attributes": { "weight": 1 } }, { "key": "29406", "source": "2860", "target": "232", "attributes": { "weight": 1 } }, { "key": "29429", "source": "2861", "target": "857", "attributes": { "weight": 1 } }, { "key": "29430", "source": "2861", "target": "861", "attributes": { "weight": 1 } }, { "key": "37100", "source": "2861", "target": "1060", "attributes": { "weight": 1 } }, { "key": "29431", "source": "2861", "target": "232", "attributes": { "weight": 2 } }, { "key": "37099", "source": "2861", "target": "2115", "attributes": { "weight": 1 } }, { "key": "32392", "source": "2861", "target": "2211", "attributes": { "weight": 1 } }, { "key": "37098", "source": "2861", "target": "359", "attributes": { "weight": 1 } }, { "key": "32393", "source": "2861", "target": "791", "attributes": { "weight": 1 } }, { "key": "29433", "source": "2862", "target": "232", "attributes": { "weight": 1 } }, { "key": "32536", "source": "2862", "target": "791", "attributes": { "weight": 1 } }, { "key": "32535", "source": "2862", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32547", "source": "2863", "target": "791", "attributes": { "weight": 1 } }, { "key": "29435", "source": "2863", "target": "232", "attributes": { "weight": 2 } }, { "key": "29439", "source": "2864", "target": "857", "attributes": { "weight": 1 } }, { "key": "32568", "source": "2864", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29440", "source": "2864", "target": "232", "attributes": { "weight": 2 } }, { "key": "32569", "source": "2864", "target": "791", "attributes": { "weight": 1 } }, { "key": "29442", "source": "2865", "target": "232", "attributes": { "weight": 1 } }, { "key": "32570", "source": "2865", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32571", "source": "2865", "target": "791", "attributes": { "weight": 1 } }, { "key": "32574", "source": "2866", "target": "791", "attributes": { "weight": 1 } }, { "key": "29443", "source": "2866", "target": "232", "attributes": { "weight": 1 } }, { "key": "32578", "source": "2867", "target": "791", "attributes": { "weight": 1 } }, { "key": "29444", "source": "2867", "target": "232", "attributes": { "weight": 1 } }, { "key": "29528", "source": "2868", "target": "232", "attributes": { "weight": 2 } }, { "key": "32622", "source": "2868", "target": "791", "attributes": { "weight": 1 } }, { "key": "29527", "source": "2868", "target": "856", "attributes": { "weight": 1 } }, { "key": "32621", "source": "2868", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29529", "source": "2869", "target": "857", "attributes": { "weight": 1 } }, { "key": "29530", "source": "2869", "target": "232", "attributes": { "weight": 2 } }, { "key": "32623", "source": "2869", "target": "791", "attributes": { "weight": 1 } }, { "key": "29572", "source": "2870", "target": "164", "attributes": { "weight": 1 } }, { "key": "29575", "source": "2871", "target": "164", "attributes": { "weight": 1 } }, { "key": "29576", "source": "2872", "target": "164", "attributes": { "weight": 1 } }, { "key": "29584", "source": "2873", "target": "1966", "attributes": { "weight": 1 } }, { "key": "29583", "source": "2873", "target": "169", "attributes": { "weight": 1 } }, { "key": "29585", "source": "2874", "target": "25", "attributes": { "weight": 2 } }, { "key": "29586", "source": "2875", "target": "25", "attributes": { "weight": 2 } }, { "key": "29587", "source": "2876", "target": "25", "attributes": { "weight": 2 } }, { "key": "29588", "source": "2877", "target": "25", "attributes": { "weight": 2 } }, { "key": "30610", "source": "2878", "target": "352", "attributes": { "weight": 1 } }, { "key": "30608", "source": "2878", "target": "19", "attributes": { "weight": 1 } }, { "key": "30609", "source": "2878", "target": "1965", "attributes": { "weight": 1 } }, { "key": "29589", "source": "2878", "target": "25", "attributes": { "weight": 2 } }, { "key": "29590", "source": "2879", "target": "25", "attributes": { "weight": 1 } }, { "key": "29599", "source": "2880", "target": "1424", "attributes": { "weight": 1 } }, { "key": "29598", "source": "2880", "target": "154", "attributes": { "weight": 1 } }, { "key": "29597", "source": "2880", "target": "1350", "attributes": { "weight": 1 } }, { "key": "29613", "source": "2881", "target": "2116", "attributes": { "weight": 1 } }, { "key": "29612", "source": "2881", "target": "421", "attributes": { "weight": 1 } }, { "key": "29616", "source": "2882", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29617", "source": "2883", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29618", "source": "2883", "target": "794", "attributes": { "weight": 1 } }, { "key": "29624", "source": "2884", "target": "2116", "attributes": { "weight": 1 } }, { "key": "29625", "source": "2884", "target": "2890", "attributes": { "weight": 1 } }, { "key": "29626", "source": "2885", "target": "421", "attributes": { "weight": 1 } }, { "key": "29629", "source": "2886", "target": "2892", "attributes": { "weight": 1 } }, { "key": "29627", "source": "2886", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29628", "source": "2886", "target": "362", "attributes": { "weight": 1 } }, { "key": "29656", "source": "2887", "target": "421", "attributes": { "weight": 1 } }, { "key": "29713", "source": "2888", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29714", "source": "2888", "target": "2782", "attributes": { "weight": 1 } }, { "key": "29731", "source": "2889", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29732", "source": "2890", "target": "2884", "attributes": { "weight": 1 } }, { "key": "29733", "source": "2890", "target": "2465", "attributes": { "weight": 1 } }, { "key": "29737", "source": "2891", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29736", "source": "2891", "target": "1036", "attributes": { "weight": 1 } }, { "key": "29738", "source": "2891", "target": "1253", "attributes": { "weight": 1 } }, { "key": "29760", "source": "2892", "target": "2465", "attributes": { "weight": 1 } }, { "key": "29758", "source": "2892", "target": "362", "attributes": { "weight": 1 } }, { "key": "29757", "source": "2892", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29759", "source": "2892", "target": "794", "attributes": { "weight": 1 } }, { "key": "29756", "source": "2892", "target": "2886", "attributes": { "weight": 1 } }, { "key": "29755", "source": "2892", "target": "2882", "attributes": { "weight": 1 } }, { "key": "30098", "source": "2893", "target": "2898", "attributes": { "weight": 1 } }, { "key": "29769", "source": "2893", "target": "1281", "attributes": { "weight": 2 } }, { "key": "29772", "source": "2894", "target": "1281", "attributes": { "weight": 2 } }, { "key": "29782", "source": "2895", "target": "1281", "attributes": { "weight": 1 } }, { "key": "29783", "source": "2896", "target": "1281", "attributes": { "weight": 2 } }, { "key": "29784", "source": "2897", "target": "1281", "attributes": { "weight": 2 } }, { "key": "29785", "source": "2898", "target": "1281", "attributes": { "weight": 2 } }, { "key": "30105", "source": "2898", "target": "2893", "attributes": { "weight": 1 } }, { "key": "29800", "source": "2899", "target": "93", "attributes": { "weight": 1 } }, { "key": "29807", "source": "2900", "target": "100", "attributes": { "weight": 1 } }, { "key": "29812", "source": "2901", "target": "93", "attributes": { "weight": 1 } }, { "key": "29855", "source": "2902", "target": "1024", "attributes": { "weight": 2 } }, { "key": "29922", "source": "2903", "target": "562", "attributes": { "weight": 1 } }, { "key": "29923", "source": "2904", "target": "2625", "attributes": { "weight": 1 } }, { "key": "29935", "source": "2905", "target": "1527", "attributes": { "weight": 1 } }, { "key": "29938", "source": "2906", "target": "1527", "attributes": { "weight": 1 } }, { "key": "29941", "source": "2907", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29943", "source": "2908", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29959", "source": "2909", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29989", "source": "2910", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29990", "source": "2910", "target": "1958", "attributes": { "weight": 1 } }, { "key": "29988", "source": "2910", "target": "1947", "attributes": { "weight": 1 } }, { "key": "29991", "source": "2911", "target": "1952", "attributes": { "weight": 1 } }, { "key": "30011", "source": "2912", "target": "1611", "attributes": { "weight": 1 } }, { "key": "30010", "source": "2912", "target": "2916", "attributes": { "weight": 1 } }, { "key": "30014", "source": "2914", "target": "2917", "attributes": { "weight": 1 } }, { "key": "30013", "source": "2914", "target": "1042", "attributes": { "weight": 1 } }, { "key": "30015", "source": "2914", "target": "1611", "attributes": { "weight": 1 } }, { "key": "30017", "source": "2915", "target": "1611", "attributes": { "weight": 1 } }, { "key": "30016", "source": "2915", "target": "2918", "attributes": { "weight": 1 } }, { "key": "30018", "source": "2916", "target": "2912", "attributes": { "weight": 1 } }, { "key": "30019", "source": "2916", "target": "667", "attributes": { "weight": 1 } }, { "key": "30020", "source": "2917", "target": "2914", "attributes": { "weight": 1 } }, { "key": "30021", "source": "2917", "target": "1611", "attributes": { "weight": 1 } }, { "key": "30023", "source": "2918", "target": "1611", "attributes": { "weight": 1 } }, { "key": "30022", "source": "2918", "target": "2915", "attributes": { "weight": 1 } }, { "key": "30040", "source": "2922", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30041", "source": "2923", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30042", "source": "2923", "target": "2930", "attributes": { "weight": 1 } }, { "key": "30043", "source": "2924", "target": "2925", "attributes": { "weight": 1 } }, { "key": "30044", "source": "2924", "target": "2927", "attributes": { "weight": 1 } }, { "key": "30048", "source": "2925", "target": "2934", "attributes": { "weight": 1 } }, { "key": "30047", "source": "2925", "target": "2924", "attributes": { "weight": 1 } }, { "key": "30049", "source": "2926", "target": "2931", "attributes": { "weight": 1 } }, { "key": "30050", "source": "2926", "target": "2937", "attributes": { "weight": 1 } }, { "key": "30052", "source": "2927", "target": "2943", "attributes": { "weight": 1 } }, { "key": "30051", "source": "2927", "target": "2924", "attributes": { "weight": 1 } }, { "key": "30053", "source": "2928", "target": "2939", "attributes": { "weight": 1 } }, { "key": "30054", "source": "2928", "target": "2944", "attributes": { "weight": 1 } }, { "key": "30190", "source": "2929", "target": "2938", "attributes": { "weight": 1 } }, { "key": "30064", "source": "2929", "target": "2940", "attributes": { "weight": 1 } }, { "key": "30065", "source": "2929", "target": "2941", "attributes": { "weight": 1 } }, { "key": "30189", "source": "2929", "target": "1166", "attributes": { "weight": 1 } }, { "key": "30066", "source": "2930", "target": "2933", "attributes": { "weight": 1 } }, { "key": "30068", "source": "2931", "target": "2934", "attributes": { "weight": 1 } }, { "key": "30067", "source": "2931", "target": "2926", "attributes": { "weight": 1 } }, { "key": "30069", "source": "2931", "target": "2937", "attributes": { "weight": 1 } }, { "key": "30071", "source": "2932", "target": "2935", "attributes": { "weight": 1 } }, { "key": "30070", "source": "2932", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30073", "source": "2933", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30072", "source": "2933", "target": "2923", "attributes": { "weight": 1 } }, { "key": "30074", "source": "2934", "target": "2925", "attributes": { "weight": 1 } }, { "key": "30211", "source": "2934", "target": "165", "attributes": { "weight": 2 } }, { "key": "30076", "source": "2934", "target": "2931", "attributes": { "weight": 1 } }, { "key": "30075", "source": "2934", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30209", "source": "2934", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30213", "source": "2934", "target": "1341", "attributes": { "weight": 2 } }, { "key": "37545", "source": "2934", "target": "3396", "attributes": { "weight": 1 } }, { "key": "30210", "source": "2934", "target": "2793", "attributes": { "weight": 1 } }, { "key": "30212", "source": "2934", "target": "1996", "attributes": { "weight": 2 } }, { "key": "30077", "source": "2935", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30078", "source": "2935", "target": "2932", "attributes": { "weight": 1 } }, { "key": "30079", "source": "2936", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30080", "source": "2936", "target": "2937", "attributes": { "weight": 1 } }, { "key": "30083", "source": "2937", "target": "2936", "attributes": { "weight": 1 } }, { "key": "30081", "source": "2937", "target": "2926", "attributes": { "weight": 1 } }, { "key": "30082", "source": "2937", "target": "2931", "attributes": { "weight": 1 } }, { "key": "30259", "source": "2938", "target": "2929", "attributes": { "weight": 1 } }, { "key": "30084", "source": "2938", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30085", "source": "2939", "target": "2928", "attributes": { "weight": 1 } }, { "key": "30086", "source": "2939", "target": "2940", "attributes": { "weight": 1 } }, { "key": "30088", "source": "2940", "target": "1166", "attributes": { "weight": 1 } }, { "key": "30091", "source": "2940", "target": "310", "attributes": { "weight": 1 } }, { "key": "30089", "source": "2940", "target": "2929", "attributes": { "weight": 1 } }, { "key": "30090", "source": "2940", "target": "2939", "attributes": { "weight": 1 } }, { "key": "30093", "source": "2941", "target": "2943", "attributes": { "weight": 1 } }, { "key": "30092", "source": "2941", "target": "2929", "attributes": { "weight": 1 } }, { "key": "30094", "source": "2942", "target": "1187", "attributes": { "weight": 2 } }, { "key": "30096", "source": "2943", "target": "2941", "attributes": { "weight": 1 } }, { "key": "30095", "source": "2943", "target": "2927", "attributes": { "weight": 1 } }, { "key": "30097", "source": "2944", "target": "2928", "attributes": { "weight": 1 } }, { "key": "36425", "source": "2945", "target": "3310", "attributes": { "weight": 1 } }, { "key": "36423", "source": "2945", "target": "2847", "attributes": { "weight": 1 } }, { "key": "36424", "source": "2945", "target": "3307", "attributes": { "weight": 1 } }, { "key": "30109", "source": "2945", "target": "2948", "attributes": { "weight": 1 } }, { "key": "30110", "source": "2946", "target": "160", "attributes": { "weight": 2 } }, { "key": "36427", "source": "2946", "target": "3307", "attributes": { "weight": 1 } }, { "key": "36428", "source": "2946", "target": "3309", "attributes": { "weight": 1 } }, { "key": "30111", "source": "2946", "target": "2948", "attributes": { "weight": 2 } }, { "key": "30113", "source": "2947", "target": "160", "attributes": { "weight": 1 } }, { "key": "30112", "source": "2947", "target": "2843", "attributes": { "weight": 1 } }, { "key": "30118", "source": "2948", "target": "2945", "attributes": { "weight": 1 } }, { "key": "36434", "source": "2948", "target": "3307", "attributes": { "weight": 1 } }, { "key": "30119", "source": "2948", "target": "2946", "attributes": { "weight": 2 } }, { "key": "36435", "source": "2948", "target": "160", "attributes": { "weight": 1 } }, { "key": "36436", "source": "2948", "target": "3309", "attributes": { "weight": 1 } }, { "key": "30124", "source": "2949", "target": "1804", "attributes": { "weight": 1 } }, { "key": "30129", "source": "2950", "target": "1555", "attributes": { "weight": 1 } }, { "key": "30130", "source": "2950", "target": "1557", "attributes": { "weight": 1 } }, { "key": "30132", "source": "2951", "target": "1557", "attributes": { "weight": 1 } }, { "key": "30135", "source": "2952", "target": "1557", "attributes": { "weight": 1 } }, { "key": "37523", "source": "2953", "target": "297", "attributes": { "weight": 1 } }, { "key": "30137", "source": "2953", "target": "310", "attributes": { "weight": 3 } }, { "key": "30143", "source": "2954", "target": "310", "attributes": { "weight": 2 } }, { "key": "30153", "source": "2955", "target": "2969", "attributes": { "weight": 1 } }, { "key": "30154", "source": "2956", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30155", "source": "2957", "target": "2969", "attributes": { "weight": 1 } }, { "key": "30157", "source": "2958", "target": "165", "attributes": { "weight": 2 } }, { "key": "30161", "source": "2958", "target": "173", "attributes": { "weight": 2 } }, { "key": "30156", "source": "2958", "target": "1166", "attributes": { "weight": 1 } }, { "key": "30158", "source": "2958", "target": "2805", "attributes": { "weight": 2 } }, { "key": "30159", "source": "2958", "target": "2967", "attributes": { "weight": 2 } }, { "key": "30162", "source": "2958", "target": "310", "attributes": { "weight": 1 } }, { "key": "30160", "source": "2958", "target": "297", "attributes": { "weight": 1 } }, { "key": "35366", "source": "2958", "target": "2974", "attributes": { "weight": 1 } }, { "key": "30181", "source": "2959", "target": "310", "attributes": { "weight": 3 } }, { "key": "35371", "source": "2959", "target": "297", "attributes": { "weight": 1 } }, { "key": "30191", "source": "2960", "target": "310", "attributes": { "weight": 2 } }, { "key": "37541", "source": "2960", "target": "3390", "attributes": { "weight": 1 } }, { "key": "30193", "source": "2961", "target": "297", "attributes": { "weight": 1 } }, { "key": "30200", "source": "2962", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30202", "source": "2963", "target": "2117", "attributes": { "weight": 1 } }, { "key": "30201", "source": "2963", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30203", "source": "2963", "target": "310", "attributes": { "weight": 1 } }, { "key": "30205", "source": "2964", "target": "165", "attributes": { "weight": 2 } }, { "key": "32634", "source": "2964", "target": "1843", "attributes": { "weight": 1 } }, { "key": "30204", "source": "2964", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30206", "source": "2965", "target": "1187", "attributes": { "weight": 1 } }, { "key": "35375", "source": "2966", "target": "310", "attributes": { "weight": 1 } }, { "key": "30208", "source": "2966", "target": "1166", "attributes": { "weight": 1 } }, { "key": "30223", "source": "2967", "target": "310", "attributes": { "weight": 1 } }, { "key": "30221", "source": "2967", "target": "173", "attributes": { "weight": 2 } }, { "key": "30219", "source": "2967", "target": "1166", "attributes": { "weight": 1 } }, { "key": "30222", "source": "2967", "target": "2974", "attributes": { "weight": 2 } }, { "key": "30220", "source": "2967", "target": "297", "attributes": { "weight": 1 } }, { "key": "30224", "source": "2968", "target": "1166", "attributes": { "weight": 1 } }, { "key": "30225", "source": "2968", "target": "2814", "attributes": { "weight": 1 } }, { "key": "30226", "source": "2968", "target": "310", "attributes": { "weight": 1 } }, { "key": "30227", "source": "2969", "target": "1166", "attributes": { "weight": 1 } }, { "key": "37550", "source": "2969", "target": "3407", "attributes": { "weight": 1 } }, { "key": "30238", "source": "2970", "target": "1341", "attributes": { "weight": 1 } }, { "key": "30237", "source": "2970", "target": "1166", "attributes": { "weight": 2 } }, { "key": "37565", "source": "2971", "target": "310", "attributes": { "weight": 1 } }, { "key": "37564", "source": "2971", "target": "3390", "attributes": { "weight": 1 } }, { "key": "30239", "source": "2971", "target": "297", "attributes": { "weight": 3 } }, { "key": "37563", "source": "2971", "target": "1143", "attributes": { "weight": 1 } }, { "key": "30240", "source": "2972", "target": "310", "attributes": { "weight": 1 } }, { "key": "30243", "source": "2973", "target": "1143", "attributes": { "weight": 1 } }, { "key": "30252", "source": "2974", "target": "2958", "attributes": { "weight": 3 } }, { "key": "30254", "source": "2974", "target": "297", "attributes": { "weight": 1 } }, { "key": "30253", "source": "2974", "target": "1166", "attributes": { "weight": 1 } }, { "key": "35383", "source": "2974", "target": "572", "attributes": { "weight": 1 } }, { "key": "30255", "source": "2974", "target": "173", "attributes": { "weight": 2 } }, { "key": "30256", "source": "2975", "target": "1143", "attributes": { "weight": 2 } }, { "key": "30278", "source": "2976", "target": "310", "attributes": { "weight": 1 } }, { "key": "30285", "source": "2977", "target": "310", "attributes": { "weight": 2 } }, { "key": "37591", "source": "2977", "target": "297", "attributes": { "weight": 1 } }, { "key": "30287", "source": "2979", "target": "173", "attributes": { "weight": 2 } }, { "key": "30314", "source": "2980", "target": "778", "attributes": { "weight": 3 } }, { "key": "35264", "source": "2980", "target": "1030", "attributes": { "weight": 1 } }, { "key": "35266", "source": "2981", "target": "1030", "attributes": { "weight": 1 } }, { "key": "30315", "source": "2981", "target": "778", "attributes": { "weight": 2 } }, { "key": "30514", "source": "2982", "target": "1642", "attributes": { "weight": 1 } }, { "key": "30521", "source": "2983", "target": "1642", "attributes": { "weight": 1 } }, { "key": "30522", "source": "2984", "target": "1642", "attributes": { "weight": 1 } }, { "key": "30523", "source": "2985", "target": "1549", "attributes": { "weight": 1 } }, { "key": "30527", "source": "2985", "target": "2987", "attributes": { "weight": 1 } }, { "key": "30525", "source": "2985", "target": "177", "attributes": { "weight": 1 } }, { "key": "30526", "source": "2985", "target": "1642", "attributes": { "weight": 1 } }, { "key": "30524", "source": "2985", "target": "175", "attributes": { "weight": 1 } }, { "key": "30543", "source": "2986", "target": "1642", "attributes": { "weight": 1 } }, { "key": "30545", "source": "2987", "target": "2985", "attributes": { "weight": 1 } }, { "key": "30544", "source": "2987", "target": "164", "attributes": { "weight": 1 } }, { "key": "30546", "source": "2987", "target": "1642", "attributes": { "weight": 1 } }, { "key": "30567", "source": "2988", "target": "3", "attributes": { "weight": 1 } }, { "key": "34970", "source": "2989", "target": "3", "attributes": { "weight": 1 } }, { "key": "30576", "source": "2989", "target": "1965", "attributes": { "weight": 1 } }, { "key": "30611", "source": "2990", "target": "1965", "attributes": { "weight": 1 } }, { "key": "30616", "source": "2991", "target": "352", "attributes": { "weight": 1 } }, { "key": "30617", "source": "2992", "target": "682", "attributes": { "weight": 1 } }, { "key": "33813", "source": "2992", "target": "3", "attributes": { "weight": 2 } }, { "key": "35245", "source": "2993", "target": "1030", "attributes": { "weight": 1 } }, { "key": "30642", "source": "2993", "target": "778", "attributes": { "weight": 3 } }, { "key": "30653", "source": "2994", "target": "1522", "attributes": { "weight": 1 } }, { "key": "30655", "source": "2994", "target": "1337", "attributes": { "weight": 1 } }, { "key": "30652", "source": "2994", "target": "434", "attributes": { "weight": 1 } }, { "key": "30654", "source": "2994", "target": "674", "attributes": { "weight": 1 } }, { "key": "30657", "source": "2995", "target": "358", "attributes": { "weight": 1 } }, { "key": "30658", "source": "2995", "target": "2996", "attributes": { "weight": 1 } }, { "key": "30659", "source": "2995", "target": "2997", "attributes": { "weight": 1 } }, { "key": "30663", "source": "2996", "target": "2995", "attributes": { "weight": 1 } }, { "key": "30664", "source": "2997", "target": "2995", "attributes": { "weight": 1 } }, { "key": "30665", "source": "2997", "target": "358", "attributes": { "weight": 1 } }, { "key": "30697", "source": "2999", "target": "889", "attributes": { "weight": 1 } }, { "key": "32303", "source": "2999", "target": "791", "attributes": { "weight": 1 } }, { "key": "32585", "source": "3000", "target": "791", "attributes": { "weight": 1 } }, { "key": "30717", "source": "3000", "target": "889", "attributes": { "weight": 2 } }, { "key": "30759", "source": "3001", "target": "470", "attributes": { "weight": 2 } }, { "key": "31441", "source": "3001", "target": "3052", "attributes": { "weight": 1 } }, { "key": "31442", "source": "3001", "target": "3053", "attributes": { "weight": 1 } }, { "key": "31444", "source": "3001", "target": "3004", "attributes": { "weight": 1 } }, { "key": "31443", "source": "3001", "target": "1370", "attributes": { "weight": 1 } }, { "key": "31451", "source": "3002", "target": "1370", "attributes": { "weight": 1 } }, { "key": "30791", "source": "3002", "target": "3004", "attributes": { "weight": 3 } }, { "key": "30792", "source": "3003", "target": "1370", "attributes": { "weight": 3 } }, { "key": "31459", "source": "3004", "target": "3055", "attributes": { "weight": 1 } }, { "key": "31454", "source": "3004", "target": "3053", "attributes": { "weight": 1 } }, { "key": "31458", "source": "3004", "target": "3002", "attributes": { "weight": 1 } }, { "key": "31457", "source": "3004", "target": "1370", "attributes": { "weight": 1 } }, { "key": "31455", "source": "3004", "target": "3054", "attributes": { "weight": 1 } }, { "key": "31456", "source": "3004", "target": "3001", "attributes": { "weight": 1 } }, { "key": "30794", "source": "3004", "target": "470", "attributes": { "weight": 2 } }, { "key": "30795", "source": "3004", "target": "1744", "attributes": { "weight": 2 } }, { "key": "30800", "source": "3005", "target": "3423", "attributes": { "weight": 1 } }, { "key": "30801", "source": "3006", "target": "3007", "attributes": { "weight": 1 } }, { "key": "30806", "source": "3007", "target": "103", "attributes": { "weight": 1 } }, { "key": "30807", "source": "3008", "target": "1447", "attributes": { "weight": 1 } }, { "key": "30808", "source": "3009", "target": "3005", "attributes": { "weight": 1 } }, { "key": "30809", "source": "3010", "target": "3011", "attributes": { "weight": 1 } }, { "key": "30810", "source": "3011", "target": "3006", "attributes": { "weight": 1 } }, { "key": "30811", "source": "3012", "target": "3008", "attributes": { "weight": 1 } }, { "key": "30814", "source": "3013", "target": "3", "attributes": { "weight": 1 } }, { "key": "31564", "source": "3013", "target": "595", "attributes": { "weight": 1 } }, { "key": "31563", "source": "3013", "target": "8", "attributes": { "weight": 1 } }, { "key": "30819", "source": "3014", "target": "3", "attributes": { "weight": 2 } }, { "key": "31576", "source": "3014", "target": "595", "attributes": { "weight": 1 } }, { "key": "30895", "source": "3015", "target": "3", "attributes": { "weight": 2 } }, { "key": "31616", "source": "3015", "target": "595", "attributes": { "weight": 1 } }, { "key": "31679", "source": "3016", "target": "595", "attributes": { "weight": 1 } }, { "key": "30907", "source": "3016", "target": "3", "attributes": { "weight": 1 } }, { "key": "37241", "source": "3017", "target": "0", "attributes": { "weight": 1 } }, { "key": "30909", "source": "3017", "target": "13", "attributes": { "weight": 3 } }, { "key": "37242", "source": "3017", "target": "2646", "attributes": { "weight": 1 } }, { "key": "37244", "source": "3017", "target": "817", "attributes": { "weight": 1 } }, { "key": "37245", "source": "3017", "target": "8", "attributes": { "weight": 1 } }, { "key": "30908", "source": "3017", "target": "3", "attributes": { "weight": 2 } }, { "key": "37240", "source": "3017", "target": "2499", "attributes": { "weight": 1 } }, { "key": "35008", "source": "3017", "target": "352", "attributes": { "weight": 1 } }, { "key": "37246", "source": "3017", "target": "351", "attributes": { "weight": 1 } }, { "key": "37243", "source": "3017", "target": "681", "attributes": { "weight": 1 } }, { "key": "33808", "source": "3017", "target": "14", "attributes": { "weight": 2 } }, { "key": "30912", "source": "3018", "target": "3", "attributes": { "weight": 1 } }, { "key": "35019", "source": "3019", "target": "3", "attributes": { "weight": 1 } }, { "key": "30936", "source": "3019", "target": "1965", "attributes": { "weight": 2 } }, { "key": "31690", "source": "3019", "target": "595", "attributes": { "weight": 1 } }, { "key": "30937", "source": "3019", "target": "1967", "attributes": { "weight": 2 } }, { "key": "30941", "source": "3020", "target": "3", "attributes": { "weight": 1 } }, { "key": "31705", "source": "3021", "target": "8", "attributes": { "weight": 1 } }, { "key": "31707", "source": "3021", "target": "595", "attributes": { "weight": 1 } }, { "key": "30944", "source": "3021", "target": "3", "attributes": { "weight": 3 } }, { "key": "34887", "source": "3021", "target": "1024", "attributes": { "weight": 1 } }, { "key": "31706", "source": "3021", "target": "823", "attributes": { "weight": 1 } }, { "key": "30945", "source": "3022", "target": "3", "attributes": { "weight": 2 } }, { "key": "32603", "source": "3022", "target": "232", "attributes": { "weight": 1 } }, { "key": "31710", "source": "3022", "target": "595", "attributes": { "weight": 1 } }, { "key": "31812", "source": "3023", "target": "595", "attributes": { "weight": 1 } }, { "key": "37252", "source": "3023", "target": "793", "attributes": { "weight": 1 } }, { "key": "30950", "source": "3023", "target": "3", "attributes": { "weight": 2 } }, { "key": "37251", "source": "3023", "target": "681", "attributes": { "weight": 1 } }, { "key": "32645", "source": "3024", "target": "2624", "attributes": { "weight": 1 } }, { "key": "30971", "source": "3024", "target": "638", "attributes": { "weight": 2 } }, { "key": "32646", "source": "3024", "target": "2177", "attributes": { "weight": 1 } }, { "key": "32648", "source": "3024", "target": "3035", "attributes": { "weight": 1 } }, { "key": "32647", "source": "3024", "target": "2626", "attributes": { "weight": 1 } }, { "key": "32649", "source": "3024", "target": "3111", "attributes": { "weight": 1 } }, { "key": "30975", "source": "3025", "target": "638", "attributes": { "weight": 2 } }, { "key": "34917", "source": "3025", "target": "1815", "attributes": { "weight": 1 } }, { "key": "34916", "source": "3025", "target": "1539", "attributes": { "weight": 1 } }, { "key": "31004", "source": "3026", "target": "638", "attributes": { "weight": 1 } }, { "key": "31003", "source": "3026", "target": "636", "attributes": { "weight": 1 } }, { "key": "31041", "source": "3027", "target": "638", "attributes": { "weight": 1 } }, { "key": "31040", "source": "3027", "target": "636", "attributes": { "weight": 1 } }, { "key": "31052", "source": "3028", "target": "638", "attributes": { "weight": 1 } }, { "key": "31053", "source": "3028", "target": "1551", "attributes": { "weight": 1 } }, { "key": "31050", "source": "3028", "target": "636", "attributes": { "weight": 1 } }, { "key": "31051", "source": "3028", "target": "1809", "attributes": { "weight": 1 } }, { "key": "31054", "source": "3029", "target": "638", "attributes": { "weight": 1 } }, { "key": "31055", "source": "3030", "target": "638", "attributes": { "weight": 1 } }, { "key": "31056", "source": "3031", "target": "638", "attributes": { "weight": 1 } }, { "key": "31060", "source": "3032", "target": "638", "attributes": { "weight": 1 } }, { "key": "31061", "source": "3033", "target": "638", "attributes": { "weight": 1 } }, { "key": "31062", "source": "3034", "target": "638", "attributes": { "weight": 1 } }, { "key": "32672", "source": "3035", "target": "3113", "attributes": { "weight": 1 } }, { "key": "31063", "source": "3035", "target": "638", "attributes": { "weight": 2 } }, { "key": "32670", "source": "3035", "target": "2177", "attributes": { "weight": 1 } }, { "key": "32668", "source": "3035", "target": "2624", "attributes": { "weight": 1 } }, { "key": "32669", "source": "3035", "target": "3024", "attributes": { "weight": 1 } }, { "key": "32671", "source": "3035", "target": "3111", "attributes": { "weight": 1 } }, { "key": "31064", "source": "3036", "target": "636", "attributes": { "weight": 1 } }, { "key": "31065", "source": "3036", "target": "638", "attributes": { "weight": 1 } }, { "key": "31066", "source": "3037", "target": "638", "attributes": { "weight": 1 } }, { "key": "32677", "source": "3038", "target": "2177", "attributes": { "weight": 1 } }, { "key": "31067", "source": "3038", "target": "638", "attributes": { "weight": 2 } }, { "key": "32676", "source": "3038", "target": "3110", "attributes": { "weight": 1 } }, { "key": "31070", "source": "3039", "target": "638", "attributes": { "weight": 1 } }, { "key": "32072", "source": "3039", "target": "1816", "attributes": { "weight": 1 } }, { "key": "31069", "source": "3039", "target": "636", "attributes": { "weight": 1 } }, { "key": "31071", "source": "3040", "target": "3041", "attributes": { "weight": 1 } }, { "key": "31084", "source": "3041", "target": "2745", "attributes": { "weight": 1 } }, { "key": "31082", "source": "3041", "target": "3040", "attributes": { "weight": 1 } }, { "key": "31083", "source": "3041", "target": "1280", "attributes": { "weight": 1 } }, { "key": "31156", "source": "3042", "target": "644", "attributes": { "weight": 1 } }, { "key": "31157", "source": "3042", "target": "645", "attributes": { "weight": 1 } }, { "key": "31163", "source": "3043", "target": "644", "attributes": { "weight": 1 } }, { "key": "31170", "source": "3044", "target": "644", "attributes": { "weight": 1 } }, { "key": "31179", "source": "3046", "target": "2558", "attributes": { "weight": 1 } }, { "key": "37538", "source": "3046", "target": "297", "attributes": { "weight": 1 } }, { "key": "31178", "source": "3046", "target": "3048", "attributes": { "weight": 1 } }, { "key": "31180", "source": "3047", "target": "2558", "attributes": { "weight": 1 } }, { "key": "31181", "source": "3048", "target": "3046", "attributes": { "weight": 1 } }, { "key": "37549", "source": "3048", "target": "297", "attributes": { "weight": 1 } }, { "key": "31184", "source": "3049", "target": "3047", "attributes": { "weight": 1 } }, { "key": "31185", "source": "3050", "target": "3049", "attributes": { "weight": 1 } }, { "key": "31186", "source": "3051", "target": "1143", "attributes": { "weight": 1 } }, { "key": "31435", "source": "3052", "target": "3001", "attributes": { "weight": 1 } }, { "key": "31434", "source": "3052", "target": "3053", "attributes": { "weight": 1 } }, { "key": "31436", "source": "3053", "target": "3052", "attributes": { "weight": 1 } }, { "key": "31438", "source": "3053", "target": "1370", "attributes": { "weight": 1 } }, { "key": "31439", "source": "3053", "target": "3004", "attributes": { "weight": 1 } }, { "key": "31437", "source": "3053", "target": "3001", "attributes": { "weight": 1 } }, { "key": "31440", "source": "3054", "target": "3004", "attributes": { "weight": 1 } }, { "key": "31453", "source": "3055", "target": "3004", "attributes": { "weight": 1 } }, { "key": "31452", "source": "3055", "target": "1370", "attributes": { "weight": 1 } }, { "key": "31492", "source": "3056", "target": "1087", "attributes": { "weight": 1 } }, { "key": "31511", "source": "3057", "target": "233", "attributes": { "weight": 1 } }, { "key": "31510", "source": "3057", "target": "51", "attributes": { "weight": 1 } }, { "key": "31525", "source": "3058", "target": "231", "attributes": { "weight": 1 } }, { "key": "31524", "source": "3058", "target": "54", "attributes": { "weight": 1 } }, { "key": "31521", "source": "3058", "target": "424", "attributes": { "weight": 1 } }, { "key": "31523", "source": "3058", "target": "135", "attributes": { "weight": 1 } }, { "key": "31526", "source": "3058", "target": "56", "attributes": { "weight": 1 } }, { "key": "31522", "source": "3058", "target": "1358", "attributes": { "weight": 1 } }, { "key": "31535", "source": "3059", "target": "424", "attributes": { "weight": 1 } }, { "key": "31536", "source": "3059", "target": "231", "attributes": { "weight": 1 } }, { "key": "31547", "source": "3060", "target": "183", "attributes": { "weight": 1 } }, { "key": "31546", "source": "3060", "target": "448", "attributes": { "weight": 1 } }, { "key": "31562", "source": "3061", "target": "233", "attributes": { "weight": 1 } }, { "key": "31596", "source": "3062", "target": "595", "attributes": { "weight": 1 } }, { "key": "31828", "source": "3063", "target": "1045", "attributes": { "weight": 1 } }, { "key": "31829", "source": "3063", "target": "359", "attributes": { "weight": 1 } }, { "key": "31830", "source": "3063", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31837", "source": "3064", "target": "359", "attributes": { "weight": 1 } }, { "key": "31838", "source": "3064", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31841", "source": "3065", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31840", "source": "3065", "target": "359", "attributes": { "weight": 1 } }, { "key": "31844", "source": "3066", "target": "1045", "attributes": { "weight": 1 } }, { "key": "31846", "source": "3066", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31845", "source": "3066", "target": "359", "attributes": { "weight": 1 } }, { "key": "31873", "source": "3067", "target": "359", "attributes": { "weight": 1 } }, { "key": "31874", "source": "3067", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31877", "source": "3068", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31875", "source": "3068", "target": "1045", "attributes": { "weight": 1 } }, { "key": "31876", "source": "3068", "target": "359", "attributes": { "weight": 1 } }, { "key": "31878", "source": "3069", "target": "359", "attributes": { "weight": 1 } }, { "key": "37096", "source": "3070", "target": "2115", "attributes": { "weight": 1 } }, { "key": "31886", "source": "3070", "target": "1060", "attributes": { "weight": 2 } }, { "key": "31884", "source": "3070", "target": "1045", "attributes": { "weight": 1 } }, { "key": "31885", "source": "3070", "target": "359", "attributes": { "weight": 2 } }, { "key": "31982", "source": "3071", "target": "359", "attributes": { "weight": 1 } }, { "key": "31983", "source": "3071", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31984", "source": "3072", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32024", "source": "3073", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32023", "source": "3073", "target": "359", "attributes": { "weight": 1 } }, { "key": "32032", "source": "3074", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32040", "source": "3075", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32039", "source": "3075", "target": "2115", "attributes": { "weight": 1 } }, { "key": "32041", "source": "3076", "target": "359", "attributes": { "weight": 1 } }, { "key": "32042", "source": "3076", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32044", "source": "3077", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32043", "source": "3077", "target": "359", "attributes": { "weight": 1 } }, { "key": "32050", "source": "3078", "target": "3081", "attributes": { "weight": 1 } }, { "key": "32049", "source": "3078", "target": "3080", "attributes": { "weight": 1 } }, { "key": "32051", "source": "3078", "target": "3083", "attributes": { "weight": 1 } }, { "key": "32054", "source": "3079", "target": "3082", "attributes": { "weight": 1 } }, { "key": "32055", "source": "3080", "target": "3078", "attributes": { "weight": 1 } }, { "key": "32056", "source": "3080", "target": "3081", "attributes": { "weight": 1 } }, { "key": "32059", "source": "3081", "target": "3078", "attributes": { "weight": 1 } }, { "key": "32060", "source": "3081", "target": "3080", "attributes": { "weight": 1 } }, { "key": "32061", "source": "3082", "target": "1816", "attributes": { "weight": 1 } }, { "key": "32062", "source": "3083", "target": "3078", "attributes": { "weight": 1 } }, { "key": "32075", "source": "3084", "target": "220", "attributes": { "weight": 1 } }, { "key": "32077", "source": "3084", "target": "224", "attributes": { "weight": 1 } }, { "key": "32080", "source": "3084", "target": "459", "attributes": { "weight": 1 } }, { "key": "32085", "source": "3084", "target": "193", "attributes": { "weight": 1 } }, { "key": "32081", "source": "3084", "target": "1363", "attributes": { "weight": 1 } }, { "key": "32083", "source": "3084", "target": "191", "attributes": { "weight": 1 } }, { "key": "32078", "source": "3084", "target": "184", "attributes": { "weight": 1 } }, { "key": "32082", "source": "3084", "target": "189", "attributes": { "weight": 1 } }, { "key": "32076", "source": "3084", "target": "130", "attributes": { "weight": 1 } }, { "key": "32086", "source": "3084", "target": "495", "attributes": { "weight": 1 } }, { "key": "32084", "source": "3084", "target": "231", "attributes": { "weight": 1 } }, { "key": "32079", "source": "3084", "target": "188", "attributes": { "weight": 1 } }, { "key": "35124", "source": "3085", "target": "13", "attributes": { "weight": 1 } }, { "key": "35126", "source": "3085", "target": "349", "attributes": { "weight": 1 } }, { "key": "35125", "source": "3085", "target": "14", "attributes": { "weight": 1 } }, { "key": "34981", "source": "3085", "target": "3", "attributes": { "weight": 1 } }, { "key": "35123", "source": "3085", "target": "2505", "attributes": { "weight": 1 } }, { "key": "35122", "source": "3085", "target": "11", "attributes": { "weight": 1 } }, { "key": "35127", "source": "3085", "target": "826", "attributes": { "weight": 1 } }, { "key": "32107", "source": "3085", "target": "792", "attributes": { "weight": 1 } }, { "key": "32133", "source": "3086", "target": "233", "attributes": { "weight": 1 } }, { "key": "32166", "source": "3087", "target": "228", "attributes": { "weight": 1 } }, { "key": "32179", "source": "3088", "target": "1533", "attributes": { "weight": 1 } }, { "key": "32180", "source": "3088", "target": "1125", "attributes": { "weight": 1 } }, { "key": "32233", "source": "3089", "target": "442", "attributes": { "weight": 1 } }, { "key": "32289", "source": "3090", "target": "932", "attributes": { "weight": 1 } }, { "key": "32297", "source": "3091", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32298", "source": "3091", "target": "791", "attributes": { "weight": 1 } }, { "key": "32301", "source": "3092", "target": "791", "attributes": { "weight": 1 } }, { "key": "32300", "source": "3092", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32302", "source": "3093", "target": "223", "attributes": { "weight": 1 } }, { "key": "32314", "source": "3094", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32315", "source": "3094", "target": "791", "attributes": { "weight": 1 } }, { "key": "32332", "source": "3095", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32333", "source": "3096", "target": "791", "attributes": { "weight": 1 } }, { "key": "32398", "source": "3097", "target": "791", "attributes": { "weight": 1 } }, { "key": "32397", "source": "3097", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32400", "source": "3098", "target": "791", "attributes": { "weight": 1 } }, { "key": "32537", "source": "3099", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32538", "source": "3100", "target": "791", "attributes": { "weight": 1 } }, { "key": "32542", "source": "3101", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32543", "source": "3101", "target": "791", "attributes": { "weight": 1 } }, { "key": "32544", "source": "3101", "target": "232", "attributes": { "weight": 1 } }, { "key": "32549", "source": "3102", "target": "791", "attributes": { "weight": 1 } }, { "key": "32576", "source": "3103", "target": "2513", "attributes": { "weight": 1 } }, { "key": "32582", "source": "3104", "target": "791", "attributes": { "weight": 1 } }, { "key": "32608", "source": "3105", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32633", "source": "3106", "target": "3109", "attributes": { "weight": 1 } }, { "key": "32636", "source": "3107", "target": "165", "attributes": { "weight": 1 } }, { "key": "32637", "source": "3108", "target": "3109", "attributes": { "weight": 1 } }, { "key": "32638", "source": "3109", "target": "165", "attributes": { "weight": 1 } }, { "key": "32640", "source": "3109", "target": "3108", "attributes": { "weight": 1 } }, { "key": "32639", "source": "3109", "target": "3106", "attributes": { "weight": 1 } }, { "key": "32652", "source": "3110", "target": "2177", "attributes": { "weight": 1 } }, { "key": "32653", "source": "3110", "target": "3038", "attributes": { "weight": 1 } }, { "key": "32651", "source": "3110", "target": "638", "attributes": { "weight": 1 } }, { "key": "32675", "source": "3111", "target": "3035", "attributes": { "weight": 1 } }, { "key": "32673", "source": "3111", "target": "3024", "attributes": { "weight": 1 } }, { "key": "32674", "source": "3111", "target": "2177", "attributes": { "weight": 1 } }, { "key": "32678", "source": "3112", "target": "2177", "attributes": { "weight": 1 } }, { "key": "32679", "source": "3113", "target": "2624", "attributes": { "weight": 1 } }, { "key": "32680", "source": "3113", "target": "3035", "attributes": { "weight": 1 } }, { "key": "35561", "source": "3114", "target": "3213", "attributes": { "weight": 1 } }, { "key": "35559", "source": "3114", "target": "1710", "attributes": { "weight": 1 } }, { "key": "35560", "source": "3114", "target": "2450", "attributes": { "weight": 1 } }, { "key": "32940", "source": "3114", "target": "470", "attributes": { "weight": 2 } }, { "key": "34877", "source": "3115", "target": "493", "attributes": { "weight": 1 } }, { "key": "33078", "source": "3115", "target": "1125", "attributes": { "weight": 1 } }, { "key": "33132", "source": "3116", "target": "3120", "attributes": { "weight": 1 } }, { "key": "33131", "source": "3116", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33135", "source": "3117", "target": "3120", "attributes": { "weight": 1 } }, { "key": "33134", "source": "3117", "target": "3119", "attributes": { "weight": 1 } }, { "key": "33140", "source": "3117", "target": "3125", "attributes": { "weight": 1 } }, { "key": "33138", "source": "3117", "target": "3123", "attributes": { "weight": 1 } }, { "key": "33136", "source": "3117", "target": "3121", "attributes": { "weight": 1 } }, { "key": "33133", "source": "3117", "target": "3118", "attributes": { "weight": 1 } }, { "key": "33137", "source": "3117", "target": "3122", "attributes": { "weight": 1 } }, { "key": "33139", "source": "3117", "target": "3124", "attributes": { "weight": 1 } }, { "key": "33141", "source": "3118", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33142", "source": "3119", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33144", "source": "3120", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33143", "source": "3120", "target": "3116", "attributes": { "weight": 1 } }, { "key": "33145", "source": "3121", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33147", "source": "3121", "target": "3125", "attributes": { "weight": 1 } }, { "key": "33146", "source": "3121", "target": "3123", "attributes": { "weight": 1 } }, { "key": "33148", "source": "3122", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33150", "source": "3123", "target": "3121", "attributes": { "weight": 1 } }, { "key": "33149", "source": "3123", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33151", "source": "3124", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33153", "source": "3125", "target": "3121", "attributes": { "weight": 1 } }, { "key": "33152", "source": "3125", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33768", "source": "3126", "target": "3", "attributes": { "weight": 1 } }, { "key": "33796", "source": "3127", "target": "3", "attributes": { "weight": 1 } }, { "key": "33797", "source": "3127", "target": "8", "attributes": { "weight": 1 } }, { "key": "33798", "source": "3128", "target": "3", "attributes": { "weight": 1 } }, { "key": "33846", "source": "3129", "target": "3134", "attributes": { "weight": 1 } }, { "key": "33848", "source": "3129", "target": "1331", "attributes": { "weight": 1 } }, { "key": "33847", "source": "3129", "target": "1323", "attributes": { "weight": 1 } }, { "key": "33859", "source": "3130", "target": "3147", "attributes": { "weight": 1 } }, { "key": "33858", "source": "3130", "target": "1232", "attributes": { "weight": 1 } }, { "key": "33860", "source": "3131", "target": "1197", "attributes": { "weight": 1 } }, { "key": "33861", "source": "3131", "target": "338", "attributes": { "weight": 1 } }, { "key": "33873", "source": "3132", "target": "1182", "attributes": { "weight": 1 } }, { "key": "33874", "source": "3132", "target": "3146", "attributes": { "weight": 1 } }, { "key": "33885", "source": "3133", "target": "1232", "attributes": { "weight": 1 } }, { "key": "33886", "source": "3133", "target": "3162", "attributes": { "weight": 1 } }, { "key": "33921", "source": "3134", "target": "1323", "attributes": { "weight": 1 } }, { "key": "33920", "source": "3134", "target": "3129", "attributes": { "weight": 1 } }, { "key": "33928", "source": "3135", "target": "1323", "attributes": { "weight": 1 } }, { "key": "33931", "source": "3136", "target": "338", "attributes": { "weight": 1 } }, { "key": "33979", "source": "3137", "target": "123", "attributes": { "weight": 1 } }, { "key": "34074", "source": "3138", "target": "3141", "attributes": { "weight": 1 } }, { "key": "34073", "source": "3138", "target": "1182", "attributes": { "weight": 1 } }, { "key": "34075", "source": "3139", "target": "123", "attributes": { "weight": 1 } }, { "key": "34076", "source": "3140", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34170", "source": "3141", "target": "1182", "attributes": { "weight": 1 } }, { "key": "34171", "source": "3141", "target": "3138", "attributes": { "weight": 1 } }, { "key": "34176", "source": "3142", "target": "123", "attributes": { "weight": 1 } }, { "key": "34208", "source": "3143", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34217", "source": "3144", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34227", "source": "3145", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34458", "source": "3146", "target": "1182", "attributes": { "weight": 1 } }, { "key": "34457", "source": "3146", "target": "3132", "attributes": { "weight": 1 } }, { "key": "34459", "source": "3147", "target": "3130", "attributes": { "weight": 1 } }, { "key": "34460", "source": "3147", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34464", "source": "3148", "target": "3158", "attributes": { "weight": 1 } }, { "key": "34463", "source": "3148", "target": "3149", "attributes": { "weight": 1 } }, { "key": "34466", "source": "3149", "target": "2830", "attributes": { "weight": 1 } }, { "key": "34467", "source": "3149", "target": "3158", "attributes": { "weight": 1 } }, { "key": "34465", "source": "3149", "target": "3148", "attributes": { "weight": 1 } }, { "key": "34470", "source": "3150", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34505", "source": "3151", "target": "1291", "attributes": { "weight": 1 } }, { "key": "34506", "source": "3151", "target": "1323", "attributes": { "weight": 1 } }, { "key": "34536", "source": "3152", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34535", "source": "3152", "target": "2295", "attributes": { "weight": 1 } }, { "key": "34543", "source": "3153", "target": "123", "attributes": { "weight": 1 } }, { "key": "34550", "source": "3154", "target": "1323", "attributes": { "weight": 1 } }, { "key": "34557", "source": "3155", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34634", "source": "3156", "target": "123", "attributes": { "weight": 1 } }, { "key": "34651", "source": "3157", "target": "1182", "attributes": { "weight": 1 } }, { "key": "34654", "source": "3158", "target": "3149", "attributes": { "weight": 1 } }, { "key": "34653", "source": "3158", "target": "3148", "attributes": { "weight": 1 } }, { "key": "34655", "source": "3158", "target": "3163", "attributes": { "weight": 1 } }, { "key": "34666", "source": "3159", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34677", "source": "3160", "target": "1323", "attributes": { "weight": 1 } }, { "key": "34694", "source": "3161", "target": "700", "attributes": { "weight": 1 } }, { "key": "34695", "source": "3161", "target": "309", "attributes": { "weight": 1 } }, { "key": "34778", "source": "3162", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34820", "source": "3163", "target": "700", "attributes": { "weight": 1 } }, { "key": "34821", "source": "3163", "target": "3158", "attributes": { "weight": 1 } }, { "key": "34845", "source": "3164", "target": "1561", "attributes": { "weight": 1 } }, { "key": "34844", "source": "3164", "target": "700", "attributes": { "weight": 1 } }, { "key": "34856", "source": "3165", "target": "1125", "attributes": { "weight": 1 } }, { "key": "34867", "source": "3166", "target": "2511", "attributes": { "weight": 1 } }, { "key": "34870", "source": "3167", "target": "3115", "attributes": { "weight": 1 } }, { "key": "34871", "source": "3167", "target": "493", "attributes": { "weight": 1 } }, { "key": "34872", "source": "3168", "target": "3167", "attributes": { "weight": 1 } }, { "key": "34873", "source": "3168", "target": "3115", "attributes": { "weight": 1 } }, { "key": "34888", "source": "3169", "target": "3171", "attributes": { "weight": 1 } }, { "key": "34902", "source": "3171", "target": "3169", "attributes": { "weight": 1 } }, { "key": "34903", "source": "3171", "target": "1042", "attributes": { "weight": 1 } }, { "key": "34904", "source": "3171", "target": "3173", "attributes": { "weight": 1 } }, { "key": "34907", "source": "3172", "target": "1042", "attributes": { "weight": 1 } }, { "key": "34914", "source": "3173", "target": "3171", "attributes": { "weight": 1 } }, { "key": "35015", "source": "3174", "target": "3", "attributes": { "weight": 1 } }, { "key": "35016", "source": "3174", "target": "8", "attributes": { "weight": 1 } }, { "key": "35091", "source": "3175", "target": "3176", "attributes": { "weight": 1 } }, { "key": "35092", "source": "3175", "target": "1281", "attributes": { "weight": 1 } }, { "key": "35097", "source": "3176", "target": "1281", "attributes": { "weight": 1 } }, { "key": "35096", "source": "3176", "target": "3175", "attributes": { "weight": 1 } }, { "key": "35104", "source": "3177", "target": "3178", "attributes": { "weight": 1 } }, { "key": "35105", "source": "3177", "target": "1281", "attributes": { "weight": 1 } }, { "key": "35106", "source": "3178", "target": "3177", "attributes": { "weight": 1 } }, { "key": "35107", "source": "3178", "target": "1281", "attributes": { "weight": 1 } }, { "key": "35137", "source": "3179", "target": "345", "attributes": { "weight": 1 } }, { "key": "37282", "source": "3179", "target": "14", "attributes": { "weight": 1 } }, { "key": "35138", "source": "3179", "target": "349", "attributes": { "weight": 2 } }, { "key": "35157", "source": "3180", "target": "352", "attributes": { "weight": 1 } }, { "key": "35172", "source": "3181", "target": "352", "attributes": { "weight": 1 } }, { "key": "35174", "source": "3182", "target": "594", "attributes": { "weight": 1 } }, { "key": "35201", "source": "3183", "target": "130", "attributes": { "weight": 1 } }, { "key": "35202", "source": "3183", "target": "471", "attributes": { "weight": 1 } }, { "key": "35228", "source": "3184", "target": "1032", "attributes": { "weight": 1 } }, { "key": "35237", "source": "3186", "target": "778", "attributes": { "weight": 1 } }, { "key": "35238", "source": "3187", "target": "778", "attributes": { "weight": 1 } }, { "key": "35241", "source": "3188", "target": "778", "attributes": { "weight": 1 } }, { "key": "35247", "source": "3189", "target": "1030", "attributes": { "weight": 1 } }, { "key": "35246", "source": "3189", "target": "240", "attributes": { "weight": 1 } }, { "key": "35258", "source": "3190", "target": "778", "attributes": { "weight": 1 } }, { "key": "35262", "source": "3191", "target": "1032", "attributes": { "weight": 1 } }, { "key": "35263", "source": "3192", "target": "778", "attributes": { "weight": 1 } }, { "key": "35265", "source": "3193", "target": "778", "attributes": { "weight": 1 } }, { "key": "35358", "source": "3194", "target": "1811", "attributes": { "weight": 1 } }, { "key": "35364", "source": "3195", "target": "446", "attributes": { "weight": 1 } }, { "key": "35370", "source": "3196", "target": "3197", "attributes": { "weight": 1 } }, { "key": "35390", "source": "3197", "target": "173", "attributes": { "weight": 1 } }, { "key": "35389", "source": "3197", "target": "3196", "attributes": { "weight": 1 } }, { "key": "35478", "source": "3198", "target": "1857", "attributes": { "weight": 1 } }, { "key": "35448", "source": "3198", "target": "177", "attributes": { "weight": 2 } }, { "key": "35447", "source": "3198", "target": "574", "attributes": { "weight": 2 } }, { "key": "35454", "source": "3199", "target": "177", "attributes": { "weight": 2 } }, { "key": "35453", "source": "3199", "target": "574", "attributes": { "weight": 2 } }, { "key": "35520", "source": "3200", "target": "574", "attributes": { "weight": 1 } }, { "key": "35458", "source": "3200", "target": "177", "attributes": { "weight": 2 } }, { "key": "35460", "source": "3201", "target": "177", "attributes": { "weight": 1 } }, { "key": "35477", "source": "3202", "target": "574", "attributes": { "weight": 1 } }, { "key": "35500", "source": "3203", "target": "1857", "attributes": { "weight": 1 } }, { "key": "35501", "source": "3203", "target": "574", "attributes": { "weight": 1 } }, { "key": "35502", "source": "3203", "target": "177", "attributes": { "weight": 1 } }, { "key": "35517", "source": "3204", "target": "574", "attributes": { "weight": 1 } }, { "key": "35518", "source": "3204", "target": "177", "attributes": { "weight": 1 } }, { "key": "35521", "source": "3206", "target": "574", "attributes": { "weight": 1 } }, { "key": "35522", "source": "3206", "target": "1859", "attributes": { "weight": 1 } }, { "key": "35523", "source": "3206", "target": "3208", "attributes": { "weight": 1 } }, { "key": "35524", "source": "3207", "target": "574", "attributes": { "weight": 1 } }, { "key": "35525", "source": "3207", "target": "177", "attributes": { "weight": 1 } }, { "key": "35526", "source": "3208", "target": "177", "attributes": { "weight": 1 } }, { "key": "35527", "source": "3208", "target": "3206", "attributes": { "weight": 1 } }, { "key": "35529", "source": "3209", "target": "177", "attributes": { "weight": 1 } }, { "key": "35528", "source": "3209", "target": "574", "attributes": { "weight": 1 } }, { "key": "35533", "source": "3210", "target": "177", "attributes": { "weight": 1 } }, { "key": "35543", "source": "3211", "target": "1710", "attributes": { "weight": 1 } }, { "key": "35552", "source": "3212", "target": "1710", "attributes": { "weight": 1 } }, { "key": "35558", "source": "3213", "target": "3114", "attributes": { "weight": 1 } }, { "key": "35557", "source": "3213", "target": "2450", "attributes": { "weight": 1 } }, { "key": "35570", "source": "3214", "target": "3242", "attributes": { "weight": 1 } }, { "key": "35569", "source": "3214", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35573", "source": "3215", "target": "3240", "attributes": { "weight": 1 } }, { "key": "35571", "source": "3215", "target": "3229", "attributes": { "weight": 1 } }, { "key": "35572", "source": "3215", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35574", "source": "3215", "target": "3241", "attributes": { "weight": 1 } }, { "key": "35575", "source": "3216", "target": "3223", "attributes": { "weight": 1 } }, { "key": "35576", "source": "3217", "target": "3221", "attributes": { "weight": 1 } }, { "key": "35579", "source": "3217", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35581", "source": "3217", "target": "3231", "attributes": { "weight": 1 } }, { "key": "35580", "source": "3217", "target": "3230", "attributes": { "weight": 1 } }, { "key": "35577", "source": "3217", "target": "3225", "attributes": { "weight": 1 } }, { "key": "35578", "source": "3217", "target": "3227", "attributes": { "weight": 1 } }, { "key": "35582", "source": "3217", "target": "3236", "attributes": { "weight": 1 } }, { "key": "35583", "source": "3218", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35584", "source": "3218", "target": "3231", "attributes": { "weight": 1 } }, { "key": "35585", "source": "3219", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35586", "source": "3220", "target": "3219", "attributes": { "weight": 1 } }, { "key": "35587", "source": "3220", "target": "3226", "attributes": { "weight": 1 } }, { "key": "35590", "source": "3221", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35589", "source": "3221", "target": "3227", "attributes": { "weight": 1 } }, { "key": "35591", "source": "3221", "target": "3230", "attributes": { "weight": 1 } }, { "key": "35588", "source": "3221", "target": "3217", "attributes": { "weight": 1 } }, { "key": "35593", "source": "3223", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35595", "source": "3225", "target": "3217", "attributes": { "weight": 1 } }, { "key": "35597", "source": "3225", "target": "3230", "attributes": { "weight": 1 } }, { "key": "35596", "source": "3225", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35598", "source": "3226", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35602", "source": "3227", "target": "3230", "attributes": { "weight": 1 } }, { "key": "35601", "source": "3227", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35600", "source": "3227", "target": "3221", "attributes": { "weight": 1 } }, { "key": "35599", "source": "3227", "target": "3217", "attributes": { "weight": 1 } }, { "key": "35603", "source": "3228", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35604", "source": "3228", "target": "3231", "attributes": { "weight": 1 } }, { "key": "35608", "source": "3229", "target": "3241", "attributes": { "weight": 1 } }, { "key": "35606", "source": "3229", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35607", "source": "3229", "target": "3240", "attributes": { "weight": 1 } }, { "key": "35605", "source": "3229", "target": "3215", "attributes": { "weight": 1 } }, { "key": "35632", "source": "3230", "target": "3225", "attributes": { "weight": 1 } }, { "key": "35630", "source": "3230", "target": "3217", "attributes": { "weight": 1 } }, { "key": "35633", "source": "3230", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35631", "source": "3230", "target": "3221", "attributes": { "weight": 1 } }, { "key": "35637", "source": "3231", "target": "3236", "attributes": { "weight": 1 } }, { "key": "35635", "source": "3231", "target": "3228", "attributes": { "weight": 1 } }, { "key": "35636", "source": "3231", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35638", "source": "3231", "target": "3242", "attributes": { "weight": 1 } }, { "key": "35634", "source": "3231", "target": "3218", "attributes": { "weight": 1 } }, { "key": "35641", "source": "3233", "target": "3234", "attributes": { "weight": 1 } }, { "key": "35640", "source": "3233", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35642", "source": "3234", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35643", "source": "3234", "target": "3233", "attributes": { "weight": 1 } }, { "key": "35645", "source": "3235", "target": "3239", "attributes": { "weight": 1 } }, { "key": "35644", "source": "3235", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35647", "source": "3236", "target": "3231", "attributes": { "weight": 1 } }, { "key": "35646", "source": "3236", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35648", "source": "3237", "target": "3238", "attributes": { "weight": 1 } }, { "key": "35649", "source": "3238", "target": "3214", "attributes": { "weight": 1 } }, { "key": "35651", "source": "3238", "target": "3237", "attributes": { "weight": 1 } }, { "key": "35650", "source": "3238", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35653", "source": "3239", "target": "3234", "attributes": { "weight": 1 } }, { "key": "35652", "source": "3239", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35654", "source": "3239", "target": "3235", "attributes": { "weight": 1 } }, { "key": "35657", "source": "3240", "target": "3241", "attributes": { "weight": 1 } }, { "key": "35655", "source": "3240", "target": "3215", "attributes": { "weight": 1 } }, { "key": "35656", "source": "3240", "target": "3229", "attributes": { "weight": 1 } }, { "key": "35659", "source": "3241", "target": "3229", "attributes": { "weight": 1 } }, { "key": "35660", "source": "3241", "target": "3240", "attributes": { "weight": 1 } }, { "key": "35658", "source": "3241", "target": "3215", "attributes": { "weight": 1 } }, { "key": "35662", "source": "3242", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35663", "source": "3242", "target": "3231", "attributes": { "weight": 1 } }, { "key": "35661", "source": "3242", "target": "3214", "attributes": { "weight": 1 } }, { "key": "35681", "source": "3243", "target": "3247", "attributes": { "weight": 1 } }, { "key": "35680", "source": "3243", "target": "59", "attributes": { "weight": 1 } }, { "key": "35690", "source": "3244", "target": "59", "attributes": { "weight": 1 } }, { "key": "35691", "source": "3244", "target": "3249", "attributes": { "weight": 1 } }, { "key": "35694", "source": "3245", "target": "59", "attributes": { "weight": 1 } }, { "key": "35696", "source": "3246", "target": "193", "attributes": { "weight": 1 } }, { "key": "35697", "source": "3247", "target": "59", "attributes": { "weight": 1 } }, { "key": "35698", "source": "3247", "target": "3243", "attributes": { "weight": 1 } }, { "key": "35700", "source": "3248", "target": "1750", "attributes": { "weight": 1 } }, { "key": "35699", "source": "3248", "target": "2092", "attributes": { "weight": 1 } }, { "key": "35712", "source": "3249", "target": "1750", "attributes": { "weight": 1 } }, { "key": "35711", "source": "3249", "target": "3244", "attributes": { "weight": 1 } }, { "key": "35713", "source": "3250", "target": "1750", "attributes": { "weight": 1 } }, { "key": "35714", "source": "3251", "target": "340", "attributes": { "weight": 1 } }, { "key": "35718", "source": "3252", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35719", "source": "3252", "target": "136", "attributes": { "weight": 1 } }, { "key": "35736", "source": "3253", "target": "136", "attributes": { "weight": 1 } }, { "key": "35735", "source": "3253", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35738", "source": "3254", "target": "136", "attributes": { "weight": 1 } }, { "key": "35737", "source": "3254", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35742", "source": "3255", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35743", "source": "3256", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35744", "source": "3257", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35746", "source": "3258", "target": "136", "attributes": { "weight": 1 } }, { "key": "35747", "source": "3259", "target": "136", "attributes": { "weight": 1 } }, { "key": "35764", "source": "3260", "target": "136", "attributes": { "weight": 1 } }, { "key": "35763", "source": "3260", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35765", "source": "3261", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35766", "source": "3261", "target": "136", "attributes": { "weight": 1 } }, { "key": "35767", "source": "3262", "target": "136", "attributes": { "weight": 1 } }, { "key": "35768", "source": "3263", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35769", "source": "3264", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35770", "source": "3265", "target": "30", "attributes": { "weight": 1 } }, { "key": "35771", "source": "3266", "target": "30", "attributes": { "weight": 1 } }, { "key": "35772", "source": "3267", "target": "30", "attributes": { "weight": 1 } }, { "key": "35777", "source": "3268", "target": "30", "attributes": { "weight": 1 } }, { "key": "35796", "source": "3269", "target": "221", "attributes": { "weight": 1 } }, { "key": "35886", "source": "3270", "target": "221", "attributes": { "weight": 1 } }, { "key": "35887", "source": "3270", "target": "2258", "attributes": { "weight": 1 } }, { "key": "35898", "source": "3271", "target": "2248", "attributes": { "weight": 1 } }, { "key": "35899", "source": "3271", "target": "2258", "attributes": { "weight": 1 } }, { "key": "36162", "source": "3272", "target": "1741", "attributes": { "weight": 1 } }, { "key": "36160", "source": "3272", "target": "1998", "attributes": { "weight": 1 } }, { "key": "36203", "source": "3273", "target": "176", "attributes": { "weight": 1 } }, { "key": "36204", "source": "3274", "target": "176", "attributes": { "weight": 1 } }, { "key": "36207", "source": "3275", "target": "687", "attributes": { "weight": 2 } }, { "key": "36209", "source": "3275", "target": "176", "attributes": { "weight": 1 } }, { "key": "36208", "source": "3275", "target": "3276", "attributes": { "weight": 1 } }, { "key": "36211", "source": "3276", "target": "3275", "attributes": { "weight": 1 } }, { "key": "36237", "source": "3277", "target": "1386", "attributes": { "weight": 1 } }, { "key": "36249", "source": "3278", "target": "596", "attributes": { "weight": 1 } }, { "key": "36248", "source": "3278", "target": "1862", "attributes": { "weight": 1 } }, { "key": "36247", "source": "3278", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36262", "source": "3279", "target": "3281", "attributes": { "weight": 1 } }, { "key": "36263", "source": "3279", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36266", "source": "3279", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36264", "source": "3279", "target": "3290", "attributes": { "weight": 1 } }, { "key": "36265", "source": "3279", "target": "3305", "attributes": { "weight": 1 } }, { "key": "36269", "source": "3280", "target": "70", "attributes": { "weight": 1 } }, { "key": "36268", "source": "3280", "target": "3292", "attributes": { "weight": 1 } }, { "key": "36267", "source": "3280", "target": "434", "attributes": { "weight": 1 } }, { "key": "36270", "source": "3280", "target": "3303", "attributes": { "weight": 1 } }, { "key": "36271", "source": "3280", "target": "1389", "attributes": { "weight": 1 } }, { "key": "36286", "source": "3281", "target": "3290", "attributes": { "weight": 1 } }, { "key": "36285", "source": "3281", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36287", "source": "3281", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36284", "source": "3281", "target": "3279", "attributes": { "weight": 1 } }, { "key": "36297", "source": "3283", "target": "1863", "attributes": { "weight": 1 } }, { "key": "36294", "source": "3283", "target": "434", "attributes": { "weight": 1 } }, { "key": "36298", "source": "3283", "target": "70", "attributes": { "weight": 1 } }, { "key": "36296", "source": "3283", "target": "3286", "attributes": { "weight": 1 } }, { "key": "36299", "source": "3284", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36300", "source": "3284", "target": "596", "attributes": { "weight": 1 } }, { "key": "36308", "source": "3285", "target": "596", "attributes": { "weight": 1 } }, { "key": "36306", "source": "3285", "target": "3290", "attributes": { "weight": 1 } }, { "key": "36304", "source": "3285", "target": "3284", "attributes": { "weight": 1 } }, { "key": "36307", "source": "3285", "target": "3302", "attributes": { "weight": 1 } }, { "key": "36302", "source": "3285", "target": "2084", "attributes": { "weight": 1 } }, { "key": "36305", "source": "3285", "target": "3287", "attributes": { "weight": 1 } }, { "key": "36303", "source": "3285", "target": "3281", "attributes": { "weight": 1 } }, { "key": "36311", "source": "3286", "target": "70", "attributes": { "weight": 1 } }, { "key": "36310", "source": "3286", "target": "3283", "attributes": { "weight": 1 } }, { "key": "36309", "source": "3286", "target": "434", "attributes": { "weight": 1 } }, { "key": "36312", "source": "3286", "target": "3301", "attributes": { "weight": 1 } }, { "key": "36313", "source": "3287", "target": "3281", "attributes": { "weight": 1 } }, { "key": "36314", "source": "3287", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36315", "source": "3287", "target": "3290", "attributes": { "weight": 1 } }, { "key": "36327", "source": "3288", "target": "596", "attributes": { "weight": 1 } }, { "key": "36329", "source": "3289", "target": "3295", "attributes": { "weight": 1 } }, { "key": "36330", "source": "3289", "target": "3304", "attributes": { "weight": 1 } }, { "key": "36328", "source": "3289", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36334", "source": "3290", "target": "3287", "attributes": { "weight": 1 } }, { "key": "36332", "source": "3290", "target": "3281", "attributes": { "weight": 1 } }, { "key": "36335", "source": "3290", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36331", "source": "3290", "target": "2084", "attributes": { "weight": 1 } }, { "key": "36333", "source": "3290", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36338", "source": "3291", "target": "3294", "attributes": { "weight": 1 } }, { "key": "36339", "source": "3291", "target": "3303", "attributes": { "weight": 1 } }, { "key": "36340", "source": "3291", "target": "1389", "attributes": { "weight": 1 } }, { "key": "36337", "source": "3291", "target": "3292", "attributes": { "weight": 1 } }, { "key": "36336", "source": "3291", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36347", "source": "3292", "target": "1389", "attributes": { "weight": 1 } }, { "key": "36346", "source": "3292", "target": "3297", "attributes": { "weight": 1 } }, { "key": "36344", "source": "3292", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36345", "source": "3292", "target": "3291", "attributes": { "weight": 1 } }, { "key": "36348", "source": "3293", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36357", "source": "3294", "target": "3291", "attributes": { "weight": 1 } }, { "key": "36359", "source": "3294", "target": "1389", "attributes": { "weight": 1 } }, { "key": "36358", "source": "3294", "target": "3297", "attributes": { "weight": 1 } }, { "key": "36360", "source": "3295", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36361", "source": "3295", "target": "3289", "attributes": { "weight": 1 } }, { "key": "36362", "source": "3296", "target": "70", "attributes": { "weight": 1 } }, { "key": "36364", "source": "3297", "target": "3294", "attributes": { "weight": 1 } }, { "key": "36363", "source": "3297", "target": "3292", "attributes": { "weight": 1 } }, { "key": "36365", "source": "3297", "target": "1389", "attributes": { "weight": 1 } }, { "key": "36367", "source": "3298", "target": "3301", "attributes": { "weight": 1 } }, { "key": "36366", "source": "3298", "target": "70", "attributes": { "weight": 1 } }, { "key": "36368", "source": "3299", "target": "434", "attributes": { "weight": 1 } }, { "key": "36372", "source": "3300", "target": "596", "attributes": { "weight": 1 } }, { "key": "36371", "source": "3300", "target": "3304", "attributes": { "weight": 1 } }, { "key": "36370", "source": "3300", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36369", "source": "3300", "target": "3278", "attributes": { "weight": 1 } }, { "key": "36374", "source": "3301", "target": "3286", "attributes": { "weight": 1 } }, { "key": "36375", "source": "3301", "target": "70", "attributes": { "weight": 1 } }, { "key": "36376", "source": "3301", "target": "3298", "attributes": { "weight": 1 } }, { "key": "36373", "source": "3301", "target": "434", "attributes": { "weight": 1 } }, { "key": "36378", "source": "3302", "target": "596", "attributes": { "weight": 1 } }, { "key": "36377", "source": "3302", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36380", "source": "3303", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36382", "source": "3303", "target": "1389", "attributes": { "weight": 1 } }, { "key": "36379", "source": "3303", "target": "3280", "attributes": { "weight": 1 } }, { "key": "36381", "source": "3303", "target": "70", "attributes": { "weight": 1 } }, { "key": "36387", "source": "3304", "target": "3289", "attributes": { "weight": 1 } }, { "key": "36388", "source": "3304", "target": "3300", "attributes": { "weight": 1 } }, { "key": "36386", "source": "3304", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36407", "source": "3305", "target": "3279", "attributes": { "weight": 1 } }, { "key": "36409", "source": "3305", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36408", "source": "3305", "target": "2089", "attributes": { "weight": 1 } }, { "key": "36412", "source": "3306", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36413", "source": "3306", "target": "2089", "attributes": { "weight": 1 } }, { "key": "36415", "source": "3306", "target": "596", "attributes": { "weight": 1 } }, { "key": "36416", "source": "3306", "target": "3305", "attributes": { "weight": 1 } }, { "key": "36410", "source": "3306", "target": "2084", "attributes": { "weight": 1 } }, { "key": "36411", "source": "3306", "target": "3279", "attributes": { "weight": 1 } }, { "key": "36414", "source": "3306", "target": "3290", "attributes": { "weight": 1 } }, { "key": "36419", "source": "3307", "target": "2945", "attributes": { "weight": 1 } }, { "key": "36422", "source": "3307", "target": "3311", "attributes": { "weight": 1 } }, { "key": "36420", "source": "3307", "target": "2946", "attributes": { "weight": 1 } }, { "key": "36421", "source": "3307", "target": "2948", "attributes": { "weight": 1 } }, { "key": "36429", "source": "3308", "target": "2852", "attributes": { "weight": 1 } }, { "key": "36430", "source": "3308", "target": "1423", "attributes": { "weight": 1 } }, { "key": "36437", "source": "3309", "target": "2946", "attributes": { "weight": 1 } }, { "key": "36438", "source": "3309", "target": "2948", "attributes": { "weight": 1 } }, { "key": "36439", "source": "3310", "target": "2945", "attributes": { "weight": 1 } }, { "key": "36440", "source": "3310", "target": "3311", "attributes": { "weight": 1 } }, { "key": "36442", "source": "3311", "target": "3310", "attributes": { "weight": 1 } }, { "key": "36441", "source": "3311", "target": "3307", "attributes": { "weight": 1 } }, { "key": "36443", "source": "3312", "target": "257", "attributes": { "weight": 1 } }, { "key": "36445", "source": "3313", "target": "257", "attributes": { "weight": 1 } }, { "key": "36773", "source": "3314", "target": "377", "attributes": { "weight": 1 } }, { "key": "36786", "source": "3315", "target": "377", "attributes": { "weight": 1 } }, { "key": "36783", "source": "3315", "target": "373", "attributes": { "weight": 1 } }, { "key": "36785", "source": "3315", "target": "1406", "attributes": { "weight": 1 } }, { "key": "36784", "source": "3315", "target": "1350", "attributes": { "weight": 1 } }, { "key": "36812", "source": "3316", "target": "377", "attributes": { "weight": 1 } }, { "key": "36811", "source": "3316", "target": "373", "attributes": { "weight": 1 } }, { "key": "36832", "source": "3317", "target": "2587", "attributes": { "weight": 1 } }, { "key": "36834", "source": "3318", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36833", "source": "3318", "target": "3321", "attributes": { "weight": 1 } }, { "key": "36835", "source": "3319", "target": "3322", "attributes": { "weight": 1 } }, { "key": "36836", "source": "3319", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36838", "source": "3319", "target": "3338", "attributes": { "weight": 1 } }, { "key": "36837", "source": "3319", "target": "3337", "attributes": { "weight": 1 } }, { "key": "36839", "source": "3320", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36840", "source": "3321", "target": "3318", "attributes": { "weight": 1 } }, { "key": "36841", "source": "3321", "target": "3320", "attributes": { "weight": 1 } }, { "key": "36842", "source": "3321", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36843", "source": "3322", "target": "3319", "attributes": { "weight": 1 } }, { "key": "36846", "source": "3322", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36845", "source": "3322", "target": "3334", "attributes": { "weight": 1 } }, { "key": "36844", "source": "3322", "target": "3325", "attributes": { "weight": 1 } }, { "key": "36848", "source": "3323", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36847", "source": "3323", "target": "3334", "attributes": { "weight": 1 } }, { "key": "36849", "source": "3324", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36850", "source": "3324", "target": "3338", "attributes": { "weight": 1 } }, { "key": "36852", "source": "3325", "target": "3334", "attributes": { "weight": 1 } }, { "key": "36851", "source": "3325", "target": "3322", "attributes": { "weight": 1 } }, { "key": "36853", "source": "3326", "target": "3325", "attributes": { "weight": 1 } }, { "key": "36854", "source": "3326", "target": "3334", "attributes": { "weight": 1 } }, { "key": "36855", "source": "3326", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36856", "source": "3327", "target": "3329", "attributes": { "weight": 1 } }, { "key": "36857", "source": "3327", "target": "3331", "attributes": { "weight": 1 } }, { "key": "36858", "source": "3327", "target": "1408", "attributes": { "weight": 1 } }, { "key": "36860", "source": "3328", "target": "2587", "attributes": { "weight": 1 } }, { "key": "36859", "source": "3328", "target": "3330", "attributes": { "weight": 1 } }, { "key": "36862", "source": "3329", "target": "3336", "attributes": { "weight": 1 } }, { "key": "36861", "source": "3329", "target": "3327", "attributes": { "weight": 1 } }, { "key": "36864", "source": "3330", "target": "2587", "attributes": { "weight": 1 } }, { "key": "36863", "source": "3330", "target": "3328", "attributes": { "weight": 1 } }, { "key": "36865", "source": "3331", "target": "3327", "attributes": { "weight": 1 } }, { "key": "36866", "source": "3332", "target": "1408", "attributes": { "weight": 1 } }, { "key": "36869", "source": "3333", "target": "2587", "attributes": { "weight": 1 } }, { "key": "36868", "source": "3333", "target": "3330", "attributes": { "weight": 1 } }, { "key": "36867", "source": "3333", "target": "3328", "attributes": { "weight": 1 } }, { "key": "36870", "source": "3333", "target": "3335", "attributes": { "weight": 1 } }, { "key": "36871", "source": "3333", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36878", "source": "3334", "target": "3323", "attributes": { "weight": 1 } }, { "key": "36879", "source": "3334", "target": "3326", "attributes": { "weight": 1 } }, { "key": "36877", "source": "3334", "target": "3322", "attributes": { "weight": 1 } }, { "key": "36880", "source": "3334", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36881", "source": "3335", "target": "3339", "attributes": { "weight": 1 } }, { "key": "36883", "source": "3336", "target": "3332", "attributes": { "weight": 1 } }, { "key": "36882", "source": "3336", "target": "3329", "attributes": { "weight": 1 } }, { "key": "36897", "source": "3337", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36896", "source": "3337", "target": "3319", "attributes": { "weight": 1 } }, { "key": "36898", "source": "3338", "target": "3319", "attributes": { "weight": 1 } }, { "key": "36899", "source": "3338", "target": "3324", "attributes": { "weight": 1 } }, { "key": "36902", "source": "3339", "target": "2587", "attributes": { "weight": 1 } }, { "key": "36900", "source": "3339", "target": "3317", "attributes": { "weight": 1 } }, { "key": "36901", "source": "3339", "target": "3333", "attributes": { "weight": 1 } }, { "key": "36955", "source": "3340", "target": "362", "attributes": { "weight": 1 } }, { "key": "37032", "source": "3341", "target": "1358", "attributes": { "weight": 1 } }, { "key": "37035", "source": "3341", "target": "56", "attributes": { "weight": 1 } }, { "key": "37033", "source": "3341", "target": "54", "attributes": { "weight": 1 } }, { "key": "37031", "source": "3341", "target": "424", "attributes": { "weight": 1 } }, { "key": "37034", "source": "3341", "target": "231", "attributes": { "weight": 1 } }, { "key": "37040", "source": "3344", "target": "371", "attributes": { "weight": 1 } }, { "key": "37208", "source": "3345", "target": "411", "attributes": { "weight": 1 } }, { "key": "37207", "source": "3345", "target": "338", "attributes": { "weight": 1 } }, { "key": "37224", "source": "3346", "target": "681", "attributes": { "weight": 1 } }, { "key": "37249", "source": "3347", "target": "681", "attributes": { "weight": 1 } }, { "key": "37250", "source": "3348", "target": "681", "attributes": { "weight": 1 } }, { "key": "37270", "source": "3349", "target": "1806", "attributes": { "weight": 1 } }, { "key": "37269", "source": "3349", "target": "1798", "attributes": { "weight": 1 } }, { "key": "37275", "source": "3350", "target": "14", "attributes": { "weight": 1 } }, { "key": "37277", "source": "3351", "target": "2506", "attributes": { "weight": 1 } }, { "key": "37278", "source": "3351", "target": "14", "attributes": { "weight": 1 } }, { "key": "37279", "source": "3351", "target": "349", "attributes": { "weight": 1 } }, { "key": "37276", "source": "3351", "target": "3", "attributes": { "weight": 1 } }, { "key": "37280", "source": "3351", "target": "351", "attributes": { "weight": 1 } }, { "key": "37305", "source": "3352", "target": "2506", "attributes": { "weight": 1 } }, { "key": "37334", "source": "3353", "target": "3363", "attributes": { "weight": 1 } }, { "key": "37333", "source": "3353", "target": "3361", "attributes": { "weight": 1 } }, { "key": "37336", "source": "3354", "target": "3363", "attributes": { "weight": 1 } }, { "key": "37335", "source": "3354", "target": "3357", "attributes": { "weight": 1 } }, { "key": "37340", "source": "3355", "target": "3358", "attributes": { "weight": 1 } }, { "key": "37341", "source": "3355", "target": "3360", "attributes": { "weight": 1 } }, { "key": "37343", "source": "3355", "target": "3362", "attributes": { "weight": 1 } }, { "key": "37338", "source": "3355", "target": "3356", "attributes": { "weight": 1 } }, { "key": "37342", "source": "3355", "target": "1416", "attributes": { "weight": 1 } }, { "key": "37339", "source": "3355", "target": "3357", "attributes": { "weight": 1 } }, { "key": "37346", "source": "3356", "target": "3359", "attributes": { "weight": 1 } }, { "key": "37347", "source": "3356", "target": "1416", "attributes": { "weight": 1 } }, { "key": "37345", "source": "3356", "target": "3355", "attributes": { "weight": 1 } }, { "key": "37344", "source": "3356", "target": "142", "attributes": { "weight": 1 } }, { "key": "37350", "source": "3357", "target": "1414", "attributes": { "weight": 1 } }, { "key": "37348", "source": "3357", "target": "3354", "attributes": { "weight": 1 } }, { "key": "37349", "source": "3357", "target": "3355", "attributes": { "weight": 1 } }, { "key": "37351", "source": "3358", "target": "3355", "attributes": { "weight": 1 } }, { "key": "37352", "source": "3358", "target": "3360", "attributes": { "weight": 1 } }, { "key": "37353", "source": "3358", "target": "154", "attributes": { "weight": 1 } }, { "key": "37355", "source": "3359", "target": "3362", "attributes": { "weight": 1 } }, { "key": "37354", "source": "3359", "target": "3356", "attributes": { "weight": 1 } }, { "key": "37356", "source": "3360", "target": "3355", "attributes": { "weight": 1 } }, { "key": "37357", "source": "3360", "target": "3358", "attributes": { "weight": 1 } }, { "key": "37358", "source": "3361", "target": "3353", "attributes": { "weight": 1 } }, { "key": "37364", "source": "3362", "target": "3359", "attributes": { "weight": 1 } }, { "key": "37363", "source": "3362", "target": "3355", "attributes": { "weight": 1 } }, { "key": "37366", "source": "3363", "target": "3354", "attributes": { "weight": 1 } }, { "key": "37365", "source": "3363", "target": "3353", "attributes": { "weight": 1 } }, { "key": "37379", "source": "3365", "target": "2202", "attributes": { "weight": 1 } }, { "key": "37381", "source": "3366", "target": "361", "attributes": { "weight": 1 } }, { "key": "37382", "source": "3367", "target": "361", "attributes": { "weight": 1 } }, { "key": "37383", "source": "3368", "target": "361", "attributes": { "weight": 1 } }, { "key": "37384", "source": "3369", "target": "361", "attributes": { "weight": 1 } }, { "key": "37385", "source": "3370", "target": "361", "attributes": { "weight": 1 } }, { "key": "37386", "source": "3371", "target": "361", "attributes": { "weight": 1 } }, { "key": "37387", "source": "3372", "target": "361", "attributes": { "weight": 1 } }, { "key": "37397", "source": "3373", "target": "361", "attributes": { "weight": 1 } }, { "key": "37398", "source": "3374", "target": "361", "attributes": { "weight": 1 } }, { "key": "37415", "source": "3376", "target": "1024", "attributes": { "weight": 1 } }, { "key": "37414", "source": "3376", "target": "3", "attributes": { "weight": 1 } }, { "key": "37422", "source": "3377", "target": "1099", "attributes": { "weight": 1 } }, { "key": "37423", "source": "3377", "target": "1104", "attributes": { "weight": 1 } }, { "key": "37427", "source": "3378", "target": "1099", "attributes": { "weight": 1 } }, { "key": "37493", "source": "3379", "target": "1197", "attributes": { "weight": 1 } }, { "key": "37494", "source": "3380", "target": "1197", "attributes": { "weight": 1 } }, { "key": "37510", "source": "3382", "target": "1197", "attributes": { "weight": 1 } }, { "key": "37511", "source": "3383", "target": "338", "attributes": { "weight": 1 } }, { "key": "37512", "source": "3384", "target": "1197", "attributes": { "weight": 1 } }, { "key": "37518", "source": "3385", "target": "338", "attributes": { "weight": 1 } }, { "key": "37519", "source": "3386", "target": "1197", "attributes": { "weight": 1 } }, { "key": "37520", "source": "3387", "target": "1197", "attributes": { "weight": 1 } }, { "key": "37522", "source": "3389", "target": "338", "attributes": { "weight": 1 } }, { "key": "37533", "source": "3390", "target": "2971", "attributes": { "weight": 1 } }, { "key": "37531", "source": "3390", "target": "1143", "attributes": { "weight": 1 } }, { "key": "37532", "source": "3390", "target": "2960", "attributes": { "weight": 1 } }, { "key": "37534", "source": "3390", "target": "310", "attributes": { "weight": 1 } }, { "key": "37536", "source": "3391", "target": "310", "attributes": { "weight": 1 } }, { "key": "37535", "source": "3391", "target": "3404", "attributes": { "weight": 1 } }, { "key": "37539", "source": "3392", "target": "1143", "attributes": { "weight": 1 } }, { "key": "37540", "source": "3393", "target": "1143", "attributes": { "weight": 1 } }, { "key": "37542", "source": "3394", "target": "3402", "attributes": { "weight": 1 } }, { "key": "37543", "source": "3394", "target": "310", "attributes": { "weight": 1 } }, { "key": "37544", "source": "3395", "target": "3406", "attributes": { "weight": 1 } }, { "key": "37546", "source": "3396", "target": "2934", "attributes": { "weight": 1 } }, { "key": "37547", "source": "3396", "target": "3405", "attributes": { "weight": 1 } }, { "key": "37548", "source": "3397", "target": "1143", "attributes": { "weight": 1 } }, { "key": "37551", "source": "3398", "target": "310", "attributes": { "weight": 1 } }, { "key": "37558", "source": "3399", "target": "1143", "attributes": { "weight": 1 } }, { "key": "37559", "source": "3399", "target": "297", "attributes": { "weight": 1 } }, { "key": "37561", "source": "3400", "target": "3401", "attributes": { "weight": 1 } }, { "key": "37562", "source": "3400", "target": "310", "attributes": { "weight": 1 } }, { "key": "37560", "source": "3400", "target": "297", "attributes": { "weight": 1 } }, { "key": "37566", "source": "3401", "target": "3400", "attributes": { "weight": 1 } }, { "key": "37567", "source": "3401", "target": "310", "attributes": { "weight": 1 } }, { "key": "37568", "source": "3402", "target": "3394", "attributes": { "weight": 1 } }, { "key": "37569", "source": "3402", "target": "310", "attributes": { "weight": 1 } }, { "key": "37572", "source": "3403", "target": "310", "attributes": { "weight": 1 } }, { "key": "37574", "source": "3404", "target": "310", "attributes": { "weight": 1 } }, { "key": "37573", "source": "3404", "target": "3391", "attributes": { "weight": 1 } }, { "key": "37575", "source": "3405", "target": "3396", "attributes": { "weight": 1 } }, { "key": "37588", "source": "3406", "target": "3395", "attributes": { "weight": 1 } }, { "key": "37589", "source": "3406", "target": "310", "attributes": { "weight": 1 } }, { "key": "37592", "source": "3407", "target": "2969", "attributes": { "weight": 1 } }, { "key": "37593", "source": "3407", "target": "1341", "attributes": { "weight": 1 } }, { "key": "37594", "source": "3408", "target": "1143", "attributes": { "weight": 1 } } ], "options": { "type": "mixed", "multi": false, "allowSelfLoops": true } } ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-leaflet/data/sample-geojson.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [-105.00341892242432, 39.75383843460583], [-105.0008225440979, 39.751891803969535] ] }, "properties": { "popupContent": "This is a free bus line that will take you across downtown.", "underConstruction": false }, "id": 1 }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [-105.0008225440979, 39.751891803969535], [-104.99820470809937, 39.74979664004068] ] }, "properties": { "popupContent": "This is a free bus line that will take you across downtown.", "underConstruction": true }, "id": 2 }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [-104.99820470809937, 39.74979664004068], [-104.98689651489258, 39.741052354709055] ] }, "properties": { "popupContent": "This is a free bus line that will take you across downtown.", "underConstruction": false }, "id": 3 } ] } ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-leaflet/geojson.ts ================================================ /** * This story shows how to handle custom interactions with Leaflet when using @sigma/layer-leaflet. */ import bindLeafletLayer, { graphToLatlng } from "@sigma/layer-leaflet"; import { FeatureCollection } from "geojson"; import Graph from "graphology"; import L from "leaflet"; import Sigma from "sigma"; import geojson from "./data/sample-geojson.json"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.addNode("b-cycle-51", { x: 0, y: 0, lat: 39.7471494, lng: -104.9998241, size: 20, color: "#e22352" }); graph.addNode("b-cycle-52", { x: 0, y: 0, lat: 39.7502833, lng: -104.9983545, size: 20, color: "#e22352" }); graph.addEdge("b-cycle-51", "b-cycle-52"); // Initiate sigma const renderer = new Sigma(graph, container); const { map } = bindLeafletLayer(renderer); // Add a geojson on the map L.geoJSON(geojson as FeatureCollection).addTo(map); // When clicking on the stage of sigma, // create a marker on the map let markerOnClick: null | L.Marker = null; renderer.on("clickStage", (e) => { const graphCoords = renderer.viewportToGraph({ x: e.event.x, y: e.event.y }); const geoCoords = graphToLatlng(map, graphCoords); if (markerOnClick) markerOnClick.remove(); markerOnClick = L.marker(geoCoords); markerOnClick.addTo(map); }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-leaflet/index.html ================================================
================================================ FILE: packages/storybook/stories/3-additional-packages/layer-leaflet/resize.ts ================================================ /** * This story shows how to handle resizing with @sigma/layer-leaflet. */ import bindLeafletLayer from "@sigma/layer-leaflet"; import Graph from "graphology"; import { Attributes, SerializedGraph } from "graphology-types"; import Sigma from "sigma"; import data from "./data/airports.json"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = Graph.from(data as SerializedGraph); graph.updateEachNodeAttributes((_node, attributes) => ({ ...attributes, label: attributes.fullName, x: 0, y: 0, })); // initiate sigma const renderer = new Sigma(graph, container, { labelRenderedSizeThreshold: 20, defaultNodeColor: "#e22352", defaultEdgeColor: "#ffaeaf", minEdgeThickness: 1, nodeReducer: (node, attrs) => { return { ...attrs, size: Math.sqrt(graph.degree(node)) / 2, }; }, }); bindLeafletLayer(renderer, { getNodeLatLng: (attrs: Attributes) => ({ lat: attrs.latitude, lng: attrs.longitude }), }); let isSmall = false; const toggleButton = document.createElement("button"); toggleButton.innerText = "Toggle fullscreen"; toggleButton.style.position = "absolute"; toggleButton.style.zIndex = "1"; toggleButton.onclick = () => { container.style.width = isSmall ? "100%" : "50%"; container.style.height = isSmall ? "100%" : "50%"; renderer.refresh({ schedule: false }); isSmall = !isSmall; }; container.appendChild(toggleButton); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-leaflet/stories.ts ================================================ import { Meta, StoryObj } from "@storybook/html"; import { wrapStory } from "../../utils"; import basicPlay from "./basic"; import basicSource from "./basic?raw"; import geojsonPlay from "./geojson"; import geojsonSource from "./geojson?raw"; import template from "./index.html?raw"; import resizePlay from "./resize"; import resizeSource from "./resize?raw"; import tilelayerPlay from "./tilelayer"; import tilelayerSource from "./tilelayer?raw"; const meta: Meta = { id: "@sigma/layer-leaflet", title: "Satellite packages/@sigma--layer-leaflet", }; export default meta; type Story = StoryObj; export const story: Story = { name: "Basic example", render: () => template, play: wrapStory(basicPlay), parameters: { storySource: { source: basicSource, }, }, }; export const otherTileLayer: Story = { name: "Other tile layer", render: () => template, play: wrapStory(tilelayerPlay), parameters: { storySource: { source: tilelayerSource, }, }, }; export const withAGeoJson: Story = { name: "Map interactions", render: () => template, play: wrapStory(geojsonPlay), parameters: { storySource: { source: geojsonSource, }, }, }; export const resize: Story = { name: "Change dimensions", render: () => template, play: wrapStory(resizePlay), parameters: { storySource: { source: resizeSource, }, }, }; ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-leaflet/tilelayer.ts ================================================ /** * This story shows how to use a custom tile layer with @sigma/layer-leaflet. */ import bindLeafletLayer from "@sigma/layer-leaflet"; import Graph from "graphology"; import { Attributes, SerializedGraph } from "graphology-types"; import Sigma from "sigma"; import data from "./data/airports.json"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = Graph.from(data as SerializedGraph); graph.updateEachNodeAttributes((_node, attributes) => ({ ...attributes, label: attributes.fullName, x: 0, y: 0, })); // initiate sigma const renderer = new Sigma(graph, container, { labelRenderedSizeThreshold: 20, defaultNodeColor: "#e22352", defaultEdgeColor: "#ffaeaf", minEdgeThickness: 1, nodeReducer: (node, attrs) => { return { ...attrs, size: Math.sqrt(graph.degree(node)) / 2, }; }, }); bindLeafletLayer(renderer, { tileLayer: { urlTemplate: "https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png", attribution: '© OpenStreetMap contributors © CARTO', }, getNodeLatLng: (attrs: Attributes) => ({ lat: attrs.latitude, lng: attrs.longitude }), }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-maplibre/basic.ts ================================================ /** * This story presents a basic use case of @sigma/layer-maplibre. */ import bindMaplibreLayer from "@sigma/layer-maplibre"; import Graph from "graphology"; import { Attributes, SerializedGraph } from "graphology-types"; import Sigma from "sigma"; import data from "./data/airports.json"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = Graph.from(data as SerializedGraph); graph.updateEachNodeAttributes((_node, attributes) => ({ ...attributes, label: attributes.fullName, x: 0, y: 0, })); // initiate sigma const renderer = new Sigma(graph, container, { labelRenderedSizeThreshold: 20, defaultNodeColor: "#e22352", defaultEdgeColor: "#ffaeaf", minEdgeThickness: 1, nodeReducer: (node, attrs) => { return { ...attrs, size: Math.sqrt(graph.degree(node)) / 2, }; }, }); bindMaplibreLayer(renderer, { getNodeLatLng: (attrs: Attributes) => ({ lat: attrs.latitude, lng: attrs.longitude }), }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-maplibre/data/airports.json ================================================ { "attributes": {}, "nodes": [ { "key": "0", "attributes": { "latitude": 43.449902, "longitude": 39.9566, "fullName": "Sochi International Airport" } }, { "key": "693", "attributes": { "latitude": 40.1473007202, "longitude": 44.3959007263, "fullName": "Zvartnots International Airport" } }, { "key": "352", "attributes": { "latitude": 55.5914993286, "longitude": 37.2615013123, "fullName": "Vnukovo International Airport" } }, { "key": "1742", "attributes": { "latitude": 53.882499694824, "longitude": 28.030700683594, "fullName": "Minsk National Airport" } }, { "key": "8", "attributes": { "latitude": 59.80030059814453, "longitude": 30.262500762939453, "fullName": "Pulkovo Airport" } }, { "key": "14", "attributes": { "latitude": 56.743099212646, "longitude": 60.802700042725, "fullName": "Koltsovo Airport" } }, { "key": "595", "attributes": { "latitude": 55.972599, "longitude": 37.4146, "fullName": "Sheremetyevo International Airport" } }, { "key": "1774", "attributes": { "latitude": 41.257900238, "longitude": 69.2811965942, "fullName": "Tashkent International Airport" } }, { "key": "681", "attributes": { "latitude": 56.172901, "longitude": 92.493301, "fullName": "Yemelyanovo Airport" } }, { "key": "2505", "attributes": { "latitude": 54.96699905395508, "longitude": 73.31050109863281, "fullName": "Omsk Central Airport" } }, { "key": "682", "attributes": { "latitude": 45.034698486328, "longitude": 39.170501708984, "fullName": "Krasnodar Pashkovsky International Airport" } }, { "key": "1025", "attributes": { "latitude": 46.92770004272461, "longitude": 28.930999755859375, "fullName": "Chişinău International Airport" } }, { "key": "869", "attributes": { "latitude": 40.99509811401367, "longitude": 39.78969955444336, "fullName": "Trabzon International Airport" } }, { "key": "3", "attributes": { "latitude": 55.40879821777344, "longitude": 37.90629959106445, "fullName": "Domodedovo International Airport" } }, { "key": "791", "attributes": { "latitude": 41.275278, "longitude": 28.751944, "fullName": "Istanbul Airport" } }, { "key": "792", "attributes": { "latitude": 40.21540069580078, "longitude": 69.6947021484375, "fullName": "Khudzhand Airport" } }, { "key": "788", "attributes": { "latitude": 38.543300628699996, "longitude": 68.8249969482, "fullName": "Dushanbe Airport" } }, { "key": "7", "attributes": { "latitude": 55.606201171875, "longitude": 49.278701782227, "fullName": "Kazan International Airport" } }, { "key": "1", "attributes": { "latitude": 46.2832984924, "longitude": 48.0063018799, "fullName": "Astrakhan Airport" } }, { "key": "232", "attributes": { "latitude": 40.898601532, "longitude": 29.3092002869, "fullName": "Sabiha Gökçen International Airport" } }, { "key": "2077", "attributes": { "latitude": 43.8601, "longitude": 51.091999, "fullName": "Aktau Airport" } }, { "key": "9", "attributes": { "latitude": 44.225101470947266, "longitude": 43.08190155029297, "fullName": "Mineralnyye Vody Airport" } }, { "key": "2", "attributes": { "latitude": 55.305801, "longitude": 61.5033, "fullName": "Chelyabinsk Balandino Airport" } }, { "key": "244", "attributes": { "latitude": 40.9846000671, "longitude": 71.5567016602, "fullName": "Namangan Airport" } }, { "key": "89", "attributes": { "latitude": 24.896356, "longitude": 55.161389, "fullName": "Al Maktoum International Airport" } }, { "key": "1988", "attributes": { "latitude": 40.6090011597, "longitude": 72.793296814, "fullName": "Osh Airport" } }, { "key": "789", "attributes": { "latitude": 43.0612983704, "longitude": 74.4776000977, "fullName": "Manas International Airport" } }, { "key": "479", "attributes": { "latitude": 50.1008, "longitude": 14.26, "fullName": "Václav Havel Airport Prague" } }, { "key": "13", "attributes": { "latitude": 55.012599945068, "longitude": 82.650703430176, "fullName": "Tolmachevo Airport" } }, { "key": "474", "attributes": { "latitude": 43.6584014893, "longitude": 7.215869903560001, "fullName": "Nice-Côte d'Azur Airport" } }, { "key": "2828", "attributes": { "latitude": 57.914501190186, "longitude": 56.021198272705, "fullName": "Bolshoye Savino Airport" } }, { "key": "3021", "attributes": { "latitude": 45.05220031738281, "longitude": 33.975101470947266, "fullName": "Simferopol International Airport" } }, { "key": "347", "attributes": { "latitude": 65.48090362548828, "longitude": 72.69889831542969, "fullName": "Nadym Airport" } }, { "key": "3017", "attributes": { "latitude": 69.31109619140625, "longitude": 87.33219909667969, "fullName": "Norilsk-Alykel Airport" } }, { "key": "25", "attributes": { "latitude": 62.093299865722656, "longitude": 129.77099609375, "fullName": "Yakutsk Airport" } }, { "key": "17", "attributes": { "latitude": 56.370601654052734, "longitude": 101.697998046875, "fullName": "Bratsk Airport" } }, { "key": "3174", "attributes": { "latitude": 50.01340103149414, "longitude": 15.73859977722168, "fullName": "Pardubice Airport" } }, { "key": "169", "attributes": { "latitude": 8.1132, "longitude": 98.316902, "fullName": "Phuket International Airport" } }, { "key": "2500", "attributes": { "latitude": 50.42539978027344, "longitude": 127.41200256347656, "fullName": "Ignatyevo Airport" } }, { "key": "223", "attributes": { "latitude": 50.901401519800004, "longitude": 4.48443984985, "fullName": "Brussels Airport" } }, { "key": "793", "attributes": { "latitude": 61.34370040893555, "longitude": 73.40180206298828, "fullName": "Surgut Airport" } }, { "key": "3013", "attributes": { "latitude": 45.002101898193, "longitude": 37.347301483154, "fullName": "Anapa Vityazevo Airport" } }, { "key": "1233", "attributes": { "latitude": 29.984399795532227, "longitude": -95.34140014648438, "fullName": "George Bush Intercontinental Houston Airport" } }, { "key": "487", "attributes": { "latitude": 40.51969909667969, "longitude": 22.97089958190918, "fullName": "Thessaloniki Macedonia International Airport" } }, { "key": "1993", "attributes": { "latitude": 67.46330261230469, "longitude": 33.58829879760742, "fullName": "Kirovsk-Apatity Airport" } }, { "key": "794", "attributes": { "latitude": 25.32859992980957, "longitude": 55.5172004699707, "fullName": "Sharjah International Airport" } }, { "key": "3020", "attributes": { "latitude": 51.9667015076, "longitude": 85.8332977295, "fullName": "Gorno-Altaysk Airport" } }, { "key": "1780", "attributes": { "latitude": 51.02220153808594, "longitude": 71.46690368652344, "fullName": "Astana International Airport" } }, { "key": "177", "attributes": { "latitude": 10.8187999725, "longitude": 106.652000427, "fullName": "Tan Son Nhat International Airport" } }, { "key": "823", "attributes": { "latitude": 47.493888, "longitude": 39.924722, "fullName": "Platov International Airport" } }, { "key": "5", "attributes": { "latitude": 40.467498779296875, "longitude": 50.04669952392578, "fullName": "Heydar Aliyev International Airport" } }, { "key": "53", "attributes": { "latitude": 34.875099182128906, "longitude": 33.624900817871094, "fullName": "Larnaca International Airport" } }, { "key": "1965", "attributes": { "latitude": 48.52799987793, "longitude": 135.18800354004, "fullName": "Khabarovsk-Novy Airport" } }, { "key": "2104", "attributes": { "latitude": 37.98809814453125, "longitude": 69.80500030517578, "fullName": "Kulob Airport" } }, { "key": "1367", "attributes": { "latitude": 35.857498, "longitude": 14.4775, "fullName": "Malta International Airport" } }, { "key": "827", "attributes": { "latitude": 67.48860168457031, "longitude": 63.993099212646484, "fullName": "Vorkuta Airport" } }, { "key": "787", "attributes": { "latitude": 43.35210037231445, "longitude": 77.04049682617188, "fullName": "Almaty Airport" } }, { "key": "11", "attributes": { "latitude": 60.94929885864258, "longitude": 76.48359680175781, "fullName": "Nizhnevartovsk Airport" } }, { "key": "6", "attributes": { "latitude": 54.88999938964844, "longitude": 20.592599868774414, "fullName": "Khrabrovo Airport" } }, { "key": "468", "attributes": { "latitude": 51.4706, "longitude": -0.461941, "fullName": "London Heathrow Airport" } }, { "key": "817", "attributes": { "latitude": 53.504901885986, "longitude": 50.16429901123, "fullName": "Kurumoch International Airport" } }, { "key": "224", "attributes": { "latitude": 50.8658981323, "longitude": 7.1427397728, "fullName": "Cologne Bonn Airport" } }, { "key": "2103", "attributes": { "latitude": 51.795799255371094, "longitude": 55.45669937133789, "fullName": "Orenburg Central Airport" } }, { "key": "483", "attributes": { "latitude": 36.405399322509766, "longitude": 28.086200714111328, "fullName": "Diagoras Airport" } }, { "key": "1779", "attributes": { "latitude": 37.986801, "longitude": 58.361, "fullName": "Ashgabat International Airport" } }, { "key": "178", "attributes": { "latitude": 1.35019, "longitude": 103.994003, "fullName": "Singapore Changi Airport" } }, { "key": "822", "attributes": { "latitude": 53.110599517822266, "longitude": 45.02109909057617, "fullName": "Penza Airport" } }, { "key": "3018", "attributes": { "latitude": 43.2051010132, "longitude": 44.6066017151, "fullName": "Beslan Airport" } }, { "key": "2612", "attributes": { "latitude": 52.19499969482422, "longitude": 77.07389831542969, "fullName": "Pavlodar Airport" } }, { "key": "829", "attributes": { "latitude": 51.81420135498047, "longitude": 39.22959899902344, "fullName": "Voronezh International Airport" } }, { "key": "189", "attributes": { "latitude": 48.353802, "longitude": 11.7861, "fullName": "Munich Airport" } }, { "key": "3376", "attributes": { "latitude": 44.688999176, "longitude": 33.570999145500004, "fullName": "Belbek Airport" } }, { "key": "4", "attributes": { "latitude": 50.643798828125, "longitude": 36.5900993347168, "fullName": "Belgorod International Airport" } }, { "key": "135", "attributes": { "latitude": 51.148102, "longitude": -0.190278, "fullName": "London Gatwick Airport" } }, { "key": "650", "attributes": { "latitude": 15.3808002472, "longitude": 73.8313980103, "fullName": "Dabolim Airport" } }, { "key": "1354", "attributes": { "latitude": 38.28219985961914, "longitude": -0.5581560134887695, "fullName": "Alicante International Airport" } }, { "key": "473", "attributes": { "latitude": 45.6306, "longitude": 8.72811, "fullName": "Malpensa International Airport" } }, { "key": "443", "attributes": { "latitude": 39.601898193359375, "longitude": 19.911699295043945, "fullName": "Ioannis Kapodistrias International Airport" } }, { "key": "245", "attributes": { "latitude": 40.1171989440918, "longitude": 65.1707992553711, "fullName": "Navoi Airport" } }, { "key": "3128", "attributes": { "latitude": 40.7504005432, "longitude": 43.859298706100006, "fullName": "Gyumri Shirak Airport" } }, { "key": "496", "attributes": { "latitude": 45.395699, "longitude": 10.8885, "fullName": "Verona Villafranca Airport" } }, { "key": "819", "attributes": { "latitude": 42.81679916381836, "longitude": 47.65230178833008, "fullName": "Uytash Airport" } }, { "key": "828", "attributes": { "latitude": 48.782501220703125, "longitude": 44.34550094604492, "fullName": "Volgograd International Airport" } }, { "key": "2506", "attributes": { "latitude": 66.5907974243164, "longitude": 66.61100006103516, "fullName": "Salekhard Airport" } }, { "key": "470", "attributes": { "latitude": 38.7813, "longitude": -9.13592, "fullName": "Humberto Delgado Airport (Lisbon Portela Airport)" } }, { "key": "2456", "attributes": { "latitude": 41.58430099487305, "longitude": 60.641700744628906, "fullName": "Urgench Airport" } }, { "key": "3085", "attributes": { "latitude": 61.028499603271484, "longitude": 69.08609771728516, "fullName": "Khanty Mansiysk Airport" } }, { "key": "811", "attributes": { "latitude": 56.090301513671875, "longitude": 47.3473014831543, "fullName": "Cheboksary Airport" } }, { "key": "673", "attributes": { "latitude": 41.6692008972, "longitude": 44.95470047, "fullName": "Tbilisi International Airport" } }, { "key": "56", "attributes": { "latitude": 28.044500351, "longitude": -16.5725002289, "fullName": "Tenerife South Airport" } }, { "key": "467", "attributes": { "latitude": 51.423889, "longitude": 12.236389, "fullName": "Leipzig/Halle Airport" } }, { "key": "868", "attributes": { "latitude": 46.42679977416992, "longitude": 30.67650032043457, "fullName": "Odessa International Airport" } }, { "key": "452", "attributes": { "latitude": 41.8002778, "longitude": 12.2388889, "fullName": "Leonardo da Vinci–Fiumicino Airport" } }, { "key": "683", "attributes": { "latitude": 66.4003982544, "longitude": 112.029998779, "fullName": "Polyarny Airport" } }, { "key": "481", "attributes": { "latitude": 44.89350128173828, "longitude": 13.922200202941895, "fullName": "Pula Airport" } }, { "key": "810", "attributes": { "latitude": 50.2458, "longitude": 57.206699, "fullName": "Aktobe Airport" } }, { "key": "3023", "attributes": { "latitude": 56.380298614502, "longitude": 85.208297729492, "fullName": "Bogashevo Airport" } }, { "key": "241", "attributes": { "latitude": 39.775001525878906, "longitude": 64.4832992553711, "fullName": "Bukhara Airport" } }, { "key": "815", "attributes": { "latitude": 56.82809829711914, "longitude": 53.45750045776367, "fullName": "Izhevsk Airport" } }, { "key": "2122", "attributes": { "latitude": 48.07360076904297, "longitude": 37.73970031738281, "fullName": "Donetsk International Airport" } }, { "key": "1072", "attributes": { "latitude": 50.40194, "longitude": 30.45194, "fullName": "Kiev Zhuliany International Airport" } }, { "key": "349", "attributes": { "latitude": 57.189601898199996, "longitude": 65.3243026733, "fullName": "Roshchino International Airport" } }, { "key": "457", "attributes": { "latitude": 60.317199707031, "longitude": 24.963300704956, "fullName": "Helsinki Vantaa Airport" } }, { "key": "860", "attributes": { "latitude": 36.7131004333, "longitude": 28.7924995422, "fullName": "Dalaman International Airport" } }, { "key": "246", "attributes": { "latitude": 39.70050048828125, "longitude": 66.98380279541016, "fullName": "Samarkand Airport" } }, { "key": "454", "attributes": { "latitude": 50.033333, "longitude": 8.570556, "fullName": "Frankfurt am Main Airport" } }, { "key": "2102", "attributes": { "latitude": 37.86640167236328, "longitude": 68.86470031738281, "fullName": "Qurghonteppa International Airport" } }, { "key": "493", "attributes": { "latitude": 36.85100173950195, "longitude": 10.22719955444336, "fullName": "Tunis Carthage International Airport" } }, { "key": "1967", "attributes": { "latitude": 43.39899826049805, "longitude": 132.1479949951172, "fullName": "Vladivostok International Airport" } }, { "key": "1375", "attributes": { "latitude": 39.4893, "longitude": -0.481625, "fullName": "Valencia Airport" } }, { "key": "2072", "attributes": { "latitude": 53.329102, "longitude": 69.594597, "fullName": "Kokshetau Airport" } }, { "key": "3016", "attributes": { "latitude": 53.811401, "longitude": 86.877197, "fullName": "Spichenkovo Airport" } }, { "key": "247", "attributes": { "latitude": 42.404701232910156, "longitude": 18.72330093383789, "fullName": "Tivat Airport" } }, { "key": "2208", "attributes": { "latitude": 43.232101, "longitude": 27.8251, "fullName": "Varna Airport" } }, { "key": "242", "attributes": { "latitude": 40.358798980699994, "longitude": 71.7450027466, "fullName": "Fergana International Airport" } }, { "key": "812", "attributes": { "latitude": 46.3739013671875, "longitude": 44.33089828491211, "fullName": "Elista Airport" } }, { "key": "574", "attributes": { "latitude": 21.221200942993164, "longitude": 105.80699920654297, "fullName": "Noi Bai International Airport" } }, { "key": "1992", "attributes": { "latitude": 59.273601532, "longitude": 38.015800476100004, "fullName": "Cherepovets Airport" } }, { "key": "52", "attributes": { "latitude": 46.23809814453125, "longitude": 6.108950138092041, "fullName": "Geneva Cointrin International Airport" } }, { "key": "694", "attributes": { "latitude": 51.564998626708984, "longitude": 46.04669952392578, "fullName": "Saratov Central Airport" } }, { "key": "2461", "attributes": { "latitude": 46.88869857788086, "longitude": 142.71800231933594, "fullName": "Yuzhno-Sakhalinsk Airport" } }, { "key": "453", "attributes": { "latitude": 48.7793998718, "longitude": 8.08049964905, "fullName": "Karlsruhe Baden-Baden Airport" } }, { "key": "351", "attributes": { "latitude": 54.557498931885, "longitude": 55.874401092529, "fullName": "Ufa International Airport" } }, { "key": "339", "attributes": { "latitude": 30.12190055847168, "longitude": 31.40559959411621, "fullName": "Cairo International Airport" } }, { "key": "193", "attributes": { "latitude": 52.5597, "longitude": 13.2877, "fullName": "Berlin-Tegel Airport" } }, { "key": "2079", "attributes": { "latitude": 50.036598205566406, "longitude": 82.49420166015625, "fullName": "Ust-Kamennogorsk Airport" } }, { "key": "3127", "attributes": { "latitude": 38.746398925799994, "longitude": 48.8180007935, "fullName": "Lankaran International Airport" } }, { "key": "429", "attributes": { "latitude": 36.67490005493164, "longitude": -4.499110221862793, "fullName": "Málaga Airport" } }, { "key": "164", "attributes": { "latitude": 13.681099891662598, "longitude": 100.74700164794922, "fullName": "Suvarnabhumi Airport" } }, { "key": "1046", "attributes": { "latitude": 25.273056, "longitude": 51.608056, "fullName": "Hamad International Airport" } }, { "key": "2455", "attributes": { "latitude": 37.28670120239258, "longitude": 67.30999755859375, "fullName": "Termez Airport" } }, { "key": "18", "attributes": { "latitude": 52.026299, "longitude": 113.306, "fullName": "Chita-Kadala Airport" } }, { "key": "231", "attributes": { "latitude": 39.551700592, "longitude": 2.73881006241, "fullName": "Palma De Mallorca Airport" } }, { "key": "2513", "attributes": { "latitude": 40.737701416015625, "longitude": 46.31760025024414, "fullName": "Ganja Airport" } }, { "key": "3351", "attributes": { "latitude": 63.18330001831055, "longitude": 75.2699966430664, "fullName": "Noyabrsk Airport" } }, { "key": "3019", "attributes": { "latitude": 53.16790008544922, "longitude": 158.45399475097656, "fullName": "Yelizovo Airport" } }, { "key": "1136", "attributes": { "latitude": 41.6102981567, "longitude": 41.5997009277, "fullName": "Batumi International Airport" } }, { "key": "2989", "attributes": { "latitude": 64.734902, "longitude": 177.740997, "fullName": "Ugolny Airport" } }, { "key": "1775", "attributes": { "latitude": 42.359402, "longitude": 19.2519, "fullName": "Podgorica Airport" } }, { "key": "821", "attributes": { "latitude": 61.88520050048828, "longitude": 34.154701232910156, "fullName": "Petrozavodsk Airport" } }, { "key": "2831", "attributes": { "latitude": 48.357200622558594, "longitude": 35.10060119628906, "fullName": "Dnipropetrovsk International Airport" } }, { "key": "1042", "attributes": { "latitude": 7.180759906768799, "longitude": 79.88410186767578, "fullName": "Bandaranaike International Colombo Airport" } }, { "key": "168", "attributes": { "latitude": 22.308901, "longitude": 113.915001, "fullName": "Hong Kong International Airport" } }, { "key": "2071", "attributes": { "latitude": 49.670799255371094, "longitude": 73.33439636230469, "fullName": "Sary-Arka Airport" } }, { "key": "1368", "attributes": { "latitude": 36.075833, "longitude": 10.438611, "fullName": "Enfidha - Hammamet International Airport" } }, { "key": "472", "attributes": { "latitude": 53.35369873046875, "longitude": -2.2749500274658203, "fullName": "Manchester Airport" } }, { "key": "311", "attributes": { "latitude": 18.302900314331055, "longitude": 109.41200256347656, "fullName": "Sanya Phoenix International Airport" } }, { "key": "130", "attributes": { "latitude": 41.2971, "longitude": 2.07846, "fullName": "Barcelona International Airport" } }, { "key": "2670", "attributes": { "latitude": 27.9773006439, "longitude": 34.3950004578, "fullName": "Sharm El Sheikh International Airport" } }, { "key": "462", "attributes": { "latitude": 36.79330062866211, "longitude": 27.091699600219727, "fullName": "Kos Airport" } }, { "key": "372", "attributes": { "latitude": 18.567399978599997, "longitude": -68.36340332030001, "fullName": "Punta Cana International Airport" } }, { "key": "1036", "attributes": { "latitude": 24.433000564575195, "longitude": 54.651100158691406, "fullName": "Abu Dhabi International Airport" } }, { "key": "12", "attributes": { "latitude": 66.06939697265625, "longitude": 76.52030181884766, "fullName": "Novy Urengoy Airport" } }, { "key": "2086", "attributes": { "latitude": 42.56959915161133, "longitude": 27.515199661254883, "fullName": "Burgas Airport" } }, { "key": "1024", "attributes": { "latitude": 50.345001220703125, "longitude": 30.894699096679688, "fullName": "Boryspil International Airport" } }, { "key": "825", "attributes": { "latitude": 54.26829910279999, "longitude": 48.226699829100006, "fullName": "Ulyanovsk Baratayevka Airport" } }, { "key": "1390", "attributes": { "latitude": 54.634102, "longitude": 25.285801, "fullName": "Vilnius International Airport" } }, { "key": "695", "attributes": { "latitude": 56.92359924316406, "longitude": 23.971099853515625, "fullName": "Riga International Airport" } }, { "key": "580", "attributes": { "latitude": 35.7647018433, "longitude": 140.386001587, "fullName": "Narita International Airport" } }, { "key": "3015", "attributes": { "latitude": 55.27009963989258, "longitude": 86.1072006225586, "fullName": "Kemerovo Airport" } }, { "key": "495", "attributes": { "latitude": 48.110298156738, "longitude": 16.569700241089, "fullName": "Vienna International Airport" } }, { "key": "2992", "attributes": { "latitude": 44.020302, "longitude": 12.6117, "fullName": "Federico Fellini International Airport" } }, { "key": "358", "attributes": { "latitude": 25.2527999878, "longitude": 55.3643989563, "fullName": "Dubai International Airport" } }, { "key": "816", "attributes": { "latitude": 55.47529983520508, "longitude": 65.41560363769531, "fullName": "Kurgan Airport" } }, { "key": "432", "attributes": { "latitude": 37.9364013672, "longitude": 23.9444999695, "fullName": "Eleftherios Venizelos International Airport" } }, { "key": "1856", "attributes": { "latitude": 11.998200416564941, "longitude": 109.21900177001953, "fullName": "Cam Ranh Airport" } }, { "key": "2646", "attributes": { "latitude": 56.230098724365, "longitude": 43.784000396729, "fullName": "Nizhny Novgorod Strigino International Airport" } }, { "key": "57", "attributes": { "latitude": 47.464699, "longitude": 8.54917, "fullName": "Zürich Airport" } }, { "key": "1812", "attributes": { "latitude": 34.71799850463867, "longitude": 32.48569869995117, "fullName": "Paphos International Airport" } }, { "key": "1536", "attributes": { "latitude": 44.4133, "longitude": 8.8375, "fullName": "Genoa Cristoforo Colombo Airport" } }, { "key": "10", "attributes": { "latitude": 55.564701080322266, "longitude": 52.092498779296875, "fullName": "Begishevo Airport" } }, { "key": "15", "attributes": { "latitude": 47.1983333, "longitude": 38.8491667, "fullName": "Taganrog Yuzhny Airport" } }, { "key": "16", "attributes": { "latitude": 54.63999938964844, "longitude": 52.801700592041016, "fullName": "Bugulma Airport" } }, { "key": "426", "attributes": { "latitude": 27.178300857543945, "longitude": 33.799400329589844, "fullName": "Hurghada International Airport" } }, { "key": "824", "attributes": { "latitude": 54.12512969970703, "longitude": 45.212257385253906, "fullName": "Saransk Airport" } }, { "key": "3126", "attributes": { "latitude": 40.826667, "longitude": 47.7125, "fullName": "Gabala International Airport" } }, { "key": "2499", "attributes": { "latitude": 53.7400016784668, "longitude": 91.38500213623047, "fullName": "Abakan Airport" } }, { "key": "2507", "attributes": { "latitude": 51.80780029296875, "longitude": 107.43800354003906, "fullName": "Ulan-Ude Airport (Mukhino)" } }, { "key": "889", "attributes": { "latitude": 31.7226009369, "longitude": 35.9931983948, "fullName": "Queen Alia International Airport" } }, { "key": "2454", "attributes": { "latitude": 40.7276992798, "longitude": 72.2939987183, "fullName": "Andizhan Airport" } }, { "key": "3014", "attributes": { "latitude": 53.363800048828125, "longitude": 83.53849792480469, "fullName": "Barnaul Airport" } }, { "key": "3022", "attributes": { "latitude": 45.10919952392578, "longitude": 42.11280059814453, "fullName": "Stavropol Shpakovskoye Airport" } }, { "key": "21", "attributes": { "latitude": 62.534698486328125, "longitude": 114.03900146484375, "fullName": "Mirny Airport" } }, { "key": "2988", "attributes": { "latitude": 51.0724983215332, "longitude": 58.59560012817383, "fullName": "Orsk Airport" } }, { "key": "458", "attributes": { "latitude": 35.3396987915, "longitude": 25.180299758900002, "fullName": "Heraklion International Nikos Kazantzakis Airport" } }, { "key": "346", "attributes": { "latitude": 42.488399505615234, "longitude": 59.62329864501953, "fullName": "Nukus Airport" } }, { "key": "2501", "attributes": { "latitude": 59.9109992980957, "longitude": 150.72000122070312, "fullName": "Sokol Airport" } }, { "key": "2067", "attributes": { "latitude": 42.364200592041016, "longitude": 69.47889709472656, "fullName": "Shymkent Airport" } }, { "key": "19", "attributes": { "latitude": 52.268001556396, "longitude": 104.38899993896, "fullName": "Irkutsk Airport" } }, { "key": "1377", "attributes": { "latitude": 23.034400939941406, "longitude": -81.435302734375, "fullName": "Juan Gualberto Gomez International Airport" } }, { "key": "471", "attributes": { "latitude": 40.471926, "longitude": -3.56264, "fullName": "Adolfo Suárez Madrid–Barajas Airport" } }, { "key": "243", "attributes": { "latitude": 38.8335990906, "longitude": 65.9215011597, "fullName": "Karshi Khanabad Airport" } }, { "key": "340", "attributes": { "latitude": 32.01139831542969, "longitude": 34.88669967651367, "fullName": "Ben Gurion International Airport" } }, { "key": "183", "attributes": { "latitude": 51.289501, "longitude": 6.76678, "fullName": "Düsseldorf Airport" } }, { "key": "442", "attributes": { "latitude": 49.012798, "longitude": 2.55, "fullName": "Charles de Gaulle International Airport" } }, { "key": "2211", "attributes": { "latitude": 40.128101348899996, "longitude": 32.995098114, "fullName": "Esenboğa International Airport" } }, { "key": "1805", "attributes": { "latitude": 38.1338996887207, "longitude": 46.23500061035156, "fullName": "Tabriz International Airport" } }, { "key": "790", "attributes": { "latitude": 35.416099548339844, "longitude": 51.152198791503906, "fullName": "Imam Khomeini International Airport" } }, { "key": "304", "attributes": { "latitude": 40.080101013183594, "longitude": 116.58499908447266, "fullName": "Beijing Capital International Airport" } }, { "key": "319", "attributes": { "latitude": 43.907100677490234, "longitude": 87.47419738769531, "fullName": "Ürümqi Diwopu International Airport" } }, { "key": "422", "attributes": { "latitude": 34.565899, "longitude": 69.212303, "fullName": "Hamid Karzai International Airport" } }, { "key": "440", "attributes": { "latitude": 47.42976, "longitude": 19.261093, "fullName": "Budapest Liszt Ferenc International Airport" } }, { "key": "424", "attributes": { "latitude": 36.898701, "longitude": 30.800501, "fullName": "Antalya International Airport" } }, { "key": "594", "attributes": { "latitude": 61.64699935913086, "longitude": 50.84510040283203, "fullName": "Syktyvkar Airport" } }, { "key": "1750", "attributes": { "latitude": 59.41329956049999, "longitude": 24.832799911499997, "fullName": "Lennart Meri Tallinn Airport" } }, { "key": "494", "attributes": { "latitude": 45.505299, "longitude": 12.3519, "fullName": "Venice Marco Polo Airport" } }, { "key": "350", "attributes": { "latitude": 63.566898345947266, "longitude": 53.8046989440918, "fullName": "Ukhta Airport" } }, { "key": "590", "attributes": { "latitude": 64.60030364990234, "longitude": 40.71670150756836, "fullName": "Talagi Airport" } }, { "key": "2827", "attributes": { "latitude": 50.202999114990234, "longitude": 12.914999961853027, "fullName": "Karlovy Vary International Airport" } }, { "key": "814", "attributes": { "latitude": 57.560699462890625, "longitude": 40.15739822387695, "fullName": "Tunoshna Airport" } }, { "key": "188", "attributes": { "latitude": 53.630401611328, "longitude": 9.9882297515869, "fullName": "Hamburg Airport" } }, { "key": "220", "attributes": { "latitude": 52.308601, "longitude": 4.76389, "fullName": "Amsterdam Airport Schiphol" } }, { "key": "592", "attributes": { "latitude": 68.78170013427734, "longitude": 32.75080108642578, "fullName": "Murmansk Airport" } }, { "key": "70", "attributes": { "latitude": 60.121, "longitude": 11.0502, "fullName": "Oslo Lufthavn" } }, { "key": "672", "attributes": { "latitude": 52.380001, "longitude": 13.5225, "fullName": "Berlin-Schönefeld Airport" } }, { "key": "59", "attributes": { "latitude": 59.651901245117, "longitude": 17.918600082397, "fullName": "Stockholm-Arlanda Airport" } }, { "key": "278", "attributes": { "latitude": 37.46910095214844, "longitude": 126.45099639892578, "fullName": "Incheon International Airport" } }, { "key": "497", "attributes": { "latitude": 52.1656990051, "longitude": 20.967100143399996, "fullName": "Warsaw Chopin Airport" } }, { "key": "674", "attributes": { "latitude": 55.617900848389, "longitude": 12.656000137329, "fullName": "Copenhagen Kastrup Airport" } }, { "key": "818", "attributes": { "latitude": 58.503299713135, "longitude": 49.348300933838, "fullName": "Pobedilovo Airport" } }, { "key": "303", "attributes": { "latitude": 49.566667, "longitude": 117.33, "fullName": "Manzhouli Xijiao Airport" } }, { "key": "277", "attributes": { "latitude": 45.6234016418457, "longitude": 126.25, "fullName": "Taiping Airport" } }, { "key": "3350", "attributes": { "latitude": 62.190399169921875, "longitude": 74.53379821777344, "fullName": "Kogalym International Airport" } }, { "key": "348", "attributes": { "latitude": 61.326622009277344, "longitude": 63.60191345214844, "fullName": "Sovetskiy Airport" } }, { "key": "826", "attributes": { "latitude": 60.10329818725586, "longitude": 64.82669830322266, "fullName": "Uray Airport" } }, { "key": "820", "attributes": { "latitude": 53.39310073852539, "longitude": 58.755699157714844, "fullName": "Magnitogorsk International Airport" } }, { "key": "3179", "attributes": { "latitude": 62.110001, "longitude": 65.614998, "fullName": "Nyagan Airport" } }, { "key": "345", "attributes": { "latitude": 63.686901, "longitude": 66.698601, "fullName": "Beloyarskiy Airport" } }, { "key": "1906", "attributes": { "latitude": 49.2050018311, "longitude": 119.824996948, "fullName": "Dongshan Airport" } }, { "key": "2878", "attributes": { "latitude": 56.913898468018, "longitude": 124.91400146484, "fullName": "Chulman Airport" } }, { "key": "2503", "attributes": { "latitude": 51.66939926147461, "longitude": 94.40059661865234, "fullName": "Kyzyl Airport" } }, { "key": "23", "attributes": { "latitude": 56.8567008972168, "longitude": 105.7300033569336, "fullName": "Ust-Kut Airport" } }, { "key": "22", "attributes": { "latitude": 57.866100311299995, "longitude": 114.242996216, "fullName": "Bodaybo Airport" } }, { "key": "24", "attributes": { "latitude": 60.7206001282, "longitude": 114.825996399, "fullName": "Lensk Airport" } }, { "key": "20", "attributes": { "latitude": 57.773, "longitude": 108.064, "fullName": "Kirensk Airport" } }, { "key": "2875", "attributes": { "latitude": 68.7406005859375, "longitude": 161.33799743652344, "fullName": "Cherskiy Airport" } }, { "key": "2879", "attributes": { "latitude": 67.792, "longitude": 130.394, "fullName": "Sakkyryr Airport" } }, { "key": "2874", "attributes": { "latitude": 70.62310028076172, "longitude": 147.90199279785156, "fullName": "Chokurdakh Airport" } }, { "key": "2877", "attributes": { "latitude": 66.450861, "longitude": 143.261551, "fullName": "Moma Airport" } }, { "key": "2876", "attributes": { "latitude": 71.697700500488, "longitude": 128.90299987793, "fullName": "Tiksi Airport" } }, { "key": "26", "attributes": { "latitude": -13.154800415039062, "longitude": -74.20439910888672, "fullName": "Coronel FAP Alfredo Mendivil Duarte Airport" } }, { "key": "30", "attributes": { "latitude": -12.0219, "longitude": -77.114305, "fullName": "Jorge Chávez International Airport" } }, { "key": "27", "attributes": { "latitude": -13.535699844400002, "longitude": -71.9387969971, "fullName": "Alejandro Velasco Astete International Airport" } }, { "key": "1149", "attributes": { "latitude": -16.3411006927, "longitude": -71.5830993652, "fullName": "Rodríguez Ballón International Airport" } }, { "key": "1244", "attributes": { "latitude": -15.467100143432617, "longitude": -70.158203125, "fullName": "Inca Manco Capac International Airport" } }, { "key": "1099", "attributes": { "latitude": -16.5132999420166, "longitude": -68.19229888916016, "fullName": "El Alto International Airport" } }, { "key": "32", "attributes": { "latitude": -12.6135997772, "longitude": -69.2285995483, "fullName": "Padre Aldamiz International Airport" } }, { "key": "28", "attributes": { "latitude": -9.878809928894043, "longitude": -76.20480346679688, "fullName": "Alferez Fap David Figueroa Fernandini Airport" } }, { "key": "29", "attributes": { "latitude": -3.7847399711608887, "longitude": -73.30879974365234, "fullName": "Coronel FAP Francisco Secada Vignetta International Airport" } }, { "key": "31", "attributes": { "latitude": -8.37794017791748, "longitude": -74.57430267333984, "fullName": "Cap FAP David Abenzur Rengifo International Airport" } }, { "key": "1031", "attributes": { "latitude": 9.0713596344, "longitude": -79.3834991455, "fullName": "Tocumen International Airport" } }, { "key": "33", "attributes": { "latitude": -6.508739948272705, "longitude": -76.37319946289062, "fullName": "Cadete FAP Guillermo Del Castillo Paredes Airport" } }, { "key": "3266", "attributes": { "latitude": -9.347439765930176, "longitude": -77.59839630126953, "fullName": "Comandante FAP German Arias Graziani Airport" } }, { "key": "407", "attributes": { "latitude": 9.993860244750977, "longitude": -84.20880126953125, "fullName": "Juan Santamaria International Airport" } }, { "key": "43", "attributes": { "latitude": 4.70159, "longitude": -74.1469, "fullName": "El Dorado International Airport" } }, { "key": "338", "attributes": { "latitude": 33.94250107, "longitude": -118.4079971, "fullName": "Los Angeles International Airport" } }, { "key": "1349", "attributes": { "latitude": -17.6448, "longitude": -63.135399, "fullName": "Viru Viru International Airport" } }, { "key": "778", "attributes": { "latitude": 10.601194, "longitude": -66.991222, "fullName": "Simón Bolívar International Airport" } }, { "key": "108", "attributes": { "latitude": -22.8099994659, "longitude": -43.2505569458, "fullName": "Rio Galeão – Tom Jobim International Airport" } }, { "key": "369", "attributes": { "latitude": -34.8222, "longitude": -58.5358, "fullName": "Ministro Pistarini International Airport" } }, { "key": "392", "attributes": { "latitude": 22.989200592041016, "longitude": -82.40910339355469, "fullName": "José Martí International Airport" } }, { "key": "2632", "attributes": { "latitude": -6.787479877471924, "longitude": -79.8281021118164, "fullName": "Capitan FAP Jose A Quinones Gonzales International Airport" } }, { "key": "1047", "attributes": { "latitude": 40.692501068115234, "longitude": -74.168701171875, "fullName": "Newark Liberty International Airport" } }, { "key": "3268", "attributes": { "latitude": -9.133000373840332, "longitude": -75.94999694824219, "fullName": "Tingo Maria Airport" } }, { "key": "254", "attributes": { "latitude": 18.42970085144, "longitude": -69.668899536133, "fullName": "Las Américas International Airport" } }, { "key": "3267", "attributes": { "latitude": -11.7831001282, "longitude": -75.47339630130001, "fullName": "Francisco Carle Airport" } }, { "key": "603", "attributes": { "latitude": -25.239999771118164, "longitude": -57.52000045776367, "fullName": "Silvio Pettirossi International Airport" } }, { "key": "2639", "attributes": { "latitude": -18.053300857500002, "longitude": -70.2758026123, "fullName": "Coronel FAP Carlos Ciriani Santa Rosa International Airport" } }, { "key": "2633", "attributes": { "latitude": -7.1391801834106445, "longitude": -78.4894027709961, "fullName": "Mayor General FAP Armando Revoredo Iglesias Airport" } }, { "key": "1314", "attributes": { "latitude": 13.4409, "longitude": -89.055702, "fullName": "Monseñor Óscar Arnulfo Romero International Airport" } }, { "key": "1457", "attributes": { "latitude": -25.600278854370117, "longitude": -54.48500061035156, "fullName": "Cataratas International Airport" } }, { "key": "1063", "attributes": { "latitude": 43.6772003174, "longitude": -79.63059997559999, "fullName": "Lester B. Pearson International Airport" } }, { "key": "387", "attributes": { "latitude": 21.036500930800003, "longitude": -86.8770980835, "fullName": "Cancún International Airport" } }, { "key": "3265", "attributes": { "latitude": -13.706399917602539, "longitude": -73.35040283203125, "fullName": "Andahuaylas Airport" } }, { "key": "44", "attributes": { "latitude": 3.54322, "longitude": -76.3816, "fullName": "Alfonso Bonilla Aragon International Airport" } }, { "key": "607", "attributes": { "latitude": -29.994400024414062, "longitude": -51.1713981628418, "fullName": "Salgado Filho Airport" } }, { "key": "48", "attributes": { "latitude": -0.129166666667, "longitude": -78.3575, "fullName": "Mariscal Sucre International Airport" } }, { "key": "45", "attributes": { "latitude": -2.1574199199699997, "longitude": -79.88359832760001, "fullName": "José Joaquín de Olmedo International Airport" } }, { "key": "368", "attributes": { "latitude": 32.896801, "longitude": -97.038002, "fullName": "Dallas Fort Worth International Airport" } }, { "key": "2637", "attributes": { "latitude": -5.20574998856, "longitude": -80.61640167239999, "fullName": "Capitán FAP Guillermo Concha Iberico International Airport" } }, { "key": "371", "attributes": { "latitude": 25.79319953918457, "longitude": -80.29060363769531, "fullName": "Miami International Airport" } }, { "key": "601", "attributes": { "latitude": -33.393001556396484, "longitude": -70.78579711914062, "fullName": "Comodoro Arturo Merino Benítez International Airport" } }, { "key": "2640", "attributes": { "latitude": -8.08141040802002, "longitude": -79.10880279541016, "fullName": "Capitan FAP Carlos Martinez De Pinillos International Airport" } }, { "key": "396", "attributes": { "latitude": 19.4363, "longitude": -99.072098, "fullName": "Licenciado Benito Juarez International Airport" } }, { "key": "2638", "attributes": { "latitude": -3.55253005027771, "longitude": -80.38140106201172, "fullName": "Capitan FAP Pedro Canga Rodriguez Airport" } }, { "key": "872", "attributes": { "latitude": -31.323601, "longitude": -64.208, "fullName": "Ingeniero Ambrosio Taravella Airport" } }, { "key": "598", "attributes": { "latitude": -23.444501, "longitude": -70.445099, "fullName": "Andrés Sabella Gálvez International Airport" } }, { "key": "109", "attributes": { "latitude": -23.435556411743164, "longitude": -46.47305679321289, "fullName": "Guarulhos - Governador André Franco Montoro International Airport" } }, { "key": "370", "attributes": { "latitude": 40.63980103, "longitude": -73.77890015, "fullName": "John F Kennedy International Airport" } }, { "key": "605", "attributes": { "latitude": -34.838402, "longitude": -56.0308, "fullName": "Carrasco International /General C L Berisso Airport" } }, { "key": "782", "attributes": { "latitude": 6.16454, "longitude": -75.4231, "fullName": "Jose Maria Córdova International Airport" } }, { "key": "195", "attributes": { "latitude": 33.6367, "longitude": -84.428101, "fullName": "Hartsfield Jackson Atlanta International Airport" } }, { "key": "199", "attributes": { "latitude": 26.072599, "longitude": -80.152702, "fullName": "Fort Lauderdale Hollywood International Airport" } }, { "key": "34", "attributes": { "latitude": 5.261390209197998, "longitude": -3.9262900352478027, "fullName": "Port Bouet Airport" } }, { "key": "136", "attributes": { "latitude": 6.5773701667785645, "longitude": 3.321160078048706, "fullName": "Murtala Muhammed International Airport" } }, { "key": "39", "attributes": { "latitude": 14.739700317382812, "longitude": -17.49020004272461, "fullName": "Léopold Sédar Senghor International Airport" } }, { "key": "40", "attributes": { "latitude": 6.165609836578369, "longitude": 1.2545100450515747, "fullName": "Lomé-Tokoin Airport" } }, { "key": "133", "attributes": { "latitude": 4.0060801506, "longitude": 9.719479560849999, "fullName": "Douala International Airport" } }, { "key": "163", "attributes": { "latitude": -1.31923997402, "longitude": 36.9277992249, "fullName": "Jomo Kenyatta International Airport" } }, { "key": "138", "attributes": { "latitude": 6.23379, "longitude": -10.3623, "fullName": "Roberts International Airport" } }, { "key": "38", "attributes": { "latitude": 6.357230186462402, "longitude": 2.384350061416626, "fullName": "Cadjehoun Airport" } }, { "key": "35", "attributes": { "latitude": 5.605189800262451, "longitude": -0.16678600013256073, "fullName": "Kotoka International Airport" } }, { "key": "225", "attributes": { "latitude": 33.36750030517578, "longitude": -7.589970111846924, "fullName": "Mohammed V International Airport" } }, { "key": "37", "attributes": { "latitude": 11.160099983215332, "longitude": -4.33096981048584, "fullName": "Bobo Dioulasso Airport" } }, { "key": "430", "attributes": { "latitude": 36.691001892089844, "longitude": 3.215409994125366, "fullName": "Houari Boumediene Airport" } }, { "key": "1125", "attributes": { "latitude": 48.7233333, "longitude": 2.3794444, "fullName": "Paris-Orly Airport" } }, { "key": "134", "attributes": { "latitude": 8.61644, "longitude": -13.1955, "fullName": "Lungi International Airport" } }, { "key": "42", "attributes": { "latitude": 12.3532, "longitude": -1.51242, "fullName": "Ouagadougou Airport" } }, { "key": "132", "attributes": { "latitude": 9.57689, "longitude": -13.612, "fullName": "Conakry International Airport" } }, { "key": "36", "attributes": { "latitude": 12.5335, "longitude": -7.94994, "fullName": "Modibo Keita International Airport" } }, { "key": "1544", "attributes": { "latitude": 0.458600014448, "longitude": 9.412280082699999, "fullName": "Libreville Leon M'ba International Airport" } }, { "key": "2825", "attributes": { "latitude": 4.896059989929199, "longitude": -1.7747600078582764, "fullName": "Takoradi Airport" } }, { "key": "638", "attributes": { "latitude": -26.1392, "longitude": 28.246, "fullName": "OR Tambo International Airport" } }, { "key": "1516", "attributes": { "latitude": 9.006790161132812, "longitude": 7.263169765472412, "fullName": "Nnamdi Azikiwe International Airport" } }, { "key": "1380", "attributes": { "latitude": 8.97789001465, "longitude": 38.799301147499996, "fullName": "Addis Ababa Bole International Airport" } }, { "key": "554", "attributes": { "latitude": 6.714560031890869, "longitude": -1.5908199548721313, "fullName": "Kumasi Airport" } }, { "key": "1520", "attributes": { "latitude": 33.820899963378906, "longitude": 35.488399505615234, "fullName": "Beirut Rafic Hariri International Airport" } }, { "key": "1732", "attributes": { "latitude": 9.55718994140625, "longitude": -0.8632140159606934, "fullName": "Tamale Airport" } }, { "key": "1816", "attributes": { "latitude": -22.4799, "longitude": 17.4709, "fullName": "Hosea Kutako International Airport" } }, { "key": "2176", "attributes": { "latitude": 6.289060115814209, "longitude": -10.758700370788574, "fullName": "Spriggs Payne Airport" } }, { "key": "2824", "attributes": { "latitude": 7.361830234527588, "longitude": -2.3287599086761475, "fullName": "Sunyani Airport" } }, { "key": "1556", "attributes": { "latitude": 18.31, "longitude": -15.9697222, "fullName": "Nouakchott–Oumtounsy International Airport" } }, { "key": "41", "attributes": { "latitude": 13.4815, "longitude": 2.18361, "fullName": "Diori Hamani International Airport" } }, { "key": "1524", "attributes": { "latitude": -4.251699924468994, "longitude": 15.253000259399414, "fullName": "Maya-Maya Airport" } }, { "key": "1893", "attributes": { "latitude": 1.9054700136184692, "longitude": 9.805680274963379, "fullName": "Bata Airport" } }, { "key": "1565", "attributes": { "latitude": 3.755270004272461, "longitude": 8.708720207214355, "fullName": "Malabo Airport" } }, { "key": "1559", "attributes": { "latitude": -4.816030025482178, "longitude": 11.88659954071045, "fullName": "Pointe Noire Airport" } }, { "key": "1711", "attributes": { "latitude": 28.4827003479, "longitude": -16.3414993286, "fullName": "Tenerife Norte Airport" } }, { "key": "1232", "attributes": { "latitude": 38.94449997, "longitude": -77.45580292, "fullName": "Washington Dulles International Airport" } }, { "key": "1710", "attributes": { "latitude": 14.924500465393066, "longitude": -23.493499755859375, "fullName": "Praia International Airport" } }, { "key": "137", "attributes": { "latitude": 11.894800186157227, "longitude": -15.65369987487793, "fullName": "Osvaldo Vieira International Airport" } }, { "key": "54", "attributes": { "latitude": 27.931900024414062, "longitude": -15.38659954071045, "fullName": "Gran Canaria Airport" } }, { "key": "131", "attributes": { "latitude": 13.338000297546387, "longitude": -16.65220069885254, "fullName": "Banjul International Airport" } }, { "key": "2053", "attributes": { "latitude": 12.5556, "longitude": -16.281799, "fullName": "Ziguinchor Airport" } }, { "key": "1555", "attributes": { "latitude": 12.1337, "longitude": 15.034, "fullName": "N'Djamena International Airport" } }, { "key": "1731", "attributes": { "latitude": 10.435, "longitude": -73.2495, "fullName": "Alfonso López Pumarejo Airport" } }, { "key": "1719", "attributes": { "latitude": 7.92757, "longitude": -72.5115, "fullName": "Camilo Daza International Airport" } }, { "key": "1715", "attributes": { "latitude": 4.45278, "longitude": -75.7664, "fullName": "El Eden Airport" } }, { "key": "1724", "attributes": { "latitude": 5.0296, "longitude": -75.4647, "fullName": "La Nubia Airport" } }, { "key": "208", "attributes": { "latitude": 28.429399490356445, "longitude": -81.30899810791016, "fullName": "Orlando International Airport" } }, { "key": "1725", "attributes": { "latitude": 2.95015, "longitude": -75.294, "fullName": "Benito Salas Airport" } }, { "key": "1728", "attributes": { "latitude": 11.5262, "longitude": -72.926, "fullName": "Almirante Padilla Airport" } }, { "key": "1729", "attributes": { "latitude": 11.1196, "longitude": -74.2306, "fullName": "Simón Bolívar International Airport" } }, { "key": "1717", "attributes": { "latitude": 7.1265, "longitude": -73.1848, "fullName": "Palonegro Airport" } }, { "key": "1716", "attributes": { "latitude": 10.8896, "longitude": -74.7808, "fullName": "Ernesto Cortissoz International Airport" } }, { "key": "1020", "attributes": { "latitude": 5.69076, "longitude": -76.6412, "fullName": "El Caraño Airport" } }, { "key": "1722", "attributes": { "latitude": 4.42161, "longitude": -75.1333, "fullName": "Perales Airport" } }, { "key": "961", "attributes": { "latitude": 18.4393997192, "longitude": -66.0018005371, "fullName": "Luis Munoz Marin International Airport" } }, { "key": "1013", "attributes": { "latitude": 0.505228, "longitude": -76.5008, "fullName": "Tres De Mayo Airport" } }, { "key": "1019", "attributes": { "latitude": 6.45108, "longitude": -71.7603, "fullName": "Gustavo Vargas Airport" } }, { "key": "1012", "attributes": { "latitude": 1.39625, "longitude": -77.2915, "fullName": "Antonio Narino Airport" } }, { "key": "997", "attributes": { "latitude": 3.81963, "longitude": -76.9898, "fullName": "Gerardo Tobar López Airport" } }, { "key": "236", "attributes": { "latitude": 12.5014, "longitude": -70.015198, "fullName": "Queen Beatrix International Airport" } }, { "key": "1721", "attributes": { "latitude": 5.31911, "longitude": -72.384, "fullName": "El Yopal Airport" } }, { "key": "1726", "attributes": { "latitude": 4.81267, "longitude": -75.7395, "fullName": "Matecaña International Airport" } }, { "key": "1720", "attributes": { "latitude": 7.02433, "longitude": -73.8068, "fullName": "Yariguíes Airport" } }, { "key": "238", "attributes": { "latitude": 12.1889, "longitude": -68.959801, "fullName": "Hato International Airport" } }, { "key": "1021", "attributes": { "latitude": 0.978767, "longitude": -76.6056, "fullName": "Villa Garzón Airport" } }, { "key": "391", "attributes": { "latitude": 14.5833, "longitude": -90.527496, "fullName": "La Aurora Airport" } }, { "key": "1016", "attributes": { "latitude": 2.57969, "longitude": -72.6394, "fullName": "Jorge E. Gonzalez Torres Airport" } }, { "key": "1727", "attributes": { "latitude": 2.4544, "longitude": -76.6093, "fullName": "Guillermo León Valencia Airport" } }, { "key": "994", "attributes": { "latitude": 7.81196, "longitude": -76.7164, "fullName": "Antonio Roldan Betancourt Airport" } }, { "key": "1008", "attributes": { "latitude": 1.25366, "longitude": -70.2339, "fullName": "Fabio Alberto Leon Bentley Airport" } }, { "key": "1002", "attributes": { "latitude": 0.861925, "longitude": -77.6718, "fullName": "San Luis Airport" } }, { "key": "999", "attributes": { "latitude": 6.220549, "longitude": -75.590582, "fullName": "Enrique Olaya Herrera Airport" } }, { "key": "1015", "attributes": { "latitude": 6.951868, "longitude": -71.857179, "fullName": "Los Colonizadores Airport" } }, { "key": "1011", "attributes": { "latitude": 3.85353, "longitude": -67.9062, "fullName": "Obando Airport" } }, { "key": "993", "attributes": { "latitude": 12.5836, "longitude": -81.7112, "fullName": "Gustavo Rojas Pinilla International Airport" } }, { "key": "1000", "attributes": { "latitude": 1.58919, "longitude": -75.5644, "fullName": "Gustavo Artunduaga Paredes Airport" } }, { "key": "1004", "attributes": { "latitude": -4.19355, "longitude": -69.9432, "fullName": "Alfredo Vásquez Cobo International Airport" } }, { "key": "995", "attributes": { "latitude": 7.06888, "longitude": -70.7369, "fullName": "Santiago Perez Airport" } }, { "key": "998", "attributes": { "latitude": 9.33274, "longitude": -75.2856, "fullName": "Las Brujas Airport" } }, { "key": "1010", "attributes": { "latitude": 6.18472, "longitude": -67.4932, "fullName": "German Olano Airport" } }, { "key": "1017", "attributes": { "latitude": 2.15217, "longitude": -74.7663, "fullName": "Eduardo Falla Solano Airport" } }, { "key": "1718", "attributes": { "latitude": 10.4424, "longitude": -75.513, "fullName": "Rafael Nuñez International Airport" } }, { "key": "1723", "attributes": { "latitude": 8.82374, "longitude": -75.8258, "fullName": "Los Garzones Airport" } }, { "key": "1022", "attributes": { "latitude": 4.16787, "longitude": -73.6138, "fullName": "Vanguardia Airport" } }, { "key": "1001", "attributes": { "latitude": 2.57013, "longitude": -77.8986, "fullName": "Juan Casiano Airport" } }, { "key": "2154", "attributes": { "latitude": 0.9785190224647522, "longitude": -79.62660217285156, "fullName": "General Rivadeneira Airport" } }, { "key": "1730", "attributes": { "latitude": 1.81442, "longitude": -78.7492, "fullName": "La Florida Airport" } }, { "key": "2153", "attributes": { "latitude": -2.88947, "longitude": -78.984398, "fullName": "Mariscal Lamar Airport" } }, { "key": "2159", "attributes": { "latitude": -0.906833, "longitude": -78.615799, "fullName": "Cotopaxi International Airport" } }, { "key": "2158", "attributes": { "latitude": -3.99589, "longitude": -79.371902, "fullName": "Camilo Ponce Enriquez Airport" } }, { "key": "2156", "attributes": { "latitude": -0.45375800132751465, "longitude": -90.26589965820312, "fullName": "Seymour Airport" } }, { "key": "47", "attributes": { "latitude": -0.910206, "longitude": -89.617401, "fullName": "San Cristóbal Airport" } }, { "key": "46", "attributes": { "latitude": -0.4628860056400299, "longitude": -76.98680114746094, "fullName": "Francisco De Orellana Airport" } }, { "key": "2155", "attributes": { "latitude": -3.441986, "longitude": -79.996957, "fullName": "Santa Rosa International Airport" } }, { "key": "3415", "attributes": { "latitude": 0.8095059990882874, "longitude": -77.70809936523438, "fullName": "Teniente Coronel Luis a Mantilla Airport" } }, { "key": "2160", "attributes": { "latitude": -0.9460780024528503, "longitude": -80.67880249023438, "fullName": "Eloy Alfaro International Airport" } }, { "key": "2162", "attributes": { "latitude": -2.2991700172424316, "longitude": -78.12079620361328, "fullName": "Coronel E Carvajal Airport" } }, { "key": "49", "attributes": { "latitude": 40.6576, "longitude": 17.947001, "fullName": "Brindisi – Salento Airport" } }, { "key": "469", "attributes": { "latitude": 45.445099, "longitude": 9.27674, "fullName": "Milano Linate Airport" } }, { "key": "425", "attributes": { "latitude": 47.59, "longitude": 7.5291667, "fullName": "EuroAirport Basel-Mulhouse-Freiburg Airport" } }, { "key": "492", "attributes": { "latitude": 45.200802, "longitude": 7.64963, "fullName": "Turin Airport" } }, { "key": "489", "attributes": { "latitude": 51.8849983215, "longitude": 0.234999999404, "fullName": "London Stansted Airport" } }, { "key": "221", "attributes": { "latitude": 45.673901, "longitude": 9.70417, "fullName": "Il Caravaggio International Airport" } }, { "key": "235", "attributes": { "latitude": 45.648399, "longitude": 12.1944, "fullName": "Treviso-Sant'Angelo Airport" } }, { "key": "222", "attributes": { "latitude": 44.5354, "longitude": 11.2887, "fullName": "Bologna Guglielmo Marconi Airport" } }, { "key": "2251", "attributes": { "latitude": 41.901000977, "longitude": 2.7605500221, "fullName": "Girona Airport" } }, { "key": "480", "attributes": { "latitude": 43.683899, "longitude": 10.3927, "fullName": "Pisa International Airport" } }, { "key": "1023", "attributes": { "latitude": 49.45439910888672, "longitude": 2.1127800941467285, "fullName": "Paris Beauvais Tillé Airport" } }, { "key": "2245", "attributes": { "latitude": 50.459202, "longitude": 4.45382, "fullName": "Brussels South Charleroi Airport" } }, { "key": "2248", "attributes": { "latitude": 51.4500999451, "longitude": 5.37452983856, "fullName": "Eindhoven Airport" } }, { "key": "2244", "attributes": { "latitude": 41.7994, "longitude": 12.5949, "fullName": "Ciampino–G. B. Pastine International Airport" } }, { "key": "490", "attributes": { "latitude": 48.689899444599995, "longitude": 9.22196006775, "fullName": "Stuttgart Airport" } }, { "key": "50", "attributes": { "latitude": 44.828300476100004, "longitude": -0.715556025505, "fullName": "Bordeaux-Mérignac Airport" } }, { "key": "477", "attributes": { "latitude": 38.175999, "longitude": 13.091, "fullName": "Falcone–Borsellino Airport" } }, { "key": "1088", "attributes": { "latitude": 47.153198242200006, "longitude": -1.61073005199, "fullName": "Nantes Atlantique Airport" } }, { "key": "2258", "attributes": { "latitude": 51.874698638916016, "longitude": -0.36833301186561584, "fullName": "London Luton Airport" } }, { "key": "1107", "attributes": { "latitude": 41.92359924316406, "longitude": 8.8029203414917, "fullName": "Ajaccio-Napoléon Bonaparte Airport" } }, { "key": "1744", "attributes": { "latitude": 41.2481002808, "longitude": -8.68138980865, "fullName": "Francisco de Sá Carneiro Airport" } }, { "key": "482", "attributes": { "latitude": 31.606899261499997, "longitude": -8.03629970551, "fullName": "Menara Airport" } }, { "key": "444", "attributes": { "latitude": 42.5244444, "longitude": 8.7930556, "fullName": "Calvi-Sainte-Catherine Airport" } }, { "key": "1130", "attributes": { "latitude": 48.069499969499994, "longitude": -1.73478996754, "fullName": "Rennes-Saint-Jacques Airport" } }, { "key": "228", "attributes": { "latitude": 45.725556, "longitude": 5.081111, "fullName": "Lyon Saint-Exupéry Airport" } }, { "key": "436", "attributes": { "latitude": 42.55270004272461, "longitude": 9.48373031616211, "fullName": "Bastia-Poretta Airport" } }, { "key": "191", "attributes": { "latitude": 40.898701, "longitude": 9.51763, "fullName": "Olbia Costa Smeralda Airport" } }, { "key": "1087", "attributes": { "latitude": 43.439271922, "longitude": 5.22142410278, "fullName": "Marseille Provence Airport" } }, { "key": "1109", "attributes": { "latitude": 48.447898864746094, "longitude": -4.418540000915527, "fullName": "Brest Bretagne Airport" } }, { "key": "1117", "attributes": { "latitude": 41.5005989074707, "longitude": 9.097780227661133, "fullName": "Figari Sud-Corse Airport" } }, { "key": "1121", "attributes": { "latitude": 50.563332, "longitude": 3.086886, "fullName": "Lille-Lesquin Airport" } }, { "key": "1374", "attributes": { "latitude": 37.417999267578125, "longitude": -5.8931097984313965, "fullName": "Sevilla Airport" } }, { "key": "154", "attributes": { "latitude": 45.4706001282, "longitude": -73.7407989502, "fullName": "Montreal / Pierre Elliott Trudeau International Airport" } }, { "key": "51", "attributes": { "latitude": 51.382702, "longitude": -2.71909, "fullName": "Bristol Airport" } }, { "key": "450", "attributes": { "latitude": 55.95000076293945, "longitude": -3.372499942779541, "fullName": "Edinburgh Airport" } }, { "key": "1116", "attributes": { "latitude": 43.810001, "longitude": 11.2051, "fullName": "Peretola Airport" } }, { "key": "449", "attributes": { "latitude": 53.421299, "longitude": -6.27007, "fullName": "Dublin Airport" } }, { "key": "1131", "attributes": { "latitude": 48.538299560546875, "longitude": 7.628230094909668, "fullName": "Strasbourg Airport" } }, { "key": "1738", "attributes": { "latitude": 63.985000610352, "longitude": -22.605600357056, "fullName": "Keflavik International Airport" } }, { "key": "464", "attributes": { "latitude": 50.077702, "longitude": 19.7848, "fullName": "Kraków John Paul II International Airport" } }, { "key": "3057", "attributes": { "latitude": 53.1781005859375, "longitude": -2.9777801036834717, "fullName": "Hawarden Airport" } }, { "key": "1533", "attributes": { "latitude": 44.82529830932617, "longitude": 0.5186110138893127, "fullName": "Bergerac-Roumanière Airport" } }, { "key": "478", "attributes": { "latitude": 52.421001434299995, "longitude": 16.8262996674, "fullName": "Poznań-Ławica Airport" } }, { "key": "459", "attributes": { "latitude": 38.872898101800004, "longitude": 1.3731199502899998, "fullName": "Ibiza Airport" } }, { "key": "1353", "attributes": { "latitude": 28.945499, "longitude": -13.6052, "fullName": "Lanzarote Airport" } }, { "key": "1219", "attributes": { "latitude": 55.8718986511, "longitude": -4.43306016922, "fullName": "Glasgow International Airport" } }, { "key": "1360", "attributes": { "latitude": 54.377601623535156, "longitude": 18.46619987487793, "fullName": "Gdańsk Lech Wałęsa Airport" } }, { "key": "2276", "attributes": { "latitude": 52.451099, "longitude": 20.6518, "fullName": "Modlin Airport" } }, { "key": "2108", "attributes": { "latitude": 51.84130096435547, "longitude": -8.491109848022461, "fullName": "Cork Airport" } }, { "key": "451", "attributes": { "latitude": 37.0144004822, "longitude": -7.96590995789, "fullName": "Faro Airport" } }, { "key": "1834", "attributes": { "latitude": 57.54249954223633, "longitude": -4.047500133514404, "fullName": "Inverness Airport" } }, { "key": "2254", "attributes": { "latitude": 54.96390151977539, "longitude": 24.084800720214844, "fullName": "Kaunas International Airport" } }, { "key": "1546", "attributes": { "latitude": 45.86280059814453, "longitude": 1.1794400215148926, "fullName": "Limoges Airport" } }, { "key": "2111", "attributes": { "latitude": 52.702, "longitude": -8.92482, "fullName": "Shannon Airport" } }, { "key": "1362", "attributes": { "latitude": 49.20790100097656, "longitude": -2.195509910583496, "fullName": "Jersey Airport" } }, { "key": "2242", "attributes": { "latitude": 43.32350158691406, "longitude": 3.3538999557495117, "fullName": "Béziers-Vias Airport" } }, { "key": "1282", "attributes": { "latitude": 55.037498474121094, "longitude": -1.6916699409484863, "fullName": "Newcastle Airport" } }, { "key": "2269", "attributes": { "latitude": 41.14739990234375, "longitude": 1.1671700477600098, "fullName": "Reus Air Base" } }, { "key": "2270", "attributes": { "latitude": 50.1100006104, "longitude": 22.0189990997, "fullName": "Rzeszów-Jasionka Airport" } }, { "key": "1366", "attributes": { "latitude": 39.86259841918945, "longitude": 4.218649864196777, "fullName": "Menorca Airport" } }, { "key": "858", "attributes": { "latitude": 37.25059890749999, "longitude": 27.6643009186, "fullName": "Milas Bodrum International Airport" } }, { "key": "498", "attributes": { "latitude": 51.1026992798, "longitude": 16.885799408, "fullName": "Copernicus Wrocław Airport" } }, { "key": "1838", "attributes": { "latitude": 53.910301208496094, "longitude": -8.818490028381348, "fullName": "Ireland West Knock Airport" } }, { "key": "2645", "attributes": { "latitude": 54.6575012207, "longitude": -6.2158298492399995, "fullName": "Belfast International Airport" } }, { "key": "233", "attributes": { "latitude": 43.629101, "longitude": 1.36382, "fullName": "Toulouse-Blagnac Airport" } }, { "key": "1358", "attributes": { "latitude": 28.452699661254883, "longitude": -13.863800048828125, "fullName": "Fuerteventura Airport" } }, { "key": "1359", "attributes": { "latitude": 49.435001373291016, "longitude": -2.6019699573516846, "fullName": "Guernsey Airport" } }, { "key": "1070", "attributes": { "latitude": 35.531700134277344, "longitude": 24.149700164794922, "fullName": "Chania International Airport" } }, { "key": "2094", "attributes": { "latitude": 37.775001525878906, "longitude": -0.8123890161514282, "fullName": "San Javier Airport" } }, { "key": "1141", "attributes": { "latitude": 57.201900482177734, "longitude": -2.197779893875122, "fullName": "Aberdeen Dyce Airport" } }, { "key": "1357", "attributes": { "latitude": 32.697899, "longitude": -16.7745, "fullName": "Madeira Airport" } }, { "key": "488", "attributes": { "latitude": 43.53889846801758, "longitude": 16.29800033569336, "fullName": "Split Airport" } }, { "key": "1060", "attributes": { "latitude": 24.957599639892578, "longitude": 46.69879913330078, "fullName": "King Khaled International Airport" } }, { "key": "427", "attributes": { "latitude": 42.5728, "longitude": 21.035801, "fullName": "Priština International Airport" } }, { "key": "190", "attributes": { "latitude": 40.886002, "longitude": 14.2908, "fullName": "Naples International Airport" } }, { "key": "460", "attributes": { "latitude": 37.43510055541992, "longitude": 25.348100662231445, "fullName": "Mikonos Airport" } }, { "key": "441", "attributes": { "latitude": 39.251499, "longitude": 9.05428, "fullName": "Cagliari Elmas Airport" } }, { "key": "1355", "attributes": { "latitude": 33.875, "longitude": 10.775500297546387, "fullName": "Djerba Zarzis International Airport" } }, { "key": "1836", "attributes": { "latitude": 53.33359909057617, "longitude": -2.849720001220703, "fullName": "Liverpool John Lennon Airport" } }, { "key": "1845", "attributes": { "latitude": 35.75809860229492, "longitude": 10.75469970703125, "fullName": "Monastir Habib Bourguiba International Airport" } }, { "key": "437", "attributes": { "latitude": 43.30110168457031, "longitude": -2.9106099605560303, "fullName": "Bilbao Airport" } }, { "key": "445", "attributes": { "latitude": 37.466801, "longitude": 15.0664, "fullName": "Catania-Fontanarossa Airport" } }, { "key": "2187", "attributes": { "latitude": 46.00429916379999, "longitude": 8.9105796814, "fullName": "Lugano Airport" } }, { "key": "447", "attributes": { "latitude": 42.5614013671875, "longitude": 18.268199920654297, "fullName": "Dubrovnik Airport" } }, { "key": "2109", "attributes": { "latitude": 42.89630126953125, "longitude": -8.415140151977539, "fullName": "Santiago de Compostela Airport" } }, { "key": "1110", "attributes": { "latitude": 43.4683333, "longitude": -1.5311111, "fullName": "Biarritz-Anglet-Bayonne Airport" } }, { "key": "433", "attributes": { "latitude": 44.8184013367, "longitude": 20.3090991974, "fullName": "Belgrade Nikola Tesla Airport" } }, { "key": "2110", "attributes": { "latitude": 51.5713996887207, "longitude": 0.6955559849739075, "fullName": "Southend Airport" } }, { "key": "359", "attributes": { "latitude": 21.6796, "longitude": 39.156502, "fullName": "King Abdulaziz International Airport" } }, { "key": "1363", "attributes": { "latitude": 51.505299, "longitude": 0.055278, "fullName": "London City Airport" } }, { "key": "1258", "attributes": { "latitude": 49.6233333, "longitude": 6.2044444, "fullName": "Luxembourg-Findel International Airport" } }, { "key": "1026", "attributes": { "latitude": 44.5711111, "longitude": 26.085, "fullName": "Henri Coandă International Airport" } }, { "key": "1092", "attributes": { "latitude": 42.696693420410156, "longitude": 23.411436080932617, "fullName": "Sofia Airport" } }, { "key": "455", "attributes": { "latitude": 52.461101532, "longitude": 9.685079574580001, "fullName": "Hannover Airport" } }, { "key": "1832", "attributes": { "latitude": 52.8311004639, "longitude": -1.32806003094, "fullName": "East Midlands Airport" } }, { "key": "1037", "attributes": { "latitude": 26.27079963684082, "longitude": 50.63359832763672, "fullName": "Bahrain International Airport" } }, { "key": "1247", "attributes": { "latitude": 53.86589813232422, "longitude": -1.6605700254440308, "fullName": "Leeds Bradford Airport" } }, { "key": "446", "attributes": { "latitude": 51.39670181274414, "longitude": -3.343329906463623, "fullName": "Cardiff International Airport" } }, { "key": "2647", "attributes": { "latitude": 49.8125, "longitude": 23.956100463867188, "fullName": "Lviv International Airport" } }, { "key": "435", "attributes": { "latitude": 52.453899383499994, "longitude": -1.74802994728, "fullName": "Birmingham International Airport" } }, { "key": "73", "attributes": { "latitude": 59.1866989136, "longitude": 10.258600235, "fullName": "Sandefjord Airport, Torp" } }, { "key": "2106", "attributes": { "latitude": 50.779998779296875, "longitude": -1.8424999713897705, "fullName": "Bournemouth Airport" } }, { "key": "3058", "attributes": { "latitude": 50.979801177978516, "longitude": 10.958100318908691, "fullName": "Erfurt Airport" } }, { "key": "2267", "attributes": { "latitude": 55.5093994140625, "longitude": -4.586669921875, "fullName": "Glasgow Prestwick Airport" } }, { "key": "2784", "attributes": { "latitude": 27.814800262451172, "longitude": -17.887100219726562, "fullName": "Hierro Airport" } }, { "key": "1369", "attributes": { "latitude": 51.614101409899995, "longitude": 8.616319656369999, "fullName": "Paderborn Lippstadt Airport" } }, { "key": "2261", "attributes": { "latitude": 51.6024017334, "longitude": 6.14216995239, "fullName": "Weeze Airport" } }, { "key": "438", "attributes": { "latitude": 53.0475006104, "longitude": 8.78666973114, "fullName": "Bremen Airport" } }, { "key": "476", "attributes": { "latitude": 49.498699, "longitude": 11.078056, "fullName": "Nuremberg Airport" } }, { "key": "434", "attributes": { "latitude": 60.29339981, "longitude": 5.218140125, "fullName": "Bergen Airport Flesland" } }, { "key": "1373", "attributes": { "latitude": 28.626499, "longitude": -17.7556, "fullName": "La Palma Airport" } }, { "key": "2630", "attributes": { "latitude": 20.9330997467041, "longitude": -17.030000686645508, "fullName": "Nouadhibou International Airport" } }, { "key": "1706", "attributes": { "latitude": 27.151699, "longitude": -13.2192, "fullName": "Hassan I Airport" } }, { "key": "192", "attributes": { "latitude": 47.793300628699996, "longitude": 13.0043001175, "fullName": "Salzburg Airport" } }, { "key": "1714", "attributes": { "latitude": 23.7183, "longitude": -15.932, "fullName": "Dakhla Airport" } }, { "key": "1703", "attributes": { "latitude": 30.325000762939453, "longitude": -9.413069725036621, "fullName": "Al Massira Airport" } }, { "key": "2271", "attributes": { "latitude": 43.427101135253906, "longitude": -3.82000994682312, "fullName": "Santander Airport" } }, { "key": "55", "attributes": { "latitude": 25.557100296, "longitude": 34.5836982727, "fullName": "Marsa Alam International Airport" } }, { "key": "1522", "attributes": { "latitude": 55.7402992249, "longitude": 9.15178012848, "fullName": "Billund Airport" } }, { "key": "1568", "attributes": { "latitude": 42.2318000793457, "longitude": -8.62677001953125, "fullName": "Vigo Airport" } }, { "key": "187", "attributes": { "latitude": 46.9911003112793, "longitude": 15.439599990844727, "fullName": "Graz Airport" } }, { "key": "2105", "attributes": { "latitude": 53.77170181274414, "longitude": -3.0286099910736084, "fullName": "Blackpool International Airport" } }, { "key": "2253", "attributes": { "latitude": 49.9487, "longitude": 7.26389, "fullName": "Frankfurt-Hahn Airport" } }, { "key": "2470", "attributes": { "latitude": 43.5635986328125, "longitude": -6.0346198081970215, "fullName": "Asturias Airport" } }, { "key": "182", "attributes": { "latitude": 51.1328010559082, "longitude": 13.767200469970703, "fullName": "Dresden Airport" } }, { "key": "3341", "attributes": { "latitude": 49.2094, "longitude": 7.40056, "fullName": "Zweibrücken Airport" } }, { "key": "2260", "attributes": { "latitude": 50.911701, "longitude": 5.77014, "fullName": "Maastricht Aachen Airport" } }, { "key": "186", "attributes": { "latitude": 47.988800048799995, "longitude": 10.2395000458, "fullName": "Memmingen Allgau Airport" } }, { "key": "218", "attributes": { "latitude": 27.975500106811523, "longitude": -82.533203125, "fullName": "Tampa International Airport" } }, { "key": "419", "attributes": { "latitude": 28.5665, "longitude": 77.103104, "fullName": "Indira Gandhi International Airport" } }, { "key": "1090", "attributes": { "latitude": 39.87189865112305, "longitude": -75.24109649658203, "fullName": "Philadelphia International Airport" } }, { "key": "1547", "attributes": { "latitude": 46.223701, "longitude": 14.4576, "fullName": "Ljubljana Jože Pučnik Airport" } }, { "key": "1356", "attributes": { "latitude": 52.134601593, "longitude": 7.68483018875, "fullName": "Münster Osnabrück Airport" } }, { "key": "938", "attributes": { "latitude": 42.36429977, "longitude": -71.00520325, "fullName": "General Edward Lawrence Logan International Airport" } }, { "key": "305", "attributes": { "latitude": 31.143400192260742, "longitude": 121.80500030517578, "fullName": "Shanghai Pudong International Airport" } }, { "key": "500", "attributes": { "latitude": 45.7429008484, "longitude": 16.0687999725, "fullName": "Zagreb Airport" } }, { "key": "645", "attributes": { "latitude": 19.0886993408, "longitude": 72.8678970337, "fullName": "Chhatrapati Shivaji International Airport" } }, { "key": "701", "attributes": { "latitude": 54.9132003784, "longitude": 8.34047031403, "fullName": "Westerland Sylt Airport" } }, { "key": "428", "attributes": { "latitude": 41.961601, "longitude": 21.621401, "fullName": "Skopje Alexander the Great Airport" } }, { "key": "2529", "attributes": { "latitude": 44.94139862060547, "longitude": 17.297500610351562, "fullName": "Banja Luka International Airport" } }, { "key": "337", "attributes": { "latitude": 36.08010101, "longitude": -115.1520004, "fullName": "McCarran International Airport" } }, { "key": "184", "attributes": { "latitude": 42.7603, "longitude": 10.2394, "fullName": "Marina Di Campo Airport" } }, { "key": "491", "attributes": { "latitude": 38.905399, "longitude": 16.2423, "fullName": "Lamezia Terme Airport" } }, { "key": "123", "attributes": { "latitude": 41.9786, "longitude": -87.9048, "fullName": "Chicago O'Hare International Airport" } }, { "key": "1323", "attributes": { "latitude": 37.61899948120117, "longitude": -122.375, "fullName": "San Francisco International Airport" } }, { "key": "857", "attributes": { "latitude": 38.2924003601, "longitude": 27.156999588, "fullName": "Adnan Menderes International Airport" } }, { "key": "362", "attributes": { "latitude": 23.593299865722656, "longitude": 58.284400939941406, "fullName": "Muscat International Airport" } }, { "key": "58", "attributes": { "latitude": 65.59030151367188, "longitude": 19.28190040588379, "fullName": "Arvidsjaur Airport" } }, { "key": "67", "attributes": { "latitude": 64.54830169677734, "longitude": 18.71619987487793, "fullName": "Lycksele Airport" } }, { "key": "2447", "attributes": { "latitude": 63.194400787354, "longitude": 14.50030040741, "fullName": "Åre Östersund Airport" } }, { "key": "71", "attributes": { "latitude": 61.461700439453, "longitude": 21.799999237061, "fullName": "Pori Airport" } }, { "key": "486", "attributes": { "latitude": 43.82460021972656, "longitude": 18.331499099731445, "fullName": "Sarajevo International Airport" } }, { "key": "1999", "attributes": { "latitude": 56.68550109863281, "longitude": 16.287599563598633, "fullName": "Kalmar Airport" } }, { "key": "3245", "attributes": { "latitude": 55.92169952392578, "longitude": 14.08549976348877, "fullName": "Kristianstad Airport" } }, { "key": "1753", "attributes": { "latitude": 63.050701141357, "longitude": 21.762199401855, "fullName": "Vaasa Airport" } }, { "key": "68", "attributes": { "latitude": 60.122200012207, "longitude": 19.898199081421, "fullName": "Mariehamn Airport" } }, { "key": "2272", "attributes": { "latitude": 64.62480163574219, "longitude": 21.076900482177734, "fullName": "Skellefteå Airport" } }, { "key": "2000", "attributes": { "latitude": 56.266700744629, "longitude": 15.265000343323, "fullName": "Ronneby Airport" } }, { "key": "66", "attributes": { "latitude": 59.444698333699996, "longitude": 13.337400436400001, "fullName": "Karlstad Airport" } }, { "key": "1745", "attributes": { "latitude": 64.930099487305, "longitude": 25.354600906372, "fullName": "Oulu Airport" } }, { "key": "65", "attributes": { "latitude": 63.04859924316406, "longitude": 17.76889991760254, "fullName": "Kramfors Sollefteå Airport" } }, { "key": "1741", "attributes": { "latitude": 55.536305364, "longitude": 13.376197814900001, "fullName": "Malmö Sturup Airport" } }, { "key": "2112", "attributes": { "latitude": 33.262500762900004, "longitude": 44.2346000671, "fullName": "Baghdad International Airport" } }, { "key": "75", "attributes": { "latitude": 64.5791015625, "longitude": 16.833599090576172, "fullName": "Vilhelmina Airport" } }, { "key": "3247", "attributes": { "latitude": 60.957901, "longitude": 14.5114, "fullName": "Mora Airport" } }, { "key": "2090", "attributes": { "latitude": 67.821998596191, "longitude": 20.336799621582, "fullName": "Kiruna Airport" } }, { "key": "1754", "attributes": { "latitude": 57.0927589138, "longitude": 9.84924316406, "fullName": "Aalborg Airport" } }, { "key": "3243", "attributes": { "latitude": 62.04779815673828, "longitude": 14.422900199890137, "fullName": "Sveg Airport" } }, { "key": "3244", "attributes": { "latitude": 60.02009963989258, "longitude": 13.578900337219238, "fullName": "Hagfors Airport" } }, { "key": "1752", "attributes": { "latitude": 63.791801452637, "longitude": 20.282800674438, "fullName": "Umeå Airport" } }, { "key": "1389", "attributes": { "latitude": 63.4578018, "longitude": 10.9239998, "fullName": "Trondheim Airport Værnes" } }, { "key": "1751", "attributes": { "latitude": 61.414100646973, "longitude": 23.604400634766, "fullName": "Tampere-Pirkkala Airport" } }, { "key": "1066", "attributes": { "latitude": 37.06829833984375, "longitude": 22.02549934387207, "fullName": "Kalamata Airport" } }, { "key": "69", "attributes": { "latitude": 63.40829849243164, "longitude": 18.989999771118164, "fullName": "Örnsköldsvik Airport" } }, { "key": "2001", "attributes": { "latitude": 62.528099060058594, "longitude": 17.443899154663086, "fullName": "Sundsvall-Härnösand Airport" } }, { "key": "1284", "attributes": { "latitude": 37.721298, "longitude": -122.221001, "fullName": "Metropolitan Oakland International Airport" } }, { "key": "596", "attributes": { "latitude": 69.68329620361328, "longitude": 18.918899536132812, "fullName": "Tromsø Airport," } }, { "key": "1337", "attributes": { "latitude": 58.876701354, "longitude": 5.6377801895, "fullName": "Stavanger Airport Sola" } }, { "key": "63", "attributes": { "latitude": 57.757598876953125, "longitude": 14.068699836730957, "fullName": "Jönköping Airport" } }, { "key": "76", "attributes": { "latitude": 56.929100036621094, "longitude": 14.727999687194824, "fullName": "Växjö Kronoberg Airport" } }, { "key": "1118", "attributes": { "latitude": 57.662799835205, "longitude": 12.279800415039, "fullName": "Gothenburg-Landvetter Airport" } }, { "key": "72", "attributes": { "latitude": 60.514099121094, "longitude": 22.262800216675, "fullName": "Turku Airport" } }, { "key": "2092", "attributes": { "latitude": 65.543800354004, "longitude": 22.121999740601, "fullName": "Luleå Airport" } }, { "key": "2114", "attributes": { "latitude": 36.23759841918945, "longitude": 43.963199615478516, "fullName": "Erbil International Airport" } }, { "key": "60", "attributes": { "latitude": 67.13240051269531, "longitude": 20.814599990844727, "fullName": "Gällivare Airport" } }, { "key": "1997", "attributes": { "latitude": 56.29610061645508, "longitude": 12.847100257873535, "fullName": "Ängelholm-Helsingborg Airport" } }, { "key": "61", "attributes": { "latitude": 56.69110107421875, "longitude": 12.820199966430664, "fullName": "Halmstad Airport" } }, { "key": "2139", "attributes": { "latitude": 35.5617485046, "longitude": 45.316738128699996, "fullName": "Sulaymaniyah International Airport" } }, { "key": "74", "attributes": { "latitude": 57.662799835205, "longitude": 18.346200942993, "fullName": "Visby Airport" } }, { "key": "1733", "attributes": { "latitude": 59.354400634765625, "longitude": 17.941699981689453, "fullName": "Stockholm-Bromma Airport" } }, { "key": "62", "attributes": { "latitude": 65.80609893798828, "longitude": 15.082799911499023, "fullName": "Hemavan Airport" } }, { "key": "64", "attributes": { "latitude": 63.721199035645, "longitude": 23.143100738525, "fullName": "Kokkola-Pietarsaari Airport" } }, { "key": "2083", "attributes": { "latitude": 59.791900634765625, "longitude": 5.340849876403809, "fullName": "Stord Airport" } }, { "key": "3280", "attributes": { "latitude": 65.461097717285, "longitude": 12.217499732971, "fullName": "Brønnøysund Airport" } }, { "key": "2085", "attributes": { "latitude": 69.055801391602, "longitude": 18.540399551392, "fullName": "Bardufoss Airport" } }, { "key": "1764", "attributes": { "latitude": 58.204201, "longitude": 8.08537, "fullName": "Kristiansand Airport" } }, { "key": "2025", "attributes": { "latitude": 48.17020034790039, "longitude": 17.21269989013672, "fullName": "M. R. Štefánik Airport" } }, { "key": "2667", "attributes": { "latitude": 63.69889831542969, "longitude": 9.604000091552734, "fullName": "Ørland Airport" } }, { "key": "421", "attributes": { "latitude": 33.560713, "longitude": 72.851613, "fullName": "New Islamabad International Airport" } }, { "key": "3301", "attributes": { "latitude": 61.156101, "longitude": 7.13778, "fullName": "Sogndal Airport" } }, { "key": "865", "attributes": { "latitude": 36.299217, "longitude": 32.300598, "fullName": "Gazipaşa Airport" } }, { "key": "1755", "attributes": { "latitude": 62.5625, "longitude": 6.119699954986572, "fullName": "Ålesund Airport" } }, { "key": "3283", "attributes": { "latitude": 61.583599090576, "longitude": 5.0247201919556, "fullName": "Florø Airport" } }, { "key": "2096", "attributes": { "latitude": 53.584701538100006, "longitude": 14.902199745199999, "fullName": "Szczecin-Goleniów \"Solidarność\" Airport" } }, { "key": "1873", "attributes": { "latitude": 55.973201751708984, "longitude": 21.093900680541992, "fullName": "Palanga International Airport" } }, { "key": "1808", "attributes": { "latitude": 56.2999992371, "longitude": 10.619000434899998, "fullName": "Aarhus Airport" } }, { "key": "2089", "attributes": { "latitude": 69.725799560547, "longitude": 29.891300201416, "fullName": "Kirkenes Airport (Høybuktmoen)" } }, { "key": "3303", "attributes": { "latitude": 65.956802368164, "longitude": 12.468899726868, "fullName": "Sandnessjøen Airport (Stokka)" } }, { "key": "2084", "attributes": { "latitude": 69.976097106934, "longitude": 23.371700286865, "fullName": "Alta Airport" } }, { "key": "2668", "attributes": { "latitude": 61.015598297119, "longitude": 9.2880601882935, "fullName": "Leirin Airport" } }, { "key": "3298", "attributes": { "latitude": 61.830001831055, "longitude": 6.1058301925659, "fullName": "Sandane Airport (Anda)" } }, { "key": "2093", "attributes": { "latitude": 78.246101379395, "longitude": 15.465600013733, "fullName": "Svalbard Airport, Longyear" } }, { "key": "2088", "attributes": { "latitude": 59.34529876709, "longitude": 5.2083601951599, "fullName": "Haugesund Airport" } }, { "key": "1863", "attributes": { "latitude": 63.111801147461, "longitude": 7.824520111084, "fullName": "Kristiansund Airport (Kvernberget)" } }, { "key": "2081", "attributes": { "latitude": 62.744701385498, "longitude": 7.2624998092651, "fullName": "Molde Airport" } }, { "key": "2087", "attributes": { "latitude": 67.26920318603516, "longitude": 14.365300178527832, "fullName": "Bodø Airport" } }, { "key": "3286", "attributes": { "latitude": 62.180000305176, "longitude": 6.0741000175476, "fullName": "Ørsta-Volda Airport, Hovden" } }, { "key": "1862", "attributes": { "latitude": 68.491302490234, "longitude": 16.678100585938, "fullName": "Harstad/Narvik Airport, Evenes" } }, { "key": "3296", "attributes": { "latitude": 62.578399658203, "longitude": 11.342300415039, "fullName": "Røros Airport" } }, { "key": "465", "attributes": { "latitude": 50.4743, "longitude": 19.08, "fullName": "Katowice International Airport" } }, { "key": "1756", "attributes": { "latitude": 40.632099, "longitude": 8.29077, "fullName": "Alghero-Fertilia Airport" } }, { "key": "2259", "attributes": { "latitude": 51.240278, "longitude": 22.713611, "fullName": "Lublin Airport" } }, { "key": "1998", "attributes": { "latitude": 57.7747, "longitude": 11.8704, "fullName": "Gothenburg City Airport" } }, { "key": "77", "attributes": { "latitude": 57.75, "longitude": -152.4940033, "fullName": "Kodiak Airport" } }, { "key": "711", "attributes": { "latitude": 61.174400329589844, "longitude": -149.99600219726562, "fullName": "Ted Stevens Anchorage International Airport" } }, { "key": "831", "attributes": { "latitude": 56.9387016296, "longitude": -154.182998657, "fullName": "Akhiok Airport" } }, { "key": "80", "attributes": { "latitude": 57.5350990295, "longitude": -153.977996826, "fullName": "Larsen Bay Airport" } }, { "key": "3410", "attributes": { "latitude": 57.5671005249, "longitude": -154.449996948, "fullName": "Karluk Airport" } }, { "key": "83", "attributes": { "latitude": 20.4513, "longitude": 121.980003, "fullName": "Basco Airport" } }, { "key": "93", "attributes": { "latitude": 14.5086, "longitude": 121.019997, "fullName": "Ninoy Aquino International Airport" } }, { "key": "84", "attributes": { "latitude": 8.9515, "longitude": 125.4788, "fullName": "Bancasi Airport" } }, { "key": "566", "attributes": { "latitude": 10.307499885559, "longitude": 123.97899627686, "fullName": "Mactan Cebu International Airport" } }, { "key": "85", "attributes": { "latitude": 7.1652398109436035, "longitude": 124.20999908447266, "fullName": "Awang Airport" } }, { "key": "86", "attributes": { "latitude": 8.612203, "longitude": 124.456496, "fullName": "Laguindingan Airport" } }, { "key": "573", "attributes": { "latitude": 7.1255202293396, "longitude": 125.64600372314453, "fullName": "Francisco Bangoy International Airport" } }, { "key": "576", "attributes": { "latitude": 10.833017, "longitude": 122.493358, "fullName": "Iloilo International Airport" } }, { "key": "563", "attributes": { "latitude": 10.7764, "longitude": 123.014999, "fullName": "Bacolod-Silay Airport" } }, { "key": "87", "attributes": { "latitude": 12.502400398254395, "longitude": 124.63600158691406, "fullName": "Catarman National Airport" } }, { "key": "88", "attributes": { "latitude": 9.3337097168, "longitude": 123.300003052, "fullName": "Sibulan Airport" } }, { "key": "1045", "attributes": { "latitude": 26.471200942993164, "longitude": 49.79790115356445, "fullName": "King Fahd International Airport" } }, { "key": "641", "attributes": { "latitude": 23.0771999359, "longitude": 72.63469696039999, "fullName": "Sardar Vallabhbhai Patel International Airport" } }, { "key": "1765", "attributes": { "latitude": 15.589500427246094, "longitude": 32.553199768066406, "fullName": "Khartoum International Airport" } }, { "key": "171", "attributes": { "latitude": 2.745579957962, "longitude": 101.70999908447, "fullName": "Kuala Lumpur International Airport" } }, { "key": "361", "attributes": { "latitude": 27.6966, "longitude": 85.3591, "fullName": "Tribhuvan International Airport" } }, { "key": "1056", "attributes": { "latitude": 29.226600646972656, "longitude": 47.96889877319336, "fullName": "Kuwait International Airport" } }, { "key": "355", "attributes": { "latitude": 22.24959945678711, "longitude": 91.81330108642578, "fullName": "Shah Amanat International Airport" } }, { "key": "1611", "attributes": { "latitude": 4.191830158233643, "longitude": 73.52909851074219, "fullName": "Malé International Airport" } }, { "key": "90", "attributes": { "latitude": 6.05800008774, "longitude": 125.096000671, "fullName": "General Santos International Airport" } }, { "key": "91", "attributes": { "latitude": 11.679400444, "longitude": 122.375999451, "fullName": "Kalibo International Airport" } }, { "key": "582", "attributes": { "latitude": 35.1795005798, "longitude": 128.93800354, "fullName": "Gimhae International Airport" } }, { "key": "569", "attributes": { "latitude": 15.186, "longitude": 120.559998, "fullName": "Diosdado Macapagal International Airport" } }, { "key": "180", "attributes": { "latitude": 25.0777, "longitude": 121.233002, "fullName": "Taiwan Taoyuan International Airport" } }, { "key": "92", "attributes": { "latitude": 13.1575, "longitude": 123.735, "fullName": "Legazpi City International Airport" } }, { "key": "327", "attributes": { "latitude": 24.54400062561035, "longitude": 118.12799835205078, "fullName": "Xiamen Gaoqi International Airport" } }, { "key": "96", "attributes": { "latitude": 9.742119789123535, "longitude": 118.75900268554688, "fullName": "Puerto Princesa Airport" } }, { "key": "567", "attributes": { "latitude": -6.1255698204, "longitude": 106.65599823, "fullName": "Soekarno-Hatta International Airport" } }, { "key": "94", "attributes": { "latitude": 11.9245, "longitude": 121.954002, "fullName": "Godofredo P. Ramos Airport" } }, { "key": "577", "attributes": { "latitude": 18.1781005859375, "longitude": 120.53199768066406, "fullName": "Laoag International Airport" } }, { "key": "1629", "attributes": { "latitude": 4.322010040283203, "longitude": 113.98699951171875, "fullName": "Miri Airport" } }, { "key": "587", "attributes": { "latitude": 13.576399803161621, "longitude": 124.20600128173828, "fullName": "Virac Airport" } }, { "key": "259", "attributes": { "latitude": 23.39240074157715, "longitude": 113.29900360107422, "fullName": "Guangzhou Baiyun International Airport" } }, { "key": "165", "attributes": { "latitude": -12.41469955444336, "longitude": 130.8769989013672, "fullName": "Darwin International Airport" } }, { "key": "1227", "attributes": { "latitude": 21.32062, "longitude": -157.924228, "fullName": "Daniel K Inouye International Airport" } }, { "key": "570", "attributes": { "latitude": 16.9298992157, "longitude": 121.752998352, "fullName": "Cauayan Airport" } }, { "key": "97", "attributes": { "latitude": 11.597700119018555, "longitude": 122.75199890136719, "fullName": "Roxas Airport" } }, { "key": "578", "attributes": { "latitude": 22.149599, "longitude": 113.592003, "fullName": "Macau International Airport" } }, { "key": "98", "attributes": { "latitude": 9.755838325629998, "longitude": 125.480947495, "fullName": "Surigao Airport" } }, { "key": "572", "attributes": { "latitude": -8.7481698989868, "longitude": 115.16699981689, "fullName": "Ngurah Rai (Bali) International Airport" } }, { "key": "564", "attributes": { "latitude": 5.9372100830078125, "longitude": 116.0510025024414, "fullName": "Kota Kinabalu International Airport" } }, { "key": "581", "attributes": { "latitude": 7.83073144787, "longitude": 123.461179733, "fullName": "Pagadian Airport" } }, { "key": "565", "attributes": { "latitude": 4.944200038909912, "longitude": 114.9280014038086, "fullName": "Brunei International Airport" } }, { "key": "700", "attributes": { "latitude": 13.4834003448, "longitude": 144.796005249, "fullName": "Antonio B. Won Pat International Airport" } }, { "key": "698", "attributes": { "latitude": 33.585899353027344, "longitude": 130.4510040283203, "fullName": "Fukuoka Airport" } }, { "key": "310", "attributes": { "latitude": -33.94609832763672, "longitude": 151.177001953125, "fullName": "Sydney Kingsford Smith International Airport" } }, { "key": "1561", "attributes": { "latitude": 7.36731, "longitude": 134.544236, "fullName": "Babelthuap Airport" } }, { "key": "583", "attributes": { "latitude": 12.361499786399998, "longitude": 121.04699707, "fullName": "San Jose Airport" } }, { "key": "2901", "attributes": { "latitude": 12.369682, "longitude": 123.630095, "fullName": "Moises R. Espinosa Airport" } }, { "key": "584", "attributes": { "latitude": 11.228035, "longitude": 125.027761, "fullName": "Daniel Z. Romualdez Airport" } }, { "key": "588", "attributes": { "latitude": 13.58489990234375, "longitude": 123.2699966430664, "fullName": "Naga Airport" } }, { "key": "175", "attributes": { "latitude": 13.410699844400002, "longitude": 103.81300354, "fullName": "Siem Reap International Airport" } }, { "key": "1952", "attributes": { "latitude": -9.443380355834961, "longitude": 147.22000122070312, "fullName": "Port Moresby Jacksons International Airport" } }, { "key": "170", "attributes": { "latitude": 34.42729949951172, "longitude": 135.24400329589844, "fullName": "Kansai International Airport" } }, { "key": "585", "attributes": { "latitude": 9.665442, "longitude": 123.853533, "fullName": "Tagbilaran Airport" } }, { "key": "100", "attributes": { "latitude": 6.922420024871826, "longitude": 122.05999755859375, "fullName": "Zamboanga International Airport" } }, { "key": "571", "attributes": { "latitude": 8.60198349877, "longitude": 123.341875076, "fullName": "Dipolog Airport" } }, { "key": "586", "attributes": { "latitude": 12.1215000153, "longitude": 120.099998474, "fullName": "Francisco B. Reyes Airport" } }, { "key": "579", "attributes": { "latitude": 34.8583984375, "longitude": 136.80499267578125, "fullName": "Chubu Centrair International Airport" } }, { "key": "2899", "attributes": { "latitude": 12.072699546813965, "longitude": 124.54499816894531, "fullName": "Calbayog Airport" } }, { "key": "333", "attributes": { "latitude": 49.193901062, "longitude": -123.183998108, "fullName": "Vancouver International Airport" } }, { "key": "297", "attributes": { "latitude": -37.673302, "longitude": 144.843002, "fullName": "Melbourne International Airport" } }, { "key": "707", "attributes": { "latitude": 35.552299, "longitude": 139.779999, "fullName": "Tokyo Haneda International Airport" } }, { "key": "95", "attributes": { "latitude": 8.178509712219238, "longitude": 123.84200286865234, "fullName": "Labo Airport" } }, { "key": "905", "attributes": { "latitude": 22.57710075378418, "longitude": 120.3499984741211, "fullName": "Kaohsiung International Airport" } }, { "key": "99", "attributes": { "latitude": 17.6433676823, "longitude": 121.733150482, "fullName": "Tuguegarao Airport" } }, { "key": "2900", "attributes": { "latitude": 6.0536699295043945, "longitude": 121.01100158691406, "fullName": "Jolo Airport" } }, { "key": "101", "attributes": { "latitude": -7.22787, "longitude": -48.240501, "fullName": "Araguaína Airport" } }, { "key": "113", "attributes": { "latitude": -10.291500091600001, "longitude": -48.35699844359999, "fullName": "Brigadeiro Lysias Rodrigues Airport" } }, { "key": "103", "attributes": { "latitude": -15.86916732788086, "longitude": -47.920833587646484, "fullName": "Presidente Juscelino Kubistschek International Airport" } }, { "key": "1471", "attributes": { "latitude": -5.36858987808, "longitude": -49.138000488299994, "fullName": "João Correa da Rocha Airport" } }, { "key": "102", "attributes": { "latitude": -12.078900337219238, "longitude": -45.00899887084961, "fullName": "Barreiras Airport" } }, { "key": "116", "attributes": { "latitude": -12.9086112976, "longitude": -38.3224983215, "fullName": "Deputado Luiz Eduardo Magalhães International Airport" } }, { "key": "1186", "attributes": { "latitude": -19.62444305419922, "longitude": -43.97194290161133, "fullName": "Tancredo Neves International Airport" } }, { "key": "1306", "attributes": { "latitude": -8.126489639282227, "longitude": -34.92359924316406, "fullName": "Guararapes - Gilberto Freyre International Airport" } }, { "key": "1502", "attributes": { "latitude": -5.0599398613, "longitude": -42.8235015869, "fullName": "Senador Petrônio Portela Airport" } }, { "key": "1487", "attributes": { "latitude": -9.362409591674805, "longitude": -40.56909942626953, "fullName": "Senador Nilo Coelho Airport" } }, { "key": "114", "attributes": { "latitude": -21.136388778686523, "longitude": -47.776668548583984, "fullName": "Leite Lopes Airport" } }, { "key": "1458", "attributes": { "latitude": -5.53129, "longitude": -47.459999, "fullName": "Prefeito Renato Moreira Airport" } }, { "key": "1454", "attributes": { "latitude": -27.670278549194336, "longitude": -48.5525016784668, "fullName": "Hercílio Luz International Airport" } }, { "key": "1490", "attributes": { "latitude": -8.70928955078125, "longitude": -63.90230178833008, "fullName": "Governador Jorge Teixeira de Oliveira Airport" } }, { "key": "1498", "attributes": { "latitude": -2.585360050201416, "longitude": -44.234100341796875, "fullName": "Marechal Cunha Machado International Airport" } }, { "key": "118", "attributes": { "latitude": -18.883612, "longitude": -48.225277, "fullName": "Ten. Cel. Aviador César Bombonato Airport" } }, { "key": "105", "attributes": { "latitude": -15.6528997421, "longitude": -56.1166992188, "fullName": "Marechal Rondon Airport" } }, { "key": "1491", "attributes": { "latitude": -9.868888854980469, "longitude": -67.89805603027344, "fullName": "Plácido de Castro Airport" } }, { "key": "1506", "attributes": { "latitude": -20.258057, "longitude": -40.286388, "fullName": "Eurico de Aguiar Salles Airport" } }, { "key": "1261", "attributes": { "latitude": -3.0386099815368652, "longitude": -60.04970169067383, "fullName": "Eduardo Gomes International Airport" } }, { "key": "1505", "attributes": { "latitude": -23.0074005127, "longitude": -47.1344985962, "fullName": "Viracopos International Airport" } }, { "key": "1495", "attributes": { "latitude": -22.910499572799996, "longitude": -43.1631011963, "fullName": "Santos Dumont Airport" } }, { "key": "110", "attributes": { "latitude": -16.631999969482422, "longitude": -49.220699310302734, "fullName": "Santa Genoveva Airport" } }, { "key": "1432", "attributes": { "latitude": -10.984000206, "longitude": -37.0703010559, "fullName": "Santa Maria Airport" } }, { "key": "1466", "attributes": { "latitude": -7.145833015440001, "longitude": -34.9486122131, "fullName": "Presidente Castro Pinto International Airport" } }, { "key": "604", "attributes": { "latitude": -25.5284996033, "longitude": -49.1758003235, "fullName": "Afonso Pena Airport" } }, { "key": "1445", "attributes": { "latitude": -23.626110076904297, "longitude": -46.65638732910156, "fullName": "Congonhas Airport" } }, { "key": "1478", "attributes": { "latitude": -5.768056, "longitude": -35.376111, "fullName": "Governador Aluízio Alves International Airport" } }, { "key": "1464", "attributes": { "latitude": -7.21895980835, "longitude": -39.270099639899996, "fullName": "Orlando Bezerra de Menezes Airport" } }, { "key": "111", "attributes": { "latitude": -11.885000228881836, "longitude": -55.58610916137695, "fullName": "Presidente João Batista Figueiredo Airport" } }, { "key": "115", "attributes": { "latitude": -20.816600799599996, "longitude": -49.40650177, "fullName": "Prof. Eribelto Manoel Reino State Airport" } }, { "key": "106", "attributes": { "latitude": -20.468700408900002, "longitude": -54.6725006104, "fullName": "Campo Grande Airport" } }, { "key": "1459", "attributes": { "latitude": -14.815999984741, "longitude": -39.033199310303, "fullName": "Bahia - Jorge Amado Airport" } }, { "key": "1455", "attributes": { "latitude": -3.776279926300049, "longitude": -38.53260040283203, "fullName": "Pinto Martins International Airport" } }, { "key": "1473", "attributes": { "latitude": -9.510809898376465, "longitude": -35.79169845581055, "fullName": "Zumbi dos Palmares Airport" } }, { "key": "1437", "attributes": { "latitude": -1.3792500495900002, "longitude": -48.4762992859, "fullName": "Val de Cans/Júlio Cezar Ribeiro International Airport" } }, { "key": "104", "attributes": { "latitude": -25.0002994537, "longitude": -53.500801086399996, "fullName": "Cascavel Airport" } }, { "key": "1469", "attributes": { "latitude": -23.333599090599996, "longitude": -51.1301002502, "fullName": "Governador José Richa Airport" } }, { "key": "1467", "attributes": { "latitude": -10.870800018299999, "longitude": -61.8465003967, "fullName": "Ji-Paraná Airport" } }, { "key": "1440", "attributes": { "latitude": -12.694399833679, "longitude": -60.098300933838, "fullName": "Brigadeiro Camarão Airport" } }, { "key": "1431", "attributes": { "latitude": -9.8663892746, "longitude": -56.1049995422, "fullName": "Piloto Osvaldo Marques Dias Airport" } }, { "key": "1475", "attributes": { "latitude": -23.479444503799996, "longitude": -52.01222229, "fullName": "Regional de Maringá - Sílvio Nane Junior Airport" } }, { "key": "1493", "attributes": { "latitude": -16.586, "longitude": -54.7248, "fullName": "Maestro Marinho Franco Airport" } }, { "key": "1480", "attributes": { "latitude": -11.496, "longitude": -61.4508, "fullName": "Cacoal Airport" } }, { "key": "1449", "attributes": { "latitude": -19.0119438171, "longitude": -57.6713905334, "fullName": "Corumbá International Airport" } }, { "key": "107", "attributes": { "latitude": -22.2019, "longitude": -54.926601, "fullName": "Dourados Airport" } }, { "key": "602", "attributes": { "latitude": -34.5592, "longitude": -58.4156, "fullName": "Jorge Newbery Airpark" } }, { "key": "779", "attributes": { "latitude": 35.2140007019043, "longitude": -80.94309997558594, "fullName": "Charlotte Douglas International Airport" } }, { "key": "1479", "attributes": { "latitude": -26.879999, "longitude": -48.651402, "fullName": "Ministro Victor Konder International Airport" } }, { "key": "1387", "attributes": { "latitude": -8.85837, "longitude": 13.2312, "fullName": "Quatro de Fevereiro Airport" } }, { "key": "112", "attributes": { "latitude": -19.851200103759766, "longitude": -43.950599670410156, "fullName": "Pampulha - Carlos Drummond de Andrade Airport" } }, { "key": "1484", "attributes": { "latitude": -28.243999, "longitude": -52.326599, "fullName": "Lauro Kurtz Airport" } }, { "key": "2543", "attributes": { "latitude": -25.454516, "longitude": -54.842682, "fullName": "Guarani International Airport" } }, { "key": "1465", "attributes": { "latitude": -26.22450065612793, "longitude": -48.797401428222656, "fullName": "Lauro Carneiro de Loyola Airport" } }, { "key": "1438", "attributes": { "latitude": -16.438601, "longitude": -39.080898, "fullName": "Porto Seguro Airport" } }, { "key": "913", "attributes": { "latitude": 42.212398529052734, "longitude": -83.35340118408203, "fullName": "Detroit Metropolitan Wayne County Airport" } }, { "key": "1158", "attributes": { "latitude": 13.0746002197, "longitude": -59.4925003052, "fullName": "Sir Grantley Adams International Airport" } }, { "key": "1096", "attributes": { "latitude": -17.421100616455078, "longitude": -66.1771011352539, "fullName": "Jorge Wilsterman International Airport" } }, { "key": "1434", "attributes": { "latitude": -21.1413002014, "longitude": -50.4247016907, "fullName": "Araçatuba Airport" } }, { "key": "117", "attributes": { "latitude": -19.764722824097, "longitude": -47.966110229492, "fullName": "Mário de Almeida Franco Airport" } }, { "key": "119", "attributes": { "latitude": -14.8627996445, "longitude": -40.8630981445, "fullName": "Vitória da Conquista Airport" } }, { "key": "882", "attributes": { "latitude": -32.9036, "longitude": -60.785, "fullName": "Islas Malvinas Airport" } }, { "key": "1460", "attributes": { "latitude": -19.470699310303, "longitude": -42.487598419189, "fullName": "Usiminas Airport" } }, { "key": "1488", "attributes": { "latitude": -18.672800064086914, "longitude": -46.4911994934082, "fullName": "Patos de Minas Airport" } }, { "key": "1477", "attributes": { "latitude": -16.706899642899998, "longitude": -43.818901062, "fullName": "Mário Ribeiro Airport" } }, { "key": "1444", "attributes": { "latitude": -22.921699523900003, "longitude": -42.074298858599995, "fullName": "Cabo Frio Airport" } }, { "key": "1496", "attributes": { "latitude": -23.22920036315918, "longitude": -45.86149978637695, "fullName": "Professor Urbano Ernesto Stumpf Airport" } }, { "key": "1456", "attributes": { "latitude": -18.89520072937, "longitude": -41.982200622559, "fullName": "Coronel Altino Machado de Oliveira Airport" } }, { "key": "1430", "attributes": { "latitude": -19.563199996948, "longitude": -46.960399627686, "fullName": "Romeu Zema Airport" } }, { "key": "1379", "attributes": { "latitude": -13.2621002197, "longitude": -43.4081001282, "fullName": "Bom Jesus da Lapa Airport" } }, { "key": "1482", "attributes": { "latitude": -9.4008798599243, "longitude": -38.250598907471, "fullName": "Paulo Afonso Airport" } }, { "key": "1470", "attributes": { "latitude": -12.4822998047, "longitude": -41.2770004272, "fullName": "Coronel Horácio de Mattos Airport" } }, { "key": "1450", "attributes": { "latitude": -7.26992, "longitude": -35.8964, "fullName": "Presidente João Suassuna Airport" } }, { "key": "120", "attributes": { "latitude": 40.783199310302734, "longitude": -91.12550354003906, "fullName": "Southeast Iowa Regional Airport" } }, { "key": "124", "attributes": { "latitude": 38.748697, "longitude": -90.370003, "fullName": "St Louis Lambert International Airport" } }, { "key": "121", "attributes": { "latitude": 39.834598541259766, "longitude": -88.8656997680664, "fullName": "Decatur Airport" } }, { "key": "122", "attributes": { "latitude": 35.83169937133789, "longitude": -90.64640045166016, "fullName": "Jonesboro Municipal Airport" } }, { "key": "377", "attributes": { "latitude": 51.113899231, "longitude": -114.019996643, "fullName": "Calgary International Airport" } }, { "key": "1326", "attributes": { "latitude": 37.362598, "longitude": -121.929001, "fullName": "Norman Y. Mineta San Jose International Airport" } }, { "key": "1351", "attributes": { "latitude": 43.460800170899994, "longitude": -80.3786010742, "fullName": "Waterloo Airport" } }, { "key": "914", "attributes": { "latitude": 38.0369987488, "longitude": -87.5324020386, "fullName": "Evansville Regional Airport" } }, { "key": "1275", "attributes": { "latitude": 30.691200256348, "longitude": -88.242797851562, "fullName": "Mobile Regional Airport" } }, { "key": "1214", "attributes": { "latitude": 19.292800903299998, "longitude": -81.3576965332, "fullName": "Owen Roberts International Airport" } }, { "key": "215", "attributes": { "latitude": 26.53619956970215, "longitude": -81.75520324707031, "fullName": "Southwest Florida International Airport" } }, { "key": "945", "attributes": { "latitude": 41.06700134277344, "longitude": -73.70760345458984, "fullName": "Westchester County Airport" } }, { "key": "1269", "attributes": { "latitude": 42.947200775146484, "longitude": -87.89659881591797, "fullName": "General Mitchell International Airport" } }, { "key": "1257", "attributes": { "latitude": 43.879002, "longitude": -91.256699, "fullName": "La Crosse Municipal Airport" } }, { "key": "3153", "attributes": { "latitude": 43.16949844, "longitude": -86.23819733, "fullName": "Muskegon County Airport" } }, { "key": "1167", "attributes": { "latitude": 43.5644, "longitude": -116.223, "fullName": "Boise Air Terminal/Gowen Field" } }, { "key": "2780", "attributes": { "latitude": 39.45759963989258, "longitude": -74.57720184326172, "fullName": "Atlantic City International Airport" } }, { "key": "1281", "attributes": { "latitude": 25.0389995575, "longitude": -77.46620178219999, "fullName": "Lynden Pindling International Airport" } }, { "key": "1316", "attributes": { "latitude": 32.12760162, "longitude": -81.20210266, "fullName": "Savannah Hilton Head International Airport" } }, { "key": "927", "attributes": { "latitude": 37.3255, "longitude": -79.975403, "fullName": "Roanoke–Blacksburg Regional Airport" } }, { "key": "911", "attributes": { "latitude": 38.37310028076172, "longitude": -81.59320068359375, "fullName": "Yeager Airport" } }, { "key": "1171", "attributes": { "latitude": 44.471900939899996, "longitude": -73.15329742429999, "fullName": "Burlington International Airport" } }, { "key": "390", "attributes": { "latitude": 20.521799087524414, "longitude": -103.31099700927734, "fullName": "Don Miguel Hidalgo Y Costilla International Airport" } }, { "key": "2032", "attributes": { "latitude": 46.8420982361, "longitude": -92.19360351559999, "fullName": "Duluth International Airport" } }, { "key": "1162", "attributes": { "latitude": 33.56290054, "longitude": -86.75350189, "fullName": "Birmingham-Shuttlesworth International Airport" } }, { "key": "1285", "attributes": { "latitude": 20.8986, "longitude": -156.429993, "fullName": "Kahului Airport" } }, { "key": "1184", "attributes": { "latitude": 39.998001, "longitude": -82.891899, "fullName": "John Glenn Columbus International Airport" } }, { "key": "917", "attributes": { "latitude": 36.097801208496094, "longitude": -79.93730163574219, "fullName": "Piedmont Triad International Airport" } }, { "key": "1150", "attributes": { "latitude": 43.99190139770508, "longitude": -76.02169799804688, "fullName": "Watertown International Airport" } }, { "key": "920", "attributes": { "latitude": 38.0364990234375, "longitude": -84.60590362548828, "fullName": "Blue Grass Airport" } }, { "key": "1303", "attributes": { "latitude": 44.0452995300293, "longitude": -103.05699920654297, "fullName": "Rapid City Regional Airport" } }, { "key": "1165", "attributes": { "latitude": 36.1245002746582, "longitude": -86.6781997680664, "fullName": "Nashville International Airport" } }, { "key": "918", "attributes": { "latitude": 34.8956985474, "longitude": -82.2189025879, "fullName": "Greenville Spartanburg International Airport" } }, { "key": "1792", "attributes": { "latitude": 43.64619827, "longitude": -70.30930328, "fullName": "Portland International Jetport Airport" } }, { "key": "1271", "attributes": { "latitude": 41.44850158691406, "longitude": -90.50749969482422, "fullName": "Quad City International Airport" } }, { "key": "1195", "attributes": { "latitude": 42.40200043, "longitude": -90.70950317, "fullName": "Dubuque Regional Airport" } }, { "key": "963", "attributes": { "latitude": 18.337299346923828, "longitude": -64.97339630126953, "fullName": "Cyril E. King Airport" } }, { "key": "1301", "attributes": { "latitude": 41.732601, "longitude": -71.420403, "fullName": "Theodore Francis Green State Airport" } }, { "key": "1210", "attributes": { "latitude": 42.96540069580078, "longitude": -83.74359893798828, "fullName": "Bishop International Airport" } }, { "key": "1336", "attributes": { "latitude": 42.40259933, "longitude": -96.38439941, "fullName": "Sioux Gateway Col. Bud Day Field" } }, { "key": "1278", "attributes": { "latitude": 43.13990020751953, "longitude": -89.3375015258789, "fullName": "Dane County Regional Truax Field" } }, { "key": "922", "attributes": { "latitude": 43.532901763916016, "longitude": -84.07959747314453, "fullName": "MBS International Airport" } }, { "key": "928", "attributes": { "latitude": 43.11119842529297, "longitude": -76.1063003540039, "fullName": "Syracuse Hancock International Airport" } }, { "key": "1229", "attributes": { "latitude": 34.637199401855, "longitude": -86.775100708008, "fullName": "Huntsville International Carl T Jones Field" } }, { "key": "1189", "attributes": { "latitude": 38.81809997558594, "longitude": -92.21959686279297, "fullName": "Columbia Regional Airport" } }, { "key": "1175", "attributes": { "latitude": 33.93880081176758, "longitude": -81.11949920654297, "fullName": "Columbia Metropolitan Airport" } }, { "key": "919", "attributes": { "latitude": 42.77870178222656, "longitude": -84.58740234375, "fullName": "Capital City Airport" } }, { "key": "1321", "attributes": { "latitude": 38.1744, "longitude": -85.736, "fullName": "Louisville International Standiford Field" } }, { "key": "1156", "attributes": { "latitude": 41.9388999939, "longitude": -72.68319702149999, "fullName": "Bradley International Airport" } }, { "key": "1188", "attributes": { "latitude": 38.805801, "longitude": -104.700996, "fullName": "City of Colorado Springs Municipal Airport" } }, { "key": "1324", "attributes": { "latitude": 37.24570084, "longitude": -93.38860321, "fullName": "Springfield Branson National Airport" } }, { "key": "2307", "attributes": { "latitude": 45.546600341796875, "longitude": -94.05989837646484, "fullName": "St Cloud Regional Airport" } }, { "key": "1322", "attributes": { "latitude": 47.449001, "longitude": -122.308998, "fullName": "Seattle Tacoma International Airport" } }, { "key": "1305", "attributes": { "latitude": 35.877601623535156, "longitude": -78.7874984741211, "fullName": "Raleigh Durham International Airport" } }, { "key": "373", "attributes": { "latitude": 53.309700012200004, "longitude": -113.580001831, "fullName": "Edmonton International Airport" } }, { "key": "1339", "attributes": { "latitude": 41.58679962, "longitude": -83.80780029, "fullName": "Toledo Express Airport" } }, { "key": "1287", "attributes": { "latitude": 41.3032, "longitude": -95.894096, "fullName": "Eppley Airfield" } }, { "key": "1172", "attributes": { "latitude": 42.94049835, "longitude": -78.73220062, "fullName": "Buffalo Niagara International Airport" } }, { "key": "1268", "attributes": { "latitude": 42.932598, "longitude": -71.435699, "fullName": "Manchester-Boston Regional Airport" } }, { "key": "1344", "attributes": { "latitude": 44.74140167236328, "longitude": -85.58219909667969, "fullName": "Cherry Capital Airport" } }, { "key": "1222", "attributes": { "latitude": 44.48509979248047, "longitude": -88.12960052490234, "fullName": "Austin Straubel International Airport" } }, { "key": "403", "attributes": { "latitude": 20.680099487304688, "longitude": -105.25399780273438, "fullName": "Licenciado Gustavo Díaz Ordaz International Airport" } }, { "key": "214", "attributes": { "latitude": 30.473400115967, "longitude": -87.186599731445, "fullName": "Pensacola Regional Airport" } }, { "key": "625", "attributes": { "latitude": 49.909999847399995, "longitude": -97.2398986816, "fullName": "Winnipeg / James Armstrong Richardson International Airport" } }, { "key": "3413", "attributes": { "latitude": 39.84410095, "longitude": -89.67790222, "fullName": "Abraham Lincoln Capital Airport" } }, { "key": "912", "attributes": { "latitude": 39.0488014221, "longitude": -84.6678009033, "fullName": "Cincinnati Northern Kentucky International Airport" } }, { "key": "924", "attributes": { "latitude": 35.04240036010742, "longitude": -89.97669982910156, "fullName": "Memphis International Airport" } }, { "key": "1320", "attributes": { "latitude": 40.8493003845, "longitude": -77.84870147710001, "fullName": "University Park Airport" } }, { "key": "915", "attributes": { "latitude": 40.97850037, "longitude": -85.19509888, "fullName": "Fort Wayne International Airport" } }, { "key": "1308", "attributes": { "latitude": 39.49909973144531, "longitude": -119.76799774169922, "fullName": "Reno Tahoe International Airport" } }, { "key": "1154", "attributes": { "latitude": 41.338500976599995, "longitude": -75.72339630130001, "fullName": "Wilkes Barre Scranton International Airport" } }, { "key": "1236", "attributes": { "latitude": 39.7173, "longitude": -86.294403, "fullName": "Indianapolis International Airport" } }, { "key": "1180", "attributes": { "latitude": 32.89860153, "longitude": -80.04049683, "fullName": "Charleston Air Force Base-International Airport" } }, { "key": "1140", "attributes": { "latitude": 35.040199, "longitude": -106.609001, "fullName": "Albuquerque International Sunport" } }, { "key": "1309", "attributes": { "latitude": 43.118900299072266, "longitude": -77.67240142822266, "fullName": "Greater Rochester International Airport" } }, { "key": "1152", "attributes": { "latitude": 30.194499969482422, "longitude": -97.6698989868164, "fullName": "Austin Bergstrom International Airport" } }, { "key": "149", "attributes": { "latitude": 46.7911, "longitude": -71.393303, "fullName": "Quebec Jean Lesage International Airport" } }, { "key": "1342", "attributes": { "latitude": 36.19839859008789, "longitude": -95.88809967041016, "fullName": "Tulsa International Airport" } }, { "key": "1519", "attributes": { "latitude": 44.258098602299995, "longitude": -88.5190963745, "fullName": "Appleton International Airport" } }, { "key": "1234", "attributes": { "latitude": 37.649899, "longitude": -97.433098, "fullName": "Wichita Eisenhower National Airport" } }, { "key": "212", "attributes": { "latitude": 26.68320083618164, "longitude": -80.09559631347656, "fullName": "Palm Beach International Airport" } }, { "key": "1329", "attributes": { "latitude": 40.78839874267578, "longitude": -111.97799682617188, "fullName": "Salt Lake City International Airport" } }, { "key": "1681", "attributes": { "latitude": 45.77750015, "longitude": -111.1529999, "fullName": "Gallatin Field" } }, { "key": "909", "attributes": { "latitude": 42.234901428222656, "longitude": -85.5521011352539, "fullName": "Kalamazoo Battle Creek International Airport" } }, { "key": "1350", "attributes": { "latitude": 44.8807983398, "longitude": -63.5085983276, "fullName": "Halifax / Stanfield International Airport" } }, { "key": "1147", "attributes": { "latitude": 42.557098388671875, "longitude": -92.40029907226562, "fullName": "Waterloo Regional Airport" } }, { "key": "931", "attributes": { "latitude": 36.281898, "longitude": -94.306801, "fullName": "Northwest Arkansas Regional Airport" } }, { "key": "1333", "attributes": { "latitude": 27.39539909362793, "longitude": -82.55439758300781, "fullName": "Sarasota Bradenton International Airport" } }, { "key": "1563", "attributes": { "latitude": 41.70869827270508, "longitude": -86.31729888916016, "fullName": "South Bend Regional Airport" } }, { "key": "406", "attributes": { "latitude": 23.15180015563965, "longitude": -109.72100067138672, "fullName": "Los Cabos International Airport" } }, { "key": "1311", "attributes": { "latitude": 43.90829849243164, "longitude": -92.5, "fullName": "Rochester International Airport" } }, { "key": "375", "attributes": { "latitude": 45.3224983215332, "longitude": -75.66919708251953, "fullName": "Ottawa Macdonald-Cartier International Airport" } }, { "key": "1192", "attributes": { "latitude": 44.7775993347, "longitude": -89.6668014526, "fullName": "Central Wisconsin Airport" } }, { "key": "1200", "attributes": { "latitude": 42.1599006652832, "longitude": -76.8916015625, "fullName": "Elmira Corning Regional Airport" } }, { "key": "408", "attributes": { "latitude": 33.67570114, "longitude": -117.8679962, "fullName": "John Wayne Airport-Orange County Airport" } }, { "key": "1164", "attributes": { "latitude": 40.47710037, "longitude": -88.91590118, "fullName": "Central Illinois Regional Airport at Bloomington-Normal" } }, { "key": "1289", "attributes": { "latitude": 36.89459991455078, "longitude": -76.20120239257812, "fullName": "Norfolk International Airport" } }, { "key": "1300", "attributes": { "latitude": 33.8297004699707, "longitude": -116.50700378417969, "fullName": "Palm Springs International Airport" } }, { "key": "1263", "attributes": { "latitude": 39.2976, "longitude": -94.713898, "fullName": "Kansas City International Airport" } }, { "key": "1419", "attributes": { "latitude": 43.035599, "longitude": -81.1539, "fullName": "London Airport" } }, { "key": "925", "attributes": { "latitude": 44.882, "longitude": -93.221802, "fullName": "Minneapolis-St Paul International/Wold-Chamberlain Airport" } }, { "key": "1262", "attributes": { "latitude": 18.503700256347656, "longitude": -77.91339874267578, "fullName": "Sangster International Airport" } }, { "key": "1174", "attributes": { "latitude": 39.1754, "longitude": -76.668297, "fullName": "Baltimore/Washington International Thurgood Marshall Airport" } }, { "key": "910", "attributes": { "latitude": 35.035301208496094, "longitude": -85.20379638671875, "fullName": "Lovell Field" } }, { "key": "1179", "attributes": { "latitude": 38.13859939575195, "longitude": -78.4529037475586, "fullName": "Charlottesville Albemarle Airport" } }, { "key": "1181", "attributes": { "latitude": 41.884700775146484, "longitude": -91.71080017089844, "fullName": "The Eastern Iowa Airport" } }, { "key": "1197", "attributes": { "latitude": 39.861698150635, "longitude": -104.672996521, "fullName": "Denver International Airport" } }, { "key": "1286", "attributes": { "latitude": 35.39310073852539, "longitude": -97.60070037841797, "fullName": "Will Rogers World Airport" } }, { "key": "1294", "attributes": { "latitude": 33.43429946899414, "longitude": -112.01200103759766, "fullName": "Phoenix Sky Harbor International Airport" } }, { "key": "1255", "attributes": { "latitude": 34.729400634799994, "longitude": -92.2242965698, "fullName": "Bill & Hillary Clinton National Airport/Adams Field" } }, { "key": "1201", "attributes": { "latitude": 31.80719948, "longitude": -106.3779984, "fullName": "El Paso International Airport" } }, { "key": "1331", "attributes": { "latitude": 38.69540023803711, "longitude": -121.59100341796875, "fullName": "Sacramento International Airport" } }, { "key": "405", "attributes": { "latitude": 29.533700942993164, "longitude": -98.46980285644531, "fullName": "San Antonio International Airport" } }, { "key": "921", "attributes": { "latitude": 40.77719879, "longitude": -73.87259674, "fullName": "La Guardia Airport" } }, { "key": "1417", "attributes": { "latitude": 52.170799255371094, "longitude": -106.69999694824219, "fullName": "Saskatoon John G. Diefenbaker International Airport" } }, { "key": "3142", "attributes": { "latitude": 38.950901031499995, "longitude": -95.66359710690001, "fullName": "Topeka Regional Airport - Forbes Field" } }, { "key": "3137", "attributes": { "latitude": 47.168399810791016, "longitude": -88.48909759521484, "fullName": "Houghton County Memorial Airport" } }, { "key": "1153", "attributes": { "latitude": 35.43619918823242, "longitude": -82.54180145263672, "fullName": "Asheville Regional Airport" } }, { "key": "205", "attributes": { "latitude": 30.49410057067871, "longitude": -81.68789672851562, "fullName": "Jacksonville International Airport" } }, { "key": "257", "attributes": { "latitude": 18.041000366200002, "longitude": -63.1088981628, "fullName": "Princess Juliana International Airport" } }, { "key": "1138", "attributes": { "latitude": 40.652099609375, "longitude": -75.44080352783203, "fullName": "Lehigh Valley International Airport" } }, { "key": "1315", "attributes": { "latitude": 32.7336006165, "longitude": -117.190002441, "fullName": "San Diego International Airport" } }, { "key": "1182", "attributes": { "latitude": 41.4117012024, "longitude": -81.8498001099, "fullName": "Cleveland Hopkins International Airport" } }, { "key": "1196", "attributes": { "latitude": 38.8521, "longitude": -77.037697, "fullName": "Ronald Reagan Washington National Airport" } }, { "key": "1307", "attributes": { "latitude": 37.50519943237305, "longitude": -77.3197021484375, "fullName": "Richmond International Airport" } }, { "key": "1296", "attributes": { "latitude": 40.49150085, "longitude": -80.23290253, "fullName": "Pittsburgh International Airport" } }, { "key": "1279", "attributes": { "latitude": 33.6796989441, "longitude": -78.9282989502, "fullName": "Myrtle Beach International Airport" } }, { "key": "1295", "attributes": { "latitude": 40.664199829100006, "longitude": -89.6932983398, "fullName": "General Wayne A. Downing Peoria International Airport" } }, { "key": "1211", "attributes": { "latitude": 43.582000732400004, "longitude": -96.741897583, "fullName": "Joe Foss Field Airport" } }, { "key": "933", "attributes": { "latitude": 42.74829864501953, "longitude": -73.80169677734375, "fullName": "Albany International Airport" } }, { "key": "399", "attributes": { "latitude": 25.7784996033, "longitude": -100.107002258, "fullName": "General Mariano Escobedo International Airport" } }, { "key": "1407", "attributes": { "latitude": 50.43190002441406, "longitude": -104.66600036621094, "fullName": "Regina International Airport" } }, { "key": "1194", "attributes": { "latitude": 39.902400970458984, "longitude": -84.21939849853516, "fullName": "James M Cox Dayton International Airport" } }, { "key": "1267", "attributes": { "latitude": 39.14099884033203, "longitude": -96.6707992553711, "fullName": "Manhattan Regional Airport" } }, { "key": "930", "attributes": { "latitude": 35.81100082, "longitude": -83.9940033, "fullName": "McGhee Tyson Airport" } }, { "key": "3156", "attributes": { "latitude": 37.06079864501953, "longitude": -88.7738037109375, "fullName": "Barkley Regional Airport" } }, { "key": "1276", "attributes": { "latitude": 46.353599548300004, "longitude": -87.395401001, "fullName": "Sawyer International Airport" } }, { "key": "1291", "attributes": { "latitude": 45.58869934, "longitude": -122.5979996, "fullName": "Portland International Airport" } }, { "key": "1199", "attributes": { "latitude": 41.534000396728516, "longitude": -93.66310119628906, "fullName": "Des Moines International Airport" } }, { "key": "1225", "attributes": { "latitude": 42.88079834, "longitude": -85.52279663, "fullName": "Gerald R. Ford International Airport" } }, { "key": "1185", "attributes": { "latitude": 40.03919983, "longitude": -88.27809906, "fullName": "University of Illinois Willard Airport" } }, { "key": "1176", "attributes": { "latitude": 40.916099548339844, "longitude": -81.44219970703125, "fullName": "Akron Canton Regional Airport" } }, { "key": "2043", "attributes": { "latitude": 40.85100173950195, "longitude": -96.75920104980469, "fullName": "Lincoln Airport" } }, { "key": "1205", "attributes": { "latitude": 46.92070007324219, "longitude": -96.81580352783203, "fullName": "Hector International Airport" } }, { "key": "923", "attributes": { "latitude": 40.1935005188, "longitude": -76.7633972168, "fullName": "Harrisburg International Airport" } }, { "key": "3139", "attributes": { "latitude": 44.86579895019531, "longitude": -91.48429870605469, "fullName": "Chippewa Valley Regional Airport" } }, { "key": "1343", "attributes": { "latitude": 32.1161003112793, "longitude": -110.94100189208984, "fullName": "Tucson International Airport" } }, { "key": "926", "attributes": { "latitude": 29.99340057373047, "longitude": -90.25800323486328, "fullName": "Louis Armstrong New Orleans International Airport" } }, { "key": "1241", "attributes": { "latitude": 32.3111991882, "longitude": -90.0758972168, "fullName": "Jackson-Medgar Wiley Evers International Airport" } }, { "key": "1228", "attributes": { "latitude": 29.64539909, "longitude": -95.27890015, "fullName": "William P Hobby Airport" } }, { "key": "956", "attributes": { "latitude": 37.74010086, "longitude": -87.16680145, "fullName": "Owensboro Daviess County Airport" } }, { "key": "953", "attributes": { "latitude": 37.75500107, "longitude": -89.01110077, "fullName": "Williamson County Regional Airport" } }, { "key": "939", "attributes": { "latitude": 37.22529983520508, "longitude": -89.57080078125, "fullName": "Cape Girardeau Regional Airport" } }, { "key": "1552", "attributes": { "latitude": 41.785999, "longitude": -87.752403, "fullName": "Chicago Midway International Airport" } }, { "key": "966", "attributes": { "latitude": 39.94269943, "longitude": -91.19460297, "fullName": "Quincy Regional Baldwin Field" } }, { "key": "948", "attributes": { "latitude": 40.09349822998047, "longitude": -92.5448989868164, "fullName": "Kirksville Regional Airport" } }, { "key": "1532", "attributes": { "latitude": 30.357106, "longitude": -85.795414, "fullName": "Northwest Florida Beaches International Airport" } }, { "key": "965", "attributes": { "latitude": 37.74160004, "longitude": -92.14070129, "fullName": "Waynesville-St. Robert Regional Forney field" } }, { "key": "1526", "attributes": { "latitude": 32.847099, "longitude": -96.851799, "fullName": "Dallas Love Field" } }, { "key": "128", "attributes": { "latitude": 55.35559845, "longitude": -131.7140045, "fullName": "Ketchikan International Airport" } }, { "key": "1243", "attributes": { "latitude": 58.35499954223633, "longitude": -134.5760040283203, "fullName": "Juneau International Airport" } }, { "key": "2593", "attributes": { "latitude": 55.206298828125, "longitude": -132.8280029296875, "fullName": "Hydaburg Seaplane Base" } }, { "key": "2462", "attributes": { "latitude": 55.579200744599994, "longitude": -133.076004028, "fullName": "Klawock Airport" } }, { "key": "1700", "attributes": { "latitude": 56.48429871, "longitude": -132.3699951, "fullName": "Wrangell Airport" } }, { "key": "1697", "attributes": { "latitude": 57.04710006713867, "longitude": -135.36199951171875, "fullName": "Sitka Rocky Gutierrez Airport" } }, { "key": "129", "attributes": { "latitude": 55.131001, "longitude": -131.578003, "fullName": "Metlakatla Seaplane Base" } }, { "key": "227", "attributes": { "latitude": 33.9272994995, "longitude": -4.977960109709999, "fullName": "Saïss Airport" } }, { "key": "499", "attributes": { "latitude": 36.744598388671875, "longitude": -6.060110092163086, "fullName": "Jerez Airport" } }, { "key": "3183", "attributes": { "latitude": 38.891300201416016, "longitude": -6.8213300704956055, "fullName": "Badajoz Airport" } }, { "key": "439", "attributes": { "latitude": 41.138901, "longitude": 16.760599, "fullName": "Bari Karol Wojtyła Airport" } }, { "key": "2262", "attributes": { "latitude": 58.78860092163086, "longitude": 16.912200927734375, "fullName": "Stockholm Skavsta Airport" } }, { "key": "1253", "attributes": { "latitude": 31.5216007232666, "longitude": 74.40360260009766, "fullName": "Alama Iqbal International Airport" } }, { "key": "2466", "attributes": { "latitude": 43.35649871826172, "longitude": -1.7906099557876587, "fullName": "San Sebastian Airport" } }, { "key": "1766", "attributes": { "latitude": 43.302101, "longitude": -8.37726, "fullName": "A Coruña Airport" } }, { "key": "2095", "attributes": { "latitude": 59.378817, "longitude": 10.785439, "fullName": "Moss Airport, Rygge" } }, { "key": "1778", "attributes": { "latitude": 45.809898376464844, "longitude": 21.337900161743164, "fullName": "Timişoara Traian Vuia Airport" } }, { "key": "1760", "attributes": { "latitude": 46.78519821166992, "longitude": 23.686199188232422, "fullName": "Cluj-Napoca International Airport" } }, { "key": "234", "attributes": { "latitude": 35.726898193400004, "longitude": -5.91689014435, "fullName": "Ibn Batouta Airport" } }, { "key": "1592", "attributes": { "latitude": 35.6239013672, "longitude": -0.6211829781529999, "fullName": "Es Senia Airport" } }, { "key": "2274", "attributes": { "latitude": 41.7061004639, "longitude": -4.85194015503, "fullName": "Valladolid Airport" } }, { "key": "1364", "attributes": { "latitude": 36.84389877319336, "longitude": -2.3701000213623047, "fullName": "Almería International Airport" } }, { "key": "2471", "attributes": { "latitude": 42.357601, "longitude": -3.62076, "fullName": "Burgos Airport" } }, { "key": "2468", "attributes": { "latitude": 42.5890007019043, "longitude": -5.65556001663208, "fullName": "Leon Airport" } }, { "key": "2473", "attributes": { "latitude": 40.95209884643555, "longitude": -5.501989841461182, "fullName": "Salamanca Airport" } }, { "key": "230", "attributes": { "latitude": 34.988800048799995, "longitude": -3.0282099247, "fullName": "Nador International Airport" } }, { "key": "1810", "attributes": { "latitude": 37.18870162963867, "longitude": -3.777359962463379, "fullName": "Federico Garcia Lorca Airport" } }, { "key": "1312", "attributes": { "latitude": 51.956902, "longitude": 4.43722, "fullName": "Rotterdam The Hague Airport" } }, { "key": "3084", "attributes": { "latitude": 46.914100647, "longitude": 7.497149944309999, "fullName": "Bern Belp Airport" } }, { "key": "448", "attributes": { "latitude": 51.51829910279999, "longitude": 7.61223983765, "fullName": "Dortmund Airport" } }, { "key": "1557", "attributes": { "latitude": 3.722559928894043, "longitude": 11.553299903869629, "fullName": "Yaoundé Nsimalen International Airport" } }, { "key": "1384", "attributes": { "latitude": -4.38575, "longitude": 15.4446, "fullName": "Ndjili International Airport" } }, { "key": "1521", "attributes": { "latitude": 4.39847993850708, "longitude": 18.518800735473633, "fullName": "Bangui M'Poko International Airport" } }, { "key": "2950", "attributes": { "latitude": 9.33588981628418, "longitude": 13.370100021362305, "fullName": "Garoua International Airport" } }, { "key": "2951", "attributes": { "latitude": 10.451399803161621, "longitude": 14.257399559020996, "fullName": "Salak Airport" } }, { "key": "1093", "attributes": { "latitude": 41.4146995544, "longitude": 19.7206001282, "fullName": "Tirana International Airport Mother Teresa" } }, { "key": "1811", "attributes": { "latitude": 54.08330154418945, "longitude": -4.623889923095703, "fullName": "Isle of Man Airport" } }, { "key": "248", "attributes": { "latitude": 17.1367, "longitude": -61.792702, "fullName": "V.C. Bird International Airport" } }, { "key": "1155", "attributes": { "latitude": 32.36399841308594, "longitude": -64.67870330810547, "fullName": "L.F. Wade International International Airport" } }, { "key": "780", "attributes": { "latitude": 17.935699462890625, "longitude": -76.7874984741211, "fullName": "Norman Manley International Airport" } }, { "key": "461", "attributes": { "latitude": 36.399200439453125, "longitude": 25.479299545288086, "fullName": "Santorini Airport" } }, { "key": "1071", "attributes": { "latitude": 38.12009811401367, "longitude": 20.500499725341797, "fullName": "Kefallinia Airport" } }, { "key": "1553", "attributes": { "latitude": -20.430201, "longitude": 57.683601, "fullName": "Sir Seewoosagur Ramgoolam International Airport" } }, { "key": "475", "attributes": { "latitude": 50.44060134887695, "longitude": -4.995409965515137, "fullName": "Newquay Cornwall Airport" } }, { "key": "2450", "attributes": { "latitude": 16.7414, "longitude": -22.9494, "fullName": "Amílcar Cabral International Airport" } }, { "key": "2644", "attributes": { "latitude": 16.136499404907227, "longitude": -22.888900756835938, "fullName": "Rabil Airport" } }, { "key": "229", "attributes": { "latitude": 43.57619857788086, "longitude": 3.96301007270813, "fullName": "Montpellier-Méditerranée Airport" } }, { "key": "1371", "attributes": { "latitude": 38.925498962402344, "longitude": 20.765300750732422, "fullName": "Aktion National Airport" } }, { "key": "785", "attributes": { "latitude": 10.595399856567383, "longitude": -61.33720016479492, "fullName": "Piarco International Airport" } }, { "key": "1094", "attributes": { "latitude": 37.7509, "longitude": 20.8843, "fullName": "Zakynthos International Airport \"Dionysios Solomos\"" } }, { "key": "1347", "attributes": { "latitude": 13.7332, "longitude": -60.952599, "fullName": "Hewanorra International Airport" } }, { "key": "1161", "attributes": { "latitude": 54.618099212646484, "longitude": -5.872499942779541, "fullName": "George Best Belfast City Airport" } }, { "key": "1361", "attributes": { "latitude": 47.260201, "longitude": 11.344, "fullName": "Innsbruck Airport" } }, { "key": "1370", "attributes": { "latitude": 37.7411994934, "longitude": -25.6979007721, "fullName": "João Paulo II Airport" } }, { "key": "1585", "attributes": { "latitude": 31.673000335699996, "longitude": 6.140439987180001, "fullName": "Oued Irara Airport" } }, { "key": "1217", "attributes": { "latitude": 36.1511993408, "longitude": -5.3496599197400005, "fullName": "Gibraltar Airport" } }, { "key": "1386", "attributes": { "latitude": -1.96863, "longitude": 30.1395, "fullName": "Kigali International Airport" } }, { "key": "3253", "attributes": { "latitude": 6.316979885101318, "longitude": 5.5995001792907715, "fullName": "Benin Airport" } }, { "key": "3259", "attributes": { "latitude": 10.696000099182129, "longitude": 7.320109844207764, "fullName": "Kaduna Airport" } }, { "key": "1558", "attributes": { "latitude": 5.0154900550842285, "longitude": 6.94959020614624, "fullName": "Port Harcourt International Airport" } }, { "key": "3252", "attributes": { "latitude": 6.204167, "longitude": 6.665278, "fullName": "Asaba International Airport" } }, { "key": "3261", "attributes": { "latitude": 5.59611, "longitude": 5.81778, "fullName": "Warri Airport" } }, { "key": "2696", "attributes": { "latitude": 12.0476, "longitude": 8.52462, "fullName": "Mallam Aminu International Airport" } }, { "key": "3262", "attributes": { "latitude": 4.8725, "longitude": 8.093, "fullName": "Akwa Ibom International Airport" } }, { "key": "3254", "attributes": { "latitude": 4.976019859313965, "longitude": 8.347200393676758, "fullName": "Margaret Ekpo International Airport" } }, { "key": "3258", "attributes": { "latitude": 9.639829635620117, "longitude": 8.869050025939941, "fullName": "Yakubu Gowon Airport" } }, { "key": "2169", "attributes": { "latitude": 6.474269866943359, "longitude": 7.561960220336914, "fullName": "Akanu Ibiam International Airport" } }, { "key": "3260", "attributes": { "latitude": 5.427060127258301, "longitude": 7.206029891967773, "fullName": "Sam Mbakwe International Airport" } }, { "key": "139", "attributes": { "latitude": 60.818599700927734, "longitude": -78.14859771728516, "fullName": "Akulivik Airport" } }, { "key": "148", "attributes": { "latitude": 60.05059814453125, "longitude": -77.28690338134766, "fullName": "Puvirnituq Airport" } }, { "key": "143", "attributes": { "latitude": 62.417301177978516, "longitude": -77.92530059814453, "fullName": "Ivujivik Airport" } }, { "key": "140", "attributes": { "latitude": 58.71139907836914, "longitude": -65.9927978515625, "fullName": "Kangiqsualujjuaq (Georges River) Airport" } }, { "key": "156", "attributes": { "latitude": 58.096099853515625, "longitude": -68.4269027709961, "fullName": "Kuujjuaq Airport" } }, { "key": "141", "attributes": { "latitude": 53.625301361083984, "longitude": -77.7042007446289, "fullName": "La Grande Rivière Airport" } }, { "key": "142", "attributes": { "latitude": 55.281898498535156, "longitude": -77.76529693603516, "fullName": "Kuujjuarapik Airport" } }, { "key": "155", "attributes": { "latitude": 48.20610046386719, "longitude": -78.83560180664062, "fullName": "Rouyn Noranda Airport" } }, { "key": "3356", "attributes": { "latitude": 53.805599212646484, "longitude": -78.91690063476562, "fullName": "Chisasibi Airport" } }, { "key": "151", "attributes": { "latitude": 56.5377998352, "longitude": -79.2466964722, "fullName": "Sanikiluaq Airport" } }, { "key": "146", "attributes": { "latitude": 58.471900939941406, "longitude": -78.07689666748047, "fullName": "Inukjuak Airport" } }, { "key": "153", "attributes": { "latitude": 56.53609848022461, "longitude": -76.51830291748047, "fullName": "Umiujaq Airport" } }, { "key": "159", "attributes": { "latitude": 62.17940139770508, "longitude": -75.66719818115234, "fullName": "Salluit Airport" } }, { "key": "144", "attributes": { "latitude": 60.027198791503906, "longitude": -69.99919891357422, "fullName": "Kangirsuk Airport" } }, { "key": "147", "attributes": { "latitude": 59.29669952392578, "longitude": -69.59970092773438, "fullName": "Aupaluk Airport" } }, { "key": "150", "attributes": { "latitude": 61.0463981628418, "longitude": -69.6177978515625, "fullName": "Quaqtaq Airport" } }, { "key": "145", "attributes": { "latitude": 54.805301666259766, "longitude": -66.8052978515625, "fullName": "Schefferville Airport" } }, { "key": "160", "attributes": { "latitude": 50.22330093383789, "longitude": -66.2656021118164, "fullName": "Sept-Îles Airport" } }, { "key": "158", "attributes": { "latitude": 52.92190170288086, "longitude": -66.8644027709961, "fullName": "Wabush Airport" } }, { "key": "152", "attributes": { "latitude": 58.66780090332031, "longitude": -69.95580291748047, "fullName": "Tasiujaq Airport" } }, { "key": "2844", "attributes": { "latitude": 45.5175018311, "longitude": -73.4169006348, "fullName": "Montréal / Saint-Hubert Airport" } }, { "key": "2845", "attributes": { "latitude": 48.07109832763672, "longitude": -65.46029663085938, "fullName": "Bonaventure Airport" } }, { "key": "1400", "attributes": { "latitude": 47.42470169067383, "longitude": -61.778099060058594, "fullName": "Îles-de-la-Madeleine Airport" } }, { "key": "1415", "attributes": { "latitude": 43.627499, "longitude": -79.396202, "fullName": "Billy Bishop Toronto City Centre Airport" } }, { "key": "1392", "attributes": { "latitude": 49.13249969482422, "longitude": -68.20439910888672, "fullName": "Baie Comeau Airport" } }, { "key": "1425", "attributes": { "latitude": 48.60860061645508, "longitude": -68.20809936523438, "fullName": "Mont Joli Airport" } }, { "key": "1399", "attributes": { "latitude": 48.7752990723, "longitude": -64.4785995483, "fullName": "Gaspé (Michel-Pouliot) Airport" } }, { "key": "157", "attributes": { "latitude": 61.5886001587, "longitude": -71.929397583, "fullName": "Kangiqsujuaq (Wakeham Bay) Airport" } }, { "key": "1298", "attributes": { "latitude": 19.75790023803711, "longitude": -70.56999969482422, "fullName": "Gregorio Luperon International Airport" } }, { "key": "1424", "attributes": { "latitude": 47.618598938, "longitude": -52.7518997192, "fullName": "St. John's International Airport" } }, { "key": "1429", "attributes": { "latitude": 24.06329917907715, "longitude": -74.52400207519531, "fullName": "San Salvador Airport" } }, { "key": "1428", "attributes": { "latitude": 47.629699707, "longitude": -65.738899231, "fullName": "Bathurst Airport" } }, { "key": "1388", "attributes": { "latitude": 22.49220085144043, "longitude": -79.943603515625, "fullName": "Abel Santamaria Airport" } }, { "key": "1890", "attributes": { "latitude": 21.6165008545, "longitude": -81.5459976196, "fullName": "Vilo Acuña International Airport" } }, { "key": "251", "attributes": { "latitude": 14.590999603271484, "longitude": -61.00320053100586, "fullName": "Martinique Aimé Césaire International Airport" } }, { "key": "1381", "attributes": { "latitude": 19.2670001984, "longitude": -69.7419967651, "fullName": "Samaná El Catey International Airport" } }, { "key": "1406", "attributes": { "latitude": 46.11220169067383, "longitude": -64.67859649658203, "fullName": "Greater Moncton International Airport" } }, { "key": "1416", "attributes": { "latitude": 48.0532989502, "longitude": -77.7827987671, "fullName": "Val-d'Or Airport" } }, { "key": "2880", "attributes": { "latitude": 46.762901306152344, "longitude": -56.173099517822266, "fullName": "St Pierre Airport" } }, { "key": "783", "attributes": { "latitude": 18.579999923706055, "longitude": -72.2925033569336, "fullName": "Toussaint Louverture International Airport" } }, { "key": "1393", "attributes": { "latitude": 48.33060073852539, "longitude": -70.99639892578125, "fullName": "CFB Bagotville" } }, { "key": "1383", "attributes": { "latitude": 22.461000442499998, "longitude": -78.32839965820001, "fullName": "Jardines Del Rey Airport" } }, { "key": "252", "attributes": { "latitude": 16.265301, "longitude": -61.531799, "fullName": "Pointe-à-Pitre Le Raizet" } }, { "key": "1413", "attributes": { "latitude": 45.31610107421875, "longitude": -65.89029693603516, "fullName": "Saint John Airport" } }, { "key": "1422", "attributes": { "latitude": 46.290000915527344, "longitude": -63.12110137939453, "fullName": "Charlottetown Airport" } }, { "key": "1963", "attributes": { "latitude": 21.420299530029297, "longitude": -77.84750366210938, "fullName": "Ignacio Agramonte International Airport" } }, { "key": "3358", "attributes": { "latitude": 49.77190017700195, "longitude": -74.5280990600586, "fullName": "Chapais Airport" } }, { "key": "389", "attributes": { "latitude": 20.52239990234375, "longitude": -86.92559814453125, "fullName": "Cozumel International Airport" } }, { "key": "1385", "attributes": { "latitude": 20.785600662231445, "longitude": -76.31510162353516, "fullName": "Frank Pais International Airport" } }, { "key": "1397", "attributes": { "latitude": 45.868900299072266, "longitude": -66.53720092773438, "fullName": "Fredericton Airport" } }, { "key": "615", "attributes": { "latitude": 63.756402, "longitude": -68.555801, "fullName": "Iqaluit Airport" } }, { "key": "1423", "attributes": { "latitude": 53.3191986084, "longitude": -60.4258003235, "fullName": "Goose Bay Airport" } }, { "key": "2855", "attributes": { "latitude": 53.5619010925293, "longitude": -64.10639953613281, "fullName": "Churchill Falls Airport" } }, { "key": "2848", "attributes": { "latitude": 47.990799, "longitude": -66.330299, "fullName": "Charlo Airport" } }, { "key": "2946", "attributes": { "latitude": 50.189998626708984, "longitude": -61.78919982910156, "fullName": "Natashquan Airport" } }, { "key": "2843", "attributes": { "latitude": 50.281898498535156, "longitude": -63.61140060424805, "fullName": "Havre St Pierre Airport" } }, { "key": "2947", "attributes": { "latitude": 49.83639907836914, "longitude": -64.2885971069336, "fullName": "Port Menier Airport" } }, { "key": "2948", "attributes": { "latitude": 50.259701, "longitude": -60.679401, "fullName": "La Romaine Airport" } }, { "key": "161", "attributes": { "latitude": 11.547300338745117, "longitude": 43.15950012207031, "fullName": "Djibouti-Ambouli Airport" } }, { "key": "162", "attributes": { "latitude": 2.0144400596618652, "longitude": 45.3046989440918, "fullName": "Aden Adde International Airport" } }, { "key": "1538", "attributes": { "latitude": -11.5337, "longitude": 43.2719, "fullName": "Prince Said Ibrahim International Airport" } }, { "key": "2239", "attributes": { "latitude": 13.6859998703, "longitude": 44.139099121099996, "fullName": "Ta'izz International Airport" } }, { "key": "2168", "attributes": { "latitude": 9.624699592590332, "longitude": 41.85419845581055, "fullName": "Aba Tenna Dejazmach Yilma International Airport" } }, { "key": "2118", "attributes": { "latitude": 15.476300239562988, "longitude": 44.21969985961914, "fullName": "Sana'a International Airport" } }, { "key": "1782", "attributes": { "latitude": 9.518170356750488, "longitude": 44.08879852294922, "fullName": "Egal International Airport" } }, { "key": "2581", "attributes": { "latitude": 6.78082990646, "longitude": 47.45470047, "fullName": "Galcaio Airport" } }, { "key": "1788", "attributes": { "latitude": 1.73324, "longitude": 40.091599, "fullName": "Wajir Airport" } }, { "key": "2579", "attributes": { "latitude": 10.389200210571289, "longitude": 44.94110107421875, "fullName": "Berbera Airport" } }, { "key": "1133", "attributes": { "latitude": 0.042386, "longitude": 32.443501, "fullName": "Entebbe International Airport" } }, { "key": "2625", "attributes": { "latitude": -2.4444899559020996, "longitude": 32.932701110839844, "fullName": "Mwanza Airport" } }, { "key": "2167", "attributes": { "latitude": -15.679100036621094, "longitude": 34.9739990234375, "fullName": "Chileka International Airport" } }, { "key": "1551", "attributes": { "latitude": -17.821800231933594, "longitude": 25.82270050048828, "fullName": "Livingstone Airport" } }, { "key": "555", "attributes": { "latitude": 0.4044579863548279, "longitude": 35.23889923095703, "fullName": "Eldoret International Airport" } }, { "key": "2624", "attributes": { "latitude": -15.105600357055664, "longitude": 39.28179931640625, "fullName": "Nampula Airport" } }, { "key": "1541", "attributes": { "latitude": -3.42940998077, "longitude": 37.0745010376, "fullName": "Kilimanjaro International Airport" } }, { "key": "1772", "attributes": { "latitude": -4.67434, "longitude": 55.521801, "fullName": "Seychelles International Airport" } }, { "key": "559", "attributes": { "latitude": 3.1219699382781982, "longitude": 35.608699798583984, "fullName": "Lodwar Airport" } }, { "key": "1527", "attributes": { "latitude": -6.87811, "longitude": 39.202599, "fullName": "Julius Nyerere International Airport" } }, { "key": "2511", "attributes": { "latitude": 15.291899681091309, "longitude": 38.910701751708984, "fullName": "Asmara International Airport" } }, { "key": "1539", "attributes": { "latitude": -17.931801, "longitude": 31.0928, "fullName": "Robert Gabriel Mugabe International Airport" } }, { "key": "1567", "attributes": { "latitude": -18.7969, "longitude": 47.478802, "fullName": "Ivato Airport" } }, { "key": "556", "attributes": { "latitude": 4.87201023102, "longitude": 31.6011009216, "fullName": "Juba International Airport" } }, { "key": "1382", "attributes": { "latitude": -3.3240199089050293, "longitude": 29.318500518798828, "fullName": "Bujumbura International Airport" } }, { "key": "1550", "attributes": { "latitude": -15.3308000565, "longitude": 28.4526004791, "fullName": "Kenneth Kaunda International Airport Lusaka" } }, { "key": "1548", "attributes": { "latitude": -13.7894001007, "longitude": 33.78099823, "fullName": "Lilongwe International Airport" } }, { "key": "2626", "attributes": { "latitude": -12.991762161254883, "longitude": 40.52401351928711, "fullName": "Pemba Airport" } }, { "key": "560", "attributes": { "latitude": -4.034830093383789, "longitude": 39.594200134277344, "fullName": "Mombasa Moi International Airport" } }, { "key": "1866", "attributes": { "latitude": -24.555201, "longitude": 25.9182, "fullName": "Sir Seretse Khama International Airport" } }, { "key": "2177", "attributes": { "latitude": -25.920799, "longitude": 32.572601, "fullName": "Maputo Airport" } }, { "key": "562", "attributes": { "latitude": -6.22202, "longitude": 39.224899, "fullName": "Abeid Amani Karume International Airport" } }, { "key": "1530", "attributes": { "latitude": -12.804699897766113, "longitude": 45.28110122680664, "fullName": "Dzaoudzi Pamandzi International Airport" } }, { "key": "1878", "attributes": { "latitude": -11.5913000107, "longitude": 27.5308990479, "fullName": "Lubumbashi International Airport" } }, { "key": "561", "attributes": { "latitude": -3.2293100357055664, "longitude": 40.10169982910156, "fullName": "Malindi Airport" } }, { "key": "557", "attributes": { "latitude": -0.0861390009522438, "longitude": 34.72890090942383, "fullName": "Kisumu Airport" } }, { "key": "1995", "attributes": { "latitude": -12.998100280762, "longitude": 28.66489982605, "fullName": "Simon Mwansa Kapwepwe International Airport" } }, { "key": "1622", "attributes": { "latitude": 6.93320989609, "longitude": 100.392997742, "fullName": "Hat Yai International Airport" } }, { "key": "1191", "attributes": { "latitude": 42.77519989013672, "longitude": 141.69200134277344, "fullName": "New Chitose Airport" } }, { "key": "1641", "attributes": { "latitude": 9.13259983063, "longitude": 99.135597229, "fullName": "Surat Thani Airport" } }, { "key": "262", "attributes": { "latitude": 29.719200134277344, "longitude": 106.64199829101562, "fullName": "Chongqing Jiangbei International Airport" } }, { "key": "299", "attributes": { "latitude": 29.82670021057129, "longitude": 121.46199798583984, "fullName": "Ningbo Lishe International Airport" } }, { "key": "260", "attributes": { "latitude": 34.519699096699995, "longitude": 113.841003418, "fullName": "Zhengzhou Xinzheng International Airport" } }, { "key": "179", "attributes": { "latitude": 23.552, "longitude": 116.5033, "fullName": "Jieyang Chaoshan International Airport" } }, { "key": "287", "attributes": { "latitude": 25.1019444, "longitude": 102.9291667, "fullName": "Kunming Changshui International Airport" } }, { "key": "264", "attributes": { "latitude": 30.578500747680664, "longitude": 103.9469985961914, "fullName": "Chengdu Shuangliu International Airport" } }, { "key": "2209", "attributes": { "latitude": 16.466600418099997, "longitude": 102.783996582, "fullName": "Khon Kaen Airport" } }, { "key": "172", "attributes": { "latitude": 5.297140121459961, "longitude": 100.2770004272461, "fullName": "Penang International Airport" } }, { "key": "2016", "attributes": { "latitude": 15.2512998581, "longitude": 104.870002747, "fullName": "Ubon Ratchathani Airport" } }, { "key": "354", "attributes": { "latitude": 22.654699325561523, "longitude": 88.44670104980469, "fullName": "Netaji Subhash Chandra Bose International Airport" } }, { "key": "263", "attributes": { "latitude": 28.189199447599997, "longitude": 113.220001221, "fullName": "Changsha Huanghua International Airport" } }, { "key": "2004", "attributes": { "latitude": 19.952299118, "longitude": 99.88289642330001, "fullName": "Chiang Rai International Airport" } }, { "key": "2722", "attributes": { "latitude": 19.623501, "longitude": 96.200996, "fullName": "Naypyidaw Airport" } }, { "key": "314", "attributes": { "latitude": 36.857200622558594, "longitude": 117.21600341796875, "fullName": "Yaoqiang Airport" } }, { "key": "1166", "attributes": { "latitude": -27.384199142456055, "longitude": 153.11700439453125, "fullName": "Brisbane International Airport" } }, { "key": "1763", "attributes": { "latitude": 24.9065, "longitude": 67.160797, "fullName": "Jinnah International Airport" } }, { "key": "176", "attributes": { "latitude": 16.907300949099998, "longitude": 96.1332015991, "fullName": "Yangon International Airport" } }, { "key": "655", "attributes": { "latitude": 26.68120002746582, "longitude": 88.32859802246094, "fullName": "Bagdogra Airport" } }, { "key": "1966", "attributes": { "latitude": 9.547789573669998, "longitude": 100.06199646, "fullName": "Samui Airport" } }, { "key": "1146", "attributes": { "latitude": -37.008098602299995, "longitude": 174.792007446, "fullName": "Auckland International Airport" } }, { "key": "357", "attributes": { "latitude": 23.843347, "longitude": 90.397783, "fullName": "Hazrat Shahjalal International Airport" } }, { "key": "661", "attributes": { "latitude": 12.990005493164062, "longitude": 80.16929626464844, "fullName": "Chennai International Airport" } }, { "key": "1549", "attributes": { "latitude": 19.897300720214844, "longitude": 102.16100311279297, "fullName": "Luang Phabang International Airport" } }, { "key": "301", "attributes": { "latitude": 22.608299255371094, "longitude": 108.1719970703125, "fullName": "Nanning Wuxu Airport" } }, { "key": "2987", "attributes": { "latitude": 16.55660057067871, "longitude": 104.76000213623047, "fullName": "Savannakhet Airport" } }, { "key": "1542", "attributes": { "latitude": 8.09912014008, "longitude": 98.9861984253, "fullName": "Krabi Airport" } }, { "key": "830", "attributes": { "latitude": 18.766799926799997, "longitude": 98.962600708, "fullName": "Chiang Mai International Airport" } }, { "key": "174", "attributes": { "latitude": 11.546600341796875, "longitude": 104.84400177001953, "fullName": "Phnom Penh International Airport" } }, { "key": "272", "attributes": { "latitude": 25.935100555419922, "longitude": 119.66300201416016, "fullName": "Fuzhou Changle International Airport" } }, { "key": "1642", "attributes": { "latitude": 17.988300323500003, "longitude": 102.56300354, "fullName": "Wattay International Airport" } }, { "key": "644", "attributes": { "latitude": 13.1979, "longitude": 77.706299, "fullName": "Kempegowda International Airport" } }, { "key": "2018", "attributes": { "latitude": 17.386400222800003, "longitude": 102.788002014, "fullName": "Udon Thani Airport" } }, { "key": "2870", "attributes": { "latitude": 18.27090072631836, "longitude": 99.50420379638672, "fullName": "Lampang Airport" } }, { "key": "2872", "attributes": { "latitude": 17.238000869750977, "longitude": 99.81819915771484, "fullName": "Sukhothai Airport" } }, { "key": "649", "attributes": { "latitude": 26.10610008239746, "longitude": 91.58589935302734, "fullName": "Lokpriya Gopinath Bordoloi International Airport" } }, { "key": "2871", "attributes": { "latitude": 12.274600029, "longitude": 102.319000244, "fullName": "Trat Airport" } }, { "key": "1926", "attributes": { "latitude": 47.843102, "longitude": 106.766998, "fullName": "Chinggis Khaan International Airport" } }, { "key": "313", "attributes": { "latitude": 36.2661018372, "longitude": 120.374000549, "fullName": "Liuting Airport" } }, { "key": "173", "attributes": { "latitude": -31.94029998779297, "longitude": 115.96700286865234, "fullName": "Perth International Airport" } }, { "key": "651", "attributes": { "latitude": 17.2313175201, "longitude": 78.4298553467, "fullName": "Rajiv Gandhi International Airport" } }, { "key": "312", "attributes": { "latitude": 22.639299392700195, "longitude": 113.81099700927734, "fullName": "Shenzhen Bao'an International Airport" } }, { "key": "687", "attributes": { "latitude": 21.702199935913086, "longitude": 95.97789764404297, "fullName": "Mandalay International Airport" } }, { "key": "322", "attributes": { "latitude": 30.7838, "longitude": 114.208, "fullName": "Wuhan Tianhe International Airport" } }, { "key": "1143", "attributes": { "latitude": -34.945, "longitude": 138.531006, "fullName": "Adelaide International Airport" } }, { "key": "2958", "attributes": { "latitude": -17.944700241088867, "longitude": 122.23200225830078, "fullName": "Broome International Airport" } }, { "key": "1341", "attributes": { "latitude": -19.252500534057617, "longitude": 146.76499938964844, "fullName": "Townsville Airport" } }, { "key": "2710", "attributes": { "latitude": -8.54640007019, "longitude": 125.526000977, "fullName": "Presidente Nicolau Lobato International Airport" } }, { "key": "1151", "attributes": { "latitude": -23.806699752807617, "longitude": 133.90199279785156, "fullName": "Alice Springs Airport" } }, { "key": "1843", "attributes": { "latitude": -13.975000381500001, "longitude": 136.460006714, "fullName": "Groote Eylandt Airport" } }, { "key": "1187", "attributes": { "latitude": -16.885799408, "longitude": 145.755004883, "fullName": "Cairns International Airport" } }, { "key": "2964", "attributes": { "latitude": -12.269399642899998, "longitude": 136.817993164, "fullName": "Gove Airport" } }, { "key": "3109", "attributes": { "latitude": -12.0560998917, "longitude": 134.23399353, "fullName": "Maningrida Airport" } }, { "key": "2805", "attributes": { "latitude": -15.7781000137, "longitude": 128.707992554, "fullName": "Kununurra Airport" } }, { "key": "2934", "attributes": { "latitude": -20.663900375399997, "longitude": 139.488998413, "fullName": "Mount Isa Airport" } }, { "key": "3107", "attributes": { "latitude": -16.4424991608, "longitude": 136.083999634, "fullName": "McArthur River Mine Airport" } }, { "key": "166", "attributes": { "latitude": 19.934900283813477, "longitude": 110.45899963378906, "fullName": "Haikou Meilan International Airport" } }, { "key": "300", "attributes": { "latitude": 31.742000579833984, "longitude": 118.86199951171875, "fullName": "Nanjing Lukou Airport" } }, { "key": "1971", "attributes": { "latitude": 30.582199, "longitude": 117.050003, "fullName": "Anqing Tianzhushan Airport" } }, { "key": "334", "attributes": { "latitude": 21.214399, "longitude": 110.358002, "fullName": "Zhanjiang Airport" } }, { "key": "316", "attributes": { "latitude": 39.124401092499994, "longitude": 117.346000671, "fullName": "Tianjin Binhai International Airport" } }, { "key": "167", "attributes": { "latitude": 30.22949981689453, "longitude": 120.43399810791016, "fullName": "Hangzhou Xiaoshan International Airport" } }, { "key": "289", "attributes": { "latitude": 26.53849983215332, "longitude": 106.8010025024414, "fullName": "Longdongbao Airport" } }, { "key": "1919", "attributes": { "latitude": 28.85219955444336, "longitude": 105.39299774169922, "fullName": "Luzhou Airport" } }, { "key": "258", "attributes": { "latitude": 21.5394, "longitude": 109.293999, "fullName": "Beihai Airport" } }, { "key": "1872", "attributes": { "latitude": 29.733299255371094, "longitude": 118.25599670410156, "fullName": "Tunxi International Airport" } }, { "key": "286", "attributes": { "latitude": 28.864999771118164, "longitude": 115.9000015258789, "fullName": "Nanchang Changbei International Airport" } }, { "key": "318", "attributes": { "latitude": 37.74689865112305, "longitude": 112.62799835205078, "fullName": "Taiyuan Wusu Airport" } }, { "key": "326", "attributes": { "latitude": 34.447102, "longitude": 108.751999, "fullName": "Xi'an Xianyang International Airport" } }, { "key": "1898", "attributes": { "latitude": 36.247501, "longitude": 113.125999, "fullName": "Changzhi Airport" } }, { "key": "336", "attributes": { "latitude": 22.006399, "longitude": 113.375999, "fullName": "Zhuhai Jinwan Airport" } }, { "key": "290", "attributes": { "latitude": 25.21809959411621, "longitude": 110.03900146484375, "fullName": "Guilin Liangjiang International Airport" } }, { "key": "901", "attributes": { "latitude": 28.9188995361, "longitude": 111.63999939, "fullName": "Changde Airport" } }, { "key": "321", "attributes": { "latitude": 27.912201, "longitude": 120.851997, "fullName": "Wenzhou Longwan International Airport" } }, { "key": "839", "attributes": { "latitude": 31.197900772094727, "longitude": 121.33599853515625, "fullName": "Shanghai Hongqiao International Airport" } }, { "key": "276", "attributes": { "latitude": 31.780000686645508, "longitude": 117.2979965209961, "fullName": "Hefei Luogang International Airport" } }, { "key": "908", "attributes": { "latitude": 27.5895, "longitude": 107.0007, "fullName": "Zunyi Xinzhou Airport" } }, { "key": "1903", "attributes": { "latitude": 32.882157, "longitude": 115.734364, "fullName": "Fuyang Xiguan Airport" } }, { "key": "1513", "attributes": { "latitude": 24.264699935913086, "longitude": 120.62100219726562, "fullName": "Taichung Ching Chuang Kang Airport" } }, { "key": "292", "attributes": { "latitude": 26.6800003052, "longitude": 100.246002197, "fullName": "Lijiang Airport" } }, { "key": "295", "attributes": { "latitude": 35.04610061645508, "longitude": 118.41200256347656, "fullName": "Shubuling Airport" } }, { "key": "1925", "attributes": { "latitude": 43.556702, "longitude": 122.199997, "fullName": "Tongliao Airport" } }, { "key": "1621", "attributes": { "latitude": 13.9125995636, "longitude": 100.607002258, "fullName": "Don Mueang International Airport" } }, { "key": "261", "attributes": { "latitude": 43.9962005615, "longitude": 125.684997559, "fullName": "Longjia Airport" } }, { "key": "1987", "attributes": { "latitude": 32.980801, "longitude": 112.614998, "fullName": "Nanyang Jiangying Airport" } }, { "key": "696", "attributes": { "latitude": 36.717008, "longitude": 127.498741, "fullName": "Cheongju International Airport/Cheongju Air Base (K-59/G-513)" } }, { "key": "1929", "attributes": { "latitude": 32.1506, "longitude": 112.291, "fullName": "Xiangyang Liuji Airport" } }, { "key": "1915", "attributes": { "latitude": 41.10139846801758, "longitude": 121.06199645996094, "fullName": "Jinzhou Airport" } }, { "key": "270", "attributes": { "latitude": 39.49, "longitude": 109.861388889, "fullName": "Ordos Ejin Horo Airport" } }, { "key": "1857", "attributes": { "latitude": 16.043899536132812, "longitude": 108.1989974975586, "fullName": "Da Nang International Airport" } }, { "key": "1904", "attributes": { "latitude": 32.3911018371582, "longitude": 105.7020034790039, "fullName": "Guangyuan Airport" } }, { "key": "1854", "attributes": { "latitude": 37.40169906616211, "longitude": 121.37200164794922, "fullName": "Yantai Laishan Airport" } }, { "key": "275", "attributes": { "latitude": 40.851398, "longitude": 111.823997, "fullName": "Baita International Airport" } }, { "key": "1984", "attributes": { "latitude": 34.571667, "longitude": 118.873611, "fullName": "Lianyungang Airport" } }, { "key": "269", "attributes": { "latitude": 40.16109848022461, "longitude": 94.80919647216797, "fullName": "Dunhuang Airport" } }, { "key": "1931", "attributes": { "latitude": 35.116391, "longitude": 111.031388889, "fullName": "Yuncheng Guangong Airport" } }, { "key": "283", "attributes": { "latitude": 24.7964, "longitude": 118.589996, "fullName": "Quanzhou Jinjiang International Airport" } }, { "key": "308", "attributes": { "latitude": 38.28070068359375, "longitude": 114.6969985961914, "fullName": "Shijiazhuang Daguocun International Airport" } }, { "key": "331", "attributes": { "latitude": 30.55655, "longitude": 111.479988, "fullName": "Yichang Sanxia Airport" } }, { "key": "281", "attributes": { "latitude": 21.973899841308594, "longitude": 100.76000213623047, "fullName": "Xishuangbanna Gasa Airport" } }, { "key": "315", "attributes": { "latitude": 25.069400787353516, "longitude": 121.552001953125, "fullName": "Taipei Songshan Airport" } }, { "key": "288", "attributes": { "latitude": 25.853333, "longitude": 114.778889, "fullName": "Ganzhou Airport" } }, { "key": "2449", "attributes": { "latitude": 36.646702, "longitude": 119.119003, "fullName": "Weifang Airport" } }, { "key": "268", "attributes": { "latitude": 38.9656982421875, "longitude": 121.53900146484375, "fullName": "Zhoushuizi Airport" } }, { "key": "291", "attributes": { "latitude": 36.5152015686, "longitude": 103.620002747, "fullName": "Lanzhou Zhongchuan Airport" } }, { "key": "307", "attributes": { "latitude": 41.639801025390625, "longitude": 123.48300170898438, "fullName": "Taoxian Airport" } }, { "key": "697", "attributes": { "latitude": 33.51129913330078, "longitude": 126.49299621582031, "fullName": "Jeju International Airport" } }, { "key": "1637", "attributes": { "latitude": -7.3798298835754395, "longitude": 112.78700256347656, "fullName": "Juanda International Airport" } }, { "key": "1280", "attributes": { "latitude": -17.755399703979492, "longitude": 177.4429931640625, "fullName": "Nadi International Airport" } }, { "key": "323", "attributes": { "latitude": 31.494400024399997, "longitude": 120.429000854, "fullName": "Sunan Shuofang International Airport" } }, { "key": "1512", "attributes": { "latitude": 26.1958007812, "longitude": 127.646003723, "fullName": "Naha Airport" } }, { "key": "1820", "attributes": { "latitude": 31.80340003967285, "longitude": 130.718994140625, "fullName": "Kagoshima Airport" } }, { "key": "1510", "attributes": { "latitude": 24.350000381469727, "longitude": 116.13300323486328, "fullName": "Meixian Airport" } }, { "key": "1928", "attributes": { "latitude": 27.7019, "longitude": 118.000999, "fullName": "Nanping Wuyishan Airport" } }, { "key": "329", "attributes": { "latitude": 34.059056, "longitude": 117.555278, "fullName": "Xuzhou Guanyin Airport" } }, { "key": "1961", "attributes": { "latitude": 22.95039939880371, "longitude": 120.20600128173828, "fullName": "Tainan Airport" } }, { "key": "902", "attributes": { "latitude": 33.7908333333, "longitude": 119.125, "fullName": "Lianshui Airport" } }, { "key": "1515", "attributes": { "latitude": 33.425833, "longitude": 120.203056, "fullName": "Yancheng Airport" } }, { "key": "2873", "attributes": { "latitude": 12.679900169372559, "longitude": 101.00499725341797, "fullName": "U-Tapao International Airport" } }, { "key": "2745", "attributes": { "latitude": -22.01460075378418, "longitude": 166.21299743652344, "fullName": "La Tontouta International Airport" } }, { "key": "1996", "attributes": { "latitude": -28.1644001007, "longitude": 153.505004883, "fullName": "Gold Coast Airport" } }, { "key": "1822", "attributes": { "latitude": 32.916900634799994, "longitude": 129.914001465, "fullName": "Nagasaki Airport" } }, { "key": "699", "attributes": { "latitude": 37.5583, "longitude": 126.791, "fullName": "Gimpo International Airport" } }, { "key": "1823", "attributes": { "latitude": 38.1397018433, "longitude": 140.917007446, "fullName": "Sendai Airport" } }, { "key": "2345", "attributes": { "latitude": 33.82720184326172, "longitude": 132.6999969482422, "fullName": "Matsuyama Airport" } }, { "key": "1819", "attributes": { "latitude": 24.396389, "longitude": 124.245, "fullName": "New Ishigaki Airport" } }, { "key": "1869", "attributes": { "latitude": 41.7700004578, "longitude": 140.822006226, "fullName": "Hakodate Airport" } }, { "key": "309", "attributes": { "latitude": 15.119, "longitude": 145.729004, "fullName": "Saipan International Airport" } }, { "key": "1618", "attributes": { "latitude": -1.26827001572, "longitude": 116.893997192, "fullName": "Sultan Aji Muhamad Sulaiman Airport" } }, { "key": "1627", "attributes": { "latitude": 5.300680160522461, "longitude": 115.25, "fullName": "Labuan Airport" } }, { "key": "1631", "attributes": { "latitude": 0.46078601479530334, "longitude": 101.44499969482422, "fullName": "Sultan Syarif Kasim Ii (Simpang Tiga) Airport" } }, { "key": "1252", "attributes": { "latitude": 6.329730033874512, "longitude": 99.72869873046875, "fullName": "Langkawi International Airport" } }, { "key": "1623", "attributes": { "latitude": 1.64131, "longitude": 103.669998, "fullName": "Senai International Airport" } }, { "key": "1633", "attributes": { "latitude": 2.2616000175476074, "longitude": 111.98500061035156, "fullName": "Sibu Airport" } }, { "key": "2115", "attributes": { "latitude": 24.5534, "longitude": 39.705101, "fullName": "Prince Mohammad Bin Abdulaziz Airport" } }, { "key": "1638", "attributes": { "latitude": 5.3826398849487305, "longitude": 103.10299682617188, "fullName": "Sultan Mahmud Airport" } }, { "key": "1061", "attributes": { "latitude": 10.765399932861328, "longitude": 78.70970153808594, "fullName": "Tiruchirapally Civil Airport Airport" } }, { "key": "1640", "attributes": { "latitude": -5.061629772186279, "longitude": 119.55400085449219, "fullName": "Hasanuddin International Airport" } }, { "key": "1634", "attributes": { "latitude": 5.900899887084961, "longitude": 118.05899810791016, "fullName": "Sandakan Airport" } }, { "key": "1624", "attributes": { "latitude": -7.788179874420166, "longitude": 110.43199920654297, "fullName": "Adi Sutjipto International Airport" } }, { "key": "2116", "attributes": { "latitude": 33.993900299072266, "longitude": 71.51460266113281, "fullName": "Peshawar International Airport" } }, { "key": "2284", "attributes": { "latitude": 3.7753899097442627, "longitude": 103.20899963378906, "fullName": "Kuantan Airport" } }, { "key": "1628", "attributes": { "latitude": -8.757322, "longitude": 116.276675, "fullName": "Lombok International Airport" } }, { "key": "1632", "attributes": { "latitude": -2.8982501029968, "longitude": 104.69999694824, "fullName": "Sultan Mahmud Badaruddin II Airport" } }, { "key": "1625", "attributes": { "latitude": 6.1668500900268555, "longitude": 102.29299926757812, "fullName": "Sultan Ismail Petra Airport" } }, { "key": "1617", "attributes": { "latitude": -6.900629997253418, "longitude": 107.57599639892578, "fullName": "Husein Sastranegara International Airport" } }, { "key": "1619", "attributes": { "latitude": 5.522872024010001, "longitude": 95.42063713070002, "fullName": "Sultan Iskandar Muda International Airport" } }, { "key": "647", "attributes": { "latitude": 10.152, "longitude": 76.401901, "fullName": "Cochin International Airport" } }, { "key": "1630", "attributes": { "latitude": -0.786917, "longitude": 100.280998, "fullName": "Minangkabau International Airport" } }, { "key": "1639", "attributes": { "latitude": 4.320159912109375, "longitude": 118.12799835205078, "fullName": "Tawau Airport" } }, { "key": "1636", "attributes": { "latitude": -6.97273, "longitude": 110.375, "fullName": "Achmad Yani Airport" } }, { "key": "1902", "attributes": { "latitude": 39.224098, "longitude": 125.669998, "fullName": "Pyongyang Sunan International Airport" } }, { "key": "1626", "attributes": { "latitude": 1.4846999645233154, "longitude": 110.34700012207031, "fullName": "Kuching International Airport" } }, { "key": "1616", "attributes": { "latitude": 6.189670085906982, "longitude": 100.39800262451172, "fullName": "Sultan Abdul Halim Airport" } }, { "key": "1635", "attributes": { "latitude": -7.516089916229248, "longitude": 110.75700378417969, "fullName": "Adi Sumarmo Wiryokusumo Airport" } }, { "key": "1620", "attributes": { "latitude": 3.12385010719, "longitude": 113.019996643, "fullName": "Bintulu Airport" } }, { "key": "2285", "attributes": { "latitude": 3.130579948425293, "longitude": 101.54900360107422, "fullName": "Sultan Abdul Aziz Shah International Airport" } }, { "key": "3197", "attributes": { "latitude": -10.450599670410156, "longitude": 105.69000244140625, "fullName": "Christmas Island Airport" } }, { "key": "2803", "attributes": { "latitude": -30.789400100699996, "longitude": 121.461997986, "fullName": "Kalgoorlie Boulder Airport" } }, { "key": "2974", "attributes": { "latitude": -20.3777999878, "longitude": 118.625999451, "fullName": "Port Hedland International Airport" } }, { "key": "2967", "attributes": { "latitude": -20.712200164799995, "longitude": 116.773002625, "fullName": "Karratha Airport" } }, { "key": "2816", "attributes": { "latitude": -33.7971992493, "longitude": 120.208000183, "fullName": "Ravensthorpe Airport" } }, { "key": "2792", "attributes": { "latitude": -33.6884231567, "longitude": 115.401596069, "fullName": "Busselton Regional Airport" } }, { "key": "2795", "attributes": { "latitude": -33.684399, "longitude": 121.822998, "fullName": "Esperance Airport" } }, { "key": "2790", "attributes": { "latitude": -34.94329833984375, "longitude": 117.80899810791016, "fullName": "Albany Airport" } }, { "key": "1177", "attributes": { "latitude": -35.30690002441406, "longitude": 149.19500732421875, "fullName": "Canberra International Airport" } }, { "key": "2811", "attributes": { "latitude": -23.1711006165, "longitude": 117.745002747, "fullName": "Paraburdoo Airport" } }, { "key": "2979", "attributes": { "latitude": -23.417800903299998, "longitude": 119.803001404, "fullName": "Newman Airport" } }, { "key": "2806", "attributes": { "latitude": -22.235599517799997, "longitude": 114.088996887, "fullName": "Learmonth Airport" } }, { "key": "2794", "attributes": { "latitude": -17.5813999176, "longitude": 123.82800293, "fullName": "RAAF Base Curtin" } }, { "key": "2796", "attributes": { "latitude": -28.796101, "longitude": 114.707001, "fullName": "Geraldton Airport" } }, { "key": "2608", "attributes": { "latitude": 10.57970047, "longitude": 103.637001038, "fullName": "Sihanoukville International Airport" } }, { "key": "2985", "attributes": { "latitude": 15.132100105285645, "longitude": 105.78099822998047, "fullName": "Pakse International Airport" } }, { "key": "3274", "attributes": { "latitude": 19.42639923095703, "longitude": 93.53479766845703, "fullName": "Kyaukpyu Airport" } }, { "key": "692", "attributes": { "latitude": 14.103899955749512, "longitude": 98.20359802246094, "fullName": "Dawei Airport" } }, { "key": "691", "attributes": { "latitude": 20.483800888061523, "longitude": 99.9354019165039, "fullName": "Tachileik Airport" } }, { "key": "685", "attributes": { "latitude": 20.746999740600586, "longitude": 96.79199981689453, "fullName": "Heho Airport" } }, { "key": "684", "attributes": { "latitude": 20.132699966430664, "longitude": 92.87259674072266, "fullName": "Sittwe Airport" } }, { "key": "689", "attributes": { "latitude": 21.178800582885742, "longitude": 94.9301986694336, "fullName": "Bagan Airport" } }, { "key": "690", "attributes": { "latitude": 18.4606990814209, "longitude": 94.30010223388672, "fullName": "Thandwe Airport" } }, { "key": "3275", "attributes": { "latitude": 25.38360023498535, "longitude": 97.35189819335938, "fullName": "Myitkyina Airport" } }, { "key": "3200", "attributes": { "latitude": 13.955, "longitude": 109.042, "fullName": "Phu Cat Airport" } }, { "key": "3201", "attributes": { "latitude": 9.177667, "longitude": 105.177778, "fullName": "Cà Mau Airport" } }, { "key": "1858", "attributes": { "latitude": 20.819400787353516, "longitude": 106.7249984741211, "fullName": "Cat Bi International Airport" } }, { "key": "3199", "attributes": { "latitude": 16.401500701899998, "longitude": 107.70300293, "fullName": "Phu Bai Airport" } }, { "key": "3209", "attributes": { "latitude": 17.515, "longitude": 106.590556, "fullName": "Dong Hoi Airport" } }, { "key": "3198", "attributes": { "latitude": 11.75, "longitude": 108.366997, "fullName": "Lien Khuong Airport" } }, { "key": "3210", "attributes": { "latitude": 9.95802997234, "longitude": 105.132379532, "fullName": "Rach Gia Airport" } }, { "key": "3208", "attributes": { "latitude": 8.73183, "longitude": 106.633003, "fullName": "Co Ong Airport" } }, { "key": "3207", "attributes": { "latitude": 15.403300285299999, "longitude": 108.706001282, "fullName": "Chu Lai International Airport" } }, { "key": "1859", "attributes": { "latitude": 10.1698, "longitude": 103.9931, "fullName": "Phu Quoc International Airport" } }, { "key": "3203", "attributes": { "latitude": 14.004500389099121, "longitude": 108.01699829101562, "fullName": "Pleiku Airport" } }, { "key": "1855", "attributes": { "latitude": 12.668299675, "longitude": 108.120002747, "fullName": "Buon Ma Thuot Airport" } }, { "key": "1860", "attributes": { "latitude": 18.7376003265, "longitude": 105.67099762, "fullName": "Vinh Airport" } }, { "key": "3204", "attributes": { "latitude": 13.049599647500001, "longitude": 109.333999634, "fullName": "Dong Tac Airport" } }, { "key": "669", "attributes": { "latitude": 17.721200943, "longitude": 83.2245025635, "fullName": "Vishakhapatnam Airport" } }, { "key": "646", "attributes": { "latitude": 11.029999733, "longitude": 77.0434036255, "fullName": "Coimbatore International Airport" } }, { "key": "2527", "attributes": { "latitude": 5.765279769897461, "longitude": 103.00700378417969, "fullName": "LTS Pulau Redang Airport" } }, { "key": "2282", "attributes": { "latitude": 4.567969799041748, "longitude": 101.09200286865234, "fullName": "Sultan Azlan Shah Airport" } }, { "key": "2328", "attributes": { "latitude": 1.5492600202560425, "longitude": 124.9260025024414, "fullName": "Sam Ratulangi Airport" } }, { "key": "667", "attributes": { "latitude": 8.48211956024, "longitude": 76.9200973511, "fullName": "Trivandrum International Airport" } }, { "key": "1178", "attributes": { "latitude": -43.48939895629883, "longitude": 172.53199768066406, "fullName": "Christchurch International Airport" } }, { "key": "1933", "attributes": { "latitude": 29.3446998596, "longitude": 120.031997681, "fullName": "Yiwu Airport" } }, { "key": "271", "attributes": { "latitude": 29.1028, "longitude": 110.443001, "fullName": "Dayong Airport" } }, { "key": "2344", "attributes": { "latitude": 43.041000366199995, "longitude": 144.192993164, "fullName": "Kushiro Airport" } }, { "key": "1871", "attributes": { "latitude": 34.7569007874, "longitude": 133.854995728, "fullName": "Okayama Airport" } }, { "key": "1905", "attributes": { "latitude": 34.4361000061, "longitude": 132.919006348, "fullName": "Hiroshima Airport" } }, { "key": "1962", "attributes": { "latitude": 36.64830017089844, "longitude": 137.18800354003906, "fullName": "Toyama Airport" } }, { "key": "1960", "attributes": { "latitude": 31.877199173, "longitude": 131.449005127, "fullName": "Miyazaki Airport" } }, { "key": "1870", "attributes": { "latitude": 36.39459991455078, "longitude": 136.40699768066406, "fullName": "Komatsu Airport" } }, { "key": "907", "attributes": { "latitude": 34.214199066199996, "longitude": 134.01600647, "fullName": "Takamatsu Airport" } }, { "key": "1868", "attributes": { "latitude": 43.670799255371094, "longitude": 142.44700622558594, "fullName": "Asahikawa Airport" } }, { "key": "181", "attributes": { "latitude": 47.4850006104, "longitude": 9.560770034789998, "fullName": "St Gallen Altenrhein Airport" } }, { "key": "3060", "attributes": { "latitude": 41.506401062, "longitude": 32.0886001587, "fullName": "Zonguldak Airport" } }, { "key": "2856", "attributes": { "latitude": 38.770401001, "longitude": 35.4953994751, "fullName": "Kayseri Erkilet Airport" } }, { "key": "1085", "attributes": { "latitude": 39.0567016602, "longitude": 26.5983009338, "fullName": "Mytilene International Airport" } }, { "key": "2250", "attributes": { "latitude": 38.1511, "longitude": 21.4256, "fullName": "Araxos Airport" } }, { "key": "1535", "attributes": { "latitude": 50.73440170288086, "longitude": -3.4138898849487305, "fullName": "Exeter International Airport" } }, { "key": "466", "attributes": { "latitude": 40.913299560546875, "longitude": 24.619199752807617, "fullName": "Alexander the Great International Airport" } }, { "key": "185", "attributes": { "latitude": 47.671298980699994, "longitude": 9.51148986816, "fullName": "Friedrichshafen Airport" } }, { "key": "456", "attributes": { "latitude": 53.8787002563, "longitude": 14.152299881, "fullName": "Heringsdorf Airport" } }, { "key": "1067", "attributes": { "latitude": 37.689998626708984, "longitude": 26.911699295043945, "fullName": "Samos Airport" } }, { "key": "431", "attributes": { "latitude": 43.616299, "longitude": 13.3623, "fullName": "Ancona Falconara Airport" } }, { "key": "1365", "attributes": { "latitude": 48.2332, "longitude": 14.1875, "fullName": "Linz Hörsching Airport" } }, { "key": "194", "attributes": { "latitude": 44.108299, "longitude": 15.3467, "fullName": "Zadar Airport" } }, { "key": "2189", "attributes": { "latitude": 37.9114, "longitude": 12.488, "fullName": "Vincenzo Florio Airport Trapani-Birgi" } }, { "key": "1372", "attributes": { "latitude": 49.214599609400004, "longitude": 7.10950994492, "fullName": "Saarbrücken Airport" } }, { "key": "484", "attributes": { "latitude": 45.21689987182617, "longitude": 14.570300102233887, "fullName": "Rijeka Airport" } }, { "key": "463", "attributes": { "latitude": 46.642502, "longitude": 14.3377, "fullName": "Klagenfurt Airport" } }, { "key": "2648", "attributes": { "latitude": 45.78559875488281, "longitude": 24.091299057006836, "fullName": "Sibiu International Airport" } }, { "key": "485", "attributes": { "latitude": 53.9182014465, "longitude": 12.278300285299999, "fullName": "Rostock-Laage Airport" } }, { "key": "1777", "attributes": { "latitude": 45.827499, "longitude": 13.4722, "fullName": "Trieste–Friuli Venezia Giulia Airport" } }, { "key": "1068", "attributes": { "latitude": 35.4213981628418, "longitude": 27.145999908447266, "fullName": "Karpathos Airport" } }, { "key": "3246", "attributes": { "latitude": 49.473057, "longitude": 8.514167, "fullName": "Mannheim-City Airport" } }, { "key": "1528", "attributes": { "latitude": 31.321300506591797, "longitude": -85.44960021972656, "fullName": "Dothan Regional Airport" } }, { "key": "1525", "attributes": { "latitude": 32.516300201416016, "longitude": -84.93890380859375, "fullName": "Columbus Metropolitan Airport" } }, { "key": "1212", "attributes": { "latitude": 35.33660125732422, "longitude": -94.36740112304688, "fullName": "Fort Smith Regional Airport" } }, { "key": "1325", "attributes": { "latitude": 32.446602, "longitude": -93.8256, "fullName": "Shreveport Regional Airport" } }, { "key": "217", "attributes": { "latitude": 30.396499633789062, "longitude": -84.35030364990234, "fullName": "Tallahassee Regional Airport" } }, { "key": "1283", "attributes": { "latitude": 34.8292007446, "longitude": -77.61209869380001, "fullName": "Albert J Ellis Airport" } }, { "key": "201", "attributes": { "latitude": 23.5625991821, "longitude": -75.8779983521, "fullName": "Exuma International Airport" } }, { "key": "1537", "attributes": { "latitude": 33.450298309299995, "longitude": -88.5914001465, "fullName": "Golden Triangle Regional Airport" } }, { "key": "219", "attributes": { "latitude": 34.26810073852539, "longitude": -88.7698974609375, "fullName": "Tupelo Regional Airport" } }, { "key": "1250", "attributes": { "latitude": 30.20529938, "longitude": -91.98760223, "fullName": "Lafayette Regional Airport" } }, { "key": "1170", "attributes": { "latitude": 30.533199, "longitude": -91.149597, "fullName": "Baton Rouge Metropolitan Airport" } }, { "key": "1145", "attributes": { "latitude": 33.36989974975586, "longitude": -81.9645004272461, "fullName": "Augusta Regional At Bush Field" } }, { "key": "1340", "attributes": { "latitude": 36.475201, "longitude": -82.407401, "fullName": "Tri-Cities Regional TN/VA Airport" } }, { "key": "634", "attributes": { "latitude": 15.4526, "longitude": -87.923599, "fullName": "Ramón Villeda Morales International Airport" } }, { "key": "1569", "attributes": { "latitude": 30.782499313354492, "longitude": -83.27670288085938, "fullName": "Valdosta Regional Airport" } }, { "key": "1224", "attributes": { "latitude": 31.067199707, "longitude": -97.82890319820001, "fullName": "Robert Gray Army Air Field Airport" } }, { "key": "213", "attributes": { "latitude": 31.467100143432617, "longitude": -89.33709716796875, "fullName": "Hattiesburg Laurel Regional Airport" } }, { "key": "633", "attributes": { "latitude": 16.316799, "longitude": -86.523003, "fullName": "Juan Manuel Galvez International Airport" } }, { "key": "200", "attributes": { "latitude": 26.5587005615, "longitude": -78.695602417, "fullName": "Grand Bahama International Airport" } }, { "key": "209", "attributes": { "latitude": 32.33259963989258, "longitude": -88.75189971923828, "fullName": "Key Field" } }, { "key": "1193", "attributes": { "latitude": 29.179899, "longitude": -81.058098, "fullName": "Daytona Beach International Airport" } }, { "key": "1517", "attributes": { "latitude": 31.535499572753906, "longitude": -84.19450378417969, "fullName": "Southwest Georgia Regional Airport" } }, { "key": "1266", "attributes": { "latitude": 32.30059814, "longitude": -86.39399719, "fullName": "Montgomery Regional (Dannelly Field) Airport" } }, { "key": "237", "attributes": { "latitude": 12.130999565124512, "longitude": -68.26850128173828, "fullName": "Flamingo International Airport" } }, { "key": "635", "attributes": { "latitude": 14.06089973449707, "longitude": -87.21720123291016, "fullName": "Toncontín International Airport" } }, { "key": "1273", "attributes": { "latitude": 32.51089859008789, "longitude": -92.0376968383789, "fullName": "Monroe Regional Airport" } }, { "key": "207", "attributes": { "latitude": 32.69279861450195, "longitude": -83.64920043945312, "fullName": "Middle Georgia Regional Airport" } }, { "key": "544", "attributes": { "latitude": 10.5933, "longitude": -85.544403, "fullName": "Daniel Oduber Quiros International Airport" } }, { "key": "204", "attributes": { "latitude": 29.6900997162, "longitude": -82.2717971802, "fullName": "Gainesville Regional Airport" } }, { "key": "1144", "attributes": { "latitude": 31.32740020751953, "longitude": -92.54979705810547, "fullName": "Alexandria International Airport" } }, { "key": "198", "attributes": { "latitude": 24.556100845336914, "longitude": -81.75959777832031, "fullName": "Key West International Airport" } }, { "key": "1270", "attributes": { "latitude": 28.102800369262695, "longitude": -80.64530181884766, "fullName": "Melbourne International Airport" } }, { "key": "1163", "attributes": { "latitude": 20.9935, "longitude": -101.481003, "fullName": "Del Bajío International Airport" } }, { "key": "1207", "attributes": { "latitude": 34.9911994934082, "longitude": -78.88030242919922, "fullName": "Fayetteville Regional Grannis Field" } }, { "key": "1523", "attributes": { "latitude": 31.258800506591797, "longitude": -81.46649932861328, "fullName": "Brunswick Golden Isles Airport" } }, { "key": "631", "attributes": { "latitude": 17.539100646972656, "longitude": -88.30819702148438, "fullName": "Philip S. W. Goldson International Airport" } }, { "key": "2205", "attributes": { "latitude": 40.27669906616211, "longitude": -74.8134994506836, "fullName": "Trenton Mercer Airport" } }, { "key": "1293", "attributes": { "latitude": 37.13190079, "longitude": -76.49299622, "fullName": "Newport News Williamsburg International Airport" } }, { "key": "545", "attributes": { "latitude": 12.141500473022461, "longitude": -86.16819763183594, "fullName": "Augusto C. Sandino (Managua) International Airport" } }, { "key": "206", "attributes": { "latitude": 37.8582992554, "longitude": -80.3994979858, "fullName": "Greenbrier Valley Airport" } }, { "key": "211", "attributes": { "latitude": 34.74530029, "longitude": -87.61019897, "fullName": "Northwest Alabama Regional Airport" } }, { "key": "1348", "attributes": { "latitude": 30.4832, "longitude": -86.525398, "fullName": "Destin-Ft Walton Beach Airport" } }, { "key": "1235", "attributes": { "latitude": 34.270599365234375, "longitude": -77.90260314941406, "fullName": "Wilmington International Airport" } }, { "key": "1221", "attributes": { "latitude": 30.40730094909668, "longitude": -89.07009887695312, "fullName": "Gulfport Biloxi International Airport" } }, { "key": "990", "attributes": { "latitude": 21.77359962463379, "longitude": -72.26589965820312, "fullName": "Providenciales Airport" } }, { "key": "1204", "attributes": { "latitude": 35.0730018616, "longitude": -77.04290008539999, "fullName": "Coastal Carolina Regional Airport" } }, { "key": "196", "attributes": { "latitude": 25.6998996735, "longitude": -79.2647018433, "fullName": "South Bimini Airport" } }, { "key": "197", "attributes": { "latitude": 25.474899292, "longitude": -76.6835021973, "fullName": "North Eleuthera Airport" } }, { "key": "210", "attributes": { "latitude": 26.5114, "longitude": -77.083503, "fullName": "Leonard M Thompson International Airport" } }, { "key": "1338", "attributes": { "latitude": 41.50410079956055, "longitude": -74.10479736328125, "fullName": "Stewart International Airport" } }, { "key": "1789", "attributes": { "latitude": 18.49489974975586, "longitude": -67.12940216064453, "fullName": "Rafael Hernandez Airport" } }, { "key": "1790", "attributes": { "latitude": 42.26729965209961, "longitude": -71.87570190429688, "fullName": "Worcester Regional Airport" } }, { "key": "202", "attributes": { "latitude": 25.2847003937, "longitude": -76.3310012817, "fullName": "Governor's Harbour Airport" } }, { "key": "2297", "attributes": { "latitude": 43.1072998046875, "longitude": -78.94619750976562, "fullName": "Niagara Falls International Airport" } }, { "key": "1334", "attributes": { "latitude": 19.406099319458008, "longitude": -70.60469818115234, "fullName": "Cibao International Airport" } }, { "key": "216", "attributes": { "latitude": 26.745300293, "longitude": -77.3912963867, "fullName": "Treasure Cay Airport" } }, { "key": "1691", "attributes": { "latitude": 44.650901794433594, "longitude": -73.46810150146484, "fullName": "Plattsburgh International Airport" } }, { "key": "2781", "attributes": { "latitude": 40.27590179, "longitude": -79.40480042, "fullName": "Arnold Palmer Regional Airport" } }, { "key": "1238", "attributes": { "latitude": 40.79520035, "longitude": -73.10019684, "fullName": "Long Island Mac Arthur Airport" } }, { "key": "412", "attributes": { "latitude": 19.3370990753, "longitude": -99.56600189210002, "fullName": "Licenciado Adolfo Lopez Mateos International Airport" } }, { "key": "203", "attributes": { "latitude": 33.4828987121582, "longitude": -90.98560333251953, "fullName": "Mid Delta Regional Airport" } }, { "key": "2200", "attributes": { "latitude": 39.67869949, "longitude": -75.60649872, "fullName": "New Castle Airport" } }, { "key": "1791", "attributes": { "latitude": 18.00830078125, "longitude": -66.56300354003906, "fullName": "Mercedita Airport" } }, { "key": "2620", "attributes": { "latitude": 58.4062004089, "longitude": 15.680500030500001, "fullName": "Linköping City Airport" } }, { "key": "636", "attributes": { "latitude": -33.9648017883, "longitude": 18.6016998291, "fullName": "Cape Town International Airport" } }, { "key": "1564", "attributes": { "latitude": 50.95029830932617, "longitude": -1.3567999601364136, "fullName": "Southampton Airport" } }, { "key": "1761", "attributes": { "latitude": 53.57440185546875, "longitude": -0.350832998752594, "fullName": "Humberside Airport" } }, { "key": "2863", "attributes": { "latitude": 37.979, "longitude": 32.561901, "fullName": "Konya Airport" } }, { "key": "1767", "attributes": { "latitude": 54.50920104980469, "longitude": -1.4294099807739258, "fullName": "Durham Tees Valley Airport" } }, { "key": "784", "attributes": { "latitude": 5.4528298377999995, "longitude": -55.1878013611, "fullName": "Johan Adolf Pengel International Airport" } }, { "key": "2070", "attributes": { "latitude": 47.12189865112305, "longitude": 51.8213996887207, "fullName": "Atyrau Airport" } }, { "key": "1112", "attributes": { "latitude": 45.7867012024, "longitude": 3.1691699028, "fullName": "Clermont-Ferrand Auvergne Airport" } }, { "key": "1768", "attributes": { "latitude": 52.6758003235, "longitude": 1.28278005123, "fullName": "Norwich International Airport" } }, { "key": "1080", "attributes": { "latitude": 36.2742996216, "longitude": 23.0170001984, "fullName": "Kithira Airport" } }, { "key": "3114", "attributes": { "latitude": 16.833200454711914, "longitude": -25.055299758911133, "fullName": "São Pedro Airport" } }, { "key": "1064", "attributes": { "latitude": 38.34320068359375, "longitude": 26.140600204467773, "fullName": "Chios Island National Airport" } }, { "key": "2212", "attributes": { "latitude": 28.777599334716797, "longitude": -81.23750305175781, "fullName": "Orlando Sanford International Airport" } }, { "key": "1120", "attributes": { "latitude": 43.1786994934082, "longitude": -0.006438999902456999, "fullName": "Tarbes-Lourdes-Pyrénées Airport" } }, { "key": "3269", "attributes": { "latitude": 46.17660140991211, "longitude": 21.261999130249023, "fullName": "Arad International Airport" } }, { "key": "1770", "attributes": { "latitude": 42.431702, "longitude": 14.1811, "fullName": "Pescara International Airport" } }, { "key": "2255", "attributes": { "latitude": 53.8054008484, "longitude": 10.7192001343, "fullName": "Lübeck Blankensee Airport" } }, { "key": "2491", "attributes": { "latitude": 43.282901763916016, "longitude": 17.84589958190918, "fullName": "Mostar International Airport" } }, { "key": "3270", "attributes": { "latitude": 44.31809997558594, "longitude": 23.888599395751953, "fullName": "Craiova Airport" } }, { "key": "2278", "attributes": { "latitude": 41.66619873046875, "longitude": -1.0415500402450562, "fullName": "Zaragoza Air Base" } }, { "key": "2257", "attributes": { "latitude": 61.044601, "longitude": 28.144743, "fullName": "Lappeenranta Airport" } }, { "key": "1762", "attributes": { "latitude": 47.17850112915039, "longitude": 27.6205997467041, "fullName": "Iaşi Airport" } }, { "key": "1708", "attributes": { "latitude": 34.787200927734375, "longitude": -1.92399001121521, "fullName": "Angads Airport" } }, { "key": "3093", "attributes": { "latitude": 39.809898, "longitude": 30.5194, "fullName": "Anadolu Airport" } }, { "key": "1713", "attributes": { "latitude": 35.594299316406, "longitude": -5.320020198822, "fullName": "Saniat R'mel Airport" } }, { "key": "890", "attributes": { "latitude": 32.096801757799994, "longitude": 20.2695007324, "fullName": "Benina International Airport" } }, { "key": "1709", "attributes": { "latitude": 30.9391002655, "longitude": -6.909430027010001, "fullName": "Ouarzazate Airport" } }, { "key": "2631", "attributes": { "latitude": 22.756399154663086, "longitude": -12.483599662780762, "fullName": "Tazadit Airport" } }, { "key": "1560", "attributes": { "latitude": 34.051498, "longitude": -6.75152, "fullName": "Rabat-Salé Airport" } }, { "key": "894", "attributes": { "latitude": 32.6635017395, "longitude": 13.1590003967, "fullName": "Tripoli International Airport" } }, { "key": "226", "attributes": { "latitude": 44.547001, "longitude": 7.62322, "fullName": "Cuneo International Airport" } }, { "key": "1531", "attributes": { "latitude": 45.54059982299805, "longitude": 4.296390056610107, "fullName": "Saint-Étienne-Bouthéon Airport" } }, { "key": "2249", "attributes": { "latitude": 43.75740051269531, "longitude": 4.4163498878479, "fullName": "Nîmes-Arles-Camargue Airport" } }, { "key": "1576", "attributes": { "latitude": 34.793300628699996, "longitude": 5.73823022842, "fullName": "Biskra Airport" } }, { "key": "3087", "attributes": { "latitude": 49.53390121459961, "longitude": 0.08805599808692932, "fullName": "Le Havre Octeville Airport" } }, { "key": "1123", "attributes": { "latitude": 47.76060104370117, "longitude": -3.440000057220459, "fullName": "Lorient South Brittany (Bretagne Sud) Airport" } }, { "key": "1597", "attributes": { "latitude": 35.0167007446, "longitude": -1.45000004768, "fullName": "Zenata – Messali El Hadj Airport" } }, { "key": "1571", "attributes": { "latitude": 36.822201, "longitude": 7.809174, "fullName": "Rabah Bitat Airport" } }, { "key": "1128", "attributes": { "latitude": 43.380001068115234, "longitude": -0.41861099004745483, "fullName": "Pau Pyrénées Airport" } }, { "key": "1574", "attributes": { "latitude": 35.752101898199996, "longitude": 6.308589935300001, "fullName": "Batna Airport" } }, { "key": "1573", "attributes": { "latitude": 36.7120018005, "longitude": 5.0699200630200005, "fullName": "Soummam Airport" } }, { "key": "1127", "attributes": { "latitude": 46.58769989013672, "longitude": 0.30666598677635193, "fullName": "Poitiers-Biard Airport" } }, { "key": "1113", "attributes": { "latitude": 49.173301696777344, "longitude": -0.44999998807907104, "fullName": "Caen-Carpiquet Airport" } }, { "key": "1593", "attributes": { "latitude": 36.178100585900005, "longitude": 5.3244900703399995, "fullName": "Ain Arnat Airport" } }, { "key": "1579", "attributes": { "latitude": 36.2760009765625, "longitude": 6.620389938354492, "fullName": "Mohamed Boudiaf International Airport" } }, { "key": "1115", "attributes": { "latitude": 48.9821014404, "longitude": 6.25131988525, "fullName": "Metz-Nancy-Lorraine Airport" } }, { "key": "1831", "attributes": { "latitude": 53.4805378105, "longitude": -1.01065635681, "fullName": "Robin Hood Doncaster Sheffield Airport" } }, { "key": "1545", "attributes": { "latitude": 50.63740158081055, "longitude": 5.443220138549805, "fullName": "Liège Airport" } }, { "key": "3059", "attributes": { "latitude": 51.417273, "longitude": 9.384967, "fullName": "Kassel-Calden Airport" } }, { "key": "2252", "attributes": { "latitude": 53.1197013855, "longitude": 6.57944011688, "fullName": "Eelde Airport" } }, { "key": "2467", "attributes": { "latitude": 41.728185, "longitude": 0.535023, "fullName": "Lleida-Alguaire Airport" } }, { "key": "2444", "attributes": { "latitude": 51.198898315399994, "longitude": 2.8622200489, "fullName": "Ostend-Bruges International Airport" } }, { "key": "2287", "attributes": { "latitude": 49.924800872802734, "longitude": 36.290000915527344, "fullName": "Kharkiv International Airport" } }, { "key": "2864", "attributes": { "latitude": 37.223300933800004, "longitude": 40.6316986084, "fullName": "Mardin Airport" } }, { "key": "2858", "attributes": { "latitude": 37.7855987549, "longitude": 29.7012996674, "fullName": "Çardak Airport" } }, { "key": "2860", "attributes": { "latitude": 39.7102012634, "longitude": 39.527000427199994, "fullName": "Erzincan Airport" } }, { "key": "2867", "attributes": { "latitude": 38.7719, "longitude": 34.5345, "fullName": "Nevşehir Kapadokya Airport" } }, { "key": "864", "attributes": { "latitude": 37.445663, "longitude": 38.895592, "fullName": "Şanlıurfa GAP Airport" } }, { "key": "2866", "attributes": { "latitude": 40.829399, "longitude": 35.521999, "fullName": "Amasya Merzifon Airport" } }, { "key": "867", "attributes": { "latitude": 38.435298919699996, "longitude": 38.0909996033, "fullName": "Malatya Erhaç Airport" } }, { "key": "862", "attributes": { "latitude": 39.9565010071, "longitude": 41.17020034789999, "fullName": "Erzurum International Airport" } }, { "key": "3101", "attributes": { "latitude": 40.562198638916016, "longitude": 43.1150016784668, "fullName": "Kars Airport" } }, { "key": "866", "attributes": { "latitude": 36.9472007751, "longitude": 37.4786987305, "fullName": "Gaziantep International Airport" } }, { "key": "2859", "attributes": { "latitude": 39.554599762, "longitude": 27.0137996674, "fullName": "Balıkesir Körfez Airport" } }, { "key": "2868", "attributes": { "latitude": 38.46820068359375, "longitude": 43.332298278808594, "fullName": "Van Ferit Melen Airport" } }, { "key": "859", "attributes": { "latitude": 37.893901825, "longitude": 40.201000213600004, "fullName": "Diyarbakir Airport" } }, { "key": "863", "attributes": { "latitude": 38.6068992615, "longitude": 39.2914009094, "fullName": "Elazığ Airport" } }, { "key": "2865", "attributes": { "latitude": 38.747798919677734, "longitude": 41.66120147705078, "fullName": "Muş Airport" } }, { "key": "2861", "attributes": { "latitude": 36.36277771, "longitude": 36.282222747800006, "fullName": "Hatay Airport" } }, { "key": "2857", "attributes": { "latitude": 37.929000854499996, "longitude": 41.1166000366, "fullName": "Batman Airport" } }, { "key": "2862", "attributes": { "latitude": 37.5388259888, "longitude": 36.9535217285, "fullName": "Kahramanmaraş Airport" } }, { "key": "856", "attributes": { "latitude": 36.9822006226, "longitude": 35.280399322499996, "fullName": "Adana Airport" } }, { "key": "861", "attributes": { "latitude": 35.154701232910156, "longitude": 33.49610137939453, "fullName": "Ercan International Airport" } }, { "key": "2869", "attributes": { "latitude": 39.813801, "longitude": 36.9035, "fullName": "Sivas Nuri Demirağ Airport" } }, { "key": "3086", "attributes": { "latitude": 47.268902, "longitude": 5.09, "fullName": "Dijon-Bourgogne Airport" } }, { "key": "3061", "attributes": { "latitude": 53.5352783203125, "longitude": 9.835556030273438, "fullName": "Hamburg-Finkenwerder Airport" } }, { "key": "786", "attributes": { "latitude": 10.14973258972168, "longitude": -67.92839813232422, "fullName": "Arturo Michelena International Airport" } }, { "key": "239", "attributes": { "latitude": 11.78077507019043, "longitude": -70.15149688720703, "fullName": "Josefa Camejo International Airport" } }, { "key": "781", "attributes": { "latitude": 18.450700759887695, "longitude": -68.91179656982422, "fullName": "Casa De Campo International Airport" } }, { "key": "240", "attributes": { "latitude": 10.5582084656, "longitude": -71.7278594971, "fullName": "La Chinita International Airport" } }, { "key": "2731", "attributes": { "latitude": 18.572500228881836, "longitude": -69.98560333251953, "fullName": "La Isabela International Airport" } }, { "key": "777", "attributes": { "latitude": 10.042746543884277, "longitude": -69.3586196899414, "fullName": "Barquisimeto International Airport" } }, { "key": "1030", "attributes": { "latitude": 10.912603378295898, "longitude": -63.96659851074219, "fullName": "Del Caribe Santiago Mariño International Airport" } }, { "key": "3189", "attributes": { "latitude": 10.480500221252441, "longitude": -68.072998046875, "fullName": "General Bartolome Salom International Airport" } }, { "key": "935", "attributes": { "latitude": 18.2048, "longitude": -63.055099, "fullName": "Clayton J Lloyd International Airport" } }, { "key": "589", "attributes": { "latitude": 17.205699920654297, "longitude": -62.589900970458984, "fullName": "Vance W. Amory International Airport" } }, { "key": "1328", "attributes": { "latitude": 17.311199188232422, "longitude": -62.71870040893555, "fullName": "Robert L. Bradshaw International Airport" } }, { "key": "253", "attributes": { "latitude": 17.904399871826172, "longitude": -62.84360122680664, "fullName": "Gustaf III Airport" } }, { "key": "256", "attributes": { "latitude": 14.0202, "longitude": -60.992901, "fullName": "George F. L. Charles Airport" } }, { "key": "1814", "attributes": { "latitude": 11.149700164794922, "longitude": -60.83219909667969, "fullName": "Tobago-Crown Point Airport" } }, { "key": "250", "attributes": { "latitude": 15.547, "longitude": -61.299999, "fullName": "Douglas-Charles Airport" } }, { "key": "249", "attributes": { "latitude": 4.819809913639999, "longitude": -52.360401153599994, "fullName": "Cayenne-Rochambeau Airport" } }, { "key": "2650", "attributes": { "latitude": 13.156695, "longitude": -61.149945, "fullName": "Argyle International Airport" } }, { "key": "941", "attributes": { "latitude": 18.444799423217773, "longitude": -64.54299926757812, "fullName": "Terrance B. Lettsome International Airport" } }, { "key": "255", "attributes": { "latitude": 18.099899291992, "longitude": -63.047199249268, "fullName": "L'Espérance Airport" } }, { "key": "3313", "attributes": { "latitude": 17.645000457763672, "longitude": -63.220001220703125, "fullName": "Juancho E. Yrausquin Airport" } }, { "key": "1891", "attributes": { "latitude": 19.96980094909668, "longitude": -75.83540344238281, "fullName": "Antonio Maceo International Airport" } }, { "key": "3312", "attributes": { "latitude": 17.49650001525879, "longitude": -62.979400634765625, "fullName": "F. D. Roosevelt Airport" } }, { "key": "964", "attributes": { "latitude": 17.701900482177734, "longitude": -64.79859924316406, "fullName": "Henry E Rohlsen Airport" } }, { "key": "906", "attributes": { "latitude": 34.741100311299995, "longitude": 112.388000488, "fullName": "Luoyang Airport" } }, { "key": "2310", "attributes": { "latitude": 37.5085983276, "longitude": 118.788002014, "fullName": "Dongying Shengli Airport" } }, { "key": "2309", "attributes": { "latitude": 23.7206001282, "longitude": 106.959999084, "fullName": "Baise Youjiang Airport" } }, { "key": "1985", "attributes": { "latitude": 30.79545, "longitude": 106.1626, "fullName": "Nanchong Airport" } }, { "key": "1972", "attributes": { "latitude": 26.2605555556, "longitude": 105.873333333, "fullName": "Anshun Huangguoshu Airport" } }, { "key": "1977", "attributes": { "latitude": 30.7403, "longitude": 117.6856, "fullName": "Jiuhuashan Airport" } }, { "key": "1918", "attributes": { "latitude": 24.2075, "longitude": 109.390999, "fullName": "Liuzhou Bailian Airport" } }, { "key": "1847", "attributes": { "latitude": 27.4411111111, "longitude": 109.7, "fullName": "Zhijiang Airport" } }, { "key": "837", "attributes": { "latitude": 27.7936, "longitude": 99.6772, "fullName": "Diqing Airport" } }, { "key": "274", "attributes": { "latitude": 36.5258333333, "longitude": 114.425555556, "fullName": "Handan Airport" } }, { "key": "1982", "attributes": { "latitude": 25.4525, "longitude": 107.961667, "fullName": "Libo Airport" } }, { "key": "1976", "attributes": { "latitude": 35.292778, "longitude": 116.346667, "fullName": "Jining Qufu Airport" } }, { "key": "293", "attributes": { "latitude": 24.4011, "longitude": 98.5317, "fullName": "Mangshi Airport" } }, { "key": "1973", "attributes": { "latitude": 27.267066, "longitude": 105.472097, "fullName": "Bijie Feixiong Airport" } }, { "key": "1913", "attributes": { "latitude": 26.856899261499997, "longitude": 114.736999512, "fullName": "Jinggangshan Airport" } }, { "key": "1914", "attributes": { "latitude": 29.476944, "longitude": 115.801111, "fullName": "Jiujiang Lushan Airport" } }, { "key": "284", "attributes": { "latitude": 32.8533333333, "longitude": 103.682222222, "fullName": "Jiuzhai Huanglong Airport" } }, { "key": "836", "attributes": { "latitude": 40.560001373291016, "longitude": 109.99700164794922, "fullName": "Baotou Airport" } }, { "key": "1899", "attributes": { "latitude": 31.1302, "longitude": 107.4295, "fullName": "Dachuan Airport" } }, { "key": "1969", "attributes": { "latitude": 25.0863888889, "longitude": 104.959444444, "fullName": "Xingyi Airport" } }, { "key": "330", "attributes": { "latitude": 28.8005555556, "longitude": 104.545, "fullName": "Yibin Caiba Airport" } }, { "key": "265", "attributes": { "latitude": 31.919701, "longitude": 119.778999, "fullName": "Changzhou Benniu Airport" } }, { "key": "1912", "attributes": { "latitude": 29.3386001587, "longitude": 117.176002502, "fullName": "Jingdezhen Airport" } }, { "key": "2622", "attributes": { "latitude": 39.782798767089844, "longitude": 116.38800048828125, "fullName": "Beijing Nanyuan Airport" } }, { "key": "324", "attributes": { "latitude": 30.8017, "longitude": 108.433, "fullName": "Wanxian Airport" } }, { "key": "1853", "attributes": { "latitude": 27.883333, "longitude": 109.308889, "fullName": "Tongren Fenghuang Airport" } }, { "key": "1911", "attributes": { "latitude": 28.56220054626465, "longitude": 121.42900085449219, "fullName": "Huangyan Luqiao Airport" } }, { "key": "332", "attributes": { "latitude": 32.5634, "longitude": 119.7198, "fullName": "Yangzhou Taizhou Airport" } }, { "key": "282", "attributes": { "latitude": 29.5133333333, "longitude": 108.831111111, "fullName": "Qianjiang Wulingshan Airport" } }, { "key": "1975", "attributes": { "latitude": 26.32217, "longitude": 109.1499, "fullName": "Liping Airport" } }, { "key": "298", "attributes": { "latitude": 31.4281005859375, "longitude": 104.74099731445312, "fullName": "Mianyang Airport" } }, { "key": "328", "attributes": { "latitude": 36.5275, "longitude": 102.042999, "fullName": "Xining Caojiabu Airport" } }, { "key": "1908", "attributes": { "latitude": 42.8414, "longitude": 93.669197, "fullName": "Hami Airport" } }, { "key": "1917", "attributes": { "latitude": 41.69779968261719, "longitude": 86.12889862060547, "fullName": "Korla Airport" } }, { "key": "320", "attributes": { "latitude": 38.35971, "longitude": 109.590927, "fullName": "Yulin Yuyang Airport" } }, { "key": "1554", "attributes": { "latitude": 42.066944, "longitude": 127.602222, "fullName": "Changbaishan Airport" } }, { "key": "1934", "attributes": { "latitude": 42.8828010559, "longitude": 129.451004028, "fullName": "Yanji Chaoyangchuan Airport" } }, { "key": "1991", "attributes": { "latitude": 27.325599670410156, "longitude": 103.75499725341797, "fullName": "Zhaotong Airport" } }, { "key": "325", "attributes": { "latitude": 27.989099502563477, "longitude": 102.18399810791016, "fullName": "Xichang Qingshan Airport" } }, { "key": "306", "attributes": { "latitude": 26.54, "longitude": 101.79852, "fullName": "Bao'anying Airport" } }, { "key": "294", "attributes": { "latitude": 29.2978000641, "longitude": 90.91190338130001, "fullName": "Lhasa Gonggar Airport" } }, { "key": "2448", "attributes": { "latitude": 36.636902, "longitude": 109.554001, "fullName": "Yan'an Ershilipu Airport" } }, { "key": "1851", "attributes": { "latitude": 26.338661, "longitude": 111.610043, "fullName": "Lingling Airport" } }, { "key": "296", "attributes": { "latitude": 29.303300857543945, "longitude": 94.33529663085938, "fullName": "Nyingchi Airport" } }, { "key": "1894", "attributes": { "latitude": 41.262501, "longitude": 80.291702, "fullName": "Aksu Airport" } }, { "key": "841", "attributes": { "latitude": 24.9380555556, "longitude": 98.48583333330001, "fullName": "Tengchong Tuofeng Airport" } }, { "key": "2720", "attributes": { "latitude": 30.1575, "longitude": 101.734722, "fullName": "Kangding Airport" } }, { "key": "285", "attributes": { "latitude": 39.5429000854, "longitude": 76.0199966431, "fullName": "Kashgar Airport" } }, { "key": "1895", "attributes": { "latitude": 30.553600311279297, "longitude": 97.1082992553711, "fullName": "Qamdo Bangda Airport" } }, { "key": "838", "attributes": { "latitude": 25.649401, "longitude": 100.319, "fullName": "Dali Airport" } }, { "key": "267", "attributes": { "latitude": 29.323056, "longitude": 100.053333, "fullName": "Daocheng Yading Airport" } }, { "key": "1932", "attributes": { "latitude": 43.955799, "longitude": 81.330299, "fullName": "Yining Airport" } }, { "key": "266", "attributes": { "latitude": 40.060299, "longitude": 113.482002, "fullName": "Datong Airport" } }, { "key": "2230", "attributes": { "latitude": 39.968102, "longitude": 119.731003, "fullName": "Shanhaiguan Airport" } }, { "key": "1897", "attributes": { "latitude": 42.23500061035156, "longitude": 118.90799713134766, "fullName": "Chifeng Airport" } }, { "key": "1896", "attributes": { "latitude": 41.538101, "longitude": 120.434998, "fullName": "Chaoyang Airport" } }, { "key": "1920", "attributes": { "latitude": 44.5241012573, "longitude": 129.569000244, "fullName": "Mudanjiang Hailang International Airport" } }, { "key": "1981", "attributes": { "latitude": 47.7520555556, "longitude": 129.019125, "fullName": "Lindu Airport" } }, { "key": "1849", "attributes": { "latitude": 46.84339904789999, "longitude": 130.464996338, "fullName": "Jiamusi Airport" } }, { "key": "273", "attributes": { "latitude": 34.8105, "longitude": 102.6447, "fullName": "Gannan Xiahe Airport" } }, { "key": "1923", "attributes": { "latitude": 40.926, "longitude": 107.7428, "fullName": "Bayannur Tianjitai Airport" } }, { "key": "1927", "attributes": { "latitude": 39.7934, "longitude": 106.7993, "fullName": "Wuhai Airport" } }, { "key": "1930", "attributes": { "latitude": 43.91559982299805, "longitude": 115.96399688720703, "fullName": "Xilinhot Airport" } }, { "key": "1907", "attributes": { "latitude": 46.195333, "longitude": 122.008333, "fullName": "Ulanhot Airport" } }, { "key": "2396", "attributes": { "latitude": 43.4225, "longitude": 112.096667, "fullName": "Erenhot Saiwusu International Airport" } }, { "key": "2532", "attributes": { "latitude": 47.3106, "longitude": 119.9117, "fullName": "Arxan Yi'ershi Airport" } }, { "key": "1846", "attributes": { "latitude": 50.1716209371, "longitude": 127.308883667, "fullName": "Heihe Airport" } }, { "key": "1850", "attributes": { "latitude": 45.293, "longitude": 131.193, "fullName": "Jixi Xingkaihu Airport" } }, { "key": "1979", "attributes": { "latitude": 37.9558982849, "longitude": 139.121002197, "fullName": "Niigata Airport" } }, { "key": "1852", "attributes": { "latitude": 52.912777777799995, "longitude": 122.43, "fullName": "Gu-Lian Airport" } }, { "key": "1848", "attributes": { "latitude": 50.371389, "longitude": 124.1175, "fullName": "Jiagedaqi Airport" } }, { "key": "2280", "attributes": { "latitude": 33.479400634799994, "longitude": 131.736999512, "fullName": "Oita Airport" } }, { "key": "2546", "attributes": { "latitude": 39.6156005859375, "longitude": 140.218994140625, "fullName": "Akita Airport" } }, { "key": "2551", "attributes": { "latitude": 33.930000305200004, "longitude": 131.279006958, "fullName": "Yamaguchi Ube Airport" } }, { "key": "1924", "attributes": { "latitude": 35.896872, "longitude": 128.65531, "fullName": "Daegu Airport" } }, { "key": "2536", "attributes": { "latitude": 40.73469924926758, "longitude": 140.6909942626953, "fullName": "Aomori Airport" } }, { "key": "2540", "attributes": { "latitude": 32.83729934692383, "longitude": 130.85499572753906, "fullName": "Kumamoto Airport" } }, { "key": "1825", "attributes": { "latitude": 35.4921989440918, "longitude": 133.23599243164062, "fullName": "Miho Yonago Airport" } }, { "key": "903", "attributes": { "latitude": 33.149700164799995, "longitude": 130.302001953, "fullName": "Saga Airport" } }, { "key": "280", "attributes": { "latitude": 39.856899, "longitude": 98.3414, "fullName": "Jiayuguan Airport" } }, { "key": "2398", "attributes": { "latitude": 38.542222222199996, "longitude": 102.348333333, "fullName": "Jinchuan Airport" } }, { "key": "1909", "attributes": { "latitude": 29.9342002869, "longitude": 122.361999512, "fullName": "Zhoushan Airport" } }, { "key": "2721", "attributes": { "latitude": 32.1, "longitude": 80.0530555556, "fullName": "Ngari Gunsa Airport" } }, { "key": "840", "attributes": { "latitude": 22.793301, "longitude": 100.959, "fullName": "Pu'er Simao Airport" } }, { "key": "1974", "attributes": { "latitude": 25.053301, "longitude": 99.168297, "fullName": "Baoshan Yunduan Airport" } }, { "key": "842", "attributes": { "latitude": 27.8025, "longitude": 114.3062, "fullName": "Yichun Mingyueshan Airport" } }, { "key": "1983", "attributes": { "latitude": 23.738100051900002, "longitude": 100.025001526, "fullName": "Lintsang Airfield" } }, { "key": "2311", "attributes": { "latitude": 23.456699, "longitude": 111.248001, "fullName": "Wuzhou Changzhoudao Airport" } }, { "key": "2397", "attributes": { "latitude": 35.799702, "longitude": 107.602997, "fullName": "Qingyang Airport" } }, { "key": "2399", "attributes": { "latitude": 38.8018989563, "longitude": 100.675003052, "fullName": "Zhangye Ganzhou Airport" } }, { "key": "2556", "attributes": { "latitude": -42.836101532, "longitude": 147.509994507, "fullName": "Hobart International Airport" } }, { "key": "2560", "attributes": { "latitude": -21.171699523900003, "longitude": 149.179992676, "fullName": "Mackay Airport" } }, { "key": "2559", "attributes": { "latitude": -26.6033, "longitude": 153.091003, "fullName": "Sunshine Coast Airport" } }, { "key": "2561", "attributes": { "latitude": -32.79499816894531, "longitude": 151.83399963378906, "fullName": "Newcastle Airport" } }, { "key": "3046", "attributes": { "latitude": -40.9989013671875, "longitude": 145.7310028076172, "fullName": "Wynyard Airport" } }, { "key": "2959", "attributes": { "latitude": -30.3206005096, "longitude": 153.115997314, "fullName": "Coffs Harbour Airport" } }, { "key": "3399", "attributes": { "latitude": -37.745601654052734, "longitude": 140.78500366210938, "fullName": "Mount Gambier Airport" } }, { "key": "3400", "attributes": { "latitude": -36.9085998535, "longitude": 149.901000977, "fullName": "Merimbula Airport" } }, { "key": "2554", "attributes": { "latitude": -28.8339004517, "longitude": 153.56199646, "fullName": "Ballina Byron Gateway Airport" } }, { "key": "2977", "attributes": { "latitude": -35.1652984619, "longitude": 147.466003418, "fullName": "Wagga Wagga City Airport" } }, { "key": "2557", "attributes": { "latitude": -20.3581008911, "longitude": 148.95199585, "fullName": "Hamilton Island Airport" } }, { "key": "3048", "attributes": { "latitude": -39.877498626708984, "longitude": 143.8780059814453, "fullName": "King Island Airport" } }, { "key": "2953", "attributes": { "latitude": -36.06779861450195, "longitude": 146.95799255371094, "fullName": "Albury Airport" } }, { "key": "2120", "attributes": { "latitude": -41.3272018433, "longitude": 174.804992676, "fullName": "Wellington International Airport" } }, { "key": "2558", "attributes": { "latitude": -41.54529953, "longitude": 147.214004517, "fullName": "Launceston Airport" } }, { "key": "2971", "attributes": { "latitude": -34.229198455799995, "longitude": 142.085998535, "fullName": "Mildura Airport" } }, { "key": "2961", "attributes": { "latitude": -41.1697006226, "longitude": 146.429992676, "fullName": "Devonport Airport" } }, { "key": "2121", "attributes": { "latitude": -45.0210990906, "longitude": 168.738998413, "fullName": "Queenstown International Airport" } }, { "key": "2098", "attributes": { "latitude": 48.13570022583008, "longitude": 114.64600372314453, "fullName": "Choibalsan Airport" } }, { "key": "1970", "attributes": { "latitude": 41.105301, "longitude": 122.853996, "fullName": "Anshan Air Base" } }, { "key": "1922", "attributes": { "latitude": 47.239601135253906, "longitude": 123.91799926757812, "fullName": "Qiqihar Sanjiazi Airport" } }, { "key": "1921", "attributes": { "latitude": 34.991406, "longitude": 126.382814, "fullName": "Muan International Airport" } }, { "key": "1900", "attributes": { "latitude": 40.0247, "longitude": 124.286003, "fullName": "Dandong Airport" } }, { "key": "335", "attributes": { "latitude": 37.573125, "longitude": 105.154454, "fullName": "Zhongwei Shapotou Airport" } }, { "key": "1901", "attributes": { "latitude": 46.7463888889, "longitude": 125.140555556, "fullName": "Saertu Airport" } }, { "key": "411", "attributes": { "latitude": 32.541099548339844, "longitude": -116.97000122070312, "fullName": "General Abelardo L. Rodríguez International Airport" } }, { "key": "904", "attributes": { "latitude": 36.181098938, "longitude": 140.414993286, "fullName": "Hyakuri Airport" } }, { "key": "2443", "attributes": { "latitude": 38.061298, "longitude": 128.669006, "fullName": "Yangyang International Airport" } }, { "key": "2724", "attributes": { "latitude": 40.7386016846, "longitude": 114.930000305, "fullName": "Zhangjiakou Ningyuan Airport" } }, { "key": "3161", "attributes": { "latitude": 14.174300193786621, "longitude": 145.2429962158203, "fullName": "Rota International Airport" } }, { "key": "2976", "attributes": { "latitude": -31.0839004517, "longitude": 150.847000122, "fullName": "Tamworth Airport" } }, { "key": "2807", "attributes": { "latitude": -29.04159927368164, "longitude": 167.93899536132812, "fullName": "Norfolk Island International Airport" } }, { "key": "2968", "attributes": { "latitude": -31.5382995605, "longitude": 159.07699585, "fullName": "Lord Howe Island Airport" } }, { "key": "2228", "attributes": { "latitude": -17.699300765991, "longitude": 168.32000732422, "fullName": "Bauerfield International Airport" } }, { "key": "2562", "attributes": { "latitude": -20.4950008392, "longitude": 148.552001953, "fullName": "Proserpine Whitsunday Coast Airport" } }, { "key": "2814", "attributes": { "latitude": -31.4358005524, "longitude": 152.863006592, "fullName": "Port Macquarie Airport" } }, { "key": "2423", "attributes": { "latitude": -21.2026996613, "longitude": -159.805999756, "fullName": "Rarotonga International Airport" } }, { "key": "2954", "attributes": { "latitude": -30.528099060099997, "longitude": 151.617004395, "fullName": "Armidale Airport" } }, { "key": "2224", "attributes": { "latitude": -21.241199493408203, "longitude": -175.14999389648438, "fullName": "Fua'amotu International Airport" } }, { "key": "2966", "attributes": { "latitude": -25.3188991547, "longitude": 152.880004883, "fullName": "Hervey Bay Airport" } }, { "key": "3403", "attributes": { "latitude": -33.3816986084, "longitude": 149.132995605, "fullName": "Orange Airport" } }, { "key": "2963", "attributes": { "latitude": -23.869699, "longitude": 151.223007, "fullName": "Gladstone Airport" } }, { "key": "3390", "attributes": { "latitude": -32.0013999939, "longitude": 141.472000122, "fullName": "Broken Hill Airport" } }, { "key": "2222", "attributes": { "latitude": -18.04330062866211, "longitude": 178.5590057373047, "fullName": "Nausori International Airport" } }, { "key": "3404", "attributes": { "latitude": -33.131401062, "longitude": 148.238998413, "fullName": "Parkes Airport" } }, { "key": "3401", "attributes": { "latitude": -35.8978004456, "longitude": 150.143997192, "fullName": "Moruya Airport" } }, { "key": "2213", "attributes": { "latitude": -13.829999923706055, "longitude": -172.00799560546875, "fullName": "Faleolo International Airport" } }, { "key": "2960", "attributes": { "latitude": -32.2167015076, "longitude": 148.574996948, "fullName": "Dubbo City Regional Airport" } }, { "key": "2552", "attributes": { "latitude": -38.039398, "longitude": 144.468994, "fullName": "Avalon Airport" } }, { "key": "3406", "attributes": { "latitude": -31.8885993958, "longitude": 152.514007568, "fullName": "Taree Airport" } }, { "key": "3394", "attributes": { "latitude": -34.2508010864, "longitude": 146.067001343, "fullName": "Griffith Airport" } }, { "key": "3398", "attributes": { "latitude": -28.8302993774, "longitude": 153.259994507, "fullName": "Lismore Airport" } }, { "key": "2972", "attributes": { "latitude": -29.498899459799997, "longitude": 149.845001221, "fullName": "Moree Airport" } }, { "key": "3391", "attributes": { "latitude": -33.4094009399, "longitude": 149.651992798, "fullName": "Bathurst Airport" } }, { "key": "3402", "attributes": { "latitude": -34.7022018433, "longitude": 146.511993408, "fullName": "Narrandera Airport" } }, { "key": "2553", "attributes": { "latitude": -25.1861, "longitude": 130.975998, "fullName": "Ayers Rock Connellan Airport" } }, { "key": "2940", "attributes": { "latitude": -27.542801, "longitude": 151.916, "fullName": "Toowoomba Airport" } }, { "key": "1916", "attributes": { "latitude": 28.965799, "longitude": 118.899002, "fullName": "Quzhou Airport" } }, { "key": "1508", "attributes": { "latitude": 24.023099899291992, "longitude": 121.61799621582031, "fullName": "Hualien Airport" } }, { "key": "1514", "attributes": { "latitude": 22.7549991607666, "longitude": 121.10199737548828, "fullName": "Taitung Airport" } }, { "key": "1509", "attributes": { "latitude": 24.4279, "longitude": 118.359001, "fullName": "Kinmen Airport" } }, { "key": "1511", "attributes": { "latitude": 23.568700790405273, "longitude": 119.62799835205078, "fullName": "Makung Airport" } }, { "key": "1910", "attributes": { "latitude": 37.03850173950195, "longitude": 79.86489868164062, "fullName": "Hotan Airport" } }, { "key": "1989", "attributes": { "latitude": 46.67250061035156, "longitude": 83.3407974243164, "fullName": "Tacheng Airport" } }, { "key": "1968", "attributes": { "latitude": 47.7498855591, "longitude": 88.08580780030002, "fullName": "Altay Air Base" } }, { "key": "1978", "attributes": { "latitude": 41.677856, "longitude": 82.872917, "fullName": "Kuqa Airport" } }, { "key": "1980", "attributes": { "latitude": 45.46655, "longitude": 84.9527, "fullName": "Karamay Airport" } }, { "key": "1986", "attributes": { "latitude": 43.4318, "longitude": 83.3786, "fullName": "Xinyuan Nalati Airport" } }, { "key": "2395", "attributes": { "latitude": 44.895, "longitude": 82.3, "fullName": "Alashankou Bole (Bortala) airport" } }, { "key": "1534", "attributes": { "latitude": 30.3202991486, "longitude": 109.48500061, "fullName": "Enshi Airport" } }, { "key": "2719", "attributes": { "latitude": 36.4006, "longitude": 94.786102, "fullName": "Golmud Airport" } }, { "key": "2723", "attributes": { "latitude": 32.836388888900004, "longitude": 97.0363888889, "fullName": "Yushu Batang Airport" } }, { "key": "845", "attributes": { "latitude": 49.950801849365234, "longitude": -125.27100372314453, "fullName": "Campbell River Airport" } }, { "key": "849", "attributes": { "latitude": 52.1831016541, "longitude": -122.054000854, "fullName": "Williams Lake Airport" } }, { "key": "853", "attributes": { "latitude": 49.0555992126, "longitude": -117.60900116, "fullName": "Trail Airport" } }, { "key": "976", "attributes": { "latitude": 53.8894004822, "longitude": -122.679000854, "fullName": "Prince George Airport" } }, { "key": "850", "attributes": { "latitude": 49.610801696777, "longitude": -115.78199768066, "fullName": "Cranbrook/Canadian Rockies International Airport" } }, { "key": "1254", "attributes": { "latitude": 21.97599983215332, "longitude": -159.33900451660156, "fullName": "Lihue Airport" } }, { "key": "969", "attributes": { "latitude": 55.7422981262207, "longitude": -120.18299865722656, "fullName": "Dawson Creek Airport" } }, { "key": "1426", "attributes": { "latitude": 53.25429916379999, "longitude": -131.813995361, "fullName": "Sandspit Airport" } }, { "key": "843", "attributes": { "latitude": 52.387501, "longitude": -126.596001, "fullName": "Bella Coola Airport" } }, { "key": "970", "attributes": { "latitude": 50.7022018433, "longitude": -120.444000244, "fullName": "Kamloops Airport" } }, { "key": "1421", "attributes": { "latitude": 49.46310043334961, "longitude": -119.60199737548828, "fullName": "Penticton Airport" } }, { "key": "1402", "attributes": { "latitude": 54.286098480199996, "longitude": -130.445007324, "fullName": "Prince Rupert Airport" } }, { "key": "1245", "attributes": { "latitude": 19.738783, "longitude": -156.045603, "fullName": "Ellison Onizuka Kona International At Keahole Airport" } }, { "key": "1401", "attributes": { "latitude": 56.653301239, "longitude": -111.222000122, "fullName": "Fort McMurray Airport" } }, { "key": "852", "attributes": { "latitude": 50.680599212646484, "longitude": -127.36699676513672, "fullName": "Port Hardy Airport" } }, { "key": "855", "attributes": { "latitude": 54.02750015258789, "longitude": -132.125, "fullName": "Masset Airport" } }, { "key": "848", "attributes": { "latitude": 49.71080017089844, "longitude": -124.88700103759766, "fullName": "Comox Airport" } }, { "key": "1394", "attributes": { "latitude": 49.054970224899996, "longitude": -123.869862556, "fullName": "Nanaimo Airport" } }, { "key": "376", "attributes": { "latitude": 60.7095985413, "longitude": -135.067001343, "fullName": "Whitehorse / Erik Nielsen International Airport" } }, { "key": "975", "attributes": { "latitude": 56.23809814453125, "longitude": -120.73999786376953, "fullName": "Fort St John Airport" } }, { "key": "978", "attributes": { "latitude": 54.82469940185547, "longitude": -127.18299865722656, "fullName": "Smithers Airport" } }, { "key": "1395", "attributes": { "latitude": 49.2963981628, "longitude": -117.632003784, "fullName": "Castlegar/West Kootenay Regional Airport" } }, { "key": "974", "attributes": { "latitude": 53.026100158691406, "longitude": -122.51000213623047, "fullName": "Quesnel Airport" } }, { "key": "977", "attributes": { "latitude": 54.468498, "longitude": -128.576009, "fullName": "Northwest Regional Airport Terrace-Kitimat" } }, { "key": "847", "attributes": { "latitude": 49.83420181274414, "longitude": -124.5, "fullName": "Powell River Airport" } }, { "key": "374", "attributes": { "latitude": 49.9561004639, "longitude": -119.377998352, "fullName": "Kelowna International Airport" } }, { "key": "851", "attributes": { "latitude": 48.646900177, "longitude": -123.426002502, "fullName": "Victoria International Airport" } }, { "key": "1260", "attributes": { "latitude": 31.9424991607666, "longitude": -102.2020034790039, "fullName": "Midland International Airport" } }, { "key": "1203", "attributes": { "latitude": 44.12459945678711, "longitude": -123.21199798583984, "fullName": "Mahlon Sweet Field" } }, { "key": "2304", "attributes": { "latitude": 42.19540023803711, "longitude": -89.09719848632812, "fullName": "Chicago Rockford International Airport" } }, { "key": "2044", "attributes": { "latitude": 48.2593994140625, "longitude": -101.27999877929688, "fullName": "Minot International Airport" } }, { "key": "1206", "attributes": { "latitude": 36.77619934082031, "longitude": -119.71800231933594, "fullName": "Fresno Yosemite International Airport" } }, { "key": "1693", "attributes": { "latitude": 46.26470184326172, "longitude": -119.11900329589844, "fullName": "Tri Cities Airport" } }, { "key": "1264", "attributes": { "latitude": 26.17580032, "longitude": -98.23860168, "fullName": "Mc Allen Miller International Airport" } }, { "key": "1288", "attributes": { "latitude": 34.055999755859375, "longitude": -117.60099792480469, "fullName": "Ontario International Airport" } }, { "key": "937", "attributes": { "latitude": 45.807701110839844, "longitude": -108.54299926757812, "fullName": "Billings Logan International Airport" } }, { "key": "1173", "attributes": { "latitude": 34.20069885253906, "longitude": -118.35900115966797, "fullName": "Bob Hope Airport" } }, { "key": "1148", "attributes": { "latitude": 35.219398, "longitude": -101.706001, "fullName": "Rick Husband Amarillo International Airport" } }, { "key": "1215", "attributes": { "latitude": 47.61989974975586, "longitude": -117.53399658203125, "fullName": "Spokane International Airport" } }, { "key": "1265", "attributes": { "latitude": 42.37419891357422, "longitude": -122.87300109863281, "fullName": "Rogue Valley International Medford Airport" } }, { "key": "2037", "attributes": { "latitude": 43.514599, "longitude": -112.070999, "fullName": "Idaho Falls Regional Airport" } }, { "key": "1277", "attributes": { "latitude": 36.58700180053711, "longitude": -121.84300231933594, "fullName": "Monterey Peninsula Airport" } }, { "key": "2021", "attributes": { "latitude": 46.772701263427734, "longitude": -100.74600219726562, "fullName": "Bismarck Municipal Airport" } }, { "key": "1223", "attributes": { "latitude": 40.967498779296875, "longitude": -98.30960083007812, "fullName": "Central Nebraska Regional Airport" } }, { "key": "1686", "attributes": { "latitude": 47.48199844, "longitude": -111.3710022, "fullName": "Great Falls International Airport" } }, { "key": "1690", "attributes": { "latitude": 46.91630173, "longitude": -114.0910034, "fullName": "Missoula International Airport" } }, { "key": "1685", "attributes": { "latitude": 48.31050109863281, "longitude": -114.25599670410156, "fullName": "Glacier Park International Airport" } }, { "key": "2293", "attributes": { "latitude": 33.30780029, "longitude": -111.6549988, "fullName": "Phoenix-Mesa-Gateway Airport" } }, { "key": "2306", "attributes": { "latitude": 34.89889908, "longitude": -120.4570007, "fullName": "Santa Maria Pub/Capt G Allan Hancock Field" } }, { "key": "916", "attributes": { "latitude": 47.949299, "longitude": -97.176102, "fullName": "Grand Forks International Airport" } }, { "key": "1251", "attributes": { "latitude": 33.81769943, "longitude": -118.1520004, "fullName": "Long Beach /Daugherty Field/ Airport" } }, { "key": "2030", "attributes": { "latitude": 42.908001, "longitude": -106.463997, "fullName": "Casper-Natrona County International Airport" } }, { "key": "1218", "attributes": { "latitude": 39.1223983765, "longitude": -108.527000427, "fullName": "Grand Junction Regional Airport" } }, { "key": "1256", "attributes": { "latitude": 27.543800354003906, "longitude": -99.46160125732422, "fullName": "Laredo International Airport" } }, { "key": "1248", "attributes": { "latitude": 33.663601, "longitude": -101.822998, "fullName": "Lubbock Preston Smith International Airport" } }, { "key": "1680", "attributes": { "latitude": 48.79280090332031, "longitude": -122.53800201416016, "fullName": "Bellingham International Airport" } }, { "key": "2305", "attributes": { "latitude": 37.894199371338, "longitude": -121.2379989624, "fullName": "Stockton Metropolitan Airport" } }, { "key": "3136", "attributes": { "latitude": 33.12829971, "longitude": -117.2799988, "fullName": "Mc Clellan-Palomar Airport" } }, { "key": "1352", "attributes": { "latitude": 32.65660095, "longitude": -114.6060028, "fullName": "Yuma MCAS/Yuma International Airport" } }, { "key": "2433", "attributes": { "latitude": 19.721399307250977, "longitude": -155.04800415039062, "fullName": "Hilo International Airport" } }, { "key": "1274", "attributes": { "latitude": 37.62409973, "longitude": -118.8379974, "fullName": "Mammoth Yosemite Airport" } }, { "key": "3385", "attributes": { "latitude": 34.65449905, "longitude": -112.4199982, "fullName": "Ernest A. Love Field" } }, { "key": "1335", "attributes": { "latitude": 38.50899887, "longitude": -122.8130035, "fullName": "Charles M. Schulz Sonoma County Airport" } }, { "key": "393", "attributes": { "latitude": 29.095899581900003, "longitude": -111.047996521, "fullName": "General Ignacio P. Garcia International Airport" } }, { "key": "1317", "attributes": { "latitude": 34.42620087, "longitude": -119.8399963, "fullName": "Santa Barbara Municipal Airport" } }, { "key": "1299", "attributes": { "latitude": -17.553699, "longitude": -149.606995, "fullName": "Faa'a International Airport" } }, { "key": "417", "attributes": { "latitude": 17.601600647, "longitude": -101.460998535, "fullName": "Ixtapa Zihuatanejo International Airport" } }, { "key": "1688", "attributes": { "latitude": 25.989200592041016, "longitude": -111.3479995727539, "fullName": "Loreto International Airport" } }, { "key": "3389", "attributes": { "latitude": 36.3186988831, "longitude": -119.392997742, "fullName": "Visalia Municipal Airport" } }, { "key": "1645", "attributes": { "latitude": 24.1242008209, "longitude": -104.527999878, "fullName": "General Guadalupe Victoria International Airport" } }, { "key": "1272", "attributes": { "latitude": 19.849899292, "longitude": -101.025001526, "fullName": "General Francisco J. Mujica International Airport" } }, { "key": "1157", "attributes": { "latitude": 35.43360138, "longitude": -119.0569992, "fullName": "Meadows Field" } }, { "key": "1304", "attributes": { "latitude": 44.2541008, "longitude": -121.1500015, "fullName": "Roberts Field" } }, { "key": "3131", "attributes": { "latitude": 39.22320175, "longitude": -106.8690033, "fullName": "Aspen-Pitkin Co/Sardy Field" } }, { "key": "400", "attributes": { "latitude": 23.1613998413, "longitude": -106.26599884, "fullName": "General Rafael Buelna International Airport" } }, { "key": "3345", "attributes": { "latitude": 19.396699905395508, "longitude": -102.03900146484375, "fullName": "Licenciado y General Ignacio Lopez Rayon Airport" } }, { "key": "2303", "attributes": { "latitude": 40.219200134277, "longitude": -111.72299957275, "fullName": "Provo Municipal Airport" } }, { "key": "416", "attributes": { "latitude": 22.8971004486, "longitude": -102.68699646, "fullName": "General Leobardo C. Ruiz International Airport" } }, { "key": "418", "attributes": { "latitude": 19.144800186199998, "longitude": -104.558998108, "fullName": "Playa De Oro International Airport" } }, { "key": "380", "attributes": { "latitude": 21.705601, "longitude": -102.318001, "fullName": "Jesús Terán Paredo International Airport" } }, { "key": "3383", "attributes": { "latitude": 37.28469849, "longitude": -120.5139999, "fullName": "Merced Regional Macready Field" } }, { "key": "1318", "attributes": { "latitude": 35.236801147499996, "longitude": -120.641998291, "fullName": "San Luis County Regional Airport" } }, { "key": "1313", "attributes": { "latitude": 35.617099762, "longitude": -106.088996887, "fullName": "Santa Fe Municipal Airport" } }, { "key": "2232", "attributes": { "latitude": 12.829500198364258, "longitude": 45.02880096435547, "fullName": "Aden International Airport" } }, { "key": "2126", "attributes": { "latitude": 24.144199, "longitude": 38.0634, "fullName": "Prince Abdulmohsin Bin Abdulaziz Airport" } }, { "key": "2233", "attributes": { "latitude": 18.240400314299997, "longitude": 42.65660095210001, "fullName": "Abha Regional Airport" } }, { "key": "2290", "attributes": { "latitude": 19.4335994720459, "longitude": 37.234100341796875, "fullName": "Port Sudan New International Airport" } }, { "key": "2528", "attributes": { "latitude": 25.671, "longitude": 32.7066, "fullName": "Luxor International Airport" } }, { "key": "2313", "attributes": { "latitude": 26.342778, "longitude": 31.742778, "fullName": "Sohag International Airport" } }, { "key": "2123", "attributes": { "latitude": 26.302799224853516, "longitude": 43.77439880371094, "fullName": "Gassim Airport" } }, { "key": "2125", "attributes": { "latitude": 28.3654, "longitude": 36.6189, "fullName": "Tabuk Airport" } }, { "key": "2669", "attributes": { "latitude": 23.9643993378, "longitude": 32.8199996948, "fullName": "Aswan International Airport" } }, { "key": "2124", "attributes": { "latitude": 21.483001, "longitude": 40.543442, "fullName": "Ta’if Regional Airport" } }, { "key": "2312", "attributes": { "latitude": 27.0464992523, "longitude": 31.0119991302, "fullName": "Assiut International Airport" } }, { "key": "2237", "attributes": { "latitude": 14.662599563598633, "longitude": 49.375, "fullName": "Mukalla International Airport" } }, { "key": "891", "attributes": { "latitude": 30.917699813842773, "longitude": 29.696399688720703, "fullName": "Borg El Arab International Airport" } }, { "key": "670", "attributes": { "latitude": 29.56130027770996, "longitude": 34.96009826660156, "fullName": "Eilat Airport" } }, { "key": "3251", "attributes": { "latitude": 49.242531, "longitude": 28.613778, "fullName": "Vinnytsia/Gavyryshivka Airport" } }, { "key": "341", "attributes": { "latitude": 62.95289993, "longitude": -155.6060028, "fullName": "McGrath Airport" } }, { "key": "342", "attributes": { "latitude": 63.0186, "longitude": -154.358002, "fullName": "Nikolai Airport" } }, { "key": "712", "attributes": { "latitude": 61.581600189208984, "longitude": -159.54299926757812, "fullName": "Aniak Airport" } }, { "key": "344", "attributes": { "latitude": 62.894401550299996, "longitude": -155.977005005, "fullName": "Tatalina LRRS Airport" } }, { "key": "597", "attributes": { "latitude": 66.00469970703125, "longitude": 57.3671989440918, "fullName": "Usinsk Airport" } }, { "key": "2991", "attributes": { "latitude": 69.783302307129, "longitude": 170.59700012207, "fullName": "Pevek Airport" } }, { "key": "2073", "attributes": { "latitude": 53.20690155029297, "longitude": 63.55030059814453, "fullName": "Kostanay West Airport" } }, { "key": "2682", "attributes": { "latitude": 47.867000579833984, "longitude": 35.31570053100586, "fullName": "Zaporizhzhia International Airport" } }, { "key": "3181", "attributes": { "latitude": 51.7505989074707, "longitude": 36.29560089111328, "fullName": "Kursk East Airport" } }, { "key": "1137", "attributes": { "latitude": 42.176700592, "longitude": 42.4826011658, "fullName": "Kopitnari Airport" } }, { "key": "3180", "attributes": { "latitude": 52.806098937988, "longitude": 41.482799530029, "fullName": "Donskoye Airport" } }, { "key": "353", "attributes": { "latitude": 22.801000595092773, "longitude": 90.30120086669922, "fullName": "Barisal Airport" } }, { "key": "1612", "attributes": { "latitude": 25.70359992980957, "longitude": 91.97869873046875, "fullName": "Shillong Airport" } }, { "key": "642", "attributes": { "latitude": 20.244400024399997, "longitude": 85.8178024292, "fullName": "Biju Patnaik Airport" } }, { "key": "665", "attributes": { "latitude": 21.180401, "longitude": 81.7388, "fullName": "Raipur Airport" } }, { "key": "1602", "attributes": { "latitude": 25.883899688699998, "longitude": 93.77110290530001, "fullName": "Dimapur Airport" } }, { "key": "1034", "attributes": { "latitude": 23.840599060099997, "longitude": 92.6196975708, "fullName": "Lengpui Airport" } }, { "key": "668", "attributes": { "latitude": 25.4524002075, "longitude": 82.8592987061, "fullName": "Lal Bahadur Shastri Airport" } }, { "key": "1054", "attributes": { "latitude": 11.641200065612793, "longitude": 92.72969818115234, "fullName": "Vir Savarkar International Airport" } }, { "key": "648", "attributes": { "latitude": 27.4839000702, "longitude": 95.0168991089, "fullName": "Dibrugarh Airport" } }, { "key": "663", "attributes": { "latitude": 25.591299057, "longitude": 85.0879974365, "fullName": "Lok Nayak Jayaprakash Airport" } }, { "key": "662", "attributes": { "latitude": 21.092199325561523, "longitude": 79.04720306396484, "fullName": "Dr. Babasaheb Ambedkar International Airport" } }, { "key": "664", "attributes": { "latitude": 18.58209991455078, "longitude": 73.9197006225586, "fullName": "Pune Airport" } }, { "key": "658", "attributes": { "latitude": 23.314300537100003, "longitude": 85.3217010498, "fullName": "Birsa Munda Airport" } }, { "key": "1052", "attributes": { "latitude": 24.9129009247, "longitude": 92.97869873050001, "fullName": "Silchar Airport" } }, { "key": "2611", "attributes": { "latitude": 27.403200149499998, "longitude": 89.42459869380001, "fullName": "Paro Airport" } }, { "key": "659", "attributes": { "latitude": 26.8242, "longitude": 75.812202, "fullName": "Jaipur International Airport" } }, { "key": "653", "attributes": { "latitude": 24.7600002289, "longitude": 93.896697998, "fullName": "Imphal Airport" } }, { "key": "654", "attributes": { "latitude": 23.8869991302, "longitude": 91.24040222170001, "fullName": "Agartala Airport" } }, { "key": "356", "attributes": { "latitude": 21.452199935913086, "longitude": 91.96389770507812, "fullName": "Cox's Bazar Airport" } }, { "key": "364", "attributes": { "latitude": 25.759199142456055, "longitude": 88.90889739990234, "fullName": "Saidpur Airport" } }, { "key": "360", "attributes": { "latitude": 23.183799743652344, "longitude": 89.16079711914062, "fullName": "Jessore Airport" } }, { "key": "365", "attributes": { "latitude": 24.963199615478516, "longitude": 91.8667984008789, "fullName": "Osmany International Airport" } }, { "key": "2291", "attributes": { "latitude": 17.038700103759766, "longitude": 54.09130096435547, "fullName": "Salalah Airport" } }, { "key": "1049", "attributes": { "latitude": 12.9612998962, "longitude": 74.8900985718, "fullName": "Mangalore International Airport" } }, { "key": "2119", "attributes": { "latitude": 32.5355567932, "longitude": 74.3638916016, "fullName": "Sialkot Airport" } }, { "key": "1794", "attributes": { "latitude": 31.337400436399996, "longitude": 48.7620010376, "fullName": "Ahwaz Airport" } }, { "key": "2113", "attributes": { "latitude": 30.549100875854492, "longitude": 47.66210174560547, "fullName": "Basrah International Airport" } }, { "key": "2997", "attributes": { "latitude": 24.283611, "longitude": 52.580278, "fullName": "Sir Bani Yas Airport" } }, { "key": "2132", "attributes": { "latitude": 28.9447994232, "longitude": 50.8345985413, "fullName": "Bushehr Airport" } }, { "key": "1796", "attributes": { "latitude": 27.218299865722656, "longitude": 56.37779998779297, "fullName": "Bandar Abbas International Airport" } }, { "key": "1801", "attributes": { "latitude": 36.235198974609375, "longitude": 59.64099884033203, "fullName": "Mashhad International Airport" } }, { "key": "1804", "attributes": { "latitude": 29.539199829101562, "longitude": 52.58980178833008, "fullName": "Shiraz Shahid Dastghaib International Airport" } }, { "key": "1807", "attributes": { "latitude": 29.47570037841797, "longitude": 60.90620040893555, "fullName": "Zahedan International Airport" } }, { "key": "1041", "attributes": { "latitude": 11.1367998123, "longitude": 75.95529937740001, "fullName": "Calicut International Airport" } }, { "key": "2143", "attributes": { "latitude": 27.3726997375, "longitude": 53.18880081179999, "fullName": "Lamerd Airport" } }, { "key": "2995", "attributes": { "latitude": 24.428300857543945, "longitude": 54.458099365234375, "fullName": "Bateen Airport" } }, { "key": "2289", "attributes": { "latitude": 31.989853, "longitude": 44.404317, "fullName": "Al Najaf International Airport" } }, { "key": "2140", "attributes": { "latitude": 31.505800247192383, "longitude": 65.8478012084961, "fullName": "Kandahar Airport" } }, { "key": "1809", "attributes": { "latitude": -29.6144444444, "longitude": 31.1197222222, "fullName": "King Shaka International Airport" } }, { "key": "2288", "attributes": { "latitude": 30.20319938659668, "longitude": 71.41909790039062, "fullName": "Multan International Airport" } }, { "key": "2286", "attributes": { "latitude": 27.437901, "longitude": 41.686298, "fullName": "Ha'il Airport" } }, { "key": "2130", "attributes": { "latitude": 26.531999588, "longitude": 54.824798584, "fullName": "Bandar Lengeh Airport" } }, { "key": "1798", "attributes": { "latitude": 32.75080108642578, "longitude": 51.86130142211914, "fullName": "Esfahan Shahid Beheshti International Airport" } }, { "key": "1799", "attributes": { "latitude": 26.5261993408, "longitude": 53.980201721200004, "fullName": "Kish International Airport" } }, { "key": "2152", "attributes": { "latitude": 25.443300247199996, "longitude": 60.3820991516, "fullName": "Konarak Airport" } }, { "key": "2144", "attributes": { "latitude": 27.6746997833, "longitude": 54.3833007812, "fullName": "Lar Airport" } }, { "key": "660", "attributes": { "latitude": 26.7605991364, "longitude": 80.8892974854, "fullName": "Chaudhary Charan Singh International Airport" } }, { "key": "2135", "attributes": { "latitude": 36.909400939899996, "longitude": 54.4012985229, "fullName": "Gorgan Airport" } }, { "key": "3064", "attributes": { "latitude": 29.78510093688965, "longitude": 40.099998474121094, "fullName": "Al-Jawf Domestic Airport" } }, { "key": "3067", "attributes": { "latitude": 24.4499, "longitude": 44.121201, "fullName": "King Salman Abdulaziz Airport" } }, { "key": "3063", "attributes": { "latitude": 20.2961006165, "longitude": 41.6343002319, "fullName": "Al Baha Airport" } }, { "key": "2146", "attributes": { "latitude": 37.6680984497, "longitude": 45.0686988831, "fullName": "Urmia Airport" } }, { "key": "3073", "attributes": { "latitude": 17.466899871826172, "longitude": 47.12139892578125, "fullName": "Sharurah Airport" } }, { "key": "2314", "attributes": { "latitude": 25.28529930114746, "longitude": 49.485198974609375, "fullName": "Al Ahsa Airport" } }, { "key": "3065", "attributes": { "latitude": 28.335199, "longitude": 46.125099, "fullName": "Al Qaisumah/Hafr Al Batin Airport" } }, { "key": "3070", "attributes": { "latitude": 16.901100158691406, "longitude": 42.58580017089844, "fullName": "Jizan Regional Airport" } }, { "key": "3071", "attributes": { "latitude": 30.906600952148438, "longitude": 41.13819885253906, "fullName": "Arar Domestic Airport" } }, { "key": "3068", "attributes": { "latitude": 17.611400604248047, "longitude": 44.4192008972168, "fullName": "Nejran Airport" } }, { "key": "3066", "attributes": { "latitude": 19.984399795532227, "longitude": 42.62089920043945, "fullName": "Bisha Airport" } }, { "key": "3076", "attributes": { "latitude": 31.412413, "longitude": 37.278898, "fullName": "Gurayat Domestic Airport" } }, { "key": "1795", "attributes": { "latitude": 31.9048995972, "longitude": 54.2765007019, "fullName": "Shahid Sadooghi Airport" } }, { "key": "2236", "attributes": { "latitude": 14.753000259399414, "longitude": 42.97629928588867, "fullName": "Hodeidah International Airport" } }, { "key": "3069", "attributes": { "latitude": 26.19860076904297, "longitude": 36.47639846801758, "fullName": "Al Wajh Domestic Airport" } }, { "key": "1806", "attributes": { "latitude": 35.68920135498047, "longitude": 51.31340026855469, "fullName": "Mehrabad International Airport" } }, { "key": "1802", "attributes": { "latitude": 37.323333, "longitude": 49.617778, "fullName": "Sardar-e-Jangal Airport" } }, { "key": "2235", "attributes": { "latitude": 15.9660997391, "longitude": 48.78829956049999, "fullName": "Sayun International Airport" } }, { "key": "3077", "attributes": { "latitude": 20.504299163800003, "longitude": 45.199600219699995, "fullName": "Wadi Al Dawasir Airport" } }, { "key": "3367", "attributes": { "latitude": 27.678101, "longitude": 84.429398, "fullName": "Bharatpur Airport" } }, { "key": "3366", "attributes": { "latitude": 26.5708007812, "longitude": 88.07959747310001, "fullName": "Bhadrapur Airport" } }, { "key": "3374", "attributes": { "latitude": 27.315001, "longitude": 87.193298, "fullName": "Tumling Tar Airport" } }, { "key": "3371", "attributes": { "latitude": 26.708799362199997, "longitude": 85.9224014282, "fullName": "Janakpur Airport" } }, { "key": "3370", "attributes": { "latitude": 28.753299713134766, "longitude": 80.58190155029297, "fullName": "Dhangarhi Airport" } }, { "key": "3368", "attributes": { "latitude": 26.48150062561035, "longitude": 87.26399993896484, "fullName": "Biratnagar Airport" } }, { "key": "3373", "attributes": { "latitude": 28.200899124145508, "longitude": 83.98210144042969, "fullName": "Pokhara Airport" } }, { "key": "3369", "attributes": { "latitude": 27.505685, "longitude": 83.416293, "fullName": "Gautam Buddha Airport" } }, { "key": "3372", "attributes": { "latitude": 28.103599548339844, "longitude": 81.66699981689453, "fullName": "Nepalgunj Airport" } }, { "key": "2886", "attributes": { "latitude": 25.233299255371094, "longitude": 62.329498291015625, "fullName": "Gwadar International Airport" } }, { "key": "2892", "attributes": { "latitude": 25.986400604248047, "longitude": 63.03020095825195, "fullName": "Turbat International Airport" } }, { "key": "3340", "attributes": { "latitude": 26.17099952697754, "longitude": 56.2406005859375, "fullName": "Khasab Air Base" } }, { "key": "363", "attributes": { "latitude": 24.43720054626465, "longitude": 88.61650085449219, "fullName": "Shah Mokhdum Airport" } }, { "key": "366", "attributes": { "latitude": 76.4261016846, "longitude": -82.90920257570001, "fullName": "Grise Fiord Airport" } }, { "key": "367", "attributes": { "latitude": 74.7169036865, "longitude": -94.9693984985, "fullName": "Resolute Bay Airport" } }, { "key": "702", "attributes": { "latitude": 73.0058922479, "longitude": -85.0325489044, "fullName": "Old Arctic Bay Airport" } }, { "key": "1183", "attributes": { "latitude": 30.58860016, "longitude": -96.36380005, "fullName": "Easterwood Field" } }, { "key": "1190", "attributes": { "latitude": 27.77039909362793, "longitude": -97.5011978149414, "fullName": "Corpus Christi International Airport" } }, { "key": "1216", "attributes": { "latitude": 32.38399887084961, "longitude": -94.71150207519531, "fullName": "East Texas Regional Airport" } }, { "key": "1246", "attributes": { "latitude": 34.5676994324, "longitude": -98.4166030884, "fullName": "Lawton Fort Sill Regional Airport" } }, { "key": "1332", "attributes": { "latitude": 33.9888, "longitude": -98.491898, "fullName": "Sheppard Air Force Base-Wichita Falls Municipal Airport" } }, { "key": "388", "attributes": { "latitude": 28.702899932900003, "longitude": -105.964996338, "fullName": "General Roberto Fierro Villalobos International Airport" } }, { "key": "1198", "attributes": { "latitude": 37.1515007019, "longitude": -107.753997803, "fullName": "Durango La Plata County Airport" } }, { "key": "1242", "attributes": { "latitude": 37.151798248291016, "longitude": -94.49829864501953, "fullName": "Joplin Regional Airport" } }, { "key": "1169", "attributes": { "latitude": 25.90679931640625, "longitude": -97.4259033203125, "fullName": "Brownsville South Padre Island International Airport" } }, { "key": "413", "attributes": { "latitude": 25.568300247199996, "longitude": -103.411003113, "fullName": "Francisco Sarabia International Airport" } }, { "key": "1142", "attributes": { "latitude": 31.611299514770508, "longitude": -97.23049926757812, "fullName": "Waco Regional Airport" } }, { "key": "1249", "attributes": { "latitude": 30.126100540161133, "longitude": -93.22329711914062, "fullName": "Lake Charles Regional Airport" } }, { "key": "1330", "attributes": { "latitude": 22.254299163800003, "longitude": -100.930999756, "fullName": "Ponciano Arriaga International Airport" } }, { "key": "1346", "attributes": { "latitude": 32.35409927368164, "longitude": -95.40239715576172, "fullName": "Tyler Pounds Regional Airport" } }, { "key": "1302", "attributes": { "latitude": 20.6173, "longitude": -100.185997, "fullName": "Querétaro Intercontinental Airport" } }, { "key": "1139", "attributes": { "latitude": 32.4113006592, "longitude": -99.68190002440001, "fullName": "Abilene Regional Airport" } }, { "key": "1213", "attributes": { "latitude": 37.9275016785, "longitude": -100.723999023, "fullName": "Garden City Regional Airport" } }, { "key": "1345", "attributes": { "latitude": 33.45370101928711, "longitude": -93.99099731445312, "fullName": "Texarkana Regional Webb Field" } }, { "key": "1310", "attributes": { "latitude": 33.30160140991211, "longitude": -104.53099822998047, "fullName": "Roswell International Air Center Airport" } }, { "key": "1290", "attributes": { "latitude": 19.1581001282, "longitude": -98.3713989258, "fullName": "Hermanos Serdán International Airport" } }, { "key": "1168", "attributes": { "latitude": 29.9507999420166, "longitude": -94.02069854736328, "fullName": "Southeast Texas Regional Airport" } }, { "key": "1327", "attributes": { "latitude": 31.35770034790039, "longitude": -100.49600219726562, "fullName": "San Angelo Regional Mathis Field" } }, { "key": "876", "attributes": { "latitude": -32.8316993713, "longitude": -68.7929000854, "fullName": "El Plumerillo Airport" } }, { "key": "1662", "attributes": { "latitude": -50.2803, "longitude": -72.053101, "fullName": "El Calafate Airport" } }, { "key": "1675", "attributes": { "latitude": -54.8433, "longitude": -68.2958, "fullName": "Malvinas Argentinas Airport" } }, { "key": "879", "attributes": { "latitude": -43.2105, "longitude": -65.2703, "fullName": "Almirante Marco Andres Zar Airport" } }, { "key": "1663", "attributes": { "latitude": -25.737301, "longitude": -54.4734, "fullName": "Cataratas Del Iguazú International Airport" } }, { "key": "871", "attributes": { "latitude": -41.151199, "longitude": -71.157501, "fullName": "San Carlos De Bariloche Airport" } }, { "key": "1220", "attributes": { "latitude": 12.004199981689453, "longitude": -61.78620147705078, "fullName": "Point Salines International Airport" } }, { "key": "1892", "attributes": { "latitude": 6.498549938201904, "longitude": -58.25410079956055, "fullName": "Cheddi Jagan International Airport" } }, { "key": "397", "attributes": { "latitude": 20.937000274699997, "longitude": -89.657699585, "fullName": "Licenciado Manuel Crescencio Rejon Int Airport" } }, { "key": "3344", "attributes": { "latitude": 26.1525993347, "longitude": -81.7752990723, "fullName": "Naples Municipal Airport" } }, { "key": "1027", "attributes": { "latitude": 10.111111, "longitude": -64.692222, "fullName": "General José Antonio Anzoategui International Airport" } }, { "key": "2627", "attributes": { "latitude": 19.687000274658203, "longitude": -79.88279724121094, "fullName": "Gerrard Smith International Airport" } }, { "key": "1409", "attributes": { "latitude": 55.1796989441, "longitude": -118.885002136, "fullName": "Grande Prairie Airport" } }, { "key": "972", "attributes": { "latitude": 58.62139892578125, "longitude": -117.16500091552734, "fullName": "High Level Airport" } }, { "key": "704", "attributes": { "latitude": 60.8396987915, "longitude": -115.782997131, "fullName": "Hay River / Merlyn Carter Airport" } }, { "key": "2515", "attributes": { "latitude": 60.020301818847656, "longitude": -111.96199798583984, "fullName": "Fort Smith Airport" } }, { "key": "3316", "attributes": { "latitude": 49.025299072265625, "longitude": -122.36100006103516, "fullName": "Abbotsford Airport" } }, { "key": "3315", "attributes": { "latitude": 43.173599243199995, "longitude": -79.93499755859999, "fullName": "John C. Munro Hamilton International Airport" } }, { "key": "378", "attributes": { "latitude": 62.462799072265625, "longitude": -114.44000244140625, "fullName": "Yellowknife Airport" } }, { "key": "973", "attributes": { "latitude": 58.49140167236328, "longitude": -119.40799713134766, "fullName": "Rainbow Lake Airport" } }, { "key": "1403", "attributes": { "latitude": 52.18220138549805, "longitude": -113.89399719238281, "fullName": "Red Deer Regional Airport" } }, { "key": "971", "attributes": { "latitude": 53.309200286865234, "longitude": -110.072998046875, "fullName": "Lloydminster Airport" } }, { "key": "3314", "attributes": { "latitude": 49.91, "longitude": -99.951897, "fullName": "Brandon Municipal Airport" } }, { "key": "1404", "attributes": { "latitude": 42.27560043334961, "longitude": -82.95559692382812, "fullName": "Windsor Airport" } }, { "key": "1405", "attributes": { "latitude": 49.6302986145, "longitude": -112.800003052, "fullName": "Lethbridge County Airport" } }, { "key": "1418", "attributes": { "latitude": 50.01890182495117, "longitude": -110.72100067138672, "fullName": "Medicine Hat Airport" } }, { "key": "884", "attributes": { "latitude": 64.190804, "longitude": -114.077002, "fullName": "Wekweètì Airport" } }, { "key": "624", "attributes": { "latitude": 65.28160095214844, "longitude": -126.7979965209961, "fullName": "Norman Wells Airport" } }, { "key": "887", "attributes": { "latitude": 62.418303, "longitude": -110.681998, "fullName": "Lutselk'e Airport" } }, { "key": "886", "attributes": { "latitude": 64.11609649658203, "longitude": -117.30999755859375, "fullName": "Rae Lakes Airport" } }, { "key": "885", "attributes": { "latitude": 63.13169860839844, "longitude": -117.24600219726562, "fullName": "Whatì Airport" } }, { "key": "703", "attributes": { "latitude": 61.76020050048828, "longitude": -121.23699951171875, "fullName": "Fort Simpson Airport" } }, { "key": "617", "attributes": { "latitude": 68.635597229, "longitude": -95.84970092770001, "fullName": "Gjoa Haven Airport" } }, { "key": "610", "attributes": { "latitude": 67.816704, "longitude": -115.143997, "fullName": "Kugluktuk Airport" } }, { "key": "609", "attributes": { "latitude": 69.1081008911, "longitude": -105.138000488, "fullName": "Cambridge Bay Airport" } }, { "key": "628", "attributes": { "latitude": 69.5466995239, "longitude": -93.5766983032, "fullName": "Taloyoak Airport" } }, { "key": "2452", "attributes": { "latitude": 65.21109771728516, "longitude": -123.43599700927734, "fullName": "Déline Airport" } }, { "key": "619", "attributes": { "latitude": 62.8114013672, "longitude": -92.1157989502, "fullName": "Rankin Inlet Airport" } }, { "key": "379", "attributes": { "latitude": 16.757099151611328, "longitude": -99.75399780273438, "fullName": "General Juan N Alvarez International Airport" } }, { "key": "381", "attributes": { "latitude": 27.39259910583496, "longitude": -109.83300018310547, "fullName": "Ciudad Obregón International Airport" } }, { "key": "382", "attributes": { "latitude": 31.63610076904297, "longitude": -106.42900085449219, "fullName": "Abraham González International Airport" } }, { "key": "383", "attributes": { "latitude": 18.65369987487793, "longitude": -91.79900360107422, "fullName": "Ciudad del Carmen International Airport" } }, { "key": "384", "attributes": { "latitude": 19.816799163800003, "longitude": -90.5002975464, "fullName": "Ingeniero Alberto Acuña Ongay International Airport" } }, { "key": "385", "attributes": { "latitude": 18.50469970703125, "longitude": -88.32679748535156, "fullName": "Chetumal International Airport" } }, { "key": "386", "attributes": { "latitude": 24.7644996643, "longitude": -107.474998474, "fullName": "Bachigualato Federal International Airport" } }, { "key": "395", "attributes": { "latitude": 24.072700500499998, "longitude": -110.361999512, "fullName": "Manuel Márquez de León International Airport" } }, { "key": "410", "attributes": { "latitude": 16.5636005402, "longitude": -93.02249908450001, "fullName": "Angel Albino Corzo International Airport" } }, { "key": "414", "attributes": { "latitude": 19.1459007263, "longitude": -96.1873016357, "fullName": "General Heriberto Jara International Airport" } }, { "key": "404", "attributes": { "latitude": 26.0089, "longitude": -98.2285, "fullName": "General Lucio Blanco International Airport" } }, { "key": "409", "attributes": { "latitude": 22.2964000702, "longitude": -97.8658981323, "fullName": "General Francisco Javier Mina International Airport" } }, { "key": "401", "attributes": { "latitude": 16.9999008179, "longitude": -96.726600647, "fullName": "Xoxocotlán International Airport" } }, { "key": "415", "attributes": { "latitude": 17.996999740600586, "longitude": -92.81739807128906, "fullName": "Carlos Rovirosa Pérez International Airport" } }, { "key": "1647", "attributes": { "latitude": 25.6851997375, "longitude": -109.081001282, "fullName": "Valle del Fuerte International Airport" } }, { "key": "1650", "attributes": { "latitude": 32.6306, "longitude": -115.241997, "fullName": "General Rodolfo Sánchez Taboada International Airport" } }, { "key": "1656", "attributes": { "latitude": 14.7943000793, "longitude": -92.3700027466, "fullName": "Tapachula International Airport" } }, { "key": "632", "attributes": { "latitude": 16.913799285899998, "longitude": -89.86640167239999, "fullName": "Mundo Maya International Airport" } }, { "key": "1964", "attributes": { "latitude": 20.08530044555664, "longitude": -75.1583023071289, "fullName": "Mariana Grajales Airport" } }, { "key": "394", "attributes": { "latitude": 15.7753, "longitude": -96.262604, "fullName": "Bahías de Huatulco International Airport" } }, { "key": "1653", "attributes": { "latitude": 28.627399, "longitude": -100.535004, "fullName": "Piedras Negras International Airport" } }, { "key": "1646", "attributes": { "latitude": 19.4750995636, "longitude": -96.7975006104, "fullName": "El Lencero Airport" } }, { "key": "1654", "attributes": { "latitude": 15.8769, "longitude": -97.089103, "fullName": "Puerto Escondido International Airport" } }, { "key": "1652", "attributes": { "latitude": 20.6026992798, "longitude": -97.46080017090001, "fullName": "El Tajín National Airport" } }, { "key": "1651", "attributes": { "latitude": 27.4438991547, "longitude": -99.5705032349, "fullName": "Quetzalcóatl International Airport" } }, { "key": "398", "attributes": { "latitude": 18.1033992767, "longitude": -94.58070373540001, "fullName": "Minatitlán/Coatzacoalcos National Airport" } }, { "key": "1648", "attributes": { "latitude": 18.0016994476, "longitude": -102.221000671, "fullName": "Lázaro Cárdenas Airport" } }, { "key": "1643", "attributes": { "latitude": 19.277, "longitude": -103.577002, "fullName": "Licenciado Miguel de la Madrid Airport" } }, { "key": "1657", "attributes": { "latitude": 21.4195, "longitude": -104.843002, "fullName": "Amado Nervo National Airport" } }, { "key": "402", "attributes": { "latitude": 17.533153, "longitude": -92.015484, "fullName": "Palenque International Airport" } }, { "key": "1649", "attributes": { "latitude": 25.7698993683, "longitude": -97.5252990723, "fullName": "General Servando Canales International Airport" } }, { "key": "1644", "attributes": { "latitude": 23.7033004761, "longitude": -98.9564971924, "fullName": "General Pedro Jose Mendez International Airport" } }, { "key": "1655", "attributes": { "latitude": 25.54949951171875, "longitude": -100.92900085449219, "fullName": "Plan De Guadalupe International Airport" } }, { "key": "2229", "attributes": { "latitude": 26.228500366210938, "longitude": -97.65440368652344, "fullName": "Valley International Airport" } }, { "key": "547", "attributes": { "latitude": 8.533329963684082, "longitude": -83.30000305175781, "fullName": "Puerto Jimenez Airport" } }, { "key": "543", "attributes": { "latitude": 8.654009819030762, "longitude": -83.18219757080078, "fullName": "Golfito Airport" } }, { "key": "552", "attributes": { "latitude": 10.42, "longitude": -83.6095, "fullName": "Aerotortuguero Airport" } }, { "key": "541", "attributes": { "latitude": 8.71889019012, "longitude": -83.6417007446, "fullName": "Drake Bay Airport" } }, { "key": "550", "attributes": { "latitude": 9.73852, "longitude": -85.013802, "fullName": "Tambor Airport" } }, { "key": "548", "attributes": { "latitude": 8.951029777526855, "longitude": -83.46859741210938, "fullName": "Palmar Sur Airport" } }, { "key": "546", "attributes": { "latitude": 9.976490020750001, "longitude": -85.65299987790002, "fullName": "Nosara Airport" } }, { "key": "540", "attributes": { "latitude": 9.340849876403809, "longitude": -82.25080108642578, "fullName": "Bocas Del Toro International Airport" } }, { "key": "542", "attributes": { "latitude": 10.478, "longitude": -84.634499, "fullName": "Arenal Airport" } }, { "key": "798", "attributes": { "latitude": 8.390999794006348, "longitude": -82.43499755859375, "fullName": "Enrique Malek International Airport" } }, { "key": "553", "attributes": { "latitude": 9.443160057067871, "longitude": -84.12979888916016, "fullName": "Quepos Managua Airport" } }, { "key": "1035", "attributes": { "latitude": 31.7096004486, "longitude": 74.7973022461, "fullName": "Sri Guru Ram Dass Jee International Airport" } }, { "key": "666", "attributes": { "latitude": 33.987098693847656, "longitude": 74.77420043945312, "fullName": "Sheikh ul Alam Airport" } }, { "key": "1048", "attributes": { "latitude": 26.739700317399997, "longitude": 83.4496994019, "fullName": "Gorakhpur Airport" } }, { "key": "1062", "attributes": { "latitude": 24.617700576799997, "longitude": 73.89610290530001, "fullName": "Maharana Pratap Airport" } }, { "key": "652", "attributes": { "latitude": 22.7217998505, "longitude": 75.8011016846, "fullName": "Devi Ahilyabai Holkar Airport" } }, { "key": "657", "attributes": { "latitude": 32.6890983582, "longitude": 74.8374023438, "fullName": "Jammu Airport" } }, { "key": "1050", "attributes": { "latitude": 34.1358985901, "longitude": 77.5465011597, "fullName": "Leh Kushok Bakula Rimpochee Airport" } }, { "key": "1039", "attributes": { "latitude": 23.2875003815, "longitude": 77.3374023438, "fullName": "Raja Bhoj International Airport" } }, { "key": "643", "attributes": { "latitude": 22.336201, "longitude": 73.226303, "fullName": "Vadodara Airport" } }, { "key": "1605", "attributes": { "latitude": 25.440099716186523, "longitude": 81.73390197753906, "fullName": "Allahabad Airport" } }, { "key": "420", "attributes": { "latitude": 34.209999084472656, "longitude": 62.22829818725586, "fullName": "Herat Airport" } }, { "key": "1601", "attributes": { "latitude": 32.16510009765625, "longitude": 76.26339721679688, "fullName": "Kangra Airport" } }, { "key": "656", "attributes": { "latitude": 30.673500061035156, "longitude": 76.78849792480469, "fullName": "Chandigarh Airport" } }, { "key": "1610", "attributes": { "latitude": 30.854700088500977, "longitude": 75.95259857177734, "fullName": "Ludhiana Airport" } }, { "key": "1609", "attributes": { "latitude": 31.876699447631836, "longitude": 77.15440368652344, "fullName": "Kullu Manali Airport" } }, { "key": "1613", "attributes": { "latitude": 21.1140995026, "longitude": 72.7417984009, "fullName": "Surat Airport" } }, { "key": "1607", "attributes": { "latitude": 23.177799224853516, "longitude": 80.052001953125, "fullName": "Jabalpur Airport" } }, { "key": "1608", "attributes": { "latitude": 26.404301, "longitude": 80.410103, "fullName": "Kanpur Airport" } }, { "key": "1053", "attributes": { "latitude": 19.862699508666992, "longitude": 75.39810180664062, "fullName": "Aurangabad Airport" } }, { "key": "1055", "attributes": { "latitude": 26.251100540161133, "longitude": 73.04889678955078, "fullName": "Jodhpur Airport" } }, { "key": "1043", "attributes": { "latitude": 30.189699, "longitude": 78.180298, "fullName": "Dehradun Airport" } }, { "key": "2885", "attributes": { "latitude": 35.918800354003906, "longitude": 74.33360290527344, "fullName": "Gilgit Airport" } }, { "key": "2463", "attributes": { "latitude": 29.348100662231445, "longitude": 71.71800231933594, "fullName": "Bahawalpur Airport" } }, { "key": "2782", "attributes": { "latitude": 27.722000122070312, "longitude": 68.79170227050781, "fullName": "Sukkur Airport" } }, { "key": "2887", "attributes": { "latitude": 35.33549880981445, "longitude": 75.53600311279297, "fullName": "Skardu Airport" } }, { "key": "2881", "attributes": { "latitude": 35.886600494384766, "longitude": 71.80059814453125, "fullName": "Chitral Airport" } }, { "key": "2465", "attributes": { "latitude": 30.251399993896484, "longitude": 66.93779754638672, "fullName": "Quetta International Airport" } }, { "key": "423", "attributes": { "latitude": 36.70690155029297, "longitude": 67.20970153808594, "fullName": "Mazar I Sharif Airport" } }, { "key": "2469", "attributes": { "latitude": 35.279800415, "longitude": -2.9562599659, "fullName": "Melilla Airport" } }, { "key": "1111", "attributes": { "latitude": 45.039722, "longitude": 1.485556, "fullName": "Brive Souillac Airport" } }, { "key": "2275", "attributes": { "latitude": 59.58940124511719, "longitude": 16.63360023498535, "fullName": "Stockholm Västerås Airport" } }, { "key": "1590", "attributes": { "latitude": 33.535900116, "longitude": -0.242353007197, "fullName": "Mecheria Airport" } }, { "key": "1583", "attributes": { "latitude": 33.5113983154, "longitude": 6.77679014206, "fullName": "Guemar Airport" } }, { "key": "1588", "attributes": { "latitude": 27.250999450699997, "longitude": 2.51202011108, "fullName": "In Salah Airport" } }, { "key": "1596", "attributes": { "latitude": 35.3410987854, "longitude": 1.46315002441, "fullName": "Bou Chekif Airport" } }, { "key": "1586", "attributes": { "latitude": 32.93040084838867, "longitude": 3.311539888381958, "fullName": "Hassi R'Mel Airport" } }, { "key": "1591", "attributes": { "latitude": 31.917200088500977, "longitude": 5.412779808044434, "fullName": "Ain el Beida Airport" } }, { "key": "1581", "attributes": { "latitude": 33.721666666699996, "longitude": 1.0925, "fullName": "El Bayadh Airport" } }, { "key": "1572", "attributes": { "latitude": 27.837600708007812, "longitude": -0.18641400337219238, "fullName": "Touat Cheikh Sidi Mohamed Belkebir Airport" } }, { "key": "1589", "attributes": { "latitude": 35.207698822021484, "longitude": 0.14714199304580688, "fullName": "Ghriss Airport" } }, { "key": "1580", "attributes": { "latitude": 24.292801, "longitude": 9.45244, "fullName": "Djanet Inedbirene Airport" } }, { "key": "1584", "attributes": { "latitude": 32.38410186767578, "longitude": 3.794110059738159, "fullName": "Noumérat - Moufdi Zakaria Airport" } }, { "key": "1595", "attributes": { "latitude": 33.06779861450195, "longitude": 6.088669776916504, "fullName": "Touggourt Sidi Madhi Airport" } }, { "key": "1594", "attributes": { "latitude": 35.4315986633, "longitude": 8.12071990967, "fullName": "Cheikh Larbi Tébessi Airport" } }, { "key": "1065", "attributes": { "latitude": 35.21609878540039, "longitude": 26.101299285888672, "fullName": "Sitia Airport" } }, { "key": "1078", "attributes": { "latitude": 37.4227981567, "longitude": 24.950899124099998, "fullName": "Syros Airport" } }, { "key": "3417", "attributes": { "latitude": 40.28609848022461, "longitude": 21.84079933166504, "fullName": "Filippos Airport" } }, { "key": "1086", "attributes": { "latitude": 36.696899, "longitude": 24.4769, "fullName": "Milos Airport" } }, { "key": "1089", "attributes": { "latitude": 37.020495, "longitude": 25.113195, "fullName": "Paros National Airport" } }, { "key": "1073", "attributes": { "latitude": 39.6963996887207, "longitude": 20.822500228881836, "fullName": "Ioannina Airport" } }, { "key": "1091", "attributes": { "latitude": 38.9676017761, "longitude": 24.4871997833, "fullName": "Skiros Airport" } }, { "key": "1076", "attributes": { "latitude": 37.0811004639, "longitude": 25.3680992126, "fullName": "Naxos Airport" } }, { "key": "1083", "attributes": { "latitude": 37.184898, "longitude": 26.800301, "fullName": "Leros Airport" } }, { "key": "1084", "attributes": { "latitude": 39.917098999, "longitude": 25.236299514799995, "fullName": "Limnos Airport" } }, { "key": "1069", "attributes": { "latitude": 40.855899810791016, "longitude": 25.956300735473633, "fullName": "Dimokritos Airport" } }, { "key": "1075", "attributes": { "latitude": 36.9632987976, "longitude": 26.9405994415, "fullName": "Kalymnos Airport" } }, { "key": "2393", "attributes": { "latitude": 40.4463005066, "longitude": 21.2821998596, "fullName": "Kastoria National Airport" } }, { "key": "1077", "attributes": { "latitude": 39.177101135253906, "longitude": 23.503700256347656, "fullName": "Skiathos Island National Airport" } }, { "key": "1074", "attributes": { "latitude": 37.6827011108, "longitude": 26.3470993042, "fullName": "Ikaria Airport" } }, { "key": "1079", "attributes": { "latitude": 36.5798988342, "longitude": 26.3757991791, "fullName": "Astypalaia Airport" } }, { "key": "2994", "attributes": { "latitude": 62.0635986328125, "longitude": -7.277219772338867, "fullName": "Vagar Airport" } }, { "key": "3299", "attributes": { "latitude": 59.185001373291016, "longitude": 9.566940307617188, "fullName": "Skien Airport" } }, { "key": "2241", "attributes": { "latitude": 53.096801757799994, "longitude": 17.9776992798, "fullName": "Bydgoszcz Ignacy Jan Paderewski Airport" } }, { "key": "1841", "attributes": { "latitude": 52.187198638916016, "longitude": -7.0869598388671875, "fullName": "Waterford Airport" } }, { "key": "2256", "attributes": { "latitude": 55.04280090332031, "longitude": -7.161109924316406, "fullName": "City of Derry Airport" } }, { "key": "2268", "attributes": { "latitude": 44.824501, "longitude": 10.2964, "fullName": "Parma Airport" } }, { "key": "2266", "attributes": { "latitude": 43.095901, "longitude": 12.5132, "fullName": "Perugia San Francesco d'Assisi – Umbria International Airport" } }, { "key": "893", "attributes": { "latitude": 34.71799850463867, "longitude": 10.690999984741211, "fullName": "Sfax Thyna International Airport" } }, { "key": "1562", "attributes": { "latitude": -20.887100219726562, "longitude": 55.51029968261719, "fullName": "Roland Garros Airport" } }, { "key": "2264", "attributes": { "latitude": 49.6963005065918, "longitude": 18.111099243164062, "fullName": "Ostrava Leos Janáček Airport" } }, { "key": "2186", "attributes": { "latitude": 35.497898, "longitude": 12.6181, "fullName": "Lampedusa Airport" } }, { "key": "3195", "attributes": { "latitude": 53.2481002808, "longitude": -4.53533983231, "fullName": "Anglesey Airport" } }, { "key": "2263", "attributes": { "latitude": 45.46269989013672, "longitude": 18.810199737548828, "fullName": "Osijek Airport" } }, { "key": "2273", "attributes": { "latitude": 47.4322013855, "longitude": 0.727605998516, "fullName": "Tours-Val-de-Loire Airport" } }, { "key": "1759", "attributes": { "latitude": 36.994601, "longitude": 14.607182, "fullName": "Comiso Airport" } }, { "key": "2107", "attributes": { "latitude": 52.18090057373047, "longitude": -9.52377986907959, "fullName": "Kerry Airport" } }, { "key": "1122", "attributes": { "latitude": 46.17919921875, "longitude": -1.1952799558639526, "fullName": "La Rochelle-Île de Ré Airport" } }, { "key": "1129", "attributes": { "latitude": 44.407901763916016, "longitude": 2.4826700687408447, "fullName": "Rodez-Marcillac Airport" } }, { "key": "1126", "attributes": { "latitude": 42.74039840698242, "longitude": 2.8706700801849365, "fullName": "Perpignan-Rivesaltes (Llabanère) Airport" } }, { "key": "2243", "attributes": { "latitude": 43.215999603271484, "longitude": 2.3063199520111084, "fullName": "Carcassonne Airport" } }, { "key": "1829", "attributes": { "latitude": 55.0442008972168, "longitude": -8.340999603271484, "fullName": "Donegal Airport" } }, { "key": "1839", "attributes": { "latitude": 58.215599060058594, "longitude": -6.331110000610352, "fullName": "Stornoway Airport" } }, { "key": "1837", "attributes": { "latitude": 59.87889862060547, "longitude": -1.2955600023269653, "fullName": "Sumburgh Airport" } }, { "key": "1842", "attributes": { "latitude": 58.458900451660156, "longitude": -3.09306001663208, "fullName": "Wick Airport" } }, { "key": "1835", "attributes": { "latitude": 58.957801818847656, "longitude": -2.9049999713897705, "fullName": "Kirkwall Airport" } }, { "key": "1771", "attributes": { "latitude": 38.071201, "longitude": 15.6516, "fullName": "Reggio Calabria Airport" } }, { "key": "1758", "attributes": { "latitude": 46.460201, "longitude": 11.3264, "fullName": "Bolzano Airport" } }, { "key": "1540", "attributes": { "latitude": 68.607299804688, "longitude": 27.405300140381, "fullName": "Ivalo Airport" } }, { "key": "1737", "attributes": { "latitude": 65.987602233887, "longitude": 29.239400863647, "fullName": "Kuusamo Airport" } }, { "key": "1749", "attributes": { "latitude": 58.3074989319, "longitude": 26.690399169900004, "fullName": "Tartu Airport" } }, { "key": "1736", "attributes": { "latitude": 64.285499572754, "longitude": 27.692399978638, "fullName": "Kajaani Airport" } }, { "key": "1735", "attributes": { "latitude": 62.399501800537, "longitude": 25.678300857544, "fullName": "Jyvaskyla Airport" } }, { "key": "1743", "attributes": { "latitude": 58.586299896240234, "longitude": 16.250600814819336, "fullName": "Norrköping Airport" } }, { "key": "1747", "attributes": { "latitude": 66.564796447754, "longitude": 25.830400466919, "fullName": "Rovaniemi Airport" } }, { "key": "1748", "attributes": { "latitude": 61.943099975586, "longitude": 28.945100784302, "fullName": "Savonlinna Airport" } }, { "key": "1739", "attributes": { "latitude": 65.778701782227, "longitude": 24.582099914551, "fullName": "Kemi-Tornio Airport" } }, { "key": "1740", "attributes": { "latitude": 63.007099151611, "longitude": 27.797800064087, "fullName": "Kuopio Airport" } }, { "key": "1734", "attributes": { "latitude": 62.662899017334, "longitude": 29.607500076294, "fullName": "Joensuu Airport" } }, { "key": "1376", "attributes": { "latitude": 39.219600677490234, "longitude": 22.794300079345703, "fullName": "Nea Anchialos Airport" } }, { "key": "2182", "attributes": { "latitude": 33.0733985901, "longitude": -16.3500003815, "fullName": "Porto Santo Airport" } }, { "key": "2064", "attributes": { "latitude": 0.3781749904155731, "longitude": 6.7121500968933105, "fullName": "São Tomé International Airport" } }, { "key": "3003", "attributes": { "latitude": 36.97140121459961, "longitude": -25.17060089111328, "fullName": "Santa Maria Airport" } }, { "key": "3004", "attributes": { "latitude": 38.761799, "longitude": -27.090799, "fullName": "Lajes Airport" } }, { "key": "3002", "attributes": { "latitude": 38.554298, "longitude": -28.441299, "fullName": "Pico Airport" } }, { "key": "3001", "attributes": { "latitude": 38.519901275634766, "longitude": -28.715900421142578, "fullName": "Horta Airport" } }, { "key": "2246", "attributes": { "latitude": 47.042686, "longitude": 5.435063, "fullName": "Dole-Tavaux Airport" } }, { "key": "1746", "attributes": { "latitude": 42.77000045776367, "longitude": -1.6463299989700317, "fullName": "Pamplona Airport" } }, { "key": "2472", "attributes": { "latitude": 42.4609534888, "longitude": -2.32223510742, "fullName": "Logroño-Agoncillo Airport" } }, { "key": "2502", "attributes": { "latitude": 49.913299560546875, "longitude": -6.291669845581055, "fullName": "St. Mary's Airport" } }, { "key": "2188", "attributes": { "latitude": 36.816502, "longitude": 11.9689, "fullName": "Pantelleria Airport" } }, { "key": "2042", "attributes": { "latitude": 48.66310119628906, "longitude": 21.241100311279297, "fullName": "Košice Airport" } }, { "key": "2277", "attributes": { "latitude": 48.7733333333, "longitude": 4.206111111, "fullName": "Châlons-Vatry Airport" } }, { "key": "1082", "attributes": { "latitude": 36.1417007446, "longitude": 29.576400756799995, "fullName": "Kastelorizo Airport" } }, { "key": "2247", "attributes": { "latitude": 48.58769989013672, "longitude": -2.0799601078033447, "fullName": "Dinard-Pleurtuit-Saint-Malo Airport" } }, { "key": "1830", "attributes": { "latitude": 56.45249938964844, "longitude": -3.025830030441284, "fullName": "Dundee Airport" } }, { "key": "2240", "attributes": { "latitude": 49.15129852294922, "longitude": 16.694400787353516, "fullName": "Brno-Tuřany Airport" } }, { "key": "2265", "attributes": { "latitude": 42.067799, "longitude": 24.8508, "fullName": "Plovdiv International Airport" } }, { "key": "1566", "attributes": { "latitude": 43.0973014832, "longitude": 6.14602994919, "fullName": "Toulon-Hyères Airport" } }, { "key": "3168", "attributes": { "latitude": 34.422000885009766, "longitude": 8.822500228881836, "fullName": "Gafsa Ksar International Airport" } }, { "key": "3167", "attributes": { "latitude": 33.87689971923828, "longitude": 10.103300094604492, "fullName": "Gabès Matmata International Airport" } }, { "key": "2658", "attributes": { "latitude": 32.788700103759766, "longitude": 21.96430015563965, "fullName": "La Abraq Airport" } }, { "key": "2662", "attributes": { "latitude": 31.861, "longitude": 23.907, "fullName": "Gamal Abdel Nasser Airport" } }, { "key": "2661", "attributes": { "latitude": 31.063499450699997, "longitude": 16.5949993134, "fullName": "Gardabya Airport" } }, { "key": "3115", "attributes": { "latitude": 33.939701080322266, "longitude": 8.110560417175293, "fullName": "Tozeur Nefta International Airport" } }, { "key": "2832", "attributes": { "latitude": 43.285701751708984, "longitude": 16.67970085144043, "fullName": "Bol Airport" } }, { "key": "501", "attributes": { "latitude": 68.13359833, "longitude": -151.7429962, "fullName": "Anaktuvuk Pass Airport" } }, { "key": "502", "attributes": { "latitude": 66.91390228, "longitude": -151.529007, "fullName": "Bettles Airport" } }, { "key": "506", "attributes": { "latitude": 64.81510162, "longitude": -147.8560028, "fullName": "Fairbanks International Airport" } }, { "key": "895", "attributes": { "latitude": 66.5518035889, "longitude": -152.621994019, "fullName": "Allakaket Airport" } }, { "key": "503", "attributes": { "latitude": 65.57379913, "longitude": -144.7830048, "fullName": "Central Airport" } }, { "key": "508", "attributes": { "latitude": 65.830498, "longitude": -144.076008, "fullName": "Circle City /New/ Airport" } }, { "key": "504", "attributes": { "latitude": 66.6449966431, "longitude": -143.740005493, "fullName": "Chalkyitsik Airport" } }, { "key": "507", "attributes": { "latitude": 66.57150268554688, "longitude": -145.25, "fullName": "Fort Yukon Airport" } }, { "key": "514", "attributes": { "latitude": 66.362197876, "longitude": -147.406997681, "fullName": "Beaver Airport" } }, { "key": "509", "attributes": { "latitude": 64.99759674069999, "longitude": -150.643997192, "fullName": "Manley Hot Springs Airport" } }, { "key": "756", "attributes": { "latitude": 70.19470215, "longitude": -148.4649963, "fullName": "Deadhorse Airport" } }, { "key": "726", "attributes": { "latitude": 64.73619843, "longitude": -156.9369965, "fullName": "Edward G. Pitka Sr Airport" } }, { "key": "899", "attributes": { "latitude": 63.886002, "longitude": -152.302002, "fullName": "Minchumina Airport" } }, { "key": "753", "attributes": { "latitude": 64.72720337, "longitude": -155.4700012, "fullName": "Ruby Airport" } }, { "key": "900", "attributes": { "latitude": 67.0086975098, "longitude": -146.365997314, "fullName": "Venetie Airport" } }, { "key": "718", "attributes": { "latitude": 70.1340026855, "longitude": -143.582000732, "fullName": "Barter Island LRRS Airport" } }, { "key": "517", "attributes": { "latitude": 60.77980042, "longitude": -161.8379974, "fullName": "Bethel Airport" } }, { "key": "524", "attributes": { "latitude": 60.87440109, "longitude": -162.5240021, "fullName": "Kasigluk Airport" } }, { "key": "731", "attributes": { "latitude": 61.52389908, "longitude": -166.1470032, "fullName": "Hooper Bay Airport" } }, { "key": "770", "attributes": { "latitude": 61.5409, "longitude": -165.6005, "fullName": "Chevak Airport" } }, { "key": "519", "attributes": { "latitude": 60.21367264, "longitude": -162.0438843, "fullName": "Eek Airport" } }, { "key": "529", "attributes": { "latitude": 60.471000671387, "longitude": -164.70100402832, "fullName": "Nightmute Airport" } }, { "key": "724", "attributes": { "latitude": 62.78609848, "longitude": -164.4909973, "fullName": "Emmonak Airport" } }, { "key": "527", "attributes": { "latitude": 60.790298461899994, "longitude": -161.444000244, "fullName": "Kwethluk Airport" } }, { "key": "525", "attributes": { "latitude": 59.876499, "longitude": -163.169005, "fullName": "Kwigillingok Airport" } }, { "key": "528", "attributes": { "latitude": 61.8642997742, "longitude": -162.026000977, "fullName": "Marshall Don Hunter Sr Airport" } }, { "key": "518", "attributes": { "latitude": 60.1492004395, "longitude": -164.285995483, "fullName": "Chefornak Airport" } }, { "key": "737", "attributes": { "latitude": 61.53630065917969, "longitude": -160.34100341796875, "fullName": "Kalskag Airport" } }, { "key": "521", "attributes": { "latitude": 59.960800170899994, "longitude": -162.880996704, "fullName": "Kongiganak Airport" } }, { "key": "526", "attributes": { "latitude": 59.7551, "longitude": -161.845, "fullName": "Quinhagak Airport" } }, { "key": "523", "attributes": { "latitude": 59.932998657199995, "longitude": -164.031005859, "fullName": "Kipnuk Airport" } }, { "key": "537", "attributes": { "latitude": 60.69029998779297, "longitude": -161.97900390625, "fullName": "Napakiak Airport" } }, { "key": "531", "attributes": { "latitude": 60.54140091, "longitude": -165.0870056, "fullName": "Toksook Bay Airport" } }, { "key": "768", "attributes": { "latitude": 59.052799224853516, "longitude": -160.39700317382812, "fullName": "Togiak Airport" } }, { "key": "755", "attributes": { "latitude": 61.7788848877, "longitude": -161.319458008, "fullName": "Russian Mission Airport" } }, { "key": "744", "attributes": { "latitude": 60.37139892578125, "longitude": -166.27099609375, "fullName": "Mekoryuk Airport" } }, { "key": "532", "attributes": { "latitude": 60.70289993, "longitude": -161.7779999, "fullName": "Napaskiak Airport" } }, { "key": "534", "attributes": { "latitude": 59.01139831542969, "longitude": -161.82000732421875, "fullName": "Platinum Airport" } }, { "key": "804", "attributes": { "latitude": 8.973340034484863, "longitude": -79.55560302734375, "fullName": "Marcos A. Gelabert International Airport" } }, { "key": "549", "attributes": { "latitude": 9.957050323486328, "longitude": -84.13980102539062, "fullName": "Tobias Bolanos International Airport" } }, { "key": "558", "attributes": { "latitude": -2.252419948577881, "longitude": 40.91310119628906, "fullName": "Manda Airstrip" } }, { "key": "1787", "attributes": { "latitude": -1.321720004081726, "longitude": 36.81480026245117, "fullName": "Nairobi Wilson Airport" } }, { "key": "2701", "attributes": { "latitude": 5.032249927520752, "longitude": 118.3239974975586, "fullName": "Lahad Datu Airport" } }, { "key": "2705", "attributes": { "latitude": 4.84917, "longitude": 115.407997, "fullName": "Lawas Airport" } }, { "key": "1844", "attributes": { "latitude": 4.048329830169678, "longitude": 114.80500030517578, "fullName": "Mulu Airport" } }, { "key": "2699", "attributes": { "latitude": 6.922500133514404, "longitude": 116.83599853515625, "fullName": "Kudat Airport" } }, { "key": "575", "attributes": { "latitude": 9.8591, "longitude": 126.014, "fullName": "Siargao Airport" } }, { "key": "568", "attributes": { "latitude": 9.253520011901855, "longitude": 124.70700073242188, "fullName": "Camiguin Airport" } }, { "key": "2316", "attributes": { "latitude": -3.4423599243164062, "longitude": 114.76300048828125, "fullName": "Syamsudin Noor Airport" } }, { "key": "2339", "attributes": { "latitude": -5.240556, "longitude": 105.175556, "fullName": "Radin Inten II (Branti) Airport" } }, { "key": "2322", "attributes": { "latitude": -2.5769500733, "longitude": 140.5160064698, "fullName": "Sentani International Airport" } }, { "key": "2338", "attributes": { "latitude": -2.74571990967, "longitude": 107.754997253, "fullName": "Buluh Tumbang (H A S Hanandjoeddin) Airport" } }, { "key": "2342", "attributes": { "latitude": 3.326667, "longitude": 117.569444, "fullName": "Juwata Airport" } }, { "key": "2335", "attributes": { "latitude": -0.15071099996566772, "longitude": 109.40399932861328, "fullName": "Supadio Airport" } }, { "key": "2334", "attributes": { "latitude": -0.9185420274734497, "longitude": 119.91000366210938, "fullName": "Mutiara Airport" } }, { "key": "2496", "attributes": { "latitude": -2.70519995689, "longitude": 111.672996521, "fullName": "Iskandar Airport" } }, { "key": "2315", "attributes": { "latitude": -3.7102599144, "longitude": 128.089004517, "fullName": "Pattimura Airport, Ambon" } }, { "key": "2321", "attributes": { "latitude": -1.6380200386047363, "longitude": 103.64399719238281, "fullName": "Sultan Thaha Airport" } }, { "key": "2341", "attributes": { "latitude": 0.922683000565, "longitude": 104.531997681, "fullName": "Raja Haji Fisabilillah International Airport" } }, { "key": "2332", "attributes": { "latitude": -2.16219997406, "longitude": 106.138999939, "fullName": "Pangkal Pinang (Depati Amir) Airport" } }, { "key": "2343", "attributes": { "latitude": 0.831413984298706, "longitude": 127.38099670410156, "fullName": "Sultan Khairun Babullah Airport" } }, { "key": "2325", "attributes": { "latitude": -4.081610202789307, "longitude": 122.41799926757812, "fullName": "Wolter Monginsidi Airport" } }, { "key": "2281", "attributes": { "latitude": 1.12102997303, "longitude": 104.119003296, "fullName": "Hang Nadim International Airport" } }, { "key": "2333", "attributes": { "latitude": -2.22513008118, "longitude": 113.943000793, "fullName": "Tjilik Riwut Airport" } }, { "key": "2319", "attributes": { "latitude": -3.8637, "longitude": 102.338997, "fullName": "Fatmawati Soekarno Airport" } }, { "key": "2331", "attributes": { "latitude": -7.926559925079999, "longitude": 112.714996338, "fullName": "Abdul Rachman Saleh Airport" } }, { "key": "2578", "attributes": { "latitude": -9.66922, "longitude": 120.302002, "fullName": "Umbu Mehang Kunda Airport" } }, { "key": "2326", "attributes": { "latitude": -10.171600341796875, "longitude": 123.6709976196289, "fullName": "El Tari Airport" } }, { "key": "2320", "attributes": { "latitude": -8.5396499633789, "longitude": 118.68699645996, "fullName": "Muhammad Salahuddin Airport" } }, { "key": "2572", "attributes": { "latitude": -8.64064979553, "longitude": 122.236999512, "fullName": "Maumere(Wai Oti) Airport" } }, { "key": "2337", "attributes": { "latitude": -4.528279781341553, "longitude": 136.88699340820312, "fullName": "Moses Kilangin Airport" } }, { "key": "2327", "attributes": { "latitude": -8.48666, "longitude": 119.889, "fullName": "Komodo Airport" } }, { "key": "2340", "attributes": { "latitude": -9.40972, "longitude": 119.244003, "fullName": "Tambolaka Airport" } }, { "key": "3202", "attributes": { "latitude": 21.3974990845, "longitude": 103.008003235, "fullName": "Dien Bien Phu Airport" } }, { "key": "3206", "attributes": { "latitude": 10.085100174, "longitude": 105.711997986, "fullName": "Can Tho International Airport" } }, { "key": "2437", "attributes": { "latitude": 43.8805999756, "longitude": 144.164001465, "fullName": "Memanbetsu Airport" } }, { "key": "1240", "attributes": { "latitude": 34.785499572753906, "longitude": 135.43800354003906, "fullName": "Osaka International Airport" } }, { "key": "593", "attributes": { "latitude": 67.63999938964844, "longitude": 53.12189865112305, "fullName": "Naryan Mar Airport" } }, { "key": "591", "attributes": { "latitude": 65.0299987793, "longitude": 35.7333335876, "fullName": "Solovki Airport" } }, { "key": "3182", "attributes": { "latitude": 65.43729400630001, "longitude": 52.20033645629999, "fullName": "Ust-Tsylma Airport" } }, { "key": "3062", "attributes": { "latitude": 44.5820926295, "longitude": 38.0124807358, "fullName": "Gelendzhik Airport" } }, { "key": "3302", "attributes": { "latitude": 69.786796569824, "longitude": 20.959400177002, "fullName": "Sørkjosen Airport" } }, { "key": "3278", "attributes": { "latitude": 69.292503356934, "longitude": 16.144199371338, "fullName": "Andøya Airport" } }, { "key": "3300", "attributes": { "latitude": 68.578826904297, "longitude": 15.033416748047, "fullName": "Stokmarknes Skagen Airport" } }, { "key": "3306", "attributes": { "latitude": 70.065299987793, "longitude": 29.844699859619, "fullName": "Vadsø Airport" } }, { "key": "3285", "attributes": { "latitude": 70.679702758789, "longitude": 23.668600082397, "fullName": "Hammerfest Airport" } }, { "key": "3284", "attributes": { "latitude": 70.486701965332, "longitude": 22.139699935913, "fullName": "Hasvik Airport" } }, { "key": "3288", "attributes": { "latitude": 70.068801879883, "longitude": 24.973499298096, "fullName": "Banak Airport" } }, { "key": "2428", "attributes": { "latitude": -29.916201, "longitude": -71.199501, "fullName": "La Florida Airport" } }, { "key": "2426", "attributes": { "latitude": -22.498199462890625, "longitude": -68.90360260009766, "fullName": "El Loa Airport" } }, { "key": "600", "attributes": { "latitude": -20.535200119018555, "longitude": -70.1812973022461, "fullName": "Diego Aracena Airport" } }, { "key": "599", "attributes": { "latitude": -36.772701, "longitude": -73.063103, "fullName": "Carriel Sur Airport" } }, { "key": "2431", "attributes": { "latitude": -38.9259, "longitude": -72.6515, "fullName": "La Araucanía Airport" } }, { "key": "1297", "attributes": { "latitude": -41.438899993896484, "longitude": -73.09400177001953, "fullName": "El Tepual Airport" } }, { "key": "2430", "attributes": { "latitude": -39.6500015259, "longitude": -73.0860977173, "fullName": "Pichoy Airport" } }, { "key": "2424", "attributes": { "latitude": -18.348499, "longitude": -70.338699, "fullName": "Chacalluta Airport" } }, { "key": "2425", "attributes": { "latitude": -45.916099548339844, "longitude": -71.68949890136719, "fullName": "Balmaceda Airport" } }, { "key": "2429", "attributes": { "latitude": -53.002602, "longitude": -70.854599, "fullName": "Pdte. Carlos Ibañez del Campo Airport" } }, { "key": "2427", "attributes": { "latitude": -27.2611999512, "longitude": -70.7791976929, "fullName": "Desierto de Atacama Airport" } }, { "key": "2641", "attributes": { "latitude": -40.61119842529297, "longitude": -73.06099700927734, "fullName": "Cañal Bajo Carlos - Hott Siebert Airport" } }, { "key": "2634", "attributes": { "latitude": -27.1648006439, "longitude": -109.42199707, "fullName": "Mataveri Airport" } }, { "key": "874", "attributes": { "latitude": -42.908000946, "longitude": -71.139503479, "fullName": "Brigadier Antonio Parodi Airport" } }, { "key": "1676", "attributes": { "latitude": -40.8692, "longitude": -63.0004, "fullName": "Gobernador Castello Airport" } }, { "key": "1674", "attributes": { "latitude": -31.571501, "longitude": -68.418198, "fullName": "Domingo Faustino Sarmiento Airport" } }, { "key": "1673", "attributes": { "latitude": -26.8409, "longitude": -65.104897, "fullName": "Teniente Benjamin Matienzo Airport" } }, { "key": "1666", "attributes": { "latitude": -33.2732009888, "longitude": -66.3563995361, "fullName": "Brigadier Mayor D Cesar Raul Ojeda Airport" } }, { "key": "881", "attributes": { "latitude": -51.6089, "longitude": -69.3126, "fullName": "Piloto Civil N. Fernández Airport" } }, { "key": "1667", "attributes": { "latitude": -27.3858, "longitude": -55.9707, "fullName": "Libertador Gral D Jose De San Martin Airport" } }, { "key": "1664", "attributes": { "latitude": -29.3815994263, "longitude": -66.7957992554, "fullName": "Capitan V A Almonacid Airport" } }, { "key": "870", "attributes": { "latitude": -38.725, "longitude": -62.1693, "fullName": "Comandante Espora Airport" } }, { "key": "606", "attributes": { "latitude": -34.855098724365234, "longitude": -55.09429931640625, "fullName": "Capitan Corbeta CA Curbelo International Airport" } }, { "key": "1665", "attributes": { "latitude": -24.392799, "longitude": -65.097801, "fullName": "Gobernador Horacio Guzman International Airport" } }, { "key": "880", "attributes": { "latitude": -53.7777, "longitude": -67.7494, "fullName": "Hermes Quijada International Airport" } }, { "key": "1671", "attributes": { "latitude": -27.765556335399996, "longitude": -64.3099975586, "fullName": "Vicecomodoro Angel D. La Paz Aragonés Airport" } }, { "key": "878", "attributes": { "latitude": -31.7948, "longitude": -60.4804, "fullName": "General Urquiza Airport" } }, { "key": "1670", "attributes": { "latitude": -36.588299, "longitude": -64.275703, "fullName": "Santa Rosa Airport" } }, { "key": "1668", "attributes": { "latitude": -27.45, "longitude": -59.0561, "fullName": "Resistencia International Airport" } }, { "key": "1660", "attributes": { "latitude": -28.5956001282, "longitude": -65.751701355, "fullName": "Catamarca Airport" } }, { "key": "877", "attributes": { "latitude": -38.949001, "longitude": -68.155701, "fullName": "Presidente Peron Airport" } }, { "key": "1669", "attributes": { "latitude": -27.4966, "longitude": -64.93595, "fullName": "Termas de Río Hondo international Airport" } }, { "key": "873", "attributes": { "latitude": -45.7853, "longitude": -67.4655, "fullName": "General E. Mosconi Airport" } }, { "key": "1661", "attributes": { "latitude": -26.2127, "longitude": -58.2281, "fullName": "Formosa Airport" } }, { "key": "875", "attributes": { "latitude": -37.9342, "longitude": -57.5733, "fullName": "Ástor Piazzola International Airport" } }, { "key": "1659", "attributes": { "latitude": -40.075401, "longitude": -71.137299, "fullName": "Aviador C. Campos Airport" } }, { "key": "1658", "attributes": { "latitude": -34.588299, "longitude": -68.4039, "fullName": "Suboficial Ay Santiago Germano Airport" } }, { "key": "1672", "attributes": { "latitude": -24.856000900299996, "longitude": -65.4861984253, "fullName": "Martin Miguel De Guemes International Airport" } }, { "key": "2833", "attributes": { "latitude": -42.7592, "longitude": -65.1027, "fullName": "El Tehuelche Airport" } }, { "key": "883", "attributes": { "latitude": -31.7117, "longitude": -60.8117, "fullName": "Sauce Viejo Airport" } }, { "key": "2773", "attributes": { "latitude": -26.78840065, "longitude": -50.9398002625, "fullName": "Caçador Airport" } }, { "key": "2776", "attributes": { "latitude": -25.3875007629, "longitude": -51.520198822, "fullName": "Tancredo Thomas de Faria Airport" } }, { "key": "1451", "attributes": { "latitude": -29.197099685699996, "longitude": -51.1875, "fullName": "Hugo Cantergiani Regional Airport" } }, { "key": "1507", "attributes": { "latitude": -27.134199142456, "longitude": -52.656600952148, "fullName": "Serafin Enoss Bertaso Airport" } }, { "key": "2778", "attributes": { "latitude": -27.9067, "longitude": -54.520401, "fullName": "Santa Rosa Airport" } }, { "key": "2774", "attributes": { "latitude": -27.66189956665039, "longitude": -52.2682991027832, "fullName": "Erechim Airport" } }, { "key": "1492", "attributes": { "latitude": -29.711399, "longitude": -53.688202, "fullName": "Santa Maria Airport" } }, { "key": "1483", "attributes": { "latitude": -31.718399, "longitude": -52.327702, "fullName": "João Simões Lopes Neto International Airport" } }, { "key": "608", "attributes": { "latitude": 64.29889678960001, "longitude": -96.077796936, "fullName": "Baker Lake Airport" } }, { "key": "706", "attributes": { "latitude": 66.5214004517, "longitude": -86.22470092770001, "fullName": "Repulse Bay Airport" } }, { "key": "611", "attributes": { "latitude": 63.346900939899996, "longitude": -90.73110198970001, "fullName": "Chesterfield Inlet Airport" } }, { "key": "626", "attributes": { "latitude": 62.24000167849999, "longitude": -92.59809875490001, "fullName": "Whale Cove Airport" } }, { "key": "676", "attributes": { "latitude": 70.76280212402344, "longitude": -117.80599975585938, "fullName": "Ulukhaktok Holman Airport" } }, { "key": "630", "attributes": { "latitude": 64.1932983398, "longitude": -83.3593978882, "fullName": "Coral Harbour Airport" } }, { "key": "612", "attributes": { "latitude": 70.4860992432, "longitude": -68.5167007446, "fullName": "Clyde River Airport" } }, { "key": "618", "attributes": { "latitude": 72.6832962036, "longitude": -77.9666976929, "fullName": "Pond Inlet Airport" } }, { "key": "613", "attributes": { "latitude": 61.0942001343, "longitude": -94.07080078119999, "fullName": "Arviat Airport" } }, { "key": "629", "attributes": { "latitude": 58.739200592041016, "longitude": -94.06500244140625, "fullName": "Churchill Airport" } }, { "key": "614", "attributes": { "latitude": 68.30419921880001, "longitude": -133.483001709, "fullName": "Inuvik Mike Zubko Airport" } }, { "key": "678", "attributes": { "latitude": 71.9938964844, "longitude": -125.242996216, "fullName": "Sachs Harbour (David Nasogaluak Jr. Saaryuaq) Airport" } }, { "key": "679", "attributes": { "latitude": 69.43329620361328, "longitude": -133.0260009765625, "fullName": "Tuktoyaktuk Airport" } }, { "key": "2451", "attributes": { "latitude": 66.24079895019531, "longitude": -128.6510009765625, "fullName": "Fort Good Hope Airport" } }, { "key": "680", "attributes": { "latitude": 67.40750122070312, "longitude": -134.86099243164062, "fullName": "Fort Mcpherson Airport" } }, { "key": "677", "attributes": { "latitude": 69.3608381154, "longitude": -124.075469971, "fullName": "Paulatuk (Nora Aliqatchialuk Ruben) Airport" } }, { "key": "620", "attributes": { "latitude": 64.2300033569, "longitude": -76.5267028809, "fullName": "Cape Dorset Airport" } }, { "key": "616", "attributes": { "latitude": 69.3647003174, "longitude": -81.8161010742, "fullName": "Igloolik Airport" } }, { "key": "627", "attributes": { "latitude": 66.1449966431, "longitude": -65.71360015869999, "fullName": "Pangnirtung Airport" } }, { "key": "622", "attributes": { "latitude": 68.77610015869999, "longitude": -81.2425, "fullName": "Hall Beach Airport" } }, { "key": "705", "attributes": { "latitude": 62.8499984741, "longitude": -69.88330078119999, "fullName": "Kimmirut Airport" } }, { "key": "621", "attributes": { "latitude": 55.80110168457031, "longitude": -97.86419677734375, "fullName": "Thompson Airport" } }, { "key": "2713", "attributes": { "latitude": 56.35749816894531, "longitude": -94.71060180664062, "fullName": "Gillam Airport" } }, { "key": "2583", "attributes": { "latitude": 54.6781005859375, "longitude": -101.68199920654297, "fullName": "Flin Flon Airport" } }, { "key": "2585", "attributes": { "latitude": 53.97140121459961, "longitude": -101.09100341796875, "fullName": "The Pas Airport" } }, { "key": "623", "attributes": { "latitude": 67.5457992554, "longitude": -64.03140258789999, "fullName": "Qikiqtarjuaq Airport" } }, { "key": "2453", "attributes": { "latitude": 64.909697, "longitude": -125.572998, "fullName": "Tulita Airport" } }, { "key": "1408", "attributes": { "latitude": 48.37189865112305, "longitude": -89.32389831542969, "fullName": "Thunder Bay Airport" } }, { "key": "2587", "attributes": { "latitude": 51.066898345947266, "longitude": -93.79309844970703, "fullName": "Red Lake Airport" } }, { "key": "2586", "attributes": { "latitude": 49.788299560546875, "longitude": -94.36309814453125, "fullName": "Kenora Airport" } }, { "key": "986", "attributes": { "latitude": 17.9139, "longitude": -87.9711, "fullName": "San Pedro Airport" } }, { "key": "2628", "attributes": { "latitude": 15.7425, "longitude": -86.852997, "fullName": "Goloson International Airport" } }, { "key": "1935", "attributes": { "latitude": 15.2622, "longitude": -83.781197, "fullName": "Puerto Lempira Airport" } }, { "key": "3026", "attributes": { "latitude": -24.368600845299998, "longitude": 31.0487003326, "fullName": "Hoedspruit Air Force Base Airport" } }, { "key": "3028", "attributes": { "latitude": -25.3831996918, "longitude": 31.1056003571, "fullName": "Kruger Mpumalanga International Airport" } }, { "key": "3027", "attributes": { "latitude": -28.802799224900003, "longitude": 24.7651996613, "fullName": "Kimberley Airport" } }, { "key": "3036", "attributes": { "latitude": -28.39909935, "longitude": 21.260200500499998, "fullName": "Pierre Van Ryneveld Airport" } }, { "key": "2534", "attributes": { "latitude": -34.0056, "longitude": 22.378902, "fullName": "George Airport" } }, { "key": "2535", "attributes": { "latitude": -25.938499450699997, "longitude": 27.9260997772, "fullName": "Lanseria Airport" } }, { "key": "2533", "attributes": { "latitude": -29.092699050900002, "longitude": 26.302400589, "fullName": "Bram Fischer International Airport" } }, { "key": "1867", "attributes": { "latitude": -19.97260093688965, "longitude": 23.431100845336914, "fullName": "Maun Airport" } }, { "key": "1813", "attributes": { "latitude": -33.9849014282, "longitude": 25.6173000336, "fullName": "Port Elizabeth Airport" } }, { "key": "3039", "attributes": { "latitude": -22.9799, "longitude": 14.6453, "fullName": "Walvis Bay Airport" } }, { "key": "2712", "attributes": { "latitude": -33.0355987549, "longitude": 27.825899124099998, "fullName": "Ben Schoeman Airport" } }, { "key": "640", "attributes": { "latitude": -34.0881601675, "longitude": 23.3287234306, "fullName": "Plettenberg Bay Airport" } }, { "key": "3029", "attributes": { "latitude": -29.462299346923828, "longitude": 27.552499771118164, "fullName": "Moshoeshoe I International Airport" } }, { "key": "3034", "attributes": { "latitude": -28.740999221800003, "longitude": 32.0920982361, "fullName": "Richards Bay Airport" } }, { "key": "3033", "attributes": { "latitude": -29.649000167799997, "longitude": 30.3987007141, "fullName": "Pietermaritzburg Airport" } }, { "key": "3024", "attributes": { "latitude": -19.79640007019043, "longitude": 34.90760040283203, "fullName": "Beira Airport" } }, { "key": "3032", "attributes": { "latitude": -23.845269, "longitude": 29.458615, "fullName": "Polokwane International Airport" } }, { "key": "3031", "attributes": { "latitude": -23.937200546299998, "longitude": 31.1553993225, "fullName": "Hendrik Van Eck Airport" } }, { "key": "3110", "attributes": { "latitude": -23.876399993896484, "longitude": 35.40850067138672, "fullName": "Inhambane Airport" } }, { "key": "1864", "attributes": { "latitude": -17.83289909362793, "longitude": 25.162399291992188, "fullName": "Kasane Airport" } }, { "key": "3037", "attributes": { "latitude": -31.546363184900002, "longitude": 28.6733551025, "fullName": "K. D. Matanzima Airport" } }, { "key": "3038", "attributes": { "latitude": -22.018400192260742, "longitude": 35.31330108642578, "fullName": "Vilankulo Airport" } }, { "key": "3035", "attributes": { "latitude": -16.104799270629883, "longitude": 33.640201568603516, "fullName": "Chingozi Airport" } }, { "key": "3030", "attributes": { "latitude": -26.52899932861328, "longitude": 31.3075008392334, "fullName": "Matsapha Airport" } }, { "key": "1865", "attributes": { "latitude": -21.15959930419922, "longitude": 27.47450065612793, "fullName": "Francistown Airport" } }, { "key": "1815", "attributes": { "latitude": -18.09589958190918, "longitude": 25.839000701904297, "fullName": "Victoria Falls International Airport" } }, { "key": "3025", "attributes": { "latitude": -20.017401, "longitude": 28.617901, "fullName": "Joshua Mqabuko Nkomo International Airport" } }, { "key": "639", "attributes": { "latitude": -30.8574008942, "longitude": 30.343000412, "fullName": "Margate Airport" } }, { "key": "1615", "attributes": { "latitude": 16.530399322509766, "longitude": 80.79679870605469, "fullName": "Vijayawada Airport" } }, { "key": "3042", "attributes": { "latitude": 15.361700058, "longitude": 75.08489990230001, "fullName": "Hubli Airport" } }, { "key": "3044", "attributes": { "latitude": 12.23, "longitude": 76.655833, "fullName": "Mysore Airport" } }, { "key": "3043", "attributes": { "latitude": 15.859299659700001, "longitude": 74.6183013916, "fullName": "Belgaum Airport" } }, { "key": "1038", "attributes": { "latitude": 23.2877998352, "longitude": 69.6701965332, "fullName": "Bhuj Airport" } }, { "key": "1044", "attributes": { "latitude": 20.71310043334961, "longitude": 70.92109680175781, "fullName": "Diu Airport" } }, { "key": "1606", "attributes": { "latitude": 22.465499877929688, "longitude": 70.01260375976562, "fullName": "Jamnagar Airport" } }, { "key": "1058", "attributes": { "latitude": 22.3092002869, "longitude": 70.77950286869999, "fullName": "Rajkot Airport" } }, { "key": "1603", "attributes": { "latitude": 26.29330062866211, "longitude": 78.22779846191406, "fullName": "Gwalior Airport" } }, { "key": "1599", "attributes": { "latitude": 27.155799865722656, "longitude": 77.96089935302734, "fullName": "Agra Airport" } }, { "key": "1040", "attributes": { "latitude": 21.752199173, "longitude": 72.1852035522, "fullName": "Bhavnagar Airport" } }, { "key": "1600", "attributes": { "latitude": 10.823699951171875, "longitude": 72.1760025024414, "fullName": "Agatti Airport" } }, { "key": "1614", "attributes": { "latitude": 13.632499694800002, "longitude": 79.543296814, "fullName": "Tirupati Airport" } }, { "key": "1059", "attributes": { "latitude": 17.1103992462, "longitude": 81.81819915770001, "fullName": "Rajahmundry Airport" } }, { "key": "1051", "attributes": { "latitude": 9.83450984955, "longitude": 78.09339904790001, "fullName": "Madurai Airport" } }, { "key": "2181", "attributes": { "latitude": 6.284467, "longitude": 81.124128, "fullName": "Mattala Rajapaksa International Airport" } }, { "key": "2916", "attributes": { "latitude": 6.744229793548584, "longitude": 73.17050170898438, "fullName": "Hanimaadhoo Airport" } }, { "key": "671", "attributes": { "latitude": 32.11470031738281, "longitude": 34.78219985961914, "fullName": "Sde Dov Airport" } }, { "key": "2512", "attributes": { "latitude": 32.80939865112305, "longitude": 35.04309844970703, "fullName": "Haifa International Airport" } }, { "key": "2382", "attributes": { "latitude": 67.0122218992, "longitude": -50.7116031647, "fullName": "Kangerlussuaq Airport" } }, { "key": "675", "attributes": { "latitude": 54.96440124511719, "longitude": 9.791729927062988, "fullName": "Sønderborg Airport" } }, { "key": "2082", "attributes": { "latitude": 55.06330108642578, "longitude": 14.759599685668945, "fullName": "Bornholm Airport" } }, { "key": "2091", "attributes": { "latitude": 56.29750061035156, "longitude": 9.124629974365234, "fullName": "Karup Airport" } }, { "key": "3346", "attributes": { "latitude": 67.43720245361328, "longitude": 86.62190246582031, "fullName": "Igarka Airport" } }, { "key": "3348", "attributes": { "latitude": 65.797203064, "longitude": 87.9353027344, "fullName": "Turukhansk Airport" } }, { "key": "3347", "attributes": { "latitude": 61.589699, "longitude": 89.994003, "fullName": "Podkamennaya Tunguska Airport" } }, { "key": "686", "attributes": { "latitude": 10.049300193786621, "longitude": 98.53800201416016, "fullName": "Kawthoung Airport" } }, { "key": "688", "attributes": { "latitude": 12.439800262451172, "longitude": 98.62149810791016, "fullName": "Myeik Airport" } }, { "key": "3273", "attributes": { "latitude": 21.301599502563477, "longitude": 99.63600158691406, "fullName": "Kengtung Airport" } }, { "key": "2618", "attributes": { "latitude": 35.59349823, "longitude": 129.352005005, "fullName": "Ulsan Airport" } }, { "key": "2615", "attributes": { "latitude": 35.90380096435547, "longitude": 126.61599731445312, "fullName": "Kunsan Air Base" } }, { "key": "2614", "attributes": { "latitude": 35.987955, "longitude": 129.420383, "fullName": "Pohang Airport (G-815/K-3)" } }, { "key": "2613", "attributes": { "latitude": 35.088591, "longitude": 128.071747, "fullName": "Sacheon Air Base/Airport" } }, { "key": "2617", "attributes": { "latitude": 34.84230041503906, "longitude": 127.61699676513672, "fullName": "Yeosu Airport" } }, { "key": "2616", "attributes": { "latitude": 35.123173, "longitude": 126.805444, "fullName": "Gwangju Airport" } }, { "key": "2619", "attributes": { "latitude": 37.441201, "longitude": 127.963858, "fullName": "Wonju/Hoengseong Air Base (K-38/K-46)" } }, { "key": "2770", "attributes": { "latitude": 34.2849006653, "longitude": 129.330993652, "fullName": "Tsushima Airport" } }, { "key": "2759", "attributes": { "latitude": 32.66630172729492, "longitude": 128.83299255371094, "fullName": "Fukue Airport" } }, { "key": "2538", "attributes": { "latitude": 39.4286003112793, "longitude": 141.13499450683594, "fullName": "Hanamaki Airport" } }, { "key": "2541", "attributes": { "latitude": 36.16680145263672, "longitude": 137.92300415039062, "fullName": "Matsumoto Airport" } }, { "key": "3163", "attributes": { "latitude": 7.461870193481445, "longitude": 151.84300231933594, "fullName": "Chuuk International Airport" } }, { "key": "3164", "attributes": { "latitude": 9.49891, "longitude": 138.082993, "fullName": "Yap International Airport" } }, { "key": "1824", "attributes": { "latitude": 34.6328010559082, "longitude": 135.2239990234375, "fullName": "Kobe Airport" } }, { "key": "2764", "attributes": { "latitude": 44.303901672399995, "longitude": 143.404006958, "fullName": "Monbetsu Airport" } }, { "key": "2762", "attributes": { "latitude": 34.676399231, "longitude": 131.789993286, "fullName": "Iwami Airport" } }, { "key": "2769", "attributes": { "latitude": 38.81219863889999, "longitude": 139.787002563, "fullName": "Shonai Airport" } }, { "key": "2537", "attributes": { "latitude": 38.411899566699994, "longitude": 140.371002197, "fullName": "Yamagata Airport" } }, { "key": "2547", "attributes": { "latitude": 35.4136009216, "longitude": 132.88999939, "fullName": "Izumo Airport" } }, { "key": "2438", "attributes": { "latitude": 42.7332992554, "longitude": 143.216995239, "fullName": "Tokachi-Obihiro Airport" } }, { "key": "708", "attributes": { "latitude": 33.8459014893, "longitude": 131.035003662, "fullName": "Kitakyūshū Airport" } }, { "key": "2539", "attributes": { "latitude": 33.546101, "longitude": 133.669006, "fullName": "Kōchi Ryōma Airport" } }, { "key": "2772", "attributes": { "latitude": 45.4042015076, "longitude": 141.800994873, "fullName": "Wakkanai Airport" } }, { "key": "2763", "attributes": { "latitude": 34.143902, "longitude": 132.235992, "fullName": "Iwakuni Marine Corps Air Station" } }, { "key": "2767", "attributes": { "latitude": 40.1918983459, "longitude": 140.371002197, "fullName": "Odate Noshiro Airport" } }, { "key": "2548", "attributes": { "latitude": 40.703201293899994, "longitude": 141.367996216, "fullName": "Misawa Air Base" } }, { "key": "2765", "attributes": { "latitude": 37.2930984497, "longitude": 136.962005615, "fullName": "Noto Airport" } }, { "key": "2760", "attributes": { "latitude": 33.1150016785, "longitude": 139.785995483, "fullName": "Hachijojima Airport" } }, { "key": "2768", "attributes": { "latitude": 43.5774993896, "longitude": 144.960006714, "fullName": "Nakashibetsu Airport" } }, { "key": "1821", "attributes": { "latitude": 24.782800674399997, "longitude": 125.294998169, "fullName": "Miyako Airport" } }, { "key": "2766", "attributes": { "latitude": 34.782001495399996, "longitude": 139.36000061, "fullName": "Oshima Airport" } }, { "key": "2545", "attributes": { "latitude": 28.430599212646484, "longitude": 129.71299743652344, "fullName": "Amami Airport" } }, { "key": "2549", "attributes": { "latitude": 33.6622009277, "longitude": 135.363998413, "fullName": "Nanki Shirahama Airport" } }, { "key": "2550", "attributes": { "latitude": 34.132801, "longitude": 134.606995, "fullName": "Tokushima Airport/JMSDF Air Base" } }, { "key": "2771", "attributes": { "latitude": 35.5301017761, "longitude": 134.167007446, "fullName": "Tottori Airport" } }, { "key": "709", "attributes": { "latitude": 67.1063, "longitude": -157.856989, "fullName": "Ambler Airport" } }, { "key": "750", "attributes": { "latitude": 66.88469696, "longitude": -162.598999, "fullName": "Ralph Wien Memorial Airport" } }, { "key": "758", "attributes": { "latitude": 66.88809967041, "longitude": -157.16200256348, "fullName": "Shungnak Airport" } }, { "key": "710", "attributes": { "latitude": 70.6380004883, "longitude": -159.994995117, "fullName": "Wainwright Airport" } }, { "key": "714", "attributes": { "latitude": 70.46730041503906, "longitude": -157.43600463867188, "fullName": "Atqasuk Edward Burnell Sr Memorial Airport" } }, { "key": "717", "attributes": { "latitude": 71.285402, "longitude": -156.766008, "fullName": "Wiley Post Will Rogers Memorial Airport" } }, { "key": "725", "attributes": { "latitude": 60.57310104370117, "longitude": -151.2449951171875, "fullName": "Kenai Municipal Airport" } }, { "key": "719", "attributes": { "latitude": 60.4917984, "longitude": -145.4779968, "fullName": "Merle K (Mudhole) Smith Airport" } }, { "key": "2623", "attributes": { "latitude": 59.75439835, "longitude": -154.9109955, "fullName": "Iliamna Airport" } }, { "key": "1698", "attributes": { "latitude": 57.167301177978516, "longitude": -170.22000122070312, "fullName": "St Paul Island Airport" } }, { "key": "748", "attributes": { "latitude": 64.51219940185547, "longitude": -165.44500732421875, "fullName": "Nome Airport" } }, { "key": "739", "attributes": { "latitude": 62.0605011, "longitude": -163.302002, "fullName": "St Mary's Airport" } }, { "key": "1682", "attributes": { "latitude": 55.20610046386719, "longitude": -162.72500610351562, "fullName": "Cold Bay Airport" } }, { "key": "1683", "attributes": { "latitude": 59.04470062, "longitude": -158.5050049, "fullName": "Dillingham Airport" } }, { "key": "1677", "attributes": { "latitude": 51.87799835205078, "longitude": -176.64599609375, "fullName": "Adak Airport" } }, { "key": "730", "attributes": { "latitude": 59.645599365234375, "longitude": -151.4770050048828, "fullName": "Homer Airport" } }, { "key": "771", "attributes": { "latitude": 61.13389969, "longitude": -146.2480011, "fullName": "Valdez Pioneer Field" } }, { "key": "1678", "attributes": { "latitude": 58.67679977, "longitude": -156.6490021, "fullName": "King Salmon Airport" } }, { "key": "1699", "attributes": { "latitude": 56.578300476100004, "longitude": -169.662002563, "fullName": "St George Airport" } }, { "key": "769", "attributes": { "latitude": 63.88840103, "longitude": -160.798996, "fullName": "Unalakleet Airport" } }, { "key": "1696", "attributes": { "latitude": 55.314998626708984, "longitude": -160.5229949951172, "fullName": "Sand Point Airport" } }, { "key": "720", "attributes": { "latitude": 61.579102, "longitude": -159.216003, "fullName": "Chuathbaluk Airport" } }, { "key": "729", "attributes": { "latitude": 62.18830108642578, "longitude": -159.77499389648438, "fullName": "Holy Cross Airport" } }, { "key": "760", "attributes": { "latitude": 62.6922988892, "longitude": -159.569000244, "fullName": "Shageluk Airport" } }, { "key": "713", "attributes": { "latitude": 62.646702, "longitude": -160.190994, "fullName": "Anvik Airport" } }, { "key": "715", "attributes": { "latitude": 62.680042266799994, "longitude": -164.659927368, "fullName": "Alakanuk Airport" } }, { "key": "716", "attributes": { "latitude": 65.9815979004, "longitude": -161.149002075, "fullName": "Buckland Airport" } }, { "key": "722", "attributes": { "latitude": 66.0696029663, "longitude": -162.76600647, "fullName": "Deering Airport" } }, { "key": "752", "attributes": { "latitude": 69.73290253, "longitude": -163.0050049, "fullName": "Point Lay LRRS Airport" } }, { "key": "745", "attributes": { "latitude": 70.2099990845, "longitude": -151.005996704, "fullName": "Nuiqsut Airport" } }, { "key": "1701", "attributes": { "latitude": 59.5032997131, "longitude": -139.660003662, "fullName": "Yakutat Airport" } }, { "key": "723", "attributes": { "latitude": 64.61470032, "longitude": -162.2720032, "fullName": "Elim Airport" } }, { "key": "728", "attributes": { "latitude": 64.5504989624, "longitude": -163.007003784, "fullName": "Golovin Airport" } }, { "key": "736", "attributes": { "latitude": 64.9394989014, "longitude": -161.154006958, "fullName": "Koyuk Alfred Adams Airport" } }, { "key": "738", "attributes": { "latitude": 63.0306015015, "longitude": -163.533004761, "fullName": "Kotlik Airport" } }, { "key": "732", "attributes": { "latitude": 65.69789886, "longitude": -156.3509979, "fullName": "Huslia Airport" } }, { "key": "746", "attributes": { "latitude": 64.729301, "longitude": -158.074005, "fullName": "Nulato Airport" } }, { "key": "734", "attributes": { "latitude": 64.31909943, "longitude": -158.7409973, "fullName": "Kaltag Airport" } }, { "key": "727", "attributes": { "latitude": 63.76679992675781, "longitude": -171.73300170898438, "fullName": "Gambell Airport" } }, { "key": "765", "attributes": { "latitude": 63.6864013671875, "longitude": -170.4929962158203, "fullName": "Savoonga Airport" } }, { "key": "775", "attributes": { "latitude": 64.689201355, "longitude": -163.412994385, "fullName": "White Mountain Airport" } }, { "key": "757", "attributes": { "latitude": 61.845298767100005, "longitude": -165.570999146, "fullName": "Scammon Bay Airport" } }, { "key": "742", "attributes": { "latitude": 64.8760986328, "longitude": -157.727005005, "fullName": "Koyukuk Airport" } }, { "key": "897", "attributes": { "latitude": 66.04109955, "longitude": -154.2630005, "fullName": "Hughes Airport" } }, { "key": "733", "attributes": { "latitude": 66.9759979248, "longitude": -160.43699646, "fullName": "Bob Baker Memorial Airport" } }, { "key": "749", "attributes": { "latitude": 66.81790161, "longitude": -161.0189972, "fullName": "Robert (Bob) Curtis Memorial Airport" } }, { "key": "761", "attributes": { "latitude": 64.37110138, "longitude": -161.223999, "fullName": "Shaktoolik Airport" } }, { "key": "743", "attributes": { "latitude": 62.095401763916016, "longitude": -163.6820068359375, "fullName": "Mountain Village Airport" } }, { "key": "740", "attributes": { "latitude": 65.3312988281, "longitude": -166.466003418, "fullName": "Brevig Mission Airport" } }, { "key": "767", "attributes": { "latitude": 65.2404022217, "longitude": -166.339004517, "fullName": "Teller Airport" } }, { "key": "772", "attributes": { "latitude": 65.622593, "longitude": -168.095, "fullName": "Wales Airport" } }, { "key": "741", "attributes": { "latitude": 67.73619842529297, "longitude": -164.56300354003906, "fullName": "Kivalina Airport" } }, { "key": "747", "attributes": { "latitude": 66.9123001099, "longitude": -156.897003174, "fullName": "Kobuk Airport" } }, { "key": "759", "attributes": { "latitude": 66.249604, "longitude": -166.089112, "fullName": "Shishmaref Airport" } }, { "key": "835", "attributes": { "latitude": 65.56310272, "longitude": -167.9219971, "fullName": "Tin City Long Range Radar Station Airport" } }, { "key": "774", "attributes": { "latitude": 66.60009766, "longitude": -159.9859924, "fullName": "Selawik Airport" } }, { "key": "776", "attributes": { "latitude": 67.56610107421875, "longitude": -162.97500610351562, "fullName": "Noatak Airport" } }, { "key": "762", "attributes": { "latitude": 61.7005004883, "longitude": -157.166000366, "fullName": "Sleetmute Airport" } }, { "key": "763", "attributes": { "latitude": 63.49010086, "longitude": -162.1100006, "fullName": "St Michael Airport" } }, { "key": "2980", "attributes": { "latitude": 7.56538, "longitude": -72.035103, "fullName": "Mayor Buenaventura Vivas International Airport" } }, { "key": "1032", "attributes": { "latitude": 8.288530349731445, "longitude": -62.760398864746094, "fullName": "General Manuel Carlos Piar International Airport" } }, { "key": "3193", "attributes": { "latitude": 7.840829849243164, "longitude": -72.439697265625, "fullName": "San Antonio Del Tachira Airport" } }, { "key": "3186", "attributes": { "latitude": 10.450332641601562, "longitude": -64.1304702758789, "fullName": "Cumaná (Antonio José de Sucre) Airport" } }, { "key": "1033", "attributes": { "latitude": 9.34047794342041, "longitude": -70.58406066894531, "fullName": "Dr. Antonio Nicolás Briceño Airport" } }, { "key": "1029", "attributes": { "latitude": 8.582078, "longitude": -71.161041, "fullName": "Alberto Carnevalli Airport" } }, { "key": "3188", "attributes": { "latitude": 8.239167213439941, "longitude": -72.27102661132812, "fullName": "La Fria Airport" } }, { "key": "1028", "attributes": { "latitude": 8.615, "longitude": -70.21416667, "fullName": "Barinas Airport" } }, { "key": "2981", "attributes": { "latitude": 8.624139, "longitude": -71.672668, "fullName": "Juan Pablo Pérez Alfonso Airport" } }, { "key": "2993", "attributes": { "latitude": 9.75452995300293, "longitude": -63.14739990234375, "fullName": "Maturín Airport" } }, { "key": "3192", "attributes": { "latitude": 8.9451465606689, "longitude": -64.151084899902, "fullName": "San Tomé Airport" } }, { "key": "3187", "attributes": { "latitude": 11.41494369506836, "longitude": -69.68090057373047, "fullName": "José Leonardo Chirinos Airport" } }, { "key": "3190", "attributes": { "latitude": 5.6199898719788, "longitude": -67.606101989746, "fullName": "Cacique Aramare Airport" } }, { "key": "1209", "attributes": { "latitude": 34.18539810180664, "longitude": -79.7238998413086, "fullName": "Florence Regional Airport" } }, { "key": "1292", "attributes": { "latitude": 35.6352005, "longitude": -77.38529968, "fullName": "Pitt Greenville Airport" } }, { "key": "1230", "attributes": { "latitude": 38.36669922, "longitude": -82.55799866, "fullName": "Tri-State/Milton J. Ferguson Field" } }, { "key": "1226", "attributes": { "latitude": 32.2243995667, "longitude": -80.6975021362, "fullName": "Hilton Head Airport" } }, { "key": "1319", "attributes": { "latitude": 38.34049987792969, "longitude": -75.51029968261719, "fullName": "Salisbury Ocean City Wicomico Regional Airport" } }, { "key": "2839", "attributes": { "latitude": 39.10329819, "longitude": -84.41860199, "fullName": "Cincinnati Municipal Airport Lunken Field" } }, { "key": "1259", "attributes": { "latitude": 37.326698303222656, "longitude": -79.20040130615234, "fullName": "Lynchburg Regional Preston Glenn Field" } }, { "key": "2590", "attributes": { "latitude": 19.733, "longitude": -72.194702, "fullName": "Cap Haitien International Airport" } }, { "key": "2068", "attributes": { "latitude": 42.853599548339844, "longitude": 71.30359649658203, "fullName": "Taraz Airport" } }, { "key": "2074", "attributes": { "latitude": 44.706902, "longitude": 65.592499, "fullName": "Kzyl-Orda Southwest Airport" } }, { "key": "2069", "attributes": { "latitude": 47.708302, "longitude": 67.733299, "fullName": "Zhezkazgan Airport" } }, { "key": "2076", "attributes": { "latitude": 54.77470016479492, "longitude": 69.18389892578125, "fullName": "Petropavlosk South Airport" } }, { "key": "2075", "attributes": { "latitude": 50.351295, "longitude": 80.234398, "fullName": "Semipalatinsk Airport" } }, { "key": "3097", "attributes": { "latitude": 39.9766273499, "longitude": 43.8766479492, "fullName": "Iğdır Airport" } }, { "key": "3092", "attributes": { "latitude": 39.654541015625, "longitude": 43.025978088378906, "fullName": "Ağrı Airport" } }, { "key": "1800", "attributes": { "latitude": 34.3459014893, "longitude": 47.1581001282, "fullName": "Shahid Ashrafi Esfahani Airport" } }, { "key": "3104", "attributes": { "latitude": 42.015800476074, "longitude": 35.066398620605, "fullName": "Sinop Airport" } }, { "key": "3103", "attributes": { "latitude": 39.18880081176758, "longitude": 45.45840072631836, "fullName": "Nakhchivan Airport" } }, { "key": "3000", "attributes": { "latitude": 36.305801, "longitude": 43.1474, "fullName": "Mosul International Airport" } }, { "key": "3094", "attributes": { "latitude": 38.8592605591, "longitude": 40.5959625244, "fullName": "Bingöl Çeltiksuyu Airport" } }, { "key": "3096", "attributes": { "latitude": 44.36220169067383, "longitude": 28.488300323486328, "fullName": "Mihail Kogălniceanu International Airport" } }, { "key": "3098", "attributes": { "latitude": 37.8554000854, "longitude": 30.368400573699997, "fullName": "Süleyman Demirel International Airport" } }, { "key": "3100", "attributes": { "latitude": 41.31420135498047, "longitude": 33.795799255371094, "fullName": "Kastamonu Airport" } }, { "key": "3102", "attributes": { "latitude": 39.113079, "longitude": 30.128111, "fullName": "Zafer Airport" } }, { "key": "3091", "attributes": { "latitude": 37.7313995361, "longitude": 38.4688987732, "fullName": "Adıyaman Airport" } }, { "key": "2999", "attributes": { "latitude": 29.611600875854492, "longitude": 35.01810073852539, "fullName": "Aqaba King Hussein International Airport" } }, { "key": "2883", "attributes": { "latitude": 29.961000442504883, "longitude": 70.48590087890625, "fullName": "Dera Ghazi Khan Airport" } }, { "key": "797", "attributes": { "latitude": 9.458962, "longitude": -82.515062, "fullName": "Cap Manuel Niño International Airport" } }, { "key": "800", "attributes": { "latitude": 7.51777982711792, "longitude": -78.1572036743164, "fullName": "Jaqué Airport" } }, { "key": "805", "attributes": { "latitude": 8.667, "longitude": -77.418, "fullName": "Puerto Obaldia Airport" } }, { "key": "2610", "attributes": { "latitude": 19.3719997406, "longitude": 98.43699646, "fullName": "Mae Hong Son Airport" } }, { "key": "2609", "attributes": { "latitude": 19.301300048828125, "longitude": 97.97579956054688, "fullName": "Mae Hong Son Airport" } }, { "key": "2009", "attributes": { "latitude": 18.807899475097656, "longitude": 100.78299713134766, "fullName": "Nan Airport" } }, { "key": "2011", "attributes": { "latitude": 16.782899856567383, "longitude": 100.27899932861328, "fullName": "Phitsanulok Airport" } }, { "key": "834", "attributes": { "latitude": 68.87509918, "longitude": -166.1100006, "fullName": "Cape Lisburne LRRS Airport" } }, { "key": "2442", "attributes": { "latitude": 25.6746997833, "longitude": 116.747001648, "fullName": "Longyan Guanzhishan Airport" } }, { "key": "844", "attributes": { "latitude": 52.45249938964844, "longitude": -125.3030014038086, "fullName": "Anahim Lake Airport" } }, { "key": "2636", "attributes": { "latitude": -51.82279968261719, "longitude": -58.447200775146484, "fullName": "Mount Pleasant Airport" } }, { "key": "888", "attributes": { "latitude": 24.178699493408203, "longitude": 23.31399917602539, "fullName": "Kufra Airport" } }, { "key": "2657", "attributes": { "latitude": 25.1455993652, "longitude": 10.142600059500001, "fullName": "Ghat Airport" } }, { "key": "2659", "attributes": { "latitude": 30.15169906616211, "longitude": 9.715310096740723, "fullName": "Ghadames East Airport" } }, { "key": "896", "attributes": { "latitude": 68.1147, "longitude": -145.578995, "fullName": "Arctic Village Airport" } }, { "key": "2301", "attributes": { "latitude": 27.91020012, "longitude": -82.68740082, "fullName": "St Petersburg Clearwater International Airport" } }, { "key": "2300", "attributes": { "latitude": 26.92020035, "longitude": -81.9905014, "fullName": "Charlotte County Airport" } }, { "key": "2841", "attributes": { "latitude": 40.799400329589844, "longitude": -74.41490173339844, "fullName": "Morristown Municipal Airport" } }, { "key": "2027", "attributes": { "latitude": 46.25080108642578, "longitude": -84.47239685058594, "fullName": "Chippewa County International Airport" } }, { "key": "2020", "attributes": { "latitude": 45.0780983, "longitude": -83.56030273, "fullName": "Alpena County Regional Airport" } }, { "key": "1159", "attributes": { "latitude": 42.20869827, "longitude": -75.97979736, "fullName": "Greater Binghamton/Edwin A Link field" } }, { "key": "2034", "attributes": { "latitude": 45.7226982117, "longitude": -87.0936965942, "fullName": "Delta County Airport" } }, { "key": "1239", "attributes": { "latitude": 42.49100112915039, "longitude": -76.4583969116211, "fullName": "Ithaca Tompkins Regional Airport" } }, { "key": "1202", "attributes": { "latitude": 42.0831270134, "longitude": -80.1738667488, "fullName": "Erie International Tom Ridge Field" } }, { "key": "2046", "attributes": { "latitude": 45.57089996, "longitude": -84.79669952, "fullName": "Pellston Regional Airport of Emmet County Airport" } }, { "key": "1160", "attributes": { "latitude": 44.80739974975586, "longitude": -68.8281021118164, "fullName": "Bangor International Airport" } }, { "key": "929", "attributes": { "latitude": 48.06570053, "longitude": -96.18499756, "fullName": "Thief River Falls Regional Airport" } }, { "key": "2600", "attributes": { "latitude": 33.22100067138672, "longitude": -92.81330108642578, "fullName": "South Arkansas Regional At Goodwin Field" } }, { "key": "2602", "attributes": { "latitude": 36.26150131225586, "longitude": -93.15470123291016, "fullName": "Boone County Airport" } }, { "key": "2601", "attributes": { "latitude": 34.47800064086914, "longitude": -93.09619903564453, "fullName": "Memorial Field" } }, { "key": "2604", "attributes": { "latitude": 35.599899, "longitude": -88.915604, "fullName": "McKellar-Sipes Regional Airport" } }, { "key": "1687", "attributes": { "latitude": 46.6068000793457, "longitude": -111.98300170898438, "fullName": "Helena Regional Airport" } }, { "key": "2023", "attributes": { "latitude": 46.39830017, "longitude": -94.13809967, "fullName": "Brainerd Lakes Regional Airport" } }, { "key": "2022", "attributes": { "latitude": 47.50939941, "longitude": -94.93370056, "fullName": "Bemidji Regional Airport" } }, { "key": "2047", "attributes": { "latitude": 45.63119888305664, "longitude": -89.46749877929688, "fullName": "Rhinelander Oneida County Airport" } }, { "key": "2192", "attributes": { "latitude": 44.91400146, "longitude": -97.15470123, "fullName": "Watertown Regional Airport" } }, { "key": "2031", "attributes": { "latitude": 46.7974014282, "longitude": -102.802001953, "fullName": "Dickinson Theodore Roosevelt Regional Airport" } }, { "key": "2038", "attributes": { "latitude": 45.8184013367, "longitude": -88.1145019531, "fullName": "Ford Airport" } }, { "key": "2039", "attributes": { "latitude": 48.566200256347656, "longitude": -93.4030990600586, "fullName": "Falls International Airport" } }, { "key": "2040", "attributes": { "latitude": 48.177898407, "longitude": -103.641998291, "fullName": "Sloulin Field International Airport" } }, { "key": "2036", "attributes": { "latitude": 47.38660049, "longitude": -92.83899689, "fullName": "Range Regional Airport" } }, { "key": "2019", "attributes": { "latitude": 45.449100494384766, "longitude": -98.42179870605469, "fullName": "Aberdeen Regional Airport" } }, { "key": "932", "attributes": { "latitude": 41.25310135, "longitude": -70.06020355, "fullName": "Nantucket Memorial Airport" } }, { "key": "952", "attributes": { "latitude": 41.3931007385, "longitude": -70.6143035889, "fullName": "Martha's Vineyard Airport" } }, { "key": "942", "attributes": { "latitude": 41.67610168457031, "longitude": -70.95690155029297, "fullName": "New Bedford Regional Airport" } }, { "key": "947", "attributes": { "latitude": 41.66930008, "longitude": -70.28040314, "fullName": "Barnstable Municipal Boardman Polando Field" } }, { "key": "3090", "attributes": { "latitude": 40.85010147089999, "longitude": -74.060798645, "fullName": "Teterboro Airport" } }, { "key": "951", "attributes": { "latitude": 44.93579864501953, "longitude": -74.84559631347656, "fullName": "Massena International Richards Field" } }, { "key": "954", "attributes": { "latitude": 44.6819000244, "longitude": -75.46549987790002, "fullName": "Ogdensburg International Airport" } }, { "key": "934", "attributes": { "latitude": 44.320598602299995, "longitude": -69.7973022461, "fullName": "Augusta State Airport" } }, { "key": "936", "attributes": { "latitude": 44.45000076, "longitude": -68.3615036, "fullName": "Hancock County-Bar Harbor Airport" } }, { "key": "955", "attributes": { "latitude": 48.094501495399996, "longitude": -105.574996948, "fullName": "L M Clayton Airport" } }, { "key": "943", "attributes": { "latitude": 47.13869858, "longitude": -104.8069992, "fullName": "Dawson Community Airport" } }, { "key": "960", "attributes": { "latitude": 47.706902, "longitude": -104.193001, "fullName": "Sidney - Richland Regional Airport" } }, { "key": "944", "attributes": { "latitude": 48.212502, "longitude": -106.614998, "fullName": "Wokal Field Glasgow International Airport" } }, { "key": "946", "attributes": { "latitude": 48.54299927, "longitude": -109.762001, "fullName": "Havre City County Airport" } }, { "key": "958", "attributes": { "latitude": 44.06010056, "longitude": -69.09919739, "fullName": "Knox County Regional Airport" } }, { "key": "957", "attributes": { "latitude": 42.0718994141, "longitude": -70.2213973999, "fullName": "Provincetown Municipal Airport" } }, { "key": "1692", "attributes": { "latitude": 46.68899918, "longitude": -68.0447998, "fullName": "Northern Maine Regional Airport at Presque Isle" } }, { "key": "962", "attributes": { "latitude": 44.38529968261719, "longitude": -74.2061996459961, "fullName": "Adirondack Regional Airport" } }, { "key": "949", "attributes": { "latitude": 43.626098632799994, "longitude": -72.30419921880001, "fullName": "Lebanon Municipal Airport" } }, { "key": "959", "attributes": { "latitude": 43.52939987, "longitude": -72.94960022, "fullName": "Rutland - Southern Vermont Regional Airport" } }, { "key": "940", "attributes": { "latitude": 18.313289, "longitude": -65.304324, "fullName": "Benjamin Rivera Noriega Airport" } }, { "key": "950", "attributes": { "latitude": 18.255699157714844, "longitude": -67.14849853515625, "fullName": "Eugenio Maria De Hostos Airport" } }, { "key": "967", "attributes": { "latitude": 18.446399688720703, "longitude": -64.42749786376953, "fullName": "Virgin Gorda Airport" } }, { "key": "968", "attributes": { "latitude": 18.115800857500002, "longitude": -65.4226989746, "fullName": "Vieques Airport" } }, { "key": "979", "attributes": { "latitude": 58.8363990784, "longitude": -122.597000122, "fullName": "Fort Nelson Airport" } }, { "key": "989", "attributes": { "latitude": 21.444499969482422, "longitude": -71.14230346679688, "fullName": "JAGS McCartney International Airport" } }, { "key": "991", "attributes": { "latitude": 21.333000183099998, "longitude": -71.1999969482, "fullName": "Salt Cay Airport" } }, { "key": "2591", "attributes": { "latitude": 21.515699386599998, "longitude": -71.528503418, "fullName": "South Caicos Airport" } }, { "key": "992", "attributes": { "latitude": -0.5833, "longitude": -72.4083, "fullName": "Araracuara Airport" } }, { "key": "1014", "attributes": { "latitude": 13.3569, "longitude": -81.3583, "fullName": "El Embrujo Airport" } }, { "key": "996", "attributes": { "latitude": 6.20292, "longitude": -77.3947, "fullName": "José Celestino Mutis Airport" } }, { "key": "1009", "attributes": { "latitude": 5.6964, "longitude": -77.2806, "fullName": "Reyes Murillo Airport" } }, { "key": "1006", "attributes": { "latitude": -1.32861, "longitude": -69.5797, "fullName": "La Pedrera Airport" } }, { "key": "1007", "attributes": { "latitude": -0.182278, "longitude": -74.7708, "fullName": "Caucaya Airport" } }, { "key": "1776", "attributes": { "latitude": 46.46770095825195, "longitude": 24.412500381469727, "fullName": "Transilvania Târgu Mureş International Airport" } }, { "key": "2902", "attributes": { "latitude": 48.88420104980469, "longitude": 24.686100006103516, "fullName": "Ivano-Frankivsk International Airport" } }, { "key": "1773", "attributes": { "latitude": 47.70330047607422, "longitude": 22.885700225830078, "fullName": "Satu Mare Airport" } }, { "key": "1769", "attributes": { "latitude": 47.025299072265625, "longitude": 21.90250015258789, "fullName": "Oradea International Airport" } }, { "key": "1757", "attributes": { "latitude": 47.65840148925781, "longitude": 23.469999313354492, "fullName": "Tautii Magheraus Airport" } }, { "key": "3191", "attributes": { "latitude": 4.554999828338623, "longitude": -61.150001525878906, "fullName": "Santa Elena de Uairen Airport" } }, { "key": "3184", "attributes": { "latitude": 6.231988906860352, "longitude": -62.85443115234375, "fullName": "Canaima Airport" } }, { "key": "2891", "attributes": { "latitude": 28.383899688720703, "longitude": 70.27960205078125, "fullName": "Shaikh Zaid Airport" } }, { "key": "2510", "attributes": { "latitude": 24.261699676513672, "longitude": 55.60919952392578, "fullName": "Al Ain International Airport" } }, { "key": "2914", "attributes": { "latitude": -0.693342, "longitude": 73.155602, "fullName": "Gan International Airport" } }, { "key": "3171", "attributes": { "latitude": 7.956669807430001, "longitude": 80.7285003662, "fullName": "Sigiriya Air Force Base" } }, { "key": "3172", "attributes": { "latitude": 5.993680000305176, "longitude": 80.32029724121094, "fullName": "Koggala Airport" } }, { "key": "1057", "attributes": { "latitude": 21.6487007141, "longitude": 69.65720367429999, "fullName": "Porbandar Airport" } }, { "key": "3074", "attributes": { "latitude": 31.692188, "longitude": 38.731544, "fullName": "Turaif Domestic Airport" } }, { "key": "3075", "attributes": { "latitude": 26.48, "longitude": 38.1288888889, "fullName": "Majeed Bin Abdulaziz Airport" } }, { "key": "3072", "attributes": { "latitude": 29.626399993896484, "longitude": 43.4906005859375, "fullName": "Rafha Domestic Airport" } }, { "key": "1391", "attributes": { "latitude": 46.48500061035156, "longitude": -84.5093994140625, "fullName": "Sault Ste Marie Airport" } }, { "key": "1414", "attributes": { "latitude": 48.569698333699996, "longitude": -81.376701355, "fullName": "Timmins/Victor M. Power" } }, { "key": "1412", "attributes": { "latitude": 46.625, "longitude": -80.79889678955078, "fullName": "Sudbury Airport" } }, { "key": "1427", "attributes": { "latitude": 42.9994010925293, "longitude": -82.30889892578125, "fullName": "Chris Hadfield Airport" } }, { "key": "1398", "attributes": { "latitude": 44.22529983520508, "longitude": -76.5969009399414, "fullName": "Kingston Norman Rogers Airport" } }, { "key": "1396", "attributes": { "latitude": 49.21080017089844, "longitude": -57.39139938354492, "fullName": "Deer Lake Airport" } }, { "key": "1411", "attributes": { "latitude": 46.1614, "longitude": -60.047798, "fullName": "Sydney / J.A. Douglas McCurdy Airport" } }, { "key": "1420", "attributes": { "latitude": 46.363602, "longitude": -79.422798, "fullName": "North Bay Jack Garland Airport" } }, { "key": "1081", "attributes": { "latitude": 35.4213981628, "longitude": 26.909999847399998, "fullName": "Kasos Airport" } }, { "key": "2683", "attributes": { "latitude": 48.634300231933594, "longitude": 22.263399124145508, "fullName": "Uzhhorod International Airport" } }, { "key": "3056", "attributes": { "latitude": 48.425278, "longitude": 10.931667, "fullName": "Augsburg Airport" } }, { "key": "1578", "attributes": { "latitude": 36.2126998901, "longitude": 1.33176994324, "fullName": "Ech Cheliff Airport" } }, { "key": "1705", "attributes": { "latitude": 31.3974990845, "longitude": -9.6816701889, "fullName": "Mogador Airport" } }, { "key": "1237", "attributes": { "latitude": 41.241798400878906, "longitude": -76.92109680175781, "fullName": "Williamsport Regional Airport" } }, { "key": "1231", "attributes": { "latitude": 41.26369858, "longitude": -72.88680267, "fullName": "Tweed New Haven Airport" } }, { "key": "1095", "attributes": { "latitude": -21.960899353027344, "longitude": -63.65169906616211, "fullName": "Yacuiba Airport" } }, { "key": "1103", "attributes": { "latitude": -17.8115997314, "longitude": -63.1715011597, "fullName": "El Trompillo Airport" } }, { "key": "1105", "attributes": { "latitude": -21.5557003021, "longitude": -64.7013015747, "fullName": "Capitan Oriel Lea Plaza Airport" } }, { "key": "1097", "attributes": { "latitude": -11.040399551400002, "longitude": -68.7829971313, "fullName": "Capitán Aníbal Arab Airport" } }, { "key": "1104", "attributes": { "latitude": -14.8186998367, "longitude": -64.9179992676, "fullName": "Teniente Av. Jorge Henrich Arauz Airport" } }, { "key": "2826", "attributes": { "latitude": -19.007099151611328, "longitude": -65.2886962890625, "fullName": "Juana Azurduy De Padilla Airport" } }, { "key": "1098", "attributes": { "latitude": -10.820599556, "longitude": -65.3455963135, "fullName": "Capitán de Av. Emilio Beltrán Airport" } }, { "key": "1101", "attributes": { "latitude": -19.5431003571, "longitude": -65.72370147710001, "fullName": "Capitan Nicolas Rojas Airport" } }, { "key": "3377", "attributes": { "latitude": -14.427900314299999, "longitude": -67.4968032837, "fullName": "Rurenabaque Airport" } }, { "key": "3378", "attributes": { "latitude": -20.446300506599997, "longitude": -66.8483963013, "fullName": "Uyuni Airport" } }, { "key": "1100", "attributes": { "latitude": -17.962600708, "longitude": -67.0762023926, "fullName": "Juan Mendoza Airport" } }, { "key": "1102", "attributes": { "latitude": -11, "longitude": -66, "fullName": "Capitán Av. Selin Zeitun Lopez Airport" } }, { "key": "1106", "attributes": { "latitude": 44.17470169067383, "longitude": 0.5905560255050659, "fullName": "Agen-La Garenne Airport" } }, { "key": "1114", "attributes": { "latitude": 43.55630111694336, "longitude": 2.289180040359497, "fullName": "Castres-Mazamet Airport" } }, { "key": "1936", "attributes": { "latitude": 43.90729904174805, "longitude": 4.901830196380615, "fullName": "Avignon-Caumont Airport" } }, { "key": "1108", "attributes": { "latitude": 44.89139938354492, "longitude": 2.4219400882720947, "fullName": "Aurillac Airport" } }, { "key": "2643", "attributes": { "latitude": 45.72919845581055, "longitude": 0.22145600616931915, "fullName": "Angoulême-Brie-Champniers Airport" } }, { "key": "2445", "attributes": { "latitude": 60.422000885009766, "longitude": 15.515199661254883, "fullName": "Borlange Airport" } }, { "key": "1119", "attributes": { "latitude": 48.754398, "longitude": -3.47166, "fullName": "Lannion-Côte de Granit Airport" } }, { "key": "1132", "attributes": { "latitude": 47.974998474121094, "longitude": -4.167789936065674, "fullName": "Quimper-Cornouaille Airport" } }, { "key": "3088", "attributes": { "latitude": 45.19810104370117, "longitude": 0.815555989742279, "fullName": "Périgueux-Bassillac Airport" } }, { "key": "3165", "attributes": { "latitude": 45.0806999206543, "longitude": 3.762890100479126, "fullName": "Le Puy-Loudes Airport" } }, { "key": "2432", "attributes": { "latitude": 3.049999952316284, "longitude": 30.91699981689453, "fullName": "Arua Airport" } }, { "key": "1134", "attributes": { "latitude": 0.18299999833106995, "longitude": 30.100000381469727, "fullName": "Kasese Airport" } }, { "key": "2664", "attributes": { "latitude": 35.8797988892, "longitude": -106.268997192, "fullName": "Los Alamos Airport" } }, { "key": "2663", "attributes": { "latitude": 32.337501525878906, "longitude": -104.26300048828125, "fullName": "Cavern City Air Terminal" } }, { "key": "1861", "attributes": { "latitude": 55.525902, "longitude": 8.5534, "fullName": "Esbjerg Airport" } }, { "key": "3397", "attributes": { "latitude": -35.71390151977539, "longitude": 137.52099609375, "fullName": "Kingscote Airport" } }, { "key": "3051", "attributes": { "latitude": -32.506900787353516, "longitude": 137.7169952392578, "fullName": "Port Augusta Airport" } }, { "key": "2973", "attributes": { "latitude": -30.485000610399997, "longitude": 136.876998901, "fullName": "Olympic Dam Airport" } }, { "key": "3392", "attributes": { "latitude": -32.13059997558594, "longitude": 133.7100067138672, "fullName": "Ceduna Airport" } }, { "key": "3408", "attributes": { "latitude": -33.05889892578125, "longitude": 137.51400756835938, "fullName": "Whyalla Airport" } }, { "key": "3393", "attributes": { "latitude": -29.040000915527344, "longitude": 134.7209930419922, "fullName": "Coober Pedy Airport" } }, { "key": "2975", "attributes": { "latitude": -34.6053009033, "longitude": 135.880004883, "fullName": "Port Lincoln Airport" } }, { "key": "2808", "attributes": { "latitude": -39.465801, "longitude": 176.869995, "fullName": "Hawke's Bay Airport" } }, { "key": "2822", "attributes": { "latitude": -35.7682991027832, "longitude": 174.36500549316406, "fullName": "Whangarei Airport" } }, { "key": "2821", "attributes": { "latitude": -37.92060089111328, "longitude": 176.91400146484375, "fullName": "Whakatane Airport" } }, { "key": "2812", "attributes": { "latitude": -40.32059860229492, "longitude": 175.61700439453125, "fullName": "Palmerston North Airport" } }, { "key": "2809", "attributes": { "latitude": -39.00859832763672, "longitude": 174.1790008544922, "fullName": "New Plymouth Airport" } }, { "key": "2791", "attributes": { "latitude": -41.5182991027832, "longitude": 173.8699951171875, "fullName": "Woodbourne Airport" } }, { "key": "2804", "attributes": { "latitude": -35.26279830932617, "longitude": 173.91200256347656, "fullName": "Kerikeri Airport" } }, { "key": "2819", "attributes": { "latitude": -38.73970031738281, "longitude": 176.08399963378906, "fullName": "Taupo Airport" } }, { "key": "2818", "attributes": { "latitude": -37.67190170288086, "longitude": 176.1959991455078, "fullName": "Tauranga Airport" } }, { "key": "2555", "attributes": { "latitude": -45.9281005859375, "longitude": 170.197998046875, "fullName": "Dunedin Airport" } }, { "key": "2797", "attributes": { "latitude": -38.663299560546875, "longitude": 177.97799682617188, "fullName": "Gisborne Airport" } }, { "key": "2815", "attributes": { "latitude": -38.10919952392578, "longitude": 176.31700134277344, "fullName": "Rotorua Regional Airport" } }, { "key": "2813", "attributes": { "latitude": -40.904701232910156, "longitude": 174.98899841308594, "fullName": "Paraparaumu Airport" } }, { "key": "2799", "attributes": { "latitude": -37.8666992188, "longitude": 175.332000732, "fullName": "Hamilton International Airport" } }, { "key": "2810", "attributes": { "latitude": -41.298301696777344, "longitude": 173.2209930419922, "fullName": "Nelson Airport" } }, { "key": "2802", "attributes": { "latitude": -35.06999969482422, "longitude": 173.28500366210938, "fullName": "Kaitaia Airport" } }, { "key": "2820", "attributes": { "latitude": -39.96220016479492, "longitude": 175.02499389648438, "fullName": "Wanganui Airport" } }, { "key": "2649", "attributes": { "latitude": 6.80628, "longitude": -58.1059, "fullName": "Eugene F. Correira International Airport" } }, { "key": "2599", "attributes": { "latitude": 33.94860076904297, "longitude": -83.32630157470703, "fullName": "Athens Ben Epps Airport" } }, { "key": "2793", "attributes": { "latitude": -20.668600082399998, "longitude": 140.503997803, "fullName": "Cloncurry Airport" } }, { "key": "2216", "attributes": { "latitude": -9.4280004501343, "longitude": 160.05499267578, "fullName": "Honiara International Airport" } }, { "key": "2962", "attributes": { "latitude": -23.5674991608, "longitude": 148.179000854, "fullName": "Emerald Airport" } }, { "key": "2955", "attributes": { "latitude": -23.5652999878, "longitude": 145.307006836, "fullName": "Barcaldine Airport" } }, { "key": "2956", "attributes": { "latitude": -24.903900146499996, "longitude": 152.319000244, "fullName": "Bundaberg Airport" } }, { "key": "2829", "attributes": { "latitude": -0.547458, "longitude": 166.919006, "fullName": "Nauru International Airport" } }, { "key": "2970", "attributes": { "latitude": -22.057800293, "longitude": 148.07699585, "fullName": "Moranbah Airport" } }, { "key": "2749", "attributes": { "latitude": -15.505000114399998, "longitude": 167.220001221, "fullName": "Santo Pekoa International Airport" } }, { "key": "2957", "attributes": { "latitude": -24.427799224900003, "longitude": 145.429000854, "fullName": "Blackall Airport" } }, { "key": "2969", "attributes": { "latitude": -23.4342002869, "longitude": 144.279998779, "fullName": "Longreach Airport" } }, { "key": "2117", "attributes": { "latitude": -23.3819007874, "longitude": 150.475006104, "fullName": "Rockhampton Airport" } }, { "key": "2938", "attributes": { "latitude": -26.545000076300003, "longitude": 148.774993896, "fullName": "Roma Airport" } }, { "key": "2929", "attributes": { "latitude": -26.4132995605, "longitude": 146.261993408, "fullName": "Charleville Airport" } }, { "key": "1689", "attributes": { "latitude": 46.3745002746582, "longitude": -117.01499938964844, "fullName": "Lewiston Nez Perce County Airport" } }, { "key": "2603", "attributes": { "latitude": 32.834201812699995, "longitude": -115.57900238, "fullName": "Imperial County Airport" } }, { "key": "2798", "attributes": { "latitude": -42.713600158691406, "longitude": 170.98500061035156, "fullName": "Hokitika Airfield" } }, { "key": "2801", "attributes": { "latitude": -46.41239929199219, "longitude": 168.31300354003906, "fullName": "Invercargill Airport" } }, { "key": "3138", "attributes": { "latitude": 41.17829895, "longitude": -78.8986969, "fullName": "DuBois Regional Airport" } }, { "key": "3132", "attributes": { "latitude": 41.8031005859375, "longitude": -78.64009857177734, "fullName": "Bradford Regional Airport" } }, { "key": "3146", "attributes": { "latitude": 42.15340042, "longitude": -79.25800323, "fullName": "Chautauqua County-Jamestown Airport" } }, { "key": "3157", "attributes": { "latitude": 39.34510040283203, "longitude": -81.43920135498047, "fullName": "Mid Ohio Valley Regional Airport" } }, { "key": "3141", "attributes": { "latitude": 41.3778991699, "longitude": -79.8603973389, "fullName": "Venango Regional Airport" } }, { "key": "1447", "attributes": { "latitude": -6.11527776718, "longitude": -50.0013885498, "fullName": "Carajás Airport" } }, { "key": "1463", "attributes": { "latitude": -21.5130558014, "longitude": -43.1730575562, "fullName": "Zona da Mata Regional Airport" } }, { "key": "2965", "attributes": { "latitude": -10.586400032, "longitude": 142.289993286, "fullName": "Horn Island Airport" } }, { "key": "2935", "attributes": { "latitude": -15.485600471496582, "longitude": 141.75100708007812, "fullName": "Kowanyama Airport" } }, { "key": "2933", "attributes": { "latitude": -12.7869, "longitude": 143.304993, "fullName": "Lockhart River Airport" } }, { "key": "2930", "attributes": { "latitude": -13.761133, "longitude": 143.113311, "fullName": "Coen Airport" } }, { "key": "2923", "attributes": { "latitude": -13.354067, "longitude": 141.72065, "fullName": "Aurukun Airport" } }, { "key": "2936", "attributes": { "latitude": -17.68409, "longitude": 141.069664, "fullName": "Normanton Airport" } }, { "key": "2922", "attributes": { "latitude": -10.9508, "longitude": 142.459, "fullName": "Northern Peninsula Airport" } }, { "key": "2942", "attributes": { "latitude": -12.6786003113, "longitude": 141.925003052, "fullName": "Weipa Airport" } }, { "key": "1953", "attributes": { "latitude": -4.34045982361, "longitude": 152.380004883, "fullName": "Tokua Airport" } }, { "key": "2932", "attributes": { "latitude": -14.896451, "longitude": 141.60908, "fullName": "Pormpuraaw Airport" } }, { "key": "2279", "attributes": { "latitude": 37.22740173339844, "longitude": 140.43099975585938, "fullName": "Fukushima Airport" } }, { "key": "3382", "attributes": { "latitude": 41.12620163, "longitude": -100.6839981, "fullName": "North Platte Regional Airport Lee Bird Field" } }, { "key": "2203", "attributes": { "latitude": 44.38270187, "longitude": -100.2860031, "fullName": "Pierre Regional Airport" } }, { "key": "2049", "attributes": { "latitude": 37.036389, "longitude": -113.510306, "fullName": "St George Municipal Airport" } }, { "key": "3159", "attributes": { "latitude": 38.289100646972656, "longitude": -104.49700164794922, "fullName": "Pueblo Memorial Airport" } }, { "key": "3379", "attributes": { "latitude": 41.87400055, "longitude": -103.5960007, "fullName": "Western Neb. Rgnl/William B. Heilig Airport" } }, { "key": "3155", "attributes": { "latitude": 38.509799957300004, "longitude": -107.893997192, "fullName": "Montrose Regional Airport" } }, { "key": "2035", "attributes": { "latitude": 44.348899841299996, "longitude": -105.539001465, "fullName": "Gillette Campbell County Airport" } }, { "key": "3387", "attributes": { "latitude": 44.76919937133789, "longitude": -106.9800033569336, "fullName": "Sheridan County Airport" } }, { "key": "2197", "attributes": { "latitude": 36.741199493399996, "longitude": -108.230003357, "fullName": "Four Corners Regional Airport" } }, { "key": "3144", "attributes": { "latitude": 40.48120117, "longitude": -107.2180023, "fullName": "Yampa Valley Airport" } }, { "key": "2191", "attributes": { "latitude": 37.434898, "longitude": -105.866997, "fullName": "San Luis Valley Regional Bergman Field" } }, { "key": "3143", "attributes": { "latitude": 38.53390121, "longitude": -106.9329987, "fullName": "Gunnison Crested Butte Regional Airport" } }, { "key": "2029", "attributes": { "latitude": 44.520198822, "longitude": -109.024002075, "fullName": "Yellowstone Regional Airport" } }, { "key": "2193", "attributes": { "latitude": 36.532082, "longitude": -93.200544, "fullName": "Branson Airport" } }, { "key": "2196", "attributes": { "latitude": 37.76340103149414, "longitude": -99.9655990600586, "fullName": "Dodge City Regional Airport" } }, { "key": "2195", "attributes": { "latitude": 41.15570068, "longitude": -104.8119965, "fullName": "Cheyenne Regional Jerry Olson Field" } }, { "key": "2048", "attributes": { "latitude": 41.5942, "longitude": -109.065001, "fullName": "Southwest Wyoming Regional Airport" } }, { "key": "3386", "attributes": { "latitude": 43.064201355, "longitude": -108.459999084, "fullName": "Riverton Regional Airport" } }, { "key": "2201", "attributes": { "latitude": 37.0442009, "longitude": -100.9599991, "fullName": "Liberal Mid-America Regional Airport" } }, { "key": "2202", "attributes": { "latitude": 36.92610168, "longitude": -111.447998, "fullName": "Page Municipal Airport" } }, { "key": "3380", "attributes": { "latitude": 37.3030014038, "longitude": -108.627998352, "fullName": "Cortez Municipal Airport" } }, { "key": "3140", "attributes": { "latitude": 39.64260101, "longitude": -106.9179993, "fullName": "Eagle County Regional Airport" } }, { "key": "2041", "attributes": { "latitude": 43.6072998046875, "longitude": -110.73799896240234, "fullName": "Jackson Hole Airport" } }, { "key": "3384", "attributes": { "latitude": 40.20629883, "longitude": -100.5920029, "fullName": "Mc Cook Ben Nelson Regional Airport" } }, { "key": "3150", "attributes": { "latitude": 41.31209945678711, "longitude": -105.67500305175781, "fullName": "Laramie Regional Airport" } }, { "key": "2190", "attributes": { "latitude": 42.0531997681, "longitude": -102.804000854, "fullName": "Alliance Municipal Airport" } }, { "key": "1208", "attributes": { "latitude": 35.13850021, "longitude": -111.6709976, "fullName": "Flagstaff Pulliam Airport" } }, { "key": "2629", "attributes": { "latitude": 19.660161, "longitude": -80.088826, "fullName": "Edward Bodden Airfield" } }, { "key": "1833", "attributes": { "latitude": 55.68190002441406, "longitude": -6.256669998168945, "fullName": "Islay Airport" } }, { "key": "1840", "attributes": { "latitude": 56.49919891357422, "longitude": -6.869170188903809, "fullName": "Tiree Airport" } }, { "key": "1828", "attributes": { "latitude": 55.437198638916016, "longitude": -5.686389923095703, "fullName": "Campbeltown Airport" } }, { "key": "1827", "attributes": { "latitude": 57.0228, "longitude": -7.44306, "fullName": "Barra Airport" } }, { "key": "1826", "attributes": { "latitude": 57.48109817504883, "longitude": -7.3627800941467285, "fullName": "Benbecula Airport" } }, { "key": "2436", "attributes": { "latitude": -14.3310003281, "longitude": -170.710006714, "fullName": "Pago Pago International Airport" } }, { "key": "2435", "attributes": { "latitude": 21.15290069580078, "longitude": -157.0959930419922, "fullName": "Molokai Airport" } }, { "key": "2214", "attributes": { "latitude": 1.9861600399017334, "longitude": -157.35000610351562, "fullName": "Cassidy International Airport" } }, { "key": "2726", "attributes": { "latitude": 20.962900161743164, "longitude": -156.67300415039062, "fullName": "Kapalua Airport" } }, { "key": "2830", "attributes": { "latitude": 7.064760208129883, "longitude": 171.27200317382812, "fullName": "Marshall Islands International Airport" } }, { "key": "2434", "attributes": { "latitude": 20.785600662231445, "longitude": -156.9510040283203, "fullName": "Lanai Airport" } }, { "key": "3147", "attributes": { "latitude": 40.31610107421875, "longitude": -78.83390045166016, "fullName": "John Murtha Johnstown Cambria County Airport" } }, { "key": "3130", "attributes": { "latitude": 40.29639816, "longitude": -78.31999969, "fullName": "Altoona Blair County Airport" } }, { "key": "3152", "attributes": { "latitude": 39.64289856, "longitude": -79.91629791, "fullName": "Morgantown Municipal Walter L. Bill Hart Field" } }, { "key": "3162", "attributes": { "latitude": 38.2638015747, "longitude": -78.8964004517, "fullName": "Shenandoah Valley Regional Airport" } }, { "key": "2665", "attributes": { "latitude": 40.121700286865234, "longitude": -76.29609680175781, "fullName": "Lancaster Airport" } }, { "key": "3133", "attributes": { "latitude": 37.787300109899995, "longitude": -81.1241989136, "fullName": "Raleigh County Memorial Airport" } }, { "key": "2296", "attributes": { "latitude": 39.707901, "longitude": -77.72949982, "fullName": "Hagerstown Regional Richard A Henson Field" } }, { "key": "2666", "attributes": { "latitude": 28.85260009765625, "longitude": -96.91850280761719, "fullName": "Victoria Regional Airport" } }, { "key": "3145", "attributes": { "latitude": 32.6875, "longitude": -103.2170029, "fullName": "Lea County Regional Airport" } }, { "key": "2525", "attributes": { "latitude": 59.46009826660156, "longitude": -135.3159942626953, "fullName": "Skagway Airport" } }, { "key": "2523", "attributes": { "latitude": 59.24380111694336, "longitude": -135.5240020751953, "fullName": "Haines Airport" } }, { "key": "1694", "attributes": { "latitude": 56.80170059, "longitude": -132.9450073, "fullName": "Petersburg James A Johnson Airport" } }, { "key": "2521", "attributes": { "latitude": 58.4253006, "longitude": -135.7070007, "fullName": "Gustavus Airport" } }, { "key": "2522", "attributes": { "latitude": 58.0961, "longitude": -135.410111, "fullName": "Hoonah Airport" } }, { "key": "2519", "attributes": { "latitude": 57.503601, "longitude": -134.585007, "fullName": "Angoon Seaplane Base" } }, { "key": "1439", "attributes": { "latitude": 2.84138894081, "longitude": -60.6922225952, "fullName": "Atlas Brasil Cantanhede Airport" } }, { "key": "1501", "attributes": { "latitude": -3.38294005394, "longitude": -64.7240982056, "fullName": "Tefé Airport" } }, { "key": "1436", "attributes": { "latitude": -0.981292, "longitude": -62.919601, "fullName": "Barcelos Airport" } }, { "key": "1446", "attributes": { "latitude": -4.134059906005859, "longitude": -63.132598876953125, "fullName": "Coari Airport" } }, { "key": "1500", "attributes": { "latitude": -4.2556700706482, "longitude": -69.93579864502, "fullName": "Tabatinga Airport" } }, { "key": "1499", "attributes": { "latitude": -2.4247219562530518, "longitude": -54.785831451416016, "fullName": "Maestro Wilson Fonseca Airport" } }, { "key": "1486", "attributes": { "latitude": -2.6730198860168457, "longitude": -56.777198791503906, "fullName": "Parintins Airport" } }, { "key": "2607", "attributes": { "latitude": 38.79100036621094, "longitude": -97.6521987915039, "fullName": "Salina Municipal Airport" } }, { "key": "2308", "attributes": { "latitude": 41.26070023, "longitude": -80.67910004, "fullName": "Youngstown Warren Regional Airport" } }, { "key": "2223", "attributes": { "latitude": -16.8027992249, "longitude": 179.341003418, "fullName": "Savusavu Airport" } }, { "key": "2225", "attributes": { "latitude": 1.3816399574279785, "longitude": 173.14700317382812, "fullName": "Bonriki International Airport" } }, { "key": "2219", "attributes": { "latitude": -16.466699600219727, "longitude": 179.33999633789062, "fullName": "Labasa Airport" } }, { "key": "2226", "attributes": { "latitude": -16.6905994415, "longitude": -179.876998901, "fullName": "Matei Airport" } }, { "key": "2221", "attributes": { "latitude": -12.482500076293945, "longitude": 177.0709991455078, "fullName": "Rotuma Airport" } }, { "key": "3041", "attributes": { "latitude": -13.2383003235, "longitude": -176.199005127, "fullName": "Hihifo Airport" } }, { "key": "2218", "attributes": { "latitude": -19.058099746699998, "longitude": 178.156997681, "fullName": "Vunisea Airport" } }, { "key": "2898", "attributes": { "latitude": 24.3153, "longitude": -75.452301, "fullName": "New Bight Airport" } }, { "key": "2894", "attributes": { "latitude": 23.1790008545, "longitude": -75.09359741210001, "fullName": "Deadman's Cay Airport" } }, { "key": "2896", "attributes": { "latitude": 24.8950787333, "longitude": -76.1768817902, "fullName": "Rock Sound Airport" } }, { "key": "2895", "attributes": { "latitude": 23.68440055847168, "longitude": -74.83619689941406, "fullName": "Rum Cay Airport" } }, { "key": "2893", "attributes": { "latitude": 24.6294, "longitude": -75.673797, "fullName": "Arthur's Town Airport" } }, { "key": "3178", "attributes": { "latitude": 22.379499, "longitude": -73.013494, "fullName": "Mayaguana Airport" } }, { "key": "3177", "attributes": { "latitude": 20.975000381469727, "longitude": -73.66690063476562, "fullName": "Inagua Airport" } }, { "key": "3176", "attributes": { "latitude": 22.745599746699998, "longitude": -74.1824035645, "fullName": "Colonel Hill Airport" } }, { "key": "3175", "attributes": { "latitude": 22.441799163800003, "longitude": -73.97090148930002, "fullName": "Spring Point Airport" } }, { "key": "2897", "attributes": { "latitude": 23.582317, "longitude": -75.268621, "fullName": "Stella Maris Airport" } }, { "key": "2727", "attributes": { "latitude": 20.001300811767578, "longitude": -155.66799926757812, "fullName": "Waimea Kohala Airport" } }, { "key": "2725", "attributes": { "latitude": 20.79560089111328, "longitude": -156.01400756835938, "fullName": "Hana Airport" } }, { "key": "2606", "attributes": { "latitude": 45.695098877, "longitude": -118.841003418, "fullName": "Eastern Oregon Regional At Pendleton Airport" } }, { "key": "2605", "attributes": { "latitude": 43.41709899902344, "longitude": -124.24600219726562, "fullName": "Southwest Oregon Regional Airport" } }, { "key": "3151", "attributes": { "latitude": 42.156101, "longitude": -121.733002, "fullName": "Crater Lake-Klamath Regional Airport" } }, { "key": "2204", "attributes": { "latitude": 34.265499115, "longitude": -110.005996704, "fullName": "Show Low Regional Airport" } }, { "key": "2635", "attributes": { "latitude": -42.340388, "longitude": -73.715693, "fullName": "Mocopulli Airport" } }, { "key": "3216", "attributes": { "latitude": -15.248299598693848, "longitude": -146.61700439453125, "fullName": "Arutua Airport" } }, { "key": "3238", "attributes": { "latitude": -14.45580005645752, "longitude": -145.02499389648438, "fullName": "Takaroa Airport" } }, { "key": "3225", "attributes": { "latitude": -16.42650032043457, "longitude": -152.24400329589844, "fullName": "Maupiti Airport" } }, { "key": "3234", "attributes": { "latitude": -22.434099197387695, "longitude": -151.36099243164062, "fullName": "Rurutu Airport" } }, { "key": "3221", "attributes": { "latitude": -16.68720054626465, "longitude": -151.02200317382812, "fullName": "Huahine-Fare Airport" } }, { "key": "3242", "attributes": { "latitude": -14.436800003051758, "longitude": -146.07000732421875, "fullName": "Manihi Airport" } }, { "key": "3215", "attributes": { "latitude": -9.76879024506, "longitude": -139.011001587, "fullName": "Hiva Oa-Atuona Airport" } }, { "key": "3233", "attributes": { "latitude": -22.63725, "longitude": -152.8059, "fullName": "Rimatara Airport" } }, { "key": "3236", "attributes": { "latitude": -15.119600296020508, "longitude": -148.2310028076172, "fullName": "Tikehau Airport" } }, { "key": "3230", "attributes": { "latitude": -16.7229, "longitude": -151.466003, "fullName": "Raiatea Airport" } }, { "key": "3228", "attributes": { "latitude": -14.8681001663208, "longitude": -148.7169952392578, "fullName": "Mataiva Airport" } }, { "key": "3217", "attributes": { "latitude": -16.444400787353516, "longitude": -151.75100708007812, "fullName": "Bora Bora Airport" } }, { "key": "3220", "attributes": { "latitude": -18.074800491333008, "longitude": -140.9459991455078, "fullName": "Hao Airport" } }, { "key": "3229", "attributes": { "latitude": -8.795599937438965, "longitude": -140.22900390625, "fullName": "Nuku Hiva Airport" } }, { "key": "3227", "attributes": { "latitude": -17.49, "longitude": -149.761993, "fullName": "Moorea Airport" } }, { "key": "3239", "attributes": { "latitude": -23.365400314331055, "longitude": -149.5240020751953, "fullName": "Tubuai Airport" } }, { "key": "3235", "attributes": { "latitude": -23.885200500499998, "longitude": -147.662002563, "fullName": "Raivavae Airport" } }, { "key": "3231", "attributes": { "latitude": -14.954299926757812, "longitude": -147.66099548339844, "fullName": "Rangiroa Airport" } }, { "key": "3218", "attributes": { "latitude": -16.054100036621094, "longitude": -145.65699768066406, "fullName": "Fakarava Airport" } }, { "key": "3214", "attributes": { "latitude": -14.428099632263184, "longitude": -146.2570037841797, "fullName": "Ahe Airport" } }, { "key": "1453", "attributes": { "latitude": -3.85493, "longitude": -32.423302, "fullName": "Fernando de Noronha Airport" } }, { "key": "1684", "attributes": { "latitude": 47.3988990784, "longitude": -120.207000732, "fullName": "Pangborn Memorial Airport" } }, { "key": "1679", "attributes": { "latitude": 46.09489822, "longitude": -118.288002, "fullName": "Walla Walla Regional Airport" } }, { "key": "1702", "attributes": { "latitude": 46.56819916, "longitude": -120.5439987, "fullName": "Yakima Air Terminal McAllister Field" } }, { "key": "1695", "attributes": { "latitude": 46.7439, "longitude": -117.110001, "fullName": "Pullman Moscow Regional Airport" } }, { "key": "3135", "attributes": { "latitude": 39.79539871, "longitude": -121.8580017, "fullName": "Chico Municipal Airport" } }, { "key": "3129", "attributes": { "latitude": 40.978101, "longitude": -124.109, "fullName": "California Redwood Coast-Humboldt County Airport" } }, { "key": "3160", "attributes": { "latitude": 40.50899887, "longitude": -122.2929993, "fullName": "Redding Municipal Airport" } }, { "key": "3134", "attributes": { "latitude": 41.78020096, "longitude": -124.2369995, "fullName": "Jack Mc Namara Field Airport" } }, { "key": "3154", "attributes": { "latitude": 37.62580109, "longitude": -120.9540024, "fullName": "Modesto City Co-Harry Sham Field" } }, { "key": "2026", "attributes": { "latitude": 37.70100021362305, "longitude": -113.0989990234375, "fullName": "Cedar City Regional Airport" } }, { "key": "2024", "attributes": { "latitude": 45.95479965209961, "longitude": -112.49700164794922, "fullName": "Bert Mooney Airport" } }, { "key": "2028", "attributes": { "latitude": 38.75500107, "longitude": -109.7549973, "fullName": "Canyonlands Field" } }, { "key": "2045", "attributes": { "latitude": 42.9098014831543, "longitude": -112.59600067138672, "fullName": "Pocatello Regional Airport" } }, { "key": "2050", "attributes": { "latitude": 42.4818, "longitude": -114.487999, "fullName": "Joslin Field Magic Valley Regional Airport" } }, { "key": "2033", "attributes": { "latitude": 40.82490158081055, "longitude": -115.79199981689453, "fullName": "Elko Regional Airport" } }, { "key": "2051", "attributes": { "latitude": 40.4408989, "longitude": -109.5100021, "fullName": "Vernal Regional Airport" } }, { "key": "3407", "attributes": { "latitude": -22.36359977722168, "longitude": 143.08599853515625, "fullName": "Winton Airport" } }, { "key": "1410", "attributes": { "latitude": 48.9369010925293, "longitude": -54.56809997558594, "fullName": "Gander International Airport" } }, { "key": "2394", "attributes": { "latitude": 49.706104, "longitude": -2.21472, "fullName": "Alderney Airport" } }, { "key": "1529", "attributes": { "latitude": 49.3652992249, "longitude": 0.154305994511, "fullName": "Deauville-Saint-Gatien Airport" } }, { "key": "1518", "attributes": { "latitude": 51.1893997192, "longitude": 4.46027994156, "fullName": "Antwerp International Airport (Deurne)" } }, { "key": "3053", "attributes": { "latitude": 39.455299377441406, "longitude": -31.131399154663086, "fullName": "Flores Airport" } }, { "key": "3055", "attributes": { "latitude": 38.66550064086914, "longitude": -28.175800323486328, "fullName": "São Jorge Airport" } }, { "key": "1378", "attributes": { "latitude": -14.208200454711914, "longitude": -42.74610137939453, "fullName": "Guanambi Airport" } }, { "key": "2165", "attributes": { "latitude": 14.14680004119873, "longitude": 38.77280044555664, "fullName": "Axum Airport" } }, { "key": "2178", "attributes": { "latitude": 13.467399597167969, "longitude": 39.53350067138672, "fullName": "Mekele Airport" } }, { "key": "2166", "attributes": { "latitude": 11.608099937438965, "longitude": 37.32160186767578, "fullName": "Bahir Dar Airport" } }, { "key": "2171", "attributes": { "latitude": 12.51990032196045, "longitude": 37.433998107910156, "fullName": "Gonder Airport" } }, { "key": "2173", "attributes": { "latitude": 9.3325, "longitude": 42.9121, "fullName": "Wilwal International Airport" } }, { "key": "2163", "attributes": { "latitude": 6.0393900871276855, "longitude": 37.59049987792969, "fullName": "Arba Minch Airport" } }, { "key": "2172", "attributes": { "latitude": 8.12876033782959, "longitude": 34.5630989074707, "fullName": "Gambella Airport" } }, { "key": "2164", "attributes": { "latitude": 10.018500328063965, "longitude": 34.586299896240234, "fullName": "Asosa Airport" } }, { "key": "2174", "attributes": { "latitude": 7.66609001159668, "longitude": 36.81660079956055, "fullName": "Jimma Airport" } }, { "key": "1875", "attributes": { "latitude": -0.21699999272823334, "longitude": 20.850000381469727, "fullName": "Boende Airport" } }, { "key": "1888", "attributes": { "latitude": -6.121240139010001, "longitude": 23.569000244099996, "fullName": "Mbuji Mayi Airport" } }, { "key": "1887", "attributes": { "latitude": 0.0226000007242, "longitude": 18.2887001038, "fullName": "Mbandaka Airport" } }, { "key": "1889", "attributes": { "latitude": -6.43833, "longitude": 20.794701, "fullName": "Tshikapa Airport" } }, { "key": "1884", "attributes": { "latitude": -2.91917991638, "longitude": 25.915399551399997, "fullName": "Kindu Airport" } }, { "key": "1883", "attributes": { "latitude": -5.90005016327, "longitude": 22.4692001343, "fullName": "Kananga Airport" } }, { "key": "1879", "attributes": { "latitude": 0.481638997793, "longitude": 25.3379993439, "fullName": "Bangoka International Airport" } }, { "key": "3277", "attributes": { "latitude": -2.462239980697632, "longitude": 28.907899856567383, "fullName": "Kamembe Airport" } }, { "key": "2058", "attributes": { "latitude": -15.261199951171875, "longitude": 12.14680004119873, "fullName": "Namibe Airport" } }, { "key": "2065", "attributes": { "latitude": -9.689069747924805, "longitude": 20.431900024414062, "fullName": "Saurimo Airport" } }, { "key": "2060", "attributes": { "latitude": -14.924699783325195, "longitude": 13.574999809265137, "fullName": "Lubango Airport" } }, { "key": "2066", "attributes": { "latitude": -17.0435009003, "longitude": 15.683799743700002, "fullName": "Ngjiva Pereira Airport" } }, { "key": "2055", "attributes": { "latitude": -12.4792, "longitude": 13.4869, "fullName": "Catumbela Airport" } }, { "key": "2056", "attributes": { "latitude": -11.768099784851074, "longitude": 19.8976993560791, "fullName": "Luena Airport" } }, { "key": "2185", "attributes": { "latitude": -6.269899845123291, "longitude": 14.246999740600586, "fullName": "Mbanza Congo Airport" } }, { "key": "2054", "attributes": { "latitude": -5.59699010848999, "longitude": 12.188400268554688, "fullName": "Cabinda Airport" } }, { "key": "2063", "attributes": { "latitude": -6.141089916229248, "longitude": 12.371800422668457, "fullName": "Soyo Airport" } }, { "key": "2062", "attributes": { "latitude": -12.404600143433, "longitude": 16.947399139404, "fullName": "Kuito Airport" } }, { "key": "2061", "attributes": { "latitude": -14.657600402832031, "longitude": 17.71980094909668, "fullName": "Menongue Airport" } }, { "key": "2057", "attributes": { "latitude": -9.525090217590332, "longitude": 16.312400817871094, "fullName": "Malanje Airport" } }, { "key": "2059", "attributes": { "latitude": -12.808899879455566, "longitude": 15.760499954223633, "fullName": "Nova Lisboa Airport" } }, { "key": "3292", "attributes": { "latitude": 66.363899230957, "longitude": 14.301400184631, "fullName": "Mo i Rana Airport, Røssvoll" } }, { "key": "3297", "attributes": { "latitude": 64.838302612305, "longitude": 11.14610004425, "fullName": "Rørvik Airport, Ryum" } }, { "key": "3291", "attributes": { "latitude": 65.783996582031, "longitude": 13.214900016785, "fullName": "Mosjøen Airport (Kjærstad)" } }, { "key": "3294", "attributes": { "latitude": 64.472198486328, "longitude": 11.57859992981, "fullName": "Namsos Høknesøra Airport" } }, { "key": "2514", "attributes": { "latitude": 58.7672004699707, "longitude": -111.11699676513672, "fullName": "Fort Chipewyan Airport" } }, { "key": "2588", "attributes": { "latitude": 50.11389923095703, "longitude": -91.9052963256836, "fullName": "Sioux Lookout Airport" } }, { "key": "3336", "attributes": { "latitude": 52.9593933975, "longitude": -87.3748683929, "fullName": "Webequie Airport" } }, { "key": "3327", "attributes": { "latitude": 51.5619010925293, "longitude": -87.90779876708984, "fullName": "Fort Hope Airport" } }, { "key": "2582", "attributes": { "latitude": 48.65420150756836, "longitude": -93.439697265625, "fullName": "Fort Frances Municipal Airport" } }, { "key": "3357", "attributes": { "latitude": 51.291099548339844, "longitude": -80.60780334472656, "fullName": "Moosonee Airport" } }, { "key": "2589", "attributes": { "latitude": 49.41389846801758, "longitude": -82.46749877929688, "fullName": "Kapuskasing Airport" } }, { "key": "3355", "attributes": { "latitude": 51.47330093383789, "longitude": -78.75830078125, "fullName": "Waskaganish Airport" } }, { "key": "3308", "attributes": { "latitude": 54.1796989440918, "longitude": -58.45750045776367, "fullName": "Rigolet Airport" } }, { "key": "2849", "attributes": { "latitude": 56.549198150634766, "longitude": -61.680301666259766, "fullName": "Nain Airport" } }, { "key": "2847", "attributes": { "latitude": 51.443599700899995, "longitude": -57.185298919699996, "fullName": "Lourdes de Blanc Sablon Airport" } }, { "key": "2854", "attributes": { "latitude": 54.9105, "longitude": -59.78507, "fullName": "Postville Airport" } }, { "key": "2846", "attributes": { "latitude": 51.3918991089, "longitude": -56.083099365200006, "fullName": "St. Anthony Airport" } }, { "key": "2851", "attributes": { "latitude": 48.5442008972168, "longitude": -58.54999923706055, "fullName": "Stephenville Airport" } }, { "key": "1433", "attributes": { "latitude": -21.812000274699997, "longitude": -48.1329994202, "fullName": "Araraquara Airport" } }, { "key": "1435", "attributes": { "latitude": -3.2539100646973, "longitude": -52.254001617432, "fullName": "Altamira Airport" } }, { "key": "3418", "attributes": { "latitude": -1.7140799760818481, "longitude": -55.83620071411133, "fullName": "Oriximiná Airport" } }, { "key": "3419", "attributes": { "latitude": -1.6365300416946411, "longitude": -50.443599700927734, "fullName": "Breves Airport" } }, { "key": "2681", "attributes": { "latitude": -0.889839, "longitude": -52.6022, "fullName": "Monte Dourado Airport" } }, { "key": "1472", "attributes": { "latitude": 0.0506640002131, "longitude": -51.0722007751, "fullName": "Alberto Alcolumbre Airport" } }, { "key": "1441", "attributes": { "latitude": -21.247299, "longitude": -56.452499, "fullName": "Bonito Airport" } }, { "key": "1442", "attributes": { "latitude": -21.698299408, "longitude": -41.301700592, "fullName": "Bartolomeu Lisandro Airport" } }, { "key": "1474", "attributes": { "latitude": -22.343000412, "longitude": -41.7659988403, "fullName": "Macaé Airport" } }, { "key": "1443", "attributes": { "latitude": -28.7244434357, "longitude": -49.4213905334, "fullName": "Diomício Freitas Airport" } }, { "key": "1489", "attributes": { "latitude": -22.1751003265, "longitude": -51.4245986938, "fullName": "Presidente Prudente Airport" } }, { "key": "1448", "attributes": { "latitude": -17.725299835205, "longitude": -48.607498168945, "fullName": "Nelson Ribeiro Guimarães Airport" } }, { "key": "1468", "attributes": { "latitude": -22.166859140899998, "longitude": -49.0502866745, "fullName": "Bauru - Arealva Airport" } }, { "key": "1452", "attributes": { "latitude": -6.639530181884766, "longitude": -69.87979888916016, "fullName": "Eirunepé Airport" } }, { "key": "2777", "attributes": { "latitude": -27.1714000702, "longitude": -51.5532989502, "fullName": "Santa Terezinha Airport" } }, { "key": "1485", "attributes": { "latitude": -2.89374995232, "longitude": -41.73199844359999, "fullName": "Prefeito Doutor João Silva Filho Airport" } }, { "key": "1461", "attributes": { "latitude": -0.3786, "longitude": -64.9923, "fullName": "Tapuruquara Airport" } }, { "key": "1462", "attributes": { "latitude": -4.2423400878906, "longitude": -56.000701904297, "fullName": "Itaituba Airport" } }, { "key": "1476", "attributes": { "latitude": -22.1968994141, "longitude": -49.926399231, "fullName": "Frank Miloye Milenkowichi–Marília State Airport" } }, { "key": "3009", "attributes": { "latitude": -8.033289909362793, "longitude": -49.97990036010742, "fullName": "Redenção Airport" } }, { "key": "1504", "attributes": { "latitude": -3.7860100269318, "longitude": -49.72029876709, "fullName": "Tucuruí Airport" } }, { "key": "3008", "attributes": { "latitude": -6.763100147250001, "longitude": -51.0499000549, "fullName": "Ourilândia do Norte Airport" } }, { "key": "1481", "attributes": { "latitude": -3.46792950765, "longitude": -68.9204120636, "fullName": "Senadora Eunice Micheles Airport" } }, { "key": "2292", "attributes": { "latitude": -7.59990978241, "longitude": -72.7695007324, "fullName": "Cruzeiro do Sul Airport" } }, { "key": "2775", "attributes": { "latitude": -28.2817, "longitude": -54.169102, "fullName": "Santo Ângelo Airport" } }, { "key": "2779", "attributes": { "latitude": -29.7821998596, "longitude": -57.0382003784, "fullName": "Rubem Berta Airport" } }, { "key": "1494", "attributes": { "latitude": -17.8347225189209, "longitude": -50.956111907958984, "fullName": "General Leite de Castro Airport" } }, { "key": "1497", "attributes": { "latitude": -0.14835, "longitude": -66.9855, "fullName": "São Gabriel da Cachoeira Airport" } }, { "key": "1503", "attributes": { "latitude": -1.489599943161, "longitude": -56.396800994873, "fullName": "Trombetas Airport" } }, { "key": "2785", "attributes": { "latitude": 26.363500595092773, "longitude": 126.71399688720703, "fullName": "Kumejima Airport" } }, { "key": "3255", "attributes": { "latitude": 10.298333333299999, "longitude": 10.896388888899999, "fullName": "Gombe Lawanti International Airport" } }, { "key": "3256", "attributes": { "latitude": 7.362460136413574, "longitude": 3.97832989692688, "fullName": "Ibadan Airport" } }, { "key": "3263", "attributes": { "latitude": 12.916299819946289, "longitude": 5.207190036773682, "fullName": "Sadiq Abubakar III International Airport" } }, { "key": "3257", "attributes": { "latitude": 8.440210342407227, "longitude": 4.493919849395752, "fullName": "Ilorin International Airport" } }, { "key": "3264", "attributes": { "latitude": 9.257550239562988, "longitude": 12.430399894714355, "fullName": "Yola Airport" } }, { "key": "2642", "attributes": { "latitude": -1.226666, "longitude": 15.91, "fullName": "Oyo Ollombo Airport" } }, { "key": "2905", "attributes": { "latitude": -8.919942, "longitude": 33.273981, "fullName": "Songwe Airport" } }, { "key": "2903", "attributes": { "latitude": -3.3677899837493896, "longitude": 36.63330078125, "fullName": "Arusha Airport" } }, { "key": "2906", "attributes": { "latitude": -10.339099884033203, "longitude": 40.181800842285156, "fullName": "Mtwara Airport" } }, { "key": "2689", "attributes": { "latitude": -13.3121004105, "longitude": 48.3148002625, "fullName": "Fascene Airport" } }, { "key": "2685", "attributes": { "latitude": -12.34939956665039, "longitude": 49.29169845581055, "fullName": "Arrachart Airport" } }, { "key": "2687", "attributes": { "latitude": -15.6668417421, "longitude": 46.351232528699995, "fullName": "Amborovy Airport" } }, { "key": "1543", "attributes": { "latitude": 67.700996398926, "longitude": 24.846799850464, "fullName": "Kittilä Airport" } }, { "key": "2836", "attributes": { "latitude": -13.258899688720703, "longitude": 31.936599731445312, "fullName": "Mfuwe Airport" } }, { "key": "2835", "attributes": { "latitude": -10.216699600219727, "longitude": 31.13330078125, "fullName": "Kasama Airport" } }, { "key": "2834", "attributes": { "latitude": -13.558300018310547, "longitude": 32.58720016479492, "fullName": "Chipata Airport" } }, { "key": "2840", "attributes": { "latitude": 44.2723999, "longitude": -86.24690247, "fullName": "Manistee Co Blacker Airport" } }, { "key": "2711", "attributes": { "latitude": -19.7577, "longitude": 63.361, "fullName": "Sir Charles Gaetan Duval Airport" } }, { "key": "1570", "attributes": { "latitude": -21.320899963378906, "longitude": 55.42499923706055, "fullName": "Pierrefonds Airport" } }, { "key": "2952", "attributes": { "latitude": 7.3570098876953125, "longitude": 13.559200286865234, "fullName": "N'Gaoundéré Airport" } }, { "key": "2097", "attributes": { "latitude": -0.7117390036582947, "longitude": 8.754380226135254, "fullName": "Port Gentil Airport" } }, { "key": "2693", "attributes": { "latitude": -18.109500885009766, "longitude": 49.39250183105469, "fullName": "Toamasina Airport" } }, { "key": "2690", "attributes": { "latitude": -17.093900680541992, "longitude": 49.815799713134766, "fullName": "Sainte Marie Airport" } }, { "key": "2686", "attributes": { "latitude": -25.03809928894043, "longitude": 46.95610046386719, "fullName": "Tôlanaro Airport" } }, { "key": "2694", "attributes": { "latitude": -15.436699867248535, "longitude": 49.68830108642578, "fullName": "Maroantsetra Airport" } }, { "key": "2688", "attributes": { "latitude": -20.284700393676758, "longitude": 44.31760025024414, "fullName": "Morondava Airport" } }, { "key": "2691", "attributes": { "latitude": -14.278599739074707, "longitude": 50.17470169067383, "fullName": "Sambava Airport" } }, { "key": "2684", "attributes": { "latitude": -14.99940013885498, "longitude": 50.3202018737793, "fullName": "Antsirabato Airport" } }, { "key": "2692", "attributes": { "latitude": -23.383399963378906, "longitude": 43.72850036621094, "fullName": "Toliara Airport" } }, { "key": "1575", "attributes": { "latitude": 21.375, "longitude": 0.923888981342, "fullName": "Bordj Badji Mokhtar Airport" } }, { "key": "1577", "attributes": { "latitude": 31.645700454711914, "longitude": -2.269860029220581, "fullName": "Béchar Boudghene Ben Ali Lotfi Airport" } }, { "key": "1598", "attributes": { "latitude": 22.8115005493, "longitude": 5.45107984543, "fullName": "Aguenar – Hadj Bey Akhamok Airport" } }, { "key": "1582", "attributes": { "latitude": 30.571300506591797, "longitude": 2.8595900535583496, "fullName": "El Golea Airport" } }, { "key": "1587", "attributes": { "latitude": 28.0515, "longitude": 9.64291, "fullName": "In Aménas Airport" } }, { "key": "1604", "attributes": { "latitude": 24.817199707, "longitude": 79.91860198970001, "fullName": "Khajuraho Airport" } }, { "key": "2917", "attributes": { "latitude": 0.48813098669052124, "longitude": 72.99690246582031, "fullName": "Kaadedhdhoo Airport" } }, { "key": "2915", "attributes": { "latitude": 0.7324, "longitude": 73.4336, "fullName": "Kooddoo Airport" } }, { "key": "2912", "attributes": { "latitude": 5.1561, "longitude": 73.1302, "fullName": "Dharavandhoo Airport" } }, { "key": "2918", "attributes": { "latitude": 1.8591699600219727, "longitude": 73.52189636230469, "fullName": "Kadhdhoo Airport" } }, { "key": "2317", "attributes": { "latitude": 2.1555, "longitude": 117.431999, "fullName": "Kalimarau Airport" } }, { "key": "2010", "attributes": { "latitude": 8.539620399475098, "longitude": 99.9447021484375, "fullName": "Nakhon Si Thammarat Airport" } }, { "key": "2210", "attributes": { "latitude": 6.5199198722839355, "longitude": 101.74299621582031, "fullName": "Narathiwat Airport" } }, { "key": "2003", "attributes": { "latitude": 15.229499816894531, "longitude": 103.25299835205078, "fullName": "Buri Ram Airport" } }, { "key": "2012", "attributes": { "latitude": 18.132200241088867, "longitude": 100.16500091552734, "fullName": "Phrae Airport" } }, { "key": "2005", "attributes": { "latitude": 10.711199760437012, "longitude": 99.36170196533203, "fullName": "Chumphon Airport" } }, { "key": "2015", "attributes": { "latitude": 7.508739948272705, "longitude": 99.6166000366211, "fullName": "Trang Airport" } }, { "key": "2013", "attributes": { "latitude": 16.11680030822754, "longitude": 103.77400207519531, "fullName": "Roi Et Airport" } }, { "key": "2006", "attributes": { "latitude": 17.383800506591797, "longitude": 104.64299774169922, "fullName": "Nakhon Phanom Airport" } }, { "key": "2017", "attributes": { "latitude": 9.777620315551758, "longitude": 98.58550262451172, "fullName": "Ranong Airport" } }, { "key": "2014", "attributes": { "latitude": 17.195100784301758, "longitude": 104.11900329589844, "fullName": "Sakon Nakhon Airport" } }, { "key": "2007", "attributes": { "latitude": 17.43910026550293, "longitude": 101.72200012207031, "fullName": "Loei Airport" } }, { "key": "2008", "attributes": { "latitude": 16.699899673461914, "longitude": 98.54509735107422, "fullName": "Mae Sot Airport" } }, { "key": "2706", "attributes": { "latitude": 2.90639, "longitude": 112.080002, "fullName": "Mukah Airport" } }, { "key": "2704", "attributes": { "latitude": 4.808300018310547, "longitude": 115.01000213623047, "fullName": "Limbang Airport" } }, { "key": "2708", "attributes": { "latitude": 3.9670000076293945, "longitude": 115.05000305175781, "fullName": "Long Seridan Airport" } }, { "key": "2697", "attributes": { "latitude": 3.7338900566101074, "longitude": 115.47899627685547, "fullName": "Bario Airport" } }, { "key": "2703", "attributes": { "latitude": 3.299999952316284, "longitude": 114.78299713134766, "fullName": "Long Akah Airport" } }, { "key": "2707", "attributes": { "latitude": 4.178979873657227, "longitude": 114.3290023803711, "fullName": "Marudi Airport" } }, { "key": "2702", "attributes": { "latitude": 3.4210000038099997, "longitude": 115.153999329, "fullName": "Long Lellang Airport" } }, { "key": "2569", "attributes": { "latitude": -1.03892, "longitude": 122.772003, "fullName": "Syukuran Aminuddin Amir Airport" } }, { "key": "2336", "attributes": { "latitude": -0.894, "longitude": 131.287, "fullName": "Dominique Edward Osok Airport" } }, { "key": "2324", "attributes": { "latitude": 0.63711899519, "longitude": 122.849998474, "fullName": "Jalaluddin Airport" } }, { "key": "2318", "attributes": { "latitude": -1.190019965171814, "longitude": 136.10800170898438, "fullName": "Frans Kaisiepo Airport" } }, { "key": "2330", "attributes": { "latitude": -0.8918330073356628, "longitude": 134.0489959716797, "fullName": "Rendani Airport" } }, { "key": "2576", "attributes": { "latitude": -1.41674995422, "longitude": 120.657997131, "fullName": "Kasiguncu Airport" } }, { "key": "2563", "attributes": { "latitude": -5.486879825592041, "longitude": 122.56900024414062, "fullName": "Betoambari Airport" } }, { "key": "2984", "attributes": { "latitude": 20.68269920349121, "longitude": 101.99400329589844, "fullName": "Oudomsay Airport" } }, { "key": "2982", "attributes": { "latitude": 20.2572994232, "longitude": 100.43699646, "fullName": "Ban Huoeisay Airport" } }, { "key": "2986", "attributes": { "latitude": 19.450001, "longitude": 103.157997, "fullName": "Xieng Khouang Airport" } }, { "key": "2983", "attributes": { "latitude": 20.966999, "longitude": 101.400002, "fullName": "Luang Namtha Airport" } }, { "key": "2417", "attributes": { "latitude": 58.7033996582, "longitude": -157.007995605, "fullName": "South Naknek Nr 2 Airport" } }, { "key": "2414", "attributes": { "latitude": 57.5803985596, "longitude": -157.572006226, "fullName": "Pilot Point Airport" } }, { "key": "2413", "attributes": { "latitude": 56.007499694824, "longitude": -161.16000366211, "fullName": "Nelson Lagoon Airport" } }, { "key": "2412", "attributes": { "latitude": 55.11629867553711, "longitude": -162.26600646972656, "fullName": "King Cove Airport" } }, { "key": "2408", "attributes": { "latitude": 54.8474006652832, "longitude": -163.41000366210938, "fullName": "False Pass Airport" } }, { "key": "1704", "attributes": { "latitude": 35.177101135253906, "longitude": -3.83951997756958, "fullName": "Cherif Al Idrissi Airport" } }, { "key": "3212", "attributes": { "latitude": 14.8850002289, "longitude": -24.4799995422, "fullName": "São Filipe Airport" } }, { "key": "3211", "attributes": { "latitude": 15.155900001525879, "longitude": -23.213699340820312, "fullName": "Maio Airport" } }, { "key": "2783", "attributes": { "latitude": 28.029600143432617, "longitude": -17.214599609375, "fullName": "La Gomera Airport" } }, { "key": "1712", "attributes": { "latitude": 28.448200225830078, "longitude": -11.161299705505371, "fullName": "Tan Tan Airport" } }, { "key": "2002", "attributes": { "latitude": 58.31809997558594, "longitude": 12.345000267028809, "fullName": "Trollhättan-Vänersborg Airport" } }, { "key": "2349", "attributes": { "latitude": 64.19090271, "longitude": -51.6781005859, "fullName": "Godthaab / Nuuk Airport" } }, { "key": "2446", "attributes": { "latitude": 59.22370147705078, "longitude": 15.038000106811523, "fullName": "Örebro Airport" } }, { "key": "3272", "attributes": { "latitude": 44.45869827270508, "longitude": 18.72480010986328, "fullName": "Tuzla International Airport" } }, { "key": "3248", "attributes": { "latitude": 67.24559783935547, "longitude": 23.068899154663086, "fullName": "Pajala Airport" } }, { "key": "3250", "attributes": { "latitude": 58.22990036010742, "longitude": 22.50950050354004, "fullName": "Kuressaare Airport" } }, { "key": "3249", "attributes": { "latitude": 60.1576004028, "longitude": 12.991299629199998, "fullName": "Torsby Airport" } }, { "key": "2888", "attributes": { "latitude": 27.3351993560791, "longitude": 68.14309692382812, "fullName": "Moenjodaro Airport" } }, { "key": "2464", "attributes": { "latitude": 31.364999771118164, "longitude": 72.99479675292969, "fullName": "Faisalabad International Airport" } }, { "key": "2889", "attributes": { "latitude": 26.954500198364258, "longitude": 64.13249969482422, "fullName": "Panjgur Airport" } }, { "key": "2518", "attributes": { "latitude": 12.053500175476074, "longitude": 24.956199645996094, "fullName": "Nyala Airport" } }, { "key": "2517", "attributes": { "latitude": 13.614899635314941, "longitude": 25.324600219726562, "fullName": "El Fasher Airport" } }, { "key": "2516", "attributes": { "latitude": 13.48169994354248, "longitude": 22.467199325561523, "fullName": "Geneina Airport" } }, { "key": "2441", "attributes": { "latitude": -4.3192901611328125, "longitude": 55.69139862060547, "fullName": "Praslin Airport" } }, { "key": "2080", "attributes": { "latitude": 51.15079879760742, "longitude": 51.54309844970703, "fullName": "Uralsk Airport" } }, { "key": "1781", "attributes": { "latitude": -2.645050048828125, "longitude": 37.25310134887695, "fullName": "Amboseli Airport" } }, { "key": "1783", "attributes": { "latitude": 0.9719889760017395, "longitude": 34.95859909057617, "fullName": "Kitale Airport" } }, { "key": "1784", "attributes": { "latitude": 4.20412015914917, "longitude": 34.348201751708984, "fullName": "Lokichoggio Airport" } }, { "key": "1785", "attributes": { "latitude": -1.406111, "longitude": 35.008057, "fullName": "Mara Serena Lodge Airstrip" } }, { "key": "1786", "attributes": { "latitude": -4.29333, "longitude": 39.571098, "fullName": "Ukunda Airstrip" } }, { "key": "2184", "attributes": { "latitude": 0.530583, "longitude": 37.534195, "fullName": "Buffalo Spring" } }, { "key": "2183", "attributes": { "latitude": -0.06239889934659004, "longitude": 37.04100799560547, "fullName": "Nanyuki Airport" } }, { "key": "1793", "attributes": { "latitude": 30.371099472, "longitude": 48.2282981873, "fullName": "Abadan Airport" } }, { "key": "1803", "attributes": { "latitude": 36.635799408, "longitude": 53.193599700899995, "fullName": "Dasht-e Naz Airport" } }, { "key": "2148", "attributes": { "latitude": 27.379601, "longitude": 52.737701, "fullName": "Persian Gulf International Airport" } }, { "key": "2141", "attributes": { "latitude": 30.274400711099997, "longitude": 56.9510993958, "fullName": "Kerman Airport" } }, { "key": "3349", "attributes": { "latitude": 30.55620002746582, "longitude": 49.15190124511719, "fullName": "Mahshahr Airport" } }, { "key": "2509", "attributes": { "latitude": 32.898101806640625, "longitude": 59.2661018371582, "fullName": "Birjand Airport" } }, { "key": "2149", "attributes": { "latitude": 36.9099006652832, "longitude": 50.67959976196289, "fullName": "Ramsar Airport" } }, { "key": "2127", "attributes": { "latitude": 31.09830093383789, "longitude": 61.54389953613281, "fullName": "Zabol Airport" } }, { "key": "2137", "attributes": { "latitude": 34.86920166015625, "longitude": 48.5525016784668, "fullName": "Hamadan Airport" } }, { "key": "2128", "attributes": { "latitude": 38.3256988525, "longitude": 48.4244003296, "fullName": "Ardabil Airport" } }, { "key": "2145", "attributes": { "latitude": 36.663299560546875, "longitude": 51.464698791503906, "fullName": "Noshahr Airport" } }, { "key": "2949", "attributes": { "latitude": 25.908899307250977, "longitude": 54.539398193359375, "fullName": "Sirri Island Airport" } }, { "key": "2134", "attributes": { "latitude": 32.434399, "longitude": 48.397598, "fullName": "Dezful Airport" } }, { "key": "2131", "attributes": { "latitude": 37.49300003051758, "longitude": 57.30820083618164, "fullName": "Bojnord Airport" } }, { "key": "2150", "attributes": { "latitude": 35.24589920043945, "longitude": 47.00920104980469, "fullName": "Sanandaj Airport" } }, { "key": "2136", "attributes": { "latitude": 30.337600708, "longitude": 50.827999115, "fullName": "Gachsaran Airport" } }, { "key": "2508", "attributes": { "latitude": 33.43539810180664, "longitude": 48.282901763916016, "fullName": "Khoram Abad Airport" } }, { "key": "2142", "attributes": { "latitude": 38.4275016784668, "longitude": 44.97359848022461, "fullName": "Khoy Airport" } }, { "key": "2147", "attributes": { "latitude": 39.60359954834, "longitude": 47.881500244141, "fullName": "Parsabade Moghan Airport" } }, { "key": "2138", "attributes": { "latitude": 33.58660125732422, "longitude": 46.40480041503906, "fullName": "Ilam Airport" } }, { "key": "2133", "attributes": { "latitude": 29.084199905395508, "longitude": 58.45000076293945, "fullName": "Bam Airport" } }, { "key": "2129", "attributes": { "latitude": 36.16809844970703, "longitude": 57.59519958496094, "fullName": "Sabzevar National Airport" } }, { "key": "2151", "attributes": { "latitude": 30.700500488281, "longitude": 51.545101165771, "fullName": "Yasouj Airport" } }, { "key": "3194", "attributes": { "latitude": 51.89419937133789, "longitude": -2.167220115661621, "fullName": "Gloucestershire Airport" } }, { "key": "3079", "attributes": { "latitude": -26.687400817871094, "longitude": 15.242899894714355, "fullName": "Luderitz Airport" } }, { "key": "2761", "attributes": { "latitude": 33.7490005493, "longitude": 129.785003662, "fullName": "Iki Airport" } }, { "key": "2653", "attributes": { "latitude": 59.3675003052, "longitude": -2.43443989754, "fullName": "North Ronaldsay Airport" } }, { "key": "2656", "attributes": { "latitude": 59.3502998352, "longitude": -2.95000004768, "fullName": "Westray Airport" } }, { "key": "2651", "attributes": { "latitude": 59.19060134887695, "longitude": -2.7722198963165283, "fullName": "Eday Airport" } }, { "key": "2654", "attributes": { "latitude": 59.351699829100006, "longitude": -2.9002799987800003, "fullName": "Papa Westray Airport" } }, { "key": "2652", "attributes": { "latitude": 59.250301361083984, "longitude": -2.576669931411743, "fullName": "Sanday Airport" } }, { "key": "2655", "attributes": { "latitude": 59.1553001404, "longitude": -2.64139008522, "fullName": "Stronsay Airport" } }, { "key": "1874", "attributes": { "latitude": -2.3089799880981445, "longitude": 28.808799743652344, "fullName": "Bukavu Kavumu Airport" } }, { "key": "1885", "attributes": { "latitude": -5.39444, "longitude": 26.99, "fullName": "Kongolo Airport" } }, { "key": "1876", "attributes": { "latitude": 0.575, "longitude": 29.4739, "fullName": "Beni Airport" } }, { "key": "1881", "attributes": { "latitude": -1.6708099842071533, "longitude": 29.238500595092773, "fullName": "Goma International Airport" } }, { "key": "1877", "attributes": { "latitude": 1.5657199621200562, "longitude": 30.220800399780273, "fullName": "Bunia Airport" } }, { "key": "1882", "attributes": { "latitude": 2.8276100158691406, "longitude": 27.588300704956055, "fullName": "Matari Airport" } }, { "key": "1880", "attributes": { "latitude": 3.2353699207299997, "longitude": 19.771299362199997, "fullName": "Gemena Airport" } }, { "key": "3414", "attributes": { "latitude": -5.8755598068237305, "longitude": 29.25, "fullName": "Kalemie Airport" } }, { "key": "1886", "attributes": { "latitude": -3.4170000553131104, "longitude": 23.450000762939453, "fullName": "Lodja Airport" } }, { "key": "2715", "attributes": { "latitude": 47.9541015625, "longitude": 91.6281967163086, "fullName": "Khovd Airport" } }, { "key": "2099", "attributes": { "latitude": 49.663299560546875, "longitude": 100.0989990234375, "fullName": "Mörön Airport" } }, { "key": "3421", "attributes": { "latitude": 43.59170150756836, "longitude": 104.43000030517578, "fullName": "Dalanzadgad Airport" } }, { "key": "2101", "attributes": { "latitude": 50.066588, "longitude": 91.938273, "fullName": "Ulaangom Airport" } }, { "key": "2717", "attributes": { "latitude": 47.7093, "longitude": 96.5258, "fullName": "Donoi Airport" } }, { "key": "2714", "attributes": { "latitude": 46.163299560546875, "longitude": 100.7040023803711, "fullName": "Bayankhongor Airport" } }, { "key": "2100", "attributes": { "latitude": 48.9933013916, "longitude": 89.9225006104, "fullName": "Ulgii Mongolei Airport" } }, { "key": "1937", "attributes": { "latitude": -5.4223198890686035, "longitude": 154.67300415039062, "fullName": "Buka Airport" } }, { "key": "1938", "attributes": { "latitude": -9.08675956726, "longitude": 143.207992554, "fullName": "Daru Airport" } }, { "key": "1957", "attributes": { "latitude": -6.1257100105285645, "longitude": 141.28199768066406, "fullName": "Kiunga Airport" } }, { "key": "1944", "attributes": { "latitude": -6.569803, "longitude": 146.725977, "fullName": "Nadzab Airport" } }, { "key": "1939", "attributes": { "latitude": -6.081689834590001, "longitude": 145.391998291, "fullName": "Goroka Airport" } }, { "key": "1941", "attributes": { "latitude": -5.826789855957031, "longitude": 144.29600524902344, "fullName": "Mount Hagen Kagamuga Airport" } }, { "key": "1947", "attributes": { "latitude": -5.20707988739, "longitude": 145.789001465, "fullName": "Madang Airport" } }, { "key": "1940", "attributes": { "latitude": -10.3114995956, "longitude": 150.333999634, "fullName": "Gurney Airport" } }, { "key": "1951", "attributes": { "latitude": -8.80453968048, "longitude": 148.309005737, "fullName": "Girua Airport" } }, { "key": "1949", "attributes": { "latitude": -10.689200401299999, "longitude": 152.837997437, "fullName": "Misima Island Airport" } }, { "key": "1950", "attributes": { "latitude": -6.36332988739, "longitude": 143.238006592, "fullName": "Moro Airport" } }, { "key": "1958", "attributes": { "latitude": -3.58383011818, "longitude": 143.669006348, "fullName": "Wewak International Airport" } }, { "key": "1956", "attributes": { "latitude": -5.84499979019, "longitude": 142.947998047, "fullName": "Tari Airport" } }, { "key": "1954", "attributes": { "latitude": -5.27861, "longitude": 141.225998, "fullName": "Tabubil Airport" } }, { "key": "1942", "attributes": { "latitude": -5.462170124053955, "longitude": 150.40499877929688, "fullName": "Kimbe Airport" } }, { "key": "1943", "attributes": { "latitude": -2.57940006256, "longitude": 150.807998657, "fullName": "Kavieng Airport" } }, { "key": "1948", "attributes": { "latitude": -2.06189, "longitude": 147.423996, "fullName": "Momote Airport" } }, { "key": "2910", "attributes": { "latitude": -2.6926, "longitude": 141.3028, "fullName": "Vanimo Airport" } }, { "key": "2908", "attributes": { "latitude": -6.024290084838867, "longitude": 144.9709930419922, "fullName": "Chimbu Airport" } }, { "key": "2911", "attributes": { "latitude": -5.6433000564575195, "longitude": 143.89500427246094, "fullName": "Wapenamanda Airport" } }, { "key": "2909", "attributes": { "latitude": -6.14774, "longitude": 143.656998, "fullName": "Mendi Airport" } }, { "key": "2907", "attributes": { "latitude": -7.216286671410001, "longitude": 146.649541855, "fullName": "Bulolo Airport" } }, { "key": "2990", "attributes": { "latitude": 51.780102, "longitude": 143.139008, "fullName": "Nogliki Airport" } }, { "key": "2542", "attributes": { "latitude": 35.255001068115234, "longitude": 136.9239959716797, "fullName": "Nagoya Airport" } }, { "key": "1994", "attributes": { "latitude": 60.788299560546875, "longitude": 46.2599983215332, "fullName": "Velikiy Ustyug Airport" } }, { "key": "2837", "attributes": { "latitude": -11.13700008392334, "longitude": 28.872600555419922, "fullName": "Mansa Airport" } }, { "key": "2052", "attributes": { "latitude": 12.39533, "longitude": -16.748, "fullName": "Cap Skirring Airport" } }, { "key": "3289", "attributes": { "latitude": 68.152496337891, "longitude": 13.609399795532, "fullName": "Leknes Airport" } }, { "key": "3295", "attributes": { "latitude": 67.527801513672, "longitude": 12.103300094604, "fullName": "Røst Airport" } }, { "key": "3293", "attributes": { "latitude": 68.436897277832, "longitude": 17.386699676514, "fullName": "Narvik Framnes Airport" } }, { "key": "3304", "attributes": { "latitude": 68.243301391602, "longitude": 14.669199943542, "fullName": "Svolvær Helle Airport" } }, { "key": "3305", "attributes": { "latitude": 70.355400085449, "longitude": 31.044900894165, "fullName": "Vardø Airport, Svartnes" } }, { "key": "2884", "attributes": { "latitude": 31.909400939941406, "longitude": 70.89659881591797, "fullName": "Dera Ismael Khan Airport" } }, { "key": "2231", "attributes": { "latitude": 16.191699981689453, "longitude": 52.17499923706055, "fullName": "Al Ghaidah International Airport" } }, { "key": "2234", "attributes": { "latitude": 14.551300048828125, "longitude": 46.82619857788086, "fullName": "Ataq Airport" } }, { "key": "2817", "attributes": { "latitude": -44.302799224853516, "longitude": 171.22500610351562, "fullName": "Timaru Airport" } }, { "key": "2823", "attributes": { "latitude": -41.73809814453125, "longitude": 171.58099365234375, "fullName": "Westport Airport" } }, { "key": "2161", "attributes": { "latitude": -1.059722, "longitude": -77.583333, "fullName": "Jumandy Airport" } }, { "key": "2175", "attributes": { "latitude": 11.975000381469727, "longitude": 38.97999954223633, "fullName": "Lalibella Airport" } }, { "key": "2170", "attributes": { "latitude": 5.93513011932, "longitude": 43.5786018372, "fullName": "Gode Airport" } }, { "key": "3111", "attributes": { "latitude": -17.855499267578125, "longitude": 36.86909866333008, "fullName": "Quelimane Airport" } }, { "key": "3112", "attributes": { "latitude": -19.15130043029785, "longitude": 33.42900085449219, "fullName": "Chimoio Airport" } }, { "key": "2194", "attributes": { "latitude": 42.837600708, "longitude": -103.095001221, "fullName": "Chadron Municipal Airport" } }, { "key": "2207", "attributes": { "latitude": 43.9656982421875, "longitude": -107.95099639892578, "fullName": "Worland Municipal Airport" } }, { "key": "2198", "attributes": { "latitude": 44.38520050048828, "longitude": -98.22850036621094, "fullName": "Huron Regional Airport" } }, { "key": "3365", "attributes": { "latitude": 35.95240020751953, "longitude": -112.14700317382812, "fullName": "Grand Canyon National Park Airport" } }, { "key": "2206", "attributes": { "latitude": 29.9592, "longitude": -81.339798, "fullName": "Northeast Florida Regional Airport" } }, { "key": "3105", "attributes": { "latitude": 41.13819885253906, "longitude": 27.919099807739258, "fullName": "Tekirdağ Çorlu Airport" } }, { "key": "3099", "attributes": { "latitude": 40.73500061035156, "longitude": 30.08329963684082, "fullName": "Cengiz Topel Airport" } }, { "key": "3095", "attributes": { "latitude": 40.1376991272, "longitude": 26.4267997742, "fullName": "Çanakkale Airport" } }, { "key": "2298", "attributes": { "latitude": 39.813801, "longitude": -82.927803, "fullName": "Rickenbacker International Airport" } }, { "key": "2294", "attributes": { "latitude": 38.5452, "longitude": -89.835197, "fullName": "Scott AFB/Midamerica Airport" } }, { "key": "2302", "attributes": { "latitude": 43.0778999329, "longitude": -70.8233032227, "fullName": "Portsmouth International at Pease Airport" } }, { "key": "2295", "attributes": { "latitude": 39.2966003418, "longitude": -80.2281036377, "fullName": "North Central West Virginia Airport" } }, { "key": "2215", "attributes": { "latitude": -8.525, "longitude": 179.195999, "fullName": "Funafuti International Airport" } }, { "key": "2480", "attributes": { "latitude": -10.449700355500001, "longitude": 161.897994995, "fullName": "Ngorangora Airport" } }, { "key": "2482", "attributes": { "latitude": -7.3305, "longitude": 157.585, "fullName": "Kaghau Airport" } }, { "key": "2488", "attributes": { "latitude": -9.861669540409999, "longitude": 160.824996948, "fullName": "Marau Airport" } }, { "key": "2490", "attributes": { "latitude": -7.585559844970703, "longitude": 158.7310028076172, "fullName": "Suavanao Airport" } }, { "key": "2474", "attributes": { "latitude": -8.87333, "longitude": 161.011002, "fullName": "Uru Harbour Airport" } }, { "key": "2477", "attributes": { "latitude": -8.578889846801758, "longitude": 157.87600708007812, "fullName": "Sege Airport" } }, { "key": "2479", "attributes": { "latitude": -8.09778022766, "longitude": 156.863998413, "fullName": "Nusatupe Airport" } }, { "key": "2484", "attributes": { "latitude": -10.847994, "longitude": 162.454108, "fullName": "Santa Ana Airport" } }, { "key": "2478", "attributes": { "latitude": -8.1075, "longitude": 159.576996, "fullName": "Fera/Maringe Airport" } }, { "key": "2483", "attributes": { "latitude": -8.327969551086426, "longitude": 157.26300048828125, "fullName": "Munda Airport" } }, { "key": "2486", "attributes": { "latitude": -9.86054358262, "longitude": 161.979546547, "fullName": "Ulawa Airport" } }, { "key": "2489", "attributes": { "latitude": -10.72029972076416, "longitude": 165.7949981689453, "fullName": "Santa Cruz/Graciosa Bay/Luova Airport" } }, { "key": "2487", "attributes": { "latitude": -11.533900260925293, "longitude": 160.06300354003906, "fullName": "Rennell/Tingoa Airport" } }, { "key": "2485", "attributes": { "latitude": -8.168060302734375, "longitude": 157.64300537109375, "fullName": "Ramata Airport" } }, { "key": "2476", "attributes": { "latitude": -6.711944, "longitude": 156.396111, "fullName": "Choiseul Bay Airport" } }, { "key": "2217", "attributes": { "latitude": -17.7432994843, "longitude": -179.341995239, "fullName": "Cicia Airport" } }, { "key": "2220", "attributes": { "latitude": -18.1991996765, "longitude": -178.817001343, "fullName": "Lakeba Island Airport" } }, { "key": "2227", "attributes": { "latitude": -17.268999099731445, "longitude": -178.9759979248047, "fullName": "Vanua Balavu Airport" } }, { "key": "2742", "attributes": { "latitude": -16.4611228, "longitude": 167.829253, "fullName": "Lamap Airport" } }, { "key": "2752", "attributes": { "latitude": -19.45509910583496, "longitude": 169.2239990234375, "fullName": "Tanna Airport" } }, { "key": "2756", "attributes": { "latitude": -16.796100616500002, "longitude": 168.177001953, "fullName": "Valesdir Airport" } }, { "key": "2747", "attributes": { "latitude": -16.438999176, "longitude": 168.257003784, "fullName": "Tavie Airport" } }, { "key": "2740", "attributes": { "latitude": -15.865599632299999, "longitude": 168.17199707, "fullName": "Lonorore Airport" } }, { "key": "2735", "attributes": { "latitude": -18.7693996429, "longitude": 169.00100708, "fullName": "Dillon's Bay Airport" } }, { "key": "2751", "attributes": { "latitude": -16.4864, "longitude": 167.4472, "fullName": "Southwest Bay Airport" } }, { "key": "2746", "attributes": { "latitude": -16.0797, "longitude": 167.401001, "fullName": "Norsup Airport" } }, { "key": "2736", "attributes": { "latitude": -17.0902996063, "longitude": 168.343002319, "fullName": "Siwo Airport" } }, { "key": "2753", "attributes": { "latitude": -16.8910999298, "longitude": 168.550994873, "fullName": "Tongoa Airport" } }, { "key": "2738", "attributes": { "latitude": -18.856389, "longitude": 169.283333, "fullName": "Ipota Airport" } }, { "key": "2734", "attributes": { "latitude": -16.264999, "longitude": 167.923996, "fullName": "Craig Cove Airport" } }, { "key": "2739", "attributes": { "latitude": -16.584199905400002, "longitude": 168.158996582, "fullName": "Lamen Bay Airport" } }, { "key": "2238", "attributes": { "latitude": 12.63070011138916, "longitude": 53.905799865722656, "fullName": "Socotra International Airport" } }, { "key": "3271", "attributes": { "latitude": 47.48889923095703, "longitude": 21.615299224853516, "fullName": "Debrecen International Airport" } }, { "key": "2575", "attributes": { "latitude": 3.90871, "longitude": 108.388, "fullName": "Ranai Airport" } }, { "key": "2283", "attributes": { "latitude": 4.537220001220703, "longitude": 103.427001953125, "fullName": "Kerteh Airport" } }, { "key": "2299", "attributes": { "latitude": 41.195899963379, "longitude": -112.0120010376, "fullName": "Ogden Hinckley Airport" } }, { "key": "2574", "attributes": { "latitude": -3.36818, "longitude": 135.496002, "fullName": "Nabire Airport" } }, { "key": "2565", "attributes": { "latitude": -2.9201900959014893, "longitude": 132.26699829101562, "fullName": "Fakfak Airport" } }, { "key": "2497", "attributes": { "latitude": -7.9886097908, "longitude": 131.305999756, "fullName": "Saumlaki/Olilit Airport" } }, { "key": "2494", "attributes": { "latitude": -5.661620140075684, "longitude": 132.7310028076172, "fullName": "Dumatumbun Airport" } }, { "key": "2498", "attributes": { "latitude": -4.10251, "longitude": 138.957001, "fullName": "Wamena Airport" } }, { "key": "2495", "attributes": { "latitude": -4.9071, "longitude": 140.6277, "fullName": "Oksibil Airport" } }, { "key": "2329", "attributes": { "latitude": -8.52029037475586, "longitude": 140.41799926757812, "fullName": "Mopah Airport" } }, { "key": "2323", "attributes": { "latitude": -8.8492898941, "longitude": 121.661003113, "fullName": "Ende (H Hasan Aroeboesman) Airport" } }, { "key": "2566", "attributes": { "latitude": 1.1852799654006958, "longitude": 127.89600372314453, "fullName": "Kao Airport" } }, { "key": "2573", "attributes": { "latitude": 3.6832098960876465, "longitude": 125.52799987792969, "fullName": "Naha Airport" } }, { "key": "2571", "attributes": { "latitude": 4.00694, "longitude": 126.672997, "fullName": "Melangguane Airport" } }, { "key": "2493", "attributes": { "latitude": -1.816640019416809, "longitude": 109.96299743652344, "fullName": "Ketapang(Rahadi Usman) Airport" } }, { "key": "2564", "attributes": { "latitude": -2.5322399139404297, "longitude": 133.43899536132812, "fullName": "Babo Airport" } }, { "key": "2348", "attributes": { "latitude": 70.7431030273, "longitude": -22.6504993439, "fullName": "Neerlerit Inaat Airport" } }, { "key": "2374", "attributes": { "latitude": 70.4882288244, "longitude": -21.971679925900002, "fullName": "Ittoqqortoormiit Heliport" } }, { "key": "2356", "attributes": { "latitude": 61.9921989441, "longitude": -49.6624984741, "fullName": "Paamiut Heliport" } }, { "key": "2354", "attributes": { "latitude": 69.2432022095, "longitude": -51.0570983887, "fullName": "Ilulissat Airport" } }, { "key": "2357", "attributes": { "latitude": 66.9513015747, "longitude": -53.7293014526, "fullName": "Sisimiut Airport" } }, { "key": "2362", "attributes": { "latitude": 65.4124984741, "longitude": -52.9393997192, "fullName": "Maniitsoq Airport" } }, { "key": "2389", "attributes": { "latitude": 61.1604995728, "longitude": -45.4259986877, "fullName": "Narsarsuaq Airport" } }, { "key": "2789", "attributes": { "latitude": 64.1299972534, "longitude": -21.9405994415, "fullName": "Reykjavik Airport" } }, { "key": "2361", "attributes": { "latitude": 70.7341995239, "longitude": -52.6962013245, "fullName": "Qaarsut Airport" } }, { "key": "2355", "attributes": { "latitude": 68.7218017578, "longitude": -52.7846984863, "fullName": "Aasiaat Airport" } }, { "key": "2365", "attributes": { "latitude": 72.7901992798, "longitude": -56.1305999756, "fullName": "Upernavik Airport" } }, { "key": "2358", "attributes": { "latitude": 60.715684155299996, "longitude": -46.0299186409, "fullName": "Qaqortoq Heliport" } }, { "key": "2375", "attributes": { "latitude": 60.6197196536, "longitude": -45.9140619636, "fullName": "Eqalugaarsuit Heliport" } }, { "key": "2359", "attributes": { "latitude": 60.141883975899994, "longitude": -45.232976675, "fullName": "Nanortalik Heliport" } }, { "key": "2370", "attributes": { "latitude": 60.46445, "longitude": -45.56917, "fullName": "Alluitsup Paa Heliport" } }, { "key": "2360", "attributes": { "latitude": 60.9172827256, "longitude": -46.059923172, "fullName": "Narsaq Heliport" } }, { "key": "2390", "attributes": { "latitude": 70.6804279261, "longitude": -52.111630439799995, "fullName": "Uummannaq Heliport" } }, { "key": "2371", "attributes": { "latitude": 77.4886016846, "longitude": -69.3887023926, "fullName": "Qaanaaq Airport" } }, { "key": "2386", "attributes": { "latitude": 76.5311965942, "longitude": -68.7032012939, "fullName": "Thule Air Base" } }, { "key": "2400", "attributes": { "latitude": 52.22029877, "longitude": -174.2059937, "fullName": "Atka Airport" } }, { "key": "2401", "attributes": { "latitude": 53.900100708, "longitude": -166.544006348, "fullName": "Unalaska Airport" } }, { "key": "2404", "attributes": { "latitude": 52.94160079956055, "longitude": -168.8489990234375, "fullName": "Nikolski Air Station" } }, { "key": "2411", "attributes": { "latitude": 54.1337704415, "longitude": -165.778895617, "fullName": "Akutan Seaplane Base" } }, { "key": "2402", "attributes": { "latitude": 58.1855010986, "longitude": -157.375, "fullName": "Egegik Airport" } }, { "key": "2403", "attributes": { "latitude": 59.32400131225586, "longitude": -155.90199279785156, "fullName": "Igiugig Airport" } }, { "key": "2410", "attributes": { "latitude": 55.905998, "longitude": -159.162993, "fullName": "Perryville Airport" } }, { "key": "2415", "attributes": { "latitude": 56.95909881591797, "longitude": -158.63299560546875, "fullName": "Port Heiden Airport" } }, { "key": "2418", "attributes": { "latitude": -18.830900192260742, "longitude": -159.76400756835938, "fullName": "Aitutaki Airport" } }, { "key": "2419", "attributes": { "latitude": -19.96780014038086, "longitude": -158.11900329589844, "fullName": "Enua Airport" } }, { "key": "2420", "attributes": { "latitude": -21.895986557006836, "longitude": -157.9066619873047, "fullName": "Mangaia Island Airport" } }, { "key": "2421", "attributes": { "latitude": -19.842500686645508, "longitude": -157.7030029296875, "fullName": "Mitiaro Island Airport" } }, { "key": "2422", "attributes": { "latitude": -20.13610076904297, "longitude": -157.34500122070312, "fullName": "Mauke Airport" } }, { "key": "3213", "attributes": { "latitude": 16.58839988708496, "longitude": -24.284700393676758, "fullName": "Preguiça Airport" } }, { "key": "2458", "attributes": { "latitude": 43.9584007263, "longitude": 145.682998657, "fullName": "Mendeleyevo Airport" } }, { "key": "2459", "attributes": { "latitude": 49.1903, "longitude": 142.082993, "fullName": "Shakhtyorsk Airport" } }, { "key": "2890", "attributes": { "latitude": 31.358400344848633, "longitude": 69.4636001586914, "fullName": "Zhob Airport" } }, { "key": "2492", "attributes": { "latitude": -5.7722201347399995, "longitude": 134.212005615, "fullName": "Rar Gwamar Airport" } }, { "key": "2504", "attributes": { "latitude": 50.102798, "longitude": -5.67056, "fullName": "Land's End Airport" } }, { "key": "3352", "attributes": { "latitude": 64.9308013916, "longitude": 77.81809997559999, "fullName": "Tarko-Sale Airport" } }, { "key": "2520", "attributes": { "latitude": 58.195201873799995, "longitude": -136.347000122, "fullName": "Elfin Cove Seaplane Base" } }, { "key": "2530", "attributes": { "latitude": 49.2943992615, "longitude": -123.111000061, "fullName": "Vancouver Harbour Water Aerodrome" } }, { "key": "2531", "attributes": { "latitude": 48.4249858939, "longitude": -123.388867378, "fullName": "Victoria Harbour Seaplane Base" } }, { "key": "3047", "attributes": { "latitude": -40.0917015076, "longitude": 147.992996216, "fullName": "Flinders Island Airport" } }, { "key": "2568", "attributes": { "latitude": -3.6445200443267822, "longitude": 133.6959991455078, "fullName": "Kaimana Airport" } }, { "key": "2580", "attributes": { "latitude": 11.275300025939941, "longitude": 49.14939880371094, "fullName": "Bosaso Airport" } }, { "key": "2584", "attributes": { "latitude": 49.831699, "longitude": -92.744202, "fullName": "Dryden Regional Airport" } }, { "key": "3333", "attributes": { "latitude": 51.819698333740234, "longitude": -93.97329711914062, "fullName": "Pikangikum Airport" } }, { "key": "3335", "attributes": { "latitude": 52.655799865722656, "longitude": -94.0614013671875, "fullName": "Deer Lake Airport" } }, { "key": "3339", "attributes": { "latitude": 53.06420135498047, "longitude": -93.34439849853516, "fullName": "Sandy Lake Airport" } }, { "key": "3324", "attributes": { "latitude": 51.72719955444336, "longitude": -91.82440185546875, "fullName": "Cat Lake Airport" } }, { "key": "3323", "attributes": { "latitude": 53.52470016479492, "longitude": -88.6427993774414, "fullName": "Kasabonika Airport" } }, { "key": "3318", "attributes": { "latitude": 53.01250076293945, "longitude": -89.85530090332031, "fullName": "Kingfisher Lake Airport" } }, { "key": "3337", "attributes": { "latitude": 53.8911018371582, "longitude": -92.19640350341797, "fullName": "Sachigo Lake Airport" } }, { "key": "3325", "attributes": { "latitude": 53.84920120239258, "longitude": -89.57939910888672, "fullName": "Wapekeka Airport" } }, { "key": "3334", "attributes": { "latitude": 53.81779861450195, "longitude": -89.89689636230469, "fullName": "Big Trout Lake Airport" } }, { "key": "3319", "attributes": { "latitude": 53.44139862060547, "longitude": -91.76280212402344, "fullName": "Muskrat Dam Airport" } }, { "key": "3338", "attributes": { "latitude": 52.943599700927734, "longitude": -91.31279754638672, "fullName": "Round Lake (Weagamow Lake) Airport" } }, { "key": "3321", "attributes": { "latitude": 52.89390182495117, "longitude": -89.28919982910156, "fullName": "Wunnumin Lake Airport" } }, { "key": "3322", "attributes": { "latitude": 53.965599060058594, "longitude": -91.0271987915039, "fullName": "Bearskin Lake Airport" } }, { "key": "3326", "attributes": { "latitude": 56.01890182495117, "longitude": -87.67610168457031, "fullName": "Fort Severn Airport" } }, { "key": "2621", "attributes": { "latitude": 23.083299636799996, "longitude": 113.069999695, "fullName": "Foshan Shadi Airport" } }, { "key": "3113", "attributes": { "latitude": -13.274, "longitude": 35.2663, "fullName": "Lichinga Airport" } }, { "key": "2904", "attributes": { "latitude": -1.332, "longitude": 31.8212, "fullName": "Bukoba Airport" } }, { "key": "3422", "attributes": { "latitude": 16.1131, "longitude": -86.880302, "fullName": "Utila Airport" } }, { "key": "2842", "attributes": { "latitude": 16.4454, "longitude": -85.906601, "fullName": "La Laguna Airport" } }, { "key": "2718", "attributes": { "latitude": 22.375999450699997, "longitude": 31.611700058, "fullName": "Abu Simbel Airport" } }, { "key": "2671", "attributes": { "latitude": 47.529998779296875, "longitude": -122.302001953125, "fullName": "Boeing Field King County International Airport" } }, { "key": "2674", "attributes": { "latitude": 48.7081985474, "longitude": -122.910003662, "fullName": "Orcas Island Airport" } }, { "key": "2672", "attributes": { "latitude": 48.120201110839844, "longitude": -123.5, "fullName": "William R Fairchild International Airport" } }, { "key": "2676", "attributes": { "latitude": 48.5219993591, "longitude": -123.024002075, "fullName": "Friday Harbor Airport" } }, { "key": "2695", "attributes": { "latitude": -16.16390037536621, "longitude": 49.773799896240234, "fullName": "Mananara Nord Airport" } }, { "key": "2698", "attributes": { "latitude": 3.9739999771118164, "longitude": 115.61799621582031, "fullName": "Bakalalan Airport" } }, { "key": "2716", "attributes": { "latitude": 46.376399993896484, "longitude": 96.22109985351562, "fullName": "Altai Airport" } }, { "key": "2732", "attributes": { "latitude": -20.2492008209, "longitude": 169.770996094, "fullName": "Aneityum Airport" } }, { "key": "2733", "attributes": { "latitude": -19.2346, "longitude": 169.6009, "fullName": "Aniwa Airport" } }, { "key": "2737", "attributes": { "latitude": -19.516399383499998, "longitude": 170.231994629, "fullName": "Futuna Airport" } }, { "key": "2755", "attributes": { "latitude": -16.3297, "longitude": 168.3011, "fullName": "Uléi Airport" } }, { "key": "2741", "attributes": { "latitude": -15.3066997528, "longitude": 167.966995239, "fullName": "Longana Airport" } }, { "key": "2743", "attributes": { "latitude": -13.6660003662, "longitude": 167.712005615, "fullName": "Mota Lava Airport" } }, { "key": "2754", "attributes": { "latitude": -13.3280000687, "longitude": 166.638000488, "fullName": "Torres Airstrip" } }, { "key": "2758", "attributes": { "latitude": -14.218099594099998, "longitude": 167.587005615, "fullName": "Gaua Island Airport" } }, { "key": "2748", "attributes": { "latitude": -13.8516998291, "longitude": 167.537002563, "fullName": "Sola Airport" } }, { "key": "2744", "attributes": { "latitude": -15, "longitude": 168.082992554, "fullName": "Maewo-Naone Airport" } }, { "key": "2757", "attributes": { "latitude": -15.411999702500001, "longitude": 167.690994263, "fullName": "Walaha Airport" } }, { "key": "2750", "attributes": { "latitude": -15.4708003998, "longitude": 168.151992798, "fullName": "Sara Airport" } }, { "key": "2786", "attributes": { "latitude": 65.66000366210938, "longitude": -18.07270050048828, "fullName": "Akureyri Airport" } }, { "key": "2787", "attributes": { "latitude": 65.2833023071289, "longitude": -14.401399612426758, "fullName": "Egilsstaðir Airport" } }, { "key": "2788", "attributes": { "latitude": 66.05809783935547, "longitude": -23.135299682617188, "fullName": "Ísafjörður Airport" } }, { "key": "2800", "attributes": { "latitude": -19.079030990600586, "longitude": -169.92559814453125, "fullName": "Niue International Airport" } }, { "key": "3149", "attributes": { "latitude": 8.720120429992676, "longitude": 167.73199462890625, "fullName": "Bucholz Army Air Field" } }, { "key": "2945", "attributes": { "latitude": 51.2117004395, "longitude": -58.6582984924, "fullName": "St Augustin Airport" } }, { "key": "2853", "attributes": { "latitude": 55.913898, "longitude": -61.184399, "fullName": "Natuashish Airport" } }, { "key": "2850", "attributes": { "latitude": 55.448299407958984, "longitude": -60.228599548339844, "fullName": "Hopedale Airport" } }, { "key": "2852", "attributes": { "latitude": 55.076900482177734, "longitude": -59.1864013671875, "fullName": "Makkovik Airport" } }, { "key": "2882", "attributes": { "latitude": 28.878299713100002, "longitude": 64.3998031616, "fullName": "Dalbandin Airport" } }, { "key": "2924", "attributes": { "latitude": -24.346099853515625, "longitude": 139.4600067138672, "fullName": "Bedourie Airport" } }, { "key": "2925", "attributes": { "latitude": -22.913299560546875, "longitude": 139.89999389648438, "fullName": "Boulia Airport" } }, { "key": "2927", "attributes": { "latitude": -25.897499084472656, "longitude": 139.34800720214844, "fullName": "Birdsville Airport" } }, { "key": "2926", "attributes": { "latitude": -17.748600006103516, "longitude": 139.53399658203125, "fullName": "Burketown Airport" } }, { "key": "2931", "attributes": { "latitude": -17.9403, "longitude": 138.822006, "fullName": "Doomadgee Airport" } }, { "key": "2937", "attributes": { "latitude": -16.662500381469727, "longitude": 139.17799377441406, "fullName": "Mornington Island Airport" } }, { "key": "2943", "attributes": { "latitude": -25.41309928894043, "longitude": 142.66700744628906, "fullName": "Windorah Airport" } }, { "key": "2928", "attributes": { "latitude": -28.030000686645508, "longitude": 145.6219940185547, "fullName": "Cunnamulla Airport" } }, { "key": "2939", "attributes": { "latitude": -28.049699783325195, "longitude": 148.59500122070312, "fullName": "St George Airport" } }, { "key": "2944", "attributes": { "latitude": -27.986400604248047, "longitude": 143.81100463867188, "fullName": "Thargomindah Airport" } }, { "key": "2941", "attributes": { "latitude": -26.612199783325195, "longitude": 144.2530059814453, "fullName": "Quilpie Airport" } }, { "key": "3396", "attributes": { "latitude": -20.66830062866211, "longitude": 141.72300720214844, "fullName": "Julia Creek Airport" } }, { "key": "3310", "attributes": { "latitude": 50.8307991027832, "longitude": -58.97560119628906, "fullName": "La Tabatière Airport" } }, { "key": "3307", "attributes": { "latitude": 50.46889877319336, "longitude": -59.63669967651367, "fullName": "Chevery Airport" } }, { "key": "3309", "attributes": { "latitude": 50.1958007812, "longitude": -61.265800476100004, "fullName": "Kegaska Airport" } }, { "key": "2996", "attributes": { "latitude": 25.112199783325195, "longitude": 56.32400131225586, "fullName": "Fujairah International Airport" } }, { "key": "3052", "attributes": { "latitude": 39.671501, "longitude": -31.1136, "fullName": "Corvo Airport" } }, { "key": "3054", "attributes": { "latitude": 39.092201232910156, "longitude": -28.029800415039062, "fullName": "Graciosa Airport" } }, { "key": "3005", "attributes": { "latitude": -8.348349571228027, "longitude": -49.30149841308594, "fullName": "Conceição do Araguaia Airport" } }, { "key": "3423", "attributes": { "latitude": -9.31997013092041, "longitude": -50.32849884033203, "fullName": "Santana do Araguaia Airport" } }, { "key": "3006", "attributes": { "latitude": -11.73960018157959, "longitude": -49.132198333740234, "fullName": "Gurupi Airport" } }, { "key": "3007", "attributes": { "latitude": -13.5491, "longitude": -48.195301, "fullName": "Minaçu Airport" } }, { "key": "3010", "attributes": { "latitude": -10.4647216796875, "longitude": -50.518611907958984, "fullName": "Santa Terezinha Airport" } }, { "key": "3011", "attributes": { "latitude": -11.632399559020996, "longitude": -50.68960189819336, "fullName": "São Félix do Araguaia Airport" } }, { "key": "3012", "attributes": { "latitude": -6.6413, "longitude": -51.9523, "fullName": "São Félix do Xingu Airport" } }, { "key": "3040", "attributes": { "latitude": -14.3114004135, "longitude": -178.065994263, "fullName": "Pointe Vele Airport" } }, { "key": "3049", "attributes": { "latitude": -37.7281, "longitude": 144.901993, "fullName": "Melbourne Essendon Airport" } }, { "key": "3050", "attributes": { "latitude": -38.31809997558594, "longitude": 141.4709930419922, "fullName": "Portland Airport" } }, { "key": "3078", "attributes": { "latitude": -22.612199783325195, "longitude": 17.080400466918945, "fullName": "Eros Airport" } }, { "key": "3081", "attributes": { "latitude": -17.956499099731, "longitude": 19.719400405884, "fullName": "Rundu Airport" } }, { "key": "3080", "attributes": { "latitude": -17.634399, "longitude": 24.176701, "fullName": "Katima Mulilo Airport" } }, { "key": "3083", "attributes": { "latitude": -17.878201, "longitude": 15.9526, "fullName": "Ondangwa Airport" } }, { "key": "3082", "attributes": { "latitude": -28.5847, "longitude": 16.446699, "fullName": "Oranjemund Airport" } }, { "key": "3089", "attributes": { "latitude": 29.94029998779297, "longitude": 34.93579864501953, "fullName": "Ovda International Airport" } }, { "key": "3106", "attributes": { "latitude": -12.019399642899998, "longitude": 135.570999146, "fullName": "Elcho Island Airport" } }, { "key": "3108", "attributes": { "latitude": -12.0944004059, "longitude": 134.893997192, "fullName": "Milingimbi Airport" } }, { "key": "3116", "attributes": { "latitude": -19.720600128173828, "longitude": 163.66099548339844, "fullName": "Île Art - Waala Airport" } }, { "key": "3120", "attributes": { "latitude": -20.546300888061523, "longitude": 164.25599670410156, "fullName": "Koumac Airport" } }, { "key": "3117", "attributes": { "latitude": -22.25830078125, "longitude": 166.47300720214844, "fullName": "Nouméa Magenta Airport" } }, { "key": "3119", "attributes": { "latitude": -21.05430030822754, "longitude": 164.83700561523438, "fullName": "Koné Airport" } }, { "key": "3125", "attributes": { "latitude": -20.640600204467773, "longitude": 166.572998046875, "fullName": "Ouvéa Airport" } }, { "key": "3123", "attributes": { "latitude": -21.096099853515625, "longitude": 167.8040008544922, "fullName": "Tiga Airport" } }, { "key": "3121", "attributes": { "latitude": -20.774799346923828, "longitude": 167.24000549316406, "fullName": "Lifou Airport" } }, { "key": "3118", "attributes": { "latitude": -22.588899612426758, "longitude": 167.45599365234375, "fullName": "Île des Pins Airport" } }, { "key": "3122", "attributes": { "latitude": -21.481700897216797, "longitude": 168.03799438476562, "fullName": "Maré Airport" } }, { "key": "3124", "attributes": { "latitude": -20.790000915527344, "longitude": 165.25900268554688, "fullName": "Touho Airport" } }, { "key": "3148", "attributes": { "latitude": 5.35698, "longitude": 162.957993, "fullName": "Kosrae International Airport" } }, { "key": "3158", "attributes": { "latitude": 6.985099792480469, "longitude": 158.20899963378906, "fullName": "Pohnpei International Airport" } }, { "key": "3166", "attributes": { "latitude": 15.670000076293945, "longitude": 39.37009811401367, "fullName": "Massawa International Airport" } }, { "key": "3169", "attributes": { "latitude": 7.70576, "longitude": 81.678802, "fullName": "Batticaloa Airport" } }, { "key": "3173", "attributes": { "latitude": 8.5385103225708, "longitude": 81.18190002441406, "fullName": "China Bay Airport" } }, { "key": "3196", "attributes": { "latitude": -12.1883001328, "longitude": 96.8339004517, "fullName": "Cocos (Keeling) Islands Airport" } }, { "key": "3240", "attributes": { "latitude": -8.93611, "longitude": -139.552002, "fullName": "Ua Huka Airport" } }, { "key": "3241", "attributes": { "latitude": -9.35167, "longitude": -140.078003, "fullName": "Ua Pou Airport" } }, { "key": "3223", "attributes": { "latitude": -15.663299560546875, "longitude": -146.88499450683594, "fullName": "Kaukura Airport" } }, { "key": "3219", "attributes": { "latitude": -23.07990074157715, "longitude": -134.88999938964844, "fullName": "Totegegie Airport" } }, { "key": "3226", "attributes": { "latitude": -16.583900451660156, "longitude": -143.6580047607422, "fullName": "Makemo Airport" } }, { "key": "3237", "attributes": { "latitude": -14.709500312805176, "longitude": -145.24600219726562, "fullName": "Takapoto Airport" } }, { "key": "3276", "attributes": { "latitude": 27.32990074157715, "longitude": 97.42630004882812, "fullName": "Putao Airport" } }, { "key": "3279", "attributes": { "latitude": 70.60050201416, "longitude": 29.691400527954, "fullName": "Båtsfjord Airport" } }, { "key": "3281", "attributes": { "latitude": 70.871399, "longitude": 29.034201, "fullName": "Berlevåg Airport" } }, { "key": "3290", "attributes": { "latitude": 71.02970123291, "longitude": 27.826700210571, "fullName": "Mehamn Airport" } }, { "key": "3287", "attributes": { "latitude": 71.009696960449, "longitude": 25.983600616455, "fullName": "Valan Airport" } }, { "key": "3311", "attributes": { "latitude": 50.674400329589844, "longitude": -59.38359832763672, "fullName": "Tête-à-la-Baleine Airport" } }, { "key": "3317", "attributes": { "latitude": 52.991100311299995, "longitude": -92.8364028931, "fullName": "Keewaywin Airport" } }, { "key": "3320", "attributes": { "latitude": 52.70859909057617, "longitude": -88.54190063476562, "fullName": "Summer Beaver Airport" } }, { "key": "3329", "attributes": { "latitude": 52.19559860229492, "longitude": -87.93419647216797, "fullName": "Lansdowne House Airport" } }, { "key": "3331", "attributes": { "latitude": 51.6585998535, "longitude": -85.9017028809, "fullName": "Ogoki Post Airport" } }, { "key": "3328", "attributes": { "latitude": 52.1133, "longitude": -94.2556, "fullName": "Poplar Hill Airport" } }, { "key": "3330", "attributes": { "latitude": 52.4900016784668, "longitude": -92.97109985351562, "fullName": "North Spirit Lake Airport" } }, { "key": "3332", "attributes": { "latitude": 51.4463996887207, "longitude": -90.21420288085938, "fullName": "Pickle Lake Airport" } }, { "key": "3353", "attributes": { "latitude": 52.9275016784668, "longitude": -82.43190002441406, "fullName": "Attawapiskat Airport" } }, { "key": "3363", "attributes": { "latitude": 52.282501220703125, "longitude": -81.67780303955078, "fullName": "Kashechewan Airport" } }, { "key": "3361", "attributes": { "latitude": 54.98809814453125, "longitude": -85.44329833984375, "fullName": "Peawanuck Airport" } }, { "key": "3354", "attributes": { "latitude": 52.20140075683594, "longitude": -81.6968994140625, "fullName": "Fort Albany Airport" } }, { "key": "3360", "attributes": { "latitude": 51.69110107421875, "longitude": -76.1355972290039, "fullName": "Nemiscau Airport" } }, { "key": "3362", "attributes": { "latitude": 52.22639846801758, "longitude": -78.52249908447266, "fullName": "Eastmain River Airport" } }, { "key": "3359", "attributes": { "latitude": 53.01060104370117, "longitude": -78.83110046386719, "fullName": "Wemindji Airport" } }, { "key": "3395", "attributes": { "latitude": -29.7593994140625, "longitude": 153.02999877929688, "fullName": "Grafton Airport" } }, { "key": "3405", "attributes": { "latitude": -20.701900482177734, "longitude": 143.11500549316406, "fullName": "Richmond Airport" } } ], "edges": [ { "key": "30317", "source": "0", "target": "693", "attributes": { "weight": 2 } }, { "key": "34922", "source": "0", "target": "352", "attributes": { "weight": 1 } }, { "key": "11325", "source": "0", "target": "1742", "attributes": { "weight": 1 } }, { "key": "31567", "source": "0", "target": "8", "attributes": { "weight": 1 } }, { "key": "31570", "source": "0", "target": "14", "attributes": { "weight": 2 } }, { "key": "31569", "source": "0", "target": "595", "attributes": { "weight": 1 } }, { "key": "23730", "source": "0", "target": "1774", "attributes": { "weight": 2 } }, { "key": "37215", "source": "0", "target": "681", "attributes": { "weight": 1 } }, { "key": "31568", "source": "0", "target": "2505", "attributes": { "weight": 1 } }, { "key": "30572", "source": "0", "target": "682", "attributes": { "weight": 2 } }, { "key": "3600", "source": "0", "target": "1025", "attributes": { "weight": 1 } }, { "key": "29354", "source": "0", "target": "869", "attributes": { "weight": 1 } }, { "key": "30816", "source": "0", "target": "3", "attributes": { "weight": 4 } }, { "key": "31566", "source": "0", "target": "791", "attributes": { "weight": 2 } }, { "key": "32101", "source": "0", "target": "792", "attributes": { "weight": 2 } }, { "key": "2699", "source": "0", "target": "788", "attributes": { "weight": 1 } }, { "key": "0", "source": "0", "target": "7", "attributes": { "weight": 1 } }, { "key": "558", "source": "1", "target": "3", "attributes": { "weight": 2 } }, { "key": "32304", "source": "1", "target": "232", "attributes": { "weight": 1 } }, { "key": "559", "source": "1", "target": "8", "attributes": { "weight": 1 } }, { "key": "31572", "source": "1", "target": "595", "attributes": { "weight": 1 } }, { "key": "16515", "source": "1", "target": "2077", "attributes": { "weight": 1 } }, { "key": "2", "source": "1", "target": "9", "attributes": { "weight": 1 } }, { "key": "1", "source": "1", "target": "7", "attributes": { "weight": 1 } }, { "key": "30826", "source": "2", "target": "693", "attributes": { "weight": 1 } }, { "key": "31583", "source": "2", "target": "595", "attributes": { "weight": 1 } }, { "key": "30824", "source": "2", "target": "3", "attributes": { "weight": 2 } }, { "key": "33745", "source": "2", "target": "244", "attributes": { "weight": 1 } }, { "key": "30827", "source": "2", "target": "792", "attributes": { "weight": 2 } }, { "key": "33744", "source": "2", "target": "89", "attributes": { "weight": 1 } }, { "key": "30293", "source": "2", "target": "1988", "attributes": { "weight": 2 } }, { "key": "30825", "source": "2", "target": "788", "attributes": { "weight": 2 } }, { "key": "31582", "source": "2", "target": "8", "attributes": { "weight": 1 } }, { "key": "30292", "source": "2", "target": "789", "attributes": { "weight": 1 } }, { "key": "33746", "source": "2", "target": "1774", "attributes": { "weight": 1 } }, { "key": "28931", "source": "2", "target": "479", "attributes": { "weight": 2 } }, { "key": "4", "source": "2", "target": "13", "attributes": { "weight": 2 } }, { "key": "3", "source": "2", "target": "7", "attributes": { "weight": 1 } }, { "key": "31585", "source": "3", "target": "474", "attributes": { "weight": 1 } }, { "key": "30856", "source": "3", "target": "2828", "attributes": { "weight": 2 } }, { "key": "30863", "source": "3", "target": "3021", "attributes": { "weight": 3 } }, { "key": "30848", "source": "3", "target": "9", "attributes": { "weight": 3 } }, { "key": "30853", "source": "3", "target": "347", "attributes": { "weight": 2 } }, { "key": "30851", "source": "3", "target": "3017", "attributes": { "weight": 2 } }, { "key": "30876", "source": "3", "target": "25", "attributes": { "weight": 2 } }, { "key": "30835", "source": "3", "target": "17", "attributes": { "weight": 1 } }, { "key": "34950", "source": "3", "target": "3174", "attributes": { "weight": 1 } }, { "key": "34942", "source": "3", "target": "169", "attributes": { "weight": 1 } }, { "key": "30831", "source": "3", "target": "0", "attributes": { "weight": 3 } }, { "key": "34934", "source": "3", "target": "2500", "attributes": { "weight": 1 } }, { "key": "31419", "source": "3", "target": "223", "attributes": { "weight": 1 } }, { "key": "30862", "source": "3", "target": "793", "attributes": { "weight": 1 } }, { "key": "30829", "source": "3", "target": "3013", "attributes": { "weight": 1 } }, { "key": "31463", "source": "3", "target": "1233", "attributes": { "weight": 2 } }, { "key": "3943", "source": "3", "target": "487", "attributes": { "weight": 3 } }, { "key": "15085", "source": "3", "target": "1993", "attributes": { "weight": 1 } }, { "key": "22276", "source": "3", "target": "794", "attributes": { "weight": 1 } }, { "key": "30860", "source": "3", "target": "3020", "attributes": { "weight": 1 } }, { "key": "34957", "source": "3", "target": "1780", "attributes": { "weight": 1 } }, { "key": "34953", "source": "3", "target": "177", "attributes": { "weight": 2 } }, { "key": "30861", "source": "3", "target": "823", "attributes": { "weight": 3 } }, { "key": "24665", "source": "3", "target": "5", "attributes": { "weight": 2 } }, { "key": "30846", "source": "3", "target": "53", "attributes": { "weight": 1 } }, { "key": "34947", "source": "3", "target": "1965", "attributes": { "weight": 1 } }, { "key": "17105", "source": "3", "target": "2104", "attributes": { "weight": 3 } }, { "key": "25912", "source": "3", "target": "1367", "attributes": { "weight": 1 } }, { "key": "2781", "source": "3", "target": "827", "attributes": { "weight": 1 } }, { "key": "34933", "source": "3", "target": "787", "attributes": { "weight": 1 } }, { "key": "30849", "source": "3", "target": "11", "attributes": { "weight": 2 } }, { "key": "26099", "source": "3", "target": "1988", "attributes": { "weight": 5 } }, { "key": "30843", "source": "3", "target": "6", "attributes": { "weight": 3 } }, { "key": "11861", "source": "3", "target": "468", "attributes": { "weight": 1 } }, { "key": "30845", "source": "3", "target": "817", "attributes": { "weight": 3 } }, { "key": "33748", "source": "3", "target": "224", "attributes": { "weight": 1 } }, { "key": "30564", "source": "3", "target": "2103", "attributes": { "weight": 1 } }, { "key": "3942", "source": "3", "target": "483", "attributes": { "weight": 3 } }, { "key": "24412", "source": "3", "target": "2505", "attributes": { "weight": 3 } }, { "key": "30832", "source": "3", "target": "1779", "attributes": { "weight": 2 } }, { "key": "2703", "source": "3", "target": "792", "attributes": { "weight": 2 } }, { "key": "31464", "source": "3", "target": "178", "attributes": { "weight": 2 } }, { "key": "566", "source": "3", "target": "244", "attributes": { "weight": 2 } }, { "key": "2778", "source": "3", "target": "822", "attributes": { "weight": 1 } }, { "key": "30854", "source": "3", "target": "3018", "attributes": { "weight": 1 } }, { "key": "30859", "source": "3", "target": "2612", "attributes": { "weight": 1 } }, { "key": "2782", "source": "3", "target": "829", "attributes": { "weight": 2 } }, { "key": "6661", "source": "3", "target": "189", "attributes": { "weight": 3 } }, { "key": "37407", "source": "3", "target": "3376", "attributes": { "weight": 1 } }, { "key": "563", "source": "3", "target": "4", "attributes": { "weight": 3 } }, { "key": "33334", "source": "3", "target": "135", "attributes": { "weight": 2 } }, { "key": "34941", "source": "3", "target": "650", "attributes": { "weight": 1 } }, { "key": "24036", "source": "3", "target": "1354", "attributes": { "weight": 4 } }, { "key": "3604", "source": "3", "target": "1025", "attributes": { "weight": 2 } }, { "key": "34949", "source": "3", "target": "473", "attributes": { "weight": 1 } }, { "key": "3939", "source": "3", "target": "443", "attributes": { "weight": 1 } }, { "key": "567", "source": "3", "target": "245", "attributes": { "weight": 3 } }, { "key": "33752", "source": "3", "target": "3128", "attributes": { "weight": 1 } }, { "key": "30875", "source": "3", "target": "496", "attributes": { "weight": 1 } }, { "key": "2776", "source": "3", "target": "819", "attributes": { "weight": 1 } }, { "key": "30874", "source": "3", "target": "828", "attributes": { "weight": 1 } }, { "key": "37273", "source": "3", "target": "2506", "attributes": { "weight": 1 } }, { "key": "30847", "source": "3", "target": "470", "attributes": { "weight": 2 } }, { "key": "23746", "source": "3", "target": "2456", "attributes": { "weight": 2 } }, { "key": "2702", "source": "3", "target": "788", "attributes": { "weight": 2 } }, { "key": "34943", "source": "3", "target": "3085", "attributes": { "weight": 1 } }, { "key": "2772", "source": "3", "target": "811", "attributes": { "weight": 1 } }, { "key": "30866", "source": "3", "target": "673", "attributes": { "weight": 1 } }, { "key": "34956", "source": "3", "target": "56", "attributes": { "weight": 1 } }, { "key": "31513", "source": "3", "target": "467", "attributes": { "weight": 1 } }, { "key": "30836", "source": "3", "target": "2", "attributes": { "weight": 2 } }, { "key": "29841", "source": "3", "target": "868", "attributes": { "weight": 2 } }, { "key": "12784", "source": "3", "target": "452", "attributes": { "weight": 2 } }, { "key": "2335", "source": "3", "target": "683", "attributes": { "weight": 1 } }, { "key": "30858", "source": "3", "target": "481", "attributes": { "weight": 1 } }, { "key": "2771", "source": "3", "target": "810", "attributes": { "weight": 2 } }, { "key": "30868", "source": "3", "target": "3023", "attributes": { "weight": 2 } }, { "key": "562", "source": "3", "target": "241", "attributes": { "weight": 3 } }, { "key": "2775", "source": "3", "target": "815", "attributes": { "weight": 2 } }, { "key": "34937", "source": "3", "target": "2122", "attributes": { "weight": 1 } }, { "key": "34945", "source": "3", "target": "1072", "attributes": { "weight": 1 } }, { "key": "30867", "source": "3", "target": "349", "attributes": { "weight": 2 } }, { "key": "10814", "source": "3", "target": "457", "attributes": { "weight": 2 } }, { "key": "34935", "source": "3", "target": "860", "attributes": { "weight": 1 } }, { "key": "16523", "source": "3", "target": "2077", "attributes": { "weight": 1 } }, { "key": "568", "source": "3", "target": "246", "attributes": { "weight": 2 } }, { "key": "6660", "source": "3", "target": "454", "attributes": { "weight": 3 } }, { "key": "17104", "source": "3", "target": "2102", "attributes": { "weight": 1 } }, { "key": "33043", "source": "3", "target": "493", "attributes": { "weight": 1 } }, { "key": "34961", "source": "3", "target": "1967", "attributes": { "weight": 1 } }, { "key": "30873", "source": "3", "target": "1375", "attributes": { "weight": 1 } }, { "key": "34948", "source": "3", "target": "2072", "attributes": { "weight": 1 } }, { "key": "30850", "source": "3", "target": "3016", "attributes": { "weight": 1 } }, { "key": "569", "source": "3", "target": "247", "attributes": { "weight": 5 } }, { "key": "30872", "source": "3", "target": "2208", "attributes": { "weight": 1 } }, { "key": "564", "source": "3", "target": "242", "attributes": { "weight": 2 } }, { "key": "2773", "source": "3", "target": "812", "attributes": { "weight": 1 } }, { "key": "35480", "source": "3", "target": "574", "attributes": { "weight": 1 } }, { "key": "15084", "source": "3", "target": "1992", "attributes": { "weight": 1 } }, { "key": "27234", "source": "3", "target": "52", "attributes": { "weight": 1 } }, { "key": "2381", "source": "3", "target": "694", "attributes": { "weight": 1 } }, { "key": "34958", "source": "3", "target": "2461", "attributes": { "weight": 1 } }, { "key": "31512", "source": "3", "target": "453", "attributes": { "weight": 1 } }, { "key": "34938", "source": "3", "target": "89", "attributes": { "weight": 1 } }, { "key": "30869", "source": "3", "target": "351", "attributes": { "weight": 4 } }, { "key": "27847", "source": "3", "target": "339", "attributes": { "weight": 1 } }, { "key": "30865", "source": "3", "target": "14", "attributes": { "weight": 3 } }, { "key": "2332", "source": "3", "target": "682", "attributes": { "weight": 4 } }, { "key": "6662", "source": "3", "target": "193", "attributes": { "weight": 2 } }, { "key": "30870", "source": "3", "target": "2079", "attributes": { "weight": 1 } }, { "key": "33751", "source": "3", "target": "3127", "attributes": { "weight": 1 } }, { "key": "24035", "source": "3", "target": "429", "attributes": { "weight": 2 } }, { "key": "13933", "source": "3", "target": "164", "attributes": { "weight": 3 } }, { "key": "30359", "source": "3", "target": "1046", "attributes": { "weight": 1 } }, { "key": "23745", "source": "3", "target": "2455", "attributes": { "weight": 1 } }, { "key": "30840", "source": "3", "target": "18", "attributes": { "weight": 2 } }, { "key": "24039", "source": "3", "target": "231", "attributes": { "weight": 2 } }, { "key": "33750", "source": "3", "target": "2513", "attributes": { "weight": 1 } }, { "key": "2333", "source": "3", "target": "8", "attributes": { "weight": 5 } }, { "key": "37272", "source": "3", "target": "3351", "attributes": { "weight": 1 } }, { "key": "34951", "source": "3", "target": "3019", "attributes": { "weight": 1 } }, { "key": "4243", "source": "3", "target": "1136", "attributes": { "weight": 2 } }, { "key": "34939", "source": "3", "target": "2989", "attributes": { "weight": 1 } }, { "key": "37321", "source": "3", "target": "1775", "attributes": { "weight": 1 } }, { "key": "2777", "source": "3", "target": "821", "attributes": { "weight": 1 } }, { "key": "34936", "source": "3", "target": "2831", "attributes": { "weight": 2 } }, { "key": "34900", "source": "3", "target": "1042", "attributes": { "weight": 1 } }, { "key": "14189", "source": "3", "target": "168", "attributes": { "weight": 3 } }, { "key": "34946", "source": "3", "target": "2071", "attributes": { "weight": 1 } }, { "key": "12395", "source": "3", "target": "1368", "attributes": { "weight": 2 } }, { "key": "33335", "source": "3", "target": "472", "attributes": { "weight": 1 } }, { "key": "34955", "source": "3", "target": "311", "attributes": { "weight": 1 } }, { "key": "24037", "source": "3", "target": "130", "attributes": { "weight": 3 } }, { "key": "34954", "source": "3", "target": "2670", "attributes": { "weight": 1 } }, { "key": "3941", "source": "3", "target": "462", "attributes": { "weight": 1 } }, { "key": "29392", "source": "3", "target": "232", "attributes": { "weight": 1 } }, { "key": "30837", "source": "3", "target": "693", "attributes": { "weight": 1 } }, { "key": "34952", "source": "3", "target": "372", "attributes": { "weight": 1 } }, { "key": "18056", "source": "3", "target": "1036", "attributes": { "weight": 2 } }, { "key": "30852", "source": "3", "target": "12", "attributes": { "weight": 3 } }, { "key": "30834", "source": "3", "target": "2086", "attributes": { "weight": 1 } }, { "key": "29840", "source": "3", "target": "1024", "attributes": { "weight": 2 } }, { "key": "2780", "source": "3", "target": "825", "attributes": { "weight": 1 } }, { "key": "34959", "source": "3", "target": "1390", "attributes": { "weight": 1 } }, { "key": "12672", "source": "3", "target": "695", "attributes": { "weight": 2 } }, { "key": "24930", "source": "3", "target": "580", "attributes": { "weight": 2 } }, { "key": "30842", "source": "3", "target": "3015", "attributes": { "weight": 2 } }, { "key": "23244", "source": "3", "target": "495", "attributes": { "weight": 5 } }, { "key": "33753", "source": "3", "target": "2992", "attributes": { "weight": 2 } }, { "key": "17355", "source": "3", "target": "358", "attributes": { "weight": 1 } }, { "key": "23900", "source": "3", "target": "816", "attributes": { "weight": 1 } }, { "key": "3938", "source": "3", "target": "432", "attributes": { "weight": 2 } }, { "key": "35479", "source": "3", "target": "1856", "attributes": { "weight": 1 } }, { "key": "30839", "source": "3", "target": "2646", "attributes": { "weight": 2 } }, { "key": "27235", "source": "3", "target": "57", "attributes": { "weight": 1 } }, { "key": "30857", "source": "3", "target": "1812", "attributes": { "weight": 2 } }, { "key": "30838", "source": "3", "target": "1536", "attributes": { "weight": 1 } }, { "key": "5", "source": "3", "target": "7", "attributes": { "weight": 4 } }, { "key": "6", "source": "3", "target": "10", "attributes": { "weight": 1 } }, { "key": "7", "source": "3", "target": "15", "attributes": { "weight": 1 } }, { "key": "8", "source": "3", "target": "16", "attributes": { "weight": 1 } }, { "key": "34944", "source": "3", "target": "426", "attributes": { "weight": 1 } }, { "key": "561", "source": "3", "target": "1", "attributes": { "weight": 2 } }, { "key": "2779", "source": "3", "target": "824", "attributes": { "weight": 1 } }, { "key": "23122", "source": "3", "target": "789", "attributes": { "weight": 6 } }, { "key": "33749", "source": "3", "target": "3126", "attributes": { "weight": 1 } }, { "key": "30830", "source": "3", "target": "2499", "attributes": { "weight": 1 } }, { "key": "30871", "source": "3", "target": "2507", "attributes": { "weight": 2 } }, { "key": "30703", "source": "3", "target": "889", "attributes": { "weight": 2 } }, { "key": "23742", "source": "3", "target": "2454", "attributes": { "weight": 1 } }, { "key": "30833", "source": "3", "target": "3014", "attributes": { "weight": 2 } }, { "key": "30844", "source": "3", "target": "681", "attributes": { "weight": 2 } }, { "key": "23744", "source": "3", "target": "1774", "attributes": { "weight": 1 } }, { "key": "30864", "source": "3", "target": "3022", "attributes": { "weight": 2 } }, { "key": "2334", "source": "3", "target": "21", "attributes": { "weight": 1 } }, { "key": "30563", "source": "3", "target": "2988", "attributes": { "weight": 1 } }, { "key": "3940", "source": "3", "target": "458", "attributes": { "weight": 3 } }, { "key": "30855", "source": "3", "target": "13", "attributes": { "weight": 3 } }, { "key": "23743", "source": "3", "target": "346", "attributes": { "weight": 2 } }, { "key": "34940", "source": "3", "target": "2501", "attributes": { "weight": 1 } }, { "key": "16522", "source": "3", "target": "2067", "attributes": { "weight": 1 } }, { "key": "30841", "source": "3", "target": "19", "attributes": { "weight": 2 } }, { "key": "34960", "source": "3", "target": "1377", "attributes": { "weight": 1 } }, { "key": "11337", "source": "3", "target": "1742", "attributes": { "weight": 3 } }, { "key": "24038", "source": "3", "target": "471", "attributes": { "weight": 2 } }, { "key": "565", "source": "3", "target": "243", "attributes": { "weight": 2 } }, { "key": "27361", "source": "3", "target": "340", "attributes": { "weight": 2 } }, { "key": "6659", "source": "3", "target": "183", "attributes": { "weight": 2 } }, { "key": "26100", "source": "4", "target": "789", "attributes": { "weight": 1 } }, { "key": "2784", "source": "4", "target": "823", "attributes": { "weight": 1 } }, { "key": "30579", "source": "4", "target": "682", "attributes": { "weight": 1 } }, { "key": "37217", "source": "4", "target": "2646", "attributes": { "weight": 1 } }, { "key": "37371", "source": "4", "target": "8", "attributes": { "weight": 1 } }, { "key": "570", "source": "4", "target": "3", "attributes": { "weight": 3 } }, { "key": "2783", "source": "4", "target": "817", "attributes": { "weight": 1 } }, { "key": "10", "source": "4", "target": "7", "attributes": { "weight": 1 } }, { "key": "9", "source": "4", "target": "6", "attributes": { "weight": 1 } }, { "key": "24672", "source": "5", "target": "454", "attributes": { "weight": 3 } }, { "key": "16528", "source": "5", "target": "2077", "attributes": { "weight": 2 } }, { "key": "8758", "source": "5", "target": "442", "attributes": { "weight": 2 } }, { "key": "24671", "source": "5", "target": "2211", "attributes": { "weight": 1 } }, { "key": "11884", "source": "5", "target": "468", "attributes": { "weight": 2 } }, { "key": "24675", "source": "5", "target": "2513", "attributes": { "weight": 1 } }, { "key": "24684", "source": "5", "target": "1805", "attributes": { "weight": 1 } }, { "key": "24677", "source": "5", "target": "9", "attributes": { "weight": 1 } }, { "key": "37222", "source": "5", "target": "351", "attributes": { "weight": 1 } }, { "key": "26572", "source": "5", "target": "1779", "attributes": { "weight": 2 } }, { "key": "12674", "source": "5", "target": "695", "attributes": { "weight": 2 } }, { "key": "21572", "source": "5", "target": "358", "attributes": { "weight": 2 } }, { "key": "11", "source": "5", "target": "10", "attributes": { "weight": 1 } }, { "key": "24494", "source": "5", "target": "790", "attributes": { "weight": 2 } }, { "key": "24670", "source": "5", "target": "1046", "attributes": { "weight": 2 } }, { "key": "24678", "source": "5", "target": "13", "attributes": { "weight": 2 } }, { "key": "24679", "source": "5", "target": "304", "attributes": { "weight": 1 } }, { "key": "24676", "source": "5", "target": "8", "attributes": { "weight": 3 } }, { "key": "25612", "source": "5", "target": "787", "attributes": { "weight": 1 } }, { "key": "24680", "source": "5", "target": "479", "attributes": { "weight": 2 } }, { "key": "11144", "source": "5", "target": "473", "attributes": { "weight": 2 } }, { "key": "24685", "source": "5", "target": "340", "attributes": { "weight": 1 } }, { "key": "24686", "source": "5", "target": "495", "attributes": { "weight": 2 } }, { "key": "14571", "source": "5", "target": "319", "attributes": { "weight": 1 } }, { "key": "24419", "source": "5", "target": "2505", "attributes": { "weight": 1 } }, { "key": "18426", "source": "5", "target": "422", "attributes": { "weight": 1 } }, { "key": "24673", "source": "5", "target": "791", "attributes": { "weight": 2 } }, { "key": "23754", "source": "5", "target": "1774", "attributes": { "weight": 1 } }, { "key": "24674", "source": "5", "target": "1024", "attributes": { "weight": 3 } }, { "key": "24683", "source": "5", "target": "673", "attributes": { "weight": 2 } }, { "key": "25613", "source": "5", "target": "1780", "attributes": { "weight": 1 } }, { "key": "18427", "source": "5", "target": "595", "attributes": { "weight": 2 } }, { "key": "11342", "source": "5", "target": "1742", "attributes": { "weight": 1 } }, { "key": "35966", "source": "5", "target": "440", "attributes": { "weight": 1 } }, { "key": "24669", "source": "5", "target": "3", "attributes": { "weight": 2 } }, { "key": "24681", "source": "5", "target": "232", "attributes": { "weight": 2 } }, { "key": "11143", "source": "5", "target": "452", "attributes": { "weight": 2 } }, { "key": "24682", "source": "5", "target": "14", "attributes": { "weight": 2 } }, { "key": "37221", "source": "5", "target": "681", "attributes": { "weight": 1 } }, { "key": "23759", "source": "6", "target": "1774", "attributes": { "weight": 2 } }, { "key": "6842", "source": "6", "target": "193", "attributes": { "weight": 2 } }, { "key": "15087", "source": "6", "target": "1992", "attributes": { "weight": 1 } }, { "key": "29889", "source": "6", "target": "1024", "attributes": { "weight": 2 } }, { "key": "12676", "source": "6", "target": "695", "attributes": { "weight": 1 } }, { "key": "11347", "source": "6", "target": "1742", "attributes": { "weight": 1 } }, { "key": "31617", "source": "6", "target": "8", "attributes": { "weight": 1 } }, { "key": "30896", "source": "6", "target": "3", "attributes": { "weight": 3 } }, { "key": "31618", "source": "6", "target": "595", "attributes": { "weight": 1 } }, { "key": "12", "source": "6", "target": "4", "attributes": { "weight": 1 } }, { "key": "32111", "source": "7", "target": "788", "attributes": { "weight": 2 } }, { "key": "32112", "source": "7", "target": "792", "attributes": { "weight": 2 } }, { "key": "21588", "source": "7", "target": "89", "attributes": { "weight": 1 } }, { "key": "25625", "source": "7", "target": "787", "attributes": { "weight": 1 } }, { "key": "23766", "source": "7", "target": "242", "attributes": { "weight": 1 } }, { "key": "22297", "source": "7", "target": "794", "attributes": { "weight": 1 } }, { "key": "37316", "source": "7", "target": "789", "attributes": { "weight": 1 } }, { "key": "23767", "source": "7", "target": "246", "attributes": { "weight": 1 } }, { "key": "3039", "source": "7", "target": "424", "attributes": { "weight": 1 } }, { "key": "32548", "source": "7", "target": "791", "attributes": { "weight": 1 } }, { "key": "31635", "source": "7", "target": "595", "attributes": { "weight": 1 } }, { "key": "37317", "source": "7", "target": "1988", "attributes": { "weight": 1 } }, { "key": "23768", "source": "7", "target": "1774", "attributes": { "weight": 1 } }, { "key": "35131", "source": "7", "target": "351", "attributes": { "weight": 1 } }, { "key": "19", "source": "7", "target": "14", "attributes": { "weight": 1 } }, { "key": "18", "source": "7", "target": "8", "attributes": { "weight": 3 } }, { "key": "17", "source": "7", "target": "4", "attributes": { "weight": 1 } }, { "key": "16", "source": "7", "target": "3", "attributes": { "weight": 4 } }, { "key": "15", "source": "7", "target": "2", "attributes": { "weight": 1 } }, { "key": "14", "source": "7", "target": "1", "attributes": { "weight": 1 } }, { "key": "13", "source": "7", "target": "0", "attributes": { "weight": 1 } }, { "key": "1963", "source": "8", "target": "594", "attributes": { "weight": 2 } }, { "key": "12679", "source": "8", "target": "695", "attributes": { "weight": 1 } }, { "key": "2801", "source": "8", "target": "828", "attributes": { "weight": 1 } }, { "key": "21435", "source": "8", "target": "183", "attributes": { "weight": 3 } }, { "key": "3997", "source": "8", "target": "432", "attributes": { "weight": 1 } }, { "key": "29174", "source": "8", "target": "1750", "attributes": { "weight": 1 } }, { "key": "9963", "source": "8", "target": "494", "attributes": { "weight": 2 } }, { "key": "12397", "source": "8", "target": "1368", "attributes": { "weight": 2 } }, { "key": "25629", "source": "8", "target": "1780", "attributes": { "weight": 2 } }, { "key": "2796", "source": "8", "target": "811", "attributes": { "weight": 1 } }, { "key": "23904", "source": "8", "target": "815", "attributes": { "weight": 1 } }, { "key": "11171", "source": "8", "target": "452", "attributes": { "weight": 3 } }, { "key": "31656", "source": "8", "target": "3021", "attributes": { "weight": 1 } }, { "key": "15090", "source": "8", "target": "350", "attributes": { "weight": 1 } }, { "key": "31644", "source": "8", "target": "6", "attributes": { "weight": 1 } }, { "key": "31642", "source": "8", "target": "789", "attributes": { "weight": 2 } }, { "key": "18323", "source": "8", "target": "2086", "attributes": { "weight": 2 } }, { "key": "31651", "source": "8", "target": "474", "attributes": { "weight": 1 } }, { "key": "31648", "source": "8", "target": "817", "attributes": { "weight": 1 } }, { "key": "31641", "source": "8", "target": "2", "attributes": { "weight": 1 } }, { "key": "2800", "source": "8", "target": "824", "attributes": { "weight": 1 } }, { "key": "31649", "source": "8", "target": "53", "attributes": { "weight": 2 } }, { "key": "29039", "source": "8", "target": "495", "attributes": { "weight": 3 } }, { "key": "10900", "source": "8", "target": "457", "attributes": { "weight": 2 } }, { "key": "23775", "source": "8", "target": "246", "attributes": { "weight": 2 } }, { "key": "24691", "source": "8", "target": "5", "attributes": { "weight": 3 } }, { "key": "1961", "source": "8", "target": "590", "attributes": { "weight": 2 } }, { "key": "33794", "source": "8", "target": "3127", "attributes": { "weight": 1 } }, { "key": "23774", "source": "8", "target": "245", "attributes": { "weight": 2 } }, { "key": "25628", "source": "8", "target": "787", "attributes": { "weight": 2 } }, { "key": "23771", "source": "8", "target": "242", "attributes": { "weight": 1 } }, { "key": "31652", "source": "8", "target": "2505", "attributes": { "weight": 1 } }, { "key": "28941", "source": "8", "target": "2827", "attributes": { "weight": 2 } }, { "key": "24692", "source": "8", "target": "2513", "attributes": { "weight": 1 } }, { "key": "11352", "source": "8", "target": "1742", "attributes": { "weight": 3 } }, { "key": "31662", "source": "8", "target": "351", "attributes": { "weight": 1 } }, { "key": "31657", "source": "8", "target": "595", "attributes": { "weight": 1 } }, { "key": "2797", "source": "8", "target": "814", "attributes": { "weight": 1 } }, { "key": "25920", "source": "8", "target": "1367", "attributes": { "weight": 1 } }, { "key": "26609", "source": "8", "target": "189", "attributes": { "weight": 2 } }, { "key": "21436", "source": "8", "target": "188", "attributes": { "weight": 2 } }, { "key": "29894", "source": "8", "target": "1024", "attributes": { "weight": 4 } }, { "key": "25874", "source": "8", "target": "220", "attributes": { "weight": 2 } }, { "key": "24079", "source": "8", "target": "130", "attributes": { "weight": 3 } }, { "key": "573", "source": "8", "target": "1", "attributes": { "weight": 1 } }, { "key": "23447", "source": "8", "target": "304", "attributes": { "weight": 2 } }, { "key": "23776", "source": "8", "target": "1774", "attributes": { "weight": 2 } }, { "key": "31643", "source": "8", "target": "791", "attributes": { "weight": 2 } }, { "key": "8823", "source": "8", "target": "442", "attributes": { "weight": 2 } }, { "key": "37374", "source": "8", "target": "1390", "attributes": { "weight": 1 } }, { "key": "23769", "source": "8", "target": "2454", "attributes": { "weight": 1 } }, { "key": "2724", "source": "8", "target": "788", "attributes": { "weight": 4 } }, { "key": "37239", "source": "8", "target": "3017", "attributes": { "weight": 1 } }, { "key": "31655", "source": "8", "target": "823", "attributes": { "weight": 2 } }, { "key": "4000", "source": "8", "target": "487", "attributes": { "weight": 2 } }, { "key": "11172", "source": "8", "target": "473", "attributes": { "weight": 3 } }, { "key": "31661", "source": "8", "target": "349", "attributes": { "weight": 2 } }, { "key": "37373", "source": "8", "target": "4", "attributes": { "weight": 1 } }, { "key": "27272", "source": "8", "target": "52", "attributes": { "weight": 1 } }, { "key": "31663", "source": "8", "target": "352", "attributes": { "weight": 2 } }, { "key": "2799", "source": "8", "target": "819", "attributes": { "weight": 1 } }, { "key": "11923", "source": "8", "target": "468", "attributes": { "weight": 1 } }, { "key": "31653", "source": "8", "target": "1988", "attributes": { "weight": 2 } }, { "key": "31646", "source": "8", "target": "681", "attributes": { "weight": 2 } }, { "key": "1962", "source": "8", "target": "592", "attributes": { "weight": 2 } }, { "key": "3999", "source": "8", "target": "483", "attributes": { "weight": 3 } }, { "key": "31658", "source": "8", "target": "14", "attributes": { "weight": 2 } }, { "key": "16847", "source": "8", "target": "70", "attributes": { "weight": 1 } }, { "key": "31660", "source": "8", "target": "56", "attributes": { "weight": 1 } }, { "key": "2340", "source": "8", "target": "3", "attributes": { "weight": 5 } }, { "key": "34998", "source": "8", "target": "372", "attributes": { "weight": 1 } }, { "key": "17111", "source": "8", "target": "2104", "attributes": { "weight": 2 } }, { "key": "31640", "source": "8", "target": "424", "attributes": { "weight": 1 } }, { "key": "23770", "source": "8", "target": "241", "attributes": { "weight": 2 } }, { "key": "31647", "source": "8", "target": "682", "attributes": { "weight": 1 } }, { "key": "31638", "source": "8", "target": "3013", "attributes": { "weight": 1 } }, { "key": "34997", "source": "8", "target": "3174", "attributes": { "weight": 1 } }, { "key": "2725", "source": "8", "target": "792", "attributes": { "weight": 4 } }, { "key": "31645", "source": "8", "target": "2071", "attributes": { "weight": 1 } }, { "key": "33795", "source": "8", "target": "247", "attributes": { "weight": 1 } }, { "key": "15089", "source": "8", "target": "1992", "attributes": { "weight": 1 } }, { "key": "20", "source": "8", "target": "7", "attributes": { "weight": 3 } }, { "key": "21", "source": "8", "target": "10", "attributes": { "weight": 1 } }, { "key": "22", "source": "8", "target": "16", "attributes": { "weight": 1 } }, { "key": "31659", "source": "8", "target": "672", "attributes": { "weight": 1 } }, { "key": "3998", "source": "8", "target": "458", "attributes": { "weight": 2 } }, { "key": "17110", "source": "8", "target": "2102", "attributes": { "weight": 1 } }, { "key": "30328", "source": "8", "target": "693", "attributes": { "weight": 3 } }, { "key": "6855", "source": "8", "target": "193", "attributes": { "weight": 1 } }, { "key": "31639", "source": "8", "target": "0", "attributes": { "weight": 1 } }, { "key": "31328", "source": "8", "target": "59", "attributes": { "weight": 2 } }, { "key": "26608", "source": "8", "target": "454", "attributes": { "weight": 2 } }, { "key": "2341", "source": "8", "target": "13", "attributes": { "weight": 3 } }, { "key": "23772", "source": "8", "target": "243", "attributes": { "weight": 2 } }, { "key": "31650", "source": "8", "target": "9", "attributes": { "weight": 1 } }, { "key": "17480", "source": "8", "target": "358", "attributes": { "weight": 1 } }, { "key": "27273", "source": "8", "target": "57", "attributes": { "weight": 1 } }, { "key": "25744", "source": "8", "target": "278", "attributes": { "weight": 1 } }, { "key": "26915", "source": "8", "target": "497", "attributes": { "weight": 1 } }, { "key": "30605", "source": "8", "target": "25", "attributes": { "weight": 1 } }, { "key": "31654", "source": "8", "target": "2828", "attributes": { "weight": 1 } }, { "key": "27367", "source": "8", "target": "340", "attributes": { "weight": 2 } }, { "key": "28942", "source": "8", "target": "479", "attributes": { "weight": 2 } }, { "key": "30566", "source": "8", "target": "2103", "attributes": { "weight": 1 } }, { "key": "31329", "source": "8", "target": "674", "attributes": { "weight": 1 } }, { "key": "23777", "source": "8", "target": "2456", "attributes": { "weight": 2 } }, { "key": "2798", "source": "8", "target": "818", "attributes": { "weight": 1 } }, { "key": "3630", "source": "8", "target": "1025", "attributes": { "weight": 1 } }, { "key": "23773", "source": "8", "target": "244", "attributes": { "weight": 2 } }, { "key": "2802", "source": "8", "target": "829", "attributes": { "weight": 2 } }, { "key": "30607", "source": "9", "target": "340", "attributes": { "weight": 1 } }, { "key": "33800", "source": "9", "target": "788", "attributes": { "weight": 1 } }, { "key": "31670", "source": "9", "target": "595", "attributes": { "weight": 1 } }, { "key": "2806", "source": "9", "target": "232", "attributes": { "weight": 1 } }, { "key": "31668", "source": "9", "target": "693", "attributes": { "weight": 1 } }, { "key": "35004", "source": "9", "target": "352", "attributes": { "weight": 1 } }, { "key": "33799", "source": "9", "target": "89", "attributes": { "weight": 1 } }, { "key": "31669", "source": "9", "target": "8", "attributes": { "weight": 1 } }, { "key": "31671", "source": "9", "target": "14", "attributes": { "weight": 3 } }, { "key": "23779", "source": "9", "target": "1774", "attributes": { "weight": 2 } }, { "key": "16538", "source": "9", "target": "2077", "attributes": { "weight": 1 } }, { "key": "30904", "source": "9", "target": "3", "attributes": { "weight": 3 } }, { "key": "24693", "source": "9", "target": "5", "attributes": { "weight": 1 } }, { "key": "21592", "source": "9", "target": "358", "attributes": { "weight": 2 } }, { "key": "2383", "source": "9", "target": "694", "attributes": { "weight": 1 } }, { "key": "23", "source": "9", "target": "1", "attributes": { "weight": 1 } }, { "key": "33803", "source": "10", "target": "788", "attributes": { "weight": 1 } }, { "key": "31674", "source": "10", "target": "595", "attributes": { "weight": 1 } }, { "key": "25800", "source": "10", "target": "791", "attributes": { "weight": 1 } }, { "key": "27", "source": "10", "target": "14", "attributes": { "weight": 1 } }, { "key": "26", "source": "10", "target": "8", "attributes": { "weight": 1 } }, { "key": "25", "source": "10", "target": "5", "attributes": { "weight": 1 } }, { "key": "24", "source": "10", "target": "3", "attributes": { "weight": 1 } }, { "key": "24441", "source": "11", "target": "2505", "attributes": { "weight": 1 } }, { "key": "32121", "source": "11", "target": "792", "attributes": { "weight": 1 } }, { "key": "35133", "source": "11", "target": "349", "attributes": { "weight": 1 } }, { "key": "31678", "source": "11", "target": "595", "attributes": { "weight": 1 } }, { "key": "35132", "source": "11", "target": "3085", "attributes": { "weight": 1 } }, { "key": "24442", "source": "11", "target": "13", "attributes": { "weight": 3 } }, { "key": "30906", "source": "11", "target": "3", "attributes": { "weight": 2 } }, { "key": "29", "source": "11", "target": "16", "attributes": { "weight": 2 } }, { "key": "28", "source": "11", "target": "14", "attributes": { "weight": 2 } }, { "key": "31681", "source": "12", "target": "595", "attributes": { "weight": 1 } }, { "key": "37281", "source": "12", "target": "2506", "attributes": { "weight": 1 } }, { "key": "1005", "source": "12", "target": "349", "attributes": { "weight": 2 } }, { "key": "30910", "source": "12", "target": "3", "attributes": { "weight": 3 } }, { "key": "35136", "source": "12", "target": "13", "attributes": { "weight": 1 } }, { "key": "1006", "source": "12", "target": "351", "attributes": { "weight": 2 } }, { "key": "24445", "source": "12", "target": "2505", "attributes": { "weight": 1 } }, { "key": "1007", "source": "12", "target": "352", "attributes": { "weight": 2 } }, { "key": "30612", "source": "12", "target": "682", "attributes": { "weight": 1 } }, { "key": "30", "source": "12", "target": "14", "attributes": { "weight": 2 } }, { "key": "30915", "source": "13", "target": "2067", "attributes": { "weight": 1 } }, { "key": "35014", "source": "13", "target": "352", "attributes": { "weight": 1 } }, { "key": "30918", "source": "13", "target": "693", "attributes": { "weight": 1 } }, { "key": "24461", "source": "13", "target": "2506", "attributes": { "weight": 1 } }, { "key": "35012", "source": "13", "target": "169", "attributes": { "weight": 1 } }, { "key": "2347", "source": "13", "target": "682", "attributes": { "weight": 2 } }, { "key": "32", "source": "13", "target": "14", "attributes": { "weight": 5 } }, { "key": "2350", "source": "13", "target": "683", "attributes": { "weight": 1 } }, { "key": "17112", "source": "13", "target": "2102", "attributes": { "weight": 1 } }, { "key": "14785", "source": "13", "target": "319", "attributes": { "weight": 3 } }, { "key": "30929", "source": "13", "target": "25", "attributes": { "weight": 2 } }, { "key": "30926", "source": "13", "target": "479", "attributes": { "weight": 1 } }, { "key": "30924", "source": "13", "target": "189", "attributes": { "weight": 1 } }, { "key": "30925", "source": "13", "target": "3017", "attributes": { "weight": 3 } }, { "key": "24458", "source": "13", "target": "11", "attributes": { "weight": 3 } }, { "key": "30923", "source": "13", "target": "1965", "attributes": { "weight": 3 } }, { "key": "2726", "source": "13", "target": "788", "attributes": { "weight": 2 } }, { "key": "24460", "source": "13", "target": "2505", "attributes": { "weight": 1 } }, { "key": "24457", "source": "13", "target": "681", "attributes": { "weight": 2 } }, { "key": "57", "source": "13", "target": "19", "attributes": { "weight": 3 } }, { "key": "30920", "source": "13", "target": "454", "attributes": { "weight": 1 } }, { "key": "24694", "source": "13", "target": "5", "attributes": { "weight": 2 } }, { "key": "24459", "source": "13", "target": "303", "attributes": { "weight": 1 } }, { "key": "25632", "source": "13", "target": "1780", "attributes": { "weight": 1 } }, { "key": "30922", "source": "13", "target": "18", "attributes": { "weight": 1 } }, { "key": "30919", "source": "13", "target": "242", "attributes": { "weight": 1 } }, { "key": "35141", "source": "13", "target": "12", "attributes": { "weight": 1 } }, { "key": "30914", "source": "13", "target": "164", "attributes": { "weight": 1 } }, { "key": "30921", "source": "13", "target": "168", "attributes": { "weight": 1 } }, { "key": "30917", "source": "13", "target": "358", "attributes": { "weight": 1 } }, { "key": "31", "source": "13", "target": "2", "attributes": { "weight": 2 } }, { "key": "2349", "source": "13", "target": "21", "attributes": { "weight": 1 } }, { "key": "30913", "source": "13", "target": "787", "attributes": { "weight": 1 } }, { "key": "30928", "source": "13", "target": "1967", "attributes": { "weight": 2 } }, { "key": "2348", "source": "13", "target": "8", "attributes": { "weight": 3 } }, { "key": "23790", "source": "13", "target": "244", "attributes": { "weight": 1 } }, { "key": "56", "source": "13", "target": "17", "attributes": { "weight": 1 } }, { "key": "26112", "source": "13", "target": "789", "attributes": { "weight": 4 } }, { "key": "35013", "source": "13", "target": "426", "attributes": { "weight": 1 } }, { "key": "23458", "source": "13", "target": "304", "attributes": { "weight": 2 } }, { "key": "26113", "source": "13", "target": "1988", "attributes": { "weight": 4 } }, { "key": "23791", "source": "13", "target": "1774", "attributes": { "weight": 2 } }, { "key": "35140", "source": "13", "target": "3085", "attributes": { "weight": 1 } }, { "key": "30927", "source": "13", "target": "2507", "attributes": { "weight": 1 } }, { "key": "29905", "source": "13", "target": "1024", "attributes": { "weight": 1 } }, { "key": "2727", "source": "13", "target": "792", "attributes": { "weight": 3 } }, { "key": "33810", "source": "13", "target": "277", "attributes": { "weight": 1 } }, { "key": "30916", "source": "13", "target": "3", "attributes": { "weight": 3 } }, { "key": "32587", "source": "13", "target": "791", "attributes": { "weight": 1 } }, { "key": "31687", "source": "13", "target": "595", "attributes": { "weight": 1 } }, { "key": "35142", "source": "13", "target": "793", "attributes": { "weight": 1 } }, { "key": "37287", "source": "13", "target": "349", "attributes": { "weight": 1 } }, { "key": "35155", "source": "14", "target": "3085", "attributes": { "weight": 1 } }, { "key": "26116", "source": "14", "target": "1988", "attributes": { "weight": 3 } }, { "key": "37296", "source": "14", "target": "3351", "attributes": { "weight": 1 } }, { "key": "26115", "source": "14", "target": "789", "attributes": { "weight": 4 } }, { "key": "35035", "source": "14", "target": "169", "attributes": { "weight": 1 } }, { "key": "2731", "source": "14", "target": "788", "attributes": { "weight": 3 } }, { "key": "32122", "source": "14", "target": "792", "attributes": { "weight": 2 } }, { "key": "2390", "source": "14", "target": "694", "attributes": { "weight": 1 } }, { "key": "37299", "source": "14", "target": "2506", "attributes": { "weight": 1 } }, { "key": "23905", "source": "14", "target": "815", "attributes": { "weight": 1 } }, { "key": "28983", "source": "14", "target": "479", "attributes": { "weight": 2 } }, { "key": "24698", "source": "14", "target": "5", "attributes": { "weight": 2 } }, { "key": "2820", "source": "14", "target": "825", "attributes": { "weight": 1 } }, { "key": "33827", "source": "14", "target": "340", "attributes": { "weight": 1 } }, { "key": "23799", "source": "14", "target": "244", "attributes": { "weight": 2 } }, { "key": "36", "source": "14", "target": "12", "attributes": { "weight": 2 } }, { "key": "37295", "source": "14", "target": "3350", "attributes": { "weight": 1 } }, { "key": "32604", "source": "14", "target": "791", "attributes": { "weight": 1 } }, { "key": "10932", "source": "14", "target": "457", "attributes": { "weight": 2 } }, { "key": "2819", "source": "14", "target": "351", "attributes": { "weight": 1 } }, { "key": "35034", "source": "14", "target": "164", "attributes": { "weight": 1 } }, { "key": "35037", "source": "14", "target": "2670", "attributes": { "weight": 1 } }, { "key": "17114", "source": "14", "target": "2102", "attributes": { "weight": 1 } }, { "key": "37298", "source": "14", "target": "347", "attributes": { "weight": 1 } }, { "key": "1013", "source": "14", "target": "348", "attributes": { "weight": 1 } }, { "key": "31799", "source": "14", "target": "682", "attributes": { "weight": 2 } }, { "key": "21603", "source": "14", "target": "89", "attributes": { "weight": 2 } }, { "key": "11397", "source": "14", "target": "1742", "attributes": { "weight": 1 } }, { "key": "2821", "source": "14", "target": "826", "attributes": { "weight": 1 } }, { "key": "2817", "source": "14", "target": "820", "attributes": { "weight": 1 } }, { "key": "37297", "source": "14", "target": "3179", "attributes": { "weight": 1 } }, { "key": "35038", "source": "14", "target": "352", "attributes": { "weight": 1 } }, { "key": "35036", "source": "14", "target": "426", "attributes": { "weight": 1 } }, { "key": "33826", "source": "14", "target": "3017", "attributes": { "weight": 2 } }, { "key": "35154", "source": "14", "target": "2646", "attributes": { "weight": 1 } }, { "key": "25640", "source": "14", "target": "1780", "attributes": { "weight": 1 } }, { "key": "30329", "source": "14", "target": "693", "attributes": { "weight": 2 } }, { "key": "33823", "source": "14", "target": "2827", "attributes": { "weight": 1 } }, { "key": "2815", "source": "14", "target": "816", "attributes": { "weight": 1 } }, { "key": "33825", "source": "14", "target": "189", "attributes": { "weight": 1 } }, { "key": "31802", "source": "14", "target": "823", "attributes": { "weight": 1 } }, { "key": "33822", "source": "14", "target": "681", "attributes": { "weight": 2 } }, { "key": "33", "source": "14", "target": "7", "attributes": { "weight": 1 } }, { "key": "33819", "source": "14", "target": "358", "attributes": { "weight": 1 } }, { "key": "33818", "source": "14", "target": "442", "attributes": { "weight": 1 } }, { "key": "30946", "source": "14", "target": "3", "attributes": { "weight": 3 } }, { "key": "22372", "source": "14", "target": "794", "attributes": { "weight": 1 } }, { "key": "30947", "source": "14", "target": "304", "attributes": { "weight": 2 } }, { "key": "34", "source": "14", "target": "10", "attributes": { "weight": 1 } }, { "key": "31803", "source": "14", "target": "595", "attributes": { "weight": 1 } }, { "key": "29909", "source": "14", "target": "1024", "attributes": { "weight": 2 } }, { "key": "33820", "source": "14", "target": "452", "attributes": { "weight": 1 } }, { "key": "35", "source": "14", "target": "11", "attributes": { "weight": 2 } }, { "key": "35153", "source": "14", "target": "345", "attributes": { "weight": 1 } }, { "key": "31798", "source": "14", "target": "0", "attributes": { "weight": 2 } }, { "key": "17115", "source": "14", "target": "2104", "attributes": { "weight": 1 } }, { "key": "31801", "source": "14", "target": "9", "attributes": { "weight": 3 } }, { "key": "35156", "source": "14", "target": "793", "attributes": { "weight": 1 } }, { "key": "31800", "source": "14", "target": "8", "attributes": { "weight": 2 } }, { "key": "2816", "source": "14", "target": "817", "attributes": { "weight": 2 } }, { "key": "37", "source": "14", "target": "13", "attributes": { "weight": 5 } }, { "key": "2818", "source": "14", "target": "594", "attributes": { "weight": 1 } }, { "key": "33824", "source": "14", "target": "53", "attributes": { "weight": 1 } }, { "key": "33821", "source": "14", "target": "277", "attributes": { "weight": 1 } }, { "key": "23800", "source": "14", "target": "1774", "attributes": { "weight": 2 } }, { "key": "38", "source": "15", "target": "3", "attributes": { "weight": 1 } }, { "key": "40", "source": "16", "target": "8", "attributes": { "weight": 1 } }, { "key": "39", "source": "16", "target": "3", "attributes": { "weight": 1 } }, { "key": "41", "source": "16", "target": "11", "attributes": { "weight": 2 } }, { "key": "30575", "source": "17", "target": "352", "attributes": { "weight": 1 } }, { "key": "43", "source": "17", "target": "13", "attributes": { "weight": 1 } }, { "key": "42", "source": "17", "target": "19", "attributes": { "weight": 1 } }, { "key": "30823", "source": "17", "target": "3", "attributes": { "weight": 1 } }, { "key": "30889", "source": "18", "target": "13", "attributes": { "weight": 1 } }, { "key": "24421", "source": "18", "target": "2500", "attributes": { "weight": 1 } }, { "key": "44", "source": "18", "target": "19", "attributes": { "weight": 2 } }, { "key": "23437", "source": "18", "target": "303", "attributes": { "weight": 1 } }, { "key": "37223", "source": "18", "target": "2507", "attributes": { "weight": 1 } }, { "key": "24422", "source": "18", "target": "1965", "attributes": { "weight": 1 } }, { "key": "13151", "source": "18", "target": "1906", "attributes": { "weight": 1 } }, { "key": "30888", "source": "18", "target": "3", "attributes": { "weight": 2 } }, { "key": "31607", "source": "18", "target": "595", "attributes": { "weight": 1 } }, { "key": "30583", "source": "19", "target": "2878", "attributes": { "weight": 1 } }, { "key": "30582", "source": "19", "target": "788", "attributes": { "weight": 2 } }, { "key": "2336", "source": "19", "target": "21", "attributes": { "weight": 1 } }, { "key": "26107", "source": "19", "target": "1988", "attributes": { "weight": 1 } }, { "key": "52", "source": "19", "target": "25", "attributes": { "weight": 3 } }, { "key": "30893", "source": "19", "target": "304", "attributes": { "weight": 1 } }, { "key": "45", "source": "19", "target": "17", "attributes": { "weight": 1 } }, { "key": "30584", "source": "19", "target": "1774", "attributes": { "weight": 1 } }, { "key": "30892", "source": "19", "target": "2501", "attributes": { "weight": 1 } }, { "key": "24426", "source": "19", "target": "2503", "attributes": { "weight": 1 } }, { "key": "31609", "source": "19", "target": "1965", "attributes": { "weight": 1 } }, { "key": "24424", "source": "19", "target": "277", "attributes": { "weight": 2 } }, { "key": "30894", "source": "19", "target": "1967", "attributes": { "weight": 1 } }, { "key": "30890", "source": "19", "target": "164", "attributes": { "weight": 1 } }, { "key": "50", "source": "19", "target": "23", "attributes": { "weight": 2 } }, { "key": "34988", "source": "19", "target": "352", "attributes": { "weight": 1 } }, { "key": "48", "source": "19", "target": "22", "attributes": { "weight": 2 } }, { "key": "51", "source": "19", "target": "24", "attributes": { "weight": 3 } }, { "key": "26106", "source": "19", "target": "789", "attributes": { "weight": 1 } }, { "key": "49", "source": "19", "target": "13", "attributes": { "weight": 3 } }, { "key": "24423", "source": "19", "target": "2499", "attributes": { "weight": 1 } }, { "key": "31610", "source": "19", "target": "595", "attributes": { "weight": 1 } }, { "key": "24425", "source": "19", "target": "681", "attributes": { "weight": 2 } }, { "key": "47", "source": "19", "target": "20", "attributes": { "weight": 1 } }, { "key": "23438", "source": "19", "target": "303", "attributes": { "weight": 1 } }, { "key": "30891", "source": "19", "target": "3", "attributes": { "weight": 2 } }, { "key": "24427", "source": "19", "target": "2507", "attributes": { "weight": 1 } }, { "key": "46", "source": "19", "target": "18", "attributes": { "weight": 2 } }, { "key": "53", "source": "20", "target": "19", "attributes": { "weight": 1 } }, { "key": "2345", "source": "21", "target": "683", "attributes": { "weight": 1 } }, { "key": "2344", "source": "21", "target": "681", "attributes": { "weight": 2 } }, { "key": "2343", "source": "21", "target": "19", "attributes": { "weight": 1 } }, { "key": "2342", "source": "21", "target": "3", "attributes": { "weight": 1 } }, { "key": "54", "source": "21", "target": "13", "attributes": { "weight": 2 } }, { "key": "2346", "source": "21", "target": "25", "attributes": { "weight": 2 } }, { "key": "55", "source": "22", "target": "19", "attributes": { "weight": 2 } }, { "key": "58", "source": "23", "target": "19", "attributes": { "weight": 2 } }, { "key": "2355", "source": "24", "target": "25", "attributes": { "weight": 3 } }, { "key": "59", "source": "24", "target": "19", "attributes": { "weight": 3 } }, { "key": "60", "source": "25", "target": "19", "attributes": { "weight": 3 } }, { "key": "2357", "source": "25", "target": "683", "attributes": { "weight": 2 } }, { "key": "29592", "source": "25", "target": "2875", "attributes": { "weight": 2 } }, { "key": "31824", "source": "25", "target": "595", "attributes": { "weight": 1 } }, { "key": "29596", "source": "25", "target": "2879", "attributes": { "weight": 1 } }, { "key": "30633", "source": "25", "target": "304", "attributes": { "weight": 2 } }, { "key": "30629", "source": "25", "target": "277", "attributes": { "weight": 1 } }, { "key": "30967", "source": "25", "target": "3", "attributes": { "weight": 2 } }, { "key": "29595", "source": "25", "target": "2878", "attributes": { "weight": 2 } }, { "key": "29591", "source": "25", "target": "2874", "attributes": { "weight": 2 } }, { "key": "30632", "source": "25", "target": "8", "attributes": { "weight": 1 } }, { "key": "29594", "source": "25", "target": "2877", "attributes": { "weight": 2 } }, { "key": "30635", "source": "25", "target": "352", "attributes": { "weight": 1 } }, { "key": "30631", "source": "25", "target": "681", "attributes": { "weight": 1 } }, { "key": "30634", "source": "25", "target": "2507", "attributes": { "weight": 1 } }, { "key": "29593", "source": "25", "target": "2876", "attributes": { "weight": 2 } }, { "key": "30628", "source": "25", "target": "2500", "attributes": { "weight": 1 } }, { "key": "2356", "source": "25", "target": "21", "attributes": { "weight": 2 } }, { "key": "24468", "source": "25", "target": "2501", "attributes": { "weight": 1 } }, { "key": "30636", "source": "25", "target": "1967", "attributes": { "weight": 2 } }, { "key": "30968", "source": "25", "target": "13", "attributes": { "weight": 2 } }, { "key": "30630", "source": "25", "target": "1965", "attributes": { "weight": 1 } }, { "key": "2358", "source": "25", "target": "24", "attributes": { "weight": 3 } }, { "key": "61", "source": "26", "target": "30", "attributes": { "weight": 2 } }, { "key": "26208", "source": "27", "target": "1149", "attributes": { "weight": 1 } }, { "key": "24028", "source": "27", "target": "1244", "attributes": { "weight": 3 } }, { "key": "37417", "source": "27", "target": "1099", "attributes": { "weight": 1 } }, { "key": "62", "source": "27", "target": "30", "attributes": { "weight": 4 } }, { "key": "63", "source": "27", "target": "32", "attributes": { "weight": 2 } }, { "key": "64", "source": "28", "target": "30", "attributes": { "weight": 2 } }, { "key": "65", "source": "29", "target": "31", "attributes": { "weight": 2 } }, { "key": "14040", "source": "29", "target": "1031", "attributes": { "weight": 1 } }, { "key": "66", "source": "29", "target": "33", "attributes": { "weight": 2 } }, { "key": "26222", "source": "29", "target": "30", "attributes": { "weight": 2 } }, { "key": "35774", "source": "30", "target": "3266", "attributes": { "weight": 1 } }, { "key": "10706", "source": "30", "target": "407", "attributes": { "weight": 1 } }, { "key": "10695", "source": "30", "target": "43", "attributes": { "weight": 2 } }, { "key": "5475", "source": "30", "target": "338", "attributes": { "weight": 5 } }, { "key": "70", "source": "30", "target": "31", "attributes": { "weight": 3 } }, { "key": "9802", "source": "30", "target": "1349", "attributes": { "weight": 3 } }, { "key": "26229", "source": "30", "target": "29", "attributes": { "weight": 2 } }, { "key": "10696", "source": "30", "target": "778", "attributes": { "weight": 2 } }, { "key": "9799", "source": "30", "target": "1149", "attributes": { "weight": 3 } }, { "key": "10698", "source": "30", "target": "108", "attributes": { "weight": 2 } }, { "key": "10116", "source": "30", "target": "369", "attributes": { "weight": 3 } }, { "key": "26231", "source": "30", "target": "32", "attributes": { "weight": 1 } }, { "key": "26228", "source": "30", "target": "392", "attributes": { "weight": 2 } }, { "key": "26224", "source": "30", "target": "2632", "attributes": { "weight": 1 } }, { "key": "14045", "source": "30", "target": "1031", "attributes": { "weight": 1 } }, { "key": "34500", "source": "30", "target": "1047", "attributes": { "weight": 1 } }, { "key": "35776", "source": "30", "target": "3268", "attributes": { "weight": 1 } }, { "key": "68", "source": "30", "target": "27", "attributes": { "weight": 5 } }, { "key": "26230", "source": "30", "target": "1244", "attributes": { "weight": 1 } }, { "key": "10705", "source": "30", "target": "254", "attributes": { "weight": 1 } }, { "key": "35775", "source": "30", "target": "3267", "attributes": { "weight": 1 } }, { "key": "10694", "source": "30", "target": "603", "attributes": { "weight": 1 } }, { "key": "26235", "source": "30", "target": "2639", "attributes": { "weight": 1 } }, { "key": "26225", "source": "30", "target": "2633", "attributes": { "weight": 2 } }, { "key": "10704", "source": "30", "target": "1314", "attributes": { "weight": 1 } }, { "key": "24890", "source": "30", "target": "1457", "attributes": { "weight": 2 } }, { "key": "7337", "source": "30", "target": "1063", "attributes": { "weight": 1 } }, { "key": "26227", "source": "30", "target": "387", "attributes": { "weight": 1 } }, { "key": "35773", "source": "30", "target": "3265", "attributes": { "weight": 1 } }, { "key": "10697", "source": "30", "target": "44", "attributes": { "weight": 1 } }, { "key": "10703", "source": "30", "target": "607", "attributes": { "weight": 2 } }, { "key": "10707", "source": "30", "target": "48", "attributes": { "weight": 4 } }, { "key": "10700", "source": "30", "target": "45", "attributes": { "weight": 2 } }, { "key": "5473", "source": "30", "target": "368", "attributes": { "weight": 3 } }, { "key": "26232", "source": "30", "target": "2637", "attributes": { "weight": 2 } }, { "key": "5476", "source": "30", "target": "371", "attributes": { "weight": 5 } }, { "key": "5477", "source": "30", "target": "601", "attributes": { "weight": 6 } }, { "key": "26236", "source": "30", "target": "2640", "attributes": { "weight": 1 } }, { "key": "9801", "source": "30", "target": "396", "attributes": { "weight": 3 } }, { "key": "26234", "source": "30", "target": "2638", "attributes": { "weight": 1 } }, { "key": "26226", "source": "30", "target": "872", "attributes": { "weight": 1 } }, { "key": "10693", "source": "30", "target": "598", "attributes": { "weight": 1 } }, { "key": "9800", "source": "30", "target": "1099", "attributes": { "weight": 3 } }, { "key": "24089", "source": "30", "target": "471", "attributes": { "weight": 3 } }, { "key": "34501", "source": "30", "target": "1233", "attributes": { "weight": 1 } }, { "key": "10699", "source": "30", "target": "109", "attributes": { "weight": 4 } }, { "key": "69", "source": "30", "target": "28", "attributes": { "weight": 2 } }, { "key": "26233", "source": "30", "target": "372", "attributes": { "weight": 1 } }, { "key": "5474", "source": "30", "target": "370", "attributes": { "weight": 3 } }, { "key": "11173", "source": "30", "target": "220", "attributes": { "weight": 2 } }, { "key": "67", "source": "30", "target": "26", "attributes": { "weight": 2 } }, { "key": "10702", "source": "30", "target": "605", "attributes": { "weight": 1 } }, { "key": "10701", "source": "30", "target": "782", "attributes": { "weight": 1 } }, { "key": "15960", "source": "30", "target": "195", "attributes": { "weight": 1 } }, { "key": "11612", "source": "30", "target": "199", "attributes": { "weight": 2 } }, { "key": "8834", "source": "30", "target": "442", "attributes": { "weight": 2 } }, { "key": "71", "source": "30", "target": "33", "attributes": { "weight": 3 } }, { "key": "72", "source": "31", "target": "29", "attributes": { "weight": 2 } }, { "key": "74", "source": "31", "target": "33", "attributes": { "weight": 1 } }, { "key": "73", "source": "31", "target": "30", "attributes": { "weight": 3 } }, { "key": "75", "source": "32", "target": "27", "attributes": { "weight": 2 } }, { "key": "26244", "source": "32", "target": "30", "attributes": { "weight": 1 } }, { "key": "78", "source": "33", "target": "31", "attributes": { "weight": 1 } }, { "key": "77", "source": "33", "target": "30", "attributes": { "weight": 3 } }, { "key": "76", "source": "33", "target": "29", "attributes": { "weight": 2 } }, { "key": "17739", "source": "34", "target": "136", "attributes": { "weight": 4 } }, { "key": "16416", "source": "34", "target": "39", "attributes": { "weight": 3 } }, { "key": "8250", "source": "34", "target": "442", "attributes": { "weight": 2 } }, { "key": "17738", "source": "34", "target": "40", "attributes": { "weight": 5 } }, { "key": "23233", "source": "34", "target": "133", "attributes": { "weight": 1 } }, { "key": "26041", "source": "34", "target": "163", "attributes": { "weight": 1 } }, { "key": "32291", "source": "34", "target": "791", "attributes": { "weight": 1 } }, { "key": "17068", "source": "34", "target": "138", "attributes": { "weight": 1 } }, { "key": "16415", "source": "34", "target": "38", "attributes": { "weight": 3 } }, { "key": "17066", "source": "34", "target": "35", "attributes": { "weight": 7 } }, { "key": "10381", "source": "34", "target": "225", "attributes": { "weight": 1 } }, { "key": "79", "source": "34", "target": "37", "attributes": { "weight": 1 } }, { "key": "9154", "source": "34", "target": "430", "attributes": { "weight": 1 } }, { "key": "31480", "source": "34", "target": "1125", "attributes": { "weight": 1 } }, { "key": "17067", "source": "34", "target": "134", "attributes": { "weight": 1 } }, { "key": "80", "source": "34", "target": "42", "attributes": { "weight": 7 } }, { "key": "17737", "source": "34", "target": "132", "attributes": { "weight": 2 } }, { "key": "7204", "source": "34", "target": "223", "attributes": { "weight": 4 } }, { "key": "33023", "source": "34", "target": "493", "attributes": { "weight": 1 } }, { "key": "23232", "source": "34", "target": "36", "attributes": { "weight": 2 } }, { "key": "23234", "source": "34", "target": "1544", "attributes": { "weight": 1 } }, { "key": "17069", "source": "35", "target": "34", "attributes": { "weight": 8 } }, { "key": "26042", "source": "35", "target": "163", "attributes": { "weight": 1 } }, { "key": "28875", "source": "35", "target": "2825", "attributes": { "weight": 2 } }, { "key": "23235", "source": "35", "target": "38", "attributes": { "weight": 1 } }, { "key": "81", "source": "35", "target": "42", "attributes": { "weight": 1 } }, { "key": "10947", "source": "35", "target": "452", "attributes": { "weight": 1 } }, { "key": "27797", "source": "35", "target": "339", "attributes": { "weight": 1 } }, { "key": "26384", "source": "35", "target": "454", "attributes": { "weight": 1 } }, { "key": "282", "source": "35", "target": "138", "attributes": { "weight": 4 } }, { "key": "10382", "source": "35", "target": "225", "attributes": { "weight": 1 } }, { "key": "17070", "source": "35", "target": "134", "attributes": { "weight": 3 } }, { "key": "281", "source": "35", "target": "136", "attributes": { "weight": 4 } }, { "key": "17746", "source": "35", "target": "40", "attributes": { "weight": 1 } }, { "key": "280", "source": "35", "target": "39", "attributes": { "weight": 3 } }, { "key": "30969", "source": "35", "target": "638", "attributes": { "weight": 1 } }, { "key": "15430", "source": "35", "target": "370", "attributes": { "weight": 1 } }, { "key": "35734", "source": "35", "target": "1516", "attributes": { "weight": 1 } }, { "key": "17745", "source": "35", "target": "1380", "attributes": { "weight": 1 } }, { "key": "1778", "source": "35", "target": "554", "attributes": { "weight": 4 } }, { "key": "27508", "source": "35", "target": "1520", "attributes": { "weight": 1 } }, { "key": "32861", "source": "35", "target": "470", "attributes": { "weight": 1 } }, { "key": "10791", "source": "35", "target": "1732", "attributes": { "weight": 3 } }, { "key": "32048", "source": "35", "target": "1816", "attributes": { "weight": 1 } }, { "key": "17747", "source": "35", "target": "2176", "attributes": { "weight": 1 } }, { "key": "32292", "source": "35", "target": "791", "attributes": { "weight": 1 } }, { "key": "17325", "source": "35", "target": "358", "attributes": { "weight": 1 } }, { "key": "4263", "source": "35", "target": "468", "attributes": { "weight": 2 } }, { "key": "28874", "source": "35", "target": "2824", "attributes": { "weight": 1 } }, { "key": "25803", "source": "35", "target": "220", "attributes": { "weight": 1 } }, { "key": "23909", "source": "35", "target": "471", "attributes": { "weight": 1 } }, { "key": "26045", "source": "36", "target": "163", "attributes": { "weight": 1 } }, { "key": "15416", "source": "36", "target": "132", "attributes": { "weight": 2 } }, { "key": "8460", "source": "36", "target": "442", "attributes": { "weight": 1 } }, { "key": "82", "source": "36", "target": "34", "attributes": { "weight": 3 } }, { "key": "33027", "source": "36", "target": "493", "attributes": { "weight": 1 } }, { "key": "15417", "source": "36", "target": "38", "attributes": { "weight": 3 } }, { "key": "32862", "source": "36", "target": "470", "attributes": { "weight": 1 } }, { "key": "9228", "source": "36", "target": "430", "attributes": { "weight": 1 } }, { "key": "84", "source": "36", "target": "42", "attributes": { "weight": 3 } }, { "key": "17822", "source": "36", "target": "40", "attributes": { "weight": 1 } }, { "key": "26178", "source": "36", "target": "1556", "attributes": { "weight": 1 } }, { "key": "10398", "source": "36", "target": "225", "attributes": { "weight": 1 } }, { "key": "37481", "source": "36", "target": "1125", "attributes": { "weight": 1 } }, { "key": "17821", "source": "36", "target": "1380", "attributes": { "weight": 2 } }, { "key": "83", "source": "36", "target": "39", "attributes": { "weight": 5 } }, { "key": "15418", "source": "36", "target": "136", "attributes": { "weight": 1 } }, { "key": "85", "source": "37", "target": "34", "attributes": { "weight": 1 } }, { "key": "86", "source": "37", "target": "42", "attributes": { "weight": 1 } }, { "key": "15420", "source": "38", "target": "36", "attributes": { "weight": 3 } }, { "key": "7241", "source": "38", "target": "34", "attributes": { "weight": 8 } }, { "key": "16418", "source": "38", "target": "133", "attributes": { "weight": 4 } }, { "key": "17840", "source": "38", "target": "41", "attributes": { "weight": 1 } }, { "key": "16417", "source": "38", "target": "39", "attributes": { "weight": 2 } }, { "key": "23237", "source": "38", "target": "35", "attributes": { "weight": 1 } }, { "key": "17838", "source": "38", "target": "1516", "attributes": { "weight": 1 } }, { "key": "26047", "source": "38", "target": "163", "attributes": { "weight": 1 } }, { "key": "87", "source": "38", "target": "40", "attributes": { "weight": 3 } }, { "key": "88", "source": "38", "target": "42", "attributes": { "weight": 1 } }, { "key": "26181", "source": "38", "target": "1524", "attributes": { "weight": 3 } }, { "key": "12871", "source": "38", "target": "1893", "attributes": { "weight": 1 } }, { "key": "15421", "source": "38", "target": "1544", "attributes": { "weight": 3 } }, { "key": "12872", "source": "38", "target": "1565", "attributes": { "weight": 1 } }, { "key": "10476", "source": "38", "target": "136", "attributes": { "weight": 2 } }, { "key": "8664", "source": "38", "target": "442", "attributes": { "weight": 1 } }, { "key": "17839", "source": "38", "target": "1380", "attributes": { "weight": 1 } }, { "key": "26182", "source": "38", "target": "1559", "attributes": { "weight": 4 } }, { "key": "17354", "source": "39", "target": "358", "attributes": { "weight": 1 } }, { "key": "24033", "source": "39", "target": "130", "attributes": { "weight": 2 } }, { "key": "28657", "source": "39", "target": "1711", "attributes": { "weight": 1 } }, { "key": "288", "source": "39", "target": "35", "attributes": { "weight": 3 } }, { "key": "7265", "source": "39", "target": "132", "attributes": { "weight": 8 } }, { "key": "90", "source": "39", "target": "42", "attributes": { "weight": 1 } }, { "key": "10478", "source": "39", "target": "225", "attributes": { "weight": 1 } }, { "key": "291", "source": "39", "target": "134", "attributes": { "weight": 2 } }, { "key": "32337", "source": "39", "target": "791", "attributes": { "weight": 1 } }, { "key": "7264", "source": "39", "target": "223", "attributes": { "weight": 5 } }, { "key": "31481", "source": "39", "target": "1125", "attributes": { "weight": 1 } }, { "key": "290", "source": "39", "target": "133", "attributes": { "weight": 1 } }, { "key": "30987", "source": "39", "target": "1232", "attributes": { "weight": 3 } }, { "key": "30988", "source": "39", "target": "638", "attributes": { "weight": 3 } }, { "key": "16423", "source": "39", "target": "1710", "attributes": { "weight": 2 } }, { "key": "8682", "source": "39", "target": "442", "attributes": { "weight": 2 } }, { "key": "293", "source": "39", "target": "137", "attributes": { "weight": 2 } }, { "key": "16420", "source": "39", "target": "34", "attributes": { "weight": 3 } }, { "key": "16421", "source": "39", "target": "38", "attributes": { "weight": 2 } }, { "key": "9261", "source": "39", "target": "430", "attributes": { "weight": 1 } }, { "key": "16422", "source": "39", "target": "1556", "attributes": { "weight": 2 } }, { "key": "4935", "source": "39", "target": "54", "attributes": { "weight": 3 } }, { "key": "89", "source": "39", "target": "36", "attributes": { "weight": 5 } }, { "key": "33042", "source": "39", "target": "493", "attributes": { "weight": 1 } }, { "key": "24034", "source": "39", "target": "471", "attributes": { "weight": 2 } }, { "key": "15647", "source": "39", "target": "370", "attributes": { "weight": 1 } }, { "key": "292", "source": "39", "target": "136", "attributes": { "weight": 1 } }, { "key": "289", "source": "39", "target": "131", "attributes": { "weight": 4 } }, { "key": "16424", "source": "39", "target": "2053", "attributes": { "weight": 1 } }, { "key": "24340", "source": "39", "target": "473", "attributes": { "weight": 1 } }, { "key": "32871", "source": "39", "target": "470", "attributes": { "weight": 1 } }, { "key": "17921", "source": "40", "target": "38", "attributes": { "weight": 2 } }, { "key": "17916", "source": "40", "target": "34", "attributes": { "weight": 2 } }, { "key": "17922", "source": "40", "target": "133", "attributes": { "weight": 1 } }, { "key": "91", "source": "40", "target": "42", "attributes": { "weight": 2 } }, { "key": "17920", "source": "40", "target": "132", "attributes": { "weight": 1 } }, { "key": "17917", "source": "40", "target": "1516", "attributes": { "weight": 1 } }, { "key": "10501", "source": "40", "target": "35", "attributes": { "weight": 2 } }, { "key": "17923", "source": "40", "target": "108", "attributes": { "weight": 1 } }, { "key": "26613", "source": "40", "target": "223", "attributes": { "weight": 3 } }, { "key": "8825", "source": "40", "target": "442", "attributes": { "weight": 1 } }, { "key": "17924", "source": "40", "target": "1544", "attributes": { "weight": 1 } }, { "key": "17919", "source": "40", "target": "36", "attributes": { "weight": 1 } }, { "key": "17925", "source": "40", "target": "136", "attributes": { "weight": 1 } }, { "key": "17918", "source": "40", "target": "1380", "attributes": { "weight": 1 } }, { "key": "10522", "source": "41", "target": "225", "attributes": { "weight": 1 } }, { "key": "17959", "source": "41", "target": "38", "attributes": { "weight": 1 } }, { "key": "17958", "source": "41", "target": "1380", "attributes": { "weight": 1 } }, { "key": "8958", "source": "41", "target": "442", "attributes": { "weight": 3 } }, { "key": "17957", "source": "41", "target": "1516", "attributes": { "weight": 1 } }, { "key": "92", "source": "41", "target": "42", "attributes": { "weight": 8 } }, { "key": "17960", "source": "41", "target": "1555", "attributes": { "weight": 1 } }, { "key": "9319", "source": "41", "target": "430", "attributes": { "weight": 1 } }, { "key": "100", "source": "42", "target": "41", "attributes": { "weight": 7 } }, { "key": "7371", "source": "42", "target": "223", "attributes": { "weight": 4 } }, { "key": "94", "source": "42", "target": "35", "attributes": { "weight": 1 } }, { "key": "97", "source": "42", "target": "38", "attributes": { "weight": 1 } }, { "key": "93", "source": "42", "target": "34", "attributes": { "weight": 7 } }, { "key": "99", "source": "42", "target": "40", "attributes": { "weight": 2 } }, { "key": "95", "source": "42", "target": "36", "attributes": { "weight": 3 } }, { "key": "96", "source": "42", "target": "37", "attributes": { "weight": 1 } }, { "key": "9352", "source": "42", "target": "430", "attributes": { "weight": 1 } }, { "key": "9009", "source": "42", "target": "442", "attributes": { "weight": 1 } }, { "key": "98", "source": "42", "target": "39", "attributes": { "weight": 1 } }, { "key": "33071", "source": "42", "target": "493", "attributes": { "weight": 1 } }, { "key": "10537", "source": "42", "target": "225", "attributes": { "weight": 1 } }, { "key": "17965", "source": "42", "target": "1380", "attributes": { "weight": 1 } }, { "key": "32586", "source": "42", "target": "791", "attributes": { "weight": 1 } }, { "key": "10634", "source": "43", "target": "372", "attributes": { "weight": 2 } }, { "key": "4383", "source": "43", "target": "371", "attributes": { "weight": 5 } }, { "key": "10642", "source": "43", "target": "1731", "attributes": { "weight": 2 } }, { "key": "10606", "source": "43", "target": "1719", "attributes": { "weight": 2 } }, { "key": "10599", "source": "43", "target": "1715", "attributes": { "weight": 1 } }, { "key": "10633", "source": "43", "target": "1031", "attributes": { "weight": 2 } }, { "key": "10629", "source": "43", "target": "1724", "attributes": { "weight": 1 } }, { "key": "10626", "source": "43", "target": "208", "attributes": { "weight": 3 } }, { "key": "10624", "source": "43", "target": "1099", "attributes": { "weight": 1 } }, { "key": "10630", "source": "43", "target": "1725", "attributes": { "weight": 2 } }, { "key": "10636", "source": "43", "target": "1314", "attributes": { "weight": 1 } }, { "key": "10635", "source": "43", "target": "1728", "attributes": { "weight": 1 } }, { "key": "10641", "source": "43", "target": "1729", "attributes": { "weight": 3 } }, { "key": "10602", "source": "43", "target": "1717", "attributes": { "weight": 3 } }, { "key": "10621", "source": "43", "target": "370", "attributes": { "weight": 4 } }, { "key": "10604", "source": "43", "target": "44", "attributes": { "weight": 3 } }, { "key": "10600", "source": "43", "target": "1716", "attributes": { "weight": 3 } }, { "key": "3546", "source": "43", "target": "1020", "attributes": { "weight": 3 } }, { "key": "10620", "source": "43", "target": "1722", "attributes": { "weight": 2 } }, { "key": "10640", "source": "43", "target": "961", "attributes": { "weight": 1 } }, { "key": "3541", "source": "43", "target": "1013", "attributes": { "weight": 2 } }, { "key": "3545", "source": "43", "target": "1019", "attributes": { "weight": 1 } }, { "key": "3540", "source": "43", "target": "1012", "attributes": { "weight": 2 } }, { "key": "10639", "source": "43", "target": "407", "attributes": { "weight": 1 } }, { "key": "102", "source": "43", "target": "48", "attributes": { "weight": 4 } }, { "key": "3532", "source": "43", "target": "997", "attributes": { "weight": 2 } }, { "key": "10598", "source": "43", "target": "236", "attributes": { "weight": 2 } }, { "key": "10611", "source": "43", "target": "1721", "attributes": { "weight": 2 } }, { "key": "10061", "source": "43", "target": "369", "attributes": { "weight": 2 } }, { "key": "10631", "source": "43", "target": "1726", "attributes": { "weight": 3 } }, { "key": "10603", "source": "43", "target": "778", "attributes": { "weight": 4 } }, { "key": "10613", "source": "43", "target": "454", "attributes": { "weight": 2 } }, { "key": "10609", "source": "43", "target": "1720", "attributes": { "weight": 1 } }, { "key": "10608", "source": "43", "target": "238", "attributes": { "weight": 1 } }, { "key": "3547", "source": "43", "target": "1021", "attributes": { "weight": 1 } }, { "key": "1083", "source": "43", "target": "396", "attributes": { "weight": 4 } }, { "key": "10610", "source": "43", "target": "1047", "attributes": { "weight": 2 } }, { "key": "10616", "source": "43", "target": "391", "attributes": { "weight": 1 } }, { "key": "4382", "source": "43", "target": "368", "attributes": { "weight": 3 } }, { "key": "8470", "source": "43", "target": "442", "attributes": { "weight": 1 } }, { "key": "3543", "source": "43", "target": "1016", "attributes": { "weight": 2 } }, { "key": "10632", "source": "43", "target": "1727", "attributes": { "weight": 1 } }, { "key": "10612", "source": "43", "target": "199", "attributes": { "weight": 4 } }, { "key": "10617", "source": "43", "target": "392", "attributes": { "weight": 3 } }, { "key": "10607", "source": "43", "target": "387", "attributes": { "weight": 2 } }, { "key": "3530", "source": "43", "target": "994", "attributes": { "weight": 1 } }, { "key": "7221", "source": "43", "target": "1063", "attributes": { "weight": 2 } }, { "key": "101", "source": "43", "target": "45", "attributes": { "weight": 2 } }, { "key": "10638", "source": "43", "target": "254", "attributes": { "weight": 1 } }, { "key": "3537", "source": "43", "target": "1008", "attributes": { "weight": 1 } }, { "key": "3536", "source": "43", "target": "1002", "attributes": { "weight": 1 } }, { "key": "10618", "source": "43", "target": "1232", "attributes": { "weight": 2 } }, { "key": "10614", "source": "43", "target": "108", "attributes": { "weight": 1 } }, { "key": "15539", "source": "43", "target": "195", "attributes": { "weight": 1 } }, { "key": "10615", "source": "43", "target": "109", "attributes": { "weight": 3 } }, { "key": "10601", "source": "43", "target": "130", "attributes": { "weight": 1 } }, { "key": "3534", "source": "43", "target": "999", "attributes": { "weight": 1 } }, { "key": "3542", "source": "43", "target": "1015", "attributes": { "weight": 1 } }, { "key": "10627", "source": "43", "target": "782", "attributes": { "weight": 3 } }, { "key": "3539", "source": "43", "target": "1011", "attributes": { "weight": 2 } }, { "key": "10597", "source": "43", "target": "993", "attributes": { "weight": 3 } }, { "key": "3535", "source": "43", "target": "1000", "attributes": { "weight": 2 } }, { "key": "10623", "source": "43", "target": "30", "attributes": { "weight": 2 } }, { "key": "10622", "source": "43", "target": "1004", "attributes": { "weight": 3 } }, { "key": "3531", "source": "43", "target": "995", "attributes": { "weight": 2 } }, { "key": "3533", "source": "43", "target": "998", "attributes": { "weight": 2 } }, { "key": "10619", "source": "43", "target": "1233", "attributes": { "weight": 2 } }, { "key": "3538", "source": "43", "target": "1010", "attributes": { "weight": 2 } }, { "key": "10637", "source": "43", "target": "601", "attributes": { "weight": 2 } }, { "key": "3544", "source": "43", "target": "1017", "attributes": { "weight": 1 } }, { "key": "10605", "source": "43", "target": "1718", "attributes": { "weight": 3 } }, { "key": "10628", "source": "43", "target": "1723", "attributes": { "weight": 2 } }, { "key": "10625", "source": "43", "target": "471", "attributes": { "weight": 2 } }, { "key": "3548", "source": "43", "target": "1022", "attributes": { "weight": 3 } }, { "key": "10651", "source": "44", "target": "782", "attributes": { "weight": 1 } }, { "key": "103", "source": "44", "target": "45", "attributes": { "weight": 2 } }, { "key": "3553", "source": "44", "target": "1020", "attributes": { "weight": 1 } }, { "key": "10646", "source": "44", "target": "1716", "attributes": { "weight": 1 } }, { "key": "10649", "source": "44", "target": "30", "attributes": { "weight": 1 } }, { "key": "10653", "source": "44", "target": "1314", "attributes": { "weight": 1 } }, { "key": "10650", "source": "44", "target": "471", "attributes": { "weight": 1 } }, { "key": "10647", "source": "44", "target": "43", "attributes": { "weight": 6 } }, { "key": "3551", "source": "44", "target": "1001", "attributes": { "weight": 2 } }, { "key": "14021", "source": "44", "target": "993", "attributes": { "weight": 2 } }, { "key": "17703", "source": "44", "target": "2154", "attributes": { "weight": 1 } }, { "key": "10648", "source": "44", "target": "1718", "attributes": { "weight": 1 } }, { "key": "14022", "source": "44", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10654", "source": "44", "target": "1730", "attributes": { "weight": 1 } }, { "key": "3552", "source": "44", "target": "1013", "attributes": { "weight": 1 } }, { "key": "10652", "source": "44", "target": "1012", "attributes": { "weight": 1 } }, { "key": "26203", "source": "44", "target": "48", "attributes": { "weight": 1 } }, { "key": "4483", "source": "44", "target": "371", "attributes": { "weight": 5 } }, { "key": "10679", "source": "45", "target": "1314", "attributes": { "weight": 1 } }, { "key": "5087", "source": "45", "target": "371", "attributes": { "weight": 2 } }, { "key": "26213", "source": "45", "target": "778", "attributes": { "weight": 1 } }, { "key": "26215", "source": "45", "target": "601", "attributes": { "weight": 1 } }, { "key": "14035", "source": "45", "target": "1031", "attributes": { "weight": 2 } }, { "key": "104", "source": "45", "target": "43", "attributes": { "weight": 2 } }, { "key": "5086", "source": "45", "target": "370", "attributes": { "weight": 2 } }, { "key": "17713", "source": "45", "target": "2154", "attributes": { "weight": 1 } }, { "key": "17712", "source": "45", "target": "2153", "attributes": { "weight": 1 } }, { "key": "17716", "source": "45", "target": "2159", "attributes": { "weight": 1 } }, { "key": "8759", "source": "45", "target": "220", "attributes": { "weight": 2 } }, { "key": "107", "source": "45", "target": "48", "attributes": { "weight": 5 } }, { "key": "17715", "source": "45", "target": "2158", "attributes": { "weight": 1 } }, { "key": "17714", "source": "45", "target": "2156", "attributes": { "weight": 2 } }, { "key": "26214", "source": "45", "target": "369", "attributes": { "weight": 1 } }, { "key": "10678", "source": "45", "target": "30", "attributes": { "weight": 2 } }, { "key": "24064", "source": "45", "target": "471", "attributes": { "weight": 2 } }, { "key": "106", "source": "45", "target": "47", "attributes": { "weight": 4 } }, { "key": "105", "source": "45", "target": "44", "attributes": { "weight": 2 } }, { "key": "17724", "source": "46", "target": "2159", "attributes": { "weight": 1 } }, { "key": "108", "source": "46", "target": "48", "attributes": { "weight": 2 } }, { "key": "109", "source": "47", "target": "45", "attributes": { "weight": 4 } }, { "key": "34836", "source": "48", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9931", "source": "48", "target": "396", "attributes": { "weight": 1 } }, { "key": "17728", "source": "48", "target": "2155", "attributes": { "weight": 1 } }, { "key": "110", "source": "48", "target": "43", "attributes": { "weight": 4 } }, { "key": "14127", "source": "48", "target": "1031", "attributes": { "weight": 1 } }, { "key": "112", "source": "48", "target": "46", "attributes": { "weight": 2 } }, { "key": "24259", "source": "48", "target": "471", "attributes": { "weight": 2 } }, { "key": "17726", "source": "48", "target": "2153", "attributes": { "weight": 2 } }, { "key": "17729", "source": "48", "target": "109", "attributes": { "weight": 1 } }, { "key": "10787", "source": "48", "target": "30", "attributes": { "weight": 3 } }, { "key": "17734", "source": "48", "target": "3415", "attributes": { "weight": 1 } }, { "key": "17733", "source": "48", "target": "2160", "attributes": { "weight": 1 } }, { "key": "17727", "source": "48", "target": "2154", "attributes": { "weight": 1 } }, { "key": "17730", "source": "48", "target": "392", "attributes": { "weight": 1 } }, { "key": "16392", "source": "48", "target": "195", "attributes": { "weight": 1 } }, { "key": "17732", "source": "48", "target": "2158", "attributes": { "weight": 1 } }, { "key": "111", "source": "48", "target": "45", "attributes": { "weight": 8 } }, { "key": "26272", "source": "48", "target": "44", "attributes": { "weight": 1 } }, { "key": "6489", "source": "48", "target": "371", "attributes": { "weight": 2 } }, { "key": "10788", "source": "48", "target": "1314", "attributes": { "weight": 1 } }, { "key": "26273", "source": "48", "target": "782", "attributes": { "weight": 1 } }, { "key": "17735", "source": "48", "target": "2162", "attributes": { "weight": 1 } }, { "key": "33198", "source": "49", "target": "52", "attributes": { "weight": 1 } }, { "key": "11006", "source": "49", "target": "469", "attributes": { "weight": 1 } }, { "key": "33197", "source": "49", "target": "425", "attributes": { "weight": 1 } }, { "key": "33199", "source": "49", "target": "473", "attributes": { "weight": 1 } }, { "key": "113", "source": "49", "target": "57", "attributes": { "weight": 3 } }, { "key": "19285", "source": "49", "target": "492", "attributes": { "weight": 1 } }, { "key": "19284", "source": "49", "target": "489", "attributes": { "weight": 1 } }, { "key": "19276", "source": "49", "target": "221", "attributes": { "weight": 1 } }, { "key": "19286", "source": "49", "target": "235", "attributes": { "weight": 1 } }, { "key": "19277", "source": "49", "target": "222", "attributes": { "weight": 1 } }, { "key": "19282", "source": "49", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19283", "source": "49", "target": "480", "attributes": { "weight": 1 } }, { "key": "6610", "source": "49", "target": "189", "attributes": { "weight": 2 } }, { "key": "19278", "source": "49", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19280", "source": "49", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19281", "source": "49", "target": "2248", "attributes": { "weight": 1 } }, { "key": "19279", "source": "49", "target": "2244", "attributes": { "weight": 1 } }, { "key": "11005", "source": "49", "target": "452", "attributes": { "weight": 1 } }, { "key": "1235", "source": "49", "target": "490", "attributes": { "weight": 1 } }, { "key": "19421", "source": "50", "target": "2245", "attributes": { "weight": 1 } }, { "key": "35291", "source": "50", "target": "477", "attributes": { "weight": 1 } }, { "key": "114", "source": "50", "target": "57", "attributes": { "weight": 1 } }, { "key": "4105", "source": "50", "target": "1088", "attributes": { "weight": 2 } }, { "key": "4104", "source": "50", "target": "474", "attributes": { "weight": 2 } }, { "key": "19424", "source": "50", "target": "489", "attributes": { "weight": 1 } }, { "key": "33233", "source": "50", "target": "2258", "attributes": { "weight": 1 } }, { "key": "35283", "source": "50", "target": "429", "attributes": { "weight": 1 } }, { "key": "35284", "source": "50", "target": "1107", "attributes": { "weight": 1 } }, { "key": "8467", "source": "50", "target": "442", "attributes": { "weight": 2 } }, { "key": "19423", "source": "50", "target": "1744", "attributes": { "weight": 1 } }, { "key": "10400", "source": "50", "target": "482", "attributes": { "weight": 2 } }, { "key": "19419", "source": "50", "target": "222", "attributes": { "weight": 1 } }, { "key": "9234", "source": "50", "target": "430", "attributes": { "weight": 1 } }, { "key": "35289", "source": "50", "target": "189", "attributes": { "weight": 1 } }, { "key": "35286", "source": "50", "target": "444", "attributes": { "weight": 1 } }, { "key": "13841", "source": "50", "target": "1130", "attributes": { "weight": 1 } }, { "key": "4103", "source": "50", "target": "228", "attributes": { "weight": 2 } }, { "key": "8466", "source": "50", "target": "220", "attributes": { "weight": 3 } }, { "key": "11850", "source": "50", "target": "135", "attributes": { "weight": 2 } }, { "key": "19420", "source": "50", "target": "2244", "attributes": { "weight": 1 } }, { "key": "35285", "source": "50", "target": "436", "attributes": { "weight": 1 } }, { "key": "24015", "source": "50", "target": "471", "attributes": { "weight": 1 } }, { "key": "24014", "source": "50", "target": "130", "attributes": { "weight": 2 } }, { "key": "35290", "source": "50", "target": "191", "attributes": { "weight": 1 } }, { "key": "8468", "source": "50", "target": "1087", "attributes": { "weight": 2 } }, { "key": "35293", "source": "50", "target": "494", "attributes": { "weight": 1 } }, { "key": "8469", "source": "50", "target": "1125", "attributes": { "weight": 1 } }, { "key": "33234", "source": "50", "target": "473", "attributes": { "weight": 1 } }, { "key": "3924", "source": "50", "target": "458", "attributes": { "weight": 1 } }, { "key": "13840", "source": "50", "target": "1109", "attributes": { "weight": 1 } }, { "key": "35288", "source": "50", "target": "1117", "attributes": { "weight": 1 } }, { "key": "4102", "source": "50", "target": "1121", "attributes": { "weight": 2 } }, { "key": "19425", "source": "50", "target": "1374", "attributes": { "weight": 1 } }, { "key": "18098", "source": "50", "target": "52", "attributes": { "weight": 2 } }, { "key": "32953", "source": "50", "target": "154", "attributes": { "weight": 1 } }, { "key": "33230", "source": "50", "target": "51", "attributes": { "weight": 1 } }, { "key": "35292", "source": "50", "target": "56", "attributes": { "weight": 1 } }, { "key": "19422", "source": "50", "target": "450", "attributes": { "weight": 1 } }, { "key": "24016", "source": "50", "target": "231", "attributes": { "weight": 3 } }, { "key": "35287", "source": "50", "target": "1116", "attributes": { "weight": 1 } }, { "key": "17146", "source": "50", "target": "449", "attributes": { "weight": 1 } }, { "key": "33231", "source": "50", "target": "223", "attributes": { "weight": 1 } }, { "key": "4101", "source": "50", "target": "452", "attributes": { "weight": 3 } }, { "key": "4106", "source": "50", "target": "1131", "attributes": { "weight": 2 } }, { "key": "32863", "source": "50", "target": "470", "attributes": { "weight": 2 } }, { "key": "10399", "source": "50", "target": "225", "attributes": { "weight": 1 } }, { "key": "33232", "source": "50", "target": "425", "attributes": { "weight": 1 } }, { "key": "33029", "source": "50", "target": "493", "attributes": { "weight": 1 } }, { "key": "19504", "source": "51", "target": "231", "attributes": { "weight": 5 } }, { "key": "33250", "source": "51", "target": "1738", "attributes": { "weight": 1 } }, { "key": "12513", "source": "51", "target": "188", "attributes": { "weight": 1 } }, { "key": "12515", "source": "51", "target": "473", "attributes": { "weight": 1 } }, { "key": "33255", "source": "51", "target": "474", "attributes": { "weight": 1 } }, { "key": "12512", "source": "51", "target": "454", "attributes": { "weight": 1 } }, { "key": "33251", "source": "51", "target": "464", "attributes": { "weight": 1 } }, { "key": "31508", "source": "51", "target": "3057", "attributes": { "weight": 1 } }, { "key": "19494", "source": "51", "target": "1533", "attributes": { "weight": 1 } }, { "key": "19505", "source": "51", "target": "478", "attributes": { "weight": 1 } }, { "key": "19498", "source": "51", "target": "459", "attributes": { "weight": 1 } }, { "key": "32700", "source": "51", "target": "443", "attributes": { "weight": 2 } }, { "key": "19486", "source": "51", "target": "1353", "attributes": { "weight": 2 } }, { "key": "33246", "source": "51", "target": "1219", "attributes": { "weight": 1 } }, { "key": "31394", "source": "51", "target": "223", "attributes": { "weight": 1 } }, { "key": "19496", "source": "51", "target": "1360", "attributes": { "weight": 1 } }, { "key": "19501", "source": "51", "target": "54", "attributes": { "weight": 3 } }, { "key": "19510", "source": "51", "target": "1375", "attributes": { "weight": 1 } }, { "key": "19511", "source": "51", "target": "2276", "attributes": { "weight": 1 } }, { "key": "33258", "source": "51", "target": "480", "attributes": { "weight": 1 } }, { "key": "33243", "source": "51", "target": "450", "attributes": { "weight": 1 } }, { "key": "19509", "source": "51", "target": "235", "attributes": { "weight": 1 } }, { "key": "19502", "source": "51", "target": "1367", "attributes": { "weight": 2 } }, { "key": "19490", "source": "51", "target": "222", "attributes": { "weight": 1 } }, { "key": "17152", "source": "51", "target": "2108", "attributes": { "weight": 1 } }, { "key": "19495", "source": "51", "target": "451", "attributes": { "weight": 2 } }, { "key": "33249", "source": "51", "target": "1834", "attributes": { "weight": 1 } }, { "key": "11025", "source": "51", "target": "220", "attributes": { "weight": 3 } }, { "key": "19499", "source": "51", "target": "2254", "attributes": { "weight": 1 } }, { "key": "19500", "source": "51", "target": "1546", "attributes": { "weight": 1 } }, { "key": "17153", "source": "51", "target": "2111", "attributes": { "weight": 1 } }, { "key": "31189", "source": "51", "target": "1362", "attributes": { "weight": 1 } }, { "key": "33260", "source": "51", "target": "672", "attributes": { "weight": 1 } }, { "key": "33240", "source": "51", "target": "50", "attributes": { "weight": 1 } }, { "key": "19492", "source": "51", "target": "2242", "attributes": { "weight": 1 } }, { "key": "17151", "source": "51", "target": "449", "attributes": { "weight": 2 } }, { "key": "33256", "source": "51", "target": "1282", "attributes": { "weight": 1 } }, { "key": "115", "source": "51", "target": "57", "attributes": { "weight": 1 } }, { "key": "32703", "source": "51", "target": "1812", "attributes": { "weight": 2 } }, { "key": "19487", "source": "51", "target": "429", "attributes": { "weight": 2 } }, { "key": "12514", "source": "51", "target": "189", "attributes": { "weight": 1 } }, { "key": "19506", "source": "51", "target": "2269", "attributes": { "weight": 2 } }, { "key": "19507", "source": "51", "target": "2270", "attributes": { "weight": 1 } }, { "key": "33253", "source": "51", "target": "471", "attributes": { "weight": 1 } }, { "key": "32702", "source": "51", "target": "1366", "attributes": { "weight": 1 } }, { "key": "33239", "source": "51", "target": "858", "attributes": { "weight": 1 } }, { "key": "19512", "source": "51", "target": "498", "attributes": { "weight": 1 } }, { "key": "33244", "source": "51", "target": "452", "attributes": { "weight": 1 } }, { "key": "33259", "source": "51", "target": "482", "attributes": { "weight": 1 } }, { "key": "33248", "source": "51", "target": "458", "attributes": { "weight": 1 } }, { "key": "33241", "source": "51", "target": "442", "attributes": { "weight": 1 } }, { "key": "33252", "source": "51", "target": "470", "attributes": { "weight": 1 } }, { "key": "19508", "source": "51", "target": "56", "attributes": { "weight": 5 } }, { "key": "19489", "source": "51", "target": "221", "attributes": { "weight": 1 } }, { "key": "19503", "source": "51", "target": "1838", "attributes": { "weight": 1 } }, { "key": "19497", "source": "51", "target": "2251", "attributes": { "weight": 1 } }, { "key": "32199", "source": "51", "target": "1368", "attributes": { "weight": 2 } }, { "key": "33247", "source": "51", "target": "52", "attributes": { "weight": 1 } }, { "key": "33238", "source": "51", "target": "2645", "attributes": { "weight": 1 } }, { "key": "31509", "source": "51", "target": "233", "attributes": { "weight": 2 } }, { "key": "19488", "source": "51", "target": "1354", "attributes": { "weight": 3 } }, { "key": "33237", "source": "51", "target": "130", "attributes": { "weight": 1 } }, { "key": "33257", "source": "51", "target": "479", "attributes": { "weight": 1 } }, { "key": "19491", "source": "51", "target": "440", "attributes": { "weight": 1 } }, { "key": "32701", "source": "51", "target": "1358", "attributes": { "weight": 2 } }, { "key": "22867", "source": "51", "target": "1359", "attributes": { "weight": 1 } }, { "key": "19493", "source": "51", "target": "1070", "attributes": { "weight": 1 } }, { "key": "32198", "source": "51", "target": "860", "attributes": { "weight": 3 } }, { "key": "32197", "source": "51", "target": "424", "attributes": { "weight": 1 } }, { "key": "33254", "source": "51", "target": "2094", "attributes": { "weight": 1 } }, { "key": "12511", "source": "51", "target": "1141", "attributes": { "weight": 1 } }, { "key": "33242", "source": "51", "target": "674", "attributes": { "weight": 1 } }, { "key": "33245", "source": "51", "target": "1357", "attributes": { "weight": 1 } }, { "key": "18105", "source": "52", "target": "490", "attributes": { "weight": 1 } }, { "key": "33401", "source": "52", "target": "488", "attributes": { "weight": 1 } }, { "key": "27240", "source": "52", "target": "429", "attributes": { "weight": 2 } }, { "key": "16812", "source": "52", "target": "70", "attributes": { "weight": 1 } }, { "key": "11141", "source": "52", "target": "452", "attributes": { "weight": 4 } }, { "key": "33402", "source": "52", "target": "1374", "attributes": { "weight": 1 } }, { "key": "33382", "source": "52", "target": "51", "attributes": { "weight": 1 } }, { "key": "25917", "source": "52", "target": "1367", "attributes": { "weight": 1 } }, { "key": "33404", "source": "52", "target": "56", "attributes": { "weight": 1 } }, { "key": "14202", "source": "52", "target": "1046", "attributes": { "weight": 2 } }, { "key": "27245", "source": "52", "target": "1047", "attributes": { "weight": 2 } }, { "key": "31888", "source": "52", "target": "1060", "attributes": { "weight": 1 } }, { "key": "13074", "source": "52", "target": "304", "attributes": { "weight": 1 } }, { "key": "25865", "source": "52", "target": "220", "attributes": { "weight": 2 } }, { "key": "1408", "source": "52", "target": "188", "attributes": { "weight": 1 } }, { "key": "27241", "source": "52", "target": "130", "attributes": { "weight": 2 } }, { "key": "33377", "source": "52", "target": "1107", "attributes": { "weight": 1 } }, { "key": "27251", "source": "52", "target": "474", "attributes": { "weight": 2 } }, { "key": "8757", "source": "52", "target": "442", "attributes": { "weight": 2 } }, { "key": "30706", "source": "52", "target": "889", "attributes": { "weight": 1 } }, { "key": "23424", "source": "52", "target": "223", "attributes": { "weight": 4 } }, { "key": "13072", "source": "52", "target": "59", "attributes": { "weight": 4 } }, { "key": "32385", "source": "52", "target": "791", "attributes": { "weight": 1 } }, { "key": "33389", "source": "52", "target": "459", "attributes": { "weight": 1 } }, { "key": "27255", "source": "52", "target": "427", "attributes": { "weight": 2 } }, { "key": "27254", "source": "52", "target": "479", "attributes": { "weight": 1 } }, { "key": "10819", "source": "52", "target": "470", "attributes": { "weight": 5 } }, { "key": "27257", "source": "52", "target": "340", "attributes": { "weight": 3 } }, { "key": "26907", "source": "52", "target": "497", "attributes": { "weight": 2 } }, { "key": "13073", "source": "52", "target": "674", "attributes": { "weight": 4 } }, { "key": "27539", "source": "52", "target": "1520", "attributes": { "weight": 1 } }, { "key": "33396", "source": "52", "target": "190", "attributes": { "weight": 1 } }, { "key": "3951", "source": "52", "target": "432", "attributes": { "weight": 3 } }, { "key": "6780", "source": "52", "target": "471", "attributes": { "weight": 4 } }, { "key": "32165", "source": "52", "target": "1087", "attributes": { "weight": 1 } }, { "key": "33390", "source": "52", "target": "460", "attributes": { "weight": 1 } }, { "key": "27248", "source": "52", "target": "370", "attributes": { "weight": 2 } }, { "key": "3952", "source": "52", "target": "1744", "attributes": { "weight": 5 } }, { "key": "10494", "source": "52", "target": "225", "attributes": { "weight": 1 } }, { "key": "27244", "source": "52", "target": "3", "attributes": { "weight": 1 } }, { "key": "27253", "source": "52", "target": "231", "attributes": { "weight": 2 } }, { "key": "33397", "source": "52", "target": "1088", "attributes": { "weight": 1 } }, { "key": "31598", "source": "52", "target": "595", "attributes": { "weight": 1 } }, { "key": "33394", "source": "52", "target": "2258", "attributes": { "weight": 1 } }, { "key": "29850", "source": "52", "target": "1024", "attributes": { "weight": 1 } }, { "key": "27247", "source": "52", "target": "1232", "attributes": { "weight": 2 } }, { "key": "7301", "source": "52", "target": "154", "attributes": { "weight": 4 } }, { "key": "26570", "source": "52", "target": "189", "attributes": { "weight": 2 } }, { "key": "116", "source": "52", "target": "54", "attributes": { "weight": 1 } }, { "key": "1407", "source": "52", "target": "183", "attributes": { "weight": 1 } }, { "key": "33384", "source": "52", "target": "441", "attributes": { "weight": 1 } }, { "key": "10818", "source": "52", "target": "457", "attributes": { "weight": 1 } }, { "key": "33045", "source": "52", "target": "1355", "attributes": { "weight": 1 } }, { "key": "33403", "source": "52", "target": "672", "attributes": { "weight": 1 } }, { "key": "17243", "source": "52", "target": "449", "attributes": { "weight": 1 } }, { "key": "33393", "source": "52", "target": "1836", "attributes": { "weight": 1 } }, { "key": "33046", "source": "52", "target": "1845", "attributes": { "weight": 1 } }, { "key": "9274", "source": "52", "target": "430", "attributes": { "weight": 1 } }, { "key": "27242", "source": "52", "target": "339", "attributes": { "weight": 2 } }, { "key": "18060", "source": "52", "target": "1036", "attributes": { "weight": 2 } }, { "key": "33398", "source": "52", "target": "1125", "attributes": { "weight": 1 } }, { "key": "33381", "source": "52", "target": "437", "attributes": { "weight": 1 } }, { "key": "33379", "source": "52", "target": "49", "attributes": { "weight": 1 } }, { "key": "33388", "source": "52", "target": "426", "attributes": { "weight": 1 } }, { "key": "5085", "source": "52", "target": "468", "attributes": { "weight": 3 } }, { "key": "27243", "source": "52", "target": "445", "attributes": { "weight": 2 } }, { "key": "11341", "source": "52", "target": "1742", "attributes": { "weight": 1 } }, { "key": "18104", "source": "52", "target": "2187", "attributes": { "weight": 1 } }, { "key": "33385", "source": "52", "target": "447", "attributes": { "weight": 1 } }, { "key": "33378", "source": "52", "target": "1354", "attributes": { "weight": 1 } }, { "key": "33399", "source": "52", "target": "2109", "attributes": { "weight": 1 } }, { "key": "17462", "source": "52", "target": "358", "attributes": { "weight": 2 } }, { "key": "4131", "source": "52", "target": "1110", "attributes": { "weight": 2 } }, { "key": "18102", "source": "52", "target": "433", "attributes": { "weight": 3 } }, { "key": "18106", "source": "52", "target": "233", "attributes": { "weight": 2 } }, { "key": "33391", "source": "52", "target": "135", "attributes": { "weight": 1 } }, { "key": "33383", "source": "52", "target": "440", "attributes": { "weight": 1 } }, { "key": "27256", "source": "52", "target": "482", "attributes": { "weight": 2 } }, { "key": "18108", "source": "52", "target": "57", "attributes": { "weight": 3 } }, { "key": "27246", "source": "52", "target": "458", "attributes": { "weight": 2 } }, { "key": "29423", "source": "52", "target": "424", "attributes": { "weight": 1 } }, { "key": "33386", "source": "52", "target": "450", "attributes": { "weight": 1 } }, { "key": "17888", "source": "52", "target": "454", "attributes": { "weight": 4 } }, { "key": "33047", "source": "52", "target": "493", "attributes": { "weight": 1 } }, { "key": "31192", "source": "52", "target": "1362", "attributes": { "weight": 1 } }, { "key": "33387", "source": "52", "target": "451", "attributes": { "weight": 1 } }, { "key": "18107", "source": "52", "target": "1375", "attributes": { "weight": 1 } }, { "key": "27250", "source": "52", "target": "8", "attributes": { "weight": 1 } }, { "key": "27252", "source": "52", "target": "191", "attributes": { "weight": 2 } }, { "key": "18103", "source": "52", "target": "50", "attributes": { "weight": 2 } }, { "key": "33392", "source": "52", "target": "1121", "attributes": { "weight": 1 } }, { "key": "33380", "source": "52", "target": "436", "attributes": { "weight": 1 } }, { "key": "33400", "source": "52", "target": "2110", "attributes": { "weight": 1 } }, { "key": "31887", "source": "52", "target": "359", "attributes": { "weight": 1 } }, { "key": "27249", "source": "52", "target": "1363", "attributes": { "weight": 1 } }, { "key": "26310", "source": "52", "target": "1258", "attributes": { "weight": 1 } }, { "key": "27258", "source": "52", "target": "495", "attributes": { "weight": 2 } }, { "key": "33405", "source": "52", "target": "494", "attributes": { "weight": 1 } }, { "key": "30726", "source": "52", "target": "1026", "attributes": { "weight": 2 } }, { "key": "33395", "source": "52", "target": "472", "attributes": { "weight": 1 } }, { "key": "11142", "source": "52", "target": "1116", "attributes": { "weight": 2 } }, { "key": "3996", "source": "53", "target": "487", "attributes": { "weight": 2 } }, { "key": "14301", "source": "53", "target": "1092", "attributes": { "weight": 3 } }, { "key": "33444", "source": "53", "target": "473", "attributes": { "weight": 1 } }, { "key": "117", "source": "53", "target": "57", "attributes": { "weight": 3 } }, { "key": "14302", "source": "53", "target": "595", "attributes": { "weight": 2 } }, { "key": "15311", "source": "53", "target": "455", "attributes": { "weight": 1 } }, { "key": "30604", "source": "53", "target": "682", "attributes": { "weight": 1 } }, { "key": "7331", "source": "53", "target": "454", "attributes": { "weight": 3 } }, { "key": "33443", "source": "53", "target": "1836", "attributes": { "weight": 1 } }, { "key": "14296", "source": "53", "target": "1036", "attributes": { "weight": 2 } }, { "key": "5340", "source": "53", "target": "468", "attributes": { "weight": 3 } }, { "key": "29891", "source": "53", "target": "1024", "attributes": { "weight": 1 } }, { "key": "36001", "source": "53", "target": "440", "attributes": { "weight": 1 } }, { "key": "3629", "source": "53", "target": "1025", "attributes": { "weight": 1 } }, { "key": "32741", "source": "53", "target": "1219", "attributes": { "weight": 1 } }, { "key": "29890", "source": "53", "target": "2122", "attributes": { "weight": 1 } }, { "key": "14298", "source": "53", "target": "458", "attributes": { "weight": 1 } }, { "key": "8809", "source": "53", "target": "442", "attributes": { "weight": 2 } }, { "key": "32740", "source": "53", "target": "1832", "attributes": { "weight": 1 } }, { "key": "14297", "source": "53", "target": "1520", "attributes": { "weight": 2 } }, { "key": "22676", "source": "53", "target": "1037", "attributes": { "weight": 1 } }, { "key": "25381", "source": "53", "target": "433", "attributes": { "weight": 2 } }, { "key": "27101", "source": "53", "target": "1247", "attributes": { "weight": 2 } }, { "key": "29893", "source": "53", "target": "868", "attributes": { "weight": 1 } }, { "key": "15310", "source": "53", "target": "183", "attributes": { "weight": 1 } }, { "key": "27102", "source": "53", "target": "472", "attributes": { "weight": 5 } }, { "key": "30712", "source": "53", "target": "889", "attributes": { "weight": 1 } }, { "key": "16845", "source": "53", "target": "59", "attributes": { "weight": 1 } }, { "key": "11351", "source": "53", "target": "1742", "attributes": { "weight": 1 } }, { "key": "6852", "source": "53", "target": "495", "attributes": { "weight": 3 } }, { "key": "3995", "source": "53", "target": "432", "attributes": { "weight": 5 } }, { "key": "11907", "source": "53", "target": "135", "attributes": { "weight": 7 } }, { "key": "36929", "source": "53", "target": "1072", "attributes": { "weight": 1 } }, { "key": "26914", "source": "53", "target": "497", "attributes": { "weight": 1 } }, { "key": "30460", "source": "53", "target": "1046", "attributes": { "weight": 1 } }, { "key": "31637", "source": "53", "target": "8", "attributes": { "weight": 2 } }, { "key": "33793", "source": "53", "target": "14", "attributes": { "weight": 1 } }, { "key": "17478", "source": "53", "target": "358", "attributes": { "weight": 1 } }, { "key": "12678", "source": "53", "target": "695", "attributes": { "weight": 1 } }, { "key": "33442", "source": "53", "target": "425", "attributes": { "weight": 1 } }, { "key": "32739", "source": "53", "target": "446", "attributes": { "weight": 1 } }, { "key": "16846", "source": "53", "target": "70", "attributes": { "weight": 1 } }, { "key": "30902", "source": "53", "target": "3", "attributes": { "weight": 1 } }, { "key": "14303", "source": "53", "target": "340", "attributes": { "weight": 3 } }, { "key": "15312", "source": "53", "target": "672", "attributes": { "weight": 1 } }, { "key": "29892", "source": "53", "target": "2647", "attributes": { "weight": 1 } }, { "key": "14295", "source": "53", "target": "220", "attributes": { "weight": 2 } }, { "key": "14300", "source": "53", "target": "1026", "attributes": { "weight": 3 } }, { "key": "37452", "source": "53", "target": "435", "attributes": { "weight": 1 } }, { "key": "17479", "source": "53", "target": "1367", "attributes": { "weight": 2 } }, { "key": "37453", "source": "53", "target": "2258", "attributes": { "weight": 1 } }, { "key": "14299", "source": "53", "target": "189", "attributes": { "weight": 2 } }, { "key": "17915", "source": "53", "target": "339", "attributes": { "weight": 2 } }, { "key": "16875", "source": "54", "target": "73", "attributes": { "weight": 1 } }, { "key": "20363", "source": "54", "target": "480", "attributes": { "weight": 1 } }, { "key": "27103", "source": "54", "target": "1219", "attributes": { "weight": 3 } }, { "key": "28668", "source": "54", "target": "1357", "attributes": { "weight": 2 } }, { "key": "28666", "source": "54", "target": "131", "attributes": { "weight": 1 } }, { "key": "23360", "source": "54", "target": "223", "attributes": { "weight": 1 } }, { "key": "6871", "source": "54", "target": "183", "attributes": { "weight": 4 } }, { "key": "5489", "source": "54", "target": "471", "attributes": { "weight": 6 } }, { "key": "20348", "source": "54", "target": "2106", "attributes": { "weight": 1 } }, { "key": "118", "source": "54", "target": "57", "attributes": { "weight": 3 } }, { "key": "24095", "source": "54", "target": "429", "attributes": { "weight": 2 } }, { "key": "28669", "source": "54", "target": "1358", "attributes": { "weight": 2 } }, { "key": "31130", "source": "54", "target": "442", "attributes": { "weight": 1 } }, { "key": "20361", "source": "54", "target": "2108", "attributes": { "weight": 1 } }, { "key": "28672", "source": "54", "target": "482", "attributes": { "weight": 1 } }, { "key": "31541", "source": "54", "target": "3058", "attributes": { "weight": 1 } }, { "key": "23633", "source": "54", "target": "220", "attributes": { "weight": 1 } }, { "key": "15321", "source": "54", "target": "490", "attributes": { "weight": 2 } }, { "key": "24098", "source": "54", "target": "39", "attributes": { "weight": 2 } }, { "key": "28671", "source": "54", "target": "1710", "attributes": { "weight": 1 } }, { "key": "30497", "source": "54", "target": "479", "attributes": { "weight": 1 } }, { "key": "16873", "source": "54", "target": "135", "attributes": { "weight": 5 } }, { "key": "20364", "source": "54", "target": "2109", "attributes": { "weight": 3 } }, { "key": "20353", "source": "54", "target": "2248", "attributes": { "weight": 2 } }, { "key": "20362", "source": "54", "target": "2267", "attributes": { "weight": 1 } }, { "key": "28675", "source": "54", "target": "2784", "attributes": { "weight": 1 } }, { "key": "15320", "source": "54", "target": "1369", "attributes": { "weight": 1 } }, { "key": "20350", "source": "54", "target": "51", "attributes": { "weight": 3 } }, { "key": "20359", "source": "54", "target": "2261", "attributes": { "weight": 1 } }, { "key": "10507", "source": "54", "target": "225", "attributes": { "weight": 2 } }, { "key": "20349", "source": "54", "target": "438", "attributes": { "weight": 2 } }, { "key": "15319", "source": "54", "target": "467", "attributes": { "weight": 1 } }, { "key": "24097", "source": "54", "target": "437", "attributes": { "weight": 3 } }, { "key": "6874", "source": "54", "target": "476", "attributes": { "weight": 2 } }, { "key": "16871", "source": "54", "target": "434", "attributes": { "weight": 1 } }, { "key": "28673", "source": "54", "target": "1373", "attributes": { "weight": 1 } }, { "key": "26317", "source": "54", "target": "1258", "attributes": { "weight": 1 } }, { "key": "20368", "source": "54", "target": "1375", "attributes": { "weight": 2 } }, { "key": "24100", "source": "54", "target": "1125", "attributes": { "weight": 2 } }, { "key": "26183", "source": "54", "target": "2630", "attributes": { "weight": 2 } }, { "key": "28667", "source": "54", "target": "1706", "attributes": { "weight": 2 } }, { "key": "23632", "source": "54", "target": "1353", "attributes": { "weight": 3 } }, { "key": "20351", "source": "54", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20356", "source": "54", "target": "1836", "attributes": { "weight": 1 } }, { "key": "16874", "source": "54", "target": "70", "attributes": { "weight": 2 } }, { "key": "28670", "source": "54", "target": "470", "attributes": { "weight": 2 } }, { "key": "20355", "source": "54", "target": "453", "attributes": { "weight": 1 } }, { "key": "6873", "source": "54", "target": "189", "attributes": { "weight": 4 } }, { "key": "6875", "source": "54", "target": "192", "attributes": { "weight": 2 } }, { "key": "15318", "source": "54", "target": "454", "attributes": { "weight": 2 } }, { "key": "20346", "source": "54", "target": "221", "attributes": { "weight": 1 } }, { "key": "24096", "source": "54", "target": "1354", "attributes": { "weight": 1 } }, { "key": "24099", "source": "54", "target": "1556", "attributes": { "weight": 1 } }, { "key": "6870", "source": "54", "target": "425", "attributes": { "weight": 3 } }, { "key": "20357", "source": "54", "target": "2258", "attributes": { "weight": 2 } }, { "key": "20345", "source": "54", "target": "130", "attributes": { "weight": 3 } }, { "key": "27104", "source": "54", "target": "1247", "attributes": { "weight": 1 } }, { "key": "15322", "source": "54", "target": "672", "attributes": { "weight": 2 } }, { "key": "6872", "source": "54", "target": "188", "attributes": { "weight": 3 } }, { "key": "29789", "source": "54", "target": "1714", "attributes": { "weight": 1 } }, { "key": "16872", "source": "54", "target": "674", "attributes": { "weight": 1 } }, { "key": "20354", "source": "54", "target": "1832", "attributes": { "weight": 4 } }, { "key": "20358", "source": "54", "target": "472", "attributes": { "weight": 6 } }, { "key": "28665", "source": "54", "target": "1703", "attributes": { "weight": 1 } }, { "key": "1502", "source": "54", "target": "224", "attributes": { "weight": 4 } }, { "key": "10508", "source": "54", "target": "1711", "attributes": { "weight": 3 } }, { "key": "20360", "source": "54", "target": "1744", "attributes": { "weight": 1 } }, { "key": "6877", "source": "54", "target": "495", "attributes": { "weight": 3 } }, { "key": "28674", "source": "54", "target": "56", "attributes": { "weight": 1 } }, { "key": "20352", "source": "54", "target": "450", "attributes": { "weight": 1 } }, { "key": "17261", "source": "54", "target": "449", "attributes": { "weight": 2 } }, { "key": "20367", "source": "54", "target": "1374", "attributes": { "weight": 4 } }, { "key": "20366", "source": "54", "target": "489", "attributes": { "weight": 2 } }, { "key": "27105", "source": "54", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20347", "source": "54", "target": "435", "attributes": { "weight": 3 } }, { "key": "37012", "source": "54", "target": "455", "attributes": { "weight": 1 } }, { "key": "6876", "source": "54", "target": "193", "attributes": { "weight": 1 } }, { "key": "20365", "source": "54", "target": "2271", "attributes": { "weight": 1 } }, { "key": "16870", "source": "54", "target": "59", "attributes": { "weight": 1 } }, { "key": "119", "source": "55", "target": "57", "attributes": { "weight": 3 } }, { "key": "7026", "source": "55", "target": "183", "attributes": { "weight": 1 } }, { "key": "23248", "source": "55", "target": "495", "attributes": { "weight": 1 } }, { "key": "27885", "source": "55", "target": "339", "attributes": { "weight": 1 } }, { "key": "21195", "source": "56", "target": "453", "attributes": { "weight": 1 } }, { "key": "26375", "source": "56", "target": "1258", "attributes": { "weight": 1 } }, { "key": "15395", "source": "56", "target": "454", "attributes": { "weight": 2 } }, { "key": "21193", "source": "56", "target": "450", "attributes": { "weight": 3 } }, { "key": "21200", "source": "56", "target": "2258", "attributes": { "weight": 3 } }, { "key": "24374", "source": "56", "target": "473", "attributes": { "weight": 1 } }, { "key": "15398", "source": "56", "target": "672", "attributes": { "weight": 3 } }, { "key": "21210", "source": "56", "target": "2109", "attributes": { "weight": 2 } }, { "key": "21206", "source": "56", "target": "1744", "attributes": { "weight": 1 } }, { "key": "7071", "source": "56", "target": "188", "attributes": { "weight": 3 } }, { "key": "7072", "source": "56", "target": "467", "attributes": { "weight": 2 } }, { "key": "31806", "source": "56", "target": "8", "attributes": { "weight": 1 } }, { "key": "28688", "source": "56", "target": "2784", "attributes": { "weight": 1 } }, { "key": "21188", "source": "56", "target": "2106", "attributes": { "weight": 2 } }, { "key": "24248", "source": "56", "target": "1125", "attributes": { "weight": 1 } }, { "key": "7077", "source": "56", "target": "495", "attributes": { "weight": 3 } }, { "key": "21215", "source": "56", "target": "1375", "attributes": { "weight": 1 } }, { "key": "21198", "source": "56", "target": "1247", "attributes": { "weight": 4 } }, { "key": "15396", "source": "56", "target": "1369", "attributes": { "weight": 1 } }, { "key": "17318", "source": "56", "target": "449", "attributes": { "weight": 2 } }, { "key": "21186", "source": "56", "target": "1522", "attributes": { "weight": 1 } }, { "key": "21212", "source": "56", "target": "2111", "attributes": { "weight": 1 } }, { "key": "21202", "source": "56", "target": "472", "attributes": { "weight": 7 } }, { "key": "21207", "source": "56", "target": "2108", "attributes": { "weight": 1 } }, { "key": "21183", "source": "56", "target": "130", "attributes": { "weight": 3 } }, { "key": "35219", "source": "56", "target": "1354", "attributes": { "weight": 1 } }, { "key": "21199", "source": "56", "target": "1836", "attributes": { "weight": 1 } }, { "key": "35343", "source": "56", "target": "50", "attributes": { "weight": 1 } }, { "key": "24249", "source": "56", "target": "1568", "attributes": { "weight": 1 } }, { "key": "23696", "source": "56", "target": "54", "attributes": { "weight": 2 } }, { "key": "21214", "source": "56", "target": "1374", "attributes": { "weight": 1 } }, { "key": "21184", "source": "56", "target": "221", "attributes": { "weight": 1 } }, { "key": "30504", "source": "56", "target": "479", "attributes": { "weight": 1 } }, { "key": "21205", "source": "56", "target": "2261", "attributes": { "weight": 1 } }, { "key": "37028", "source": "56", "target": "455", "attributes": { "weight": 1 } }, { "key": "7070", "source": "56", "target": "187", "attributes": { "weight": 2 } }, { "key": "27178", "source": "56", "target": "2645", "attributes": { "weight": 2 } }, { "key": "27179", "source": "56", "target": "2105", "attributes": { "weight": 1 } }, { "key": "7067", "source": "56", "target": "224", "attributes": { "weight": 4 } }, { "key": "21197", "source": "56", "target": "2253", "attributes": { "weight": 1 } }, { "key": "2392", "source": "56", "target": "695", "attributes": { "weight": 2 } }, { "key": "21187", "source": "56", "target": "222", "attributes": { "weight": 1 } }, { "key": "21194", "source": "56", "target": "1832", "attributes": { "weight": 6 } }, { "key": "21204", "source": "56", "target": "1838", "attributes": { "weight": 1 } }, { "key": "35344", "source": "56", "target": "1088", "attributes": { "weight": 1 } }, { "key": "7078", "source": "56", "target": "57", "attributes": { "weight": 2 } }, { "key": "29910", "source": "56", "target": "1024", "attributes": { "weight": 1 } }, { "key": "23695", "source": "56", "target": "220", "attributes": { "weight": 1 } }, { "key": "27181", "source": "56", "target": "1282", "attributes": { "weight": 4 } }, { "key": "35220", "source": "56", "target": "2470", "attributes": { "weight": 1 } }, { "key": "7066", "source": "56", "target": "425", "attributes": { "weight": 3 } }, { "key": "21209", "source": "56", "target": "480", "attributes": { "weight": 1 } }, { "key": "21213", "source": "56", "target": "489", "attributes": { "weight": 3 } }, { "key": "7075", "source": "56", "target": "192", "attributes": { "weight": 2 } }, { "key": "7068", "source": "56", "target": "182", "attributes": { "weight": 1 } }, { "key": "27180", "source": "56", "target": "1219", "attributes": { "weight": 4 } }, { "key": "24373", "source": "56", "target": "452", "attributes": { "weight": 1 } }, { "key": "17019", "source": "56", "target": "70", "attributes": { "weight": 1 } }, { "key": "7069", "source": "56", "target": "183", "attributes": { "weight": 3 } }, { "key": "35041", "source": "56", "target": "3", "attributes": { "weight": 1 } }, { "key": "120", "source": "56", "target": "52", "attributes": { "weight": 2 } }, { "key": "7074", "source": "56", "target": "476", "attributes": { "weight": 2 } }, { "key": "7076", "source": "56", "target": "193", "attributes": { "weight": 1 } }, { "key": "21185", "source": "56", "target": "435", "attributes": { "weight": 5 } }, { "key": "23372", "source": "56", "target": "223", "attributes": { "weight": 1 } }, { "key": "21201", "source": "56", "target": "471", "attributes": { "weight": 2 } }, { "key": "21189", "source": "56", "target": "438", "attributes": { "weight": 2 } }, { "key": "21191", "source": "56", "target": "1023", "attributes": { "weight": 1 } }, { "key": "15397", "source": "56", "target": "490", "attributes": { "weight": 2 } }, { "key": "31557", "source": "56", "target": "3058", "attributes": { "weight": 1 } }, { "key": "37029", "source": "56", "target": "3341", "attributes": { "weight": 1 } }, { "key": "32850", "source": "56", "target": "446", "attributes": { "weight": 2 } }, { "key": "33722", "source": "56", "target": "442", "attributes": { "weight": 1 } }, { "key": "31807", "source": "56", "target": "595", "attributes": { "weight": 1 } }, { "key": "23373", "source": "56", "target": "1121", "attributes": { "weight": 1 } }, { "key": "7073", "source": "56", "target": "189", "attributes": { "weight": 4 } }, { "key": "21203", "source": "56", "target": "2260", "attributes": { "weight": 1 } }, { "key": "21190", "source": "56", "target": "51", "attributes": { "weight": 5 } }, { "key": "21192", "source": "56", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21211", "source": "56", "target": "2271", "attributes": { "weight": 1 } }, { "key": "21208", "source": "56", "target": "2267", "attributes": { "weight": 1 } }, { "key": "21196", "source": "56", "target": "186", "attributes": { "weight": 1 } }, { "key": "12042", "source": "56", "target": "135", "attributes": { "weight": 8 } }, { "key": "27353", "source": "57", "target": "218", "attributes": { "weight": 1 } }, { "key": "7186", "source": "57", "target": "457", "attributes": { "weight": 2 } }, { "key": "16414", "source": "57", "target": "195", "attributes": { "weight": 1 } }, { "key": "27317", "source": "57", "target": "339", "attributes": { "weight": 2 } }, { "key": "9547", "source": "57", "target": "419", "attributes": { "weight": 2 } }, { "key": "9145", "source": "57", "target": "442", "attributes": { "weight": 2 } }, { "key": "18125", "source": "57", "target": "52", "attributes": { "weight": 3 } }, { "key": "124", "source": "57", "target": "53", "attributes": { "weight": 3 } }, { "key": "439", "source": "57", "target": "187", "attributes": { "weight": 1 } }, { "key": "25494", "source": "57", "target": "1360", "attributes": { "weight": 1 } }, { "key": "27321", "source": "57", "target": "1047", "attributes": { "weight": 2 } }, { "key": "27339", "source": "57", "target": "580", "attributes": { "weight": 2 } }, { "key": "7183", "source": "57", "target": "1357", "attributes": { "weight": 2 } }, { "key": "27325", "source": "57", "target": "1232", "attributes": { "weight": 2 } }, { "key": "27326", "source": "57", "target": "791", "attributes": { "weight": 4 } }, { "key": "6561", "source": "57", "target": "1090", "attributes": { "weight": 2 } }, { "key": "7184", "source": "57", "target": "1358", "attributes": { "weight": 2 } }, { "key": "27343", "source": "57", "target": "1026", "attributes": { "weight": 1 } }, { "key": "26793", "source": "57", "target": "163", "attributes": { "weight": 3 } }, { "key": "25121", "source": "57", "target": "1547", "attributes": { "weight": 2 } }, { "key": "24274", "source": "57", "target": "130", "attributes": { "weight": 3 } }, { "key": "25398", "source": "57", "target": "433", "attributes": { "weight": 2 } }, { "key": "37332", "source": "57", "target": "1775", "attributes": { "weight": 1 } }, { "key": "27313", "source": "57", "target": "164", "attributes": { "weight": 2 } }, { "key": "27320", "source": "57", "target": "3", "attributes": { "weight": 1 } }, { "key": "440", "source": "57", "target": "192", "attributes": { "weight": 1 } }, { "key": "27316", "source": "57", "target": "440", "attributes": { "weight": 1 } }, { "key": "7195", "source": "57", "target": "56", "attributes": { "weight": 2 } }, { "key": "7192", "source": "57", "target": "191", "attributes": { "weight": 2 } }, { "key": "27334", "source": "57", "target": "228", "attributes": { "weight": 1 } }, { "key": "6559", "source": "57", "target": "370", "attributes": { "weight": 4 } }, { "key": "25956", "source": "57", "target": "1367", "attributes": { "weight": 2 } }, { "key": "27324", "source": "57", "target": "168", "attributes": { "weight": 1 } }, { "key": "18354", "source": "57", "target": "1092", "attributes": { "weight": 1 } }, { "key": "27350", "source": "57", "target": "178", "attributes": { "weight": 3 } }, { "key": "7193", "source": "57", "target": "231", "attributes": { "weight": 2 } }, { "key": "10583", "source": "57", "target": "225", "attributes": { "weight": 1 } }, { "key": "17985", "source": "57", "target": "454", "attributes": { "weight": 3 } }, { "key": "35717", "source": "57", "target": "1356", "attributes": { "weight": 1 } }, { "key": "27352", "source": "57", "target": "340", "attributes": { "weight": 2 } }, { "key": "122", "source": "57", "target": "50", "attributes": { "weight": 1 } }, { "key": "27315", "source": "57", "target": "223", "attributes": { "weight": 2 } }, { "key": "27322", "source": "57", "target": "109", "attributes": { "weight": 1 } }, { "key": "7181", "source": "57", "target": "445", "attributes": { "weight": 3 } }, { "key": "27346", "source": "57", "target": "372", "attributes": { "weight": 1 } }, { "key": "27337", "source": "57", "target": "473", "attributes": { "weight": 1 } }, { "key": "12055", "source": "57", "target": "1522", "attributes": { "weight": 1 } }, { "key": "1215", "source": "57", "target": "426", "attributes": { "weight": 2 } }, { "key": "29533", "source": "57", "target": "232", "attributes": { "weight": 1 } }, { "key": "27342", "source": "57", "target": "70", "attributes": { "weight": 2 } }, { "key": "7190", "source": "57", "target": "471", "attributes": { "weight": 3 } }, { "key": "27333", "source": "57", "target": "1258", "attributes": { "weight": 1 } }, { "key": "30493", "source": "57", "target": "1046", "attributes": { "weight": 1 } }, { "key": "12735", "source": "57", "target": "695", "attributes": { "weight": 1 } }, { "key": "33111", "source": "57", "target": "493", "attributes": { "weight": 1 } }, { "key": "18484", "source": "57", "target": "1738", "attributes": { "weight": 1 } }, { "key": "33738", "source": "57", "target": "135", "attributes": { "weight": 1 } }, { "key": "27314", "source": "57", "target": "938", "attributes": { "weight": 2 } }, { "key": "123", "source": "57", "target": "51", "attributes": { "weight": 1 } }, { "key": "27310", "source": "57", "target": "59", "attributes": { "weight": 2 } }, { "key": "18126", "source": "57", "target": "467", "attributes": { "weight": 1 } }, { "key": "27335", "source": "57", "target": "472", "attributes": { "weight": 1 } }, { "key": "17531", "source": "57", "target": "358", "attributes": { "weight": 3 } }, { "key": "1214", "source": "57", "target": "424", "attributes": { "weight": 3 } }, { "key": "27347", "source": "57", "target": "305", "attributes": { "weight": 1 } }, { "key": "27319", "source": "57", "target": "447", "attributes": { "weight": 2 } }, { "key": "33109", "source": "57", "target": "1355", "attributes": { "weight": 1 } }, { "key": "7179", "source": "57", "target": "1353", "attributes": { "weight": 2 } }, { "key": "25903", "source": "57", "target": "220", "attributes": { "weight": 2 } }, { "key": "27312", "source": "57", "target": "435", "attributes": { "weight": 1 } }, { "key": "27356", "source": "57", "target": "500", "attributes": { "weight": 2 } }, { "key": "31827", "source": "57", "target": "595", "attributes": { "weight": 1 } }, { "key": "7182", "source": "57", "target": "183", "attributes": { "weight": 3 } }, { "key": "9546", "source": "57", "target": "645", "attributes": { "weight": 2 } }, { "key": "437", "source": "57", "target": "182", "attributes": { "weight": 1 } }, { "key": "27311", "source": "57", "target": "432", "attributes": { "weight": 1 } }, { "key": "27323", "source": "57", "target": "392", "attributes": { "weight": 1 } }, { "key": "18127", "source": "57", "target": "492", "attributes": { "weight": 1 } }, { "key": "26792", "source": "57", "target": "189", "attributes": { "weight": 2 } }, { "key": "7185", "source": "57", "target": "701", "attributes": { "weight": 1 } }, { "key": "7180", "source": "57", "target": "1354", "attributes": { "weight": 1 } }, { "key": "7810", "source": "57", "target": "154", "attributes": { "weight": 2 } }, { "key": "1217", "source": "57", "target": "428", "attributes": { "weight": 2 } }, { "key": "27336", "source": "57", "target": "371", "attributes": { "weight": 2 } }, { "key": "6560", "source": "57", "target": "468", "attributes": { "weight": 4 } }, { "key": "24772", "source": "57", "target": "2529", "attributes": { "weight": 1 } }, { "key": "7811", "source": "57", "target": "1063", "attributes": { "weight": 2 } }, { "key": "27329", "source": "57", "target": "337", "attributes": { "weight": 1 } }, { "key": "27345", "source": "57", "target": "479", "attributes": { "weight": 3 } }, { "key": "31200", "source": "57", "target": "1362", "attributes": { "weight": 1 } }, { "key": "27354", "source": "57", "target": "494", "attributes": { "weight": 1 } }, { "key": "438", "source": "57", "target": "184", "attributes": { "weight": 1 } }, { "key": "26791", "source": "57", "target": "455", "attributes": { "weight": 2 } }, { "key": "7194", "source": "57", "target": "491", "attributes": { "weight": 2 } }, { "key": "125", "source": "57", "target": "54", "attributes": { "weight": 3 } }, { "key": "35716", "source": "57", "target": "438", "attributes": { "weight": 1 } }, { "key": "121", "source": "57", "target": "49", "attributes": { "weight": 3 } }, { "key": "1685", "source": "57", "target": "188", "attributes": { "weight": 3 } }, { "key": "18124", "source": "57", "target": "1116", "attributes": { "weight": 2 } }, { "key": "7197", "source": "57", "target": "495", "attributes": { "weight": 5 } }, { "key": "26795", "source": "57", "target": "490", "attributes": { "weight": 2 } }, { "key": "7187", "source": "57", "target": "458", "attributes": { "weight": 2 } }, { "key": "27332", "source": "57", "target": "2187", "attributes": { "weight": 1 } }, { "key": "27327", "source": "57", "target": "638", "attributes": { "weight": 2 } }, { "key": "30722", "source": "57", "target": "889", "attributes": { "weight": 1 } }, { "key": "4060", "source": "57", "target": "470", "attributes": { "weight": 6 } }, { "key": "27328", "source": "57", "target": "1024", "attributes": { "weight": 2 } }, { "key": "27340", "source": "57", "target": "1744", "attributes": { "weight": 2 } }, { "key": "7196", "source": "57", "target": "193", "attributes": { "weight": 4 } }, { "key": "7188", "source": "57", "target": "459", "attributes": { "weight": 1 } }, { "key": "25495", "source": "57", "target": "464", "attributes": { "weight": 1 } }, { "key": "27330", "source": "57", "target": "338", "attributes": { "weight": 2 } }, { "key": "7191", "source": "57", "target": "190", "attributes": { "weight": 2 } }, { "key": "11324", "source": "57", "target": "452", "attributes": { "weight": 3 } }, { "key": "26969", "source": "57", "target": "497", "attributes": { "weight": 2 } }, { "key": "27341", "source": "57", "target": "123", "attributes": { "weight": 2 } }, { "key": "26794", "source": "57", "target": "476", "attributes": { "weight": 2 } }, { "key": "27351", "source": "57", "target": "488", "attributes": { "weight": 2 } }, { "key": "27348", "source": "57", "target": "482", "attributes": { "weight": 1 } }, { "key": "27331", "source": "57", "target": "8", "attributes": { "weight": 1 } }, { "key": "25783", "source": "57", "target": "278", "attributes": { "weight": 1 } }, { "key": "1216", "source": "57", "target": "427", "attributes": { "weight": 2 } }, { "key": "33110", "source": "57", "target": "1368", "attributes": { "weight": 1 } }, { "key": "27318", "source": "57", "target": "674", "attributes": { "weight": 2 } }, { "key": "27338", "source": "57", "target": "474", "attributes": { "weight": 1 } }, { "key": "33739", "source": "57", "target": "2258", "attributes": { "weight": 1 } }, { "key": "7189", "source": "57", "target": "1363", "attributes": { "weight": 3 } }, { "key": "27355", "source": "57", "target": "1375", "attributes": { "weight": 1 } }, { "key": "27349", "source": "57", "target": "1323", "attributes": { "weight": 2 } }, { "key": "25496", "source": "57", "target": "498", "attributes": { "weight": 1 } }, { "key": "27344", "source": "57", "target": "304", "attributes": { "weight": 1 } }, { "key": "126", "source": "57", "target": "55", "attributes": { "weight": 3 } }, { "key": "1684", "source": "57", "target": "224", "attributes": { "weight": 2 } }, { "key": "27309", "source": "57", "target": "429", "attributes": { "weight": 1 } }, { "key": "37075", "source": "57", "target": "857", "attributes": { "weight": 1 } }, { "key": "34915", "source": "57", "target": "362", "attributes": { "weight": 2 } }, { "key": "17324", "source": "57", "target": "449", "attributes": { "weight": 2 } }, { "key": "127", "source": "58", "target": "67", "attributes": { "weight": 2 } }, { "key": "29358", "source": "59", "target": "232", "attributes": { "weight": 1 } }, { "key": "31232", "source": "59", "target": "2447", "attributes": { "weight": 1 } }, { "key": "16646", "source": "59", "target": "1070", "attributes": { "weight": 1 } }, { "key": "136", "source": "59", "target": "71", "attributes": { "weight": 1 } }, { "key": "16637", "source": "59", "target": "429", "attributes": { "weight": 2 } }, { "key": "3854", "source": "59", "target": "487", "attributes": { "weight": 2 } }, { "key": "31231", "source": "59", "target": "123", "attributes": { "weight": 1 } }, { "key": "16674", "source": "59", "target": "486", "attributes": { "weight": 1 } }, { "key": "12661", "source": "59", "target": "695", "attributes": { "weight": 3 } }, { "key": "16648", "source": "59", "target": "445", "attributes": { "weight": 1 } }, { "key": "17809", "source": "59", "target": "1380", "attributes": { "weight": 2 } }, { "key": "27213", "source": "59", "target": "57", "attributes": { "weight": 2 } }, { "key": "16677", "source": "59", "target": "340", "attributes": { "weight": 1 } }, { "key": "29170", "source": "59", "target": "1750", "attributes": { "weight": 2 } }, { "key": "10797", "source": "59", "target": "457", "attributes": { "weight": 5 } }, { "key": "16657", "source": "59", "target": "338", "attributes": { "weight": 1 } }, { "key": "16670", "source": "59", "target": "231", "attributes": { "weight": 2 } }, { "key": "31229", "source": "59", "target": "469", "attributes": { "weight": 1 } }, { "key": "11834", "source": "59", "target": "1363", "attributes": { "weight": 1 } }, { "key": "16651", "source": "59", "target": "451", "attributes": { "weight": 1 } }, { "key": "31239", "source": "59", "target": "595", "attributes": { "weight": 2 } }, { "key": "16638", "source": "59", "target": "1107", "attributes": { "weight": 1 } }, { "key": "31227", "source": "59", "target": "1999", "attributes": { "weight": 1 } }, { "key": "31226", "source": "59", "target": "791", "attributes": { "weight": 2 } }, { "key": "16668", "source": "59", "target": "1125", "attributes": { "weight": 1 } }, { "key": "16653", "source": "59", "target": "199", "attributes": { "weight": 1 } }, { "key": "11327", "source": "59", "target": "1742", "attributes": { "weight": 1 } }, { "key": "31234", "source": "59", "target": "481", "attributes": { "weight": 1 } }, { "key": "35674", "source": "59", "target": "3245", "attributes": { "weight": 1 } }, { "key": "16671", "source": "59", "target": "477", "attributes": { "weight": 1 } }, { "key": "16669", "source": "59", "target": "70", "attributes": { "weight": 3 } }, { "key": "16641", "source": "59", "target": "130", "attributes": { "weight": 4 } }, { "key": "16654", "source": "59", "target": "370", "attributes": { "weight": 1 } }, { "key": "16639", "source": "59", "target": "1354", "attributes": { "weight": 2 } }, { "key": "12882", "source": "59", "target": "1753", "attributes": { "weight": 4 } }, { "key": "1226", "source": "59", "target": "188", "attributes": { "weight": 2 } }, { "key": "134", "source": "59", "target": "68", "attributes": { "weight": 1 } }, { "key": "31237", "source": "59", "target": "2272", "attributes": { "weight": 1 } }, { "key": "16640", "source": "59", "target": "432", "attributes": { "weight": 2 } }, { "key": "31224", "source": "59", "target": "223", "attributes": { "weight": 1 } }, { "key": "17331", "source": "59", "target": "358", "attributes": { "weight": 2 } }, { "key": "16673", "source": "59", "target": "480", "attributes": { "weight": 1 } }, { "key": "31235", "source": "59", "target": "2000", "attributes": { "weight": 1 } }, { "key": "12879", "source": "59", "target": "52", "attributes": { "weight": 4 } }, { "key": "132", "source": "59", "target": "66", "attributes": { "weight": 1 } }, { "key": "31233", "source": "59", "target": "1745", "attributes": { "weight": 1 } }, { "key": "131", "source": "59", "target": "65", "attributes": { "weight": 2 } }, { "key": "16663", "source": "59", "target": "1741", "attributes": { "weight": 2 } }, { "key": "133", "source": "59", "target": "67", "attributes": { "weight": 2 } }, { "key": "30752", "source": "59", "target": "470", "attributes": { "weight": 2 } }, { "key": "31223", "source": "59", "target": "222", "attributes": { "weight": 1 } }, { "key": "16642", "source": "59", "target": "433", "attributes": { "weight": 3 } }, { "key": "8290", "source": "59", "target": "442", "attributes": { "weight": 3 } }, { "key": "16665", "source": "59", "target": "474", "attributes": { "weight": 2 } }, { "key": "16647", "source": "59", "target": "674", "attributes": { "weight": 3 } }, { "key": "16679", "source": "59", "target": "494", "attributes": { "weight": 1 } }, { "key": "35671", "source": "59", "target": "2112", "attributes": { "weight": 1 } }, { "key": "17558", "source": "59", "target": "790", "attributes": { "weight": 2 } }, { "key": "16652", "source": "59", "target": "452", "attributes": { "weight": 2 } }, { "key": "31225", "source": "59", "target": "1047", "attributes": { "weight": 2 } }, { "key": "16662", "source": "59", "target": "472", "attributes": { "weight": 3 } }, { "key": "16644", "source": "59", "target": "164", "attributes": { "weight": 3 } }, { "key": "31222", "source": "59", "target": "1522", "attributes": { "weight": 1 } }, { "key": "139", "source": "59", "target": "75", "attributes": { "weight": 2 } }, { "key": "16649", "source": "59", "target": "447", "attributes": { "weight": 2 } }, { "key": "17810", "source": "59", "target": "454", "attributes": { "weight": 3 } }, { "key": "16675", "source": "59", "target": "488", "attributes": { "weight": 2 } }, { "key": "35675", "source": "59", "target": "3247", "attributes": { "weight": 1 } }, { "key": "16643", "source": "59", "target": "434", "attributes": { "weight": 2 } }, { "key": "16656", "source": "59", "target": "2090", "attributes": { "weight": 2 } }, { "key": "16672", "source": "59", "target": "479", "attributes": { "weight": 4 } }, { "key": "10984", "source": "59", "target": "220", "attributes": { "weight": 4 } }, { "key": "16676", "source": "59", "target": "672", "attributes": { "weight": 1 } }, { "key": "16658", "source": "59", "target": "53", "attributes": { "weight": 1 } }, { "key": "4291", "source": "59", "target": "468", "attributes": { "weight": 6 } }, { "key": "26902", "source": "59", "target": "497", "attributes": { "weight": 1 } }, { "key": "31219", "source": "59", "target": "1754", "attributes": { "weight": 1 } }, { "key": "35672", "source": "59", "target": "3243", "attributes": { "weight": 1 } }, { "key": "35673", "source": "59", "target": "3244", "attributes": { "weight": 1 } }, { "key": "16678", "source": "59", "target": "1752", "attributes": { "weight": 2 } }, { "key": "31242", "source": "59", "target": "1389", "attributes": { "weight": 1 } }, { "key": "31221", "source": "59", "target": "435", "attributes": { "weight": 1 } }, { "key": "12881", "source": "59", "target": "1751", "attributes": { "weight": 3 } }, { "key": "3853", "source": "59", "target": "1066", "attributes": { "weight": 2 } }, { "key": "16664", "source": "59", "target": "189", "attributes": { "weight": 3 } }, { "key": "135", "source": "59", "target": "69", "attributes": { "weight": 1 } }, { "key": "16667", "source": "59", "target": "191", "attributes": { "weight": 1 } }, { "key": "31236", "source": "59", "target": "2001", "attributes": { "weight": 1 } }, { "key": "16666", "source": "59", "target": "1284", "attributes": { "weight": 1 } }, { "key": "31241", "source": "59", "target": "596", "attributes": { "weight": 1 } }, { "key": "23937", "source": "59", "target": "471", "attributes": { "weight": 2 } }, { "key": "31238", "source": "59", "target": "1337", "attributes": { "weight": 1 } }, { "key": "130", "source": "59", "target": "63", "attributes": { "weight": 1 } }, { "key": "18440", "source": "59", "target": "1738", "attributes": { "weight": 1 } }, { "key": "140", "source": "59", "target": "76", "attributes": { "weight": 1 } }, { "key": "26291", "source": "59", "target": "1258", "attributes": { "weight": 1 } }, { "key": "16659", "source": "59", "target": "135", "attributes": { "weight": 1 } }, { "key": "16655", "source": "59", "target": "464", "attributes": { "weight": 1 } }, { "key": "30335", "source": "59", "target": "1046", "attributes": { "weight": 1 } }, { "key": "10391", "source": "59", "target": "225", "attributes": { "weight": 1 } }, { "key": "12385", "source": "59", "target": "1118", "attributes": { "weight": 4 } }, { "key": "31228", "source": "59", "target": "8", "attributes": { "weight": 2 } }, { "key": "31240", "source": "59", "target": "72", "attributes": { "weight": 2 } }, { "key": "31230", "source": "59", "target": "1367", "attributes": { "weight": 1 } }, { "key": "16680", "source": "59", "target": "1390", "attributes": { "weight": 2 } }, { "key": "16660", "source": "59", "target": "2092", "attributes": { "weight": 2 } }, { "key": "16645", "source": "59", "target": "440", "attributes": { "weight": 1 } }, { "key": "1225", "source": "59", "target": "183", "attributes": { "weight": 3 } }, { "key": "12880", "source": "59", "target": "304", "attributes": { "weight": 2 } }, { "key": "1224", "source": "59", "target": "224", "attributes": { "weight": 1 } }, { "key": "137", "source": "59", "target": "73", "attributes": { "weight": 1 } }, { "key": "16661", "source": "59", "target": "54", "attributes": { "weight": 1 } }, { "key": "31493", "source": "59", "target": "2114", "attributes": { "weight": 3 } }, { "key": "128", "source": "59", "target": "60", "attributes": { "weight": 2 } }, { "key": "31220", "source": "59", "target": "1997", "attributes": { "weight": 1 } }, { "key": "129", "source": "59", "target": "61", "attributes": { "weight": 1 } }, { "key": "31494", "source": "59", "target": "2139", "attributes": { "weight": 2 } }, { "key": "138", "source": "59", "target": "74", "attributes": { "weight": 2 } }, { "key": "17131", "source": "59", "target": "449", "attributes": { "weight": 2 } }, { "key": "6588", "source": "59", "target": "193", "attributes": { "weight": 5 } }, { "key": "16650", "source": "59", "target": "450", "attributes": { "weight": 2 } }, { "key": "37058", "source": "59", "target": "857", "attributes": { "weight": 1 } }, { "key": "6589", "source": "59", "target": "495", "attributes": { "weight": 4 } }, { "key": "23382", "source": "60", "target": "2092", "attributes": { "weight": 1 } }, { "key": "23381", "source": "60", "target": "2090", "attributes": { "weight": 1 } }, { "key": "142", "source": "60", "target": "65", "attributes": { "weight": 2 } }, { "key": "141", "source": "60", "target": "59", "attributes": { "weight": 2 } }, { "key": "145", "source": "61", "target": "76", "attributes": { "weight": 2 } }, { "key": "15143", "source": "61", "target": "1733", "attributes": { "weight": 2 } }, { "key": "143", "source": "61", "target": "59", "attributes": { "weight": 1 } }, { "key": "144", "source": "61", "target": "63", "attributes": { "weight": 1 } }, { "key": "146", "source": "62", "target": "75", "attributes": { "weight": 2 } }, { "key": "148", "source": "63", "target": "61", "attributes": { "weight": 1 } }, { "key": "147", "source": "63", "target": "59", "attributes": { "weight": 1 } }, { "key": "10897", "source": "64", "target": "457", "attributes": { "weight": 2 } }, { "key": "149", "source": "64", "target": "71", "attributes": { "weight": 1 } }, { "key": "150", "source": "65", "target": "59", "attributes": { "weight": 2 } }, { "key": "151", "source": "65", "target": "60", "attributes": { "weight": 2 } }, { "key": "16842", "source": "66", "target": "1354", "attributes": { "weight": 1 } }, { "key": "152", "source": "66", "target": "59", "attributes": { "weight": 1 } }, { "key": "153", "source": "67", "target": "58", "attributes": { "weight": 2 } }, { "key": "154", "source": "67", "target": "59", "attributes": { "weight": 2 } }, { "key": "156", "source": "68", "target": "72", "attributes": { "weight": 1 } }, { "key": "155", "source": "68", "target": "59", "attributes": { "weight": 1 } }, { "key": "10911", "source": "68", "target": "457", "attributes": { "weight": 2 } }, { "key": "157", "source": "69", "target": "59", "attributes": { "weight": 1 } }, { "key": "16941", "source": "70", "target": "53", "attributes": { "weight": 1 } }, { "key": "16948", "source": "70", "target": "2094", "attributes": { "weight": 1 } }, { "key": "12531", "source": "70", "target": "1141", "attributes": { "weight": 2 } }, { "key": "16921", "source": "70", "target": "440", "attributes": { "weight": 1 } }, { "key": "1530", "source": "70", "target": "188", "attributes": { "weight": 2 } }, { "key": "16957", "source": "70", "target": "479", "attributes": { "weight": 2 } }, { "key": "16918", "source": "70", "target": "2086", "attributes": { "weight": 1 } }, { "key": "16910", "source": "70", "target": "59", "attributes": { "weight": 3 } }, { "key": "10921", "source": "70", "target": "457", "attributes": { "weight": 3 } }, { "key": "31344", "source": "70", "target": "223", "attributes": { "weight": 2 } }, { "key": "6972", "source": "70", "target": "193", "attributes": { "weight": 4 } }, { "key": "16584", "source": "70", "target": "2083", "attributes": { "weight": 1 } }, { "key": "31346", "source": "70", "target": "1118", "attributes": { "weight": 2 } }, { "key": "16911", "source": "70", "target": "424", "attributes": { "weight": 1 } }, { "key": "31350", "source": "70", "target": "595", "attributes": { "weight": 2 } }, { "key": "16926", "source": "70", "target": "449", "attributes": { "weight": 2 } }, { "key": "16943", "source": "70", "target": "135", "attributes": { "weight": 1 } }, { "key": "16942", "source": "70", "target": "8", "attributes": { "weight": 1 } }, { "key": "36349", "source": "70", "target": "3280", "attributes": { "weight": 1 } }, { "key": "16913", "source": "70", "target": "2085", "attributes": { "weight": 1 } }, { "key": "16940", "source": "70", "target": "1764", "attributes": { "weight": 2 } }, { "key": "16916", "source": "70", "target": "437", "attributes": { "weight": 1 } }, { "key": "16920", "source": "70", "target": "2025", "attributes": { "weight": 1 } }, { "key": "27388", "source": "70", "target": "2667", "attributes": { "weight": 1 } }, { "key": "29722", "source": "70", "target": "421", "attributes": { "weight": 1 } }, { "key": "36355", "source": "70", "target": "3301", "attributes": { "weight": 1 } }, { "key": "16961", "source": "70", "target": "488", "attributes": { "weight": 1 } }, { "key": "16953", "source": "70", "target": "474", "attributes": { "weight": 2 } }, { "key": "16960", "source": "70", "target": "482", "attributes": { "weight": 1 } }, { "key": "16914", "source": "70", "target": "433", "attributes": { "weight": 1 } }, { "key": "31347", "source": "70", "target": "865", "attributes": { "weight": 1 } }, { "key": "16904", "source": "70", "target": "1755", "attributes": { "weight": 2 } }, { "key": "36351", "source": "70", "target": "3283", "attributes": { "weight": 1 } }, { "key": "16964", "source": "70", "target": "2096", "attributes": { "weight": 1 } }, { "key": "16945", "source": "70", "target": "54", "attributes": { "weight": 2 } }, { "key": "16955", "source": "70", "target": "1873", "attributes": { "weight": 1 } }, { "key": "12020", "source": "70", "target": "1808", "attributes": { "weight": 1 } }, { "key": "16935", "source": "70", "target": "370", "attributes": { "weight": 1 } }, { "key": "16968", "source": "70", "target": "1389", "attributes": { "weight": 2 } }, { "key": "16937", "source": "70", "target": "1738", "attributes": { "weight": 3 } }, { "key": "16915", "source": "70", "target": "434", "attributes": { "weight": 2 } }, { "key": "16965", "source": "70", "target": "56", "attributes": { "weight": 1 } }, { "key": "16971", "source": "70", "target": "1390", "attributes": { "weight": 1 } }, { "key": "16907", "source": "70", "target": "1354", "attributes": { "weight": 2 } }, { "key": "16906", "source": "70", "target": "1107", "attributes": { "weight": 1 } }, { "key": "16924", "source": "70", "target": "674", "attributes": { "weight": 3 } }, { "key": "158", "source": "70", "target": "76", "attributes": { "weight": 1 } }, { "key": "16922", "source": "70", "target": "224", "attributes": { "weight": 1 } }, { "key": "16939", "source": "70", "target": "464", "attributes": { "weight": 1 } }, { "key": "16952", "source": "70", "target": "473", "attributes": { "weight": 2 } }, { "key": "16917", "source": "70", "target": "164", "attributes": { "weight": 3 } }, { "key": "16912", "source": "70", "target": "130", "attributes": { "weight": 4 } }, { "key": "16954", "source": "70", "target": "1125", "attributes": { "weight": 1 } }, { "key": "16938", "source": "70", "target": "2089", "attributes": { "weight": 2 } }, { "key": "31345", "source": "70", "target": "1047", "attributes": { "weight": 2 } }, { "key": "16929", "source": "70", "target": "451", "attributes": { "weight": 1 } }, { "key": "36356", "source": "70", "target": "3303", "attributes": { "weight": 1 } }, { "key": "16970", "source": "70", "target": "495", "attributes": { "weight": 2 } }, { "key": "16927", "source": "70", "target": "450", "attributes": { "weight": 2 } }, { "key": "26728", "source": "70", "target": "183", "attributes": { "weight": 2 } }, { "key": "16909", "source": "70", "target": "220", "attributes": { "weight": 3 } }, { "key": "16967", "source": "70", "target": "596", "attributes": { "weight": 3 } }, { "key": "16944", "source": "70", "target": "470", "attributes": { "weight": 2 } }, { "key": "16959", "source": "70", "target": "481", "attributes": { "weight": 1 } }, { "key": "16951", "source": "70", "target": "189", "attributes": { "weight": 3 } }, { "key": "5924", "source": "70", "target": "468", "attributes": { "weight": 4 } }, { "key": "16908", "source": "70", "target": "2084", "attributes": { "weight": 2 } }, { "key": "27389", "source": "70", "target": "2668", "attributes": { "weight": 1 } }, { "key": "16956", "source": "70", "target": "231", "attributes": { "weight": 2 } }, { "key": "16930", "source": "70", "target": "452", "attributes": { "weight": 2 } }, { "key": "36354", "source": "70", "target": "3298", "attributes": { "weight": 1 } }, { "key": "16946", "source": "70", "target": "2093", "attributes": { "weight": 2 } }, { "key": "16936", "source": "70", "target": "1024", "attributes": { "weight": 1 } }, { "key": "9007", "source": "70", "target": "442", "attributes": { "weight": 3 } }, { "key": "17963", "source": "70", "target": "454", "attributes": { "weight": 3 } }, { "key": "16969", "source": "70", "target": "494", "attributes": { "weight": 1 } }, { "key": "16934", "source": "70", "target": "2088", "attributes": { "weight": 2 } }, { "key": "31349", "source": "70", "target": "1863", "attributes": { "weight": 1 } }, { "key": "31348", "source": "70", "target": "791", "attributes": { "weight": 2 } }, { "key": "16950", "source": "70", "target": "2081", "attributes": { "weight": 2 } }, { "key": "4021", "source": "70", "target": "432", "attributes": { "weight": 3 } }, { "key": "16919", "source": "70", "target": "2087", "attributes": { "weight": 2 } }, { "key": "16962", "source": "70", "target": "1337", "attributes": { "weight": 2 } }, { "key": "16933", "source": "70", "target": "52", "attributes": { "weight": 1 } }, { "key": "12021", "source": "70", "target": "1522", "attributes": { "weight": 3 } }, { "key": "16905", "source": "70", "target": "429", "attributes": { "weight": 2 } }, { "key": "16966", "source": "70", "target": "1750", "attributes": { "weight": 3 } }, { "key": "30475", "source": "70", "target": "1046", "attributes": { "weight": 1 } }, { "key": "10920", "source": "70", "target": "1754", "attributes": { "weight": 4 } }, { "key": "16963", "source": "70", "target": "672", "attributes": { "weight": 1 } }, { "key": "36352", "source": "70", "target": "3286", "attributes": { "weight": 1 } }, { "key": "16932", "source": "70", "target": "1360", "attributes": { "weight": 2 } }, { "key": "12683", "source": "70", "target": "695", "attributes": { "weight": 3 } }, { "key": "27286", "source": "70", "target": "57", "attributes": { "weight": 2 } }, { "key": "16931", "source": "70", "target": "199", "attributes": { "weight": 1 } }, { "key": "16972", "source": "70", "target": "497", "attributes": { "weight": 1 } }, { "key": "16949", "source": "70", "target": "1367", "attributes": { "weight": 1 } }, { "key": "16925", "source": "70", "target": "447", "attributes": { "weight": 1 } }, { "key": "16923", "source": "70", "target": "1070", "attributes": { "weight": 2 } }, { "key": "16928", "source": "70", "target": "1862", "attributes": { "weight": 2 } }, { "key": "16958", "source": "70", "target": "480", "attributes": { "weight": 1 } }, { "key": "36353", "source": "70", "target": "3296", "attributes": { "weight": 1 } }, { "key": "16947", "source": "70", "target": "472", "attributes": { "weight": 2 } }, { "key": "160", "source": "71", "target": "64", "attributes": { "weight": 1 } }, { "key": "35701", "source": "71", "target": "457", "attributes": { "weight": 1 } }, { "key": "159", "source": "71", "target": "59", "attributes": { "weight": 1 } }, { "key": "31377", "source": "72", "target": "674", "attributes": { "weight": 1 } }, { "key": "17020", "source": "72", "target": "1354", "attributes": { "weight": 1 } }, { "key": "36128", "source": "72", "target": "1360", "attributes": { "weight": 1 } }, { "key": "31376", "source": "72", "target": "59", "attributes": { "weight": 2 } }, { "key": "12727", "source": "72", "target": "695", "attributes": { "weight": 1 } }, { "key": "10935", "source": "72", "target": "457", "attributes": { "weight": 1 } }, { "key": "161", "source": "72", "target": "68", "attributes": { "weight": 1 } }, { "key": "17046", "source": "73", "target": "130", "attributes": { "weight": 1 } }, { "key": "36133", "source": "73", "target": "433", "attributes": { "weight": 1 } }, { "key": "17047", "source": "73", "target": "434", "attributes": { "weight": 2 } }, { "key": "36141", "source": "73", "target": "1390", "attributes": { "weight": 1 } }, { "key": "21266", "source": "73", "target": "489", "attributes": { "weight": 1 } }, { "key": "36135", "source": "73", "target": "465", "attributes": { "weight": 1 } }, { "key": "36134", "source": "73", "target": "1360", "attributes": { "weight": 1 } }, { "key": "17051", "source": "73", "target": "474", "attributes": { "weight": 1 } }, { "key": "17052", "source": "73", "target": "231", "attributes": { "weight": 1 } }, { "key": "17044", "source": "73", "target": "1354", "attributes": { "weight": 2 } }, { "key": "36137", "source": "73", "target": "1026", "attributes": { "weight": 1 } }, { "key": "21265", "source": "73", "target": "480", "attributes": { "weight": 1 } }, { "key": "17049", "source": "73", "target": "135", "attributes": { "weight": 1 } }, { "key": "17045", "source": "73", "target": "424", "attributes": { "weight": 1 } }, { "key": "17050", "source": "73", "target": "54", "attributes": { "weight": 1 } }, { "key": "31386", "source": "73", "target": "674", "attributes": { "weight": 2 } }, { "key": "36139", "source": "73", "target": "695", "attributes": { "weight": 1 } }, { "key": "36143", "source": "73", "target": "498", "attributes": { "weight": 1 } }, { "key": "162", "source": "73", "target": "59", "attributes": { "weight": 1 } }, { "key": "17048", "source": "73", "target": "447", "attributes": { "weight": 1 } }, { "key": "36140", "source": "73", "target": "2096", "attributes": { "weight": 1 } }, { "key": "21264", "source": "73", "target": "1836", "attributes": { "weight": 1 } }, { "key": "21263", "source": "73", "target": "1756", "attributes": { "weight": 1 } }, { "key": "36142", "source": "73", "target": "497", "attributes": { "weight": 1 } }, { "key": "17043", "source": "73", "target": "429", "attributes": { "weight": 2 } }, { "key": "31387", "source": "73", "target": "1337", "attributes": { "weight": 2 } }, { "key": "36138", "source": "73", "target": "478", "attributes": { "weight": 1 } }, { "key": "36136", "source": "73", "target": "2259", "attributes": { "weight": 1 } }, { "key": "17053", "source": "73", "target": "1389", "attributes": { "weight": 2 } }, { "key": "11297", "source": "73", "target": "220", "attributes": { "weight": 2 } }, { "key": "163", "source": "74", "target": "59", "attributes": { "weight": 2 } }, { "key": "15149", "source": "74", "target": "1733", "attributes": { "weight": 2 } }, { "key": "15150", "source": "74", "target": "1998", "attributes": { "weight": 2 } }, { "key": "15151", "source": "74", "target": "1741", "attributes": { "weight": 2 } }, { "key": "164", "source": "75", "target": "59", "attributes": { "weight": 2 } }, { "key": "165", "source": "75", "target": "62", "attributes": { "weight": 2 } }, { "key": "15152", "source": "76", "target": "1733", "attributes": { "weight": 2 } }, { "key": "21357", "source": "76", "target": "1354", "attributes": { "weight": 1 } }, { "key": "167", "source": "76", "target": "70", "attributes": { "weight": 1 } }, { "key": "29188", "source": "76", "target": "220", "attributes": { "weight": 1 } }, { "key": "166", "source": "76", "target": "59", "attributes": { "weight": 2 } }, { "key": "2461", "source": "77", "target": "711", "attributes": { "weight": 2 } }, { "key": "2842", "source": "77", "target": "831", "attributes": { "weight": 1 } }, { "key": "170", "source": "77", "target": "80", "attributes": { "weight": 1 } }, { "key": "175", "source": "80", "target": "3410", "attributes": { "weight": 1 } }, { "key": "178", "source": "83", "target": "93", "attributes": { "weight": 2 } }, { "key": "179", "source": "84", "target": "93", "attributes": { "weight": 3 } }, { "key": "1805", "source": "84", "target": "566", "attributes": { "weight": 1 } }, { "key": "180", "source": "85", "target": "93", "attributes": { "weight": 3 } }, { "key": "181", "source": "86", "target": "93", "attributes": { "weight": 3 } }, { "key": "1837", "source": "86", "target": "573", "attributes": { "weight": 1 } }, { "key": "1838", "source": "86", "target": "576", "attributes": { "weight": 1 } }, { "key": "1835", "source": "86", "target": "563", "attributes": { "weight": 1 } }, { "key": "1836", "source": "86", "target": "566", "attributes": { "weight": 1 } }, { "key": "182", "source": "87", "target": "93", "attributes": { "weight": 2 } }, { "key": "183", "source": "88", "target": "93", "attributes": { "weight": 3 } }, { "key": "1844", "source": "88", "target": "566", "attributes": { "weight": 1 } }, { "key": "33755", "source": "89", "target": "2646", "attributes": { "weight": 1 } }, { "key": "21533", "source": "89", "target": "868", "attributes": { "weight": 1 } }, { "key": "21519", "source": "89", "target": "1045", "attributes": { "weight": 1 } }, { "key": "21513", "source": "89", "target": "641", "attributes": { "weight": 1 } }, { "key": "21514", "source": "89", "target": "889", "attributes": { "weight": 1 } }, { "key": "21528", "source": "89", "target": "817", "attributes": { "weight": 3 } }, { "key": "21526", "source": "89", "target": "1765", "attributes": { "weight": 1 } }, { "key": "21535", "source": "89", "target": "14", "attributes": { "weight": 3 } }, { "key": "184", "source": "89", "target": "93", "attributes": { "weight": 2 } }, { "key": "21515", "source": "89", "target": "1037", "attributes": { "weight": 2 } }, { "key": "27593", "source": "89", "target": "171", "attributes": { "weight": 1 } }, { "key": "21530", "source": "89", "target": "7", "attributes": { "weight": 1 } }, { "key": "21516", "source": "89", "target": "1520", "attributes": { "weight": 1 } }, { "key": "35917", "source": "89", "target": "1026", "attributes": { "weight": 1 } }, { "key": "34964", "source": "89", "target": "3", "attributes": { "weight": 1 } }, { "key": "21525", "source": "89", "target": "1025", "attributes": { "weight": 1 } }, { "key": "34969", "source": "89", "target": "352", "attributes": { "weight": 1 } }, { "key": "21527", "source": "89", "target": "361", "attributes": { "weight": 1 } }, { "key": "33754", "source": "89", "target": "2", "attributes": { "weight": 1 } }, { "key": "33756", "source": "89", "target": "9", "attributes": { "weight": 1 } }, { "key": "21518", "source": "89", "target": "1042", "attributes": { "weight": 1 } }, { "key": "21529", "source": "89", "target": "1056", "attributes": { "weight": 2 } }, { "key": "21522", "source": "89", "target": "1072", "attributes": { "weight": 1 } }, { "key": "35918", "source": "89", "target": "1092", "attributes": { "weight": 1 } }, { "key": "21524", "source": "89", "target": "422", "attributes": { "weight": 1 } }, { "key": "21517", "source": "89", "target": "355", "attributes": { "weight": 1 } }, { "key": "21520", "source": "89", "target": "1046", "attributes": { "weight": 2 } }, { "key": "34966", "source": "89", "target": "2505", "attributes": { "weight": 1 } }, { "key": "33757", "source": "89", "target": "2828", "attributes": { "weight": 1 } }, { "key": "21532", "source": "89", "target": "1611", "attributes": { "weight": 1 } }, { "key": "21536", "source": "89", "target": "351", "attributes": { "weight": 1 } }, { "key": "34967", "source": "89", "target": "13", "attributes": { "weight": 1 } }, { "key": "21521", "source": "89", "target": "2122", "attributes": { "weight": 1 } }, { "key": "21531", "source": "89", "target": "362", "attributes": { "weight": 1 } }, { "key": "34965", "source": "89", "target": "8", "attributes": { "weight": 1 } }, { "key": "21523", "source": "89", "target": "359", "attributes": { "weight": 1 } }, { "key": "21534", "source": "89", "target": "1060", "attributes": { "weight": 1 } }, { "key": "12374", "source": "89", "target": "468", "attributes": { "weight": 1 } }, { "key": "34968", "source": "89", "target": "349", "attributes": { "weight": 1 } }, { "key": "35916", "source": "89", "target": "440", "attributes": { "weight": 1 } }, { "key": "1858", "source": "90", "target": "566", "attributes": { "weight": 1 } }, { "key": "185", "source": "90", "target": "93", "attributes": { "weight": 3 } }, { "key": "1859", "source": "90", "target": "576", "attributes": { "weight": 1 } }, { "key": "29808", "source": "91", "target": "582", "attributes": { "weight": 2 } }, { "key": "15413", "source": "91", "target": "569", "attributes": { "weight": 1 } }, { "key": "186", "source": "91", "target": "93", "attributes": { "weight": 6 } }, { "key": "1878", "source": "91", "target": "566", "attributes": { "weight": 1 } }, { "key": "1879", "source": "91", "target": "278", "attributes": { "weight": 3 } }, { "key": "15414", "source": "91", "target": "178", "attributes": { "weight": 2 } }, { "key": "29809", "source": "91", "target": "180", "attributes": { "weight": 2 } }, { "key": "9609", "source": "91", "target": "171", "attributes": { "weight": 1 } }, { "key": "187", "source": "92", "target": "93", "attributes": { "weight": 3 } }, { "key": "1882", "source": "92", "target": "566", "attributes": { "weight": 1 } }, { "key": "1920", "source": "93", "target": "327", "attributes": { "weight": 3 } }, { "key": "29825", "source": "93", "target": "1060", "attributes": { "weight": 2 } }, { "key": "200", "source": "93", "target": "96", "attributes": { "weight": 5 } }, { "key": "1891", "source": "93", "target": "567", "attributes": { "weight": 3 } }, { "key": "29815", "source": "93", "target": "1045", "attributes": { "weight": 2 } }, { "key": "1899", "source": "93", "target": "169", "attributes": { "weight": 1 } }, { "key": "190", "source": "93", "target": "85", "attributes": { "weight": 3 } }, { "key": "198", "source": "93", "target": "94", "attributes": { "weight": 3 } }, { "key": "1903", "source": "93", "target": "577", "attributes": { "weight": 2 } }, { "key": "37401", "source": "93", "target": "1629", "attributes": { "weight": 1 } }, { "key": "1887", "source": "93", "target": "164", "attributes": { "weight": 4 } }, { "key": "1918", "source": "93", "target": "587", "attributes": { "weight": 1 } }, { "key": "1901", "source": "93", "target": "576", "attributes": { "weight": 3 } }, { "key": "22682", "source": "93", "target": "1037", "attributes": { "weight": 2 } }, { "key": "1889", "source": "93", "target": "259", "attributes": { "weight": 3 } }, { "key": "29817", "source": "93", "target": "165", "attributes": { "weight": 1 } }, { "key": "29820", "source": "93", "target": "1227", "attributes": { "weight": 1 } }, { "key": "1892", "source": "93", "target": "570", "attributes": { "weight": 1 } }, { "key": "201", "source": "93", "target": "97", "attributes": { "weight": 3 } }, { "key": "1895", "source": "93", "target": "573", "attributes": { "weight": 3 } }, { "key": "189", "source": "93", "target": "84", "attributes": { "weight": 3 } }, { "key": "1904", "source": "93", "target": "578", "attributes": { "weight": 4 } }, { "key": "202", "source": "93", "target": "98", "attributes": { "weight": 2 } }, { "key": "389", "source": "93", "target": "178", "attributes": { "weight": 5 } }, { "key": "1894", "source": "93", "target": "572", "attributes": { "weight": 2 } }, { "key": "1886", "source": "93", "target": "564", "attributes": { "weight": 2 } }, { "key": "1912", "source": "93", "target": "177", "attributes": { "weight": 3 } }, { "key": "1909", "source": "93", "target": "582", "attributes": { "weight": 3 } }, { "key": "1907", "source": "93", "target": "581", "attributes": { "weight": 1 } }, { "key": "194", "source": "93", "target": "89", "attributes": { "weight": 2 } }, { "key": "1888", "source": "93", "target": "565", "attributes": { "weight": 2 } }, { "key": "1897", "source": "93", "target": "574", "attributes": { "weight": 1 } }, { "key": "1900", "source": "93", "target": "278", "attributes": { "weight": 6 } }, { "key": "18075", "source": "93", "target": "1036", "attributes": { "weight": 2 } }, { "key": "29819", "source": "93", "target": "700", "attributes": { "weight": 2 } }, { "key": "29818", "source": "93", "target": "698", "attributes": { "weight": 1 } }, { "key": "1896", "source": "93", "target": "358", "attributes": { "weight": 3 } }, { "key": "31979", "source": "93", "target": "359", "attributes": { "weight": 1 } }, { "key": "193", "source": "93", "target": "88", "attributes": { "weight": 3 } }, { "key": "29821", "source": "93", "target": "338", "attributes": { "weight": 1 } }, { "key": "29827", "source": "93", "target": "310", "attributes": { "weight": 2 } }, { "key": "34547", "source": "93", "target": "1561", "attributes": { "weight": 1 } }, { "key": "1913", "source": "93", "target": "583", "attributes": { "weight": 1 } }, { "key": "1885", "source": "93", "target": "563", "attributes": { "weight": 3 } }, { "key": "29816", "source": "93", "target": "1046", "attributes": { "weight": 2 } }, { "key": "29823", "source": "93", "target": "2901", "attributes": { "weight": 1 } }, { "key": "1916", "source": "93", "target": "180", "attributes": { "weight": 6 } }, { "key": "1906", "source": "93", "target": "580", "attributes": { "weight": 5 } }, { "key": "191", "source": "93", "target": "86", "attributes": { "weight": 3 } }, { "key": "29822", "source": "93", "target": "468", "attributes": { "weight": 1 } }, { "key": "1914", "source": "93", "target": "584", "attributes": { "weight": 4 } }, { "key": "188", "source": "93", "target": "83", "attributes": { "weight": 2 } }, { "key": "1919", "source": "93", "target": "588", "attributes": { "weight": 2 } }, { "key": "196", "source": "93", "target": "91", "attributes": { "weight": 6 } }, { "key": "1898", "source": "93", "target": "168", "attributes": { "weight": 4 } }, { "key": "1911", "source": "93", "target": "175", "attributes": { "weight": 1 } }, { "key": "29961", "source": "93", "target": "1952", "attributes": { "weight": 1 } }, { "key": "197", "source": "93", "target": "92", "attributes": { "weight": 3 } }, { "key": "388", "source": "93", "target": "170", "attributes": { "weight": 3 } }, { "key": "192", "source": "93", "target": "87", "attributes": { "weight": 2 } }, { "key": "1915", "source": "93", "target": "585", "attributes": { "weight": 3 } }, { "key": "204", "source": "93", "target": "100", "attributes": { "weight": 3 } }, { "key": "1893", "source": "93", "target": "571", "attributes": { "weight": 2 } }, { "key": "1917", "source": "93", "target": "586", "attributes": { "weight": 2 } }, { "key": "1905", "source": "93", "target": "579", "attributes": { "weight": 3 } }, { "key": "29814", "source": "93", "target": "2899", "attributes": { "weight": 1 } }, { "key": "29828", "source": "93", "target": "333", "attributes": { "weight": 1 } }, { "key": "1910", "source": "93", "target": "305", "attributes": { "weight": 4 } }, { "key": "29824", "source": "93", "target": "297", "attributes": { "weight": 1 } }, { "key": "1890", "source": "93", "target": "566", "attributes": { "weight": 5 } }, { "key": "28432", "source": "93", "target": "707", "attributes": { "weight": 2 } }, { "key": "1908", "source": "93", "target": "304", "attributes": { "weight": 3 } }, { "key": "199", "source": "93", "target": "95", "attributes": { "weight": 3 } }, { "key": "13961", "source": "93", "target": "905", "attributes": { "weight": 1 } }, { "key": "1902", "source": "93", "target": "171", "attributes": { "weight": 3 } }, { "key": "195", "source": "93", "target": "90", "attributes": { "weight": 3 } }, { "key": "29826", "source": "93", "target": "1323", "attributes": { "weight": 1 } }, { "key": "203", "source": "93", "target": "99", "attributes": { "weight": 3 } }, { "key": "205", "source": "94", "target": "93", "attributes": { "weight": 3 } }, { "key": "1921", "source": "94", "target": "566", "attributes": { "weight": 1 } }, { "key": "1924", "source": "95", "target": "566", "attributes": { "weight": 1 } }, { "key": "206", "source": "95", "target": "93", "attributes": { "weight": 3 } }, { "key": "1928", "source": "96", "target": "566", "attributes": { "weight": 1 } }, { "key": "1930", "source": "96", "target": "576", "attributes": { "weight": 1 } }, { "key": "1929", "source": "96", "target": "573", "attributes": { "weight": 1 } }, { "key": "207", "source": "96", "target": "93", "attributes": { "weight": 5 } }, { "key": "27655", "source": "96", "target": "564", "attributes": { "weight": 1 } }, { "key": "208", "source": "97", "target": "93", "attributes": { "weight": 3 } }, { "key": "209", "source": "98", "target": "93", "attributes": { "weight": 2 } }, { "key": "1940", "source": "98", "target": "566", "attributes": { "weight": 1 } }, { "key": "210", "source": "99", "target": "93", "attributes": { "weight": 3 } }, { "key": "211", "source": "100", "target": "93", "attributes": { "weight": 3 } }, { "key": "29836", "source": "100", "target": "2900", "attributes": { "weight": 1 } }, { "key": "1950", "source": "100", "target": "566", "attributes": { "weight": 1 } }, { "key": "1951", "source": "100", "target": "573", "attributes": { "weight": 1 } }, { "key": "212", "source": "101", "target": "113", "attributes": { "weight": 2 } }, { "key": "7824", "source": "101", "target": "103", "attributes": { "weight": 1 } }, { "key": "7825", "source": "101", "target": "1471", "attributes": { "weight": 1 } }, { "key": "214", "source": "102", "target": "116", "attributes": { "weight": 3 } }, { "key": "213", "source": "102", "target": "103", "attributes": { "weight": 3 } }, { "key": "7842", "source": "103", "target": "1186", "attributes": { "weight": 4 } }, { "key": "21634", "source": "103", "target": "1306", "attributes": { "weight": 3 } }, { "key": "21631", "source": "103", "target": "607", "attributes": { "weight": 2 } }, { "key": "21638", "source": "103", "target": "1502", "attributes": { "weight": 2 } }, { "key": "7845", "source": "103", "target": "113", "attributes": { "weight": 3 } }, { "key": "28882", "source": "103", "target": "1487", "attributes": { "weight": 1 } }, { "key": "7844", "source": "103", "target": "1471", "attributes": { "weight": 3 } }, { "key": "217", "source": "103", "target": "114", "attributes": { "weight": 2 } }, { "key": "7843", "source": "103", "target": "109", "attributes": { "weight": 4 } }, { "key": "21626", "source": "103", "target": "1458", "attributes": { "weight": 2 } }, { "key": "215", "source": "103", "target": "102", "attributes": { "weight": 3 } }, { "key": "24863", "source": "103", "target": "1454", "attributes": { "weight": 2 } }, { "key": "21632", "source": "103", "target": "1490", "attributes": { "weight": 2 } }, { "key": "21637", "source": "103", "target": "116", "attributes": { "weight": 3 } }, { "key": "21636", "source": "103", "target": "1498", "attributes": { "weight": 2 } }, { "key": "7846", "source": "103", "target": "118", "attributes": { "weight": 2 } }, { "key": "7841", "source": "103", "target": "105", "attributes": { "weight": 4 } }, { "key": "10066", "source": "103", "target": "369", "attributes": { "weight": 1 } }, { "key": "8478", "source": "103", "target": "442", "attributes": { "weight": 1 } }, { "key": "14018", "source": "103", "target": "1031", "attributes": { "weight": 1 } }, { "key": "21633", "source": "103", "target": "1491", "attributes": { "weight": 2 } }, { "key": "24864", "source": "103", "target": "1506", "attributes": { "weight": 1 } }, { "key": "21628", "source": "103", "target": "1261", "attributes": { "weight": 2 } }, { "key": "7847", "source": "103", "target": "1505", "attributes": { "weight": 3 } }, { "key": "15554", "source": "103", "target": "195", "attributes": { "weight": 1 } }, { "key": "21635", "source": "103", "target": "1495", "attributes": { "weight": 3 } }, { "key": "21625", "source": "103", "target": "110", "attributes": { "weight": 3 } }, { "key": "28879", "source": "103", "target": "1432", "attributes": { "weight": 1 } }, { "key": "21627", "source": "103", "target": "1466", "attributes": { "weight": 3 } }, { "key": "21622", "source": "103", "target": "604", "attributes": { "weight": 3 } }, { "key": "21624", "source": "103", "target": "108", "attributes": { "weight": 3 } }, { "key": "21620", "source": "103", "target": "1445", "attributes": { "weight": 3 } }, { "key": "21630", "source": "103", "target": "1478", "attributes": { "weight": 3 } }, { "key": "32864", "source": "103", "target": "470", "attributes": { "weight": 1 } }, { "key": "28881", "source": "103", "target": "1464", "attributes": { "weight": 1 } }, { "key": "216", "source": "103", "target": "111", "attributes": { "weight": 1 } }, { "key": "37257", "source": "103", "target": "115", "attributes": { "weight": 1 } }, { "key": "21621", "source": "103", "target": "106", "attributes": { "weight": 3 } }, { "key": "28880", "source": "103", "target": "1459", "attributes": { "weight": 1 } }, { "key": "21623", "source": "103", "target": "1455", "attributes": { "weight": 3 } }, { "key": "7840", "source": "103", "target": "101", "attributes": { "weight": 1 } }, { "key": "4412", "source": "103", "target": "371", "attributes": { "weight": 3 } }, { "key": "21629", "source": "103", "target": "1473", "attributes": { "weight": 3 } }, { "key": "21619", "source": "103", "target": "1437", "attributes": { "weight": 2 } }, { "key": "7852", "source": "104", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7851", "source": "104", "target": "604", "attributes": { "weight": 1 } }, { "key": "218", "source": "104", "target": "109", "attributes": { "weight": 1 } }, { "key": "21642", "source": "105", "target": "108", "attributes": { "weight": 1 } }, { "key": "7864", "source": "105", "target": "1469", "attributes": { "weight": 1 } }, { "key": "7867", "source": "105", "target": "1490", "attributes": { "weight": 3 } }, { "key": "7863", "source": "105", "target": "1467", "attributes": { "weight": 2 } }, { "key": "7870", "source": "105", "target": "1505", "attributes": { "weight": 1 } }, { "key": "219", "source": "105", "target": "110", "attributes": { "weight": 3 } }, { "key": "7869", "source": "105", "target": "115", "attributes": { "weight": 1 } }, { "key": "7860", "source": "105", "target": "106", "attributes": { "weight": 3 } }, { "key": "7859", "source": "105", "target": "1440", "attributes": { "weight": 1 } }, { "key": "7858", "source": "105", "target": "103", "attributes": { "weight": 4 } }, { "key": "7857", "source": "105", "target": "1431", "attributes": { "weight": 1 } }, { "key": "7865", "source": "105", "target": "1475", "attributes": { "weight": 1 } }, { "key": "220", "source": "105", "target": "111", "attributes": { "weight": 2 } }, { "key": "7868", "source": "105", "target": "1493", "attributes": { "weight": 1 } }, { "key": "7862", "source": "105", "target": "109", "attributes": { "weight": 4 } }, { "key": "7866", "source": "105", "target": "1480", "attributes": { "weight": 1 } }, { "key": "7861", "source": "105", "target": "1186", "attributes": { "weight": 1 } }, { "key": "21641", "source": "105", "target": "1445", "attributes": { "weight": 2 } }, { "key": "7874", "source": "106", "target": "109", "attributes": { "weight": 3 } }, { "key": "7873", "source": "106", "target": "1449", "attributes": { "weight": 1 } }, { "key": "7875", "source": "106", "target": "1505", "attributes": { "weight": 1 } }, { "key": "28883", "source": "106", "target": "604", "attributes": { "weight": 1 } }, { "key": "7872", "source": "106", "target": "105", "attributes": { "weight": 3 } }, { "key": "21663", "source": "106", "target": "103", "attributes": { "weight": 3 } }, { "key": "221", "source": "106", "target": "107", "attributes": { "weight": 1 } }, { "key": "21664", "source": "106", "target": "1445", "attributes": { "weight": 2 } }, { "key": "21666", "source": "106", "target": "1475", "attributes": { "weight": 1 } }, { "key": "21665", "source": "106", "target": "108", "attributes": { "weight": 1 } }, { "key": "7920", "source": "107", "target": "1505", "attributes": { "weight": 1 } }, { "key": "223", "source": "107", "target": "109", "attributes": { "weight": 1 } }, { "key": "222", "source": "107", "target": "106", "attributes": { "weight": 1 } }, { "key": "21710", "source": "108", "target": "1306", "attributes": { "weight": 3 } }, { "key": "11875", "source": "108", "target": "468", "attributes": { "weight": 1 } }, { "key": "21700", "source": "108", "target": "1454", "attributes": { "weight": 3 } }, { "key": "5049", "source": "108", "target": "368", "attributes": { "weight": 3 } }, { "key": "21699", "source": "108", "target": "1186", "attributes": { "weight": 2 } }, { "key": "10670", "source": "108", "target": "43", "attributes": { "weight": 1 } }, { "key": "17883", "source": "108", "target": "109", "attributes": { "weight": 5 } }, { "key": "10106", "source": "108", "target": "602", "attributes": { "weight": 1 } }, { "key": "24876", "source": "108", "target": "601", "attributes": { "weight": 2 } }, { "key": "21709", "source": "108", "target": "607", "attributes": { "weight": 3 } }, { "key": "21704", "source": "108", "target": "1466", "attributes": { "weight": 3 } }, { "key": "21693", "source": "108", "target": "1432", "attributes": { "weight": 1 } }, { "key": "32877", "source": "108", "target": "470", "attributes": { "weight": 1 } }, { "key": "25862", "source": "108", "target": "220", "attributes": { "weight": 1 } }, { "key": "15801", "source": "108", "target": "195", "attributes": { "weight": 2 } }, { "key": "7934", "source": "108", "target": "1505", "attributes": { "weight": 3 } }, { "key": "21712", "source": "108", "target": "116", "attributes": { "weight": 3 } }, { "key": "21706", "source": "108", "target": "1473", "attributes": { "weight": 2 } }, { "key": "21694", "source": "108", "target": "1437", "attributes": { "weight": 2 } }, { "key": "5051", "source": "108", "target": "371", "attributes": { "weight": 3 } }, { "key": "8745", "source": "108", "target": "604", "attributes": { "weight": 4 } }, { "key": "10671", "source": "108", "target": "30", "attributes": { "weight": 2 } }, { "key": "21701", "source": "108", "target": "1455", "attributes": { "weight": 3 } }, { "key": "14031", "source": "108", "target": "1031", "attributes": { "weight": 1 } }, { "key": "21697", "source": "108", "target": "1445", "attributes": { "weight": 2 } }, { "key": "24875", "source": "108", "target": "454", "attributes": { "weight": 2 } }, { "key": "11137", "source": "108", "target": "452", "attributes": { "weight": 1 } }, { "key": "21698", "source": "108", "target": "106", "attributes": { "weight": 1 } }, { "key": "21713", "source": "108", "target": "1506", "attributes": { "weight": 2 } }, { "key": "21705", "source": "108", "target": "1261", "attributes": { "weight": 2 } }, { "key": "5048", "source": "108", "target": "779", "attributes": { "weight": 2 } }, { "key": "224", "source": "108", "target": "114", "attributes": { "weight": 1 } }, { "key": "32878", "source": "108", "target": "1744", "attributes": { "weight": 1 } }, { "key": "21708", "source": "108", "target": "1479", "attributes": { "weight": 1 } }, { "key": "21707", "source": "108", "target": "1478", "attributes": { "weight": 2 } }, { "key": "21695", "source": "108", "target": "103", "attributes": { "weight": 3 } }, { "key": "1985", "source": "108", "target": "605", "attributes": { "weight": 1 } }, { "key": "24058", "source": "108", "target": "471", "attributes": { "weight": 1 } }, { "key": "21703", "source": "108", "target": "1457", "attributes": { "weight": 2 } }, { "key": "17459", "source": "108", "target": "358", "attributes": { "weight": 1 } }, { "key": "8744", "source": "108", "target": "442", "attributes": { "weight": 1 } }, { "key": "21702", "source": "108", "target": "110", "attributes": { "weight": 1 } }, { "key": "21711", "source": "108", "target": "1498", "attributes": { "weight": 2 } }, { "key": "34182", "source": "108", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5050", "source": "108", "target": "370", "attributes": { "weight": 3 } }, { "key": "10107", "source": "108", "target": "369", "attributes": { "weight": 6 } }, { "key": "21696", "source": "108", "target": "105", "attributes": { "weight": 1 } }, { "key": "15802", "source": "108", "target": "254", "attributes": { "weight": 2 } }, { "key": "16437", "source": "108", "target": "1387", "attributes": { "weight": 1 } }, { "key": "21726", "source": "109", "target": "1469", "attributes": { "weight": 2 } }, { "key": "17461", "source": "109", "target": "358", "attributes": { "weight": 1 } }, { "key": "34193", "source": "109", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5069", "source": "109", "target": "370", "attributes": { "weight": 5 } }, { "key": "31466", "source": "109", "target": "130", "attributes": { "weight": 1 } }, { "key": "11140", "source": "109", "target": "452", "attributes": { "weight": 1 } }, { "key": "21733", "source": "109", "target": "1502", "attributes": { "weight": 2 } }, { "key": "27239", "source": "109", "target": "57", "attributes": { "weight": 1 } }, { "key": "7948", "source": "109", "target": "1495", "attributes": { "weight": 2 } }, { "key": "7945", "source": "109", "target": "112", "attributes": { "weight": 1 } }, { "key": "21727", "source": "109", "target": "1261", "attributes": { "weight": 2 } }, { "key": "14032", "source": "109", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10672", "source": "109", "target": "43", "attributes": { "weight": 3 } }, { "key": "8754", "source": "109", "target": "442", "attributes": { "weight": 2 } }, { "key": "28887", "source": "109", "target": "1484", "attributes": { "weight": 1 } }, { "key": "10673", "source": "109", "target": "30", "attributes": { "weight": 4 } }, { "key": "24877", "source": "109", "target": "2543", "attributes": { "weight": 2 } }, { "key": "226", "source": "109", "target": "107", "attributes": { "weight": 1 } }, { "key": "23154", "source": "109", "target": "601", "attributes": { "weight": 3 } }, { "key": "24880", "source": "109", "target": "1465", "attributes": { "weight": 1 } }, { "key": "21720", "source": "109", "target": "872", "attributes": { "weight": 1 } }, { "key": "32880", "source": "109", "target": "1744", "attributes": { "weight": 1 } }, { "key": "18059", "source": "109", "target": "1036", "attributes": { "weight": 1 } }, { "key": "21718", "source": "109", "target": "1438", "attributes": { "weight": 2 } }, { "key": "7939", "source": "109", "target": "1186", "attributes": { "weight": 3 } }, { "key": "5068", "source": "109", "target": "368", "attributes": { "weight": 3 } }, { "key": "21719", "source": "109", "target": "778", "attributes": { "weight": 2 } }, { "key": "7300", "source": "109", "target": "1063", "attributes": { "weight": 2 } }, { "key": "21725", "source": "109", "target": "1466", "attributes": { "weight": 2 } }, { "key": "15813", "source": "109", "target": "254", "attributes": { "weight": 2 } }, { "key": "7937", "source": "109", "target": "105", "attributes": { "weight": 4 } }, { "key": "25864", "source": "109", "target": "220", "attributes": { "weight": 1 } }, { "key": "5070", "source": "109", "target": "338", "attributes": { "weight": 3 } }, { "key": "9772", "source": "109", "target": "396", "attributes": { "weight": 2 } }, { "key": "21729", "source": "109", "target": "1475", "attributes": { "weight": 1 } }, { "key": "24879", "source": "109", "target": "638", "attributes": { "weight": 2 } }, { "key": "15812", "source": "109", "target": "913", "attributes": { "weight": 2 } }, { "key": "32879", "source": "109", "target": "470", "attributes": { "weight": 1 } }, { "key": "21722", "source": "109", "target": "1455", "attributes": { "weight": 3 } }, { "key": "21728", "source": "109", "target": "1473", "attributes": { "weight": 3 } }, { "key": "34194", "source": "109", "target": "1233", "attributes": { "weight": 1 } }, { "key": "21734", "source": "109", "target": "1506", "attributes": { "weight": 2 } }, { "key": "229", "source": "109", "target": "118", "attributes": { "weight": 3 } }, { "key": "17711", "source": "109", "target": "48", "attributes": { "weight": 1 } }, { "key": "24882", "source": "109", "target": "473", "attributes": { "weight": 1 } }, { "key": "15811", "source": "109", "target": "195", "attributes": { "weight": 1 } }, { "key": "10109", "source": "109", "target": "369", "attributes": { "weight": 7 } }, { "key": "7938", "source": "109", "target": "106", "attributes": { "weight": 3 } }, { "key": "21735", "source": "109", "target": "1349", "attributes": { "weight": 2 } }, { "key": "21716", "source": "109", "target": "1437", "attributes": { "weight": 2 } }, { "key": "11882", "source": "109", "target": "468", "attributes": { "weight": 2 } }, { "key": "225", "source": "109", "target": "104", "attributes": { "weight": 1 } }, { "key": "32384", "source": "109", "target": "791", "attributes": { "weight": 1 } }, { "key": "21717", "source": "109", "target": "1158", "attributes": { "weight": 1 } }, { "key": "21730", "source": "109", "target": "1478", "attributes": { "weight": 3 } }, { "key": "7941", "source": "109", "target": "110", "attributes": { "weight": 3 } }, { "key": "227", "source": "109", "target": "114", "attributes": { "weight": 3 } }, { "key": "24883", "source": "109", "target": "115", "attributes": { "weight": 1 } }, { "key": "28904", "source": "109", "target": "1096", "attributes": { "weight": 1 } }, { "key": "34195", "source": "109", "target": "123", "attributes": { "weight": 1 } }, { "key": "5072", "source": "109", "target": "371", "attributes": { "weight": 3 } }, { "key": "24878", "source": "109", "target": "454", "attributes": { "weight": 2 } }, { "key": "16438", "source": "109", "target": "1387", "attributes": { "weight": 1 } }, { "key": "7942", "source": "109", "target": "1459", "attributes": { "weight": 1 } }, { "key": "13071", "source": "109", "target": "471", "attributes": { "weight": 5 } }, { "key": "5067", "source": "109", "target": "779", "attributes": { "weight": 2 } }, { "key": "28886", "source": "109", "target": "1464", "attributes": { "weight": 1 } }, { "key": "7935", "source": "109", "target": "1434", "attributes": { "weight": 1 } }, { "key": "21721", "source": "109", "target": "1454", "attributes": { "weight": 3 } }, { "key": "21732", "source": "109", "target": "1498", "attributes": { "weight": 2 } }, { "key": "7940", "source": "109", "target": "604", "attributes": { "weight": 4 } }, { "key": "21723", "source": "109", "target": "108", "attributes": { "weight": 4 } }, { "key": "7949", "source": "109", "target": "116", "attributes": { "weight": 4 } }, { "key": "7947", "source": "109", "target": "1306", "attributes": { "weight": 4 } }, { "key": "228", "source": "109", "target": "117", "attributes": { "weight": 1 } }, { "key": "21714", "source": "109", "target": "1432", "attributes": { "weight": 2 } }, { "key": "230", "source": "109", "target": "119", "attributes": { "weight": 1 } }, { "key": "24881", "source": "109", "target": "189", "attributes": { "weight": 2 } }, { "key": "10108", "source": "109", "target": "602", "attributes": { "weight": 3 } }, { "key": "1986", "source": "109", "target": "605", "attributes": { "weight": 5 } }, { "key": "7944", "source": "109", "target": "1479", "attributes": { "weight": 2 } }, { "key": "10493", "source": "109", "target": "225", "attributes": { "weight": 1 } }, { "key": "21724", "source": "109", "target": "1457", "attributes": { "weight": 2 } }, { "key": "7946", "source": "109", "target": "607", "attributes": { "weight": 4 } }, { "key": "21715", "source": "109", "target": "603", "attributes": { "weight": 3 } }, { "key": "34192", "source": "109", "target": "1047", "attributes": { "weight": 1 } }, { "key": "5071", "source": "109", "target": "208", "attributes": { "weight": 2 } }, { "key": "7936", "source": "109", "target": "103", "attributes": { "weight": 4 } }, { "key": "17887", "source": "109", "target": "40", "attributes": { "weight": 1 } }, { "key": "30445", "source": "109", "target": "1046", "attributes": { "weight": 1 } }, { "key": "21731", "source": "109", "target": "882", "attributes": { "weight": 2 } }, { "key": "7943", "source": "109", "target": "1460", "attributes": { "weight": 1 } }, { "key": "21738", "source": "110", "target": "108", "attributes": { "weight": 1 } }, { "key": "7952", "source": "110", "target": "109", "attributes": { "weight": 3 } }, { "key": "7953", "source": "110", "target": "1495", "attributes": { "weight": 1 } }, { "key": "7954", "source": "110", "target": "1505", "attributes": { "weight": 1 } }, { "key": "232", "source": "110", "target": "113", "attributes": { "weight": 2 } }, { "key": "21737", "source": "110", "target": "1445", "attributes": { "weight": 2 } }, { "key": "21736", "source": "110", "target": "103", "attributes": { "weight": 2 } }, { "key": "234", "source": "110", "target": "118", "attributes": { "weight": 2 } }, { "key": "233", "source": "110", "target": "114", "attributes": { "weight": 2 } }, { "key": "7951", "source": "110", "target": "1186", "attributes": { "weight": 2 } }, { "key": "231", "source": "110", "target": "105", "attributes": { "weight": 3 } }, { "key": "235", "source": "111", "target": "103", "attributes": { "weight": 1 } }, { "key": "236", "source": "111", "target": "105", "attributes": { "weight": 2 } }, { "key": "8041", "source": "112", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8038", "source": "112", "target": "1488", "attributes": { "weight": 1 } }, { "key": "8037", "source": "112", "target": "1477", "attributes": { "weight": 1 } }, { "key": "8040", "source": "112", "target": "118", "attributes": { "weight": 1 } }, { "key": "8033", "source": "112", "target": "1444", "attributes": { "weight": 1 } }, { "key": "8042", "source": "112", "target": "119", "attributes": { "weight": 1 } }, { "key": "8039", "source": "112", "target": "1496", "attributes": { "weight": 1 } }, { "key": "8035", "source": "112", "target": "1456", "attributes": { "weight": 1 } }, { "key": "8034", "source": "112", "target": "109", "attributes": { "weight": 1 } }, { "key": "8036", "source": "112", "target": "1460", "attributes": { "weight": 1 } }, { "key": "237", "source": "112", "target": "114", "attributes": { "weight": 2 } }, { "key": "8032", "source": "112", "target": "1430", "attributes": { "weight": 1 } }, { "key": "238", "source": "113", "target": "101", "attributes": { "weight": 2 } }, { "key": "239", "source": "113", "target": "110", "attributes": { "weight": 2 } }, { "key": "8043", "source": "113", "target": "103", "attributes": { "weight": 3 } }, { "key": "8065", "source": "114", "target": "1505", "attributes": { "weight": 1 } }, { "key": "24896", "source": "114", "target": "1445", "attributes": { "weight": 1 } }, { "key": "37260", "source": "114", "target": "1495", "attributes": { "weight": 1 } }, { "key": "241", "source": "114", "target": "108", "attributes": { "weight": 1 } }, { "key": "240", "source": "114", "target": "103", "attributes": { "weight": 2 } }, { "key": "37259", "source": "114", "target": "604", "attributes": { "weight": 1 } }, { "key": "243", "source": "114", "target": "110", "attributes": { "weight": 2 } }, { "key": "244", "source": "114", "target": "112", "attributes": { "weight": 2 } }, { "key": "246", "source": "114", "target": "118", "attributes": { "weight": 1 } }, { "key": "242", "source": "114", "target": "109", "attributes": { "weight": 3 } }, { "key": "8064", "source": "114", "target": "1186", "attributes": { "weight": 1 } }, { "key": "245", "source": "114", "target": "115", "attributes": { "weight": 3 } }, { "key": "247", "source": "115", "target": "114", "attributes": { "weight": 3 } }, { "key": "8095", "source": "115", "target": "105", "attributes": { "weight": 1 } }, { "key": "24902", "source": "115", "target": "109", "attributes": { "weight": 1 } }, { "key": "24901", "source": "115", "target": "1445", "attributes": { "weight": 1 } }, { "key": "37262", "source": "115", "target": "103", "attributes": { "weight": 1 } }, { "key": "8096", "source": "115", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21795", "source": "116", "target": "1473", "attributes": { "weight": 2 } }, { "key": "248", "source": "116", "target": "102", "attributes": { "weight": 3 } }, { "key": "21791", "source": "116", "target": "1445", "attributes": { "weight": 3 } }, { "key": "7203", "source": "116", "target": "1379", "attributes": { "weight": 1 } }, { "key": "8104", "source": "116", "target": "1459", "attributes": { "weight": 3 } }, { "key": "21790", "source": "116", "target": "103", "attributes": { "weight": 3 } }, { "key": "8108", "source": "116", "target": "1306", "attributes": { "weight": 4 } }, { "key": "35218", "source": "116", "target": "601", "attributes": { "weight": 1 } }, { "key": "6404", "source": "116", "target": "371", "attributes": { "weight": 3 } }, { "key": "249", "source": "116", "target": "119", "attributes": { "weight": 3 } }, { "key": "8100", "source": "116", "target": "1432", "attributes": { "weight": 4 } }, { "key": "21796", "source": "116", "target": "1478", "attributes": { "weight": 1 } }, { "key": "21794", "source": "116", "target": "108", "attributes": { "weight": 3 } }, { "key": "32934", "source": "116", "target": "470", "attributes": { "weight": 1 } }, { "key": "8103", "source": "116", "target": "109", "attributes": { "weight": 4 } }, { "key": "8105", "source": "116", "target": "1466", "attributes": { "weight": 1 } }, { "key": "35217", "source": "116", "target": "471", "attributes": { "weight": 1 } }, { "key": "8107", "source": "116", "target": "1482", "attributes": { "weight": 1 } }, { "key": "28896", "source": "116", "target": "1487", "attributes": { "weight": 1 } }, { "key": "15371", "source": "116", "target": "454", "attributes": { "weight": 1 } }, { "key": "8106", "source": "116", "target": "1470", "attributes": { "weight": 1 } }, { "key": "8102", "source": "116", "target": "1186", "attributes": { "weight": 3 } }, { "key": "24903", "source": "116", "target": "604", "attributes": { "weight": 1 } }, { "key": "21792", "source": "116", "target": "1450", "attributes": { "weight": 1 } }, { "key": "8109", "source": "116", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8110", "source": "116", "target": "1506", "attributes": { "weight": 2 } }, { "key": "28897", "source": "116", "target": "1495", "attributes": { "weight": 1 } }, { "key": "21793", "source": "116", "target": "1455", "attributes": { "weight": 2 } }, { "key": "8101", "source": "116", "target": "1438", "attributes": { "weight": 2 } }, { "key": "8130", "source": "117", "target": "1505", "attributes": { "weight": 1 } }, { "key": "251", "source": "117", "target": "118", "attributes": { "weight": 1 } }, { "key": "250", "source": "117", "target": "109", "attributes": { "weight": 1 } }, { "key": "8129", "source": "117", "target": "1186", "attributes": { "weight": 1 } }, { "key": "8133", "source": "118", "target": "112", "attributes": { "weight": 1 } }, { "key": "254", "source": "118", "target": "114", "attributes": { "weight": 1 } }, { "key": "253", "source": "118", "target": "110", "attributes": { "weight": 2 } }, { "key": "252", "source": "118", "target": "109", "attributes": { "weight": 3 } }, { "key": "21799", "source": "118", "target": "1445", "attributes": { "weight": 2 } }, { "key": "8131", "source": "118", "target": "103", "attributes": { "weight": 2 } }, { "key": "255", "source": "118", "target": "117", "attributes": { "weight": 1 } }, { "key": "8134", "source": "118", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8132", "source": "118", "target": "1186", "attributes": { "weight": 2 } }, { "key": "8186", "source": "119", "target": "112", "attributes": { "weight": 1 } }, { "key": "257", "source": "119", "target": "116", "attributes": { "weight": 3 } }, { "key": "8185", "source": "119", "target": "1186", "attributes": { "weight": 1 } }, { "key": "256", "source": "119", "target": "109", "attributes": { "weight": 1 } }, { "key": "258", "source": "120", "target": "123", "attributes": { "weight": 1 } }, { "key": "259", "source": "120", "target": "124", "attributes": { "weight": 1 } }, { "key": "260", "source": "121", "target": "123", "attributes": { "weight": 1 } }, { "key": "261", "source": "121", "target": "124", "attributes": { "weight": 1 } }, { "key": "262", "source": "122", "target": "124", "attributes": { "weight": 1 } }, { "key": "5913", "source": "123", "target": "377", "attributes": { "weight": 5 } }, { "key": "5826", "source": "123", "target": "183", "attributes": { "weight": 8 } }, { "key": "5894", "source": "123", "target": "1326", "attributes": { "weight": 2 } }, { "key": "5910", "source": "123", "target": "1351", "attributes": { "weight": 2 } }, { "key": "5828", "source": "123", "target": "914", "attributes": { "weight": 2 } }, { "key": "34607", "source": "123", "target": "1275", "attributes": { "weight": 1 } }, { "key": "26164", "source": "123", "target": "1214", "attributes": { "weight": 1 } }, { "key": "5887", "source": "123", "target": "215", "attributes": { "weight": 4 } }, { "key": "5839", "source": "123", "target": "945", "attributes": { "weight": 3 } }, { "key": "5863", "source": "123", "target": "1269", "attributes": { "weight": 3 } }, { "key": "5852", "source": "123", "target": "1257", "attributes": { "weight": 2 } }, { "key": "5825", "source": "123", "target": "449", "attributes": { "weight": 7 } }, { "key": "34606", "source": "123", "target": "3153", "attributes": { "weight": 1 } }, { "key": "34583", "source": "123", "target": "1167", "attributes": { "weight": 1 } }, { "key": "5862", "source": "123", "target": "371", "attributes": { "weight": 3 } }, { "key": "28597", "source": "123", "target": "2780", "attributes": { "weight": 2 } }, { "key": "31341", "source": "123", "target": "59", "attributes": { "weight": 1 } }, { "key": "5853", "source": "123", "target": "471", "attributes": { "weight": 4 } }, { "key": "5880", "source": "123", "target": "305", "attributes": { "weight": 5 } }, { "key": "10252", "source": "123", "target": "711", "attributes": { "weight": 2 } }, { "key": "34609", "source": "123", "target": "1281", "attributes": { "weight": 1 } }, { "key": "34618", "source": "123", "target": "1316", "attributes": { "weight": 1 } }, { "key": "34617", "source": "123", "target": "927", "attributes": { "weight": 1 } }, { "key": "34591", "source": "123", "target": "911", "attributes": { "weight": 1 } }, { "key": "16175", "source": "123", "target": "220", "attributes": { "weight": 4 } }, { "key": "34584", "source": "123", "target": "1171", "attributes": { "weight": 1 } }, { "key": "9875", "source": "123", "target": "390", "attributes": { "weight": 2 } }, { "key": "34592", "source": "123", "target": "2032", "attributes": { "weight": 1 } }, { "key": "5832", "source": "123", "target": "199", "attributes": { "weight": 4 } }, { "key": "28599", "source": "123", "target": "1284", "attributes": { "weight": 1 } }, { "key": "34582", "source": "123", "target": "1162", "attributes": { "weight": 1 } }, { "key": "31428", "source": "123", "target": "223", "attributes": { "weight": 2 } }, { "key": "34610", "source": "123", "target": "1285", "attributes": { "weight": 1 } }, { "key": "5811", "source": "123", "target": "1184", "attributes": { "weight": 3 } }, { "key": "34597", "source": "123", "target": "917", "attributes": { "weight": 1 } }, { "key": "5794", "source": "123", "target": "1150", "attributes": { "weight": 2 } }, { "key": "16176", "source": "123", "target": "278", "attributes": { "weight": 3 } }, { "key": "5848", "source": "123", "target": "920", "attributes": { "weight": 3 } }, { "key": "34616", "source": "123", "target": "1303", "attributes": { "weight": 1 } }, { "key": "5801", "source": "123", "target": "1165", "attributes": { "weight": 3 } }, { "key": "9517", "source": "123", "target": "419", "attributes": { "weight": 1 } }, { "key": "5846", "source": "123", "target": "337", "attributes": { "weight": 4 } }, { "key": "5831", "source": "123", "target": "452", "attributes": { "weight": 7 } }, { "key": "34598", "source": "123", "target": "918", "attributes": { "weight": 1 } }, { "key": "34615", "source": "123", "target": "1792", "attributes": { "weight": 1 } }, { "key": "5864", "source": "123", "target": "1271", "attributes": { "weight": 3 } }, { "key": "5818", "source": "123", "target": "1195", "attributes": { "weight": 2 } }, { "key": "14058", "source": "123", "target": "1031", "attributes": { "weight": 2 } }, { "key": "34626", "source": "123", "target": "963", "attributes": { "weight": 1 } }, { "key": "5857", "source": "123", "target": "208", "attributes": { "weight": 4 } }, { "key": "34614", "source": "123", "target": "1301", "attributes": { "weight": 1 } }, { "key": "5833", "source": "123", "target": "1210", "attributes": { "weight": 2 } }, { "key": "5900", "source": "123", "target": "1336", "attributes": { "weight": 2 } }, { "key": "5866", "source": "123", "target": "1278", "attributes": { "weight": 3 } }, { "key": "34604", "source": "123", "target": "922", "attributes": { "weight": 1 } }, { "key": "5901", "source": "123", "target": "928", "attributes": { "weight": 3 } }, { "key": "5840", "source": "123", "target": "1229", "attributes": { "weight": 3 } }, { "key": "5813", "source": "123", "target": "1189", "attributes": { "weight": 2 } }, { "key": "34586", "source": "123", "target": "1175", "attributes": { "weight": 1 } }, { "key": "34596", "source": "123", "target": "109", "attributes": { "weight": 1 } }, { "key": "26922", "source": "123", "target": "497", "attributes": { "weight": 1 } }, { "key": "34602", "source": "123", "target": "919", "attributes": { "weight": 1 } }, { "key": "263", "source": "123", "target": "120", "attributes": { "weight": 1 } }, { "key": "5890", "source": "123", "target": "1321", "attributes": { "weight": 3 } }, { "key": "5799", "source": "123", "target": "1156", "attributes": { "weight": 3 } }, { "key": "27285", "source": "123", "target": "57", "attributes": { "weight": 2 } }, { "key": "5899", "source": "123", "target": "124", "attributes": { "weight": 3 } }, { "key": "34590", "source": "123", "target": "1188", "attributes": { "weight": 1 } }, { "key": "26727", "source": "123", "target": "189", "attributes": { "weight": 2 } }, { "key": "5845", "source": "123", "target": "370", "attributes": { "weight": 5 } }, { "key": "5893", "source": "123", "target": "1324", "attributes": { "weight": 3 } }, { "key": "5796", "source": "123", "target": "1036", "attributes": { "weight": 2 } }, { "key": "34625", "source": "123", "target": "2307", "attributes": { "weight": 1 } }, { "key": "5891", "source": "123", "target": "1322", "attributes": { "weight": 4 } }, { "key": "5882", "source": "123", "target": "1305", "attributes": { "weight": 3 } }, { "key": "7364", "source": "123", "target": "373", "attributes": { "weight": 2 } }, { "key": "5902", "source": "123", "target": "1339", "attributes": { "weight": 2 } }, { "key": "5875", "source": "123", "target": "1090", "attributes": { "weight": 3 } }, { "key": "5829", "source": "123", "target": "1047", "attributes": { "weight": 3 } }, { "key": "5871", "source": "123", "target": "1287", "attributes": { "weight": 3 } }, { "key": "5803", "source": "123", "target": "1172", "attributes": { "weight": 3 } }, { "key": "34605", "source": "123", "target": "1268", "attributes": { "weight": 1 } }, { "key": "5906", "source": "123", "target": "1344", "attributes": { "weight": 3 } }, { "key": "5838", "source": "123", "target": "168", "attributes": { "weight": 3 } }, { "key": "5810", "source": "123", "target": "779", "attributes": { "weight": 3 } }, { "key": "5836", "source": "123", "target": "1222", "attributes": { "weight": 3 } }, { "key": "5881", "source": "123", "target": "403", "attributes": { "weight": 4 } }, { "key": "34613", "source": "123", "target": "214", "attributes": { "weight": 1 } }, { "key": "5814", "source": "123", "target": "387", "attributes": { "weight": 3 } }, { "key": "7369", "source": "123", "target": "625", "attributes": { "weight": 2 } }, { "key": "5860", "source": "123", "target": "396", "attributes": { "weight": 6 } }, { "key": "264", "source": "123", "target": "121", "attributes": { "weight": 1 } }, { "key": "34623", "source": "123", "target": "3413", "attributes": { "weight": 1 } }, { "key": "5824", "source": "123", "target": "913", "attributes": { "weight": 4 } }, { "key": "5847", "source": "123", "target": "338", "attributes": { "weight": 6 } }, { "key": "5815", "source": "123", "target": "912", "attributes": { "weight": 4 } }, { "key": "5859", "source": "123", "target": "924", "attributes": { "weight": 4 } }, { "key": "34620", "source": "123", "target": "1320", "attributes": { "weight": 1 } }, { "key": "5835", "source": "123", "target": "915", "attributes": { "weight": 3 } }, { "key": "5884", "source": "123", "target": "1308", "attributes": { "weight": 2 } }, { "key": "34581", "source": "123", "target": "1154", "attributes": { "weight": 1 } }, { "key": "5912", "source": "123", "target": "333", "attributes": { "weight": 5 } }, { "key": "5843", "source": "123", "target": "1236", "attributes": { "weight": 3 } }, { "key": "34588", "source": "123", "target": "1180", "attributes": { "weight": 1 } }, { "key": "5791", "source": "123", "target": "1140", "attributes": { "weight": 3 } }, { "key": "5885", "source": "123", "target": "1309", "attributes": { "weight": 3 } }, { "key": "5797", "source": "123", "target": "1152", "attributes": { "weight": 3 } }, { "key": "7367", "source": "123", "target": "149", "attributes": { "weight": 2 } }, { "key": "26726", "source": "123", "target": "454", "attributes": { "weight": 2 } }, { "key": "5904", "source": "123", "target": "1342", "attributes": { "weight": 3 } }, { "key": "34579", "source": "123", "target": "1519", "attributes": { "weight": 1 } }, { "key": "5842", "source": "123", "target": "1234", "attributes": { "weight": 3 } }, { "key": "5872", "source": "123", "target": "212", "attributes": { "weight": 2 } }, { "key": "5897", "source": "123", "target": "1329", "attributes": { "weight": 4 } }, { "key": "34585", "source": "123", "target": "1681", "attributes": { "weight": 1 } }, { "key": "5798", "source": "123", "target": "909", "attributes": { "weight": 2 } }, { "key": "7365", "source": "123", "target": "1350", "attributes": { "weight": 2 } }, { "key": "5792", "source": "123", "target": "1147", "attributes": { "weight": 2 } }, { "key": "5909", "source": "123", "target": "931", "attributes": { "weight": 3 } }, { "key": "34624", "source": "123", "target": "1333", "attributes": { "weight": 1 } }, { "key": "34619", "source": "123", "target": "1563", "attributes": { "weight": 1 } }, { "key": "5895", "source": "123", "target": "406", "attributes": { "weight": 4 } }, { "key": "5886", "source": "123", "target": "1311", "attributes": { "weight": 2 } }, { "key": "7366", "source": "123", "target": "375", "attributes": { "weight": 2 } }, { "key": "5816", "source": "123", "target": "1192", "attributes": { "weight": 3 } }, { "key": "34594", "source": "123", "target": "1200", "attributes": { "weight": 1 } }, { "key": "5896", "source": "123", "target": "961", "attributes": { "weight": 4 } }, { "key": "5793", "source": "123", "target": "889", "attributes": { "weight": 3 } }, { "key": "5898", "source": "123", "target": "408", "attributes": { "weight": 3 } }, { "key": "5800", "source": "123", "target": "1164", "attributes": { "weight": 2 } }, { "key": "34611", "source": "123", "target": "1289", "attributes": { "weight": 1 } }, { "key": "5879", "source": "123", "target": "1300", "attributes": { "weight": 2 } }, { "key": "5856", "source": "123", "target": "1263", "attributes": { "weight": 3 } }, { "key": "7370", "source": "123", "target": "1419", "attributes": { "weight": 2 } }, { "key": "5867", "source": "123", "target": "925", "attributes": { "weight": 5 } }, { "key": "5855", "source": "123", "target": "1262", "attributes": { "weight": 3 } }, { "key": "5804", "source": "123", "target": "1174", "attributes": { "weight": 3 } }, { "key": "5806", "source": "123", "target": "910", "attributes": { "weight": 2 } }, { "key": "5807", "source": "123", "target": "1179", "attributes": { "weight": 2 } }, { "key": "5808", "source": "123", "target": "1181", "attributes": { "weight": 3 } }, { "key": "5822", "source": "123", "target": "1046", "attributes": { "weight": 2 } }, { "key": "5820", "source": "123", "target": "1197", "attributes": { "weight": 4 } }, { "key": "5870", "source": "123", "target": "1286", "attributes": { "weight": 3 } }, { "key": "5876", "source": "123", "target": "1294", "attributes": { "weight": 3 } }, { "key": "5851", "source": "123", "target": "1255", "attributes": { "weight": 3 } }, { "key": "5827", "source": "123", "target": "1201", "attributes": { "weight": 2 } }, { "key": "34622", "source": "123", "target": "1331", "attributes": { "weight": 1 } }, { "key": "10732", "source": "123", "target": "1314", "attributes": { "weight": 1 } }, { "key": "5889", "source": "123", "target": "405", "attributes": { "weight": 3 } }, { "key": "34599", "source": "123", "target": "1227", "attributes": { "weight": 1 } }, { "key": "5849", "source": "123", "target": "921", "attributes": { "weight": 5 } }, { "key": "29045", "source": "123", "target": "495", "attributes": { "weight": 2 } }, { "key": "5892", "source": "123", "target": "1323", "attributes": { "weight": 5 } }, { "key": "18262", "source": "123", "target": "372", "attributes": { "weight": 2 } }, { "key": "34628", "source": "123", "target": "1417", "attributes": { "weight": 1 } }, { "key": "34595", "source": "123", "target": "3142", "attributes": { "weight": 1 } }, { "key": "5841", "source": "123", "target": "1233", "attributes": { "weight": 4 } }, { "key": "34589", "source": "123", "target": "3137", "attributes": { "weight": 1 } }, { "key": "34580", "source": "123", "target": "1153", "attributes": { "weight": 1 } }, { "key": "5844", "source": "123", "target": "205", "attributes": { "weight": 3 } }, { "key": "34627", "source": "123", "target": "257", "attributes": { "weight": 1 } }, { "key": "34577", "source": "123", "target": "1138", "attributes": { "weight": 1 } }, { "key": "5888", "source": "123", "target": "1315", "attributes": { "weight": 4 } }, { "key": "5809", "source": "123", "target": "1182", "attributes": { "weight": 3 } }, { "key": "5869", "source": "123", "target": "580", "attributes": { "weight": 6 } }, { "key": "5819", "source": "123", "target": "1196", "attributes": { "weight": 3 } }, { "key": "5883", "source": "123", "target": "1307", "attributes": { "weight": 3 } }, { "key": "5878", "source": "123", "target": "1296", "attributes": { "weight": 3 } }, { "key": "5874", "source": "123", "target": "304", "attributes": { "weight": 5 } }, { "key": "28598", "source": "123", "target": "1279", "attributes": { "weight": 2 } }, { "key": "5877", "source": "123", "target": "1295", "attributes": { "weight": 3 } }, { "key": "5805", "source": "123", "target": "442", "attributes": { "weight": 10 } }, { "key": "5834", "source": "123", "target": "1211", "attributes": { "weight": 3 } }, { "key": "34621", "source": "123", "target": "407", "attributes": { "weight": 1 } }, { "key": "34578", "source": "123", "target": "933", "attributes": { "weight": 1 } }, { "key": "34608", "source": "123", "target": "399", "attributes": { "weight": 1 } }, { "key": "7368", "source": "123", "target": "1407", "attributes": { "weight": 2 } }, { "key": "5817", "source": "123", "target": "1194", "attributes": { "weight": 3 } }, { "key": "5861", "source": "123", "target": "1267", "attributes": { "weight": 2 } }, { "key": "5908", "source": "123", "target": "930", "attributes": { "weight": 3 } }, { "key": "34612", "source": "123", "target": "3156", "attributes": { "weight": 1 } }, { "key": "5907", "source": "123", "target": "193", "attributes": { "weight": 2 } }, { "key": "5865", "source": "123", "target": "1276", "attributes": { "weight": 2 } }, { "key": "5873", "source": "123", "target": "1291", "attributes": { "weight": 4 } }, { "key": "34600", "source": "123", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5914", "source": "123", "target": "1063", "attributes": { "weight": 6 } }, { "key": "5823", "source": "123", "target": "1199", "attributes": { "weight": 3 } }, { "key": "5795", "source": "123", "target": "195", "attributes": { "weight": 20 } }, { "key": "5850", "source": "123", "target": "468", "attributes": { "weight": 9 } }, { "key": "5837", "source": "123", "target": "1225", "attributes": { "weight": 3 } }, { "key": "5812", "source": "123", "target": "1185", "attributes": { "weight": 2 } }, { "key": "34587", "source": "123", "target": "1176", "attributes": { "weight": 1 } }, { "key": "34603", "source": "123", "target": "2043", "attributes": { "weight": 1 } }, { "key": "5830", "source": "123", "target": "1205", "attributes": { "weight": 3 } }, { "key": "5858", "source": "123", "target": "923", "attributes": { "weight": 3 } }, { "key": "31342", "source": "123", "target": "674", "attributes": { "weight": 1 } }, { "key": "5911", "source": "123", "target": "154", "attributes": { "weight": 6 } }, { "key": "32584", "source": "123", "target": "791", "attributes": { "weight": 2 } }, { "key": "5802", "source": "123", "target": "938", "attributes": { "weight": 5 } }, { "key": "34593", "source": "123", "target": "3139", "attributes": { "weight": 1 } }, { "key": "5821", "source": "123", "target": "368", "attributes": { "weight": 4 } }, { "key": "5903", "source": "123", "target": "218", "attributes": { "weight": 4 } }, { "key": "5905", "source": "123", "target": "1343", "attributes": { "weight": 2 } }, { "key": "5854", "source": "123", "target": "472", "attributes": { "weight": 5 } }, { "key": "5868", "source": "123", "target": "926", "attributes": { "weight": 13 } }, { "key": "34601", "source": "123", "target": "1241", "attributes": { "weight": 1 } }, { "key": "36735", "source": "124", "target": "1228", "attributes": { "weight": 1 } }, { "key": "16361", "source": "124", "target": "370", "attributes": { "weight": 1 } }, { "key": "18975", "source": "124", "target": "405", "attributes": { "weight": 2 } }, { "key": "9090", "source": "124", "target": "195", "attributes": { "weight": 8 } }, { "key": "6408", "source": "124", "target": "368", "attributes": { "weight": 3 } }, { "key": "6407", "source": "124", "target": "1196", "attributes": { "weight": 3 } }, { "key": "18972", "source": "124", "target": "1286", "attributes": { "weight": 2 } }, { "key": "3421", "source": "124", "target": "956", "attributes": { "weight": 1 } }, { "key": "6409", "source": "124", "target": "338", "attributes": { "weight": 5 } }, { "key": "6416", "source": "124", "target": "1322", "attributes": { "weight": 2 } }, { "key": "3420", "source": "124", "target": "953", "attributes": { "weight": 1 } }, { "key": "18962", "source": "124", "target": "1174", "attributes": { "weight": 2 } }, { "key": "6415", "source": "124", "target": "1296", "attributes": { "weight": 2 } }, { "key": "18289", "source": "124", "target": "387", "attributes": { "weight": 1 } }, { "key": "18970", "source": "124", "target": "1269", "attributes": { "weight": 2 } }, { "key": "18290", "source": "124", "target": "1197", "attributes": { "weight": 4 } }, { "key": "36738", "source": "124", "target": "1315", "attributes": { "weight": 1 } }, { "key": "18961", "source": "124", "target": "1165", "attributes": { "weight": 2 } }, { "key": "6406", "source": "124", "target": "779", "attributes": { "weight": 2 } }, { "key": "34808", "source": "124", "target": "1323", "attributes": { "weight": 1 } }, { "key": "3418", "source": "124", "target": "939", "attributes": { "weight": 1 } }, { "key": "18965", "source": "124", "target": "199", "attributes": { "weight": 2 } }, { "key": "265", "source": "124", "target": "120", "attributes": { "weight": 1 } }, { "key": "18971", "source": "124", "target": "926", "attributes": { "weight": 2 } }, { "key": "18969", "source": "124", "target": "1552", "attributes": { "weight": 2 } }, { "key": "3423", "source": "124", "target": "966", "attributes": { "weight": 1 } }, { "key": "6411", "source": "124", "target": "371", "attributes": { "weight": 2 } }, { "key": "18293", "source": "124", "target": "403", "attributes": { "weight": 1 } }, { "key": "18966", "source": "124", "target": "1225", "attributes": { "weight": 2 } }, { "key": "18973", "source": "124", "target": "1287", "attributes": { "weight": 2 } }, { "key": "3419", "source": "124", "target": "948", "attributes": { "weight": 1 } }, { "key": "36734", "source": "124", "target": "1532", "attributes": { "weight": 1 } }, { "key": "18976", "source": "124", "target": "218", "attributes": { "weight": 2 } }, { "key": "34805", "source": "124", "target": "1047", "attributes": { "weight": 2 } }, { "key": "18967", "source": "124", "target": "337", "attributes": { "weight": 2 } }, { "key": "3422", "source": "124", "target": "965", "attributes": { "weight": 1 } }, { "key": "36736", "source": "124", "target": "208", "attributes": { "weight": 1 } }, { "key": "18963", "source": "124", "target": "1184", "attributes": { "weight": 2 } }, { "key": "36733", "source": "124", "target": "938", "attributes": { "weight": 1 } }, { "key": "16362", "source": "124", "target": "925", "attributes": { "weight": 3 } }, { "key": "34806", "source": "124", "target": "1232", "attributes": { "weight": 1 } }, { "key": "36739", "source": "124", "target": "1342", "attributes": { "weight": 1 } }, { "key": "34804", "source": "124", "target": "1182", "attributes": { "weight": 1 } }, { "key": "18964", "source": "124", "target": "1526", "attributes": { "weight": 2 } }, { "key": "266", "source": "124", "target": "121", "attributes": { "weight": 1 } }, { "key": "16363", "source": "124", "target": "1329", "attributes": { "weight": 1 } }, { "key": "6412", "source": "124", "target": "123", "attributes": { "weight": 3 } }, { "key": "267", "source": "124", "target": "122", "attributes": { "weight": 1 } }, { "key": "18292", "source": "124", "target": "372", "attributes": { "weight": 1 } }, { "key": "34807", "source": "124", "target": "1233", "attributes": { "weight": 1 } }, { "key": "7407", "source": "124", "target": "1063", "attributes": { "weight": 2 } }, { "key": "18974", "source": "124", "target": "1305", "attributes": { "weight": 2 } }, { "key": "18968", "source": "124", "target": "1263", "attributes": { "weight": 2 } }, { "key": "6413", "source": "124", "target": "1090", "attributes": { "weight": 4 } }, { "key": "18291", "source": "124", "target": "1262", "attributes": { "weight": 1 } }, { "key": "16360", "source": "124", "target": "913", "attributes": { "weight": 3 } }, { "key": "6410", "source": "124", "target": "921", "attributes": { "weight": 4 } }, { "key": "36737", "source": "124", "target": "215", "attributes": { "weight": 1 } }, { "key": "16359", "source": "124", "target": "912", "attributes": { "weight": 1 } }, { "key": "6414", "source": "124", "target": "1294", "attributes": { "weight": 3 } }, { "key": "5245", "source": "128", "target": "1243", "attributes": { "weight": 2 } }, { "key": "25504", "source": "128", "target": "2593", "attributes": { "weight": 1 } }, { "key": "23879", "source": "128", "target": "2462", "attributes": { "weight": 1 } }, { "key": "10224", "source": "128", "target": "1700", "attributes": { "weight": 1 } }, { "key": "5246", "source": "128", "target": "1322", "attributes": { "weight": 3 } }, { "key": "10223", "source": "128", "target": "1697", "attributes": { "weight": 2 } }, { "key": "278", "source": "128", "target": "129", "attributes": { "weight": 3 } }, { "key": "279", "source": "129", "target": "128", "attributes": { "weight": 3 } }, { "key": "33025", "source": "130", "target": "493", "attributes": { "weight": 1 } }, { "key": "19254", "source": "130", "target": "227", "attributes": { "weight": 3 } }, { "key": "19275", "source": "130", "target": "499", "attributes": { "weight": 3 } }, { "key": "23991", "source": "130", "target": "500", "attributes": { "weight": 3 } }, { "key": "23981", "source": "130", "target": "480", "attributes": { "weight": 2 } }, { "key": "23969", "source": "130", "target": "1087", "attributes": { "weight": 2 } }, { "key": "16691", "source": "130", "target": "1118", "attributes": { "weight": 3 } }, { "key": "19257", "source": "130", "target": "54", "attributes": { "weight": 3 } }, { "key": "19244", "source": "130", "target": "221", "attributes": { "weight": 1 } }, { "key": "35200", "source": "130", "target": "3183", "attributes": { "weight": 1 } }, { "key": "23961", "source": "130", "target": "467", "attributes": { "weight": 2 } }, { "key": "23568", "source": "130", "target": "2248", "attributes": { "weight": 1 } }, { "key": "283", "source": "130", "target": "131", "attributes": { "weight": 3 } }, { "key": "23968", "source": "130", "target": "1367", "attributes": { "weight": 2 } }, { "key": "10594", "source": "130", "target": "43", "attributes": { "weight": 1 } }, { "key": "33194", "source": "130", "target": "2258", "attributes": { "weight": 1 } }, { "key": "1231", "source": "130", "target": "183", "attributes": { "weight": 4 } }, { "key": "23957", "source": "130", "target": "1024", "attributes": { "weight": 2 } }, { "key": "19268", "source": "130", "target": "1374", "attributes": { "weight": 3 } }, { "key": "19243", "source": "130", "target": "429", "attributes": { "weight": 3 } }, { "key": "19253", "source": "130", "target": "1832", "attributes": { "weight": 1 } }, { "key": "19270", "source": "130", "target": "492", "attributes": { "weight": 3 } }, { "key": "31461", "source": "130", "target": "109", "attributes": { "weight": 1 } }, { "key": "35798", "source": "130", "target": "1360", "attributes": { "weight": 1 } }, { "key": "23987", "source": "130", "target": "233", "attributes": { "weight": 2 } }, { "key": "19250", "source": "130", "target": "2244", "attributes": { "weight": 1 } }, { "key": "23944", "source": "130", "target": "439", "attributes": { "weight": 2 } }, { "key": "31462", "source": "130", "target": "178", "attributes": { "weight": 1 } }, { "key": "33195", "source": "130", "target": "1282", "attributes": { "weight": 1 } }, { "key": "18316", "source": "130", "target": "1092", "attributes": { "weight": 2 } }, { "key": "19251", "source": "130", "target": "2245", "attributes": { "weight": 1 } }, { "key": "12664", "source": "130", "target": "695", "attributes": { "weight": 1 } }, { "key": "19258", "source": "130", "target": "1836", "attributes": { "weight": 2 } }, { "key": "7214", "source": "130", "target": "1063", "attributes": { "weight": 2 } }, { "key": "16695", "source": "130", "target": "497", "attributes": { "weight": 5 } }, { "key": "23988", "source": "130", "target": "340", "attributes": { "weight": 4 } }, { "key": "11003", "source": "130", "target": "231", "attributes": { "weight": 6 } }, { "key": "23984", "source": "130", "target": "1130", "attributes": { "weight": 2 } }, { "key": "4331", "source": "130", "target": "371", "attributes": { "weight": 5 } }, { "key": "33192", "source": "130", "target": "2645", "attributes": { "weight": 1 } }, { "key": "23949", "source": "130", "target": "3", "attributes": { "weight": 3 } }, { "key": "19261", "source": "130", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19245", "source": "130", "target": "435", "attributes": { "weight": 2 } }, { "key": "23992", "source": "130", "target": "57", "attributes": { "weight": 3 } }, { "key": "29604", "source": "130", "target": "421", "attributes": { "weight": 1 } }, { "key": "19274", "source": "130", "target": "2276", "attributes": { "weight": 1 } }, { "key": "29605", "source": "130", "target": "1253", "attributes": { "weight": 1 } }, { "key": "23952", "source": "130", "target": "2466", "attributes": { "weight": 2 } }, { "key": "23958", "source": "130", "target": "1766", "attributes": { "weight": 2 } }, { "key": "8434", "source": "130", "target": "442", "attributes": { "weight": 5 } }, { "key": "19271", "source": "130", "target": "235", "attributes": { "weight": 1 } }, { "key": "23978", "source": "130", "target": "2470", "attributes": { "weight": 2 } }, { "key": "23979", "source": "130", "target": "477", "attributes": { "weight": 2 } }, { "key": "23977", "source": "130", "target": "1026", "attributes": { "weight": 5 } }, { "key": "16694", "source": "130", "target": "73", "attributes": { "weight": 1 } }, { "key": "11330", "source": "130", "target": "1742", "attributes": { "weight": 1 } }, { "key": "19264", "source": "130", "target": "2095", "attributes": { "weight": 1 } }, { "key": "16692", "source": "130", "target": "70", "attributes": { "weight": 4 } }, { "key": "19269", "source": "130", "target": "56", "attributes": { "weight": 3 } }, { "key": "26390", "source": "130", "target": "1047", "attributes": { "weight": 2 } }, { "key": "33193", "source": "130", "target": "51", "attributes": { "weight": 1 } }, { "key": "32952", "source": "130", "target": "154", "attributes": { "weight": 1 } }, { "key": "23980", "source": "130", "target": "479", "attributes": { "weight": 5 } }, { "key": "23567", "source": "130", "target": "220", "attributes": { "weight": 5 } }, { "key": "23953", "source": "130", "target": "1116", "attributes": { "weight": 2 } }, { "key": "35801", "source": "130", "target": "1778", "attributes": { "weight": 1 } }, { "key": "19273", "source": "130", "target": "1390", "attributes": { "weight": 2 } }, { "key": "35797", "source": "130", "target": "1760", "attributes": { "weight": 1 } }, { "key": "512", "source": "130", "target": "234", "attributes": { "weight": 4 } }, { "key": "23942", "source": "130", "target": "437", "attributes": { "weight": 2 } }, { "key": "23954", "source": "130", "target": "1536", "attributes": { "weight": 2 } }, { "key": "27802", "source": "130", "target": "339", "attributes": { "weight": 1 } }, { "key": "4330", "source": "130", "target": "468", "attributes": { "weight": 3 } }, { "key": "10059", "source": "130", "target": "369", "attributes": { "weight": 1 } }, { "key": "23966", "source": "130", "target": "228", "attributes": { "weight": 3 } }, { "key": "23943", "source": "130", "target": "50", "attributes": { "weight": 2 } }, { "key": "26989", "source": "130", "target": "1247", "attributes": { "weight": 2 } }, { "key": "1230", "source": "130", "target": "224", "attributes": { "weight": 1 } }, { "key": "16689", "source": "130", "target": "434", "attributes": { "weight": 3 } }, { "key": "23975", "source": "130", "target": "476", "attributes": { "weight": 2 } }, { "key": "9221", "source": "130", "target": "430", "attributes": { "weight": 3 } }, { "key": "23947", "source": "130", "target": "447", "attributes": { "weight": 2 } }, { "key": "23967", "source": "130", "target": "471", "attributes": { "weight": 3 } }, { "key": "19265", "source": "130", "target": "2109", "attributes": { "weight": 3 } }, { "key": "29373", "source": "130", "target": "232", "attributes": { "weight": 1 } }, { "key": "32312", "source": "130", "target": "791", "attributes": { "weight": 1 } }, { "key": "9222", "source": "130", "target": "1592", "attributes": { "weight": 3 } }, { "key": "19255", "source": "130", "target": "1358", "attributes": { "weight": 3 } }, { "key": "35800", "source": "130", "target": "478", "attributes": { "weight": 1 } }, { "key": "6608", "source": "130", "target": "193", "attributes": { "weight": 4 } }, { "key": "23945", "source": "130", "target": "445", "attributes": { "weight": 2 } }, { "key": "17333", "source": "130", "target": "358", "attributes": { "weight": 1 } }, { "key": "23990", "source": "130", "target": "1568", "attributes": { "weight": 2 } }, { "key": "19272", "source": "130", "target": "2274", "attributes": { "weight": 3 } }, { "key": "23948", "source": "130", "target": "39", "attributes": { "weight": 2 } }, { "key": "17135", "source": "130", "target": "2108", "attributes": { "weight": 1 } }, { "key": "23941", "source": "130", "target": "1109", "attributes": { "weight": 2 } }, { "key": "510", "source": "130", "target": "225", "attributes": { "weight": 4 } }, { "key": "23963", "source": "130", "target": "1121", "attributes": { "weight": 2 } }, { "key": "3922", "source": "130", "target": "432", "attributes": { "weight": 4 } }, { "key": "26988", "source": "130", "target": "1219", "attributes": { "weight": 1 } }, { "key": "23973", "source": "130", "target": "474", "attributes": { "weight": 3 } }, { "key": "10799", "source": "130", "target": "457", "attributes": { "weight": 4 } }, { "key": "11001", "source": "130", "target": "452", "attributes": { "weight": 4 } }, { "key": "35799", "source": "130", "target": "465", "attributes": { "weight": 1 } }, { "key": "27215", "source": "130", "target": "425", "attributes": { "weight": 2 } }, { "key": "19262", "source": "130", "target": "1744", "attributes": { "weight": 5 } }, { "key": "19256", "source": "130", "target": "459", "attributes": { "weight": 3 } }, { "key": "33196", "source": "130", "target": "2110", "attributes": { "weight": 1 } }, { "key": "23956", "source": "130", "target": "1072", "attributes": { "weight": 2 } }, { "key": "6609", "source": "130", "target": "495", "attributes": { "weight": 6 } }, { "key": "23960", "source": "130", "target": "1364", "attributes": { "weight": 2 } }, { "key": "19260", "source": "130", "target": "472", "attributes": { "weight": 3 } }, { "key": "19242", "source": "130", "target": "1353", "attributes": { "weight": 3 } }, { "key": "23974", "source": "130", "target": "1088", "attributes": { "weight": 2 } }, { "key": "23939", "source": "130", "target": "1354", "attributes": { "weight": 2 } }, { "key": "23982", "source": "130", "target": "482", "attributes": { "weight": 2 } }, { "key": "23938", "source": "130", "target": "1754", "attributes": { "weight": 2 } }, { "key": "11004", "source": "130", "target": "1711", "attributes": { "weight": 5 } }, { "key": "16688", "source": "130", "target": "59", "attributes": { "weight": 4 } }, { "key": "23983", "source": "130", "target": "2471", "attributes": { "weight": 1 } }, { "key": "23962", "source": "130", "target": "2468", "attributes": { "weight": 1 } }, { "key": "23972", "source": "130", "target": "190", "attributes": { "weight": 2 } }, { "key": "4329", "source": "130", "target": "370", "attributes": { "weight": 9 } }, { "key": "23950", "source": "130", "target": "182", "attributes": { "weight": 2 } }, { "key": "19266", "source": "130", "target": "2271", "attributes": { "weight": 3 } }, { "key": "19252", "source": "130", "target": "450", "attributes": { "weight": 3 } }, { "key": "23946", "source": "130", "target": "446", "attributes": { "weight": 2 } }, { "key": "23964", "source": "130", "target": "470", "attributes": { "weight": 4 } }, { "key": "19246", "source": "130", "target": "222", "attributes": { "weight": 3 } }, { "key": "23965", "source": "130", "target": "1258", "attributes": { "weight": 3 } }, { "key": "23985", "source": "130", "target": "2473", "attributes": { "weight": 1 } }, { "key": "19263", "source": "130", "target": "2267", "attributes": { "weight": 1 } }, { "key": "511", "source": "130", "target": "230", "attributes": { "weight": 4 } }, { "key": "19249", "source": "130", "target": "1023", "attributes": { "weight": 1 } }, { "key": "23959", "source": "130", "target": "8", "attributes": { "weight": 3 } }, { "key": "17134", "source": "130", "target": "449", "attributes": { "weight": 2 } }, { "key": "1233", "source": "130", "target": "188", "attributes": { "weight": 4 } }, { "key": "19248", "source": "130", "target": "440", "attributes": { "weight": 2 } }, { "key": "23976", "source": "130", "target": "1125", "attributes": { "weight": 2 } }, { "key": "23989", "source": "130", "target": "494", "attributes": { "weight": 2 } }, { "key": "11002", "source": "130", "target": "469", "attributes": { "weight": 1 } }, { "key": "19267", "source": "130", "target": "489", "attributes": { "weight": 1 } }, { "key": "23955", "source": "130", "target": "1810", "attributes": { "weight": 2 } }, { "key": "23940", "source": "130", "target": "889", "attributes": { "weight": 2 } }, { "key": "1232", "source": "130", "target": "455", "attributes": { "weight": 3 } }, { "key": "16690", "source": "130", "target": "674", "attributes": { "weight": 4 } }, { "key": "23986", "source": "130", "target": "1337", "attributes": { "weight": 2 } }, { "key": "19259", "source": "130", "target": "1366", "attributes": { "weight": 3 } }, { "key": "23971", "source": "130", "target": "473", "attributes": { "weight": 4 } }, { "key": "23569", "source": "130", "target": "1312", "attributes": { "weight": 1 } }, { "key": "16693", "source": "130", "target": "672", "attributes": { "weight": 2 } }, { "key": "19247", "source": "130", "target": "223", "attributes": { "weight": 5 } }, { "key": "17814", "source": "130", "target": "454", "attributes": { "weight": 4 } }, { "key": "23970", "source": "130", "target": "189", "attributes": { "weight": 3 } }, { "key": "11835", "source": "130", "target": "135", "attributes": { "weight": 6 } }, { "key": "1234", "source": "130", "target": "490", "attributes": { "weight": 3 } }, { "key": "27216", "source": "130", "target": "52", "attributes": { "weight": 2 } }, { "key": "32074", "source": "130", "target": "3084", "attributes": { "weight": 1 } }, { "key": "31577", "source": "130", "target": "595", "attributes": { "weight": 2 } }, { "key": "14174", "source": "130", "target": "1046", "attributes": { "weight": 2 } }, { "key": "23951", "source": "130", "target": "448", "attributes": { "weight": 2 } }, { "key": "4332", "source": "130", "target": "1090", "attributes": { "weight": 2 } }, { "key": "10395", "source": "131", "target": "225", "attributes": { "weight": 1 } }, { "key": "284", "source": "131", "target": "130", "attributes": { "weight": 3 } }, { "key": "10396", "source": "131", "target": "137", "attributes": { "weight": 1 } }, { "key": "285", "source": "131", "target": "39", "attributes": { "weight": 4 } }, { "key": "286", "source": "131", "target": "134", "attributes": { "weight": 2 } }, { "key": "28656", "source": "131", "target": "54", "attributes": { "weight": 1 } }, { "key": "10397", "source": "131", "target": "1710", "attributes": { "weight": 1 } }, { "key": "17836", "source": "132", "target": "34", "attributes": { "weight": 2 } }, { "key": "7238", "source": "132", "target": "39", "attributes": { "weight": 8 } }, { "key": "8654", "source": "132", "target": "442", "attributes": { "weight": 1 } }, { "key": "287", "source": "132", "target": "137", "attributes": { "weight": 2 } }, { "key": "15419", "source": "132", "target": "36", "attributes": { "weight": 2 } }, { "key": "10408", "source": "132", "target": "225", "attributes": { "weight": 1 } }, { "key": "8655", "source": "132", "target": "1556", "attributes": { "weight": 1 } }, { "key": "17837", "source": "132", "target": "40", "attributes": { "weight": 1 } }, { "key": "26049", "source": "133", "target": "163", "attributes": { "weight": 1 } }, { "key": "7266", "source": "133", "target": "223", "attributes": { "weight": 5 } }, { "key": "17849", "source": "133", "target": "40", "attributes": { "weight": 1 } }, { "key": "30127", "source": "133", "target": "1544", "attributes": { "weight": 4 } }, { "key": "295", "source": "133", "target": "136", "attributes": { "weight": 2 } }, { "key": "16425", "source": "133", "target": "38", "attributes": { "weight": 4 } }, { "key": "10481", "source": "133", "target": "1557", "attributes": { "weight": 6 } }, { "key": "30106", "source": "133", "target": "1559", "attributes": { "weight": 1 } }, { "key": "8683", "source": "133", "target": "442", "attributes": { "weight": 2 } }, { "key": "17850", "source": "133", "target": "1555", "attributes": { "weight": 2 } }, { "key": "17848", "source": "133", "target": "1524", "attributes": { "weight": 4 } }, { "key": "7267", "source": "133", "target": "1384", "attributes": { "weight": 4 } }, { "key": "294", "source": "133", "target": "39", "attributes": { "weight": 1 } }, { "key": "10479", "source": "133", "target": "1521", "attributes": { "weight": 2 } }, { "key": "8684", "source": "133", "target": "1565", "attributes": { "weight": 5 } }, { "key": "23238", "source": "133", "target": "34", "attributes": { "weight": 1 } }, { "key": "30126", "source": "133", "target": "2950", "attributes": { "weight": 1 } }, { "key": "30128", "source": "133", "target": "2951", "attributes": { "weight": 1 } }, { "key": "10480", "source": "133", "target": "225", "attributes": { "weight": 1 } }, { "key": "17847", "source": "133", "target": "1380", "attributes": { "weight": 2 } }, { "key": "32338", "source": "133", "target": "791", "attributes": { "weight": 1 } }, { "key": "35741", "source": "134", "target": "136", "attributes": { "weight": 1 } }, { "key": "10489", "source": "134", "target": "225", "attributes": { "weight": 1 } }, { "key": "8734", "source": "134", "target": "442", "attributes": { "weight": 2 } }, { "key": "17859", "source": "134", "target": "2176", "attributes": { "weight": 1 } }, { "key": "296", "source": "134", "target": "131", "attributes": { "weight": 2 } }, { "key": "297", "source": "134", "target": "39", "attributes": { "weight": 2 } }, { "key": "298", "source": "134", "target": "135", "attributes": { "weight": 1 } }, { "key": "17071", "source": "134", "target": "34", "attributes": { "weight": 1 } }, { "key": "299", "source": "134", "target": "138", "attributes": { "weight": 7 } }, { "key": "17072", "source": "134", "target": "35", "attributes": { "weight": 3 } }, { "key": "11873", "source": "134", "target": "468", "attributes": { "weight": 1 } }, { "key": "11956", "source": "135", "target": "1093", "attributes": { "weight": 1 } }, { "key": "33472", "source": "135", "target": "2094", "attributes": { "weight": 1 } }, { "key": "33467", "source": "135", "target": "1364", "attributes": { "weight": 1 } }, { "key": "33448", "source": "135", "target": "432", "attributes": { "weight": 1 } }, { "key": "10502", "source": "135", "target": "482", "attributes": { "weight": 5 } }, { "key": "16852", "source": "135", "target": "440", "attributes": { "weight": 2 } }, { "key": "33482", "source": "135", "target": "1092", "attributes": { "weight": 1 } }, { "key": "11942", "source": "135", "target": "1362", "attributes": { "weight": 2 } }, { "key": "33476", "source": "135", "target": "473", "attributes": { "weight": 1 } }, { "key": "11949", "source": "135", "target": "474", "attributes": { "weight": 4 } }, { "key": "17481", "source": "135", "target": "358", "attributes": { "weight": 2 } }, { "key": "33464", "source": "135", "target": "1811", "attributes": { "weight": 1 } }, { "key": "33450", "source": "135", "target": "436", "attributes": { "weight": 1 } }, { "key": "11929", "source": "135", "target": "248", "attributes": { "weight": 3 } }, { "key": "33483", "source": "135", "target": "1131", "attributes": { "weight": 1 } }, { "key": "11931", "source": "135", "target": "1155", "attributes": { "weight": 2 } }, { "key": "11943", "source": "135", "target": "780", "attributes": { "weight": 2 } }, { "key": "16858", "source": "135", "target": "461", "attributes": { "weight": 3 } }, { "key": "33478", "source": "135", "target": "1088", "attributes": { "weight": 1 } }, { "key": "33463", "source": "135", "target": "1834", "attributes": { "weight": 1 } }, { "key": "33458", "source": "135", "target": "1071", "attributes": { "weight": 1 } }, { "key": "300", "source": "135", "target": "134", "attributes": { "weight": 1 } }, { "key": "33451", "source": "135", "target": "222", "attributes": { "weight": 1 } }, { "key": "11947", "source": "135", "target": "1553", "attributes": { "weight": 3 } }, { "key": "32214", "source": "135", "target": "2670", "attributes": { "weight": 5 } }, { "key": "11940", "source": "135", "target": "1219", "attributes": { "weight": 2 } }, { "key": "11939", "source": "135", "target": "452", "attributes": { "weight": 3 } }, { "key": "11933", "source": "135", "target": "50", "attributes": { "weight": 2 } }, { "key": "32963", "source": "135", "target": "154", "attributes": { "weight": 1 } }, { "key": "11930", "source": "135", "target": "130", "attributes": { "weight": 6 } }, { "key": "16864", "source": "135", "target": "596", "attributes": { "weight": 1 } }, { "key": "16860", "source": "135", "target": "70", "attributes": { "weight": 1 } }, { "key": "11938", "source": "135", "target": "451", "attributes": { "weight": 5 } }, { "key": "33454", "source": "135", "target": "442", "attributes": { "weight": 1 } }, { "key": "33474", "source": "135", "target": "1087", "attributes": { "weight": 1 } }, { "key": "16855", "source": "135", "target": "1118", "attributes": { "weight": 1 } }, { "key": "11950", "source": "135", "target": "475", "attributes": { "weight": 2 } }, { "key": "11926", "source": "135", "target": "1354", "attributes": { "weight": 6 } }, { "key": "32210", "source": "135", "target": "424", "attributes": { "weight": 5 } }, { "key": "11960", "source": "135", "target": "496", "attributes": { "weight": 4 } }, { "key": "32744", "source": "135", "target": "1703", "attributes": { "weight": 3 } }, { "key": "12680", "source": "135", "target": "695", "attributes": { "weight": 1 } }, { "key": "33491", "source": "135", "target": "57", "attributes": { "weight": 1 } }, { "key": "533", "source": "135", "target": "234", "attributes": { "weight": 1 } }, { "key": "33453", "source": "135", "target": "425", "attributes": { "weight": 1 } }, { "key": "24085", "source": "135", "target": "1116", "attributes": { "weight": 2 } }, { "key": "32750", "source": "135", "target": "458", "attributes": { "weight": 3 } }, { "key": "33484", "source": "135", "target": "672", "attributes": { "weight": 1 } }, { "key": "16848", "source": "135", "target": "1754", "attributes": { "weight": 1 } }, { "key": "35564", "source": "135", "target": "392", "attributes": { "weight": 1 } }, { "key": "32757", "source": "135", "target": "2450", "attributes": { "weight": 2 } }, { "key": "33455", "source": "135", "target": "224", "attributes": { "weight": 1 } }, { "key": "33446", "source": "135", "target": "1141", "attributes": { "weight": 1 } }, { "key": "32743", "source": "135", "target": "857", "attributes": { "weight": 2 } }, { "key": "11928", "source": "135", "target": "220", "attributes": { "weight": 2 } }, { "key": "16850", "source": "135", "target": "59", "attributes": { "weight": 1 } }, { "key": "32753", "source": "135", "target": "1366", "attributes": { "weight": 3 } }, { "key": "11925", "source": "135", "target": "429", "attributes": { "weight": 6 } }, { "key": "11944", "source": "135", "target": "53", "attributes": { "weight": 7 } }, { "key": "32882", "source": "135", "target": "1744", "attributes": { "weight": 2 } }, { "key": "32745", "source": "135", "target": "858", "attributes": { "weight": 3 } }, { "key": "11353", "source": "135", "target": "1742", "attributes": { "weight": 1 } }, { "key": "32756", "source": "135", "target": "483", "attributes": { "weight": 3 } }, { "key": "5377", "source": "135", "target": "337", "attributes": { "weight": 5 } }, { "key": "32746", "source": "135", "target": "2644", "attributes": { "weight": 1 } }, { "key": "11954", "source": "135", "target": "487", "attributes": { "weight": 3 } }, { "key": "32752", "source": "135", "target": "462", "attributes": { "weight": 2 } }, { "key": "11945", "source": "135", "target": "1367", "attributes": { "weight": 4 } }, { "key": "18474", "source": "135", "target": "1738", "attributes": { "weight": 3 } }, { "key": "31539", "source": "135", "target": "3058", "attributes": { "weight": 1 } }, { "key": "33487", "source": "135", "target": "340", "attributes": { "weight": 1 } }, { "key": "11951", "source": "135", "target": "191", "attributes": { "weight": 3 } }, { "key": "16861", "source": "135", "target": "231", "attributes": { "weight": 6 } }, { "key": "9965", "source": "135", "target": "477", "attributes": { "weight": 3 } }, { "key": "33473", "source": "135", "target": "229", "attributes": { "weight": 1 } }, { "key": "33489", "source": "135", "target": "1375", "attributes": { "weight": 1 } }, { "key": "35565", "source": "135", "target": "1262", "attributes": { "weight": 1 } }, { "key": "11955", "source": "135", "target": "56", "attributes": { "weight": 8 } }, { "key": "30760", "source": "135", "target": "470", "attributes": { "weight": 3 } }, { "key": "32213", "source": "135", "target": "1368", "attributes": { "weight": 4 } }, { "key": "11957", "source": "135", "target": "492", "attributes": { "weight": 1 } }, { "key": "11953", "source": "135", "target": "480", "attributes": { "weight": 2 } }, { "key": "33490", "source": "135", "target": "500", "attributes": { "weight": 1 } }, { "key": "33456", "source": "135", "target": "3", "attributes": { "weight": 2 } }, { "key": "37109", "source": "135", "target": "359", "attributes": { "weight": 1 } }, { "key": "11927", "source": "135", "target": "430", "attributes": { "weight": 1 } }, { "key": "33457", "source": "135", "target": "183", "attributes": { "weight": 1 } }, { "key": "33481", "source": "135", "target": "2109", "attributes": { "weight": 1 } }, { "key": "11934", "source": "135", "target": "439", "attributes": { "weight": 2 } }, { "key": "17254", "source": "135", "target": "449", "attributes": { "weight": 2 } }, { "key": "33480", "source": "135", "target": "479", "attributes": { "weight": 1 } }, { "key": "532", "source": "135", "target": "225", "attributes": { "weight": 2 } }, { "key": "32966", "source": "135", "target": "1063", "attributes": { "weight": 1 } }, { "key": "33469", "source": "135", "target": "1258", "attributes": { "weight": 1 } }, { "key": "32755", "source": "135", "target": "1371", "attributes": { "weight": 2 } }, { "key": "16865", "source": "135", "target": "1389", "attributes": { "weight": 1 } }, { "key": "31540", "source": "135", "target": "427", "attributes": { "weight": 1 } }, { "key": "12823", "source": "135", "target": "785", "attributes": { "weight": 1 } }, { "key": "33460", "source": "135", "target": "52", "attributes": { "weight": 1 } }, { "key": "32554", "source": "135", "target": "232", "attributes": { "weight": 1 } }, { "key": "32758", "source": "135", "target": "1094", "attributes": { "weight": 2 } }, { "key": "32748", "source": "135", "target": "1070", "attributes": { "weight": 2 } }, { "key": "32747", "source": "135", "target": "443", "attributes": { "weight": 2 } }, { "key": "29895", "source": "135", "target": "1024", "attributes": { "weight": 1 } }, { "key": "11932", "source": "135", "target": "1158", "attributes": { "weight": 3 } }, { "key": "33475", "source": "135", "target": "189", "attributes": { "weight": 1 } }, { "key": "33468", "source": "135", "target": "469", "attributes": { "weight": 1 } }, { "key": "33485", "source": "135", "target": "1750", "attributes": { "weight": 1 } }, { "key": "17255", "source": "135", "target": "1838", "attributes": { "weight": 1 } }, { "key": "11936", "source": "135", "target": "447", "attributes": { "weight": 5 } }, { "key": "16856", "source": "135", "target": "457", "attributes": { "weight": 1 } }, { "key": "11958", "source": "135", "target": "1347", "attributes": { "weight": 3 } }, { "key": "17253", "source": "135", "target": "1161", "attributes": { "weight": 1 } }, { "key": "13255", "source": "135", "target": "304", "attributes": { "weight": 2 } }, { "key": "20327", "source": "135", "target": "2111", "attributes": { "weight": 1 } }, { "key": "20326", "source": "135", "target": "2108", "attributes": { "weight": 1 } }, { "key": "32751", "source": "135", "target": "460", "attributes": { "weight": 2 } }, { "key": "33488", "source": "135", "target": "495", "attributes": { "weight": 1 } }, { "key": "32553", "source": "135", "target": "791", "attributes": { "weight": 1 } }, { "key": "33470", "source": "135", "target": "228", "attributes": { "weight": 1 } }, { "key": "33477", "source": "135", "target": "1282", "attributes": { "weight": 1 } }, { "key": "33479", "source": "135", "target": "1026", "attributes": { "weight": 1 } }, { "key": "11959", "source": "135", "target": "494", "attributes": { "weight": 4 } }, { "key": "32965", "source": "135", "target": "377", "attributes": { "weight": 1 } }, { "key": "16857", "source": "135", "target": "459", "attributes": { "weight": 3 } }, { "key": "16862", "source": "135", "target": "488", "attributes": { "weight": 3 } }, { "key": "20328", "source": "135", "target": "1374", "attributes": { "weight": 2 } }, { "key": "32749", "source": "135", "target": "1357", "attributes": { "weight": 4 } }, { "key": "33486", "source": "135", "target": "233", "attributes": { "weight": 1 } }, { "key": "6866", "source": "135", "target": "192", "attributes": { "weight": 2 } }, { "key": "5378", "source": "135", "target": "208", "attributes": { "weight": 7 } }, { "key": "11935", "source": "135", "target": "387", "attributes": { "weight": 5 } }, { "key": "11952", "source": "135", "target": "1812", "attributes": { "weight": 5 } }, { "key": "33462", "source": "135", "target": "1361", "attributes": { "weight": 1 } }, { "key": "20325", "source": "135", "target": "2254", "attributes": { "weight": 1 } }, { "key": "16851", "source": "135", "target": "434", "attributes": { "weight": 2 } }, { "key": "30761", "source": "135", "target": "1370", "attributes": { "weight": 1 } }, { "key": "16859", "source": "135", "target": "54", "attributes": { "weight": 5 } }, { "key": "33465", "source": "135", "target": "1066", "attributes": { "weight": 1 } }, { "key": "33452", "source": "135", "target": "223", "attributes": { "weight": 1 } }, { "key": "37324", "source": "135", "target": "247", "attributes": { "weight": 1 } }, { "key": "11946", "source": "135", "target": "1611", "attributes": { "weight": 1 } }, { "key": "33471", "source": "135", "target": "471", "attributes": { "weight": 2 } }, { "key": "5379", "source": "135", "target": "218", "attributes": { "weight": 4 } }, { "key": "32754", "source": "135", "target": "372", "attributes": { "weight": 1 } }, { "key": "32211", "source": "135", "target": "860", "attributes": { "weight": 5 } }, { "key": "16854", "source": "135", "target": "1358", "attributes": { "weight": 5 } }, { "key": "33461", "source": "135", "target": "188", "attributes": { "weight": 1 } }, { "key": "11948", "source": "135", "target": "190", "attributes": { "weight": 4 } }, { "key": "16863", "source": "135", "target": "1337", "attributes": { "weight": 1 } }, { "key": "37368", "source": "135", "target": "1585", "attributes": { "weight": 1 } }, { "key": "16849", "source": "135", "target": "1755", "attributes": { "weight": 1 } }, { "key": "16853", "source": "135", "target": "674", "attributes": { "weight": 2 } }, { "key": "22878", "source": "135", "target": "1359", "attributes": { "weight": 1 } }, { "key": "16866", "source": "135", "target": "73", "attributes": { "weight": 1 } }, { "key": "33466", "source": "135", "target": "464", "attributes": { "weight": 1 } }, { "key": "11941", "source": "135", "target": "1536", "attributes": { "weight": 1 } }, { "key": "11924", "source": "135", "target": "1353", "attributes": { "weight": 9 } }, { "key": "33447", "source": "135", "target": "1107", "attributes": { "weight": 1 } }, { "key": "32964", "source": "135", "target": "333", "attributes": { "weight": 1 } }, { "key": "9964", "source": "135", "target": "445", "attributes": { "weight": 6 } }, { "key": "33459", "source": "135", "target": "1217", "attributes": { "weight": 1 } }, { "key": "32212", "source": "135", "target": "426", "attributes": { "weight": 5 } }, { "key": "11937", "source": "135", "target": "450", "attributes": { "weight": 2 } }, { "key": "33449", "source": "135", "target": "2645", "attributes": { "weight": 1 } }, { "key": "8844", "source": "136", "target": "442", "attributes": { "weight": 1 } }, { "key": "27875", "source": "136", "target": "339", "attributes": { "weight": 1 } }, { "key": "36239", "source": "136", "target": "1386", "attributes": { "weight": 1 } }, { "key": "11997", "source": "136", "target": "468", "attributes": { "weight": 3 } }, { "key": "10506", "source": "136", "target": "225", "attributes": { "weight": 1 } }, { "key": "17934", "source": "136", "target": "34", "attributes": { "weight": 4 } }, { "key": "30462", "source": "136", "target": "1046", "attributes": { "weight": 1 } }, { "key": "17484", "source": "136", "target": "358", "attributes": { "weight": 1 } }, { "key": "17935", "source": "136", "target": "1380", "attributes": { "weight": 1 } }, { "key": "35755", "source": "136", "target": "134", "attributes": { "weight": 1 } }, { "key": "17936", "source": "136", "target": "1544", "attributes": { "weight": 1 } }, { "key": "34509", "source": "136", "target": "1233", "attributes": { "weight": 1 } }, { "key": "35756", "source": "136", "target": "370", "attributes": { "weight": 1 } }, { "key": "303", "source": "136", "target": "133", "attributes": { "weight": 2 } }, { "key": "26618", "source": "136", "target": "454", "attributes": { "weight": 3 } }, { "key": "26060", "source": "136", "target": "163", "attributes": { "weight": 1 } }, { "key": "35752", "source": "136", "target": "3253", "attributes": { "weight": 1 } }, { "key": "304", "source": "136", "target": "138", "attributes": { "weight": 1 } }, { "key": "27543", "source": "136", "target": "1520", "attributes": { "weight": 1 } }, { "key": "35758", "source": "136", "target": "3259", "attributes": { "weight": 1 } }, { "key": "26619", "source": "136", "target": "1558", "attributes": { "weight": 4 } }, { "key": "32557", "source": "136", "target": "791", "attributes": { "weight": 1 } }, { "key": "30713", "source": "136", "target": "889", "attributes": { "weight": 1 } }, { "key": "301", "source": "136", "target": "35", "attributes": { "weight": 5 } }, { "key": "35750", "source": "136", "target": "3252", "attributes": { "weight": 1 } }, { "key": "26059", "source": "136", "target": "38", "attributes": { "weight": 2 } }, { "key": "35761", "source": "136", "target": "3261", "attributes": { "weight": 1 } }, { "key": "302", "source": "136", "target": "39", "attributes": { "weight": 1 } }, { "key": "35759", "source": "136", "target": "2696", "attributes": { "weight": 1 } }, { "key": "15424", "source": "136", "target": "36", "attributes": { "weight": 1 } }, { "key": "15425", "source": "136", "target": "1565", "attributes": { "weight": 1 } }, { "key": "35751", "source": "136", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35762", "source": "136", "target": "3262", "attributes": { "weight": 1 } }, { "key": "15964", "source": "136", "target": "195", "attributes": { "weight": 1 } }, { "key": "35753", "source": "136", "target": "3254", "attributes": { "weight": 1 } }, { "key": "35757", "source": "136", "target": "3258", "attributes": { "weight": 1 } }, { "key": "25875", "source": "136", "target": "220", "attributes": { "weight": 1 } }, { "key": "31044", "source": "136", "target": "638", "attributes": { "weight": 2 } }, { "key": "24094", "source": "136", "target": "471", "attributes": { "weight": 1 } }, { "key": "17937", "source": "136", "target": "40", "attributes": { "weight": 1 } }, { "key": "18070", "source": "136", "target": "1036", "attributes": { "weight": 1 } }, { "key": "35754", "source": "136", "target": "2169", "attributes": { "weight": 1 } }, { "key": "35760", "source": "136", "target": "3260", "attributes": { "weight": 1 } }, { "key": "10541", "source": "137", "target": "131", "attributes": { "weight": 1 } }, { "key": "306", "source": "137", "target": "39", "attributes": { "weight": 2 } }, { "key": "10542", "source": "137", "target": "225", "attributes": { "weight": 1 } }, { "key": "10543", "source": "137", "target": "1710", "attributes": { "weight": 1 } }, { "key": "305", "source": "137", "target": "132", "attributes": { "weight": 2 } }, { "key": "26740", "source": "138", "target": "223", "attributes": { "weight": 3 } }, { "key": "307", "source": "138", "target": "35", "attributes": { "weight": 4 } }, { "key": "308", "source": "138", "target": "134", "attributes": { "weight": 6 } }, { "key": "309", "source": "138", "target": "136", "attributes": { "weight": 1 } }, { "key": "17073", "source": "138", "target": "34", "attributes": { "weight": 1 } }, { "key": "10564", "source": "138", "target": "225", "attributes": { "weight": 1 } }, { "key": "311", "source": "139", "target": "148", "attributes": { "weight": 1 } }, { "key": "310", "source": "139", "target": "143", "attributes": { "weight": 1 } }, { "key": "312", "source": "140", "target": "156", "attributes": { "weight": 1 } }, { "key": "313", "source": "141", "target": "142", "attributes": { "weight": 1 } }, { "key": "315", "source": "141", "target": "154", "attributes": { "weight": 1 } }, { "key": "314", "source": "141", "target": "148", "attributes": { "weight": 1 } }, { "key": "321", "source": "142", "target": "155", "attributes": { "weight": 1 } }, { "key": "37337", "source": "142", "target": "3356", "attributes": { "weight": 1 } }, { "key": "318", "source": "142", "target": "151", "attributes": { "weight": 1 } }, { "key": "317", "source": "142", "target": "146", "attributes": { "weight": 1 } }, { "key": "316", "source": "142", "target": "141", "attributes": { "weight": 1 } }, { "key": "319", "source": "142", "target": "153", "attributes": { "weight": 1 } }, { "key": "320", "source": "142", "target": "154", "attributes": { "weight": 1 } }, { "key": "322", "source": "143", "target": "139", "attributes": { "weight": 1 } }, { "key": "323", "source": "143", "target": "159", "attributes": { "weight": 1 } }, { "key": "324", "source": "144", "target": "147", "attributes": { "weight": 1 } }, { "key": "325", "source": "144", "target": "150", "attributes": { "weight": 1 } }, { "key": "326", "source": "144", "target": "156", "attributes": { "weight": 1 } }, { "key": "330", "source": "145", "target": "160", "attributes": { "weight": 1 } }, { "key": "327", "source": "145", "target": "149", "attributes": { "weight": 1 } }, { "key": "329", "source": "145", "target": "158", "attributes": { "weight": 2 } }, { "key": "328", "source": "145", "target": "156", "attributes": { "weight": 1 } }, { "key": "332", "source": "146", "target": "153", "attributes": { "weight": 1 } }, { "key": "331", "source": "146", "target": "148", "attributes": { "weight": 1 } }, { "key": "333", "source": "146", "target": "156", "attributes": { "weight": 1 } }, { "key": "336", "source": "147", "target": "156", "attributes": { "weight": 1 } }, { "key": "334", "source": "147", "target": "144", "attributes": { "weight": 1 } }, { "key": "335", "source": "147", "target": "152", "attributes": { "weight": 1 } }, { "key": "337", "source": "148", "target": "139", "attributes": { "weight": 1 } }, { "key": "340", "source": "148", "target": "156", "attributes": { "weight": 1 } }, { "key": "339", "source": "148", "target": "146", "attributes": { "weight": 1 } }, { "key": "338", "source": "148", "target": "141", "attributes": { "weight": 1 } }, { "key": "342", "source": "149", "target": "154", "attributes": { "weight": 4 } }, { "key": "6514", "source": "149", "target": "1090", "attributes": { "weight": 2 } }, { "key": "341", "source": "149", "target": "145", "attributes": { "weight": 1 } }, { "key": "29280", "source": "149", "target": "158", "attributes": { "weight": 1 } }, { "key": "7504", "source": "149", "target": "1063", "attributes": { "weight": 2 } }, { "key": "34848", "source": "149", "target": "1047", "attributes": { "weight": 1 } }, { "key": "7503", "source": "149", "target": "375", "attributes": { "weight": 1 } }, { "key": "32991", "source": "149", "target": "372", "attributes": { "weight": 1 } }, { "key": "29278", "source": "149", "target": "2844", "attributes": { "weight": 1 } }, { "key": "7501", "source": "149", "target": "123", "attributes": { "weight": 2 } }, { "key": "32990", "source": "149", "target": "442", "attributes": { "weight": 1 } }, { "key": "29279", "source": "149", "target": "2845", "attributes": { "weight": 1 } }, { "key": "29277", "source": "149", "target": "1400", "attributes": { "weight": 1 } }, { "key": "29541", "source": "149", "target": "1415", "attributes": { "weight": 1 } }, { "key": "7505", "source": "149", "target": "160", "attributes": { "weight": 4 } }, { "key": "29276", "source": "149", "target": "1392", "attributes": { "weight": 2 } }, { "key": "29281", "source": "149", "target": "1425", "attributes": { "weight": 1 } }, { "key": "7502", "source": "149", "target": "1399", "attributes": { "weight": 1 } }, { "key": "344", "source": "150", "target": "157", "attributes": { "weight": 1 } }, { "key": "343", "source": "150", "target": "144", "attributes": { "weight": 1 } }, { "key": "346", "source": "151", "target": "153", "attributes": { "weight": 1 } }, { "key": "27768", "source": "151", "target": "625", "attributes": { "weight": 1 } }, { "key": "345", "source": "151", "target": "142", "attributes": { "weight": 1 } }, { "key": "348", "source": "152", "target": "156", "attributes": { "weight": 1 } }, { "key": "347", "source": "152", "target": "147", "attributes": { "weight": 1 } }, { "key": "349", "source": "153", "target": "142", "attributes": { "weight": 1 } }, { "key": "350", "source": "153", "target": "146", "attributes": { "weight": 1 } }, { "key": "351", "source": "153", "target": "151", "attributes": { "weight": 1 } }, { "key": "7553", "source": "154", "target": "338", "attributes": { "weight": 2 } }, { "key": "7582", "source": "154", "target": "57", "attributes": { "weight": 2 } }, { "key": "29317", "source": "154", "target": "158", "attributes": { "weight": 1 } }, { "key": "6518", "source": "154", "target": "368", "attributes": { "weight": 3 } }, { "key": "7580", "source": "154", "target": "160", "attributes": { "weight": 2 } }, { "key": "6517", "source": "154", "target": "1196", "attributes": { "weight": 3 } }, { "key": "7574", "source": "154", "target": "625", "attributes": { "weight": 2 } }, { "key": "6515", "source": "154", "target": "889", "attributes": { "weight": 3 } }, { "key": "33004", "source": "154", "target": "403", "attributes": { "weight": 1 } }, { "key": "7573", "source": "154", "target": "333", "attributes": { "weight": 2 } }, { "key": "33001", "source": "154", "target": "1087", "attributes": { "weight": 1 } }, { "key": "32993", "source": "154", "target": "429", "attributes": { "weight": 1 } }, { "key": "33003", "source": "154", "target": "1298", "attributes": { "weight": 1 } }, { "key": "355", "source": "154", "target": "155", "attributes": { "weight": 2 } }, { "key": "7548", "source": "154", "target": "52", "attributes": { "weight": 4 } }, { "key": "32999", "source": "154", "target": "470", "attributes": { "weight": 1 } }, { "key": "7577", "source": "154", "target": "1424", "attributes": { "weight": 1 } }, { "key": "7546", "source": "154", "target": "199", "attributes": { "weight": 3 } }, { "key": "7562", "source": "154", "target": "1377", "attributes": { "weight": 2 } }, { "key": "7563", "source": "154", "target": "1392", "attributes": { "weight": 1 } }, { "key": "6516", "source": "154", "target": "779", "attributes": { "weight": 2 } }, { "key": "7552", "source": "154", "target": "337", "attributes": { "weight": 2 } }, { "key": "7555", "source": "154", "target": "208", "attributes": { "weight": 2 } }, { "key": "6523", "source": "154", "target": "371", "attributes": { "weight": 3 } }, { "key": "7547", "source": "154", "target": "454", "attributes": { "weight": 2 } }, { "key": "7583", "source": "154", "target": "1429", "attributes": { "weight": 1 } }, { "key": "7541", "source": "154", "target": "387", "attributes": { "weight": 3 } }, { "key": "7581", "source": "154", "target": "1428", "attributes": { "weight": 1 } }, { "key": "6521", "source": "154", "target": "921", "attributes": { "weight": 6 } }, { "key": "7561", "source": "154", "target": "1388", "attributes": { "weight": 3 } }, { "key": "14167", "source": "154", "target": "1890", "attributes": { "weight": 1 } }, { "key": "7537", "source": "154", "target": "938", "attributes": { "weight": 2 } }, { "key": "7545", "source": "154", "target": "251", "attributes": { "weight": 1 } }, { "key": "352", "source": "154", "target": "141", "attributes": { "weight": 1 } }, { "key": "9143", "source": "154", "target": "195", "attributes": { "weight": 3 } }, { "key": "7535", "source": "154", "target": "1381", "attributes": { "weight": 1 } }, { "key": "10582", "source": "154", "target": "225", "attributes": { "weight": 1 } }, { "key": "7565", "source": "154", "target": "373", "attributes": { "weight": 2 } }, { "key": "32996", "source": "154", "target": "50", "attributes": { "weight": 1 } }, { "key": "7540", "source": "154", "target": "442", "attributes": { "weight": 6 } }, { "key": "7550", "source": "154", "target": "1232", "attributes": { "weight": 2 } }, { "key": "32998", "source": "154", "target": "135", "attributes": { "weight": 1 } }, { "key": "32997", "source": "154", "target": "452", "attributes": { "weight": 1 } }, { "key": "7569", "source": "154", "target": "1406", "attributes": { "weight": 1 } }, { "key": "7560", "source": "154", "target": "1323", "attributes": { "weight": 2 } }, { "key": "7551", "source": "154", "target": "1233", "attributes": { "weight": 2 } }, { "key": "9376", "source": "154", "target": "430", "attributes": { "weight": 1 } }, { "key": "2443", "source": "154", "target": "156", "attributes": { "weight": 1 } }, { "key": "33002", "source": "154", "target": "474", "attributes": { "weight": 1 } }, { "key": "7572", "source": "154", "target": "1416", "attributes": { "weight": 2 } }, { "key": "29601", "source": "154", "target": "2880", "attributes": { "weight": 1 } }, { "key": "7579", "source": "154", "target": "1063", "attributes": { "weight": 6 } }, { "key": "7556", "source": "154", "target": "189", "attributes": { "weight": 2 } }, { "key": "7557", "source": "154", "target": "783", "attributes": { "weight": 1 } }, { "key": "7564", "source": "154", "target": "1393", "attributes": { "weight": 1 } }, { "key": "7539", "source": "154", "target": "1383", "attributes": { "weight": 3 } }, { "key": "6522", "source": "154", "target": "468", "attributes": { "weight": 6 } }, { "key": "33005", "source": "154", "target": "233", "attributes": { "weight": 1 } }, { "key": "31490", "source": "154", "target": "1125", "attributes": { "weight": 1 } }, { "key": "7558", "source": "154", "target": "252", "attributes": { "weight": 1 } }, { "key": "21433", "source": "154", "target": "493", "attributes": { "weight": 1 } }, { "key": "7570", "source": "154", "target": "1413", "attributes": { "weight": 1 } }, { "key": "353", "source": "154", "target": "142", "attributes": { "weight": 1 } }, { "key": "7578", "source": "154", "target": "1425", "attributes": { "weight": 1 } }, { "key": "7571", "source": "154", "target": "1415", "attributes": { "weight": 2 } }, { "key": "7559", "source": "154", "target": "372", "attributes": { "weight": 3 } }, { "key": "6519", "source": "154", "target": "913", "attributes": { "weight": 4 } }, { "key": "33006", "source": "154", "target": "494", "attributes": { "weight": 1 } }, { "key": "32994", "source": "154", "target": "432", "attributes": { "weight": 1 } }, { "key": "354", "source": "154", "target": "149", "attributes": { "weight": 4 } }, { "key": "32995", "source": "154", "target": "130", "attributes": { "weight": 1 } }, { "key": "7575", "source": "154", "target": "377", "attributes": { "weight": 2 } }, { "key": "7544", "source": "154", "target": "1047", "attributes": { "weight": 2 } }, { "key": "7538", "source": "154", "target": "223", "attributes": { "weight": 4 } }, { "key": "7576", "source": "154", "target": "1422", "attributes": { "weight": 1 } }, { "key": "14166", "source": "154", "target": "1963", "attributes": { "weight": 1 } }, { "key": "9936", "source": "154", "target": "396", "attributes": { "weight": 1 } }, { "key": "6524", "source": "154", "target": "123", "attributes": { "weight": 6 } }, { "key": "7543", "source": "154", "target": "1197", "attributes": { "weight": 2 } }, { "key": "16403", "source": "154", "target": "925", "attributes": { "weight": 2 } }, { "key": "7567", "source": "154", "target": "1350", "attributes": { "weight": 2 } }, { "key": "7536", "source": "154", "target": "1156", "attributes": { "weight": 2 } }, { "key": "37360", "source": "154", "target": "3358", "attributes": { "weight": 1 } }, { "key": "7554", "source": "154", "target": "1262", "attributes": { "weight": 2 } }, { "key": "6520", "source": "154", "target": "370", "attributes": { "weight": 6 } }, { "key": "33000", "source": "154", "target": "228", "attributes": { "weight": 1 } }, { "key": "16402", "source": "154", "target": "220", "attributes": { "weight": 2 } }, { "key": "7542", "source": "154", "target": "389", "attributes": { "weight": 1 } }, { "key": "30491", "source": "154", "target": "1046", "attributes": { "weight": 1 } }, { "key": "6525", "source": "154", "target": "1090", "attributes": { "weight": 2 } }, { "key": "7568", "source": "154", "target": "375", "attributes": { "weight": 1 } }, { "key": "7549", "source": "154", "target": "1385", "attributes": { "weight": 3 } }, { "key": "7566", "source": "154", "target": "1397", "attributes": { "weight": 1 } }, { "key": "7584", "source": "155", "target": "1416", "attributes": { "weight": 2 } }, { "key": "356", "source": "155", "target": "142", "attributes": { "weight": 1 } }, { "key": "357", "source": "155", "target": "154", "attributes": { "weight": 2 } }, { "key": "360", "source": "156", "target": "144", "attributes": { "weight": 1 } }, { "key": "365", "source": "156", "target": "152", "attributes": { "weight": 1 } }, { "key": "361", "source": "156", "target": "145", "attributes": { "weight": 1 } }, { "key": "363", "source": "156", "target": "147", "attributes": { "weight": 1 } }, { "key": "362", "source": "156", "target": "146", "attributes": { "weight": 1 } }, { "key": "2446", "source": "156", "target": "154", "attributes": { "weight": 1 } }, { "key": "359", "source": "156", "target": "142", "attributes": { "weight": 1 } }, { "key": "364", "source": "156", "target": "148", "attributes": { "weight": 1 } }, { "key": "2445", "source": "156", "target": "615", "attributes": { "weight": 1 } }, { "key": "358", "source": "156", "target": "140", "attributes": { "weight": 1 } }, { "key": "366", "source": "157", "target": "150", "attributes": { "weight": 1 } }, { "key": "367", "source": "157", "target": "159", "attributes": { "weight": 1 } }, { "key": "7632", "source": "158", "target": "1423", "attributes": { "weight": 2 } }, { "key": "29320", "source": "158", "target": "2855", "attributes": { "weight": 1 } }, { "key": "29287", "source": "158", "target": "1393", "attributes": { "weight": 1 } }, { "key": "29318", "source": "158", "target": "2848", "attributes": { "weight": 1 } }, { "key": "29319", "source": "158", "target": "154", "attributes": { "weight": 1 } }, { "key": "29288", "source": "158", "target": "2845", "attributes": { "weight": 1 } }, { "key": "30114", "source": "158", "target": "1425", "attributes": { "weight": 1 } }, { "key": "29286", "source": "158", "target": "1392", "attributes": { "weight": 1 } }, { "key": "368", "source": "158", "target": "145", "attributes": { "weight": 2 } }, { "key": "369", "source": "158", "target": "160", "attributes": { "weight": 5 } }, { "key": "370", "source": "159", "target": "143", "attributes": { "weight": 1 } }, { "key": "371", "source": "159", "target": "157", "attributes": { "weight": 1 } }, { "key": "30116", "source": "160", "target": "2946", "attributes": { "weight": 2 } }, { "key": "29293", "source": "160", "target": "2843", "attributes": { "weight": 2 } }, { "key": "30117", "source": "160", "target": "2947", "attributes": { "weight": 1 } }, { "key": "29292", "source": "160", "target": "1393", "attributes": { "weight": 1 } }, { "key": "29295", "source": "160", "target": "1425", "attributes": { "weight": 2 } }, { "key": "36433", "source": "160", "target": "2948", "attributes": { "weight": 1 } }, { "key": "29294", "source": "160", "target": "2844", "attributes": { "weight": 1 } }, { "key": "7807", "source": "160", "target": "149", "attributes": { "weight": 4 } }, { "key": "372", "source": "160", "target": "145", "attributes": { "weight": 1 } }, { "key": "373", "source": "160", "target": "158", "attributes": { "weight": 5 } }, { "key": "7808", "source": "160", "target": "154", "attributes": { "weight": 2 } }, { "key": "374", "source": "161", "target": "358", "attributes": { "weight": 4 } }, { "key": "376", "source": "161", "target": "162", "attributes": { "weight": 4 } }, { "key": "8790", "source": "161", "target": "442", "attributes": { "weight": 1 } }, { "key": "24633", "source": "161", "target": "1538", "attributes": { "weight": 1 } }, { "key": "32530", "source": "161", "target": "791", "attributes": { "weight": 1 } }, { "key": "19081", "source": "161", "target": "2239", "attributes": { "weight": 1 } }, { "key": "17895", "source": "161", "target": "2168", "attributes": { "weight": 1 } }, { "key": "25868", "source": "161", "target": "163", "attributes": { "weight": 2 } }, { "key": "375", "source": "161", "target": "359", "attributes": { "weight": 1 } }, { "key": "17894", "source": "161", "target": "1380", "attributes": { "weight": 4 } }, { "key": "19080", "source": "161", "target": "2118", "attributes": { "weight": 2 } }, { "key": "25380", "source": "161", "target": "1782", "attributes": { "weight": 1 } }, { "key": "37084", "source": "162", "target": "2581", "attributes": { "weight": 1 } }, { "key": "15098", "source": "162", "target": "161", "attributes": { "weight": 2 } }, { "key": "11411", "source": "162", "target": "1788", "attributes": { "weight": 2 } }, { "key": "25384", "source": "162", "target": "2579", "attributes": { "weight": 2 } }, { "key": "37085", "source": "162", "target": "1782", "attributes": { "weight": 1 } }, { "key": "377", "source": "162", "target": "163", "attributes": { "weight": 1 } }, { "key": "33841", "source": "162", "target": "1133", "attributes": { "weight": 1 } }, { "key": "26084", "source": "163", "target": "2625", "attributes": { "weight": 2 } }, { "key": "26070", "source": "163", "target": "2167", "attributes": { "weight": 1 } }, { "key": "26079", "source": "163", "target": "1765", "attributes": { "weight": 1 } }, { "key": "8939", "source": "163", "target": "1551", "attributes": { "weight": 3 } }, { "key": "25885", "source": "163", "target": "1384", "attributes": { "weight": 2 } }, { "key": "26080", "source": "163", "target": "1387", "attributes": { "weight": 1 } }, { "key": "17952", "source": "163", "target": "1380", "attributes": { "weight": 4 } }, { "key": "11414", "source": "163", "target": "1788", "attributes": { "weight": 1 } }, { "key": "26081", "source": "163", "target": "136", "attributes": { "weight": 1 } }, { "key": "26083", "source": "163", "target": "1553", "attributes": { "weight": 2 } }, { "key": "25886", "source": "163", "target": "161", "attributes": { "weight": 2 } }, { "key": "1791", "source": "163", "target": "555", "attributes": { "weight": 2 } }, { "key": "26074", "source": "163", "target": "1133", "attributes": { "weight": 3 } }, { "key": "26077", "source": "163", "target": "638", "attributes": { "weight": 2 } }, { "key": "26068", "source": "163", "target": "2624", "attributes": { "weight": 1 } }, { "key": "26078", "source": "163", "target": "1541", "attributes": { "weight": 2 } }, { "key": "26087", "source": "163", "target": "1772", "attributes": { "weight": 1 } }, { "key": "1794", "source": "163", "target": "559", "attributes": { "weight": 1 } }, { "key": "11231", "source": "163", "target": "220", "attributes": { "weight": 3 } }, { "key": "26071", "source": "163", "target": "1527", "attributes": { "weight": 5 } }, { "key": "26072", "source": "163", "target": "419", "attributes": { "weight": 1 } }, { "key": "8936", "source": "163", "target": "1386", "attributes": { "weight": 4 } }, { "key": "25747", "source": "163", "target": "278", "attributes": { "weight": 2 } }, { "key": "26713", "source": "163", "target": "57", "attributes": { "weight": 3 } }, { "key": "17500", "source": "163", "target": "358", "attributes": { "weight": 4 } }, { "key": "14746", "source": "163", "target": "259", "attributes": { "weight": 2 } }, { "key": "22303", "source": "163", "target": "794", "attributes": { "weight": 1 } }, { "key": "24637", "source": "163", "target": "2118", "attributes": { "weight": 1 } }, { "key": "25883", "source": "163", "target": "1524", "attributes": { "weight": 2 } }, { "key": "26076", "source": "163", "target": "359", "attributes": { "weight": 2 } }, { "key": "34868", "source": "163", "target": "2511", "attributes": { "weight": 1 } }, { "key": "8935", "source": "163", "target": "1539", "attributes": { "weight": 3 } }, { "key": "26088", "source": "163", "target": "1567", "attributes": { "weight": 1 } }, { "key": "26067", "source": "163", "target": "35", "attributes": { "weight": 1 } }, { "key": "5738", "source": "163", "target": "468", "attributes": { "weight": 3 } }, { "key": "1792", "source": "163", "target": "556", "attributes": { "weight": 2 } }, { "key": "25882", "source": "163", "target": "1382", "attributes": { "weight": 2 } }, { "key": "8938", "source": "163", "target": "1550", "attributes": { "weight": 4 } }, { "key": "8937", "source": "163", "target": "1548", "attributes": { "weight": 3 } }, { "key": "37086", "source": "163", "target": "2581", "attributes": { "weight": 1 } }, { "key": "26086", "source": "163", "target": "2626", "attributes": { "weight": 2 } }, { "key": "26085", "source": "163", "target": "1557", "attributes": { "weight": 1 } }, { "key": "26069", "source": "163", "target": "36", "attributes": { "weight": 1 } }, { "key": "37087", "source": "163", "target": "1782", "attributes": { "weight": 1 } }, { "key": "7360", "source": "163", "target": "223", "attributes": { "weight": 4 } }, { "key": "8933", "source": "163", "target": "442", "attributes": { "weight": 2 } }, { "key": "3817", "source": "163", "target": "645", "attributes": { "weight": 2 } }, { "key": "1795", "source": "163", "target": "560", "attributes": { "weight": 4 } }, { "key": "27884", "source": "163", "target": "339", "attributes": { "weight": 1 } }, { "key": "11232", "source": "163", "target": "1036", "attributes": { "weight": 3 } }, { "key": "26075", "source": "163", "target": "1866", "attributes": { "weight": 1 } }, { "key": "26082", "source": "163", "target": "2177", "attributes": { "weight": 1 } }, { "key": "26089", "source": "163", "target": "562", "attributes": { "weight": 2 } }, { "key": "8934", "source": "163", "target": "1530", "attributes": { "weight": 3 } }, { "key": "30473", "source": "163", "target": "1046", "attributes": { "weight": 1 } }, { "key": "25884", "source": "163", "target": "1878", "attributes": { "weight": 2 } }, { "key": "14745", "source": "163", "target": "164", "attributes": { "weight": 3 } }, { "key": "26073", "source": "163", "target": "133", "attributes": { "weight": 1 } }, { "key": "1796", "source": "163", "target": "561", "attributes": { "weight": 2 } }, { "key": "26066", "source": "163", "target": "34", "attributes": { "weight": 1 } }, { "key": "1793", "source": "163", "target": "557", "attributes": { "weight": 2 } }, { "key": "378", "source": "163", "target": "162", "attributes": { "weight": 3 } }, { "key": "29211", "source": "163", "target": "791", "attributes": { "weight": 2 } }, { "key": "25887", "source": "163", "target": "1995", "attributes": { "weight": 2 } }, { "key": "12562", "source": "164", "target": "220", "attributes": { "weight": 3 } }, { "key": "23738", "source": "164", "target": "1774", "attributes": { "weight": 1 } }, { "key": "15410", "source": "164", "target": "569", "attributes": { "weight": 1 } }, { "key": "25541", "source": "164", "target": "175", "attributes": { "weight": 2 } }, { "key": "32251", "source": "164", "target": "1622", "attributes": { "weight": 1 } }, { "key": "13930", "source": "164", "target": "905", "attributes": { "weight": 1 } }, { "key": "32248", "source": "164", "target": "1191", "attributes": { "weight": 1 } }, { "key": "26119", "source": "164", "target": "1056", "attributes": { "weight": 1 } }, { "key": "25137", "source": "164", "target": "297", "attributes": { "weight": 3 } }, { "key": "29561", "source": "164", "target": "1611", "attributes": { "weight": 1 } }, { "key": "32263", "source": "164", "target": "1641", "attributes": { "weight": 1 } }, { "key": "2834", "source": "164", "target": "262", "attributes": { "weight": 2 } }, { "key": "24916", "source": "164", "target": "707", "attributes": { "weight": 4 } }, { "key": "27446", "source": "164", "target": "1567", "attributes": { "weight": 2 } }, { "key": "2097", "source": "164", "target": "419", "attributes": { "weight": 4 } }, { "key": "2393", "source": "164", "target": "278", "attributes": { "weight": 10 } }, { "key": "29838", "source": "164", "target": "1024", "attributes": { "weight": 1 } }, { "key": "3683", "source": "164", "target": "645", "attributes": { "weight": 5 } }, { "key": "14344", "source": "164", "target": "163", "attributes": { "weight": 3 } }, { "key": "34927", "source": "164", "target": "14", "attributes": { "weight": 1 } }, { "key": "17820", "source": "164", "target": "1380", "attributes": { "weight": 2 } }, { "key": "36946", "source": "164", "target": "362", "attributes": { "weight": 1 } }, { "key": "27901", "source": "164", "target": "299", "attributes": { "weight": 1 } }, { "key": "28700", "source": "164", "target": "578", "attributes": { "weight": 2 } }, { "key": "14341", "source": "164", "target": "260", "attributes": { "weight": 1 } }, { "key": "14346", "source": "164", "target": "179", "attributes": { "weight": 1 } }, { "key": "30645", "source": "164", "target": "361", "attributes": { "weight": 2 } }, { "key": "27900", "source": "164", "target": "287", "attributes": { "weight": 2 } }, { "key": "30820", "source": "164", "target": "19", "attributes": { "weight": 1 } }, { "key": "8457", "source": "164", "target": "442", "attributes": { "weight": 3 } }, { "key": "30821", "source": "164", "target": "13", "attributes": { "weight": 1 } }, { "key": "32253", "source": "164", "target": "421", "attributes": { "weight": 1 } }, { "key": "27899", "source": "164", "target": "264", "attributes": { "weight": 2 } }, { "key": "32255", "source": "164", "target": "2209", "attributes": { "weight": 1 } }, { "key": "27582", "source": "164", "target": "172", "attributes": { "weight": 2 } }, { "key": "32254", "source": "164", "target": "791", "attributes": { "weight": 2 } }, { "key": "34926", "source": "164", "target": "681", "attributes": { "weight": 1 } }, { "key": "14176", "source": "164", "target": "168", "attributes": { "weight": 12 } }, { "key": "32262", "source": "164", "target": "2016", "attributes": { "weight": 1 } }, { "key": "2096", "source": "164", "target": "354", "attributes": { "weight": 2 } }, { "key": "14342", "source": "164", "target": "263", "attributes": { "weight": 1 } }, { "key": "22663", "source": "164", "target": "1037", "attributes": { "weight": 3 } }, { "key": "13929", "source": "164", "target": "3", "attributes": { "weight": 3 } }, { "key": "24914", "source": "164", "target": "2004", "attributes": { "weight": 8 } }, { "key": "32258", "source": "164", "target": "471", "attributes": { "weight": 1 } }, { "key": "26401", "source": "164", "target": "454", "attributes": { "weight": 2 } }, { "key": "10800", "source": "164", "target": "457", "attributes": { "weight": 1 } }, { "key": "27580", "source": "164", "target": "889", "attributes": { "weight": 2 } }, { "key": "4358", "source": "164", "target": "580", "attributes": { "weight": 8 } }, { "key": "31249", "source": "164", "target": "674", "attributes": { "weight": 2 } }, { "key": "29562", "source": "164", "target": "2722", "attributes": { "weight": 1 } }, { "key": "26402", "source": "164", "target": "189", "attributes": { "weight": 2 } }, { "key": "31086", "source": "164", "target": "314", "attributes": { "weight": 1 } }, { "key": "32247", "source": "164", "target": "1166", "attributes": { "weight": 2 } }, { "key": "379", "source": "164", "target": "178", "attributes": { "weight": 10 } }, { "key": "32259", "source": "164", "target": "473", "attributes": { "weight": 1 } }, { "key": "14177", "source": "164", "target": "1763", "attributes": { "weight": 2 } }, { "key": "2966", "source": "164", "target": "176", "attributes": { "weight": 4 } }, { "key": "32250", "source": "164", "target": "452", "attributes": { "weight": 1 } }, { "key": "25571", "source": "164", "target": "655", "attributes": { "weight": 1 } }, { "key": "29565", "source": "164", "target": "1966", "attributes": { "weight": 2 } }, { "key": "11840", "source": "164", "target": "468", "attributes": { "weight": 4 } }, { "key": "28338", "source": "164", "target": "579", "attributes": { "weight": 2 } }, { "key": "16725", "source": "164", "target": "70", "attributes": { "weight": 3 } }, { "key": "17338", "source": "164", "target": "310", "attributes": { "weight": 4 } }, { "key": "32249", "source": "164", "target": "572", "attributes": { "weight": 1 } }, { "key": "32245", "source": "164", "target": "1146", "attributes": { "weight": 2 } }, { "key": "1023", "source": "164", "target": "357", "attributes": { "weight": 6 } }, { "key": "32257", "source": "164", "target": "661", "attributes": { "weight": 2 } }, { "key": "8459", "source": "164", "target": "1549", "attributes": { "weight": 4 } }, { "key": "12361", "source": "164", "target": "565", "attributes": { "weight": 2 } }, { "key": "14345", "source": "164", "target": "301", "attributes": { "weight": 2 } }, { "key": "12889", "source": "164", "target": "304", "attributes": { "weight": 3 } }, { "key": "35779", "source": "164", "target": "790", "attributes": { "weight": 1 } }, { "key": "24917", "source": "164", "target": "170", "attributes": { "weight": 4 } }, { "key": "30509", "source": "164", "target": "2987", "attributes": { "weight": 1 } }, { "key": "8458", "source": "164", "target": "1542", "attributes": { "weight": 8 } }, { "key": "6615", "source": "164", "target": "830", "attributes": { "weight": 10 } }, { "key": "25540", "source": "164", "target": "174", "attributes": { "weight": 4 } }, { "key": "30340", "source": "164", "target": "574", "attributes": { "weight": 4 } }, { "key": "14343", "source": "164", "target": "272", "attributes": { "weight": 2 } }, { "key": "26280", "source": "164", "target": "1642", "attributes": { "weight": 4 } }, { "key": "32246", "source": "164", "target": "644", "attributes": { "weight": 1 } }, { "key": "29566", "source": "164", "target": "2018", "attributes": { "weight": 2 } }, { "key": "31578", "source": "164", "target": "595", "attributes": { "weight": 1 } }, { "key": "24915", "source": "164", "target": "698", "attributes": { "weight": 2 } }, { "key": "29560", "source": "164", "target": "2870", "attributes": { "weight": 1 } }, { "key": "17337", "source": "164", "target": "358", "attributes": { "weight": 3 } }, { "key": "29564", "source": "164", "target": "2872", "attributes": { "weight": 1 } }, { "key": "12564", "source": "164", "target": "495", "attributes": { "weight": 3 } }, { "key": "25570", "source": "164", "target": "649", "attributes": { "weight": 1 } }, { "key": "14175", "source": "164", "target": "1042", "attributes": { "weight": 4 } }, { "key": "29563", "source": "164", "target": "2871", "attributes": { "weight": 1 } }, { "key": "30746", "source": "164", "target": "355", "attributes": { "weight": 1 } }, { "key": "27778", "source": "164", "target": "1926", "attributes": { "weight": 1 } }, { "key": "4357", "source": "164", "target": "171", "attributes": { "weight": 9 } }, { "key": "27581", "source": "164", "target": "339", "attributes": { "weight": 3 } }, { "key": "16724", "source": "164", "target": "59", "attributes": { "weight": 3 } }, { "key": "12563", "source": "164", "target": "180", "attributes": { "weight": 6 } }, { "key": "11013", "source": "164", "target": "1036", "attributes": { "weight": 3 } }, { "key": "31085", "source": "164", "target": "313", "attributes": { "weight": 1 } }, { "key": "14340", "source": "164", "target": "259", "attributes": { "weight": 6 } }, { "key": "32260", "source": "164", "target": "173", "attributes": { "weight": 2 } }, { "key": "32252", "source": "164", "target": "651", "attributes": { "weight": 1 } }, { "key": "30339", "source": "164", "target": "1046", "attributes": { "weight": 1 } }, { "key": "12890", "source": "164", "target": "312", "attributes": { "weight": 2 } }, { "key": "27357", "source": "164", "target": "340", "attributes": { "weight": 2 } }, { "key": "2394", "source": "164", "target": "582", "attributes": { "weight": 4 } }, { "key": "27218", "source": "164", "target": "57", "attributes": { "weight": 2 } }, { "key": "31391", "source": "164", "target": "223", "attributes": { "weight": 2 } }, { "key": "32261", "source": "164", "target": "177", "attributes": { "weight": 4 } }, { "key": "14348", "source": "164", "target": "327", "attributes": { "weight": 3 } }, { "key": "18051", "source": "164", "target": "687", "attributes": { "weight": 3 } }, { "key": "14347", "source": "164", "target": "322", "attributes": { "weight": 1 } }, { "key": "2835", "source": "164", "target": "169", "attributes": { "weight": 10 } }, { "key": "30974", "source": "164", "target": "638", "attributes": { "weight": 2 } }, { "key": "32256", "source": "164", "target": "1253", "attributes": { "weight": 1 } }, { "key": "1803", "source": "164", "target": "93", "attributes": { "weight": 4 } }, { "key": "3159", "source": "164", "target": "305", "attributes": { "weight": 5 } }, { "key": "22389", "source": "164", "target": "567", "attributes": { "weight": 3 } }, { "key": "25603", "source": "164", "target": "787", "attributes": { "weight": 1 } }, { "key": "25158", "source": "165", "target": "1143", "attributes": { "weight": 2 } }, { "key": "29803", "source": "165", "target": "93", "attributes": { "weight": 1 } }, { "key": "30194", "source": "165", "target": "2958", "attributes": { "weight": 2 } }, { "key": "25160", "source": "165", "target": "572", "attributes": { "weight": 2 } }, { "key": "27592", "source": "165", "target": "171", "attributes": { "weight": 1 } }, { "key": "30199", "source": "165", "target": "1341", "attributes": { "weight": 2 } }, { "key": "4946", "source": "165", "target": "310", "attributes": { "weight": 4 } }, { "key": "30195", "source": "165", "target": "2710", "attributes": { "weight": 2 } }, { "key": "17357", "source": "165", "target": "1151", "attributes": { "weight": 2 } }, { "key": "12329", "source": "165", "target": "1843", "attributes": { "weight": 2 } }, { "key": "4945", "source": "165", "target": "1166", "attributes": { "weight": 6 } }, { "key": "25159", "source": "165", "target": "1187", "attributes": { "weight": 2 } }, { "key": "17358", "source": "165", "target": "2964", "attributes": { "weight": 3 } }, { "key": "32632", "source": "165", "target": "3109", "attributes": { "weight": 1 } }, { "key": "30197", "source": "165", "target": "2805", "attributes": { "weight": 2 } }, { "key": "30196", "source": "165", "target": "2934", "attributes": { "weight": 2 } }, { "key": "30198", "source": "165", "target": "173", "attributes": { "weight": 2 } }, { "key": "25161", "source": "165", "target": "297", "attributes": { "weight": 3 } }, { "key": "380", "source": "165", "target": "178", "attributes": { "weight": 4 } }, { "key": "32631", "source": "165", "target": "3107", "attributes": { "weight": 1 } }, { "key": "13082", "source": "166", "target": "300", "attributes": { "weight": 5 } }, { "key": "14573", "source": "166", "target": "301", "attributes": { "weight": 4 } }, { "key": "13079", "source": "166", "target": "259", "attributes": { "weight": 5 } }, { "key": "22922", "source": "166", "target": "1971", "attributes": { "weight": 1 } }, { "key": "13083", "source": "166", "target": "304", "attributes": { "weight": 5 } }, { "key": "22930", "source": "166", "target": "334", "attributes": { "weight": 1 } }, { "key": "13084", "source": "166", "target": "312", "attributes": { "weight": 4 } }, { "key": "14576", "source": "166", "target": "327", "attributes": { "weight": 3 } }, { "key": "13085", "source": "166", "target": "316", "attributes": { "weight": 2 } }, { "key": "737", "source": "166", "target": "167", "attributes": { "weight": 7 } }, { "key": "22928", "source": "166", "target": "179", "attributes": { "weight": 1 } }, { "key": "22925", "source": "166", "target": "289", "attributes": { "weight": 3 } }, { "key": "22927", "source": "166", "target": "1919", "attributes": { "weight": 1 } }, { "key": "22923", "source": "166", "target": "258", "attributes": { "weight": 1 } }, { "key": "14575", "source": "166", "target": "322", "attributes": { "weight": 3 } }, { "key": "22929", "source": "166", "target": "1872", "attributes": { "weight": 1 } }, { "key": "23427", "source": "166", "target": "286", "attributes": { "weight": 3 } }, { "key": "23428", "source": "166", "target": "318", "attributes": { "weight": 1 } }, { "key": "24783", "source": "166", "target": "326", "attributes": { "weight": 1 } }, { "key": "738", "source": "166", "target": "299", "attributes": { "weight": 2 } }, { "key": "735", "source": "166", "target": "262", "attributes": { "weight": 5 } }, { "key": "23425", "source": "166", "target": "1898", "attributes": { "weight": 1 } }, { "key": "739", "source": "166", "target": "336", "attributes": { "weight": 3 } }, { "key": "736", "source": "166", "target": "264", "attributes": { "weight": 5 } }, { "key": "22926", "source": "166", "target": "290", "attributes": { "weight": 3 } }, { "key": "381", "source": "166", "target": "178", "attributes": { "weight": 3 } }, { "key": "14203", "source": "166", "target": "168", "attributes": { "weight": 4 } }, { "key": "14572", "source": "166", "target": "263", "attributes": { "weight": 4 } }, { "key": "22924", "source": "166", "target": "901", "attributes": { "weight": 1 } }, { "key": "13936", "source": "166", "target": "180", "attributes": { "weight": 2 } }, { "key": "28641", "source": "166", "target": "321", "attributes": { "weight": 1 } }, { "key": "23274", "source": "166", "target": "839", "attributes": { "weight": 1 } }, { "key": "23426", "source": "166", "target": "276", "attributes": { "weight": 1 } }, { "key": "13081", "source": "166", "target": "272", "attributes": { "weight": 5 } }, { "key": "2876", "source": "166", "target": "287", "attributes": { "weight": 4 } }, { "key": "22931", "source": "166", "target": "908", "attributes": { "weight": 1 } }, { "key": "13080", "source": "166", "target": "260", "attributes": { "weight": 5 } }, { "key": "14574", "source": "166", "target": "305", "attributes": { "weight": 5 } }, { "key": "14601", "source": "167", "target": "336", "attributes": { "weight": 1 } }, { "key": "14597", "source": "167", "target": "277", "attributes": { "weight": 3 } }, { "key": "22216", "source": "167", "target": "1903", "attributes": { "weight": 1 } }, { "key": "14600", "source": "167", "target": "322", "attributes": { "weight": 5 } }, { "key": "8200", "source": "167", "target": "1513", "attributes": { "weight": 2 } }, { "key": "13114", "source": "167", "target": "292", "attributes": { "weight": 5 } }, { "key": "27961", "source": "167", "target": "295", "attributes": { "weight": 1 } }, { "key": "22946", "source": "167", "target": "179", "attributes": { "weight": 2 } }, { "key": "30448", "source": "167", "target": "1046", "attributes": { "weight": 1 } }, { "key": "13115", "source": "167", "target": "578", "attributes": { "weight": 4 } }, { "key": "24788", "source": "167", "target": "1925", "attributes": { "weight": 1 } }, { "key": "3179", "source": "167", "target": "311", "attributes": { "weight": 8 } }, { "key": "13116", "source": "167", "target": "301", "attributes": { "weight": 4 } }, { "key": "12434", "source": "167", "target": "263", "attributes": { "weight": 5 } }, { "key": "13104", "source": "167", "target": "258", "attributes": { "weight": 2 } }, { "key": "750", "source": "167", "target": "318", "attributes": { "weight": 5 } }, { "key": "18387", "source": "167", "target": "1621", "attributes": { "weight": 1 } }, { "key": "14595", "source": "167", "target": "261", "attributes": { "weight": 3 } }, { "key": "3176", "source": "167", "target": "290", "attributes": { "weight": 8 } }, { "key": "14599", "source": "167", "target": "319", "attributes": { "weight": 1 } }, { "key": "3180", "source": "167", "target": "312", "attributes": { "weight": 7 } }, { "key": "14598", "source": "167", "target": "1987", "attributes": { "weight": 1 } }, { "key": "14596", "source": "167", "target": "272", "attributes": { "weight": 2 } }, { "key": "27959", "source": "167", "target": "169", "attributes": { "weight": 1 } }, { "key": "8199", "source": "167", "target": "905", "attributes": { "weight": 2 } }, { "key": "25691", "source": "167", "target": "696", "attributes": { "weight": 2 } }, { "key": "22217", "source": "167", "target": "1929", "attributes": { "weight": 1 } }, { "key": "13119", "source": "167", "target": "582", "attributes": { "weight": 2 } }, { "key": "23433", "source": "167", "target": "1915", "attributes": { "weight": 1 } }, { "key": "748", "source": "167", "target": "289", "attributes": { "weight": 6 } }, { "key": "22945", "source": "167", "target": "270", "attributes": { "weight": 1 } }, { "key": "13118", "source": "167", "target": "304", "attributes": { "weight": 8 } }, { "key": "35494", "source": "167", "target": "1857", "attributes": { "weight": 1 } }, { "key": "12579", "source": "167", "target": "180", "attributes": { "weight": 3 } }, { "key": "13109", "source": "167", "target": "278", "attributes": { "weight": 2 } }, { "key": "14594", "source": "167", "target": "220", "attributes": { "weight": 2 } }, { "key": "13106", "source": "167", "target": "1904", "attributes": { "weight": 2 } }, { "key": "13125", "source": "167", "target": "1854", "attributes": { "weight": 2 } }, { "key": "13122", "source": "167", "target": "326", "attributes": { "weight": 7 } }, { "key": "13112", "source": "167", "target": "170", "attributes": { "weight": 2 } }, { "key": "13107", "source": "167", "target": "275", "attributes": { "weight": 4 } }, { "key": "27960", "source": "167", "target": "1984", "attributes": { "weight": 1 } }, { "key": "27962", "source": "167", "target": "1919", "attributes": { "weight": 1 } }, { "key": "24786", "source": "167", "target": "269", "attributes": { "weight": 1 } }, { "key": "13124", "source": "167", "target": "1931", "attributes": { "weight": 2 } }, { "key": "15104", "source": "167", "target": "171", "attributes": { "weight": 1 } }, { "key": "13117", "source": "167", "target": "580", "attributes": { "weight": 2 } }, { "key": "9580", "source": "167", "target": "564", "attributes": { "weight": 1 } }, { "key": "747", "source": "167", "target": "166", "attributes": { "weight": 7 } }, { "key": "13111", "source": "167", "target": "283", "attributes": { "weight": 4 } }, { "key": "2881", "source": "167", "target": "287", "attributes": { "weight": 8 } }, { "key": "745", "source": "167", "target": "264", "attributes": { "weight": 9 } }, { "key": "3178", "source": "167", "target": "308", "attributes": { "weight": 7 } }, { "key": "382", "source": "167", "target": "178", "attributes": { "weight": 1 } }, { "key": "13123", "source": "167", "target": "327", "attributes": { "weight": 5 } }, { "key": "24789", "source": "167", "target": "331", "attributes": { "weight": 1 } }, { "key": "13121", "source": "167", "target": "314", "attributes": { "weight": 4 } }, { "key": "13105", "source": "167", "target": "259", "attributes": { "weight": 10 } }, { "key": "24787", "source": "167", "target": "281", "attributes": { "weight": 1 } }, { "key": "18386", "source": "167", "target": "830", "attributes": { "weight": 1 } }, { "key": "22597", "source": "167", "target": "315", "attributes": { "weight": 1 } }, { "key": "744", "source": "167", "target": "262", "attributes": { "weight": 6 } }, { "key": "2882", "source": "167", "target": "288", "attributes": { "weight": 1 } }, { "key": "23434", "source": "167", "target": "2449", "attributes": { "weight": 1 } }, { "key": "13120", "source": "167", "target": "313", "attributes": { "weight": 9 } }, { "key": "743", "source": "167", "target": "260", "attributes": { "weight": 10 } }, { "key": "746", "source": "167", "target": "268", "attributes": { "weight": 10 } }, { "key": "13113", "source": "167", "target": "291", "attributes": { "weight": 4 } }, { "key": "3177", "source": "167", "target": "307", "attributes": { "weight": 7 } }, { "key": "749", "source": "167", "target": "316", "attributes": { "weight": 5 } }, { "key": "13108", "source": "167", "target": "168", "attributes": { "weight": 7 } }, { "key": "25564", "source": "168", "target": "174", "attributes": { "weight": 1 } }, { "key": "14209", "source": "168", "target": "164", "attributes": { "weight": 12 } }, { "key": "2404", "source": "168", "target": "278", "attributes": { "weight": 10 } }, { "key": "12349", "source": "168", "target": "357", "attributes": { "weight": 3 } }, { "key": "14232", "source": "168", "target": "638", "attributes": { "weight": 2 } }, { "key": "383", "source": "168", "target": "178", "attributes": { "weight": 8 } }, { "key": "14211", "source": "168", "target": "259", "attributes": { "weight": 3 } }, { "key": "10886", "source": "168", "target": "297", "attributes": { "weight": 3 } }, { "key": "27734", "source": "168", "target": "1553", "attributes": { "weight": 1 } }, { "key": "14604", "source": "168", "target": "307", "attributes": { "weight": 1 } }, { "key": "29948", "source": "168", "target": "1952", "attributes": { "weight": 1 } }, { "key": "31604", "source": "168", "target": "595", "attributes": { "weight": 1 } }, { "key": "8766", "source": "168", "target": "442", "attributes": { "weight": 3 } }, { "key": "14244", "source": "168", "target": "172", "attributes": { "weight": 3 } }, { "key": "14208", "source": "168", "target": "1036", "attributes": { "weight": 3 } }, { "key": "12376", "source": "168", "target": "565", "attributes": { "weight": 2 } }, { "key": "14221", "source": "168", "target": "572", "attributes": { "weight": 5 } }, { "key": "14210", "source": "168", "target": "644", "attributes": { "weight": 2 } }, { "key": "27972", "source": "168", "target": "1984", "attributes": { "weight": 1 } }, { "key": "14233", "source": "168", "target": "1965", "attributes": { "weight": 2 } }, { "key": "30887", "source": "168", "target": "13", "attributes": { "weight": 1 } }, { "key": "13129", "source": "168", "target": "167", "attributes": { "weight": 7 } }, { "key": "14241", "source": "168", "target": "579", "attributes": { "weight": 3 } }, { "key": "1862", "source": "168", "target": "569", "attributes": { "weight": 3 } }, { "key": "14214", "source": "168", "target": "697", "attributes": { "weight": 2 } }, { "key": "27973", "source": "168", "target": "314", "attributes": { "weight": 1 } }, { "key": "14229", "source": "168", "target": "169", "attributes": { "weight": 5 } }, { "key": "13132", "source": "168", "target": "322", "attributes": { "weight": 4 } }, { "key": "14219", "source": "168", "target": "3", "attributes": { "weight": 3 } }, { "key": "26583", "source": "168", "target": "189", "attributes": { "weight": 1 } }, { "key": "14249", "source": "168", "target": "1637", "attributes": { "weight": 1 } }, { "key": "18388", "source": "168", "target": "1621", "attributes": { "weight": 1 } }, { "key": "14222", "source": "168", "target": "358", "attributes": { "weight": 2 } }, { "key": "752", "source": "168", "target": "331", "attributes": { "weight": 1 } }, { "key": "25614", "source": "168", "target": "787", "attributes": { "weight": 1 } }, { "key": "13127", "source": "168", "target": "262", "attributes": { "weight": 5 } }, { "key": "34218", "source": "168", "target": "700", "attributes": { "weight": 1 } }, { "key": "751", "source": "168", "target": "264", "attributes": { "weight": 6 } }, { "key": "14225", "source": "168", "target": "454", "attributes": { "weight": 2 } }, { "key": "25565", "source": "168", "target": "175", "attributes": { "weight": 1 } }, { "key": "9582", "source": "168", "target": "171", "attributes": { "weight": 3 } }, { "key": "1863", "source": "168", "target": "576", "attributes": { "weight": 1 } }, { "key": "14239", "source": "168", "target": "1280", "attributes": { "weight": 2 } }, { "key": "14605", "source": "168", "target": "179", "attributes": { "weight": 1 } }, { "key": "753", "source": "168", "target": "334", "attributes": { "weight": 1 } }, { "key": "14245", "source": "168", "target": "173", "attributes": { "weight": 1 } }, { "key": "27975", "source": "168", "target": "1854", "attributes": { "weight": 1 } }, { "key": "14236", "source": "168", "target": "661", "attributes": { "weight": 1 } }, { "key": "1864", "source": "168", "target": "93", "attributes": { "weight": 4 } }, { "key": "14207", "source": "168", "target": "220", "attributes": { "weight": 2 } }, { "key": "14223", "source": "168", "target": "452", "attributes": { "weight": 1 } }, { "key": "3777", "source": "168", "target": "419", "attributes": { "weight": 5 } }, { "key": "14248", "source": "168", "target": "839", "attributes": { "weight": 5 } }, { "key": "14255", "source": "168", "target": "326", "attributes": { "weight": 3 } }, { "key": "27974", "source": "168", "target": "323", "attributes": { "weight": 1 } }, { "key": "14243", "source": "168", "target": "1512", "attributes": { "weight": 3 } }, { "key": "9464", "source": "168", "target": "170", "attributes": { "weight": 6 } }, { "key": "10887", "source": "168", "target": "310", "attributes": { "weight": 3 } }, { "key": "32391", "source": "168", "target": "791", "attributes": { "weight": 1 } }, { "key": "14218", "source": "168", "target": "1857", "attributes": { "weight": 2 } }, { "key": "14237", "source": "168", "target": "1611", "attributes": { "weight": 2 } }, { "key": "3183", "source": "168", "target": "305", "attributes": { "weight": 7 } }, { "key": "23719", "source": "168", "target": "1820", "attributes": { "weight": 1 } }, { "key": "14603", "source": "168", "target": "1510", "attributes": { "weight": 1 } }, { "key": "13128", "source": "168", "target": "268", "attributes": { "weight": 2 } }, { "key": "27967", "source": "168", "target": "276", "attributes": { "weight": 1 } }, { "key": "27363", "source": "168", "target": "340", "attributes": { "weight": 1 } }, { "key": "23721", "source": "168", "target": "301", "attributes": { "weight": 1 } }, { "key": "12581", "source": "168", "target": "180", "attributes": { "weight": 6 } }, { "key": "14254", "source": "168", "target": "321", "attributes": { "weight": 3 } }, { "key": "14240", "source": "168", "target": "299", "attributes": { "weight": 4 } }, { "key": "14215", "source": "168", "target": "830", "attributes": { "weight": 4 } }, { "key": "11885", "source": "168", "target": "468", "attributes": { "weight": 3 } }, { "key": "27558", "source": "168", "target": "1928", "attributes": { "weight": 1 } }, { "key": "14227", "source": "168", "target": "166", "attributes": { "weight": 4 } }, { "key": "13939", "source": "168", "target": "905", "attributes": { "weight": 3 } }, { "key": "7304", "source": "168", "target": "1063", "attributes": { "weight": 2 } }, { "key": "14234", "source": "168", "target": "287", "attributes": { "weight": 4 } }, { "key": "14242", "source": "168", "target": "300", "attributes": { "weight": 6 } }, { "key": "14228", "source": "168", "target": "574", "attributes": { "weight": 4 } }, { "key": "30646", "source": "168", "target": "361", "attributes": { "weight": 1 } }, { "key": "8201", "source": "168", "target": "1513", "attributes": { "weight": 3 } }, { "key": "14216", "source": "168", "target": "263", "attributes": { "weight": 2 } }, { "key": "14251", "source": "168", "target": "313", "attributes": { "weight": 2 } }, { "key": "23723", "source": "168", "target": "329", "attributes": { "weight": 1 } }, { "key": "14226", "source": "168", "target": "698", "attributes": { "weight": 3 } }, { "key": "14256", "source": "168", "target": "327", "attributes": { "weight": 5 } }, { "key": "13940", "source": "168", "target": "1961", "attributes": { "weight": 1 } }, { "key": "10883", "source": "168", "target": "1166", "attributes": { "weight": 3 } }, { "key": "9581", "source": "168", "target": "564", "attributes": { "weight": 5 } }, { "key": "13131", "source": "168", "target": "316", "attributes": { "weight": 3 } }, { "key": "17890", "source": "168", "target": "1380", "attributes": { "weight": 1 } }, { "key": "27971", "source": "168", "target": "292", "attributes": { "weight": 1 } }, { "key": "25566", "source": "168", "target": "176", "attributes": { "weight": 1 } }, { "key": "27968", "source": "168", "target": "902", "attributes": { "weight": 1 } }, { "key": "7303", "source": "168", "target": "333", "attributes": { "weight": 2 } }, { "key": "5099", "source": "168", "target": "123", "attributes": { "weight": 3 } }, { "key": "5097", "source": "168", "target": "338", "attributes": { "weight": 2 } }, { "key": "14213", "source": "168", "target": "260", "attributes": { "weight": 3 } }, { "key": "10885", "source": "168", "target": "457", "attributes": { "weight": 1 } }, { "key": "12847", "source": "168", "target": "582", "attributes": { "weight": 4 } }, { "key": "13130", "source": "168", "target": "304", "attributes": { "weight": 6 } }, { "key": "27976", "source": "168", "target": "1515", "attributes": { "weight": 1 } }, { "key": "5100", "source": "168", "target": "1323", "attributes": { "weight": 6 } }, { "key": "14205", "source": "168", "target": "1143", "attributes": { "weight": 1 } }, { "key": "14231", "source": "168", "target": "651", "attributes": { "weight": 1 } }, { "key": "14217", "source": "168", "target": "1191", "attributes": { "weight": 2 } }, { "key": "5095", "source": "168", "target": "1047", "attributes": { "weight": 3 } }, { "key": "27261", "source": "168", "target": "57", "attributes": { "weight": 1 } }, { "key": "14252", "source": "168", "target": "1966", "attributes": { "weight": 2 } }, { "key": "14247", "source": "168", "target": "177", "attributes": { "weight": 4 } }, { "key": "14206", "source": "168", "target": "1146", "attributes": { "weight": 3 } }, { "key": "14235", "source": "168", "target": "290", "attributes": { "weight": 3 } }, { "key": "14224", "source": "168", "target": "272", "attributes": { "weight": 4 } }, { "key": "14212", "source": "168", "target": "354", "attributes": { "weight": 2 } }, { "key": "14250", "source": "168", "target": "311", "attributes": { "weight": 3 } }, { "key": "10884", "source": "168", "target": "1187", "attributes": { "weight": 4 } }, { "key": "27970", "source": "168", "target": "286", "attributes": { "weight": 1 } }, { "key": "27783", "source": "168", "target": "1926", "attributes": { "weight": 2 } }, { "key": "1861", "source": "168", "target": "566", "attributes": { "weight": 3 } }, { "key": "14230", "source": "168", "target": "707", "attributes": { "weight": 4 } }, { "key": "23722", "source": "168", "target": "318", "attributes": { "weight": 2 } }, { "key": "3776", "source": "168", "target": "645", "attributes": { "weight": 3 } }, { "key": "14220", "source": "168", "target": "1046", "attributes": { "weight": 2 } }, { "key": "14253", "source": "168", "target": "1967", "attributes": { "weight": 2 } }, { "key": "27557", "source": "168", "target": "283", "attributes": { "weight": 2 } }, { "key": "5096", "source": "168", "target": "370", "attributes": { "weight": 2 } }, { "key": "13938", "source": "168", "target": "567", "attributes": { "weight": 4 } }, { "key": "14238", "source": "168", "target": "473", "attributes": { "weight": 1 } }, { "key": "14246", "source": "168", "target": "1060", "attributes": { "weight": 1 } }, { "key": "5098", "source": "168", "target": "580", "attributes": { "weight": 5 } }, { "key": "23720", "source": "168", "target": "289", "attributes": { "weight": 1 } }, { "key": "3184", "source": "169", "target": "305", "attributes": { "weight": 4 } }, { "key": "29568", "source": "169", "target": "1966", "attributes": { "weight": 1 } }, { "key": "9583", "source": "169", "target": "171", "attributes": { "weight": 5 } }, { "key": "13133", "source": "169", "target": "304", "attributes": { "weight": 2 } }, { "key": "29569", "source": "169", "target": "2873", "attributes": { "weight": 1 } }, { "key": "27977", "source": "169", "target": "167", "attributes": { "weight": 1 } }, { "key": "384", "source": "169", "target": "178", "attributes": { "weight": 6 } }, { "key": "17464", "source": "169", "target": "358", "attributes": { "weight": 1 } }, { "key": "35374", "source": "169", "target": "173", "attributes": { "weight": 1 } }, { "key": "34976", "source": "169", "target": "3", "attributes": { "weight": 1 } }, { "key": "14607", "source": "169", "target": "289", "attributes": { "weight": 1 } }, { "key": "18390", "source": "169", "target": "2018", "attributes": { "weight": 1 } }, { "key": "14608", "source": "169", "target": "312", "attributes": { "weight": 1 } }, { "key": "14257", "source": "169", "target": "168", "attributes": { "weight": 5 } }, { "key": "34980", "source": "169", "target": "352", "attributes": { "weight": 1 } }, { "key": "25167", "source": "169", "target": "310", "attributes": { "weight": 1 } }, { "key": "21468", "source": "169", "target": "172", "attributes": { "weight": 2 } }, { "key": "2838", "source": "169", "target": "164", "attributes": { "weight": 13 } }, { "key": "25166", "source": "169", "target": "297", "attributes": { "weight": 1 } }, { "key": "34979", "source": "169", "target": "14", "attributes": { "weight": 1 } }, { "key": "2839", "source": "169", "target": "278", "attributes": { "weight": 4 } }, { "key": "754", "source": "169", "target": "262", "attributes": { "weight": 2 } }, { "key": "34978", "source": "169", "target": "13", "attributes": { "weight": 1 } }, { "key": "34977", "source": "169", "target": "8", "attributes": { "weight": 1 } }, { "key": "27978", "source": "169", "target": "287", "attributes": { "weight": 1 } }, { "key": "14606", "source": "169", "target": "259", "attributes": { "weight": 1 } }, { "key": "18389", "source": "169", "target": "830", "attributes": { "weight": 2 } }, { "key": "15181", "source": "169", "target": "1621", "attributes": { "weight": 4 } }, { "key": "30556", "source": "169", "target": "567", "attributes": { "weight": 1 } }, { "key": "1865", "source": "169", "target": "93", "attributes": { "weight": 1 } }, { "key": "6817", "source": "169", "target": "1036", "attributes": { "weight": 2 } }, { "key": "755", "source": "169", "target": "264", "attributes": { "weight": 1 } }, { "key": "25872", "source": "170", "target": "220", "attributes": { "weight": 1 } }, { "key": "28416", "source": "170", "target": "1323", "attributes": { "weight": 2 } }, { "key": "22694", "source": "170", "target": "1512", "attributes": { "weight": 4 } }, { "key": "31072", "source": "170", "target": "2745", "attributes": { "weight": 1 } }, { "key": "14676", "source": "170", "target": "277", "attributes": { "weight": 1 } }, { "key": "28414", "source": "170", "target": "791", "attributes": { "weight": 2 } }, { "key": "25005", "source": "170", "target": "1187", "attributes": { "weight": 3 } }, { "key": "25006", "source": "170", "target": "1046", "attributes": { "weight": 3 } }, { "key": "27750", "source": "170", "target": "1820", "attributes": { "weight": 1 } }, { "key": "386", "source": "170", "target": "180", "attributes": { "weight": 8 } }, { "key": "22693", "source": "170", "target": "580", "attributes": { "weight": 4 } }, { "key": "2457", "source": "170", "target": "707", "attributes": { "weight": 3 } }, { "key": "25010", "source": "170", "target": "177", "attributes": { "weight": 2 } }, { "key": "17474", "source": "170", "target": "358", "attributes": { "weight": 2 } }, { "key": "25009", "source": "170", "target": "1996", "attributes": { "weight": 3 } }, { "key": "2414", "source": "170", "target": "278", "attributes": { "weight": 7 } }, { "key": "14675", "source": "170", "target": "259", "attributes": { "weight": 2 } }, { "key": "12849", "source": "170", "target": "582", "attributes": { "weight": 5 } }, { "key": "25011", "source": "170", "target": "1854", "attributes": { "weight": 2 } }, { "key": "25004", "source": "170", "target": "697", "attributes": { "weight": 2 } }, { "key": "25008", "source": "170", "target": "300", "attributes": { "weight": 2 } }, { "key": "27752", "source": "170", "target": "1822", "attributes": { "weight": 1 } }, { "key": "28415", "source": "170", "target": "578", "attributes": { "weight": 2 } }, { "key": "22692", "source": "170", "target": "698", "attributes": { "weight": 3 } }, { "key": "13216", "source": "170", "target": "268", "attributes": { "weight": 3 } }, { "key": "2413", "source": "170", "target": "699", "attributes": { "weight": 5 } }, { "key": "22489", "source": "170", "target": "567", "attributes": { "weight": 2 } }, { "key": "27753", "source": "170", "target": "1823", "attributes": { "weight": 1 } }, { "key": "25007", "source": "170", "target": "574", "attributes": { "weight": 2 } }, { "key": "14677", "source": "170", "target": "307", "attributes": { "weight": 2 } }, { "key": "25003", "source": "170", "target": "164", "attributes": { "weight": 4 } }, { "key": "5240", "source": "170", "target": "1227", "attributes": { "weight": 4 } }, { "key": "13957", "source": "170", "target": "905", "attributes": { "weight": 2 } }, { "key": "9491", "source": "170", "target": "168", "attributes": { "weight": 6 } }, { "key": "15108", "source": "170", "target": "171", "attributes": { "weight": 3 } }, { "key": "13220", "source": "170", "target": "314", "attributes": { "weight": 3 } }, { "key": "13219", "source": "170", "target": "313", "attributes": { "weight": 5 } }, { "key": "27751", "source": "170", "target": "2345", "attributes": { "weight": 1 } }, { "key": "22490", "source": "170", "target": "572", "attributes": { "weight": 2 } }, { "key": "385", "source": "170", "target": "93", "attributes": { "weight": 3 } }, { "key": "28412", "source": "170", "target": "272", "attributes": { "weight": 2 } }, { "key": "28418", "source": "170", "target": "323", "attributes": { "weight": 2 } }, { "key": "10896", "source": "170", "target": "457", "attributes": { "weight": 2 } }, { "key": "3193", "source": "170", "target": "305", "attributes": { "weight": 7 } }, { "key": "13958", "source": "170", "target": "1513", "attributes": { "weight": 1 } }, { "key": "28417", "source": "170", "target": "178", "attributes": { "weight": 2 } }, { "key": "22691", "source": "170", "target": "1191", "attributes": { "weight": 4 } }, { "key": "15898", "source": "170", "target": "700", "attributes": { "weight": 4 } }, { "key": "13218", "source": "170", "target": "304", "attributes": { "weight": 2 } }, { "key": "11163", "source": "170", "target": "452", "attributes": { "weight": 1 } }, { "key": "13217", "source": "170", "target": "167", "attributes": { "weight": 2 } }, { "key": "8796", "source": "170", "target": "442", "attributes": { "weight": 1 } }, { "key": "13956", "source": "170", "target": "370", "attributes": { "weight": 1 } }, { "key": "27749", "source": "170", "target": "1819", "attributes": { "weight": 3 } }, { "key": "28413", "source": "170", "target": "1869", "attributes": { "weight": 1 } }, { "key": "26600", "source": "170", "target": "454", "attributes": { "weight": 2 } }, { "key": "29206", "source": "170", "target": "309", "attributes": { "weight": 1 } }, { "key": "9614", "source": "171", "target": "1618", "attributes": { "weight": 1 } }, { "key": "9636", "source": "171", "target": "1627", "attributes": { "weight": 2 } }, { "key": "9613", "source": "171", "target": "564", "attributes": { "weight": 3 } }, { "key": "9642", "source": "171", "target": "1631", "attributes": { "weight": 1 } }, { "key": "5250", "source": "171", "target": "1252", "attributes": { "weight": 4 } }, { "key": "27611", "source": "171", "target": "1553", "attributes": { "weight": 2 } }, { "key": "9628", "source": "171", "target": "1623", "attributes": { "weight": 2 } }, { "key": "9626", "source": "171", "target": "168", "attributes": { "weight": 3 } }, { "key": "15121", "source": "171", "target": "1996", "attributes": { "weight": 1 } }, { "key": "31957", "source": "171", "target": "1060", "attributes": { "weight": 1 } }, { "key": "9646", "source": "171", "target": "1633", "attributes": { "weight": 3 } }, { "key": "28923", "source": "171", "target": "355", "attributes": { "weight": 1 } }, { "key": "9631", "source": "171", "target": "1542", "attributes": { "weight": 2 } }, { "key": "31956", "source": "171", "target": "2115", "attributes": { "weight": 1 } }, { "key": "9653", "source": "171", "target": "1638", "attributes": { "weight": 2 } }, { "key": "1048", "source": "171", "target": "357", "attributes": { "weight": 5 } }, { "key": "15111", "source": "171", "target": "1042", "attributes": { "weight": 4 } }, { "key": "15122", "source": "171", "target": "304", "attributes": { "weight": 2 } }, { "key": "9654", "source": "171", "target": "1061", "attributes": { "weight": 2 } }, { "key": "5252", "source": "171", "target": "580", "attributes": { "weight": 3 } }, { "key": "27605", "source": "171", "target": "165", "attributes": { "weight": 1 } }, { "key": "15117", "source": "171", "target": "170", "attributes": { "weight": 3 } }, { "key": "9633", "source": "171", "target": "91", "attributes": { "weight": 1 } }, { "key": "37400", "source": "171", "target": "566", "attributes": { "weight": 1 } }, { "key": "27612", "source": "171", "target": "1966", "attributes": { "weight": 2 } }, { "key": "9617", "source": "171", "target": "565", "attributes": { "weight": 3 } }, { "key": "9640", "source": "171", "target": "301", "attributes": { "weight": 1 } }, { "key": "9624", "source": "171", "target": "574", "attributes": { "weight": 3 } }, { "key": "9656", "source": "171", "target": "1640", "attributes": { "weight": 1 } }, { "key": "14691", "source": "171", "target": "272", "attributes": { "weight": 3 } }, { "key": "15124", "source": "171", "target": "582", "attributes": { "weight": 1 } }, { "key": "3802", "source": "171", "target": "419", "attributes": { "weight": 3 } }, { "key": "9647", "source": "171", "target": "1634", "attributes": { "weight": 2 } }, { "key": "9629", "source": "171", "target": "1624", "attributes": { "weight": 1 } }, { "key": "5248", "source": "171", "target": "442", "attributes": { "weight": 3 } }, { "key": "9648", "source": "171", "target": "177", "attributes": { "weight": 3 } }, { "key": "26129", "source": "171", "target": "1056", "attributes": { "weight": 1 } }, { "key": "9620", "source": "171", "target": "830", "attributes": { "weight": 1 } }, { "key": "8800", "source": "171", "target": "567", "attributes": { "weight": 10 } }, { "key": "29679", "source": "171", "target": "2116", "attributes": { "weight": 1 } }, { "key": "27608", "source": "171", "target": "2284", "attributes": { "weight": 1 } }, { "key": "9637", "source": "171", "target": "1628", "attributes": { "weight": 1 } }, { "key": "15123", "source": "171", "target": "173", "attributes": { "weight": 2 } }, { "key": "9635", "source": "171", "target": "290", "attributes": { "weight": 1 } }, { "key": "8799", "source": "171", "target": "220", "attributes": { "weight": 3 } }, { "key": "9643", "source": "171", "target": "1632", "attributes": { "weight": 1 } }, { "key": "9630", "source": "171", "target": "1625", "attributes": { "weight": 2 } }, { "key": "3804", "source": "171", "target": "661", "attributes": { "weight": 4 } }, { "key": "15110", "source": "171", "target": "1143", "attributes": { "weight": 2 } }, { "key": "9627", "source": "171", "target": "169", "attributes": { "weight": 5 } }, { "key": "3803", "source": "171", "target": "651", "attributes": { "weight": 2 } }, { "key": "5249", "source": "171", "target": "454", "attributes": { "weight": 3 } }, { "key": "9638", "source": "171", "target": "578", "attributes": { "weight": 1 } }, { "key": "9651", "source": "171", "target": "1637", "attributes": { "weight": 3 } }, { "key": "9612", "source": "171", "target": "1617", "attributes": { "weight": 3 } }, { "key": "3801", "source": "171", "target": "645", "attributes": { "weight": 3 } }, { "key": "9615", "source": "171", "target": "1619", "attributes": { "weight": 1 } }, { "key": "15120", "source": "171", "target": "579", "attributes": { "weight": 1 } }, { "key": "9621", "source": "171", "target": "647", "attributes": { "weight": 3 } }, { "key": "29677", "source": "171", "target": "1763", "attributes": { "weight": 1 } }, { "key": "15118", "source": "171", "target": "361", "attributes": { "weight": 3 } }, { "key": "25624", "source": "171", "target": "787", "attributes": { "weight": 1 } }, { "key": "9618", "source": "171", "target": "259", "attributes": { "weight": 3 } }, { "key": "24527", "source": "171", "target": "790", "attributes": { "weight": 2 } }, { "key": "15125", "source": "171", "target": "310", "attributes": { "weight": 2 } }, { "key": "27602", "source": "171", "target": "1146", "attributes": { "weight": 1 } }, { "key": "15112", "source": "171", "target": "264", "attributes": { "weight": 1 } }, { "key": "9657", "source": "171", "target": "1641", "attributes": { "weight": 1 } }, { "key": "2969", "source": "171", "target": "176", "attributes": { "weight": 3 } }, { "key": "28922", "source": "171", "target": "641", "attributes": { "weight": 1 } }, { "key": "27610", "source": "171", "target": "1611", "attributes": { "weight": 1 } }, { "key": "9658", "source": "171", "target": "1642", "attributes": { "weight": 1 } }, { "key": "12593", "source": "171", "target": "180", "attributes": { "weight": 4 } }, { "key": "387", "source": "171", "target": "178", "attributes": { "weight": 10 } }, { "key": "9641", "source": "171", "target": "1630", "attributes": { "weight": 1 } }, { "key": "11166", "source": "171", "target": "1036", "attributes": { "weight": 3 } }, { "key": "14692", "source": "171", "target": "305", "attributes": { "weight": 4 } }, { "key": "27606", "source": "171", "target": "89", "attributes": { "weight": 1 } }, { "key": "9655", "source": "171", "target": "1639", "attributes": { "weight": 2 } }, { "key": "29678", "source": "171", "target": "1253", "attributes": { "weight": 1 } }, { "key": "9644", "source": "171", "target": "174", "attributes": { "weight": 2 } }, { "key": "9650", "source": "171", "target": "1636", "attributes": { "weight": 1 } }, { "key": "9639", "source": "171", "target": "1629", "attributes": { "weight": 2 } }, { "key": "9622", "source": "171", "target": "1621", "attributes": { "weight": 3 } }, { "key": "9623", "source": "171", "target": "572", "attributes": { "weight": 4 } }, { "key": "25228", "source": "171", "target": "1902", "attributes": { "weight": 1 } }, { "key": "14693", "source": "171", "target": "327", "attributes": { "weight": 3 } }, { "key": "15119", "source": "171", "target": "297", "attributes": { "weight": 4 } }, { "key": "9652", "source": "171", "target": "312", "attributes": { "weight": 1 } }, { "key": "27609", "source": "171", "target": "362", "attributes": { "weight": 2 } }, { "key": "27604", "source": "171", "target": "1046", "attributes": { "weight": 2 } }, { "key": "5251", "source": "171", "target": "468", "attributes": { "weight": 2 } }, { "key": "9632", "source": "171", "target": "1626", "attributes": { "weight": 4 } }, { "key": "17476", "source": "171", "target": "358", "attributes": { "weight": 3 } }, { "key": "5247", "source": "171", "target": "164", "attributes": { "weight": 9 } }, { "key": "15116", "source": "171", "target": "359", "attributes": { "weight": 4 } }, { "key": "9634", "source": "171", "target": "287", "attributes": { "weight": 2 } }, { "key": "15113", "source": "171", "target": "167", "attributes": { "weight": 1 } }, { "key": "15114", "source": "171", "target": "707", "attributes": { "weight": 1 } }, { "key": "5253", "source": "171", "target": "172", "attributes": { "weight": 4 } }, { "key": "9645", "source": "171", "target": "175", "attributes": { "weight": 2 } }, { "key": "9611", "source": "171", "target": "1616", "attributes": { "weight": 2 } }, { "key": "27607", "source": "171", "target": "791", "attributes": { "weight": 2 } }, { "key": "1880", "source": "171", "target": "93", "attributes": { "weight": 3 } }, { "key": "9649", "source": "171", "target": "1635", "attributes": { "weight": 1 } }, { "key": "9619", "source": "171", "target": "354", "attributes": { "weight": 1 } }, { "key": "15115", "source": "171", "target": "278", "attributes": { "weight": 3 } }, { "key": "3800", "source": "171", "target": "644", "attributes": { "weight": 3 } }, { "key": "9616", "source": "171", "target": "1620", "attributes": { "weight": 2 } }, { "key": "27603", "source": "171", "target": "1166", "attributes": { "weight": 1 } }, { "key": "23765", "source": "171", "target": "1774", "attributes": { "weight": 2 } }, { "key": "9625", "source": "171", "target": "1622", "attributes": { "weight": 1 } }, { "key": "21482", "source": "172", "target": "1966", "attributes": { "weight": 2 } }, { "key": "5956", "source": "172", "target": "171", "attributes": { "weight": 4 } }, { "key": "13966", "source": "172", "target": "180", "attributes": { "weight": 1 } }, { "key": "14275", "source": "172", "target": "168", "attributes": { "weight": 3 } }, { "key": "9676", "source": "172", "target": "1623", "attributes": { "weight": 1 } }, { "key": "27652", "source": "172", "target": "164", "attributes": { "weight": 2 } }, { "key": "21481", "source": "172", "target": "2285", "attributes": { "weight": 3 } }, { "key": "14800", "source": "172", "target": "259", "attributes": { "weight": 1 } }, { "key": "9675", "source": "172", "target": "564", "attributes": { "weight": 1 } }, { "key": "21479", "source": "172", "target": "1625", "attributes": { "weight": 3 } }, { "key": "21478", "source": "172", "target": "169", "attributes": { "weight": 2 } }, { "key": "9679", "source": "172", "target": "1629", "attributes": { "weight": 1 } }, { "key": "30560", "source": "172", "target": "1637", "attributes": { "weight": 1 } }, { "key": "9677", "source": "172", "target": "1626", "attributes": { "weight": 1 } }, { "key": "21480", "source": "172", "target": "2284", "attributes": { "weight": 2 } }, { "key": "30559", "source": "172", "target": "567", "attributes": { "weight": 1 } }, { "key": "21477", "source": "172", "target": "1619", "attributes": { "weight": 2 } }, { "key": "9678", "source": "172", "target": "1252", "attributes": { "weight": 4 } }, { "key": "18401", "source": "172", "target": "1621", "attributes": { "weight": 1 } }, { "key": "390", "source": "172", "target": "178", "attributes": { "weight": 6 } }, { "key": "22519", "source": "173", "target": "572", "attributes": { "weight": 5 } }, { "key": "35382", "source": "173", "target": "3197", "attributes": { "weight": 1 } }, { "key": "25207", "source": "173", "target": "1187", "attributes": { "weight": 1 } }, { "key": "28817", "source": "173", "target": "2803", "attributes": { "weight": 3 } }, { "key": "32278", "source": "173", "target": "164", "attributes": { "weight": 2 } }, { "key": "5958", "source": "173", "target": "297", "attributes": { "weight": 5 } }, { "key": "27653", "source": "173", "target": "564", "attributes": { "weight": 1 } }, { "key": "30250", "source": "173", "target": "2974", "attributes": { "weight": 2 } }, { "key": "30249", "source": "173", "target": "2967", "attributes": { "weight": 2 } }, { "key": "28821", "source": "173", "target": "2816", "attributes": { "weight": 2 } }, { "key": "28813", "source": "173", "target": "2792", "attributes": { "weight": 2 } }, { "key": "30478", "source": "173", "target": "1046", "attributes": { "weight": 1 } }, { "key": "391", "source": "173", "target": "178", "attributes": { "weight": 9 } }, { "key": "27745", "source": "173", "target": "1553", "attributes": { "weight": 1 } }, { "key": "15130", "source": "173", "target": "171", "attributes": { "weight": 2 } }, { "key": "28815", "source": "173", "target": "2795", "attributes": { "weight": 2 } }, { "key": "18078", "source": "173", "target": "567", "attributes": { "weight": 2 } }, { "key": "14801", "source": "173", "target": "259", "attributes": { "weight": 1 } }, { "key": "30245", "source": "173", "target": "2958", "attributes": { "weight": 2 } }, { "key": "35381", "source": "173", "target": "169", "attributes": { "weight": 1 } }, { "key": "28811", "source": "173", "target": "1146", "attributes": { "weight": 3 } }, { "key": "5957", "source": "173", "target": "1166", "attributes": { "weight": 4 } }, { "key": "25208", "source": "173", "target": "1628", "attributes": { "weight": 1 } }, { "key": "17504", "source": "173", "target": "1151", "attributes": { "weight": 2 } }, { "key": "28812", "source": "173", "target": "2790", "attributes": { "weight": 2 } }, { "key": "5959", "source": "173", "target": "310", "attributes": { "weight": 5 } }, { "key": "30246", "source": "173", "target": "1177", "attributes": { "weight": 1 } }, { "key": "28820", "source": "173", "target": "2811", "attributes": { "weight": 3 } }, { "key": "30251", "source": "173", "target": "2979", "attributes": { "weight": 2 } }, { "key": "25206", "source": "173", "target": "1143", "attributes": { "weight": 3 } }, { "key": "28819", "source": "173", "target": "2806", "attributes": { "weight": 3 } }, { "key": "17505", "source": "173", "target": "358", "attributes": { "weight": 2 } }, { "key": "28814", "source": "173", "target": "2794", "attributes": { "weight": 2 } }, { "key": "30248", "source": "173", "target": "638", "attributes": { "weight": 2 } }, { "key": "28816", "source": "173", "target": "2796", "attributes": { "weight": 3 } }, { "key": "28818", "source": "173", "target": "2805", "attributes": { "weight": 4 } }, { "key": "14276", "source": "173", "target": "168", "attributes": { "weight": 1 } }, { "key": "30247", "source": "173", "target": "165", "attributes": { "weight": 2 } }, { "key": "25545", "source": "174", "target": "574", "attributes": { "weight": 2 } }, { "key": "30528", "source": "174", "target": "1642", "attributes": { "weight": 2 } }, { "key": "25546", "source": "174", "target": "305", "attributes": { "weight": 1 } }, { "key": "25753", "source": "174", "target": "278", "attributes": { "weight": 2 } }, { "key": "18402", "source": "174", "target": "1621", "attributes": { "weight": 1 } }, { "key": "25548", "source": "174", "target": "177", "attributes": { "weight": 3 } }, { "key": "28106", "source": "174", "target": "301", "attributes": { "weight": 1 } }, { "key": "2970", "source": "174", "target": "176", "attributes": { "weight": 1 } }, { "key": "392", "source": "174", "target": "178", "attributes": { "weight": 5 } }, { "key": "9682", "source": "174", "target": "171", "attributes": { "weight": 2 } }, { "key": "25547", "source": "174", "target": "175", "attributes": { "weight": 1 } }, { "key": "12602", "source": "174", "target": "180", "attributes": { "weight": 2 } }, { "key": "25544", "source": "174", "target": "164", "attributes": { "weight": 4 } }, { "key": "14802", "source": "174", "target": "259", "attributes": { "weight": 1 } }, { "key": "25567", "source": "174", "target": "168", "attributes": { "weight": 1 } }, { "key": "18403", "source": "175", "target": "1621", "attributes": { "weight": 1 } }, { "key": "393", "source": "175", "target": "178", "attributes": { "weight": 4 } }, { "key": "25553", "source": "175", "target": "177", "attributes": { "weight": 2 } }, { "key": "25550", "source": "175", "target": "164", "attributes": { "weight": 2 } }, { "key": "30529", "source": "175", "target": "1549", "attributes": { "weight": 2 } }, { "key": "12863", "source": "175", "target": "582", "attributes": { "weight": 2 } }, { "key": "22611", "source": "175", "target": "180", "attributes": { "weight": 1 } }, { "key": "9683", "source": "175", "target": "171", "attributes": { "weight": 2 } }, { "key": "28129", "source": "175", "target": "287", "attributes": { "weight": 1 } }, { "key": "1934", "source": "175", "target": "93", "attributes": { "weight": 1 } }, { "key": "25568", "source": "175", "target": "168", "attributes": { "weight": 1 } }, { "key": "14819", "source": "175", "target": "259", "attributes": { "weight": 2 } }, { "key": "27681", "source": "175", "target": "1857", "attributes": { "weight": 4 } }, { "key": "9039", "source": "175", "target": "574", "attributes": { "weight": 3 } }, { "key": "25551", "source": "175", "target": "2608", "attributes": { "weight": 1 } }, { "key": "25552", "source": "175", "target": "174", "attributes": { "weight": 4 } }, { "key": "13505", "source": "175", "target": "304", "attributes": { "weight": 1 } }, { "key": "3237", "source": "175", "target": "305", "attributes": { "weight": 3 } }, { "key": "16223", "source": "175", "target": "278", "attributes": { "weight": 4 } }, { "key": "30530", "source": "175", "target": "2985", "attributes": { "weight": 1 } }, { "key": "13967", "source": "176", "target": "180", "attributes": { "weight": 1 } }, { "key": "13506", "source": "176", "target": "287", "attributes": { "weight": 2 } }, { "key": "36213", "source": "176", "target": "3274", "attributes": { "weight": 1 } }, { "key": "30480", "source": "176", "target": "1046", "attributes": { "weight": 1 } }, { "key": "28481", "source": "176", "target": "580", "attributes": { "weight": 1 } }, { "key": "2375", "source": "176", "target": "692", "attributes": { "weight": 1 } }, { "key": "2972", "source": "176", "target": "259", "attributes": { "weight": 2 } }, { "key": "13507", "source": "176", "target": "304", "attributes": { "weight": 1 } }, { "key": "36216", "source": "176", "target": "691", "attributes": { "weight": 1 } }, { "key": "15190", "source": "176", "target": "1621", "attributes": { "weight": 2 } }, { "key": "28130", "source": "176", "target": "301", "attributes": { "weight": 1 } }, { "key": "2372", "source": "176", "target": "685", "attributes": { "weight": 3 } }, { "key": "9520", "source": "176", "target": "354", "attributes": { "weight": 1 } }, { "key": "25569", "source": "176", "target": "168", "attributes": { "weight": 1 } }, { "key": "2371", "source": "176", "target": "684", "attributes": { "weight": 2 } }, { "key": "2373", "source": "176", "target": "689", "attributes": { "weight": 3 } }, { "key": "35504", "source": "176", "target": "177", "attributes": { "weight": 1 } }, { "key": "35503", "source": "176", "target": "574", "attributes": { "weight": 1 } }, { "key": "36212", "source": "176", "target": "830", "attributes": { "weight": 1 } }, { "key": "394", "source": "176", "target": "178", "attributes": { "weight": 6 } }, { "key": "2374", "source": "176", "target": "690", "attributes": { "weight": 1 } }, { "key": "36214", "source": "176", "target": "687", "attributes": { "weight": 2 } }, { "key": "2971", "source": "176", "target": "164", "attributes": { "weight": 4 } }, { "key": "36215", "source": "176", "target": "3275", "attributes": { "weight": 1 } }, { "key": "2973", "source": "176", "target": "278", "attributes": { "weight": 3 } }, { "key": "2975", "source": "176", "target": "174", "attributes": { "weight": 1 } }, { "key": "2974", "source": "176", "target": "171", "attributes": { "weight": 3 } }, { "key": "12355", "source": "176", "target": "357", "attributes": { "weight": 1 } }, { "key": "35457", "source": "177", "target": "3200", "attributes": { "weight": 2 } }, { "key": "6347", "source": "177", "target": "580", "attributes": { "weight": 4 } }, { "key": "25554", "source": "177", "target": "174", "attributes": { "weight": 3 } }, { "key": "35505", "source": "177", "target": "3201", "attributes": { "weight": 1 } }, { "key": "35508", "source": "177", "target": "579", "attributes": { "weight": 1 } }, { "key": "9689", "source": "177", "target": "171", "attributes": { "weight": 3 } }, { "key": "17513", "source": "177", "target": "358", "attributes": { "weight": 1 } }, { "key": "11752", "source": "177", "target": "905", "attributes": { "weight": 3 } }, { "key": "12499", "source": "177", "target": "1858", "attributes": { "weight": 3 } }, { "key": "25767", "source": "177", "target": "582", "attributes": { "weight": 2 } }, { "key": "12496", "source": "177", "target": "1856", "attributes": { "weight": 3 } }, { "key": "35456", "source": "177", "target": "3199", "attributes": { "weight": 2 } }, { "key": "30262", "source": "177", "target": "297", "attributes": { "weight": 2 } }, { "key": "30531", "source": "177", "target": "2985", "attributes": { "weight": 1 } }, { "key": "25766", "source": "177", "target": "278", "attributes": { "weight": 3 } }, { "key": "12498", "source": "177", "target": "574", "attributes": { "weight": 3 } }, { "key": "35515", "source": "177", "target": "3209", "attributes": { "weight": 1 } }, { "key": "35455", "source": "177", "target": "3198", "attributes": { "weight": 2 } }, { "key": "30482", "source": "177", "target": "1046", "attributes": { "weight": 1 } }, { "key": "870", "source": "177", "target": "301", "attributes": { "weight": 1 } }, { "key": "31704", "source": "177", "target": "595", "attributes": { "weight": 1 } }, { "key": "35516", "source": "177", "target": "3210", "attributes": { "weight": 1 } }, { "key": "35507", "source": "177", "target": "272", "attributes": { "weight": 1 } }, { "key": "13512", "source": "177", "target": "304", "attributes": { "weight": 1 } }, { "key": "11271", "source": "177", "target": "454", "attributes": { "weight": 2 } }, { "key": "35510", "source": "177", "target": "176", "attributes": { "weight": 1 } }, { "key": "25068", "source": "177", "target": "698", "attributes": { "weight": 2 } }, { "key": "35514", "source": "177", "target": "3208", "attributes": { "weight": 1 } }, { "key": "18404", "source": "177", "target": "1621", "attributes": { "weight": 1 } }, { "key": "9067", "source": "177", "target": "442", "attributes": { "weight": 3 } }, { "key": "35513", "source": "177", "target": "3207", "attributes": { "weight": 1 } }, { "key": "18084", "source": "177", "target": "1036", "attributes": { "weight": 2 } }, { "key": "1935", "source": "177", "target": "93", "attributes": { "weight": 3 } }, { "key": "12500", "source": "177", "target": "1859", "attributes": { "weight": 3 } }, { "key": "25637", "source": "177", "target": "787", "attributes": { "weight": 1 } }, { "key": "14820", "source": "177", "target": "259", "attributes": { "weight": 2 } }, { "key": "395", "source": "177", "target": "178", "attributes": { "weight": 5 } }, { "key": "14278", "source": "177", "target": "168", "attributes": { "weight": 4 } }, { "key": "28131", "source": "177", "target": "305", "attributes": { "weight": 2 } }, { "key": "30263", "source": "177", "target": "310", "attributes": { "weight": 2 } }, { "key": "35506", "source": "177", "target": "567", "attributes": { "weight": 1 } }, { "key": "35509", "source": "177", "target": "3203", "attributes": { "weight": 1 } }, { "key": "35025", "source": "177", "target": "3", "attributes": { "weight": 2 } }, { "key": "12495", "source": "177", "target": "1855", "attributes": { "weight": 3 } }, { "key": "25069", "source": "177", "target": "707", "attributes": { "weight": 1 } }, { "key": "12607", "source": "177", "target": "180", "attributes": { "weight": 3 } }, { "key": "32279", "source": "177", "target": "164", "attributes": { "weight": 4 } }, { "key": "8229", "source": "177", "target": "1513", "attributes": { "weight": 1 } }, { "key": "12501", "source": "177", "target": "1860", "attributes": { "weight": 3 } }, { "key": "35511", "source": "177", "target": "3204", "attributes": { "weight": 1 } }, { "key": "25555", "source": "177", "target": "175", "attributes": { "weight": 2 } }, { "key": "12497", "source": "177", "target": "1857", "attributes": { "weight": 3 } }, { "key": "25070", "source": "177", "target": "170", "attributes": { "weight": 2 } }, { "key": "12383", "source": "178", "target": "565", "attributes": { "weight": 2 } }, { "key": "12036", "source": "178", "target": "468", "attributes": { "weight": 4 } }, { "key": "27692", "source": "178", "target": "651", "attributes": { "weight": 3 } }, { "key": "27697", "source": "178", "target": "669", "attributes": { "weight": 2 } }, { "key": "2292", "source": "178", "target": "661", "attributes": { "weight": 7 } }, { "key": "27683", "source": "178", "target": "646", "attributes": { "weight": 2 } }, { "key": "13533", "source": "178", "target": "264", "attributes": { "weight": 3 } }, { "key": "26748", "source": "178", "target": "454", "attributes": { "weight": 3 } }, { "key": "402", "source": "178", "target": "171", "attributes": { "weight": 10 } }, { "key": "9695", "source": "178", "target": "1638", "attributes": { "weight": 1 } }, { "key": "28492", "source": "178", "target": "579", "attributes": { "weight": 2 } }, { "key": "31475", "source": "178", "target": "452", "attributes": { "weight": 1 } }, { "key": "31479", "source": "178", "target": "1060", "attributes": { "weight": 2 } }, { "key": "33157", "source": "178", "target": "1996", "attributes": { "weight": 1 } }, { "key": "32025", "source": "178", "target": "359", "attributes": { "weight": 1 } }, { "key": "27698", "source": "178", "target": "322", "attributes": { "weight": 3 } }, { "key": "24743", "source": "178", "target": "2527", "attributes": { "weight": 1 } }, { "key": "18405", "source": "178", "target": "1621", "attributes": { "weight": 1 } }, { "key": "22539", "source": "178", "target": "1631", "attributes": { "weight": 3 } }, { "key": "2939", "source": "178", "target": "289", "attributes": { "weight": 1 } }, { "key": "31478", "source": "178", "target": "473", "attributes": { "weight": 1 } }, { "key": "24588", "source": "178", "target": "1061", "attributes": { "weight": 2 } }, { "key": "21484", "source": "178", "target": "2282", "attributes": { "weight": 2 } }, { "key": "29218", "source": "178", "target": "638", "attributes": { "weight": 4 } }, { "key": "22533", "source": "178", "target": "567", "attributes": { "weight": 10 } }, { "key": "14842", "source": "178", "target": "259", "attributes": { "weight": 3 } }, { "key": "14280", "source": "178", "target": "1042", "attributes": { "weight": 5 } }, { "key": "31473", "source": "178", "target": "130", "attributes": { "weight": 1 } }, { "key": "9532", "source": "178", "target": "278", "attributes": { "weight": 5 } }, { "key": "6349", "source": "178", "target": "580", "attributes": { "weight": 8 } }, { "key": "27687", "source": "178", "target": "263", "attributes": { "weight": 2 } }, { "key": "400", "source": "178", "target": "168", "attributes": { "weight": 8 } }, { "key": "9694", "source": "178", "target": "1629", "attributes": { "weight": 1 } }, { "key": "9690", "source": "178", "target": "564", "attributes": { "weight": 4 } }, { "key": "27689", "source": "178", "target": "2710", "attributes": { "weight": 1 } }, { "key": "411", "source": "178", "target": "180", "attributes": { "weight": 7 } }, { "key": "17514", "source": "178", "target": "358", "attributes": { "weight": 5 } }, { "key": "28143", "source": "178", "target": "301", "attributes": { "weight": 1 } }, { "key": "12357", "source": "178", "target": "357", "attributes": { "weight": 4 } }, { "key": "401", "source": "178", "target": "169", "attributes": { "weight": 6 } }, { "key": "13970", "source": "178", "target": "905", "attributes": { "weight": 1 } }, { "key": "396", "source": "178", "target": "164", "attributes": { "weight": 9 } }, { "key": "22535", "source": "178", "target": "791", "attributes": { "weight": 3 } }, { "key": "22538", "source": "178", "target": "2328", "attributes": { "weight": 3 } }, { "key": "9693", "source": "178", "target": "1252", "attributes": { "weight": 5 } }, { "key": "32947", "source": "178", "target": "578", "attributes": { "weight": 1 } }, { "key": "27693", "source": "178", "target": "287", "attributes": { "weight": 2 } }, { "key": "403", "source": "178", "target": "93", "attributes": { "weight": 5 } }, { "key": "27691", "source": "178", "target": "574", "attributes": { "weight": 4 } }, { "key": "1938", "source": "178", "target": "576", "attributes": { "weight": 1 } }, { "key": "27684", "source": "178", "target": "262", "attributes": { "weight": 2 } }, { "key": "409", "source": "178", "target": "177", "attributes": { "weight": 5 } }, { "key": "33159", "source": "178", "target": "316", "attributes": { "weight": 1 } }, { "key": "9691", "source": "178", "target": "1625", "attributes": { "weight": 1 } }, { "key": "22532", "source": "178", "target": "1618", "attributes": { "weight": 3 } }, { "key": "32948", "source": "178", "target": "299", "attributes": { "weight": 1 } }, { "key": "33156", "source": "178", "target": "300", "attributes": { "weight": 1 } }, { "key": "27686", "source": "178", "target": "647", "attributes": { "weight": 3 } }, { "key": "9531", "source": "178", "target": "354", "attributes": { "weight": 4 } }, { "key": "22543", "source": "178", "target": "1640", "attributes": { "weight": 3 } }, { "key": "31472", "source": "178", "target": "641", "attributes": { "weight": 1 } }, { "key": "1937", "source": "178", "target": "569", "attributes": { "weight": 3 } }, { "key": "32946", "source": "178", "target": "292", "attributes": { "weight": 1 } }, { "key": "22534", "source": "178", "target": "572", "attributes": { "weight": 10 } }, { "key": "21486", "source": "178", "target": "2285", "attributes": { "weight": 2 } }, { "key": "7034", "source": "178", "target": "1166", "attributes": { "weight": 9 } }, { "key": "27690", "source": "178", "target": "573", "attributes": { "weight": 2 } }, { "key": "408", "source": "178", "target": "176", "attributes": { "weight": 6 } }, { "key": "27695", "source": "178", "target": "667", "attributes": { "weight": 3 } }, { "key": "399", "source": "178", "target": "167", "attributes": { "weight": 1 } }, { "key": "15415", "source": "178", "target": "91", "attributes": { "weight": 2 } }, { "key": "27685", "source": "178", "target": "830", "attributes": { "weight": 4 } }, { "key": "25072", "source": "178", "target": "707", "attributes": { "weight": 4 } }, { "key": "28490", "source": "178", "target": "698", "attributes": { "weight": 2 } }, { "key": "25896", "source": "178", "target": "220", "attributes": { "weight": 3 } }, { "key": "17515", "source": "178", "target": "297", "attributes": { "weight": 7 } }, { "key": "27694", "source": "178", "target": "361", "attributes": { "weight": 2 } }, { "key": "12037", "source": "178", "target": "310", "attributes": { "weight": 9 } }, { "key": "18406", "source": "178", "target": "1542", "attributes": { "weight": 2 } }, { "key": "27688", "source": "178", "target": "1857", "attributes": { "weight": 3 } }, { "key": "9692", "source": "178", "target": "1626", "attributes": { "weight": 4 } }, { "key": "31474", "source": "178", "target": "3", "attributes": { "weight": 2 } }, { "key": "410", "source": "178", "target": "179", "attributes": { "weight": 1 } }, { "key": "13535", "source": "178", "target": "312", "attributes": { "weight": 5 } }, { "key": "22540", "source": "178", "target": "1632", "attributes": { "weight": 3 } }, { "key": "17972", "source": "178", "target": "1143", "attributes": { "weight": 3 } }, { "key": "404", "source": "178", "target": "172", "attributes": { "weight": 6 } }, { "key": "14843", "source": "178", "target": "272", "attributes": { "weight": 2 } }, { "key": "21485", "source": "178", "target": "2284", "attributes": { "weight": 2 } }, { "key": "3266", "source": "178", "target": "305", "attributes": { "weight": 3 } }, { "key": "13534", "source": "178", "target": "304", "attributes": { "weight": 2 } }, { "key": "29985", "source": "178", "target": "1952", "attributes": { "weight": 1 } }, { "key": "30532", "source": "178", "target": "1642", "attributes": { "weight": 1 } }, { "key": "27299", "source": "178", "target": "57", "attributes": { "weight": 3 } }, { "key": "31477", "source": "178", "target": "189", "attributes": { "weight": 4 } }, { "key": "3829", "source": "178", "target": "419", "attributes": { "weight": 4 } }, { "key": "28491", "source": "178", "target": "170", "attributes": { "weight": 2 } }, { "key": "32945", "source": "178", "target": "1622", "attributes": { "weight": 1 } }, { "key": "27696", "source": "178", "target": "1966", "attributes": { "weight": 4 } }, { "key": "3828", "source": "178", "target": "645", "attributes": { "weight": 3 } }, { "key": "10929", "source": "178", "target": "457", "attributes": { "weight": 1 } }, { "key": "30483", "source": "178", "target": "1046", "attributes": { "weight": 1 } }, { "key": "27682", "source": "178", "target": "644", "attributes": { "weight": 3 } }, { "key": "14844", "source": "178", "target": "327", "attributes": { "weight": 4 } }, { "key": "398", "source": "178", "target": "166", "attributes": { "weight": 3 } }, { "key": "9071", "source": "178", "target": "442", "attributes": { "weight": 2 } }, { "key": "33158", "source": "178", "target": "313", "attributes": { "weight": 1 } }, { "key": "22541", "source": "178", "target": "1635", "attributes": { "weight": 3 } }, { "key": "397", "source": "178", "target": "165", "attributes": { "weight": 4 } }, { "key": "405", "source": "178", "target": "173", "attributes": { "weight": 9 } }, { "key": "22542", "source": "178", "target": "1636", "attributes": { "weight": 4 } }, { "key": "17974", "source": "178", "target": "1178", "attributes": { "weight": 2 } }, { "key": "31363", "source": "178", "target": "674", "attributes": { "weight": 2 } }, { "key": "31476", "source": "178", "target": "1611", "attributes": { "weight": 2 } }, { "key": "7033", "source": "178", "target": "1036", "attributes": { "weight": 6 } }, { "key": "22537", "source": "178", "target": "1628", "attributes": { "weight": 3 } }, { "key": "13971", "source": "178", "target": "1637", "attributes": { "weight": 7 } }, { "key": "407", "source": "178", "target": "175", "attributes": { "weight": 4 } }, { "key": "23795", "source": "178", "target": "1774", "attributes": { "weight": 2 } }, { "key": "406", "source": "178", "target": "174", "attributes": { "weight": 4 } }, { "key": "17973", "source": "178", "target": "1146", "attributes": { "weight": 3 } }, { "key": "1936", "source": "178", "target": "566", "attributes": { "weight": 4 } }, { "key": "22536", "source": "178", "target": "1624", "attributes": { "weight": 5 } }, { "key": "22531", "source": "178", "target": "1617", "attributes": { "weight": 5 } }, { "key": "28144", "source": "178", "target": "323", "attributes": { "weight": 1 } }, { "key": "883", "source": "179", "target": "262", "attributes": { "weight": 1 } }, { "key": "14860", "source": "179", "target": "311", "attributes": { "weight": 1 } }, { "key": "14857", "source": "179", "target": "299", "attributes": { "weight": 2 } }, { "key": "412", "source": "179", "target": "178", "attributes": { "weight": 1 } }, { "key": "3278", "source": "179", "target": "839", "attributes": { "weight": 4 } }, { "key": "14862", "source": "179", "target": "1933", "attributes": { "weight": 2 } }, { "key": "14858", "source": "179", "target": "300", "attributes": { "weight": 2 } }, { "key": "14853", "source": "179", "target": "263", "attributes": { "weight": 2 } }, { "key": "23024", "source": "179", "target": "276", "attributes": { "weight": 1 } }, { "key": "14854", "source": "179", "target": "168", "attributes": { "weight": 1 } }, { "key": "14861", "source": "179", "target": "322", "attributes": { "weight": 1 } }, { "key": "14855", "source": "179", "target": "289", "attributes": { "weight": 1 } }, { "key": "13540", "source": "179", "target": "264", "attributes": { "weight": 3 } }, { "key": "14852", "source": "179", "target": "259", "attributes": { "weight": 1 } }, { "key": "23023", "source": "179", "target": "166", "attributes": { "weight": 1 } }, { "key": "14856", "source": "179", "target": "290", "attributes": { "weight": 1 } }, { "key": "14851", "source": "179", "target": "164", "attributes": { "weight": 1 } }, { "key": "14859", "source": "179", "target": "301", "attributes": { "weight": 1 } }, { "key": "13541", "source": "179", "target": "304", "attributes": { "weight": 3 } }, { "key": "23025", "source": "179", "target": "167", "attributes": { "weight": 2 } }, { "key": "23022", "source": "179", "target": "260", "attributes": { "weight": 1 } }, { "key": "14863", "source": "179", "target": "336", "attributes": { "weight": 1 } }, { "key": "23026", "source": "179", "target": "334", "attributes": { "weight": 1 } }, { "key": "12630", "source": "180", "target": "370", "attributes": { "weight": 1 } }, { "key": "12645", "source": "180", "target": "316", "attributes": { "weight": 1 } }, { "key": "13998", "source": "180", "target": "319", "attributes": { "weight": 2 } }, { "key": "13642", "source": "180", "target": "321", "attributes": { "weight": 1 } }, { "key": "13979", "source": "180", "target": "454", "attributes": { "weight": 1 } }, { "key": "9704", "source": "180", "target": "564", "attributes": { "weight": 2 } }, { "key": "27561", "source": "180", "target": "283", "attributes": { "weight": 1 } }, { "key": "17522", "source": "180", "target": "358", "attributes": { "weight": 1 } }, { "key": "12624", "source": "180", "target": "275", "attributes": { "weight": 2 } }, { "key": "12623", "source": "180", "target": "574", "attributes": { "weight": 3 } }, { "key": "13981", "source": "180", "target": "166", "attributes": { "weight": 2 } }, { "key": "12644", "source": "180", "target": "314", "attributes": { "weight": 2 } }, { "key": "908", "source": "180", "target": "287", "attributes": { "weight": 2 } }, { "key": "12625", "source": "180", "target": "167", "attributes": { "weight": 3 } }, { "key": "13983", "source": "180", "target": "707", "attributes": { "weight": 1 } }, { "key": "3290", "source": "180", "target": "308", "attributes": { "weight": 3 } }, { "key": "14907", "source": "180", "target": "261", "attributes": { "weight": 1 } }, { "key": "13988", "source": "180", "target": "1820", "attributes": { "weight": 1 } }, { "key": "12647", "source": "180", "target": "333", "attributes": { "weight": 2 } }, { "key": "1944", "source": "180", "target": "93", "attributes": { "weight": 6 } }, { "key": "22619", "source": "180", "target": "175", "attributes": { "weight": 1 } }, { "key": "12613", "source": "180", "target": "164", "attributes": { "weight": 6 } }, { "key": "14908", "source": "180", "target": "271", "attributes": { "weight": 2 } }, { "key": "12646", "source": "180", "target": "1872", "attributes": { "weight": 1 } }, { "key": "12643", "source": "180", "target": "1637", "attributes": { "weight": 1 } }, { "key": "12635", "source": "180", "target": "578", "attributes": { "weight": 3 } }, { "key": "22617", "source": "180", "target": "830", "attributes": { "weight": 1 } }, { "key": "13994", "source": "180", "target": "310", "attributes": { "weight": 1 } }, { "key": "11758", "source": "180", "target": "268", "attributes": { "weight": 4 } }, { "key": "14910", "source": "180", "target": "301", "attributes": { "weight": 2 } }, { "key": "22618", "source": "180", "target": "2344", "attributes": { "weight": 1 } }, { "key": "12636", "source": "180", "target": "1871", "attributes": { "weight": 2 } }, { "key": "12641", "source": "180", "target": "1323", "attributes": { "weight": 5 } }, { "key": "12620", "source": "180", "target": "572", "attributes": { "weight": 3 } }, { "key": "12616", "source": "180", "target": "442", "attributes": { "weight": 1 } }, { "key": "13984", "source": "180", "target": "1227", "attributes": { "weight": 2 } }, { "key": "13992", "source": "180", "target": "176", "attributes": { "weight": 1 } }, { "key": "12618", "source": "180", "target": "1191", "attributes": { "weight": 4 } }, { "key": "22616", "source": "180", "target": "697", "attributes": { "weight": 1 } }, { "key": "28163", "source": "180", "target": "318", "attributes": { "weight": 1 } }, { "key": "12617", "source": "180", "target": "567", "attributes": { "weight": 3 } }, { "key": "12634", "source": "180", "target": "338", "attributes": { "weight": 4 } }, { "key": "14909", "source": "180", "target": "289", "attributes": { "weight": 2 } }, { "key": "12639", "source": "180", "target": "1823", "attributes": { "weight": 2 } }, { "key": "12642", "source": "180", "target": "177", "attributes": { "weight": 3 } }, { "key": "8238", "source": "180", "target": "1515", "attributes": { "weight": 3 } }, { "key": "6466", "source": "180", "target": "580", "attributes": { "weight": 10 } }, { "key": "12614", "source": "180", "target": "1166", "attributes": { "weight": 2 } }, { "key": "13986", "source": "180", "target": "286", "attributes": { "weight": 2 } }, { "key": "8233", "source": "180", "target": "292", "attributes": { "weight": 1 } }, { "key": "12632", "source": "180", "target": "171", "attributes": { "weight": 4 } }, { "key": "414", "source": "180", "target": "178", "attributes": { "weight": 7 } }, { "key": "8231", "source": "180", "target": "260", "attributes": { "weight": 3 } }, { "key": "12622", "source": "180", "target": "700", "attributes": { "weight": 2 } }, { "key": "11761", "source": "180", "target": "313", "attributes": { "weight": 4 } }, { "key": "12621", "source": "180", "target": "698", "attributes": { "weight": 5 } }, { "key": "413", "source": "180", "target": "170", "attributes": { "weight": 8 } }, { "key": "12633", "source": "180", "target": "290", "attributes": { "weight": 2 } }, { "key": "12640", "source": "180", "target": "1322", "attributes": { "weight": 2 } }, { "key": "13982", "source": "180", "target": "1905", "attributes": { "weight": 1 } }, { "key": "12865", "source": "180", "target": "582", "attributes": { "weight": 2 } }, { "key": "12615", "source": "180", "target": "259", "attributes": { "weight": 4 } }, { "key": "14001", "source": "180", "target": "323", "attributes": { "weight": 4 } }, { "key": "12648", "source": "180", "target": "1063", "attributes": { "weight": 1 } }, { "key": "11295", "source": "180", "target": "419", "attributes": { "weight": 2 } }, { "key": "3289", "source": "180", "target": "305", "attributes": { "weight": 8 } }, { "key": "8235", "source": "180", "target": "300", "attributes": { "weight": 3 } }, { "key": "13985", "source": "180", "target": "1819", "attributes": { "weight": 2 } }, { "key": "9120", "source": "180", "target": "220", "attributes": { "weight": 2 } }, { "key": "18418", "source": "180", "target": "276", "attributes": { "weight": 2 } }, { "key": "13995", "source": "180", "target": "311", "attributes": { "weight": 1 } }, { "key": "13997", "source": "180", "target": "1962", "attributes": { "weight": 1 } }, { "key": "8237", "source": "180", "target": "327", "attributes": { "weight": 2 } }, { "key": "13987", "source": "180", "target": "1960", "attributes": { "weight": 1 } }, { "key": "11762", "source": "180", "target": "326", "attributes": { "weight": 4 } }, { "key": "11759", "source": "180", "target": "272", "attributes": { "weight": 2 } }, { "key": "12628", "source": "180", "target": "277", "attributes": { "weight": 2 } }, { "key": "31099", "source": "180", "target": "1854", "attributes": { "weight": 1 } }, { "key": "13989", "source": "180", "target": "579", "attributes": { "weight": 3 } }, { "key": "12631", "source": "180", "target": "1870", "attributes": { "weight": 2 } }, { "key": "11757", "source": "180", "target": "262", "attributes": { "weight": 2 } }, { "key": "12629", "source": "180", "target": "278", "attributes": { "weight": 7 } }, { "key": "13996", "source": "180", "target": "907", "attributes": { "weight": 1 } }, { "key": "12619", "source": "180", "target": "264", "attributes": { "weight": 3 } }, { "key": "23481", "source": "180", "target": "291", "attributes": { "weight": 1 } }, { "key": "13991", "source": "180", "target": "172", "attributes": { "weight": 1 } }, { "key": "22620", "source": "180", "target": "329", "attributes": { "weight": 2 } }, { "key": "8236", "source": "180", "target": "307", "attributes": { "weight": 4 } }, { "key": "8232", "source": "180", "target": "263", "attributes": { "weight": 4 } }, { "key": "13999", "source": "180", "target": "495", "attributes": { "weight": 1 } }, { "key": "12637", "source": "180", "target": "304", "attributes": { "weight": 4 } }, { "key": "13990", "source": "180", "target": "1512", "attributes": { "weight": 3 } }, { "key": "14000", "source": "180", "target": "322", "attributes": { "weight": 3 } }, { "key": "8234", "source": "180", "target": "299", "attributes": { "weight": 3 } }, { "key": "29834", "source": "180", "target": "91", "attributes": { "weight": 2 } }, { "key": "12626", "source": "180", "target": "1869", "attributes": { "weight": 3 } }, { "key": "12638", "source": "180", "target": "174", "attributes": { "weight": 2 } }, { "key": "12627", "source": "180", "target": "168", "attributes": { "weight": 6 } }, { "key": "12612", "source": "180", "target": "1868", "attributes": { "weight": 3 } }, { "key": "11760", "source": "180", "target": "312", "attributes": { "weight": 4 } }, { "key": "13993", "source": "180", "target": "1561", "attributes": { "weight": 2 } }, { "key": "29558", "source": "181", "target": "495", "attributes": { "weight": 1 } }, { "key": "415", "source": "181", "target": "184", "attributes": { "weight": 1 } }, { "key": "6669", "source": "182", "target": "56", "attributes": { "weight": 1 } }, { "key": "31588", "source": "182", "target": "595", "attributes": { "weight": 1 } }, { "key": "26434", "source": "182", "target": "189", "attributes": { "weight": 1 } }, { "key": "8690", "source": "182", "target": "1363", "attributes": { "weight": 2 } }, { "key": "6667", "source": "182", "target": "231", "attributes": { "weight": 1 } }, { "key": "1344", "source": "182", "target": "443", "attributes": { "weight": 1 } }, { "key": "6665", "source": "182", "target": "426", "attributes": { "weight": 1 } }, { "key": "6664", "source": "182", "target": "458", "attributes": { "weight": 1 } }, { "key": "1345", "source": "182", "target": "224", "attributes": { "weight": 1 } }, { "key": "6668", "source": "182", "target": "483", "attributes": { "weight": 1 } }, { "key": "1346", "source": "182", "target": "183", "attributes": { "weight": 2 } }, { "key": "1347", "source": "182", "target": "490", "attributes": { "weight": 1 } }, { "key": "26433", "source": "182", "target": "454", "attributes": { "weight": 1 } }, { "key": "6666", "source": "182", "target": "1368", "attributes": { "weight": 1 } }, { "key": "24040", "source": "182", "target": "130", "attributes": { "weight": 2 } }, { "key": "33336", "source": "182", "target": "425", "attributes": { "weight": 1 } }, { "key": "416", "source": "182", "target": "57", "attributes": { "weight": 1 } }, { "key": "6663", "source": "182", "target": "424", "attributes": { "weight": 2 } }, { "key": "6721", "source": "183", "target": "1094", "attributes": { "weight": 1 } }, { "key": "26437", "source": "183", "target": "1047", "attributes": { "weight": 2 } }, { "key": "6674", "source": "183", "target": "433", "attributes": { "weight": 2 } }, { "key": "1357", "source": "183", "target": "130", "attributes": { "weight": 4 } }, { "key": "6678", "source": "183", "target": "387", "attributes": { "weight": 1 } }, { "key": "11048", "source": "183", "target": "220", "attributes": { "weight": 2 } }, { "key": "1375", "source": "183", "target": "471", "attributes": { "weight": 3 } }, { "key": "31517", "source": "183", "target": "3060", "attributes": { "weight": 1 } }, { "key": "1389", "source": "183", "target": "494", "attributes": { "weight": 3 } }, { "key": "1376", "source": "183", "target": "229", "attributes": { "weight": 1 } }, { "key": "6695", "source": "183", "target": "54", "attributes": { "weight": 4 } }, { "key": "32872", "source": "183", "target": "470", "attributes": { "weight": 1 } }, { "key": "6712", "source": "183", "target": "489", "attributes": { "weight": 1 } }, { "key": "26443", "source": "183", "target": "580", "attributes": { "weight": 2 } }, { "key": "6719", "source": "183", "target": "1377", "attributes": { "weight": 1 } }, { "key": "26445", "source": "183", "target": "1026", "attributes": { "weight": 1 } }, { "key": "1385", "source": "183", "target": "487", "attributes": { "weight": 4 } }, { "key": "12181", "source": "183", "target": "472", "attributes": { "weight": 2 } }, { "key": "32341", "source": "183", "target": "791", "attributes": { "weight": 1 } }, { "key": "6681", "source": "183", "target": "3", "attributes": { "weight": 2 } }, { "key": "1358", "source": "183", "target": "436", "attributes": { "weight": 1 } }, { "key": "6709", "source": "183", "target": "232", "attributes": { "weight": 3 } }, { "key": "12179", "source": "183", "target": "435", "attributes": { "weight": 2 } }, { "key": "6720", "source": "183", "target": "57", "attributes": { "weight": 3 } }, { "key": "11866", "source": "183", "target": "1363", "attributes": { "weight": 1 } }, { "key": "6704", "source": "183", "target": "372", "attributes": { "weight": 1 } }, { "key": "6673", "source": "183", "target": "424", "attributes": { "weight": 5 } }, { "key": "1371", "source": "183", "target": "459", "attributes": { "weight": 3 } }, { "key": "1383", "source": "183", "target": "479", "attributes": { "weight": 3 } }, { "key": "6684", "source": "183", "target": "1116", "attributes": { "weight": 3 } }, { "key": "6682", "source": "183", "target": "451", "attributes": { "weight": 2 } }, { "key": "1373", "source": "183", "target": "467", "attributes": { "weight": 1 } }, { "key": "21434", "source": "183", "target": "8", "attributes": { "weight": 3 } }, { "key": "35782", "source": "183", "target": "790", "attributes": { "weight": 1 } }, { "key": "1381", "source": "183", "target": "231", "attributes": { "weight": 5 } }, { "key": "29397", "source": "183", "target": "2856", "attributes": { "weight": 1 } }, { "key": "15233", "source": "183", "target": "53", "attributes": { "weight": 1 } }, { "key": "6705", "source": "183", "target": "1371", "attributes": { "weight": 1 } }, { "key": "6686", "source": "183", "target": "1358", "attributes": { "weight": 3 } }, { "key": "3945", "source": "183", "target": "1066", "attributes": { "weight": 1 } }, { "key": "8699", "source": "183", "target": "195", "attributes": { "weight": 3 } }, { "key": "6697", "source": "183", "target": "1085", "attributes": { "weight": 1 } }, { "key": "15234", "source": "183", "target": "499", "attributes": { "weight": 2 } }, { "key": "26440", "source": "183", "target": "187", "attributes": { "weight": 2 } }, { "key": "4969", "source": "183", "target": "468", "attributes": { "weight": 3 } }, { "key": "1388", "source": "183", "target": "492", "attributes": { "weight": 1 } }, { "key": "6685", "source": "183", "target": "1357", "attributes": { "weight": 2 } }, { "key": "33044", "source": "183", "target": "493", "attributes": { "weight": 1 } }, { "key": "6696", "source": "183", "target": "1366", "attributes": { "weight": 1 } }, { "key": "29398", "source": "183", "target": "2211", "attributes": { "weight": 1 } }, { "key": "6700", "source": "183", "target": "1368", "attributes": { "weight": 3 } }, { "key": "6702", "source": "183", "target": "1370", "attributes": { "weight": 1 } }, { "key": "36991", "source": "183", "target": "2250", "attributes": { "weight": 1 } }, { "key": "27028", "source": "183", "target": "1247", "attributes": { "weight": 1 } }, { "key": "1364", "source": "183", "target": "446", "attributes": { "weight": 1 } }, { "key": "29396", "source": "183", "target": "857", "attributes": { "weight": 2 } }, { "key": "6699", "source": "183", "target": "190", "attributes": { "weight": 3 } }, { "key": "1360", "source": "183", "target": "439", "attributes": { "weight": 1 } }, { "key": "4971", "source": "183", "target": "123", "attributes": { "weight": 8 } }, { "key": "1356", "source": "183", "target": "59", "attributes": { "weight": 3 } }, { "key": "1378", "source": "183", "target": "475", "attributes": { "weight": 1 } }, { "key": "15230", "source": "183", "target": "1703", "attributes": { "weight": 1 } }, { "key": "1370", "source": "183", "target": "458", "attributes": { "weight": 6 } }, { "key": "4968", "source": "183", "target": "338", "attributes": { "weight": 2 } }, { "key": "1377", "source": "183", "target": "473", "attributes": { "weight": 3 } }, { "key": "6713", "source": "183", "target": "490", "attributes": { "weight": 1 } }, { "key": "26447", "source": "183", "target": "1375", "attributes": { "weight": 1 } }, { "key": "25913", "source": "183", "target": "1367", "attributes": { "weight": 2 } }, { "key": "8700", "source": "183", "target": "442", "attributes": { "weight": 3 } }, { "key": "4967", "source": "183", "target": "370", "attributes": { "weight": 2 } }, { "key": "15232", "source": "183", "target": "860", "attributes": { "weight": 2 } }, { "key": "37322", "source": "183", "target": "1775", "attributes": { "weight": 1 } }, { "key": "6718", "source": "183", "target": "495", "attributes": { "weight": 3 } }, { "key": "6715", "source": "183", "target": "56", "attributes": { "weight": 3 } }, { "key": "33338", "source": "183", "target": "135", "attributes": { "weight": 1 } }, { "key": "26439", "source": "183", "target": "1118", "attributes": { "weight": 1 } }, { "key": "6711", "source": "183", "target": "1373", "attributes": { "weight": 1 } }, { "key": "4972", "source": "183", "target": "215", "attributes": { "weight": 2 } }, { "key": "12180", "source": "183", "target": "1535", "attributes": { "weight": 1 } }, { "key": "4966", "source": "183", "target": "1036", "attributes": { "weight": 3 } }, { "key": "6706", "source": "183", "target": "483", "attributes": { "weight": 4 } }, { "key": "31515", "source": "183", "target": "2114", "attributes": { "weight": 1 } }, { "key": "1363", "source": "183", "target": "445", "attributes": { "weight": 6 } }, { "key": "1368", "source": "183", "target": "52", "attributes": { "weight": 1 } }, { "key": "4970", "source": "183", "target": "371", "attributes": { "weight": 2 } }, { "key": "1367", "source": "183", "target": "449", "attributes": { "weight": 2 } }, { "key": "6701", "source": "183", "target": "474", "attributes": { "weight": 2 } }, { "key": "1361", "source": "183", "target": "425", "attributes": { "weight": 1 } }, { "key": "1379", "source": "183", "target": "476", "attributes": { "weight": 2 } }, { "key": "6677", "source": "183", "target": "674", "attributes": { "weight": 4 } }, { "key": "6680", "source": "183", "target": "1355", "attributes": { "weight": 3 } }, { "key": "6714", "source": "183", "target": "192", "attributes": { "weight": 2 } }, { "key": "6694", "source": "183", "target": "466", "attributes": { "weight": 1 } }, { "key": "1384", "source": "183", "target": "427", "attributes": { "weight": 1 } }, { "key": "1372", "source": "183", "target": "465", "attributes": { "weight": 1 } }, { "key": "6690", "source": "183", "target": "457", "attributes": { "weight": 2 } }, { "key": "17361", "source": "183", "target": "358", "attributes": { "weight": 2 } }, { "key": "15231", "source": "183", "target": "1070", "attributes": { "weight": 1 } }, { "key": "6716", "source": "183", "target": "340", "attributes": { "weight": 1 } }, { "key": "1374", "source": "183", "target": "228", "attributes": { "weight": 1 } }, { "key": "1359", "source": "183", "target": "437", "attributes": { "weight": 1 } }, { "key": "6707", "source": "183", "target": "695", "attributes": { "weight": 2 } }, { "key": "3944", "source": "183", "target": "432", "attributes": { "weight": 2 } }, { "key": "6717", "source": "183", "target": "193", "attributes": { "weight": 3 } }, { "key": "6708", "source": "183", "target": "55", "attributes": { "weight": 1 } }, { "key": "6692", "source": "183", "target": "1362", "attributes": { "weight": 1 } }, { "key": "26444", "source": "183", "target": "70", "attributes": { "weight": 2 } }, { "key": "31516", "source": "183", "target": "2139", "attributes": { "weight": 1 } }, { "key": "6698", "source": "183", "target": "189", "attributes": { "weight": 2 } }, { "key": "6683", "source": "183", "target": "452", "attributes": { "weight": 3 } }, { "key": "6679", "source": "183", "target": "238", "attributes": { "weight": 1 } }, { "key": "6693", "source": "183", "target": "462", "attributes": { "weight": 3 } }, { "key": "6688", "source": "183", "target": "701", "attributes": { "weight": 1 } }, { "key": "13044", "source": "183", "target": "304", "attributes": { "weight": 2 } }, { "key": "1382", "source": "183", "target": "478", "attributes": { "weight": 1 } }, { "key": "11865", "source": "183", "target": "1522", "attributes": { "weight": 1 } }, { "key": "417", "source": "183", "target": "185", "attributes": { "weight": 1 } }, { "key": "1369", "source": "183", "target": "456", "attributes": { "weight": 1 } }, { "key": "6687", "source": "183", "target": "1359", "attributes": { "weight": 1 } }, { "key": "1387", "source": "183", "target": "491", "attributes": { "weight": 1 } }, { "key": "1391", "source": "183", "target": "498", "attributes": { "weight": 1 } }, { "key": "6710", "source": "183", "target": "1067", "attributes": { "weight": 1 } }, { "key": "1390", "source": "183", "target": "497", "attributes": { "weight": 3 } }, { "key": "1365", "source": "183", "target": "447", "attributes": { "weight": 3 } }, { "key": "26446", "source": "183", "target": "352", "attributes": { "weight": 1 } }, { "key": "6676", "source": "183", "target": "444", "attributes": { "weight": 1 } }, { "key": "6672", "source": "183", "target": "1354", "attributes": { "weight": 1 } }, { "key": "31589", "source": "183", "target": "595", "attributes": { "weight": 1 } }, { "key": "6675", "source": "183", "target": "443", "attributes": { "weight": 3 } }, { "key": "23377", "source": "183", "target": "1258", "attributes": { "weight": 2 } }, { "key": "17852", "source": "183", "target": "454", "attributes": { "weight": 2 } }, { "key": "6703", "source": "183", "target": "1298", "attributes": { "weight": 1 } }, { "key": "26442", "source": "183", "target": "1282", "attributes": { "weight": 1 } }, { "key": "1366", "source": "183", "target": "182", "attributes": { "weight": 2 } }, { "key": "6691", "source": "183", "target": "426", "attributes": { "weight": 4 } }, { "key": "1355", "source": "183", "target": "431", "attributes": { "weight": 1 } }, { "key": "26441", "source": "183", "target": "1365", "attributes": { "weight": 2 } }, { "key": "26438", "source": "183", "target": "1219", "attributes": { "weight": 1 } }, { "key": "4121", "source": "183", "target": "1088", "attributes": { "weight": 2 } }, { "key": "1386", "source": "183", "target": "488", "attributes": { "weight": 3 } }, { "key": "26436", "source": "183", "target": "440", "attributes": { "weight": 1 } }, { "key": "1362", "source": "183", "target": "441", "attributes": { "weight": 3 } }, { "key": "1392", "source": "183", "target": "194", "attributes": { "weight": 1 } }, { "key": "6670", "source": "183", "target": "1353", "attributes": { "weight": 2 } }, { "key": "1380", "source": "183", "target": "191", "attributes": { "weight": 3 } }, { "key": "6671", "source": "183", "target": "429", "attributes": { "weight": 2 } }, { "key": "6689", "source": "183", "target": "188", "attributes": { "weight": 2 } }, { "key": "418", "source": "184", "target": "181", "attributes": { "weight": 1 } }, { "key": "420", "source": "184", "target": "189", "attributes": { "weight": 1 } }, { "key": "421", "source": "184", "target": "57", "attributes": { "weight": 1 } }, { "key": "32088", "source": "184", "target": "3084", "attributes": { "weight": 1 } }, { "key": "419", "source": "184", "target": "185", "attributes": { "weight": 1 } }, { "key": "26472", "source": "185", "target": "454", "attributes": { "weight": 1 } }, { "key": "422", "source": "185", "target": "183", "attributes": { "weight": 1 } }, { "key": "427", "source": "185", "target": "194", "attributes": { "weight": 1 } }, { "key": "32378", "source": "185", "target": "791", "attributes": { "weight": 1 } }, { "key": "1402", "source": "185", "target": "224", "attributes": { "weight": 1 } }, { "key": "6729", "source": "185", "target": "231", "attributes": { "weight": 2 } }, { "key": "423", "source": "185", "target": "184", "attributes": { "weight": 1 } }, { "key": "6728", "source": "185", "target": "459", "attributes": { "weight": 1 } }, { "key": "424", "source": "185", "target": "188", "attributes": { "weight": 1 } }, { "key": "425", "source": "185", "target": "191", "attributes": { "weight": 1 } }, { "key": "31527", "source": "185", "target": "424", "attributes": { "weight": 1 } }, { "key": "426", "source": "185", "target": "193", "attributes": { "weight": 1 } }, { "key": "20050", "source": "186", "target": "56", "attributes": { "weight": 1 } }, { "key": "20048", "source": "186", "target": "2111", "attributes": { "weight": 1 } }, { "key": "6735", "source": "186", "target": "444", "attributes": { "weight": 2 } }, { "key": "1404", "source": "186", "target": "188", "attributes": { "weight": 1 } }, { "key": "20047", "source": "186", "target": "231", "attributes": { "weight": 2 } }, { "key": "20043", "source": "186", "target": "449", "attributes": { "weight": 1 } }, { "key": "20041", "source": "186", "target": "1070", "attributes": { "weight": 1 } }, { "key": "1405", "source": "186", "target": "193", "attributes": { "weight": 1 } }, { "key": "35934", "source": "186", "target": "428", "attributes": { "weight": 1 } }, { "key": "20046", "source": "186", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20042", "source": "186", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20039", "source": "186", "target": "1756", "attributes": { "weight": 1 } }, { "key": "428", "source": "186", "target": "190", "attributes": { "weight": 1 } }, { "key": "20040", "source": "186", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20045", "source": "186", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20044", "source": "186", "target": "451", "attributes": { "weight": 1 } }, { "key": "36910", "source": "186", "target": "1072", "attributes": { "weight": 1 } }, { "key": "20038", "source": "186", "target": "429", "attributes": { "weight": 1 } }, { "key": "20051", "source": "186", "target": "2189", "attributes": { "weight": 1 } }, { "key": "35933", "source": "186", "target": "433", "attributes": { "weight": 1 } }, { "key": "20049", "source": "186", "target": "489", "attributes": { "weight": 1 } }, { "key": "29027", "source": "187", "target": "495", "attributes": { "weight": 1 } }, { "key": "6778", "source": "187", "target": "56", "attributes": { "weight": 2 } }, { "key": "6779", "source": "187", "target": "193", "attributes": { "weight": 1 } }, { "key": "6777", "source": "187", "target": "231", "attributes": { "weight": 2 } }, { "key": "429", "source": "187", "target": "57", "attributes": { "weight": 1 } }, { "key": "26567", "source": "187", "target": "454", "attributes": { "weight": 2 } }, { "key": "6776", "source": "187", "target": "458", "attributes": { "weight": 2 } }, { "key": "26568", "source": "187", "target": "189", "attributes": { "weight": 2 } }, { "key": "23245", "source": "187", "target": "424", "attributes": { "weight": 2 } }, { "key": "26566", "source": "187", "target": "183", "attributes": { "weight": 2 } }, { "key": "26569", "source": "187", "target": "490", "attributes": { "weight": 2 } }, { "key": "1464", "source": "188", "target": "496", "attributes": { "weight": 1 } }, { "key": "6788", "source": "188", "target": "1353", "attributes": { "weight": 2 } }, { "key": "1441", "source": "188", "target": "52", "attributes": { "weight": 1 } }, { "key": "1442", "source": "188", "target": "458", "attributes": { "weight": 4 } }, { "key": "1427", "source": "188", "target": "59", "attributes": { "weight": 2 } }, { "key": "17245", "source": "188", "target": "449", "attributes": { "weight": 1 } }, { "key": "1451", "source": "188", "target": "191", "attributes": { "weight": 3 } }, { "key": "6793", "source": "188", "target": "183", "attributes": { "weight": 2 } }, { "key": "6801", "source": "188", "target": "192", "attributes": { "weight": 2 } }, { "key": "31313", "source": "188", "target": "674", "attributes": { "weight": 2 } }, { "key": "17463", "source": "188", "target": "358", "attributes": { "weight": 2 } }, { "key": "1459", "source": "188", "target": "488", "attributes": { "weight": 1 } }, { "key": "33408", "source": "188", "target": "135", "attributes": { "weight": 1 } }, { "key": "15294", "source": "188", "target": "483", "attributes": { "weight": 1 } }, { "key": "1435", "source": "188", "target": "445", "attributes": { "weight": 2 } }, { "key": "1447", "source": "188", "target": "473", "attributes": { "weight": 2 } }, { "key": "1437", "source": "188", "target": "451", "attributes": { "weight": 2 } }, { "key": "1461", "source": "188", "target": "233", "attributes": { "weight": 2 } }, { "key": "1463", "source": "188", "target": "495", "attributes": { "weight": 4 } }, { "key": "1452", "source": "188", "target": "70", "attributes": { "weight": 2 } }, { "key": "1458", "source": "188", "target": "487", "attributes": { "weight": 2 } }, { "key": "1430", "source": "188", "target": "435", "attributes": { "weight": 1 } }, { "key": "1450", "source": "188", "target": "476", "attributes": { "weight": 2 } }, { "key": "1465", "source": "188", "target": "57", "attributes": { "weight": 3 } }, { "key": "1446", "source": "188", "target": "472", "attributes": { "weight": 2 } }, { "key": "26311", "source": "188", "target": "1372", "attributes": { "weight": 2 } }, { "key": "1429", "source": "188", "target": "434", "attributes": { "weight": 1 } }, { "key": "1436", "source": "188", "target": "447", "attributes": { "weight": 1 } }, { "key": "15292", "source": "188", "target": "1357", "attributes": { "weight": 1 } }, { "key": "6798", "source": "188", "target": "54", "attributes": { "weight": 3 } }, { "key": "1431", "source": "188", "target": "436", "attributes": { "weight": 1 } }, { "key": "1449", "source": "188", "target": "474", "attributes": { "weight": 2 } }, { "key": "1460", "source": "188", "target": "490", "attributes": { "weight": 2 } }, { "key": "15293", "source": "188", "target": "426", "attributes": { "weight": 1 } }, { "key": "26579", "source": "188", "target": "1047", "attributes": { "weight": 2 } }, { "key": "6800", "source": "188", "target": "695", "attributes": { "weight": 2 } }, { "key": "25918", "source": "188", "target": "1367", "attributes": { "weight": 1 } }, { "key": "26581", "source": "188", "target": "470", "attributes": { "weight": 2 } }, { "key": "26577", "source": "188", "target": "223", "attributes": { "weight": 2 } }, { "key": "1434", "source": "188", "target": "224", "attributes": { "weight": 1 } }, { "key": "6794", "source": "188", "target": "1358", "attributes": { "weight": 2 } }, { "key": "33407", "source": "188", "target": "450", "attributes": { "weight": 1 } }, { "key": "6792", "source": "188", "target": "443", "attributes": { "weight": 2 } }, { "key": "1455", "source": "188", "target": "427", "attributes": { "weight": 1 } }, { "key": "1457", "source": "188", "target": "232", "attributes": { "weight": 1 } }, { "key": "1432", "source": "188", "target": "440", "attributes": { "weight": 1 } }, { "key": "1454", "source": "188", "target": "479", "attributes": { "weight": 3 } }, { "key": "32390", "source": "188", "target": "791", "attributes": { "weight": 1 } }, { "key": "1456", "source": "188", "target": "484", "attributes": { "weight": 1 } }, { "key": "15291", "source": "188", "target": "860", "attributes": { "weight": 1 } }, { "key": "1462", "source": "188", "target": "494", "attributes": { "weight": 2 } }, { "key": "33049", "source": "188", "target": "1368", "attributes": { "weight": 1 } }, { "key": "31600", "source": "188", "target": "8", "attributes": { "weight": 1 } }, { "key": "33048", "source": "188", "target": "1355", "attributes": { "weight": 1 } }, { "key": "33409", "source": "188", "target": "2258", "attributes": { "weight": 1 } }, { "key": "430", "source": "188", "target": "185", "attributes": { "weight": 1 } }, { "key": "32389", "source": "188", "target": "857", "attributes": { "weight": 2 } }, { "key": "2422", "source": "188", "target": "701", "attributes": { "weight": 1 } }, { "key": "26582", "source": "188", "target": "497", "attributes": { "weight": 2 } }, { "key": "6790", "source": "188", "target": "1354", "attributes": { "weight": 2 } }, { "key": "26578", "source": "188", "target": "425", "attributes": { "weight": 3 } }, { "key": "15295", "source": "188", "target": "499", "attributes": { "weight": 1 } }, { "key": "6797", "source": "188", "target": "462", "attributes": { "weight": 2 } }, { "key": "31601", "source": "188", "target": "595", "attributes": { "weight": 1 } }, { "key": "6791", "source": "188", "target": "424", "attributes": { "weight": 5 } }, { "key": "1440", "source": "188", "target": "186", "attributes": { "weight": 1 } }, { "key": "1438", "source": "188", "target": "452", "attributes": { "weight": 2 } }, { "key": "6795", "source": "188", "target": "457", "attributes": { "weight": 2 } }, { "key": "1439", "source": "188", "target": "453", "attributes": { "weight": 1 } }, { "key": "6799", "source": "188", "target": "189", "attributes": { "weight": 2 } }, { "key": "6802", "source": "188", "target": "56", "attributes": { "weight": 3 } }, { "key": "1444", "source": "188", "target": "468", "attributes": { "weight": 4 } }, { "key": "1448", "source": "188", "target": "190", "attributes": { "weight": 2 } }, { "key": "12524", "source": "188", "target": "51", "attributes": { "weight": 1 } }, { "key": "1445", "source": "188", "target": "471", "attributes": { "weight": 1 } }, { "key": "32089", "source": "188", "target": "3084", "attributes": { "weight": 1 } }, { "key": "1453", "source": "188", "target": "231", "attributes": { "weight": 4 } }, { "key": "1426", "source": "188", "target": "220", "attributes": { "weight": 5 } }, { "key": "24495", "source": "188", "target": "790", "attributes": { "weight": 1 } }, { "key": "1433", "source": "188", "target": "442", "attributes": { "weight": 3 } }, { "key": "6789", "source": "188", "target": "429", "attributes": { "weight": 4 } }, { "key": "1428", "source": "188", "target": "130", "attributes": { "weight": 4 } }, { "key": "26580", "source": "188", "target": "454", "attributes": { "weight": 2 } }, { "key": "1443", "source": "188", "target": "463", "attributes": { "weight": 2 } }, { "key": "33406", "source": "188", "target": "432", "attributes": { "weight": 1 } }, { "key": "37010", "source": "188", "target": "1366", "attributes": { "weight": 1 } }, { "key": "6796", "source": "188", "target": "459", "attributes": { "weight": 1 } }, { "key": "6933", "source": "189", "target": "1094", "attributes": { "weight": 1 } }, { "key": "26669", "source": "189", "target": "464", "attributes": { "weight": 2 } }, { "key": "6910", "source": "189", "target": "188", "attributes": { "weight": 2 } }, { "key": "6918", "source": "189", "target": "1085", "attributes": { "weight": 1 } }, { "key": "26652", "source": "189", "target": "1047", "attributes": { "weight": 2 } }, { "key": "26670", "source": "189", "target": "338", "attributes": { "weight": 2 } }, { "key": "26674", "source": "189", "target": "2647", "attributes": { "weight": 1 } }, { "key": "6932", "source": "189", "target": "495", "attributes": { "weight": 5 } }, { "key": "26697", "source": "189", "target": "490", "attributes": { "weight": 1 } }, { "key": "26660", "source": "189", "target": "168", "attributes": { "weight": 1 } }, { "key": "15343", "source": "189", "target": "426", "attributes": { "weight": 1 } }, { "key": "26693", "source": "189", "target": "2648", "attributes": { "weight": 2 } }, { "key": "6897", "source": "189", "target": "1036", "attributes": { "weight": 3 } }, { "key": "26691", "source": "189", "target": "1312", "attributes": { "weight": 1 } }, { "key": "17270", "source": "189", "target": "2108", "attributes": { "weight": 1 } }, { "key": "33569", "source": "189", "target": "450", "attributes": { "weight": 1 } }, { "key": "26637", "source": "189", "target": "164", "attributes": { "weight": 2 } }, { "key": "33571", "source": "189", "target": "489", "attributes": { "weight": 1 } }, { "key": "15344", "source": "189", "target": "1373", "attributes": { "weight": 1 } }, { "key": "6929", "source": "189", "target": "56", "attributes": { "weight": 4 } }, { "key": "33061", "source": "189", "target": "493", "attributes": { "weight": 1 } }, { "key": "6903", "source": "189", "target": "445", "attributes": { "weight": 5 } }, { "key": "26666", "source": "189", "target": "638", "attributes": { "weight": 3 } }, { "key": "18477", "source": "189", "target": "1738", "attributes": { "weight": 1 } }, { "key": "26695", "source": "189", "target": "486", "attributes": { "weight": 1 } }, { "key": "26687", "source": "189", "target": "478", "attributes": { "weight": 2 } }, { "key": "26647", "source": "189", "target": "674", "attributes": { "weight": 2 } }, { "key": "6925", "source": "189", "target": "483", "attributes": { "weight": 3 } }, { "key": "6914", "source": "189", "target": "466", "attributes": { "weight": 1 } }, { "key": "26705", "source": "189", "target": "1375", "attributes": { "weight": 1 } }, { "key": "26655", "source": "189", "target": "1536", "attributes": { "weight": 1 } }, { "key": "26661", "source": "189", "target": "707", "attributes": { "weight": 2 } }, { "key": "26644", "source": "189", "target": "339", "attributes": { "weight": 2 } }, { "key": "8928", "source": "189", "target": "442", "attributes": { "weight": 2 } }, { "key": "13293", "source": "189", "target": "305", "attributes": { "weight": 2 } }, { "key": "25108", "source": "189", "target": "427", "attributes": { "weight": 2 } }, { "key": "6901", "source": "189", "target": "443", "attributes": { "weight": 3 } }, { "key": "33802", "source": "189", "target": "14", "attributes": { "weight": 1 } }, { "key": "4015", "source": "189", "target": "458", "attributes": { "weight": 5 } }, { "key": "4017", "source": "189", "target": "487", "attributes": { "weight": 4 } }, { "key": "26690", "source": "189", "target": "485", "attributes": { "weight": 1 } }, { "key": "26680", "source": "189", "target": "474", "attributes": { "weight": 1 } }, { "key": "15342", "source": "189", "target": "860", "attributes": { "weight": 2 } }, { "key": "34560", "source": "189", "target": "1233", "attributes": { "weight": 1 } }, { "key": "1509", "source": "189", "target": "448", "attributes": { "weight": 2 } }, { "key": "25881", "source": "189", "target": "220", "attributes": { "weight": 2 } }, { "key": "26640", "source": "189", "target": "438", "attributes": { "weight": 1 } }, { "key": "26667", "source": "189", "target": "1024", "attributes": { "weight": 2 } }, { "key": "17541", "source": "189", "target": "494", "attributes": { "weight": 2 } }, { "key": "6921", "source": "189", "target": "191", "attributes": { "weight": 3 } }, { "key": "27190", "source": "189", "target": "1390", "attributes": { "weight": 1 } }, { "key": "36979", "source": "189", "target": "362", "attributes": { "weight": 1 } }, { "key": "26710", "source": "189", "target": "57", "attributes": { "weight": 2 } }, { "key": "26701", "source": "189", "target": "233", "attributes": { "weight": 1 } }, { "key": "6894", "source": "189", "target": "1354", "attributes": { "weight": 2 } }, { "key": "24165", "source": "189", "target": "130", "attributes": { "weight": 3 } }, { "key": "26704", "source": "189", "target": "1778", "attributes": { "weight": 1 } }, { "key": "6916", "source": "189", "target": "471", "attributes": { "weight": 6 } }, { "key": "6892", "source": "189", "target": "1353", "attributes": { "weight": 2 } }, { "key": "26659", "source": "189", "target": "455", "attributes": { "weight": 1 } }, { "key": "26707", "source": "189", "target": "498", "attributes": { "weight": 2 } }, { "key": "26688", "source": "189", "target": "479", "attributes": { "weight": 1 } }, { "key": "33570", "source": "189", "target": "135", "attributes": { "weight": 1 } }, { "key": "11208", "source": "189", "target": "452", "attributes": { "weight": 2 } }, { "key": "26673", "source": "189", "target": "470", "attributes": { "weight": 3 } }, { "key": "4016", "source": "189", "target": "1066", "attributes": { "weight": 2 } }, { "key": "26676", "source": "189", "target": "472", "attributes": { "weight": 6 } }, { "key": "15345", "source": "189", "target": "499", "attributes": { "weight": 2 } }, { "key": "6898", "source": "189", "target": "424", "attributes": { "weight": 4 } }, { "key": "25948", "source": "189", "target": "1367", "attributes": { "weight": 2 } }, { "key": "14304", "source": "189", "target": "454", "attributes": { "weight": 3 } }, { "key": "26706", "source": "189", "target": "497", "attributes": { "weight": 2 } }, { "key": "13292", "source": "189", "target": "304", "attributes": { "weight": 2 } }, { "key": "26685", "source": "189", "target": "1369", "attributes": { "weight": 1 } }, { "key": "26642", "source": "189", "target": "425", "attributes": { "weight": 3 } }, { "key": "26708", "source": "189", "target": "194", "attributes": { "weight": 2 } }, { "key": "6905", "source": "189", "target": "183", "attributes": { "weight": 3 } }, { "key": "6923", "source": "189", "target": "372", "attributes": { "weight": 2 } }, { "key": "31469", "source": "189", "target": "178", "attributes": { "weight": 4 } }, { "key": "26689", "source": "189", "target": "480", "attributes": { "weight": 1 } }, { "key": "26700", "source": "189", "target": "1093", "attributes": { "weight": 1 } }, { "key": "37375", "source": "189", "target": "829", "attributes": { "weight": 1 } }, { "key": "17539", "source": "189", "target": "439", "attributes": { "weight": 2 } }, { "key": "26683", "source": "189", "target": "123", "attributes": { "weight": 2 } }, { "key": "26656", "source": "189", "target": "1118", "attributes": { "weight": 2 } }, { "key": "31543", "source": "189", "target": "2114", "attributes": { "weight": 1 } }, { "key": "35311", "source": "189", "target": "50", "attributes": { "weight": 1 } }, { "key": "26686", "source": "189", "target": "477", "attributes": { "weight": 1 } }, { "key": "26643", "source": "189", "target": "440", "attributes": { "weight": 1 } }, { "key": "12009", "source": "189", "target": "1522", "attributes": { "weight": 1 } }, { "key": "6913", "source": "189", "target": "462", "attributes": { "weight": 3 } }, { "key": "6911", "source": "189", "target": "457", "attributes": { "weight": 4 } }, { "key": "26646", "source": "189", "target": "779", "attributes": { "weight": 1 } }, { "key": "14305", "source": "189", "target": "53", "attributes": { "weight": 2 } }, { "key": "26658", "source": "189", "target": "52", "attributes": { "weight": 2 } }, { "key": "17542", "source": "189", "target": "496", "attributes": { "weight": 2 } }, { "key": "26675", "source": "189", "target": "228", "attributes": { "weight": 1 } }, { "key": "9513", "source": "189", "target": "645", "attributes": { "weight": 2 } }, { "key": "24893", "source": "189", "target": "109", "attributes": { "weight": 2 } }, { "key": "26703", "source": "189", "target": "1777", "attributes": { "weight": 1 } }, { "key": "26653", "source": "189", "target": "1356", "attributes": { "weight": 1 } }, { "key": "9514", "source": "189", "target": "419", "attributes": { "weight": 2 } }, { "key": "26671", "source": "189", "target": "8", "attributes": { "weight": 2 } }, { "key": "30471", "source": "189", "target": "1046", "attributes": { "weight": 2 } }, { "key": "32092", "source": "189", "target": "3084", "attributes": { "weight": 1 } }, { "key": "15340", "source": "189", "target": "1703", "attributes": { "weight": 1 } }, { "key": "35312", "source": "189", "target": "1088", "attributes": { "weight": 1 } }, { "key": "12527", "source": "189", "target": "51", "attributes": { "weight": 1 } }, { "key": "17269", "source": "189", "target": "449", "attributes": { "weight": 2 } }, { "key": "6902", "source": "189", "target": "224", "attributes": { "weight": 2 } }, { "key": "6931", "source": "189", "target": "193", "attributes": { "weight": 3 } }, { "key": "4014", "source": "189", "target": "432", "attributes": { "weight": 4 } }, { "key": "31673", "source": "189", "target": "595", "attributes": { "weight": 1 } }, { "key": "6900", "source": "189", "target": "441", "attributes": { "weight": 3 } }, { "key": "26651", "source": "189", "target": "2211", "attributes": { "weight": 1 } }, { "key": "26662", "source": "189", "target": "1232", "attributes": { "weight": 2 } }, { "key": "26702", "source": "189", "target": "492", "attributes": { "weight": 1 } }, { "key": "6912", "source": "189", "target": "459", "attributes": { "weight": 2 } }, { "key": "26682", "source": "189", "target": "868", "attributes": { "weight": 1 } }, { "key": "6917", "source": "189", "target": "1366", "attributes": { "weight": 1 } }, { "key": "26664", "source": "189", "target": "791", "attributes": { "weight": 4 } }, { "key": "6909", "source": "189", "target": "701", "attributes": { "weight": 2 } }, { "key": "26663", "source": "189", "target": "278", "attributes": { "weight": 1 } }, { "key": "16888", "source": "189", "target": "70", "attributes": { "weight": 3 } }, { "key": "15341", "source": "189", "target": "1070", "attributes": { "weight": 1 } }, { "key": "6895", "source": "189", "target": "889", "attributes": { "weight": 2 } }, { "key": "16887", "source": "189", "target": "59", "attributes": { "weight": 3 } }, { "key": "26681", "source": "189", "target": "476", "attributes": { "weight": 1 } }, { "key": "6907", "source": "189", "target": "1357", "attributes": { "weight": 2 } }, { "key": "26657", "source": "189", "target": "187", "attributes": { "weight": 2 } }, { "key": "6928", "source": "189", "target": "1067", "attributes": { "weight": 1 } }, { "key": "6926", "source": "189", "target": "695", "attributes": { "weight": 2 } }, { "key": "26679", "source": "189", "target": "473", "attributes": { "weight": 1 } }, { "key": "6930", "source": "189", "target": "340", "attributes": { "weight": 3 } }, { "key": "26694", "source": "189", "target": "1323", "attributes": { "weight": 2 } }, { "key": "6908", "source": "189", "target": "1358", "attributes": { "weight": 3 } }, { "key": "26672", "source": "189", "target": "467", "attributes": { "weight": 1 } }, { "key": "26699", "source": "189", "target": "673", "attributes": { "weight": 1 } }, { "key": "26654", "source": "189", "target": "1360", "attributes": { "weight": 2 } }, { "key": "7354", "source": "189", "target": "1092", "attributes": { "weight": 2 } }, { "key": "8927", "source": "189", "target": "195", "attributes": { "weight": 3 } }, { "key": "6893", "source": "189", "target": "429", "attributes": { "weight": 5 } }, { "key": "6896", "source": "189", "target": "1068", "attributes": { "weight": 1 } }, { "key": "6924", "source": "189", "target": "1371", "attributes": { "weight": 1 } }, { "key": "26698", "source": "189", "target": "491", "attributes": { "weight": 1 } }, { "key": "25107", "source": "189", "target": "1547", "attributes": { "weight": 2 } }, { "key": "26634", "source": "189", "target": "433", "attributes": { "weight": 2 } }, { "key": "12405", "source": "189", "target": "1355", "attributes": { "weight": 3 } }, { "key": "30905", "source": "189", "target": "13", "attributes": { "weight": 1 } }, { "key": "26668", "source": "189", "target": "1025", "attributes": { "weight": 1 } }, { "key": "26364", "source": "189", "target": "1258", "attributes": { "weight": 2 } }, { "key": "31544", "source": "189", "target": "2139", "attributes": { "weight": 1 } }, { "key": "6904", "source": "189", "target": "3", "attributes": { "weight": 3 } }, { "key": "30775", "source": "189", "target": "1744", "attributes": { "weight": 1 } }, { "key": "26696", "source": "189", "target": "488", "attributes": { "weight": 2 } }, { "key": "5721", "source": "189", "target": "468", "attributes": { "weight": 4 } }, { "key": "26665", "source": "189", "target": "370", "attributes": { "weight": 2 } }, { "key": "26638", "source": "189", "target": "222", "attributes": { "weight": 1 } }, { "key": "26641", "source": "189", "target": "223", "attributes": { "weight": 2 } }, { "key": "7355", "source": "189", "target": "154", "attributes": { "weight": 2 } }, { "key": "26677", "source": "189", "target": "396", "attributes": { "weight": 1 } }, { "key": "26632", "source": "189", "target": "857", "attributes": { "weight": 2 } }, { "key": "6899", "source": "189", "target": "49", "attributes": { "weight": 2 } }, { "key": "6927", "source": "189", "target": "232", "attributes": { "weight": 3 } }, { "key": "26633", "source": "189", "target": "431", "attributes": { "weight": 1 } }, { "key": "26650", "source": "189", "target": "182", "attributes": { "weight": 1 } }, { "key": "26692", "source": "189", "target": "1060", "attributes": { "weight": 1 } }, { "key": "6922", "source": "189", "target": "231", "attributes": { "weight": 4 } }, { "key": "6919", "source": "189", "target": "190", "attributes": { "weight": 3 } }, { "key": "26678", "source": "189", "target": "1087", "attributes": { "weight": 1 } }, { "key": "5722", "source": "189", "target": "1090", "attributes": { "weight": 2 } }, { "key": "6915", "source": "189", "target": "54", "attributes": { "weight": 4 } }, { "key": "7357", "source": "189", "target": "1063", "attributes": { "weight": 2 } }, { "key": "26649", "source": "189", "target": "2122", "attributes": { "weight": 1 } }, { "key": "6920", "source": "189", "target": "1368", "attributes": { "weight": 3 } }, { "key": "26635", "source": "189", "target": "435", "attributes": { "weight": 1 } }, { "key": "10514", "source": "189", "target": "225", "attributes": { "weight": 1 } }, { "key": "10515", "source": "189", "target": "482", "attributes": { "weight": 1 } }, { "key": "37017", "source": "189", "target": "2644", "attributes": { "weight": 1 } }, { "key": "431", "source": "189", "target": "184", "attributes": { "weight": 1 } }, { "key": "26648", "source": "189", "target": "447", "attributes": { "weight": 2 } }, { "key": "26684", "source": "189", "target": "1026", "attributes": { "weight": 2 } }, { "key": "6906", "source": "189", "target": "451", "attributes": { "weight": 4 } }, { "key": "26709", "source": "189", "target": "500", "attributes": { "weight": 2 } }, { "key": "26645", "source": "189", "target": "1760", "attributes": { "weight": 1 } }, { "key": "17540", "source": "189", "target": "1116", "attributes": { "weight": 2 } }, { "key": "26639", "source": "189", "target": "938", "attributes": { "weight": 2 } }, { "key": "33801", "source": "189", "target": "682", "attributes": { "weight": 1 } }, { "key": "17499", "source": "189", "target": "358", "attributes": { "weight": 3 } }, { "key": "7356", "source": "189", "target": "333", "attributes": { "weight": 2 } }, { "key": "26636", "source": "189", "target": "437", "attributes": { "weight": 1 } }, { "key": "36045", "source": "190", "target": "440", "attributes": { "weight": 1 } }, { "key": "36047", "source": "190", "target": "1026", "attributes": { "weight": 1 } }, { "key": "36938", "source": "190", "target": "2647", "attributes": { "weight": 1 } }, { "key": "11229", "source": "190", "target": "492", "attributes": { "weight": 2 } }, { "key": "24360", "source": "190", "target": "1024", "attributes": { "weight": 1 } }, { "key": "6937", "source": "190", "target": "189", "attributes": { "weight": 3 } }, { "key": "37464", "source": "190", "target": "2258", "attributes": { "weight": 1 } }, { "key": "33595", "source": "190", "target": "1836", "attributes": { "weight": 1 } }, { "key": "24364", "source": "190", "target": "496", "attributes": { "weight": 1 } }, { "key": "24361", "source": "190", "target": "191", "attributes": { "weight": 1 } }, { "key": "26365", "source": "190", "target": "1258", "attributes": { "weight": 1 } }, { "key": "24362", "source": "190", "target": "340", "attributes": { "weight": 1 } }, { "key": "35313", "source": "190", "target": "1536", "attributes": { "weight": 1 } }, { "key": "1516", "source": "190", "target": "455", "attributes": { "weight": 1 } }, { "key": "8931", "source": "190", "target": "442", "attributes": { "weight": 3 } }, { "key": "33599", "source": "190", "target": "672", "attributes": { "weight": 1 } }, { "key": "6938", "source": "190", "target": "193", "attributes": { "weight": 2 } }, { "key": "23642", "source": "190", "target": "220", "attributes": { "weight": 1 } }, { "key": "11227", "source": "190", "target": "452", "attributes": { "weight": 1 } }, { "key": "6936", "source": "190", "target": "183", "attributes": { "weight": 3 } }, { "key": "32577", "source": "190", "target": "791", "attributes": { "weight": 1 } }, { "key": "33597", "source": "190", "target": "474", "attributes": { "weight": 1 } }, { "key": "29043", "source": "190", "target": "495", "attributes": { "weight": 1 } }, { "key": "11228", "source": "190", "target": "477", "attributes": { "weight": 2 } }, { "key": "33592", "source": "190", "target": "425", "attributes": { "weight": 1 } }, { "key": "11226", "source": "190", "target": "445", "attributes": { "weight": 3 } }, { "key": "23643", "source": "190", "target": "2248", "attributes": { "weight": 1 } }, { "key": "24169", "source": "190", "target": "130", "attributes": { "weight": 2 } }, { "key": "24359", "source": "190", "target": "441", "attributes": { "weight": 1 } }, { "key": "12010", "source": "190", "target": "135", "attributes": { "weight": 4 } }, { "key": "36048", "source": "190", "target": "479", "attributes": { "weight": 1 } }, { "key": "33596", "source": "190", "target": "473", "attributes": { "weight": 1 } }, { "key": "32793", "source": "190", "target": "472", "attributes": { "weight": 3 } }, { "key": "11230", "source": "190", "target": "1777", "attributes": { "weight": 1 } }, { "key": "432", "source": "190", "target": "186", "attributes": { "weight": 1 } }, { "key": "33598", "source": "190", "target": "489", "attributes": { "weight": 1 } }, { "key": "24363", "source": "190", "target": "494", "attributes": { "weight": 2 } }, { "key": "6939", "source": "190", "target": "57", "attributes": { "weight": 2 } }, { "key": "1515", "source": "190", "target": "224", "attributes": { "weight": 1 } }, { "key": "17272", "source": "190", "target": "449", "attributes": { "weight": 1 } }, { "key": "32794", "source": "190", "target": "1125", "attributes": { "weight": 2 } }, { "key": "35314", "source": "190", "target": "1088", "attributes": { "weight": 1 } }, { "key": "31426", "source": "190", "target": "223", "attributes": { "weight": 2 } }, { "key": "34875", "source": "190", "target": "493", "attributes": { "weight": 1 } }, { "key": "9974", "source": "190", "target": "469", "attributes": { "weight": 4 } }, { "key": "1517", "source": "190", "target": "188", "attributes": { "weight": 2 } }, { "key": "33594", "source": "190", "target": "52", "attributes": { "weight": 1 } }, { "key": "1518", "source": "190", "target": "490", "attributes": { "weight": 3 } }, { "key": "36046", "source": "190", "target": "465", "attributes": { "weight": 1 } }, { "key": "7358", "source": "190", "target": "454", "attributes": { "weight": 2 } }, { "key": "33593", "source": "190", "target": "450", "attributes": { "weight": 1 } }, { "key": "35329", "source": "191", "target": "494", "attributes": { "weight": 1 } }, { "key": "24367", "source": "191", "target": "452", "attributes": { "weight": 1 } }, { "key": "23647", "source": "191", "target": "220", "attributes": { "weight": 1 } }, { "key": "24371", "source": "191", "target": "496", "attributes": { "weight": 1 } }, { "key": "1529", "source": "191", "target": "490", "attributes": { "weight": 3 } }, { "key": "33622", "source": "191", "target": "474", "attributes": { "weight": 1 } }, { "key": "33620", "source": "191", "target": "425", "attributes": { "weight": 1 } }, { "key": "35327", "source": "191", "target": "1536", "attributes": { "weight": 1 } }, { "key": "11237", "source": "191", "target": "695", "attributes": { "weight": 2 } }, { "key": "1526", "source": "191", "target": "224", "attributes": { "weight": 3 } }, { "key": "433", "source": "191", "target": "185", "attributes": { "weight": 1 } }, { "key": "26724", "source": "191", "target": "454", "attributes": { "weight": 1 } }, { "key": "24365", "source": "191", "target": "222", "attributes": { "weight": 1 } }, { "key": "35326", "source": "191", "target": "50", "attributes": { "weight": 1 } }, { "key": "24368", "source": "191", "target": "469", "attributes": { "weight": 1 } }, { "key": "32093", "source": "191", "target": "3084", "attributes": { "weight": 1 } }, { "key": "1528", "source": "191", "target": "188", "attributes": { "weight": 3 } }, { "key": "16898", "source": "191", "target": "59", "attributes": { "weight": 1 } }, { "key": "6967", "source": "191", "target": "193", "attributes": { "weight": 2 } }, { "key": "6969", "source": "191", "target": "57", "attributes": { "weight": 2 } }, { "key": "24370", "source": "191", "target": "492", "attributes": { "weight": 1 } }, { "key": "24369", "source": "191", "target": "190", "attributes": { "weight": 1 } }, { "key": "24366", "source": "191", "target": "442", "attributes": { "weight": 1 } }, { "key": "33621", "source": "191", "target": "473", "attributes": { "weight": 1 } }, { "key": "33623", "source": "191", "target": "672", "attributes": { "weight": 1 } }, { "key": "1527", "source": "191", "target": "183", "attributes": { "weight": 3 } }, { "key": "35328", "source": "191", "target": "1088", "attributes": { "weight": 1 } }, { "key": "12018", "source": "191", "target": "135", "attributes": { "weight": 3 } }, { "key": "6965", "source": "191", "target": "189", "attributes": { "weight": 3 } }, { "key": "6968", "source": "191", "target": "495", "attributes": { "weight": 4 } }, { "key": "6966", "source": "191", "target": "476", "attributes": { "weight": 2 } }, { "key": "27283", "source": "191", "target": "52", "attributes": { "weight": 2 } }, { "key": "7065", "source": "192", "target": "495", "attributes": { "weight": 3 } }, { "key": "21178", "source": "192", "target": "489", "attributes": { "weight": 1 } }, { "key": "7061", "source": "192", "target": "54", "attributes": { "weight": 2 } }, { "key": "7057", "source": "192", "target": "183", "attributes": { "weight": 2 } }, { "key": "7064", "source": "192", "target": "193", "attributes": { "weight": 2 } }, { "key": "26761", "source": "192", "target": "454", "attributes": { "weight": 2 } }, { "key": "434", "source": "192", "target": "57", "attributes": { "weight": 1 } }, { "key": "32606", "source": "192", "target": "791", "attributes": { "weight": 1 } }, { "key": "7059", "source": "192", "target": "458", "attributes": { "weight": 2 } }, { "key": "7060", "source": "192", "target": "135", "attributes": { "weight": 2 } }, { "key": "7062", "source": "192", "target": "231", "attributes": { "weight": 2 } }, { "key": "7058", "source": "192", "target": "188", "attributes": { "weight": 2 } }, { "key": "7056", "source": "192", "target": "444", "attributes": { "weight": 2 } }, { "key": "23249", "source": "192", "target": "424", "attributes": { "weight": 2 } }, { "key": "7063", "source": "192", "target": "56", "attributes": { "weight": 2 } }, { "key": "33721", "source": "192", "target": "672", "attributes": { "weight": 1 } }, { "key": "1630", "source": "192", "target": "224", "attributes": { "weight": 2 } }, { "key": "23250", "source": "192", "target": "426", "attributes": { "weight": 1 } }, { "key": "7055", "source": "192", "target": "1353", "attributes": { "weight": 2 } }, { "key": "32853", "source": "193", "target": "1088", "attributes": { "weight": 1 } }, { "key": "32617", "source": "193", "target": "791", "attributes": { "weight": 1 } }, { "key": "1643", "source": "193", "target": "452", "attributes": { "weight": 3 } }, { "key": "7122", "source": "193", "target": "483", "attributes": { "weight": 1 } }, { "key": "7100", "source": "193", "target": "1358", "attributes": { "weight": 1 } }, { "key": "10005", "source": "193", "target": "477", "attributes": { "weight": 2 } }, { "key": "7129", "source": "193", "target": "56", "attributes": { "weight": 1 } }, { "key": "7088", "source": "193", "target": "130", "attributes": { "weight": 4 } }, { "key": "1651", "source": "193", "target": "474", "attributes": { "weight": 1 } }, { "key": "7102", "source": "193", "target": "1118", "attributes": { "weight": 3 } }, { "key": "7130", "source": "193", "target": "340", "attributes": { "weight": 2 } }, { "key": "6479", "source": "193", "target": "370", "attributes": { "weight": 2 } }, { "key": "1639", "source": "193", "target": "222", "attributes": { "weight": 1 } }, { "key": "10006", "source": "193", "target": "480", "attributes": { "weight": 2 } }, { "key": "1644", "source": "193", "target": "186", "attributes": { "weight": 1 } }, { "key": "7082", "source": "193", "target": "1353", "attributes": { "weight": 1 } }, { "key": "1658", "source": "193", "target": "490", "attributes": { "weight": 3 } }, { "key": "7091", "source": "193", "target": "440", "attributes": { "weight": 1 } }, { "key": "7120", "source": "193", "target": "1026", "attributes": { "weight": 2 } }, { "key": "7116", "source": "193", "target": "1368", "attributes": { "weight": 1 } }, { "key": "7115", "source": "193", "target": "190", "attributes": { "weight": 2 } }, { "key": "1652", "source": "193", "target": "476", "attributes": { "weight": 3 } }, { "key": "7131", "source": "193", "target": "494", "attributes": { "weight": 2 } }, { "key": "7108", "source": "193", "target": "464", "attributes": { "weight": 1 } }, { "key": "1660", "source": "193", "target": "496", "attributes": { "weight": 1 } }, { "key": "28991", "source": "193", "target": "595", "attributes": { "weight": 2 } }, { "key": "25955", "source": "193", "target": "1367", "attributes": { "weight": 1 } }, { "key": "7096", "source": "193", "target": "451", "attributes": { "weight": 1 } }, { "key": "1638", "source": "193", "target": "436", "attributes": { "weight": 1 } }, { "key": "7132", "source": "193", "target": "497", "attributes": { "weight": 1 } }, { "key": "7113", "source": "193", "target": "189", "attributes": { "weight": 3 } }, { "key": "7090", "source": "193", "target": "439", "attributes": { "weight": 2 } }, { "key": "24258", "source": "193", "target": "1116", "attributes": { "weight": 2 } }, { "key": "6481", "source": "193", "target": "123", "attributes": { "weight": 2 } }, { "key": "4056", "source": "193", "target": "432", "attributes": { "weight": 2 } }, { "key": "7097", "source": "193", "target": "453", "attributes": { "weight": 2 } }, { "key": "7112", "source": "193", "target": "1366", "attributes": { "weight": 1 } }, { "key": "23484", "source": "193", "target": "223", "attributes": { "weight": 3 } }, { "key": "7119", "source": "193", "target": "70", "attributes": { "weight": 4 } }, { "key": "7111", "source": "193", "target": "471", "attributes": { "weight": 2 } }, { "key": "1635", "source": "193", "target": "429", "attributes": { "weight": 2 } }, { "key": "30488", "source": "193", "target": "1046", "attributes": { "weight": 1 } }, { "key": "1640", "source": "193", "target": "224", "attributes": { "weight": 3 } }, { "key": "9127", "source": "193", "target": "442", "attributes": { "weight": 3 } }, { "key": "7125", "source": "193", "target": "487", "attributes": { "weight": 1 } }, { "key": "27193", "source": "193", "target": "1390", "attributes": { "weight": 1 } }, { "key": "7126", "source": "193", "target": "1067", "attributes": { "weight": 1 } }, { "key": "23700", "source": "193", "target": "2248", "attributes": { "weight": 1 } }, { "key": "6480", "source": "193", "target": "371", "attributes": { "weight": 2 } }, { "key": "29914", "source": "193", "target": "1024", "attributes": { "weight": 1 } }, { "key": "26376", "source": "193", "target": "1258", "attributes": { "weight": 2 } }, { "key": "7099", "source": "193", "target": "454", "attributes": { "weight": 4 } }, { "key": "7094", "source": "193", "target": "3", "attributes": { "weight": 2 } }, { "key": "1657", "source": "193", "target": "488", "attributes": { "weight": 2 } }, { "key": "26774", "source": "193", "target": "500", "attributes": { "weight": 2 } }, { "key": "7101", "source": "193", "target": "1360", "attributes": { "weight": 1 } }, { "key": "7093", "source": "193", "target": "674", "attributes": { "weight": 6 } }, { "key": "7128", "source": "193", "target": "192", "attributes": { "weight": 2 } }, { "key": "7105", "source": "193", "target": "426", "attributes": { "weight": 1 } }, { "key": "7098", "source": "193", "target": "1357", "attributes": { "weight": 1 } }, { "key": "35710", "source": "193", "target": "3246", "attributes": { "weight": 1 } }, { "key": "7117", "source": "193", "target": "191", "attributes": { "weight": 2 } }, { "key": "7095", "source": "193", "target": "183", "attributes": { "weight": 3 } }, { "key": "7092", "source": "193", "target": "443", "attributes": { "weight": 1 } }, { "key": "7124", "source": "193", "target": "1372", "attributes": { "weight": 4 } }, { "key": "435", "source": "193", "target": "185", "attributes": { "weight": 1 } }, { "key": "7085", "source": "193", "target": "59", "attributes": { "weight": 5 } }, { "key": "1636", "source": "193", "target": "431", "attributes": { "weight": 1 } }, { "key": "7118", "source": "193", "target": "1125", "attributes": { "weight": 1 } }, { "key": "7106", "source": "193", "target": "6", "attributes": { "weight": 2 } }, { "key": "1649", "source": "193", "target": "468", "attributes": { "weight": 4 } }, { "key": "26773", "source": "193", "target": "352", "attributes": { "weight": 1 } }, { "key": "1655", "source": "193", "target": "232", "attributes": { "weight": 1 } }, { "key": "1637", "source": "193", "target": "435", "attributes": { "weight": 1 } }, { "key": "32095", "source": "193", "target": "3084", "attributes": { "weight": 1 } }, { "key": "7109", "source": "193", "target": "8", "attributes": { "weight": 1 } }, { "key": "7089", "source": "193", "target": "433", "attributes": { "weight": 2 } }, { "key": "1656", "source": "193", "target": "486", "attributes": { "weight": 1 } }, { "key": "1642", "source": "193", "target": "447", "attributes": { "weight": 2 } }, { "key": "9128", "source": "193", "target": "1087", "attributes": { "weight": 1 } }, { "key": "26772", "source": "193", "target": "1047", "attributes": { "weight": 2 } }, { "key": "1653", "source": "193", "target": "231", "attributes": { "weight": 2 } }, { "key": "1645", "source": "193", "target": "457", "attributes": { "weight": 3 } }, { "key": "7127", "source": "193", "target": "1092", "attributes": { "weight": 3 } }, { "key": "1659", "source": "193", "target": "495", "attributes": { "weight": 5 } }, { "key": "7133", "source": "193", "target": "57", "attributes": { "weight": 4 } }, { "key": "1661", "source": "193", "target": "194", "attributes": { "weight": 1 } }, { "key": "37073", "source": "193", "target": "857", "attributes": { "weight": 1 } }, { "key": "32242", "source": "193", "target": "1752", "attributes": { "weight": 1 } }, { "key": "1650", "source": "193", "target": "469", "attributes": { "weight": 1 } }, { "key": "1646", "source": "193", "target": "458", "attributes": { "weight": 3 } }, { "key": "7083", "source": "193", "target": "1354", "attributes": { "weight": 1 } }, { "key": "7103", "source": "193", "target": "187", "attributes": { "weight": 1 } }, { "key": "7121", "source": "193", "target": "304", "attributes": { "weight": 2 } }, { "key": "28985", "source": "193", "target": "479", "attributes": { "weight": 2 } }, { "key": "7087", "source": "193", "target": "424", "attributes": { "weight": 3 } }, { "key": "7110", "source": "193", "target": "54", "attributes": { "weight": 1 } }, { "key": "1647", "source": "193", "target": "459", "attributes": { "weight": 2 } }, { "key": "7086", "source": "193", "target": "1036", "attributes": { "weight": 2 } }, { "key": "1654", "source": "193", "target": "427", "attributes": { "weight": 1 } }, { "key": "24257", "source": "193", "target": "437", "attributes": { "weight": 2 } }, { "key": "7107", "source": "193", "target": "462", "attributes": { "weight": 1 } }, { "key": "7123", "source": "193", "target": "695", "attributes": { "weight": 2 } }, { "key": "1641", "source": "193", "target": "445", "attributes": { "weight": 6 } }, { "key": "1648", "source": "193", "target": "463", "attributes": { "weight": 2 } }, { "key": "7114", "source": "193", "target": "473", "attributes": { "weight": 2 } }, { "key": "11311", "source": "193", "target": "220", "attributes": { "weight": 2 } }, { "key": "7104", "source": "193", "target": "701", "attributes": { "weight": 1 } }, { "key": "7084", "source": "193", "target": "889", "attributes": { "weight": 2 } }, { "key": "26786", "source": "194", "target": "454", "attributes": { "weight": 2 } }, { "key": "21415", "source": "194", "target": "472", "attributes": { "weight": 1 } }, { "key": "436", "source": "194", "target": "185", "attributes": { "weight": 1 } }, { "key": "25493", "source": "194", "target": "497", "attributes": { "weight": 1 } }, { "key": "1678", "source": "194", "target": "224", "attributes": { "weight": 1 } }, { "key": "29155", "source": "194", "target": "500", "attributes": { "weight": 1 } }, { "key": "21413", "source": "194", "target": "2088", "attributes": { "weight": 1 } }, { "key": "21418", "source": "194", "target": "2262", "attributes": { "weight": 1 } }, { "key": "21412", "source": "194", "target": "1998", "attributes": { "weight": 1 } }, { "key": "21419", "source": "194", "target": "2095", "attributes": { "weight": 1 } }, { "key": "21417", "source": "194", "target": "2261", "attributes": { "weight": 1 } }, { "key": "21420", "source": "194", "target": "489", "attributes": { "weight": 1 } }, { "key": "1680", "source": "194", "target": "490", "attributes": { "weight": 1 } }, { "key": "21409", "source": "194", "target": "2245", "attributes": { "weight": 1 } }, { "key": "1681", "source": "194", "target": "193", "attributes": { "weight": 1 } }, { "key": "21408", "source": "194", "target": "1023", "attributes": { "weight": 1 } }, { "key": "29154", "source": "194", "target": "481", "attributes": { "weight": 1 } }, { "key": "21411", "source": "194", "target": "453", "attributes": { "weight": 1 } }, { "key": "21414", "source": "194", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21416", "source": "194", "target": "1087", "attributes": { "weight": 1 } }, { "key": "26787", "source": "194", "target": "189", "attributes": { "weight": 2 } }, { "key": "21407", "source": "194", "target": "1522", "attributes": { "weight": 1 } }, { "key": "1679", "source": "194", "target": "183", "attributes": { "weight": 1 } }, { "key": "21410", "source": "194", "target": "449", "attributes": { "weight": 1 } }, { "key": "8323", "source": "195", "target": "389", "attributes": { "weight": 5 } }, { "key": "8359", "source": "195", "target": "205", "attributes": { "weight": 9 } }, { "key": "8355", "source": "195", "target": "1234", "attributes": { "weight": 4 } }, { "key": "8396", "source": "195", "target": "214", "attributes": { "weight": 5 } }, { "key": "8310", "source": "195", "target": "1171", "attributes": { "weight": 3 } }, { "key": "8394", "source": "195", "target": "1295", "attributes": { "weight": 3 } }, { "key": "8401", "source": "195", "target": "1307", "attributes": { "weight": 7 } }, { "key": "8328", "source": "195", "target": "1528", "attributes": { "weight": 3 } }, { "key": "8330", "source": "195", "target": "913", "attributes": { "weight": 8 } }, { "key": "3316", "source": "195", "target": "927", "attributes": { "weight": 4 } }, { "key": "8321", "source": "195", "target": "1525", "attributes": { "weight": 3 } }, { "key": "4297", "source": "195", "target": "368", "attributes": { "weight": 11 } }, { "key": "15457", "source": "195", "target": "236", "attributes": { "weight": 3 } }, { "key": "8343", "source": "195", "target": "1212", "attributes": { "weight": 3 } }, { "key": "8358", "source": "195", "target": "1241", "attributes": { "weight": 5 } }, { "key": "15477", "source": "195", "target": "638", "attributes": { "weight": 1 } }, { "key": "4296", "source": "195", "target": "779", "attributes": { "weight": 8 } }, { "key": "4302", "source": "195", "target": "1294", "attributes": { "weight": 9 } }, { "key": "8412", "source": "195", "target": "1325", "attributes": { "weight": 3 } }, { "key": "8378", "source": "195", "target": "1271", "attributes": { "weight": 3 } }, { "key": "15493", "source": "195", "target": "1326", "attributes": { "weight": 3 } }, { "key": "8421", "source": "195", "target": "217", "attributes": { "weight": 3 } }, { "key": "15467", "source": "195", "target": "1205", "attributes": { "weight": 1 } }, { "key": "8352", "source": "195", "target": "1229", "attributes": { "weight": 5 } }, { "key": "8292", "source": "195", "target": "1138", "attributes": { "weight": 3 } }, { "key": "8332", "source": "195", "target": "183", "attributes": { "weight": 3 } }, { "key": "8312", "source": "195", "target": "1174", "attributes": { "weight": 7 } }, { "key": "8387", "source": "195", "target": "1283", "attributes": { "weight": 3 } }, { "key": "8373", "source": "195", "target": "396", "attributes": { "weight": 7 } }, { "key": "8302", "source": "195", "target": "1156", "attributes": { "weight": 7 } }, { "key": "4300", "source": "195", "target": "123", "attributes": { "weight": 19 } }, { "key": "8315", "source": "195", "target": "442", "attributes": { "weight": 4 } }, { "key": "8413", "source": "195", "target": "407", "attributes": { "weight": 2 } }, { "key": "8409", "source": "195", "target": "1322", "attributes": { "weight": 6 } }, { "key": "8380", "source": "195", "target": "1275", "attributes": { "weight": 3 } }, { "key": "8398", "source": "195", "target": "1301", "attributes": { "weight": 3 } }, { "key": "8420", "source": "195", "target": "490", "attributes": { "weight": 3 } }, { "key": "8339", "source": "195", "target": "452", "attributes": { "weight": 5 } }, { "key": "3306", "source": "195", "target": "911", "attributes": { "weight": 4 } }, { "key": "7208", "source": "195", "target": "1197", "attributes": { "weight": 11 } }, { "key": "3305", "source": "195", "target": "1181", "attributes": { "weight": 4 } }, { "key": "3314", "source": "195", "target": "922", "attributes": { "weight": 2 } }, { "key": "4299", "source": "195", "target": "371", "attributes": { "weight": 12 } }, { "key": "8407", "source": "195", "target": "1563", "attributes": { "weight": 3 } }, { "key": "8349", "source": "195", "target": "1225", "attributes": { "weight": 3 } }, { "key": "8311", "source": "195", "target": "1172", "attributes": { "weight": 4 } }, { "key": "15497", "source": "195", "target": "48", "attributes": { "weight": 1 } }, { "key": "15471", "source": "195", "target": "201", "attributes": { "weight": 1 } }, { "key": "15460", "source": "195", "target": "43", "attributes": { "weight": 1 } }, { "key": "8400", "source": "195", "target": "1305", "attributes": { "weight": 9 } }, { "key": "8415", "source": "195", "target": "1329", "attributes": { "weight": 6 } }, { "key": "8305", "source": "195", "target": "1165", "attributes": { "weight": 7 } }, { "key": "8405", "source": "195", "target": "405", "attributes": { "weight": 7 } }, { "key": "8322", "source": "195", "target": "387", "attributes": { "weight": 9 } }, { "key": "15499", "source": "195", "target": "57", "attributes": { "weight": 1 } }, { "key": "8350", "source": "195", "target": "1537", "attributes": { "weight": 3 } }, { "key": "8386", "source": "195", "target": "1281", "attributes": { "weight": 4 } }, { "key": "446", "source": "195", "target": "219", "attributes": { "weight": 1 } }, { "key": "8397", "source": "195", "target": "1031", "attributes": { "weight": 3 } }, { "key": "15494", "source": "195", "target": "963", "attributes": { "weight": 2 } }, { "key": "8399", "source": "195", "target": "1792", "attributes": { "weight": 3 } }, { "key": "8425", "source": "195", "target": "1343", "attributes": { "weight": 5 } }, { "key": "8416", "source": "195", "target": "1331", "attributes": { "weight": 4 } }, { "key": "8326", "source": "195", "target": "1194", "attributes": { "weight": 6 } }, { "key": "15458", "source": "195", "target": "1155", "attributes": { "weight": 1 } }, { "key": "8314", "source": "195", "target": "1176", "attributes": { "weight": 5 } }, { "key": "8382", "source": "195", "target": "926", "attributes": { "weight": 9 } }, { "key": "8363", "source": "195", "target": "1250", "attributes": { "weight": 3 } }, { "key": "8309", "source": "195", "target": "1170", "attributes": { "weight": 3 } }, { "key": "15492", "source": "195", "target": "254", "attributes": { "weight": 1 } }, { "key": "8418", "source": "195", "target": "1333", "attributes": { "weight": 5 } }, { "key": "8406", "source": "195", "target": "1316", "attributes": { "weight": 6 } }, { "key": "8368", "source": "195", "target": "1263", "attributes": { "weight": 8 } }, { "key": "8351", "source": "195", "target": "945", "attributes": { "weight": 3 } }, { "key": "8296", "source": "195", "target": "1145", "attributes": { "weight": 3 } }, { "key": "8318", "source": "195", "target": "1182", "attributes": { "weight": 5 } }, { "key": "8336", "source": "195", "target": "1047", "attributes": { "weight": 7 } }, { "key": "3308", "source": "195", "target": "914", "attributes": { "weight": 4 } }, { "key": "8422", "source": "195", "target": "218", "attributes": { "weight": 7 } }, { "key": "8334", "source": "195", "target": "1201", "attributes": { "weight": 4 } }, { "key": "8423", "source": "195", "target": "1340", "attributes": { "weight": 3 } }, { "key": "15498", "source": "195", "target": "1347", "attributes": { "weight": 1 } }, { "key": "15490", "source": "195", "target": "634", "attributes": { "weight": 1 } }, { "key": "8426", "source": "195", "target": "1569", "attributes": { "weight": 3 } }, { "key": "4301", "source": "195", "target": "1090", "attributes": { "weight": 9 } }, { "key": "3310", "source": "195", "target": "917", "attributes": { "weight": 6 } }, { "key": "8319", "source": "195", "target": "1184", "attributes": { "weight": 8 } }, { "key": "8316", "source": "195", "target": "1179", "attributes": { "weight": 3 } }, { "key": "3315", "source": "195", "target": "925", "attributes": { "weight": 8 } }, { "key": "8304", "source": "195", "target": "1164", "attributes": { "weight": 3 } }, { "key": "8348", "source": "195", "target": "1224", "attributes": { "weight": 3 } }, { "key": "445", "source": "195", "target": "213", "attributes": { "weight": 1 } }, { "key": "15488", "source": "195", "target": "633", "attributes": { "weight": 1 } }, { "key": "8411", "source": "195", "target": "1324", "attributes": { "weight": 3 } }, { "key": "8402", "source": "195", "target": "1309", "attributes": { "weight": 4 } }, { "key": "8300", "source": "195", "target": "1153", "attributes": { "weight": 4 } }, { "key": "15468", "source": "195", "target": "200", "attributes": { "weight": 1 } }, { "key": "8424", "source": "195", "target": "1342", "attributes": { "weight": 4 } }, { "key": "15478", "source": "195", "target": "780", "attributes": { "weight": 1 } }, { "key": "8306", "source": "195", "target": "938", "attributes": { "weight": 8 } }, { "key": "443", "source": "195", "target": "209", "attributes": { "weight": 1 } }, { "key": "3311", "source": "195", "target": "918", "attributes": { "weight": 4 } }, { "key": "8371", "source": "195", "target": "1552", "attributes": { "weight": 5 } }, { "key": "8353", "source": "195", "target": "1232", "attributes": { "weight": 9 } }, { "key": "10985", "source": "195", "target": "1228", "attributes": { "weight": 6 } }, { "key": "8414", "source": "195", "target": "961", "attributes": { "weight": 7 } }, { "key": "15495", "source": "195", "target": "257", "attributes": { "weight": 1 } }, { "key": "15462", "source": "195", "target": "103", "attributes": { "weight": 1 } }, { "key": "3319", "source": "195", "target": "931", "attributes": { "weight": 5 } }, { "key": "8372", "source": "195", "target": "924", "attributes": { "weight": 7 } }, { "key": "15482", "source": "195", "target": "1262", "attributes": { "weight": 3 } }, { "key": "8410", "source": "195", "target": "1323", "attributes": { "weight": 9 } }, { "key": "8324", "source": "195", "target": "1193", "attributes": { "weight": 3 } }, { "key": "15473", "source": "195", "target": "109", "attributes": { "weight": 1 } }, { "key": "8294", "source": "195", "target": "1517", "attributes": { "weight": 4 } }, { "key": "8329", "source": "195", "target": "1199", "attributes": { "weight": 3 } }, { "key": "8374", "source": "195", "target": "1266", "attributes": { "weight": 3 } }, { "key": "15472", "source": "195", "target": "108", "attributes": { "weight": 2 } }, { "key": "15465", "source": "195", "target": "358", "attributes": { "weight": 1 } }, { "key": "8408", "source": "195", "target": "1321", "attributes": { "weight": 6 } }, { "key": "15456", "source": "195", "target": "220", "attributes": { "weight": 2 } }, { "key": "8301", "source": "195", "target": "1154", "attributes": { "weight": 3 } }, { "key": "15481", "source": "195", "target": "136", "attributes": { "weight": 1 } }, { "key": "3317", "source": "195", "target": "928", "attributes": { "weight": 4 } }, { "key": "15461", "source": "195", "target": "237", "attributes": { "weight": 1 } }, { "key": "15496", "source": "195", "target": "635", "attributes": { "weight": 1 } }, { "key": "8389", "source": "195", "target": "1287", "attributes": { "weight": 4 } }, { "key": "8428", "source": "195", "target": "154", "attributes": { "weight": 3 } }, { "key": "8404", "source": "195", "target": "1315", "attributes": { "weight": 8 } }, { "key": "3318", "source": "195", "target": "930", "attributes": { "weight": 6 } }, { "key": "8299", "source": "195", "target": "1152", "attributes": { "weight": 7 } }, { "key": "15485", "source": "195", "target": "783", "attributes": { "weight": 1 } }, { "key": "8379", "source": "195", "target": "1273", "attributes": { "weight": 3 } }, { "key": "8361", "source": "195", "target": "337", "attributes": { "weight": 7 } }, { "key": "15479", "source": "195", "target": "30", "attributes": { "weight": 1 } }, { "key": "8341", "source": "195", "target": "1210", "attributes": { "weight": 3 } }, { "key": "8357", "source": "195", "target": "1236", "attributes": { "weight": 9 } }, { "key": "8364", "source": "195", "target": "921", "attributes": { "weight": 8 } }, { "key": "442", "source": "195", "target": "207", "attributes": { "weight": 1 } }, { "key": "8320", "source": "195", "target": "1188", "attributes": { "weight": 3 } }, { "key": "8383", "source": "195", "target": "399", "attributes": { "weight": 6 } }, { "key": "3304", "source": "195", "target": "910", "attributes": { "weight": 5 } }, { "key": "8293", "source": "195", "target": "1140", "attributes": { "weight": 5 } }, { "key": "3307", "source": "195", "target": "912", "attributes": { "weight": 7 } }, { "key": "8384", "source": "195", "target": "189", "attributes": { "weight": 3 } }, { "key": "8327", "source": "195", "target": "1196", "attributes": { "weight": 7 } }, { "key": "3309", "source": "195", "target": "915", "attributes": { "weight": 4 } }, { "key": "3313", "source": "195", "target": "920", "attributes": { "weight": 4 } }, { "key": "8308", "source": "195", "target": "223", "attributes": { "weight": 3 } }, { "key": "8370", "source": "195", "target": "923", "attributes": { "weight": 3 } }, { "key": "9714", "source": "195", "target": "403", "attributes": { "weight": 2 } }, { "key": "15480", "source": "195", "target": "544", "attributes": { "weight": 1 } }, { "key": "15475", "source": "195", "target": "1227", "attributes": { "weight": 1 } }, { "key": "8376", "source": "195", "target": "1269", "attributes": { "weight": 6 } }, { "key": "15470", "source": "195", "target": "1214", "attributes": { "weight": 1 } }, { "key": "8390", "source": "195", "target": "1289", "attributes": { "weight": 7 } }, { "key": "8369", "source": "195", "target": "208", "attributes": { "weight": 8 } }, { "key": "8360", "source": "195", "target": "370", "attributes": { "weight": 10 } }, { "key": "4298", "source": "195", "target": "468", "attributes": { "weight": 8 } }, { "key": "15491", "source": "195", "target": "601", "attributes": { "weight": 2 } }, { "key": "8345", "source": "195", "target": "204", "attributes": { "weight": 4 } }, { "key": "8295", "source": "195", "target": "1144", "attributes": { "weight": 3 } }, { "key": "15487", "source": "195", "target": "372", "attributes": { "weight": 3 } }, { "key": "8337", "source": "195", "target": "198", "attributes": { "weight": 3 } }, { "key": "15464", "source": "195", "target": "778", "attributes": { "weight": 1 } }, { "key": "8377", "source": "195", "target": "1270", "attributes": { "weight": 3 } }, { "key": "8331", "source": "195", "target": "449", "attributes": { "weight": 3 } }, { "key": "15459", "source": "195", "target": "1163", "attributes": { "weight": 1 } }, { "key": "8338", "source": "195", "target": "1207", "attributes": { "weight": 3 } }, { "key": "8307", "source": "195", "target": "1523", "attributes": { "weight": 3 } }, { "key": "15463", "source": "195", "target": "631", "attributes": { "weight": 1 } }, { "key": "8388", "source": "195", "target": "1286", "attributes": { "weight": 7 } }, { "key": "8375", "source": "195", "target": "1268", "attributes": { "weight": 3 } }, { "key": "8342", "source": "195", "target": "454", "attributes": { "weight": 5 } }, { "key": "8403", "source": "195", "target": "215", "attributes": { "weight": 8 } }, { "key": "8303", "source": "195", "target": "1162", "attributes": { "weight": 6 } }, { "key": "15484", "source": "195", "target": "580", "attributes": { "weight": 1 } }, { "key": "7209", "source": "195", "target": "1063", "attributes": { "weight": 6 } }, { "key": "8333", "source": "195", "target": "1532", "attributes": { "weight": 3 } }, { "key": "18131", "source": "195", "target": "2205", "attributes": { "weight": 1 } }, { "key": "8347", "source": "195", "target": "1222", "attributes": { "weight": 3 } }, { "key": "3303", "source": "195", "target": "909", "attributes": { "weight": 2 } }, { "key": "8393", "source": "195", "target": "1293", "attributes": { "weight": 3 } }, { "key": "8392", "source": "195", "target": "1291", "attributes": { "weight": 5 } }, { "key": "8419", "source": "195", "target": "124", "attributes": { "weight": 8 } }, { "key": "15466", "source": "195", "target": "369", "attributes": { "weight": 1 } }, { "key": "8317", "source": "195", "target": "1180", "attributes": { "weight": 7 } }, { "key": "15483", "source": "195", "target": "545", "attributes": { "weight": 1 } }, { "key": "9715", "source": "195", "target": "406", "attributes": { "weight": 4 } }, { "key": "8354", "source": "195", "target": "1233", "attributes": { "weight": 9 } }, { "key": "441", "source": "195", "target": "206", "attributes": { "weight": 1 } }, { "key": "8344", "source": "195", "target": "390", "attributes": { "weight": 6 } }, { "key": "8297", "source": "195", "target": "933", "attributes": { "weight": 4 } }, { "key": "8367", "source": "195", "target": "472", "attributes": { "weight": 4 } }, { "key": "8385", "source": "195", "target": "1279", "attributes": { "weight": 4 } }, { "key": "15469", "source": "195", "target": "1211", "attributes": { "weight": 1 } }, { "key": "444", "source": "195", "target": "211", "attributes": { "weight": 1 } }, { "key": "8366", "source": "195", "target": "471", "attributes": { "weight": 4 } }, { "key": "8381", "source": "195", "target": "1278", "attributes": { "weight": 3 } }, { "key": "15476", "source": "195", "target": "278", "attributes": { "weight": 2 } }, { "key": "8417", "source": "195", "target": "408", "attributes": { "weight": 4 } }, { "key": "8340", "source": "195", "target": "199", "attributes": { "weight": 8 } }, { "key": "8427", "source": "195", "target": "1348", "attributes": { "weight": 4 } }, { "key": "8362", "source": "195", "target": "338", "attributes": { "weight": 10 } }, { "key": "8395", "source": "195", "target": "1296", "attributes": { "weight": 7 } }, { "key": "15489", "source": "195", "target": "1314", "attributes": { "weight": 1 } }, { "key": "8365", "source": "195", "target": "1255", "attributes": { "weight": 4 } }, { "key": "3312", "source": "195", "target": "919", "attributes": { "weight": 2 } }, { "key": "8356", "source": "195", "target": "1235", "attributes": { "weight": 4 } }, { "key": "8313", "source": "195", "target": "1175", "attributes": { "weight": 4 } }, { "key": "8298", "source": "195", "target": "1519", "attributes": { "weight": 3 } }, { "key": "8325", "source": "195", "target": "1526", "attributes": { "weight": 4 } }, { "key": "8391", "source": "195", "target": "212", "attributes": { "weight": 8 } }, { "key": "8346", "source": "195", "target": "1221", "attributes": { "weight": 4 } }, { "key": "15486", "source": "195", "target": "990", "attributes": { "weight": 1 } }, { "key": "15474", "source": "195", "target": "391", "attributes": { "weight": 1 } }, { "key": "8335", "source": "195", "target": "1204", "attributes": { "weight": 3 } }, { "key": "447", "source": "196", "target": "199", "attributes": { "weight": 2 } }, { "key": "4976", "source": "197", "target": "371", "attributes": { "weight": 2 } }, { "key": "29770", "source": "197", "target": "1281", "attributes": { "weight": 2 } }, { "key": "448", "source": "197", "target": "199", "attributes": { "weight": 2 } }, { "key": "449", "source": "197", "target": "212", "attributes": { "weight": 2 } }, { "key": "451", "source": "198", "target": "215", "attributes": { "weight": 2 } }, { "key": "8719", "source": "198", "target": "195", "attributes": { "weight": 3 } }, { "key": "15773", "source": "198", "target": "921", "attributes": { "weight": 1 } }, { "key": "4998", "source": "198", "target": "371", "attributes": { "weight": 2 } }, { "key": "36549", "source": "198", "target": "926", "attributes": { "weight": 1 } }, { "key": "36548", "source": "198", "target": "208", "attributes": { "weight": 1 } }, { "key": "450", "source": "198", "target": "199", "attributes": { "weight": 2 } }, { "key": "452", "source": "198", "target": "218", "attributes": { "weight": 4 } }, { "key": "18681", "source": "199", "target": "926", "attributes": { "weight": 2 } }, { "key": "11517", "source": "199", "target": "1262", "attributes": { "weight": 3 } }, { "key": "11524", "source": "199", "target": "1305", "attributes": { "weight": 3 } }, { "key": "21898", "source": "199", "target": "918", "attributes": { "weight": 1 } }, { "key": "11506", "source": "199", "target": "1152", "attributes": { "weight": 3 } }, { "key": "36552", "source": "199", "target": "1172", "attributes": { "weight": 1 } }, { "key": "16802", "source": "199", "target": "674", "attributes": { "weight": 1 } }, { "key": "11508", "source": "199", "target": "938", "attributes": { "weight": 2 } }, { "key": "28569", "source": "199", "target": "257", "attributes": { "weight": 1 } }, { "key": "21897", "source": "199", "target": "1153", "attributes": { "weight": 1 } }, { "key": "5014", "source": "199", "target": "779", "attributes": { "weight": 2 } }, { "key": "16803", "source": "199", "target": "70", "attributes": { "weight": 1 } }, { "key": "15783", "source": "199", "target": "925", "attributes": { "weight": 1 } }, { "key": "28555", "source": "199", "target": "1715", "attributes": { "weight": 1 } }, { "key": "18679", "source": "199", "target": "1228", "attributes": { "weight": 2 } }, { "key": "5019", "source": "199", "target": "1090", "attributes": { "weight": 3 } }, { "key": "460", "source": "199", "target": "210", "attributes": { "weight": 3 } }, { "key": "11521", "source": "199", "target": "785", "attributes": { "weight": 2 } }, { "key": "34172", "source": "199", "target": "1182", "attributes": { "weight": 1 } }, { "key": "28571", "source": "199", "target": "1429", "attributes": { "weight": 1 } }, { "key": "21899", "source": "199", "target": "920", "attributes": { "weight": 1 } }, { "key": "36558", "source": "199", "target": "1552", "attributes": { "weight": 1 } }, { "key": "11530", "source": "199", "target": "1338", "attributes": { "weight": 1 } }, { "key": "28553", "source": "199", "target": "2780", "attributes": { "weight": 1 } }, { "key": "28565", "source": "199", "target": "1314", "attributes": { "weight": 1 } }, { "key": "36550", "source": "199", "target": "933", "attributes": { "weight": 1 } }, { "key": "16801", "source": "199", "target": "59", "attributes": { "weight": 1 } }, { "key": "5017", "source": "199", "target": "123", "attributes": { "weight": 4 } }, { "key": "28554", "source": "199", "target": "236", "attributes": { "weight": 1 } }, { "key": "15782", "source": "199", "target": "913", "attributes": { "weight": 2 } }, { "key": "11512", "source": "199", "target": "370", "attributes": { "weight": 2 } }, { "key": "28556", "source": "199", "target": "1789", "attributes": { "weight": 1 } }, { "key": "11520", "source": "199", "target": "1790", "attributes": { "weight": 1 } }, { "key": "21901", "source": "199", "target": "930", "attributes": { "weight": 1 } }, { "key": "18678", "source": "199", "target": "1174", "attributes": { "weight": 3 } }, { "key": "11519", "source": "199", "target": "1281", "attributes": { "weight": 2 } }, { "key": "11523", "source": "199", "target": "1301", "attributes": { "weight": 2 } }, { "key": "28562", "source": "199", "target": "545", "attributes": { "weight": 1 } }, { "key": "11516", "source": "199", "target": "30", "attributes": { "weight": 2 } }, { "key": "18220", "source": "199", "target": "2205", "attributes": { "weight": 1 } }, { "key": "28560", "source": "199", "target": "337", "attributes": { "weight": 2 } }, { "key": "11511", "source": "199", "target": "945", "attributes": { "weight": 1 } }, { "key": "11525", "source": "199", "target": "1307", "attributes": { "weight": 1 } }, { "key": "458", "source": "199", "target": "202", "attributes": { "weight": 2 } }, { "key": "28557", "source": "199", "target": "1718", "attributes": { "weight": 1 } }, { "key": "28559", "source": "199", "target": "2297", "attributes": { "weight": 1 } }, { "key": "36551", "source": "199", "target": "1165", "attributes": { "weight": 1 } }, { "key": "34173", "source": "199", "target": "1232", "attributes": { "weight": 1 } }, { "key": "28567", "source": "199", "target": "1334", "attributes": { "weight": 1 } }, { "key": "454", "source": "199", "target": "197", "attributes": { "weight": 2 } }, { "key": "11529", "source": "199", "target": "961", "attributes": { "weight": 4 } }, { "key": "457", "source": "199", "target": "201", "attributes": { "weight": 2 } }, { "key": "7284", "source": "199", "target": "1063", "attributes": { "weight": 4 } }, { "key": "461", "source": "199", "target": "216", "attributes": { "weight": 2 } }, { "key": "11522", "source": "199", "target": "372", "attributes": { "weight": 2 } }, { "key": "18219", "source": "199", "target": "1197", "attributes": { "weight": 4 } }, { "key": "11510", "source": "199", "target": "1047", "attributes": { "weight": 2 } }, { "key": "36560", "source": "199", "target": "124", "attributes": { "weight": 1 } }, { "key": "21900", "source": "199", "target": "1691", "attributes": { "weight": 2 } }, { "key": "15781", "source": "199", "target": "912", "attributes": { "weight": 1 } }, { "key": "11509", "source": "199", "target": "387", "attributes": { "weight": 2 } }, { "key": "11514", "source": "199", "target": "338", "attributes": { "weight": 3 } }, { "key": "28568", "source": "199", "target": "963", "attributes": { "weight": 1 } }, { "key": "11507", "source": "199", "target": "1156", "attributes": { "weight": 2 } }, { "key": "28561", "source": "199", "target": "2781", "attributes": { "weight": 1 } }, { "key": "36556", "source": "199", "target": "205", "attributes": { "weight": 1 } }, { "key": "28566", "source": "199", "target": "634", "attributes": { "weight": 1 } }, { "key": "11518", "source": "199", "target": "782", "attributes": { "weight": 2 } }, { "key": "11515", "source": "199", "target": "921", "attributes": { "weight": 3 } }, { "key": "36553", "source": "199", "target": "1184", "attributes": { "weight": 1 } }, { "key": "5018", "source": "199", "target": "783", "attributes": { "weight": 4 } }, { "key": "11528", "source": "199", "target": "407", "attributes": { "weight": 2 } }, { "key": "453", "source": "199", "target": "196", "attributes": { "weight": 2 } }, { "key": "7283", "source": "199", "target": "154", "attributes": { "weight": 3 } }, { "key": "10203", "source": "199", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34174", "source": "199", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5015", "source": "199", "target": "1196", "attributes": { "weight": 3 } }, { "key": "36555", "source": "199", "target": "1238", "attributes": { "weight": 1 } }, { "key": "36559", "source": "199", "target": "1296", "attributes": { "weight": 1 } }, { "key": "28558", "source": "199", "target": "391", "attributes": { "weight": 1 } }, { "key": "36554", "source": "199", "target": "1236", "attributes": { "weight": 1 } }, { "key": "11527", "source": "199", "target": "1323", "attributes": { "weight": 4 } }, { "key": "18680", "source": "199", "target": "1269", "attributes": { "weight": 2 } }, { "key": "11526", "source": "199", "target": "254", "attributes": { "weight": 2 } }, { "key": "11513", "source": "199", "target": "780", "attributes": { "weight": 3 } }, { "key": "5016", "source": "199", "target": "368", "attributes": { "weight": 3 } }, { "key": "28564", "source": "199", "target": "1031", "attributes": { "weight": 1 } }, { "key": "36557", "source": "199", "target": "1263", "attributes": { "weight": 1 } }, { "key": "28570", "source": "199", "target": "412", "attributes": { "weight": 1 } }, { "key": "8731", "source": "199", "target": "195", "attributes": { "weight": 8 } }, { "key": "462", "source": "199", "target": "218", "attributes": { "weight": 5 } }, { "key": "459", "source": "199", "target": "208", "attributes": { "weight": 3 } }, { "key": "10668", "source": "199", "target": "43", "attributes": { "weight": 4 } }, { "key": "456", "source": "199", "target": "200", "attributes": { "weight": 3 } }, { "key": "28563", "source": "199", "target": "1279", "attributes": { "weight": 1 } }, { "key": "455", "source": "199", "target": "198", "attributes": { "weight": 2 } }, { "key": "5020", "source": "199", "target": "1294", "attributes": { "weight": 4 } }, { "key": "5023", "source": "200", "target": "779", "attributes": { "weight": 2 } }, { "key": "35101", "source": "200", "target": "1184", "attributes": { "weight": 1 } }, { "key": "5024", "source": "200", "target": "371", "attributes": { "weight": 2 } }, { "key": "35099", "source": "200", "target": "1162", "attributes": { "weight": 1 } }, { "key": "35100", "source": "200", "target": "1174", "attributes": { "weight": 1 } }, { "key": "35102", "source": "200", "target": "1047", "attributes": { "weight": 1 } }, { "key": "30099", "source": "200", "target": "1281", "attributes": { "weight": 2 } }, { "key": "35103", "source": "200", "target": "1307", "attributes": { "weight": 1 } }, { "key": "15785", "source": "200", "target": "195", "attributes": { "weight": 1 } }, { "key": "463", "source": "200", "target": "199", "attributes": { "weight": 3 } }, { "key": "465", "source": "201", "target": "202", "attributes": { "weight": 2 } }, { "key": "15800", "source": "201", "target": "195", "attributes": { "weight": 1 } }, { "key": "30100", "source": "201", "target": "1281", "attributes": { "weight": 2 } }, { "key": "7298", "source": "201", "target": "1063", "attributes": { "weight": 1 } }, { "key": "464", "source": "201", "target": "199", "attributes": { "weight": 2 } }, { "key": "5046", "source": "201", "target": "371", "attributes": { "weight": 2 } }, { "key": "29771", "source": "202", "target": "1281", "attributes": { "weight": 2 } }, { "key": "466", "source": "202", "target": "199", "attributes": { "weight": 2 } }, { "key": "467", "source": "203", "target": "219", "attributes": { "weight": 1 } }, { "key": "5058", "source": "204", "target": "371", "attributes": { "weight": 2 } }, { "key": "5057", "source": "204", "target": "779", "attributes": { "weight": 2 } }, { "key": "469", "source": "204", "target": "218", "attributes": { "weight": 2 } }, { "key": "8747", "source": "204", "target": "195", "attributes": { "weight": 4 } }, { "key": "468", "source": "204", "target": "208", "attributes": { "weight": 2 } }, { "key": "36601", "source": "205", "target": "337", "attributes": { "weight": 1 } }, { "key": "18729", "source": "205", "target": "1174", "attributes": { "weight": 2 } }, { "key": "5170", "source": "205", "target": "368", "attributes": { "weight": 2 } }, { "key": "36602", "source": "205", "target": "1552", "attributes": { "weight": 1 } }, { "key": "470", "source": "205", "target": "210", "attributes": { "weight": 2 } }, { "key": "36598", "source": "205", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5169", "source": "205", "target": "1196", "attributes": { "weight": 2 } }, { "key": "11546", "source": "205", "target": "961", "attributes": { "weight": 1 } }, { "key": "5168", "source": "205", "target": "779", "attributes": { "weight": 2 } }, { "key": "5173", "source": "205", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15880", "source": "205", "target": "925", "attributes": { "weight": 1 } }, { "key": "8783", "source": "205", "target": "195", "attributes": { "weight": 9 } }, { "key": "5171", "source": "205", "target": "371", "attributes": { "weight": 2 } }, { "key": "15878", "source": "205", "target": "913", "attributes": { "weight": 1 } }, { "key": "15877", "source": "205", "target": "912", "attributes": { "weight": 1 } }, { "key": "15879", "source": "205", "target": "921", "attributes": { "weight": 1 } }, { "key": "11545", "source": "205", "target": "370", "attributes": { "weight": 2 } }, { "key": "34456", "source": "205", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34454", "source": "205", "target": "1047", "attributes": { "weight": 1 } }, { "key": "36597", "source": "205", "target": "1165", "attributes": { "weight": 1 } }, { "key": "5172", "source": "205", "target": "123", "attributes": { "weight": 3 } }, { "key": "36600", "source": "205", "target": "1228", "attributes": { "weight": 1 } }, { "key": "36599", "source": "205", "target": "199", "attributes": { "weight": 1 } }, { "key": "471", "source": "205", "target": "218", "attributes": { "weight": 2 } }, { "key": "34455", "source": "205", "target": "1232", "attributes": { "weight": 1 } }, { "key": "11544", "source": "205", "target": "938", "attributes": { "weight": 2 } }, { "key": "472", "source": "206", "target": "195", "attributes": { "weight": 1 } }, { "key": "34511", "source": "206", "target": "1232", "attributes": { "weight": 1 } }, { "key": "473", "source": "207", "target": "195", "attributes": { "weight": 1 } }, { "key": "474", "source": "207", "target": "208", "attributes": { "weight": 1 } }, { "key": "36643", "source": "208", "target": "1194", "attributes": { "weight": 1 } }, { "key": "18248", "source": "208", "target": "1197", "attributes": { "weight": 4 } }, { "key": "11626", "source": "208", "target": "1262", "attributes": { "weight": 2 } }, { "key": "15336", "source": "208", "target": "1219", "attributes": { "weight": 3 } }, { "key": "17267", "source": "208", "target": "449", "attributes": { "weight": 1 } }, { "key": "15981", "source": "208", "target": "1184", "attributes": { "weight": 2 } }, { "key": "478", "source": "208", "target": "210", "attributes": { "weight": 2 } }, { "key": "5527", "source": "208", "target": "368", "attributes": { "weight": 3 } }, { "key": "18249", "source": "208", "target": "2200", "attributes": { "weight": 1 } }, { "key": "11621", "source": "208", "target": "1789", "attributes": { "weight": 1 } }, { "key": "12826", "source": "208", "target": "785", "attributes": { "weight": 1 } }, { "key": "15983", "source": "208", "target": "913", "attributes": { "weight": 2 } }, { "key": "18773", "source": "208", "target": "236", "attributes": { "weight": 1 } }, { "key": "15992", "source": "208", "target": "1289", "attributes": { "weight": 3 } }, { "key": "15985", "source": "208", "target": "1236", "attributes": { "weight": 3 } }, { "key": "5526", "source": "208", "target": "1196", "attributes": { "weight": 3 } }, { "key": "18251", "source": "208", "target": "2205", "attributes": { "weight": 1 } }, { "key": "15986", "source": "208", "target": "337", "attributes": { "weight": 2 } }, { "key": "18250", "source": "208", "target": "923", "attributes": { "weight": 1 } }, { "key": "28582", "source": "208", "target": "2780", "attributes": { "weight": 1 } }, { "key": "11622", "source": "208", "target": "1172", "attributes": { "weight": 3 } }, { "key": "15988", "source": "208", "target": "924", "attributes": { "weight": 3 } }, { "key": "15990", "source": "208", "target": "925", "attributes": { "weight": 4 } }, { "key": "15997", "source": "208", "target": "1329", "attributes": { "weight": 1 } }, { "key": "11632", "source": "208", "target": "254", "attributes": { "weight": 3 } }, { "key": "5525", "source": "208", "target": "779", "attributes": { "weight": 4 } }, { "key": "11619", "source": "208", "target": "1156", "attributes": { "weight": 4 } }, { "key": "15979", "source": "208", "target": "1162", "attributes": { "weight": 3 } }, { "key": "15337", "source": "208", "target": "472", "attributes": { "weight": 3 } }, { "key": "11629", "source": "208", "target": "1791", "attributes": { "weight": 1 } }, { "key": "11634", "source": "208", "target": "961", "attributes": { "weight": 4 } }, { "key": "34524", "source": "208", "target": "1182", "attributes": { "weight": 1 } }, { "key": "8872", "source": "208", "target": "195", "attributes": { "weight": 8 } }, { "key": "18779", "source": "208", "target": "1552", "attributes": { "weight": 2 } }, { "key": "475", "source": "208", "target": "199", "attributes": { "weight": 3 } }, { "key": "18776", "source": "208", "target": "1228", "attributes": { "weight": 2 } }, { "key": "14050", "source": "208", "target": "1031", "attributes": { "weight": 2 } }, { "key": "11624", "source": "208", "target": "945", "attributes": { "weight": 2 } }, { "key": "15984", "source": "208", "target": "1225", "attributes": { "weight": 2 } }, { "key": "5535", "source": "208", "target": "1294", "attributes": { "weight": 4 } }, { "key": "480", "source": "208", "target": "215", "attributes": { "weight": 2 } }, { "key": "26626", "source": "208", "target": "454", "attributes": { "weight": 2 } }, { "key": "11636", "source": "208", "target": "928", "attributes": { "weight": 1 } }, { "key": "11630", "source": "208", "target": "1301", "attributes": { "weight": 3 } }, { "key": "11633", "source": "208", "target": "407", "attributes": { "weight": 1 } }, { "key": "34525", "source": "208", "target": "1232", "attributes": { "weight": 1 } }, { "key": "11628", "source": "208", "target": "1790", "attributes": { "weight": 1 } }, { "key": "5533", "source": "208", "target": "123", "attributes": { "weight": 4 } }, { "key": "15996", "source": "208", "target": "1321", "attributes": { "weight": 3 } }, { "key": "15995", "source": "208", "target": "405", "attributes": { "weight": 3 } }, { "key": "18772", "source": "208", "target": "933", "attributes": { "weight": 2 } }, { "key": "5538", "source": "208", "target": "1063", "attributes": { "weight": 5 } }, { "key": "11625", "source": "208", "target": "921", "attributes": { "weight": 2 } }, { "key": "18781", "source": "208", "target": "124", "attributes": { "weight": 2 } }, { "key": "15989", "source": "208", "target": "1269", "attributes": { "weight": 3 } }, { "key": "5536", "source": "208", "target": "1315", "attributes": { "weight": 2 } }, { "key": "18780", "source": "208", "target": "926", "attributes": { "weight": 2 } }, { "key": "18774", "source": "208", "target": "1174", "attributes": { "weight": 2 } }, { "key": "11627", "source": "208", "target": "1281", "attributes": { "weight": 2 } }, { "key": "9813", "source": "208", "target": "396", "attributes": { "weight": 3 } }, { "key": "10713", "source": "208", "target": "43", "attributes": { "weight": 3 } }, { "key": "15982", "source": "208", "target": "912", "attributes": { "weight": 1 } }, { "key": "36646", "source": "208", "target": "1268", "attributes": { "weight": 1 } }, { "key": "15980", "source": "208", "target": "1165", "attributes": { "weight": 3 } }, { "key": "7343", "source": "208", "target": "154", "attributes": { "weight": 2 } }, { "key": "9812", "source": "208", "target": "387", "attributes": { "weight": 3 } }, { "key": "5534", "source": "208", "target": "1090", "attributes": { "weight": 4 } }, { "key": "32975", "source": "208", "target": "1424", "attributes": { "weight": 2 } }, { "key": "11618", "source": "208", "target": "1152", "attributes": { "weight": 4 } }, { "key": "479", "source": "208", "target": "214", "attributes": { "weight": 2 } }, { "key": "12825", "source": "208", "target": "780", "attributes": { "weight": 1 } }, { "key": "36764", "source": "208", "target": "377", "attributes": { "weight": 1 } }, { "key": "18777", "source": "208", "target": "1238", "attributes": { "weight": 2 } }, { "key": "32974", "source": "208", "target": "1406", "attributes": { "weight": 2 } }, { "key": "36647", "source": "208", "target": "1309", "attributes": { "weight": 1 } }, { "key": "10714", "source": "208", "target": "1314", "attributes": { "weight": 1 } }, { "key": "5537", "source": "208", "target": "1322", "attributes": { "weight": 2 } }, { "key": "11620", "source": "208", "target": "938", "attributes": { "weight": 4 } }, { "key": "18775", "source": "208", "target": "1176", "attributes": { "weight": 2 } }, { "key": "15987", "source": "208", "target": "1263", "attributes": { "weight": 2 } }, { "key": "15994", "source": "208", "target": "1305", "attributes": { "weight": 3 } }, { "key": "481", "source": "208", "target": "217", "attributes": { "weight": 2 } }, { "key": "15993", "source": "208", "target": "1296", "attributes": { "weight": 3 } }, { "key": "36644", "source": "208", "target": "198", "attributes": { "weight": 1 } }, { "key": "5531", "source": "208", "target": "135", "attributes": { "weight": 7 } }, { "key": "5530", "source": "208", "target": "338", "attributes": { "weight": 6 } }, { "key": "18247", "source": "208", "target": "1164", "attributes": { "weight": 1 } }, { "key": "11635", "source": "208", "target": "1338", "attributes": { "weight": 1 } }, { "key": "477", "source": "208", "target": "207", "attributes": { "weight": 1 } }, { "key": "32973", "source": "208", "target": "1350", "attributes": { "weight": 2 } }, { "key": "36645", "source": "208", "target": "1210", "attributes": { "weight": 1 } }, { "key": "11623", "source": "208", "target": "1047", "attributes": { "weight": 2 } }, { "key": "18778", "source": "208", "target": "1241", "attributes": { "weight": 2 } }, { "key": "34526", "source": "208", "target": "1323", "attributes": { "weight": 2 } }, { "key": "476", "source": "208", "target": "204", "attributes": { "weight": 2 } }, { "key": "5529", "source": "208", "target": "370", "attributes": { "weight": 4 } }, { "key": "5528", "source": "208", "target": "109", "attributes": { "weight": 2 } }, { "key": "15991", "source": "208", "target": "1287", "attributes": { "weight": 1 } }, { "key": "5532", "source": "208", "target": "371", "attributes": { "weight": 2 } }, { "key": "28583", "source": "208", "target": "1233", "attributes": { "weight": 2 } }, { "key": "28584", "source": "208", "target": "2781", "attributes": { "weight": 1 } }, { "key": "11631", "source": "208", "target": "1307", "attributes": { "weight": 3 } }, { "key": "482", "source": "209", "target": "195", "attributes": { "weight": 1 } }, { "key": "486", "source": "210", "target": "212", "attributes": { "weight": 3 } }, { "key": "484", "source": "210", "target": "205", "attributes": { "weight": 2 } }, { "key": "485", "source": "210", "target": "208", "attributes": { "weight": 2 } }, { "key": "5566", "source": "210", "target": "371", "attributes": { "weight": 2 } }, { "key": "30101", "source": "210", "target": "1281", "attributes": { "weight": 2 } }, { "key": "483", "source": "210", "target": "199", "attributes": { "weight": 3 } }, { "key": "487", "source": "211", "target": "195", "attributes": { "weight": 1 } }, { "key": "489", "source": "212", "target": "210", "attributes": { "weight": 3 } }, { "key": "488", "source": "212", "target": "197", "attributes": { "weight": 2 } }, { "key": "11653", "source": "212", "target": "961", "attributes": { "weight": 1 } }, { "key": "9011", "source": "212", "target": "195", "attributes": { "weight": 8 } }, { "key": "5933", "source": "212", "target": "338", "attributes": { "weight": 2 } }, { "key": "11648", "source": "212", "target": "1156", "attributes": { "weight": 1 } }, { "key": "11651", "source": "212", "target": "945", "attributes": { "weight": 1 } }, { "key": "5935", "source": "212", "target": "123", "attributes": { "weight": 2 } }, { "key": "5931", "source": "212", "target": "1196", "attributes": { "weight": 2 } }, { "key": "11649", "source": "212", "target": "938", "attributes": { "weight": 1 } }, { "key": "11652", "source": "212", "target": "370", "attributes": { "weight": 1 } }, { "key": "11650", "source": "212", "target": "1047", "attributes": { "weight": 2 } }, { "key": "16181", "source": "212", "target": "913", "attributes": { "weight": 1 } }, { "key": "5934", "source": "212", "target": "921", "attributes": { "weight": 4 } }, { "key": "36670", "source": "212", "target": "1174", "attributes": { "weight": 1 } }, { "key": "35113", "source": "212", "target": "1281", "attributes": { "weight": 1 } }, { "key": "36671", "source": "212", "target": "1238", "attributes": { "weight": 1 } }, { "key": "34637", "source": "212", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5930", "source": "212", "target": "779", "attributes": { "weight": 2 } }, { "key": "34636", "source": "212", "target": "1182", "attributes": { "weight": 1 } }, { "key": "5932", "source": "212", "target": "368", "attributes": { "weight": 2 } }, { "key": "5936", "source": "212", "target": "1090", "attributes": { "weight": 2 } }, { "key": "490", "source": "212", "target": "218", "attributes": { "weight": 2 } }, { "key": "491", "source": "213", "target": "195", "attributes": { "weight": 1 } }, { "key": "36688", "source": "214", "target": "1165", "attributes": { "weight": 1 } }, { "key": "6178", "source": "214", "target": "371", "attributes": { "weight": 2 } }, { "key": "492", "source": "214", "target": "208", "attributes": { "weight": 2 } }, { "key": "34657", "source": "214", "target": "123", "attributes": { "weight": 1 } }, { "key": "34656", "source": "214", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6175", "source": "214", "target": "779", "attributes": { "weight": 2 } }, { "key": "9021", "source": "214", "target": "195", "attributes": { "weight": 5 } }, { "key": "36689", "source": "214", "target": "1228", "attributes": { "weight": 1 } }, { "key": "6177", "source": "214", "target": "368", "attributes": { "weight": 2 } }, { "key": "6176", "source": "214", "target": "1196", "attributes": { "weight": 2 } }, { "key": "493", "source": "214", "target": "218", "attributes": { "weight": 2 } }, { "key": "18919", "source": "215", "target": "1552", "attributes": { "weight": 2 } }, { "key": "6248", "source": "215", "target": "1090", "attributes": { "weight": 3 } }, { "key": "34699", "source": "215", "target": "1182", "attributes": { "weight": 1 } }, { "key": "11677", "source": "215", "target": "370", "attributes": { "weight": 1 } }, { "key": "28602", "source": "215", "target": "2780", "attributes": { "weight": 1 } }, { "key": "36699", "source": "215", "target": "1156", "attributes": { "weight": 1 } }, { "key": "495", "source": "215", "target": "208", "attributes": { "weight": 2 } }, { "key": "18279", "source": "215", "target": "2200", "attributes": { "weight": 1 } }, { "key": "6246", "source": "215", "target": "183", "attributes": { "weight": 2 } }, { "key": "18278", "source": "215", "target": "1197", "attributes": { "weight": 2 } }, { "key": "16241", "source": "215", "target": "1236", "attributes": { "weight": 2 } }, { "key": "6243", "source": "215", "target": "779", "attributes": { "weight": 2 } }, { "key": "494", "source": "215", "target": "198", "attributes": { "weight": 2 } }, { "key": "6247", "source": "215", "target": "123", "attributes": { "weight": 4 } }, { "key": "18280", "source": "215", "target": "2205", "attributes": { "weight": 1 } }, { "key": "36703", "source": "215", "target": "124", "attributes": { "weight": 1 } }, { "key": "7391", "source": "215", "target": "1063", "attributes": { "weight": 2 } }, { "key": "9048", "source": "215", "target": "195", "attributes": { "weight": 8 } }, { "key": "6245", "source": "215", "target": "368", "attributes": { "weight": 2 } }, { "key": "16242", "source": "215", "target": "925", "attributes": { "weight": 2 } }, { "key": "11678", "source": "215", "target": "921", "attributes": { "weight": 2 } }, { "key": "6244", "source": "215", "target": "1196", "attributes": { "weight": 4 } }, { "key": "11675", "source": "215", "target": "1047", "attributes": { "weight": 2 } }, { "key": "11674", "source": "215", "target": "938", "attributes": { "weight": 1 } }, { "key": "36702", "source": "215", "target": "1301", "attributes": { "weight": 1 } }, { "key": "16239", "source": "215", "target": "912", "attributes": { "weight": 1 } }, { "key": "16238", "source": "215", "target": "1184", "attributes": { "weight": 2 } }, { "key": "36700", "source": "215", "target": "1269", "attributes": { "weight": 1 } }, { "key": "18918", "source": "215", "target": "1174", "attributes": { "weight": 2 } }, { "key": "36701", "source": "215", "target": "1296", "attributes": { "weight": 1 } }, { "key": "11676", "source": "215", "target": "945", "attributes": { "weight": 1 } }, { "key": "34700", "source": "215", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16240", "source": "215", "target": "913", "attributes": { "weight": 2 } }, { "key": "496", "source": "216", "target": "199", "attributes": { "weight": 2 } }, { "key": "497", "source": "217", "target": "208", "attributes": { "weight": 2 } }, { "key": "498", "source": "217", "target": "218", "attributes": { "weight": 2 } }, { "key": "6453", "source": "217", "target": "371", "attributes": { "weight": 2 } }, { "key": "6451", "source": "217", "target": "1196", "attributes": { "weight": 2 } }, { "key": "9102", "source": "217", "target": "195", "attributes": { "weight": 3 } }, { "key": "6452", "source": "217", "target": "368", "attributes": { "weight": 2 } }, { "key": "6450", "source": "217", "target": "779", "attributes": { "weight": 2 } }, { "key": "16379", "source": "218", "target": "338", "attributes": { "weight": 1 } }, { "key": "18993", "source": "218", "target": "124", "attributes": { "weight": 2 } }, { "key": "34822", "source": "218", "target": "1182", "attributes": { "weight": 1 } }, { "key": "36749", "source": "218", "target": "1321", "attributes": { "weight": 1 } }, { "key": "18980", "source": "218", "target": "1176", "attributes": { "weight": 2 } }, { "key": "18988", "source": "218", "target": "1291", "attributes": { "weight": 1 } }, { "key": "11727", "source": "218", "target": "1047", "attributes": { "weight": 2 } }, { "key": "18987", "source": "218", "target": "926", "attributes": { "weight": 2 } }, { "key": "6457", "source": "218", "target": "779", "attributes": { "weight": 2 } }, { "key": "18986", "source": "218", "target": "1269", "attributes": { "weight": 2 } }, { "key": "6460", "source": "218", "target": "370", "attributes": { "weight": 4 } }, { "key": "6458", "source": "218", "target": "1196", "attributes": { "weight": 3 } }, { "key": "505", "source": "218", "target": "217", "attributes": { "weight": 2 } }, { "key": "6462", "source": "218", "target": "371", "attributes": { "weight": 2 } }, { "key": "18294", "source": "218", "target": "1197", "attributes": { "weight": 3 } }, { "key": "16380", "source": "218", "target": "925", "attributes": { "weight": 1 } }, { "key": "9119", "source": "218", "target": "195", "attributes": { "weight": 8 } }, { "key": "16377", "source": "218", "target": "913", "attributes": { "weight": 2 } }, { "key": "18989", "source": "218", "target": "1296", "attributes": { "weight": 2 } }, { "key": "18983", "source": "218", "target": "1238", "attributes": { "weight": 2 } }, { "key": "36743", "source": "218", "target": "1210", "attributes": { "weight": 1 } }, { "key": "34824", "source": "218", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18981", "source": "218", "target": "1194", "attributes": { "weight": 2 } }, { "key": "16381", "source": "218", "target": "1305", "attributes": { "weight": 3 } }, { "key": "18982", "source": "218", "target": "1228", "attributes": { "weight": 2 } }, { "key": "6464", "source": "218", "target": "1090", "attributes": { "weight": 3 } }, { "key": "14126", "source": "218", "target": "1031", "attributes": { "weight": 1 } }, { "key": "500", "source": "218", "target": "199", "attributes": { "weight": 5 } }, { "key": "11730", "source": "218", "target": "961", "attributes": { "weight": 3 } }, { "key": "28609", "source": "218", "target": "2780", "attributes": { "weight": 1 } }, { "key": "502", "source": "218", "target": "205", "attributes": { "weight": 2 } }, { "key": "7412", "source": "218", "target": "1063", "attributes": { "weight": 2 } }, { "key": "501", "source": "218", "target": "204", "attributes": { "weight": 2 } }, { "key": "18991", "source": "218", "target": "405", "attributes": { "weight": 2 } }, { "key": "36741", "source": "218", "target": "1165", "attributes": { "weight": 1 } }, { "key": "6465", "source": "218", "target": "1294", "attributes": { "weight": 4 } }, { "key": "34823", "source": "218", "target": "1232", "attributes": { "weight": 1 } }, { "key": "16376", "source": "218", "target": "912", "attributes": { "weight": 1 } }, { "key": "18978", "source": "218", "target": "1162", "attributes": { "weight": 2 } }, { "key": "18992", "source": "218", "target": "1322", "attributes": { "weight": 1 } }, { "key": "503", "source": "218", "target": "212", "attributes": { "weight": 2 } }, { "key": "6459", "source": "218", "target": "368", "attributes": { "weight": 3 } }, { "key": "18990", "source": "218", "target": "1301", "attributes": { "weight": 2 } }, { "key": "36748", "source": "218", "target": "1309", "attributes": { "weight": 1 } }, { "key": "16375", "source": "218", "target": "1184", "attributes": { "weight": 3 } }, { "key": "16378", "source": "218", "target": "1236", "attributes": { "weight": 3 } }, { "key": "26165", "source": "218", "target": "1214", "attributes": { "weight": 1 } }, { "key": "36740", "source": "218", "target": "1152", "attributes": { "weight": 1 } }, { "key": "11728", "source": "218", "target": "945", "attributes": { "weight": 1 } }, { "key": "6463", "source": "218", "target": "123", "attributes": { "weight": 4 } }, { "key": "36746", "source": "218", "target": "924", "attributes": { "weight": 1 } }, { "key": "18979", "source": "218", "target": "1174", "attributes": { "weight": 2 } }, { "key": "36745", "source": "218", "target": "337", "attributes": { "weight": 1 } }, { "key": "36747", "source": "218", "target": "1268", "attributes": { "weight": 1 } }, { "key": "6461", "source": "218", "target": "135", "attributes": { "weight": 4 } }, { "key": "36744", "source": "218", "target": "1225", "attributes": { "weight": 1 } }, { "key": "18296", "source": "218", "target": "2205", "attributes": { "weight": 1 } }, { "key": "18984", "source": "218", "target": "1263", "attributes": { "weight": 2 } }, { "key": "18295", "source": "218", "target": "2200", "attributes": { "weight": 1 } }, { "key": "11729", "source": "218", "target": "921", "attributes": { "weight": 2 } }, { "key": "27303", "source": "218", "target": "57", "attributes": { "weight": 1 } }, { "key": "36742", "source": "218", "target": "1172", "attributes": { "weight": 1 } }, { "key": "11726", "source": "218", "target": "938", "attributes": { "weight": 1 } }, { "key": "499", "source": "218", "target": "198", "attributes": { "weight": 4 } }, { "key": "504", "source": "218", "target": "214", "attributes": { "weight": 2 } }, { "key": "18985", "source": "218", "target": "1552", "attributes": { "weight": 2 } }, { "key": "11725", "source": "218", "target": "1156", "attributes": { "weight": 3 } }, { "key": "18977", "source": "218", "target": "933", "attributes": { "weight": 2 } }, { "key": "507", "source": "219", "target": "203", "attributes": { "weight": 1 } }, { "key": "506", "source": "219", "target": "195", "attributes": { "weight": 1 } }, { "key": "10972", "source": "220", "target": "1247", "attributes": { "weight": 3 } }, { "key": "29002", "source": "220", "target": "237", "attributes": { "weight": 1 } }, { "key": "23531", "source": "220", "target": "2251", "attributes": { "weight": 1 } }, { "key": "8282", "source": "220", "target": "228", "attributes": { "weight": 2 } }, { "key": "14318", "source": "220", "target": "304", "attributes": { "weight": 2 } }, { "key": "10955", "source": "220", "target": "59", "attributes": { "weight": 4 } }, { "key": "31187", "source": "220", "target": "1359", "attributes": { "weight": 1 } }, { "key": "31188", "source": "220", "target": "1362", "attributes": { "weight": 1 } }, { "key": "25461", "source": "220", "target": "1360", "attributes": { "weight": 1 } }, { "key": "23551", "source": "220", "target": "1067", "attributes": { "weight": 1 } }, { "key": "23544", "source": "220", "target": "231", "attributes": { "weight": 3 } }, { "key": "25831", "source": "220", "target": "471", "attributes": { "weight": 3 } }, { "key": "25839", "source": "220", "target": "479", "attributes": { "weight": 4 } }, { "key": "23552", "source": "220", "target": "1373", "attributes": { "weight": 1 } }, { "key": "23550", "source": "220", "target": "487", "attributes": { "weight": 1 } }, { "key": "25829", "source": "220", "target": "2620", "attributes": { "weight": 1 } }, { "key": "23536", "source": "220", "target": "460", "attributes": { "weight": 1 } }, { "key": "14315", "source": "220", "target": "259", "attributes": { "weight": 2 } }, { "key": "10962", "source": "220", "target": "636", "attributes": { "weight": 2 } }, { "key": "8280", "source": "220", "target": "1056", "attributes": { "weight": 3 } }, { "key": "8287", "source": "220", "target": "180", "attributes": { "weight": 2 } }, { "key": "12132", "source": "220", "target": "1564", "attributes": { "weight": 1 } }, { "key": "4091", "source": "220", "target": "1131", "attributes": { "weight": 3 } }, { "key": "33024", "source": "220", "target": "493", "attributes": { "weight": 1 } }, { "key": "23525", "source": "220", "target": "1070", "attributes": { "weight": 1 } }, { "key": "23541", "source": "220", "target": "1367", "attributes": { "weight": 2 } }, { "key": "15448", "source": "220", "target": "154", "attributes": { "weight": 2 } }, { "key": "29005", "source": "220", "target": "372", "attributes": { "weight": 1 } }, { "key": "15449", "source": "220", "target": "333", "attributes": { "weight": 2 } }, { "key": "15446", "source": "220", "target": "1322", "attributes": { "weight": 2 } }, { "key": "30696", "source": "220", "target": "889", "attributes": { "weight": 1 } }, { "key": "10795", "source": "220", "target": "470", "attributes": { "weight": 8 } }, { "key": "10794", "source": "220", "target": "457", "attributes": { "weight": 4 } }, { "key": "25823", "source": "220", "target": "638", "attributes": { "weight": 1 } }, { "key": "8281", "source": "220", "target": "1363", "attributes": { "weight": 4 } }, { "key": "25084", "source": "220", "target": "1547", "attributes": { "weight": 1 } }, { "key": "15440", "source": "220", "target": "1233", "attributes": { "weight": 4 } }, { "key": "10958", "source": "220", "target": "222", "attributes": { "weight": 3 } }, { "key": "8270", "source": "220", "target": "1036", "attributes": { "weight": 7 } }, { "key": "25841", "source": "220", "target": "490", "attributes": { "weight": 1 } }, { "key": "23534", "source": "220", "target": "1361", "attributes": { "weight": 1 } }, { "key": "8283", "source": "220", "target": "1087", "attributes": { "weight": 2 } }, { "key": "23528", "source": "220", "target": "451", "attributes": { "weight": 1 } }, { "key": "23556", "source": "220", "target": "340", "attributes": { "weight": 4 } }, { "key": "8277", "source": "220", "target": "1541", "attributes": { "weight": 3 } }, { "key": "4239", "source": "220", "target": "673", "attributes": { "weight": 2 } }, { "key": "23558", "source": "220", "target": "1375", "attributes": { "weight": 3 } }, { "key": "33181", "source": "220", "target": "1836", "attributes": { "weight": 1 } }, { "key": "25816", "source": "220", "target": "698", "attributes": { "weight": 1 } }, { "key": "18439", "source": "220", "target": "1738", "attributes": { "weight": 1 } }, { "key": "508", "source": "220", "target": "230", "attributes": { "weight": 2 } }, { "key": "15439", "source": "220", "target": "1232", "attributes": { "weight": 4 } }, { "key": "10980", "source": "220", "target": "73", "attributes": { "weight": 2 } }, { "key": "9939", "source": "220", "target": "445", "attributes": { "weight": 3 } }, { "key": "29003", "source": "220", "target": "1385", "attributes": { "weight": 1 } }, { "key": "33183", "source": "220", "target": "473", "attributes": { "weight": 1 } }, { "key": "29109", "source": "220", "target": "500", "attributes": { "weight": 1 } }, { "key": "25846", "source": "220", "target": "497", "attributes": { "weight": 2 } }, { "key": "29356", "source": "220", "target": "2856", "attributes": { "weight": 2 } }, { "key": "10970", "source": "220", "target": "1761", "attributes": { "weight": 2 } }, { "key": "8278", "source": "220", "target": "1386", "attributes": { "weight": 3 } }, { "key": "10953", "source": "220", "target": "1754", "attributes": { "weight": 2 } }, { "key": "23542", "source": "220", "target": "190", "attributes": { "weight": 1 } }, { "key": "33186", "source": "220", "target": "672", "attributes": { "weight": 1 } }, { "key": "10961", "source": "220", "target": "224", "attributes": { "weight": 2 } }, { "key": "23555", "source": "220", "target": "56", "attributes": { "weight": 1 } }, { "key": "15438", "source": "220", "target": "1047", "attributes": { "weight": 4 } }, { "key": "14171", "source": "220", "target": "168", "attributes": { "weight": 2 } }, { "key": "11829", "source": "220", "target": "135", "attributes": { "weight": 2 } }, { "key": "23543", "source": "220", "target": "1812", "attributes": { "weight": 1 } }, { "key": "29357", "source": "220", "target": "2863", "attributes": { "weight": 1 } }, { "key": "10966", "source": "220", "target": "452", "attributes": { "weight": 4 } }, { "key": "10981", "source": "220", "target": "193", "attributes": { "weight": 2 } }, { "key": "25805", "source": "220", "target": "1141", "attributes": { "weight": 1 } }, { "key": "23518", "source": "220", "target": "1354", "attributes": { "weight": 3 } }, { "key": "25843", "source": "220", "target": "257", "attributes": { "weight": 1 } }, { "key": "8285", "source": "220", "target": "1088", "attributes": { "weight": 2 } }, { "key": "8286", "source": "220", "target": "233", "attributes": { "weight": 2 } }, { "key": "10971", "source": "220", "target": "1764", "attributes": { "weight": 2 } }, { "key": "8275", "source": "220", "target": "1046", "attributes": { "weight": 3 } }, { "key": "15443", "source": "220", "target": "925", "attributes": { "weight": 2 } }, { "key": "8274", "source": "220", "target": "1045", "attributes": { "weight": 3 } }, { "key": "9941", "source": "220", "target": "477", "attributes": { "weight": 3 } }, { "key": "23530", "source": "220", "target": "1358", "attributes": { "weight": 1 } }, { "key": "15437", "source": "220", "target": "913", "attributes": { "weight": 2 } }, { "key": "10969", "source": "220", "target": "455", "attributes": { "weight": 2 } }, { "key": "23514", "source": "220", "target": "1353", "attributes": { "weight": 1 } }, { "key": "25813", "source": "220", "target": "419", "attributes": { "weight": 1 } }, { "key": "10974", "source": "220", "target": "1767", "attributes": { "weight": 2 } }, { "key": "18014", "source": "220", "target": "433", "attributes": { "weight": 2 } }, { "key": "10968", "source": "220", "target": "1219", "attributes": { "weight": 3 } }, { "key": "25815", "source": "220", "target": "369", "attributes": { "weight": 1 } }, { "key": "9940", "source": "220", "target": "469", "attributes": { "weight": 3 } }, { "key": "25838", "source": "220", "target": "784", "attributes": { "weight": 2 } }, { "key": "25602", "source": "220", "target": "2070", "attributes": { "weight": 1 } }, { "key": "23547", "source": "220", "target": "482", "attributes": { "weight": 1 } }, { "key": "25820", "source": "220", "target": "52", "attributes": { "weight": 2 } }, { "key": "24470", "source": "220", "target": "790", "attributes": { "weight": 1 } }, { "key": "23559", "source": "220", "target": "496", "attributes": { "weight": 1 } }, { "key": "10963", "source": "220", "target": "446", "attributes": { "weight": 2 } }, { "key": "29169", "source": "220", "target": "76", "attributes": { "weight": 1 } }, { "key": "8272", "source": "220", "target": "425", "attributes": { "weight": 3 } }, { "key": "8284", "source": "220", "target": "474", "attributes": { "weight": 3 } }, { "key": "15445", "source": "220", "target": "1291", "attributes": { "weight": 2 } }, { "key": "10957", "source": "220", "target": "1522", "attributes": { "weight": 2 } }, { "key": "23523", "source": "220", "target": "439", "attributes": { "weight": 1 } }, { "key": "33185", "source": "220", "target": "489", "attributes": { "weight": 1 } }, { "key": "17808", "source": "220", "target": "454", "attributes": { "weight": 4 } }, { "key": "10977", "source": "220", "target": "1031", "attributes": { "weight": 2 } }, { "key": "15435", "source": "220", "target": "938", "attributes": { "weight": 2 } }, { "key": "4090", "source": "220", "target": "1112", "attributes": { "weight": 3 } }, { "key": "25817", "source": "220", "target": "108", "attributes": { "weight": 1 } }, { "key": "29007", "source": "220", "target": "1377", "attributes": { "weight": 1 } }, { "key": "8273", "source": "220", "target": "442", "attributes": { "weight": 3 } }, { "key": "23529", "source": "220", "target": "1357", "attributes": { "weight": 1 } }, { "key": "25826", "source": "220", "target": "1387", "attributes": { "weight": 1 } }, { "key": "23537", "source": "220", "target": "461", "attributes": { "weight": 1 } }, { "key": "25806", "source": "220", "target": "35", "attributes": { "weight": 1 } }, { "key": "15451", "source": "220", "target": "1063", "attributes": { "weight": 3 } }, { "key": "25828", "source": "220", "target": "136", "attributes": { "weight": 1 } }, { "key": "25822", "source": "220", "target": "791", "attributes": { "weight": 2 } }, { "key": "23546", "source": "220", "target": "1371", "attributes": { "weight": 1 } }, { "key": "25462", "source": "220", "target": "464", "attributes": { "weight": 1 } }, { "key": "23549", "source": "220", "target": "232", "attributes": { "weight": 3 } }, { "key": "15442", "source": "220", "target": "338", "attributes": { "weight": 2 } }, { "key": "25818", "source": "220", "target": "1118", "attributes": { "weight": 1 } }, { "key": "14317", "source": "220", "target": "167", "attributes": { "weight": 2 } }, { "key": "23527", "source": "220", "target": "2114", "attributes": { "weight": 1 } }, { "key": "16636", "source": "220", "target": "70", "attributes": { "weight": 3 } }, { "key": "17129", "source": "220", "target": "449", "attributes": { "weight": 1 } }, { "key": "15444", "source": "220", "target": "123", "attributes": { "weight": 4 } }, { "key": "32073", "source": "220", "target": "3084", "attributes": { "weight": 1 } }, { "key": "10965", "source": "220", "target": "358", "attributes": { "weight": 3 } }, { "key": "10976", "source": "220", "target": "1768", "attributes": { "weight": 2 } }, { "key": "23936", "source": "220", "target": "437", "attributes": { "weight": 2 } }, { "key": "23539", "source": "220", "target": "1080", "attributes": { "weight": 1 } }, { "key": "25811", "source": "220", "target": "339", "attributes": { "weight": 2 } }, { "key": "33182", "source": "220", "target": "2258", "attributes": { "weight": 1 } }, { "key": "11326", "source": "220", "target": "1742", "attributes": { "weight": 1 } }, { "key": "23538", "source": "220", "target": "462", "attributes": { "weight": 1 } }, { "key": "8271", "source": "220", "target": "50", "attributes": { "weight": 3 } }, { "key": "12128", "source": "220", "target": "435", "attributes": { "weight": 2 } }, { "key": "14291", "source": "220", "target": "53", "attributes": { "weight": 2 } }, { "key": "14319", "source": "220", "target": "305", "attributes": { "weight": 3 } }, { "key": "25827", "source": "220", "target": "8", "attributes": { "weight": 2 } }, { "key": "18315", "source": "220", "target": "1092", "attributes": { "weight": 1 } }, { "key": "12561", "source": "220", "target": "164", "attributes": { "weight": 3 } }, { "key": "35537", "source": "220", "target": "3114", "attributes": { "weight": 1 } }, { "key": "1221", "source": "220", "target": "188", "attributes": { "weight": 3 } }, { "key": "10978", "source": "220", "target": "1337", "attributes": { "weight": 2 } }, { "key": "12129", "source": "220", "target": "1832", "attributes": { "weight": 1 } }, { "key": "23535", "source": "220", "target": "1064", "attributes": { "weight": 1 } }, { "key": "25814", "source": "220", "target": "450", "attributes": { "weight": 2 } }, { "key": "25812", "source": "220", "target": "238", "attributes": { "weight": 2 } }, { "key": "10973", "source": "220", "target": "30", "attributes": { "weight": 2 } }, { "key": "15434", "source": "220", "target": "645", "attributes": { "weight": 2 } }, { "key": "25825", "source": "220", "target": "170", "attributes": { "weight": 1 } }, { "key": "23517", "source": "220", "target": "1107", "attributes": { "weight": 1 } }, { "key": "25844", "source": "220", "target": "1750", "attributes": { "weight": 2 } }, { "key": "25847", "source": "220", "target": "57", "attributes": { "weight": 3 } }, { "key": "23516", "source": "220", "target": "429", "attributes": { "weight": 3 } }, { "key": "14316", "source": "220", "target": "264", "attributes": { "weight": 2 } }, { "key": "13928", "source": "220", "target": "472", "attributes": { "weight": 3 } }, { "key": "25830", "source": "220", "target": "1258", "attributes": { "weight": 1 } }, { "key": "14320", "source": "220", "target": "327", "attributes": { "weight": 2 } }, { "key": "7206", "source": "220", "target": "674", "attributes": { "weight": 6 } }, { "key": "25661", "source": "220", "target": "278", "attributes": { "weight": 2 } }, { "key": "23522", "source": "220", "target": "858", "attributes": { "weight": 1 } }, { "key": "15441", "source": "220", "target": "370", "attributes": { "weight": 2 } }, { "key": "33180", "source": "220", "target": "2645", "attributes": { "weight": 1 } }, { "key": "10982", "source": "220", "target": "494", "attributes": { "weight": 3 } }, { "key": "10959", "source": "220", "target": "438", "attributes": { "weight": 2 } }, { "key": "23515", "source": "220", "target": "857", "attributes": { "weight": 3 } }, { "key": "12660", "source": "220", "target": "695", "attributes": { "weight": 2 } }, { "key": "23560", "source": "220", "target": "1094", "attributes": { "weight": 1 } }, { "key": "29004", "source": "220", "target": "1298", "attributes": { "weight": 1 } }, { "key": "10975", "source": "220", "target": "163", "attributes": { "weight": 3 } }, { "key": "25835", "source": "220", "target": "580", "attributes": { "weight": 1 } }, { "key": "10967", "source": "220", "target": "1116", "attributes": { "weight": 2 } }, { "key": "25808", "source": "220", "target": "236", "attributes": { "weight": 2 } }, { "key": "23557", "source": "220", "target": "492", "attributes": { "weight": 1 } }, { "key": "29108", "source": "220", "target": "447", "attributes": { "weight": 1 } }, { "key": "10964", "source": "220", "target": "183", "attributes": { "weight": 2 } }, { "key": "23532", "source": "220", "target": "458", "attributes": { "weight": 1 } }, { "key": "25837", "source": "220", "target": "1026", "attributes": { "weight": 2 } }, { "key": "23521", "source": "220", "target": "130", "attributes": { "weight": 5 } }, { "key": "25819", "source": "220", "target": "109", "attributes": { "weight": 1 } }, { "key": "23519", "source": "220", "target": "432", "attributes": { "weight": 2 } }, { "key": "15447", "source": "220", "target": "1323", "attributes": { "weight": 2 } }, { "key": "23526", "source": "220", "target": "860", "attributes": { "weight": 1 } }, { "key": "10956", "source": "220", "target": "434", "attributes": { "weight": 2 } }, { "key": "23540", "source": "220", "target": "54", "attributes": { "weight": 1 } }, { "key": "25807", "source": "220", "target": "787", "attributes": { "weight": 1 } }, { "key": "25840", "source": "220", "target": "178", "attributes": { "weight": 2 } }, { "key": "29006", "source": "220", "target": "2212", "attributes": { "weight": 1 } }, { "key": "23545", "source": "220", "target": "480", "attributes": { "weight": 1 } }, { "key": "25836", "source": "220", "target": "476", "attributes": { "weight": 1 } }, { "key": "25824", "source": "220", "target": "1024", "attributes": { "weight": 2 } }, { "key": "15450", "source": "220", "target": "377", "attributes": { "weight": 3 } }, { "key": "18096", "source": "220", "target": "467", "attributes": { "weight": 1 } }, { "key": "23553", "source": "220", "target": "491", "attributes": { "weight": 1 } }, { "key": "12131", "source": "220", "target": "1834", "attributes": { "weight": 1 } }, { "key": "10954", "source": "220", "target": "1755", "attributes": { "weight": 2 } }, { "key": "4283", "source": "220", "target": "468", "attributes": { "weight": 5 } }, { "key": "10796", "source": "220", "target": "1744", "attributes": { "weight": 4 } }, { "key": "8276", "source": "220", "target": "1539", "attributes": { "weight": 3 } }, { "key": "25821", "source": "220", "target": "392", "attributes": { "weight": 1 } }, { "key": "25809", "source": "220", "target": "223", "attributes": { "weight": 1 } }, { "key": "23524", "source": "220", "target": "443", "attributes": { "weight": 1 } }, { "key": "15433", "source": "220", "target": "195", "attributes": { "weight": 2 } }, { "key": "10960", "source": "220", "target": "51", "attributes": { "weight": 3 } }, { "key": "25842", "source": "220", "target": "595", "attributes": { "weight": 2 } }, { "key": "23554", "source": "220", "target": "1374", "attributes": { "weight": 3 } }, { "key": "25810", "source": "220", "target": "440", "attributes": { "weight": 1 } }, { "key": "15436", "source": "220", "target": "368", "attributes": { "weight": 2 } }, { "key": "25832", "source": "220", "target": "396", "attributes": { "weight": 1 } }, { "key": "30751", "source": "220", "target": "1370", "attributes": { "weight": 1 } }, { "key": "23533", "source": "220", "target": "459", "attributes": { "weight": 3 } }, { "key": "17130", "source": "220", "target": "2108", "attributes": { "weight": 1 } }, { "key": "25833", "source": "220", "target": "189", "attributes": { "weight": 2 } }, { "key": "12130", "source": "220", "target": "1535", "attributes": { "weight": 1 } }, { "key": "33184", "source": "220", "target": "2110", "attributes": { "weight": 1 } }, { "key": "10979", "source": "220", "target": "1389", "attributes": { "weight": 2 } }, { "key": "10390", "source": "220", "target": "225", "attributes": { "weight": 2 } }, { "key": "25845", "source": "220", "target": "495", "attributes": { "weight": 2 } }, { "key": "25834", "source": "220", "target": "1282", "attributes": { "weight": 2 } }, { "key": "4284", "source": "220", "target": "1090", "attributes": { "weight": 2 } }, { "key": "8288", "source": "220", "target": "48", "attributes": { "weight": 2 } }, { "key": "23520", "source": "220", "target": "424", "attributes": { "weight": 2 } }, { "key": "509", "source": "220", "target": "234", "attributes": { "weight": 2 } }, { "key": "23548", "source": "220", "target": "483", "attributes": { "weight": 1 } }, { "key": "8279", "source": "220", "target": "171", "attributes": { "weight": 3 } }, { "key": "19312", "source": "221", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19288", "source": "221", "target": "429", "attributes": { "weight": 1 } }, { "key": "36904", "source": "221", "target": "2647", "attributes": { "weight": 1 } }, { "key": "19307", "source": "221", "target": "1832", "attributes": { "weight": 1 } }, { "key": "19343", "source": "221", "target": "1751", "attributes": { "weight": 1 } }, { "key": "19290", "source": "221", "target": "1354", "attributes": { "weight": 1 } }, { "key": "19344", "source": "221", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19335", "source": "221", "target": "2271", "attributes": { "weight": 1 } }, { "key": "19318", "source": "221", "target": "1120", "attributes": { "weight": 1 } }, { "key": "19313", "source": "221", "target": "459", "attributes": { "weight": 1 } }, { "key": "19298", "source": "221", "target": "2025", "attributes": { "weight": 1 } }, { "key": "35826", "source": "221", "target": "497", "attributes": { "weight": 1 } }, { "key": "19297", "source": "221", "target": "51", "attributes": { "weight": 1 } }, { "key": "35825", "source": "221", "target": "1778", "attributes": { "weight": 1 } }, { "key": "19340", "source": "221", "target": "672", "attributes": { "weight": 1 } }, { "key": "19326", "source": "221", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19294", "source": "221", "target": "1522", "attributes": { "weight": 1 } }, { "key": "35816", "source": "221", "target": "3269", "attributes": { "weight": 1 } }, { "key": "12777", "source": "221", "target": "1093", "attributes": { "weight": 1 } }, { "key": "19309", "source": "221", "target": "1358", "attributes": { "weight": 1 } }, { "key": "35821", "source": "221", "target": "1026", "attributes": { "weight": 1 } }, { "key": "19325", "source": "221", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19296", "source": "221", "target": "439", "attributes": { "weight": 1 } }, { "key": "19342", "source": "221", "target": "1750", "attributes": { "weight": 1 } }, { "key": "513", "source": "221", "target": "225", "attributes": { "weight": 1 } }, { "key": "19330", "source": "221", "target": "482", "attributes": { "weight": 1 } }, { "key": "19302", "source": "221", "target": "1070", "attributes": { "weight": 1 } }, { "key": "19338", "source": "221", "target": "491", "attributes": { "weight": 1 } }, { "key": "19304", "source": "221", "target": "445", "attributes": { "weight": 1 } }, { "key": "19295", "source": "221", "target": "438", "attributes": { "weight": 1 } }, { "key": "19311", "source": "221", "target": "1998", "attributes": { "weight": 1 } }, { "key": "19345", "source": "221", "target": "1375", "attributes": { "weight": 1 } }, { "key": "19329", "source": "221", "target": "1770", "attributes": { "weight": 1 } }, { "key": "19339", "source": "221", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19324", "source": "221", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19301", "source": "221", "target": "441", "attributes": { "weight": 1 } }, { "key": "19299", "source": "221", "target": "440", "attributes": { "weight": 1 } }, { "key": "19337", "source": "221", "target": "489", "attributes": { "weight": 1 } }, { "key": "19346", "source": "221", "target": "1390", "attributes": { "weight": 2 } }, { "key": "35822", "source": "221", "target": "479", "attributes": { "weight": 1 } }, { "key": "36903", "source": "221", "target": "1072", "attributes": { "weight": 1 } }, { "key": "19347", "source": "221", "target": "2276", "attributes": { "weight": 1 } }, { "key": "19327", "source": "221", "target": "231", "attributes": { "weight": 1 } }, { "key": "35817", "source": "221", "target": "1760", "attributes": { "weight": 1 } }, { "key": "19287", "source": "221", "target": "1353", "attributes": { "weight": 1 } }, { "key": "19331", "source": "221", "target": "483", "attributes": { "weight": 1 } }, { "key": "35820", "source": "221", "target": "465", "attributes": { "weight": 1 } }, { "key": "19314", "source": "221", "target": "462", "attributes": { "weight": 1 } }, { "key": "19291", "source": "221", "target": "432", "attributes": { "weight": 1 } }, { "key": "19322", "source": "221", "target": "472", "attributes": { "weight": 1 } }, { "key": "19317", "source": "221", "target": "2255", "attributes": { "weight": 1 } }, { "key": "19328", "source": "221", "target": "477", "attributes": { "weight": 1 } }, { "key": "24331", "source": "221", "target": "2491", "attributes": { "weight": 1 } }, { "key": "19306", "source": "221", "target": "2248", "attributes": { "weight": 1 } }, { "key": "19336", "source": "221", "target": "487", "attributes": { "weight": 1 } }, { "key": "19334", "source": "221", "target": "2109", "attributes": { "weight": 1 } }, { "key": "19300", "source": "221", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19321", "source": "221", "target": "471", "attributes": { "weight": 1 } }, { "key": "19319", "source": "221", "target": "54", "attributes": { "weight": 1 } }, { "key": "19333", "source": "221", "target": "2095", "attributes": { "weight": 1 } }, { "key": "35818", "source": "221", "target": "3270", "attributes": { "weight": 1 } }, { "key": "19303", "source": "221", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19323", "source": "221", "target": "1367", "attributes": { "weight": 1 } }, { "key": "19341", "source": "221", "target": "56", "attributes": { "weight": 1 } }, { "key": "19308", "source": "221", "target": "227", "attributes": { "weight": 1 } }, { "key": "35819", "source": "221", "target": "1360", "attributes": { "weight": 1 } }, { "key": "19348", "source": "221", "target": "498", "attributes": { "weight": 1 } }, { "key": "29375", "source": "221", "target": "232", "attributes": { "weight": 1 } }, { "key": "19310", "source": "221", "target": "2251", "attributes": { "weight": 1 } }, { "key": "35824", "source": "221", "target": "1092", "attributes": { "weight": 1 } }, { "key": "19305", "source": "221", "target": "449", "attributes": { "weight": 1 } }, { "key": "19293", "source": "221", "target": "49", "attributes": { "weight": 1 } }, { "key": "19289", "source": "221", "target": "1756", "attributes": { "weight": 1 } }, { "key": "35823", "source": "221", "target": "428", "attributes": { "weight": 1 } }, { "key": "19349", "source": "221", "target": "2278", "attributes": { "weight": 1 } }, { "key": "19316", "source": "221", "target": "1247", "attributes": { "weight": 1 } }, { "key": "19315", "source": "221", "target": "464", "attributes": { "weight": 1 } }, { "key": "19320", "source": "221", "target": "2257", "attributes": { "weight": 1 } }, { "key": "19332", "source": "221", "target": "695", "attributes": { "weight": 1 } }, { "key": "19292", "source": "221", "target": "130", "attributes": { "weight": 1 } }, { "key": "19416", "source": "222", "target": "1375", "attributes": { "weight": 1 } }, { "key": "4100", "source": "222", "target": "228", "attributes": { "weight": 2 } }, { "key": "19415", "source": "222", "target": "2189", "attributes": { "weight": 1 } }, { "key": "31254", "source": "222", "target": "674", "attributes": { "weight": 1 } }, { "key": "29113", "source": "222", "target": "500", "attributes": { "weight": 2 } }, { "key": "11019", "source": "222", "target": "595", "attributes": { "weight": 2 } }, { "key": "35830", "source": "222", "target": "1778", "attributes": { "weight": 1 } }, { "key": "9944", "source": "222", "target": "1093", "attributes": { "weight": 4 } }, { "key": "35828", "source": "222", "target": "1026", "attributes": { "weight": 1 } }, { "key": "33028", "source": "222", "target": "493", "attributes": { "weight": 1 } }, { "key": "3602", "source": "222", "target": "1025", "attributes": { "weight": 2 } }, { "key": "29380", "source": "222", "target": "232", "attributes": { "weight": 1 } }, { "key": "19413", "source": "222", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19391", "source": "222", "target": "1756", "attributes": { "weight": 1 } }, { "key": "19414", "source": "222", "target": "56", "attributes": { "weight": 1 } }, { "key": "19412", "source": "222", "target": "491", "attributes": { "weight": 1 } }, { "key": "19417", "source": "222", "target": "2276", "attributes": { "weight": 1 } }, { "key": "26404", "source": "222", "target": "454", "attributes": { "weight": 1 } }, { "key": "19410", "source": "222", "target": "2095", "attributes": { "weight": 1 } }, { "key": "19406", "source": "222", "target": "2261", "attributes": { "weight": 1 } }, { "key": "4359", "source": "222", "target": "468", "attributes": { "weight": 2 } }, { "key": "31253", "source": "222", "target": "59", "attributes": { "weight": 1 } }, { "key": "19399", "source": "222", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19392", "source": "222", "target": "1354", "attributes": { "weight": 1 } }, { "key": "514", "source": "222", "target": "225", "attributes": { "weight": 2 } }, { "key": "35829", "source": "222", "target": "1092", "attributes": { "weight": 1 } }, { "key": "19405", "source": "222", "target": "1367", "attributes": { "weight": 1 } }, { "key": "35827", "source": "222", "target": "1760", "attributes": { "weight": 1 } }, { "key": "1248", "source": "222", "target": "193", "attributes": { "weight": 1 } }, { "key": "19393", "source": "222", "target": "130", "attributes": { "weight": 3 } }, { "key": "17145", "source": "222", "target": "449", "attributes": { "weight": 2 } }, { "key": "19398", "source": "222", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19411", "source": "222", "target": "489", "attributes": { "weight": 1 } }, { "key": "11018", "source": "222", "target": "470", "attributes": { "weight": 3 } }, { "key": "1247", "source": "222", "target": "224", "attributes": { "weight": 1 } }, { "key": "19390", "source": "222", "target": "429", "attributes": { "weight": 1 } }, { "key": "19394", "source": "222", "target": "49", "attributes": { "weight": 1 } }, { "key": "19407", "source": "222", "target": "1744", "attributes": { "weight": 1 } }, { "key": "9943", "source": "222", "target": "445", "attributes": { "weight": 4 } }, { "key": "31392", "source": "222", "target": "223", "attributes": { "weight": 1 } }, { "key": "19402", "source": "222", "target": "464", "attributes": { "weight": 1 } }, { "key": "19409", "source": "222", "target": "477", "attributes": { "weight": 1 } }, { "key": "24332", "source": "222", "target": "441", "attributes": { "weight": 1 } }, { "key": "19397", "source": "222", "target": "51", "attributes": { "weight": 1 } }, { "key": "24013", "source": "222", "target": "1125", "attributes": { "weight": 2 } }, { "key": "19395", "source": "222", "target": "50", "attributes": { "weight": 1 } }, { "key": "19403", "source": "222", "target": "471", "attributes": { "weight": 2 } }, { "key": "11017", "source": "222", "target": "1762", "attributes": { "weight": 2 } }, { "key": "29018", "source": "222", "target": "495", "attributes": { "weight": 1 } }, { "key": "11016", "source": "222", "target": "452", "attributes": { "weight": 1 } }, { "key": "19396", "source": "222", "target": "439", "attributes": { "weight": 1 } }, { "key": "8462", "source": "222", "target": "442", "attributes": { "weight": 3 } }, { "key": "11015", "source": "222", "target": "220", "attributes": { "weight": 3 } }, { "key": "19401", "source": "222", "target": "459", "attributes": { "weight": 1 } }, { "key": "19408", "source": "222", "target": "231", "attributes": { "weight": 1 } }, { "key": "33229", "source": "222", "target": "135", "attributes": { "weight": 1 } }, { "key": "19400", "source": "222", "target": "450", "attributes": { "weight": 1 } }, { "key": "19404", "source": "222", "target": "472", "attributes": { "weight": 1 } }, { "key": "24333", "source": "222", "target": "191", "attributes": { "weight": 1 } }, { "key": "32321", "source": "222", "target": "791", "attributes": { "weight": 1 } }, { "key": "19418", "source": "222", "target": "498", "attributes": { "weight": 1 } }, { "key": "19389", "source": "222", "target": "1353", "attributes": { "weight": 1 } }, { "key": "23574", "source": "222", "target": "2248", "attributes": { "weight": 1 } }, { "key": "26405", "source": "222", "target": "189", "attributes": { "weight": 1 } }, { "key": "31405", "source": "223", "target": "1384", "attributes": { "weight": 1 } }, { "key": "7232", "source": "223", "target": "42", "attributes": { "weight": 4 } }, { "key": "31259", "source": "223", "target": "70", "attributes": { "weight": 2 } }, { "key": "23400", "source": "223", "target": "437", "attributes": { "weight": 2 } }, { "key": "32324", "source": "223", "target": "791", "attributes": { "weight": 1 } }, { "key": "23325", "source": "223", "target": "2208", "attributes": { "weight": 1 } }, { "key": "10402", "source": "223", "target": "1708", "attributes": { "weight": 1 } }, { "key": "10401", "source": "223", "target": "1703", "attributes": { "weight": 3 } }, { "key": "7230", "source": "223", "target": "1386", "attributes": { "weight": 5 } }, { "key": "3926", "source": "223", "target": "458", "attributes": { "weight": 3 } }, { "key": "29839", "source": "223", "target": "1024", "attributes": { "weight": 2 } }, { "key": "9235", "source": "223", "target": "430", "attributes": { "weight": 1 } }, { "key": "23307", "source": "223", "target": "2086", "attributes": { "weight": 1 } }, { "key": "23326", "source": "223", "target": "1094", "attributes": { "weight": 1 } }, { "key": "25085", "source": "223", "target": "1547", "attributes": { "weight": 2 } }, { "key": "27805", "source": "223", "target": "339", "attributes": { "weight": 2 } }, { "key": "23314", "source": "223", "target": "462", "attributes": { "weight": 1 } }, { "key": "26412", "source": "223", "target": "455", "attributes": { "weight": 3 } }, { "key": "23405", "source": "223", "target": "193", "attributes": { "weight": 3 } }, { "key": "12668", "source": "223", "target": "695", "attributes": { "weight": 2 } }, { "key": "31417", "source": "223", "target": "492", "attributes": { "weight": 1 } }, { "key": "23306", "source": "223", "target": "424", "attributes": { "weight": 2 } }, { "key": "31404", "source": "223", "target": "451", "attributes": { "weight": 2 } }, { "key": "7227", "source": "223", "target": "38", "attributes": { "weight": 4 } }, { "key": "23401", "source": "223", "target": "674", "attributes": { "weight": 4 } }, { "key": "31412", "source": "223", "target": "123", "attributes": { "weight": 2 } }, { "key": "31400", "source": "223", "target": "51", "attributes": { "weight": 1 } }, { "key": "7231", "source": "223", "target": "1387", "attributes": { "weight": 4 } }, { "key": "19519", "source": "223", "target": "1375", "attributes": { "weight": 3 } }, { "key": "29019", "source": "223", "target": "495", "attributes": { "weight": 2 } }, { "key": "25907", "source": "223", "target": "445", "attributes": { "weight": 2 } }, { "key": "10403", "source": "223", "target": "482", "attributes": { "weight": 3 } }, { "key": "27359", "source": "223", "target": "340", "attributes": { "weight": 2 } }, { "key": "31399", "source": "223", "target": "1733", "attributes": { "weight": 2 } }, { "key": "23313", "source": "223", "target": "460", "attributes": { "weight": 1 } }, { "key": "12517", "source": "223", "target": "1282", "attributes": { "weight": 2 } }, { "key": "11026", "source": "223", "target": "452", "attributes": { "weight": 6 } }, { "key": "19514", "source": "223", "target": "1354", "attributes": { "weight": 4 } }, { "key": "29381", "source": "223", "target": "857", "attributes": { "weight": 1 } }, { "key": "33030", "source": "223", "target": "1355", "attributes": { "weight": 1 } }, { "key": "10806", "source": "223", "target": "457", "attributes": { "weight": 1 } }, { "key": "1253", "source": "223", "target": "490", "attributes": { "weight": 1 } }, { "key": "31403", "source": "223", "target": "450", "attributes": { "weight": 1 } }, { "key": "23316", "source": "223", "target": "1364", "attributes": { "weight": 1 } }, { "key": "26416", "source": "223", "target": "1557", "attributes": { "weight": 4 } }, { "key": "25374", "source": "223", "target": "433", "attributes": { "weight": 1 } }, { "key": "17154", "source": "223", "target": "449", "attributes": { "weight": 1 } }, { "key": "11852", "source": "223", "target": "1522", "attributes": { "weight": 1 } }, { "key": "3724", "source": "223", "target": "1063", "attributes": { "weight": 3 } }, { "key": "31409", "source": "223", "target": "1087", "attributes": { "weight": 1 } }, { "key": "17826", "source": "223", "target": "442", "attributes": { "weight": 2 } }, { "key": "19518", "source": "223", "target": "235", "attributes": { "weight": 1 } }, { "key": "19517", "source": "223", "target": "231", "attributes": { "weight": 4 } }, { "key": "31258", "source": "223", "target": "59", "attributes": { "weight": 1 } }, { "key": "4411", "source": "223", "target": "1090", "attributes": { "weight": 2 } }, { "key": "23404", "source": "223", "target": "304", "attributes": { "weight": 2 } }, { "key": "31398", "source": "223", "target": "222", "attributes": { "weight": 1 } }, { "key": "25463", "source": "223", "target": "1360", "attributes": { "weight": 1 } }, { "key": "19515", "source": "223", "target": "130", "attributes": { "weight": 5 } }, { "key": "32325", "source": "223", "target": "232", "attributes": { "weight": 1 } }, { "key": "515", "source": "223", "target": "225", "attributes": { "weight": 3 } }, { "key": "31402", "source": "223", "target": "3", "attributes": { "weight": 1 } }, { "key": "25908", "source": "223", "target": "1367", "attributes": { "weight": 2 } }, { "key": "516", "source": "223", "target": "230", "attributes": { "weight": 2 } }, { "key": "24019", "source": "223", "target": "2109", "attributes": { "weight": 2 } }, { "key": "4107", "source": "223", "target": "228", "attributes": { "weight": 4 } }, { "key": "23402", "source": "223", "target": "52", "attributes": { "weight": 4 } }, { "key": "31416", "source": "223", "target": "233", "attributes": { "weight": 2 } }, { "key": "33263", "source": "223", "target": "672", "attributes": { "weight": 1 } }, { "key": "33031", "source": "223", "target": "1845", "attributes": { "weight": 1 } }, { "key": "26415", "source": "223", "target": "189", "attributes": { "weight": 2 } }, { "key": "7229", "source": "223", "target": "133", "attributes": { "weight": 5 } }, { "key": "10807", "source": "223", "target": "470", "attributes": { "weight": 8 } }, { "key": "9720", "source": "223", "target": "471", "attributes": { "weight": 5 } }, { "key": "29382", "source": "223", "target": "858", "attributes": { "weight": 1 } }, { "key": "29171", "source": "223", "target": "1750", "attributes": { "weight": 2 } }, { "key": "25850", "source": "223", "target": "220", "attributes": { "weight": 1 } }, { "key": "23315", "source": "223", "target": "1120", "attributes": { "weight": 1 } }, { "key": "26411", "source": "223", "target": "134", "attributes": { "weight": 3 } }, { "key": "23403", "source": "223", "target": "473", "attributes": { "weight": 4 } }, { "key": "17155", "source": "223", "target": "2108", "attributes": { "weight": 1 } }, { "key": "23310", "source": "223", "target": "447", "attributes": { "weight": 1 } }, { "key": "28928", "source": "223", "target": "479", "attributes": { "weight": 4 } }, { "key": "23312", "source": "223", "target": "459", "attributes": { "weight": 3 } }, { "key": "31408", "source": "223", "target": "472", "attributes": { "weight": 2 } }, { "key": "7226", "source": "223", "target": "1382", "attributes": { "weight": 4 } }, { "key": "4410", "source": "223", "target": "468", "attributes": { "weight": 3 } }, { "key": "23322", "source": "223", "target": "483", "attributes": { "weight": 1 } }, { "key": "12667", "source": "223", "target": "1036", "attributes": { "weight": 3 } }, { "key": "19513", "source": "223", "target": "429", "attributes": { "weight": 4 } }, { "key": "19516", "source": "223", "target": "1744", "attributes": { "weight": 5 } }, { "key": "7228", "source": "223", "target": "39", "attributes": { "weight": 5 } }, { "key": "23324", "source": "223", "target": "247", "attributes": { "weight": 1 } }, { "key": "33032", "source": "223", "target": "493", "attributes": { "weight": 1 } }, { "key": "17827", "source": "223", "target": "454", "attributes": { "weight": 3 } }, { "key": "8476", "source": "223", "target": "195", "attributes": { "weight": 3 } }, { "key": "26414", "source": "223", "target": "1232", "attributes": { "weight": 3 } }, { "key": "12669", "source": "223", "target": "1390", "attributes": { "weight": 4 } }, { "key": "31407", "source": "223", "target": "1118", "attributes": { "weight": 3 } }, { "key": "31406", "source": "223", "target": "1116", "attributes": { "weight": 1 } }, { "key": "3722", "source": "223", "target": "419", "attributes": { "weight": 2 } }, { "key": "31395", "source": "223", "target": "435", "attributes": { "weight": 2 } }, { "key": "31579", "source": "223", "target": "595", "attributes": { "weight": 1 } }, { "key": "18321", "source": "223", "target": "1092", "attributes": { "weight": 1 } }, { "key": "29114", "source": "223", "target": "500", "attributes": { "weight": 2 } }, { "key": "3925", "source": "223", "target": "432", "attributes": { "weight": 3 } }, { "key": "23317", "source": "223", "target": "54", "attributes": { "weight": 1 } }, { "key": "23309", "source": "223", "target": "1070", "attributes": { "weight": 1 } }, { "key": "31411", "source": "223", "target": "474", "attributes": { "weight": 2 } }, { "key": "23319", "source": "223", "target": "1368", "attributes": { "weight": 1 } }, { "key": "33262", "source": "223", "target": "135", "attributes": { "weight": 1 } }, { "key": "25464", "source": "223", "target": "498", "attributes": { "weight": 1 } }, { "key": "26413", "source": "223", "target": "188", "attributes": { "weight": 2 } }, { "key": "23305", "source": "223", "target": "1353", "attributes": { "weight": 1 } }, { "key": "12516", "source": "223", "target": "1832", "attributes": { "weight": 1 } }, { "key": "24020", "source": "223", "target": "494", "attributes": { "weight": 3 } }, { "key": "3723", "source": "223", "target": "1047", "attributes": { "weight": 5 } }, { "key": "11027", "source": "223", "target": "469", "attributes": { "weight": 4 } }, { "key": "4108", "source": "223", "target": "1088", "attributes": { "weight": 2 } }, { "key": "517", "source": "223", "target": "234", "attributes": { "weight": 2 } }, { "key": "7233", "source": "223", "target": "154", "attributes": { "weight": 4 } }, { "key": "23323", "source": "223", "target": "56", "attributes": { "weight": 1 } }, { "key": "31414", "source": "223", "target": "1374", "attributes": { "weight": 1 } }, { "key": "23308", "source": "223", "target": "443", "attributes": { "weight": 1 } }, { "key": "31410", "source": "223", "target": "190", "attributes": { "weight": 2 } }, { "key": "32323", "source": "223", "target": "3093", "attributes": { "weight": 1 } }, { "key": "30724", "source": "223", "target": "1026", "attributes": { "weight": 2 } }, { "key": "30342", "source": "223", "target": "1046", "attributes": { "weight": 1 } }, { "key": "23311", "source": "223", "target": "1357", "attributes": { "weight": 1 } }, { "key": "27220", "source": "223", "target": "425", "attributes": { "weight": 3 } }, { "key": "31397", "source": "223", "target": "164", "attributes": { "weight": 2 } }, { "key": "23318", "source": "223", "target": "1366", "attributes": { "weight": 1 } }, { "key": "31413", "source": "223", "target": "477", "attributes": { "weight": 1 } }, { "key": "26410", "source": "223", "target": "34", "attributes": { "weight": 3 } }, { "key": "23321", "source": "223", "target": "2269", "attributes": { "weight": 1 } }, { "key": "3721", "source": "223", "target": "645", "attributes": { "weight": 2 } }, { "key": "8477", "source": "223", "target": "370", "attributes": { "weight": 6 } }, { "key": "27532", "source": "223", "target": "1520", "attributes": { "weight": 1 } }, { "key": "23320", "source": "223", "target": "1812", "attributes": { "weight": 1 } }, { "key": "26903", "source": "223", "target": "497", "attributes": { "weight": 1 } }, { "key": "18443", "source": "223", "target": "1738", "attributes": { "weight": 1 } }, { "key": "27221", "source": "223", "target": "57", "attributes": { "weight": 2 } }, { "key": "31401", "source": "223", "target": "440", "attributes": { "weight": 1 } }, { "key": "31396", "source": "223", "target": "436", "attributes": { "weight": 1 } }, { "key": "33261", "source": "223", "target": "50", "attributes": { "weight": 1 } }, { "key": "31415", "source": "223", "target": "1131", "attributes": { "weight": 2 } }, { "key": "1286", "source": "224", "target": "456", "attributes": { "weight": 1 } }, { "key": "1300", "source": "224", "target": "190", "attributes": { "weight": 1 } }, { "key": "1289", "source": "224", "target": "460", "attributes": { "weight": 1 } }, { "key": "1326", "source": "224", "target": "499", "attributes": { "weight": 1 } }, { "key": "1277", "source": "224", "target": "445", "attributes": { "weight": 1 } }, { "key": "1313", "source": "224", "target": "486", "attributes": { "weight": 1 } }, { "key": "1287", "source": "224", "target": "458", "attributes": { "weight": 2 } }, { "key": "36989", "source": "224", "target": "2644", "attributes": { "weight": 1 } }, { "key": "1311", "source": "224", "target": "485", "attributes": { "weight": 1 } }, { "key": "1309", "source": "224", "target": "483", "attributes": { "weight": 2 } }, { "key": "19654", "source": "224", "target": "2251", "attributes": { "weight": 1 } }, { "key": "1319", "source": "224", "target": "340", "attributes": { "weight": 1 } }, { "key": "1294", "source": "224", "target": "467", "attributes": { "weight": 1 } }, { "key": "1303", "source": "224", "target": "231", "attributes": { "weight": 5 } }, { "key": "1283", "source": "224", "target": "452", "attributes": { "weight": 1 } }, { "key": "1310", "source": "224", "target": "484", "attributes": { "weight": 1 } }, { "key": "1291", "source": "224", "target": "462", "attributes": { "weight": 3 } }, { "key": "1327", "source": "224", "target": "194", "attributes": { "weight": 1 } }, { "key": "1269", "source": "224", "target": "130", "attributes": { "weight": 1 } }, { "key": "36990", "source": "224", "target": "1357", "attributes": { "weight": 1 } }, { "key": "33747", "source": "224", "target": "3", "attributes": { "weight": 1 } }, { "key": "1267", "source": "224", "target": "432", "attributes": { "weight": 1 } }, { "key": "1265", "source": "224", "target": "430", "attributes": { "weight": 1 } }, { "key": "1274", "source": "224", "target": "441", "attributes": { "weight": 1 } }, { "key": "1270", "source": "224", "target": "436", "attributes": { "weight": 1 } }, { "key": "1297", "source": "224", "target": "54", "attributes": { "weight": 4 } }, { "key": "1306", "source": "224", "target": "480", "attributes": { "weight": 1 } }, { "key": "1284", "source": "224", "target": "185", "attributes": { "weight": 1 } }, { "key": "33325", "source": "224", "target": "135", "attributes": { "weight": 1 } }, { "key": "1322", "source": "224", "target": "494", "attributes": { "weight": 1 } }, { "key": "1290", "source": "224", "target": "461", "attributes": { "weight": 1 } }, { "key": "1272", "source": "224", "target": "439", "attributes": { "weight": 1 } }, { "key": "1288", "source": "224", "target": "459", "attributes": { "weight": 2 } }, { "key": "1292", "source": "224", "target": "463", "attributes": { "weight": 2 } }, { "key": "1312", "source": "224", "target": "232", "attributes": { "weight": 3 } }, { "key": "1315", "source": "224", "target": "488", "attributes": { "weight": 1 } }, { "key": "1318", "source": "224", "target": "192", "attributes": { "weight": 2 } }, { "key": "32087", "source": "224", "target": "3084", "attributes": { "weight": 1 } }, { "key": "1302", "source": "224", "target": "191", "attributes": { "weight": 3 } }, { "key": "1308", "source": "224", "target": "482", "attributes": { "weight": 1 } }, { "key": "1280", "source": "224", "target": "449", "attributes": { "weight": 1 } }, { "key": "6640", "source": "224", "target": "189", "attributes": { "weight": 3 } }, { "key": "1320", "source": "224", "target": "493", "attributes": { "weight": 1 } }, { "key": "16736", "source": "224", "target": "1354", "attributes": { "weight": 1 } }, { "key": "1281", "source": "224", "target": "450", "attributes": { "weight": 1 } }, { "key": "1276", "source": "224", "target": "444", "attributes": { "weight": 2 } }, { "key": "35865", "source": "224", "target": "465", "attributes": { "weight": 1 } }, { "key": "6642", "source": "224", "target": "56", "attributes": { "weight": 4 } }, { "key": "1324", "source": "224", "target": "496", "attributes": { "weight": 1 } }, { "key": "1323", "source": "224", "target": "495", "attributes": { "weight": 3 } }, { "key": "1268", "source": "224", "target": "424", "attributes": { "weight": 5 } }, { "key": "1316", "source": "224", "target": "489", "attributes": { "weight": 1 } }, { "key": "16737", "source": "224", "target": "70", "attributes": { "weight": 1 } }, { "key": "1282", "source": "224", "target": "451", "attributes": { "weight": 2 } }, { "key": "1329", "source": "224", "target": "57", "attributes": { "weight": 2 } }, { "key": "1275", "source": "224", "target": "443", "attributes": { "weight": 2 } }, { "key": "1299", "source": "224", "target": "473", "attributes": { "weight": 1 } }, { "key": "1328", "source": "224", "target": "500", "attributes": { "weight": 1 } }, { "key": "1285", "source": "224", "target": "188", "attributes": { "weight": 1 } }, { "key": "1266", "source": "224", "target": "59", "attributes": { "weight": 1 } }, { "key": "1279", "source": "224", "target": "182", "attributes": { "weight": 1 } }, { "key": "6637", "source": "224", "target": "1358", "attributes": { "weight": 2 } }, { "key": "35866", "source": "224", "target": "428", "attributes": { "weight": 1 } }, { "key": "6639", "source": "224", "target": "1366", "attributes": { "weight": 1 } }, { "key": "12171", "source": "224", "target": "435", "attributes": { "weight": 1 } }, { "key": "1273", "source": "224", "target": "440", "attributes": { "weight": 1 } }, { "key": "6635", "source": "224", "target": "1353", "attributes": { "weight": 1 } }, { "key": "1304", "source": "224", "target": "477", "attributes": { "weight": 1 } }, { "key": "1298", "source": "224", "target": "472", "attributes": { "weight": 1 } }, { "key": "37062", "source": "224", "target": "857", "attributes": { "weight": 1 } }, { "key": "1307", "source": "224", "target": "481", "attributes": { "weight": 1 } }, { "key": "11036", "source": "224", "target": "220", "attributes": { "weight": 2 } }, { "key": "1296", "source": "224", "target": "470", "attributes": { "weight": 1 } }, { "key": "29385", "source": "224", "target": "2211", "attributes": { "weight": 1 } }, { "key": "6636", "source": "224", "target": "429", "attributes": { "weight": 3 } }, { "key": "35864", "source": "224", "target": "1360", "attributes": { "weight": 1 } }, { "key": "6641", "source": "224", "target": "1368", "attributes": { "weight": 1 } }, { "key": "1293", "source": "224", "target": "466", "attributes": { "weight": 1 } }, { "key": "518", "source": "224", "target": "230", "attributes": { "weight": 2 } }, { "key": "1271", "source": "224", "target": "222", "attributes": { "weight": 1 } }, { "key": "1278", "source": "224", "target": "447", "attributes": { "weight": 1 } }, { "key": "6638", "source": "224", "target": "426", "attributes": { "weight": 1 } }, { "key": "1301", "source": "224", "target": "474", "attributes": { "weight": 1 } }, { "key": "1325", "source": "224", "target": "497", "attributes": { "weight": 1 } }, { "key": "1321", "source": "224", "target": "193", "attributes": { "weight": 5 } }, { "key": "1317", "source": "224", "target": "491", "attributes": { "weight": 1 } }, { "key": "1314", "source": "224", "target": "487", "attributes": { "weight": 1 } }, { "key": "1305", "source": "224", "target": "479", "attributes": { "weight": 1 } }, { "key": "32331", "source": "224", "target": "791", "attributes": { "weight": 1 } }, { "key": "24484", "source": "224", "target": "790", "attributes": { "weight": 1 } }, { "key": "1295", "source": "224", "target": "468", "attributes": { "weight": 1 } }, { "key": "36905", "source": "224", "target": "1072", "attributes": { "weight": 1 } }, { "key": "10448", "source": "225", "target": "230", "attributes": { "weight": 1 } }, { "key": "10454", "source": "225", "target": "42", "attributes": { "weight": 1 } }, { "key": "10430", "source": "225", "target": "454", "attributes": { "weight": 2 } }, { "key": "10449", "source": "225", "target": "41", "attributes": { "weight": 1 } }, { "key": "10427", "source": "225", "target": "227", "attributes": { "weight": 1 } }, { "key": "524", "source": "225", "target": "135", "attributes": { "weight": 2 } }, { "key": "10472", "source": "225", "target": "1714", "attributes": { "weight": 1 } }, { "key": "10416", "source": "225", "target": "131", "attributes": { "weight": 1 } }, { "key": "10434", "source": "225", "target": "791", "attributes": { "weight": 2 } }, { "key": "10439", "source": "225", "target": "40", "attributes": { "weight": 1 } }, { "key": "10436", "source": "225", "target": "370", "attributes": { "weight": 1 } }, { "key": "529", "source": "225", "target": "235", "attributes": { "weight": 1 } }, { "key": "10456", "source": "225", "target": "137", "attributes": { "weight": 1 } }, { "key": "10420", "source": "225", "target": "339", "attributes": { "weight": 2 } }, { "key": "10424", "source": "225", "target": "133", "attributes": { "weight": 1 } }, { "key": "10469", "source": "225", "target": "1713", "attributes": { "weight": 1 } }, { "key": "10414", "source": "225", "target": "1036", "attributes": { "weight": 3 } }, { "key": "3101", "source": "225", "target": "890", "attributes": { "weight": 2 } }, { "key": "10440", "source": "225", "target": "468", "attributes": { "weight": 1 } }, { "key": "10450", "source": "225", "target": "1556", "attributes": { "weight": 2 } }, { "key": "10412", "source": "225", "target": "220", "attributes": { "weight": 2 } }, { "key": "10410", "source": "225", "target": "1703", "attributes": { "weight": 1 } }, { "key": "10438", "source": "225", "target": "1544", "attributes": { "weight": 1 } }, { "key": "10432", "source": "225", "target": "109", "attributes": { "weight": 1 } }, { "key": "10457", "source": "225", "target": "1709", "attributes": { "weight": 1 } }, { "key": "10411", "source": "225", "target": "429", "attributes": { "weight": 2 } }, { "key": "10419", "source": "225", "target": "1524", "attributes": { "weight": 1 } }, { "key": "10437", "source": "225", "target": "1387", "attributes": { "weight": 1 } }, { "key": "528", "source": "225", "target": "233", "attributes": { "weight": 3 } }, { "key": "10467", "source": "225", "target": "234", "attributes": { "weight": 1 } }, { "key": "10471", "source": "225", "target": "193", "attributes": { "weight": 1 } }, { "key": "10409", "source": "225", "target": "34", "attributes": { "weight": 1 } }, { "key": "10428", "source": "225", "target": "1384", "attributes": { "weight": 1 } }, { "key": "10447", "source": "225", "target": "474", "attributes": { "weight": 1 } }, { "key": "10444", "source": "225", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9246", "source": "225", "target": "1592", "attributes": { "weight": 1 } }, { "key": "10455", "source": "225", "target": "1708", "attributes": { "weight": 1 } }, { "key": "10451", "source": "225", "target": "1557", "attributes": { "weight": 1 } }, { "key": "10463", "source": "225", "target": "1565", "attributes": { "weight": 1 } }, { "key": "8662", "source": "225", "target": "442", "attributes": { "weight": 6 } }, { "key": "30353", "source": "225", "target": "1046", "attributes": { "weight": 1 } }, { "key": "10442", "source": "225", "target": "54", "attributes": { "weight": 2 } }, { "key": "26180", "source": "225", "target": "2631", "attributes": { "weight": 1 } }, { "key": "10460", "source": "225", "target": "482", "attributes": { "weight": 1 } }, { "key": "520", "source": "225", "target": "221", "attributes": { "weight": 1 } }, { "key": "10415", "source": "225", "target": "1520", "attributes": { "weight": 1 } }, { "key": "526", "source": "225", "target": "229", "attributes": { "weight": 1 } }, { "key": "9245", "source": "225", "target": "430", "attributes": { "weight": 2 } }, { "key": "10452", "source": "225", "target": "1088", "attributes": { "weight": 1 } }, { "key": "10470", "source": "225", "target": "493", "attributes": { "weight": 2 } }, { "key": "10464", "source": "225", "target": "595", "attributes": { "weight": 2 } }, { "key": "10462", "source": "225", "target": "138", "attributes": { "weight": 1 } }, { "key": "10465", "source": "225", "target": "1131", "attributes": { "weight": 1 } }, { "key": "10466", "source": "225", "target": "1711", "attributes": { "weight": 1 } }, { "key": "10461", "source": "225", "target": "1560", "attributes": { "weight": 1 } }, { "key": "3102", "source": "225", "target": "894", "attributes": { "weight": 3 } }, { "key": "10418", "source": "225", "target": "50", "attributes": { "weight": 1 } }, { "key": "10425", "source": "225", "target": "1706", "attributes": { "weight": 1 } }, { "key": "10453", "source": "225", "target": "1125", "attributes": { "weight": 1 } }, { "key": "31854", "source": "225", "target": "1060", "attributes": { "weight": 1 } }, { "key": "10458", "source": "225", "target": "1559", "attributes": { "weight": 1 } }, { "key": "10433", "source": "225", "target": "52", "attributes": { "weight": 1 } }, { "key": "10443", "source": "225", "target": "471", "attributes": { "weight": 2 } }, { "key": "10446", "source": "225", "target": "473", "attributes": { "weight": 2 } }, { "key": "10422", "source": "225", "target": "38", "attributes": { "weight": 1 } }, { "key": "10435", "source": "225", "target": "359", "attributes": { "weight": 3 } }, { "key": "519", "source": "225", "target": "130", "attributes": { "weight": 4 } }, { "key": "17349", "source": "225", "target": "358", "attributes": { "weight": 1 } }, { "key": "527", "source": "225", "target": "232", "attributes": { "weight": 1 } }, { "key": "10413", "source": "225", "target": "59", "attributes": { "weight": 1 } }, { "key": "10429", "source": "225", "target": "134", "attributes": { "weight": 1 } }, { "key": "10423", "source": "225", "target": "39", "attributes": { "weight": 1 } }, { "key": "10474", "source": "225", "target": "154", "attributes": { "weight": 1 } }, { "key": "521", "source": "225", "target": "222", "attributes": { "weight": 2 } }, { "key": "10421", "source": "225", "target": "132", "attributes": { "weight": 1 } }, { "key": "10468", "source": "225", "target": "492", "attributes": { "weight": 1 } }, { "key": "523", "source": "225", "target": "226", "attributes": { "weight": 1 } }, { "key": "10473", "source": "225", "target": "1375", "attributes": { "weight": 2 } }, { "key": "10426", "source": "225", "target": "452", "attributes": { "weight": 2 } }, { "key": "525", "source": "225", "target": "228", "attributes": { "weight": 3 } }, { "key": "10475", "source": "225", "target": "57", "attributes": { "weight": 1 } }, { "key": "10441", "source": "225", "target": "470", "attributes": { "weight": 2 } }, { "key": "522", "source": "225", "target": "223", "attributes": { "weight": 3 } }, { "key": "10459", "source": "225", "target": "1710", "attributes": { "weight": 1 } }, { "key": "10445", "source": "225", "target": "189", "attributes": { "weight": 1 } }, { "key": "10417", "source": "225", "target": "36", "attributes": { "weight": 1 } }, { "key": "19812", "source": "226", "target": "441", "attributes": { "weight": 1 } }, { "key": "35897", "source": "226", "target": "1026", "attributes": { "weight": 1 } }, { "key": "19813", "source": "226", "target": "2189", "attributes": { "weight": 1 } }, { "key": "530", "source": "226", "target": "225", "attributes": { "weight": 1 } }, { "key": "19811", "source": "226", "target": "1756", "attributes": { "weight": 1 } }, { "key": "20013", "source": "227", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20011", "source": "227", "target": "130", "attributes": { "weight": 3 } }, { "key": "20014", "source": "227", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20022", "source": "227", "target": "480", "attributes": { "weight": 1 } }, { "key": "20015", "source": "227", "target": "1531", "attributes": { "weight": 1 } }, { "key": "20012", "source": "227", "target": "221", "attributes": { "weight": 1 } }, { "key": "10487", "source": "227", "target": "1125", "attributes": { "weight": 1 } }, { "key": "10486", "source": "227", "target": "225", "attributes": { "weight": 1 } }, { "key": "20020", "source": "227", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20023", "source": "227", "target": "489", "attributes": { "weight": 1 } }, { "key": "20016", "source": "227", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20017", "source": "227", "target": "2249", "attributes": { "weight": 1 } }, { "key": "20019", "source": "227", "target": "1087", "attributes": { "weight": 1 } }, { "key": "20018", "source": "227", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20021", "source": "227", "target": "1088", "attributes": { "weight": 1 } }, { "key": "531", "source": "227", "target": "229", "attributes": { "weight": 1 } }, { "key": "26621", "source": "228", "target": "189", "attributes": { "weight": 1 } }, { "key": "24102", "source": "228", "target": "429", "attributes": { "weight": 2 } }, { "key": "9298", "source": "228", "target": "1576", "attributes": { "weight": 1 } }, { "key": "32169", "source": "228", "target": "3087", "attributes": { "weight": 1 } }, { "key": "4166", "source": "228", "target": "1130", "attributes": { "weight": 1 } }, { "key": "8859", "source": "228", "target": "474", "attributes": { "weight": 2 } }, { "key": "32773", "source": "228", "target": "458", "attributes": { "weight": 1 } }, { "key": "10509", "source": "228", "target": "482", "attributes": { "weight": 3 } }, { "key": "4161", "source": "228", "target": "473", "attributes": { "weight": 3 } }, { "key": "32140", "source": "228", "target": "1123", "attributes": { "weight": 1 } }, { "key": "4148", "source": "228", "target": "222", "attributes": { "weight": 2 } }, { "key": "33541", "source": "228", "target": "450", "attributes": { "weight": 1 } }, { "key": "33543", "source": "228", "target": "489", "attributes": { "weight": 1 } }, { "key": "24106", "source": "228", "target": "1374", "attributes": { "weight": 3 } }, { "key": "9302", "source": "228", "target": "1597", "attributes": { "weight": 1 } }, { "key": "8853", "source": "228", "target": "1107", "attributes": { "weight": 4 } }, { "key": "4159", "source": "228", "target": "229", "attributes": { "weight": 1 } }, { "key": "33540", "source": "228", "target": "1703", "attributes": { "weight": 1 } }, { "key": "9294", "source": "228", "target": "1571", "attributes": { "weight": 1 } }, { "key": "8854", "source": "228", "target": "220", "attributes": { "weight": 2 } }, { "key": "9971", "source": "228", "target": "445", "attributes": { "weight": 2 } }, { "key": "32774", "source": "228", "target": "1744", "attributes": { "weight": 2 } }, { "key": "8858", "source": "228", "target": "1367", "attributes": { "weight": 2 } }, { "key": "17486", "source": "228", "target": "358", "attributes": { "weight": 1 } }, { "key": "8856", "source": "228", "target": "436", "attributes": { "weight": 3 } }, { "key": "24105", "source": "228", "target": "231", "attributes": { "weight": 2 } }, { "key": "8861", "source": "228", "target": "233", "attributes": { "weight": 3 } }, { "key": "4156", "source": "228", "target": "1118", "attributes": { "weight": 2 } }, { "key": "4149", "source": "228", "target": "50", "attributes": { "weight": 2 } }, { "key": "4147", "source": "228", "target": "1110", "attributes": { "weight": 1 } }, { "key": "17262", "source": "228", "target": "449", "attributes": { "weight": 1 } }, { "key": "1503", "source": "228", "target": "183", "attributes": { "weight": 1 } }, { "key": "4151", "source": "228", "target": "1112", "attributes": { "weight": 1 } }, { "key": "4165", "source": "228", "target": "1128", "attributes": { "weight": 1 } }, { "key": "8857", "source": "228", "target": "442", "attributes": { "weight": 2 } }, { "key": "4160", "source": "228", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9297", "source": "228", "target": "1574", "attributes": { "weight": 1 } }, { "key": "33544", "source": "228", "target": "672", "attributes": { "weight": 1 } }, { "key": "32775", "source": "228", "target": "1708", "attributes": { "weight": 1 } }, { "key": "27276", "source": "228", "target": "57", "attributes": { "weight": 1 } }, { "key": "4164", "source": "228", "target": "479", "attributes": { "weight": 2 } }, { "key": "4168", "source": "228", "target": "494", "attributes": { "weight": 3 } }, { "key": "9296", "source": "228", "target": "1573", "attributes": { "weight": 1 } }, { "key": "4146", "source": "228", "target": "1109", "attributes": { "weight": 2 } }, { "key": "4157", "source": "228", "target": "1121", "attributes": { "weight": 1 } }, { "key": "4163", "source": "228", "target": "1127", "attributes": { "weight": 2 } }, { "key": "32917", "source": "228", "target": "470", "attributes": { "weight": 2 } }, { "key": "5496", "source": "228", "target": "468", "attributes": { "weight": 2 } }, { "key": "4155", "source": "228", "target": "1116", "attributes": { "weight": 2 } }, { "key": "4152", "source": "228", "target": "1113", "attributes": { "weight": 1 } }, { "key": "13844", "source": "228", "target": "1546", "attributes": { "weight": 1 } }, { "key": "8855", "source": "228", "target": "435", "attributes": { "weight": 2 } }, { "key": "8860", "source": "228", "target": "1125", "attributes": { "weight": 1 } }, { "key": "12400", "source": "228", "target": "1845", "attributes": { "weight": 3 } }, { "key": "4006", "source": "228", "target": "432", "attributes": { "weight": 3 } }, { "key": "24104", "source": "228", "target": "471", "attributes": { "weight": 2 } }, { "key": "32969", "source": "228", "target": "154", "attributes": { "weight": 1 } }, { "key": "4154", "source": "228", "target": "452", "attributes": { "weight": 4 } }, { "key": "37070", "source": "228", "target": "857", "attributes": { "weight": 1 } }, { "key": "8862", "source": "228", "target": "495", "attributes": { "weight": 2 } }, { "key": "12399", "source": "228", "target": "1355", "attributes": { "weight": 2 } }, { "key": "9295", "source": "228", "target": "430", "attributes": { "weight": 2 } }, { "key": "12401", "source": "228", "target": "493", "attributes": { "weight": 3 } }, { "key": "9301", "source": "228", "target": "1593", "attributes": { "weight": 2 } }, { "key": "4150", "source": "228", "target": "223", "attributes": { "weight": 4 } }, { "key": "9299", "source": "228", "target": "1579", "attributes": { "weight": 2 } }, { "key": "32560", "source": "228", "target": "791", "attributes": { "weight": 1 } }, { "key": "9300", "source": "228", "target": "1592", "attributes": { "weight": 2 } }, { "key": "17940", "source": "228", "target": "454", "attributes": { "weight": 2 } }, { "key": "4162", "source": "228", "target": "1088", "attributes": { "weight": 2 } }, { "key": "29131", "source": "228", "target": "488", "attributes": { "weight": 1 } }, { "key": "24103", "source": "228", "target": "130", "attributes": { "weight": 3 } }, { "key": "4153", "source": "228", "target": "1115", "attributes": { "weight": 1 } }, { "key": "33542", "source": "228", "target": "135", "attributes": { "weight": 1 } }, { "key": "534", "source": "228", "target": "225", "attributes": { "weight": 3 } }, { "key": "4167", "source": "228", "target": "1131", "attributes": { "weight": 1 } }, { "key": "20525", "source": "229", "target": "2253", "attributes": { "weight": 1 } }, { "key": "33566", "source": "229", "target": "135", "attributes": { "weight": 1 } }, { "key": "35310", "source": "229", "target": "1107", "attributes": { "weight": 1 } }, { "key": "536", "source": "229", "target": "227", "attributes": { "weight": 1 } }, { "key": "20526", "source": "229", "target": "1247", "attributes": { "weight": 1 } }, { "key": "8890", "source": "229", "target": "452", "attributes": { "weight": 2 } }, { "key": "8891", "source": "229", "target": "1125", "attributes": { "weight": 1 } }, { "key": "33567", "source": "229", "target": "2258", "attributes": { "weight": 1 } }, { "key": "535", "source": "229", "target": "225", "attributes": { "weight": 1 } }, { "key": "26630", "source": "229", "target": "454", "attributes": { "weight": 1 } }, { "key": "1508", "source": "229", "target": "183", "attributes": { "weight": 1 } }, { "key": "33565", "source": "229", "target": "425", "attributes": { "weight": 1 } }, { "key": "537", "source": "229", "target": "230", "attributes": { "weight": 1 } }, { "key": "8889", "source": "229", "target": "442", "attributes": { "weight": 2 } }, { "key": "23639", "source": "229", "target": "1312", "attributes": { "weight": 1 } }, { "key": "4173", "source": "229", "target": "1131", "attributes": { "weight": 2 } }, { "key": "4171", "source": "229", "target": "228", "attributes": { "weight": 1 } }, { "key": "4172", "source": "229", "target": "1088", "attributes": { "weight": 2 } }, { "key": "20524", "source": "229", "target": "2245", "attributes": { "weight": 1 } }, { "key": "4170", "source": "229", "target": "1121", "attributes": { "weight": 1 } }, { "key": "538", "source": "230", "target": "220", "attributes": { "weight": 2 } }, { "key": "20566", "source": "230", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20567", "source": "230", "target": "2245", "attributes": { "weight": 1 } }, { "key": "542", "source": "230", "target": "229", "attributes": { "weight": 1 } }, { "key": "543", "source": "230", "target": "231", "attributes": { "weight": 1 } }, { "key": "20569", "source": "230", "target": "1087", "attributes": { "weight": 1 } }, { "key": "20568", "source": "230", "target": "2253", "attributes": { "weight": 1 } }, { "key": "10520", "source": "230", "target": "225", "attributes": { "weight": 1 } }, { "key": "10521", "source": "230", "target": "454", "attributes": { "weight": 1 } }, { "key": "541", "source": "230", "target": "224", "attributes": { "weight": 2 } }, { "key": "540", "source": "230", "target": "223", "attributes": { "weight": 2 } }, { "key": "539", "source": "230", "target": "130", "attributes": { "weight": 4 } }, { "key": "35213", "source": "231", "target": "2278", "attributes": { "weight": 1 } }, { "key": "20750", "source": "231", "target": "435", "attributes": { "weight": 5 } }, { "key": "32829", "source": "231", "target": "1831", "attributes": { "weight": 2 } }, { "key": "7004", "source": "231", "target": "192", "attributes": { "weight": 2 } }, { "key": "20764", "source": "231", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20768", "source": "231", "target": "2254", "attributes": { "weight": 1 } }, { "key": "20778", "source": "231", "target": "2269", "attributes": { "weight": 1 } }, { "key": "6991", "source": "231", "target": "454", "attributes": { "weight": 4 } }, { "key": "12029", "source": "231", "target": "468", "attributes": { "weight": 2 } }, { "key": "20748", "source": "231", "target": "1808", "attributes": { "weight": 1 } }, { "key": "27162", "source": "231", "target": "1282", "attributes": { "weight": 4 } }, { "key": "31548", "source": "231", "target": "3058", "attributes": { "weight": 1 } }, { "key": "20753", "source": "231", "target": "2106", "attributes": { "weight": 2 } }, { "key": "27161", "source": "231", "target": "1219", "attributes": { "weight": 4 } }, { "key": "23650", "source": "231", "target": "1312", "attributes": { "weight": 1 } }, { "key": "33631", "source": "231", "target": "473", "attributes": { "weight": 1 } }, { "key": "24208", "source": "231", "target": "228", "attributes": { "weight": 2 } }, { "key": "7002", "source": "231", "target": "1372", "attributes": { "weight": 1 } }, { "key": "20781", "source": "231", "target": "2271", "attributes": { "weight": 1 } }, { "key": "37019", "source": "231", "target": "3341", "attributes": { "weight": 1 } }, { "key": "27160", "source": "231", "target": "2105", "attributes": { "weight": 1 } }, { "key": "6997", "source": "231", "target": "1365", "attributes": { "weight": 2 } }, { "key": "7006", "source": "231", "target": "1375", "attributes": { "weight": 5 } }, { "key": "16977", "source": "231", "target": "434", "attributes": { "weight": 1 } }, { "key": "32830", "source": "231", "target": "2258", "attributes": { "weight": 3 } }, { "key": "16976", "source": "231", "target": "59", "attributes": { "weight": 2 } }, { "key": "6994", "source": "231", "target": "1361", "attributes": { "weight": 2 } }, { "key": "6992", "source": "231", "target": "187", "attributes": { "weight": 2 } }, { "key": "6996", "source": "231", "target": "467", "attributes": { "weight": 2 } }, { "key": "18327", "source": "231", "target": "1092", "attributes": { "weight": 1 } }, { "key": "28948", "source": "231", "target": "479", "attributes": { "weight": 2 } }, { "key": "27159", "source": "231", "target": "2645", "attributes": { "weight": 2 } }, { "key": "20755", "source": "231", "target": "223", "attributes": { "weight": 4 } }, { "key": "20760", "source": "231", "target": "450", "attributes": { "weight": 4 } }, { "key": "27289", "source": "231", "target": "52", "attributes": { "weight": 2 } }, { "key": "23649", "source": "231", "target": "220", "attributes": { "weight": 3 } }, { "key": "12303", "source": "231", "target": "1535", "attributes": { "weight": 3 } }, { "key": "20775", "source": "231", "target": "2262", "attributes": { "weight": 1 } }, { "key": "6989", "source": "231", "target": "453", "attributes": { "weight": 2 } }, { "key": "544", "source": "231", "target": "230", "attributes": { "weight": 1 } }, { "key": "6987", "source": "231", "target": "451", "attributes": { "weight": 1 } }, { "key": "20757", "source": "231", "target": "1023", "attributes": { "weight": 1 } }, { "key": "7007", "source": "231", "target": "499", "attributes": { "weight": 1 } }, { "key": "24209", "source": "231", "target": "2470", "attributes": { "weight": 2 } }, { "key": "7005", "source": "231", "target": "495", "attributes": { "weight": 3 } }, { "key": "20771", "source": "231", "target": "1836", "attributes": { "weight": 2 } }, { "key": "24205", "source": "231", "target": "3", "attributes": { "weight": 2 } }, { "key": "20767", "source": "231", "target": "2253", "attributes": { "weight": 1 } }, { "key": "6985", "source": "231", "target": "674", "attributes": { "weight": 3 } }, { "key": "31354", "source": "231", "target": "1118", "attributes": { "weight": 1 } }, { "key": "20749", "source": "231", "target": "221", "attributes": { "weight": 1 } }, { "key": "20758", "source": "231", "target": "2244", "attributes": { "weight": 1 } }, { "key": "23366", "source": "231", "target": "1545", "attributes": { "weight": 1 } }, { "key": "17299", "source": "231", "target": "1161", "attributes": { "weight": 1 } }, { "key": "16979", "source": "231", "target": "135", "attributes": { "weight": 6 } }, { "key": "6998", "source": "231", "target": "1366", "attributes": { "weight": 2 } }, { "key": "7000", "source": "231", "target": "476", "attributes": { "weight": 2 } }, { "key": "6999", "source": "231", "target": "189", "attributes": { "weight": 4 } }, { "key": "20759", "source": "231", "target": "2245", "attributes": { "weight": 1 } }, { "key": "6981", "source": "231", "target": "1354", "attributes": { "weight": 3 } }, { "key": "20784", "source": "231", "target": "2276", "attributes": { "weight": 1 } }, { "key": "31549", "source": "231", "target": "3059", "attributes": { "weight": 1 } }, { "key": "26369", "source": "231", "target": "1258", "attributes": { "weight": 1 } }, { "key": "20782", "source": "231", "target": "2111", "attributes": { "weight": 1 } }, { "key": "20765", "source": "231", "target": "2252", "attributes": { "weight": 2 } }, { "key": "1532", "source": "231", "target": "448", "attributes": { "weight": 3 } }, { "key": "9354", "source": "231", "target": "430", "attributes": { "weight": 1 } }, { "key": "20780", "source": "231", "target": "2109", "attributes": { "weight": 2 } }, { "key": "11252", "source": "231", "target": "471", "attributes": { "weight": 4 } }, { "key": "32828", "source": "231", "target": "446", "attributes": { "weight": 1 } }, { "key": "20762", "source": "231", "target": "1832", "attributes": { "weight": 5 } }, { "key": "1534", "source": "231", "target": "455", "attributes": { "weight": 4 } }, { "key": "12304", "source": "231", "target": "1564", "attributes": { "weight": 1 } }, { "key": "20779", "source": "231", "target": "2095", "attributes": { "weight": 1 } }, { "key": "16975", "source": "231", "target": "1754", "attributes": { "weight": 1 } }, { "key": "12028", "source": "231", "target": "1363", "attributes": { "weight": 2 } }, { "key": "6993", "source": "231", "target": "459", "attributes": { "weight": 2 } }, { "key": "24206", "source": "231", "target": "1810", "attributes": { "weight": 3 } }, { "key": "6988", "source": "231", "target": "185", "attributes": { "weight": 2 } }, { "key": "6986", "source": "231", "target": "182", "attributes": { "weight": 1 } }, { "key": "24204", "source": "231", "target": "50", "attributes": { "weight": 3 } }, { "key": "20777", "source": "231", "target": "2267", "attributes": { "weight": 1 } }, { "key": "1537", "source": "231", "target": "193", "attributes": { "weight": 2 } }, { "key": "6980", "source": "231", "target": "429", "attributes": { "weight": 4 } }, { "key": "11251", "source": "231", "target": "130", "attributes": { "weight": 6 } }, { "key": "20763", "source": "231", "target": "186", "attributes": { "weight": 2 } }, { "key": "24207", "source": "231", "target": "2467", "attributes": { "weight": 1 } }, { "key": "20756", "source": "231", "target": "2025", "attributes": { "weight": 1 } }, { "key": "6983", "source": "231", "target": "438", "attributes": { "weight": 3 } }, { "key": "20769", "source": "231", "target": "1247", "attributes": { "weight": 4 } }, { "key": "15350", "source": "231", "target": "472", "attributes": { "weight": 8 } }, { "key": "7001", "source": "231", "target": "1369", "attributes": { "weight": 2 } }, { "key": "20773", "source": "231", "target": "2260", "attributes": { "weight": 1 } }, { "key": "6982", "source": "231", "target": "437", "attributes": { "weight": 4 } }, { "key": "24210", "source": "231", "target": "233", "attributes": { "weight": 2 } }, { "key": "20754", "source": "231", "target": "51", "attributes": { "weight": 4 } }, { "key": "20766", "source": "231", "target": "1998", "attributes": { "weight": 1 } }, { "key": "35331", "source": "231", "target": "1088", "attributes": { "weight": 1 } }, { "key": "23367", "source": "231", "target": "2444", "attributes": { "weight": 1 } }, { "key": "6990", "source": "231", "target": "1356", "attributes": { "weight": 1 } }, { "key": "20752", "source": "231", "target": "222", "attributes": { "weight": 1 } }, { "key": "16981", "source": "231", "target": "73", "attributes": { "weight": 1 } }, { "key": "32094", "source": "231", "target": "3084", "attributes": { "weight": 1 } }, { "key": "6995", "source": "231", "target": "1364", "attributes": { "weight": 1 } }, { "key": "16980", "source": "231", "target": "70", "attributes": { "weight": 2 } }, { "key": "15351", "source": "231", "target": "672", "attributes": { "weight": 2 } }, { "key": "7003", "source": "231", "target": "1374", "attributes": { "weight": 4 } }, { "key": "17301", "source": "231", "target": "2108", "attributes": { "weight": 2 } }, { "key": "31550", "source": "231", "target": "485", "attributes": { "weight": 1 } }, { "key": "17300", "source": "231", "target": "449", "attributes": { "weight": 2 } }, { "key": "20770", "source": "231", "target": "2255", "attributes": { "weight": 1 } }, { "key": "6984", "source": "231", "target": "425", "attributes": { "weight": 3 } }, { "key": "1536", "source": "231", "target": "490", "attributes": { "weight": 4 } }, { "key": "7008", "source": "231", "target": "57", "attributes": { "weight": 2 } }, { "key": "20761", "source": "231", "target": "2248", "attributes": { "weight": 2 } }, { "key": "1535", "source": "231", "target": "188", "attributes": { "weight": 4 } }, { "key": "1533", "source": "231", "target": "183", "attributes": { "weight": 5 } }, { "key": "20751", "source": "231", "target": "1522", "attributes": { "weight": 1 } }, { "key": "16978", "source": "231", "target": "457", "attributes": { "weight": 1 } }, { "key": "20776", "source": "231", "target": "1744", "attributes": { "weight": 1 } }, { "key": "1531", "source": "231", "target": "224", "attributes": { "weight": 5 } }, { "key": "20783", "source": "231", "target": "489", "attributes": { "weight": 3 } }, { "key": "9019", "source": "231", "target": "1125", "attributes": { "weight": 4 } }, { "key": "20772", "source": "231", "target": "1087", "attributes": { "weight": 3 } }, { "key": "33632", "source": "231", "target": "2110", "attributes": { "weight": 1 } }, { "key": "20774", "source": "231", "target": "2261", "attributes": { "weight": 1 } }, { "key": "32593", "source": "232", "target": "223", "attributes": { "weight": 1 } }, { "key": "29484", "source": "232", "target": "2287", "attributes": { "weight": 1 } }, { "key": "29493", "source": "232", "target": "2864", "attributes": { "weight": 2 } }, { "key": "29455", "source": "232", "target": "424", "attributes": { "weight": 3 } }, { "key": "29476", "source": "232", "target": "2211", "attributes": { "weight": 2 } }, { "key": "29511", "source": "232", "target": "495", "attributes": { "weight": 2 } }, { "key": "29478", "source": "232", "target": "452", "attributes": { "weight": 1 } }, { "key": "29452", "source": "232", "target": "59", "attributes": { "weight": 1 } }, { "key": "29500", "source": "232", "target": "1026", "attributes": { "weight": 1 } }, { "key": "37121", "source": "232", "target": "359", "attributes": { "weight": 1 } }, { "key": "29480", "source": "232", "target": "789", "attributes": { "weight": 1 } }, { "key": "24762", "source": "232", "target": "1056", "attributes": { "weight": 4 } }, { "key": "29453", "source": "232", "target": "2856", "attributes": { "weight": 2 } }, { "key": "29459", "source": "232", "target": "221", "attributes": { "weight": 1 } }, { "key": "25952", "source": "232", "target": "1367", "attributes": { "weight": 2 } }, { "key": "29468", "source": "232", "target": "2858", "attributes": { "weight": 1 } }, { "key": "29474", "source": "232", "target": "2860", "attributes": { "weight": 1 } }, { "key": "29497", "source": "232", "target": "2867", "attributes": { "weight": 1 } }, { "key": "29505", "source": "232", "target": "673", "attributes": { "weight": 2 } }, { "key": "29908", "source": "232", "target": "1024", "attributes": { "weight": 2 } }, { "key": "29451", "source": "232", "target": "787", "attributes": { "weight": 1 } }, { "key": "7027", "source": "232", "target": "183", "attributes": { "weight": 3 } }, { "key": "12723", "source": "232", "target": "695", "attributes": { "weight": 1 } }, { "key": "29481", "source": "232", "target": "864", "attributes": { "weight": 1 } }, { "key": "37123", "source": "232", "target": "1060", "attributes": { "weight": 1 } }, { "key": "7030", "source": "232", "target": "672", "attributes": { "weight": 2 } }, { "key": "23685", "source": "232", "target": "220", "attributes": { "weight": 3 } }, { "key": "25387", "source": "232", "target": "433", "attributes": { "weight": 2 } }, { "key": "23686", "source": "232", "target": "2248", "attributes": { "weight": 1 } }, { "key": "29501", "source": "232", "target": "427", "attributes": { "weight": 1 } }, { "key": "29491", "source": "232", "target": "471", "attributes": { "weight": 1 } }, { "key": "29507", "source": "232", "target": "340", "attributes": { "weight": 2 } }, { "key": "29460", "source": "232", "target": "858", "attributes": { "weight": 2 } }, { "key": "29496", "source": "232", "target": "2866", "attributes": { "weight": 1 } }, { "key": "24697", "source": "232", "target": "5", "attributes": { "weight": 2 } }, { "key": "29492", "source": "232", "target": "867", "attributes": { "weight": 1 } }, { "key": "29512", "source": "232", "target": "57", "attributes": { "weight": 1 } }, { "key": "29475", "source": "232", "target": "862", "attributes": { "weight": 2 } }, { "key": "32595", "source": "232", "target": "3101", "attributes": { "weight": 1 } }, { "key": "23687", "source": "232", "target": "1312", "attributes": { "weight": 1 } }, { "key": "29502", "source": "232", "target": "486", "attributes": { "weight": 2 } }, { "key": "29490", "source": "232", "target": "2647", "attributes": { "weight": 1 } }, { "key": "29483", "source": "232", "target": "866", "attributes": { "weight": 2 } }, { "key": "29499", "source": "232", "target": "1125", "attributes": { "weight": 2 } }, { "key": "29470", "source": "232", "target": "2122", "attributes": { "weight": 1 } }, { "key": "1562", "source": "232", "target": "193", "attributes": { "weight": 1 } }, { "key": "29489", "source": "232", "target": "2863", "attributes": { "weight": 2 } }, { "key": "29486", "source": "232", "target": "790", "attributes": { "weight": 2 } }, { "key": "1559", "source": "232", "target": "455", "attributes": { "weight": 1 } }, { "key": "29464", "source": "232", "target": "2245", "attributes": { "weight": 1 } }, { "key": "29482", "source": "232", "target": "865", "attributes": { "weight": 1 } }, { "key": "29473", "source": "232", "target": "2859", "attributes": { "weight": 1 } }, { "key": "7029", "source": "232", "target": "476", "attributes": { "weight": 2 } }, { "key": "29458", "source": "232", "target": "1520", "attributes": { "weight": 1 } }, { "key": "29509", "source": "232", "target": "2868", "attributes": { "weight": 2 } }, { "key": "29508", "source": "232", "target": "869", "attributes": { "weight": 2 } }, { "key": "32596", "source": "232", "target": "135", "attributes": { "weight": 1 } }, { "key": "29465", "source": "232", "target": "859", "attributes": { "weight": 2 } }, { "key": "29469", "source": "232", "target": "1046", "attributes": { "weight": 1 } }, { "key": "36094", "source": "232", "target": "440", "attributes": { "weight": 1 } }, { "key": "545", "source": "232", "target": "225", "attributes": { "weight": 1 } }, { "key": "29504", "source": "232", "target": "489", "attributes": { "weight": 1 } }, { "key": "29477", "source": "232", "target": "863", "attributes": { "weight": 2 } }, { "key": "29495", "source": "232", "target": "2865", "attributes": { "weight": 1 } }, { "key": "29488", "source": "232", "target": "682", "attributes": { "weight": 1 } }, { "key": "32598", "source": "232", "target": "3022", "attributes": { "weight": 1 } }, { "key": "29485", "source": "232", "target": "2861", "attributes": { "weight": 2 } }, { "key": "29456", "source": "232", "target": "2857", "attributes": { "weight": 1 } }, { "key": "22309", "source": "232", "target": "794", "attributes": { "weight": 1 } }, { "key": "29479", "source": "232", "target": "454", "attributes": { "weight": 2 } }, { "key": "29462", "source": "232", "target": "425", "attributes": { "weight": 1 } }, { "key": "29457", "source": "232", "target": "130", "attributes": { "weight": 1 } }, { "key": "29487", "source": "232", "target": "2862", "attributes": { "weight": 1 } }, { "key": "7028", "source": "232", "target": "189", "attributes": { "weight": 3 } }, { "key": "32592", "source": "232", "target": "1", "attributes": { "weight": 1 } }, { "key": "29449", "source": "232", "target": "856", "attributes": { "weight": 2 } }, { "key": "29503", "source": "232", "target": "428", "attributes": { "weight": 1 } }, { "key": "29450", "source": "232", "target": "857", "attributes": { "weight": 3 } }, { "key": "37122", "source": "232", "target": "2115", "attributes": { "weight": 1 } }, { "key": "32594", "source": "232", "target": "442", "attributes": { "weight": 1 } }, { "key": "29498", "source": "232", "target": "2505", "attributes": { "weight": 1 } }, { "key": "1560", "source": "232", "target": "188", "attributes": { "weight": 1 } }, { "key": "29461", "source": "232", "target": "222", "attributes": { "weight": 1 } }, { "key": "29454", "source": "232", "target": "432", "attributes": { "weight": 1 } }, { "key": "29463", "source": "232", "target": "674", "attributes": { "weight": 1 } }, { "key": "29467", "source": "232", "target": "3", "attributes": { "weight": 1 } }, { "key": "29494", "source": "232", "target": "1087", "attributes": { "weight": 1 } }, { "key": "29471", "source": "232", "target": "1531", "attributes": { "weight": 1 } }, { "key": "2811", "source": "232", "target": "9", "attributes": { "weight": 1 } }, { "key": "29472", "source": "232", "target": "861", "attributes": { "weight": 2 } }, { "key": "1561", "source": "232", "target": "490", "attributes": { "weight": 3 } }, { "key": "21600", "source": "232", "target": "358", "attributes": { "weight": 2 } }, { "key": "1558", "source": "232", "target": "448", "attributes": { "weight": 2 } }, { "key": "29506", "source": "232", "target": "1093", "attributes": { "weight": 1 } }, { "key": "32597", "source": "232", "target": "473", "attributes": { "weight": 1 } }, { "key": "29466", "source": "232", "target": "860", "attributes": { "weight": 1 } }, { "key": "29510", "source": "232", "target": "2869", "attributes": { "weight": 2 } }, { "key": "1557", "source": "232", "target": "224", "attributes": { "weight": 3 } }, { "key": "32148", "source": "233", "target": "3086", "attributes": { "weight": 1 } }, { "key": "31558", "source": "233", "target": "51", "attributes": { "weight": 2 } }, { "key": "9104", "source": "233", "target": "1107", "attributes": { "weight": 3 } }, { "key": "12535", "source": "233", "target": "438", "attributes": { "weight": 1 } }, { "key": "9114", "source": "233", "target": "1131", "attributes": { "weight": 1 } }, { "key": "9111", "source": "233", "target": "1125", "attributes": { "weight": 2 } }, { "key": "24253", "source": "233", "target": "231", "attributes": { "weight": 2 } }, { "key": "9115", "source": "233", "target": "494", "attributes": { "weight": 2 } }, { "key": "18120", "source": "233", "target": "52", "attributes": { "weight": 2 } }, { "key": "32984", "source": "233", "target": "154", "attributes": { "weight": 1 } }, { "key": "27182", "source": "233", "target": "472", "attributes": { "weight": 1 } }, { "key": "17979", "source": "233", "target": "454", "attributes": { "weight": 2 } }, { "key": "9105", "source": "233", "target": "220", "attributes": { "weight": 2 } }, { "key": "9110", "source": "233", "target": "1367", "attributes": { "weight": 1 } }, { "key": "4230", "source": "233", "target": "474", "attributes": { "weight": 2 } }, { "key": "4228", "source": "233", "target": "1121", "attributes": { "weight": 2 } }, { "key": "1631", "source": "233", "target": "188", "attributes": { "weight": 2 } }, { "key": "32183", "source": "233", "target": "473", "attributes": { "weight": 1 } }, { "key": "4231", "source": "233", "target": "1088", "attributes": { "weight": 2 } }, { "key": "9107", "source": "233", "target": "442", "attributes": { "weight": 4 } }, { "key": "9112", "source": "233", "target": "482", "attributes": { "weight": 3 } }, { "key": "9368", "source": "233", "target": "430", "attributes": { "weight": 2 } }, { "key": "9369", "source": "233", "target": "1592", "attributes": { "weight": 2 } }, { "key": "33725", "source": "233", "target": "425", "attributes": { "weight": 1 } }, { "key": "546", "source": "233", "target": "225", "attributes": { "weight": 3 } }, { "key": "9106", "source": "233", "target": "432", "attributes": { "weight": 1 } }, { "key": "4232", "source": "233", "target": "1130", "attributes": { "weight": 1 } }, { "key": "4229", "source": "233", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9109", "source": "233", "target": "228", "attributes": { "weight": 3 } }, { "key": "31432", "source": "233", "target": "223", "attributes": { "weight": 2 } }, { "key": "33724", "source": "233", "target": "436", "attributes": { "weight": 2 } }, { "key": "24250", "source": "233", "target": "429", "attributes": { "weight": 2 } }, { "key": "9113", "source": "233", "target": "1374", "attributes": { "weight": 2 } }, { "key": "33077", "source": "233", "target": "493", "attributes": { "weight": 1 } }, { "key": "9108", "source": "233", "target": "452", "attributes": { "weight": 3 } }, { "key": "32936", "source": "233", "target": "470", "attributes": { "weight": 1 } }, { "key": "32613", "source": "233", "target": "791", "attributes": { "weight": 1 } }, { "key": "24252", "source": "233", "target": "471", "attributes": { "weight": 1 } }, { "key": "24251", "source": "233", "target": "130", "attributes": { "weight": 2 } }, { "key": "17319", "source": "233", "target": "449", "attributes": { "weight": 1 } }, { "key": "33726", "source": "233", "target": "135", "attributes": { "weight": 1 } }, { "key": "31559", "source": "233", "target": "3057", "attributes": { "weight": 1 } }, { "key": "6454", "source": "233", "target": "468", "attributes": { "weight": 2 } }, { "key": "32182", "source": "233", "target": "1115", "attributes": { "weight": 1 } }, { "key": "31560", "source": "233", "target": "3061", "attributes": { "weight": 1 } }, { "key": "26765", "source": "233", "target": "189", "attributes": { "weight": 1 } }, { "key": "21233", "source": "234", "target": "1023", "attributes": { "weight": 1 } }, { "key": "32938", "source": "234", "target": "470", "attributes": { "weight": 1 } }, { "key": "547", "source": "234", "target": "220", "attributes": { "weight": 2 } }, { "key": "548", "source": "234", "target": "130", "attributes": { "weight": 4 } }, { "key": "550", "source": "234", "target": "135", "attributes": { "weight": 1 } }, { "key": "21235", "source": "234", "target": "1087", "attributes": { "weight": 1 } }, { "key": "549", "source": "234", "target": "223", "attributes": { "weight": 2 } }, { "key": "10572", "source": "234", "target": "468", "attributes": { "weight": 1 } }, { "key": "10573", "source": "234", "target": "471", "attributes": { "weight": 3 } }, { "key": "21234", "source": "234", "target": "2245", "attributes": { "weight": 1 } }, { "key": "10574", "source": "234", "target": "1125", "attributes": { "weight": 1 } }, { "key": "10571", "source": "234", "target": "225", "attributes": { "weight": 1 } }, { "key": "21284", "source": "235", "target": "1522", "attributes": { "weight": 1 } }, { "key": "21308", "source": "235", "target": "1375", "attributes": { "weight": 1 } }, { "key": "21302", "source": "235", "target": "2262", "attributes": { "weight": 1 } }, { "key": "21297", "source": "235", "target": "1832", "attributes": { "weight": 1 } }, { "key": "21299", "source": "235", "target": "1247", "attributes": { "weight": 1 } }, { "key": "36147", "source": "235", "target": "479", "attributes": { "weight": 1 } }, { "key": "21290", "source": "235", "target": "1023", "attributes": { "weight": 1 } }, { "key": "36149", "source": "235", "target": "1778", "attributes": { "weight": 1 } }, { "key": "21281", "source": "235", "target": "1756", "attributes": { "weight": 1 } }, { "key": "21292", "source": "235", "target": "1070", "attributes": { "weight": 1 } }, { "key": "21289", "source": "235", "target": "440", "attributes": { "weight": 1 } }, { "key": "21298", "source": "235", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21303", "source": "235", "target": "477", "attributes": { "weight": 1 } }, { "key": "21307", "source": "235", "target": "2189", "attributes": { "weight": 1 } }, { "key": "21300", "source": "235", "target": "1367", "attributes": { "weight": 1 } }, { "key": "36144", "source": "235", "target": "1760", "attributes": { "weight": 1 } }, { "key": "21288", "source": "235", "target": "223", "attributes": { "weight": 1 } }, { "key": "36941", "source": "235", "target": "2647", "attributes": { "weight": 1 } }, { "key": "21286", "source": "235", "target": "439", "attributes": { "weight": 1 } }, { "key": "21287", "source": "235", "target": "51", "attributes": { "weight": 1 } }, { "key": "551", "source": "235", "target": "225", "attributes": { "weight": 1 } }, { "key": "21294", "source": "235", "target": "445", "attributes": { "weight": 1 } }, { "key": "36146", "source": "235", "target": "1026", "attributes": { "weight": 1 } }, { "key": "21306", "source": "235", "target": "491", "attributes": { "weight": 1 } }, { "key": "36145", "source": "235", "target": "1025", "attributes": { "weight": 1 } }, { "key": "21295", "source": "235", "target": "449", "attributes": { "weight": 1 } }, { "key": "21296", "source": "235", "target": "2248", "attributes": { "weight": 1 } }, { "key": "21301", "source": "235", "target": "2261", "attributes": { "weight": 1 } }, { "key": "36148", "source": "235", "target": "428", "attributes": { "weight": 1 } }, { "key": "21280", "source": "235", "target": "429", "attributes": { "weight": 1 } }, { "key": "21282", "source": "235", "target": "130", "attributes": { "weight": 1 } }, { "key": "21293", "source": "235", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21285", "source": "235", "target": "438", "attributes": { "weight": 1 } }, { "key": "36940", "source": "235", "target": "1072", "attributes": { "weight": 1 } }, { "key": "21304", "source": "235", "target": "2095", "attributes": { "weight": 1 } }, { "key": "21291", "source": "235", "target": "441", "attributes": { "weight": 1 } }, { "key": "21305", "source": "235", "target": "489", "attributes": { "weight": 1 } }, { "key": "21283", "source": "235", "target": "49", "attributes": { "weight": 1 } }, { "key": "14013", "source": "236", "target": "1031", "attributes": { "weight": 1 } }, { "key": "4303", "source": "236", "target": "779", "attributes": { "weight": 2 } }, { "key": "2663", "source": "236", "target": "786", "attributes": { "weight": 2 } }, { "key": "25848", "source": "236", "target": "237", "attributes": { "weight": 1 } }, { "key": "33863", "source": "236", "target": "1047", "attributes": { "weight": 1 } }, { "key": "552", "source": "236", "target": "239", "attributes": { "weight": 1 } }, { "key": "18561", "source": "236", "target": "208", "attributes": { "weight": 1 } }, { "key": "11428", "source": "236", "target": "938", "attributes": { "weight": 1 } }, { "key": "33864", "source": "236", "target": "1232", "attributes": { "weight": 1 } }, { "key": "11429", "source": "236", "target": "370", "attributes": { "weight": 2 } }, { "key": "15503", "source": "236", "target": "921", "attributes": { "weight": 1 } }, { "key": "29008", "source": "236", "target": "220", "attributes": { "weight": 1 } }, { "key": "28543", "source": "236", "target": "199", "attributes": { "weight": 1 } }, { "key": "2661", "source": "236", "target": "781", "attributes": { "weight": 1 } }, { "key": "2659", "source": "236", "target": "778", "attributes": { "weight": 6 } }, { "key": "553", "source": "236", "target": "240", "attributes": { "weight": 2 } }, { "key": "2662", "source": "236", "target": "371", "attributes": { "weight": 5 } }, { "key": "18560", "source": "236", "target": "1174", "attributes": { "weight": 1 } }, { "key": "28241", "source": "236", "target": "2731", "attributes": { "weight": 1 } }, { "key": "2660", "source": "236", "target": "238", "attributes": { "weight": 2 } }, { "key": "29994", "source": "236", "target": "784", "attributes": { "weight": 1 } }, { "key": "7210", "source": "236", "target": "1063", "attributes": { "weight": 2 } }, { "key": "10588", "source": "236", "target": "43", "attributes": { "weight": 2 } }, { "key": "15502", "source": "236", "target": "195", "attributes": { "weight": 3 } }, { "key": "4304", "source": "236", "target": "1090", "attributes": { "weight": 2 } }, { "key": "2664", "source": "237", "target": "236", "attributes": { "weight": 1 } }, { "key": "15543", "source": "237", "target": "195", "attributes": { "weight": 1 } }, { "key": "33895", "source": "237", "target": "1233", "attributes": { "weight": 1 } }, { "key": "33894", "source": "237", "target": "1047", "attributes": { "weight": 1 } }, { "key": "554", "source": "237", "target": "238", "attributes": { "weight": 4 } }, { "key": "25849", "source": "237", "target": "220", "attributes": { "weight": 2 } }, { "key": "14028", "source": "238", "target": "1031", "attributes": { "weight": 1 } }, { "key": "2675", "source": "238", "target": "240", "attributes": { "weight": 1 } }, { "key": "10663", "source": "238", "target": "43", "attributes": { "weight": 1 } }, { "key": "555", "source": "238", "target": "236", "attributes": { "weight": 3 } }, { "key": "2681", "source": "238", "target": "786", "attributes": { "weight": 1 } }, { "key": "2670", "source": "238", "target": "777", "attributes": { "weight": 1 } }, { "key": "2676", "source": "238", "target": "782", "attributes": { "weight": 1 } }, { "key": "2677", "source": "238", "target": "371", "attributes": { "weight": 3 } }, { "key": "25855", "source": "238", "target": "220", "attributes": { "weight": 2 } }, { "key": "2680", "source": "238", "target": "257", "attributes": { "weight": 1 } }, { "key": "2673", "source": "238", "target": "780", "attributes": { "weight": 1 } }, { "key": "2674", "source": "238", "target": "239", "attributes": { "weight": 1 } }, { "key": "2672", "source": "238", "target": "779", "attributes": { "weight": 1 } }, { "key": "580", "source": "238", "target": "254", "attributes": { "weight": 3 } }, { "key": "6656", "source": "238", "target": "183", "attributes": { "weight": 1 } }, { "key": "2679", "source": "238", "target": "785", "attributes": { "weight": 3 } }, { "key": "2671", "source": "238", "target": "778", "attributes": { "weight": 2 } }, { "key": "2678", "source": "238", "target": "784", "attributes": { "weight": 1 } }, { "key": "2669", "source": "238", "target": "237", "attributes": { "weight": 3 } }, { "key": "556", "source": "239", "target": "236", "attributes": { "weight": 1 } }, { "key": "2684", "source": "239", "target": "238", "attributes": { "weight": 1 } }, { "key": "30641", "source": "239", "target": "778", "attributes": { "weight": 2 } }, { "key": "35244", "source": "240", "target": "1030", "attributes": { "weight": 1 } }, { "key": "5512", "source": "240", "target": "371", "attributes": { "weight": 1 } }, { "key": "14048", "source": "240", "target": "1031", "attributes": { "weight": 1 } }, { "key": "557", "source": "240", "target": "236", "attributes": { "weight": 2 } }, { "key": "3652", "source": "240", "target": "786", "attributes": { "weight": 2 } }, { "key": "35243", "source": "240", "target": "3189", "attributes": { "weight": 1 } }, { "key": "3651", "source": "240", "target": "778", "attributes": { "weight": 5 } }, { "key": "2685", "source": "240", "target": "238", "attributes": { "weight": 1 } }, { "key": "23736", "source": "241", "target": "8", "attributes": { "weight": 2 } }, { "key": "560", "source": "241", "target": "3", "attributes": { "weight": 3 } }, { "key": "23737", "source": "241", "target": "1774", "attributes": { "weight": 1 } }, { "key": "30882", "source": "242", "target": "13", "attributes": { "weight": 1 } }, { "key": "571", "source": "242", "target": "3", "attributes": { "weight": 2 } }, { "key": "23749", "source": "242", "target": "7", "attributes": { "weight": 1 } }, { "key": "23751", "source": "242", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23750", "source": "242", "target": "8", "attributes": { "weight": 1 } }, { "key": "30580", "source": "242", "target": "682", "attributes": { "weight": 1 } }, { "key": "23762", "source": "243", "target": "8", "attributes": { "weight": 2 } }, { "key": "23763", "source": "243", "target": "1774", "attributes": { "weight": 1 } }, { "key": "572", "source": "243", "target": "3", "attributes": { "weight": 2 } }, { "key": "33806", "source": "244", "target": "681", "attributes": { "weight": 1 } }, { "key": "23783", "source": "244", "target": "8", "attributes": { "weight": 2 } }, { "key": "23784", "source": "244", "target": "13", "attributes": { "weight": 1 } }, { "key": "33804", "source": "244", "target": "2", "attributes": { "weight": 1 } }, { "key": "23786", "source": "244", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23785", "source": "244", "target": "14", "attributes": { "weight": 2 } }, { "key": "33807", "source": "244", "target": "682", "attributes": { "weight": 1 } }, { "key": "33805", "source": "244", "target": "2646", "attributes": { "weight": 1 } }, { "key": "574", "source": "244", "target": "3", "attributes": { "weight": 2 } }, { "key": "23789", "source": "245", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23788", "source": "245", "target": "8", "attributes": { "weight": 2 } }, { "key": "575", "source": "245", "target": "3", "attributes": { "weight": 3 } }, { "key": "23798", "source": "246", "target": "1774", "attributes": { "weight": 1 } }, { "key": "33816", "source": "246", "target": "681", "attributes": { "weight": 1 } }, { "key": "23796", "source": "246", "target": "7", "attributes": { "weight": 1 } }, { "key": "23797", "source": "246", "target": "8", "attributes": { "weight": 2 } }, { "key": "576", "source": "246", "target": "3", "attributes": { "weight": 2 } }, { "key": "33817", "source": "246", "target": "14", "attributes": { "weight": 1 } }, { "key": "37331", "source": "247", "target": "135", "attributes": { "weight": 1 } }, { "key": "577", "source": "247", "target": "3", "attributes": { "weight": 5 } }, { "key": "37330", "source": "247", "target": "442", "attributes": { "weight": 1 } }, { "key": "25393", "source": "247", "target": "433", "attributes": { "weight": 2 } }, { "key": "23374", "source": "247", "target": "223", "attributes": { "weight": 1 } }, { "key": "33830", "source": "247", "target": "8", "attributes": { "weight": 1 } }, { "key": "26799", "source": "248", "target": "961", "attributes": { "weight": 1 } }, { "key": "26801", "source": "248", "target": "257", "attributes": { "weight": 1 } }, { "key": "35562", "source": "248", "target": "1347", "attributes": { "weight": 1 } }, { "key": "26798", "source": "248", "target": "254", "attributes": { "weight": 1 } }, { "key": "4288", "source": "248", "target": "370", "attributes": { "weight": 2 } }, { "key": "26796", "source": "248", "target": "935", "attributes": { "weight": 1 } }, { "key": "1952", "source": "248", "target": "589", "attributes": { "weight": 1 } }, { "key": "4289", "source": "248", "target": "371", "attributes": { "weight": 2 } }, { "key": "578", "source": "248", "target": "252", "attributes": { "weight": 2 } }, { "key": "11830", "source": "248", "target": "135", "attributes": { "weight": 3 } }, { "key": "7207", "source": "248", "target": "1063", "attributes": { "weight": 2 } }, { "key": "11832", "source": "248", "target": "1328", "attributes": { "weight": 3 } }, { "key": "29916", "source": "248", "target": "253", "attributes": { "weight": 2 } }, { "key": "33857", "source": "248", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4287", "source": "248", "target": "779", "attributes": { "weight": 2 } }, { "key": "11831", "source": "248", "target": "372", "attributes": { "weight": 2 } }, { "key": "26800", "source": "248", "target": "256", "attributes": { "weight": 1 } }, { "key": "12801", "source": "248", "target": "1158", "attributes": { "weight": 2 } }, { "key": "11833", "source": "248", "target": "1814", "attributes": { "weight": 2 } }, { "key": "26797", "source": "248", "target": "250", "attributes": { "weight": 1 } }, { "key": "12802", "source": "248", "target": "780", "attributes": { "weight": 1 } }, { "key": "15211", "source": "248", "target": "454", "attributes": { "weight": 1 } }, { "key": "579", "source": "249", "target": "251", "attributes": { "weight": 2 } }, { "key": "29998", "source": "249", "target": "784", "attributes": { "weight": 1 } }, { "key": "8495", "source": "249", "target": "1125", "attributes": { "weight": 3 } }, { "key": "29997", "source": "249", "target": "1437", "attributes": { "weight": 1 } }, { "key": "581", "source": "250", "target": "252", "attributes": { "weight": 3 } }, { "key": "37308", "source": "250", "target": "963", "attributes": { "weight": 1 } }, { "key": "26812", "source": "250", "target": "2650", "attributes": { "weight": 1 } }, { "key": "37089", "source": "250", "target": "941", "attributes": { "weight": 2 } }, { "key": "26811", "source": "250", "target": "1158", "attributes": { "weight": 1 } }, { "key": "4942", "source": "250", "target": "961", "attributes": { "weight": 4 } }, { "key": "582", "source": "250", "target": "257", "attributes": { "weight": 4 } }, { "key": "26810", "source": "250", "target": "248", "attributes": { "weight": 1 } }, { "key": "8729", "source": "251", "target": "1125", "attributes": { "weight": 3 } }, { "key": "31129", "source": "251", "target": "442", "attributes": { "weight": 1 } }, { "key": "5011", "source": "251", "target": "371", "attributes": { "weight": 2 } }, { "key": "7280", "source": "251", "target": "154", "attributes": { "weight": 1 } }, { "key": "583", "source": "251", "target": "249", "attributes": { "weight": 2 } }, { "key": "586", "source": "251", "target": "256", "attributes": { "weight": 4 } }, { "key": "585", "source": "251", "target": "254", "attributes": { "weight": 2 } }, { "key": "584", "source": "251", "target": "252", "attributes": { "weight": 4 } }, { "key": "26814", "source": "251", "target": "1158", "attributes": { "weight": 1 } }, { "key": "5012", "source": "251", "target": "961", "attributes": { "weight": 2 } }, { "key": "14140", "source": "251", "target": "392", "attributes": { "weight": 1 } }, { "key": "6190", "source": "252", "target": "371", "attributes": { "weight": 2 } }, { "key": "7382", "source": "252", "target": "154", "attributes": { "weight": 1 } }, { "key": "6191", "source": "252", "target": "961", "attributes": { "weight": 2 } }, { "key": "591", "source": "252", "target": "254", "attributes": { "weight": 3 } }, { "key": "589", "source": "252", "target": "251", "attributes": { "weight": 5 } }, { "key": "590", "source": "252", "target": "253", "attributes": { "weight": 2 } }, { "key": "592", "source": "252", "target": "255", "attributes": { "weight": 3 } }, { "key": "9025", "source": "252", "target": "783", "attributes": { "weight": 2 } }, { "key": "593", "source": "252", "target": "257", "attributes": { "weight": 1 } }, { "key": "587", "source": "252", "target": "248", "attributes": { "weight": 2 } }, { "key": "588", "source": "252", "target": "250", "attributes": { "weight": 3 } }, { "key": "9024", "source": "252", "target": "1125", "attributes": { "weight": 3 } }, { "key": "36446", "source": "253", "target": "3313", "attributes": { "weight": 1 } }, { "key": "594", "source": "253", "target": "252", "attributes": { "weight": 2 } }, { "key": "29919", "source": "253", "target": "257", "attributes": { "weight": 3 } }, { "key": "32285", "source": "253", "target": "961", "attributes": { "weight": 1 } }, { "key": "32286", "source": "253", "target": "963", "attributes": { "weight": 1 } }, { "key": "29918", "source": "253", "target": "255", "attributes": { "weight": 1 } }, { "key": "29917", "source": "253", "target": "248", "attributes": { "weight": 2 } }, { "key": "6302", "source": "254", "target": "1090", "attributes": { "weight": 2 } }, { "key": "596", "source": "254", "target": "257", "attributes": { "weight": 3 } }, { "key": "6301", "source": "254", "target": "371", "attributes": { "weight": 4 } }, { "key": "14163", "source": "254", "target": "392", "attributes": { "weight": 1 } }, { "key": "11682", "source": "254", "target": "199", "attributes": { "weight": 2 } }, { "key": "11683", "source": "254", "target": "370", "attributes": { "weight": 2 } }, { "key": "34729", "source": "254", "target": "1047", "attributes": { "weight": 1 } }, { "key": "14121", "source": "254", "target": "1031", "attributes": { "weight": 2 } }, { "key": "25454", "source": "254", "target": "990", "attributes": { "weight": 1 } }, { "key": "15363", "source": "254", "target": "407", "attributes": { "weight": 1 } }, { "key": "2694", "source": "254", "target": "238", "attributes": { "weight": 2 } }, { "key": "10772", "source": "254", "target": "30", "attributes": { "weight": 1 } }, { "key": "16263", "source": "254", "target": "108", "attributes": { "weight": 2 } }, { "key": "16262", "source": "254", "target": "195", "attributes": { "weight": 1 } }, { "key": "25453", "source": "254", "target": "780", "attributes": { "weight": 1 } }, { "key": "35216", "source": "254", "target": "471", "attributes": { "weight": 1 } }, { "key": "26819", "source": "254", "target": "248", "attributes": { "weight": 1 } }, { "key": "16264", "source": "254", "target": "109", "attributes": { "weight": 2 } }, { "key": "11681", "source": "254", "target": "938", "attributes": { "weight": 1 } }, { "key": "11685", "source": "254", "target": "961", "attributes": { "weight": 2 } }, { "key": "15362", "source": "254", "target": "454", "attributes": { "weight": 1 } }, { "key": "33130", "source": "254", "target": "1125", "attributes": { "weight": 1 } }, { "key": "9059", "source": "254", "target": "442", "attributes": { "weight": 2 } }, { "key": "11684", "source": "254", "target": "208", "attributes": { "weight": 3 } }, { "key": "10771", "source": "254", "target": "43", "attributes": { "weight": 1 } }, { "key": "14164", "source": "254", "target": "1891", "attributes": { "weight": 1 } }, { "key": "595", "source": "254", "target": "252", "attributes": { "weight": 3 } }, { "key": "597", "source": "255", "target": "252", "attributes": { "weight": 3 } }, { "key": "29920", "source": "255", "target": "253", "attributes": { "weight": 1 } }, { "key": "26824", "source": "256", "target": "250", "attributes": { "weight": 1 } }, { "key": "26823", "source": "256", "target": "1158", "attributes": { "weight": 1 } }, { "key": "26822", "source": "256", "target": "248", "attributes": { "weight": 1 } }, { "key": "12838", "source": "256", "target": "785", "attributes": { "weight": 2 } }, { "key": "26825", "source": "256", "target": "2650", "attributes": { "weight": 1 } }, { "key": "598", "source": "256", "target": "251", "attributes": { "weight": 5 } }, { "key": "14124", "source": "257", "target": "1031", "attributes": { "weight": 1 } }, { "key": "36772", "source": "257", "target": "1063", "attributes": { "weight": 1 } }, { "key": "34814", "source": "257", "target": "123", "attributes": { "weight": 1 } }, { "key": "29921", "source": "257", "target": "253", "attributes": { "weight": 3 } }, { "key": "36447", "source": "257", "target": "3312", "attributes": { "weight": 1 } }, { "key": "34813", "source": "257", "target": "1232", "attributes": { "weight": 1 } }, { "key": "30035", "source": "257", "target": "935", "attributes": { "weight": 2 } }, { "key": "6427", "source": "257", "target": "779", "attributes": { "weight": 2 } }, { "key": "12840", "source": "257", "target": "780", "attributes": { "weight": 1 } }, { "key": "16369", "source": "257", "target": "195", "attributes": { "weight": 1 } }, { "key": "2696", "source": "257", "target": "783", "attributes": { "weight": 1 } }, { "key": "9101", "source": "257", "target": "442", "attributes": { "weight": 2 } }, { "key": "31488", "source": "257", "target": "1125", "attributes": { "weight": 2 } }, { "key": "11721", "source": "257", "target": "938", "attributes": { "weight": 1 } }, { "key": "599", "source": "257", "target": "250", "attributes": { "weight": 5 } }, { "key": "36448", "source": "257", "target": "589", "attributes": { "weight": 1 } }, { "key": "36449", "source": "257", "target": "3313", "attributes": { "weight": 1 } }, { "key": "600", "source": "257", "target": "252", "attributes": { "weight": 1 } }, { "key": "26837", "source": "257", "target": "963", "attributes": { "weight": 2 } }, { "key": "26833", "source": "257", "target": "248", "attributes": { "weight": 1 } }, { "key": "26835", "source": "257", "target": "1328", "attributes": { "weight": 2 } }, { "key": "34812", "source": "257", "target": "1047", "attributes": { "weight": 1 } }, { "key": "6428", "source": "257", "target": "370", "attributes": { "weight": 4 } }, { "key": "26834", "source": "257", "target": "941", "attributes": { "weight": 4 } }, { "key": "601", "source": "257", "target": "254", "attributes": { "weight": 3 } }, { "key": "11722", "source": "257", "target": "961", "attributes": { "weight": 3 } }, { "key": "28607", "source": "257", "target": "199", "attributes": { "weight": 1 } }, { "key": "12839", "source": "257", "target": "1158", "attributes": { "weight": 1 } }, { "key": "26836", "source": "257", "target": "256", "attributes": { "weight": 1 } }, { "key": "26838", "source": "257", "target": "964", "attributes": { "weight": 1 } }, { "key": "2695", "source": "257", "target": "238", "attributes": { "weight": 2 } }, { "key": "6429", "source": "257", "target": "371", "attributes": { "weight": 2 } }, { "key": "6430", "source": "257", "target": "1090", "attributes": { "weight": 2 } }, { "key": "602", "source": "258", "target": "326", "attributes": { "weight": 1 } }, { "key": "14336", "source": "258", "target": "262", "attributes": { "weight": 2 } }, { "key": "14339", "source": "258", "target": "308", "attributes": { "weight": 1 } }, { "key": "22183", "source": "258", "target": "290", "attributes": { "weight": 1 } }, { "key": "17986", "source": "258", "target": "264", "attributes": { "weight": 1 } }, { "key": "14334", "source": "258", "target": "259", "attributes": { "weight": 1 } }, { "key": "22885", "source": "258", "target": "166", "attributes": { "weight": 1 } }, { "key": "14338", "source": "258", "target": "287", "attributes": { "weight": 2 } }, { "key": "12888", "source": "258", "target": "304", "attributes": { "weight": 2 } }, { "key": "22886", "source": "258", "target": "906", "attributes": { "weight": 1 } }, { "key": "14337", "source": "258", "target": "263", "attributes": { "weight": 1 } }, { "key": "23268", "source": "258", "target": "305", "attributes": { "weight": 2 } }, { "key": "12887", "source": "258", "target": "167", "attributes": { "weight": 2 } }, { "key": "23269", "source": "258", "target": "312", "attributes": { "weight": 1 } }, { "key": "14335", "source": "258", "target": "260", "attributes": { "weight": 1 } }, { "key": "14409", "source": "259", "target": "175", "attributes": { "weight": 2 } }, { "key": "23407", "source": "259", "target": "2310", "attributes": { "weight": 1 } }, { "key": "14389", "source": "259", "target": "361", "attributes": { "weight": 1 } }, { "key": "23406", "source": "259", "target": "2309", "attributes": { "weight": 1 } }, { "key": "14417", "source": "259", "target": "318", "attributes": { "weight": 3 } }, { "key": "603", "source": "259", "target": "262", "attributes": { "weight": 8 } }, { "key": "12921", "source": "259", "target": "304", "attributes": { "weight": 4 } }, { "key": "27902", "source": "259", "target": "902", "attributes": { "weight": 1 } }, { "key": "14381", "source": "259", "target": "278", "attributes": { "weight": 3 } }, { "key": "14388", "source": "259", "target": "288", "attributes": { "weight": 1 } }, { "key": "14402", "source": "259", "target": "1985", "attributes": { "weight": 1 } }, { "key": "9570", "source": "259", "target": "564", "attributes": { "weight": 1 } }, { "key": "14403", "source": "259", "target": "163", "attributes": { "weight": 2 } }, { "key": "14179", "source": "259", "target": "168", "attributes": { "weight": 3 } }, { "key": "14423", "source": "259", "target": "1515", "attributes": { "weight": 1 } }, { "key": "14355", "source": "259", "target": "1972", "attributes": { "weight": 1 } }, { "key": "14386", "source": "259", "target": "1977", "attributes": { "weight": 1 } }, { "key": "14413", "source": "259", "target": "310", "attributes": { "weight": 1 } }, { "key": "14395", "source": "259", "target": "906", "attributes": { "weight": 1 } }, { "key": "2967", "source": "259", "target": "176", "attributes": { "weight": 2 } }, { "key": "14397", "source": "259", "target": "1918", "attributes": { "weight": 1 } }, { "key": "8491", "source": "259", "target": "167", "attributes": { "weight": 12 } }, { "key": "14370", "source": "259", "target": "572", "attributes": { "weight": 1 } }, { "key": "14366", "source": "259", "target": "1857", "attributes": { "weight": 2 } }, { "key": "14367", "source": "259", "target": "419", "attributes": { "weight": 1 } }, { "key": "14408", "source": "259", "target": "174", "attributes": { "weight": 1 } }, { "key": "14411", "source": "259", "target": "595", "attributes": { "weight": 2 } }, { "key": "14378", "source": "259", "target": "1847", "attributes": { "weight": 1 } }, { "key": "14368", "source": "259", "target": "837", "attributes": { "weight": 1 } }, { "key": "12932", "source": "259", "target": "1931", "attributes": { "weight": 2 } }, { "key": "14377", "source": "259", "target": "274", "attributes": { "weight": 1 } }, { "key": "14404", "source": "259", "target": "299", "attributes": { "weight": 3 } }, { "key": "14401", "source": "259", "target": "1510", "attributes": { "weight": 1 } }, { "key": "12919", "source": "259", "target": "580", "attributes": { "weight": 6 } }, { "key": "14365", "source": "259", "target": "357", "attributes": { "weight": 1 } }, { "key": "23409", "source": "259", "target": "2449", "attributes": { "weight": 1 } }, { "key": "14393", "source": "259", "target": "291", "attributes": { "weight": 2 } }, { "key": "12899", "source": "259", "target": "261", "attributes": { "weight": 3 } }, { "key": "14375", "source": "259", "target": "698", "attributes": { "weight": 1 } }, { "key": "12926", "source": "259", "target": "1928", "attributes": { "weight": 2 } }, { "key": "12914", "source": "259", "target": "289", "attributes": { "weight": 4 } }, { "key": "14371", "source": "259", "target": "358", "attributes": { "weight": 2 } }, { "key": "14405", "source": "259", "target": "1987", "attributes": { "weight": 1 } }, { "key": "14394", "source": "259", "target": "1982", "attributes": { "weight": 1 } }, { "key": "14410", "source": "259", "target": "177", "attributes": { "weight": 2 } }, { "key": "12895", "source": "259", "target": "1380", "attributes": { "weight": 3 } }, { "key": "14419", "source": "259", "target": "1929", "attributes": { "weight": 1 } }, { "key": "14374", "source": "259", "target": "1903", "attributes": { "weight": 1 } }, { "key": "14391", "source": "259", "target": "338", "attributes": { "weight": 2 } }, { "key": "12924", "source": "259", "target": "314", "attributes": { "weight": 5 } }, { "key": "12903", "source": "259", "target": "166", "attributes": { "weight": 5 } }, { "key": "18355", "source": "259", "target": "1621", "attributes": { "weight": 2 } }, { "key": "14420", "source": "259", "target": "329", "attributes": { "weight": 1 } }, { "key": "12915", "source": "259", "target": "295", "attributes": { "weight": 2 } }, { "key": "8493", "source": "259", "target": "178", "attributes": { "weight": 4 } }, { "key": "14361", "source": "259", "target": "567", "attributes": { "weight": 2 } }, { "key": "14385", "source": "259", "target": "1976", "attributes": { "weight": 1 } }, { "key": "14427", "source": "259", "target": "908", "attributes": { "weight": 1 } }, { "key": "14422", "source": "259", "target": "1933", "attributes": { "weight": 1 } }, { "key": "14372", "source": "259", "target": "271", "attributes": { "weight": 1 } }, { "key": "14379", "source": "259", "target": "169", "attributes": { "weight": 1 } }, { "key": "14353", "source": "259", "target": "220", "attributes": { "weight": 2 } }, { "key": "14426", "source": "259", "target": "334", "attributes": { "weight": 1 } }, { "key": "27903", "source": "259", "target": "293", "attributes": { "weight": 1 } }, { "key": "14363", "source": "259", "target": "830", "attributes": { "weight": 1 } }, { "key": "14356", "source": "259", "target": "1973", "attributes": { "weight": 1 } }, { "key": "14382", "source": "259", "target": "1913", "attributes": { "weight": 1 } }, { "key": "14384", "source": "259", "target": "1914", "attributes": { "weight": 1 } }, { "key": "12904", "source": "259", "target": "275", "attributes": { "weight": 4 } }, { "key": "24775", "source": "259", "target": "292", "attributes": { "weight": 2 } }, { "key": "14425", "source": "259", "target": "333", "attributes": { "weight": 1 } }, { "key": "14392", "source": "259", "target": "468", "attributes": { "weight": 1 } }, { "key": "11732", "source": "259", "target": "1513", "attributes": { "weight": 1 } }, { "key": "12933", "source": "259", "target": "1854", "attributes": { "weight": 3 } }, { "key": "14407", "source": "259", "target": "173", "attributes": { "weight": 1 } }, { "key": "14354", "source": "259", "target": "1971", "attributes": { "weight": 1 } }, { "key": "14364", "source": "259", "target": "263", "attributes": { "weight": 1 } }, { "key": "14376", "source": "259", "target": "574", "attributes": { "weight": 2 } }, { "key": "14357", "source": "259", "target": "258", "attributes": { "weight": 1 } }, { "key": "12908", "source": "259", "target": "791", "attributes": { "weight": 2 } }, { "key": "12911", "source": "259", "target": "284", "attributes": { "weight": 2 } }, { "key": "12930", "source": "259", "target": "327", "attributes": { "weight": 6 } }, { "key": "12896", "source": "259", "target": "836", "attributes": { "weight": 2 } }, { "key": "12922", "source": "259", "target": "305", "attributes": { "weight": 6 } }, { "key": "8492", "source": "259", "target": "307", "attributes": { "weight": 4 } }, { "key": "12901", "source": "259", "target": "1899", "attributes": { "weight": 2 } }, { "key": "14352", "source": "259", "target": "1146", "attributes": { "weight": 1 } }, { "key": "12929", "source": "259", "target": "326", "attributes": { "weight": 5 } }, { "key": "14418", "source": "259", "target": "319", "attributes": { "weight": 3 } }, { "key": "12897", "source": "259", "target": "339", "attributes": { "weight": 2 } }, { "key": "14351", "source": "259", "target": "1969", "attributes": { "weight": 1 } }, { "key": "29191", "source": "259", "target": "582", "attributes": { "weight": 1 } }, { "key": "12917", "source": "259", "target": "300", "attributes": { "weight": 6 } }, { "key": "12923", "source": "259", "target": "313", "attributes": { "weight": 5 } }, { "key": "604", "source": "259", "target": "264", "attributes": { "weight": 6 } }, { "key": "12566", "source": "259", "target": "905", "attributes": { "weight": 1 } }, { "key": "12931", "source": "259", "target": "330", "attributes": { "weight": 2 } }, { "key": "12414", "source": "259", "target": "316", "attributes": { "weight": 5 } }, { "key": "14398", "source": "259", "target": "297", "attributes": { "weight": 1 } }, { "key": "12898", "source": "259", "target": "260", "attributes": { "weight": 4 } }, { "key": "14359", "source": "259", "target": "1166", "attributes": { "weight": 1 } }, { "key": "12900", "source": "259", "target": "265", "attributes": { "weight": 3 } }, { "key": "14421", "source": "259", "target": "331", "attributes": { "weight": 2 } }, { "key": "12910", "source": "259", "target": "283", "attributes": { "weight": 4 } }, { "key": "12909", "source": "259", "target": "1912", "attributes": { "weight": 2 } }, { "key": "9571", "source": "259", "target": "171", "attributes": { "weight": 3 } }, { "key": "31851", "source": "259", "target": "1060", "attributes": { "weight": 1 } }, { "key": "14373", "source": "259", "target": "272", "attributes": { "weight": 3 } }, { "key": "14360", "source": "259", "target": "901", "attributes": { "weight": 1 } }, { "key": "25961", "source": "259", "target": "2622", "attributes": { "weight": 2 } }, { "key": "605", "source": "259", "target": "309", "attributes": { "weight": 1 } }, { "key": "12916", "source": "259", "target": "1919", "attributes": { "weight": 2 } }, { "key": "14369", "source": "259", "target": "268", "attributes": { "weight": 1 } }, { "key": "12928", "source": "259", "target": "324", "attributes": { "weight": 2 } }, { "key": "14414", "source": "259", "target": "311", "attributes": { "weight": 3 } }, { "key": "14415", "source": "259", "target": "1853", "attributes": { "weight": 1 } }, { "key": "14400", "source": "259", "target": "1611", "attributes": { "weight": 1 } }, { "key": "12907", "source": "259", "target": "1911", "attributes": { "weight": 3 } }, { "key": "14424", "source": "259", "target": "332", "attributes": { "weight": 1 } }, { "key": "14412", "source": "259", "target": "179", "attributes": { "weight": 1 } }, { "key": "8490", "source": "259", "target": "442", "attributes": { "weight": 2 } }, { "key": "8494", "source": "259", "target": "322", "attributes": { "weight": 5 } }, { "key": "14406", "source": "259", "target": "172", "attributes": { "weight": 1 } }, { "key": "14362", "source": "259", "target": "1898", "attributes": { "weight": 1 } }, { "key": "12902", "source": "259", "target": "1904", "attributes": { "weight": 2 } }, { "key": "12905", "source": "259", "target": "276", "attributes": { "weight": 5 } }, { "key": "12925", "source": "259", "target": "321", "attributes": { "weight": 6 } }, { "key": "35780", "source": "259", "target": "790", "attributes": { "weight": 1 } }, { "key": "31850", "source": "259", "target": "359", "attributes": { "weight": 1 } }, { "key": "14387", "source": "259", "target": "170", "attributes": { "weight": 2 } }, { "key": "3160", "source": "259", "target": "839", "attributes": { "weight": 7 } }, { "key": "12927", "source": "259", "target": "323", "attributes": { "weight": 4 } }, { "key": "14358", "source": "259", "target": "164", "attributes": { "weight": 6 } }, { "key": "12918", "source": "259", "target": "301", "attributes": { "weight": 3 } }, { "key": "14383", "source": "259", "target": "282", "attributes": { "weight": 1 } }, { "key": "12913", "source": "259", "target": "287", "attributes": { "weight": 5 } }, { "key": "14380", "source": "259", "target": "1975", "attributes": { "weight": 1 } }, { "key": "14396", "source": "259", "target": "1984", "attributes": { "weight": 1 } }, { "key": "14390", "source": "259", "target": "290", "attributes": { "weight": 1 } }, { "key": "12912", "source": "259", "target": "286", "attributes": { "weight": 5 } }, { "key": "30510", "source": "259", "target": "1642", "attributes": { "weight": 1 } }, { "key": "12567", "source": "259", "target": "180", "attributes": { "weight": 4 } }, { "key": "14416", "source": "259", "target": "1872", "attributes": { "weight": 1 } }, { "key": "1806", "source": "259", "target": "93", "attributes": { "weight": 3 } }, { "key": "30346", "source": "259", "target": "1046", "attributes": { "weight": 1 } }, { "key": "3161", "source": "259", "target": "308", "attributes": { "weight": 3 } }, { "key": "14399", "source": "259", "target": "298", "attributes": { "weight": 1 } }, { "key": "12906", "source": "259", "target": "277", "attributes": { "weight": 3 } }, { "key": "14449", "source": "260", "target": "332", "attributes": { "weight": 1 } }, { "key": "14437", "source": "260", "target": "270", "attributes": { "weight": 2 } }, { "key": "14447", "source": "260", "target": "321", "attributes": { "weight": 2 } }, { "key": "14436", "source": "260", "target": "697", "attributes": { "weight": 1 } }, { "key": "22891", "source": "260", "target": "275", "attributes": { "weight": 3 } }, { "key": "14435", "source": "260", "target": "164", "attributes": { "weight": 1 } }, { "key": "12945", "source": "260", "target": "307", "attributes": { "weight": 3 } }, { "key": "12949", "source": "260", "target": "316", "attributes": { "weight": 4 } }, { "key": "12937", "source": "260", "target": "166", "attributes": { "weight": 5 } }, { "key": "611", "source": "260", "target": "287", "attributes": { "weight": 7 } }, { "key": "12947", "source": "260", "target": "313", "attributes": { "weight": 5 } }, { "key": "14440", "source": "260", "target": "278", "attributes": { "weight": 2 } }, { "key": "609", "source": "260", "target": "167", "attributes": { "weight": 10 } }, { "key": "14433", "source": "260", "target": "836", "attributes": { "weight": 2 } }, { "key": "14443", "source": "260", "target": "305", "attributes": { "weight": 3 } }, { "key": "12946", "source": "260", "target": "312", "attributes": { "weight": 4 } }, { "key": "607", "source": "260", "target": "262", "attributes": { "weight": 6 } }, { "key": "14442", "source": "260", "target": "1987", "attributes": { "weight": 1 } }, { "key": "14445", "source": "260", "target": "311", "attributes": { "weight": 5 } }, { "key": "12941", "source": "260", "target": "578", "attributes": { "weight": 2 } }, { "key": "12938", "source": "260", "target": "289", "attributes": { "weight": 7 } }, { "key": "12936", "source": "260", "target": "268", "attributes": { "weight": 6 } }, { "key": "12935", "source": "260", "target": "259", "attributes": { "weight": 4 } }, { "key": "8193", "source": "260", "target": "1513", "attributes": { "weight": 1 } }, { "key": "12948", "source": "260", "target": "314", "attributes": { "weight": 2 } }, { "key": "8194", "source": "260", "target": "180", "attributes": { "weight": 3 } }, { "key": "2865", "source": "260", "target": "292", "attributes": { "weight": 1 } }, { "key": "14181", "source": "260", "target": "168", "attributes": { "weight": 3 } }, { "key": "22892", "source": "260", "target": "276", "attributes": { "weight": 1 } }, { "key": "14434", "source": "260", "target": "258", "attributes": { "weight": 1 } }, { "key": "12940", "source": "260", "target": "291", "attributes": { "weight": 4 } }, { "key": "12951", "source": "260", "target": "328", "attributes": { "weight": 5 } }, { "key": "12942", "source": "260", "target": "298", "attributes": { "weight": 2 } }, { "key": "12944", "source": "260", "target": "304", "attributes": { "weight": 3 } }, { "key": "14450", "source": "260", "target": "336", "attributes": { "weight": 2 } }, { "key": "22893", "source": "260", "target": "286", "attributes": { "weight": 1 } }, { "key": "14439", "source": "260", "target": "1908", "attributes": { "weight": 1 } }, { "key": "29791", "source": "260", "target": "283", "attributes": { "weight": 1 } }, { "key": "12939", "source": "260", "target": "290", "attributes": { "weight": 6 } }, { "key": "27907", "source": "260", "target": "300", "attributes": { "weight": 1 } }, { "key": "27906", "source": "260", "target": "299", "attributes": { "weight": 1 } }, { "key": "12570", "source": "260", "target": "905", "attributes": { "weight": 2 } }, { "key": "14444", "source": "260", "target": "839", "attributes": { "weight": 3 } }, { "key": "12950", "source": "260", "target": "327", "attributes": { "weight": 5 } }, { "key": "14448", "source": "260", "target": "1933", "attributes": { "weight": 1 } }, { "key": "606", "source": "260", "target": "261", "attributes": { "weight": 3 } }, { "key": "14438", "source": "260", "target": "272", "attributes": { "weight": 4 } }, { "key": "12943", "source": "260", "target": "301", "attributes": { "weight": 4 } }, { "key": "23410", "source": "260", "target": "1917", "attributes": { "weight": 1 } }, { "key": "610", "source": "260", "target": "277", "attributes": { "weight": 7 } }, { "key": "22894", "source": "260", "target": "179", "attributes": { "weight": 1 } }, { "key": "14446", "source": "260", "target": "320", "attributes": { "weight": 1 } }, { "key": "608", "source": "260", "target": "264", "attributes": { "weight": 5 } }, { "key": "612", "source": "260", "target": "319", "attributes": { "weight": 9 } }, { "key": "616", "source": "261", "target": "316", "attributes": { "weight": 2 } }, { "key": "14453", "source": "261", "target": "275", "attributes": { "weight": 1 } }, { "key": "14451", "source": "261", "target": "697", "attributes": { "weight": 1 } }, { "key": "615", "source": "261", "target": "314", "attributes": { "weight": 5 } }, { "key": "24776", "source": "261", "target": "272", "attributes": { "weight": 1 } }, { "key": "12955", "source": "261", "target": "304", "attributes": { "weight": 5 } }, { "key": "12952", "source": "261", "target": "259", "attributes": { "weight": 3 } }, { "key": "14455", "source": "261", "target": "167", "attributes": { "weight": 2 } }, { "key": "14458", "source": "261", "target": "1554", "attributes": { "weight": 1 } }, { "key": "14456", "source": "261", "target": "278", "attributes": { "weight": 2 } }, { "key": "12957", "source": "261", "target": "313", "attributes": { "weight": 5 } }, { "key": "14452", "source": "261", "target": "262", "attributes": { "weight": 1 } }, { "key": "3164", "source": "261", "target": "305", "attributes": { "weight": 5 } }, { "key": "12956", "source": "261", "target": "312", "attributes": { "weight": 2 } }, { "key": "14460", "source": "261", "target": "580", "attributes": { "weight": 1 } }, { "key": "14457", "source": "261", "target": "286", "attributes": { "weight": 1 } }, { "key": "614", "source": "261", "target": "300", "attributes": { "weight": 5 } }, { "key": "12953", "source": "261", "target": "264", "attributes": { "weight": 2 } }, { "key": "14459", "source": "261", "target": "299", "attributes": { "weight": 2 } }, { "key": "27908", "source": "261", "target": "326", "attributes": { "weight": 1 } }, { "key": "12958", "source": "261", "target": "322", "attributes": { "weight": 3 } }, { "key": "14463", "source": "261", "target": "1934", "attributes": { "weight": 1 } }, { "key": "14462", "source": "261", "target": "318", "attributes": { "weight": 1 } }, { "key": "24777", "source": "261", "target": "308", "attributes": { "weight": 1 } }, { "key": "14454", "source": "261", "target": "276", "attributes": { "weight": 1 } }, { "key": "613", "source": "261", "target": "260", "attributes": { "weight": 3 } }, { "key": "12959", "source": "261", "target": "1854", "attributes": { "weight": 3 } }, { "key": "14461", "source": "261", "target": "180", "attributes": { "weight": 1 } }, { "key": "12969", "source": "262", "target": "578", "attributes": { "weight": 2 } }, { "key": "19000", "source": "262", "target": "1872", "attributes": { "weight": 2 } }, { "key": "649", "source": "262", "target": "323", "attributes": { "weight": 4 } }, { "key": "634", "source": "262", "target": "300", "attributes": { "weight": 5 } }, { "key": "29792", "source": "262", "target": "275", "attributes": { "weight": 1 } }, { "key": "2866", "source": "262", "target": "329", "attributes": { "weight": 1 } }, { "key": "637", "source": "262", "target": "305", "attributes": { "weight": 7 } }, { "key": "625", "source": "262", "target": "167", "attributes": { "weight": 6 } }, { "key": "629", "source": "262", "target": "287", "attributes": { "weight": 9 } }, { "key": "648", "source": "262", "target": "322", "attributes": { "weight": 6 } }, { "key": "12974", "source": "262", "target": "332", "attributes": { "weight": 2 } }, { "key": "631", "source": "262", "target": "292", "attributes": { "weight": 7 } }, { "key": "630", "source": "262", "target": "291", "attributes": { "weight": 3 } }, { "key": "12966", "source": "262", "target": "284", "attributes": { "weight": 3 } }, { "key": "22193", "source": "262", "target": "274", "attributes": { "weight": 1 } }, { "key": "22196", "source": "262", "target": "1918", "attributes": { "weight": 1 } }, { "key": "11733", "source": "262", "target": "180", "attributes": { "weight": 2 } }, { "key": "31087", "source": "262", "target": "830", "attributes": { "weight": 1 } }, { "key": "652", "source": "262", "target": "331", "attributes": { "weight": 3 } }, { "key": "12964", "source": "262", "target": "168", "attributes": { "weight": 5 } }, { "key": "622", "source": "262", "target": "268", "attributes": { "weight": 1 } }, { "key": "624", "source": "262", "target": "166", "attributes": { "weight": 5 } }, { "key": "12967", "source": "262", "target": "289", "attributes": { "weight": 5 } }, { "key": "12965", "source": "262", "target": "278", "attributes": { "weight": 2 } }, { "key": "22190", "source": "262", "target": "1973", "attributes": { "weight": 1 } }, { "key": "27916", "source": "262", "target": "1991", "attributes": { "weight": 1 } }, { "key": "22186", "source": "262", "target": "1969", "attributes": { "weight": 1 } }, { "key": "646", "source": "262", "target": "318", "attributes": { "weight": 3 } }, { "key": "22197", "source": "262", "target": "1929", "attributes": { "weight": 1 } }, { "key": "626", "source": "262", "target": "169", "attributes": { "weight": 2 } }, { "key": "3166", "source": "262", "target": "906", "attributes": { "weight": 1 } }, { "key": "651", "source": "262", "target": "328", "attributes": { "weight": 7 } }, { "key": "14476", "source": "262", "target": "281", "attributes": { "weight": 1 } }, { "key": "12975", "source": "262", "target": "336", "attributes": { "weight": 3 } }, { "key": "628", "source": "262", "target": "286", "attributes": { "weight": 4 } }, { "key": "14474", "source": "262", "target": "261", "attributes": { "weight": 1 } }, { "key": "642", "source": "262", "target": "312", "attributes": { "weight": 6 } }, { "key": "22195", "source": "262", "target": "282", "attributes": { "weight": 1 } }, { "key": "647", "source": "262", "target": "319", "attributes": { "weight": 6 } }, { "key": "623", "source": "262", "target": "271", "attributes": { "weight": 2 } }, { "key": "12973", "source": "262", "target": "327", "attributes": { "weight": 5 } }, { "key": "14477", "source": "262", "target": "307", "attributes": { "weight": 1 } }, { "key": "650", "source": "262", "target": "326", "attributes": { "weight": 10 } }, { "key": "621", "source": "262", "target": "265", "attributes": { "weight": 2 } }, { "key": "641", "source": "262", "target": "311", "attributes": { "weight": 5 } }, { "key": "22189", "source": "262", "target": "1972", "attributes": { "weight": 1 } }, { "key": "3168", "source": "262", "target": "308", "attributes": { "weight": 4 } }, { "key": "13932", "source": "262", "target": "905", "attributes": { "weight": 1 } }, { "key": "29793", "source": "262", "target": "1917", "attributes": { "weight": 1 } }, { "key": "25964", "source": "262", "target": "2622", "attributes": { "weight": 2 } }, { "key": "12968", "source": "262", "target": "290", "attributes": { "weight": 6 } }, { "key": "14478", "source": "262", "target": "1931", "attributes": { "weight": 1 } }, { "key": "633", "source": "262", "target": "299", "attributes": { "weight": 3 } }, { "key": "22191", "source": "262", "target": "2310", "attributes": { "weight": 1 } }, { "key": "617", "source": "262", "target": "259", "attributes": { "weight": 8 } }, { "key": "26166", "source": "262", "target": "1911", "attributes": { "weight": 2 } }, { "key": "619", "source": "262", "target": "263", "attributes": { "weight": 6 } }, { "key": "14475", "source": "262", "target": "272", "attributes": { "weight": 3 } }, { "key": "22198", "source": "262", "target": "325", "attributes": { "weight": 1 } }, { "key": "12970", "source": "262", "target": "313", "attributes": { "weight": 3 } }, { "key": "30351", "source": "262", "target": "1046", "attributes": { "weight": 1 } }, { "key": "643", "source": "262", "target": "314", "attributes": { "weight": 5 } }, { "key": "645", "source": "262", "target": "316", "attributes": { "weight": 7 } }, { "key": "644", "source": "262", "target": "315", "attributes": { "weight": 2 } }, { "key": "640", "source": "262", "target": "310", "attributes": { "weight": 1 } }, { "key": "12971", "source": "262", "target": "321", "attributes": { "weight": 5 } }, { "key": "635", "source": "262", "target": "301", "attributes": { "weight": 4 } }, { "key": "638", "source": "262", "target": "306", "attributes": { "weight": 1 } }, { "key": "27915", "source": "262", "target": "276", "attributes": { "weight": 2 } }, { "key": "620", "source": "262", "target": "264", "attributes": { "weight": 1 } }, { "key": "636", "source": "262", "target": "304", "attributes": { "weight": 6 } }, { "key": "2836", "source": "262", "target": "164", "attributes": { "weight": 2 } }, { "key": "639", "source": "262", "target": "179", "attributes": { "weight": 1 } }, { "key": "22192", "source": "262", "target": "270", "attributes": { "weight": 1 } }, { "key": "618", "source": "262", "target": "260", "attributes": { "weight": 6 } }, { "key": "22187", "source": "262", "target": "2309", "attributes": { "weight": 1 } }, { "key": "22188", "source": "262", "target": "1971", "attributes": { "weight": 1 } }, { "key": "10809", "source": "262", "target": "457", "attributes": { "weight": 1 } }, { "key": "27669", "source": "262", "target": "178", "attributes": { "weight": 2 } }, { "key": "632", "source": "262", "target": "294", "attributes": { "weight": 8 } }, { "key": "14473", "source": "262", "target": "258", "attributes": { "weight": 2 } }, { "key": "23414", "source": "262", "target": "2448", "attributes": { "weight": 1 } }, { "key": "653", "source": "262", "target": "334", "attributes": { "weight": 1 } }, { "key": "22194", "source": "262", "target": "902", "attributes": { "weight": 1 } }, { "key": "18356", "source": "262", "target": "1621", "attributes": { "weight": 1 } }, { "key": "12972", "source": "262", "target": "1928", "attributes": { "weight": 2 } }, { "key": "3167", "source": "262", "target": "839", "attributes": { "weight": 7 } }, { "key": "14483", "source": "263", "target": "259", "attributes": { "weight": 1 } }, { "key": "12421", "source": "263", "target": "1851", "attributes": { "weight": 1 } }, { "key": "12420", "source": "263", "target": "1847", "attributes": { "weight": 2 } }, { "key": "14506", "source": "263", "target": "1931", "attributes": { "weight": 1 } }, { "key": "2867", "source": "263", "target": "292", "attributes": { "weight": 2 } }, { "key": "14499", "source": "263", "target": "308", "attributes": { "weight": 1 } }, { "key": "14494", "source": "263", "target": "1919", "attributes": { "weight": 2 } }, { "key": "27672", "source": "263", "target": "178", "attributes": { "weight": 2 } }, { "key": "12422", "source": "263", "target": "311", "attributes": { "weight": 5 } }, { "key": "14491", "source": "263", "target": "283", "attributes": { "weight": 3 } }, { "key": "14480", "source": "263", "target": "836", "attributes": { "weight": 1 } }, { "key": "8196", "source": "263", "target": "180", "attributes": { "weight": 4 } }, { "key": "12419", "source": "263", "target": "167", "attributes": { "weight": 5 } }, { "key": "659", "source": "263", "target": "321", "attributes": { "weight": 4 } }, { "key": "14485", "source": "263", "target": "268", "attributes": { "weight": 1 } }, { "key": "14493", "source": "263", "target": "291", "attributes": { "weight": 4 } }, { "key": "8195", "source": "263", "target": "905", "attributes": { "weight": 2 } }, { "key": "14492", "source": "263", "target": "289", "attributes": { "weight": 6 } }, { "key": "14481", "source": "263", "target": "258", "attributes": { "weight": 1 } }, { "key": "11734", "source": "263", "target": "1513", "attributes": { "weight": 1 } }, { "key": "2868", "source": "263", "target": "300", "attributes": { "weight": 6 } }, { "key": "12418", "source": "263", "target": "271", "attributes": { "weight": 2 } }, { "key": "12981", "source": "263", "target": "276", "attributes": { "weight": 3 } }, { "key": "25965", "source": "263", "target": "2622", "attributes": { "weight": 2 } }, { "key": "27921", "source": "263", "target": "1515", "attributes": { "weight": 1 } }, { "key": "655", "source": "263", "target": "264", "attributes": { "weight": 6 } }, { "key": "14484", "source": "263", "target": "265", "attributes": { "weight": 1 } }, { "key": "26168", "source": "263", "target": "1911", "attributes": { "weight": 2 } }, { "key": "12417", "source": "263", "target": "697", "attributes": { "weight": 2 } }, { "key": "12424", "source": "263", "target": "1853", "attributes": { "weight": 1 } }, { "key": "14487", "source": "263", "target": "275", "attributes": { "weight": 3 } }, { "key": "14505", "source": "263", "target": "328", "attributes": { "weight": 1 } }, { "key": "3170", "source": "263", "target": "839", "attributes": { "weight": 5 } }, { "key": "654", "source": "263", "target": "262", "attributes": { "weight": 6 } }, { "key": "14186", "source": "263", "target": "168", "attributes": { "weight": 2 } }, { "key": "12423", "source": "263", "target": "313", "attributes": { "weight": 4 } }, { "key": "14501", "source": "263", "target": "312", "attributes": { "weight": 2 } }, { "key": "14498", "source": "263", "target": "305", "attributes": { "weight": 3 } }, { "key": "658", "source": "263", "target": "307", "attributes": { "weight": 1 } }, { "key": "14482", "source": "263", "target": "164", "attributes": { "weight": 1 } }, { "key": "12426", "source": "263", "target": "326", "attributes": { "weight": 7 } }, { "key": "12427", "source": "263", "target": "334", "attributes": { "weight": 1 } }, { "key": "12983", "source": "263", "target": "314", "attributes": { "weight": 4 } }, { "key": "656", "source": "263", "target": "272", "attributes": { "weight": 6 } }, { "key": "14508", "source": "263", "target": "332", "attributes": { "weight": 1 } }, { "key": "14489", "source": "263", "target": "278", "attributes": { "weight": 4 } }, { "key": "27920", "source": "263", "target": "323", "attributes": { "weight": 2 } }, { "key": "14503", "source": "263", "target": "318", "attributes": { "weight": 3 } }, { "key": "14496", "source": "263", "target": "299", "attributes": { "weight": 5 } }, { "key": "27919", "source": "263", "target": "1918", "attributes": { "weight": 1 } }, { "key": "14507", "source": "263", "target": "1854", "attributes": { "weight": 1 } }, { "key": "22902", "source": "263", "target": "908", "attributes": { "weight": 1 } }, { "key": "660", "source": "263", "target": "327", "attributes": { "weight": 8 } }, { "key": "14502", "source": "263", "target": "1872", "attributes": { "weight": 1 } }, { "key": "14488", "source": "263", "target": "277", "attributes": { "weight": 1 } }, { "key": "22900", "source": "263", "target": "270", "attributes": { "weight": 1 } }, { "key": "17086", "source": "263", "target": "1621", "attributes": { "weight": 2 } }, { "key": "14504", "source": "263", "target": "319", "attributes": { "weight": 2 } }, { "key": "12425", "source": "263", "target": "316", "attributes": { "weight": 5 } }, { "key": "12982", "source": "263", "target": "304", "attributes": { "weight": 5 } }, { "key": "14497", "source": "263", "target": "301", "attributes": { "weight": 4 } }, { "key": "23416", "source": "263", "target": "329", "attributes": { "weight": 1 } }, { "key": "14495", "source": "263", "target": "298", "attributes": { "weight": 2 } }, { "key": "22901", "source": "263", "target": "295", "attributes": { "weight": 1 } }, { "key": "657", "source": "263", "target": "287", "attributes": { "weight": 8 } }, { "key": "14500", "source": "263", "target": "179", "attributes": { "weight": 2 } }, { "key": "14509", "source": "263", "target": "336", "attributes": { "weight": 1 } }, { "key": "14486", "source": "263", "target": "166", "attributes": { "weight": 4 } }, { "key": "12845", "source": "263", "target": "582", "attributes": { "weight": 1 } }, { "key": "684", "source": "264", "target": "292", "attributes": { "weight": 5 } }, { "key": "12991", "source": "264", "target": "272", "attributes": { "weight": 4 } }, { "key": "674", "source": "264", "target": "278", "attributes": { "weight": 3 } }, { "key": "663", "source": "264", "target": "262", "attributes": { "weight": 1 } }, { "key": "676", "source": "264", "target": "281", "attributes": { "weight": 2 } }, { "key": "681", "source": "264", "target": "288", "attributes": { "weight": 1 } }, { "key": "678", "source": "264", "target": "284", "attributes": { "weight": 7 } }, { "key": "35462", "source": "264", "target": "1857", "attributes": { "weight": 1 } }, { "key": "689", "source": "264", "target": "300", "attributes": { "weight": 5 } }, { "key": "680", "source": "264", "target": "287", "attributes": { "weight": 9 } }, { "key": "682", "source": "264", "target": "289", "attributes": { "weight": 6 } }, { "key": "14512", "source": "264", "target": "1987", "attributes": { "weight": 1 } }, { "key": "12999", "source": "264", "target": "290", "attributes": { "weight": 5 } }, { "key": "23271", "source": "264", "target": "1977", "attributes": { "weight": 1 } }, { "key": "692", "source": "264", "target": "305", "attributes": { "weight": 7 } }, { "key": "12993", "source": "264", "target": "277", "attributes": { "weight": 2 } }, { "key": "12572", "source": "264", "target": "180", "attributes": { "weight": 3 } }, { "key": "677", "source": "264", "target": "282", "attributes": { "weight": 1 } }, { "key": "694", "source": "264", "target": "307", "attributes": { "weight": 3 } }, { "key": "17991", "source": "264", "target": "1918", "attributes": { "weight": 1 } }, { "key": "673", "source": "264", "target": "169", "attributes": { "weight": 1 } }, { "key": "686", "source": "264", "target": "294", "attributes": { "weight": 5 } }, { "key": "714", "source": "264", "target": "332", "attributes": { "weight": 1 } }, { "key": "687", "source": "264", "target": "296", "attributes": { "weight": 4 } }, { "key": "672", "source": "264", "target": "168", "attributes": { "weight": 6 } }, { "key": "25966", "source": "264", "target": "2622", "attributes": { "weight": 2 } }, { "key": "12985", "source": "264", "target": "1894", "attributes": { "weight": 2 } }, { "key": "706", "source": "264", "target": "323", "attributes": { "weight": 4 } }, { "key": "685", "source": "264", "target": "293", "attributes": { "weight": 1 } }, { "key": "691", "source": "264", "target": "304", "attributes": { "weight": 6 } }, { "key": "668", "source": "264", "target": "274", "attributes": { "weight": 1 } }, { "key": "2869", "source": "264", "target": "841", "attributes": { "weight": 1 } }, { "key": "699", "source": "264", "target": "314", "attributes": { "weight": 8 } }, { "key": "18411", "source": "264", "target": "905", "attributes": { "weight": 1 } }, { "key": "698", "source": "264", "target": "313", "attributes": { "weight": 5 } }, { "key": "697", "source": "264", "target": "312", "attributes": { "weight": 7 } }, { "key": "710", "source": "264", "target": "327", "attributes": { "weight": 6 } }, { "key": "27925", "source": "264", "target": "2720", "attributes": { "weight": 1 } }, { "key": "679", "source": "264", "target": "286", "attributes": { "weight": 4 } }, { "key": "669", "source": "264", "target": "275", "attributes": { "weight": 3 } }, { "key": "17989", "source": "264", "target": "1976", "attributes": { "weight": 1 } }, { "key": "700", "source": "264", "target": "315", "attributes": { "weight": 1 } }, { "key": "705", "source": "264", "target": "322", "attributes": { "weight": 7 } }, { "key": "17990", "source": "264", "target": "1984", "attributes": { "weight": 1 } }, { "key": "12998", "source": "264", "target": "361", "attributes": { "weight": 1 } }, { "key": "662", "source": "264", "target": "260", "attributes": { "weight": 5 } }, { "key": "3171", "source": "264", "target": "839", "attributes": { "weight": 7 } }, { "key": "17987", "source": "264", "target": "258", "attributes": { "weight": 1 } }, { "key": "13001", "source": "264", "target": "299", "attributes": { "weight": 3 } }, { "key": "12996", "source": "264", "target": "1763", "attributes": { "weight": 1 } }, { "key": "11858", "source": "264", "target": "468", "attributes": { "weight": 1 } }, { "key": "12988", "source": "264", "target": "261", "attributes": { "weight": 2 } }, { "key": "13000", "source": "264", "target": "578", "attributes": { "weight": 2 } }, { "key": "15103", "source": "264", "target": "171", "attributes": { "weight": 1 } }, { "key": "707", "source": "264", "target": "324", "attributes": { "weight": 1 } }, { "key": "701", "source": "264", "target": "316", "attributes": { "weight": 6 } }, { "key": "27922", "source": "264", "target": "164", "attributes": { "weight": 2 } }, { "key": "12995", "source": "264", "target": "285", "attributes": { "weight": 2 } }, { "key": "12987", "source": "264", "target": "1895", "attributes": { "weight": 2 } }, { "key": "27923", "source": "264", "target": "837", "attributes": { "weight": 1 } }, { "key": "664", "source": "264", "target": "263", "attributes": { "weight": 6 } }, { "key": "711", "source": "264", "target": "328", "attributes": { "weight": 5 } }, { "key": "13008", "source": "264", "target": "1933", "attributes": { "weight": 2 } }, { "key": "12992", "source": "264", "target": "454", "attributes": { "weight": 2 } }, { "key": "12989", "source": "264", "target": "1898", "attributes": { "weight": 2 } }, { "key": "37474", "source": "264", "target": "283", "attributes": { "weight": 1 } }, { "key": "13010", "source": "264", "target": "334", "attributes": { "weight": 2 } }, { "key": "695", "source": "264", "target": "308", "attributes": { "weight": 3 } }, { "key": "19001", "source": "264", "target": "1872", "attributes": { "weight": 2 } }, { "key": "12990", "source": "264", "target": "265", "attributes": { "weight": 3 } }, { "key": "27924", "source": "264", "target": "838", "attributes": { "weight": 1 } }, { "key": "696", "source": "264", "target": "311", "attributes": { "weight": 5 } }, { "key": "13004", "source": "264", "target": "179", "attributes": { "weight": 3 } }, { "key": "666", "source": "264", "target": "270", "attributes": { "weight": 1 } }, { "key": "12997", "source": "264", "target": "1917", "attributes": { "weight": 2 } }, { "key": "671", "source": "264", "target": "167", "attributes": { "weight": 9 } }, { "key": "670", "source": "264", "target": "276", "attributes": { "weight": 5 } }, { "key": "13002", "source": "264", "target": "580", "attributes": { "weight": 2 } }, { "key": "683", "source": "264", "target": "291", "attributes": { "weight": 4 } }, { "key": "713", "source": "264", "target": "331", "attributes": { "weight": 1 } }, { "key": "693", "source": "264", "target": "306", "attributes": { "weight": 3 } }, { "key": "665", "source": "264", "target": "267", "attributes": { "weight": 4 } }, { "key": "13011", "source": "264", "target": "336", "attributes": { "weight": 2 } }, { "key": "14510", "source": "264", "target": "220", "attributes": { "weight": 2 } }, { "key": "708", "source": "264", "target": "325", "attributes": { "weight": 3 } }, { "key": "703", "source": "264", "target": "319", "attributes": { "weight": 5 } }, { "key": "30357", "source": "264", "target": "1046", "attributes": { "weight": 1 } }, { "key": "13009", "source": "264", "target": "1854", "attributes": { "weight": 3 } }, { "key": "667", "source": "264", "target": "166", "attributes": { "weight": 5 } }, { "key": "35463", "source": "264", "target": "574", "attributes": { "weight": 1 } }, { "key": "712", "source": "264", "target": "329", "attributes": { "weight": 1 } }, { "key": "709", "source": "264", "target": "326", "attributes": { "weight": 8 } }, { "key": "12994", "source": "264", "target": "1912", "attributes": { "weight": 2 } }, { "key": "11044", "source": "264", "target": "1036", "attributes": { "weight": 3 } }, { "key": "704", "source": "264", "target": "321", "attributes": { "weight": 4 } }, { "key": "13006", "source": "264", "target": "1931", "attributes": { "weight": 2 } }, { "key": "12986", "source": "264", "target": "645", "attributes": { "weight": 1 } }, { "key": "13007", "source": "264", "target": "1932", "attributes": { "weight": 2 } }, { "key": "17988", "source": "264", "target": "1913", "attributes": { "weight": 1 } }, { "key": "702", "source": "264", "target": "318", "attributes": { "weight": 5 } }, { "key": "661", "source": "264", "target": "259", "attributes": { "weight": 6 } }, { "key": "13003", "source": "264", "target": "178", "attributes": { "weight": 3 } }, { "key": "17992", "source": "264", "target": "908", "attributes": { "weight": 1 } }, { "key": "688", "source": "264", "target": "297", "attributes": { "weight": 1 } }, { "key": "14511", "source": "264", "target": "836", "attributes": { "weight": 1 } }, { "key": "13005", "source": "264", "target": "320", "attributes": { "weight": 2 } }, { "key": "690", "source": "264", "target": "301", "attributes": { "weight": 3 } }, { "key": "13015", "source": "265", "target": "304", "attributes": { "weight": 3 } }, { "key": "25967", "source": "265", "target": "2622", "attributes": { "weight": 2 } }, { "key": "715", "source": "265", "target": "262", "attributes": { "weight": 2 } }, { "key": "718", "source": "265", "target": "336", "attributes": { "weight": 1 } }, { "key": "27927", "source": "265", "target": "271", "attributes": { "weight": 1 } }, { "key": "13016", "source": "265", "target": "307", "attributes": { "weight": 3 } }, { "key": "14513", "source": "265", "target": "263", "attributes": { "weight": 1 } }, { "key": "13014", "source": "265", "target": "264", "attributes": { "weight": 3 } }, { "key": "26169", "source": "265", "target": "287", "attributes": { "weight": 2 } }, { "key": "13013", "source": "265", "target": "259", "attributes": { "weight": 3 } }, { "key": "27928", "source": "265", "target": "290", "attributes": { "weight": 1 } }, { "key": "13017", "source": "265", "target": "312", "attributes": { "weight": 4 } }, { "key": "27929", "source": "265", "target": "326", "attributes": { "weight": 1 } }, { "key": "14514", "source": "265", "target": "272", "attributes": { "weight": 2 } }, { "key": "716", "source": "265", "target": "277", "attributes": { "weight": 3 } }, { "key": "717", "source": "265", "target": "327", "attributes": { "weight": 2 } }, { "key": "27926", "source": "265", "target": "268", "attributes": { "weight": 1 } }, { "key": "14515", "source": "265", "target": "318", "attributes": { "weight": 2 } }, { "key": "22903", "source": "266", "target": "307", "attributes": { "weight": 1 } }, { "key": "25968", "source": "266", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13018", "source": "266", "target": "304", "attributes": { "weight": 2 } }, { "key": "719", "source": "266", "target": "318", "attributes": { "weight": 3 } }, { "key": "14518", "source": "266", "target": "1898", "attributes": { "weight": 1 } }, { "key": "27932", "source": "266", "target": "305", "attributes": { "weight": 1 } }, { "key": "22904", "source": "266", "target": "326", "attributes": { "weight": 1 } }, { "key": "720", "source": "267", "target": "264", "attributes": { "weight": 4 } }, { "key": "22203", "source": "268", "target": "902", "attributes": { "weight": 1 } }, { "key": "2872", "source": "268", "target": "322", "attributes": { "weight": 4 } }, { "key": "22205", "source": "268", "target": "1984", "attributes": { "weight": 2 } }, { "key": "14528", "source": "268", "target": "299", "attributes": { "weight": 4 } }, { "key": "22206", "source": "268", "target": "2230", "attributes": { "weight": 1 } }, { "key": "27552", "source": "268", "target": "327", "attributes": { "weight": 1 } }, { "key": "14529", "source": "268", "target": "579", "attributes": { "weight": 1 } }, { "key": "13031", "source": "268", "target": "170", "attributes": { "weight": 3 } }, { "key": "14532", "source": "268", "target": "1934", "attributes": { "weight": 1 } }, { "key": "22199", "source": "268", "target": "1897", "attributes": { "weight": 1 } }, { "key": "27939", "source": "268", "target": "287", "attributes": { "weight": 1 } }, { "key": "12428", "source": "268", "target": "1854", "attributes": { "weight": 1 } }, { "key": "13037", "source": "268", "target": "313", "attributes": { "weight": 5 } }, { "key": "27938", "source": "268", "target": "265", "attributes": { "weight": 1 } }, { "key": "13036", "source": "268", "target": "312", "attributes": { "weight": 3 } }, { "key": "722", "source": "268", "target": "167", "attributes": { "weight": 10 } }, { "key": "2871", "source": "268", "target": "316", "attributes": { "weight": 8 } }, { "key": "23418", "source": "268", "target": "2449", "attributes": { "weight": 1 } }, { "key": "27551", "source": "268", "target": "272", "attributes": { "weight": 1 } }, { "key": "14522", "source": "268", "target": "259", "attributes": { "weight": 1 } }, { "key": "14523", "source": "268", "target": "697", "attributes": { "weight": 1 } }, { "key": "723", "source": "268", "target": "277", "attributes": { "weight": 3 } }, { "key": "721", "source": "268", "target": "262", "attributes": { "weight": 1 } }, { "key": "13029", "source": "268", "target": "168", "attributes": { "weight": 2 } }, { "key": "13033", "source": "268", "target": "580", "attributes": { "weight": 5 } }, { "key": "13027", "source": "268", "target": "276", "attributes": { "weight": 3 } }, { "key": "14525", "source": "268", "target": "275", "attributes": { "weight": 1 } }, { "key": "14530", "source": "268", "target": "1962", "attributes": { "weight": 1 } }, { "key": "13032", "source": "268", "target": "300", "attributes": { "weight": 5 } }, { "key": "14531", "source": "268", "target": "1872", "attributes": { "weight": 1 } }, { "key": "3173", "source": "268", "target": "308", "attributes": { "weight": 2 } }, { "key": "27937", "source": "268", "target": "1896", "attributes": { "weight": 1 } }, { "key": "14526", "source": "268", "target": "286", "attributes": { "weight": 1 } }, { "key": "13040", "source": "268", "target": "326", "attributes": { "weight": 5 } }, { "key": "22200", "source": "268", "target": "2310", "attributes": { "weight": 1 } }, { "key": "11735", "source": "268", "target": "180", "attributes": { "weight": 4 } }, { "key": "724", "source": "268", "target": "314", "attributes": { "weight": 6 } }, { "key": "14527", "source": "268", "target": "1920", "attributes": { "weight": 1 } }, { "key": "13038", "source": "268", "target": "318", "attributes": { "weight": 4 } }, { "key": "13028", "source": "268", "target": "1905", "attributes": { "weight": 2 } }, { "key": "13035", "source": "268", "target": "304", "attributes": { "weight": 6 } }, { "key": "22905", "source": "268", "target": "295", "attributes": { "weight": 1 } }, { "key": "22202", "source": "268", "target": "274", "attributes": { "weight": 1 } }, { "key": "27940", "source": "268", "target": "1981", "attributes": { "weight": 1 } }, { "key": "14524", "source": "268", "target": "263", "attributes": { "weight": 1 } }, { "key": "22204", "source": "268", "target": "1976", "attributes": { "weight": 1 } }, { "key": "13026", "source": "268", "target": "698", "attributes": { "weight": 2 } }, { "key": "13039", "source": "268", "target": "323", "attributes": { "weight": 2 } }, { "key": "725", "source": "268", "target": "329", "attributes": { "weight": 1 } }, { "key": "14534", "source": "268", "target": "332", "attributes": { "weight": 1 } }, { "key": "23417", "source": "268", "target": "1849", "attributes": { "weight": 1 } }, { "key": "22201", "source": "268", "target": "1903", "attributes": { "weight": 1 } }, { "key": "13030", "source": "268", "target": "278", "attributes": { "weight": 4 } }, { "key": "13025", "source": "268", "target": "260", "attributes": { "weight": 6 } }, { "key": "27941", "source": "268", "target": "906", "attributes": { "weight": 1 } }, { "key": "3172", "source": "268", "target": "305", "attributes": { "weight": 7 } }, { "key": "14533", "source": "268", "target": "1515", "attributes": { "weight": 1 } }, { "key": "14537", "source": "269", "target": "326", "attributes": { "weight": 2 } }, { "key": "24778", "source": "269", "target": "167", "attributes": { "weight": 1 } }, { "key": "726", "source": "269", "target": "291", "attributes": { "weight": 2 } }, { "key": "14536", "source": "269", "target": "319", "attributes": { "weight": 2 } }, { "key": "19003", "source": "270", "target": "326", "attributes": { "weight": 3 } }, { "key": "13042", "source": "270", "target": "304", "attributes": { "weight": 2 } }, { "key": "22210", "source": "270", "target": "262", "attributes": { "weight": 1 } }, { "key": "22914", "source": "270", "target": "322", "attributes": { "weight": 1 } }, { "key": "27945", "source": "270", "target": "287", "attributes": { "weight": 1 } }, { "key": "22912", "source": "270", "target": "316", "attributes": { "weight": 1 } }, { "key": "22906", "source": "270", "target": "263", "attributes": { "weight": 1 } }, { "key": "14541", "source": "270", "target": "260", "attributes": { "weight": 2 } }, { "key": "22910", "source": "270", "target": "300", "attributes": { "weight": 1 } }, { "key": "727", "source": "270", "target": "264", "attributes": { "weight": 1 } }, { "key": "728", "source": "270", "target": "307", "attributes": { "weight": 1 } }, { "key": "22908", "source": "270", "target": "167", "attributes": { "weight": 1 } }, { "key": "22911", "source": "270", "target": "308", "attributes": { "weight": 1 } }, { "key": "27944", "source": "270", "target": "277", "attributes": { "weight": 1 } }, { "key": "25969", "source": "270", "target": "2622", "attributes": { "weight": 2 } }, { "key": "22907", "source": "270", "target": "275", "attributes": { "weight": 1 } }, { "key": "22913", "source": "270", "target": "319", "attributes": { "weight": 1 } }, { "key": "13043", "source": "270", "target": "318", "attributes": { "weight": 2 } }, { "key": "14545", "source": "271", "target": "259", "attributes": { "weight": 1 } }, { "key": "14547", "source": "271", "target": "180", "attributes": { "weight": 2 } }, { "key": "14546", "source": "271", "target": "312", "attributes": { "weight": 1 } }, { "key": "13046", "source": "271", "target": "304", "attributes": { "weight": 3 } }, { "key": "729", "source": "271", "target": "262", "attributes": { "weight": 2 } }, { "key": "730", "source": "271", "target": "300", "attributes": { "weight": 2 } }, { "key": "27947", "source": "271", "target": "265", "attributes": { "weight": 1 } }, { "key": "3174", "source": "271", "target": "305", "attributes": { "weight": 3 } }, { "key": "24779", "source": "271", "target": "326", "attributes": { "weight": 2 } }, { "key": "12430", "source": "271", "target": "316", "attributes": { "weight": 1 } }, { "key": "12429", "source": "271", "target": "263", "attributes": { "weight": 2 } }, { "key": "14548", "source": "271", "target": "318", "attributes": { "weight": 1 } }, { "key": "22211", "source": "272", "target": "1984", "attributes": { "weight": 1 } }, { "key": "13058", "source": "272", "target": "323", "attributes": { "weight": 2 } }, { "key": "14560", "source": "272", "target": "578", "attributes": { "weight": 2 } }, { "key": "13057", "source": "272", "target": "314", "attributes": { "weight": 5 } }, { "key": "28348", "source": "272", "target": "170", "attributes": { "weight": 2 } }, { "key": "11737", "source": "272", "target": "180", "attributes": { "weight": 2 } }, { "key": "14553", "source": "272", "target": "262", "attributes": { "weight": 3 } }, { "key": "23273", "source": "272", "target": "305", "attributes": { "weight": 2 } }, { "key": "14551", "source": "272", "target": "567", "attributes": { "weight": 2 } }, { "key": "14552", "source": "272", "target": "260", "attributes": { "weight": 4 } }, { "key": "8197", "source": "272", "target": "315", "attributes": { "weight": 3 } }, { "key": "35481", "source": "272", "target": "177", "attributes": { "weight": 1 } }, { "key": "14563", "source": "272", "target": "311", "attributes": { "weight": 3 } }, { "key": "14565", "source": "272", "target": "313", "attributes": { "weight": 3 } }, { "key": "14199", "source": "272", "target": "168", "attributes": { "weight": 4 } }, { "key": "27556", "source": "272", "target": "318", "attributes": { "weight": 1 } }, { "key": "22594", "source": "272", "target": "1513", "attributes": { "weight": 1 } }, { "key": "14550", "source": "272", "target": "259", "attributes": { "weight": 3 } }, { "key": "14556", "source": "272", "target": "277", "attributes": { "weight": 2 } }, { "key": "14562", "source": "272", "target": "178", "attributes": { "weight": 2 } }, { "key": "14549", "source": "272", "target": "164", "attributes": { "weight": 2 } }, { "key": "13051", "source": "272", "target": "264", "attributes": { "weight": 4 } }, { "key": "14558", "source": "272", "target": "171", "attributes": { "weight": 3 } }, { "key": "22917", "source": "272", "target": "902", "attributes": { "weight": 1 } }, { "key": "731", "source": "272", "target": "263", "attributes": { "weight": 6 } }, { "key": "24781", "source": "272", "target": "261", "attributes": { "weight": 1 } }, { "key": "14566", "source": "272", "target": "322", "attributes": { "weight": 3 } }, { "key": "11736", "source": "272", "target": "905", "attributes": { "weight": 3 } }, { "key": "24782", "source": "272", "target": "329", "attributes": { "weight": 1 } }, { "key": "13059", "source": "272", "target": "336", "attributes": { "weight": 4 } }, { "key": "14554", "source": "272", "target": "265", "attributes": { "weight": 2 } }, { "key": "13056", "source": "272", "target": "304", "attributes": { "weight": 5 } }, { "key": "14559", "source": "272", "target": "289", "attributes": { "weight": 3 } }, { "key": "22916", "source": "272", "target": "276", "attributes": { "weight": 3 } }, { "key": "13055", "source": "272", "target": "300", "attributes": { "weight": 8 } }, { "key": "13054", "source": "272", "target": "290", "attributes": { "weight": 4 } }, { "key": "732", "source": "272", "target": "326", "attributes": { "weight": 5 } }, { "key": "14555", "source": "272", "target": "167", "attributes": { "weight": 2 } }, { "key": "13052", "source": "272", "target": "166", "attributes": { "weight": 5 } }, { "key": "27553", "source": "272", "target": "697", "attributes": { "weight": 1 } }, { "key": "13053", "source": "272", "target": "1912", "attributes": { "weight": 2 } }, { "key": "14564", "source": "272", "target": "312", "attributes": { "weight": 4 } }, { "key": "2875", "source": "272", "target": "301", "attributes": { "weight": 4 } }, { "key": "14557", "source": "272", "target": "287", "attributes": { "weight": 3 } }, { "key": "27554", "source": "272", "target": "268", "attributes": { "weight": 1 } }, { "key": "27555", "source": "272", "target": "316", "attributes": { "weight": 1 } }, { "key": "14561", "source": "272", "target": "839", "attributes": { "weight": 4 } }, { "key": "733", "source": "273", "target": "294", "attributes": { "weight": 1 } }, { "key": "734", "source": "273", "target": "326", "attributes": { "weight": 1 } }, { "key": "22215", "source": "274", "target": "268", "attributes": { "weight": 1 } }, { "key": "27953", "source": "274", "target": "305", "attributes": { "weight": 1 } }, { "key": "27954", "source": "274", "target": "839", "attributes": { "weight": 1 } }, { "key": "22214", "source": "274", "target": "262", "attributes": { "weight": 1 } }, { "key": "740", "source": "274", "target": "264", "attributes": { "weight": 1 } }, { "key": "14579", "source": "274", "target": "259", "attributes": { "weight": 1 } }, { "key": "13093", "source": "275", "target": "322", "attributes": { "weight": 3 } }, { "key": "741", "source": "275", "target": "264", "attributes": { "weight": 3 } }, { "key": "13090", "source": "275", "target": "305", "attributes": { "weight": 2 } }, { "key": "13092", "source": "275", "target": "314", "attributes": { "weight": 4 } }, { "key": "12578", "source": "275", "target": "180", "attributes": { "weight": 2 } }, { "key": "14581", "source": "275", "target": "263", "attributes": { "weight": 3 } }, { "key": "22938", "source": "275", "target": "1923", "attributes": { "weight": 1 } }, { "key": "25972", "source": "275", "target": "2622", "attributes": { "weight": 2 } }, { "key": "22939", "source": "275", "target": "1927", "attributes": { "weight": 2 } }, { "key": "13086", "source": "275", "target": "259", "attributes": { "weight": 4 } }, { "key": "14588", "source": "275", "target": "1930", "attributes": { "weight": 3 } }, { "key": "13091", "source": "275", "target": "307", "attributes": { "weight": 3 } }, { "key": "14585", "source": "275", "target": "313", "attributes": { "weight": 1 } }, { "key": "22936", "source": "275", "target": "1907", "attributes": { "weight": 2 } }, { "key": "3175", "source": "275", "target": "308", "attributes": { "weight": 2 } }, { "key": "22932", "source": "275", "target": "260", "attributes": { "weight": 3 } }, { "key": "13089", "source": "275", "target": "304", "attributes": { "weight": 4 } }, { "key": "14580", "source": "275", "target": "261", "attributes": { "weight": 1 } }, { "key": "22937", "source": "275", "target": "303", "attributes": { "weight": 1 } }, { "key": "14582", "source": "275", "target": "268", "attributes": { "weight": 1 } }, { "key": "22935", "source": "275", "target": "2396", "attributes": { "weight": 1 } }, { "key": "29794", "source": "275", "target": "262", "attributes": { "weight": 1 } }, { "key": "13088", "source": "275", "target": "1906", "attributes": { "weight": 5 } }, { "key": "24785", "source": "275", "target": "2532", "attributes": { "weight": 1 } }, { "key": "14584", "source": "275", "target": "300", "attributes": { "weight": 3 } }, { "key": "14587", "source": "275", "target": "319", "attributes": { "weight": 1 } }, { "key": "22933", "source": "275", "target": "1897", "attributes": { "weight": 3 } }, { "key": "19006", "source": "275", "target": "839", "attributes": { "weight": 2 } }, { "key": "14586", "source": "275", "target": "1925", "attributes": { "weight": 3 } }, { "key": "13087", "source": "275", "target": "167", "attributes": { "weight": 4 } }, { "key": "24784", "source": "275", "target": "286", "attributes": { "weight": 1 } }, { "key": "23429", "source": "275", "target": "277", "attributes": { "weight": 2 } }, { "key": "12433", "source": "275", "target": "316", "attributes": { "weight": 6 } }, { "key": "2877", "source": "275", "target": "318", "attributes": { "weight": 2 } }, { "key": "22934", "source": "275", "target": "270", "attributes": { "weight": 1 } }, { "key": "22940", "source": "275", "target": "326", "attributes": { "weight": 3 } }, { "key": "13097", "source": "276", "target": "278", "attributes": { "weight": 2 } }, { "key": "27955", "source": "276", "target": "262", "attributes": { "weight": 2 } }, { "key": "27956", "source": "276", "target": "168", "attributes": { "weight": 1 } }, { "key": "23430", "source": "276", "target": "166", "attributes": { "weight": 1 } }, { "key": "14592", "source": "276", "target": "326", "attributes": { "weight": 4 } }, { "key": "13095", "source": "276", "target": "263", "attributes": { "weight": 3 } }, { "key": "14589", "source": "276", "target": "261", "attributes": { "weight": 1 } }, { "key": "13096", "source": "276", "target": "268", "attributes": { "weight": 3 } }, { "key": "18412", "source": "276", "target": "180", "attributes": { "weight": 2 } }, { "key": "13101", "source": "276", "target": "312", "attributes": { "weight": 4 } }, { "key": "31089", "source": "276", "target": "1854", "attributes": { "weight": 1 } }, { "key": "13094", "source": "276", "target": "259", "attributes": { "weight": 5 } }, { "key": "27957", "source": "276", "target": "290", "attributes": { "weight": 1 } }, { "key": "22942", "source": "276", "target": "272", "attributes": { "weight": 3 } }, { "key": "14590", "source": "276", "target": "277", "attributes": { "weight": 2 } }, { "key": "29795", "source": "276", "target": "307", "attributes": { "weight": 1 } }, { "key": "13102", "source": "276", "target": "313", "attributes": { "weight": 4 } }, { "key": "13103", "source": "276", "target": "327", "attributes": { "weight": 7 } }, { "key": "742", "source": "276", "target": "264", "attributes": { "weight": 4 } }, { "key": "27958", "source": "276", "target": "1872", "attributes": { "weight": 1 } }, { "key": "23431", "source": "276", "target": "291", "attributes": { "weight": 1 } }, { "key": "22943", "source": "276", "target": "301", "attributes": { "weight": 1 } }, { "key": "14593", "source": "276", "target": "336", "attributes": { "weight": 1 } }, { "key": "14591", "source": "276", "target": "318", "attributes": { "weight": 3 } }, { "key": "2879", "source": "276", "target": "292", "attributes": { "weight": 1 } }, { "key": "13100", "source": "276", "target": "304", "attributes": { "weight": 3 } }, { "key": "22596", "source": "276", "target": "315", "attributes": { "weight": 1 } }, { "key": "22595", "source": "276", "target": "905", "attributes": { "weight": 1 } }, { "key": "2878", "source": "276", "target": "287", "attributes": { "weight": 4 } }, { "key": "13098", "source": "276", "target": "289", "attributes": { "weight": 2 } }, { "key": "22944", "source": "276", "target": "179", "attributes": { "weight": 1 } }, { "key": "23432", "source": "276", "target": "311", "attributes": { "weight": 1 } }, { "key": "13099", "source": "276", "target": "578", "attributes": { "weight": 2 } }, { "key": "2880", "source": "276", "target": "305", "attributes": { "weight": 2 } }, { "key": "22941", "source": "276", "target": "260", "attributes": { "weight": 1 } }, { "key": "23724", "source": "277", "target": "168", "attributes": { "weight": 1 } }, { "key": "12436", "source": "277", "target": "1846", "attributes": { "weight": 2 } }, { "key": "12438", "source": "277", "target": "1849", "attributes": { "weight": 1 } }, { "key": "33775", "source": "277", "target": "14", "attributes": { "weight": 1 } }, { "key": "12583", "source": "277", "target": "180", "attributes": { "weight": 2 } }, { "key": "14617", "source": "277", "target": "286", "attributes": { "weight": 3 } }, { "key": "13146", "source": "277", "target": "312", "attributes": { "weight": 3 } }, { "key": "3186", "source": "277", "target": "305", "attributes": { "weight": 5 } }, { "key": "30581", "source": "277", "target": "25", "attributes": { "weight": 1 } }, { "key": "14624", "source": "277", "target": "1515", "attributes": { "weight": 2 } }, { "key": "769", "source": "277", "target": "329", "attributes": { "weight": 1 } }, { "key": "765", "source": "277", "target": "316", "attributes": { "weight": 8 } }, { "key": "14625", "source": "277", "target": "332", "attributes": { "weight": 1 } }, { "key": "763", "source": "277", "target": "308", "attributes": { "weight": 3 } }, { "key": "762", "source": "277", "target": "303", "attributes": { "weight": 1 } }, { "key": "33774", "source": "277", "target": "13", "attributes": { "weight": 1 } }, { "key": "13147", "source": "277", "target": "313", "attributes": { "weight": 6 } }, { "key": "14616", "source": "277", "target": "278", "attributes": { "weight": 2 } }, { "key": "14622", "source": "277", "target": "1931", "attributes": { "weight": 1 } }, { "key": "13149", "source": "277", "target": "1854", "attributes": { "weight": 5 } }, { "key": "13143", "source": "277", "target": "259", "attributes": { "weight": 3 } }, { "key": "27981", "source": "277", "target": "1897", "attributes": { "weight": 1 } }, { "key": "23435", "source": "277", "target": "2310", "attributes": { "weight": 1 } }, { "key": "12439", "source": "277", "target": "1850", "attributes": { "weight": 1 } }, { "key": "13148", "source": "277", "target": "318", "attributes": { "weight": 2 } }, { "key": "756", "source": "277", "target": "260", "attributes": { "weight": 7 } }, { "key": "24790", "source": "277", "target": "1925", "attributes": { "weight": 2 } }, { "key": "14620", "source": "277", "target": "1981", "attributes": { "weight": 1 } }, { "key": "13144", "source": "277", "target": "264", "attributes": { "weight": 2 } }, { "key": "767", "source": "277", "target": "322", "attributes": { "weight": 1 } }, { "key": "14613", "source": "277", "target": "272", "attributes": { "weight": 2 } }, { "key": "14615", "source": "277", "target": "167", "attributes": { "weight": 3 } }, { "key": "14619", "source": "277", "target": "170", "attributes": { "weight": 1 } }, { "key": "25975", "source": "277", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14618", "source": "277", "target": "1979", "attributes": { "weight": 1 } }, { "key": "3185", "source": "277", "target": "902", "attributes": { "weight": 1 } }, { "key": "14621", "source": "277", "target": "1852", "attributes": { "weight": 1 } }, { "key": "766", "source": "277", "target": "321", "attributes": { "weight": 1 } }, { "key": "12437", "source": "277", "target": "1848", "attributes": { "weight": 2 } }, { "key": "27983", "source": "277", "target": "1976", "attributes": { "weight": 1 } }, { "key": "758", "source": "277", "target": "268", "attributes": { "weight": 3 } }, { "key": "761", "source": "277", "target": "300", "attributes": { "weight": 3 } }, { "key": "764", "source": "277", "target": "314", "attributes": { "weight": 7 } }, { "key": "24420", "source": "277", "target": "19", "attributes": { "weight": 1 } }, { "key": "14623", "source": "277", "target": "1933", "attributes": { "weight": 1 } }, { "key": "13145", "source": "277", "target": "304", "attributes": { "weight": 6 } }, { "key": "31605", "source": "277", "target": "2461", "attributes": { "weight": 1 } }, { "key": "23865", "source": "277", "target": "1965", "attributes": { "weight": 2 } }, { "key": "757", "source": "277", "target": "265", "attributes": { "weight": 3 } }, { "key": "14612", "source": "277", "target": "263", "attributes": { "weight": 1 } }, { "key": "22957", "source": "277", "target": "1906", "attributes": { "weight": 1 } }, { "key": "760", "source": "277", "target": "299", "attributes": { "weight": 2 } }, { "key": "27982", "source": "277", "target": "270", "attributes": { "weight": 1 } }, { "key": "768", "source": "277", "target": "326", "attributes": { "weight": 5 } }, { "key": "14611", "source": "277", "target": "697", "attributes": { "weight": 1 } }, { "key": "23436", "source": "277", "target": "275", "attributes": { "weight": 2 } }, { "key": "14614", "source": "277", "target": "276", "attributes": { "weight": 2 } }, { "key": "25735", "source": "278", "target": "1063", "attributes": { "weight": 1 } }, { "key": "28395", "source": "278", "target": "907", "attributes": { "weight": 2 } }, { "key": "25717", "source": "278", "target": "2280", "attributes": { "weight": 1 } }, { "key": "26840", "source": "278", "target": "569", "attributes": { "weight": 2 } }, { "key": "26843", "source": "278", "target": "1512", "attributes": { "weight": 3 } }, { "key": "25734", "source": "278", "target": "327", "attributes": { "weight": 2 } }, { "key": "25699", "source": "278", "target": "2546", "attributes": { "weight": 1 } }, { "key": "28393", "source": "278", "target": "2345", "attributes": { "weight": 2 } }, { "key": "25705", "source": "278", "target": "1857", "attributes": { "weight": 3 } }, { "key": "14631", "source": "278", "target": "259", "attributes": { "weight": 3 } }, { "key": "11154", "source": "278", "target": "473", "attributes": { "weight": 2 } }, { "key": "15851", "source": "278", "target": "370", "attributes": { "weight": 4 } }, { "key": "1869", "source": "278", "target": "93", "attributes": { "weight": 6 } }, { "key": "17466", "source": "278", "target": "358", "attributes": { "weight": 2 } }, { "key": "13168", "source": "278", "target": "1854", "attributes": { "weight": 5 } }, { "key": "15848", "source": "278", "target": "913", "attributes": { "weight": 1 } }, { "key": "14638", "source": "278", "target": "307", "attributes": { "weight": 2 } }, { "key": "24978", "source": "278", "target": "1191", "attributes": { "weight": 4 } }, { "key": "13164", "source": "278", "target": "304", "attributes": { "weight": 4 } }, { "key": "15106", "source": "278", "target": "171", "attributes": { "weight": 3 } }, { "key": "25732", "source": "278", "target": "1967", "attributes": { "weight": 5 } }, { "key": "25721", "source": "278", "target": "1561", "attributes": { "weight": 2 } }, { "key": "12584", "source": "278", "target": "180", "attributes": { "weight": 7 } }, { "key": "28396", "source": "278", "target": "1962", "attributes": { "weight": 2 } }, { "key": "15847", "source": "278", "target": "195", "attributes": { "weight": 2 } }, { "key": "25703", "source": "278", "target": "697", "attributes": { "weight": 2 } }, { "key": "15850", "source": "278", "target": "1232", "attributes": { "weight": 2 } }, { "key": "2411", "source": "278", "target": "580", "attributes": { "weight": 10 } }, { "key": "29196", "source": "278", "target": "286", "attributes": { "weight": 1 } }, { "key": "29200", "source": "278", "target": "309", "attributes": { "weight": 1 } }, { "key": "23866", "source": "278", "target": "2461", "attributes": { "weight": 3 } }, { "key": "25708", "source": "278", "target": "707", "attributes": { "weight": 3 } }, { "key": "13160", "source": "278", "target": "262", "attributes": { "weight": 2 } }, { "key": "2968", "source": "278", "target": "176", "attributes": { "weight": 3 } }, { "key": "25704", "source": "278", "target": "1042", "attributes": { "weight": 1 } }, { "key": "26590", "source": "278", "target": "189", "attributes": { "weight": 1 } }, { "key": "22478", "source": "278", "target": "567", "attributes": { "weight": 3 } }, { "key": "2412", "source": "278", "target": "313", "attributes": { "weight": 6 } }, { "key": "25700", "source": "278", "target": "564", "attributes": { "weight": 4 } }, { "key": "25707", "source": "278", "target": "574", "attributes": { "weight": 3 } }, { "key": "1868", "source": "278", "target": "91", "attributes": { "weight": 3 } }, { "key": "14632", "source": "278", "target": "260", "attributes": { "weight": 2 } }, { "key": "25729", "source": "278", "target": "1872", "attributes": { "weight": 2 } }, { "key": "27985", "source": "278", "target": "290", "attributes": { "weight": 2 } }, { "key": "29201", "source": "278", "target": "2551", "attributes": { "weight": 1 } }, { "key": "13166", "source": "278", "target": "316", "attributes": { "weight": 4 } }, { "key": "2841", "source": "278", "target": "169", "attributes": { "weight": 4 } }, { "key": "13161", "source": "278", "target": "268", "attributes": { "weight": 4 } }, { "key": "25728", "source": "278", "target": "340", "attributes": { "weight": 1 } }, { "key": "7318", "source": "278", "target": "333", "attributes": { "weight": 3 } }, { "key": "2405", "source": "278", "target": "164", "attributes": { "weight": 10 } }, { "key": "15856", "source": "278", "target": "1322", "attributes": { "weight": 4 } }, { "key": "1867", "source": "278", "target": "566", "attributes": { "weight": 7 } }, { "key": "25727", "source": "278", "target": "1924", "attributes": { "weight": 1 } }, { "key": "15854", "source": "278", "target": "123", "attributes": { "weight": 3 } }, { "key": "13165", "source": "278", "target": "314", "attributes": { "weight": 6 } }, { "key": "2408", "source": "278", "target": "168", "attributes": { "weight": 10 } }, { "key": "28394", "source": "278", "target": "1823", "attributes": { "weight": 2 } }, { "key": "25697", "source": "278", "target": "220", "attributes": { "weight": 2 } }, { "key": "25715", "source": "278", "target": "1280", "attributes": { "weight": 1 } }, { "key": "25701", "source": "278", "target": "1166", "attributes": { "weight": 1 } }, { "key": "14637", "source": "278", "target": "305", "attributes": { "weight": 5 } }, { "key": "25698", "source": "278", "target": "2536", "attributes": { "weight": 1 } }, { "key": "24980", "source": "278", "target": "1870", "attributes": { "weight": 2 } }, { "key": "25714", "source": "278", "target": "471", "attributes": { "weight": 1 } }, { "key": "25713", "source": "278", "target": "8", "attributes": { "weight": 1 } }, { "key": "26841", "source": "278", "target": "578", "attributes": { "weight": 3 } }, { "key": "24979", "source": "278", "target": "1979", "attributes": { "weight": 2 } }, { "key": "28392", "source": "278", "target": "2540", "attributes": { "weight": 2 } }, { "key": "9472", "source": "278", "target": "178", "attributes": { "weight": 5 } }, { "key": "26842", "source": "278", "target": "1822", "attributes": { "weight": 1 } }, { "key": "29197", "source": "278", "target": "1965", "attributes": { "weight": 2 } }, { "key": "15853", "source": "278", "target": "338", "attributes": { "weight": 5 } }, { "key": "11890", "source": "278", "target": "468", "attributes": { "weight": 3 } }, { "key": "25696", "source": "278", "target": "1146", "attributes": { "weight": 1 } }, { "key": "25720", "source": "278", "target": "479", "attributes": { "weight": 2 } }, { "key": "29195", "source": "278", "target": "1046", "attributes": { "weight": 2 } }, { "key": "25709", "source": "278", "target": "1233", "attributes": { "weight": 1 } }, { "key": "25706", "source": "278", "target": "454", "attributes": { "weight": 3 } }, { "key": "22479", "source": "278", "target": "572", "attributes": { "weight": 3 } }, { "key": "25722", "source": "278", "target": "1060", "attributes": { "weight": 1 } }, { "key": "25710", "source": "278", "target": "791", "attributes": { "weight": 3 } }, { "key": "25615", "source": "278", "target": "787", "attributes": { "weight": 2 } }, { "key": "27986", "source": "278", "target": "300", "attributes": { "weight": 2 } }, { "key": "8776", "source": "278", "target": "442", "attributes": { "weight": 3 } }, { "key": "23755", "source": "278", "target": "1774", "attributes": { "weight": 3 } }, { "key": "15852", "source": "278", "target": "337", "attributes": { "weight": 2 } }, { "key": "28397", "source": "278", "target": "1825", "attributes": { "weight": 2 } }, { "key": "25712", "source": "278", "target": "361", "attributes": { "weight": 1 } }, { "key": "28390", "source": "278", "target": "1905", "attributes": { "weight": 3 } }, { "key": "13167", "source": "278", "target": "1934", "attributes": { "weight": 4 } }, { "key": "18062", "source": "278", "target": "1036", "attributes": { "weight": 3 } }, { "key": "14634", "source": "278", "target": "263", "attributes": { "weight": 4 } }, { "key": "14636", "source": "278", "target": "1920", "attributes": { "weight": 2 } }, { "key": "29198", "source": "278", "target": "292", "attributes": { "weight": 1 } }, { "key": "14639", "source": "278", "target": "322", "attributes": { "weight": 3 } }, { "key": "9471", "source": "278", "target": "1323", "attributes": { "weight": 7 } }, { "key": "28391", "source": "278", "target": "1960", "attributes": { "weight": 2 } }, { "key": "26844", "source": "278", "target": "1642", "attributes": { "weight": 2 } }, { "key": "25730", "source": "278", "target": "1926", "attributes": { "weight": 2 } }, { "key": "2409", "source": "278", "target": "170", "attributes": { "weight": 7 } }, { "key": "2406", "source": "278", "target": "698", "attributes": { "weight": 7 } }, { "key": "25723", "source": "278", "target": "177", "attributes": { "weight": 3 } }, { "key": "14635", "source": "278", "target": "277", "attributes": { "weight": 2 } }, { "key": "25716", "source": "278", "target": "163", "attributes": { "weight": 2 } }, { "key": "15849", "source": "278", "target": "1227", "attributes": { "weight": 4 } }, { "key": "25726", "source": "278", "target": "312", "attributes": { "weight": 3 } }, { "key": "25718", "source": "278", "target": "1871", "attributes": { "weight": 1 } }, { "key": "29199", "source": "278", "target": "299", "attributes": { "weight": 1 } }, { "key": "10888", "source": "278", "target": "457", "attributes": { "weight": 1 } }, { "key": "2407", "source": "278", "target": "700", "attributes": { "weight": 3 } }, { "key": "25702", "source": "278", "target": "645", "attributes": { "weight": 1 } }, { "key": "25731", "source": "278", "target": "495", "attributes": { "weight": 1 } }, { "key": "5142", "source": "278", "target": "368", "attributes": { "weight": 4 } }, { "key": "25725", "source": "278", "target": "310", "attributes": { "weight": 4 } }, { "key": "2410", "source": "278", "target": "579", "attributes": { "weight": 6 } }, { "key": "15855", "source": "278", "target": "175", "attributes": { "weight": 4 } }, { "key": "25719", "source": "278", "target": "174", "attributes": { "weight": 2 } }, { "key": "13162", "source": "278", "target": "276", "attributes": { "weight": 1 } }, { "key": "25711", "source": "278", "target": "287", "attributes": { "weight": 2 } }, { "key": "9470", "source": "278", "target": "419", "attributes": { "weight": 2 } }, { "key": "25724", "source": "278", "target": "595", "attributes": { "weight": 2 } }, { "key": "2840", "source": "278", "target": "830", "attributes": { "weight": 3 } }, { "key": "24981", "source": "278", "target": "1820", "attributes": { "weight": 2 } }, { "key": "770", "source": "278", "target": "264", "attributes": { "weight": 3 } }, { "key": "8203", "source": "278", "target": "905", "attributes": { "weight": 3 } }, { "key": "25733", "source": "278", "target": "326", "attributes": { "weight": 3 } }, { "key": "33127", "source": "278", "target": "903", "attributes": { "weight": 1 } }, { "key": "14633", "source": "278", "target": "261", "attributes": { "weight": 2 } }, { "key": "13163", "source": "278", "target": "167", "attributes": { "weight": 2 } }, { "key": "25978", "source": "280", "target": "2398", "attributes": { "weight": 2 } }, { "key": "27989", "source": "280", "target": "326", "attributes": { "weight": 1 } }, { "key": "775", "source": "280", "target": "291", "attributes": { "weight": 3 } }, { "key": "30515", "source": "281", "target": "1549", "attributes": { "weight": 1 } }, { "key": "24791", "source": "281", "target": "167", "attributes": { "weight": 1 } }, { "key": "14651", "source": "281", "target": "262", "attributes": { "weight": 1 } }, { "key": "27992", "source": "281", "target": "837", "attributes": { "weight": 1 } }, { "key": "2883", "source": "281", "target": "838", "attributes": { "weight": 2 } }, { "key": "777", "source": "281", "target": "287", "attributes": { "weight": 10 } }, { "key": "2884", "source": "281", "target": "292", "attributes": { "weight": 5 } }, { "key": "27993", "source": "281", "target": "841", "attributes": { "weight": 1 } }, { "key": "776", "source": "281", "target": "264", "attributes": { "weight": 2 } }, { "key": "27994", "source": "282", "target": "304", "attributes": { "weight": 1 } }, { "key": "14652", "source": "282", "target": "259", "attributes": { "weight": 1 } }, { "key": "3190", "source": "282", "target": "839", "attributes": { "weight": 1 } }, { "key": "22223", "source": "282", "target": "262", "attributes": { "weight": 1 } }, { "key": "778", "source": "282", "target": "264", "attributes": { "weight": 1 } }, { "key": "3189", "source": "282", "target": "287", "attributes": { "weight": 2 } }, { "key": "14654", "source": "283", "target": "263", "attributes": { "weight": 3 } }, { "key": "14657", "source": "283", "target": "304", "attributes": { "weight": 2 } }, { "key": "27559", "source": "283", "target": "168", "attributes": { "weight": 2 } }, { "key": "13198", "source": "283", "target": "312", "attributes": { "weight": 4 } }, { "key": "779", "source": "283", "target": "289", "attributes": { "weight": 3 } }, { "key": "13195", "source": "283", "target": "167", "attributes": { "weight": 4 } }, { "key": "14655", "source": "283", "target": "578", "attributes": { "weight": 2 } }, { "key": "13194", "source": "283", "target": "259", "attributes": { "weight": 4 } }, { "key": "37475", "source": "283", "target": "264", "attributes": { "weight": 1 } }, { "key": "22968", "source": "283", "target": "1933", "attributes": { "weight": 1 } }, { "key": "29796", "source": "283", "target": "260", "attributes": { "weight": 1 } }, { "key": "22967", "source": "283", "target": "301", "attributes": { "weight": 1 } }, { "key": "780", "source": "283", "target": "322", "attributes": { "weight": 3 } }, { "key": "13197", "source": "283", "target": "305", "attributes": { "weight": 2 } }, { "key": "13196", "source": "283", "target": "1909", "attributes": { "weight": 4 } }, { "key": "27560", "source": "283", "target": "180", "attributes": { "weight": 1 } }, { "key": "3191", "source": "283", "target": "839", "attributes": { "weight": 3 } }, { "key": "14656", "source": "283", "target": "300", "attributes": { "weight": 3 } }, { "key": "781", "source": "284", "target": "264", "attributes": { "weight": 7 } }, { "key": "13204", "source": "284", "target": "262", "attributes": { "weight": 3 } }, { "key": "13205", "source": "284", "target": "305", "attributes": { "weight": 3 } }, { "key": "13203", "source": "284", "target": "259", "attributes": { "weight": 2 } }, { "key": "27999", "source": "284", "target": "326", "attributes": { "weight": 1 } }, { "key": "13206", "source": "285", "target": "264", "attributes": { "weight": 2 } }, { "key": "28001", "source": "285", "target": "2721", "attributes": { "weight": 1 } }, { "key": "782", "source": "285", "target": "319", "attributes": { "weight": 9 } }, { "key": "28002", "source": "285", "target": "326", "attributes": { "weight": 1 } }, { "key": "14666", "source": "286", "target": "268", "attributes": { "weight": 1 } }, { "key": "13954", "source": "286", "target": "905", "attributes": { "weight": 2 } }, { "key": "28005", "source": "286", "target": "322", "attributes": { "weight": 1 } }, { "key": "28004", "source": "286", "target": "168", "attributes": { "weight": 1 } }, { "key": "783", "source": "286", "target": "262", "attributes": { "weight": 4 } }, { "key": "785", "source": "286", "target": "287", "attributes": { "weight": 4 } }, { "key": "13211", "source": "286", "target": "305", "attributes": { "weight": 3 } }, { "key": "13214", "source": "286", "target": "314", "attributes": { "weight": 3 } }, { "key": "786", "source": "286", "target": "299", "attributes": { "weight": 2 } }, { "key": "14665", "source": "286", "target": "261", "attributes": { "weight": 1 } }, { "key": "784", "source": "286", "target": "264", "attributes": { "weight": 4 } }, { "key": "22973", "source": "286", "target": "316", "attributes": { "weight": 1 } }, { "key": "14669", "source": "286", "target": "300", "attributes": { "weight": 2 } }, { "key": "13209", "source": "286", "target": "289", "attributes": { "weight": 3 } }, { "key": "13213", "source": "286", "target": "313", "attributes": { "weight": 3 } }, { "key": "13215", "source": "286", "target": "336", "attributes": { "weight": 3 } }, { "key": "14673", "source": "286", "target": "327", "attributes": { "weight": 3 } }, { "key": "22972", "source": "286", "target": "308", "attributes": { "weight": 1 } }, { "key": "22971", "source": "286", "target": "288", "attributes": { "weight": 2 } }, { "key": "17089", "source": "286", "target": "1621", "attributes": { "weight": 1 } }, { "key": "13212", "source": "286", "target": "312", "attributes": { "weight": 5 } }, { "key": "24794", "source": "286", "target": "311", "attributes": { "weight": 1 } }, { "key": "29204", "source": "286", "target": "278", "attributes": { "weight": 1 } }, { "key": "22974", "source": "286", "target": "321", "attributes": { "weight": 1 } }, { "key": "25983", "source": "286", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14671", "source": "286", "target": "318", "attributes": { "weight": 1 } }, { "key": "23441", "source": "286", "target": "166", "attributes": { "weight": 3 } }, { "key": "13955", "source": "286", "target": "180", "attributes": { "weight": 2 } }, { "key": "13210", "source": "286", "target": "304", "attributes": { "weight": 4 } }, { "key": "14672", "source": "286", "target": "326", "attributes": { "weight": 4 } }, { "key": "19012", "source": "286", "target": "839", "attributes": { "weight": 2 } }, { "key": "23442", "source": "286", "target": "307", "attributes": { "weight": 1 } }, { "key": "13208", "source": "286", "target": "259", "attributes": { "weight": 5 } }, { "key": "14667", "source": "286", "target": "277", "attributes": { "weight": 3 } }, { "key": "24793", "source": "286", "target": "275", "attributes": { "weight": 1 } }, { "key": "14670", "source": "286", "target": "301", "attributes": { "weight": 3 } }, { "key": "22970", "source": "286", "target": "260", "attributes": { "weight": 1 } }, { "key": "14668", "source": "286", "target": "906", "attributes": { "weight": 1 } }, { "key": "801", "source": "287", "target": "326", "attributes": { "weight": 8 } }, { "key": "14684", "source": "287", "target": "1991", "attributes": { "weight": 2 } }, { "key": "797", "source": "287", "target": "313", "attributes": { "weight": 3 } }, { "key": "2901", "source": "287", "target": "322", "attributes": { "weight": 8 } }, { "key": "2889", "source": "287", "target": "167", "attributes": { "weight": 8 } }, { "key": "28008", "source": "287", "target": "2004", "attributes": { "weight": 1 } }, { "key": "795", "source": "287", "target": "299", "attributes": { "weight": 2 } }, { "key": "799", "source": "287", "target": "180", "attributes": { "weight": 2 } }, { "key": "2892", "source": "287", "target": "291", "attributes": { "weight": 3 } }, { "key": "790", "source": "287", "target": "264", "attributes": { "weight": 9 } }, { "key": "2900", "source": "287", "target": "318", "attributes": { "weight": 4 } }, { "key": "2886", "source": "287", "target": "838", "attributes": { "weight": 3 } }, { "key": "2897", "source": "287", "target": "840", "attributes": { "weight": 3 } }, { "key": "12444", "source": "287", "target": "320", "attributes": { "weight": 1 } }, { "key": "13225", "source": "287", "target": "321", "attributes": { "weight": 3 } }, { "key": "14678", "source": "287", "target": "258", "attributes": { "weight": 2 } }, { "key": "13226", "source": "287", "target": "1931", "attributes": { "weight": 2 } }, { "key": "3195", "source": "287", "target": "282", "attributes": { "weight": 2 } }, { "key": "28009", "source": "287", "target": "1042", "attributes": { "weight": 1 } }, { "key": "14679", "source": "287", "target": "1974", "attributes": { "weight": 2 } }, { "key": "3199", "source": "287", "target": "908", "attributes": { "weight": 1 } }, { "key": "802", "source": "287", "target": "327", "attributes": { "weight": 8 } }, { "key": "28007", "source": "287", "target": "354", "attributes": { "weight": 1 } }, { "key": "2893", "source": "287", "target": "292", "attributes": { "weight": 6 } }, { "key": "792", "source": "287", "target": "286", "attributes": { "weight": 4 } }, { "key": "28018", "source": "287", "target": "1976", "attributes": { "weight": 1 } }, { "key": "9610", "source": "287", "target": "171", "attributes": { "weight": 2 } }, { "key": "28011", "source": "287", "target": "357", "attributes": { "weight": 1 } }, { "key": "28031", "source": "287", "target": "330", "attributes": { "weight": 1 } }, { "key": "27679", "source": "287", "target": "178", "attributes": { "weight": 2 } }, { "key": "28020", "source": "287", "target": "1851", "attributes": { "weight": 1 } }, { "key": "2888", "source": "287", "target": "276", "attributes": { "weight": 4 } }, { "key": "18394", "source": "287", "target": "1621", "attributes": { "weight": 1 } }, { "key": "2891", "source": "287", "target": "290", "attributes": { "weight": 3 } }, { "key": "11744", "source": "287", "target": "905", "attributes": { "weight": 1 } }, { "key": "3196", "source": "287", "target": "298", "attributes": { "weight": 2 } }, { "key": "28010", "source": "287", "target": "830", "attributes": { "weight": 1 } }, { "key": "28015", "source": "287", "target": "358", "attributes": { "weight": 1 } }, { "key": "3197", "source": "287", "target": "839", "attributes": { "weight": 5 } }, { "key": "793", "source": "287", "target": "289", "attributes": { "weight": 7 } }, { "key": "13221", "source": "287", "target": "1899", "attributes": { "weight": 2 } }, { "key": "28023", "source": "287", "target": "1919", "attributes": { "weight": 1 } }, { "key": "22975", "source": "287", "target": "334", "attributes": { "weight": 1 } }, { "key": "2899", "source": "287", "target": "841", "attributes": { "weight": 2 } }, { "key": "787", "source": "287", "target": "260", "attributes": { "weight": 7 } }, { "key": "14683", "source": "287", "target": "1933", "attributes": { "weight": 1 } }, { "key": "28012", "source": "287", "target": "1857", "attributes": { "weight": 1 } }, { "key": "28006", "source": "287", "target": "164", "attributes": { "weight": 2 } }, { "key": "28022", "source": "287", "target": "906", "attributes": { "weight": 1 } }, { "key": "28027", "source": "287", "target": "2722", "attributes": { "weight": 1 } }, { "key": "2903", "source": "287", "target": "842", "attributes": { "weight": 1 } }, { "key": "2904", "source": "287", "target": "331", "attributes": { "weight": 1 } }, { "key": "8797", "source": "287", "target": "259", "attributes": { "weight": 6 } }, { "key": "800", "source": "287", "target": "324", "attributes": { "weight": 1 } }, { "key": "14264", "source": "287", "target": "168", "attributes": { "weight": 4 } }, { "key": "28029", "source": "287", "target": "1642", "attributes": { "weight": 2 } }, { "key": "28028", "source": "287", "target": "175", "attributes": { "weight": 1 } }, { "key": "2890", "source": "287", "target": "288", "attributes": { "weight": 1 } }, { "key": "789", "source": "287", "target": "263", "attributes": { "weight": 8 } }, { "key": "28026", "source": "287", "target": "1985", "attributes": { "weight": 1 } }, { "key": "25738", "source": "287", "target": "278", "attributes": { "weight": 2 } }, { "key": "2902", "source": "287", "target": "328", "attributes": { "weight": 1 } }, { "key": "2895", "source": "287", "target": "304", "attributes": { "weight": 6 } }, { "key": "798", "source": "287", "target": "314", "attributes": { "weight": 6 } }, { "key": "2887", "source": "287", "target": "166", "attributes": { "weight": 4 } }, { "key": "3198", "source": "287", "target": "308", "attributes": { "weight": 4 } }, { "key": "791", "source": "287", "target": "281", "attributes": { "weight": 10 } }, { "key": "13223", "source": "287", "target": "312", "attributes": { "weight": 6 } }, { "key": "14680", "source": "287", "target": "272", "attributes": { "weight": 3 } }, { "key": "28013", "source": "287", "target": "268", "attributes": { "weight": 1 } }, { "key": "13224", "source": "287", "target": "316", "attributes": { "weight": 3 } }, { "key": "3194", "source": "287", "target": "901", "attributes": { "weight": 1 } }, { "key": "796", "source": "287", "target": "300", "attributes": { "weight": 8 } }, { "key": "14685", "source": "287", "target": "336", "attributes": { "weight": 1 } }, { "key": "28025", "source": "287", "target": "578", "attributes": { "weight": 1 } }, { "key": "17998", "source": "287", "target": "1918", "attributes": { "weight": 1 } }, { "key": "2894", "source": "287", "target": "301", "attributes": { "weight": 6 } }, { "key": "13222", "source": "287", "target": "176", "attributes": { "weight": 2 } }, { "key": "26172", "source": "287", "target": "265", "attributes": { "weight": 2 } }, { "key": "28024", "source": "287", "target": "687", "attributes": { "weight": 1 } }, { "key": "2885", "source": "287", "target": "837", "attributes": { "weight": 3 } }, { "key": "794", "source": "287", "target": "293", "attributes": { "weight": 3 } }, { "key": "28021", "source": "287", "target": "294", "attributes": { "weight": 1 } }, { "key": "28019", "source": "287", "target": "361", "attributes": { "weight": 1 } }, { "key": "788", "source": "287", "target": "262", "attributes": { "weight": 9 } }, { "key": "28016", "source": "287", "target": "169", "attributes": { "weight": 1 } }, { "key": "2898", "source": "287", "target": "311", "attributes": { "weight": 3 } }, { "key": "28014", "source": "287", "target": "270", "attributes": { "weight": 1 } }, { "key": "2896", "source": "287", "target": "305", "attributes": { "weight": 7 } }, { "key": "23278", "source": "287", "target": "1973", "attributes": { "weight": 1 } }, { "key": "803", "source": "287", "target": "329", "attributes": { "weight": 1 } }, { "key": "28030", "source": "287", "target": "325", "attributes": { "weight": 1 } }, { "key": "14681", "source": "287", "target": "1983", "attributes": { "weight": 2 } }, { "key": "804", "source": "288", "target": "264", "attributes": { "weight": 1 } }, { "key": "2906", "source": "288", "target": "287", "attributes": { "weight": 1 } }, { "key": "13227", "source": "288", "target": "304", "attributes": { "weight": 3 } }, { "key": "2905", "source": "288", "target": "167", "attributes": { "weight": 1 } }, { "key": "28032", "source": "288", "target": "839", "attributes": { "weight": 1 } }, { "key": "14687", "source": "288", "target": "312", "attributes": { "weight": 1 } }, { "key": "22976", "source": "288", "target": "286", "attributes": { "weight": 2 } }, { "key": "22977", "source": "288", "target": "336", "attributes": { "weight": 1 } }, { "key": "14686", "source": "288", "target": "259", "attributes": { "weight": 1 } }, { "key": "805", "source": "288", "target": "327", "attributes": { "weight": 1 } }, { "key": "13234", "source": "289", "target": "262", "attributes": { "weight": 5 } }, { "key": "14695", "source": "289", "target": "838", "attributes": { "weight": 1 } }, { "key": "13241", "source": "289", "target": "322", "attributes": { "weight": 5 } }, { "key": "14697", "source": "289", "target": "169", "attributes": { "weight": 1 } }, { "key": "2908", "source": "289", "target": "300", "attributes": { "weight": 4 } }, { "key": "13244", "source": "289", "target": "336", "attributes": { "weight": 3 } }, { "key": "14702", "source": "289", "target": "319", "attributes": { "weight": 1 } }, { "key": "13243", "source": "289", "target": "327", "attributes": { "weight": 3 } }, { "key": "2909", "source": "289", "target": "178", "attributes": { "weight": 1 } }, { "key": "14703", "source": "289", "target": "328", "attributes": { "weight": 1 } }, { "key": "13235", "source": "289", "target": "276", "attributes": { "weight": 2 } }, { "key": "13232", "source": "289", "target": "259", "attributes": { "weight": 4 } }, { "key": "810", "source": "289", "target": "291", "attributes": { "weight": 1 } }, { "key": "14701", "source": "289", "target": "180", "attributes": { "weight": 2 } }, { "key": "14699", "source": "289", "target": "179", "attributes": { "weight": 1 } }, { "key": "13240", "source": "289", "target": "314", "attributes": { "weight": 2 } }, { "key": "13238", "source": "289", "target": "305", "attributes": { "weight": 5 } }, { "key": "14698", "source": "289", "target": "301", "attributes": { "weight": 2 } }, { "key": "13239", "source": "289", "target": "312", "attributes": { "weight": 5 } }, { "key": "22226", "source": "289", "target": "1969", "attributes": { "weight": 1 } }, { "key": "13237", "source": "289", "target": "304", "attributes": { "weight": 4 } }, { "key": "3200", "source": "289", "target": "839", "attributes": { "weight": 6 } }, { "key": "24795", "source": "289", "target": "331", "attributes": { "weight": 1 } }, { "key": "14694", "source": "289", "target": "263", "attributes": { "weight": 6 } }, { "key": "2907", "source": "289", "target": "292", "attributes": { "weight": 2 } }, { "key": "13242", "source": "289", "target": "326", "attributes": { "weight": 8 } }, { "key": "14700", "source": "289", "target": "313", "attributes": { "weight": 1 } }, { "key": "13233", "source": "289", "target": "260", "attributes": { "weight": 7 } }, { "key": "809", "source": "289", "target": "287", "attributes": { "weight": 7 } }, { "key": "811", "source": "289", "target": "311", "attributes": { "weight": 4 } }, { "key": "813", "source": "289", "target": "329", "attributes": { "weight": 2 } }, { "key": "806", "source": "289", "target": "264", "attributes": { "weight": 6 } }, { "key": "22230", "source": "289", "target": "1919", "attributes": { "weight": 1 } }, { "key": "812", "source": "289", "target": "321", "attributes": { "weight": 3 } }, { "key": "23726", "source": "289", "target": "168", "attributes": { "weight": 1 } }, { "key": "22227", "source": "289", "target": "1973", "attributes": { "weight": 1 } }, { "key": "14696", "source": "289", "target": "272", "attributes": { "weight": 3 } }, { "key": "807", "source": "289", "target": "167", "attributes": { "weight": 6 } }, { "key": "22228", "source": "289", "target": "1975", "attributes": { "weight": 2 } }, { "key": "22229", "source": "289", "target": "290", "attributes": { "weight": 2 } }, { "key": "13236", "source": "289", "target": "286", "attributes": { "weight": 3 } }, { "key": "22982", "source": "289", "target": "318", "attributes": { "weight": 1 } }, { "key": "22981", "source": "289", "target": "1853", "attributes": { "weight": 1 } }, { "key": "808", "source": "289", "target": "283", "attributes": { "weight": 3 } }, { "key": "22980", "source": "289", "target": "298", "attributes": { "weight": 1 } }, { "key": "22231", "source": "289", "target": "2311", "attributes": { "weight": 1 } }, { "key": "22978", "source": "289", "target": "166", "attributes": { "weight": 3 } }, { "key": "13246", "source": "290", "target": "262", "attributes": { "weight": 6 } }, { "key": "14704", "source": "290", "target": "259", "attributes": { "weight": 1 } }, { "key": "12445", "source": "290", "target": "316", "attributes": { "weight": 1 } }, { "key": "14708", "source": "290", "target": "314", "attributes": { "weight": 2 } }, { "key": "22234", "source": "290", "target": "289", "attributes": { "weight": 2 } }, { "key": "3201", "source": "290", "target": "167", "attributes": { "weight": 8 } }, { "key": "22983", "source": "290", "target": "166", "attributes": { "weight": 3 } }, { "key": "29571", "source": "290", "target": "164", "attributes": { "weight": 1 } }, { "key": "816", "source": "290", "target": "311", "attributes": { "weight": 1 } }, { "key": "13245", "source": "290", "target": "260", "attributes": { "weight": 6 } }, { "key": "29208", "source": "290", "target": "582", "attributes": { "weight": 1 } }, { "key": "23446", "source": "290", "target": "318", "attributes": { "weight": 2 } }, { "key": "13247", "source": "290", "target": "264", "attributes": { "weight": 5 } }, { "key": "28035", "source": "290", "target": "276", "attributes": { "weight": 1 } }, { "key": "13248", "source": "290", "target": "272", "attributes": { "weight": 4 } }, { "key": "14709", "source": "290", "target": "321", "attributes": { "weight": 1 } }, { "key": "9659", "source": "290", "target": "171", "attributes": { "weight": 1 } }, { "key": "14707", "source": "290", "target": "179", "attributes": { "weight": 1 } }, { "key": "28034", "source": "290", "target": "265", "attributes": { "weight": 1 } }, { "key": "815", "source": "290", "target": "308", "attributes": { "weight": 2 } }, { "key": "13251", "source": "290", "target": "304", "attributes": { "weight": 5 } }, { "key": "13252", "source": "290", "target": "312", "attributes": { "weight": 3 } }, { "key": "13253", "source": "290", "target": "326", "attributes": { "weight": 6 } }, { "key": "14710", "source": "290", "target": "322", "attributes": { "weight": 1 } }, { "key": "22233", "source": "290", "target": "258", "attributes": { "weight": 1 } }, { "key": "2911", "source": "290", "target": "327", "attributes": { "weight": 6 } }, { "key": "14265", "source": "290", "target": "168", "attributes": { "weight": 3 } }, { "key": "24796", "source": "290", "target": "292", "attributes": { "weight": 1 } }, { "key": "22985", "source": "290", "target": "336", "attributes": { "weight": 1 } }, { "key": "28036", "source": "290", "target": "278", "attributes": { "weight": 2 } }, { "key": "22984", "source": "290", "target": "291", "attributes": { "weight": 1 } }, { "key": "13250", "source": "290", "target": "300", "attributes": { "weight": 4 } }, { "key": "19013", "source": "290", "target": "839", "attributes": { "weight": 2 } }, { "key": "14705", "source": "290", "target": "301", "attributes": { "weight": 2 } }, { "key": "14706", "source": "290", "target": "307", "attributes": { "weight": 1 } }, { "key": "3202", "source": "290", "target": "305", "attributes": { "weight": 7 } }, { "key": "22232", "source": "290", "target": "2309", "attributes": { "weight": 1 } }, { "key": "2910", "source": "290", "target": "287", "attributes": { "weight": 3 } }, { "key": "12594", "source": "290", "target": "180", "attributes": { "weight": 2 } }, { "key": "13249", "source": "290", "target": "299", "attributes": { "weight": 4 } }, { "key": "22987", "source": "291", "target": "2397", "attributes": { "weight": 3 } }, { "key": "821", "source": "291", "target": "289", "attributes": { "weight": 1 } }, { "key": "13261", "source": "291", "target": "326", "attributes": { "weight": 6 } }, { "key": "818", "source": "291", "target": "264", "attributes": { "weight": 4 } }, { "key": "13256", "source": "291", "target": "260", "attributes": { "weight": 4 } }, { "key": "14718", "source": "291", "target": "322", "attributes": { "weight": 3 } }, { "key": "33114", "source": "291", "target": "294", "attributes": { "weight": 1 } }, { "key": "13259", "source": "291", "target": "314", "attributes": { "weight": 4 } }, { "key": "22990", "source": "291", "target": "2399", "attributes": { "weight": 1 } }, { "key": "13260", "source": "291", "target": "318", "attributes": { "weight": 4 } }, { "key": "2913", "source": "291", "target": "319", "attributes": { "weight": 9 } }, { "key": "13257", "source": "291", "target": "167", "attributes": { "weight": 3 } }, { "key": "14716", "source": "291", "target": "263", "attributes": { "weight": 4 } }, { "key": "3203", "source": "291", "target": "305", "attributes": { "weight": 3 } }, { "key": "28038", "source": "291", "target": "300", "attributes": { "weight": 1 } }, { "key": "22988", "source": "291", "target": "2398", "attributes": { "weight": 1 } }, { "key": "23448", "source": "291", "target": "276", "attributes": { "weight": 1 } }, { "key": "822", "source": "291", "target": "316", "attributes": { "weight": 2 } }, { "key": "23449", "source": "291", "target": "312", "attributes": { "weight": 1 } }, { "key": "13258", "source": "291", "target": "304", "attributes": { "weight": 5 } }, { "key": "2912", "source": "291", "target": "287", "attributes": { "weight": 3 } }, { "key": "13262", "source": "291", "target": "1931", "attributes": { "weight": 2 } }, { "key": "19014", "source": "291", "target": "839", "attributes": { "weight": 2 } }, { "key": "819", "source": "291", "target": "269", "attributes": { "weight": 2 } }, { "key": "28039", "source": "291", "target": "308", "attributes": { "weight": 1 } }, { "key": "14715", "source": "291", "target": "259", "attributes": { "weight": 2 } }, { "key": "14717", "source": "291", "target": "307", "attributes": { "weight": 1 } }, { "key": "24797", "source": "291", "target": "301", "attributes": { "weight": 1 } }, { "key": "817", "source": "291", "target": "262", "attributes": { "weight": 3 } }, { "key": "820", "source": "291", "target": "280", "attributes": { "weight": 3 } }, { "key": "23450", "source": "291", "target": "180", "attributes": { "weight": 1 } }, { "key": "22989", "source": "291", "target": "290", "attributes": { "weight": 1 } }, { "key": "28040", "source": "292", "target": "168", "attributes": { "weight": 1 } }, { "key": "2919", "source": "292", "target": "289", "attributes": { "weight": 2 } }, { "key": "2916", "source": "292", "target": "276", "attributes": { "weight": 1 } }, { "key": "28042", "source": "292", "target": "841", "attributes": { "weight": 1 } }, { "key": "824", "source": "292", "target": "264", "attributes": { "weight": 5 } }, { "key": "2923", "source": "292", "target": "318", "attributes": { "weight": 1 } }, { "key": "32942", "source": "292", "target": "178", "attributes": { "weight": 1 } }, { "key": "24798", "source": "292", "target": "259", "attributes": { "weight": 2 } }, { "key": "28041", "source": "292", "target": "839", "attributes": { "weight": 1 } }, { "key": "2924", "source": "292", "target": "322", "attributes": { "weight": 3 } }, { "key": "2918", "source": "292", "target": "287", "attributes": { "weight": 7 } }, { "key": "24801", "source": "292", "target": "314", "attributes": { "weight": 1 } }, { "key": "2925", "source": "292", "target": "326", "attributes": { "weight": 5 } }, { "key": "823", "source": "292", "target": "262", "attributes": { "weight": 7 } }, { "key": "2915", "source": "292", "target": "263", "attributes": { "weight": 2 } }, { "key": "2917", "source": "292", "target": "281", "attributes": { "weight": 5 } }, { "key": "13264", "source": "292", "target": "304", "attributes": { "weight": 4 } }, { "key": "8211", "source": "292", "target": "180", "attributes": { "weight": 1 } }, { "key": "13263", "source": "292", "target": "167", "attributes": { "weight": 5 } }, { "key": "2922", "source": "292", "target": "312", "attributes": { "weight": 1 } }, { "key": "24799", "source": "292", "target": "290", "attributes": { "weight": 1 } }, { "key": "24800", "source": "292", "target": "308", "attributes": { "weight": 1 } }, { "key": "29209", "source": "292", "target": "278", "attributes": { "weight": 1 } }, { "key": "2914", "source": "292", "target": "260", "attributes": { "weight": 1 } }, { "key": "2920", "source": "292", "target": "299", "attributes": { "weight": 1 } }, { "key": "2921", "source": "292", "target": "300", "attributes": { "weight": 2 } }, { "key": "825", "source": "292", "target": "298", "attributes": { "weight": 1 } }, { "key": "26173", "source": "292", "target": "301", "attributes": { "weight": 1 } }, { "key": "827", "source": "293", "target": "287", "attributes": { "weight": 3 } }, { "key": "826", "source": "293", "target": "264", "attributes": { "weight": 1 } }, { "key": "28045", "source": "293", "target": "259", "attributes": { "weight": 1 } }, { "key": "2926", "source": "293", "target": "304", "attributes": { "weight": 1 } }, { "key": "831", "source": "294", "target": "326", "attributes": { "weight": 3 } }, { "key": "828", "source": "294", "target": "262", "attributes": { "weight": 8 } }, { "key": "33119", "source": "294", "target": "298", "attributes": { "weight": 1 } }, { "key": "33115", "source": "294", "target": "1895", "attributes": { "weight": 1 } }, { "key": "28047", "source": "294", "target": "287", "attributes": { "weight": 1 } }, { "key": "13265", "source": "294", "target": "361", "attributes": { "weight": 1 } }, { "key": "33120", "source": "294", "target": "2721", "attributes": { "weight": 1 } }, { "key": "33118", "source": "294", "target": "296", "attributes": { "weight": 1 } }, { "key": "832", "source": "294", "target": "328", "attributes": { "weight": 2 } }, { "key": "13266", "source": "294", "target": "304", "attributes": { "weight": 2 } }, { "key": "28046", "source": "294", "target": "837", "attributes": { "weight": 1 } }, { "key": "829", "source": "294", "target": "264", "attributes": { "weight": 5 } }, { "key": "33117", "source": "294", "target": "291", "attributes": { "weight": 1 } }, { "key": "830", "source": "294", "target": "273", "attributes": { "weight": 1 } }, { "key": "22992", "source": "295", "target": "263", "attributes": { "weight": 1 } }, { "key": "13268", "source": "295", "target": "307", "attributes": { "weight": 2 } }, { "key": "13267", "source": "295", "target": "259", "attributes": { "weight": 2 } }, { "key": "28057", "source": "295", "target": "304", "attributes": { "weight": 1 } }, { "key": "833", "source": "295", "target": "326", "attributes": { "weight": 1 } }, { "key": "28058", "source": "295", "target": "305", "attributes": { "weight": 1 } }, { "key": "22996", "source": "295", "target": "1933", "attributes": { "weight": 1 } }, { "key": "22995", "source": "295", "target": "322", "attributes": { "weight": 1 } }, { "key": "28056", "source": "295", "target": "167", "attributes": { "weight": 1 } }, { "key": "22993", "source": "295", "target": "268", "attributes": { "weight": 1 } }, { "key": "22994", "source": "295", "target": "321", "attributes": { "weight": 1 } }, { "key": "25985", "source": "295", "target": "2622", "attributes": { "weight": 2 } }, { "key": "19016", "source": "295", "target": "839", "attributes": { "weight": 2 } }, { "key": "23451", "source": "295", "target": "312", "attributes": { "weight": 1 } }, { "key": "834", "source": "296", "target": "264", "attributes": { "weight": 4 } }, { "key": "33121", "source": "296", "target": "294", "attributes": { "weight": 1 } }, { "key": "15126", "source": "297", "target": "171", "attributes": { "weight": 4 } }, { "key": "22509", "source": "297", "target": "567", "attributes": { "weight": 1 } }, { "key": "25191", "source": "297", "target": "1996", "attributes": { "weight": 3 } }, { "key": "25182", "source": "297", "target": "165", "attributes": { "weight": 3 } }, { "key": "17493", "source": "297", "target": "178", "attributes": { "weight": 7 } }, { "key": "18502", "source": "297", "target": "1280", "attributes": { "weight": 3 } }, { "key": "25183", "source": "297", "target": "2556", "attributes": { "weight": 4 } }, { "key": "835", "source": "297", "target": "264", "attributes": { "weight": 1 } }, { "key": "33019", "source": "297", "target": "2560", "attributes": { "weight": 1 } }, { "key": "30229", "source": "297", "target": "2958", "attributes": { "weight": 1 } }, { "key": "14732", "source": "297", "target": "259", "attributes": { "weight": 1 } }, { "key": "11203", "source": "297", "target": "1036", "attributes": { "weight": 3 } }, { "key": "35378", "source": "297", "target": "2803", "attributes": { "weight": 1 } }, { "key": "25188", "source": "297", "target": "2559", "attributes": { "weight": 3 } }, { "key": "22510", "source": "297", "target": "572", "attributes": { "weight": 4 } }, { "key": "25190", "source": "297", "target": "2561", "attributes": { "weight": 2 } }, { "key": "30234", "source": "297", "target": "177", "attributes": { "weight": 2 } }, { "key": "17492", "source": "297", "target": "358", "attributes": { "weight": 2 } }, { "key": "9508", "source": "297", "target": "419", "attributes": { "weight": 1 } }, { "key": "37553", "source": "297", "target": "3046", "attributes": { "weight": 1 } }, { "key": "5548", "source": "297", "target": "338", "attributes": { "weight": 4 } }, { "key": "12379", "source": "297", "target": "565", "attributes": { "weight": 1 } }, { "key": "30233", "source": "297", "target": "2974", "attributes": { "weight": 1 } }, { "key": "30231", "source": "297", "target": "2967", "attributes": { "weight": 1 } }, { "key": "35377", "source": "297", "target": "2959", "attributes": { "weight": 1 } }, { "key": "37555", "source": "297", "target": "3399", "attributes": { "weight": 1 } }, { "key": "37556", "source": "297", "target": "3400", "attributes": { "weight": 1 } }, { "key": "5546", "source": "297", "target": "1166", "attributes": { "weight": 5 } }, { "key": "25181", "source": "297", "target": "1187", "attributes": { "weight": 4 } }, { "key": "25185", "source": "297", "target": "1227", "attributes": { "weight": 2 } }, { "key": "25179", "source": "297", "target": "2554", "attributes": { "weight": 1 } }, { "key": "25180", "source": "297", "target": "1178", "attributes": { "weight": 4 } }, { "key": "17491", "source": "297", "target": "1146", "attributes": { "weight": 8 } }, { "key": "37557", "source": "297", "target": "2977", "attributes": { "weight": 1 } }, { "key": "13274", "source": "297", "target": "305", "attributes": { "weight": 4 } }, { "key": "25189", "source": "297", "target": "580", "attributes": { "weight": 1 } }, { "key": "25184", "source": "297", "target": "169", "attributes": { "weight": 1 } }, { "key": "30467", "source": "297", "target": "1046", "attributes": { "weight": 1 } }, { "key": "30228", "source": "297", "target": "1151", "attributes": { "weight": 2 } }, { "key": "25192", "source": "297", "target": "1341", "attributes": { "weight": 1 } }, { "key": "25186", "source": "297", "target": "2557", "attributes": { "weight": 2 } }, { "key": "10910", "source": "297", "target": "168", "attributes": { "weight": 3 } }, { "key": "29813", "source": "297", "target": "93", "attributes": { "weight": 1 } }, { "key": "5547", "source": "297", "target": "1177", "attributes": { "weight": 3 } }, { "key": "37554", "source": "297", "target": "3048", "attributes": { "weight": 1 } }, { "key": "37552", "source": "297", "target": "2953", "attributes": { "weight": 1 } }, { "key": "17494", "source": "297", "target": "2120", "attributes": { "weight": 5 } }, { "key": "5545", "source": "297", "target": "1143", "attributes": { "weight": 5 } }, { "key": "25187", "source": "297", "target": "2558", "attributes": { "weight": 3 } }, { "key": "30232", "source": "297", "target": "2971", "attributes": { "weight": 3 } }, { "key": "5549", "source": "297", "target": "173", "attributes": { "weight": 5 } }, { "key": "25178", "source": "297", "target": "164", "attributes": { "weight": 3 } }, { "key": "5550", "source": "297", "target": "310", "attributes": { "weight": 7 } }, { "key": "30230", "source": "297", "target": "2961", "attributes": { "weight": 1 } }, { "key": "25193", "source": "297", "target": "2121", "attributes": { "weight": 1 } }, { "key": "13289", "source": "298", "target": "260", "attributes": { "weight": 2 } }, { "key": "33122", "source": "298", "target": "294", "attributes": { "weight": 1 } }, { "key": "839", "source": "298", "target": "328", "attributes": { "weight": 1 } }, { "key": "13291", "source": "298", "target": "312", "attributes": { "weight": 2 } }, { "key": "837", "source": "298", "target": "300", "attributes": { "weight": 1 } }, { "key": "836", "source": "298", "target": "292", "attributes": { "weight": 1 } }, { "key": "838", "source": "298", "target": "311", "attributes": { "weight": 1 } }, { "key": "19017", "source": "298", "target": "305", "attributes": { "weight": 2 } }, { "key": "3209", "source": "298", "target": "307", "attributes": { "weight": 1 } }, { "key": "23001", "source": "298", "target": "289", "attributes": { "weight": 1 } }, { "key": "3208", "source": "298", "target": "839", "attributes": { "weight": 1 } }, { "key": "3207", "source": "298", "target": "287", "attributes": { "weight": 2 } }, { "key": "13290", "source": "298", "target": "304", "attributes": { "weight": 2 } }, { "key": "14736", "source": "298", "target": "263", "attributes": { "weight": 2 } }, { "key": "28642", "source": "298", "target": "326", "attributes": { "weight": 1 } }, { "key": "14735", "source": "298", "target": "259", "attributes": { "weight": 1 } }, { "key": "13300", "source": "299", "target": "578", "attributes": { "weight": 2 } }, { "key": "28078", "source": "299", "target": "326", "attributes": { "weight": 1 } }, { "key": "13299", "source": "299", "target": "290", "attributes": { "weight": 4 } }, { "key": "14755", "source": "299", "target": "312", "attributes": { "weight": 4 } }, { "key": "28643", "source": "299", "target": "308", "attributes": { "weight": 1 } }, { "key": "14752", "source": "299", "target": "263", "attributes": { "weight": 5 } }, { "key": "14753", "source": "299", "target": "268", "attributes": { "weight": 4 } }, { "key": "23454", "source": "299", "target": "2449", "attributes": { "weight": 1 } }, { "key": "2927", "source": "299", "target": "292", "attributes": { "weight": 1 } }, { "key": "13298", "source": "299", "target": "264", "attributes": { "weight": 3 } }, { "key": "8216", "source": "299", "target": "180", "attributes": { "weight": 3 } }, { "key": "842", "source": "299", "target": "277", "attributes": { "weight": 2 } }, { "key": "846", "source": "299", "target": "311", "attributes": { "weight": 2 } }, { "key": "28077", "source": "299", "target": "697", "attributes": { "weight": 1 } }, { "key": "845", "source": "299", "target": "307", "attributes": { "weight": 1 } }, { "key": "13301", "source": "299", "target": "304", "attributes": { "weight": 5 } }, { "key": "13302", "source": "299", "target": "313", "attributes": { "weight": 5 } }, { "key": "8215", "source": "299", "target": "1513", "attributes": { "weight": 2 } }, { "key": "841", "source": "299", "target": "166", "attributes": { "weight": 2 } }, { "key": "14757", "source": "299", "target": "327", "attributes": { "weight": 3 } }, { "key": "14751", "source": "299", "target": "261", "attributes": { "weight": 2 } }, { "key": "28644", "source": "299", "target": "336", "attributes": { "weight": 1 } }, { "key": "14756", "source": "299", "target": "322", "attributes": { "weight": 2 } }, { "key": "843", "source": "299", "target": "286", "attributes": { "weight": 2 } }, { "key": "12599", "source": "299", "target": "905", "attributes": { "weight": 1 } }, { "key": "29212", "source": "299", "target": "278", "attributes": { "weight": 1 } }, { "key": "14754", "source": "299", "target": "179", "attributes": { "weight": 2 } }, { "key": "844", "source": "299", "target": "287", "attributes": { "weight": 2 } }, { "key": "26027", "source": "299", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14271", "source": "299", "target": "168", "attributes": { "weight": 4 } }, { "key": "32944", "source": "299", "target": "178", "attributes": { "weight": 1 } }, { "key": "2928", "source": "299", "target": "331", "attributes": { "weight": 1 } }, { "key": "28075", "source": "299", "target": "164", "attributes": { "weight": 1 } }, { "key": "18400", "source": "299", "target": "1621", "attributes": { "weight": 1 } }, { "key": "14750", "source": "299", "target": "259", "attributes": { "weight": 3 } }, { "key": "840", "source": "299", "target": "262", "attributes": { "weight": 3 } }, { "key": "12447", "source": "299", "target": "316", "attributes": { "weight": 2 } }, { "key": "28076", "source": "299", "target": "260", "attributes": { "weight": 1 } }, { "key": "28084", "source": "300", "target": "905", "attributes": { "weight": 1 } }, { "key": "28085", "source": "300", "target": "291", "attributes": { "weight": 1 } }, { "key": "13312", "source": "300", "target": "301", "attributes": { "weight": 3 } }, { "key": "11745", "source": "300", "target": "1513", "attributes": { "weight": 1 } }, { "key": "8217", "source": "300", "target": "180", "attributes": { "weight": 3 } }, { "key": "25037", "source": "300", "target": "170", "attributes": { "weight": 2 } }, { "key": "33124", "source": "300", "target": "328", "attributes": { "weight": 1 } }, { "key": "13317", "source": "300", "target": "326", "attributes": { "weight": 6 } }, { "key": "28086", "source": "300", "target": "305", "attributes": { "weight": 1 } }, { "key": "13318", "source": "300", "target": "327", "attributes": { "weight": 8 } }, { "key": "2929", "source": "300", "target": "263", "attributes": { "weight": 6 } }, { "key": "13311", "source": "300", "target": "578", "attributes": { "weight": 2 } }, { "key": "13319", "source": "300", "target": "1854", "attributes": { "weight": 3 } }, { "key": "28091", "source": "300", "target": "908", "attributes": { "weight": 1 } }, { "key": "14763", "source": "300", "target": "286", "attributes": { "weight": 2 } }, { "key": "28083", "source": "300", "target": "278", "attributes": { "weight": 2 } }, { "key": "23004", "source": "300", "target": "270", "attributes": { "weight": 1 } }, { "key": "28090", "source": "300", "target": "1931", "attributes": { "weight": 1 } }, { "key": "14764", "source": "300", "target": "179", "attributes": { "weight": 2 } }, { "key": "28082", "source": "300", "target": "1897", "attributes": { "weight": 1 } }, { "key": "14765", "source": "300", "target": "319", "attributes": { "weight": 1 } }, { "key": "13309", "source": "300", "target": "166", "attributes": { "weight": 5 } }, { "key": "28089", "source": "300", "target": "1925", "attributes": { "weight": 1 } }, { "key": "28088", "source": "300", "target": "310", "attributes": { "weight": 2 } }, { "key": "850", "source": "300", "target": "271", "attributes": { "weight": 2 } }, { "key": "33154", "source": "300", "target": "178", "attributes": { "weight": 1 } }, { "key": "28080", "source": "300", "target": "836", "attributes": { "weight": 1 } }, { "key": "14273", "source": "300", "target": "168", "attributes": { "weight": 6 } }, { "key": "2930", "source": "300", "target": "289", "attributes": { "weight": 4 } }, { "key": "852", "source": "300", "target": "287", "attributes": { "weight": 8 } }, { "key": "13313", "source": "300", "target": "304", "attributes": { "weight": 4 } }, { "key": "13310", "source": "300", "target": "290", "attributes": { "weight": 4 } }, { "key": "13305", "source": "300", "target": "259", "attributes": { "weight": 6 } }, { "key": "847", "source": "300", "target": "261", "attributes": { "weight": 6 } }, { "key": "13316", "source": "300", "target": "318", "attributes": { "weight": 3 } }, { "key": "2931", "source": "300", "target": "292", "attributes": { "weight": 2 } }, { "key": "14762", "source": "300", "target": "283", "attributes": { "weight": 3 } }, { "key": "13306", "source": "300", "target": "268", "attributes": { "weight": 5 } }, { "key": "854", "source": "300", "target": "311", "attributes": { "weight": 3 } }, { "key": "25038", "source": "300", "target": "580", "attributes": { "weight": 2 } }, { "key": "851", "source": "300", "target": "277", "attributes": { "weight": 3 } }, { "key": "848", "source": "300", "target": "262", "attributes": { "weight": 5 } }, { "key": "853", "source": "300", "target": "298", "attributes": { "weight": 1 } }, { "key": "13314", "source": "300", "target": "312", "attributes": { "weight": 5 } }, { "key": "14760", "source": "300", "target": "275", "attributes": { "weight": 3 } }, { "key": "13308", "source": "300", "target": "454", "attributes": { "weight": 2 } }, { "key": "28087", "source": "300", "target": "308", "attributes": { "weight": 2 } }, { "key": "849", "source": "300", "target": "264", "attributes": { "weight": 5 } }, { "key": "13315", "source": "300", "target": "313", "attributes": { "weight": 3 } }, { "key": "25749", "source": "300", "target": "582", "attributes": { "weight": 2 } }, { "key": "3210", "source": "300", "target": "307", "attributes": { "weight": 6 } }, { "key": "28081", "source": "300", "target": "260", "attributes": { "weight": 1 } }, { "key": "13307", "source": "300", "target": "272", "attributes": { "weight": 8 } }, { "key": "23005", "source": "301", "target": "276", "attributes": { "weight": 1 } }, { "key": "13320", "source": "301", "target": "259", "attributes": { "weight": 3 } }, { "key": "22609", "source": "301", "target": "1513", "attributes": { "weight": 1 } }, { "key": "14774", "source": "301", "target": "179", "attributes": { "weight": 1 } }, { "key": "14771", "source": "301", "target": "289", "attributes": { "weight": 2 } }, { "key": "13327", "source": "301", "target": "327", "attributes": { "weight": 6 } }, { "key": "13325", "source": "301", "target": "304", "attributes": { "weight": 4 } }, { "key": "13321", "source": "301", "target": "260", "attributes": { "weight": 4 } }, { "key": "12449", "source": "301", "target": "326", "attributes": { "weight": 5 } }, { "key": "14775", "source": "301", "target": "180", "attributes": { "weight": 2 } }, { "key": "22240", "source": "301", "target": "2311", "attributes": { "weight": 1 } }, { "key": "14772", "source": "301", "target": "290", "attributes": { "weight": 2 } }, { "key": "28095", "source": "301", "target": "178", "attributes": { "weight": 1 } }, { "key": "14767", "source": "301", "target": "164", "attributes": { "weight": 2 } }, { "key": "28093", "source": "301", "target": "174", "attributes": { "weight": 1 } }, { "key": "13326", "source": "301", "target": "311", "attributes": { "weight": 4 } }, { "key": "28096", "source": "301", "target": "1642", "attributes": { "weight": 1 } }, { "key": "856", "source": "301", "target": "264", "attributes": { "weight": 3 } }, { "key": "23007", "source": "301", "target": "1919", "attributes": { "weight": 1 } }, { "key": "3211", "source": "301", "target": "839", "attributes": { "weight": 5 } }, { "key": "28094", "source": "301", "target": "176", "attributes": { "weight": 1 } }, { "key": "13322", "source": "301", "target": "167", "attributes": { "weight": 4 } }, { "key": "12448", "source": "301", "target": "312", "attributes": { "weight": 5 } }, { "key": "857", "source": "301", "target": "177", "attributes": { "weight": 1 } }, { "key": "855", "source": "301", "target": "262", "attributes": { "weight": 4 } }, { "key": "14770", "source": "301", "target": "286", "attributes": { "weight": 3 } }, { "key": "14769", "source": "301", "target": "166", "attributes": { "weight": 4 } }, { "key": "2932", "source": "301", "target": "272", "attributes": { "weight": 4 } }, { "key": "13323", "source": "301", "target": "578", "attributes": { "weight": 2 } }, { "key": "23008", "source": "301", "target": "321", "attributes": { "weight": 1 } }, { "key": "28092", "source": "301", "target": "574", "attributes": { "weight": 1 } }, { "key": "18416", "source": "301", "target": "905", "attributes": { "weight": 2 } }, { "key": "13324", "source": "301", "target": "300", "attributes": { "weight": 3 } }, { "key": "14768", "source": "301", "target": "263", "attributes": { "weight": 4 } }, { "key": "24802", "source": "301", "target": "291", "attributes": { "weight": 1 } }, { "key": "13328", "source": "301", "target": "336", "attributes": { "weight": 3 } }, { "key": "23727", "source": "301", "target": "168", "attributes": { "weight": 1 } }, { "key": "18417", "source": "301", "target": "315", "attributes": { "weight": 1 } }, { "key": "26174", "source": "301", "target": "292", "attributes": { "weight": 1 } }, { "key": "14773", "source": "301", "target": "305", "attributes": { "weight": 3 } }, { "key": "858", "source": "301", "target": "322", "attributes": { "weight": 7 } }, { "key": "2933", "source": "301", "target": "287", "attributes": { "weight": 6 } }, { "key": "23006", "source": "301", "target": "283", "attributes": { "weight": 1 } }, { "key": "9673", "source": "301", "target": "171", "attributes": { "weight": 1 } }, { "key": "24448", "source": "303", "target": "2507", "attributes": { "weight": 1 } }, { "key": "27787", "source": "303", "target": "2098", "attributes": { "weight": 1 } }, { "key": "860", "source": "303", "target": "277", "attributes": { "weight": 1 } }, { "key": "23457", "source": "303", "target": "304", "attributes": { "weight": 1 } }, { "key": "23455", "source": "303", "target": "18", "attributes": { "weight": 1 } }, { "key": "23456", "source": "303", "target": "19", "attributes": { "weight": 1 } }, { "key": "23009", "source": "303", "target": "275", "attributes": { "weight": 1 } }, { "key": "24446", "source": "303", "target": "681", "attributes": { "weight": 1 } }, { "key": "24447", "source": "303", "target": "13", "attributes": { "weight": 1 } }, { "key": "26029", "source": "303", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13448", "source": "304", "target": "1925", "attributes": { "weight": 3 } }, { "key": "13396", "source": "304", "target": "1233", "attributes": { "weight": 2 } }, { "key": "13433", "source": "304", "target": "175", "attributes": { "weight": 1 } }, { "key": "6978", "source": "304", "target": "579", "attributes": { "weight": 4 } }, { "key": "30932", "source": "304", "target": "14", "attributes": { "weight": 2 } }, { "key": "13415", "source": "304", "target": "294", "attributes": { "weight": 2 } }, { "key": "13450", "source": "304", "target": "314", "attributes": { "weight": 2 } }, { "key": "13358", "source": "304", "target": "830", "attributes": { "weight": 1 } }, { "key": "13458", "source": "304", "target": "1927", "attributes": { "weight": 3 } }, { "key": "13467", "source": "304", "target": "1931", "attributes": { "weight": 2 } }, { "key": "13387", "source": "304", "target": "169", "attributes": { "weight": 2 } }, { "key": "13439", "source": "304", "target": "307", "attributes": { "weight": 4 } }, { "key": "13406", "source": "304", "target": "286", "attributes": { "weight": 4 } }, { "key": "11250", "source": "304", "target": "1036", "attributes": { "weight": 3 } }, { "key": "14793", "source": "304", "target": "421", "attributes": { "weight": 2 } }, { "key": "13436", "source": "304", "target": "1323", "attributes": { "weight": 3 } }, { "key": "13386", "source": "304", "target": "168", "attributes": { "weight": 6 } }, { "key": "13363", "source": "304", "target": "266", "attributes": { "weight": 2 } }, { "key": "1927", "source": "304", "target": "93", "attributes": { "weight": 3 } }, { "key": "13451", "source": "304", "target": "1872", "attributes": { "weight": 2 } }, { "key": "28105", "source": "304", "target": "309", "attributes": { "weight": 1 } }, { "key": "13382", "source": "304", "target": "166", "attributes": { "weight": 5 } }, { "key": "13400", "source": "304", "target": "1912", "attributes": { "weight": 2 } }, { "key": "13364", "source": "304", "target": "1899", "attributes": { "weight": 2 } }, { "key": "23467", "source": "304", "target": "303", "attributes": { "weight": 1 } }, { "key": "13443", "source": "304", "target": "310", "attributes": { "weight": 1 } }, { "key": "13411", "source": "304", "target": "338", "attributes": { "weight": 3 } }, { "key": "13351", "source": "304", "target": "339", "attributes": { "weight": 2 } }, { "key": "13376", "source": "304", "target": "272", "attributes": { "weight": 5 } }, { "key": "23469", "source": "304", "target": "320", "attributes": { "weight": 1 } }, { "key": "13449", "source": "304", "target": "340", "attributes": { "weight": 2 } }, { "key": "13403", "source": "304", "target": "1914", "attributes": { "weight": 2 } }, { "key": "13349", "source": "304", "target": "258", "attributes": { "weight": 2 } }, { "key": "13361", "source": "304", "target": "1191", "attributes": { "weight": 2 } }, { "key": "13414", "source": "304", "target": "292", "attributes": { "weight": 4 } }, { "key": "24803", "source": "304", "target": "2396", "attributes": { "weight": 1 } }, { "key": "13457", "source": "304", "target": "321", "attributes": { "weight": 4 } }, { "key": "13366", "source": "304", "target": "419", "attributes": { "weight": 1 } }, { "key": "863", "source": "304", "target": "324", "attributes": { "weight": 1 } }, { "key": "13367", "source": "304", "target": "268", "attributes": { "weight": 6 } }, { "key": "13420", "source": "304", "target": "298", "attributes": { "weight": 2 } }, { "key": "13405", "source": "304", "target": "638", "attributes": { "weight": 2 } }, { "key": "28099", "source": "304", "target": "282", "attributes": { "weight": 1 } }, { "key": "13456", "source": "304", "target": "497", "attributes": { "weight": 2 } }, { "key": "13459", "source": "304", "target": "322", "attributes": { "weight": 5 } }, { "key": "13404", "source": "304", "target": "1849", "attributes": { "weight": 3 } }, { "key": "30477", "source": "304", "target": "1046", "attributes": { "weight": 1 } }, { "key": "13394", "source": "304", "target": "1911", "attributes": { "weight": 2 } }, { "key": "14791", "source": "304", "target": "574", "attributes": { "weight": 2 } }, { "key": "30933", "source": "304", "target": "2507", "attributes": { "weight": 1 } }, { "key": "30931", "source": "304", "target": "19", "attributes": { "weight": 1 } }, { "key": "13407", "source": "304", "target": "170", "attributes": { "weight": 2 } }, { "key": "27744", "source": "304", "target": "1553", "attributes": { "weight": 1 } }, { "key": "13378", "source": "304", "target": "1903", "attributes": { "weight": 2 } }, { "key": "24541", "source": "304", "target": "790", "attributes": { "weight": 1 } }, { "key": "27288", "source": "304", "target": "57", "attributes": { "weight": 1 } }, { "key": "13399", "source": "304", "target": "791", "attributes": { "weight": 2 } }, { "key": "13965", "source": "304", "target": "905", "attributes": { "weight": 1 } }, { "key": "22518", "source": "304", "target": "567", "attributes": { "weight": 1 } }, { "key": "13408", "source": "304", "target": "288", "attributes": { "weight": 3 } }, { "key": "12601", "source": "304", "target": "180", "attributes": { "weight": 4 } }, { "key": "28101", "source": "304", "target": "906", "attributes": { "weight": 1 } }, { "key": "13383", "source": "304", "target": "275", "attributes": { "weight": 4 } }, { "key": "23461", "source": "304", "target": "2310", "attributes": { "weight": 1 } }, { "key": "28100", "source": "304", "target": "1976", "attributes": { "weight": 1 } }, { "key": "14787", "source": "304", "target": "1970", "attributes": { "weight": 1 } }, { "key": "13424", "source": "304", "target": "1922", "attributes": { "weight": 3 } }, { "key": "14786", "source": "304", "target": "220", "attributes": { "weight": 2 } }, { "key": "13471", "source": "304", "target": "1934", "attributes": { "weight": 3 } }, { "key": "14792", "source": "304", "target": "1909", "attributes": { "weight": 2 } }, { "key": "15129", "source": "304", "target": "171", "attributes": { "weight": 2 } }, { "key": "25752", "source": "304", "target": "697", "attributes": { "weight": 2 } }, { "key": "13392", "source": "304", "target": "1227", "attributes": { "weight": 3 } }, { "key": "13385", "source": "304", "target": "167", "attributes": { "weight": 8 } }, { "key": "23468", "source": "304", "target": "13", "attributes": { "weight": 2 } }, { "key": "35017", "source": "304", "target": "352", "attributes": { "weight": 1 } }, { "key": "2935", "source": "304", "target": "293", "attributes": { "weight": 1 } }, { "key": "13423", "source": "304", "target": "473", "attributes": { "weight": 1 } }, { "key": "30614", "source": "304", "target": "25", "attributes": { "weight": 2 } }, { "key": "14799", "source": "304", "target": "1928", "attributes": { "weight": 2 } }, { "key": "23465", "source": "304", "target": "8", "attributes": { "weight": 2 } }, { "key": "13359", "source": "304", "target": "674", "attributes": { "weight": 2 } }, { "key": "13357", "source": "304", "target": "696", "attributes": { "weight": 2 } }, { "key": "13447", "source": "304", "target": "313", "attributes": { "weight": 5 } }, { "key": "12022", "source": "304", "target": "468", "attributes": { "weight": 3 } }, { "key": "13384", "source": "304", "target": "276", "attributes": { "weight": 3 } }, { "key": "13446", "source": "304", "target": "1924", "attributes": { "weight": 1 } }, { "key": "13464", "source": "304", "target": "327", "attributes": { "weight": 6 } }, { "key": "13352", "source": "304", "target": "259", "attributes": { "weight": 4 } }, { "key": "13477", "source": "304", "target": "908", "attributes": { "weight": 3 } }, { "key": "13435", "source": "304", "target": "1923", "attributes": { "weight": 2 } }, { "key": "13426", "source": "304", "target": "300", "attributes": { "weight": 4 } }, { "key": "13437", "source": "304", "target": "177", "attributes": { "weight": 1 } }, { "key": "13401", "source": "304", "target": "370", "attributes": { "weight": 3 } }, { "key": "13375", "source": "304", "target": "1902", "attributes": { "weight": 2 } }, { "key": "13369", "source": "304", "target": "270", "attributes": { "weight": 2 } }, { "key": "23460", "source": "304", "target": "223", "attributes": { "weight": 2 } }, { "key": "13397", "source": "304", "target": "278", "attributes": { "weight": 4 } }, { "key": "13441", "source": "304", "target": "595", "attributes": { "weight": 4 } }, { "key": "13413", "source": "304", "target": "291", "attributes": { "weight": 5 } }, { "key": "13356", "source": "304", "target": "1897", "attributes": { "weight": 2 } }, { "key": "13355", "source": "304", "target": "1896", "attributes": { "weight": 2 } }, { "key": "23470", "source": "304", "target": "2449", "attributes": { "weight": 1 } }, { "key": "14788", "source": "304", "target": "901", "attributes": { "weight": 1 } }, { "key": "25633", "source": "304", "target": "1780", "attributes": { "weight": 1 } }, { "key": "23459", "source": "304", "target": "787", "attributes": { "weight": 2 } }, { "key": "23010", "source": "304", "target": "1971", "attributes": { "weight": 1 } }, { "key": "13468", "source": "304", "target": "842", "attributes": { "weight": 2 } }, { "key": "10923", "source": "304", "target": "457", "attributes": { "weight": 2 } }, { "key": "13445", "source": "304", "target": "312", "attributes": { "weight": 4 } }, { "key": "13452", "source": "304", "target": "318", "attributes": { "weight": 3 } }, { "key": "13402", "source": "304", "target": "1913", "attributes": { "weight": 2 } }, { "key": "13350", "source": "304", "target": "164", "attributes": { "weight": 3 } }, { "key": "13430", "source": "304", "target": "1512", "attributes": { "weight": 2 } }, { "key": "14794", "source": "304", "target": "283", "attributes": { "weight": 2 } }, { "key": "13474", "source": "304", "target": "332", "attributes": { "weight": 2 } }, { "key": "13353", "source": "304", "target": "260", "attributes": { "weight": 3 } }, { "key": "13395", "source": "304", "target": "1232", "attributes": { "weight": 2 } }, { "key": "23466", "source": "304", "target": "1611", "attributes": { "weight": 2 } }, { "key": "28098", "source": "304", "target": "902", "attributes": { "weight": 1 } }, { "key": "13410", "source": "304", "target": "290", "attributes": { "weight": 5 } }, { "key": "13409", "source": "304", "target": "289", "attributes": { "weight": 4 } }, { "key": "13454", "source": "304", "target": "319", "attributes": { "weight": 4 } }, { "key": "13377", "source": "304", "target": "454", "attributes": { "weight": 2 } }, { "key": "13425", "source": "304", "target": "299", "attributes": { "weight": 5 } }, { "key": "13389", "source": "304", "target": "1907", "attributes": { "weight": 2 } }, { "key": "13422", "source": "304", "target": "1921", "attributes": { "weight": 2 } }, { "key": "13455", "source": "304", "target": "495", "attributes": { "weight": 2 } }, { "key": "13442", "source": "304", "target": "179", "attributes": { "weight": 3 } }, { "key": "13463", "source": "304", "target": "326", "attributes": { "weight": 5 } }, { "key": "13473", "source": "304", "target": "1515", "attributes": { "weight": 2 } }, { "key": "13475", "source": "304", "target": "334", "attributes": { "weight": 2 } }, { "key": "24804", "source": "304", "target": "1850", "attributes": { "weight": 2 } }, { "key": "13348", "source": "304", "target": "836", "attributes": { "weight": 3 } }, { "key": "14789", "source": "304", "target": "1898", "attributes": { "weight": 2 } }, { "key": "14790", "source": "304", "target": "913", "attributes": { "weight": 3 } }, { "key": "13380", "source": "304", "target": "52", "attributes": { "weight": 1 } }, { "key": "13381", "source": "304", "target": "1904", "attributes": { "weight": 2 } }, { "key": "13365", "source": "304", "target": "1900", "attributes": { "weight": 2 } }, { "key": "13427", "source": "304", "target": "301", "attributes": { "weight": 4 } }, { "key": "13462", "source": "304", "target": "1930", "attributes": { "weight": 2 } }, { "key": "13362", "source": "304", "target": "265", "attributes": { "weight": 3 } }, { "key": "13438", "source": "304", "target": "839", "attributes": { "weight": 7 } }, { "key": "13432", "source": "304", "target": "305", "attributes": { "weight": 6 } }, { "key": "5955", "source": "304", "target": "1322", "attributes": { "weight": 5 } }, { "key": "5954", "source": "304", "target": "123", "attributes": { "weight": 5 } }, { "key": "14795", "source": "304", "target": "1985", "attributes": { "weight": 1 } }, { "key": "861", "source": "304", "target": "262", "attributes": { "weight": 6 } }, { "key": "13470", "source": "304", "target": "1933", "attributes": { "weight": 3 } }, { "key": "13346", "source": "304", "target": "1380", "attributes": { "weight": 2 } }, { "key": "13393", "source": "304", "target": "277", "attributes": { "weight": 6 } }, { "key": "13391", "source": "304", "target": "707", "attributes": { "weight": 4 } }, { "key": "13466", "source": "304", "target": "330", "attributes": { "weight": 2 } }, { "key": "30934", "source": "304", "target": "1967", "attributes": { "weight": 1 } }, { "key": "13416", "source": "304", "target": "1918", "attributes": { "weight": 2 } }, { "key": "13390", "source": "304", "target": "1908", "attributes": { "weight": 2 } }, { "key": "23462", "source": "304", "target": "2448", "attributes": { "weight": 1 } }, { "key": "13421", "source": "304", "target": "189", "attributes": { "weight": 2 } }, { "key": "864", "source": "304", "target": "335", "attributes": { "weight": 1 } }, { "key": "28103", "source": "304", "target": "295", "attributes": { "weight": 1 } }, { "key": "2934", "source": "304", "target": "287", "attributes": { "weight": 6 } }, { "key": "13388", "source": "304", "target": "1906", "attributes": { "weight": 5 } }, { "key": "13360", "source": "304", "target": "263", "attributes": { "weight": 5 } }, { "key": "13374", "source": "304", "target": "452", "attributes": { "weight": 1 } }, { "key": "28104", "source": "304", "target": "1919", "attributes": { "weight": 1 } }, { "key": "13428", "source": "304", "target": "580", "attributes": { "weight": 6 } }, { "key": "13440", "source": "304", "target": "178", "attributes": { "weight": 2 } }, { "key": "13370", "source": "304", "target": "183", "attributes": { "weight": 2 } }, { "key": "14797", "source": "304", "target": "1774", "attributes": { "weight": 2 } }, { "key": "23463", "source": "304", "target": "1965", "attributes": { "weight": 3 } }, { "key": "24695", "source": "304", "target": "5", "attributes": { "weight": 1 } }, { "key": "13476", "source": "304", "target": "336", "attributes": { "weight": 3 } }, { "key": "13412", "source": "304", "target": "135", "attributes": { "weight": 2 } }, { "key": "14798", "source": "304", "target": "1853", "attributes": { "weight": 1 } }, { "key": "13347", "source": "304", "target": "59", "attributes": { "weight": 2 } }, { "key": "13444", "source": "304", "target": "311", "attributes": { "weight": 4 } }, { "key": "13472", "source": "304", "target": "1854", "attributes": { "weight": 4 } }, { "key": "13431", "source": "304", "target": "582", "attributes": { "weight": 4 } }, { "key": "13465", "source": "304", "target": "328", "attributes": { "weight": 5 } }, { "key": "28102", "source": "304", "target": "1984", "attributes": { "weight": 1 } }, { "key": "9353", "source": "304", "target": "430", "attributes": { "weight": 1 } }, { "key": "13434", "source": "304", "target": "176", "attributes": { "weight": 1 } }, { "key": "13469", "source": "304", "target": "331", "attributes": { "weight": 4 } }, { "key": "7374", "source": "304", "target": "333", "attributes": { "weight": 2 } }, { "key": "13372", "source": "304", "target": "271", "attributes": { "weight": 3 } }, { "key": "23464", "source": "304", "target": "681", "attributes": { "weight": 3 } }, { "key": "13379", "source": "304", "target": "699", "attributes": { "weight": 4 } }, { "key": "862", "source": "304", "target": "264", "attributes": { "weight": 6 } }, { "key": "16476", "source": "304", "target": "1387", "attributes": { "weight": 1 } }, { "key": "13417", "source": "304", "target": "471", "attributes": { "weight": 2 } }, { "key": "13419", "source": "304", "target": "578", "attributes": { "weight": 2 } }, { "key": "13368", "source": "304", "target": "1901", "attributes": { "weight": 3 } }, { "key": "13371", "source": "304", "target": "358", "attributes": { "weight": 2 } }, { "key": "13460", "source": "304", "target": "323", "attributes": { "weight": 3 } }, { "key": "6979", "source": "304", "target": "193", "attributes": { "weight": 2 } }, { "key": "7375", "source": "304", "target": "1063", "attributes": { "weight": 3 } }, { "key": "13418", "source": "304", "target": "1920", "attributes": { "weight": 4 } }, { "key": "13373", "source": "304", "target": "1047", "attributes": { "weight": 2 } }, { "key": "13461", "source": "304", "target": "1929", "attributes": { "weight": 2 } }, { "key": "13354", "source": "304", "target": "261", "attributes": { "weight": 5 } }, { "key": "9013", "source": "304", "target": "442", "attributes": { "weight": 4 } }, { "key": "34912", "source": "304", "target": "1042", "attributes": { "weight": 1 } }, { "key": "13453", "source": "304", "target": "1926", "attributes": { "weight": 2 } }, { "key": "14796", "source": "304", "target": "1554", "attributes": { "weight": 1 } }, { "key": "28119", "source": "305", "target": "1921", "attributes": { "weight": 1 } }, { "key": "28126", "source": "305", "target": "314", "attributes": { "weight": 1 } }, { "key": "13503", "source": "305", "target": "326", "attributes": { "weight": 8 } }, { "key": "13497", "source": "305", "target": "304", "attributes": { "weight": 6 } }, { "key": "2936", "source": "305", "target": "276", "attributes": { "weight": 2 } }, { "key": "28112", "source": "305", "target": "274", "attributes": { "weight": 1 } }, { "key": "3221", "source": "305", "target": "277", "attributes": { "weight": 5 } }, { "key": "23471", "source": "305", "target": "291", "attributes": { "weight": 2 } }, { "key": "3228", "source": "305", "target": "175", "attributes": { "weight": 3 } }, { "key": "13487", "source": "305", "target": "791", "attributes": { "weight": 2 } }, { "key": "13501", "source": "305", "target": "312", "attributes": { "weight": 6 } }, { "key": "13491", "source": "305", "target": "289", "attributes": { "weight": 5 } }, { "key": "3229", "source": "305", "target": "307", "attributes": { "weight": 5 } }, { "key": "6201", "source": "305", "target": "123", "attributes": { "weight": 5 } }, { "key": "14813", "source": "305", "target": "1920", "attributes": { "weight": 1 } }, { "key": "14812", "source": "305", "target": "171", "attributes": { "weight": 4 } }, { "key": "28109", "source": "305", "target": "1899", "attributes": { "weight": 1 } }, { "key": "28121", "source": "305", "target": "300", "attributes": { "weight": 1 } }, { "key": "13482", "source": "305", "target": "1047", "attributes": { "weight": 2 } }, { "key": "3231", "source": "305", "target": "311", "attributes": { "weight": 5 } }, { "key": "28125", "source": "305", "target": "1924", "attributes": { "weight": 1 } }, { "key": "14814", "source": "305", "target": "1922", "attributes": { "weight": 1 } }, { "key": "23283", "source": "305", "target": "2310", "attributes": { "weight": 1 } }, { "key": "3235", "source": "305", "target": "327", "attributes": { "weight": 4 } }, { "key": "27200", "source": "305", "target": "1611", "attributes": { "weight": 1 } }, { "key": "3220", "source": "305", "target": "169", "attributes": { "weight": 4 } }, { "key": "28113", "source": "305", "target": "1908", "attributes": { "weight": 1 } }, { "key": "3217", "source": "305", "target": "268", "attributes": { "weight": 7 } }, { "key": "23282", "source": "305", "target": "258", "attributes": { "weight": 2 } }, { "key": "3227", "source": "305", "target": "301", "attributes": { "weight": 4 } }, { "key": "14807", "source": "305", "target": "1900", "attributes": { "weight": 1 } }, { "key": "19020", "source": "305", "target": "1970", "attributes": { "weight": 2 } }, { "key": "28123", "source": "305", "target": "308", "attributes": { "weight": 1 } }, { "key": "3233", "source": "305", "target": "313", "attributes": { "weight": 6 } }, { "key": "13504", "source": "305", "target": "1854", "attributes": { "weight": 3 } }, { "key": "25066", "source": "305", "target": "1822", "attributes": { "weight": 2 } }, { "key": "28116", "source": "305", "target": "295", "attributes": { "weight": 1 } }, { "key": "10926", "source": "305", "target": "457", "attributes": { "weight": 2 } }, { "key": "25059", "source": "305", "target": "1191", "attributes": { "weight": 2 } }, { "key": "14815", "source": "305", "target": "319", "attributes": { "weight": 2 } }, { "key": "23287", "source": "305", "target": "1929", "attributes": { "weight": 1 } }, { "key": "34913", "source": "305", "target": "1042", "attributes": { "weight": 1 } }, { "key": "13499", "source": "305", "target": "1323", "attributes": { "weight": 4 } }, { "key": "7385", "source": "305", "target": "333", "attributes": { "weight": 3 } }, { "key": "13500", "source": "305", "target": "310", "attributes": { "weight": 4 } }, { "key": "9033", "source": "305", "target": "442", "attributes": { "weight": 3 } }, { "key": "19027", "source": "305", "target": "316", "attributes": { "weight": 3 } }, { "key": "7386", "source": "305", "target": "1063", "attributes": { "weight": 2 } }, { "key": "13488", "source": "305", "target": "283", "attributes": { "weight": 2 } }, { "key": "13498", "source": "305", "target": "1823", "attributes": { "weight": 2 } }, { "key": "13493", "source": "305", "target": "189", "attributes": { "weight": 2 } }, { "key": "13492", "source": "305", "target": "297", "attributes": { "weight": 4 } }, { "key": "19023", "source": "305", "target": "582", "attributes": { "weight": 4 } }, { "key": "3213", "source": "305", "target": "164", "attributes": { "weight": 5 } }, { "key": "865", "source": "305", "target": "262", "attributes": { "weight": 7 } }, { "key": "13495", "source": "305", "target": "579", "attributes": { "weight": 5 } }, { "key": "25067", "source": "305", "target": "1871", "attributes": { "weight": 2 } }, { "key": "3224", "source": "305", "target": "170", "attributes": { "weight": 7 } }, { "key": "23285", "source": "305", "target": "1512", "attributes": { "weight": 3 } }, { "key": "28118", "source": "305", "target": "1919", "attributes": { "weight": 1 } }, { "key": "16206", "source": "305", "target": "370", "attributes": { "weight": 2 } }, { "key": "19025", "source": "305", "target": "179", "attributes": { "weight": 1 } }, { "key": "6200", "source": "305", "target": "338", "attributes": { "weight": 6 } }, { "key": "13480", "source": "305", "target": "1146", "attributes": { "weight": 2 } }, { "key": "28127", "source": "305", "target": "328", "attributes": { "weight": 1 } }, { "key": "16207", "source": "305", "target": "1322", "attributes": { "weight": 2 } }, { "key": "28120", "source": "305", "target": "1985", "attributes": { "weight": 1 } }, { "key": "3232", "source": "305", "target": "907", "attributes": { "weight": 1 } }, { "key": "28114", "source": "305", "target": "1227", "attributes": { "weight": 1 } }, { "key": "23286", "source": "305", "target": "1925", "attributes": { "weight": 1 } }, { "key": "3230", "source": "305", "target": "178", "attributes": { "weight": 3 } }, { "key": "14810", "source": "305", "target": "278", "attributes": { "weight": 5 } }, { "key": "14804", "source": "305", "target": "220", "attributes": { "weight": 3 } }, { "key": "3219", "source": "305", "target": "168", "attributes": { "weight": 7 } }, { "key": "12033", "source": "305", "target": "468", "attributes": { "weight": 4 } }, { "key": "3216", "source": "305", "target": "830", "attributes": { "weight": 3 } }, { "key": "14818", "source": "305", "target": "336", "attributes": { "weight": 4 } }, { "key": "11746", "source": "305", "target": "315", "attributes": { "weight": 3 } }, { "key": "14809", "source": "305", "target": "166", "attributes": { "weight": 5 } }, { "key": "19029", "source": "305", "target": "324", "attributes": { "weight": 2 } }, { "key": "19022", "source": "305", "target": "298", "attributes": { "weight": 2 } }, { "key": "28115", "source": "305", "target": "1909", "attributes": { "weight": 1 } }, { "key": "25063", "source": "305", "target": "1870", "attributes": { "weight": 2 } }, { "key": "25064", "source": "305", "target": "1820", "attributes": { "weight": 2 } }, { "key": "14816", "source": "305", "target": "322", "attributes": { "weight": 5 } }, { "key": "14817", "source": "305", "target": "1934", "attributes": { "weight": 2 } }, { "key": "3215", "source": "305", "target": "697", "attributes": { "weight": 4 } }, { "key": "28111", "source": "305", "target": "574", "attributes": { "weight": 2 } }, { "key": "9890", "source": "305", "target": "411", "attributes": { "weight": 1 } }, { "key": "13481", "source": "305", "target": "259", "attributes": { "weight": 6 } }, { "key": "3214", "source": "305", "target": "261", "attributes": { "weight": 5 } }, { "key": "27746", "source": "305", "target": "1553", "attributes": { "weight": 1 } }, { "key": "25549", "source": "305", "target": "174", "attributes": { "weight": 2 } }, { "key": "28128", "source": "305", "target": "330", "attributes": { "weight": 1 } }, { "key": "22530", "source": "305", "target": "567", "attributes": { "weight": 2 } }, { "key": "28122", "source": "305", "target": "177", "attributes": { "weight": 2 } }, { "key": "19024", "source": "305", "target": "2230", "attributes": { "weight": 2 } }, { "key": "23473", "source": "305", "target": "2449", "attributes": { "weight": 1 } }, { "key": "3225", "source": "305", "target": "290", "attributes": { "weight": 7 } }, { "key": "3234", "source": "305", "target": "180", "attributes": { "weight": 8 } }, { "key": "28110", "source": "305", "target": "572", "attributes": { "weight": 1 } }, { "key": "12382", "source": "305", "target": "565", "attributes": { "weight": 1 } }, { "key": "19021", "source": "305", "target": "1915", "attributes": { "weight": 2 } }, { "key": "28117", "source": "305", "target": "1918", "attributes": { "weight": 1 } }, { "key": "3218", "source": "305", "target": "271", "attributes": { "weight": 3 } }, { "key": "19030", "source": "305", "target": "1931", "attributes": { "weight": 2 } }, { "key": "13484", "source": "305", "target": "698", "attributes": { "weight": 3 } }, { "key": "35791", "source": "305", "target": "790", "attributes": { "weight": 1 } }, { "key": "13494", "source": "305", "target": "473", "attributes": { "weight": 1 } }, { "key": "19026", "source": "305", "target": "1962", "attributes": { "weight": 2 } }, { "key": "3212", "source": "305", "target": "564", "attributes": { "weight": 2 } }, { "key": "18080", "source": "305", "target": "1036", "attributes": { "weight": 2 } }, { "key": "23284", "source": "305", "target": "272", "attributes": { "weight": 2 } }, { "key": "14805", "source": "305", "target": "260", "attributes": { "weight": 3 } }, { "key": "28108", "source": "305", "target": "266", "attributes": { "weight": 1 } }, { "key": "3223", "source": "305", "target": "905", "attributes": { "weight": 4 } }, { "key": "3222", "source": "305", "target": "904", "attributes": { "weight": 1 } }, { "key": "35499", "source": "305", "target": "1857", "attributes": { "weight": 1 } }, { "key": "14808", "source": "305", "target": "913", "attributes": { "weight": 3 } }, { "key": "3236", "source": "305", "target": "334", "attributes": { "weight": 3 } }, { "key": "13502", "source": "305", "target": "321", "attributes": { "weight": 3 } }, { "key": "31358", "source": "305", "target": "674", "attributes": { "weight": 1 } }, { "key": "25061", "source": "305", "target": "1905", "attributes": { "weight": 2 } }, { "key": "3226", "source": "305", "target": "578", "attributes": { "weight": 6 } }, { "key": "17969", "source": "305", "target": "1380", "attributes": { "weight": 1 } }, { "key": "13485", "source": "305", "target": "275", "attributes": { "weight": 2 } }, { "key": "13489", "source": "305", "target": "284", "attributes": { "weight": 3 } }, { "key": "27295", "source": "305", "target": "57", "attributes": { "weight": 1 } }, { "key": "14811", "source": "305", "target": "1849", "attributes": { "weight": 1 } }, { "key": "25062", "source": "305", "target": "1979", "attributes": { "weight": 2 } }, { "key": "13483", "source": "305", "target": "454", "attributes": { "weight": 3 } }, { "key": "14806", "source": "305", "target": "263", "attributes": { "weight": 2 } }, { "key": "9519", "source": "305", "target": "419", "attributes": { "weight": 2 } }, { "key": "1933", "source": "305", "target": "93", "attributes": { "weight": 4 } }, { "key": "866", "source": "305", "target": "264", "attributes": { "weight": 7 } }, { "key": "23472", "source": "305", "target": "318", "attributes": { "weight": 2 } }, { "key": "13490", "source": "305", "target": "286", "attributes": { "weight": 3 } }, { "key": "867", "source": "305", "target": "309", "attributes": { "weight": 1 } }, { "key": "30479", "source": "305", "target": "1046", "attributes": { "weight": 1 } }, { "key": "28124", "source": "305", "target": "595", "attributes": { "weight": 2 } }, { "key": "28107", "source": "305", "target": "1969", "attributes": { "weight": 1 } }, { "key": "23288", "source": "305", "target": "2443", "attributes": { "weight": 1 } }, { "key": "25065", "source": "305", "target": "2345", "attributes": { "weight": 2 } }, { "key": "2937", "source": "305", "target": "287", "attributes": { "weight": 6 } }, { "key": "11260", "source": "305", "target": "452", "attributes": { "weight": 2 } }, { "key": "17508", "source": "305", "target": "358", "attributes": { "weight": 1 } }, { "key": "23281", "source": "305", "target": "836", "attributes": { "weight": 1 } }, { "key": "13496", "source": "305", "target": "580", "attributes": { "weight": 5 } }, { "key": "22610", "source": "305", "target": "1513", "attributes": { "weight": 1 } }, { "key": "869", "source": "306", "target": "264", "attributes": { "weight": 3 } }, { "key": "868", "source": "306", "target": "262", "attributes": { "weight": 1 } }, { "key": "14840", "source": "307", "target": "1854", "attributes": { "weight": 1 } }, { "key": "14836", "source": "307", "target": "579", "attributes": { "weight": 1 } }, { "key": "3263", "source": "307", "target": "308", "attributes": { "weight": 3 } }, { "key": "14827", "source": "307", "target": "697", "attributes": { "weight": 1 } }, { "key": "23014", "source": "307", "target": "1897", "attributes": { "weight": 1 } }, { "key": "14830", "source": "307", "target": "168", "attributes": { "weight": 1 } }, { "key": "14834", "source": "307", "target": "290", "attributes": { "weight": 1 } }, { "key": "3265", "source": "307", "target": "326", "attributes": { "weight": 6 } }, { "key": "8230", "source": "307", "target": "180", "attributes": { "weight": 4 } }, { "key": "14826", "source": "307", "target": "836", "attributes": { "weight": 1 } }, { "key": "23017", "source": "307", "target": "1849", "attributes": { "weight": 1 } }, { "key": "13525", "source": "307", "target": "578", "attributes": { "weight": 2 } }, { "key": "875", "source": "307", "target": "318", "attributes": { "weight": 4 } }, { "key": "14837", "source": "307", "target": "582", "attributes": { "weight": 2 } }, { "key": "13529", "source": "307", "target": "314", "attributes": { "weight": 5 } }, { "key": "13522", "source": "307", "target": "454", "attributes": { "weight": 2 } }, { "key": "3260", "source": "307", "target": "298", "attributes": { "weight": 1 } }, { "key": "12452", "source": "307", "target": "313", "attributes": { "weight": 9 } }, { "key": "13521", "source": "307", "target": "265", "attributes": { "weight": 3 } }, { "key": "29798", "source": "307", "target": "276", "attributes": { "weight": 1 } }, { "key": "18006", "source": "307", "target": "1984", "attributes": { "weight": 1 } }, { "key": "3264", "source": "307", "target": "312", "attributes": { "weight": 3 } }, { "key": "14828", "source": "307", "target": "262", "attributes": { "weight": 1 } }, { "key": "14838", "source": "307", "target": "327", "attributes": { "weight": 3 } }, { "key": "23018", "source": "307", "target": "1920", "attributes": { "weight": 1 } }, { "key": "25229", "source": "307", "target": "1902", "attributes": { "weight": 1 } }, { "key": "13526", "source": "307", "target": "580", "attributes": { "weight": 4 } }, { "key": "13530", "source": "307", "target": "321", "attributes": { "weight": 2 } }, { "key": "14835", "source": "307", "target": "291", "attributes": { "weight": 1 } }, { "key": "3259", "source": "307", "target": "906", "attributes": { "weight": 1 } }, { "key": "23475", "source": "307", "target": "2449", "attributes": { "weight": 1 } }, { "key": "876", "source": "307", "target": "329", "attributes": { "weight": 1 } }, { "key": "9069", "source": "307", "target": "1554", "attributes": { "weight": 2 } }, { "key": "13520", "source": "307", "target": "260", "attributes": { "weight": 3 } }, { "key": "874", "source": "307", "target": "299", "attributes": { "weight": 1 } }, { "key": "13532", "source": "307", "target": "323", "attributes": { "weight": 2 } }, { "key": "13528", "source": "307", "target": "304", "attributes": { "weight": 4 } }, { "key": "14833", "source": "307", "target": "170", "attributes": { "weight": 2 } }, { "key": "18005", "source": "307", "target": "1976", "attributes": { "weight": 1 } }, { "key": "14829", "source": "307", "target": "698", "attributes": { "weight": 1 } }, { "key": "23019", "source": "307", "target": "316", "attributes": { "weight": 1 } }, { "key": "37473", "source": "307", "target": "696", "attributes": { "weight": 1 } }, { "key": "23474", "source": "307", "target": "286", "attributes": { "weight": 1 } }, { "key": "872", "source": "307", "target": "264", "attributes": { "weight": 3 } }, { "key": "23016", "source": "307", "target": "1907", "attributes": { "weight": 1 } }, { "key": "877", "source": "307", "target": "333", "attributes": { "weight": 1 } }, { "key": "13531", "source": "307", "target": "322", "attributes": { "weight": 3 } }, { "key": "3258", "source": "307", "target": "167", "attributes": { "weight": 7 } }, { "key": "873", "source": "307", "target": "270", "attributes": { "weight": 1 } }, { "key": "9068", "source": "307", "target": "259", "attributes": { "weight": 4 } }, { "key": "3261", "source": "307", "target": "300", "attributes": { "weight": 6 } }, { "key": "13524", "source": "307", "target": "295", "attributes": { "weight": 2 } }, { "key": "871", "source": "307", "target": "263", "attributes": { "weight": 1 } }, { "key": "14831", "source": "307", "target": "278", "attributes": { "weight": 2 } }, { "key": "19046", "source": "307", "target": "839", "attributes": { "weight": 2 } }, { "key": "14841", "source": "307", "target": "1515", "attributes": { "weight": 1 } }, { "key": "23015", "source": "307", "target": "266", "attributes": { "weight": 1 } }, { "key": "3262", "source": "307", "target": "305", "attributes": { "weight": 5 } }, { "key": "14832", "source": "307", "target": "1850", "attributes": { "weight": 1 } }, { "key": "13523", "source": "307", "target": "275", "attributes": { "weight": 3 } }, { "key": "14839", "source": "307", "target": "1933", "attributes": { "weight": 1 } }, { "key": "3277", "source": "308", "target": "327", "attributes": { "weight": 1 } }, { "key": "22243", "source": "308", "target": "2230", "attributes": { "weight": 3 } }, { "key": "28148", "source": "308", "target": "2724", "attributes": { "weight": 2 } }, { "key": "880", "source": "308", "target": "290", "attributes": { "weight": 2 } }, { "key": "3276", "source": "308", "target": "180", "attributes": { "weight": 3 } }, { "key": "28647", "source": "308", "target": "321", "attributes": { "weight": 1 } }, { "key": "28146", "source": "308", "target": "300", "attributes": { "weight": 2 } }, { "key": "23020", "source": "308", "target": "270", "attributes": { "weight": 1 } }, { "key": "3270", "source": "308", "target": "275", "attributes": { "weight": 2 } }, { "key": "14848", "source": "308", "target": "319", "attributes": { "weight": 2 } }, { "key": "24808", "source": "308", "target": "326", "attributes": { "weight": 4 } }, { "key": "3268", "source": "308", "target": "262", "attributes": { "weight": 4 } }, { "key": "28646", "source": "308", "target": "299", "attributes": { "weight": 1 } }, { "key": "28147", "source": "308", "target": "305", "attributes": { "weight": 1 } }, { "key": "3272", "source": "308", "target": "287", "attributes": { "weight": 4 } }, { "key": "3269", "source": "308", "target": "268", "attributes": { "weight": 2 } }, { "key": "13538", "source": "308", "target": "1854", "attributes": { "weight": 2 } }, { "key": "3275", "source": "308", "target": "312", "attributes": { "weight": 4 } }, { "key": "24807", "source": "308", "target": "311", "attributes": { "weight": 1 } }, { "key": "13537", "source": "308", "target": "313", "attributes": { "weight": 4 } }, { "key": "3273", "source": "308", "target": "839", "attributes": { "weight": 5 } }, { "key": "879", "source": "308", "target": "277", "attributes": { "weight": 3 } }, { "key": "14845", "source": "308", "target": "836", "attributes": { "weight": 3 } }, { "key": "3267", "source": "308", "target": "259", "attributes": { "weight": 3 } }, { "key": "23021", "source": "308", "target": "286", "attributes": { "weight": 1 } }, { "key": "24806", "source": "308", "target": "292", "attributes": { "weight": 1 } }, { "key": "3271", "source": "308", "target": "167", "attributes": { "weight": 7 } }, { "key": "24805", "source": "308", "target": "261", "attributes": { "weight": 1 } }, { "key": "3274", "source": "308", "target": "307", "attributes": { "weight": 3 } }, { "key": "14847", "source": "308", "target": "263", "attributes": { "weight": 1 } }, { "key": "14846", "source": "308", "target": "258", "attributes": { "weight": 1 } }, { "key": "28145", "source": "308", "target": "291", "attributes": { "weight": 1 } }, { "key": "878", "source": "308", "target": "264", "attributes": { "weight": 3 } }, { "key": "34801", "source": "309", "target": "3161", "attributes": { "weight": 1 } }, { "key": "28149", "source": "309", "target": "304", "attributes": { "weight": 1 } }, { "key": "16358", "source": "309", "target": "580", "attributes": { "weight": 1 } }, { "key": "881", "source": "309", "target": "259", "attributes": { "weight": 1 } }, { "key": "29220", "source": "309", "target": "170", "attributes": { "weight": 1 } }, { "key": "882", "source": "309", "target": "305", "attributes": { "weight": 1 } }, { "key": "29221", "source": "309", "target": "582", "attributes": { "weight": 1 } }, { "key": "34800", "source": "309", "target": "700", "attributes": { "weight": 1 } }, { "key": "29219", "source": "309", "target": "278", "attributes": { "weight": 1 } }, { "key": "16357", "source": "309", "target": "579", "attributes": { "weight": 1 } }, { "key": "12040", "source": "310", "target": "178", "attributes": { "weight": 9 } }, { "key": "30275", "source": "310", "target": "177", "attributes": { "weight": 2 } }, { "key": "30276", "source": "310", "target": "2976", "attributes": { "weight": 1 } }, { "key": "28839", "source": "310", "target": "2807", "attributes": { "weight": 1 } }, { "key": "30272", "source": "310", "target": "2968", "attributes": { "weight": 1 } }, { "key": "28299", "source": "310", "target": "2228", "attributes": { "weight": 2 } }, { "key": "6432", "source": "310", "target": "1146", "attributes": { "weight": 11 } }, { "key": "33022", "source": "310", "target": "2562", "attributes": { "weight": 1 } }, { "key": "30267", "source": "310", "target": "2959", "attributes": { "weight": 3 } }, { "key": "28151", "source": "310", "target": "300", "attributes": { "weight": 2 } }, { "key": "28840", "source": "310", "target": "2814", "attributes": { "weight": 3 } }, { "key": "28841", "source": "310", "target": "2423", "attributes": { "weight": 1 } }, { "key": "30265", "source": "310", "target": "2954", "attributes": { "weight": 2 } }, { "key": "25214", "source": "310", "target": "169", "attributes": { "weight": 1 } }, { "key": "30270", "source": "310", "target": "638", "attributes": { "weight": 2 } }, { "key": "35387", "source": "310", "target": "2224", "attributes": { "weight": 1 } }, { "key": "37584", "source": "310", "target": "2561", "attributes": { "weight": 1 } }, { "key": "6435", "source": "310", "target": "1177", "attributes": { "weight": 3 } }, { "key": "13543", "source": "310", "target": "305", "attributes": { "weight": 4 } }, { "key": "13542", "source": "310", "target": "304", "attributes": { "weight": 1 } }, { "key": "18536", "source": "310", "target": "1280", "attributes": { "weight": 4 } }, { "key": "29833", "source": "310", "target": "93", "attributes": { "weight": 2 } }, { "key": "17517", "source": "310", "target": "164", "attributes": { "weight": 4 } }, { "key": "14864", "source": "310", "target": "259", "attributes": { "weight": 1 } }, { "key": "884", "source": "310", "target": "262", "attributes": { "weight": 1 } }, { "key": "37581", "source": "310", "target": "2971", "attributes": { "weight": 1 } }, { "key": "35385", "source": "310", "target": "2966", "attributes": { "weight": 1 } }, { "key": "30266", "source": "310", "target": "2958", "attributes": { "weight": 1 } }, { "key": "17519", "source": "310", "target": "2120", "attributes": { "weight": 5 } }, { "key": "37585", "source": "310", "target": "3403", "attributes": { "weight": 1 } }, { "key": "30269", "source": "310", "target": "2963", "attributes": { "weight": 1 } }, { "key": "6436", "source": "310", "target": "1178", "attributes": { "weight": 7 } }, { "key": "6431", "source": "310", "target": "1143", "attributes": { "weight": 5 } }, { "key": "25215", "source": "310", "target": "2557", "attributes": { "weight": 2 } }, { "key": "6433", "source": "310", "target": "1151", "attributes": { "weight": 3 } }, { "key": "37576", "source": "310", "target": "3390", "attributes": { "weight": 1 } }, { "key": "6434", "source": "310", "target": "1166", "attributes": { "weight": 5 } }, { "key": "15132", "source": "310", "target": "171", "attributes": { "weight": 2 } }, { "key": "28842", "source": "310", "target": "1323", "attributes": { "weight": 2 } }, { "key": "18537", "source": "310", "target": "2222", "attributes": { "weight": 1 } }, { "key": "37586", "source": "310", "target": "3404", "attributes": { "weight": 1 } }, { "key": "22562", "source": "310", "target": "567", "attributes": { "weight": 2 } }, { "key": "6440", "source": "310", "target": "1227", "attributes": { "weight": 5 } }, { "key": "6437", "source": "310", "target": "1187", "attributes": { "weight": 5 } }, { "key": "37582", "source": "310", "target": "3401", "attributes": { "weight": 1 } }, { "key": "17520", "source": "310", "target": "2121", "attributes": { "weight": 3 } }, { "key": "30271", "source": "310", "target": "2967", "attributes": { "weight": 1 } }, { "key": "25217", "source": "310", "target": "2559", "attributes": { "weight": 2 } }, { "key": "35384", "source": "310", "target": "2213", "attributes": { "weight": 1 } }, { "key": "11286", "source": "310", "target": "1036", "attributes": { "weight": 3 } }, { "key": "30264", "source": "310", "target": "2953", "attributes": { "weight": 3 } }, { "key": "17518", "source": "310", "target": "358", "attributes": { "weight": 2 } }, { "key": "6438", "source": "310", "target": "368", "attributes": { "weight": 2 } }, { "key": "7408", "source": "310", "target": "333", "attributes": { "weight": 1 } }, { "key": "25073", "source": "310", "target": "580", "attributes": { "weight": 2 } }, { "key": "22563", "source": "310", "target": "572", "attributes": { "weight": 3 } }, { "key": "30268", "source": "310", "target": "2960", "attributes": { "weight": 2 } }, { "key": "25210", "source": "310", "target": "2552", "attributes": { "weight": 1 } }, { "key": "29986", "source": "310", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13973", "source": "310", "target": "180", "attributes": { "weight": 1 } }, { "key": "37587", "source": "310", "target": "3406", "attributes": { "weight": 1 } }, { "key": "25769", "source": "310", "target": "278", "attributes": { "weight": 4 } }, { "key": "37578", "source": "310", "target": "3394", "attributes": { "weight": 1 } }, { "key": "6442", "source": "310", "target": "297", "attributes": { "weight": 7 } }, { "key": "25216", "source": "310", "target": "2558", "attributes": { "weight": 2 } }, { "key": "37580", "source": "310", "target": "3400", "attributes": { "weight": 1 } }, { "key": "25212", "source": "310", "target": "2554", "attributes": { "weight": 3 } }, { "key": "37579", "source": "310", "target": "3398", "attributes": { "weight": 1 } }, { "key": "9535", "source": "310", "target": "419", "attributes": { "weight": 1 } }, { "key": "30273", "source": "310", "target": "2972", "attributes": { "weight": 1 } }, { "key": "6441", "source": "310", "target": "338", "attributes": { "weight": 6 } }, { "key": "10933", "source": "310", "target": "168", "attributes": { "weight": 5 } }, { "key": "26267", "source": "310", "target": "601", "attributes": { "weight": 2 } }, { "key": "30277", "source": "310", "target": "2977", "attributes": { "weight": 2 } }, { "key": "30274", "source": "310", "target": "2745", "attributes": { "weight": 2 } }, { "key": "25218", "source": "310", "target": "1996", "attributes": { "weight": 4 } }, { "key": "37577", "source": "310", "target": "3391", "attributes": { "weight": 1 } }, { "key": "35386", "source": "310", "target": "2560", "attributes": { "weight": 1 } }, { "key": "37583", "source": "310", "target": "3402", "attributes": { "weight": 1 } }, { "key": "25213", "source": "310", "target": "2556", "attributes": { "weight": 3 } }, { "key": "25211", "source": "310", "target": "2553", "attributes": { "weight": 2 } }, { "key": "30087", "source": "310", "target": "2940", "attributes": { "weight": 1 } }, { "key": "6439", "source": "310", "target": "165", "attributes": { "weight": 4 } }, { "key": "25219", "source": "310", "target": "1341", "attributes": { "weight": 2 } }, { "key": "6443", "source": "310", "target": "173", "attributes": { "weight": 5 } }, { "key": "13544", "source": "311", "target": "301", "attributes": { "weight": 4 } }, { "key": "35039", "source": "311", "target": "3", "attributes": { "weight": 1 } }, { "key": "893", "source": "311", "target": "321", "attributes": { "weight": 3 } }, { "key": "13546", "source": "311", "target": "312", "attributes": { "weight": 4 } }, { "key": "889", "source": "311", "target": "298", "attributes": { "weight": 1 } }, { "key": "12454", "source": "311", "target": "336", "attributes": { "weight": 2 } }, { "key": "14868", "source": "311", "target": "179", "attributes": { "weight": 1 } }, { "key": "3279", "source": "311", "target": "167", "attributes": { "weight": 8 } }, { "key": "3280", "source": "311", "target": "305", "attributes": { "weight": 5 } }, { "key": "14872", "source": "311", "target": "332", "attributes": { "weight": 1 } }, { "key": "14865", "source": "311", "target": "259", "attributes": { "weight": 3 } }, { "key": "24811", "source": "311", "target": "331", "attributes": { "weight": 1 } }, { "key": "2941", "source": "311", "target": "287", "attributes": { "weight": 3 } }, { "key": "14873", "source": "311", "target": "334", "attributes": { "weight": 1 } }, { "key": "24809", "source": "311", "target": "286", "attributes": { "weight": 1 } }, { "key": "891", "source": "311", "target": "300", "attributes": { "weight": 3 } }, { "key": "12453", "source": "311", "target": "263", "attributes": { "weight": 5 } }, { "key": "887", "source": "311", "target": "289", "attributes": { "weight": 4 } }, { "key": "24810", "source": "311", "target": "308", "attributes": { "weight": 1 } }, { "key": "888", "source": "311", "target": "290", "attributes": { "weight": 1 } }, { "key": "14282", "source": "311", "target": "168", "attributes": { "weight": 3 } }, { "key": "894", "source": "311", "target": "330", "attributes": { "weight": 1 } }, { "key": "14871", "source": "311", "target": "1931", "attributes": { "weight": 1 } }, { "key": "885", "source": "311", "target": "262", "attributes": { "weight": 5 } }, { "key": "890", "source": "311", "target": "299", "attributes": { "weight": 2 } }, { "key": "14867", "source": "311", "target": "272", "attributes": { "weight": 3 } }, { "key": "14866", "source": "311", "target": "260", "attributes": { "weight": 5 } }, { "key": "886", "source": "311", "target": "264", "attributes": { "weight": 5 } }, { "key": "14869", "source": "311", "target": "322", "attributes": { "weight": 4 } }, { "key": "13545", "source": "311", "target": "304", "attributes": { "weight": 4 } }, { "key": "13974", "source": "311", "target": "180", "attributes": { "weight": 1 } }, { "key": "13549", "source": "311", "target": "327", "attributes": { "weight": 5 } }, { "key": "13548", "source": "311", "target": "323", "attributes": { "weight": 2 } }, { "key": "3281", "source": "311", "target": "839", "attributes": { "weight": 3 } }, { "key": "14870", "source": "311", "target": "326", "attributes": { "weight": 3 } }, { "key": "28152", "source": "311", "target": "1918", "attributes": { "weight": 1 } }, { "key": "23028", "source": "311", "target": "908", "attributes": { "weight": 1 } }, { "key": "23476", "source": "311", "target": "276", "attributes": { "weight": 1 } }, { "key": "23027", "source": "311", "target": "316", "attributes": { "weight": 2 } }, { "key": "13547", "source": "311", "target": "318", "attributes": { "weight": 2 } }, { "key": "892", "source": "311", "target": "314", "attributes": { "weight": 2 } }, { "key": "18007", "source": "312", "target": "1918", "attributes": { "weight": 1 } }, { "key": "3284", "source": "312", "target": "839", "attributes": { "weight": 7 } }, { "key": "13580", "source": "312", "target": "323", "attributes": { "weight": 4 } }, { "key": "23479", "source": "312", "target": "319", "attributes": { "weight": 1 } }, { "key": "14882", "source": "312", "target": "1909", "attributes": { "weight": 1 } }, { "key": "13566", "source": "312", "target": "289", "attributes": { "weight": 5 } }, { "key": "13572", "source": "312", "target": "305", "attributes": { "weight": 6 } }, { "key": "14887", "source": "312", "target": "299", "attributes": { "weight": 4 } }, { "key": "23478", "source": "312", "target": "295", "attributes": { "weight": 1 } }, { "key": "14877", "source": "312", "target": "263", "attributes": { "weight": 2 } }, { "key": "3282", "source": "312", "target": "167", "attributes": { "weight": 8 } }, { "key": "14876", "source": "312", "target": "697", "attributes": { "weight": 1 } }, { "key": "12456", "source": "312", "target": "316", "attributes": { "weight": 6 } }, { "key": "13564", "source": "312", "target": "286", "attributes": { "weight": 5 } }, { "key": "14881", "source": "312", "target": "169", "attributes": { "weight": 1 } }, { "key": "13578", "source": "312", "target": "321", "attributes": { "weight": 4 } }, { "key": "13555", "source": "312", "target": "268", "attributes": { "weight": 3 } }, { "key": "9699", "source": "312", "target": "564", "attributes": { "weight": 2 } }, { "key": "13581", "source": "312", "target": "1929", "attributes": { "weight": 3 } }, { "key": "18407", "source": "312", "target": "1621", "attributes": { "weight": 1 } }, { "key": "37477", "source": "312", "target": "332", "attributes": { "weight": 1 } }, { "key": "13553", "source": "312", "target": "265", "attributes": { "weight": 4 } }, { "key": "11754", "source": "312", "target": "180", "attributes": { "weight": 4 } }, { "key": "13552", "source": "312", "target": "261", "attributes": { "weight": 2 } }, { "key": "13560", "source": "312", "target": "1911", "attributes": { "weight": 2 } }, { "key": "23477", "source": "312", "target": "291", "attributes": { "weight": 1 } }, { "key": "14891", "source": "312", "target": "908", "attributes": { "weight": 1 } }, { "key": "14874", "source": "312", "target": "1973", "attributes": { "weight": 1 } }, { "key": "14884", "source": "312", "target": "1919", "attributes": { "weight": 1 } }, { "key": "14875", "source": "312", "target": "901", "attributes": { "weight": 1 } }, { "key": "13558", "source": "312", "target": "276", "attributes": { "weight": 4 } }, { "key": "13554", "source": "312", "target": "1899", "attributes": { "weight": 2 } }, { "key": "13587", "source": "312", "target": "331", "attributes": { "weight": 3 } }, { "key": "14890", "source": "312", "target": "1872", "attributes": { "weight": 1 } }, { "key": "14880", "source": "312", "target": "272", "attributes": { "weight": 4 } }, { "key": "13573", "source": "312", "target": "178", "attributes": { "weight": 5 } }, { "key": "14883", "source": "312", "target": "288", "attributes": { "weight": 1 } }, { "key": "12455", "source": "312", "target": "301", "attributes": { "weight": 5 } }, { "key": "897", "source": "312", "target": "324", "attributes": { "weight": 1 } }, { "key": "13562", "source": "312", "target": "283", "attributes": { "weight": 4 } }, { "key": "13561", "source": "312", "target": "1912", "attributes": { "weight": 2 } }, { "key": "13589", "source": "312", "target": "334", "attributes": { "weight": 2 } }, { "key": "13559", "source": "312", "target": "277", "attributes": { "weight": 3 } }, { "key": "13567", "source": "312", "target": "290", "attributes": { "weight": 3 } }, { "key": "13975", "source": "312", "target": "905", "attributes": { "weight": 1 } }, { "key": "14885", "source": "312", "target": "1510", "attributes": { "weight": 1 } }, { "key": "25770", "source": "312", "target": "278", "attributes": { "weight": 3 } }, { "key": "2942", "source": "312", "target": "292", "attributes": { "weight": 1 } }, { "key": "896", "source": "312", "target": "264", "attributes": { "weight": 7 } }, { "key": "13576", "source": "312", "target": "314", "attributes": { "weight": 4 } }, { "key": "895", "source": "312", "target": "262", "attributes": { "weight": 6 } }, { "key": "13583", "source": "312", "target": "327", "attributes": { "weight": 4 } }, { "key": "11753", "source": "312", "target": "1513", "attributes": { "weight": 1 } }, { "key": "13556", "source": "312", "target": "1904", "attributes": { "weight": 2 } }, { "key": "14889", "source": "312", "target": "1853", "attributes": { "weight": 1 } }, { "key": "13563", "source": "312", "target": "1916", "attributes": { "weight": 2 } }, { "key": "23294", "source": "312", "target": "258", "attributes": { "weight": 1 } }, { "key": "28153", "source": "312", "target": "1913", "attributes": { "weight": 1 } }, { "key": "14878", "source": "312", "target": "572", "attributes": { "weight": 1 } }, { "key": "13579", "source": "312", "target": "322", "attributes": { "weight": 4 } }, { "key": "14886", "source": "312", "target": "1985", "attributes": { "weight": 1 } }, { "key": "9700", "source": "312", "target": "171", "attributes": { "weight": 1 } }, { "key": "3283", "source": "312", "target": "902", "attributes": { "weight": 1 } }, { "key": "3286", "source": "312", "target": "308", "attributes": { "weight": 4 } }, { "key": "13569", "source": "312", "target": "300", "attributes": { "weight": 5 } }, { "key": "13574", "source": "312", "target": "311", "attributes": { "weight": 4 } }, { "key": "3285", "source": "312", "target": "307", "attributes": { "weight": 3 } }, { "key": "26031", "source": "312", "target": "2622", "attributes": { "weight": 2 } }, { "key": "23480", "source": "312", "target": "329", "attributes": { "weight": 1 } }, { "key": "13575", "source": "312", "target": "313", "attributes": { "weight": 4 } }, { "key": "13584", "source": "312", "target": "330", "attributes": { "weight": 2 } }, { "key": "13568", "source": "312", "target": "298", "attributes": { "weight": 2 } }, { "key": "14888", "source": "312", "target": "1987", "attributes": { "weight": 1 } }, { "key": "13571", "source": "312", "target": "304", "attributes": { "weight": 4 } }, { "key": "14879", "source": "312", "target": "271", "attributes": { "weight": 1 } }, { "key": "13577", "source": "312", "target": "318", "attributes": { "weight": 4 } }, { "key": "13582", "source": "312", "target": "326", "attributes": { "weight": 5 } }, { "key": "13557", "source": "312", "target": "166", "attributes": { "weight": 4 } }, { "key": "13550", "source": "312", "target": "164", "attributes": { "weight": 2 } }, { "key": "13585", "source": "312", "target": "1931", "attributes": { "weight": 2 } }, { "key": "13588", "source": "312", "target": "1854", "attributes": { "weight": 2 } }, { "key": "28154", "source": "312", "target": "1851", "attributes": { "weight": 1 } }, { "key": "13551", "source": "312", "target": "260", "attributes": { "weight": 4 } }, { "key": "13565", "source": "312", "target": "287", "attributes": { "weight": 6 } }, { "key": "13586", "source": "312", "target": "842", "attributes": { "weight": 2 } }, { "key": "19050", "source": "313", "target": "1850", "attributes": { "weight": 2 } }, { "key": "12458", "source": "313", "target": "307", "attributes": { "weight": 9 } }, { "key": "33160", "source": "313", "target": "178", "attributes": { "weight": 1 } }, { "key": "25075", "source": "313", "target": "698", "attributes": { "weight": 2 } }, { "key": "13616", "source": "313", "target": "1934", "attributes": { "weight": 3 } }, { "key": "11756", "source": "313", "target": "180", "attributes": { "weight": 4 } }, { "key": "13596", "source": "313", "target": "276", "attributes": { "weight": 4 } }, { "key": "13597", "source": "313", "target": "167", "attributes": { "weight": 9 } }, { "key": "14893", "source": "313", "target": "272", "attributes": { "weight": 3 } }, { "key": "13612", "source": "313", "target": "1928", "attributes": { "weight": 2 } }, { "key": "13602", "source": "313", "target": "299", "attributes": { "weight": 5 } }, { "key": "14892", "source": "313", "target": "1901", "attributes": { "weight": 2 } }, { "key": "3288", "source": "313", "target": "839", "attributes": { "weight": 6 } }, { "key": "13599", "source": "313", "target": "1915", "attributes": { "weight": 2 } }, { "key": "898", "source": "313", "target": "264", "attributes": { "weight": 6 } }, { "key": "13598", "source": "313", "target": "277", "attributes": { "weight": 6 } }, { "key": "13604", "source": "313", "target": "580", "attributes": { "weight": 3 } }, { "key": "2420", "source": "313", "target": "278", "attributes": { "weight": 6 } }, { "key": "13613", "source": "313", "target": "326", "attributes": { "weight": 7 } }, { "key": "13601", "source": "313", "target": "170", "attributes": { "weight": 5 } }, { "key": "13608", "source": "313", "target": "312", "attributes": { "weight": 4 } }, { "key": "899", "source": "313", "target": "287", "attributes": { "weight": 3 } }, { "key": "13610", "source": "313", "target": "318", "attributes": { "weight": 4 } }, { "key": "28648", "source": "313", "target": "2230", "attributes": { "weight": 1 } }, { "key": "2943", "source": "313", "target": "322", "attributes": { "weight": 6 } }, { "key": "19048", "source": "313", "target": "1900", "attributes": { "weight": 2 } }, { "key": "19049", "source": "313", "target": "1849", "attributes": { "weight": 2 } }, { "key": "13605", "source": "313", "target": "304", "attributes": { "weight": 5 } }, { "key": "13593", "source": "313", "target": "261", "attributes": { "weight": 5 } }, { "key": "13615", "source": "313", "target": "1931", "attributes": { "weight": 2 } }, { "key": "31093", "source": "313", "target": "164", "attributes": { "weight": 1 } }, { "key": "14894", "source": "313", "target": "275", "attributes": { "weight": 1 } }, { "key": "13611", "source": "313", "target": "321", "attributes": { "weight": 4 } }, { "key": "13594", "source": "313", "target": "262", "attributes": { "weight": 3 } }, { "key": "12457", "source": "313", "target": "263", "attributes": { "weight": 4 } }, { "key": "28156", "source": "313", "target": "1920", "attributes": { "weight": 1 } }, { "key": "13600", "source": "313", "target": "286", "attributes": { "weight": 3 } }, { "key": "13603", "source": "313", "target": "300", "attributes": { "weight": 3 } }, { "key": "13592", "source": "313", "target": "260", "attributes": { "weight": 5 } }, { "key": "14896", "source": "313", "target": "1872", "attributes": { "weight": 1 } }, { "key": "14895", "source": "313", "target": "289", "attributes": { "weight": 1 } }, { "key": "11755", "source": "313", "target": "905", "attributes": { "weight": 1 } }, { "key": "13607", "source": "313", "target": "308", "attributes": { "weight": 4 } }, { "key": "13614", "source": "313", "target": "327", "attributes": { "weight": 4 } }, { "key": "12864", "source": "313", "target": "582", "attributes": { "weight": 5 } }, { "key": "14283", "source": "313", "target": "168", "attributes": { "weight": 2 } }, { "key": "13606", "source": "313", "target": "305", "attributes": { "weight": 5 } }, { "key": "28157", "source": "313", "target": "323", "attributes": { "weight": 1 } }, { "key": "13609", "source": "313", "target": "316", "attributes": { "weight": 3 } }, { "key": "13595", "source": "313", "target": "268", "attributes": { "weight": 5 } }, { "key": "25076", "source": "313", "target": "579", "attributes": { "weight": 2 } }, { "key": "31094", "source": "313", "target": "1513", "attributes": { "weight": 1 } }, { "key": "19051", "source": "313", "target": "1922", "attributes": { "weight": 2 } }, { "key": "13591", "source": "313", "target": "259", "attributes": { "weight": 5 } }, { "key": "13624", "source": "314", "target": "275", "attributes": { "weight": 4 } }, { "key": "13623", "source": "314", "target": "272", "attributes": { "weight": 5 } }, { "key": "31097", "source": "314", "target": "1513", "attributes": { "weight": 1 } }, { "key": "31095", "source": "314", "target": "164", "attributes": { "weight": 1 } }, { "key": "13640", "source": "314", "target": "327", "attributes": { "weight": 4 } }, { "key": "13636", "source": "314", "target": "318", "attributes": { "weight": 2 } }, { "key": "12610", "source": "314", "target": "905", "attributes": { "weight": 1 } }, { "key": "901", "source": "314", "target": "262", "attributes": { "weight": 5 } }, { "key": "13639", "source": "314", "target": "322", "attributes": { "weight": 4 } }, { "key": "13633", "source": "314", "target": "839", "attributes": { "weight": 3 } }, { "key": "13621", "source": "314", "target": "260", "attributes": { "weight": 2 } }, { "key": "13638", "source": "314", "target": "321", "attributes": { "weight": 2 } }, { "key": "13635", "source": "314", "target": "312", "attributes": { "weight": 4 } }, { "key": "13630", "source": "314", "target": "289", "attributes": { "weight": 2 } }, { "key": "13641", "source": "314", "target": "1854", "attributes": { "weight": 2 } }, { "key": "31098", "source": "314", "target": "1928", "attributes": { "weight": 1 } }, { "key": "13634", "source": "314", "target": "307", "attributes": { "weight": 5 } }, { "key": "13626", "source": "314", "target": "278", "attributes": { "weight": 6 } }, { "key": "14905", "source": "314", "target": "290", "attributes": { "weight": 2 } }, { "key": "23031", "source": "314", "target": "1925", "attributes": { "weight": 1 } }, { "key": "905", "source": "314", "target": "287", "attributes": { "weight": 6 } }, { "key": "13632", "source": "314", "target": "304", "attributes": { "weight": 2 } }, { "key": "13620", "source": "314", "target": "259", "attributes": { "weight": 5 } }, { "key": "12611", "source": "314", "target": "180", "attributes": { "weight": 2 } }, { "key": "902", "source": "314", "target": "264", "attributes": { "weight": 7 } }, { "key": "906", "source": "314", "target": "311", "attributes": { "weight": 2 } }, { "key": "13637", "source": "314", "target": "319", "attributes": { "weight": 4 } }, { "key": "13631", "source": "314", "target": "291", "attributes": { "weight": 4 } }, { "key": "31096", "source": "314", "target": "1508", "attributes": { "weight": 1 } }, { "key": "904", "source": "314", "target": "277", "attributes": { "weight": 7 } }, { "key": "28162", "source": "314", "target": "305", "attributes": { "weight": 1 } }, { "key": "13622", "source": "314", "target": "263", "attributes": { "weight": 4 } }, { "key": "28161", "source": "314", "target": "168", "attributes": { "weight": 1 } }, { "key": "13625", "source": "314", "target": "167", "attributes": { "weight": 4 } }, { "key": "13628", "source": "314", "target": "286", "attributes": { "weight": 3 } }, { "key": "907", "source": "314", "target": "326", "attributes": { "weight": 7 } }, { "key": "13629", "source": "314", "target": "170", "attributes": { "weight": 3 } }, { "key": "24814", "source": "314", "target": "292", "attributes": { "weight": 1 } }, { "key": "903", "source": "314", "target": "268", "attributes": { "weight": 6 } }, { "key": "900", "source": "314", "target": "261", "attributes": { "weight": 6 } }, { "key": "11763", "source": "315", "target": "305", "attributes": { "weight": 3 } }, { "key": "22622", "source": "315", "target": "167", "attributes": { "weight": 1 } }, { "key": "18421", "source": "315", "target": "318", "attributes": { "weight": 1 } }, { "key": "11764", "source": "315", "target": "327", "attributes": { "weight": 2 } }, { "key": "8242", "source": "315", "target": "1514", "attributes": { "weight": 1 } }, { "key": "12650", "source": "315", "target": "707", "attributes": { "weight": 4 } }, { "key": "12651", "source": "315", "target": "839", "attributes": { "weight": 6 } }, { "key": "22621", "source": "315", "target": "276", "attributes": { "weight": 1 } }, { "key": "18420", "source": "315", "target": "301", "attributes": { "weight": 1 } }, { "key": "8239", "source": "315", "target": "272", "attributes": { "weight": 3 } }, { "key": "13643", "source": "315", "target": "316", "attributes": { "weight": 3 } }, { "key": "910", "source": "315", "target": "264", "attributes": { "weight": 1 } }, { "key": "8240", "source": "315", "target": "1509", "attributes": { "weight": 2 } }, { "key": "909", "source": "315", "target": "262", "attributes": { "weight": 2 } }, { "key": "12649", "source": "315", "target": "699", "attributes": { "weight": 4 } }, { "key": "8241", "source": "315", "target": "1511", "attributes": { "weight": 2 } }, { "key": "22623", "source": "315", "target": "1508", "attributes": { "weight": 1 } }, { "key": "22624", "source": "315", "target": "322", "attributes": { "weight": 1 } }, { "key": "8243", "source": "315", "target": "321", "attributes": { "weight": 1 } }, { "key": "12463", "source": "316", "target": "271", "attributes": { "weight": 1 } }, { "key": "28164", "source": "316", "target": "1554", "attributes": { "weight": 1 } }, { "key": "13651", "source": "316", "target": "839", "attributes": { "weight": 7 } }, { "key": "23037", "source": "316", "target": "1921", "attributes": { "weight": 1 } }, { "key": "27562", "source": "316", "target": "272", "attributes": { "weight": 1 } }, { "key": "12464", "source": "316", "target": "275", "attributes": { "weight": 6 } }, { "key": "12470", "source": "316", "target": "327", "attributes": { "weight": 5 } }, { "key": "19053", "source": "316", "target": "305", "attributes": { "weight": 3 } }, { "key": "12471", "source": "316", "target": "328", "attributes": { "weight": 1 } }, { "key": "12460", "source": "316", "target": "259", "attributes": { "weight": 5 } }, { "key": "13648", "source": "316", "target": "278", "attributes": { "weight": 4 } }, { "key": "12465", "source": "316", "target": "290", "attributes": { "weight": 1 } }, { "key": "13654", "source": "316", "target": "1931", "attributes": { "weight": 2 } }, { "key": "13646", "source": "316", "target": "166", "attributes": { "weight": 2 } }, { "key": "914", "source": "316", "target": "167", "attributes": { "weight": 5 } }, { "key": "23034", "source": "316", "target": "1903", "attributes": { "weight": 1 } }, { "key": "23041", "source": "316", "target": "318", "attributes": { "weight": 1 } }, { "key": "913", "source": "316", "target": "264", "attributes": { "weight": 6 } }, { "key": "12462", "source": "316", "target": "263", "attributes": { "weight": 5 } }, { "key": "13652", "source": "316", "target": "313", "attributes": { "weight": 3 } }, { "key": "13649", "source": "316", "target": "287", "attributes": { "weight": 3 } }, { "key": "12469", "source": "316", "target": "326", "attributes": { "weight": 7 } }, { "key": "12652", "source": "316", "target": "905", "attributes": { "weight": 1 } }, { "key": "12473", "source": "316", "target": "336", "attributes": { "weight": 1 } }, { "key": "12472", "source": "316", "target": "1854", "attributes": { "weight": 2 } }, { "key": "911", "source": "316", "target": "261", "attributes": { "weight": 2 } }, { "key": "23032", "source": "316", "target": "1897", "attributes": { "weight": 2 } }, { "key": "23035", "source": "316", "target": "902", "attributes": { "weight": 1 } }, { "key": "916", "source": "316", "target": "291", "attributes": { "weight": 2 } }, { "key": "12468", "source": "316", "target": "320", "attributes": { "weight": 1 } }, { "key": "2946", "source": "316", "target": "268", "attributes": { "weight": 8 } }, { "key": "23039", "source": "316", "target": "311", "attributes": { "weight": 2 } }, { "key": "23482", "source": "316", "target": "1898", "attributes": { "weight": 1 } }, { "key": "23040", "source": "316", "target": "1872", "attributes": { "weight": 1 } }, { "key": "13644", "source": "316", "target": "836", "attributes": { "weight": 3 } }, { "key": "23038", "source": "316", "target": "307", "attributes": { "weight": 1 } }, { "key": "25078", "source": "316", "target": "579", "attributes": { "weight": 2 } }, { "key": "12653", "source": "316", "target": "180", "attributes": { "weight": 1 } }, { "key": "13645", "source": "316", "target": "260", "attributes": { "weight": 4 } }, { "key": "12467", "source": "316", "target": "312", "attributes": { "weight": 6 } }, { "key": "915", "source": "316", "target": "277", "attributes": { "weight": 8 } }, { "key": "13647", "source": "316", "target": "168", "attributes": { "weight": 3 } }, { "key": "33161", "source": "316", "target": "178", "attributes": { "weight": 1 } }, { "key": "14912", "source": "316", "target": "322", "attributes": { "weight": 4 } }, { "key": "12461", "source": "316", "target": "697", "attributes": { "weight": 2 } }, { "key": "13653", "source": "316", "target": "315", "attributes": { "weight": 3 } }, { "key": "23036", "source": "316", "target": "286", "attributes": { "weight": 1 } }, { "key": "12466", "source": "316", "target": "299", "attributes": { "weight": 2 } }, { "key": "912", "source": "316", "target": "262", "attributes": { "weight": 7 } }, { "key": "23033", "source": "316", "target": "270", "attributes": { "weight": 1 } }, { "key": "23042", "source": "316", "target": "319", "attributes": { "weight": 1 } }, { "key": "14925", "source": "318", "target": "276", "attributes": { "weight": 3 } }, { "key": "919", "source": "318", "target": "264", "attributes": { "weight": 5 } }, { "key": "14921", "source": "318", "target": "261", "attributes": { "weight": 1 } }, { "key": "13660", "source": "318", "target": "291", "attributes": { "weight": 4 } }, { "key": "28167", "source": "318", "target": "1931", "attributes": { "weight": 1 } }, { "key": "18422", "source": "318", "target": "315", "attributes": { "weight": 1 } }, { "key": "23485", "source": "318", "target": "166", "attributes": { "weight": 1 } }, { "key": "13656", "source": "318", "target": "836", "attributes": { "weight": 2 } }, { "key": "2947", "source": "318", "target": "275", "attributes": { "weight": 2 } }, { "key": "19058", "source": "318", "target": "839", "attributes": { "weight": 4 } }, { "key": "14927", "source": "318", "target": "286", "attributes": { "weight": 1 } }, { "key": "13664", "source": "318", "target": "311", "attributes": { "weight": 2 } }, { "key": "13667", "source": "318", "target": "314", "attributes": { "weight": 2 } }, { "key": "23486", "source": "318", "target": "290", "attributes": { "weight": 2 } }, { "key": "13662", "source": "318", "target": "300", "attributes": { "weight": 3 } }, { "key": "14930", "source": "318", "target": "326", "attributes": { "weight": 2 } }, { "key": "921", "source": "318", "target": "167", "attributes": { "weight": 5 } }, { "key": "23047", "source": "318", "target": "316", "attributes": { "weight": 1 } }, { "key": "14929", "source": "318", "target": "322", "attributes": { "weight": 2 } }, { "key": "13658", "source": "318", "target": "270", "attributes": { "weight": 2 } }, { "key": "14924", "source": "318", "target": "271", "attributes": { "weight": 1 } }, { "key": "13663", "source": "318", "target": "304", "attributes": { "weight": 3 } }, { "key": "23045", "source": "318", "target": "1898", "attributes": { "weight": 3 } }, { "key": "23487", "source": "318", "target": "305", "attributes": { "weight": 2 } }, { "key": "920", "source": "318", "target": "266", "attributes": { "weight": 3 } }, { "key": "14923", "source": "318", "target": "265", "attributes": { "weight": 2 } }, { "key": "13657", "source": "318", "target": "268", "attributes": { "weight": 4 } }, { "key": "27563", "source": "318", "target": "272", "attributes": { "weight": 1 } }, { "key": "13666", "source": "318", "target": "313", "attributes": { "weight": 4 } }, { "key": "2949", "source": "318", "target": "292", "attributes": { "weight": 1 } }, { "key": "13661", "source": "318", "target": "578", "attributes": { "weight": 2 } }, { "key": "14928", "source": "318", "target": "1872", "attributes": { "weight": 2 } }, { "key": "13665", "source": "318", "target": "312", "attributes": { "weight": 4 } }, { "key": "23046", "source": "318", "target": "289", "attributes": { "weight": 1 } }, { "key": "13668", "source": "318", "target": "319", "attributes": { "weight": 3 } }, { "key": "922", "source": "318", "target": "307", "attributes": { "weight": 4 } }, { "key": "918", "source": "318", "target": "262", "attributes": { "weight": 3 } }, { "key": "13659", "source": "318", "target": "277", "attributes": { "weight": 2 } }, { "key": "14931", "source": "318", "target": "327", "attributes": { "weight": 2 } }, { "key": "28166", "source": "318", "target": "180", "attributes": { "weight": 1 } }, { "key": "23728", "source": "318", "target": "168", "attributes": { "weight": 2 } }, { "key": "14922", "source": "318", "target": "263", "attributes": { "weight": 3 } }, { "key": "2948", "source": "318", "target": "287", "attributes": { "weight": 4 } }, { "key": "14920", "source": "318", "target": "259", "attributes": { "weight": 3 } }, { "key": "12866", "source": "318", "target": "582", "attributes": { "weight": 1 } }, { "key": "14956", "source": "319", "target": "13", "attributes": { "weight": 3 } }, { "key": "13670", "source": "319", "target": "1910", "attributes": { "weight": 6 } }, { "key": "14958", "source": "319", "target": "308", "attributes": { "weight": 2 } }, { "key": "14961", "source": "319", "target": "673", "attributes": { "weight": 1 } }, { "key": "14945", "source": "319", "target": "790", "attributes": { "weight": 1 } }, { "key": "14963", "source": "319", "target": "1780", "attributes": { "weight": 2 } }, { "key": "14964", "source": "319", "target": "322", "attributes": { "weight": 4 } }, { "key": "924", "source": "319", "target": "260", "attributes": { "weight": 9 } }, { "key": "14965", "source": "319", "target": "1932", "attributes": { "weight": 2 } }, { "key": "13673", "source": "319", "target": "314", "attributes": { "weight": 4 } }, { "key": "14953", "source": "319", "target": "300", "attributes": { "weight": 1 } }, { "key": "14962", "source": "319", "target": "1989", "attributes": { "weight": 2 } }, { "key": "14932", "source": "319", "target": "1968", "attributes": { "weight": 2 } }, { "key": "14947", "source": "319", "target": "791", "attributes": { "weight": 1 } }, { "key": "14933", "source": "319", "target": "1894", "attributes": { "weight": 3 } }, { "key": "14939", "source": "319", "target": "269", "attributes": { "weight": 2 } }, { "key": "13672", "source": "319", "target": "304", "attributes": { "weight": 4 } }, { "key": "14942", "source": "319", "target": "275", "attributes": { "weight": 1 } }, { "key": "14949", "source": "319", "target": "1917", "attributes": { "weight": 4 } }, { "key": "14002", "source": "319", "target": "180", "attributes": { "weight": 2 } }, { "key": "14960", "source": "319", "target": "1774", "attributes": { "weight": 2 } }, { "key": "14948", "source": "319", "target": "1978", "attributes": { "weight": 2 } }, { "key": "2732", "source": "319", "target": "788", "attributes": { "weight": 3 } }, { "key": "2951", "source": "319", "target": "328", "attributes": { "weight": 2 } }, { "key": "14959", "source": "319", "target": "595", "attributes": { "weight": 2 } }, { "key": "14950", "source": "319", "target": "1980", "attributes": { "weight": 2 } }, { "key": "23488", "source": "319", "target": "312", "attributes": { "weight": 1 } }, { "key": "14941", "source": "319", "target": "5", "attributes": { "weight": 1 } }, { "key": "14954", "source": "319", "target": "1986", "attributes": { "weight": 2 } }, { "key": "14955", "source": "319", "target": "1988", "attributes": { "weight": 2 } }, { "key": "23049", "source": "319", "target": "270", "attributes": { "weight": 1 } }, { "key": "14957", "source": "319", "target": "305", "attributes": { "weight": 2 } }, { "key": "14937", "source": "319", "target": "259", "attributes": { "weight": 3 } }, { "key": "14943", "source": "319", "target": "167", "attributes": { "weight": 2 } }, { "key": "13674", "source": "319", "target": "318", "attributes": { "weight": 3 } }, { "key": "926", "source": "319", "target": "264", "attributes": { "weight": 5 } }, { "key": "23048", "source": "319", "target": "2395", "attributes": { "weight": 1 } }, { "key": "928", "source": "319", "target": "326", "attributes": { "weight": 9 } }, { "key": "14938", "source": "319", "target": "263", "attributes": { "weight": 2 } }, { "key": "14944", "source": "319", "target": "1908", "attributes": { "weight": 3 } }, { "key": "14940", "source": "319", "target": "789", "attributes": { "weight": 3 } }, { "key": "13675", "source": "319", "target": "1931", "attributes": { "weight": 2 } }, { "key": "925", "source": "319", "target": "262", "attributes": { "weight": 6 } }, { "key": "3291", "source": "319", "target": "839", "attributes": { "weight": 6 } }, { "key": "14951", "source": "319", "target": "289", "attributes": { "weight": 1 } }, { "key": "14935", "source": "319", "target": "1779", "attributes": { "weight": 1 } }, { "key": "14936", "source": "319", "target": "836", "attributes": { "weight": 1 } }, { "key": "2950", "source": "319", "target": "291", "attributes": { "weight": 8 } }, { "key": "14934", "source": "319", "target": "787", "attributes": { "weight": 2 } }, { "key": "14952", "source": "319", "target": "792", "attributes": { "weight": 1 } }, { "key": "927", "source": "319", "target": "285", "attributes": { "weight": 9 } }, { "key": "14946", "source": "319", "target": "421", "attributes": { "weight": 1 } }, { "key": "14966", "source": "319", "target": "1933", "attributes": { "weight": 1 } }, { "key": "23050", "source": "319", "target": "316", "attributes": { "weight": 1 } }, { "key": "23489", "source": "320", "target": "304", "attributes": { "weight": 1 } }, { "key": "929", "source": "320", "target": "326", "attributes": { "weight": 4 } }, { "key": "13676", "source": "320", "target": "264", "attributes": { "weight": 2 } }, { "key": "12475", "source": "320", "target": "316", "attributes": { "weight": 1 } }, { "key": "14967", "source": "320", "target": "260", "attributes": { "weight": 1 } }, { "key": "12474", "source": "320", "target": "287", "attributes": { "weight": 1 } }, { "key": "26032", "source": "320", "target": "2622", "attributes": { "weight": 2 } }, { "key": "931", "source": "321", "target": "264", "attributes": { "weight": 4 } }, { "key": "14971", "source": "321", "target": "322", "attributes": { "weight": 4 } }, { "key": "13682", "source": "321", "target": "287", "attributes": { "weight": 3 } }, { "key": "28650", "source": "321", "target": "308", "attributes": { "weight": 1 } }, { "key": "930", "source": "321", "target": "263", "attributes": { "weight": 4 } }, { "key": "23051", "source": "321", "target": "1903", "attributes": { "weight": 1 } }, { "key": "23055", "source": "321", "target": "301", "attributes": { "weight": 1 } }, { "key": "8245", "source": "321", "target": "315", "attributes": { "weight": 1 } }, { "key": "13686", "source": "321", "target": "312", "attributes": { "weight": 4 } }, { "key": "28170", "source": "321", "target": "697", "attributes": { "weight": 1 } }, { "key": "13691", "source": "321", "target": "336", "attributes": { "weight": 2 } }, { "key": "13681", "source": "321", "target": "262", "attributes": { "weight": 5 } }, { "key": "932", "source": "321", "target": "277", "attributes": { "weight": 1 } }, { "key": "14287", "source": "321", "target": "168", "attributes": { "weight": 3 } }, { "key": "13683", "source": "321", "target": "304", "attributes": { "weight": 4 } }, { "key": "23054", "source": "321", "target": "295", "attributes": { "weight": 1 } }, { "key": "934", "source": "321", "target": "311", "attributes": { "weight": 3 } }, { "key": "23053", "source": "321", "target": "286", "attributes": { "weight": 1 } }, { "key": "13688", "source": "321", "target": "314", "attributes": { "weight": 2 } }, { "key": "14969", "source": "321", "target": "260", "attributes": { "weight": 2 } }, { "key": "26033", "source": "321", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13687", "source": "321", "target": "313", "attributes": { "weight": 4 } }, { "key": "28649", "source": "321", "target": "166", "attributes": { "weight": 1 } }, { "key": "933", "source": "321", "target": "289", "attributes": { "weight": 3 } }, { "key": "13689", "source": "321", "target": "180", "attributes": { "weight": 1 } }, { "key": "23052", "source": "321", "target": "902", "attributes": { "weight": 1 } }, { "key": "13684", "source": "321", "target": "305", "attributes": { "weight": 3 } }, { "key": "13690", "source": "321", "target": "326", "attributes": { "weight": 5 } }, { "key": "13680", "source": "321", "target": "259", "attributes": { "weight": 6 } }, { "key": "14970", "source": "321", "target": "290", "attributes": { "weight": 1 } }, { "key": "13685", "source": "321", "target": "307", "attributes": { "weight": 2 } }, { "key": "19059", "source": "321", "target": "839", "attributes": { "weight": 3 } }, { "key": "35535", "source": "321", "target": "1857", "attributes": { "weight": 1 } }, { "key": "2952", "source": "322", "target": "268", "attributes": { "weight": 4 } }, { "key": "28171", "source": "322", "target": "1971", "attributes": { "weight": 1 } }, { "key": "14987", "source": "322", "target": "318", "attributes": { "weight": 2 } }, { "key": "14976", "source": "322", "target": "167", "attributes": { "weight": 5 } }, { "key": "14980", "source": "322", "target": "291", "attributes": { "weight": 3 } }, { "key": "14975", "source": "322", "target": "166", "attributes": { "weight": 3 } }, { "key": "938", "source": "322", "target": "283", "attributes": { "weight": 3 } }, { "key": "28176", "source": "322", "target": "1929", "attributes": { "weight": 1 } }, { "key": "14982", "source": "322", "target": "305", "attributes": { "weight": 5 } }, { "key": "14984", "source": "322", "target": "179", "attributes": { "weight": 1 } }, { "key": "18409", "source": "322", "target": "1621", "attributes": { "weight": 1 } }, { "key": "22625", "source": "322", "target": "315", "attributes": { "weight": 1 } }, { "key": "14986", "source": "322", "target": "316", "attributes": { "weight": 4 } }, { "key": "2955", "source": "322", "target": "313", "attributes": { "weight": 6 } }, { "key": "14974", "source": "322", "target": "272", "attributes": { "weight": 3 } }, { "key": "13704", "source": "322", "target": "323", "attributes": { "weight": 2 } }, { "key": "28178", "source": "322", "target": "908", "attributes": { "weight": 1 } }, { "key": "14989", "source": "322", "target": "321", "attributes": { "weight": 4 } }, { "key": "2954", "source": "322", "target": "292", "attributes": { "weight": 3 } }, { "key": "9140", "source": "322", "target": "259", "attributes": { "weight": 5 } }, { "key": "23057", "source": "322", "target": "270", "attributes": { "weight": 1 } }, { "key": "935", "source": "322", "target": "262", "attributes": { "weight": 6 } }, { "key": "13706", "source": "322", "target": "328", "attributes": { "weight": 2 } }, { "key": "13707", "source": "322", "target": "1854", "attributes": { "weight": 3 } }, { "key": "28174", "source": "322", "target": "1984", "attributes": { "weight": 1 } }, { "key": "26176", "source": "322", "target": "332", "attributes": { "weight": 2 } }, { "key": "27702", "source": "322", "target": "178", "attributes": { "weight": 3 } }, { "key": "14004", "source": "322", "target": "180", "attributes": { "weight": 3 } }, { "key": "2953", "source": "322", "target": "287", "attributes": { "weight": 8 } }, { "key": "14981", "source": "322", "target": "299", "attributes": { "weight": 2 } }, { "key": "13702", "source": "322", "target": "312", "attributes": { "weight": 4 } }, { "key": "12867", "source": "322", "target": "582", "attributes": { "weight": 1 } }, { "key": "28177", "source": "322", "target": "1931", "attributes": { "weight": 1 } }, { "key": "28175", "source": "322", "target": "1918", "attributes": { "weight": 1 } }, { "key": "13701", "source": "322", "target": "307", "attributes": { "weight": 3 } }, { "key": "14973", "source": "322", "target": "164", "attributes": { "weight": 1 } }, { "key": "14988", "source": "322", "target": "319", "attributes": { "weight": 3 } }, { "key": "14992", "source": "322", "target": "336", "attributes": { "weight": 1 } }, { "key": "936", "source": "322", "target": "264", "attributes": { "weight": 7 } }, { "key": "13699", "source": "322", "target": "578", "attributes": { "weight": 2 } }, { "key": "14991", "source": "322", "target": "1515", "attributes": { "weight": 1 } }, { "key": "18008", "source": "322", "target": "1911", "attributes": { "weight": 1 } }, { "key": "28172", "source": "322", "target": "1898", "attributes": { "weight": 1 } }, { "key": "13700", "source": "322", "target": "304", "attributes": { "weight": 5 } }, { "key": "13696", "source": "322", "target": "168", "attributes": { "weight": 4 } }, { "key": "13705", "source": "322", "target": "327", "attributes": { "weight": 8 } }, { "key": "28173", "source": "322", "target": "286", "attributes": { "weight": 1 } }, { "key": "14979", "source": "322", "target": "290", "attributes": { "weight": 1 } }, { "key": "14990", "source": "322", "target": "326", "attributes": { "weight": 3 } }, { "key": "23058", "source": "322", "target": "295", "attributes": { "weight": 1 } }, { "key": "14983", "source": "322", "target": "839", "attributes": { "weight": 4 } }, { "key": "13693", "source": "322", "target": "261", "attributes": { "weight": 3 } }, { "key": "13698", "source": "322", "target": "289", "attributes": { "weight": 5 } }, { "key": "937", "source": "322", "target": "277", "attributes": { "weight": 1 } }, { "key": "13695", "source": "322", "target": "275", "attributes": { "weight": 3 } }, { "key": "9141", "source": "322", "target": "442", "attributes": { "weight": 1 } }, { "key": "14985", "source": "322", "target": "311", "attributes": { "weight": 4 } }, { "key": "14977", "source": "322", "target": "278", "attributes": { "weight": 3 } }, { "key": "9142", "source": "322", "target": "1534", "attributes": { "weight": 4 } }, { "key": "939", "source": "322", "target": "301", "attributes": { "weight": 7 } }, { "key": "13694", "source": "322", "target": "830", "attributes": { "weight": 1 } }, { "key": "14972", "source": "322", "target": "836", "attributes": { "weight": 1 } }, { "key": "13703", "source": "322", "target": "314", "attributes": { "weight": 4 } }, { "key": "14978", "source": "322", "target": "905", "attributes": { "weight": 2 } }, { "key": "28182", "source": "323", "target": "178", "attributes": { "weight": 1 } }, { "key": "13712", "source": "323", "target": "259", "attributes": { "weight": 4 } }, { "key": "942", "source": "323", "target": "264", "attributes": { "weight": 4 } }, { "key": "13719", "source": "323", "target": "322", "attributes": { "weight": 2 } }, { "key": "28505", "source": "323", "target": "170", "attributes": { "weight": 2 } }, { "key": "28181", "source": "323", "target": "168", "attributes": { "weight": 1 } }, { "key": "28180", "source": "323", "target": "263", "attributes": { "weight": 2 } }, { "key": "14005", "source": "323", "target": "180", "attributes": { "weight": 4 } }, { "key": "13713", "source": "323", "target": "268", "attributes": { "weight": 2 } }, { "key": "37478", "source": "323", "target": "578", "attributes": { "weight": 1 } }, { "key": "941", "source": "323", "target": "262", "attributes": { "weight": 4 } }, { "key": "13718", "source": "323", "target": "312", "attributes": { "weight": 4 } }, { "key": "13715", "source": "323", "target": "304", "attributes": { "weight": 3 } }, { "key": "28183", "source": "323", "target": "313", "attributes": { "weight": 1 } }, { "key": "13716", "source": "323", "target": "307", "attributes": { "weight": 2 } }, { "key": "13714", "source": "323", "target": "272", "attributes": { "weight": 2 } }, { "key": "13721", "source": "323", "target": "327", "attributes": { "weight": 3 } }, { "key": "13720", "source": "323", "target": "326", "attributes": { "weight": 3 } }, { "key": "13717", "source": "323", "target": "311", "attributes": { "weight": 2 } }, { "key": "945", "source": "324", "target": "304", "attributes": { "weight": 1 } }, { "key": "943", "source": "324", "target": "264", "attributes": { "weight": 1 } }, { "key": "19060", "source": "324", "target": "305", "attributes": { "weight": 2 } }, { "key": "946", "source": "324", "target": "312", "attributes": { "weight": 1 } }, { "key": "13722", "source": "324", "target": "259", "attributes": { "weight": 2 } }, { "key": "14994", "source": "324", "target": "326", "attributes": { "weight": 2 } }, { "key": "944", "source": "324", "target": "287", "attributes": { "weight": 1 } }, { "key": "14995", "source": "324", "target": "327", "attributes": { "weight": 2 } }, { "key": "28185", "source": "325", "target": "287", "attributes": { "weight": 1 } }, { "key": "947", "source": "325", "target": "264", "attributes": { "weight": 3 } }, { "key": "22252", "source": "325", "target": "262", "attributes": { "weight": 1 } }, { "key": "23064", "source": "326", "target": "1908", "attributes": { "weight": 1 } }, { "key": "23068", "source": "326", "target": "1985", "attributes": { "weight": 1 } }, { "key": "961", "source": "326", "target": "328", "attributes": { "weight": 9 } }, { "key": "23067", "source": "326", "target": "1919", "attributes": { "weight": 1 } }, { "key": "24818", "source": "326", "target": "308", "attributes": { "weight": 4 } }, { "key": "23071", "source": "326", "target": "2399", "attributes": { "weight": 2 } }, { "key": "13736", "source": "326", "target": "305", "attributes": { "weight": 8 } }, { "key": "28189", "source": "326", "target": "280", "attributes": { "weight": 1 } }, { "key": "15000", "source": "326", "target": "2448", "attributes": { "weight": 2 } }, { "key": "12478", "source": "326", "target": "316", "attributes": { "weight": 7 } }, { "key": "15003", "source": "326", "target": "311", "attributes": { "weight": 3 } }, { "key": "958", "source": "326", "target": "319", "attributes": { "weight": 9 } }, { "key": "12476", "source": "326", "target": "263", "attributes": { "weight": 7 } }, { "key": "28194", "source": "326", "target": "1515", "attributes": { "weight": 1 } }, { "key": "956", "source": "326", "target": "295", "attributes": { "weight": 1 } }, { "key": "23498", "source": "326", "target": "1927", "attributes": { "weight": 1 } }, { "key": "13734", "source": "326", "target": "300", "attributes": { "weight": 6 } }, { "key": "23070", "source": "326", "target": "331", "attributes": { "weight": 1 } }, { "key": "14999", "source": "326", "target": "269", "attributes": { "weight": 2 } }, { "key": "948", "source": "326", "target": "258", "attributes": { "weight": 1 } }, { "key": "2956", "source": "326", "target": "836", "attributes": { "weight": 2 } }, { "key": "23060", "source": "326", "target": "266", "attributes": { "weight": 1 } }, { "key": "13741", "source": "326", "target": "1854", "attributes": { "weight": 2 } }, { "key": "28191", "source": "326", "target": "284", "attributes": { "weight": 1 } }, { "key": "28187", "source": "326", "target": "265", "attributes": { "weight": 1 } }, { "key": "13733", "source": "326", "target": "291", "attributes": { "weight": 6 } }, { "key": "13735", "source": "326", "target": "304", "attributes": { "weight": 5 } }, { "key": "12477", "source": "326", "target": "301", "attributes": { "weight": 5 } }, { "key": "24817", "source": "326", "target": "166", "attributes": { "weight": 1 } }, { "key": "13740", "source": "326", "target": "323", "attributes": { "weight": 3 } }, { "key": "954", "source": "326", "target": "287", "attributes": { "weight": 8 } }, { "key": "13728", "source": "326", "target": "167", "attributes": { "weight": 7 } }, { "key": "11765", "source": "326", "target": "180", "attributes": { "weight": 4 } }, { "key": "15004", "source": "326", "target": "318", "attributes": { "weight": 2 } }, { "key": "15002", "source": "326", "target": "286", "attributes": { "weight": 4 } }, { "key": "13727", "source": "326", "target": "268", "attributes": { "weight": 6 } }, { "key": "13737", "source": "326", "target": "312", "attributes": { "weight": 5 } }, { "key": "31102", "source": "326", "target": "1928", "attributes": { "weight": 1 } }, { "key": "28190", "source": "326", "target": "1913", "attributes": { "weight": 1 } }, { "key": "15005", "source": "326", "target": "322", "attributes": { "weight": 3 } }, { "key": "15006", "source": "326", "target": "324", "attributes": { "weight": 2 } }, { "key": "962", "source": "326", "target": "330", "attributes": { "weight": 1 } }, { "key": "24816", "source": "326", "target": "271", "attributes": { "weight": 2 } }, { "key": "10945", "source": "326", "target": "457", "attributes": { "weight": 1 } }, { "key": "19061", "source": "326", "target": "270", "attributes": { "weight": 3 } }, { "key": "13742", "source": "326", "target": "332", "attributes": { "weight": 2 } }, { "key": "28186", "source": "326", "target": "261", "attributes": { "weight": 1 } }, { "key": "13732", "source": "326", "target": "290", "attributes": { "weight": 7 } }, { "key": "3293", "source": "326", "target": "307", "attributes": { "weight": 6 } }, { "key": "13739", "source": "326", "target": "321", "attributes": { "weight": 5 } }, { "key": "23066", "source": "326", "target": "2398", "attributes": { "weight": 1 } }, { "key": "18410", "source": "326", "target": "1621", "attributes": { "weight": 1 } }, { "key": "13738", "source": "326", "target": "313", "attributes": { "weight": 7 } }, { "key": "23065", "source": "326", "target": "2397", "attributes": { "weight": 1 } }, { "key": "23062", "source": "326", "target": "275", "attributes": { "weight": 3 } }, { "key": "23069", "source": "326", "target": "1923", "attributes": { "weight": 1 } }, { "key": "953", "source": "326", "target": "277", "attributes": { "weight": 5 } }, { "key": "14288", "source": "326", "target": "168", "attributes": { "weight": 3 } }, { "key": "952", "source": "326", "target": "273", "attributes": { "weight": 1 } }, { "key": "951", "source": "326", "target": "272", "attributes": { "weight": 5 } }, { "key": "2957", "source": "326", "target": "292", "attributes": { "weight": 5 } }, { "key": "23059", "source": "326", "target": "901", "attributes": { "weight": 1 } }, { "key": "13730", "source": "326", "target": "1912", "attributes": { "weight": 2 } }, { "key": "949", "source": "326", "target": "262", "attributes": { "weight": 10 } }, { "key": "957", "source": "326", "target": "314", "attributes": { "weight": 7 } }, { "key": "28651", "source": "326", "target": "298", "attributes": { "weight": 1 } }, { "key": "959", "source": "326", "target": "320", "attributes": { "weight": 4 } }, { "key": "23072", "source": "326", "target": "908", "attributes": { "weight": 1 } }, { "key": "24819", "source": "326", "target": "1872", "attributes": { "weight": 1 } }, { "key": "3292", "source": "326", "target": "839", "attributes": { "weight": 5 } }, { "key": "28193", "source": "326", "target": "299", "attributes": { "weight": 1 } }, { "key": "25780", "source": "326", "target": "278", "attributes": { "weight": 3 } }, { "key": "23061", "source": "326", "target": "1903", "attributes": { "weight": 1 } }, { "key": "13731", "source": "326", "target": "289", "attributes": { "weight": 8 } }, { "key": "15001", "source": "326", "target": "276", "attributes": { "weight": 4 } }, { "key": "960", "source": "326", "target": "327", "attributes": { "weight": 7 } }, { "key": "955", "source": "326", "target": "294", "attributes": { "weight": 3 } }, { "key": "950", "source": "326", "target": "264", "attributes": { "weight": 8 } }, { "key": "28192", "source": "326", "target": "285", "attributes": { "weight": 1 } }, { "key": "28188", "source": "326", "target": "2719", "attributes": { "weight": 1 } }, { "key": "23063", "source": "326", "target": "902", "attributes": { "weight": 1 } }, { "key": "23499", "source": "326", "target": "1933", "attributes": { "weight": 1 } }, { "key": "12868", "source": "326", "target": "582", "attributes": { "weight": 1 } }, { "key": "13726", "source": "326", "target": "259", "attributes": { "weight": 5 } }, { "key": "22253", "source": "326", "target": "1976", "attributes": { "weight": 1 } }, { "key": "15017", "source": "327", "target": "1872", "attributes": { "weight": 3 } }, { "key": "13743", "source": "327", "target": "259", "attributes": { "weight": 6 } }, { "key": "963", "source": "327", "target": "263", "attributes": { "weight": 8 } }, { "key": "15009", "source": "327", "target": "166", "attributes": { "weight": 3 } }, { "key": "13759", "source": "327", "target": "311", "attributes": { "weight": 5 } }, { "key": "13754", "source": "327", "target": "300", "attributes": { "weight": 9 } }, { "key": "23500", "source": "327", "target": "1898", "attributes": { "weight": 1 } }, { "key": "15020", "source": "327", "target": "1929", "attributes": { "weight": 1 } }, { "key": "18009", "source": "327", "target": "1913", "attributes": { "weight": 1 } }, { "key": "964", "source": "327", "target": "264", "attributes": { "weight": 6 } }, { "key": "8246", "source": "327", "target": "905", "attributes": { "weight": 3 } }, { "key": "15022", "source": "327", "target": "1933", "attributes": { "weight": 1 } }, { "key": "15019", "source": "327", "target": "324", "attributes": { "weight": 2 } }, { "key": "13767", "source": "327", "target": "336", "attributes": { "weight": 4 } }, { "key": "15016", "source": "327", "target": "178", "attributes": { "weight": 4 } }, { "key": "11766", "source": "327", "target": "1513", "attributes": { "weight": 2 } }, { "key": "13756", "source": "327", "target": "580", "attributes": { "weight": 3 } }, { "key": "23074", "source": "327", "target": "1903", "attributes": { "weight": 1 } }, { "key": "23075", "source": "327", "target": "908", "attributes": { "weight": 1 } }, { "key": "3295", "source": "327", "target": "839", "attributes": { "weight": 6 } }, { "key": "13750", "source": "327", "target": "1914", "attributes": { "weight": 2 } }, { "key": "3296", "source": "327", "target": "308", "attributes": { "weight": 1 } }, { "key": "13760", "source": "327", "target": "312", "attributes": { "weight": 4 } }, { "key": "15012", "source": "327", "target": "286", "attributes": { "weight": 3 } }, { "key": "13748", "source": "327", "target": "167", "attributes": { "weight": 5 } }, { "key": "15023", "source": "327", "target": "1515", "attributes": { "weight": 2 } }, { "key": "15014", "source": "327", "target": "299", "attributes": { "weight": 3 } }, { "key": "22254", "source": "327", "target": "1971", "attributes": { "weight": 1 } }, { "key": "968", "source": "327", "target": "326", "attributes": { "weight": 7 } }, { "key": "3294", "source": "327", "target": "305", "attributes": { "weight": 4 } }, { "key": "8247", "source": "327", "target": "180", "attributes": { "weight": 2 } }, { "key": "11767", "source": "327", "target": "315", "attributes": { "weight": 2 } }, { "key": "13762", "source": "327", "target": "314", "attributes": { "weight": 4 } }, { "key": "15010", "source": "327", "target": "1909", "attributes": { "weight": 2 } }, { "key": "15013", "source": "327", "target": "171", "attributes": { "weight": 3 } }, { "key": "13745", "source": "327", "target": "260", "attributes": { "weight": 5 } }, { "key": "15015", "source": "327", "target": "307", "attributes": { "weight": 3 } }, { "key": "13765", "source": "327", "target": "323", "attributes": { "weight": 3 } }, { "key": "13766", "source": "327", "target": "332", "attributes": { "weight": 2 } }, { "key": "13755", "source": "327", "target": "301", "attributes": { "weight": 6 } }, { "key": "23501", "source": "327", "target": "329", "attributes": { "weight": 1 } }, { "key": "13753", "source": "327", "target": "578", "attributes": { "weight": 4 } }, { "key": "35536", "source": "327", "target": "1857", "attributes": { "weight": 1 } }, { "key": "2958", "source": "327", "target": "290", "attributes": { "weight": 6 } }, { "key": "27565", "source": "327", "target": "697", "attributes": { "weight": 1 } }, { "key": "13752", "source": "327", "target": "289", "attributes": { "weight": 3 } }, { "key": "13751", "source": "327", "target": "1916", "attributes": { "weight": 2 } }, { "key": "13747", "source": "327", "target": "276", "attributes": { "weight": 7 } }, { "key": "13764", "source": "327", "target": "1928", "attributes": { "weight": 3 } }, { "key": "12479", "source": "327", "target": "316", "attributes": { "weight": 5 } }, { "key": "15011", "source": "327", "target": "1977", "attributes": { "weight": 2 } }, { "key": "15018", "source": "327", "target": "318", "attributes": { "weight": 2 } }, { "key": "13758", "source": "327", "target": "304", "attributes": { "weight": 6 } }, { "key": "13761", "source": "327", "target": "313", "attributes": { "weight": 4 } }, { "key": "15007", "source": "327", "target": "220", "attributes": { "weight": 2 } }, { "key": "23073", "source": "327", "target": "901", "attributes": { "weight": 1 } }, { "key": "15021", "source": "327", "target": "331", "attributes": { "weight": 2 } }, { "key": "27566", "source": "327", "target": "268", "attributes": { "weight": 1 } }, { "key": "13746", "source": "327", "target": "262", "attributes": { "weight": 5 } }, { "key": "1949", "source": "327", "target": "93", "attributes": { "weight": 3 } }, { "key": "18010", "source": "327", "target": "1918", "attributes": { "weight": 1 } }, { "key": "14289", "source": "327", "target": "168", "attributes": { "weight": 5 } }, { "key": "13744", "source": "327", "target": "567", "attributes": { "weight": 3 } }, { "key": "13749", "source": "327", "target": "1912", "attributes": { "weight": 2 } }, { "key": "15008", "source": "327", "target": "164", "attributes": { "weight": 3 } }, { "key": "967", "source": "327", "target": "288", "attributes": { "weight": 1 } }, { "key": "965", "source": "327", "target": "265", "attributes": { "weight": 2 } }, { "key": "26037", "source": "327", "target": "2622", "attributes": { "weight": 2 } }, { "key": "966", "source": "327", "target": "287", "attributes": { "weight": 8 } }, { "key": "25781", "source": "327", "target": "278", "attributes": { "weight": 2 } }, { "key": "13763", "source": "327", "target": "322", "attributes": { "weight": 7 } }, { "key": "2959", "source": "328", "target": "287", "attributes": { "weight": 1 } }, { "key": "15025", "source": "328", "target": "289", "attributes": { "weight": 1 } }, { "key": "28195", "source": "328", "target": "2719", "attributes": { "weight": 1 } }, { "key": "970", "source": "328", "target": "264", "attributes": { "weight": 5 } }, { "key": "33125", "source": "328", "target": "300", "attributes": { "weight": 1 } }, { "key": "13769", "source": "328", "target": "304", "attributes": { "weight": 5 } }, { "key": "2960", "source": "328", "target": "319", "attributes": { "weight": 2 } }, { "key": "13768", "source": "328", "target": "260", "attributes": { "weight": 5 } }, { "key": "28197", "source": "328", "target": "2723", "attributes": { "weight": 2 } }, { "key": "972", "source": "328", "target": "298", "attributes": { "weight": 1 } }, { "key": "969", "source": "328", "target": "262", "attributes": { "weight": 7 } }, { "key": "15024", "source": "328", "target": "263", "attributes": { "weight": 1 } }, { "key": "13770", "source": "328", "target": "322", "attributes": { "weight": 2 } }, { "key": "974", "source": "328", "target": "335", "attributes": { "weight": 1 } }, { "key": "28196", "source": "328", "target": "305", "attributes": { "weight": 1 } }, { "key": "973", "source": "328", "target": "326", "attributes": { "weight": 9 } }, { "key": "12480", "source": "328", "target": "316", "attributes": { "weight": 1 } }, { "key": "971", "source": "328", "target": "294", "attributes": { "weight": 2 } }, { "key": "15028", "source": "329", "target": "1984", "attributes": { "weight": 1 } }, { "key": "15026", "source": "329", "target": "259", "attributes": { "weight": 1 } }, { "key": "978", "source": "329", "target": "287", "attributes": { "weight": 1 } }, { "key": "2961", "source": "329", "target": "262", "attributes": { "weight": 1 } }, { "key": "23503", "source": "329", "target": "312", "attributes": { "weight": 1 } }, { "key": "22626", "source": "329", "target": "905", "attributes": { "weight": 1 } }, { "key": "22627", "source": "329", "target": "180", "attributes": { "weight": 2 } }, { "key": "23729", "source": "329", "target": "168", "attributes": { "weight": 1 } }, { "key": "980", "source": "329", "target": "307", "attributes": { "weight": 1 } }, { "key": "23502", "source": "329", "target": "263", "attributes": { "weight": 1 } }, { "key": "23504", "source": "329", "target": "327", "attributes": { "weight": 1 } }, { "key": "976", "source": "329", "target": "268", "attributes": { "weight": 1 } }, { "key": "979", "source": "329", "target": "289", "attributes": { "weight": 2 } }, { "key": "24820", "source": "329", "target": "272", "attributes": { "weight": 1 } }, { "key": "977", "source": "329", "target": "277", "attributes": { "weight": 1 } }, { "key": "28198", "source": "329", "target": "839", "attributes": { "weight": 1 } }, { "key": "975", "source": "329", "target": "264", "attributes": { "weight": 1 } }, { "key": "13772", "source": "330", "target": "304", "attributes": { "weight": 2 } }, { "key": "982", "source": "330", "target": "326", "attributes": { "weight": 1 } }, { "key": "28199", "source": "330", "target": "287", "attributes": { "weight": 1 } }, { "key": "981", "source": "330", "target": "311", "attributes": { "weight": 1 } }, { "key": "28200", "source": "330", "target": "305", "attributes": { "weight": 1 } }, { "key": "13771", "source": "330", "target": "259", "attributes": { "weight": 2 } }, { "key": "13773", "source": "330", "target": "312", "attributes": { "weight": 2 } }, { "key": "13787", "source": "331", "target": "312", "attributes": { "weight": 3 } }, { "key": "2965", "source": "331", "target": "299", "attributes": { "weight": 1 } }, { "key": "2964", "source": "331", "target": "287", "attributes": { "weight": 1 } }, { "key": "15034", "source": "331", "target": "327", "attributes": { "weight": 2 } }, { "key": "984", "source": "331", "target": "264", "attributes": { "weight": 1 } }, { "key": "24824", "source": "331", "target": "311", "attributes": { "weight": 1 } }, { "key": "15033", "source": "331", "target": "259", "attributes": { "weight": 2 } }, { "key": "24822", "source": "331", "target": "167", "attributes": { "weight": 1 } }, { "key": "24823", "source": "331", "target": "289", "attributes": { "weight": 1 } }, { "key": "985", "source": "331", "target": "168", "attributes": { "weight": 1 } }, { "key": "19063", "source": "331", "target": "839", "attributes": { "weight": 2 } }, { "key": "13786", "source": "331", "target": "304", "attributes": { "weight": 4 } }, { "key": "983", "source": "331", "target": "262", "attributes": { "weight": 3 } }, { "key": "23076", "source": "331", "target": "326", "attributes": { "weight": 1 } }, { "key": "15057", "source": "332", "target": "260", "attributes": { "weight": 1 } }, { "key": "13811", "source": "332", "target": "304", "attributes": { "weight": 2 } }, { "key": "15059", "source": "332", "target": "268", "attributes": { "weight": 1 } }, { "key": "13813", "source": "332", "target": "327", "attributes": { "weight": 2 } }, { "key": "13812", "source": "332", "target": "326", "attributes": { "weight": 2 } }, { "key": "15058", "source": "332", "target": "263", "attributes": { "weight": 1 } }, { "key": "26177", "source": "332", "target": "322", "attributes": { "weight": 2 } }, { "key": "15056", "source": "332", "target": "259", "attributes": { "weight": 1 } }, { "key": "15060", "source": "332", "target": "277", "attributes": { "weight": 1 } }, { "key": "37479", "source": "332", "target": "312", "attributes": { "weight": 1 } }, { "key": "13810", "source": "332", "target": "262", "attributes": { "weight": 2 } }, { "key": "15061", "source": "332", "target": "311", "attributes": { "weight": 1 } }, { "key": "986", "source": "332", "target": "264", "attributes": { "weight": 1 } }, { "key": "36803", "source": "333", "target": "1300", "attributes": { "weight": 1 } }, { "key": "6529", "source": "333", "target": "338", "attributes": { "weight": 5 } }, { "key": "7607", "source": "333", "target": "375", "attributes": { "weight": 1 } }, { "key": "7588", "source": "333", "target": "1197", "attributes": { "weight": 2 } }, { "key": "2988", "source": "333", "target": "845", "attributes": { "weight": 3 } }, { "key": "7596", "source": "333", "target": "189", "attributes": { "weight": 2 } }, { "key": "16405", "source": "333", "target": "925", "attributes": { "weight": 1 } }, { "key": "2991", "source": "333", "target": "849", "attributes": { "weight": 3 } }, { "key": "33008", "source": "333", "target": "135", "attributes": { "weight": 1 } }, { "key": "2995", "source": "333", "target": "853", "attributes": { "weight": 1 } }, { "key": "33009", "source": "333", "target": "472", "attributes": { "weight": 1 } }, { "key": "7610", "source": "333", "target": "154", "attributes": { "weight": 2 } }, { "key": "7614", "source": "333", "target": "976", "attributes": { "weight": 2 } }, { "key": "16406", "source": "333", "target": "1329", "attributes": { "weight": 1 } }, { "key": "2992", "source": "333", "target": "850", "attributes": { "weight": 2 } }, { "key": "7595", "source": "333", "target": "396", "attributes": { "weight": 1 } }, { "key": "7600", "source": "333", "target": "403", "attributes": { "weight": 3 } }, { "key": "36802", "source": "333", "target": "1254", "attributes": { "weight": 1 } }, { "key": "7612", "source": "333", "target": "1417", "attributes": { "weight": 2 } }, { "key": "29835", "source": "333", "target": "93", "attributes": { "weight": 1 } }, { "key": "7590", "source": "333", "target": "454", "attributes": { "weight": 3 } }, { "key": "3451", "source": "333", "target": "969", "attributes": { "weight": 1 } }, { "key": "7620", "source": "333", "target": "1426", "attributes": { "weight": 1 } }, { "key": "7594", "source": "333", "target": "278", "attributes": { "weight": 3 } }, { "key": "2987", "source": "333", "target": "843", "attributes": { "weight": 1 } }, { "key": "3452", "source": "333", "target": "970", "attributes": { "weight": 2 } }, { "key": "7618", "source": "333", "target": "1421", "attributes": { "weight": 1 } }, { "key": "7599", "source": "333", "target": "305", "attributes": { "weight": 3 } }, { "key": "7598", "source": "333", "target": "304", "attributes": { "weight": 2 } }, { "key": "14290", "source": "333", "target": "370", "attributes": { "weight": 1 } }, { "key": "7601", "source": "333", "target": "1323", "attributes": { "weight": 3 } }, { "key": "6527", "source": "333", "target": "368", "attributes": { "weight": 3 } }, { "key": "6532", "source": "333", "target": "123", "attributes": { "weight": 5 } }, { "key": "7608", "source": "333", "target": "1402", "attributes": { "weight": 2 } }, { "key": "7602", "source": "333", "target": "310", "attributes": { "weight": 1 } }, { "key": "36801", "source": "333", "target": "1245", "attributes": { "weight": 1 } }, { "key": "7606", "source": "333", "target": "1401", "attributes": { "weight": 1 } }, { "key": "2994", "source": "333", "target": "852", "attributes": { "weight": 1 } }, { "key": "6533", "source": "333", "target": "1291", "attributes": { "weight": 4 } }, { "key": "2996", "source": "333", "target": "855", "attributes": { "weight": 1 } }, { "key": "2990", "source": "333", "target": "848", "attributes": { "weight": 2 } }, { "key": "7587", "source": "333", "target": "1146", "attributes": { "weight": 2 } }, { "key": "36804", "source": "333", "target": "406", "attributes": { "weight": 1 } }, { "key": "7592", "source": "333", "target": "707", "attributes": { "weight": 2 } }, { "key": "6528", "source": "333", "target": "337", "attributes": { "weight": 4 } }, { "key": "16407", "source": "333", "target": "408", "attributes": { "weight": 2 } }, { "key": "7603", "source": "333", "target": "1394", "attributes": { "weight": 1 } }, { "key": "6531", "source": "333", "target": "580", "attributes": { "weight": 4 } }, { "key": "7593", "source": "333", "target": "1227", "attributes": { "weight": 3 } }, { "key": "7589", "source": "333", "target": "1047", "attributes": { "weight": 3 } }, { "key": "34851", "source": "333", "target": "1233", "attributes": { "weight": 1 } }, { "key": "1072", "source": "333", "target": "376", "attributes": { "weight": 2 } }, { "key": "7613", "source": "333", "target": "975", "attributes": { "weight": 2 } }, { "key": "7605", "source": "333", "target": "373", "attributes": { "weight": 3 } }, { "key": "7617", "source": "333", "target": "978", "attributes": { "weight": 2 } }, { "key": "7591", "source": "333", "target": "168", "attributes": { "weight": 2 } }, { "key": "7604", "source": "333", "target": "1395", "attributes": { "weight": 1 } }, { "key": "3453", "source": "333", "target": "974", "attributes": { "weight": 2 } }, { "key": "6534", "source": "333", "target": "1294", "attributes": { "weight": 2 } }, { "key": "7597", "source": "333", "target": "1285", "attributes": { "weight": 2 } }, { "key": "7615", "source": "333", "target": "977", "attributes": { "weight": 3 } }, { "key": "12656", "source": "333", "target": "180", "attributes": { "weight": 2 } }, { "key": "16404", "source": "333", "target": "220", "attributes": { "weight": 2 } }, { "key": "33007", "source": "333", "target": "387", "attributes": { "weight": 2 } }, { "key": "2989", "source": "333", "target": "847", "attributes": { "weight": 1 } }, { "key": "15062", "source": "333", "target": "259", "attributes": { "weight": 1 } }, { "key": "7609", "source": "333", "target": "1407", "attributes": { "weight": 2 } }, { "key": "987", "source": "333", "target": "307", "attributes": { "weight": 1 } }, { "key": "6535", "source": "333", "target": "1322", "attributes": { "weight": 5 } }, { "key": "6530", "source": "333", "target": "468", "attributes": { "weight": 6 } }, { "key": "7619", "source": "333", "target": "1063", "attributes": { "weight": 3 } }, { "key": "1071", "source": "333", "target": "374", "attributes": { "weight": 3 } }, { "key": "2993", "source": "333", "target": "851", "attributes": { "weight": 3 } }, { "key": "7616", "source": "333", "target": "377", "attributes": { "weight": 3 } }, { "key": "7611", "source": "333", "target": "625", "attributes": { "weight": 2 } }, { "key": "23081", "source": "334", "target": "166", "attributes": { "weight": 1 } }, { "key": "989", "source": "334", "target": "168", "attributes": { "weight": 1 } }, { "key": "23082", "source": "334", "target": "287", "attributes": { "weight": 1 } }, { "key": "15064", "source": "334", "target": "259", "attributes": { "weight": 1 } }, { "key": "13814", "source": "334", "target": "264", "attributes": { "weight": 2 } }, { "key": "23083", "source": "334", "target": "179", "attributes": { "weight": 1 } }, { "key": "12483", "source": "334", "target": "263", "attributes": { "weight": 1 } }, { "key": "988", "source": "334", "target": "262", "attributes": { "weight": 1 } }, { "key": "13815", "source": "334", "target": "304", "attributes": { "weight": 2 } }, { "key": "15065", "source": "334", "target": "311", "attributes": { "weight": 1 } }, { "key": "3297", "source": "334", "target": "305", "attributes": { "weight": 3 } }, { "key": "13816", "source": "334", "target": "312", "attributes": { "weight": 2 } }, { "key": "26038", "source": "334", "target": "2622", "attributes": { "weight": 2 } }, { "key": "990", "source": "335", "target": "304", "attributes": { "weight": 1 } }, { "key": "991", "source": "335", "target": "328", "attributes": { "weight": 1 } }, { "key": "13820", "source": "336", "target": "1911", "attributes": { "weight": 2 } }, { "key": "12484", "source": "336", "target": "311", "attributes": { "weight": 2 } }, { "key": "3299", "source": "336", "target": "839", "attributes": { "weight": 4 } }, { "key": "22255", "source": "336", "target": "1918", "attributes": { "weight": 1 } }, { "key": "23085", "source": "336", "target": "290", "attributes": { "weight": 1 } }, { "key": "22256", "source": "336", "target": "2311", "attributes": { "weight": 1 } }, { "key": "13819", "source": "336", "target": "272", "attributes": { "weight": 4 } }, { "key": "3298", "source": "336", "target": "305", "attributes": { "weight": 5 } }, { "key": "13825", "source": "336", "target": "321", "attributes": { "weight": 2 } }, { "key": "15066", "source": "336", "target": "260", "attributes": { "weight": 2 } }, { "key": "13823", "source": "336", "target": "301", "attributes": { "weight": 3 } }, { "key": "23084", "source": "336", "target": "288", "attributes": { "weight": 1 } }, { "key": "13826", "source": "336", "target": "327", "attributes": { "weight": 4 } }, { "key": "13824", "source": "336", "target": "304", "attributes": { "weight": 3 } }, { "key": "15071", "source": "336", "target": "1510", "attributes": { "weight": 1 } }, { "key": "15069", "source": "336", "target": "167", "attributes": { "weight": 1 } }, { "key": "992", "source": "336", "target": "265", "attributes": { "weight": 1 } }, { "key": "13821", "source": "336", "target": "286", "attributes": { "weight": 3 } }, { "key": "15073", "source": "336", "target": "322", "attributes": { "weight": 1 } }, { "key": "12485", "source": "336", "target": "316", "attributes": { "weight": 1 } }, { "key": "15067", "source": "336", "target": "263", "attributes": { "weight": 1 } }, { "key": "13817", "source": "336", "target": "262", "attributes": { "weight": 3 } }, { "key": "15068", "source": "336", "target": "276", "attributes": { "weight": 1 } }, { "key": "15074", "source": "336", "target": "1933", "attributes": { "weight": 1 } }, { "key": "993", "source": "336", "target": "166", "attributes": { "weight": 3 } }, { "key": "15070", "source": "336", "target": "287", "attributes": { "weight": 1 } }, { "key": "28652", "source": "336", "target": "299", "attributes": { "weight": 1 } }, { "key": "13818", "source": "336", "target": "264", "attributes": { "weight": 2 } }, { "key": "15072", "source": "336", "target": "179", "attributes": { "weight": 1 } }, { "key": "13822", "source": "336", "target": "289", "attributes": { "weight": 3 } }, { "key": "36617", "source": "337", "target": "1260", "attributes": { "weight": 1 } }, { "key": "21954", "source": "337", "target": "1203", "attributes": { "weight": 1 } }, { "key": "5256", "source": "337", "target": "1196", "attributes": { "weight": 2 } }, { "key": "18739", "source": "337", "target": "1308", "attributes": { "weight": 3 } }, { "key": "18730", "source": "337", "target": "1152", "attributes": { "weight": 3 } }, { "key": "15309", "source": "337", "target": "472", "attributes": { "weight": 4 } }, { "key": "21953", "source": "337", "target": "1199", "attributes": { "weight": 2 } }, { "key": "21977", "source": "337", "target": "2304", "attributes": { "weight": 1 } }, { "key": "5260", "source": "337", "target": "468", "attributes": { "weight": 4 } }, { "key": "23199", "source": "337", "target": "1323", "attributes": { "weight": 4 } }, { "key": "21948", "source": "337", "target": "1681", "attributes": { "weight": 1 } }, { "key": "36627", "source": "337", "target": "1342", "attributes": { "weight": 1 } }, { "key": "36612", "source": "337", "target": "1210", "attributes": { "weight": 1 } }, { "key": "36762", "source": "337", "target": "851", "attributes": { "weight": 1 } }, { "key": "15903", "source": "337", "target": "913", "attributes": { "weight": 3 } }, { "key": "21978", "source": "337", "target": "1563", "attributes": { "weight": 1 } }, { "key": "36603", "source": "337", "target": "1140", "attributes": { "weight": 1 } }, { "key": "18238", "source": "337", "target": "1197", "attributes": { "weight": 5 } }, { "key": "28578", "source": "337", "target": "1233", "attributes": { "weight": 2 } }, { "key": "36626", "source": "337", "target": "124", "attributes": { "weight": 1 } }, { "key": "21971", "source": "337", "target": "2044", "attributes": { "weight": 1 } }, { "key": "21955", "source": "337", "target": "1205", "attributes": { "weight": 1 } }, { "key": "36618", "source": "337", "target": "1263", "attributes": { "weight": 1 } }, { "key": "21956", "source": "337", "target": "1206", "attributes": { "weight": 2 } }, { "key": "21975", "source": "337", "target": "1693", "attributes": { "weight": 1 } }, { "key": "18740", "source": "337", "target": "1315", "attributes": { "weight": 3 } }, { "key": "36606", "source": "337", "target": "1156", "attributes": { "weight": 1 } }, { "key": "21968", "source": "337", "target": "1264", "attributes": { "weight": 1 } }, { "key": "36622", "source": "337", "target": "1288", "attributes": { "weight": 1 } }, { "key": "15905", "source": "337", "target": "208", "attributes": { "weight": 2 } }, { "key": "15908", "source": "337", "target": "1305", "attributes": { "weight": 3 } }, { "key": "21962", "source": "337", "target": "1225", "attributes": { "weight": 1 } }, { "key": "28577", "source": "337", "target": "199", "attributes": { "weight": 2 } }, { "key": "21945", "source": "337", "target": "937", "attributes": { "weight": 1 } }, { "key": "21981", "source": "337", "target": "1325", "attributes": { "weight": 1 } }, { "key": "36610", "source": "337", "target": "1184", "attributes": { "weight": 1 } }, { "key": "10227", "source": "337", "target": "1291", "attributes": { "weight": 3 } }, { "key": "21974", "source": "337", "target": "1295", "attributes": { "weight": 1 } }, { "key": "34473", "source": "337", "target": "1232", "attributes": { "weight": 1 } }, { "key": "36616", "source": "337", "target": "1255", "attributes": { "weight": 1 } }, { "key": "36624", "source": "337", "target": "1321", "attributes": { "weight": 1 } }, { "key": "21965", "source": "337", "target": "1234", "attributes": { "weight": 2 } }, { "key": "18731", "source": "337", "target": "1173", "attributes": { "weight": 2 } }, { "key": "34474", "source": "337", "target": "1300", "attributes": { "weight": 1 } }, { "key": "18737", "source": "337", "target": "1284", "attributes": { "weight": 3 } }, { "key": "5261", "source": "337", "target": "371", "attributes": { "weight": 2 } }, { "key": "21970", "source": "337", "target": "1271", "attributes": { "weight": 1 } }, { "key": "9791", "source": "337", "target": "396", "attributes": { "weight": 3 } }, { "key": "36605", "source": "337", "target": "1148", "attributes": { "weight": 1 } }, { "key": "36613", "source": "337", "target": "1215", "attributes": { "weight": 1 } }, { "key": "21969", "source": "337", "target": "1265", "attributes": { "weight": 1 } }, { "key": "18745", "source": "337", "target": "1343", "attributes": { "weight": 2 } }, { "key": "5266", "source": "337", "target": "333", "attributes": { "weight": 4 } }, { "key": "21966", "source": "337", "target": "2037", "attributes": { "weight": 1 } }, { "key": "21972", "source": "337", "target": "1277", "attributes": { "weight": 1 } }, { "key": "21946", "source": "337", "target": "2021", "attributes": { "weight": 1 } }, { "key": "21961", "source": "337", "target": "1223", "attributes": { "weight": 1 } }, { "key": "15909", "source": "337", "target": "1329", "attributes": { "weight": 3 } }, { "key": "5264", "source": "337", "target": "1294", "attributes": { "weight": 4 } }, { "key": "21963", "source": "337", "target": "1686", "attributes": { "weight": 1 } }, { "key": "18744", "source": "337", "target": "218", "attributes": { "weight": 2 } }, { "key": "21947", "source": "337", "target": "1167", "attributes": { "weight": 2 } }, { "key": "36621", "source": "337", "target": "1287", "attributes": { "weight": 1 } }, { "key": "36619", "source": "337", "target": "926", "attributes": { "weight": 1 } }, { "key": "36609", "source": "337", "target": "1172", "attributes": { "weight": 1 } }, { "key": "18742", "source": "337", "target": "1331", "attributes": { "weight": 2 } }, { "key": "5257", "source": "337", "target": "368", "attributes": { "weight": 3 } }, { "key": "34472", "source": "337", "target": "1047", "attributes": { "weight": 1 } }, { "key": "10225", "source": "337", "target": "711", "attributes": { "weight": 1 } }, { "key": "18734", "source": "337", "target": "1236", "attributes": { "weight": 2 } }, { "key": "21973", "source": "337", "target": "1690", "attributes": { "weight": 1 } }, { "key": "36614", "source": "337", "target": "205", "attributes": { "weight": 1 } }, { "key": "5267", "source": "337", "target": "377", "attributes": { "weight": 4 } }, { "key": "21957", "source": "337", "target": "1685", "attributes": { "weight": 1 } }, { "key": "21944", "source": "337", "target": "2293", "attributes": { "weight": 1 } }, { "key": "18732", "source": "337", "target": "1174", "attributes": { "weight": 3 } }, { "key": "18741", "source": "337", "target": "405", "attributes": { "weight": 2 } }, { "key": "36604", "source": "337", "target": "933", "attributes": { "weight": 1 } }, { "key": "1108", "source": "337", "target": "412", "attributes": { "weight": 1 } }, { "key": "36607", "source": "337", "target": "1162", "attributes": { "weight": 1 } }, { "key": "36760", "source": "337", "target": "625", "attributes": { "weight": 1 } }, { "key": "36620", "source": "337", "target": "1286", "attributes": { "weight": 1 } }, { "key": "5263", "source": "337", "target": "1090", "attributes": { "weight": 4 } }, { "key": "21980", "source": "337", "target": "1324", "attributes": { "weight": 1 } }, { "key": "21982", "source": "337", "target": "2306", "attributes": { "weight": 1 } }, { "key": "15906", "source": "337", "target": "924", "attributes": { "weight": 1 } }, { "key": "5268", "source": "337", "target": "1063", "attributes": { "weight": 4 } }, { "key": "7328", "source": "337", "target": "154", "attributes": { "weight": 2 } }, { "key": "21959", "source": "337", "target": "916", "attributes": { "weight": 1 } }, { "key": "34471", "source": "337", "target": "1182", "attributes": { "weight": 2 } }, { "key": "11594", "source": "337", "target": "938", "attributes": { "weight": 2 } }, { "key": "37152", "source": "337", "target": "390", "attributes": { "weight": 1 } }, { "key": "15902", "source": "337", "target": "912", "attributes": { "weight": 1 } }, { "key": "15904", "source": "337", "target": "278", "attributes": { "weight": 2 } }, { "key": "21952", "source": "337", "target": "2032", "attributes": { "weight": 1 } }, { "key": "11595", "source": "337", "target": "1251", "attributes": { "weight": 1 } }, { "key": "21958", "source": "337", "target": "1211", "attributes": { "weight": 1 } }, { "key": "36761", "source": "337", "target": "1417", "attributes": { "weight": 1 } }, { "key": "18733", "source": "337", "target": "1228", "attributes": { "weight": 2 } }, { "key": "21983", "source": "337", "target": "931", "attributes": { "weight": 1 } }, { "key": "15907", "source": "337", "target": "925", "attributes": { "weight": 3 } }, { "key": "10228", "source": "337", "target": "1322", "attributes": { "weight": 4 } }, { "key": "36625", "source": "337", "target": "1326", "attributes": { "weight": 1 } }, { "key": "18735", "source": "337", "target": "1552", "attributes": { "weight": 2 } }, { "key": "21951", "source": "337", "target": "2030", "attributes": { "weight": 1 } }, { "key": "21960", "source": "337", "target": "1218", "attributes": { "weight": 1 } }, { "key": "5265", "source": "337", "target": "373", "attributes": { "weight": 2 } }, { "key": "21967", "source": "337", "target": "1256", "attributes": { "weight": 1 } }, { "key": "36759", "source": "337", "target": "1407", "attributes": { "weight": 1 } }, { "key": "21949", "source": "337", "target": "1181", "attributes": { "weight": 1 } }, { "key": "18738", "source": "337", "target": "1301", "attributes": { "weight": 1 } }, { "key": "21950", "source": "337", "target": "1188", "attributes": { "weight": 1 } }, { "key": "5259", "source": "337", "target": "135", "attributes": { "weight": 5 } }, { "key": "21943", "source": "337", "target": "1519", "attributes": { "weight": 1 } }, { "key": "21976", "source": "337", "target": "1303", "attributes": { "weight": 1 } }, { "key": "36615", "source": "337", "target": "1248", "attributes": { "weight": 1 } }, { "key": "27268", "source": "337", "target": "57", "attributes": { "weight": 1 } }, { "key": "5255", "source": "337", "target": "779", "attributes": { "weight": 2 } }, { "key": "14043", "source": "337", "target": "1031", "attributes": { "weight": 2 } }, { "key": "10226", "source": "337", "target": "1680", "attributes": { "weight": 2 } }, { "key": "994", "source": "337", "target": "338", "attributes": { "weight": 9 } }, { "key": "18736", "source": "337", "target": "1269", "attributes": { "weight": 2 } }, { "key": "36608", "source": "337", "target": "1165", "attributes": { "weight": 1 } }, { "key": "21979", "source": "337", "target": "2305", "attributes": { "weight": 1 } }, { "key": "8804", "source": "337", "target": "195", "attributes": { "weight": 7 } }, { "key": "36611", "source": "337", "target": "1201", "attributes": { "weight": 1 } }, { "key": "18743", "source": "337", "target": "408", "attributes": { "weight": 2 } }, { "key": "1107", "source": "337", "target": "399", "attributes": { "weight": 3 } }, { "key": "21964", "source": "337", "target": "1227", "attributes": { "weight": 2 } }, { "key": "36623", "source": "337", "target": "1296", "attributes": { "weight": 1 } }, { "key": "5262", "source": "337", "target": "123", "attributes": { "weight": 4 } }, { "key": "5258", "source": "337", "target": "370", "attributes": { "weight": 8 } }, { "key": "15308", "source": "337", "target": "454", "attributes": { "weight": 1 } }, { "key": "34996", "source": "338", "target": "352", "attributes": { "weight": 1 } }, { "key": "5289", "source": "338", "target": "1227", "attributes": { "weight": 7 } }, { "key": "34479", "source": "338", "target": "3136", "attributes": { "weight": 1 } }, { "key": "5308", "source": "338", "target": "1285", "attributes": { "weight": 8 } }, { "key": "34491", "source": "338", "target": "1352", "attributes": { "weight": 1 } }, { "key": "5324", "source": "338", "target": "1323", "attributes": { "weight": 7 } }, { "key": "5306", "source": "338", "target": "1280", "attributes": { "weight": 4 } }, { "key": "5303", "source": "338", "target": "371", "attributes": { "weight": 4 } }, { "key": "34485", "source": "338", "target": "2433", "attributes": { "weight": 1 } }, { "key": "5296", "source": "338", "target": "1254", "attributes": { "weight": 5 } }, { "key": "7330", "source": "338", "target": "154", "attributes": { "weight": 2 } }, { "key": "5295", "source": "338", "target": "468", "attributes": { "weight": 11 } }, { "key": "34483", "source": "338", "target": "1047", "attributes": { "weight": 2 } }, { "key": "5288", "source": "338", "target": "168", "attributes": { "weight": 2 } }, { "key": "5304", "source": "338", "target": "1274", "attributes": { "weight": 2 } }, { "key": "37508", "source": "338", "target": "3385", "attributes": { "weight": 1 } }, { "key": "5286", "source": "338", "target": "390", "attributes": { "weight": 7 } }, { "key": "15924", "source": "338", "target": "218", "attributes": { "weight": 1 } }, { "key": "5287", "source": "338", "target": "109", "attributes": { "weight": 3 } }, { "key": "10690", "source": "338", "target": "391", "attributes": { "weight": 4 } }, { "key": "16843", "source": "338", "target": "59", "attributes": { "weight": 1 } }, { "key": "5311", "source": "338", "target": "212", "attributes": { "weight": 2 } }, { "key": "32550", "source": "338", "target": "791", "attributes": { "weight": 2 } }, { "key": "34490", "source": "338", "target": "2306", "attributes": { "weight": 1 } }, { "key": "5330", "source": "338", "target": "1335", "attributes": { "weight": 2 } }, { "key": "5271", "source": "338", "target": "711", "attributes": { "weight": 2 } }, { "key": "18749", "source": "338", "target": "1792", "attributes": { "weight": 1 } }, { "key": "9792", "source": "338", "target": "387", "attributes": { "weight": 4 } }, { "key": "5326", "source": "338", "target": "406", "attributes": { "weight": 5 } }, { "key": "11596", "source": "338", "target": "358", "attributes": { "weight": 2 } }, { "key": "9793", "source": "338", "target": "393", "attributes": { "weight": 2 } }, { "key": "995", "source": "338", "target": "337", "attributes": { "weight": 9 } }, { "key": "34488", "source": "338", "target": "1317", "attributes": { "weight": 1 } }, { "key": "5316", "source": "338", "target": "1299", "attributes": { "weight": 6 } }, { "key": "34478", "source": "338", "target": "1174", "attributes": { "weight": 2 } }, { "key": "28794", "source": "338", "target": "2423", "attributes": { "weight": 2 } }, { "key": "5336", "source": "338", "target": "377", "attributes": { "weight": 4 } }, { "key": "5315", "source": "338", "target": "1296", "attributes": { "weight": 4 } }, { "key": "5284", "source": "338", "target": "1203", "attributes": { "weight": 3 } }, { "key": "8806", "source": "338", "target": "442", "attributes": { "weight": 4 } }, { "key": "5294", "source": "338", "target": "1245", "attributes": { "weight": 6 } }, { "key": "5312", "source": "338", "target": "1291", "attributes": { "weight": 4 } }, { "key": "15913", "source": "338", "target": "912", "attributes": { "weight": 1 } }, { "key": "26607", "source": "338", "target": "189", "attributes": { "weight": 2 } }, { "key": "5302", "source": "338", "target": "1265", "attributes": { "weight": 3 } }, { "key": "5305", "source": "338", "target": "1277", "attributes": { "weight": 4 } }, { "key": "29810", "source": "338", "target": "93", "attributes": { "weight": 1 } }, { "key": "28793", "source": "338", "target": "1146", "attributes": { "weight": 3 } }, { "key": "5325", "source": "338", "target": "1326", "attributes": { "weight": 6 } }, { "key": "5317", "source": "338", "target": "305", "attributes": { "weight": 7 } }, { "key": "9795", "source": "338", "target": "403", "attributes": { "weight": 4 } }, { "key": "27366", "source": "338", "target": "340", "attributes": { "weight": 1 } }, { "key": "5333", "source": "338", "target": "931", "attributes": { "weight": 2 } }, { "key": "5275", "source": "338", "target": "1166", "attributes": { "weight": 4 } }, { "key": "5270", "source": "338", "target": "1140", "attributes": { "weight": 5 } }, { "key": "5323", "source": "338", "target": "1322", "attributes": { "weight": 5 } }, { "key": "5279", "source": "338", "target": "1196", "attributes": { "weight": 4 } }, { "key": "5329", "source": "338", "target": "124", "attributes": { "weight": 4 } }, { "key": "11168", "source": "338", "target": "452", "attributes": { "weight": 2 } }, { "key": "9796", "source": "338", "target": "417", "attributes": { "weight": 2 } }, { "key": "5328", "source": "338", "target": "1331", "attributes": { "weight": 6 } }, { "key": "10230", "source": "338", "target": "926", "attributes": { "weight": 9 } }, { "key": "5334", "source": "338", "target": "373", "attributes": { "weight": 3 } }, { "key": "5313", "source": "338", "target": "1090", "attributes": { "weight": 3 } }, { "key": "18746", "source": "338", "target": "1228", "attributes": { "weight": 2 } }, { "key": "10229", "source": "338", "target": "1688", "attributes": { "weight": 1 } }, { "key": "5292", "source": "338", "target": "1236", "attributes": { "weight": 4 } }, { "key": "18747", "source": "338", "target": "1552", "attributes": { "weight": 2 } }, { "key": "5272", "source": "338", "target": "1152", "attributes": { "weight": 5 } }, { "key": "5293", "source": "338", "target": "370", "attributes": { "weight": 8 } }, { "key": "15917", "source": "338", "target": "278", "attributes": { "weight": 5 } }, { "key": "5290", "source": "338", "target": "1232", "attributes": { "weight": 4 } }, { "key": "34486", "source": "338", "target": "1300", "attributes": { "weight": 1 } }, { "key": "12595", "source": "338", "target": "180", "attributes": { "weight": 4 } }, { "key": "15919", "source": "338", "target": "1263", "attributes": { "weight": 2 } }, { "key": "37509", "source": "338", "target": "3389", "attributes": { "weight": 1 } }, { "key": "7329", "source": "338", "target": "374", "attributes": { "weight": 2 } }, { "key": "15910", "source": "338", "target": "220", "attributes": { "weight": 2 } }, { "key": "27269", "source": "338", "target": "57", "attributes": { "weight": 2 } }, { "key": "34482", "source": "338", "target": "1645", "attributes": { "weight": 1 } }, { "key": "37154", "source": "338", "target": "1272", "attributes": { "weight": 1 } }, { "key": "15923", "source": "338", "target": "595", "attributes": { "weight": 2 } }, { "key": "21984", "source": "338", "target": "1680", "attributes": { "weight": 1 } }, { "key": "34476", "source": "338", "target": "1157", "attributes": { "weight": 1 } }, { "key": "14044", "source": "338", "target": "1031", "attributes": { "weight": 2 } }, { "key": "5280", "source": "338", "target": "1197", "attributes": { "weight": 7 } }, { "key": "15922", "source": "338", "target": "407", "attributes": { "weight": 1 } }, { "key": "5335", "source": "338", "target": "333", "attributes": { "weight": 5 } }, { "key": "26606", "source": "338", "target": "454", "attributes": { "weight": 2 } }, { "key": "5300", "source": "338", "target": "297", "attributes": { "weight": 4 } }, { "key": "34487", "source": "338", "target": "405", "attributes": { "weight": 2 } }, { "key": "5318", "source": "338", "target": "1304", "attributes": { "weight": 2 } }, { "key": "5307", "source": "338", "target": "580", "attributes": { "weight": 9 } }, { "key": "16844", "source": "338", "target": "674", "attributes": { "weight": 1 } }, { "key": "34475", "source": "338", "target": "3131", "attributes": { "weight": 1 } }, { "key": "5283", "source": "338", "target": "1201", "attributes": { "weight": 4 } }, { "key": "9794", "source": "338", "target": "400", "attributes": { "weight": 2 } }, { "key": "5277", "source": "338", "target": "779", "attributes": { "weight": 2 } }, { "key": "5314", "source": "338", "target": "1294", "attributes": { "weight": 6 } }, { "key": "14711", "source": "338", "target": "259", "attributes": { "weight": 2 } }, { "key": "5281", "source": "338", "target": "368", "attributes": { "weight": 6 } }, { "key": "5276", "source": "338", "target": "938", "attributes": { "weight": 7 } }, { "key": "37155", "source": "338", "target": "3345", "attributes": { "weight": 1 } }, { "key": "5274", "source": "338", "target": "1165", "attributes": { "weight": 5 } }, { "key": "15914", "source": "338", "target": "913", "attributes": { "weight": 2 } }, { "key": "8805", "source": "338", "target": "195", "attributes": { "weight": 9 } }, { "key": "5337", "source": "338", "target": "1063", "attributes": { "weight": 5 } }, { "key": "15918", "source": "338", "target": "544", "attributes": { "weight": 1 } }, { "key": "5298", "source": "338", "target": "471", "attributes": { "weight": 4 } }, { "key": "5282", "source": "338", "target": "183", "attributes": { "weight": 2 } }, { "key": "15911", "source": "338", "target": "1163", "attributes": { "weight": 3 } }, { "key": "15912", "source": "338", "target": "631", "attributes": { "weight": 1 } }, { "key": "10691", "source": "338", "target": "1314", "attributes": { "weight": 3 } }, { "key": "5319", "source": "338", "target": "1305", "attributes": { "weight": 4 } }, { "key": "5322", "source": "338", "target": "1315", "attributes": { "weight": 5 } }, { "key": "34480", "source": "338", "target": "1182", "attributes": { "weight": 1 } }, { "key": "21985", "source": "338", "target": "2303", "attributes": { "weight": 1 } }, { "key": "5278", "source": "338", "target": "1184", "attributes": { "weight": 4 } }, { "key": "37156", "source": "338", "target": "416", "attributes": { "weight": 1 } }, { "key": "15920", "source": "338", "target": "924", "attributes": { "weight": 1 } }, { "key": "5285", "source": "338", "target": "1206", "attributes": { "weight": 4 } }, { "key": "5332", "source": "338", "target": "1343", "attributes": { "weight": 5 } }, { "key": "5299", "source": "338", "target": "208", "attributes": { "weight": 6 } }, { "key": "5291", "source": "338", "target": "1233", "attributes": { "weight": 5 } }, { "key": "9797", "source": "338", "target": "418", "attributes": { "weight": 2 } }, { "key": "5327", "source": "338", "target": "1329", "attributes": { "weight": 5 } }, { "key": "5301", "source": "338", "target": "396", "attributes": { "weight": 7 } }, { "key": "15916", "source": "338", "target": "707", "attributes": { "weight": 3 } }, { "key": "15921", "source": "338", "target": "1284", "attributes": { "weight": 3 } }, { "key": "34481", "source": "338", "target": "1188", "attributes": { "weight": 1 } }, { "key": "5331", "source": "338", "target": "310", "attributes": { "weight": 6 } }, { "key": "5309", "source": "338", "target": "1286", "attributes": { "weight": 4 } }, { "key": "15915", "source": "338", "target": "1215", "attributes": { "weight": 1 } }, { "key": "31959", "source": "338", "target": "359", "attributes": { "weight": 1 } }, { "key": "11597", "source": "338", "target": "199", "attributes": { "weight": 3 } }, { "key": "13254", "source": "338", "target": "304", "attributes": { "weight": 3 } }, { "key": "5310", "source": "338", "target": "123", "attributes": { "weight": 7 } }, { "key": "37153", "source": "338", "target": "380", "attributes": { "weight": 1 } }, { "key": "8807", "source": "338", "target": "925", "attributes": { "weight": 6 } }, { "key": "34477", "source": "338", "target": "1167", "attributes": { "weight": 1 } }, { "key": "18748", "source": "338", "target": "1269", "attributes": { "weight": 2 } }, { "key": "5273", "source": "338", "target": "1156", "attributes": { "weight": 3 } }, { "key": "37507", "source": "338", "target": "3383", "attributes": { "weight": 1 } }, { "key": "34484", "source": "338", "target": "1234", "attributes": { "weight": 1 } }, { "key": "34489", "source": "338", "target": "1318", "attributes": { "weight": 1 } }, { "key": "5297", "source": "338", "target": "30", "attributes": { "weight": 5 } }, { "key": "5320", "source": "338", "target": "1308", "attributes": { "weight": 6 } }, { "key": "5321", "source": "338", "target": "1313", "attributes": { "weight": 3 } }, { "key": "18053", "source": "339", "target": "1036", "attributes": { "weight": 2 } }, { "key": "24615", "source": "339", "target": "2239", "attributes": { "weight": 1 } }, { "key": "27822", "source": "339", "target": "1133", "attributes": { "weight": 1 } }, { "key": "27534", "source": "339", "target": "1520", "attributes": { "weight": 2 } }, { "key": "24612", "source": "339", "target": "2232", "attributes": { "weight": 1 } }, { "key": "27833", "source": "339", "target": "472", "attributes": { "weight": 1 } }, { "key": "27397", "source": "339", "target": "426", "attributes": { "weight": 2 } }, { "key": "26423", "source": "339", "target": "189", "attributes": { "weight": 2 } }, { "key": "27838", "source": "339", "target": "672", "attributes": { "weight": 1 } }, { "key": "27829", "source": "339", "target": "2696", "attributes": { "weight": 1 } }, { "key": "27837", "source": "339", "target": "55", "attributes": { "weight": 1 } }, { "key": "11033", "source": "339", "target": "473", "attributes": { "weight": 2 } }, { "key": "31581", "source": "339", "target": "595", "attributes": { "weight": 1 } }, { "key": "12893", "source": "339", "target": "259", "attributes": { "weight": 2 } }, { "key": "27824", "source": "339", "target": "791", "attributes": { "weight": 2 } }, { "key": "17549", "source": "339", "target": "2126", "attributes": { "weight": 3 } }, { "key": "3099", "source": "339", "target": "890", "attributes": { "weight": 3 } }, { "key": "27819", "source": "339", "target": "3", "attributes": { "weight": 1 } }, { "key": "27832", "source": "339", "target": "471", "attributes": { "weight": 1 } }, { "key": "27809", "source": "339", "target": "2233", "attributes": { "weight": 3 } }, { "key": "31106", "source": "339", "target": "2290", "attributes": { "weight": 1 } }, { "key": "27814", "source": "339", "target": "223", "attributes": { "weight": 2 } }, { "key": "27807", "source": "339", "target": "1516", "attributes": { "weight": 1 } }, { "key": "27398", "source": "339", "target": "2528", "attributes": { "weight": 2 } }, { "key": "27823", "source": "339", "target": "2114", "attributes": { "weight": 1 } }, { "key": "27812", "source": "339", "target": "130", "attributes": { "weight": 1 } }, { "key": "3928", "source": "339", "target": "432", "attributes": { "weight": 2 } }, { "key": "27813", "source": "339", "target": "2112", "attributes": { "weight": 1 } }, { "key": "27841", "source": "339", "target": "1063", "attributes": { "weight": 1 } }, { "key": "27821", "source": "339", "target": "1046", "attributes": { "weight": 2 } }, { "key": "27817", "source": "339", "target": "674", "attributes": { "weight": 2 } }, { "key": "27839", "source": "339", "target": "493", "attributes": { "weight": 2 } }, { "key": "27827", "source": "339", "target": "638", "attributes": { "weight": 2 } }, { "key": "27588", "source": "339", "target": "164", "attributes": { "weight": 3 } }, { "key": "996", "source": "339", "target": "340", "attributes": { "weight": 1 } }, { "key": "10407", "source": "339", "target": "1060", "attributes": { "weight": 3 } }, { "key": "27834", "source": "339", "target": "362", "attributes": { "weight": 2 } }, { "key": "27826", "source": "339", "target": "370", "attributes": { "weight": 2 } }, { "key": "22664", "source": "339", "target": "1037", "attributes": { "weight": 2 } }, { "key": "27828", "source": "339", "target": "556", "attributes": { "weight": 2 } }, { "key": "27396", "source": "339", "target": "2313", "attributes": { "weight": 2 } }, { "key": "24748", "source": "339", "target": "1056", "attributes": { "weight": 3 } }, { "key": "27840", "source": "339", "target": "495", "attributes": { "weight": 2 } }, { "key": "27830", "source": "339", "target": "1765", "attributes": { "weight": 2 } }, { "key": "27816", "source": "339", "target": "567", "attributes": { "weight": 1 } }, { "key": "8488", "source": "339", "target": "442", "attributes": { "weight": 3 } }, { "key": "27825", "source": "339", "target": "359", "attributes": { "weight": 3 } }, { "key": "24614", "source": "339", "target": "2118", "attributes": { "weight": 2 } }, { "key": "11032", "source": "339", "target": "452", "attributes": { "weight": 2 } }, { "key": "27818", "source": "339", "target": "1527", "attributes": { "weight": 1 } }, { "key": "3100", "source": "339", "target": "894", "attributes": { "weight": 3 } }, { "key": "27831", "source": "339", "target": "136", "attributes": { "weight": 1 } }, { "key": "17546", "source": "339", "target": "2123", "attributes": { "weight": 4 } }, { "key": "17548", "source": "339", "target": "2125", "attributes": { "weight": 3 } }, { "key": "27399", "source": "339", "target": "2670", "attributes": { "weight": 2 } }, { "key": "9239", "source": "339", "target": "430", "attributes": { "weight": 2 } }, { "key": "27393", "source": "339", "target": "2669", "attributes": { "weight": 2 } }, { "key": "17547", "source": "339", "target": "2124", "attributes": { "weight": 3 } }, { "key": "27815", "source": "339", "target": "440", "attributes": { "weight": 1 } }, { "key": "10406", "source": "339", "target": "225", "attributes": { "weight": 2 } }, { "key": "11853", "source": "339", "target": "468", "attributes": { "weight": 2 } }, { "key": "27229", "source": "339", "target": "52", "attributes": { "weight": 2 } }, { "key": "25854", "source": "339", "target": "220", "attributes": { "weight": 2 } }, { "key": "27835", "source": "339", "target": "2115", "attributes": { "weight": 2 } }, { "key": "27811", "source": "339", "target": "2511", "attributes": { "weight": 1 } }, { "key": "27230", "source": "339", "target": "57", "attributes": { "weight": 2 } }, { "key": "27810", "source": "339", "target": "889", "attributes": { "weight": 3 } }, { "key": "22269", "source": "339", "target": "794", "attributes": { "weight": 2 } }, { "key": "27394", "source": "339", "target": "2312", "attributes": { "weight": 2 } }, { "key": "27836", "source": "339", "target": "163", "attributes": { "weight": 1 } }, { "key": "9400", "source": "339", "target": "645", "attributes": { "weight": 2 } }, { "key": "17832", "source": "339", "target": "53", "attributes": { "weight": 2 } }, { "key": "27820", "source": "339", "target": "1045", "attributes": { "weight": 2 } }, { "key": "24613", "source": "339", "target": "2237", "attributes": { "weight": 1 } }, { "key": "26422", "source": "339", "target": "454", "attributes": { "weight": 2 } }, { "key": "12894", "source": "339", "target": "304", "attributes": { "weight": 2 } }, { "key": "27395", "source": "339", "target": "891", "attributes": { "weight": 2 } }, { "key": "17831", "source": "339", "target": "1380", "attributes": { "weight": 2 } }, { "key": "17345", "source": "339", "target": "358", "attributes": { "weight": 3 } }, { "key": "27808", "source": "339", "target": "35", "attributes": { "weight": 1 } }, { "key": "11400", "source": "340", "target": "1742", "attributes": { "weight": 1 } }, { "key": "32851", "source": "340", "target": "1125", "attributes": { "weight": 1 } }, { "key": "4054", "source": "340", "target": "432", "attributes": { "weight": 2 } }, { "key": "29912", "source": "340", "target": "2122", "attributes": { "weight": 1 } }, { "key": "36131", "source": "340", "target": "1390", "attributes": { "weight": 1 } }, { "key": "24376", "source": "340", "target": "190", "attributes": { "weight": 1 } }, { "key": "35042", "source": "340", "target": "352", "attributes": { "weight": 1 } }, { "key": "27378", "source": "340", "target": "638", "attributes": { "weight": 1 } }, { "key": "26766", "source": "340", "target": "454", "attributes": { "weight": 2 } }, { "key": "27302", "source": "340", "target": "57", "attributes": { "weight": 2 } }, { "key": "17980", "source": "340", "target": "1380", "attributes": { "weight": 1 } }, { "key": "14309", "source": "340", "target": "53", "attributes": { "weight": 3 } }, { "key": "9117", "source": "340", "target": "1087", "attributes": { "weight": 2 } }, { "key": "32614", "source": "340", "target": "791", "attributes": { "weight": 1 } }, { "key": "2313", "source": "340", "target": "670", "attributes": { "weight": 2 } }, { "key": "26931", "source": "340", "target": "497", "attributes": { "weight": 3 } }, { "key": "7080", "source": "340", "target": "189", "attributes": { "weight": 3 } }, { "key": "24664", "source": "340", "target": "889", "attributes": { "weight": 2 } }, { "key": "27380", "source": "340", "target": "338", "attributes": { "weight": 1 } }, { "key": "9116", "source": "340", "target": "442", "attributes": { "weight": 3 } }, { "key": "7411", "source": "340", "target": "1063", "attributes": { "weight": 2 } }, { "key": "2316", "source": "340", "target": "672", "attributes": { "weight": 3 } }, { "key": "4055", "source": "340", "target": "458", "attributes": { "weight": 1 } }, { "key": "33729", "source": "340", "target": "472", "attributes": { "weight": 1 } }, { "key": "31811", "source": "340", "target": "595", "attributes": { "weight": 1 } }, { "key": "27381", "source": "340", "target": "8", "attributes": { "weight": 2 } }, { "key": "27375", "source": "340", "target": "3", "attributes": { "weight": 2 } }, { "key": "29521", "source": "340", "target": "232", "attributes": { "weight": 2 } }, { "key": "23849", "source": "340", "target": "1774", "attributes": { "weight": 1 } }, { "key": "997", "source": "340", "target": "339", "attributes": { "weight": 1 } }, { "key": "10937", "source": "340", "target": "457", "attributes": { "weight": 1 } }, { "key": "27385", "source": "340", "target": "494", "attributes": { "weight": 1 } }, { "key": "7079", "source": "340", "target": "183", "attributes": { "weight": 1 } }, { "key": "13618", "source": "340", "target": "304", "attributes": { "weight": 2 } }, { "key": "27374", "source": "340", "target": "440", "attributes": { "weight": 2 } }, { "key": "29911", "source": "340", "target": "2831", "attributes": { "weight": 1 } }, { "key": "30620", "source": "340", "target": "9", "attributes": { "weight": 1 } }, { "key": "17022", "source": "340", "target": "59", "attributes": { "weight": 1 } }, { "key": "16374", "source": "340", "target": "370", "attributes": { "weight": 2 } }, { "key": "25394", "source": "340", "target": "433", "attributes": { "weight": 1 } }, { "key": "36939", "source": "340", "target": "2647", "attributes": { "weight": 1 } }, { "key": "12729", "source": "340", "target": "695", "attributes": { "weight": 1 } }, { "key": "2314", "source": "340", "target": "452", "attributes": { "weight": 4 } }, { "key": "23698", "source": "340", "target": "220", "attributes": { "weight": 4 } }, { "key": "27377", "source": "340", "target": "168", "attributes": { "weight": 1 } }, { "key": "27373", "source": "340", "target": "223", "attributes": { "weight": 2 } }, { "key": "23251", "source": "340", "target": "495", "attributes": { "weight": 3 } }, { "key": "24254", "source": "340", "target": "130", "attributes": { "weight": 4 } }, { "key": "12045", "source": "340", "target": "468", "attributes": { "weight": 2 } }, { "key": "27376", "source": "340", "target": "1047", "attributes": { "weight": 2 } }, { "key": "30744", "source": "340", "target": "1762", "attributes": { "weight": 1 } }, { "key": "27372", "source": "340", "target": "645", "attributes": { "weight": 1 } }, { "key": "27371", "source": "340", "target": "164", "attributes": { "weight": 2 } }, { "key": "1632", "source": "340", "target": "224", "attributes": { "weight": 1 } }, { "key": "2315", "source": "340", "target": "474", "attributes": { "weight": 2 } }, { "key": "2317", "source": "340", "target": "673", "attributes": { "weight": 3 } }, { "key": "29913", "source": "340", "target": "868", "attributes": { "weight": 1 } }, { "key": "27301", "source": "340", "target": "52", "attributes": { "weight": 3 } }, { "key": "24255", "source": "340", "target": "471", "attributes": { "weight": 2 } }, { "key": "24375", "source": "340", "target": "473", "attributes": { "weight": 3 } }, { "key": "33832", "source": "340", "target": "14", "attributes": { "weight": 1 } }, { "key": "33727", "source": "340", "target": "425", "attributes": { "weight": 1 } }, { "key": "24701", "source": "340", "target": "5", "attributes": { "weight": 1 } }, { "key": "27384", "source": "340", "target": "479", "attributes": { "weight": 4 } }, { "key": "27382", "source": "340", "target": "2258", "attributes": { "weight": 2 } }, { "key": "7081", "source": "340", "target": "193", "attributes": { "weight": 2 } }, { "key": "33728", "source": "340", "target": "135", "attributes": { "weight": 1 } }, { "key": "36129", "source": "340", "target": "1760", "attributes": { "weight": 1 } }, { "key": "6455", "source": "340", "target": "1090", "attributes": { "weight": 2 } }, { "key": "18348", "source": "340", "target": "1092", "attributes": { "weight": 2 } }, { "key": "27383", "source": "340", "target": "1026", "attributes": { "weight": 3 } }, { "key": "31810", "source": "340", "target": "823", "attributes": { "weight": 1 } }, { "key": "35709", "source": "340", "target": "3251", "attributes": { "weight": 1 } }, { "key": "17023", "source": "340", "target": "674", "attributes": { "weight": 2 } }, { "key": "25773", "source": "340", "target": "278", "attributes": { "weight": 1 } }, { "key": "27379", "source": "340", "target": "1024", "attributes": { "weight": 2 } }, { "key": "36130", "source": "340", "target": "465", "attributes": { "weight": 1 } }, { "key": "30619", "source": "340", "target": "682", "attributes": { "weight": 1 } }, { "key": "7410", "source": "340", "target": "154", "attributes": { "weight": 1 } }, { "key": "10237", "source": "341", "target": "711", "attributes": { "weight": 2 } }, { "key": "998", "source": "341", "target": "342", "attributes": { "weight": 1 } }, { "key": "10238", "source": "341", "target": "712", "attributes": { "weight": 2 } }, { "key": "1000", "source": "342", "target": "341", "attributes": { "weight": 1 } }, { "key": "1002", "source": "344", "target": "341", "attributes": { "weight": 1 } }, { "key": "35116", "source": "345", "target": "3179", "attributes": { "weight": 1 } }, { "key": "35118", "source": "345", "target": "14", "attributes": { "weight": 1 } }, { "key": "1003", "source": "345", "target": "352", "attributes": { "weight": 1 } }, { "key": "35117", "source": "345", "target": "348", "attributes": { "weight": 1 } }, { "key": "23782", "source": "346", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23781", "source": "346", "target": "3", "attributes": { "weight": 2 } }, { "key": "1004", "source": "346", "target": "352", "attributes": { "weight": 1 } }, { "key": "37284", "source": "347", "target": "14", "attributes": { "weight": 1 } }, { "key": "1008", "source": "347", "target": "348", "attributes": { "weight": 1 } }, { "key": "30911", "source": "347", "target": "3", "attributes": { "weight": 2 } }, { "key": "37285", "source": "347", "target": "349", "attributes": { "weight": 1 } }, { "key": "37286", "source": "347", "target": "351", "attributes": { "weight": 1 } }, { "key": "37283", "source": "347", "target": "2506", "attributes": { "weight": 1 } }, { "key": "1009", "source": "347", "target": "352", "attributes": { "weight": 1 } }, { "key": "1011", "source": "348", "target": "14", "attributes": { "weight": 1 } }, { "key": "35144", "source": "348", "target": "349", "attributes": { "weight": 1 } }, { "key": "35143", "source": "348", "target": "345", "attributes": { "weight": 1 } }, { "key": "1010", "source": "348", "target": "347", "attributes": { "weight": 1 } }, { "key": "1012", "source": "348", "target": "352", "attributes": { "weight": 1 } }, { "key": "35158", "source": "349", "target": "3085", "attributes": { "weight": 1 } }, { "key": "35159", "source": "349", "target": "11", "attributes": { "weight": 1 } }, { "key": "35162", "source": "349", "target": "793", "attributes": { "weight": 1 } }, { "key": "23848", "source": "349", "target": "1774", "attributes": { "weight": 1 } }, { "key": "37304", "source": "349", "target": "2506", "attributes": { "weight": 1 } }, { "key": "35161", "source": "349", "target": "348", "attributes": { "weight": 1 } }, { "key": "37301", "source": "349", "target": "3351", "attributes": { "weight": 1 } }, { "key": "31809", "source": "349", "target": "595", "attributes": { "weight": 1 } }, { "key": "32123", "source": "349", "target": "792", "attributes": { "weight": 1 } }, { "key": "37303", "source": "349", "target": "13", "attributes": { "weight": 1 } }, { "key": "1014", "source": "349", "target": "12", "attributes": { "weight": 2 } }, { "key": "31808", "source": "349", "target": "8", "attributes": { "weight": 2 } }, { "key": "37300", "source": "349", "target": "693", "attributes": { "weight": 1 } }, { "key": "35164", "source": "349", "target": "826", "attributes": { "weight": 1 } }, { "key": "30949", "source": "349", "target": "3", "attributes": { "weight": 2 } }, { "key": "35163", "source": "349", "target": "351", "attributes": { "weight": 1 } }, { "key": "37302", "source": "349", "target": "347", "attributes": { "weight": 1 } }, { "key": "35160", "source": "349", "target": "3179", "attributes": { "weight": 2 } }, { "key": "35166", "source": "350", "target": "597", "attributes": { "weight": 1 } }, { "key": "15092", "source": "350", "target": "8", "attributes": { "weight": 1 } }, { "key": "35165", "source": "350", "target": "594", "attributes": { "weight": 1 } }, { "key": "1015", "source": "350", "target": "352", "attributes": { "weight": 1 } }, { "key": "30951", "source": "351", "target": "3", "attributes": { "weight": 4 } }, { "key": "22376", "source": "351", "target": "794", "attributes": { "weight": 1 } }, { "key": "1016", "source": "351", "target": "12", "attributes": { "weight": 2 } }, { "key": "2822", "source": "351", "target": "14", "attributes": { "weight": 1 } }, { "key": "37253", "source": "351", "target": "5", "attributes": { "weight": 1 } }, { "key": "33834", "source": "351", "target": "792", "attributes": { "weight": 1 } }, { "key": "37307", "source": "351", "target": "347", "attributes": { "weight": 1 } }, { "key": "35168", "source": "351", "target": "793", "attributes": { "weight": 1 } }, { "key": "21607", "source": "351", "target": "89", "attributes": { "weight": 1 } }, { "key": "35167", "source": "351", "target": "7", "attributes": { "weight": 1 } }, { "key": "28986", "source": "351", "target": "479", "attributes": { "weight": 1 } }, { "key": "32619", "source": "351", "target": "791", "attributes": { "weight": 1 } }, { "key": "33833", "source": "351", "target": "788", "attributes": { "weight": 1 } }, { "key": "31813", "source": "351", "target": "8", "attributes": { "weight": 1 } }, { "key": "37254", "source": "351", "target": "3017", "attributes": { "weight": 1 } }, { "key": "23853", "source": "351", "target": "1774", "attributes": { "weight": 1 } }, { "key": "37306", "source": "351", "target": "3351", "attributes": { "weight": 1 } }, { "key": "35169", "source": "351", "target": "349", "attributes": { "weight": 1 } }, { "key": "31814", "source": "351", "target": "595", "attributes": { "weight": 1 } }, { "key": "35053", "source": "352", "target": "89", "attributes": { "weight": 1 } }, { "key": "35175", "source": "352", "target": "2646", "attributes": { "weight": 1 } }, { "key": "35059", "source": "352", "target": "19", "attributes": { "weight": 1 } }, { "key": "30623", "source": "352", "target": "682", "attributes": { "weight": 2 } }, { "key": "35054", "source": "352", "target": "452", "attributes": { "weight": 1 } }, { "key": "35051", "source": "352", "target": "387", "attributes": { "weight": 1 } }, { "key": "32626", "source": "352", "target": "2211", "attributes": { "weight": 1 } }, { "key": "30624", "source": "352", "target": "2878", "attributes": { "weight": 1 } }, { "key": "35179", "source": "352", "target": "1390", "attributes": { "weight": 1 } }, { "key": "31818", "source": "352", "target": "8", "attributes": { "weight": 2 } }, { "key": "35064", "source": "352", "target": "338", "attributes": { "weight": 1 } }, { "key": "35065", "source": "352", "target": "468", "attributes": { "weight": 2 } }, { "key": "30625", "source": "352", "target": "2991", "attributes": { "weight": 1 } }, { "key": "35069", "source": "352", "target": "1553", "attributes": { "weight": 1 } }, { "key": "35049", "source": "352", "target": "787", "attributes": { "weight": 1 } }, { "key": "35050", "source": "352", "target": "2067", "attributes": { "weight": 1 } }, { "key": "35074", "source": "352", "target": "1125", "attributes": { "weight": 2 } }, { "key": "35081", "source": "352", "target": "14", "attributes": { "weight": 1 } }, { "key": "30622", "source": "352", "target": "17", "attributes": { "weight": 1 } }, { "key": "26777", "source": "352", "target": "183", "attributes": { "weight": 1 } }, { "key": "35062", "source": "352", "target": "2073", "attributes": { "weight": 1 } }, { "key": "35060", "source": "352", "target": "370", "attributes": { "weight": 1 } }, { "key": "35067", "source": "352", "target": "371", "attributes": { "weight": 1 } }, { "key": "35063", "source": "352", "target": "817", "attributes": { "weight": 1 } }, { "key": "1019", "source": "352", "target": "12", "attributes": { "weight": 2 } }, { "key": "35055", "source": "352", "target": "2070", "attributes": { "weight": 1 } }, { "key": "35052", "source": "352", "target": "860", "attributes": { "weight": 1 } }, { "key": "1017", "source": "352", "target": "345", "attributes": { "weight": 1 } }, { "key": "35077", "source": "352", "target": "1812", "attributes": { "weight": 1 } }, { "key": "35080", "source": "352", "target": "2670", "attributes": { "weight": 1 } }, { "key": "27442", "source": "352", "target": "2682", "attributes": { "weight": 1 } }, { "key": "35075", "source": "352", "target": "13", "attributes": { "weight": 1 } }, { "key": "35086", "source": "352", "target": "1063", "attributes": { "weight": 1 } }, { "key": "35079", "source": "352", "target": "1772", "attributes": { "weight": 1 } }, { "key": "35061", "source": "352", "target": "681", "attributes": { "weight": 1 } }, { "key": "35178", "source": "352", "target": "3181", "attributes": { "weight": 1 } }, { "key": "35180", "source": "352", "target": "829", "attributes": { "weight": 1 } }, { "key": "4253", "source": "352", "target": "1137", "attributes": { "weight": 1 } }, { "key": "35084", "source": "352", "target": "1780", "attributes": { "weight": 1 } }, { "key": "35070", "source": "352", "target": "9", "attributes": { "weight": 1 } }, { "key": "35082", "source": "352", "target": "1774", "attributes": { "weight": 1 } }, { "key": "35085", "source": "352", "target": "494", "attributes": { "weight": 1 } }, { "key": "4254", "source": "352", "target": "673", "attributes": { "weight": 1 } }, { "key": "12731", "source": "352", "target": "695", "attributes": { "weight": 2 } }, { "key": "15093", "source": "352", "target": "1992", "attributes": { "weight": 1 } }, { "key": "32627", "source": "352", "target": "791", "attributes": { "weight": 2 } }, { "key": "30330", "source": "352", "target": "693", "attributes": { "weight": 2 } }, { "key": "1018", "source": "352", "target": "346", "attributes": { "weight": 1 } }, { "key": "1020", "source": "352", "target": "347", "attributes": { "weight": 1 } }, { "key": "30507", "source": "352", "target": "1072", "attributes": { "weight": 2 } }, { "key": "1022", "source": "352", "target": "350", "attributes": { "weight": 1 } }, { "key": "35048", "source": "352", "target": "429", "attributes": { "weight": 1 } }, { "key": "30508", "source": "352", "target": "2647", "attributes": { "weight": 1 } }, { "key": "35076", "source": "352", "target": "304", "attributes": { "weight": 1 } }, { "key": "29105", "source": "352", "target": "495", "attributes": { "weight": 2 } }, { "key": "35057", "source": "352", "target": "169", "attributes": { "weight": 1 } }, { "key": "26779", "source": "352", "target": "193", "attributes": { "weight": 1 } }, { "key": "35066", "source": "352", "target": "471", "attributes": { "weight": 1 } }, { "key": "35056", "source": "352", "target": "458", "attributes": { "weight": 1 } }, { "key": "26778", "source": "352", "target": "454", "attributes": { "weight": 2 } }, { "key": "35071", "source": "352", "target": "473", "attributes": { "weight": 1 } }, { "key": "35068", "source": "352", "target": "1611", "attributes": { "weight": 1 } }, { "key": "35078", "source": "352", "target": "2077", "attributes": { "weight": 1 } }, { "key": "36164", "source": "352", "target": "440", "attributes": { "weight": 1 } }, { "key": "35177", "source": "352", "target": "3180", "attributes": { "weight": 1 } }, { "key": "30626", "source": "352", "target": "25", "attributes": { "weight": 1 } }, { "key": "35073", "source": "352", "target": "868", "attributes": { "weight": 1 } }, { "key": "35083", "source": "352", "target": "340", "attributes": { "weight": 1 } }, { "key": "35176", "source": "352", "target": "818", "attributes": { "weight": 1 } }, { "key": "1021", "source": "352", "target": "348", "attributes": { "weight": 1 } }, { "key": "35047", "source": "352", "target": "0", "attributes": { "weight": 1 } }, { "key": "32625", "source": "352", "target": "424", "attributes": { "weight": 2 } }, { "key": "35072", "source": "352", "target": "3017", "attributes": { "weight": 1 } }, { "key": "35058", "source": "352", "target": "426", "attributes": { "weight": 1 } }, { "key": "1024", "source": "353", "target": "357", "attributes": { "weight": 1 } }, { "key": "9410", "source": "354", "target": "1612", "attributes": { "weight": 1 } }, { "key": "2138", "source": "354", "target": "642", "attributes": { "weight": 1 } }, { "key": "2155", "source": "354", "target": "665", "attributes": { "weight": 1 } }, { "key": "9407", "source": "354", "target": "1602", "attributes": { "weight": 1 } }, { "key": "3727", "source": "354", "target": "1034", "attributes": { "weight": 3 } }, { "key": "1025", "source": "354", "target": "355", "attributes": { "weight": 2 } }, { "key": "3730", "source": "354", "target": "668", "attributes": { "weight": 2 } }, { "key": "3729", "source": "354", "target": "1054", "attributes": { "weight": 5 } }, { "key": "2143", "source": "354", "target": "648", "attributes": { "weight": 2 } }, { "key": "14180", "source": "354", "target": "168", "attributes": { "weight": 2 } }, { "key": "2145", "source": "354", "target": "651", "attributes": { "weight": 3 } }, { "key": "2151", "source": "354", "target": "661", "attributes": { "weight": 3 } }, { "key": "1026", "source": "354", "target": "357", "attributes": { "weight": 5 } }, { "key": "2137", "source": "354", "target": "641", "attributes": { "weight": 2 } }, { "key": "2153", "source": "354", "target": "663", "attributes": { "weight": 4 } }, { "key": "2144", "source": "354", "target": "649", "attributes": { "weight": 6 } }, { "key": "27904", "source": "354", "target": "287", "attributes": { "weight": 1 } }, { "key": "2152", "source": "354", "target": "662", "attributes": { "weight": 2 } }, { "key": "9409", "source": "354", "target": "176", "attributes": { "weight": 1 } }, { "key": "2141", "source": "354", "target": "645", "attributes": { "weight": 5 } }, { "key": "2140", "source": "354", "target": "644", "attributes": { "weight": 5 } }, { "key": "2142", "source": "354", "target": "419", "attributes": { "weight": 6 } }, { "key": "2154", "source": "354", "target": "664", "attributes": { "weight": 1 } }, { "key": "2148", "source": "354", "target": "655", "attributes": { "weight": 6 } }, { "key": "2149", "source": "354", "target": "658", "attributes": { "weight": 3 } }, { "key": "3731", "source": "354", "target": "669", "attributes": { "weight": 2 } }, { "key": "3728", "source": "354", "target": "1052", "attributes": { "weight": 3 } }, { "key": "25572", "source": "354", "target": "2611", "attributes": { "weight": 1 } }, { "key": "2150", "source": "354", "target": "659", "attributes": { "weight": 1 } }, { "key": "2146", "source": "354", "target": "653", "attributes": { "weight": 2 } }, { "key": "2139", "source": "354", "target": "164", "attributes": { "weight": 2 } }, { "key": "9572", "source": "354", "target": "171", "attributes": { "weight": 1 } }, { "key": "30348", "source": "354", "target": "1046", "attributes": { "weight": 1 } }, { "key": "9411", "source": "354", "target": "178", "attributes": { "weight": 4 } }, { "key": "17346", "source": "354", "target": "358", "attributes": { "weight": 1 } }, { "key": "2147", "source": "354", "target": "654", "attributes": { "weight": 5 } }, { "key": "9408", "source": "354", "target": "361", "attributes": { "weight": 1 } }, { "key": "22270", "source": "355", "target": "794", "attributes": { "weight": 1 } }, { "key": "12333", "source": "355", "target": "1036", "attributes": { "weight": 1 } }, { "key": "1027", "source": "355", "target": "354", "attributes": { "weight": 2 } }, { "key": "21508", "source": "355", "target": "89", "attributes": { "weight": 1 } }, { "key": "30747", "source": "355", "target": "164", "attributes": { "weight": 1 } }, { "key": "1028", "source": "355", "target": "357", "attributes": { "weight": 4 } }, { "key": "12334", "source": "355", "target": "358", "attributes": { "weight": 1 } }, { "key": "12335", "source": "355", "target": "359", "attributes": { "weight": 1 } }, { "key": "1029", "source": "355", "target": "362", "attributes": { "weight": 3 } }, { "key": "28921", "source": "355", "target": "171", "attributes": { "weight": 1 } }, { "key": "1030", "source": "356", "target": "357", "attributes": { "weight": 3 } }, { "key": "12337", "source": "357", "target": "1046", "attributes": { "weight": 2 } }, { "key": "1042", "source": "357", "target": "364", "attributes": { "weight": 1 } }, { "key": "12342", "source": "357", "target": "176", "attributes": { "weight": 1 } }, { "key": "1032", "source": "357", "target": "353", "attributes": { "weight": 1 } }, { "key": "30009", "source": "357", "target": "661", "attributes": { "weight": 1 } }, { "key": "1033", "source": "357", "target": "354", "attributes": { "weight": 5 } }, { "key": "1036", "source": "357", "target": "358", "attributes": { "weight": 3 } }, { "key": "31856", "source": "357", "target": "1060", "attributes": { "weight": 1 } }, { "key": "1040", "source": "357", "target": "171", "attributes": { "weight": 5 } }, { "key": "12340", "source": "357", "target": "1056", "attributes": { "weight": 2 } }, { "key": "14516", "source": "357", "target": "259", "attributes": { "weight": 1 } }, { "key": "12339", "source": "357", "target": "168", "attributes": { "weight": 3 } }, { "key": "3739", "source": "357", "target": "645", "attributes": { "weight": 1 } }, { "key": "1039", "source": "357", "target": "361", "attributes": { "weight": 4 } }, { "key": "25573", "source": "357", "target": "2611", "attributes": { "weight": 1 } }, { "key": "27930", "source": "357", "target": "287", "attributes": { "weight": 1 } }, { "key": "1038", "source": "357", "target": "360", "attributes": { "weight": 3 } }, { "key": "27721", "source": "357", "target": "1042", "attributes": { "weight": 2 } }, { "key": "1034", "source": "357", "target": "355", "attributes": { "weight": 4 } }, { "key": "12343", "source": "357", "target": "178", "attributes": { "weight": 4 } }, { "key": "1043", "source": "357", "target": "365", "attributes": { "weight": 3 } }, { "key": "1041", "source": "357", "target": "362", "attributes": { "weight": 2 } }, { "key": "29615", "source": "357", "target": "1763", "attributes": { "weight": 1 } }, { "key": "12336", "source": "357", "target": "1045", "attributes": { "weight": 2 } }, { "key": "1035", "source": "357", "target": "356", "attributes": { "weight": 3 } }, { "key": "1031", "source": "357", "target": "164", "attributes": { "weight": 6 } }, { "key": "12338", "source": "357", "target": "452", "attributes": { "weight": 1 } }, { "key": "18055", "source": "357", "target": "1036", "attributes": { "weight": 1 } }, { "key": "3740", "source": "357", "target": "419", "attributes": { "weight": 3 } }, { "key": "1037", "source": "357", "target": "359", "attributes": { "weight": 3 } }, { "key": "12341", "source": "357", "target": "468", "attributes": { "weight": 1 } }, { "key": "22274", "source": "357", "target": "794", "attributes": { "weight": 1 } }, { "key": "32334", "source": "357", "target": "791", "attributes": { "weight": 1 } }, { "key": "21562", "source": "358", "target": "2291", "attributes": { "weight": 2 } }, { "key": "17411", "source": "358", "target": "1763", "attributes": { "weight": 4 } }, { "key": "11496", "source": "358", "target": "1322", "attributes": { "weight": 2 } }, { "key": "17427", "source": "358", "target": "2115", "attributes": { "weight": 3 } }, { "key": "17407", "source": "358", "target": "791", "attributes": { "weight": 3 } }, { "key": "17388", "source": "358", "target": "1045", "attributes": { "weight": 4 } }, { "key": "17380", "source": "358", "target": "567", "attributes": { "weight": 2 } }, { "key": "11495", "source": "358", "target": "473", "attributes": { "weight": 2 } }, { "key": "2197", "source": "358", "target": "419", "attributes": { "weight": 5 } }, { "key": "17383", "source": "358", "target": "674", "attributes": { "weight": 2 } }, { "key": "17424", "source": "358", "target": "471", "attributes": { "weight": 1 } }, { "key": "17413", "source": "358", "target": "1765", "attributes": { "weight": 3 } }, { "key": "33758", "source": "358", "target": "817", "attributes": { "weight": 1 } }, { "key": "24619", "source": "358", "target": "2232", "attributes": { "weight": 2 } }, { "key": "11490", "source": "358", "target": "368", "attributes": { "weight": 2 } }, { "key": "17431", "source": "358", "target": "1553", "attributes": { "weight": 2 } }, { "key": "27946", "source": "358", "target": "287", "attributes": { "weight": 1 } }, { "key": "17389", "source": "358", "target": "1046", "attributes": { "weight": 4 } }, { "key": "17416", "source": "358", "target": "53", "attributes": { "weight": 1 } }, { "key": "17421", "source": "358", "target": "136", "attributes": { "weight": 1 } }, { "key": "17584", "source": "358", "target": "1805", "attributes": { "weight": 1 } }, { "key": "17362", "source": "358", "target": "35", "attributes": { "weight": 1 } }, { "key": "17371", "source": "358", "target": "1520", "attributes": { "weight": 2 } }, { "key": "26050", "source": "358", "target": "595", "attributes": { "weight": 2 } }, { "key": "2200", "source": "358", "target": "667", "attributes": { "weight": 3 } }, { "key": "17441", "source": "358", "target": "1060", "attributes": { "weight": 4 } }, { "key": "17420", "source": "358", "target": "470", "attributes": { "weight": 2 } }, { "key": "17447", "source": "358", "target": "310", "attributes": { "weight": 2 } }, { "key": "9452", "source": "358", "target": "650", "attributes": { "weight": 1 } }, { "key": "17367", "source": "358", "target": "59", "attributes": { "weight": 2 } }, { "key": "3769", "source": "358", "target": "1049", "attributes": { "weight": 2 } }, { "key": "37216", "source": "358", "target": "681", "attributes": { "weight": 1 } }, { "key": "21548", "source": "358", "target": "2139", "attributes": { "weight": 1 } }, { "key": "21558", "source": "358", "target": "2290", "attributes": { "weight": 1 } }, { "key": "17393", "source": "358", "target": "1133", "attributes": { "weight": 1 } }, { "key": "17384", "source": "358", "target": "636", "attributes": { "weight": 2 } }, { "key": "17418", "source": "358", "target": "135", "attributes": { "weight": 2 } }, { "key": "21541", "source": "358", "target": "2123", "attributes": { "weight": 1 } }, { "key": "17453", "source": "358", "target": "1063", "attributes": { "weight": 1 } }, { "key": "14197", "source": "358", "target": "168", "attributes": { "weight": 2 } }, { "key": "11489", "source": "358", "target": "938", "attributes": { "weight": 2 } }, { "key": "21547", "source": "358", "target": "2287", "attributes": { "weight": 1 } }, { "key": "17370", "source": "358", "target": "130", "attributes": { "weight": 1 } }, { "key": "17409", "source": "358", "target": "638", "attributes": { "weight": 2 } }, { "key": "17414", "source": "358", "target": "171", "attributes": { "weight": 3 } }, { "key": "21566", "source": "358", "target": "828", "attributes": { "weight": 1 } }, { "key": "17446", "source": "358", "target": "2119", "attributes": { "weight": 2 } }, { "key": "11492", "source": "358", "target": "1233", "attributes": { "weight": 2 } }, { "key": "17404", "source": "358", "target": "278", "attributes": { "weight": 2 } }, { "key": "17401", "source": "358", "target": "188", "attributes": { "weight": 2 } }, { "key": "21564", "source": "358", "target": "2124", "attributes": { "weight": 1 } }, { "key": "17406", "source": "358", "target": "421", "attributes": { "weight": 3 } }, { "key": "24488", "source": "358", "target": "1794", "attributes": { "weight": 1 } }, { "key": "17377", "source": "358", "target": "2113", "attributes": { "weight": 2 } }, { "key": "30662", "source": "358", "target": "2997", "attributes": { "weight": 1 } }, { "key": "17442", "source": "358", "target": "2118", "attributes": { "weight": 3 } }, { "key": "17375", "source": "358", "target": "644", "attributes": { "weight": 1 } }, { "key": "17579", "source": "358", "target": "2132", "attributes": { "weight": 1 } }, { "key": "21542", "source": "358", "target": "693", "attributes": { "weight": 1 } }, { "key": "17578", "source": "358", "target": "1796", "attributes": { "weight": 2 } }, { "key": "17435", "source": "358", "target": "1282", "attributes": { "weight": 2 } }, { "key": "17422", "source": "358", "target": "1550", "attributes": { "weight": 1 } }, { "key": "17582", "source": "358", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17439", "source": "358", "target": "479", "attributes": { "weight": 2 } }, { "key": "17415", "source": "358", "target": "1056", "attributes": { "weight": 4 } }, { "key": "17399", "source": "358", "target": "109", "attributes": { "weight": 1 } }, { "key": "23747", "source": "358", "target": "1774", "attributes": { "weight": 1 } }, { "key": "21563", "source": "358", "target": "673", "attributes": { "weight": 1 } }, { "key": "17583", "source": "358", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17454", "source": "358", "target": "57", "attributes": { "weight": 3 } }, { "key": "24620", "source": "358", "target": "2237", "attributes": { "weight": 1 } }, { "key": "17385", "source": "358", "target": "1527", "attributes": { "weight": 1 } }, { "key": "17394", "source": "358", "target": "2114", "attributes": { "weight": 2 } }, { "key": "17585", "source": "358", "target": "1807", "attributes": { "weight": 1 } }, { "key": "21539", "source": "358", "target": "433", "attributes": { "weight": 1 } }, { "key": "17395", "source": "358", "target": "452", "attributes": { "weight": 1 } }, { "key": "9451", "source": "358", "target": "1041", "attributes": { "weight": 3 } }, { "key": "17449", "source": "358", "target": "493", "attributes": { "weight": 2 } }, { "key": "1044", "source": "358", "target": "357", "attributes": { "weight": 3 } }, { "key": "21544", "source": "358", "target": "5", "attributes": { "weight": 2 } }, { "key": "17400", "source": "358", "target": "52", "attributes": { "weight": 2 } }, { "key": "17423", "source": "358", "target": "228", "attributes": { "weight": 1 } }, { "key": "21559", "source": "358", "target": "823", "attributes": { "weight": 1 } }, { "key": "17444", "source": "358", "target": "177", "attributes": { "weight": 1 } }, { "key": "17429", "source": "358", "target": "1367", "attributes": { "weight": 1 } }, { "key": "17580", "source": "358", "target": "2143", "attributes": { "weight": 1 } }, { "key": "33759", "source": "358", "target": "14", "attributes": { "weight": 1 } }, { "key": "17372", "source": "358", "target": "2112", "attributes": { "weight": 2 } }, { "key": "21551", "source": "358", "target": "682", "attributes": { "weight": 2 } }, { "key": "12375", "source": "358", "target": "565", "attributes": { "weight": 1 } }, { "key": "21554", "source": "358", "target": "9", "attributes": { "weight": 2 } }, { "key": "30661", "source": "358", "target": "2995", "attributes": { "weight": 1 } }, { "key": "17452", "source": "358", "target": "497", "attributes": { "weight": 2 } }, { "key": "21556", "source": "358", "target": "2289", "attributes": { "weight": 1 } }, { "key": "9262", "source": "358", "target": "430", "attributes": { "weight": 2 } }, { "key": "11493", "source": "358", "target": "370", "attributes": { "weight": 2 } }, { "key": "18424", "source": "358", "target": "2140", "attributes": { "weight": 1 } }, { "key": "21549", "source": "358", "target": "161", "attributes": { "weight": 1 } }, { "key": "2198", "source": "358", "target": "651", "attributes": { "weight": 3 } }, { "key": "17430", "source": "358", "target": "1611", "attributes": { "weight": 1 } }, { "key": "21538", "source": "358", "target": "1779", "attributes": { "weight": 2 } }, { "key": "21561", "source": "358", "target": "428", "attributes": { "weight": 1 } }, { "key": "17391", "source": "358", "target": "1809", "attributes": { "weight": 2 } }, { "key": "21555", "source": "358", "target": "2288", "attributes": { "weight": 2 } }, { "key": "15095", "source": "358", "target": "1782", "attributes": { "weight": 2 } }, { "key": "17392", "source": "358", "target": "183", "attributes": { "weight": 2 } }, { "key": "17440", "source": "358", "target": "305", "attributes": { "weight": 1 } }, { "key": "17387", "source": "358", "target": "3", "attributes": { "weight": 1 } }, { "key": "21545", "source": "358", "target": "2286", "attributes": { "weight": 1 } }, { "key": "17437", "source": "358", "target": "173", "attributes": { "weight": 2 } }, { "key": "17397", "source": "358", "target": "108", "attributes": { "weight": 1 } }, { "key": "17426", "source": "358", "target": "362", "attributes": { "weight": 4 } }, { "key": "13045", "source": "358", "target": "304", "attributes": { "weight": 2 } }, { "key": "17417", "source": "358", "target": "8", "attributes": { "weight": 1 } }, { "key": "17577", "source": "358", "target": "2130", "attributes": { "weight": 1 } }, { "key": "21565", "source": "358", "target": "2125", "attributes": { "weight": 1 } }, { "key": "17381", "source": "358", "target": "1042", "attributes": { "weight": 3 } }, { "key": "2199", "source": "358", "target": "661", "attributes": { "weight": 2 } }, { "key": "21557", "source": "358", "target": "1026", "attributes": { "weight": 2 } }, { "key": "17438", "source": "358", "target": "2116", "attributes": { "weight": 2 } }, { "key": "15761", "source": "358", "target": "195", "attributes": { "weight": 1 } }, { "key": "17405", "source": "358", "target": "790", "attributes": { "weight": 4 } }, { "key": "17445", "source": "358", "target": "178", "attributes": { "weight": 5 } }, { "key": "2196", "source": "358", "target": "647", "attributes": { "weight": 4 } }, { "key": "17410", "source": "358", "target": "1024", "attributes": { "weight": 2 } }, { "key": "17432", "source": "358", "target": "189", "attributes": { "weight": 3 } }, { "key": "21552", "source": "358", "target": "361", "attributes": { "weight": 1 } }, { "key": "17436", "source": "358", "target": "580", "attributes": { "weight": 2 } }, { "key": "12347", "source": "358", "target": "365", "attributes": { "weight": 1 } }, { "key": "21543", "source": "358", "target": "789", "attributes": { "weight": 1 } }, { "key": "36223", "source": "358", "target": "560", "attributes": { "weight": 1 } }, { "key": "17374", "source": "358", "target": "164", "attributes": { "weight": 3 } }, { "key": "17408", "source": "358", "target": "359", "attributes": { "weight": 5 } }, { "key": "24489", "source": "358", "target": "1798", "attributes": { "weight": 1 } }, { "key": "2195", "source": "358", "target": "645", "attributes": { "weight": 4 } }, { "key": "17369", "source": "358", "target": "1037", "attributes": { "weight": 4 } }, { "key": "36222", "source": "358", "target": "1386", "attributes": { "weight": 1 } }, { "key": "17451", "source": "358", "target": "495", "attributes": { "weight": 2 } }, { "key": "17366", "source": "358", "target": "889", "attributes": { "weight": 4 } }, { "key": "21550", "source": "358", "target": "556", "attributes": { "weight": 1 } }, { "key": "17396", "source": "358", "target": "454", "attributes": { "weight": 3 } }, { "key": "1196", "source": "358", "target": "422", "attributes": { "weight": 5 } }, { "key": "37264", "source": "358", "target": "1799", "attributes": { "weight": 1 } }, { "key": "17379", "source": "358", "target": "354", "attributes": { "weight": 1 } }, { "key": "16436", "source": "358", "target": "1387", "attributes": { "weight": 2 } }, { "key": "21540", "source": "358", "target": "788", "attributes": { "weight": 2 } }, { "key": "17434", "source": "358", "target": "474", "attributes": { "weight": 1 } }, { "key": "17386", "source": "358", "target": "39", "attributes": { "weight": 1 } }, { "key": "17378", "source": "358", "target": "339", "attributes": { "weight": 3 } }, { "key": "3103", "source": "358", "target": "894", "attributes": { "weight": 1 } }, { "key": "17428", "source": "358", "target": "297", "attributes": { "weight": 2 } }, { "key": "17382", "source": "358", "target": "225", "attributes": { "weight": 1 } }, { "key": "17364", "source": "358", "target": "1143", "attributes": { "weight": 2 } }, { "key": "17390", "source": "358", "target": "449", "attributes": { "weight": 2 } }, { "key": "21537", "source": "358", "target": "2233", "attributes": { "weight": 1 } }, { "key": "17450", "source": "358", "target": "494", "attributes": { "weight": 1 } }, { "key": "17425", "source": "358", "target": "472", "attributes": { "weight": 2 } }, { "key": "30877", "source": "358", "target": "13", "attributes": { "weight": 1 } }, { "key": "21546", "source": "358", "target": "891", "attributes": { "weight": 1 } }, { "key": "8701", "source": "358", "target": "442", "attributes": { "weight": 3 } }, { "key": "21567", "source": "358", "target": "2126", "attributes": { "weight": 1 } }, { "key": "17368", "source": "358", "target": "432", "attributes": { "weight": 1 } }, { "key": "17402", "source": "358", "target": "169", "attributes": { "weight": 1 } }, { "key": "17419", "source": "358", "target": "1253", "attributes": { "weight": 3 } }, { "key": "17448", "source": "358", "target": "180", "attributes": { "weight": 1 } }, { "key": "17365", "source": "358", "target": "641", "attributes": { "weight": 2 } }, { "key": "17363", "source": "358", "target": "1380", "attributes": { "weight": 3 } }, { "key": "1857", "source": "358", "target": "93", "attributes": { "weight": 3 } }, { "key": "11497", "source": "358", "target": "1323", "attributes": { "weight": 2 } }, { "key": "12346", "source": "358", "target": "355", "attributes": { "weight": 1 } }, { "key": "11049", "source": "358", "target": "220", "attributes": { "weight": 3 } }, { "key": "17443", "source": "358", "target": "1772", "attributes": { "weight": 1 } }, { "key": "17433", "source": "358", "target": "163", "attributes": { "weight": 4 } }, { "key": "17403", "source": "358", "target": "707", "attributes": { "weight": 2 } }, { "key": "17376", "source": "358", "target": "1166", "attributes": { "weight": 2 } }, { "key": "17586", "source": "358", "target": "2152", "attributes": { "weight": 1 } }, { "key": "4973", "source": "358", "target": "468", "attributes": { "weight": 5 } }, { "key": "11491", "source": "358", "target": "1232", "attributes": { "weight": 3 } }, { "key": "17581", "source": "358", "target": "2144", "attributes": { "weight": 1 } }, { "key": "21560", "source": "358", "target": "232", "attributes": { "weight": 2 } }, { "key": "17373", "source": "358", "target": "435", "attributes": { "weight": 2 } }, { "key": "14544", "source": "358", "target": "259", "attributes": { "weight": 2 } }, { "key": "11494", "source": "358", "target": "338", "attributes": { "weight": 2 } }, { "key": "17398", "source": "358", "target": "1219", "attributes": { "weight": 2 } }, { "key": "21553", "source": "358", "target": "660", "attributes": { "weight": 1 } }, { "key": "25378", "source": "358", "target": "2579", "attributes": { "weight": 2 } }, { "key": "17412", "source": "358", "target": "170", "attributes": { "weight": 2 } }, { "key": "31923", "source": "359", "target": "1232", "attributes": { "weight": 1 } }, { "key": "31908", "source": "359", "target": "1794", "attributes": { "weight": 1 } }, { "key": "29652", "source": "359", "target": "2288", "attributes": { "weight": 1 } }, { "key": "28617", "source": "359", "target": "421", "attributes": { "weight": 4 } }, { "key": "31918", "source": "359", "target": "2135", "attributes": { "weight": 1 } }, { "key": "31905", "source": "359", "target": "3064", "attributes": { "weight": 1 } }, { "key": "17081", "source": "359", "target": "891", "attributes": { "weight": 7 } }, { "key": "31914", "source": "359", "target": "3067", "attributes": { "weight": 1 } }, { "key": "30709", "source": "359", "target": "889", "attributes": { "weight": 4 } }, { "key": "22672", "source": "359", "target": "1037", "attributes": { "weight": 2 } }, { "key": "31903", "source": "359", "target": "3063", "attributes": { "weight": 1 } }, { "key": "18066", "source": "359", "target": "1036", "attributes": { "weight": 3 } }, { "key": "31944", "source": "359", "target": "1805", "attributes": { "weight": 1 } }, { "key": "22291", "source": "359", "target": "794", "attributes": { "weight": 1 } }, { "key": "31937", "source": "359", "target": "2146", "attributes": { "weight": 1 } }, { "key": "8784", "source": "359", "target": "442", "attributes": { "weight": 2 } }, { "key": "24631", "source": "359", "target": "2118", "attributes": { "weight": 2 } }, { "key": "21578", "source": "359", "target": "89", "attributes": { "weight": 1 } }, { "key": "27864", "source": "359", "target": "339", "attributes": { "weight": 3 } }, { "key": "31941", "source": "359", "target": "3073", "attributes": { "weight": 1 } }, { "key": "31922", "source": "359", "target": "2314", "attributes": { "weight": 1 } }, { "key": "37106", "source": "359", "target": "232", "attributes": { "weight": 1 } }, { "key": "31917", "source": "359", "target": "2123", "attributes": { "weight": 1 } }, { "key": "27406", "source": "359", "target": "2313", "attributes": { "weight": 2 } }, { "key": "31907", "source": "359", "target": "3065", "attributes": { "weight": 1 } }, { "key": "31938", "source": "359", "target": "1592", "attributes": { "weight": 1 } }, { "key": "25737", "source": "359", "target": "1060", "attributes": { "weight": 5 } }, { "key": "17470", "source": "359", "target": "358", "attributes": { "weight": 5 } }, { "key": "31936", "source": "359", "target": "93", "attributes": { "weight": 1 } }, { "key": "31108", "source": "359", "target": "2290", "attributes": { "weight": 1 } }, { "key": "31919", "source": "359", "target": "3070", "attributes": { "weight": 2 } }, { "key": "1045", "source": "359", "target": "357", "attributes": { "weight": 3 } }, { "key": "31947", "source": "359", "target": "2125", "attributes": { "weight": 1 } }, { "key": "31942", "source": "359", "target": "178", "attributes": { "weight": 1 } }, { "key": "11892", "source": "359", "target": "468", "attributes": { "weight": 2 } }, { "key": "31950", "source": "359", "target": "2126", "attributes": { "weight": 1 } }, { "key": "7322", "source": "359", "target": "454", "attributes": { "weight": 6 } }, { "key": "31921", "source": "359", "target": "2286", "attributes": { "weight": 1 } }, { "key": "31932", "source": "359", "target": "472", "attributes": { "weight": 2 } }, { "key": "37102", "source": "359", "target": "2669", "attributes": { "weight": 1 } }, { "key": "3797", "source": "359", "target": "645", "attributes": { "weight": 3 } }, { "key": "31925", "source": "359", "target": "370", "attributes": { "weight": 1 } }, { "key": "31939", "source": "359", "target": "3071", "attributes": { "weight": 1 } }, { "key": "26053", "source": "359", "target": "163", "attributes": { "weight": 2 } }, { "key": "31915", "source": "359", "target": "3068", "attributes": { "weight": 1 } }, { "key": "11158", "source": "359", "target": "473", "attributes": { "weight": 2 } }, { "key": "31946", "source": "359", "target": "493", "attributes": { "weight": 2 } }, { "key": "27541", "source": "359", "target": "1520", "attributes": { "weight": 2 } }, { "key": "37105", "source": "359", "target": "135", "attributes": { "weight": 1 } }, { "key": "30454", "source": "359", "target": "1046", "attributes": { "weight": 2 } }, { "key": "31930", "source": "359", "target": "661", "attributes": { "weight": 1 } }, { "key": "15107", "source": "359", "target": "171", "attributes": { "weight": 4 } }, { "key": "3110", "source": "359", "target": "894", "attributes": { "weight": 1 } }, { "key": "31910", "source": "359", "target": "3066", "attributes": { "weight": 1 } }, { "key": "31929", "source": "359", "target": "660", "attributes": { "weight": 1 } }, { "key": "31926", "source": "359", "target": "638", "attributes": { "weight": 1 } }, { "key": "31948", "source": "359", "target": "3076", "attributes": { "weight": 1 } }, { "key": "22482", "source": "359", "target": "1637", "attributes": { "weight": 1 } }, { "key": "31909", "source": "359", "target": "1795", "attributes": { "weight": 1 } }, { "key": "37101", "source": "359", "target": "856", "attributes": { "weight": 1 } }, { "key": "22481", "source": "359", "target": "567", "attributes": { "weight": 4 } }, { "key": "9486", "source": "359", "target": "419", "attributes": { "weight": 2 } }, { "key": "31933", "source": "359", "target": "362", "attributes": { "weight": 2 } }, { "key": "7321", "source": "359", "target": "1380", "attributes": { "weight": 6 } }, { "key": "24629", "source": "359", "target": "2236", "attributes": { "weight": 1 } }, { "key": "31951", "source": "359", "target": "1063", "attributes": { "weight": 1 } }, { "key": "31916", "source": "359", "target": "3069", "attributes": { "weight": 1 } }, { "key": "31927", "source": "359", "target": "2696", "attributes": { "weight": 1 } }, { "key": "31913", "source": "359", "target": "1045", "attributes": { "weight": 2 } }, { "key": "24632", "source": "359", "target": "2239", "attributes": { "weight": 1 } }, { "key": "31928", "source": "359", "target": "338", "attributes": { "weight": 1 } }, { "key": "31934", "source": "359", "target": "2115", "attributes": { "weight": 2 } }, { "key": "31911", "source": "359", "target": "644", "attributes": { "weight": 1 } }, { "key": "27866", "source": "359", "target": "2670", "attributes": { "weight": 2 } }, { "key": "9487", "source": "359", "target": "651", "attributes": { "weight": 1 } }, { "key": "28619", "source": "359", "target": "2116", "attributes": { "weight": 2 } }, { "key": "27725", "source": "359", "target": "1042", "attributes": { "weight": 3 } }, { "key": "37104", "source": "359", "target": "2861", "attributes": { "weight": 1 } }, { "key": "37103", "source": "359", "target": "2312", "attributes": { "weight": 1 } }, { "key": "31945", "source": "359", "target": "1806", "attributes": { "weight": 1 } }, { "key": "10496", "source": "359", "target": "225", "attributes": { "weight": 3 } }, { "key": "3109", "source": "359", "target": "890", "attributes": { "weight": 1 } }, { "key": "24630", "source": "359", "target": "2237", "attributes": { "weight": 1 } }, { "key": "36954", "source": "359", "target": "2291", "attributes": { "weight": 1 } }, { "key": "31107", "source": "359", "target": "1765", "attributes": { "weight": 3 } }, { "key": "18428", "source": "359", "target": "1056", "attributes": { "weight": 5 } }, { "key": "34865", "source": "359", "target": "2511", "attributes": { "weight": 1 } }, { "key": "31924", "source": "359", "target": "1798", "attributes": { "weight": 1 } }, { "key": "31906", "source": "359", "target": "430", "attributes": { "weight": 1 } }, { "key": "31931", "source": "359", "target": "471", "attributes": { "weight": 2 } }, { "key": "31912", "source": "359", "target": "259", "attributes": { "weight": 1 } }, { "key": "31940", "source": "359", "target": "1802", "attributes": { "weight": 1 } }, { "key": "31920", "source": "359", "target": "52", "attributes": { "weight": 1 } }, { "key": "7323", "source": "359", "target": "791", "attributes": { "weight": 3 } }, { "key": "12350", "source": "359", "target": "355", "attributes": { "weight": 1 } }, { "key": "29651", "source": "359", "target": "1763", "attributes": { "weight": 3 } }, { "key": "24628", "source": "359", "target": "2235", "attributes": { "weight": 1 } }, { "key": "24627", "source": "359", "target": "2232", "attributes": { "weight": 2 } }, { "key": "27865", "source": "359", "target": "2528", "attributes": { "weight": 2 } }, { "key": "28618", "source": "359", "target": "1253", "attributes": { "weight": 4 } }, { "key": "31949", "source": "359", "target": "3077", "attributes": { "weight": 1 } }, { "key": "3302", "source": "359", "target": "1555", "attributes": { "weight": 1 } }, { "key": "9485", "source": "359", "target": "1041", "attributes": { "weight": 2 } }, { "key": "31904", "source": "359", "target": "2233", "attributes": { "weight": 2 } }, { "key": "11157", "source": "359", "target": "452", "attributes": { "weight": 2 } }, { "key": "12377", "source": "359", "target": "565", "attributes": { "weight": 1 } }, { "key": "31943", "source": "359", "target": "1804", "attributes": { "weight": 1 } }, { "key": "29653", "source": "359", "target": "2119", "attributes": { "weight": 1 } }, { "key": "31935", "source": "359", "target": "1801", "attributes": { "weight": 1 } }, { "key": "1046", "source": "360", "target": "357", "attributes": { "weight": 3 } }, { "key": "21584", "source": "361", "target": "89", "attributes": { "weight": 1 } }, { "key": "2252", "source": "361", "target": "419", "attributes": { "weight": 5 } }, { "key": "9494", "source": "361", "target": "668", "attributes": { "weight": 1 } }, { "key": "1047", "source": "361", "target": "357", "attributes": { "weight": 4 } }, { "key": "25578", "source": "361", "target": "2611", "attributes": { "weight": 1 } }, { "key": "30648", "source": "361", "target": "168", "attributes": { "weight": 1 } }, { "key": "21585", "source": "361", "target": "358", "attributes": { "weight": 1 } }, { "key": "25740", "source": "361", "target": "278", "attributes": { "weight": 1 } }, { "key": "13230", "source": "361", "target": "264", "attributes": { "weight": 1 } }, { "key": "3799", "source": "361", "target": "645", "attributes": { "weight": 1 } }, { "key": "37389", "source": "361", "target": "3367", "attributes": { "weight": 1 } }, { "key": "37388", "source": "361", "target": "3366", "attributes": { "weight": 1 } }, { "key": "37396", "source": "361", "target": "3374", "attributes": { "weight": 1 } }, { "key": "30647", "source": "361", "target": "164", "attributes": { "weight": 2 } }, { "key": "28033", "source": "361", "target": "287", "attributes": { "weight": 1 } }, { "key": "22295", "source": "361", "target": "794", "attributes": { "weight": 1 } }, { "key": "14690", "source": "361", "target": "259", "attributes": { "weight": 1 } }, { "key": "36956", "source": "361", "target": "362", "attributes": { "weight": 1 } }, { "key": "27680", "source": "361", "target": "178", "attributes": { "weight": 2 } }, { "key": "30459", "source": "361", "target": "1046", "attributes": { "weight": 2 } }, { "key": "37393", "source": "361", "target": "3371", "attributes": { "weight": 1 } }, { "key": "37392", "source": "361", "target": "3370", "attributes": { "weight": 1 } }, { "key": "15109", "source": "361", "target": "171", "attributes": { "weight": 3 } }, { "key": "37390", "source": "361", "target": "3368", "attributes": { "weight": 1 } }, { "key": "18067", "source": "361", "target": "1036", "attributes": { "weight": 1 } }, { "key": "29676", "source": "361", "target": "1763", "attributes": { "weight": 1 } }, { "key": "13231", "source": "361", "target": "294", "attributes": { "weight": 1 } }, { "key": "37395", "source": "361", "target": "3373", "attributes": { "weight": 1 } }, { "key": "9493", "source": "361", "target": "354", "attributes": { "weight": 1 } }, { "key": "37391", "source": "361", "target": "3369", "attributes": { "weight": 1 } }, { "key": "37394", "source": "361", "target": "3372", "attributes": { "weight": 1 } }, { "key": "32545", "source": "361", "target": "791", "attributes": { "weight": 1 } }, { "key": "32564", "source": "362", "target": "791", "attributes": { "weight": 2 } }, { "key": "36976", "source": "362", "target": "562", "attributes": { "weight": 1 } }, { "key": "36975", "source": "362", "target": "2291", "attributes": { "weight": 1 } }, { "key": "28626", "source": "362", "target": "2116", "attributes": { "weight": 2 } }, { "key": "36966", "source": "362", "target": "659", "attributes": { "weight": 1 } }, { "key": "29705", "source": "362", "target": "2886", "attributes": { "weight": 1 } }, { "key": "24583", "source": "362", "target": "1041", "attributes": { "weight": 2 } }, { "key": "29706", "source": "362", "target": "421", "attributes": { "weight": 2 } }, { "key": "1050", "source": "362", "target": "357", "attributes": { "weight": 1 } }, { "key": "17623", "source": "362", "target": "2152", "attributes": { "weight": 1 } }, { "key": "36963", "source": "362", "target": "1045", "attributes": { "weight": 1 } }, { "key": "17489", "source": "362", "target": "358", "attributes": { "weight": 4 } }, { "key": "9505", "source": "362", "target": "419", "attributes": { "weight": 2 } }, { "key": "21590", "source": "362", "target": "89", "attributes": { "weight": 1 } }, { "key": "28627", "source": "362", "target": "2119", "attributes": { "weight": 2 } }, { "key": "36972", "source": "362", "target": "1611", "attributes": { "weight": 1 } }, { "key": "36971", "source": "362", "target": "660", "attributes": { "weight": 1 } }, { "key": "31168", "source": "362", "target": "641", "attributes": { "weight": 1 } }, { "key": "29708", "source": "362", "target": "2892", "attributes": { "weight": 1 } }, { "key": "36967", "source": "362", "target": "359", "attributes": { "weight": 1 } }, { "key": "28625", "source": "362", "target": "1253", "attributes": { "weight": 3 } }, { "key": "24584", "source": "362", "target": "1049", "attributes": { "weight": 1 } }, { "key": "3816", "source": "362", "target": "667", "attributes": { "weight": 3 } }, { "key": "31967", "source": "362", "target": "2115", "attributes": { "weight": 2 } }, { "key": "36974", "source": "362", "target": "473", "attributes": { "weight": 1 } }, { "key": "9507", "source": "362", "target": "661", "attributes": { "weight": 2 } }, { "key": "36960", "source": "362", "target": "164", "attributes": { "weight": 1 } }, { "key": "36959", "source": "362", "target": "1520", "attributes": { "weight": 1 } }, { "key": "34910", "source": "362", "target": "57", "attributes": { "weight": 2 } }, { "key": "36962", "source": "362", "target": "442", "attributes": { "weight": 1 } }, { "key": "9506", "source": "362", "target": "651", "attributes": { "weight": 2 } }, { "key": "26146", "source": "362", "target": "1056", "attributes": { "weight": 2 } }, { "key": "27727", "source": "362", "target": "1042", "attributes": { "weight": 3 } }, { "key": "29707", "source": "362", "target": "1763", "attributes": { "weight": 3 } }, { "key": "1049", "source": "362", "target": "355", "attributes": { "weight": 3 } }, { "key": "30714", "source": "362", "target": "889", "attributes": { "weight": 2 } }, { "key": "36964", "source": "362", "target": "454", "attributes": { "weight": 1 } }, { "key": "5539", "source": "362", "target": "1036", "attributes": { "weight": 11 } }, { "key": "36973", "source": "362", "target": "189", "attributes": { "weight": 1 } }, { "key": "27881", "source": "362", "target": "339", "attributes": { "weight": 2 } }, { "key": "36961", "source": "362", "target": "644", "attributes": { "weight": 1 } }, { "key": "17622", "source": "362", "target": "1804", "attributes": { "weight": 1 } }, { "key": "36969", "source": "362", "target": "361", "attributes": { "weight": 1 } }, { "key": "31968", "source": "362", "target": "1060", "attributes": { "weight": 2 } }, { "key": "27625", "source": "362", "target": "171", "attributes": { "weight": 2 } }, { "key": "22299", "source": "362", "target": "794", "attributes": { "weight": 1 } }, { "key": "22679", "source": "362", "target": "1037", "attributes": { "weight": 3 } }, { "key": "17943", "source": "362", "target": "1380", "attributes": { "weight": 2 } }, { "key": "36965", "source": "362", "target": "790", "attributes": { "weight": 1 } }, { "key": "36968", "source": "362", "target": "3340", "attributes": { "weight": 1 } }, { "key": "3815", "source": "362", "target": "647", "attributes": { "weight": 3 } }, { "key": "2270", "source": "362", "target": "645", "attributes": { "weight": 4 } }, { "key": "8873", "source": "362", "target": "1046", "attributes": { "weight": 5 } }, { "key": "36970", "source": "362", "target": "468", "attributes": { "weight": 1 } }, { "key": "1051", "source": "363", "target": "357", "attributes": { "weight": 1 } }, { "key": "1052", "source": "364", "target": "357", "attributes": { "weight": 1 } }, { "key": "1053", "source": "364", "target": "363", "attributes": { "weight": 1 } }, { "key": "1054", "source": "365", "target": "357", "attributes": { "weight": 4 } }, { "key": "1055", "source": "366", "target": "367", "attributes": { "weight": 1 } }, { "key": "2439", "source": "367", "target": "702", "attributes": { "weight": 1 } }, { "key": "1056", "source": "367", "target": "366", "attributes": { "weight": 1 } }, { "key": "4807", "source": "368", "target": "1212", "attributes": { "weight": 2 } }, { "key": "4827", "source": "368", "target": "278", "attributes": { "weight": 4 } }, { "key": "4912", "source": "368", "target": "1329", "attributes": { "weight": 3 } }, { "key": "4821", "source": "368", "target": "391", "attributes": { "weight": 2 } }, { "key": "11487", "source": "368", "target": "358", "attributes": { "weight": 2 } }, { "key": "4879", "source": "368", "target": "1090", "attributes": { "weight": 3 } }, { "key": "4889", "source": "368", "target": "1303", "attributes": { "weight": 2 } }, { "key": "4785", "source": "368", "target": "1188", "attributes": { "weight": 2 } }, { "key": "4778", "source": "368", "target": "1180", "attributes": { "weight": 2 } }, { "key": "4894", "source": "368", "target": "215", "attributes": { "weight": 3 } }, { "key": "4758", "source": "368", "target": "1148", "attributes": { "weight": 2 } }, { "key": "4872", "source": "368", "target": "1287", "attributes": { "weight": 2 } }, { "key": "4852", "source": "368", "target": "924", "attributes": { "weight": 3 } }, { "key": "4853", "source": "368", "target": "396", "attributes": { "weight": 5 } }, { "key": "4812", "source": "368", "target": "108", "attributes": { "weight": 3 } }, { "key": "4777", "source": "368", "target": "910", "attributes": { "weight": 2 } }, { "key": "4907", "source": "368", "target": "1326", "attributes": { "weight": 2 } }, { "key": "4890", "source": "368", "target": "1305", "attributes": { "weight": 2 } }, { "key": "4909", "source": "368", "target": "407", "attributes": { "weight": 2 } }, { "key": "4863", "source": "368", "target": "1278", "attributes": { "weight": 2 } }, { "key": "4900", "source": "368", "target": "1316", "attributes": { "weight": 2 } }, { "key": "4824", "source": "368", "target": "1229", "attributes": { "weight": 2 } }, { "key": "4754", "source": "368", "target": "1140", "attributes": { "weight": 2 } }, { "key": "4861", "source": "368", "target": "1273", "attributes": { "weight": 2 } }, { "key": "4871", "source": "368", "target": "1286", "attributes": { "weight": 2 } }, { "key": "4904", "source": "368", "target": "1323", "attributes": { "weight": 5 } }, { "key": "4874", "source": "368", "target": "123", "attributes": { "weight": 4 } }, { "key": "4916", "source": "368", "target": "3413", "attributes": { "weight": 2 } }, { "key": "4761", "source": "368", "target": "1156", "attributes": { "weight": 2 } }, { "key": "4815", "source": "368", "target": "1223", "attributes": { "weight": 2 } }, { "key": "4823", "source": "368", "target": "1228", "attributes": { "weight": 2 } }, { "key": "4901", "source": "368", "target": "601", "attributes": { "weight": 3 } }, { "key": "4805", "source": "368", "target": "454", "attributes": { "weight": 9 } }, { "key": "4899", "source": "368", "target": "405", "attributes": { "weight": 2 } }, { "key": "4819", "source": "368", "target": "917", "attributes": { "weight": 2 } }, { "key": "4891", "source": "368", "target": "1307", "attributes": { "weight": 2 } }, { "key": "4806", "source": "368", "target": "1211", "attributes": { "weight": 2 } }, { "key": "4762", "source": "368", "target": "1162", "attributes": { "weight": 2 } }, { "key": "4855", "source": "368", "target": "1266", "attributes": { "weight": 2 } }, { "key": "4773", "source": "368", "target": "631", "attributes": { "weight": 2 } }, { "key": "4919", "source": "368", "target": "217", "attributes": { "weight": 2 } }, { "key": "4911", "source": "368", "target": "961", "attributes": { "weight": 2 } }, { "key": "4781", "source": "368", "target": "1183", "attributes": { "weight": 2 } }, { "key": "4787", "source": "368", "target": "1190", "attributes": { "weight": 2 } }, { "key": "4822", "source": "368", "target": "1227", "attributes": { "weight": 2 } }, { "key": "4914", "source": "368", "target": "1331", "attributes": { "weight": 2 } }, { "key": "4843", "source": "368", "target": "30", "attributes": { "weight": 3 } }, { "key": "4788", "source": "368", "target": "911", "attributes": { "weight": 2 } }, { "key": "4772", "source": "368", "target": "1174", "attributes": { "weight": 3 } }, { "key": "4860", "source": "368", "target": "1272", "attributes": { "weight": 3 } }, { "key": "4829", "source": "368", "target": "1236", "attributes": { "weight": 2 } }, { "key": "4892", "source": "368", "target": "1308", "attributes": { "weight": 2 } }, { "key": "4837", "source": "368", "target": "1248", "attributes": { "weight": 2 } }, { "key": "4844", "source": "368", "target": "544", "attributes": { "weight": 2 } }, { "key": "4756", "source": "368", "target": "1144", "attributes": { "weight": 2 } }, { "key": "4793", "source": "368", "target": "1194", "attributes": { "weight": 2 } }, { "key": "4850", "source": "368", "target": "1263", "attributes": { "weight": 2 } }, { "key": "4884", "source": "368", "target": "214", "attributes": { "weight": 2 } }, { "key": "4832", "source": "368", "target": "370", "attributes": { "weight": 3 } }, { "key": "4825", "source": "368", "target": "1232", "attributes": { "weight": 3 } }, { "key": "4811", "source": "368", "target": "1216", "attributes": { "weight": 2 } }, { "key": "4835", "source": "368", "target": "1246", "attributes": { "weight": 2 } }, { "key": "4792", "source": "368", "target": "389", "attributes": { "weight": 2 } }, { "key": "4848", "source": "368", "target": "1260", "attributes": { "weight": 2 } }, { "key": "4862", "source": "368", "target": "1275", "attributes": { "weight": 2 } }, { "key": "4800", "source": "368", "target": "914", "attributes": { "weight": 2 } }, { "key": "4920", "source": "368", "target": "218", "attributes": { "weight": 3 } }, { "key": "4917", "source": "368", "target": "1332", "attributes": { "weight": 2 } }, { "key": "4929", "source": "368", "target": "373", "attributes": { "weight": 2 } }, { "key": "4857", "source": "368", "target": "371", "attributes": { "weight": 2 } }, { "key": "4849", "source": "368", "target": "1262", "attributes": { "weight": 2 } }, { "key": "4922", "source": "368", "target": "1342", "attributes": { "weight": 2 } }, { "key": "4933", "source": "368", "target": "1063", "attributes": { "weight": 5 } }, { "key": "4831", "source": "368", "target": "205", "attributes": { "weight": 2 } }, { "key": "4757", "source": "368", "target": "380", "attributes": { "weight": 2 } }, { "key": "4882", "source": "368", "target": "1296", "attributes": { "weight": 2 } }, { "key": "4801", "source": "368", "target": "1047", "attributes": { "weight": 3 } }, { "key": "4836", "source": "368", "target": "338", "attributes": { "weight": 6 } }, { "key": "1057", "source": "368", "target": "369", "attributes": { "weight": 2 } }, { "key": "4816", "source": "368", "target": "1224", "attributes": { "weight": 2 } }, { "key": "4797", "source": "368", "target": "1199", "attributes": { "weight": 2 } }, { "key": "4934", "source": "368", "target": "416", "attributes": { "weight": 2 } }, { "key": "4873", "source": "368", "target": "1288", "attributes": { "weight": 2 } }, { "key": "4790", "source": "368", "target": "388", "attributes": { "weight": 2 } }, { "key": "4774", "source": "368", "target": "1175", "attributes": { "weight": 2 } }, { "key": "4880", "source": "368", "target": "1294", "attributes": { "weight": 3 } }, { "key": "4796", "source": "368", "target": "1198", "attributes": { "weight": 2 } }, { "key": "4915", "source": "368", "target": "408", "attributes": { "weight": 3 } }, { "key": "4859", "source": "368", "target": "1271", "attributes": { "weight": 2 } }, { "key": "4834", "source": "368", "target": "337", "attributes": { "weight": 3 } }, { "key": "4833", "source": "368", "target": "1242", "attributes": { "weight": 2 } }, { "key": "4868", "source": "368", "target": "1281", "attributes": { "weight": 2 } }, { "key": "4908", "source": "368", "target": "406", "attributes": { "weight": 3 } }, { "key": "4794", "source": "368", "target": "1196", "attributes": { "weight": 2 } }, { "key": "28550", "source": "368", "target": "1279", "attributes": { "weight": 1 } }, { "key": "4896", "source": "368", "target": "1313", "attributes": { "weight": 2 } }, { "key": "4906", "source": "368", "target": "1325", "attributes": { "weight": 2 } }, { "key": "4770", "source": "368", "target": "1169", "attributes": { "weight": 2 } }, { "key": "4768", "source": "368", "target": "938", "attributes": { "weight": 4 } }, { "key": "4921", "source": "368", "target": "413", "attributes": { "weight": 2 } }, { "key": "4765", "source": "368", "target": "1165", "attributes": { "weight": 2 } }, { "key": "4799", "source": "368", "target": "1201", "attributes": { "weight": 2 } }, { "key": "4851", "source": "368", "target": "208", "attributes": { "weight": 3 } }, { "key": "4759", "source": "368", "target": "195", "attributes": { "weight": 10 } }, { "key": "4881", "source": "368", "target": "1295", "attributes": { "weight": 2 } }, { "key": "4818", "source": "368", "target": "109", "attributes": { "weight": 3 } }, { "key": "4864", "source": "368", "target": "925", "attributes": { "weight": 5 } }, { "key": "4764", "source": "368", "target": "1164", "attributes": { "weight": 2 } }, { "key": "4813", "source": "368", "target": "1218", "attributes": { "weight": 2 } }, { "key": "4755", "source": "368", "target": "1142", "attributes": { "weight": 2 } }, { "key": "4776", "source": "368", "target": "442", "attributes": { "weight": 5 } }, { "key": "4820", "source": "368", "target": "918", "attributes": { "weight": 2 } }, { "key": "4926", "source": "368", "target": "930", "attributes": { "weight": 2 } }, { "key": "4856", "source": "368", "target": "1267", "attributes": { "weight": 2 } }, { "key": "4814", "source": "368", "target": "1221", "attributes": { "weight": 2 } }, { "key": "4828", "source": "368", "target": "1234", "attributes": { "weight": 2 } }, { "key": "4847", "source": "368", "target": "471", "attributes": { "weight": 5 } }, { "key": "4838", "source": "368", "target": "1249", "attributes": { "weight": 2 } }, { "key": "4798", "source": "368", "target": "913", "attributes": { "weight": 4 } }, { "key": "4867", "source": "368", "target": "400", "attributes": { "weight": 2 } }, { "key": "28551", "source": "368", "target": "1284", "attributes": { "weight": 1 } }, { "key": "4913", "source": "368", "target": "1330", "attributes": { "weight": 2 } }, { "key": "4775", "source": "368", "target": "778", "attributes": { "weight": 1 } }, { "key": "4902", "source": "368", "target": "1321", "attributes": { "weight": 2 } }, { "key": "4839", "source": "368", "target": "920", "attributes": { "weight": 2 } }, { "key": "4782", "source": "368", "target": "779", "attributes": { "weight": 2 } }, { "key": "4802", "source": "368", "target": "1205", "attributes": { "weight": 2 } }, { "key": "4918", "source": "368", "target": "124", "attributes": { "weight": 2 } }, { "key": "4898", "source": "368", "target": "1315", "attributes": { "weight": 4 } }, { "key": "4878", "source": "368", "target": "1291", "attributes": { "weight": 4 } }, { "key": "4763", "source": "368", "target": "1163", "attributes": { "weight": 2 } }, { "key": "4886", "source": "368", "target": "1031", "attributes": { "weight": 2 } }, { "key": "4925", "source": "368", "target": "1346", "attributes": { "weight": 2 } }, { "key": "15645", "source": "368", "target": "220", "attributes": { "weight": 2 } }, { "key": "4869", "source": "368", "target": "580", "attributes": { "weight": 4 } }, { "key": "4840", "source": "368", "target": "1250", "attributes": { "weight": 2 } }, { "key": "4858", "source": "368", "target": "1269", "attributes": { "weight": 2 } }, { "key": "4771", "source": "368", "target": "1170", "attributes": { "weight": 2 } }, { "key": "4888", "source": "368", "target": "1302", "attributes": { "weight": 2 } }, { "key": "4786", "source": "368", "target": "1189", "attributes": { "weight": 2 } }, { "key": "4932", "source": "368", "target": "377", "attributes": { "weight": 4 } }, { "key": "4931", "source": "368", "target": "333", "attributes": { "weight": 3 } }, { "key": "4897", "source": "368", "target": "1314", "attributes": { "weight": 4 } }, { "key": "4810", "source": "368", "target": "390", "attributes": { "weight": 2 } }, { "key": "4842", "source": "368", "target": "468", "attributes": { "weight": 6 } }, { "key": "4930", "source": "368", "target": "154", "attributes": { "weight": 3 } }, { "key": "4841", "source": "368", "target": "921", "attributes": { "weight": 4 } }, { "key": "4870", "source": "368", "target": "1285", "attributes": { "weight": 2 } }, { "key": "4753", "source": "368", "target": "1139", "attributes": { "weight": 2 } }, { "key": "4809", "source": "368", "target": "1213", "attributes": { "weight": 2 } }, { "key": "4826", "source": "368", "target": "1233", "attributes": { "weight": 3 } }, { "key": "4883", "source": "368", "target": "990", "attributes": { "weight": 2 } }, { "key": "4830", "source": "368", "target": "1241", "attributes": { "weight": 2 } }, { "key": "4885", "source": "368", "target": "1300", "attributes": { "weight": 2 } }, { "key": "4846", "source": "368", "target": "1256", "attributes": { "weight": 2 } }, { "key": "4760", "source": "368", "target": "1152", "attributes": { "weight": 3 } }, { "key": "4791", "source": "368", "target": "912", "attributes": { "weight": 3 } }, { "key": "4795", "source": "368", "target": "1197", "attributes": { "weight": 5 } }, { "key": "4780", "source": "368", "target": "1182", "attributes": { "weight": 3 } }, { "key": "4924", "source": "368", "target": "1345", "attributes": { "weight": 2 } }, { "key": "4895", "source": "368", "target": "633", "attributes": { "weight": 2 } }, { "key": "4893", "source": "368", "target": "1310", "attributes": { "weight": 2 } }, { "key": "4789", "source": "368", "target": "387", "attributes": { "weight": 4 } }, { "key": "4903", "source": "368", "target": "1322", "attributes": { "weight": 3 } }, { "key": "4905", "source": "368", "target": "1324", "attributes": { "weight": 2 } }, { "key": "4928", "source": "368", "target": "931", "attributes": { "weight": 2 } }, { "key": "4784", "source": "368", "target": "1185", "attributes": { "weight": 2 } }, { "key": "4783", "source": "368", "target": "1184", "attributes": { "weight": 2 } }, { "key": "4804", "source": "368", "target": "199", "attributes": { "weight": 3 } }, { "key": "4767", "source": "368", "target": "43", "attributes": { "weight": 3 } }, { "key": "4887", "source": "368", "target": "403", "attributes": { "weight": 2 } }, { "key": "4817", "source": "368", "target": "1225", "attributes": { "weight": 2 } }, { "key": "4923", "source": "368", "target": "1343", "attributes": { "weight": 2 } }, { "key": "4845", "source": "368", "target": "1255", "attributes": { "weight": 2 } }, { "key": "4876", "source": "368", "target": "1290", "attributes": { "weight": 2 } }, { "key": "4927", "source": "368", "target": "1348", "attributes": { "weight": 2 } }, { "key": "4866", "source": "368", "target": "399", "attributes": { "weight": 2 } }, { "key": "4766", "source": "368", "target": "1166", "attributes": { "weight": 2 } }, { "key": "4779", "source": "368", "target": "1181", "attributes": { "weight": 2 } }, { "key": "4854", "source": "368", "target": "1264", "attributes": { "weight": 2 } }, { "key": "4769", "source": "368", "target": "1168", "attributes": { "weight": 2 } }, { "key": "4910", "source": "368", "target": "1327", "attributes": { "weight": 2 } }, { "key": "4865", "source": "368", "target": "926", "attributes": { "weight": 6 } }, { "key": "4808", "source": "368", "target": "915", "attributes": { "weight": 2 } }, { "key": "4803", "source": "368", "target": "1206", "attributes": { "weight": 2 } }, { "key": "4875", "source": "368", "target": "1289", "attributes": { "weight": 2 } }, { "key": "4877", "source": "368", "target": "212", "attributes": { "weight": 2 } }, { "key": "26212", "source": "369", "target": "45", "attributes": { "weight": 1 } }, { "key": "10087", "source": "369", "target": "387", "attributes": { "weight": 1 } }, { "key": "10095", "source": "369", "target": "876", "attributes": { "weight": 1 } }, { "key": "10088", "source": "369", "target": "452", "attributes": { "weight": 2 } }, { "key": "1984", "source": "369", "target": "605", "attributes": { "weight": 4 } }, { "key": "10089", "source": "369", "target": "1662", "attributes": { "weight": 2 } }, { "key": "10091", "source": "369", "target": "109", "attributes": { "weight": 7 } }, { "key": "10084", "source": "369", "target": "103", "attributes": { "weight": 1 } }, { "key": "1059", "source": "369", "target": "370", "attributes": { "weight": 3 } }, { "key": "1058", "source": "369", "target": "368", "attributes": { "weight": 2 } }, { "key": "11869", "source": "369", "target": "468", "attributes": { "weight": 1 } }, { "key": "21680", "source": "369", "target": "1455", "attributes": { "weight": 1 } }, { "key": "34165", "source": "369", "target": "1233", "attributes": { "weight": 1 } }, { "key": "10099", "source": "369", "target": "1349", "attributes": { "weight": 2 } }, { "key": "14139", "source": "369", "target": "1383", "attributes": { "weight": 1 } }, { "key": "9755", "source": "369", "target": "396", "attributes": { "weight": 1 } }, { "key": "15774", "source": "369", "target": "195", "attributes": { "weight": 1 } }, { "key": "21679", "source": "369", "target": "1454", "attributes": { "weight": 1 } }, { "key": "25858", "source": "369", "target": "220", "attributes": { "weight": 1 } }, { "key": "10094", "source": "369", "target": "471", "attributes": { "weight": 3 } }, { "key": "7278", "source": "369", "target": "601", "attributes": { "weight": 5 } }, { "key": "10093", "source": "369", "target": "30", "attributes": { "weight": 3 } }, { "key": "21678", "source": "369", "target": "604", "attributes": { "weight": 1 } }, { "key": "10081", "source": "369", "target": "130", "attributes": { "weight": 1 } }, { "key": "26469", "source": "369", "target": "454", "attributes": { "weight": 1 } }, { "key": "1060", "source": "369", "target": "371", "attributes": { "weight": 3 } }, { "key": "8720", "source": "369", "target": "442", "attributes": { "weight": 2 } }, { "key": "10098", "source": "369", "target": "1675", "attributes": { "weight": 1 } }, { "key": "1061", "source": "369", "target": "372", "attributes": { "weight": 1 } }, { "key": "10080", "source": "369", "target": "603", "attributes": { "weight": 3 } }, { "key": "10090", "source": "369", "target": "108", "attributes": { "weight": 6 } }, { "key": "10096", "source": "369", "target": "879", "attributes": { "weight": 1 } }, { "key": "10092", "source": "369", "target": "1663", "attributes": { "weight": 1 } }, { "key": "10085", "source": "369", "target": "778", "attributes": { "weight": 2 } }, { "key": "21681", "source": "369", "target": "607", "attributes": { "weight": 1 } }, { "key": "10083", "source": "369", "target": "871", "attributes": { "weight": 1 } }, { "key": "14030", "source": "369", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10086", "source": "369", "target": "872", "attributes": { "weight": 1 } }, { "key": "10097", "source": "369", "target": "882", "attributes": { "weight": 1 } }, { "key": "10082", "source": "369", "target": "43", "attributes": { "weight": 2 } }, { "key": "5188", "source": "370", "target": "387", "attributes": { "weight": 5 } }, { "key": "15889", "source": "370", "target": "305", "attributes": { "weight": 2 } }, { "key": "11547", "source": "370", "target": "1140", "attributes": { "weight": 1 } }, { "key": "5233", "source": "370", "target": "57", "attributes": { "weight": 4 } }, { "key": "16824", "source": "370", "target": "59", "attributes": { "weight": 1 } }, { "key": "5197", "source": "370", "target": "109", "attributes": { "weight": 5 } }, { "key": "5200", "source": "370", "target": "168", "attributes": { "weight": 2 } }, { "key": "5176", "source": "370", "target": "1036", "attributes": { "weight": 2 } }, { "key": "11565", "source": "370", "target": "780", "attributes": { "weight": 3 } }, { "key": "11572", "source": "370", "target": "212", "attributes": { "weight": 1 } }, { "key": "11581", "source": "370", "target": "215", "attributes": { "weight": 1 } }, { "key": "11583", "source": "370", "target": "254", "attributes": { "weight": 2 } }, { "key": "11573", "source": "370", "target": "1291", "attributes": { "weight": 2 } }, { "key": "11590", "source": "370", "target": "1347", "attributes": { "weight": 1 } }, { "key": "5193", "source": "370", "target": "449", "attributes": { "weight": 9 } }, { "key": "11584", "source": "370", "target": "1326", "attributes": { "weight": 1 } }, { "key": "5185", "source": "370", "target": "1182", "attributes": { "weight": 3 } }, { "key": "5203", "source": "370", "target": "338", "attributes": { "weight": 8 } }, { "key": "10689", "source": "370", "target": "634", "attributes": { "weight": 1 } }, { "key": "12814", "source": "370", "target": "1220", "attributes": { "weight": 2 } }, { "key": "8788", "source": "370", "target": "454", "attributes": { "weight": 8 } }, { "key": "11159", "source": "370", "target": "494", "attributes": { "weight": 2 } }, { "key": "11588", "source": "370", "target": "1334", "attributes": { "weight": 2 } }, { "key": "11555", "source": "370", "target": "1180", "attributes": { "weight": 2 } }, { "key": "10497", "source": "370", "target": "225", "attributes": { "weight": 1 } }, { "key": "10687", "source": "370", "target": "782", "attributes": { "weight": 2 } }, { "key": "11560", "source": "370", "target": "1214", "attributes": { "weight": 2 } }, { "key": "11576", "source": "370", "target": "785", "attributes": { "weight": 2 } }, { "key": "5178", "source": "370", "target": "130", "attributes": { "weight": 9 } }, { "key": "5191", "source": "370", "target": "368", "attributes": { "weight": 3 } }, { "key": "5226", "source": "370", "target": "963", "attributes": { "weight": 3 } }, { "key": "5223", "source": "370", "target": "1323", "attributes": { "weight": 7 } }, { "key": "5224", "source": "370", "target": "407", "attributes": { "weight": 3 } }, { "key": "11553", "source": "370", "target": "1172", "attributes": { "weight": 2 } }, { "key": "27265", "source": "370", "target": "52", "attributes": { "weight": 2 } }, { "key": "5207", "source": "370", "target": "471", "attributes": { "weight": 9 } }, { "key": "15887", "source": "370", "target": "925", "attributes": { "weight": 2 } }, { "key": "11564", "source": "370", "target": "638", "attributes": { "weight": 4 } }, { "key": "35745", "source": "370", "target": "136", "attributes": { "weight": 1 } }, { "key": "8786", "source": "370", "target": "195", "attributes": { "weight": 7 } }, { "key": "5212", "source": "370", "target": "580", "attributes": { "weight": 5 } }, { "key": "5230", "source": "370", "target": "154", "attributes": { "weight": 6 } }, { "key": "11567", "source": "370", "target": "544", "attributes": { "weight": 2 } }, { "key": "26594", "source": "370", "target": "189", "attributes": { "weight": 2 } }, { "key": "11548", "source": "370", "target": "236", "attributes": { "weight": 2 } }, { "key": "5198", "source": "370", "target": "45", "attributes": { "weight": 2 } }, { "key": "5220", "source": "370", "target": "1315", "attributes": { "weight": 6 } }, { "key": "11589", "source": "370", "target": "928", "attributes": { "weight": 2 } }, { "key": "5196", "source": "370", "target": "108", "attributes": { "weight": 3 } }, { "key": "5218", "source": "370", "target": "1296", "attributes": { "weight": 3 } }, { "key": "27867", "source": "370", "target": "339", "attributes": { "weight": 2 } }, { "key": "11552", "source": "370", "target": "1171", "attributes": { "weight": 1 } }, { "key": "5217", "source": "370", "target": "1294", "attributes": { "weight": 4 } }, { "key": "15881", "source": "370", "target": "35", "attributes": { "weight": 1 } }, { "key": "5174", "source": "370", "target": "889", "attributes": { "weight": 3 } }, { "key": "10686", "source": "370", "target": "43", "attributes": { "weight": 4 } }, { "key": "5186", "source": "370", "target": "779", "attributes": { "weight": 4 } }, { "key": "11577", "source": "370", "target": "1791", "attributes": { "weight": 1 } }, { "key": "5219", "source": "370", "target": "1305", "attributes": { "weight": 4 } }, { "key": "11566", "source": "370", "target": "1251", "attributes": { "weight": 1 } }, { "key": "5187", "source": "370", "target": "1184", "attributes": { "weight": 3 } }, { "key": "15884", "source": "370", "target": "913", "attributes": { "weight": 1 } }, { "key": "23196", "source": "370", "target": "1227", "attributes": { "weight": 1 } }, { "key": "31953", "source": "370", "target": "1060", "attributes": { "weight": 1 } }, { "key": "11557", "source": "370", "target": "1197", "attributes": { "weight": 2 } }, { "key": "5214", "source": "370", "target": "1289", "attributes": { "weight": 3 } }, { "key": "16825", "source": "370", "target": "434", "attributes": { "weight": 1 } }, { "key": "5216", "source": "370", "target": "783", "attributes": { "weight": 4 } }, { "key": "34989", "source": "370", "target": "352", "attributes": { "weight": 1 } }, { "key": "15891", "source": "370", "target": "405", "attributes": { "weight": 1 } }, { "key": "13190", "source": "370", "target": "304", "attributes": { "weight": 3 } }, { "key": "11549", "source": "370", "target": "1381", "attributes": { "weight": 1 } }, { "key": "15893", "source": "370", "target": "124", "attributes": { "weight": 1 } }, { "key": "5189", "source": "370", "target": "912", "attributes": { "weight": 3 } }, { "key": "29033", "source": "370", "target": "495", "attributes": { "weight": 2 } }, { "key": "11578", "source": "370", "target": "372", "attributes": { "weight": 2 } }, { "key": "5190", "source": "370", "target": "1196", "attributes": { "weight": 3 } }, { "key": "5232", "source": "370", "target": "1063", "attributes": { "weight": 7 } }, { "key": "11582", "source": "370", "target": "1316", "attributes": { "weight": 2 } }, { "key": "11551", "source": "370", "target": "1789", "attributes": { "weight": 1 } }, { "key": "11559", "source": "370", "target": "199", "attributes": { "weight": 2 } }, { "key": "11574", "source": "370", "target": "990", "attributes": { "weight": 2 } }, { "key": "1105", "source": "370", "target": "396", "attributes": { "weight": 4 } }, { "key": "11575", "source": "370", "target": "1298", "attributes": { "weight": 1 } }, { "key": "26909", "source": "370", "target": "497", "attributes": { "weight": 1 } }, { "key": "16826", "source": "370", "target": "674", "attributes": { "weight": 1 } }, { "key": "16827", "source": "370", "target": "70", "attributes": { "weight": 1 } }, { "key": "5183", "source": "370", "target": "778", "attributes": { "weight": 1 } }, { "key": "5177", "source": "370", "target": "1152", "attributes": { "weight": 4 } }, { "key": "5182", "source": "370", "target": "1174", "attributes": { "weight": 3 } }, { "key": "11571", "source": "370", "target": "1284", "attributes": { "weight": 1 } }, { "key": "15892", "source": "370", "target": "1321", "attributes": { "weight": 1 } }, { "key": "5195", "source": "370", "target": "452", "attributes": { "weight": 7 } }, { "key": "15890", "source": "370", "target": "1307", "attributes": { "weight": 1 } }, { "key": "17251", "source": "370", "target": "2111", "attributes": { "weight": 1 } }, { "key": "8787", "source": "370", "target": "223", "attributes": { "weight": 6 } }, { "key": "5202", "source": "370", "target": "337", "attributes": { "weight": 8 } }, { "key": "11568", "source": "370", "target": "781", "attributes": { "weight": 1 } }, { "key": "5192", "source": "370", "target": "1046", "attributes": { "weight": 2 } }, { "key": "11587", "source": "370", "target": "1333", "attributes": { "weight": 1 } }, { "key": "5213", "source": "370", "target": "123", "attributes": { "weight": 5 } }, { "key": "23757", "source": "370", "target": "695", "attributes": { "weight": 1 } }, { "key": "5229", "source": "370", "target": "193", "attributes": { "weight": 2 } }, { "key": "11569", "source": "370", "target": "1262", "attributes": { "weight": 3 } }, { "key": "15895", "source": "370", "target": "340", "attributes": { "weight": 2 } }, { "key": "5175", "source": "370", "target": "248", "attributes": { "weight": 2 } }, { "key": "15885", "source": "370", "target": "391", "attributes": { "weight": 1 } }, { "key": "5211", "source": "370", "target": "473", "attributes": { "weight": 10 } }, { "key": "5208", "source": "370", "target": "472", "attributes": { "weight": 5 } }, { "key": "5181", "source": "370", "target": "938", "attributes": { "weight": 4 } }, { "key": "9488", "source": "370", "target": "419", "attributes": { "weight": 1 } }, { "key": "5204", "source": "370", "target": "1363", "attributes": { "weight": 4 } }, { "key": "15882", "source": "370", "target": "220", "attributes": { "weight": 2 } }, { "key": "11561", "source": "370", "target": "1228", "attributes": { "weight": 1 } }, { "key": "12813", "source": "370", "target": "1892", "attributes": { "weight": 1 } }, { "key": "15888", "source": "370", "target": "1090", "attributes": { "weight": 1 } }, { "key": "5215", "source": "370", "target": "1125", "attributes": { "weight": 3 } }, { "key": "18451", "source": "370", "target": "1738", "attributes": { "weight": 1 } }, { "key": "11562", "source": "370", "target": "1232", "attributes": { "weight": 3 } }, { "key": "5231", "source": "370", "target": "377", "attributes": { "weight": 3 } }, { "key": "5227", "source": "370", "target": "257", "attributes": { "weight": 4 } }, { "key": "5225", "source": "370", "target": "961", "attributes": { "weight": 5 } }, { "key": "11579", "source": "370", "target": "1792", "attributes": { "weight": 1 } }, { "key": "15886", "source": "370", "target": "278", "attributes": { "weight": 4 } }, { "key": "3330", "source": "370", "target": "926", "attributes": { "weight": 11 } }, { "key": "14260", "source": "370", "target": "333", "attributes": { "weight": 1 } }, { "key": "11563", "source": "370", "target": "205", "attributes": { "weight": 2 } }, { "key": "11554", "source": "370", "target": "1173", "attributes": { "weight": 1 } }, { "key": "5228", "source": "370", "target": "218", "attributes": { "weight": 4 } }, { "key": "11556", "source": "370", "target": "1718", "attributes": { "weight": 1 } }, { "key": "11558", "source": "370", "target": "358", "attributes": { "weight": 2 } }, { "key": "15894", "source": "370", "target": "595", "attributes": { "weight": 2 } }, { "key": "5210", "source": "370", "target": "371", "attributes": { "weight": 3 } }, { "key": "5180", "source": "370", "target": "1165", "attributes": { "weight": 3 } }, { "key": "11570", "source": "370", "target": "1281", "attributes": { "weight": 2 } }, { "key": "5201", "source": "370", "target": "1236", "attributes": { "weight": 3 } }, { "key": "1062", "source": "370", "target": "369", "attributes": { "weight": 3 } }, { "key": "12585", "source": "370", "target": "180", "attributes": { "weight": 1 } }, { "key": "11550", "source": "370", "target": "1158", "attributes": { "weight": 1 } }, { "key": "29654", "source": "370", "target": "1253", "attributes": { "weight": 1 } }, { "key": "5194", "source": "370", "target": "183", "attributes": { "weight": 2 } }, { "key": "11580", "source": "370", "target": "1309", "attributes": { "weight": 2 } }, { "key": "32529", "source": "370", "target": "791", "attributes": { "weight": 2 } }, { "key": "8789", "source": "370", "target": "474", "attributes": { "weight": 2 } }, { "key": "11586", "source": "370", "target": "1331", "attributes": { "weight": 1 } }, { "key": "13943", "source": "370", "target": "170", "attributes": { "weight": 1 } }, { "key": "31952", "source": "370", "target": "359", "attributes": { "weight": 1 } }, { "key": "14041", "source": "370", "target": "1031", "attributes": { "weight": 2 } }, { "key": "29858", "source": "370", "target": "1024", "attributes": { "weight": 1 } }, { "key": "5184", "source": "370", "target": "442", "attributes": { "weight": 11 } }, { "key": "5179", "source": "370", "target": "1155", "attributes": { "weight": 4 } }, { "key": "15883", "source": "370", "target": "39", "attributes": { "weight": 1 } }, { "key": "5221", "source": "370", "target": "601", "attributes": { "weight": 2 } }, { "key": "5199", "source": "370", "target": "457", "attributes": { "weight": 4 } }, { "key": "12815", "source": "370", "target": "1814", "attributes": { "weight": 1 } }, { "key": "11585", "source": "370", "target": "1329", "attributes": { "weight": 2 } }, { "key": "26128", "source": "370", "target": "1056", "attributes": { "weight": 1 } }, { "key": "5205", "source": "370", "target": "468", "attributes": { "weight": 12 } }, { "key": "5222", "source": "370", "target": "1322", "attributes": { "weight": 5 } }, { "key": "10688", "source": "370", "target": "1314", "attributes": { "weight": 3 } }, { "key": "5209", "source": "370", "target": "208", "attributes": { "weight": 4 } }, { "key": "5206", "source": "370", "target": "30", "attributes": { "weight": 3 } }, { "key": "5635", "source": "371", "target": "208", "attributes": { "weight": 2 } }, { "key": "5640", "source": "371", "target": "925", "attributes": { "weight": 3 } }, { "key": "5653", "source": "371", "target": "1298", "attributes": { "weight": 2 } }, { "key": "35001", "source": "371", "target": "352", "attributes": { "weight": 1 } }, { "key": "2687", "source": "371", "target": "236", "attributes": { "weight": 5 } }, { "key": "5577", "source": "371", "target": "1156", "attributes": { "weight": 2 } }, { "key": "5578", "source": "371", "target": "1158", "attributes": { "weight": 2 } }, { "key": "5683", "source": "371", "target": "48", "attributes": { "weight": 2 } }, { "key": "5638", "source": "371", "target": "545", "attributes": { "weight": 3 } }, { "key": "32918", "source": "371", "target": "470", "attributes": { "weight": 2 } }, { "key": "5620", "source": "371", "target": "205", "attributes": { "weight": 2 } }, { "key": "5624", "source": "371", "target": "338", "attributes": { "weight": 4 } }, { "key": "5593", "source": "371", "target": "1186", "attributes": { "weight": 3 } }, { "key": "5682", "source": "371", "target": "193", "attributes": { "weight": 2 } }, { "key": "5606", "source": "371", "target": "251", "attributes": { "weight": 2 } }, { "key": "5680", "source": "371", "target": "218", "attributes": { "weight": 2 } }, { "key": "5646", "source": "371", "target": "1289", "attributes": { "weight": 2 } }, { "key": "29012", "source": "371", "target": "220", "attributes": { "weight": 1 } }, { "key": "5625", "source": "371", "target": "921", "attributes": { "weight": 3 } }, { "key": "5595", "source": "371", "target": "912", "attributes": { "weight": 2 } }, { "key": "16022", "source": "371", "target": "595", "attributes": { "weight": 2 } }, { "key": "5675", "source": "371", "target": "963", "attributes": { "weight": 3 } }, { "key": "5576", "source": "371", "target": "1155", "attributes": { "weight": 2 } }, { "key": "5661", "source": "371", "target": "1314", "attributes": { "weight": 4 } }, { "key": "5599", "source": "371", "target": "1197", "attributes": { "weight": 3 } }, { "key": "5574", "source": "371", "target": "195", "attributes": { "weight": 12 } }, { "key": "5592", "source": "371", "target": "1184", "attributes": { "weight": 2 } }, { "key": "5585", "source": "371", "target": "631", "attributes": { "weight": 2 } }, { "key": "5573", "source": "371", "target": "603", "attributes": { "weight": 2 } }, { "key": "5681", "source": "371", "target": "1342", "attributes": { "weight": 2 } }, { "key": "5581", "source": "371", "target": "43", "attributes": { "weight": 5 } }, { "key": "5641", "source": "371", "target": "926", "attributes": { "weight": 5 } }, { "key": "5607", "source": "371", "target": "200", "attributes": { "weight": 2 } }, { "key": "5584", "source": "371", "target": "1174", "attributes": { "weight": 3 } }, { "key": "5617", "source": "371", "target": "1232", "attributes": { "weight": 3 } }, { "key": "5658", "source": "371", "target": "1306", "attributes": { "weight": 3 } }, { "key": "5650", "source": "371", "target": "1296", "attributes": { "weight": 2 } }, { "key": "5654", "source": "371", "target": "785", "attributes": { "weight": 3 } }, { "key": "11204", "source": "371", "target": "452", "attributes": { "weight": 2 } }, { "key": "5674", "source": "371", "target": "124", "attributes": { "weight": 2 } }, { "key": "5579", "source": "371", "target": "1162", "attributes": { "weight": 2 } }, { "key": "5633", "source": "371", "target": "240", "attributes": { "weight": 1 } }, { "key": "5603", "source": "371", "target": "197", "attributes": { "weight": 2 } }, { "key": "5614", "source": "371", "target": "917", "attributes": { "weight": 2 } }, { "key": "5644", "source": "371", "target": "1281", "attributes": { "weight": 3 } }, { "key": "5613", "source": "371", "target": "109", "attributes": { "weight": 3 } }, { "key": "5612", "source": "371", "target": "204", "attributes": { "weight": 2 } }, { "key": "5627", "source": "371", "target": "30", "attributes": { "weight": 5 } }, { "key": "5589", "source": "371", "target": "1182", "attributes": { "weight": 2 } }, { "key": "5628", "source": "371", "target": "544", "attributes": { "weight": 2 } }, { "key": "5621", "source": "371", "target": "370", "attributes": { "weight": 3 } }, { "key": "5657", "source": "371", "target": "1305", "attributes": { "weight": 2 } }, { "key": "5673", "source": "371", "target": "1334", "attributes": { "weight": 2 } }, { "key": "5583", "source": "371", "target": "103", "attributes": { "weight": 3 } }, { "key": "5636", "source": "371", "target": "782", "attributes": { "weight": 5 } }, { "key": "5652", "source": "371", "target": "214", "attributes": { "weight": 2 } }, { "key": "5588", "source": "371", "target": "1180", "attributes": { "weight": 2 } }, { "key": "24892", "source": "371", "target": "1437", "attributes": { "weight": 1 } }, { "key": "5656", "source": "371", "target": "1031", "attributes": { "weight": 4 } }, { "key": "5669", "source": "371", "target": "407", "attributes": { "weight": 2 } }, { "key": "5645", "source": "371", "target": "123", "attributes": { "weight": 3 } }, { "key": "5609", "source": "371", "target": "201", "attributes": { "weight": 2 } }, { "key": "5662", "source": "371", "target": "1315", "attributes": { "weight": 2 } }, { "key": "5631", "source": "371", "target": "471", "attributes": { "weight": 5 } }, { "key": "5672", "source": "371", "target": "116", "attributes": { "weight": 3 } }, { "key": "5623", "source": "371", "target": "337", "attributes": { "weight": 2 } }, { "key": "5610", "source": "371", "target": "108", "attributes": { "weight": 3 } }, { "key": "5660", "source": "371", "target": "633", "attributes": { "weight": 2 } }, { "key": "5618", "source": "371", "target": "1233", "attributes": { "weight": 3 } }, { "key": "9850", "source": "371", "target": "397", "attributes": { "weight": 2 } }, { "key": "5622", "source": "371", "target": "780", "attributes": { "weight": 2 } }, { "key": "5642", "source": "371", "target": "605", "attributes": { "weight": 2 } }, { "key": "5572", "source": "371", "target": "248", "attributes": { "weight": 2 } }, { "key": "5600", "source": "371", "target": "368", "attributes": { "weight": 2 } }, { "key": "5667", "source": "371", "target": "1322", "attributes": { "weight": 2 } }, { "key": "5637", "source": "371", "target": "924", "attributes": { "weight": 2 } }, { "key": "27278", "source": "371", "target": "57", "attributes": { "weight": 2 } }, { "key": "5647", "source": "371", "target": "783", "attributes": { "weight": 4 } }, { "key": "5685", "source": "371", "target": "154", "attributes": { "weight": 3 } }, { "key": "5655", "source": "371", "target": "252", "attributes": { "weight": 2 } }, { "key": "1063", "source": "371", "target": "369", "attributes": { "weight": 3 } }, { "key": "5677", "source": "371", "target": "257", "attributes": { "weight": 2 } }, { "key": "37041", "source": "371", "target": "3344", "attributes": { "weight": 1 } }, { "key": "1064", "source": "371", "target": "372", "attributes": { "weight": 4 } }, { "key": "5686", "source": "371", "target": "1063", "attributes": { "weight": 4 } }, { "key": "5634", "source": "371", "target": "1262", "attributes": { "weight": 2 } }, { "key": "5679", "source": "371", "target": "217", "attributes": { "weight": 2 } }, { "key": "5615", "source": "371", "target": "391", "attributes": { "weight": 5 } }, { "key": "5670", "source": "371", "target": "961", "attributes": { "weight": 2 } }, { "key": "5678", "source": "371", "target": "635", "attributes": { "weight": 2 } }, { "key": "2688", "source": "371", "target": "238", "attributes": { "weight": 4 } }, { "key": "5665", "source": "371", "target": "1321", "attributes": { "weight": 2 } }, { "key": "30001", "source": "371", "target": "1892", "attributes": { "weight": 1 } }, { "key": "5602", "source": "371", "target": "183", "attributes": { "weight": 2 } }, { "key": "5575", "source": "371", "target": "130", "attributes": { "weight": 5 } }, { "key": "10727", "source": "371", "target": "1718", "attributes": { "weight": 3 } }, { "key": "5668", "source": "371", "target": "1323", "attributes": { "weight": 3 } }, { "key": "5587", "source": "371", "target": "442", "attributes": { "weight": 8 } }, { "key": "10726", "source": "371", "target": "1716", "attributes": { "weight": 3 } }, { "key": "5604", "source": "371", "target": "1047", "attributes": { "weight": 3 } }, { "key": "5601", "source": "371", "target": "913", "attributes": { "weight": 3 } }, { "key": "5598", "source": "371", "target": "1196", "attributes": { "weight": 2 } }, { "key": "1150", "source": "371", "target": "396", "attributes": { "weight": 7 } }, { "key": "5676", "source": "371", "target": "964", "attributes": { "weight": 2 } }, { "key": "5626", "source": "371", "target": "468", "attributes": { "weight": 8 } }, { "key": "5659", "source": "371", "target": "1307", "attributes": { "weight": 2 } }, { "key": "3653", "source": "371", "target": "1027", "attributes": { "weight": 1 } }, { "key": "5663", "source": "371", "target": "634", "attributes": { "weight": 4 } }, { "key": "5684", "source": "371", "target": "1347", "attributes": { "weight": 2 } }, { "key": "5651", "source": "371", "target": "990", "attributes": { "weight": 2 } }, { "key": "5643", "source": "371", "target": "473", "attributes": { "weight": 5 } }, { "key": "5590", "source": "371", "target": "44", "attributes": { "weight": 5 } }, { "key": "5619", "source": "371", "target": "1236", "attributes": { "weight": 2 } }, { "key": "5616", "source": "371", "target": "45", "attributes": { "weight": 2 } }, { "key": "5649", "source": "371", "target": "1294", "attributes": { "weight": 2 } }, { "key": "5586", "source": "371", "target": "778", "attributes": { "weight": 3 } }, { "key": "5639", "source": "371", "target": "210", "attributes": { "weight": 2 } }, { "key": "5664", "source": "371", "target": "601", "attributes": { "weight": 3 } }, { "key": "26163", "source": "371", "target": "2627", "attributes": { "weight": 1 } }, { "key": "26629", "source": "371", "target": "454", "attributes": { "weight": 2 } }, { "key": "5605", "source": "371", "target": "198", "attributes": { "weight": 2 } }, { "key": "5611", "source": "371", "target": "1220", "attributes": { "weight": 2 } }, { "key": "5608", "source": "371", "target": "1214", "attributes": { "weight": 3 } }, { "key": "5666", "source": "371", "target": "254", "attributes": { "weight": 4 } }, { "key": "5591", "source": "371", "target": "779", "attributes": { "weight": 2 } }, { "key": "5582", "source": "371", "target": "938", "attributes": { "weight": 2 } }, { "key": "5580", "source": "371", "target": "1165", "attributes": { "weight": 2 } }, { "key": "5648", "source": "371", "target": "1090", "attributes": { "weight": 2 } }, { "key": "5597", "source": "371", "target": "389", "attributes": { "weight": 2 } }, { "key": "5629", "source": "371", "target": "1099", "attributes": { "weight": 2 } }, { "key": "5630", "source": "371", "target": "781", "attributes": { "weight": 2 } }, { "key": "5596", "source": "371", "target": "604", "attributes": { "weight": 2 } }, { "key": "5594", "source": "371", "target": "387", "attributes": { "weight": 3 } }, { "key": "5671", "source": "371", "target": "1328", "attributes": { "weight": 3 } }, { "key": "5632", "source": "371", "target": "1261", "attributes": { "weight": 3 } }, { "key": "6195", "source": "372", "target": "1090", "attributes": { "weight": 3 } }, { "key": "16203", "source": "372", "target": "913", "attributes": { "weight": 1 } }, { "key": "7384", "source": "372", "target": "1063", "attributes": { "weight": 3 } }, { "key": "7010", "source": "372", "target": "183", "attributes": { "weight": 1 } }, { "key": "32980", "source": "372", "target": "1350", "attributes": { "weight": 2 } }, { "key": "32834", "source": "372", "target": "135", "attributes": { "weight": 1 } }, { "key": "18272", "source": "372", "target": "1182", "attributes": { "weight": 1 } }, { "key": "34668", "source": "372", "target": "1232", "attributes": { "weight": 1 } }, { "key": "32100", "source": "372", "target": "925", "attributes": { "weight": 1 } }, { "key": "31134", "source": "372", "target": "228", "attributes": { "weight": 1 } }, { "key": "34667", "source": "372", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16204", "source": "372", "target": "1296", "attributes": { "weight": 2 } }, { "key": "1065", "source": "372", "target": "369", "attributes": { "weight": 1 } }, { "key": "26248", "source": "372", "target": "30", "attributes": { "weight": 1 } }, { "key": "12032", "source": "372", "target": "248", "attributes": { "weight": 2 } }, { "key": "31136", "source": "372", "target": "233", "attributes": { "weight": 1 } }, { "key": "11662", "source": "372", "target": "938", "attributes": { "weight": 1 } }, { "key": "35021", "source": "372", "target": "8", "attributes": { "weight": 1 } }, { "key": "31135", "source": "372", "target": "1088", "attributes": { "weight": 1 } }, { "key": "35020", "source": "372", "target": "3", "attributes": { "weight": 1 } }, { "key": "27294", "source": "372", "target": "57", "attributes": { "weight": 1 } }, { "key": "9031", "source": "372", "target": "254", "attributes": { "weight": 2 } }, { "key": "7011", "source": "372", "target": "189", "attributes": { "weight": 2 } }, { "key": "11664", "source": "372", "target": "370", "attributes": { "weight": 2 } }, { "key": "11663", "source": "372", "target": "199", "attributes": { "weight": 2 } }, { "key": "32981", "source": "372", "target": "149", "attributes": { "weight": 1 } }, { "key": "18903", "source": "372", "target": "1174", "attributes": { "weight": 1 } }, { "key": "29014", "source": "372", "target": "220", "attributes": { "weight": 1 } }, { "key": "10740", "source": "372", "target": "43", "attributes": { "weight": 2 } }, { "key": "29015", "source": "372", "target": "1262", "attributes": { "weight": 1 } }, { "key": "14117", "source": "372", "target": "1031", "attributes": { "weight": 1 } }, { "key": "16202", "source": "372", "target": "912", "attributes": { "weight": 1 } }, { "key": "18274", "source": "372", "target": "124", "attributes": { "weight": 1 } }, { "key": "26249", "source": "372", "target": "601", "attributes": { "weight": 1 } }, { "key": "15354", "source": "372", "target": "454", "attributes": { "weight": 1 } }, { "key": "18904", "source": "372", "target": "1552", "attributes": { "weight": 1 } }, { "key": "17091", "source": "372", "target": "471", "attributes": { "weight": 3 } }, { "key": "7383", "source": "372", "target": "154", "attributes": { "weight": 3 } }, { "key": "31691", "source": "372", "target": "595", "attributes": { "weight": 2 } }, { "key": "16201", "source": "372", "target": "195", "attributes": { "weight": 3 } }, { "key": "6194", "source": "372", "target": "779", "attributes": { "weight": 2 } }, { "key": "9030", "source": "372", "target": "442", "attributes": { "weight": 3 } }, { "key": "18273", "source": "372", "target": "123", "attributes": { "weight": 2 } }, { "key": "1066", "source": "372", "target": "371", "attributes": { "weight": 4 } }, { "key": "11665", "source": "372", "target": "961", "attributes": { "weight": 2 } }, { "key": "21775", "source": "372", "target": "778", "attributes": { "weight": 1 } }, { "key": "36775", "source": "373", "target": "387", "attributes": { "weight": 1 } }, { "key": "36779", "source": "373", "target": "374", "attributes": { "weight": 1 } }, { "key": "6508", "source": "373", "target": "1294", "attributes": { "weight": 3 } }, { "key": "7435", "source": "373", "target": "1197", "attributes": { "weight": 2 } }, { "key": "1067", "source": "373", "target": "376", "attributes": { "weight": 1 } }, { "key": "7448", "source": "373", "target": "1417", "attributes": { "weight": 2 } }, { "key": "3440", "source": "373", "target": "377", "attributes": { "weight": 3 } }, { "key": "7444", "source": "373", "target": "1409", "attributes": { "weight": 2 } }, { "key": "36776", "source": "373", "target": "1300", "attributes": { "weight": 1 } }, { "key": "6507", "source": "373", "target": "338", "attributes": { "weight": 3 } }, { "key": "3437", "source": "373", "target": "972", "attributes": { "weight": 1 } }, { "key": "7447", "source": "373", "target": "625", "attributes": { "weight": 3 } }, { "key": "36782", "source": "373", "target": "851", "attributes": { "weight": 1 } }, { "key": "6506", "source": "373", "target": "337", "attributes": { "weight": 2 } }, { "key": "7446", "source": "373", "target": "333", "attributes": { "weight": 3 } }, { "key": "24703", "source": "373", "target": "704", "attributes": { "weight": 1 } }, { "key": "16398", "source": "373", "target": "925", "attributes": { "weight": 1 } }, { "key": "7445", "source": "373", "target": "154", "attributes": { "weight": 2 } }, { "key": "24704", "source": "373", "target": "2515", "attributes": { "weight": 1 } }, { "key": "7437", "source": "373", "target": "1233", "attributes": { "weight": 2 } }, { "key": "36780", "source": "373", "target": "848", "attributes": { "weight": 1 } }, { "key": "7440", "source": "373", "target": "1323", "attributes": { "weight": 2 } }, { "key": "7438", "source": "373", "target": "468", "attributes": { "weight": 2 } }, { "key": "18482", "source": "373", "target": "1738", "attributes": { "weight": 1 } }, { "key": "3439", "source": "373", "target": "975", "attributes": { "weight": 1 } }, { "key": "36781", "source": "373", "target": "3316", "attributes": { "weight": 1 } }, { "key": "36777", "source": "373", "target": "403", "attributes": { "weight": 1 } }, { "key": "7443", "source": "373", "target": "1407", "attributes": { "weight": 2 } }, { "key": "7439", "source": "373", "target": "123", "attributes": { "weight": 2 } }, { "key": "7449", "source": "373", "target": "1063", "attributes": { "weight": 2 } }, { "key": "10376", "source": "373", "target": "1322", "attributes": { "weight": 1 } }, { "key": "36778", "source": "373", "target": "3315", "attributes": { "weight": 1 } }, { "key": "2009", "source": "373", "target": "378", "attributes": { "weight": 5 } }, { "key": "7442", "source": "373", "target": "375", "attributes": { "weight": 2 } }, { "key": "7441", "source": "373", "target": "1401", "attributes": { "weight": 4 } }, { "key": "7436", "source": "373", "target": "1047", "attributes": { "weight": 2 } }, { "key": "3438", "source": "373", "target": "973", "attributes": { "weight": 1 } }, { "key": "6505", "source": "373", "target": "368", "attributes": { "weight": 1 } }, { "key": "3444", "source": "374", "target": "976", "attributes": { "weight": 1 } }, { "key": "36793", "source": "374", "target": "373", "attributes": { "weight": 1 } }, { "key": "36794", "source": "374", "target": "851", "attributes": { "weight": 1 } }, { "key": "24707", "source": "374", "target": "1403", "attributes": { "weight": 1 } }, { "key": "36795", "source": "374", "target": "1063", "attributes": { "weight": 1 } }, { "key": "7474", "source": "374", "target": "338", "attributes": { "weight": 2 } }, { "key": "2983", "source": "374", "target": "850", "attributes": { "weight": 1 } }, { "key": "1069", "source": "374", "target": "376", "attributes": { "weight": 1 } }, { "key": "10378", "source": "374", "target": "1322", "attributes": { "weight": 1 } }, { "key": "7475", "source": "374", "target": "377", "attributes": { "weight": 2 } }, { "key": "1068", "source": "374", "target": "333", "attributes": { "weight": 3 } }, { "key": "7490", "source": "375", "target": "1350", "attributes": { "weight": 3 } }, { "key": "7484", "source": "375", "target": "1232", "attributes": { "weight": 2 } }, { "key": "1070", "source": "375", "target": "378", "attributes": { "weight": 1 } }, { "key": "7491", "source": "375", "target": "149", "attributes": { "weight": 1 } }, { "key": "7498", "source": "375", "target": "1424", "attributes": { "weight": 2 } }, { "key": "7493", "source": "375", "target": "154", "attributes": { "weight": 1 } }, { "key": "2027", "source": "375", "target": "615", "attributes": { "weight": 3 } }, { "key": "7483", "source": "375", "target": "454", "attributes": { "weight": 2 } }, { "key": "6512", "source": "375", "target": "779", "attributes": { "weight": 2 } }, { "key": "34847", "source": "375", "target": "1047", "attributes": { "weight": 1 } }, { "key": "7485", "source": "375", "target": "921", "attributes": { "weight": 2 } }, { "key": "7486", "source": "375", "target": "468", "attributes": { "weight": 2 } }, { "key": "7489", "source": "375", "target": "1397", "attributes": { "weight": 1 } }, { "key": "7496", "source": "375", "target": "1419", "attributes": { "weight": 1 } }, { "key": "7487", "source": "375", "target": "123", "attributes": { "weight": 2 } }, { "key": "7492", "source": "375", "target": "1406", "attributes": { "weight": 2 } }, { "key": "7481", "source": "375", "target": "938", "attributes": { "weight": 2 } }, { "key": "7488", "source": "375", "target": "373", "attributes": { "weight": 2 } }, { "key": "16400", "source": "375", "target": "913", "attributes": { "weight": 1 } }, { "key": "7482", "source": "375", "target": "1196", "attributes": { "weight": 1 } }, { "key": "7494", "source": "375", "target": "333", "attributes": { "weight": 1 } }, { "key": "7497", "source": "375", "target": "377", "attributes": { "weight": 2 } }, { "key": "7495", "source": "375", "target": "625", "attributes": { "weight": 2 } }, { "key": "7499", "source": "375", "target": "1063", "attributes": { "weight": 3 } }, { "key": "29540", "source": "375", "target": "1415", "attributes": { "weight": 1 } }, { "key": "6513", "source": "375", "target": "1090", "attributes": { "weight": 2 } }, { "key": "1074", "source": "376", "target": "333", "attributes": { "weight": 2 } }, { "key": "1073", "source": "376", "target": "374", "attributes": { "weight": 1 } }, { "key": "1076", "source": "376", "target": "378", "attributes": { "weight": 1 } }, { "key": "1075", "source": "376", "target": "377", "attributes": { "weight": 1 } }, { "key": "7668", "source": "377", "target": "154", "attributes": { "weight": 2 } }, { "key": "6540", "source": "377", "target": "468", "attributes": { "weight": 6 } }, { "key": "36822", "source": "377", "target": "975", "attributes": { "weight": 1 } }, { "key": "7656", "source": "377", "target": "1323", "attributes": { "weight": 3 } }, { "key": "36816", "source": "377", "target": "1394", "attributes": { "weight": 1 } }, { "key": "7661", "source": "377", "target": "374", "attributes": { "weight": 2 } }, { "key": "36818", "source": "377", "target": "1350", "attributes": { "weight": 1 } }, { "key": "16412", "source": "377", "target": "1329", "attributes": { "weight": 1 } }, { "key": "6542", "source": "377", "target": "1294", "attributes": { "weight": 3 } }, { "key": "7648", "source": "377", "target": "387", "attributes": { "weight": 2 } }, { "key": "7676", "source": "377", "target": "378", "attributes": { "weight": 1 } }, { "key": "33011", "source": "377", "target": "135", "attributes": { "weight": 1 } }, { "key": "3466", "source": "377", "target": "971", "attributes": { "weight": 1 } }, { "key": "3467", "source": "377", "target": "976", "attributes": { "weight": 2 } }, { "key": "7664", "source": "377", "target": "1403", "attributes": { "weight": 1 } }, { "key": "7654", "source": "377", "target": "1291", "attributes": { "weight": 2 } }, { "key": "6538", "source": "377", "target": "337", "attributes": { "weight": 4 } }, { "key": "7660", "source": "377", "target": "970", "attributes": { "weight": 2 } }, { "key": "7657", "source": "377", "target": "406", "attributes": { "weight": 2 } }, { "key": "7651", "source": "377", "target": "454", "attributes": { "weight": 3 } }, { "key": "16410", "source": "377", "target": "220", "attributes": { "weight": 3 } }, { "key": "6541", "source": "377", "target": "123", "attributes": { "weight": 5 } }, { "key": "7671", "source": "377", "target": "850", "attributes": { "weight": 1 } }, { "key": "6539", "source": "377", "target": "338", "attributes": { "weight": 4 } }, { "key": "7659", "source": "377", "target": "1395", "attributes": { "weight": 1 } }, { "key": "7662", "source": "377", "target": "1401", "attributes": { "weight": 2 } }, { "key": "33012", "source": "377", "target": "472", "attributes": { "weight": 1 } }, { "key": "7675", "source": "377", "target": "1063", "attributes": { "weight": 3 } }, { "key": "36823", "source": "377", "target": "1419", "attributes": { "weight": 1 } }, { "key": "6537", "source": "377", "target": "370", "attributes": { "weight": 3 } }, { "key": "36824", "source": "377", "target": "3316", "attributes": { "weight": 1 } }, { "key": "7669", "source": "377", "target": "333", "attributes": { "weight": 3 } }, { "key": "6543", "source": "377", "target": "1315", "attributes": { "weight": 2 } }, { "key": "7672", "source": "377", "target": "1417", "attributes": { "weight": 2 } }, { "key": "7663", "source": "377", "target": "375", "attributes": { "weight": 2 } }, { "key": "33010", "source": "377", "target": "1219", "attributes": { "weight": 1 } }, { "key": "7652", "source": "377", "target": "1233", "attributes": { "weight": 2 } }, { "key": "7653", "source": "377", "target": "580", "attributes": { "weight": 2 } }, { "key": "7649", "source": "377", "target": "1197", "attributes": { "weight": 2 } }, { "key": "36815", "source": "377", "target": "3314", "attributes": { "weight": 1 } }, { "key": "7674", "source": "377", "target": "851", "attributes": { "weight": 2 } }, { "key": "7650", "source": "377", "target": "1047", "attributes": { "weight": 1 } }, { "key": "7670", "source": "377", "target": "625", "attributes": { "weight": 2 } }, { "key": "7667", "source": "377", "target": "1409", "attributes": { "weight": 2 } }, { "key": "36819", "source": "377", "target": "1351", "attributes": { "weight": 1 } }, { "key": "36820", "source": "377", "target": "1404", "attributes": { "weight": 1 } }, { "key": "6536", "source": "377", "target": "368", "attributes": { "weight": 4 } }, { "key": "10379", "source": "377", "target": "1322", "attributes": { "weight": 1 } }, { "key": "7665", "source": "377", "target": "1405", "attributes": { "weight": 1 } }, { "key": "7673", "source": "377", "target": "1418", "attributes": { "weight": 1 } }, { "key": "16411", "source": "377", "target": "925", "attributes": { "weight": 1 } }, { "key": "36814", "source": "377", "target": "1300", "attributes": { "weight": 1 } }, { "key": "36817", "source": "377", "target": "3315", "attributes": { "weight": 1 } }, { "key": "36813", "source": "377", "target": "208", "attributes": { "weight": 1 } }, { "key": "7655", "source": "377", "target": "403", "attributes": { "weight": 2 } }, { "key": "1077", "source": "377", "target": "373", "attributes": { "weight": 6 } }, { "key": "7666", "source": "377", "target": "1407", "attributes": { "weight": 2 } }, { "key": "36821", "source": "377", "target": "848", "attributes": { "weight": 1 } }, { "key": "7658", "source": "377", "target": "1377", "attributes": { "weight": 1 } }, { "key": "3083", "source": "378", "target": "884", "attributes": { "weight": 1 } }, { "key": "2059", "source": "378", "target": "624", "attributes": { "weight": 2 } }, { "key": "3086", "source": "378", "target": "887", "attributes": { "weight": 1 } }, { "key": "7804", "source": "378", "target": "377", "attributes": { "weight": 1 } }, { "key": "3085", "source": "378", "target": "886", "attributes": { "weight": 1 } }, { "key": "24718", "source": "378", "target": "2515", "attributes": { "weight": 1 } }, { "key": "2450", "source": "378", "target": "704", "attributes": { "weight": 1 } }, { "key": "2056", "source": "378", "target": "373", "attributes": { "weight": 6 } }, { "key": "3084", "source": "378", "target": "885", "attributes": { "weight": 1 } }, { "key": "2449", "source": "378", "target": "703", "attributes": { "weight": 2 } }, { "key": "2057", "source": "378", "target": "617", "attributes": { "weight": 2 } }, { "key": "2055", "source": "378", "target": "610", "attributes": { "weight": 2 } }, { "key": "2054", "source": "378", "target": "609", "attributes": { "weight": 2 } }, { "key": "2060", "source": "378", "target": "628", "attributes": { "weight": 1 } }, { "key": "1079", "source": "378", "target": "376", "attributes": { "weight": 1 } }, { "key": "1078", "source": "378", "target": "375", "attributes": { "weight": 2 } }, { "key": "23716", "source": "378", "target": "2452", "attributes": { "weight": 1 } }, { "key": "2058", "source": "378", "target": "619", "attributes": { "weight": 2 } }, { "key": "1081", "source": "379", "target": "412", "attributes": { "weight": 2 } }, { "key": "1080", "source": "379", "target": "396", "attributes": { "weight": 3 } }, { "key": "33845", "source": "379", "target": "1233", "attributes": { "weight": 1 } }, { "key": "37126", "source": "379", "target": "411", "attributes": { "weight": 1 } }, { "key": "35391", "source": "379", "target": "399", "attributes": { "weight": 1 } }, { "key": "37128", "source": "380", "target": "338", "attributes": { "weight": 1 } }, { "key": "37129", "source": "380", "target": "411", "attributes": { "weight": 1 } }, { "key": "33851", "source": "380", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9712", "source": "380", "target": "399", "attributes": { "weight": 1 } }, { "key": "37127", "source": "380", "target": "387", "attributes": { "weight": 1 } }, { "key": "1082", "source": "380", "target": "396", "attributes": { "weight": 2 } }, { "key": "4271", "source": "380", "target": "368", "attributes": { "weight": 2 } }, { "key": "9722", "source": "381", "target": "390", "attributes": { "weight": 1 } }, { "key": "1084", "source": "381", "target": "396", "attributes": { "weight": 2 } }, { "key": "9723", "source": "381", "target": "393", "attributes": { "weight": 1 } }, { "key": "37132", "source": "381", "target": "411", "attributes": { "weight": 1 } }, { "key": "1085", "source": "382", "target": "396", "attributes": { "weight": 3 } }, { "key": "9726", "source": "382", "target": "399", "attributes": { "weight": 3 } }, { "key": "9727", "source": "382", "target": "411", "attributes": { "weight": 2 } }, { "key": "9725", "source": "382", "target": "393", "attributes": { "weight": 1 } }, { "key": "35392", "source": "382", "target": "390", "attributes": { "weight": 2 } }, { "key": "9724", "source": "382", "target": "388", "attributes": { "weight": 1 } }, { "key": "33973", "source": "383", "target": "1233", "attributes": { "weight": 1 } }, { "key": "1086", "source": "383", "target": "396", "attributes": { "weight": 2 } }, { "key": "1087", "source": "384", "target": "396", "attributes": { "weight": 2 } }, { "key": "1088", "source": "385", "target": "396", "attributes": { "weight": 1 } }, { "key": "35394", "source": "386", "target": "406", "attributes": { "weight": 1 } }, { "key": "35393", "source": "386", "target": "395", "attributes": { "weight": 1 } }, { "key": "9731", "source": "386", "target": "399", "attributes": { "weight": 4 } }, { "key": "1089", "source": "386", "target": "396", "attributes": { "weight": 3 } }, { "key": "9729", "source": "386", "target": "390", "attributes": { "weight": 2 } }, { "key": "9730", "source": "386", "target": "393", "attributes": { "weight": 2 } }, { "key": "9732", "source": "386", "target": "411", "attributes": { "weight": 3 } }, { "key": "35399", "source": "387", "target": "410", "attributes": { "weight": 1 } }, { "key": "2733", "source": "387", "target": "389", "attributes": { "weight": 1 } }, { "key": "15600", "source": "387", "target": "912", "attributes": { "weight": 1 } }, { "key": "13012", "source": "387", "target": "1233", "attributes": { "weight": 2 } }, { "key": "4645", "source": "387", "target": "123", "attributes": { "weight": 3 } }, { "key": "9736", "source": "387", "target": "338", "attributes": { "weight": 4 } }, { "key": "37139", "source": "387", "target": "1302", "attributes": { "weight": 1 } }, { "key": "34930", "source": "387", "target": "352", "attributes": { "weight": 1 } }, { "key": "35401", "source": "387", "target": "414", "attributes": { "weight": 2 } }, { "key": "12782", "source": "387", "target": "473", "attributes": { "weight": 1 } }, { "key": "4644", "source": "387", "target": "371", "attributes": { "weight": 3 } }, { "key": "11859", "source": "387", "target": "135", "attributes": { "weight": 6 } }, { "key": "37141", "source": "387", "target": "411", "attributes": { "weight": 1 } }, { "key": "37136", "source": "387", "target": "388", "attributes": { "weight": 1 } }, { "key": "18152", "source": "387", "target": "124", "attributes": { "weight": 1 } }, { "key": "36757", "source": "387", "target": "373", "attributes": { "weight": 1 } }, { "key": "12781", "source": "387", "target": "452", "attributes": { "weight": 2 } }, { "key": "32958", "source": "387", "target": "149", "attributes": { "weight": 1 } }, { "key": "35397", "source": "387", "target": "404", "attributes": { "weight": 1 } }, { "key": "29009", "source": "387", "target": "220", "attributes": { "weight": 1 } }, { "key": "18149", "source": "387", "target": "1197", "attributes": { "weight": 3 } }, { "key": "33992", "source": "387", "target": "1323", "attributes": { "weight": 2 } }, { "key": "35400", "source": "387", "target": "413", "attributes": { "weight": 1 } }, { "key": "15219", "source": "387", "target": "454", "attributes": { "weight": 1 } }, { "key": "7248", "source": "387", "target": "377", "attributes": { "weight": 3 } }, { "key": "35395", "source": "387", "target": "390", "attributes": { "weight": 2 } }, { "key": "33991", "source": "387", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18150", "source": "387", "target": "1263", "attributes": { "weight": 1 } }, { "key": "9734", "source": "387", "target": "392", "attributes": { "weight": 2 } }, { "key": "33990", "source": "387", "target": "1047", "attributes": { "weight": 1 } }, { "key": "26206", "source": "387", "target": "30", "attributes": { "weight": 1 } }, { "key": "2734", "source": "387", "target": "397", "attributes": { "weight": 1 } }, { "key": "37140", "source": "387", "target": "1330", "attributes": { "weight": 1 } }, { "key": "18148", "source": "387", "target": "1182", "attributes": { "weight": 2 } }, { "key": "35398", "source": "387", "target": "409", "attributes": { "weight": 1 } }, { "key": "3492", "source": "387", "target": "631", "attributes": { "weight": 1 } }, { "key": "10077", "source": "387", "target": "369", "attributes": { "weight": 1 } }, { "key": "9742", "source": "387", "target": "1329", "attributes": { "weight": 2 } }, { "key": "15220", "source": "387", "target": "472", "attributes": { "weight": 4 } }, { "key": "9740", "source": "387", "target": "1031", "attributes": { "weight": 2 } }, { "key": "9737", "source": "387", "target": "471", "attributes": { "weight": 4 } }, { "key": "8667", "source": "387", "target": "195", "attributes": { "weight": 9 } }, { "key": "9733", "source": "387", "target": "913", "attributes": { "weight": 3 } }, { "key": "4641", "source": "387", "target": "779", "attributes": { "weight": 2 } }, { "key": "35396", "source": "387", "target": "401", "attributes": { "weight": 1 } }, { "key": "9738", "source": "387", "target": "208", "attributes": { "weight": 3 } }, { "key": "9741", "source": "387", "target": "1305", "attributes": { "weight": 2 } }, { "key": "26207", "source": "387", "target": "601", "attributes": { "weight": 1 } }, { "key": "18641", "source": "387", "target": "1152", "attributes": { "weight": 2 } }, { "key": "32957", "source": "387", "target": "1350", "attributes": { "weight": 2 } }, { "key": "4640", "source": "387", "target": "938", "attributes": { "weight": 5 } }, { "key": "4646", "source": "387", "target": "1090", "attributes": { "weight": 3 } }, { "key": "1092", "source": "387", "target": "412", "attributes": { "weight": 2 } }, { "key": "9735", "source": "387", "target": "1236", "attributes": { "weight": 2 } }, { "key": "10661", "source": "387", "target": "43", "attributes": { "weight": 2 } }, { "key": "37135", "source": "387", "target": "1163", "attributes": { "weight": 1 } }, { "key": "6655", "source": "387", "target": "183", "attributes": { "weight": 1 } }, { "key": "10662", "source": "387", "target": "1314", "attributes": { "weight": 1 } }, { "key": "37138", "source": "387", "target": "1290", "attributes": { "weight": 1 } }, { "key": "4647", "source": "387", "target": "1294", "attributes": { "weight": 2 } }, { "key": "37137", "source": "387", "target": "393", "attributes": { "weight": 1 } }, { "key": "32959", "source": "387", "target": "333", "attributes": { "weight": 2 } }, { "key": "31127", "source": "387", "target": "442", "attributes": { "weight": 1 } }, { "key": "18643", "source": "387", "target": "1552", "attributes": { "weight": 1 } }, { "key": "11483", "source": "387", "target": "199", "attributes": { "weight": 2 } }, { "key": "7247", "source": "387", "target": "154", "attributes": { "weight": 3 } }, { "key": "18642", "source": "387", "target": "1174", "attributes": { "weight": 1 } }, { "key": "18644", "source": "387", "target": "1269", "attributes": { "weight": 1 } }, { "key": "9739", "source": "387", "target": "925", "attributes": { "weight": 3 } }, { "key": "7249", "source": "387", "target": "1063", "attributes": { "weight": 3 } }, { "key": "4643", "source": "387", "target": "370", "attributes": { "weight": 5 } }, { "key": "18645", "source": "387", "target": "405", "attributes": { "weight": 1 } }, { "key": "4642", "source": "387", "target": "368", "attributes": { "weight": 4 } }, { "key": "1091", "source": "387", "target": "399", "attributes": { "weight": 3 } }, { "key": "35402", "source": "387", "target": "415", "attributes": { "weight": 1 } }, { "key": "37134", "source": "387", "target": "380", "attributes": { "weight": 1 } }, { "key": "1090", "source": "387", "target": "396", "attributes": { "weight": 6 } }, { "key": "18151", "source": "387", "target": "1296", "attributes": { "weight": 1 } }, { "key": "9744", "source": "388", "target": "390", "attributes": { "weight": 2 } }, { "key": "4648", "source": "388", "target": "368", "attributes": { "weight": 2 } }, { "key": "9747", "source": "388", "target": "413", "attributes": { "weight": 1 } }, { "key": "9743", "source": "388", "target": "382", "attributes": { "weight": 1 } }, { "key": "33993", "source": "388", "target": "1233", "attributes": { "weight": 1 } }, { "key": "37142", "source": "388", "target": "387", "attributes": { "weight": 1 } }, { "key": "37143", "source": "388", "target": "411", "attributes": { "weight": 1 } }, { "key": "1093", "source": "388", "target": "396", "attributes": { "weight": 3 } }, { "key": "9745", "source": "388", "target": "393", "attributes": { "weight": 1 } }, { "key": "9746", "source": "388", "target": "399", "attributes": { "weight": 3 } }, { "key": "4658", "source": "389", "target": "779", "attributes": { "weight": 2 } }, { "key": "8674", "source": "389", "target": "195", "attributes": { "weight": 5 } }, { "key": "1094", "source": "389", "target": "396", "attributes": { "weight": 1 } }, { "key": "7251", "source": "389", "target": "154", "attributes": { "weight": 1 } }, { "key": "4659", "source": "389", "target": "368", "attributes": { "weight": 2 } }, { "key": "18156", "source": "389", "target": "1197", "attributes": { "weight": 1 } }, { "key": "33995", "source": "389", "target": "1233", "attributes": { "weight": 1 } }, { "key": "2735", "source": "389", "target": "387", "attributes": { "weight": 1 } }, { "key": "4660", "source": "389", "target": "371", "attributes": { "weight": 2 } }, { "key": "5043", "source": "390", "target": "1326", "attributes": { "weight": 4 } }, { "key": "1100", "source": "390", "target": "411", "attributes": { "weight": 3 } }, { "key": "5042", "source": "390", "target": "1294", "attributes": { "weight": 3 } }, { "key": "9758", "source": "390", "target": "386", "attributes": { "weight": 2 } }, { "key": "1098", "source": "390", "target": "406", "attributes": { "weight": 3 } }, { "key": "9763", "source": "390", "target": "400", "attributes": { "weight": 1 } }, { "key": "9762", "source": "390", "target": "395", "attributes": { "weight": 3 } }, { "key": "1095", "source": "390", "target": "396", "attributes": { "weight": 4 } }, { "key": "37146", "source": "390", "target": "1552", "attributes": { "weight": 1 } }, { "key": "1099", "source": "390", "target": "408", "attributes": { "weight": 1 } }, { "key": "9764", "source": "390", "target": "1288", "attributes": { "weight": 3 } }, { "key": "15795", "source": "390", "target": "1329", "attributes": { "weight": 1 } }, { "key": "37144", "source": "390", "target": "337", "attributes": { "weight": 1 } }, { "key": "9759", "source": "390", "target": "388", "attributes": { "weight": 2 } }, { "key": "9771", "source": "390", "target": "413", "attributes": { "weight": 2 } }, { "key": "9766", "source": "390", "target": "1031", "attributes": { "weight": 2 } }, { "key": "9760", "source": "390", "target": "1206", "attributes": { "weight": 3 } }, { "key": "35403", "source": "390", "target": "382", "attributes": { "weight": 2 } }, { "key": "1096", "source": "390", "target": "399", "attributes": { "weight": 5 } }, { "key": "37145", "source": "390", "target": "1647", "attributes": { "weight": 1 } }, { "key": "34181", "source": "390", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5040", "source": "390", "target": "368", "attributes": { "weight": 2 } }, { "key": "35404", "source": "390", "target": "387", "attributes": { "weight": 2 } }, { "key": "37149", "source": "390", "target": "1290", "attributes": { "weight": 1 } }, { "key": "9769", "source": "390", "target": "1331", "attributes": { "weight": 3 } }, { "key": "1097", "source": "390", "target": "405", "attributes": { "weight": 2 } }, { "key": "35408", "source": "390", "target": "414", "attributes": { "weight": 2 } }, { "key": "37148", "source": "390", "target": "1284", "attributes": { "weight": 1 } }, { "key": "9761", "source": "390", "target": "393", "attributes": { "weight": 3 } }, { "key": "9770", "source": "390", "target": "412", "attributes": { "weight": 2 } }, { "key": "9767", "source": "390", "target": "403", "attributes": { "weight": 1 } }, { "key": "9768", "source": "390", "target": "1323", "attributes": { "weight": 3 } }, { "key": "35406", "source": "390", "target": "404", "attributes": { "weight": 1 } }, { "key": "37147", "source": "390", "target": "1650", "attributes": { "weight": 1 } }, { "key": "35405", "source": "390", "target": "397", "attributes": { "weight": 2 } }, { "key": "35409", "source": "390", "target": "415", "attributes": { "weight": 1 } }, { "key": "9765", "source": "390", "target": "123", "attributes": { "weight": 2 } }, { "key": "9757", "source": "390", "target": "381", "attributes": { "weight": 1 } }, { "key": "8743", "source": "390", "target": "195", "attributes": { "weight": 6 } }, { "key": "5041", "source": "390", "target": "338", "attributes": { "weight": 7 } }, { "key": "35407", "source": "390", "target": "410", "attributes": { "weight": 2 } }, { "key": "10676", "source": "391", "target": "1314", "attributes": { "weight": 3 } }, { "key": "8756", "source": "391", "target": "195", "attributes": { "weight": 2 } }, { "key": "10677", "source": "391", "target": "407", "attributes": { "weight": 2 } }, { "key": "2068", "source": "391", "target": "635", "attributes": { "weight": 4 } }, { "key": "34206", "source": "391", "target": "1232", "attributes": { "weight": 1 } }, { "key": "10675", "source": "391", "target": "338", "attributes": { "weight": 4 } }, { "key": "14033", "source": "391", "target": "545", "attributes": { "weight": 1 } }, { "key": "28572", "source": "391", "target": "199", "attributes": { "weight": 1 } }, { "key": "15819", "source": "391", "target": "370", "attributes": { "weight": 1 } }, { "key": "5084", "source": "391", "target": "371", "attributes": { "weight": 4 } }, { "key": "5083", "source": "391", "target": "368", "attributes": { "weight": 2 } }, { "key": "9773", "source": "391", "target": "1656", "attributes": { "weight": 1 } }, { "key": "2066", "source": "391", "target": "632", "attributes": { "weight": 1 } }, { "key": "14034", "source": "391", "target": "1031", "attributes": { "weight": 1 } }, { "key": "34207", "source": "391", "target": "1233", "attributes": { "weight": 1 } }, { "key": "1101", "source": "391", "target": "396", "attributes": { "weight": 2 } }, { "key": "34205", "source": "391", "target": "1047", "attributes": { "weight": 1 } }, { "key": "10674", "source": "391", "target": "43", "attributes": { "weight": 1 } }, { "key": "2067", "source": "391", "target": "634", "attributes": { "weight": 4 } }, { "key": "15296", "source": "392", "target": "454", "attributes": { "weight": 1 } }, { "key": "14149", "source": "392", "target": "1125", "attributes": { "weight": 1 } }, { "key": "17717", "source": "392", "target": "48", "attributes": { "weight": 1 } }, { "key": "14144", "source": "392", "target": "369", "attributes": { "weight": 1 } }, { "key": "16439", "source": "392", "target": "1387", "attributes": { "weight": 1 } }, { "key": "12790", "source": "392", "target": "473", "attributes": { "weight": 1 } }, { "key": "26216", "source": "392", "target": "30", "attributes": { "weight": 2 } }, { "key": "14142", "source": "392", "target": "778", "attributes": { "weight": 2 } }, { "key": "14145", "source": "392", "target": "251", "attributes": { "weight": 1 } }, { "key": "26157", "source": "392", "target": "1214", "attributes": { "weight": 1 } }, { "key": "14148", "source": "392", "target": "1281", "attributes": { "weight": 2 } }, { "key": "12789", "source": "392", "target": "1385", "attributes": { "weight": 2 } }, { "key": "7302", "source": "392", "target": "1063", "attributes": { "weight": 1 } }, { "key": "27259", "source": "392", "target": "57", "attributes": { "weight": 1 } }, { "key": "9774", "source": "392", "target": "387", "attributes": { "weight": 3 } }, { "key": "14152", "source": "392", "target": "1388", "attributes": { "weight": 1 } }, { "key": "14143", "source": "392", "target": "1963", "attributes": { "weight": 1 } }, { "key": "8764", "source": "392", "target": "442", "attributes": { "weight": 1 } }, { "key": "25866", "source": "392", "target": "220", "attributes": { "weight": 1 } }, { "key": "32184", "source": "392", "target": "1314", "attributes": { "weight": 1 } }, { "key": "35563", "source": "392", "target": "135", "attributes": { "weight": 1 } }, { "key": "12791", "source": "392", "target": "1891", "attributes": { "weight": 2 } }, { "key": "14147", "source": "392", "target": "471", "attributes": { "weight": 2 } }, { "key": "14146", "source": "392", "target": "1964", "attributes": { "weight": 1 } }, { "key": "14151", "source": "392", "target": "254", "attributes": { "weight": 1 } }, { "key": "1102", "source": "392", "target": "396", "attributes": { "weight": 3 } }, { "key": "14036", "source": "392", "target": "1031", "attributes": { "weight": 2 } }, { "key": "14153", "source": "392", "target": "595", "attributes": { "weight": 2 } }, { "key": "10680", "source": "392", "target": "43", "attributes": { "weight": 3 } }, { "key": "14150", "source": "392", "target": "1030", "attributes": { "weight": 1 } }, { "key": "12788", "source": "392", "target": "1890", "attributes": { "weight": 1 } }, { "key": "1103", "source": "393", "target": "396", "attributes": { "weight": 4 } }, { "key": "9778", "source": "393", "target": "388", "attributes": { "weight": 1 } }, { "key": "37150", "source": "393", "target": "387", "attributes": { "weight": 1 } }, { "key": "9779", "source": "393", "target": "390", "attributes": { "weight": 3 } }, { "key": "5101", "source": "393", "target": "1294", "attributes": { "weight": 4 } }, { "key": "9780", "source": "393", "target": "338", "attributes": { "weight": 2 } }, { "key": "9776", "source": "393", "target": "382", "attributes": { "weight": 1 } }, { "key": "9782", "source": "393", "target": "399", "attributes": { "weight": 2 } }, { "key": "9783", "source": "393", "target": "1650", "attributes": { "weight": 1 } }, { "key": "9777", "source": "393", "target": "386", "attributes": { "weight": 2 } }, { "key": "9784", "source": "393", "target": "411", "attributes": { "weight": 2 } }, { "key": "9775", "source": "393", "target": "381", "attributes": { "weight": 1 } }, { "key": "9781", "source": "393", "target": "1647", "attributes": { "weight": 1 } }, { "key": "1104", "source": "394", "target": "396", "attributes": { "weight": 2 } }, { "key": "34232", "source": "394", "target": "1233", "attributes": { "weight": 1 } }, { "key": "35410", "source": "395", "target": "386", "attributes": { "weight": 1 } }, { "key": "9790", "source": "395", "target": "390", "attributes": { "weight": 3 } }, { "key": "35412", "source": "395", "target": "400", "attributes": { "weight": 1 } }, { "key": "35411", "source": "395", "target": "399", "attributes": { "weight": 1 } }, { "key": "37151", "source": "395", "target": "411", "attributes": { "weight": 1 } }, { "key": "1106", "source": "395", "target": "396", "attributes": { "weight": 3 } }, { "key": "9838", "source": "396", "target": "1031", "attributes": { "weight": 2 } }, { "key": "9837", "source": "396", "target": "1653", "attributes": { "weight": 2 } }, { "key": "9824", "source": "396", "target": "1646", "attributes": { "weight": 2 } }, { "key": "5557", "source": "396", "target": "368", "attributes": { "weight": 5 } }, { "key": "9823", "source": "396", "target": "1233", "attributes": { "weight": 4 } }, { "key": "1119", "source": "396", "target": "388", "attributes": { "weight": 3 } }, { "key": "9839", "source": "396", "target": "1654", "attributes": { "weight": 3 } }, { "key": "1114", "source": "396", "target": "383", "attributes": { "weight": 2 } }, { "key": "1122", "source": "396", "target": "391", "attributes": { "weight": 2 } }, { "key": "7346", "source": "396", "target": "1063", "attributes": { "weight": 2 } }, { "key": "1127", "source": "396", "target": "395", "attributes": { "weight": 3 } }, { "key": "1145", "source": "396", "target": "414", "attributes": { "weight": 3 } }, { "key": "7345", "source": "396", "target": "333", "attributes": { "weight": 1 } }, { "key": "1133", "source": "396", "target": "401", "attributes": { "weight": 2 } }, { "key": "9819", "source": "396", "target": "913", "attributes": { "weight": 2 } }, { "key": "1143", "source": "396", "target": "411", "attributes": { "weight": 4 } }, { "key": "1129", "source": "396", "target": "397", "attributes": { "weight": 4 } }, { "key": "1124", "source": "396", "target": "393", "attributes": { "weight": 3 } }, { "key": "1146", "source": "396", "target": "415", "attributes": { "weight": 3 } }, { "key": "9814", "source": "396", "target": "1163", "attributes": { "weight": 1 } }, { "key": "1131", "source": "396", "target": "399", "attributes": { "weight": 6 } }, { "key": "37163", "source": "396", "target": "1315", "attributes": { "weight": 1 } }, { "key": "9836", "source": "396", "target": "1652", "attributes": { "weight": 2 } }, { "key": "9835", "source": "396", "target": "1651", "attributes": { "weight": 1 } }, { "key": "8877", "source": "396", "target": "442", "attributes": { "weight": 3 } }, { "key": "1137", "source": "396", "target": "405", "attributes": { "weight": 4 } }, { "key": "1115", "source": "396", "target": "384", "attributes": { "weight": 2 } }, { "key": "1135", "source": "396", "target": "403", "attributes": { "weight": 4 } }, { "key": "1141", "source": "396", "target": "409", "attributes": { "weight": 2 } }, { "key": "9820", "source": "396", "target": "369", "attributes": { "weight": 1 } }, { "key": "1136", "source": "396", "target": "404", "attributes": { "weight": 3 } }, { "key": "9818", "source": "396", "target": "1645", "attributes": { "weight": 2 } }, { "key": "5559", "source": "396", "target": "123", "attributes": { "weight": 6 } }, { "key": "1130", "source": "396", "target": "398", "attributes": { "weight": 2 } }, { "key": "9829", "source": "396", "target": "1648", "attributes": { "weight": 2 } }, { "key": "9832", "source": "396", "target": "208", "attributes": { "weight": 3 } }, { "key": "9834", "source": "396", "target": "1650", "attributes": { "weight": 2 } }, { "key": "9816", "source": "396", "target": "1643", "attributes": { "weight": 2 } }, { "key": "35666", "source": "396", "target": "1264", "attributes": { "weight": 1 } }, { "key": "1128", "source": "396", "target": "371", "attributes": { "weight": 8 } }, { "key": "9847", "source": "396", "target": "1657", "attributes": { "weight": 2 } }, { "key": "1109", "source": "396", "target": "379", "attributes": { "weight": 4 } }, { "key": "9815", "source": "396", "target": "778", "attributes": { "weight": 1 } }, { "key": "1149", "source": "396", "target": "418", "attributes": { "weight": 3 } }, { "key": "9828", "source": "396", "target": "1647", "attributes": { "weight": 1 } }, { "key": "9826", "source": "396", "target": "468", "attributes": { "weight": 2 } }, { "key": "5556", "source": "396", "target": "779", "attributes": { "weight": 2 } }, { "key": "9843", "source": "396", "target": "1323", "attributes": { "weight": 4 } }, { "key": "35665", "source": "396", "target": "1152", "attributes": { "weight": 1 } }, { "key": "9822", "source": "396", "target": "1232", "attributes": { "weight": 3 } }, { "key": "1126", "source": "396", "target": "370", "attributes": { "weight": 4 } }, { "key": "9849", "source": "396", "target": "154", "attributes": { "weight": 1 } }, { "key": "1139", "source": "396", "target": "407", "attributes": { "weight": 3 } }, { "key": "1140", "source": "396", "target": "408", "attributes": { "weight": 2 } }, { "key": "9825", "source": "396", "target": "337", "attributes": { "weight": 3 } }, { "key": "9827", "source": "396", "target": "30", "attributes": { "weight": 3 } }, { "key": "1134", "source": "396", "target": "402", "attributes": { "weight": 1 } }, { "key": "9831", "source": "396", "target": "1649", "attributes": { "weight": 2 } }, { "key": "1148", "source": "396", "target": "417", "attributes": { "weight": 3 } }, { "key": "9817", "source": "396", "target": "1644", "attributes": { "weight": 2 } }, { "key": "1117", "source": "396", "target": "386", "attributes": { "weight": 3 } }, { "key": "1142", "source": "396", "target": "410", "attributes": { "weight": 3 } }, { "key": "1116", "source": "396", "target": "385", "attributes": { "weight": 1 } }, { "key": "1138", "source": "396", "target": "406", "attributes": { "weight": 3 } }, { "key": "1120", "source": "396", "target": "389", "attributes": { "weight": 1 } }, { "key": "34530", "source": "396", "target": "1047", "attributes": { "weight": 1 } }, { "key": "26627", "source": "396", "target": "454", "attributes": { "weight": 1 } }, { "key": "9848", "source": "396", "target": "48", "attributes": { "weight": 1 } }, { "key": "1112", "source": "396", "target": "381", "attributes": { "weight": 2 } }, { "key": "1118", "source": "396", "target": "387", "attributes": { "weight": 4 } }, { "key": "1121", "source": "396", "target": "390", "attributes": { "weight": 4 } }, { "key": "1125", "source": "396", "target": "394", "attributes": { "weight": 2 } }, { "key": "9830", "source": "396", "target": "471", "attributes": { "weight": 4 } }, { "key": "5558", "source": "396", "target": "338", "attributes": { "weight": 7 } }, { "key": "5560", "source": "396", "target": "1294", "attributes": { "weight": 3 } }, { "key": "1110", "source": "396", "target": "380", "attributes": { "weight": 2 } }, { "key": "25880", "source": "396", "target": "220", "attributes": { "weight": 1 } }, { "key": "34529", "source": "396", "target": "1197", "attributes": { "weight": 2 } }, { "key": "9821", "source": "396", "target": "109", "attributes": { "weight": 2 } }, { "key": "1144", "source": "396", "target": "413", "attributes": { "weight": 3 } }, { "key": "1123", "source": "396", "target": "392", "attributes": { "weight": 3 } }, { "key": "9833", "source": "396", "target": "1272", "attributes": { "weight": 2 } }, { "key": "26628", "source": "396", "target": "189", "attributes": { "weight": 1 } }, { "key": "1113", "source": "396", "target": "382", "attributes": { "weight": 3 } }, { "key": "8876", "source": "396", "target": "195", "attributes": { "weight": 8 } }, { "key": "1132", "source": "396", "target": "400", "attributes": { "weight": 4 } }, { "key": "9840", "source": "396", "target": "1314", "attributes": { "weight": 2 } }, { "key": "1147", "source": "396", "target": "416", "attributes": { "weight": 2 } }, { "key": "9846", "source": "396", "target": "1656", "attributes": { "weight": 1 } }, { "key": "9844", "source": "396", "target": "1330", "attributes": { "weight": 2 } }, { "key": "9842", "source": "396", "target": "601", "attributes": { "weight": 2 } }, { "key": "9841", "source": "396", "target": "634", "attributes": { "weight": 1 } }, { "key": "9845", "source": "396", "target": "1655", "attributes": { "weight": 1 } }, { "key": "1111", "source": "396", "target": "43", "attributes": { "weight": 4 } }, { "key": "35414", "source": "397", "target": "399", "attributes": { "weight": 2 } }, { "key": "2737", "source": "397", "target": "415", "attributes": { "weight": 2 } }, { "key": "34539", "source": "397", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9851", "source": "397", "target": "371", "attributes": { "weight": 2 } }, { "key": "35413", "source": "397", "target": "390", "attributes": { "weight": 2 } }, { "key": "1151", "source": "397", "target": "396", "attributes": { "weight": 4 } }, { "key": "2736", "source": "397", "target": "387", "attributes": { "weight": 1 } }, { "key": "3497", "source": "397", "target": "631", "attributes": { "weight": 1 } }, { "key": "1152", "source": "398", "target": "396", "attributes": { "weight": 2 } }, { "key": "35415", "source": "399", "target": "379", "attributes": { "weight": 1 } }, { "key": "9865", "source": "399", "target": "409", "attributes": { "weight": 2 } }, { "key": "9860", "source": "399", "target": "913", "attributes": { "weight": 2 } }, { "key": "1156", "source": "399", "target": "396", "attributes": { "weight": 4 } }, { "key": "8926", "source": "399", "target": "195", "attributes": { "weight": 6 } }, { "key": "35420", "source": "399", "target": "403", "attributes": { "weight": 2 } }, { "key": "1153", "source": "399", "target": "387", "attributes": { "weight": 3 } }, { "key": "9862", "source": "399", "target": "1290", "attributes": { "weight": 1 } }, { "key": "9859", "source": "399", "target": "388", "attributes": { "weight": 4 } }, { "key": "9856", "source": "399", "target": "1163", "attributes": { "weight": 2 } }, { "key": "9864", "source": "399", "target": "1302", "attributes": { "weight": 2 } }, { "key": "9857", "source": "399", "target": "382", "attributes": { "weight": 3 } }, { "key": "34558", "source": "399", "target": "1233", "attributes": { "weight": 2 } }, { "key": "35418", "source": "399", "target": "400", "attributes": { "weight": 1 } }, { "key": "9863", "source": "399", "target": "1031", "attributes": { "weight": 2 } }, { "key": "9866", "source": "399", "target": "414", "attributes": { "weight": 3 } }, { "key": "1157", "source": "399", "target": "405", "attributes": { "weight": 3 } }, { "key": "9858", "source": "399", "target": "386", "attributes": { "weight": 4 } }, { "key": "35417", "source": "399", "target": "397", "attributes": { "weight": 2 } }, { "key": "35416", "source": "399", "target": "395", "attributes": { "weight": 1 } }, { "key": "1155", "source": "399", "target": "337", "attributes": { "weight": 3 } }, { "key": "35419", "source": "399", "target": "401", "attributes": { "weight": 1 } }, { "key": "34559", "source": "399", "target": "123", "attributes": { "weight": 1 } }, { "key": "37167", "source": "399", "target": "411", "attributes": { "weight": 1 } }, { "key": "1158", "source": "399", "target": "412", "attributes": { "weight": 2 } }, { "key": "5720", "source": "399", "target": "368", "attributes": { "weight": 2 } }, { "key": "35423", "source": "399", "target": "415", "attributes": { "weight": 1 } }, { "key": "9861", "source": "399", "target": "393", "attributes": { "weight": 2 } }, { "key": "35421", "source": "399", "target": "406", "attributes": { "weight": 2 } }, { "key": "1154", "source": "399", "target": "390", "attributes": { "weight": 5 } }, { "key": "35422", "source": "399", "target": "410", "attributes": { "weight": 1 } }, { "key": "9855", "source": "399", "target": "380", "attributes": { "weight": 1 } }, { "key": "1159", "source": "400", "target": "396", "attributes": { "weight": 4 } }, { "key": "37169", "source": "400", "target": "411", "attributes": { "weight": 1 } }, { "key": "9869", "source": "400", "target": "390", "attributes": { "weight": 1 } }, { "key": "35424", "source": "400", "target": "395", "attributes": { "weight": 1 } }, { "key": "9870", "source": "400", "target": "338", "attributes": { "weight": 2 } }, { "key": "5731", "source": "400", "target": "1294", "attributes": { "weight": 2 } }, { "key": "5730", "source": "400", "target": "368", "attributes": { "weight": 2 } }, { "key": "9871", "source": "400", "target": "1647", "attributes": { "weight": 1 } }, { "key": "35425", "source": "400", "target": "399", "attributes": { "weight": 1 } }, { "key": "1160", "source": "401", "target": "396", "attributes": { "weight": 2 } }, { "key": "35426", "source": "401", "target": "387", "attributes": { "weight": 1 } }, { "key": "34565", "source": "401", "target": "1233", "attributes": { "weight": 1 } }, { "key": "37171", "source": "401", "target": "411", "attributes": { "weight": 1 } }, { "key": "35427", "source": "401", "target": "399", "attributes": { "weight": 1 } }, { "key": "1161", "source": "402", "target": "396", "attributes": { "weight": 1 } }, { "key": "6204", "source": "403", "target": "1294", "attributes": { "weight": 2 } }, { "key": "6206", "source": "403", "target": "1323", "attributes": { "weight": 5 } }, { "key": "18275", "source": "403", "target": "1197", "attributes": { "weight": 2 } }, { "key": "34672", "source": "403", "target": "1047", "attributes": { "weight": 1 } }, { "key": "36769", "source": "403", "target": "373", "attributes": { "weight": 1 } }, { "key": "7388", "source": "403", "target": "377", "attributes": { "weight": 2 } }, { "key": "6203", "source": "403", "target": "123", "attributes": { "weight": 4 } }, { "key": "34673", "source": "403", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6205", "source": "403", "target": "1315", "attributes": { "weight": 3 } }, { "key": "1162", "source": "403", "target": "396", "attributes": { "weight": 4 } }, { "key": "18276", "source": "403", "target": "124", "attributes": { "weight": 1 } }, { "key": "9891", "source": "403", "target": "390", "attributes": { "weight": 1 } }, { "key": "35428", "source": "403", "target": "399", "attributes": { "weight": 2 } }, { "key": "32982", "source": "403", "target": "154", "attributes": { "weight": 1 } }, { "key": "7387", "source": "403", "target": "333", "attributes": { "weight": 3 } }, { "key": "9892", "source": "403", "target": "338", "attributes": { "weight": 4 } }, { "key": "6202", "source": "403", "target": "368", "attributes": { "weight": 2 } }, { "key": "37175", "source": "403", "target": "411", "attributes": { "weight": 1 } }, { "key": "1163", "source": "403", "target": "412", "attributes": { "weight": 1 } }, { "key": "9893", "source": "403", "target": "1329", "attributes": { "weight": 2 } }, { "key": "9034", "source": "403", "target": "195", "attributes": { "weight": 4 } }, { "key": "35430", "source": "404", "target": "390", "attributes": { "weight": 1 } }, { "key": "35429", "source": "404", "target": "387", "attributes": { "weight": 1 } }, { "key": "35431", "source": "404", "target": "414", "attributes": { "weight": 1 } }, { "key": "1164", "source": "404", "target": "396", "attributes": { "weight": 3 } }, { "key": "9897", "source": "404", "target": "1652", "attributes": { "weight": 2 } }, { "key": "18933", "source": "405", "target": "337", "attributes": { "weight": 2 } }, { "key": "6278", "source": "405", "target": "1090", "attributes": { "weight": 2 } }, { "key": "34711", "source": "405", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9054", "source": "405", "target": "195", "attributes": { "weight": 7 } }, { "key": "16250", "source": "405", "target": "925", "attributes": { "weight": 1 } }, { "key": "6279", "source": "405", "target": "1294", "attributes": { "weight": 4 } }, { "key": "36713", "source": "405", "target": "1165", "attributes": { "weight": 1 } }, { "key": "34710", "source": "405", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18936", "source": "405", "target": "124", "attributes": { "weight": 2 } }, { "key": "16247", "source": "405", "target": "370", "attributes": { "weight": 1 } }, { "key": "18931", "source": "405", "target": "1197", "attributes": { "weight": 3 } }, { "key": "16248", "source": "405", "target": "208", "attributes": { "weight": 3 } }, { "key": "1167", "source": "405", "target": "399", "attributes": { "weight": 3 } }, { "key": "1166", "source": "405", "target": "396", "attributes": { "weight": 4 } }, { "key": "18928", "source": "405", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18937", "source": "405", "target": "218", "attributes": { "weight": 2 } }, { "key": "16246", "source": "405", "target": "913", "attributes": { "weight": 1 } }, { "key": "34709", "source": "405", "target": "1047", "attributes": { "weight": 1 } }, { "key": "34712", "source": "405", "target": "1323", "attributes": { "weight": 1 } }, { "key": "36716", "source": "405", "target": "1315", "attributes": { "weight": 1 } }, { "key": "18930", "source": "405", "target": "1526", "attributes": { "weight": 2 } }, { "key": "16249", "source": "405", "target": "924", "attributes": { "weight": 1 } }, { "key": "16251", "source": "405", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18929", "source": "405", "target": "387", "attributes": { "weight": 1 } }, { "key": "1168", "source": "405", "target": "412", "attributes": { "weight": 1 } }, { "key": "1165", "source": "405", "target": "390", "attributes": { "weight": 2 } }, { "key": "6277", "source": "405", "target": "123", "attributes": { "weight": 3 } }, { "key": "18934", "source": "405", "target": "338", "attributes": { "weight": 3 } }, { "key": "36715", "source": "405", "target": "2229", "attributes": { "weight": 1 } }, { "key": "18932", "source": "405", "target": "1228", "attributes": { "weight": 2 } }, { "key": "6276", "source": "405", "target": "368", "attributes": { "weight": 2 } }, { "key": "6275", "source": "405", "target": "779", "attributes": { "weight": 2 } }, { "key": "10303", "source": "405", "target": "1322", "attributes": { "weight": 1 } }, { "key": "36714", "source": "405", "target": "1201", "attributes": { "weight": 1 } }, { "key": "18935", "source": "405", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18949", "source": "406", "target": "408", "attributes": { "weight": 1 } }, { "key": "37179", "source": "406", "target": "411", "attributes": { "weight": 1 } }, { "key": "9072", "source": "406", "target": "195", "attributes": { "weight": 5 } }, { "key": "6363", "source": "406", "target": "338", "attributes": { "weight": 5 } }, { "key": "34783", "source": "406", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6365", "source": "406", "target": "1294", "attributes": { "weight": 2 } }, { "key": "34782", "source": "406", "target": "1047", "attributes": { "weight": 1 } }, { "key": "9909", "source": "406", "target": "1329", "attributes": { "weight": 2 } }, { "key": "9907", "source": "406", "target": "1323", "attributes": { "weight": 4 } }, { "key": "18284", "source": "406", "target": "1197", "attributes": { "weight": 3 } }, { "key": "10357", "source": "406", "target": "1315", "attributes": { "weight": 2 } }, { "key": "9908", "source": "406", "target": "1326", "attributes": { "weight": 2 } }, { "key": "1169", "source": "406", "target": "390", "attributes": { "weight": 3 } }, { "key": "6364", "source": "406", "target": "123", "attributes": { "weight": 4 } }, { "key": "36770", "source": "406", "target": "333", "attributes": { "weight": 1 } }, { "key": "7402", "source": "406", "target": "377", "attributes": { "weight": 2 } }, { "key": "35433", "source": "406", "target": "399", "attributes": { "weight": 2 } }, { "key": "6362", "source": "406", "target": "368", "attributes": { "weight": 3 } }, { "key": "35432", "source": "406", "target": "386", "attributes": { "weight": 1 } }, { "key": "1171", "source": "406", "target": "412", "attributes": { "weight": 1 } }, { "key": "6361", "source": "406", "target": "779", "attributes": { "weight": 2 } }, { "key": "1170", "source": "406", "target": "396", "attributes": { "weight": 3 } }, { "key": "10779", "source": "407", "target": "634", "attributes": { "weight": 2 } }, { "key": "6366", "source": "407", "target": "779", "attributes": { "weight": 3 } }, { "key": "1766", "source": "407", "target": "547", "attributes": { "weight": 3 } }, { "key": "34785", "source": "407", "target": "1232", "attributes": { "weight": 1 } }, { "key": "1172", "source": "407", "target": "396", "attributes": { "weight": 3 } }, { "key": "10774", "source": "407", "target": "43", "attributes": { "weight": 1 } }, { "key": "1763", "source": "407", "target": "543", "attributes": { "weight": 3 } }, { "key": "1769", "source": "407", "target": "552", "attributes": { "weight": 1 } }, { "key": "1761", "source": "407", "target": "541", "attributes": { "weight": 3 } }, { "key": "10778", "source": "407", "target": "1314", "attributes": { "weight": 1 } }, { "key": "24227", "source": "407", "target": "471", "attributes": { "weight": 1 } }, { "key": "18285", "source": "407", "target": "1197", "attributes": { "weight": 1 } }, { "key": "10780", "source": "407", "target": "635", "attributes": { "weight": 3 } }, { "key": "34786", "source": "407", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9073", "source": "407", "target": "195", "attributes": { "weight": 2 } }, { "key": "1767", "source": "407", "target": "550", "attributes": { "weight": 3 } }, { "key": "26976", "source": "407", "target": "548", "attributes": { "weight": 2 } }, { "key": "6369", "source": "407", "target": "371", "attributes": { "weight": 3 } }, { "key": "1764", "source": "407", "target": "545", "attributes": { "weight": 3 } }, { "key": "10776", "source": "407", "target": "30", "attributes": { "weight": 1 } }, { "key": "1765", "source": "407", "target": "546", "attributes": { "weight": 1 } }, { "key": "10777", "source": "407", "target": "1031", "attributes": { "weight": 4 } }, { "key": "7403", "source": "407", "target": "1063", "attributes": { "weight": 1 } }, { "key": "34784", "source": "407", "target": "1047", "attributes": { "weight": 1 } }, { "key": "1760", "source": "407", "target": "540", "attributes": { "weight": 1 } }, { "key": "11695", "source": "407", "target": "208", "attributes": { "weight": 1 } }, { "key": "1762", "source": "407", "target": "542", "attributes": { "weight": 3 } }, { "key": "6367", "source": "407", "target": "368", "attributes": { "weight": 2 } }, { "key": "10775", "source": "407", "target": "391", "attributes": { "weight": 4 } }, { "key": "2767", "source": "407", "target": "798", "attributes": { "weight": 1 } }, { "key": "26975", "source": "407", "target": "544", "attributes": { "weight": 2 } }, { "key": "1770", "source": "407", "target": "553", "attributes": { "weight": 3 } }, { "key": "34787", "source": "407", "target": "123", "attributes": { "weight": 1 } }, { "key": "6368", "source": "407", "target": "370", "attributes": { "weight": 3 } }, { "key": "15366", "source": "407", "target": "254", "attributes": { "weight": 1 } }, { "key": "11694", "source": "407", "target": "199", "attributes": { "weight": 2 } }, { "key": "16280", "source": "407", "target": "338", "attributes": { "weight": 1 } }, { "key": "18959", "source": "408", "target": "1323", "attributes": { "weight": 3 } }, { "key": "16355", "source": "408", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16356", "source": "408", "target": "333", "attributes": { "weight": 2 } }, { "key": "36731", "source": "408", "target": "1326", "attributes": { "weight": 1 } }, { "key": "1173", "source": "408", "target": "390", "attributes": { "weight": 1 } }, { "key": "18286", "source": "408", "target": "1197", "attributes": { "weight": 4 } }, { "key": "36732", "source": "408", "target": "1331", "attributes": { "weight": 1 } }, { "key": "6398", "source": "408", "target": "1294", "attributes": { "weight": 4 } }, { "key": "34799", "source": "408", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6395", "source": "408", "target": "368", "attributes": { "weight": 3 } }, { "key": "6396", "source": "408", "target": "123", "attributes": { "weight": 3 } }, { "key": "9078", "source": "408", "target": "195", "attributes": { "weight": 4 } }, { "key": "1174", "source": "408", "target": "396", "attributes": { "weight": 2 } }, { "key": "36730", "source": "408", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18958", "source": "408", "target": "1284", "attributes": { "weight": 2 } }, { "key": "34798", "source": "408", "target": "1047", "attributes": { "weight": 1 } }, { "key": "6397", "source": "408", "target": "1291", "attributes": { "weight": 2 } }, { "key": "18960", "source": "408", "target": "406", "attributes": { "weight": 1 } }, { "key": "18957", "source": "408", "target": "337", "attributes": { "weight": 2 } }, { "key": "16354", "source": "408", "target": "925", "attributes": { "weight": 1 } }, { "key": "6399", "source": "408", "target": "1322", "attributes": { "weight": 2 } }, { "key": "35434", "source": "409", "target": "387", "attributes": { "weight": 1 } }, { "key": "1175", "source": "409", "target": "396", "attributes": { "weight": 2 } }, { "key": "9917", "source": "409", "target": "414", "attributes": { "weight": 1 } }, { "key": "34818", "source": "409", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9916", "source": "409", "target": "399", "attributes": { "weight": 2 } }, { "key": "35436", "source": "410", "target": "390", "attributes": { "weight": 2 } }, { "key": "1176", "source": "410", "target": "396", "attributes": { "weight": 3 } }, { "key": "35437", "source": "410", "target": "399", "attributes": { "weight": 1 } }, { "key": "37182", "source": "410", "target": "411", "attributes": { "weight": 1 } }, { "key": "35435", "source": "410", "target": "387", "attributes": { "weight": 1 } }, { "key": "9923", "source": "411", "target": "1645", "attributes": { "weight": 1 } }, { "key": "37205", "source": "411", "target": "418", "attributes": { "weight": 1 } }, { "key": "37199", "source": "411", "target": "1330", "attributes": { "weight": 1 } }, { "key": "37197", "source": "411", "target": "1302", "attributes": { "weight": 1 } }, { "key": "9925", "source": "411", "target": "580", "attributes": { "weight": 2 } }, { "key": "37203", "source": "411", "target": "414", "attributes": { "weight": 1 } }, { "key": "37202", "source": "411", "target": "3345", "attributes": { "weight": 1 } }, { "key": "37188", "source": "411", "target": "388", "attributes": { "weight": 1 } }, { "key": "37185", "source": "411", "target": "381", "attributes": { "weight": 1 } }, { "key": "37186", "source": "411", "target": "1643", "attributes": { "weight": 1 } }, { "key": "37192", "source": "411", "target": "399", "attributes": { "weight": 1 } }, { "key": "37189", "source": "411", "target": "395", "attributes": { "weight": 1 } }, { "key": "37183", "source": "411", "target": "379", "attributes": { "weight": 1 } }, { "key": "37195", "source": "411", "target": "1290", "attributes": { "weight": 1 } }, { "key": "37184", "source": "411", "target": "380", "attributes": { "weight": 1 } }, { "key": "37194", "source": "411", "target": "401", "attributes": { "weight": 1 } }, { "key": "1177", "source": "411", "target": "390", "attributes": { "weight": 3 } }, { "key": "9924", "source": "411", "target": "393", "attributes": { "weight": 2 } }, { "key": "37201", "source": "411", "target": "1657", "attributes": { "weight": 1 } }, { "key": "37191", "source": "411", "target": "1272", "attributes": { "weight": 1 } }, { "key": "9926", "source": "411", "target": "305", "attributes": { "weight": 1 } }, { "key": "37196", "source": "411", "target": "403", "attributes": { "weight": 1 } }, { "key": "37204", "source": "411", "target": "416", "attributes": { "weight": 1 } }, { "key": "37198", "source": "411", "target": "406", "attributes": { "weight": 1 } }, { "key": "1178", "source": "411", "target": "396", "attributes": { "weight": 3 } }, { "key": "37190", "source": "411", "target": "1647", "attributes": { "weight": 1 } }, { "key": "37187", "source": "411", "target": "387", "attributes": { "weight": 1 } }, { "key": "37200", "source": "411", "target": "410", "attributes": { "weight": 1 } }, { "key": "37193", "source": "411", "target": "400", "attributes": { "weight": 1 } }, { "key": "9921", "source": "411", "target": "382", "attributes": { "weight": 2 } }, { "key": "9920", "source": "411", "target": "1163", "attributes": { "weight": 2 } }, { "key": "9922", "source": "411", "target": "386", "attributes": { "weight": 3 } }, { "key": "1181", "source": "412", "target": "337", "attributes": { "weight": 1 } }, { "key": "1182", "source": "412", "target": "399", "attributes": { "weight": 2 } }, { "key": "1186", "source": "412", "target": "417", "attributes": { "weight": 1 } }, { "key": "1179", "source": "412", "target": "379", "attributes": { "weight": 2 } }, { "key": "1180", "source": "412", "target": "387", "attributes": { "weight": 2 } }, { "key": "9927", "source": "412", "target": "390", "attributes": { "weight": 1 } }, { "key": "1185", "source": "412", "target": "406", "attributes": { "weight": 1 } }, { "key": "28608", "source": "412", "target": "199", "attributes": { "weight": 1 } }, { "key": "1184", "source": "412", "target": "405", "attributes": { "weight": 1 } }, { "key": "1183", "source": "412", "target": "403", "attributes": { "weight": 1 } }, { "key": "34825", "source": "413", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6467", "source": "413", "target": "368", "attributes": { "weight": 2 } }, { "key": "35438", "source": "413", "target": "387", "attributes": { "weight": 1 } }, { "key": "1187", "source": "413", "target": "396", "attributes": { "weight": 3 } }, { "key": "9930", "source": "413", "target": "390", "attributes": { "weight": 2 } }, { "key": "9929", "source": "413", "target": "388", "attributes": { "weight": 1 } }, { "key": "2738", "source": "414", "target": "415", "attributes": { "weight": 2 } }, { "key": "9932", "source": "414", "target": "399", "attributes": { "weight": 3 } }, { "key": "35439", "source": "414", "target": "387", "attributes": { "weight": 2 } }, { "key": "35440", "source": "414", "target": "390", "attributes": { "weight": 2 } }, { "key": "1188", "source": "414", "target": "396", "attributes": { "weight": 3 } }, { "key": "9933", "source": "414", "target": "409", "attributes": { "weight": 1 } }, { "key": "35441", "source": "414", "target": "404", "attributes": { "weight": 1 } }, { "key": "34838", "source": "414", "target": "1233", "attributes": { "weight": 1 } }, { "key": "37209", "source": "414", "target": "411", "attributes": { "weight": 1 } }, { "key": "35444", "source": "415", "target": "399", "attributes": { "weight": 1 } }, { "key": "35443", "source": "415", "target": "390", "attributes": { "weight": 1 } }, { "key": "2739", "source": "415", "target": "397", "attributes": { "weight": 2 } }, { "key": "34840", "source": "415", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9934", "source": "415", "target": "1652", "attributes": { "weight": 2 } }, { "key": "35442", "source": "415", "target": "387", "attributes": { "weight": 1 } }, { "key": "1189", "source": "415", "target": "396", "attributes": { "weight": 3 } }, { "key": "2740", "source": "415", "target": "414", "attributes": { "weight": 2 } }, { "key": "37212", "source": "416", "target": "411", "attributes": { "weight": 1 } }, { "key": "6557", "source": "416", "target": "368", "attributes": { "weight": 2 } }, { "key": "1190", "source": "416", "target": "396", "attributes": { "weight": 2 } }, { "key": "37211", "source": "416", "target": "1552", "attributes": { "weight": 1 } }, { "key": "37210", "source": "416", "target": "338", "attributes": { "weight": 1 } }, { "key": "34854", "source": "417", "target": "1233", "attributes": { "weight": 1 } }, { "key": "1191", "source": "417", "target": "396", "attributes": { "weight": 3 } }, { "key": "9937", "source": "417", "target": "338", "attributes": { "weight": 2 } }, { "key": "6558", "source": "417", "target": "1294", "attributes": { "weight": 2 } }, { "key": "1192", "source": "417", "target": "412", "attributes": { "weight": 1 } }, { "key": "1193", "source": "418", "target": "396", "attributes": { "weight": 3 } }, { "key": "37213", "source": "418", "target": "411", "attributes": { "weight": 1 } }, { "key": "34855", "source": "418", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9938", "source": "418", "target": "338", "attributes": { "weight": 2 } }, { "key": "1195", "source": "419", "target": "422", "attributes": { "weight": 5 } }, { "key": "3742", "source": "419", "target": "1035", "attributes": { "weight": 4 } }, { "key": "34005", "source": "419", "target": "1047", "attributes": { "weight": 1 } }, { "key": "8680", "source": "419", "target": "442", "attributes": { "weight": 2 } }, { "key": "31584", "source": "419", "target": "595", "attributes": { "weight": 1 } }, { "key": "9425", "source": "419", "target": "791", "attributes": { "weight": 2 } }, { "key": "2185", "source": "419", "target": "660", "attributes": { "weight": 6 } }, { "key": "9444", "source": "419", "target": "495", "attributes": { "weight": 2 } }, { "key": "2191", "source": "419", "target": "666", "attributes": { "weight": 6 } }, { "key": "9418", "source": "419", "target": "1380", "attributes": { "weight": 2 } }, { "key": "2701", "source": "419", "target": "788", "attributes": { "weight": 1 } }, { "key": "9435", "source": "419", "target": "297", "attributes": { "weight": 1 } }, { "key": "25604", "source": "419", "target": "787", "attributes": { "weight": 1 } }, { "key": "3750", "source": "419", "target": "1048", "attributes": { "weight": 2 } }, { "key": "2166", "source": "419", "target": "641", "attributes": { "weight": 6 } }, { "key": "9429", "source": "419", "target": "370", "attributes": { "weight": 1 } }, { "key": "9424", "source": "419", "target": "278", "attributes": { "weight": 2 } }, { "key": "9419", "source": "419", "target": "1037", "attributes": { "weight": 2 } }, { "key": "3748", "source": "419", "target": "1045", "attributes": { "weight": 3 } }, { "key": "9436", "source": "419", "target": "1553", "attributes": { "weight": 2 } }, { "key": "2181", "source": "419", "target": "655", "attributes": { "weight": 6 } }, { "key": "2169", "source": "419", "target": "164", "attributes": { "weight": 4 } }, { "key": "29619", "source": "419", "target": "1763", "attributes": { "weight": 1 } }, { "key": "3757", "source": "419", "target": "468", "attributes": { "weight": 5 } }, { "key": "3759", "source": "419", "target": "1062", "attributes": { "weight": 4 } }, { "key": "32158", "source": "419", "target": "1779", "attributes": { "weight": 1 } }, { "key": "2175", "source": "419", "target": "648", "attributes": { "weight": 1 } }, { "key": "2186", "source": "419", "target": "661", "attributes": { "weight": 5 } }, { "key": "2174", "source": "419", "target": "647", "attributes": { "weight": 2 } }, { "key": "2177", "source": "419", "target": "649", "attributes": { "weight": 6 } }, { "key": "9437", "source": "419", "target": "189", "attributes": { "weight": 2 } }, { "key": "2180", "source": "419", "target": "652", "attributes": { "weight": 5 } }, { "key": "2188", "source": "419", "target": "663", "attributes": { "weight": 5 } }, { "key": "2190", "source": "419", "target": "665", "attributes": { "weight": 3 } }, { "key": "9434", "source": "419", "target": "362", "attributes": { "weight": 2 } }, { "key": "3754", "source": "419", "target": "659", "attributes": { "weight": 4 } }, { "key": "11047", "source": "419", "target": "180", "attributes": { "weight": 2 } }, { "key": "2182", "source": "419", "target": "657", "attributes": { "weight": 6 } }, { "key": "9440", "source": "419", "target": "305", "attributes": { "weight": 2 } }, { "key": "13024", "source": "419", "target": "304", "attributes": { "weight": 1 } }, { "key": "3753", "source": "419", "target": "1050", "attributes": { "weight": 4 } }, { "key": "3744", "source": "419", "target": "1039", "attributes": { "weight": 3 } }, { "key": "2179", "source": "419", "target": "651", "attributes": { "weight": 5 } }, { "key": "11046", "source": "419", "target": "452", "attributes": { "weight": 2 } }, { "key": "3743", "source": "419", "target": "1036", "attributes": { "weight": 3 } }, { "key": "26122", "source": "419", "target": "1056", "attributes": { "weight": 1 } }, { "key": "9446", "source": "419", "target": "57", "attributes": { "weight": 2 } }, { "key": "9423", "source": "419", "target": "454", "attributes": { "weight": 2 } }, { "key": "18423", "source": "419", "target": "2140", "attributes": { "weight": 1 } }, { "key": "9420", "source": "419", "target": "435", "attributes": { "weight": 1 } }, { "key": "25856", "source": "419", "target": "220", "attributes": { "weight": 1 } }, { "key": "2172", "source": "419", "target": "354", "attributes": { "weight": 6 } }, { "key": "3756", "source": "419", "target": "171", "attributes": { "weight": 3 } }, { "key": "2173", "source": "419", "target": "646", "attributes": { "weight": 1 } }, { "key": "2171", "source": "419", "target": "645", "attributes": { "weight": 6 } }, { "key": "22275", "source": "419", "target": "794", "attributes": { "weight": 1 } }, { "key": "3751", "source": "419", "target": "168", "attributes": { "weight": 5 } }, { "key": "9443", "source": "419", "target": "310", "attributes": { "weight": 1 } }, { "key": "2168", "source": "419", "target": "643", "attributes": { "weight": 2 } }, { "key": "35781", "source": "419", "target": "790", "attributes": { "weight": 1 } }, { "key": "9426", "source": "419", "target": "1605", "attributes": { "weight": 1 } }, { "key": "2189", "source": "419", "target": "664", "attributes": { "weight": 6 } }, { "key": "1194", "source": "419", "target": "420", "attributes": { "weight": 1 } }, { "key": "29620", "source": "419", "target": "1253", "attributes": { "weight": 1 } }, { "key": "2187", "source": "419", "target": "662", "attributes": { "weight": 3 } }, { "key": "9422", "source": "419", "target": "1601", "attributes": { "weight": 2 } }, { "key": "3752", "source": "419", "target": "656", "attributes": { "weight": 4 } }, { "key": "9433", "source": "419", "target": "1610", "attributes": { "weight": 1 } }, { "key": "23741", "source": "419", "target": "1774", "attributes": { "weight": 1 } }, { "key": "9432", "source": "419", "target": "1609", "attributes": { "weight": 1 } }, { "key": "9421", "source": "419", "target": "1042", "attributes": { "weight": 3 } }, { "key": "2176", "source": "419", "target": "358", "attributes": { "weight": 5 } }, { "key": "2178", "source": "419", "target": "650", "attributes": { "weight": 3 } }, { "key": "9428", "source": "419", "target": "359", "attributes": { "weight": 2 } }, { "key": "3758", "source": "419", "target": "178", "attributes": { "weight": 4 } }, { "key": "10813", "source": "419", "target": "457", "attributes": { "weight": 1 } }, { "key": "2184", "source": "419", "target": "361", "attributes": { "weight": 5 } }, { "key": "9439", "source": "419", "target": "123", "attributes": { "weight": 1 } }, { "key": "9442", "source": "419", "target": "1613", "attributes": { "weight": 2 } }, { "key": "30702", "source": "419", "target": "889", "attributes": { "weight": 1 } }, { "key": "2170", "source": "419", "target": "644", "attributes": { "weight": 6 } }, { "key": "9430", "source": "419", "target": "1607", "attributes": { "weight": 2 } }, { "key": "9431", "source": "419", "target": "1608", "attributes": { "weight": 1 } }, { "key": "9445", "source": "419", "target": "669", "attributes": { "weight": 1 } }, { "key": "2167", "source": "419", "target": "642", "attributes": { "weight": 2 } }, { "key": "3746", "source": "419", "target": "357", "attributes": { "weight": 3 } }, { "key": "3745", "source": "419", "target": "223", "attributes": { "weight": 3 } }, { "key": "2183", "source": "419", "target": "658", "attributes": { "weight": 5 } }, { "key": "3749", "source": "419", "target": "1046", "attributes": { "weight": 2 } }, { "key": "2192", "source": "419", "target": "668", "attributes": { "weight": 5 } }, { "key": "9438", "source": "419", "target": "580", "attributes": { "weight": 3 } }, { "key": "26048", "source": "419", "target": "163", "attributes": { "weight": 1 } }, { "key": "9427", "source": "419", "target": "1053", "attributes": { "weight": 2 } }, { "key": "3755", "source": "419", "target": "1055", "attributes": { "weight": 3 } }, { "key": "9441", "source": "419", "target": "1060", "attributes": { "weight": 2 } }, { "key": "3747", "source": "419", "target": "1043", "attributes": { "weight": 4 } }, { "key": "14520", "source": "419", "target": "259", "attributes": { "weight": 1 } }, { "key": "1199", "source": "420", "target": "422", "attributes": { "weight": 3 } }, { "key": "1197", "source": "420", "target": "419", "attributes": { "weight": 1 } }, { "key": "1198", "source": "420", "target": "421", "attributes": { "weight": 1 } }, { "key": "17595", "source": "420", "target": "1801", "attributes": { "weight": 1 } }, { "key": "29639", "source": "421", "target": "1247", "attributes": { "weight": 1 } }, { "key": "29637", "source": "421", "target": "2885", "attributes": { "weight": 1 } }, { "key": "29635", "source": "421", "target": "674", "attributes": { "weight": 1 } }, { "key": "29645", "source": "421", "target": "2288", "attributes": { "weight": 1 } }, { "key": "29640", "source": "421", "target": "1253", "attributes": { "weight": 1 } }, { "key": "29631", "source": "421", "target": "2463", "attributes": { "weight": 1 } }, { "key": "29648", "source": "421", "target": "794", "attributes": { "weight": 1 } }, { "key": "32399", "source": "421", "target": "791", "attributes": { "weight": 1 } }, { "key": "28616", "source": "421", "target": "2782", "attributes": { "weight": 2 } }, { "key": "5159", "source": "421", "target": "1036", "attributes": { "weight": 6 } }, { "key": "14647", "source": "421", "target": "304", "attributes": { "weight": 2 } }, { "key": "29633", "source": "421", "target": "442", "attributes": { "weight": 1 } }, { "key": "29638", "source": "421", "target": "2887", "attributes": { "weight": 1 } }, { "key": "29646", "source": "421", "target": "473", "attributes": { "weight": 1 } }, { "key": "29641", "source": "421", "target": "468", "attributes": { "weight": 1 } }, { "key": "23882", "source": "421", "target": "1763", "attributes": { "weight": 3 } }, { "key": "29647", "source": "421", "target": "2116", "attributes": { "weight": 1 } }, { "key": "29634", "source": "421", "target": "2881", "attributes": { "weight": 1 } }, { "key": "32271", "source": "421", "target": "164", "attributes": { "weight": 1 } }, { "key": "29649", "source": "421", "target": "2119", "attributes": { "weight": 1 } }, { "key": "29632", "source": "421", "target": "435", "attributes": { "weight": 1 } }, { "key": "30451", "source": "421", "target": "1046", "attributes": { "weight": 1 } }, { "key": "22670", "source": "421", "target": "1037", "attributes": { "weight": 1 } }, { "key": "29643", "source": "421", "target": "362", "attributes": { "weight": 2 } }, { "key": "28615", "source": "421", "target": "1060", "attributes": { "weight": 3 } }, { "key": "1201", "source": "421", "target": "422", "attributes": { "weight": 2 } }, { "key": "26126", "source": "421", "target": "1056", "attributes": { "weight": 1 } }, { "key": "29650", "source": "421", "target": "1063", "attributes": { "weight": 1 } }, { "key": "23883", "source": "421", "target": "2465", "attributes": { "weight": 3 } }, { "key": "29636", "source": "421", "target": "1045", "attributes": { "weight": 2 } }, { "key": "29644", "source": "421", "target": "2115", "attributes": { "weight": 1 } }, { "key": "29642", "source": "421", "target": "472", "attributes": { "weight": 1 } }, { "key": "14648", "source": "421", "target": "319", "attributes": { "weight": 1 } }, { "key": "1200", "source": "421", "target": "420", "attributes": { "weight": 1 } }, { "key": "17468", "source": "421", "target": "358", "attributes": { "weight": 3 } }, { "key": "28614", "source": "421", "target": "359", "attributes": { "weight": 4 } }, { "key": "29630", "source": "421", "target": "130", "attributes": { "weight": 1 } }, { "key": "17607", "source": "422", "target": "790", "attributes": { "weight": 1 } }, { "key": "18430", "source": "422", "target": "5", "attributes": { "weight": 1 } }, { "key": "17608", "source": "422", "target": "1801", "attributes": { "weight": 1 } }, { "key": "1204", "source": "422", "target": "420", "attributes": { "weight": 3 } }, { "key": "1202", "source": "422", "target": "419", "attributes": { "weight": 5 } }, { "key": "21580", "source": "422", "target": "89", "attributes": { "weight": 1 } }, { "key": "1205", "source": "422", "target": "421", "attributes": { "weight": 2 } }, { "key": "1203", "source": "422", "target": "358", "attributes": { "weight": 5 } }, { "key": "32534", "source": "422", "target": "791", "attributes": { "weight": 1 } }, { "key": "29655", "source": "422", "target": "2116", "attributes": { "weight": 1 } }, { "key": "30745", "source": "422", "target": "788", "attributes": { "weight": 1 } }, { "key": "1206", "source": "422", "target": "423", "attributes": { "weight": 2 } }, { "key": "18429", "source": "422", "target": "2211", "attributes": { "weight": 1 } }, { "key": "18431", "source": "422", "target": "2140", "attributes": { "weight": 2 } }, { "key": "18432", "source": "422", "target": "1056", "attributes": { "weight": 1 } }, { "key": "32575", "source": "423", "target": "791", "attributes": { "weight": 1 } }, { "key": "17638", "source": "423", "target": "790", "attributes": { "weight": 1 } }, { "key": "1207", "source": "423", "target": "422", "attributes": { "weight": 2 } }, { "key": "15214", "source": "424", "target": "672", "attributes": { "weight": 2 } }, { "key": "6603", "source": "424", "target": "476", "attributes": { "weight": 3 } }, { "key": "23565", "source": "424", "target": "2252", "attributes": { "weight": 1 } }, { "key": "29368", "source": "424", "target": "861", "attributes": { "weight": 1 } }, { "key": "29365", "source": "424", "target": "857", "attributes": { "weight": 2 } }, { "key": "3011", "source": "424", "target": "7", "attributes": { "weight": 1 } }, { "key": "15213", "source": "424", "target": "455", "attributes": { "weight": 3 } }, { "key": "6601", "source": "424", "target": "467", "attributes": { "weight": 4 } }, { "key": "6605", "source": "424", "target": "490", "attributes": { "weight": 4 } }, { "key": "32306", "source": "424", "target": "2112", "attributes": { "weight": 1 } }, { "key": "32308", "source": "424", "target": "2211", "attributes": { "weight": 1 } }, { "key": "6600", "source": "424", "target": "188", "attributes": { "weight": 5 } }, { "key": "23564", "source": "424", "target": "2248", "attributes": { "weight": 1 } }, { "key": "6599", "source": "424", "target": "1356", "attributes": { "weight": 1 } }, { "key": "32187", "source": "424", "target": "1219", "attributes": { "weight": 1 } }, { "key": "6598", "source": "424", "target": "183", "attributes": { "weight": 5 } }, { "key": "31497", "source": "424", "target": "185", "attributes": { "weight": 1 } }, { "key": "29369", "source": "424", "target": "52", "attributes": { "weight": 1 } }, { "key": "16687", "source": "424", "target": "73", "attributes": { "weight": 1 } }, { "key": "31574", "source": "424", "target": "8", "attributes": { "weight": 1 } }, { "key": "23566", "source": "424", "target": "1312", "attributes": { "weight": 1 } }, { "key": "6602", "source": "424", "target": "189", "attributes": { "weight": 4 } }, { "key": "29367", "source": "424", "target": "674", "attributes": { "weight": 1 } }, { "key": "32309", "source": "424", "target": "352", "attributes": { "weight": 2 } }, { "key": "31575", "source": "424", "target": "823", "attributes": { "weight": 1 } }, { "key": "32186", "source": "424", "target": "435", "attributes": { "weight": 3 } }, { "key": "15212", "source": "424", "target": "454", "attributes": { "weight": 4 } }, { "key": "6597", "source": "424", "target": "182", "attributes": { "weight": 2 } }, { "key": "29364", "source": "424", "target": "856", "attributes": { "weight": 2 } }, { "key": "3010", "source": "424", "target": "791", "attributes": { "weight": 3 } }, { "key": "31499", "source": "424", "target": "485", "attributes": { "weight": 1 } }, { "key": "37060", "source": "424", "target": "1365", "attributes": { "weight": 1 } }, { "key": "3012", "source": "424", "target": "595", "attributes": { "weight": 2 } }, { "key": "23303", "source": "424", "target": "223", "attributes": { "weight": 2 } }, { "key": "29366", "source": "424", "target": "1522", "attributes": { "weight": 1 } }, { "key": "31496", "source": "424", "target": "3058", "attributes": { "weight": 1 } }, { "key": "31495", "source": "424", "target": "438", "attributes": { "weight": 1 } }, { "key": "16684", "source": "424", "target": "434", "attributes": { "weight": 1 } }, { "key": "31498", "source": "424", "target": "3059", "attributes": { "weight": 1 } }, { "key": "30494", "source": "424", "target": "479", "attributes": { "weight": 1 } }, { "key": "32690", "source": "424", "target": "1125", "attributes": { "weight": 1 } }, { "key": "32189", "source": "424", "target": "472", "attributes": { "weight": 5 } }, { "key": "6606", "source": "424", "target": "193", "attributes": { "weight": 3 } }, { "key": "16685", "source": "424", "target": "70", "attributes": { "weight": 1 } }, { "key": "37432", "source": "424", "target": "1247", "attributes": { "weight": 1 } }, { "key": "1229", "source": "424", "target": "224", "attributes": { "weight": 5 } }, { "key": "32188", "source": "424", "target": "135", "attributes": { "weight": 5 } }, { "key": "29371", "source": "424", "target": "869", "attributes": { "weight": 1 } }, { "key": "32689", "source": "424", "target": "2258", "attributes": { "weight": 2 } }, { "key": "32688", "source": "424", "target": "51", "attributes": { "weight": 2 } }, { "key": "1208", "source": "424", "target": "57", "attributes": { "weight": 3 } }, { "key": "32307", "source": "424", "target": "2114", "attributes": { "weight": 1 } }, { "key": "23242", "source": "424", "target": "192", "attributes": { "weight": 2 } }, { "key": "33191", "source": "424", "target": "425", "attributes": { "weight": 2 } }, { "key": "6604", "source": "424", "target": "1369", "attributes": { "weight": 3 } }, { "key": "16686", "source": "424", "target": "1389", "attributes": { "weight": 1 } }, { "key": "29370", "source": "424", "target": "232", "attributes": { "weight": 3 } }, { "key": "23243", "source": "424", "target": "495", "attributes": { "weight": 4 } }, { "key": "10798", "source": "424", "target": "457", "attributes": { "weight": 1 } }, { "key": "23563", "source": "424", "target": "220", "attributes": { "weight": 2 } }, { "key": "23241", "source": "424", "target": "187", "attributes": { "weight": 2 } }, { "key": "36983", "source": "424", "target": "3341", "attributes": { "weight": 1 } }, { "key": "26292", "source": "424", "target": "1258", "attributes": { "weight": 1 } }, { "key": "33299", "source": "425", "target": "494", "attributes": { "weight": 1 } }, { "key": "33272", "source": "425", "target": "674", "attributes": { "weight": 1 } }, { "key": "32326", "source": "425", "target": "791", "attributes": { "weight": 1 } }, { "key": "19520", "source": "425", "target": "449", "attributes": { "weight": 1 } }, { "key": "33268", "source": "425", "target": "49", "attributes": { "weight": 1 } }, { "key": "33281", "source": "425", "target": "470", "attributes": { "weight": 1 } }, { "key": "36984", "source": "425", "target": "1357", "attributes": { "weight": 1 } }, { "key": "33286", "source": "425", "target": "474", "attributes": { "weight": 1 } }, { "key": "33296", "source": "425", "target": "672", "attributes": { "weight": 1 } }, { "key": "33274", "source": "425", "target": "450", "attributes": { "weight": 1 } }, { "key": "1254", "source": "425", "target": "183", "attributes": { "weight": 1 } }, { "key": "33287", "source": "425", "target": "1088", "attributes": { "weight": 1 } }, { "key": "33269", "source": "425", "target": "50", "attributes": { "weight": 1 } }, { "key": "19521", "source": "425", "target": "489", "attributes": { "weight": 1 } }, { "key": "33292", "source": "425", "target": "2109", "attributes": { "weight": 1 } }, { "key": "4413", "source": "425", "target": "468", "attributes": { "weight": 3 } }, { "key": "6619", "source": "425", "target": "445", "attributes": { "weight": 3 } }, { "key": "33284", "source": "425", "target": "229", "attributes": { "weight": 1 } }, { "key": "26417", "source": "425", "target": "454", "attributes": { "weight": 3 } }, { "key": "33280", "source": "425", "target": "135", "attributes": { "weight": 1 } }, { "key": "33277", "source": "425", "target": "1738", "attributes": { "weight": 1 } }, { "key": "33289", "source": "425", "target": "1744", "attributes": { "weight": 1 } }, { "key": "6620", "source": "425", "target": "458", "attributes": { "weight": 2 } }, { "key": "33279", "source": "425", "target": "53", "attributes": { "weight": 1 } }, { "key": "33276", "source": "425", "target": "1358", "attributes": { "weight": 2 } }, { "key": "33033", "source": "425", "target": "1355", "attributes": { "weight": 1 } }, { "key": "8479", "source": "425", "target": "220", "attributes": { "weight": 3 } }, { "key": "26418", "source": "425", "target": "188", "attributes": { "weight": 3 } }, { "key": "27224", "source": "425", "target": "452", "attributes": { "weight": 2 } }, { "key": "33265", "source": "425", "target": "1107", "attributes": { "weight": 1 } }, { "key": "33264", "source": "425", "target": "429", "attributes": { "weight": 1 } }, { "key": "27222", "source": "425", "target": "130", "attributes": { "weight": 2 } }, { "key": "36986", "source": "425", "target": "483", "attributes": { "weight": 1 } }, { "key": "33278", "source": "425", "target": "464", "attributes": { "weight": 1 } }, { "key": "36987", "source": "425", "target": "3341", "attributes": { "weight": 1 } }, { "key": "33288", "source": "425", "target": "191", "attributes": { "weight": 1 } }, { "key": "1209", "source": "425", "target": "426", "attributes": { "weight": 1 } }, { "key": "33295", "source": "425", "target": "1374", "attributes": { "weight": 1 } }, { "key": "27226", "source": "425", "target": "479", "attributes": { "weight": 1 } }, { "key": "33270", "source": "425", "target": "440", "attributes": { "weight": 1 } }, { "key": "33294", "source": "425", "target": "488", "attributes": { "weight": 1 } }, { "key": "6624", "source": "425", "target": "56", "attributes": { "weight": 3 } }, { "key": "27225", "source": "425", "target": "1363", "attributes": { "weight": 1 } }, { "key": "33293", "source": "425", "target": "487", "attributes": { "weight": 1 } }, { "key": "33273", "source": "425", "target": "182", "attributes": { "weight": 1 } }, { "key": "6622", "source": "425", "target": "54", "attributes": { "weight": 3 } }, { "key": "33291", "source": "425", "target": "482", "attributes": { "weight": 1 } }, { "key": "33285", "source": "425", "target": "190", "attributes": { "weight": 1 } }, { "key": "36985", "source": "425", "target": "462", "attributes": { "weight": 1 } }, { "key": "6621", "source": "425", "target": "459", "attributes": { "weight": 1 } }, { "key": "27227", "source": "425", "target": "495", "attributes": { "weight": 2 } }, { "key": "33298", "source": "425", "target": "340", "attributes": { "weight": 1 } }, { "key": "29384", "source": "425", "target": "232", "attributes": { "weight": 1 } }, { "key": "6623", "source": "425", "target": "231", "attributes": { "weight": 3 } }, { "key": "33275", "source": "425", "target": "451", "attributes": { "weight": 1 } }, { "key": "33290", "source": "425", "target": "427", "attributes": { "weight": 1 } }, { "key": "33271", "source": "425", "target": "441", "attributes": { "weight": 1 } }, { "key": "33266", "source": "425", "target": "1354", "attributes": { "weight": 1 } }, { "key": "29383", "source": "425", "target": "857", "attributes": { "weight": 2 } }, { "key": "33297", "source": "425", "target": "233", "attributes": { "weight": 1 } }, { "key": "33283", "source": "425", "target": "472", "attributes": { "weight": 1 } }, { "key": "33282", "source": "425", "target": "471", "attributes": { "weight": 1 } }, { "key": "26419", "source": "425", "target": "189", "attributes": { "weight": 3 } }, { "key": "8480", "source": "425", "target": "442", "attributes": { "weight": 3 } }, { "key": "33267", "source": "425", "target": "424", "attributes": { "weight": 2 } }, { "key": "27223", "source": "425", "target": "223", "attributes": { "weight": 3 } }, { "key": "34983", "source": "426", "target": "13", "attributes": { "weight": 1 } }, { "key": "6823", "source": "426", "target": "193", "attributes": { "weight": 1 } }, { "key": "27857", "source": "426", "target": "891", "attributes": { "weight": 1 } }, { "key": "27405", "source": "426", "target": "2670", "attributes": { "weight": 1 } }, { "key": "34982", "source": "426", "target": "3", "attributes": { "weight": 1 } }, { "key": "23246", "source": "426", "target": "192", "attributes": { "weight": 1 } }, { "key": "33414", "source": "426", "target": "52", "attributes": { "weight": 1 } }, { "key": "1211", "source": "426", "target": "57", "attributes": { "weight": 2 } }, { "key": "37450", "source": "426", "target": "435", "attributes": { "weight": 1 } }, { "key": "34985", "source": "426", "target": "14", "attributes": { "weight": 1 } }, { "key": "15300", "source": "426", "target": "454", "attributes": { "weight": 1 } }, { "key": "6818", "source": "426", "target": "224", "attributes": { "weight": 1 } }, { "key": "15302", "source": "426", "target": "189", "attributes": { "weight": 1 } }, { "key": "23247", "source": "426", "target": "495", "attributes": { "weight": 2 } }, { "key": "6820", "source": "426", "target": "183", "attributes": { "weight": 4 } }, { "key": "6819", "source": "426", "target": "182", "attributes": { "weight": 1 } }, { "key": "27404", "source": "426", "target": "339", "attributes": { "weight": 2 } }, { "key": "6821", "source": "426", "target": "467", "attributes": { "weight": 1 } }, { "key": "34986", "source": "426", "target": "352", "attributes": { "weight": 1 } }, { "key": "6822", "source": "426", "target": "476", "attributes": { "weight": 1 } }, { "key": "27858", "source": "426", "target": "791", "attributes": { "weight": 2 } }, { "key": "15301", "source": "426", "target": "188", "attributes": { "weight": 1 } }, { "key": "32209", "source": "426", "target": "472", "attributes": { "weight": 4 } }, { "key": "32208", "source": "426", "target": "135", "attributes": { "weight": 5 } }, { "key": "34984", "source": "426", "target": "595", "attributes": { "weight": 1 } }, { "key": "1210", "source": "426", "target": "425", "attributes": { "weight": 1 } }, { "key": "1212", "source": "427", "target": "57", "attributes": { "weight": 2 } }, { "key": "1545", "source": "427", "target": "188", "attributes": { "weight": 1 } }, { "key": "1547", "source": "427", "target": "193", "attributes": { "weight": 1 } }, { "key": "29049", "source": "427", "target": "495", "attributes": { "weight": 1 } }, { "key": "29135", "source": "427", "target": "500", "attributes": { "weight": 1 } }, { "key": "31551", "source": "427", "target": "135", "attributes": { "weight": 1 } }, { "key": "1543", "source": "427", "target": "183", "attributes": { "weight": 1 } }, { "key": "25110", "source": "427", "target": "454", "attributes": { "weight": 2 } }, { "key": "29448", "source": "427", "target": "232", "attributes": { "weight": 1 } }, { "key": "32589", "source": "427", "target": "791", "attributes": { "weight": 1 } }, { "key": "25112", "source": "427", "target": "189", "attributes": { "weight": 2 } }, { "key": "25111", "source": "427", "target": "1547", "attributes": { "weight": 1 } }, { "key": "1546", "source": "427", "target": "490", "attributes": { "weight": 1 } }, { "key": "31356", "source": "427", "target": "674", "attributes": { "weight": 1 } }, { "key": "1544", "source": "427", "target": "455", "attributes": { "weight": 1 } }, { "key": "33636", "source": "427", "target": "425", "attributes": { "weight": 1 } }, { "key": "27293", "source": "427", "target": "52", "attributes": { "weight": 2 } }, { "key": "36101", "source": "428", "target": "186", "attributes": { "weight": 1 } }, { "key": "1213", "source": "428", "target": "57", "attributes": { "weight": 2 } }, { "key": "25389", "source": "428", "target": "433", "attributes": { "weight": 1 } }, { "key": "29514", "source": "428", "target": "232", "attributes": { "weight": 1 } }, { "key": "29053", "source": "428", "target": "495", "attributes": { "weight": 1 } }, { "key": "36097", "source": "428", "target": "224", "attributes": { "weight": 1 } }, { "key": "36104", "source": "428", "target": "2258", "attributes": { "weight": 1 } }, { "key": "21601", "source": "428", "target": "358", "attributes": { "weight": 1 } }, { "key": "31554", "source": "428", "target": "672", "attributes": { "weight": 1 } }, { "key": "36099", "source": "428", "target": "448", "attributes": { "weight": 1 } }, { "key": "36096", "source": "428", "target": "221", "attributes": { "weight": 1 } }, { "key": "36107", "source": "428", "target": "2262", "attributes": { "weight": 1 } }, { "key": "36098", "source": "428", "target": "2245", "attributes": { "weight": 1 } }, { "key": "36102", "source": "428", "target": "1998", "attributes": { "weight": 1 } }, { "key": "11273", "source": "428", "target": "452", "attributes": { "weight": 1 } }, { "key": "36103", "source": "428", "target": "2253", "attributes": { "weight": 1 } }, { "key": "36106", "source": "428", "target": "1741", "attributes": { "weight": 1 } }, { "key": "32600", "source": "428", "target": "791", "attributes": { "weight": 1 } }, { "key": "36108", "source": "428", "target": "235", "attributes": { "weight": 1 } }, { "key": "29143", "source": "428", "target": "500", "attributes": { "weight": 1 } }, { "key": "25114", "source": "428", "target": "1547", "attributes": { "weight": 1 } }, { "key": "36100", "source": "428", "target": "2248", "attributes": { "weight": 1 } }, { "key": "23917", "source": "429", "target": "471", "attributes": { "weight": 2 } }, { "key": "17125", "source": "429", "target": "2108", "attributes": { "weight": 2 } }, { "key": "4268", "source": "429", "target": "468", "attributes": { "weight": 2 } }, { "key": "19133", "source": "429", "target": "222", "attributes": { "weight": 1 } }, { "key": "28926", "source": "429", "target": "479", "attributes": { "weight": 1 } }, { "key": "19134", "source": "429", "target": "2106", "attributes": { "weight": 1 } }, { "key": "16602", "source": "429", "target": "434", "attributes": { "weight": 1 } }, { "key": "19157", "source": "429", "target": "1741", "attributes": { "weight": 1 } }, { "key": "23922", "source": "429", "target": "1711", "attributes": { "weight": 3 } }, { "key": "23913", "source": "429", "target": "3", "attributes": { "weight": 2 } }, { "key": "23918", "source": "429", "target": "2469", "attributes": { "weight": 2 } }, { "key": "19164", "source": "429", "target": "2109", "attributes": { "weight": 3 } }, { "key": "17123", "source": "429", "target": "1161", "attributes": { "weight": 1 } }, { "key": "23911", "source": "429", "target": "437", "attributes": { "weight": 2 } }, { "key": "19156", "source": "429", "target": "472", "attributes": { "weight": 5 } }, { "key": "19129", "source": "429", "target": "130", "attributes": { "weight": 3 } }, { "key": "33167", "source": "429", "target": "425", "attributes": { "weight": 1 } }, { "key": "19141", "source": "429", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19130", "source": "429", "target": "221", "attributes": { "weight": 1 } }, { "key": "11823", "source": "429", "target": "1363", "attributes": { "weight": 2 } }, { "key": "19163", "source": "429", "target": "2267", "attributes": { "weight": 1 } }, { "key": "19161", "source": "429", "target": "476", "attributes": { "weight": 1 } }, { "key": "34923", "source": "429", "target": "352", "attributes": { "weight": 1 } }, { "key": "19139", "source": "429", "target": "1023", "attributes": { "weight": 1 } }, { "key": "33168", "source": "429", "target": "473", "attributes": { "weight": 1 } }, { "key": "8257", "source": "429", "target": "442", "attributes": { "weight": 3 } }, { "key": "19137", "source": "429", "target": "223", "attributes": { "weight": 5 } }, { "key": "19146", "source": "429", "target": "453", "attributes": { "weight": 1 } }, { "key": "19140", "source": "429", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19170", "source": "429", "target": "498", "attributes": { "weight": 1 } }, { "key": "23924", "source": "429", "target": "1375", "attributes": { "weight": 1 } }, { "key": "6571", "source": "429", "target": "183", "attributes": { "weight": 2 } }, { "key": "6573", "source": "429", "target": "189", "attributes": { "weight": 5 } }, { "key": "16608", "source": "429", "target": "1389", "attributes": { "weight": 1 } }, { "key": "16607", "source": "429", "target": "1337", "attributes": { "weight": 1 } }, { "key": "16610", "source": "429", "target": "497", "attributes": { "weight": 1 } }, { "key": "26980", "source": "429", "target": "2645", "attributes": { "weight": 2 } }, { "key": "6574", "source": "429", "target": "231", "attributes": { "weight": 5 } }, { "key": "19158", "source": "429", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19145", "source": "429", "target": "1832", "attributes": { "weight": 3 } }, { "key": "16600", "source": "429", "target": "1754", "attributes": { "weight": 1 } }, { "key": "19131", "source": "429", "target": "435", "attributes": { "weight": 2 } }, { "key": "19160", "source": "429", "target": "2261", "attributes": { "weight": 1 } }, { "key": "1219", "source": "429", "target": "193", "attributes": { "weight": 2 } }, { "key": "19153", "source": "429", "target": "464", "attributes": { "weight": 1 } }, { "key": "19155", "source": "429", "target": "1836", "attributes": { "weight": 2 } }, { "key": "11824", "source": "429", "target": "135", "attributes": { "weight": 6 } }, { "key": "33169", "source": "429", "target": "2110", "attributes": { "weight": 1 } }, { "key": "23919", "source": "429", "target": "1088", "attributes": { "weight": 2 } }, { "key": "23920", "source": "429", "target": "1125", "attributes": { "weight": 3 } }, { "key": "19144", "source": "429", "target": "2248", "attributes": { "weight": 2 } }, { "key": "23923", "source": "429", "target": "233", "attributes": { "weight": 2 } }, { "key": "23914", "source": "429", "target": "455", "attributes": { "weight": 2 } }, { "key": "19154", "source": "429", "target": "1247", "attributes": { "weight": 2 } }, { "key": "19138", "source": "429", "target": "2025", "attributes": { "weight": 1 } }, { "key": "27212", "source": "429", "target": "57", "attributes": { "weight": 1 } }, { "key": "31571", "source": "429", "target": "595", "attributes": { "weight": 2 } }, { "key": "19166", "source": "429", "target": "489", "attributes": { "weight": 2 } }, { "key": "26288", "source": "429", "target": "1258", "attributes": { "weight": 1 } }, { "key": "26287", "source": "429", "target": "1111", "attributes": { "weight": 1 } }, { "key": "23509", "source": "429", "target": "220", "attributes": { "weight": 3 } }, { "key": "19135", "source": "429", "target": "438", "attributes": { "weight": 1 } }, { "key": "19136", "source": "429", "target": "51", "attributes": { "weight": 2 } }, { "key": "23921", "source": "429", "target": "2470", "attributes": { "weight": 2 } }, { "key": "35269", "source": "429", "target": "50", "attributes": { "weight": 1 } }, { "key": "32686", "source": "429", "target": "2258", "attributes": { "weight": 3 } }, { "key": "19167", "source": "429", "target": "1751", "attributes": { "weight": 1 } }, { "key": "23301", "source": "429", "target": "1121", "attributes": { "weight": 1 } }, { "key": "32949", "source": "429", "target": "154", "attributes": { "weight": 1 } }, { "key": "1218", "source": "429", "target": "490", "attributes": { "weight": 2 } }, { "key": "23915", "source": "429", "target": "54", "attributes": { "weight": 2 } }, { "key": "16606", "source": "429", "target": "2095", "attributes": { "weight": 2 } }, { "key": "19152", "source": "429", "target": "459", "attributes": { "weight": 2 } }, { "key": "16603", "source": "429", "target": "674", "attributes": { "weight": 4 } }, { "key": "16605", "source": "429", "target": "70", "attributes": { "weight": 2 } }, { "key": "26982", "source": "429", "target": "1219", "attributes": { "weight": 3 } }, { "key": "18314", "source": "429", "target": "1092", "attributes": { "weight": 1 } }, { "key": "30750", "source": "429", "target": "470", "attributes": { "weight": 2 } }, { "key": "16604", "source": "429", "target": "1118", "attributes": { "weight": 2 } }, { "key": "19128", "source": "429", "target": "1808", "attributes": { "weight": 1 } }, { "key": "32299", "source": "429", "target": "791", "attributes": { "weight": 1 } }, { "key": "17126", "source": "429", "target": "2111", "attributes": { "weight": 2 } }, { "key": "10949", "source": "429", "target": "452", "attributes": { "weight": 3 } }, { "key": "19148", "source": "429", "target": "1356", "attributes": { "weight": 1 } }, { "key": "19149", "source": "429", "target": "1998", "attributes": { "weight": 1 } }, { "key": "19132", "source": "429", "target": "1522", "attributes": { "weight": 1 } }, { "key": "35794", "source": "429", "target": "440", "attributes": { "weight": 1 } }, { "key": "19168", "source": "429", "target": "235", "attributes": { "weight": 1 } }, { "key": "6572", "source": "429", "target": "188", "attributes": { "weight": 4 } }, { "key": "27211", "source": "429", "target": "52", "attributes": { "weight": 2 } }, { "key": "23912", "source": "429", "target": "446", "attributes": { "weight": 3 } }, { "key": "10793", "source": "429", "target": "457", "attributes": { "weight": 2 } }, { "key": "26983", "source": "429", "target": "1282", "attributes": { "weight": 3 } }, { "key": "12123", "source": "429", "target": "1535", "attributes": { "weight": 1 } }, { "key": "6570", "source": "429", "target": "224", "attributes": { "weight": 3 } }, { "key": "17124", "source": "429", "target": "449", "attributes": { "weight": 2 } }, { "key": "33170", "source": "429", "target": "672", "attributes": { "weight": 1 } }, { "key": "19143", "source": "429", "target": "450", "attributes": { "weight": 2 } }, { "key": "10388", "source": "429", "target": "225", "attributes": { "weight": 2 } }, { "key": "23916", "source": "429", "target": "228", "attributes": { "weight": 2 } }, { "key": "23510", "source": "429", "target": "1312", "attributes": { "weight": 1 } }, { "key": "19169", "source": "429", "target": "2275", "attributes": { "weight": 1 } }, { "key": "12124", "source": "429", "target": "1564", "attributes": { "weight": 1 } }, { "key": "6575", "source": "429", "target": "495", "attributes": { "weight": 2 } }, { "key": "19162", "source": "429", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19147", "source": "429", "target": "186", "attributes": { "weight": 1 } }, { "key": "26386", "source": "429", "target": "454", "attributes": { "weight": 1 } }, { "key": "16601", "source": "429", "target": "59", "attributes": { "weight": 2 } }, { "key": "19142", "source": "429", "target": "448", "attributes": { "weight": 1 } }, { "key": "16609", "source": "429", "target": "73", "attributes": { "weight": 2 } }, { "key": "19159", "source": "429", "target": "1838", "attributes": { "weight": 1 } }, { "key": "19150", "source": "429", "target": "2088", "attributes": { "weight": 1 } }, { "key": "26981", "source": "429", "target": "2105", "attributes": { "weight": 1 } }, { "key": "19151", "source": "429", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19165", "source": "429", "target": "2271", "attributes": { "weight": 1 } }, { "key": "9158", "source": "430", "target": "34", "attributes": { "weight": 1 } }, { "key": "9170", "source": "430", "target": "339", "attributes": { "weight": 2 } }, { "key": "9194", "source": "430", "target": "1590", "attributes": { "weight": 1 } }, { "key": "9177", "source": "430", "target": "1583", "attributes": { "weight": 1 } }, { "key": "9165", "source": "430", "target": "36", "attributes": { "weight": 1 } }, { "key": "9209", "source": "430", "target": "1597", "attributes": { "weight": 1 } }, { "key": "9199", "source": "430", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9164", "source": "430", "target": "1573", "attributes": { "weight": 1 } }, { "key": "9160", "source": "430", "target": "889", "attributes": { "weight": 2 } }, { "key": "9167", "source": "430", "target": "50", "attributes": { "weight": 1 } }, { "key": "9191", "source": "430", "target": "471", "attributes": { "weight": 2 } }, { "key": "11827", "source": "430", "target": "135", "attributes": { "weight": 1 } }, { "key": "9212", "source": "430", "target": "495", "attributes": { "weight": 1 } }, { "key": "9168", "source": "430", "target": "223", "attributes": { "weight": 1 } }, { "key": "9185", "source": "430", "target": "1588", "attributes": { "weight": 1 } }, { "key": "9159", "source": "430", "target": "1354", "attributes": { "weight": 1 } }, { "key": "8268", "source": "430", "target": "1087", "attributes": { "weight": 3 } }, { "key": "9186", "source": "430", "target": "791", "attributes": { "weight": 2 } }, { "key": "9166", "source": "430", "target": "1574", "attributes": { "weight": 1 } }, { "key": "30332", "source": "430", "target": "1046", "attributes": { "weight": 1 } }, { "key": "8267", "source": "430", "target": "442", "attributes": { "weight": 5 } }, { "key": "9188", "source": "430", "target": "1121", "attributes": { "weight": 2 } }, { "key": "9207", "source": "430", "target": "1596", "attributes": { "weight": 1 } }, { "key": "9200", "source": "430", "target": "42", "attributes": { "weight": 1 } }, { "key": "9171", "source": "430", "target": "225", "attributes": { "weight": 2 } }, { "key": "9184", "source": "430", "target": "1586", "attributes": { "weight": 1 } }, { "key": "25904", "source": "430", "target": "1367", "attributes": { "weight": 1 } }, { "key": "9169", "source": "430", "target": "1576", "attributes": { "weight": 1 } }, { "key": "9179", "source": "430", "target": "452", "attributes": { "weight": 2 } }, { "key": "9197", "source": "430", "target": "1591", "attributes": { "weight": 1 } }, { "key": "9211", "source": "430", "target": "493", "attributes": { "weight": 2 } }, { "key": "9157", "source": "430", "target": "1571", "attributes": { "weight": 1 } }, { "key": "9213", "source": "430", "target": "154", "attributes": { "weight": 1 } }, { "key": "9176", "source": "430", "target": "1581", "attributes": { "weight": 1 } }, { "key": "9183", "source": "430", "target": "1585", "attributes": { "weight": 1 } }, { "key": "9180", "source": "430", "target": "454", "attributes": { "weight": 2 } }, { "key": "9161", "source": "430", "target": "1572", "attributes": { "weight": 1 } }, { "key": "9190", "source": "430", "target": "228", "attributes": { "weight": 2 } }, { "key": "9187", "source": "430", "target": "468", "attributes": { "weight": 1 } }, { "key": "9198", "source": "430", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9193", "source": "430", "target": "473", "attributes": { "weight": 1 } }, { "key": "1220", "source": "430", "target": "224", "attributes": { "weight": 1 } }, { "key": "9192", "source": "430", "target": "1589", "attributes": { "weight": 1 } }, { "key": "9173", "source": "430", "target": "1580", "attributes": { "weight": 1 } }, { "key": "9181", "source": "430", "target": "1584", "attributes": { "weight": 1 } }, { "key": "9195", "source": "430", "target": "474", "attributes": { "weight": 1 } }, { "key": "9208", "source": "430", "target": "894", "attributes": { "weight": 2 } }, { "key": "9196", "source": "430", "target": "41", "attributes": { "weight": 1 } }, { "key": "9203", "source": "430", "target": "1593", "attributes": { "weight": 1 } }, { "key": "9204", "source": "430", "target": "595", "attributes": { "weight": 1 } }, { "key": "9210", "source": "430", "target": "233", "attributes": { "weight": 2 } }, { "key": "9206", "source": "430", "target": "1595", "attributes": { "weight": 1 } }, { "key": "9175", "source": "430", "target": "358", "attributes": { "weight": 2 } }, { "key": "9162", "source": "430", "target": "130", "attributes": { "weight": 3 } }, { "key": "9205", "source": "430", "target": "1594", "attributes": { "weight": 1 } }, { "key": "31839", "source": "430", "target": "2115", "attributes": { "weight": 1 } }, { "key": "9201", "source": "430", "target": "304", "attributes": { "weight": 1 } }, { "key": "9182", "source": "430", "target": "52", "attributes": { "weight": 1 } }, { "key": "9202", "source": "430", "target": "231", "attributes": { "weight": 1 } }, { "key": "9189", "source": "430", "target": "470", "attributes": { "weight": 2 } }, { "key": "9174", "source": "430", "target": "39", "attributes": { "weight": 1 } }, { "key": "9163", "source": "430", "target": "1520", "attributes": { "weight": 1 } }, { "key": "9178", "source": "430", "target": "1115", "attributes": { "weight": 1 } }, { "key": "9172", "source": "430", "target": "1579", "attributes": { "weight": 1 } }, { "key": "26388", "source": "431", "target": "189", "attributes": { "weight": 1 } }, { "key": "10983", "source": "431", "target": "452", "attributes": { "weight": 1 } }, { "key": "19238", "source": "431", "target": "2189", "attributes": { "weight": 1 } }, { "key": "1223", "source": "431", "target": "193", "attributes": { "weight": 1 } }, { "key": "19237", "source": "431", "target": "489", "attributes": { "weight": 1 } }, { "key": "35275", "source": "431", "target": "445", "attributes": { "weight": 1 } }, { "key": "1222", "source": "431", "target": "183", "attributes": { "weight": 1 } }, { "key": "19235", "source": "431", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19236", "source": "431", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19234", "source": "431", "target": "1756", "attributes": { "weight": 1 } }, { "key": "3880", "source": "432", "target": "460", "attributes": { "weight": 2 } }, { "key": "3888", "source": "432", "target": "466", "attributes": { "weight": 2 } }, { "key": "3909", "source": "432", "target": "487", "attributes": { "weight": 3 } }, { "key": "3862", "source": "432", "target": "339", "attributes": { "weight": 2 } }, { "key": "3895", "source": "432", "target": "471", "attributes": { "weight": 2 } }, { "key": "19241", "source": "432", "target": "489", "attributes": { "weight": 1 } }, { "key": "3840", "source": "432", "target": "1065", "attributes": { "weight": 1 } }, { "key": "27214", "source": "432", "target": "57", "attributes": { "weight": 1 } }, { "key": "3867", "source": "432", "target": "183", "attributes": { "weight": 2 } }, { "key": "29837", "source": "432", "target": "1024", "attributes": { "weight": 1 } }, { "key": "29111", "source": "432", "target": "488", "attributes": { "weight": 1 } }, { "key": "29362", "source": "432", "target": "857", "attributes": { "weight": 1 } }, { "key": "3894", "source": "432", "target": "228", "attributes": { "weight": 3 } }, { "key": "3872", "source": "432", "target": "891", "attributes": { "weight": 2 } }, { "key": "19239", "source": "432", "target": "221", "attributes": { "weight": 1 } }, { "key": "32950", "source": "432", "target": "154", "attributes": { "weight": 1 } }, { "key": "19240", "source": "432", "target": "1812", "attributes": { "weight": 1 } }, { "key": "3870", "source": "432", "target": "454", "attributes": { "weight": 2 } }, { "key": "3883", "source": "432", "target": "1078", "attributes": { "weight": 2 } }, { "key": "3884", "source": "432", "target": "461", "attributes": { "weight": 2 } }, { "key": "22834", "source": "432", "target": "3417", "attributes": { "weight": 1 } }, { "key": "3899", "source": "432", "target": "1087", "attributes": { "weight": 3 } }, { "key": "3898", "source": "432", "target": "1086", "attributes": { "weight": 2 } }, { "key": "3906", "source": "432", "target": "1090", "attributes": { "weight": 3 } }, { "key": "30698", "source": "432", "target": "889", "attributes": { "weight": 1 } }, { "key": "3878", "source": "432", "target": "1064", "attributes": { "weight": 2 } }, { "key": "3905", "source": "432", "target": "1089", "attributes": { "weight": 2 } }, { "key": "29110", "source": "432", "target": "447", "attributes": { "weight": 1 } }, { "key": "17332", "source": "432", "target": "358", "attributes": { "weight": 1 } }, { "key": "3859", "source": "432", "target": "433", "attributes": { "weight": 3 } }, { "key": "9942", "source": "432", "target": "494", "attributes": { "weight": 2 } }, { "key": "3875", "source": "432", "target": "1073", "attributes": { "weight": 2 } }, { "key": "3601", "source": "432", "target": "1025", "attributes": { "weight": 1 } }, { "key": "3903", "source": "432", "target": "70", "attributes": { "weight": 3 } }, { "key": "3919", "source": "432", "target": "1094", "attributes": { "weight": 2 } }, { "key": "16681", "source": "432", "target": "59", "attributes": { "weight": 2 } }, { "key": "3876", "source": "432", "target": "791", "attributes": { "weight": 3 } }, { "key": "23561", "source": "432", "target": "220", "attributes": { "weight": 2 } }, { "key": "3856", "source": "432", "target": "1036", "attributes": { "weight": 2 } }, { "key": "3916", "source": "432", "target": "193", "attributes": { "weight": 2 } }, { "key": "3897", "source": "432", "target": "1085", "attributes": { "weight": 2 } }, { "key": "3910", "source": "432", "target": "1091", "attributes": { "weight": 2 } }, { "key": "3871", "source": "432", "target": "52", "attributes": { "weight": 3 } }, { "key": "3858", "source": "432", "target": "130", "attributes": { "weight": 4 } }, { "key": "1227", "source": "432", "target": "224", "attributes": { "weight": 1 } }, { "key": "3918", "source": "432", "target": "497", "attributes": { "weight": 2 } }, { "key": "3881", "source": "432", "target": "1076", "attributes": { "weight": 2 } }, { "key": "3901", "source": "432", "target": "473", "attributes": { "weight": 3 } }, { "key": "23562", "source": "432", "target": "2248", "attributes": { "weight": 1 } }, { "key": "1228", "source": "432", "target": "490", "attributes": { "weight": 1 } }, { "key": "30318", "source": "432", "target": "693", "attributes": { "weight": 1 } }, { "key": "3890", "source": "432", "target": "8", "attributes": { "weight": 1 } }, { "key": "3891", "source": "432", "target": "468", "attributes": { "weight": 4 } }, { "key": "33740", "source": "432", "target": "682", "attributes": { "weight": 1 } }, { "key": "27509", "source": "432", "target": "1520", "attributes": { "weight": 1 } }, { "key": "3864", "source": "432", "target": "443", "attributes": { "weight": 2 } }, { "key": "3911", "source": "432", "target": "1067", "attributes": { "weight": 2 } }, { "key": "3917", "source": "432", "target": "495", "attributes": { "weight": 2 } }, { "key": "3892", "source": "432", "target": "1083", "attributes": { "weight": 2 } }, { "key": "3863", "source": "432", "target": "442", "attributes": { "weight": 3 } }, { "key": "3904", "source": "432", "target": "1026", "attributes": { "weight": 3 } }, { "key": "3893", "source": "432", "target": "1084", "attributes": { "weight": 2 } }, { "key": "32951", "source": "432", "target": "1063", "attributes": { "weight": 1 } }, { "key": "3857", "source": "432", "target": "1069", "attributes": { "weight": 2 } }, { "key": "3913", "source": "432", "target": "673", "attributes": { "weight": 1 } }, { "key": "12662", "source": "432", "target": "695", "attributes": { "weight": 1 } }, { "key": "32687", "source": "432", "target": "1125", "attributes": { "weight": 2 } }, { "key": "3879", "source": "432", "target": "1075", "attributes": { "weight": 2 } }, { "key": "29363", "source": "432", "target": "232", "attributes": { "weight": 1 } }, { "key": "33187", "source": "432", "target": "450", "attributes": { "weight": 1 } }, { "key": "33190", "source": "432", "target": "672", "attributes": { "weight": 1 } }, { "key": "16682", "source": "432", "target": "674", "attributes": { "weight": 2 } }, { "key": "22833", "source": "432", "target": "2393", "attributes": { "weight": 1 } }, { "key": "3886", "source": "432", "target": "462", "attributes": { "weight": 2 } }, { "key": "3855", "source": "432", "target": "1068", "attributes": { "weight": 2 } }, { "key": "3914", "source": "432", "target": "1093", "attributes": { "weight": 2 } }, { "key": "3887", "source": "432", "target": "1080", "attributes": { "weight": 2 } }, { "key": "3907", "source": "432", "target": "479", "attributes": { "weight": 1 } }, { "key": "3908", "source": "432", "target": "483", "attributes": { "weight": 3 } }, { "key": "3868", "source": "432", "target": "1071", "attributes": { "weight": 2 } }, { "key": "17132", "source": "432", "target": "449", "attributes": { "weight": 1 } }, { "key": "3896", "source": "432", "target": "472", "attributes": { "weight": 3 } }, { "key": "3915", "source": "432", "target": "340", "attributes": { "weight": 2 } }, { "key": "3874", "source": "432", "target": "1072", "attributes": { "weight": 1 } }, { "key": "25905", "source": "432", "target": "1367", "attributes": { "weight": 1 } }, { "key": "3861", "source": "432", "target": "440", "attributes": { "weight": 1 } }, { "key": "3882", "source": "432", "target": "1077", "attributes": { "weight": 2 } }, { "key": "33189", "source": "432", "target": "135", "attributes": { "weight": 1 } }, { "key": "3902", "source": "432", "target": "1088", "attributes": { "weight": 2 } }, { "key": "3889", "source": "432", "target": "53", "attributes": { "weight": 4 } }, { "key": "3877", "source": "432", "target": "1074", "attributes": { "weight": 2 } }, { "key": "3885", "source": "432", "target": "1079", "attributes": { "weight": 2 } }, { "key": "3869", "source": "432", "target": "452", "attributes": { "weight": 4 } }, { "key": "3860", "source": "432", "target": "223", "attributes": { "weight": 2 } }, { "key": "3865", "source": "432", "target": "1070", "attributes": { "weight": 3 } }, { "key": "33188", "source": "432", "target": "188", "attributes": { "weight": 1 } }, { "key": "14172", "source": "432", "target": "1046", "attributes": { "weight": 2 } }, { "key": "31573", "source": "432", "target": "595", "attributes": { "weight": 1 } }, { "key": "3912", "source": "432", "target": "1092", "attributes": { "weight": 4 } }, { "key": "3866", "source": "432", "target": "3", "attributes": { "weight": 2 } }, { "key": "3900", "source": "432", "target": "189", "attributes": { "weight": 3 } }, { "key": "16683", "source": "432", "target": "457", "attributes": { "weight": 1 } }, { "key": "8291", "source": "432", "target": "233", "attributes": { "weight": 1 } }, { "key": "3873", "source": "432", "target": "458", "attributes": { "weight": 4 } }, { "key": "25354", "source": "433", "target": "2529", "attributes": { "weight": 1 } }, { "key": "25360", "source": "433", "target": "479", "attributes": { "weight": 1 } }, { "key": "25367", "source": "433", "target": "247", "attributes": { "weight": 2 } }, { "key": "25366", "source": "433", "target": "1775", "attributes": { "weight": 2 } }, { "key": "25359", "source": "433", "target": "1026", "attributes": { "weight": 2 } }, { "key": "33026", "source": "433", "target": "493", "attributes": { "weight": 1 } }, { "key": "18048", "source": "433", "target": "468", "attributes": { "weight": 2 } }, { "key": "18097", "source": "433", "target": "52", "attributes": { "weight": 3 } }, { "key": "16697", "source": "433", "target": "59", "attributes": { "weight": 3 } }, { "key": "25364", "source": "433", "target": "1092", "attributes": { "weight": 1 } }, { "key": "1236", "source": "433", "target": "490", "attributes": { "weight": 3 } }, { "key": "6612", "source": "433", "target": "454", "attributes": { "weight": 5 } }, { "key": "25357", "source": "433", "target": "53", "attributes": { "weight": 2 } }, { "key": "11008", "source": "433", "target": "473", "attributes": { "weight": 3 } }, { "key": "35805", "source": "433", "target": "2248", "attributes": { "weight": 1 } }, { "key": "35812", "source": "433", "target": "73", "attributes": { "weight": 1 } }, { "key": "18047", "source": "433", "target": "1036", "attributes": { "weight": 2 } }, { "key": "16698", "source": "433", "target": "70", "attributes": { "weight": 1 } }, { "key": "11331", "source": "433", "target": "440", "attributes": { "weight": 2 } }, { "key": "6613", "source": "433", "target": "193", "attributes": { "weight": 2 } }, { "key": "11007", "source": "433", "target": "452", "attributes": { "weight": 3 } }, { "key": "25369", "source": "433", "target": "2208", "attributes": { "weight": 1 } }, { "key": "25362", "source": "433", "target": "487", "attributes": { "weight": 1 } }, { "key": "25368", "source": "433", "target": "340", "attributes": { "weight": 1 } }, { "key": "35810", "source": "433", "target": "1741", "attributes": { "weight": 1 } }, { "key": "35808", "source": "433", "target": "2258", "attributes": { "weight": 1 } }, { "key": "8436", "source": "433", "target": "442", "attributes": { "weight": 2 } }, { "key": "30337", "source": "433", "target": "2211", "attributes": { "weight": 1 } }, { "key": "26391", "source": "433", "target": "189", "attributes": { "weight": 2 } }, { "key": "3923", "source": "433", "target": "432", "attributes": { "weight": 3 } }, { "key": "25355", "source": "433", "target": "223", "attributes": { "weight": 1 } }, { "key": "35811", "source": "433", "target": "2262", "attributes": { "weight": 1 } }, { "key": "25365", "source": "433", "target": "595", "attributes": { "weight": 2 } }, { "key": "35802", "source": "433", "target": "1023", "attributes": { "weight": 1 } }, { "key": "25356", "source": "433", "target": "674", "attributes": { "weight": 1 } }, { "key": "21506", "source": "433", "target": "358", "attributes": { "weight": 1 } }, { "key": "35806", "source": "433", "target": "186", "attributes": { "weight": 1 } }, { "key": "24763", "source": "433", "target": "486", "attributes": { "weight": 2 } }, { "key": "25370", "source": "433", "target": "495", "attributes": { "weight": 2 } }, { "key": "25358", "source": "433", "target": "1547", "attributes": { "weight": 1 } }, { "key": "18046", "source": "433", "target": "220", "attributes": { "weight": 2 } }, { "key": "6611", "source": "433", "target": "183", "attributes": { "weight": 2 } }, { "key": "25371", "source": "433", "target": "497", "attributes": { "weight": 2 } }, { "key": "25372", "source": "433", "target": "57", "attributes": { "weight": 2 } }, { "key": "35807", "source": "433", "target": "1998", "attributes": { "weight": 1 } }, { "key": "29112", "source": "433", "target": "488", "attributes": { "weight": 1 } }, { "key": "35803", "source": "433", "target": "2245", "attributes": { "weight": 1 } }, { "key": "25363", "source": "433", "target": "428", "attributes": { "weight": 1 } }, { "key": "32313", "source": "433", "target": "791", "attributes": { "weight": 1 } }, { "key": "25361", "source": "433", "target": "232", "attributes": { "weight": 2 } }, { "key": "35804", "source": "433", "target": "448", "attributes": { "weight": 1 } }, { "key": "16712", "source": "434", "target": "135", "attributes": { "weight": 2 } }, { "key": "36255", "source": "434", "target": "3286", "attributes": { "weight": 1 } }, { "key": "16701", "source": "434", "target": "59", "attributes": { "weight": 2 } }, { "key": "16720", "source": "434", "target": "672", "attributes": { "weight": 1 } }, { "key": "36250", "source": "434", "target": "3280", "attributes": { "weight": 1 } }, { "key": "35814", "source": "434", "target": "465", "attributes": { "weight": 1 } }, { "key": "36258", "source": "434", "target": "2081", "attributes": { "weight": 1 } }, { "key": "16710", "source": "434", "target": "1738", "attributes": { "weight": 1 } }, { "key": "16718", "source": "434", "target": "479", "attributes": { "weight": 1 } }, { "key": "12665", "source": "434", "target": "695", "attributes": { "weight": 2 } }, { "key": "36257", "source": "434", "target": "1863", "attributes": { "weight": 1 } }, { "key": "16707", "source": "434", "target": "450", "attributes": { "weight": 1 } }, { "key": "16714", "source": "434", "target": "474", "attributes": { "weight": 1 } }, { "key": "16708", "source": "434", "target": "452", "attributes": { "weight": 1 } }, { "key": "16719", "source": "434", "target": "1337", "attributes": { "weight": 4 } }, { "key": "35813", "source": "434", "target": "1360", "attributes": { "weight": 1 } }, { "key": "11011", "source": "434", "target": "220", "attributes": { "weight": 2 } }, { "key": "30649", "source": "434", "target": "2994", "attributes": { "weight": 1 } }, { "key": "16713", "source": "434", "target": "54", "attributes": { "weight": 1 } }, { "key": "16699", "source": "434", "target": "429", "attributes": { "weight": 1 } }, { "key": "36256", "source": "434", "target": "1764", "attributes": { "weight": 1 } }, { "key": "16721", "source": "434", "target": "1389", "attributes": { "weight": 3 } }, { "key": "16703", "source": "434", "target": "130", "attributes": { "weight": 3 } }, { "key": "31245", "source": "434", "target": "472", "attributes": { "weight": 1 } }, { "key": "31243", "source": "434", "target": "1141", "attributes": { "weight": 2 } }, { "key": "16715", "source": "434", "target": "1125", "attributes": { "weight": 1 } }, { "key": "36259", "source": "434", "target": "3299", "attributes": { "weight": 1 } }, { "key": "16700", "source": "434", "target": "1354", "attributes": { "weight": 2 } }, { "key": "16711", "source": "434", "target": "464", "attributes": { "weight": 1 } }, { "key": "36261", "source": "434", "target": "596", "attributes": { "weight": 1 } }, { "key": "16706", "source": "434", "target": "447", "attributes": { "weight": 1 } }, { "key": "35815", "source": "434", "target": "1390", "attributes": { "weight": 1 } }, { "key": "1237", "source": "434", "target": "188", "attributes": { "weight": 1 } }, { "key": "36251", "source": "434", "target": "2087", "attributes": { "weight": 1 } }, { "key": "31244", "source": "434", "target": "1755", "attributes": { "weight": 2 } }, { "key": "4347", "source": "434", "target": "468", "attributes": { "weight": 2 } }, { "key": "16705", "source": "434", "target": "674", "attributes": { "weight": 2 } }, { "key": "36260", "source": "434", "target": "3301", "attributes": { "weight": 1 } }, { "key": "26394", "source": "434", "target": "454", "attributes": { "weight": 2 } }, { "key": "16717", "source": "434", "target": "231", "attributes": { "weight": 1 } }, { "key": "16716", "source": "434", "target": "70", "attributes": { "weight": 3 } }, { "key": "16702", "source": "434", "target": "424", "attributes": { "weight": 1 } }, { "key": "16704", "source": "434", "target": "1070", "attributes": { "weight": 1 } }, { "key": "36253", "source": "434", "target": "3283", "attributes": { "weight": 1 } }, { "key": "16722", "source": "434", "target": "73", "attributes": { "weight": 2 } }, { "key": "36254", "source": "434", "target": "2088", "attributes": { "weight": 1 } }, { "key": "11839", "source": "434", "target": "1522", "attributes": { "weight": 1 } }, { "key": "16709", "source": "434", "target": "370", "attributes": { "weight": 1 } }, { "key": "19352", "source": "435", "target": "2025", "attributes": { "weight": 1 } }, { "key": "9385", "source": "435", "target": "419", "attributes": { "weight": 1 } }, { "key": "32194", "source": "435", "target": "860", "attributes": { "weight": 4 } }, { "key": "32695", "source": "435", "target": "1812", "attributes": { "weight": 2 } }, { "key": "12149", "source": "435", "target": "220", "attributes": { "weight": 2 } }, { "key": "19360", "source": "435", "target": "2254", "attributes": { "weight": 1 } }, { "key": "32692", "source": "435", "target": "858", "attributes": { "weight": 2 } }, { "key": "37435", "source": "435", "target": "458", "attributes": { "weight": 1 } }, { "key": "32697", "source": "435", "target": "2670", "attributes": { "weight": 3 } }, { "key": "32694", "source": "435", "target": "1357", "attributes": { "weight": 2 } }, { "key": "19357", "source": "435", "target": "459", "attributes": { "weight": 1 } }, { "key": "8446", "source": "435", "target": "228", "attributes": { "weight": 2 } }, { "key": "19355", "source": "435", "target": "1358", "attributes": { "weight": 5 } }, { "key": "12150", "source": "435", "target": "1161", "attributes": { "weight": 1 } }, { "key": "19363", "source": "435", "target": "2094", "attributes": { "weight": 1 } }, { "key": "37436", "source": "435", "target": "426", "attributes": { "weight": 1 } }, { "key": "31246", "source": "435", "target": "59", "attributes": { "weight": 1 } }, { "key": "12151", "source": "435", "target": "224", "attributes": { "weight": 1 } }, { "key": "37441", "source": "435", "target": "494", "attributes": { "weight": 1 } }, { "key": "19358", "source": "435", "target": "464", "attributes": { "weight": 1 } }, { "key": "19359", "source": "435", "target": "465", "attributes": { "weight": 1 } }, { "key": "32193", "source": "435", "target": "424", "attributes": { "weight": 3 } }, { "key": "19354", "source": "435", "target": "451", "attributes": { "weight": 3 } }, { "key": "37438", "source": "435", "target": "1366", "attributes": { "weight": 1 } }, { "key": "37433", "source": "435", "target": "452", "attributes": { "weight": 1 } }, { "key": "26395", "source": "435", "target": "1047", "attributes": { "weight": 2 } }, { "key": "32691", "source": "435", "target": "857", "attributes": { "weight": 1 } }, { "key": "32131", "source": "435", "target": "1282", "attributes": { "weight": 1 } }, { "key": "12158", "source": "435", "target": "455", "attributes": { "weight": 1 } }, { "key": "15217", "source": "435", "target": "1353", "attributes": { "weight": 6 } }, { "key": "12152", "source": "435", "target": "447", "attributes": { "weight": 3 } }, { "key": "37439", "source": "435", "target": "474", "attributes": { "weight": 1 } }, { "key": "19350", "source": "435", "target": "429", "attributes": { "weight": 2 } }, { "key": "37437", "source": "435", "target": "1364", "attributes": { "weight": 1 } }, { "key": "32319", "source": "435", "target": "791", "attributes": { "weight": 1 } }, { "key": "29607", "source": "435", "target": "421", "attributes": { "weight": 1 } }, { "key": "27217", "source": "435", "target": "57", "attributes": { "weight": 1 } }, { "key": "32196", "source": "435", "target": "1368", "attributes": { "weight": 3 } }, { "key": "12165", "source": "435", "target": "490", "attributes": { "weight": 1 } }, { "key": "26397", "source": "435", "target": "189", "attributes": { "weight": 1 } }, { "key": "12164", "source": "435", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19366", "source": "435", "target": "2269", "attributes": { "weight": 1 } }, { "key": "17142", "source": "435", "target": "2111", "attributes": { "weight": 1 } }, { "key": "37440", "source": "435", "target": "488", "attributes": { "weight": 1 } }, { "key": "12153", "source": "435", "target": "183", "attributes": { "weight": 2 } }, { "key": "17336", "source": "435", "target": "358", "attributes": { "weight": 2 } }, { "key": "12147", "source": "435", "target": "1141", "attributes": { "weight": 1 } }, { "key": "31247", "source": "435", "target": "674", "attributes": { "weight": 1 } }, { "key": "19365", "source": "435", "target": "231", "attributes": { "weight": 5 } }, { "key": "12157", "source": "435", "target": "1219", "attributes": { "weight": 1 } }, { "key": "19362", "source": "435", "target": "54", "attributes": { "weight": 3 } }, { "key": "19353", "source": "435", "target": "2241", "attributes": { "weight": 1 } }, { "key": "12159", "source": "435", "target": "1834", "attributes": { "weight": 1 } }, { "key": "32195", "source": "435", "target": "53", "attributes": { "weight": 3 } }, { "key": "32157", "source": "435", "target": "1779", "attributes": { "weight": 1 } }, { "key": "17140", "source": "435", "target": "449", "attributes": { "weight": 2 } }, { "key": "19356", "source": "435", "target": "1360", "attributes": { "weight": 1 } }, { "key": "12156", "source": "435", "target": "1359", "attributes": { "weight": 1 } }, { "key": "12161", "source": "435", "target": "1362", "attributes": { "weight": 1 } }, { "key": "26396", "source": "435", "target": "454", "attributes": { "weight": 1 } }, { "key": "12162", "source": "435", "target": "473", "attributes": { "weight": 1 } }, { "key": "12155", "source": "435", "target": "1116", "attributes": { "weight": 1 } }, { "key": "19364", "source": "435", "target": "1367", "attributes": { "weight": 2 } }, { "key": "32693", "source": "435", "target": "2644", "attributes": { "weight": 2 } }, { "key": "37434", "source": "435", "target": "1217", "attributes": { "weight": 1 } }, { "key": "12166", "source": "435", "target": "1841", "attributes": { "weight": 1 } }, { "key": "8445", "source": "435", "target": "442", "attributes": { "weight": 2 } }, { "key": "12509", "source": "435", "target": "1118", "attributes": { "weight": 1 } }, { "key": "19361", "source": "435", "target": "2256", "attributes": { "weight": 1 } }, { "key": "12163", "source": "435", "target": "1838", "attributes": { "weight": 1 } }, { "key": "32696", "source": "435", "target": "482", "attributes": { "weight": 1 } }, { "key": "1238", "source": "435", "target": "188", "attributes": { "weight": 1 } }, { "key": "19367", "source": "435", "target": "56", "attributes": { "weight": 5 } }, { "key": "12154", "source": "435", "target": "450", "attributes": { "weight": 1 } }, { "key": "1239", "source": "435", "target": "193", "attributes": { "weight": 1 } }, { "key": "19351", "source": "435", "target": "130", "attributes": { "weight": 2 } }, { "key": "12148", "source": "435", "target": "1354", "attributes": { "weight": 4 } }, { "key": "31389", "source": "435", "target": "223", "attributes": { "weight": 2 } }, { "key": "17141", "source": "435", "target": "2108", "attributes": { "weight": 1 } }, { "key": "33216", "source": "435", "target": "2645", "attributes": { "weight": 1 } }, { "key": "12160", "source": "435", "target": "1811", "attributes": { "weight": 1 } }, { "key": "33218", "source": "436", "target": "52", "attributes": { "weight": 1 } }, { "key": "26398", "source": "436", "target": "454", "attributes": { "weight": 1 } }, { "key": "35280", "source": "436", "target": "1131", "attributes": { "weight": 1 } }, { "key": "31390", "source": "436", "target": "223", "attributes": { "weight": 1 } }, { "key": "1241", "source": "436", "target": "183", "attributes": { "weight": 1 } }, { "key": "33220", "source": "436", "target": "233", "attributes": { "weight": 2 } }, { "key": "8451", "source": "436", "target": "474", "attributes": { "weight": 3 } }, { "key": "1244", "source": "436", "target": "193", "attributes": { "weight": 1 } }, { "key": "1243", "source": "436", "target": "490", "attributes": { "weight": 1 } }, { "key": "26293", "source": "436", "target": "1258", "attributes": { "weight": 1 } }, { "key": "8452", "source": "436", "target": "1088", "attributes": { "weight": 3 } }, { "key": "4095", "source": "436", "target": "1121", "attributes": { "weight": 2 } }, { "key": "35279", "source": "436", "target": "50", "attributes": { "weight": 1 } }, { "key": "33219", "source": "436", "target": "135", "attributes": { "weight": 1 } }, { "key": "1240", "source": "436", "target": "224", "attributes": { "weight": 1 } }, { "key": "1242", "source": "436", "target": "188", "attributes": { "weight": 1 } }, { "key": "8447", "source": "436", "target": "1531", "attributes": { "weight": 2 } }, { "key": "8450", "source": "436", "target": "1087", "attributes": { "weight": 3 } }, { "key": "8453", "source": "436", "target": "1125", "attributes": { "weight": 2 } }, { "key": "33217", "source": "436", "target": "442", "attributes": { "weight": 1 } }, { "key": "8449", "source": "436", "target": "228", "attributes": { "weight": 3 } }, { "key": "8448", "source": "436", "target": "1545", "attributes": { "weight": 2 } }, { "key": "35278", "source": "436", "target": "1109", "attributes": { "weight": 1 } }, { "key": "8454", "source": "437", "target": "442", "attributes": { "weight": 3 } }, { "key": "30753", "source": "437", "target": "470", "attributes": { "weight": 4 } }, { "key": "16723", "source": "437", "target": "70", "attributes": { "weight": 1 } }, { "key": "24006", "source": "437", "target": "1125", "attributes": { "weight": 2 } }, { "key": "26399", "source": "437", "target": "454", "attributes": { "weight": 1 } }, { "key": "24004", "source": "437", "target": "471", "attributes": { "weight": 2 } }, { "key": "6614", "source": "437", "target": "231", "attributes": { "weight": 4 } }, { "key": "24003", "source": "437", "target": "54", "attributes": { "weight": 3 } }, { "key": "33221", "source": "437", "target": "52", "attributes": { "weight": 1 } }, { "key": "32320", "source": "437", "target": "791", "attributes": { "weight": 1 } }, { "key": "24010", "source": "437", "target": "193", "attributes": { "weight": 2 } }, { "key": "23999", "source": "437", "target": "1358", "attributes": { "weight": 2 } }, { "key": "23997", "source": "437", "target": "220", "attributes": { "weight": 2 } }, { "key": "24011", "source": "437", "target": "1568", "attributes": { "weight": 1 } }, { "key": "17143", "source": "437", "target": "449", "attributes": { "weight": 1 } }, { "key": "35281", "source": "437", "target": "494", "attributes": { "weight": 1 } }, { "key": "23998", "source": "437", "target": "130", "attributes": { "weight": 2 } }, { "key": "1245", "source": "437", "target": "183", "attributes": { "weight": 1 } }, { "key": "23996", "source": "437", "target": "1354", "attributes": { "weight": 2 } }, { "key": "24001", "source": "437", "target": "1766", "attributes": { "weight": 2 } }, { "key": "24012", "source": "437", "target": "1375", "attributes": { "weight": 1 } }, { "key": "33222", "source": "437", "target": "472", "attributes": { "weight": 1 } }, { "key": "24005", "source": "437", "target": "473", "attributes": { "weight": 2 } }, { "key": "24002", "source": "437", "target": "468", "attributes": { "weight": 2 } }, { "key": "33223", "source": "437", "target": "489", "attributes": { "weight": 1 } }, { "key": "26400", "source": "437", "target": "189", "attributes": { "weight": 1 } }, { "key": "24008", "source": "437", "target": "1374", "attributes": { "weight": 2 } }, { "key": "1246", "source": "437", "target": "490", "attributes": { "weight": 1 } }, { "key": "11012", "source": "437", "target": "452", "attributes": { "weight": 1 } }, { "key": "24000", "source": "437", "target": "459", "attributes": { "weight": 3 } }, { "key": "23399", "source": "437", "target": "223", "attributes": { "weight": 2 } }, { "key": "23995", "source": "437", "target": "429", "attributes": { "weight": 2 } }, { "key": "24009", "source": "437", "target": "1711", "attributes": { "weight": 3 } }, { "key": "23994", "source": "437", "target": "1353", "attributes": { "weight": 3 } }, { "key": "24007", "source": "437", "target": "2109", "attributes": { "weight": 2 } }, { "key": "19459", "source": "438", "target": "487", "attributes": { "weight": 1 } }, { "key": "31501", "source": "438", "target": "1353", "attributes": { "weight": 1 } }, { "key": "1249", "source": "438", "target": "490", "attributes": { "weight": 1 } }, { "key": "19446", "source": "438", "target": "443", "attributes": { "weight": 1 } }, { "key": "19450", "source": "438", "target": "451", "attributes": { "weight": 1 } }, { "key": "31506", "source": "438", "target": "1368", "attributes": { "weight": 1 } }, { "key": "19458", "source": "438", "target": "695", "attributes": { "weight": 1 } }, { "key": "6617", "source": "438", "target": "231", "attributes": { "weight": 3 } }, { "key": "19452", "source": "438", "target": "2251", "attributes": { "weight": 1 } }, { "key": "11021", "source": "438", "target": "220", "attributes": { "weight": 2 } }, { "key": "35678", "source": "438", "target": "57", "attributes": { "weight": 1 } }, { "key": "19442", "source": "438", "target": "429", "attributes": { "weight": 1 } }, { "key": "35677", "source": "438", "target": "1356", "attributes": { "weight": 1 } }, { "key": "19462", "source": "438", "target": "1750", "attributes": { "weight": 1 } }, { "key": "31507", "source": "438", "target": "495", "attributes": { "weight": 1 } }, { "key": "31505", "source": "438", "target": "467", "attributes": { "weight": 1 } }, { "key": "37061", "source": "438", "target": "857", "attributes": { "weight": 1 } }, { "key": "31502", "source": "438", "target": "424", "attributes": { "weight": 1 } }, { "key": "12510", "source": "438", "target": "233", "attributes": { "weight": 1 } }, { "key": "19454", "source": "438", "target": "54", "attributes": { "weight": 2 } }, { "key": "19447", "source": "438", "target": "1070", "attributes": { "weight": 1 } }, { "key": "26408", "source": "438", "target": "454", "attributes": { "weight": 1 } }, { "key": "19465", "source": "438", "target": "1390", "attributes": { "weight": 1 } }, { "key": "19456", "source": "438", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19455", "source": "438", "target": "472", "attributes": { "weight": 1 } }, { "key": "31257", "source": "438", "target": "674", "attributes": { "weight": 1 } }, { "key": "26409", "source": "438", "target": "189", "attributes": { "weight": 1 } }, { "key": "19463", "source": "438", "target": "1751", "attributes": { "weight": 1 } }, { "key": "19445", "source": "438", "target": "2242", "attributes": { "weight": 1 } }, { "key": "31504", "source": "438", "target": "459", "attributes": { "weight": 1 } }, { "key": "19460", "source": "438", "target": "489", "attributes": { "weight": 1 } }, { "key": "32322", "source": "438", "target": "791", "attributes": { "weight": 1 } }, { "key": "31503", "source": "438", "target": "1357", "attributes": { "weight": 1 } }, { "key": "19461", "source": "438", "target": "56", "attributes": { "weight": 2 } }, { "key": "19444", "source": "438", "target": "221", "attributes": { "weight": 1 } }, { "key": "19457", "source": "438", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19453", "source": "438", "target": "2088", "attributes": { "weight": 1 } }, { "key": "19448", "source": "438", "target": "449", "attributes": { "weight": 1 } }, { "key": "19451", "source": "438", "target": "1358", "attributes": { "weight": 2 } }, { "key": "8475", "source": "438", "target": "442", "attributes": { "weight": 2 } }, { "key": "19443", "source": "438", "target": "1354", "attributes": { "weight": 1 } }, { "key": "19449", "source": "438", "target": "450", "attributes": { "weight": 1 } }, { "key": "19464", "source": "438", "target": "235", "attributes": { "weight": 1 } }, { "key": "33235", "source": "439", "target": "442", "attributes": { "weight": 1 } }, { "key": "35834", "source": "439", "target": "479", "attributes": { "weight": 1 } }, { "key": "19472", "source": "439", "target": "449", "attributes": { "weight": 1 } }, { "key": "24017", "source": "439", "target": "130", "attributes": { "weight": 2 } }, { "key": "19476", "source": "439", "target": "1367", "attributes": { "weight": 1 } }, { "key": "19475", "source": "439", "target": "2253", "attributes": { "weight": 1 } }, { "key": "35295", "source": "439", "target": "496", "attributes": { "weight": 1 } }, { "key": "35832", "source": "439", "target": "440", "attributes": { "weight": 1 } }, { "key": "6618", "source": "439", "target": "193", "attributes": { "weight": 2 } }, { "key": "35294", "source": "439", "target": "494", "attributes": { "weight": 1 } }, { "key": "19470", "source": "439", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19469", "source": "439", "target": "441", "attributes": { "weight": 1 } }, { "key": "1251", "source": "439", "target": "183", "attributes": { "weight": 1 } }, { "key": "1250", "source": "439", "target": "224", "attributes": { "weight": 1 } }, { "key": "12779", "source": "439", "target": "477", "attributes": { "weight": 2 } }, { "key": "11023", "source": "439", "target": "1093", "attributes": { "weight": 1 } }, { "key": "19484", "source": "439", "target": "1375", "attributes": { "weight": 1 } }, { "key": "23575", "source": "439", "target": "220", "attributes": { "weight": 1 } }, { "key": "19480", "source": "439", "target": "489", "attributes": { "weight": 1 } }, { "key": "19478", "source": "439", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19468", "source": "439", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19473", "source": "439", "target": "453", "attributes": { "weight": 1 } }, { "key": "33236", "source": "439", "target": "473", "attributes": { "weight": 1 } }, { "key": "17536", "source": "439", "target": "189", "attributes": { "weight": 2 } }, { "key": "19483", "source": "439", "target": "235", "attributes": { "weight": 1 } }, { "key": "19471", "source": "439", "target": "2245", "attributes": { "weight": 1 } }, { "key": "11851", "source": "439", "target": "135", "attributes": { "weight": 2 } }, { "key": "19479", "source": "439", "target": "480", "attributes": { "weight": 1 } }, { "key": "19477", "source": "439", "target": "2260", "attributes": { "weight": 1 } }, { "key": "11024", "source": "439", "target": "492", "attributes": { "weight": 2 } }, { "key": "19482", "source": "439", "target": "1777", "attributes": { "weight": 1 } }, { "key": "19481", "source": "439", "target": "1374", "attributes": { "weight": 1 } }, { "key": "9945", "source": "439", "target": "469", "attributes": { "weight": 2 } }, { "key": "35833", "source": "439", "target": "1026", "attributes": { "weight": 1 } }, { "key": "1252", "source": "439", "target": "490", "attributes": { "weight": 1 } }, { "key": "12778", "source": "439", "target": "445", "attributes": { "weight": 2 } }, { "key": "19466", "source": "439", "target": "221", "attributes": { "weight": 1 } }, { "key": "24018", "source": "439", "target": "1116", "attributes": { "weight": 2 } }, { "key": "11022", "source": "439", "target": "452", "attributes": { "weight": 1 } }, { "key": "19467", "source": "439", "target": "222", "attributes": { "weight": 1 } }, { "key": "19474", "source": "439", "target": "1536", "attributes": { "weight": 1 } }, { "key": "32865", "source": "440", "target": "470", "attributes": { "weight": 1 } }, { "key": "19548", "source": "440", "target": "1751", "attributes": { "weight": 1 } }, { "key": "35839", "source": "440", "target": "89", "attributes": { "weight": 1 } }, { "key": "4418", "source": "440", "target": "468", "attributes": { "weight": 3 } }, { "key": "33742", "source": "440", "target": "823", "attributes": { "weight": 1 } }, { "key": "19546", "source": "440", "target": "480", "attributes": { "weight": 1 } }, { "key": "1255", "source": "440", "target": "224", "attributes": { "weight": 1 } }, { "key": "30344", "source": "440", "target": "1046", "attributes": { "weight": 1 } }, { "key": "19543", "source": "440", "target": "2245", "attributes": { "weight": 2 } }, { "key": "27013", "source": "440", "target": "1247", "attributes": { "weight": 1 } }, { "key": "19538", "source": "440", "target": "221", "attributes": { "weight": 1 } }, { "key": "35845", "source": "440", "target": "53", "attributes": { "weight": 1 } }, { "key": "31580", "source": "440", "target": "595", "attributes": { "weight": 1 } }, { "key": "33303", "source": "440", "target": "672", "attributes": { "weight": 1 } }, { "key": "23576", "source": "440", "target": "1312", "attributes": { "weight": 1 } }, { "key": "25851", "source": "440", "target": "220", "attributes": { "weight": 1 } }, { "key": "19544", "source": "440", "target": "471", "attributes": { "weight": 2 } }, { "key": "30345", "source": "440", "target": "500", "attributes": { "weight": 1 } }, { "key": "27806", "source": "440", "target": "339", "attributes": { "weight": 1 } }, { "key": "35850", "source": "440", "target": "232", "attributes": { "weight": 1 } }, { "key": "16733", "source": "440", "target": "674", "attributes": { "weight": 2 } }, { "key": "19542", "source": "440", "target": "2244", "attributes": { "weight": 1 } }, { "key": "16734", "source": "440", "target": "135", "attributes": { "weight": 2 } }, { "key": "19537", "source": "440", "target": "130", "attributes": { "weight": 2 } }, { "key": "26420", "source": "440", "target": "183", "attributes": { "weight": 1 } }, { "key": "33302", "source": "440", "target": "2258", "attributes": { "weight": 2 } }, { "key": "27011", "source": "440", "target": "450", "attributes": { "weight": 1 } }, { "key": "27360", "source": "440", "target": "340", "attributes": { "weight": 2 } }, { "key": "19549", "source": "440", "target": "235", "attributes": { "weight": 1 } }, { "key": "35846", "source": "440", "target": "1741", "attributes": { "weight": 1 } }, { "key": "35835", "source": "440", "target": "429", "attributes": { "weight": 1 } }, { "key": "35848", "source": "440", "target": "190", "attributes": { "weight": 1 } }, { "key": "26904", "source": "440", "target": "497", "attributes": { "weight": 2 } }, { "key": "35836", "source": "440", "target": "439", "attributes": { "weight": 1 } }, { "key": "35841", "source": "440", "target": "1998", "attributes": { "weight": 1 } }, { "key": "35847", "source": "440", "target": "473", "attributes": { "weight": 1 } }, { "key": "25909", "source": "440", "target": "1367", "attributes": { "weight": 2 } }, { "key": "30725", "source": "440", "target": "1026", "attributes": { "weight": 1 } }, { "key": "27228", "source": "440", "target": "57", "attributes": { "weight": 1 } }, { "key": "35842", "source": "440", "target": "5", "attributes": { "weight": 1 } }, { "key": "35843", "source": "440", "target": "2253", "attributes": { "weight": 1 } }, { "key": "33301", "source": "440", "target": "52", "attributes": { "weight": 1 } }, { "key": "31418", "source": "440", "target": "223", "attributes": { "weight": 1 } }, { "key": "11334", "source": "440", "target": "1742", "attributes": { "weight": 1 } }, { "key": "19541", "source": "440", "target": "1023", "attributes": { "weight": 1 } }, { "key": "32328", "source": "440", "target": "791", "attributes": { "weight": 1 } }, { "key": "26421", "source": "440", "target": "189", "attributes": { "weight": 1 } }, { "key": "28930", "source": "440", "target": "479", "attributes": { "weight": 2 } }, { "key": "8482", "source": "440", "target": "442", "attributes": { "weight": 2 } }, { "key": "35851", "source": "440", "target": "487", "attributes": { "weight": 1 } }, { "key": "35844", "source": "440", "target": "1072", "attributes": { "weight": 1 } }, { "key": "35840", "source": "440", "target": "2248", "attributes": { "weight": 1 } }, { "key": "12670", "source": "440", "target": "695", "attributes": { "weight": 1 } }, { "key": "29020", "source": "440", "target": "495", "attributes": { "weight": 1 } }, { "key": "33300", "source": "440", "target": "425", "attributes": { "weight": 1 } }, { "key": "16732", "source": "440", "target": "59", "attributes": { "weight": 1 } }, { "key": "35852", "source": "440", "target": "352", "attributes": { "weight": 1 } }, { "key": "27012", "source": "440", "target": "1832", "attributes": { "weight": 1 } }, { "key": "10808", "source": "440", "target": "457", "attributes": { "weight": 2 } }, { "key": "6625", "source": "440", "target": "193", "attributes": { "weight": 1 } }, { "key": "35849", "source": "440", "target": "2262", "attributes": { "weight": 1 } }, { "key": "33741", "source": "440", "target": "682", "attributes": { "weight": 1 } }, { "key": "11333", "source": "440", "target": "433", "attributes": { "weight": 2 } }, { "key": "19540", "source": "440", "target": "51", "attributes": { "weight": 1 } }, { "key": "1256", "source": "440", "target": "188", "attributes": { "weight": 1 } }, { "key": "32704", "source": "440", "target": "1125", "attributes": { "weight": 1 } }, { "key": "35837", "source": "440", "target": "445", "attributes": { "weight": 1 } }, { "key": "16735", "source": "440", "target": "70", "attributes": { "weight": 1 } }, { "key": "1257", "source": "440", "target": "490", "attributes": { "weight": 1 } }, { "key": "19547", "source": "440", "target": "489", "attributes": { "weight": 1 } }, { "key": "3927", "source": "440", "target": "432", "attributes": { "weight": 1 } }, { "key": "17156", "source": "440", "target": "449", "attributes": { "weight": 2 } }, { "key": "19539", "source": "440", "target": "1522", "attributes": { "weight": 1 } }, { "key": "11028", "source": "440", "target": "452", "attributes": { "weight": 3 } }, { "key": "17828", "source": "440", "target": "454", "attributes": { "weight": 3 } }, { "key": "35838", "source": "440", "target": "448", "attributes": { "weight": 1 } }, { "key": "19545", "source": "440", "target": "472", "attributes": { "weight": 2 } }, { "key": "33304", "source": "441", "target": "425", "attributes": { "weight": 1 } }, { "key": "1260", "source": "441", "target": "490", "attributes": { "weight": 1 } }, { "key": "26295", "source": "441", "target": "1258", "attributes": { "weight": 1 } }, { "key": "19621", "source": "441", "target": "471", "attributes": { "weight": 1 } }, { "key": "1258", "source": "441", "target": "224", "attributes": { "weight": 1 } }, { "key": "19613", "source": "441", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19620", "source": "441", "target": "2254", "attributes": { "weight": 1 } }, { "key": "19618", "source": "441", "target": "2253", "attributes": { "weight": 1 } }, { "key": "33305", "source": "441", "target": "52", "attributes": { "weight": 1 } }, { "key": "6626", "source": "441", "target": "189", "attributes": { "weight": 3 } }, { "key": "33307", "source": "441", "target": "489", "attributes": { "weight": 1 } }, { "key": "19612", "source": "441", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19610", "source": "441", "target": "439", "attributes": { "weight": 1 } }, { "key": "19615", "source": "441", "target": "453", "attributes": { "weight": 1 } }, { "key": "24337", "source": "441", "target": "496", "attributes": { "weight": 1 } }, { "key": "19622", "source": "441", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19619", "source": "441", "target": "464", "attributes": { "weight": 1 } }, { "key": "19623", "source": "441", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19629", "source": "441", "target": "235", "attributes": { "weight": 1 } }, { "key": "19625", "source": "441", "target": "2268", "attributes": { "weight": 1 } }, { "key": "19624", "source": "441", "target": "2266", "attributes": { "weight": 1 } }, { "key": "19614", "source": "441", "target": "226", "attributes": { "weight": 1 } }, { "key": "33308", "source": "441", "target": "672", "attributes": { "weight": 1 } }, { "key": "11030", "source": "441", "target": "452", "attributes": { "weight": 1 } }, { "key": "19627", "source": "441", "target": "1770", "attributes": { "weight": 1 } }, { "key": "19617", "source": "441", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19626", "source": "441", "target": "480", "attributes": { "weight": 1 } }, { "key": "11031", "source": "441", "target": "469", "attributes": { "weight": 1 } }, { "key": "19616", "source": "441", "target": "1536", "attributes": { "weight": 1 } }, { "key": "24336", "source": "441", "target": "492", "attributes": { "weight": 1 } }, { "key": "33306", "source": "441", "target": "473", "attributes": { "weight": 1 } }, { "key": "19611", "source": "441", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19628", "source": "441", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19609", "source": "441", "target": "221", "attributes": { "weight": 1 } }, { "key": "24021", "source": "441", "target": "1116", "attributes": { "weight": 2 } }, { "key": "24335", "source": "441", "target": "190", "attributes": { "weight": 1 } }, { "key": "1259", "source": "441", "target": "183", "attributes": { "weight": 3 } }, { "key": "24334", "source": "441", "target": "222", "attributes": { "weight": 1 } }, { "key": "8523", "source": "442", "target": "438", "attributes": { "weight": 2 } }, { "key": "29116", "source": "442", "target": "447", "attributes": { "weight": 1 } }, { "key": "23327", "source": "442", "target": "857", "attributes": { "weight": 2 } }, { "key": "8554", "source": "442", "target": "108", "attributes": { "weight": 1 } }, { "key": "8584", "source": "442", "target": "136", "attributes": { "weight": 1 } }, { "key": "8515", "source": "442", "target": "36", "attributes": { "weight": 1 } }, { "key": "33318", "source": "442", "target": "135", "attributes": { "weight": 1 } }, { "key": "24023", "source": "442", "target": "2470", "attributes": { "weight": 2 } }, { "key": "8602", "source": "442", "target": "1556", "attributes": { "weight": 1 } }, { "key": "33319", "source": "442", "target": "1836", "attributes": { "weight": 1 } }, { "key": "8597", "source": "442", "target": "163", "attributes": { "weight": 2 } }, { "key": "4453", "source": "442", "target": "368", "attributes": { "weight": 6 } }, { "key": "33317", "source": "442", "target": "464", "attributes": { "weight": 1 } }, { "key": "8510", "source": "442", "target": "1520", "attributes": { "weight": 2 } }, { "key": "8615", "source": "442", "target": "1128", "attributes": { "weight": 2 } }, { "key": "8614", "source": "442", "target": "1031", "attributes": { "weight": 1 } }, { "key": "8506", "source": "442", "target": "1036", "attributes": { "weight": 2 } }, { "key": "4454", "source": "442", "target": "370", "attributes": { "weight": 11 } }, { "key": "8500", "source": "442", "target": "429", "attributes": { "weight": 3 } }, { "key": "8624", "source": "442", "target": "1322", "attributes": { "weight": 3 } }, { "key": "8509", "source": "442", "target": "1109", "attributes": { "weight": 2 } }, { "key": "8577", "source": "442", "target": "53", "attributes": { "weight": 2 } }, { "key": "4455", "source": "442", "target": "171", "attributes": { "weight": 3 } }, { "key": "37482", "source": "442", "target": "451", "attributes": { "weight": 1 } }, { "key": "8592", "source": "442", "target": "1087", "attributes": { "weight": 3 } }, { "key": "8603", "source": "442", "target": "580", "attributes": { "weight": 3 } }, { "key": "8569", "source": "442", "target": "359", "attributes": { "weight": 2 } }, { "key": "33316", "source": "442", "target": "1219", "attributes": { "weight": 1 } }, { "key": "1261", "source": "442", "target": "188", "attributes": { "weight": 3 } }, { "key": "8556", "source": "442", "target": "1118", "attributes": { "weight": 3 } }, { "key": "8622", "source": "442", "target": "1060", "attributes": { "weight": 2 } }, { "key": "31121", "source": "442", "target": "387", "attributes": { "weight": 1 } }, { "key": "31124", "source": "442", "target": "1298", "attributes": { "weight": 1 } }, { "key": "33315", "source": "442", "target": "51", "attributes": { "weight": 1 } }, { "key": "33312", "source": "442", "target": "436", "attributes": { "weight": 1 } }, { "key": "8551", "source": "442", "target": "1384", "attributes": { "weight": 1 } }, { "key": "8557", "source": "442", "target": "109", "attributes": { "weight": 2 } }, { "key": "32330", "source": "442", "target": "232", "attributes": { "weight": 1 } }, { "key": "27014", "source": "442", "target": "1832", "attributes": { "weight": 1 } }, { "key": "9242", "source": "442", "target": "1579", "attributes": { "weight": 1 } }, { "key": "8563", "source": "442", "target": "457", "attributes": { "weight": 3 } }, { "key": "4452", "source": "442", "target": "779", "attributes": { "weight": 2 } }, { "key": "8497", "source": "442", "target": "34", "attributes": { "weight": 2 } }, { "key": "8600", "source": "442", "target": "1555", "attributes": { "weight": 1 } }, { "key": "8647", "source": "442", "target": "57", "attributes": { "weight": 2 } }, { "key": "9243", "source": "442", "target": "1592", "attributes": { "weight": 2 } }, { "key": "37320", "source": "442", "target": "247", "attributes": { "weight": 1 } }, { "key": "8565", "source": "442", "target": "707", "attributes": { "weight": 3 } }, { "key": "31125", "source": "442", "target": "252", "attributes": { "weight": 1 } }, { "key": "27189", "source": "442", "target": "1390", "attributes": { "weight": 1 } }, { "key": "8574", "source": "442", "target": "1387", "attributes": { "weight": 1 } }, { "key": "37319", "source": "442", "target": "1775", "attributes": { "weight": 1 } }, { "key": "21427", "source": "442", "target": "893", "attributes": { "weight": 1 } }, { "key": "8547", "source": "442", "target": "1047", "attributes": { "weight": 4 } }, { "key": "8552", "source": "442", "target": "1116", "attributes": { "weight": 2 } }, { "key": "8576", "source": "442", "target": "1544", "attributes": { "weight": 1 } }, { "key": "8631", "source": "442", "target": "1337", "attributes": { "weight": 2 } }, { "key": "8575", "source": "442", "target": "338", "attributes": { "weight": 4 } }, { "key": "8512", "source": "442", "target": "435", "attributes": { "weight": 2 } }, { "key": "8573", "source": "442", "target": "170", "attributes": { "weight": 1 } }, { "key": "33313", "source": "442", "target": "1110", "attributes": { "weight": 1 } }, { "key": "35541", "source": "442", "target": "3114", "attributes": { "weight": 1 } }, { "key": "12386", "source": "442", "target": "1355", "attributes": { "weight": 2 } }, { "key": "8540", "source": "442", "target": "133", "attributes": { "weight": 2 } }, { "key": "8585", "source": "442", "target": "1258", "attributes": { "weight": 2 } }, { "key": "18099", "source": "442", "target": "467", "attributes": { "weight": 1 } }, { "key": "8571", "source": "442", "target": "638", "attributes": { "weight": 2 } }, { "key": "8572", "source": "442", "target": "1024", "attributes": { "weight": 2 } }, { "key": "8508", "source": "442", "target": "433", "attributes": { "weight": 2 } }, { "key": "8513", "source": "442", "target": "437", "attributes": { "weight": 3 } }, { "key": "8625", "source": "442", "target": "1323", "attributes": { "weight": 4 } }, { "key": "3929", "source": "442", "target": "432", "attributes": { "weight": 4 } }, { "key": "8537", "source": "442", "target": "912", "attributes": { "weight": 2 } }, { "key": "8643", "source": "442", "target": "496", "attributes": { "weight": 2 } }, { "key": "8529", "source": "442", "target": "259", "attributes": { "weight": 2 } }, { "key": "8542", "source": "442", "target": "449", "attributes": { "weight": 3 } }, { "key": "8596", "source": "442", "target": "190", "attributes": { "weight": 3 } }, { "key": "8645", "source": "442", "target": "322", "attributes": { "weight": 1 } }, { "key": "3931", "source": "442", "target": "483", "attributes": { "weight": 1 } }, { "key": "8608", "source": "442", "target": "1026", "attributes": { "weight": 2 } }, { "key": "34889", "source": "442", "target": "1042", "attributes": { "weight": 1 } }, { "key": "8634", "source": "442", "target": "233", "attributes": { "weight": 8 } }, { "key": "35185", "source": "442", "target": "1562", "attributes": { "weight": 1 } }, { "key": "8498", "source": "442", "target": "1516", "attributes": { "weight": 3 } }, { "key": "8535", "source": "442", "target": "38", "attributes": { "weight": 1 } }, { "key": "8637", "source": "442", "target": "492", "attributes": { "weight": 2 } }, { "key": "8601", "source": "442", "target": "41", "attributes": { "weight": 3 } }, { "key": "8621", "source": "442", "target": "138", "attributes": { "weight": 2 } }, { "key": "33311", "source": "442", "target": "2645", "attributes": { "weight": 1 } }, { "key": "31190", "source": "442", "target": "1362", "attributes": { "weight": 1 } }, { "key": "8570", "source": "442", "target": "161", "attributes": { "weight": 1 } }, { "key": "9946", "source": "442", "target": "445", "attributes": { "weight": 3 } }, { "key": "8521", "source": "442", "target": "645", "attributes": { "weight": 1 } }, { "key": "33310", "source": "442", "target": "1107", "attributes": { "weight": 1 } }, { "key": "8519", "source": "442", "target": "50", "attributes": { "weight": 2 } }, { "key": "8544", "source": "442", "target": "358", "attributes": { "weight": 3 } }, { "key": "8632", "source": "442", "target": "595", "attributes": { "weight": 2 } }, { "key": "24024", "source": "442", "target": "2109", "attributes": { "weight": 2 } }, { "key": "8607", "source": "442", "target": "70", "attributes": { "weight": 3 } }, { "key": "8636", "source": "442", "target": "1567", "attributes": { "weight": 2 } }, { "key": "8534", "source": "442", "target": "225", "attributes": { "weight": 6 } }, { "key": "8633", "source": "442", "target": "257", "attributes": { "weight": 2 } }, { "key": "9241", "source": "442", "target": "1571", "attributes": { "weight": 1 } }, { "key": "8522", "source": "442", "target": "938", "attributes": { "weight": 3 } }, { "key": "4242", "source": "442", "target": "673", "attributes": { "weight": 2 } }, { "key": "8646", "source": "442", "target": "500", "attributes": { "weight": 2 } }, { "key": "8567", "source": "442", "target": "1233", "attributes": { "weight": 3 } }, { "key": "29117", "source": "442", "target": "488", "attributes": { "weight": 1 } }, { "key": "8630", "source": "442", "target": "490", "attributes": { "weight": 2 } }, { "key": "8580", "source": "442", "target": "30", "attributes": { "weight": 2 } }, { "key": "8546", "source": "442", "target": "693", "attributes": { "weight": 3 } }, { "key": "8520", "source": "442", "target": "43", "attributes": { "weight": 1 } }, { "key": "33743", "source": "442", "target": "14", "attributes": { "weight": 1 } }, { "key": "31122", "source": "442", "target": "251", "attributes": { "weight": 1 } }, { "key": "8526", "source": "442", "target": "440", "attributes": { "weight": 2 } }, { "key": "8568", "source": "442", "target": "278", "attributes": { "weight": 3 } }, { "key": "24338", "source": "442", "target": "191", "attributes": { "weight": 1 } }, { "key": "8591", "source": "442", "target": "229", "attributes": { "weight": 2 } }, { "key": "8581", "source": "442", "target": "469", "attributes": { "weight": 3 } }, { "key": "17834", "source": "442", "target": "223", "attributes": { "weight": 2 } }, { "key": "8525", "source": "442", "target": "425", "attributes": { "weight": 3 } }, { "key": "8543", "source": "442", "target": "183", "attributes": { "weight": 3 } }, { "key": "8564", "source": "442", "target": "168", "attributes": { "weight": 3 } }, { "key": "8594", "source": "442", "target": "925", "attributes": { "weight": 2 } }, { "key": "8507", "source": "442", "target": "130", "attributes": { "weight": 5 } }, { "key": "8511", "source": "442", "target": "1521", "attributes": { "weight": 1 } }, { "key": "8549", "source": "442", "target": "369", "attributes": { "weight": 2 } }, { "key": "8604", "source": "442", "target": "1557", "attributes": { "weight": 2 } }, { "key": "8516", "source": "442", "target": "1522", "attributes": { "weight": 2 } }, { "key": "8639", "source": "442", "target": "193", "attributes": { "weight": 3 } }, { "key": "8619", "source": "442", "target": "695", "attributes": { "weight": 2 } }, { "key": "7236", "source": "442", "target": "154", "attributes": { "weight": 6 } }, { "key": "8638", "source": "442", "target": "493", "attributes": { "weight": 3 } }, { "key": "8545", "source": "442", "target": "450", "attributes": { "weight": 4 } }, { "key": "11336", "source": "442", "target": "1742", "attributes": { "weight": 1 } }, { "key": "8635", "source": "442", "target": "340", "attributes": { "weight": 3 } }, { "key": "17833", "source": "442", "target": "1380", "attributes": { "weight": 1 } }, { "key": "30349", "source": "442", "target": "1046", "attributes": { "weight": 1 } }, { "key": "8605", "source": "442", "target": "1088", "attributes": { "weight": 2 } }, { "key": "8629", "source": "442", "target": "1092", "attributes": { "weight": 2 } }, { "key": "29609", "source": "442", "target": "421", "attributes": { "weight": 1 } }, { "key": "8548", "source": "442", "target": "1535", "attributes": { "weight": 2 } }, { "key": "8640", "source": "442", "target": "494", "attributes": { "weight": 3 } }, { "key": "8589", "source": "442", "target": "396", "attributes": { "weight": 3 } }, { "key": "33321", "source": "442", "target": "1744", "attributes": { "weight": 1 } }, { "key": "31123", "source": "442", "target": "54", "attributes": { "weight": 1 } }, { "key": "4457", "source": "442", "target": "371", "attributes": { "weight": 9 } }, { "key": "8612", "source": "442", "target": "1559", "attributes": { "weight": 2 } }, { "key": "3930", "source": "442", "target": "458", "attributes": { "weight": 1 } }, { "key": "31120", "source": "442", "target": "2644", "attributes": { "weight": 1 } }, { "key": "23740", "source": "442", "target": "2456", "attributes": { "weight": 1 } }, { "key": "8582", "source": "442", "target": "470", "attributes": { "weight": 3 } }, { "key": "8626", "source": "442", "target": "177", "attributes": { "weight": 3 } }, { "key": "8610", "source": "442", "target": "304", "attributes": { "weight": 4 } }, { "key": "36948", "source": "442", "target": "362", "attributes": { "weight": 1 } }, { "key": "8533", "source": "442", "target": "444", "attributes": { "weight": 1 } }, { "key": "8578", "source": "442", "target": "8", "attributes": { "weight": 2 } }, { "key": "4458", "source": "442", "target": "123", "attributes": { "weight": 10 } }, { "key": "8644", "source": "442", "target": "497", "attributes": { "weight": 2 } }, { "key": "8611", "source": "442", "target": "1296", "attributes": { "weight": 2 } }, { "key": "8524", "source": "442", "target": "103", "attributes": { "weight": 1 } }, { "key": "35540", "source": "442", "target": "1710", "attributes": { "weight": 1 } }, { "key": "8504", "source": "442", "target": "59", "attributes": { "weight": 3 } }, { "key": "3932", "source": "442", "target": "487", "attributes": { "weight": 1 } }, { "key": "9947", "source": "442", "target": "477", "attributes": { "weight": 4 } }, { "key": "8642", "source": "442", "target": "1375", "attributes": { "weight": 2 } }, { "key": "27842", "source": "442", "target": "2528", "attributes": { "weight": 1 } }, { "key": "8501", "source": "442", "target": "430", "attributes": { "weight": 5 } }, { "key": "8586", "source": "442", "target": "228", "attributes": { "weight": 5 } }, { "key": "8527", "source": "442", "target": "1524", "attributes": { "weight": 2 } }, { "key": "8502", "source": "442", "target": "889", "attributes": { "weight": 2 } }, { "key": "8588", "source": "442", "target": "472", "attributes": { "weight": 4 } }, { "key": "8587", "source": "442", "target": "471", "attributes": { "weight": 3 } }, { "key": "8627", "source": "442", "target": "178", "attributes": { "weight": 2 } }, { "key": "8514", "source": "442", "target": "164", "attributes": { "weight": 3 } }, { "key": "8561", "source": "442", "target": "574", "attributes": { "weight": 3 } }, { "key": "33309", "source": "442", "target": "1703", "attributes": { "weight": 1 } }, { "key": "8620", "source": "442", "target": "1130", "attributes": { "weight": 2 } }, { "key": "8595", "source": "442", "target": "189", "attributes": { "weight": 2 } }, { "key": "12387", "source": "442", "target": "1845", "attributes": { "weight": 2 } }, { "key": "8613", "source": "442", "target": "479", "attributes": { "weight": 5 } }, { "key": "8623", "source": "442", "target": "601", "attributes": { "weight": 2 } }, { "key": "8560", "source": "442", "target": "455", "attributes": { "weight": 2 } }, { "key": "4459", "source": "442", "target": "1090", "attributes": { "weight": 4 } }, { "key": "33322", "source": "442", "target": "482", "attributes": { "weight": 1 } }, { "key": "30495", "source": "442", "target": "2264", "attributes": { "weight": 1 } }, { "key": "6627", "source": "442", "target": "495", "attributes": { "weight": 4 } }, { "key": "8505", "source": "442", "target": "195", "attributes": { "weight": 4 } }, { "key": "8531", "source": "442", "target": "1112", "attributes": { "weight": 2 } }, { "key": "12568", "source": "442", "target": "180", "attributes": { "weight": 1 } }, { "key": "33323", "source": "442", "target": "56", "attributes": { "weight": 1 } }, { "key": "8558", "source": "442", "target": "52", "attributes": { "weight": 2 } }, { "key": "18444", "source": "442", "target": "1738", "attributes": { "weight": 3 } }, { "key": "8641", "source": "442", "target": "1568", "attributes": { "weight": 3 } }, { "key": "22665", "source": "442", "target": "1037", "attributes": { "weight": 1 } }, { "key": "8559", "source": "442", "target": "5", "attributes": { "weight": 2 } }, { "key": "3014", "source": "442", "target": "791", "attributes": { "weight": 3 } }, { "key": "8609", "source": "442", "target": "42", "attributes": { "weight": 1 } }, { "key": "8517", "source": "442", "target": "222", "attributes": { "weight": 3 } }, { "key": "8532", "source": "442", "target": "132", "attributes": { "weight": 1 } }, { "key": "8583", "source": "442", "target": "1547", "attributes": { "weight": 2 } }, { "key": "8503", "source": "442", "target": "220", "attributes": { "weight": 3 } }, { "key": "33314", "source": "442", "target": "439", "attributes": { "weight": 1 } }, { "key": "8598", "source": "442", "target": "474", "attributes": { "weight": 2 } }, { "key": "32956", "source": "442", "target": "149", "attributes": { "weight": 1 } }, { "key": "8536", "source": "442", "target": "674", "attributes": { "weight": 4 } }, { "key": "31126", "source": "442", "target": "2450", "attributes": { "weight": 1 } }, { "key": "8617", "source": "442", "target": "305", "attributes": { "weight": 3 } }, { "key": "8566", "source": "442", "target": "1232", "attributes": { "weight": 5 } }, { "key": "17157", "source": "442", "target": "2108", "attributes": { "weight": 1 } }, { "key": "8530", "source": "442", "target": "778", "attributes": { "weight": 1 } }, { "key": "8579", "source": "442", "target": "40", "attributes": { "weight": 1 } }, { "key": "4456", "source": "442", "target": "468", "attributes": { "weight": 3 } }, { "key": "8528", "source": "442", "target": "339", "attributes": { "weight": 3 } }, { "key": "8606", "source": "442", "target": "476", "attributes": { "weight": 2 } }, { "key": "29610", "source": "442", "target": "1253", "attributes": { "weight": 1 } }, { "key": "8618", "source": "442", "target": "1560", "attributes": { "weight": 1 } }, { "key": "8562", "source": "442", "target": "392", "attributes": { "weight": 1 } }, { "key": "27015", "source": "442", "target": "1247", "attributes": { "weight": 1 } }, { "key": "8590", "source": "442", "target": "1367", "attributes": { "weight": 2 } }, { "key": "8499", "source": "442", "target": "1141", "attributes": { "weight": 3 } }, { "key": "8550", "source": "442", "target": "452", "attributes": { "weight": 3 } }, { "key": "8518", "source": "442", "target": "644", "attributes": { "weight": 1 } }, { "key": "23739", "source": "442", "target": "1774", "attributes": { "weight": 1 } }, { "key": "8555", "source": "442", "target": "1536", "attributes": { "weight": 2 } }, { "key": "8539", "source": "442", "target": "39", "attributes": { "weight": 2 } }, { "key": "8628", "source": "442", "target": "1329", "attributes": { "weight": 2 } }, { "key": "8553", "source": "442", "target": "454", "attributes": { "weight": 2 } }, { "key": "8599", "source": "442", "target": "1282", "attributes": { "weight": 3 } }, { "key": "29611", "source": "442", "target": "473", "attributes": { "weight": 2 } }, { "key": "8593", "source": "442", "target": "1553", "attributes": { "weight": 2 } }, { "key": "8541", "source": "442", "target": "913", "attributes": { "weight": 3 } }, { "key": "8538", "source": "442", "target": "419", "attributes": { "weight": 2 } }, { "key": "7237", "source": "442", "target": "1063", "attributes": { "weight": 6 } }, { "key": "33320", "source": "442", "target": "2258", "attributes": { "weight": 1 } }, { "key": "25466", "source": "442", "target": "498", "attributes": { "weight": 1 } }, { "key": "8616", "source": "442", "target": "372", "attributes": { "weight": 4 } }, { "key": "6632", "source": "443", "target": "189", "attributes": { "weight": 2 } }, { "key": "36988", "source": "443", "target": "455", "attributes": { "weight": 1 } }, { "key": "3934", "source": "443", "target": "3", "attributes": { "weight": 1 } }, { "key": "19649", "source": "443", "target": "472", "attributes": { "weight": 3 } }, { "key": "19642", "source": "443", "target": "438", "attributes": { "weight": 1 } }, { "key": "19646", "source": "443", "target": "2248", "attributes": { "weight": 1 } }, { "key": "3841", "source": "443", "target": "487", "attributes": { "weight": 1 } }, { "key": "6631", "source": "443", "target": "188", "attributes": { "weight": 2 } }, { "key": "23577", "source": "443", "target": "220", "attributes": { "weight": 1 } }, { "key": "6634", "source": "443", "target": "495", "attributes": { "weight": 2 } }, { "key": "1264", "source": "443", "target": "490", "attributes": { "weight": 2 } }, { "key": "19641", "source": "443", "target": "1522", "attributes": { "weight": 1 } }, { "key": "19647", "source": "443", "target": "1832", "attributes": { "weight": 1 } }, { "key": "6629", "source": "443", "target": "1356", "attributes": { "weight": 1 } }, { "key": "19645", "source": "443", "target": "450", "attributes": { "weight": 1 } }, { "key": "17158", "source": "443", "target": "449", "attributes": { "weight": 1 } }, { "key": "23328", "source": "443", "target": "223", "attributes": { "weight": 1 } }, { "key": "1262", "source": "443", "target": "224", "attributes": { "weight": 2 } }, { "key": "32709", "source": "443", "target": "135", "attributes": { "weight": 2 } }, { "key": "3933", "source": "443", "target": "432", "attributes": { "weight": 2 } }, { "key": "1263", "source": "443", "target": "182", "attributes": { "weight": 1 } }, { "key": "6630", "source": "443", "target": "454", "attributes": { "weight": 3 } }, { "key": "32708", "source": "443", "target": "51", "attributes": { "weight": 2 } }, { "key": "19644", "source": "443", "target": "2245", "attributes": { "weight": 1 } }, { "key": "6633", "source": "443", "target": "193", "attributes": { "weight": 1 } }, { "key": "22836", "source": "443", "target": "1371", "attributes": { "weight": 1 } }, { "key": "19653", "source": "443", "target": "489", "attributes": { "weight": 1 } }, { "key": "23329", "source": "443", "target": "1121", "attributes": { "weight": 1 } }, { "key": "6628", "source": "443", "target": "183", "attributes": { "weight": 2 } }, { "key": "19648", "source": "443", "target": "1247", "attributes": { "weight": 1 } }, { "key": "19650", "source": "443", "target": "2261", "attributes": { "weight": 1 } }, { "key": "33324", "source": "443", "target": "2258", "attributes": { "weight": 1 } }, { "key": "19643", "source": "443", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19651", "source": "443", "target": "2267", "attributes": { "weight": 1 } }, { "key": "23578", "source": "443", "target": "1071", "attributes": { "weight": 1 } }, { "key": "26296", "source": "443", "target": "1258", "attributes": { "weight": 1 } }, { "key": "19652", "source": "443", "target": "2095", "attributes": { "weight": 1 } }, { "key": "8659", "source": "444", "target": "474", "attributes": { "weight": 3 } }, { "key": "35297", "source": "444", "target": "50", "attributes": { "weight": 1 } }, { "key": "8660", "source": "444", "target": "1125", "attributes": { "weight": 2 } }, { "key": "8658", "source": "444", "target": "1087", "attributes": { "weight": 3 } }, { "key": "6644", "source": "444", "target": "183", "attributes": { "weight": 1 } }, { "key": "1330", "source": "444", "target": "224", "attributes": { "weight": 2 } }, { "key": "8657", "source": "444", "target": "442", "attributes": { "weight": 1 } }, { "key": "6645", "source": "444", "target": "186", "attributes": { "weight": 2 } }, { "key": "6646", "source": "444", "target": "192", "attributes": { "weight": 2 } }, { "key": "26297", "source": "444", "target": "1258", "attributes": { "weight": 1 } }, { "key": "4117", "source": "444", "target": "1088", "attributes": { "weight": 2 } }, { "key": "9952", "source": "445", "target": "135", "attributes": { "weight": 6 } }, { "key": "9954", "source": "445", "target": "228", "attributes": { "weight": 2 } }, { "key": "17159", "source": "445", "target": "449", "attributes": { "weight": 1 } }, { "key": "6654", "source": "445", "target": "57", "attributes": { "weight": 3 } }, { "key": "27232", "source": "445", "target": "52", "attributes": { "weight": 2 } }, { "key": "9950", "source": "445", "target": "222", "attributes": { "weight": 4 } }, { "key": "9956", "source": "445", "target": "480", "attributes": { "weight": 2 } }, { "key": "6651", "source": "445", "target": "425", "attributes": { "weight": 3 } }, { "key": "19809", "source": "445", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9958", "source": "445", "target": "492", "attributes": { "weight": 4 } }, { "key": "9960", "source": "445", "target": "495", "attributes": { "weight": 3 } }, { "key": "11043", "source": "445", "target": "190", "attributes": { "weight": 3 } }, { "key": "1335", "source": "445", "target": "490", "attributes": { "weight": 5 } }, { "key": "19808", "source": "445", "target": "471", "attributes": { "weight": 1 } }, { "key": "1334", "source": "445", "target": "188", "attributes": { "weight": 2 } }, { "key": "6652", "source": "445", "target": "454", "attributes": { "weight": 2 } }, { "key": "9951", "source": "445", "target": "442", "attributes": { "weight": 3 } }, { "key": "25910", "source": "445", "target": "223", "attributes": { "weight": 2 } }, { "key": "9957", "source": "445", "target": "595", "attributes": { "weight": 2 } }, { "key": "35299", "source": "445", "target": "1536", "attributes": { "weight": 1 } }, { "key": "33330", "source": "445", "target": "2258", "attributes": { "weight": 1 } }, { "key": "11042", "source": "445", "target": "452", "attributes": { "weight": 6 } }, { "key": "19810", "source": "445", "target": "235", "attributes": { "weight": 1 } }, { "key": "9961", "source": "445", "target": "496", "attributes": { "weight": 3 } }, { "key": "19807", "source": "445", "target": "2248", "attributes": { "weight": 1 } }, { "key": "32711", "source": "445", "target": "1125", "attributes": { "weight": 1 } }, { "key": "18100", "source": "445", "target": "2186", "attributes": { "weight": 1 } }, { "key": "1332", "source": "445", "target": "183", "attributes": { "weight": 6 } }, { "key": "9959", "source": "445", "target": "494", "attributes": { "weight": 3 } }, { "key": "1336", "source": "445", "target": "193", "attributes": { "weight": 6 } }, { "key": "9949", "source": "445", "target": "220", "attributes": { "weight": 3 } }, { "key": "1331", "source": "445", "target": "224", "attributes": { "weight": 1 } }, { "key": "35896", "source": "445", "target": "1026", "attributes": { "weight": 1 } }, { "key": "9953", "source": "445", "target": "469", "attributes": { "weight": 3 } }, { "key": "24026", "source": "445", "target": "130", "attributes": { "weight": 2 } }, { "key": "24027", "source": "445", "target": "1116", "attributes": { "weight": 3 } }, { "key": "16777", "source": "445", "target": "59", "attributes": { "weight": 1 } }, { "key": "35298", "source": "445", "target": "431", "attributes": { "weight": 1 } }, { "key": "32710", "source": "445", "target": "472", "attributes": { "weight": 2 } }, { "key": "6653", "source": "445", "target": "189", "attributes": { "weight": 5 } }, { "key": "24339", "source": "445", "target": "1367", "attributes": { "weight": 3 } }, { "key": "1333", "source": "445", "target": "455", "attributes": { "weight": 1 } }, { "key": "16778", "source": "445", "target": "674", "attributes": { "weight": 1 } }, { "key": "12780", "source": "445", "target": "439", "attributes": { "weight": 2 } }, { "key": "35895", "source": "445", "target": "440", "attributes": { "weight": 1 } }, { "key": "9955", "source": "445", "target": "473", "attributes": { "weight": 3 } }, { "key": "19806", "source": "445", "target": "221", "attributes": { "weight": 1 } }, { "key": "32712", "source": "446", "target": "860", "attributes": { "weight": 1 } }, { "key": "24030", "source": "446", "target": "1354", "attributes": { "weight": 3 } }, { "key": "32132", "source": "446", "target": "1282", "attributes": { "weight": 1 } }, { "key": "32714", "source": "446", "target": "53", "attributes": { "weight": 1 } }, { "key": "12172", "source": "446", "target": "1161", "attributes": { "weight": 1 } }, { "key": "24031", "source": "446", "target": "130", "attributes": { "weight": 2 } }, { "key": "35357", "source": "446", "target": "3195", "attributes": { "weight": 1 } }, { "key": "8672", "source": "446", "target": "1362", "attributes": { "weight": 3 } }, { "key": "24029", "source": "446", "target": "429", "attributes": { "weight": 3 } }, { "key": "32716", "source": "446", "target": "483", "attributes": { "weight": 1 } }, { "key": "32713", "source": "446", "target": "458", "attributes": { "weight": 1 } }, { "key": "25911", "source": "446", "target": "1367", "attributes": { "weight": 1 } }, { "key": "32715", "source": "446", "target": "231", "attributes": { "weight": 1 } }, { "key": "32717", "source": "446", "target": "56", "attributes": { "weight": 2 } }, { "key": "8673", "source": "446", "target": "1125", "attributes": { "weight": 2 } }, { "key": "8671", "source": "446", "target": "1219", "attributes": { "weight": 2 } }, { "key": "8670", "source": "446", "target": "450", "attributes": { "weight": 2 } }, { "key": "17160", "source": "446", "target": "449", "attributes": { "weight": 1 } }, { "key": "1337", "source": "446", "target": "183", "attributes": { "weight": 1 } }, { "key": "11045", "source": "446", "target": "220", "attributes": { "weight": 2 } }, { "key": "24032", "source": "447", "target": "130", "attributes": { "weight": 2 } }, { "key": "29122", "source": "447", "target": "2263", "attributes": { "weight": 1 } }, { "key": "1338", "source": "447", "target": "224", "attributes": { "weight": 1 } }, { "key": "27019", "source": "447", "target": "1247", "attributes": { "weight": 1 } }, { "key": "27021", "source": "447", "target": "1282", "attributes": { "weight": 1 } }, { "key": "26299", "source": "447", "target": "1258", "attributes": { "weight": 1 } }, { "key": "23332", "source": "447", "target": "1121", "attributes": { "weight": 1 } }, { "key": "11860", "source": "447", "target": "135", "attributes": { "weight": 5 } }, { "key": "29123", "source": "447", "target": "484", "attributes": { "weight": 1 } }, { "key": "29120", "source": "447", "target": "442", "attributes": { "weight": 1 } }, { "key": "16779", "source": "447", "target": "59", "attributes": { "weight": 2 } }, { "key": "29118", "source": "447", "target": "220", "attributes": { "weight": 1 } }, { "key": "1343", "source": "447", "target": "193", "attributes": { "weight": 2 } }, { "key": "26429", "source": "447", "target": "189", "attributes": { "weight": 2 } }, { "key": "16780", "source": "447", "target": "434", "attributes": { "weight": 1 } }, { "key": "25467", "source": "447", "target": "497", "attributes": { "weight": 1 } }, { "key": "10812", "source": "447", "target": "457", "attributes": { "weight": 2 } }, { "key": "32718", "source": "447", "target": "1125", "attributes": { "weight": 1 } }, { "key": "29124", "source": "447", "target": "494", "attributes": { "weight": 1 } }, { "key": "29121", "source": "447", "target": "452", "attributes": { "weight": 1 } }, { "key": "1339", "source": "447", "target": "183", "attributes": { "weight": 3 } }, { "key": "1342", "source": "447", "target": "490", "attributes": { "weight": 1 } }, { "key": "1340", "source": "447", "target": "455", "attributes": { "weight": 1 } }, { "key": "16783", "source": "447", "target": "73", "attributes": { "weight": 1 } }, { "key": "23331", "source": "447", "target": "223", "attributes": { "weight": 1 } }, { "key": "17161", "source": "447", "target": "449", "attributes": { "weight": 1 } }, { "key": "27017", "source": "447", "target": "450", "attributes": { "weight": 2 } }, { "key": "26428", "source": "447", "target": "454", "attributes": { "weight": 2 } }, { "key": "16781", "source": "447", "target": "70", "attributes": { "weight": 1 } }, { "key": "12173", "source": "447", "target": "435", "attributes": { "weight": 3 } }, { "key": "27233", "source": "447", "target": "57", "attributes": { "weight": 2 } }, { "key": "29119", "source": "447", "target": "432", "attributes": { "weight": 1 } }, { "key": "1341", "source": "447", "target": "188", "attributes": { "weight": 1 } }, { "key": "27016", "source": "447", "target": "2645", "attributes": { "weight": 1 } }, { "key": "29022", "source": "447", "target": "495", "attributes": { "weight": 2 } }, { "key": "27018", "source": "447", "target": "1832", "attributes": { "weight": 1 } }, { "key": "33332", "source": "447", "target": "489", "attributes": { "weight": 1 } }, { "key": "33331", "source": "447", "target": "52", "attributes": { "weight": 1 } }, { "key": "16782", "source": "447", "target": "1389", "attributes": { "weight": 1 } }, { "key": "29125", "source": "447", "target": "500", "attributes": { "weight": 1 } }, { "key": "27020", "source": "447", "target": "472", "attributes": { "weight": 3 } }, { "key": "1352", "source": "448", "target": "488", "attributes": { "weight": 1 } }, { "key": "1350", "source": "448", "target": "231", "attributes": { "weight": 3 } }, { "key": "35915", "source": "448", "target": "1390", "attributes": { "weight": 1 } }, { "key": "19820", "source": "448", "target": "1756", "attributes": { "weight": 1 } }, { "key": "35909", "source": "448", "target": "1360", "attributes": { "weight": 1 } }, { "key": "35914", "source": "448", "target": "1778", "attributes": { "weight": 1 } }, { "key": "24041", "source": "448", "target": "130", "attributes": { "weight": 2 } }, { "key": "31514", "source": "448", "target": "3060", "attributes": { "weight": 1 } }, { "key": "36908", "source": "448", "target": "2647", "attributes": { "weight": 1 } }, { "key": "19822", "source": "448", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19821", "source": "448", "target": "451", "attributes": { "weight": 1 } }, { "key": "35908", "source": "448", "target": "1760", "attributes": { "weight": 1 } }, { "key": "19825", "source": "448", "target": "489", "attributes": { "weight": 1 } }, { "key": "35910", "source": "448", "target": "465", "attributes": { "weight": 1 } }, { "key": "19823", "source": "448", "target": "464", "attributes": { "weight": 1 } }, { "key": "1348", "source": "448", "target": "456", "attributes": { "weight": 1 } }, { "key": "33337", "source": "448", "target": "2258", "attributes": { "weight": 1 } }, { "key": "1351", "source": "448", "target": "232", "attributes": { "weight": 2 } }, { "key": "35911", "source": "448", "target": "1026", "attributes": { "weight": 1 } }, { "key": "35906", "source": "448", "target": "433", "attributes": { "weight": 1 } }, { "key": "19824", "source": "448", "target": "1744", "attributes": { "weight": 1 } }, { "key": "1349", "source": "448", "target": "189", "attributes": { "weight": 2 } }, { "key": "35913", "source": "448", "target": "1092", "attributes": { "weight": 1 } }, { "key": "35912", "source": "448", "target": "428", "attributes": { "weight": 1 } }, { "key": "19819", "source": "448", "target": "429", "attributes": { "weight": 1 } }, { "key": "36907", "source": "448", "target": "1072", "attributes": { "weight": 1 } }, { "key": "37064", "source": "448", "target": "857", "attributes": { "weight": 1 } }, { "key": "35907", "source": "448", "target": "440", "attributes": { "weight": 1 } }, { "key": "17203", "source": "449", "target": "470", "attributes": { "weight": 2 } }, { "key": "17181", "source": "449", "target": "223", "attributes": { "weight": 1 } }, { "key": "12178", "source": "449", "target": "1564", "attributes": { "weight": 1 } }, { "key": "17168", "source": "449", "target": "59", "attributes": { "weight": 2 } }, { "key": "4961", "source": "449", "target": "779", "attributes": { "weight": 2 } }, { "key": "17224", "source": "449", "target": "56", "attributes": { "weight": 2 } }, { "key": "19866", "source": "449", "target": "2095", "attributes": { "weight": 1 } }, { "key": "4964", "source": "449", "target": "123", "attributes": { "weight": 7 } }, { "key": "17195", "source": "449", "target": "188", "attributes": { "weight": 1 } }, { "key": "8698", "source": "449", "target": "1363", "attributes": { "weight": 2 } }, { "key": "17359", "source": "449", "target": "358", "attributes": { "weight": 2 } }, { "key": "19827", "source": "449", "target": "221", "attributes": { "weight": 1 } }, { "key": "17210", "source": "449", "target": "189", "attributes": { "weight": 2 } }, { "key": "17201", "source": "449", "target": "135", "attributes": { "weight": 2 } }, { "key": "19855", "source": "449", "target": "1367", "attributes": { "weight": 1 } }, { "key": "17229", "source": "449", "target": "497", "attributes": { "weight": 1 } }, { "key": "19859", "source": "449", "target": "2267", "attributes": { "weight": 1 } }, { "key": "19862", "source": "449", "target": "482", "attributes": { "weight": 1 } }, { "key": "19873", "source": "449", "target": "2273", "attributes": { "weight": 1 } }, { "key": "17226", "source": "449", "target": "494", "attributes": { "weight": 1 } }, { "key": "17213", "source": "449", "target": "474", "attributes": { "weight": 2 } }, { "key": "17194", "source": "449", "target": "455", "attributes": { "weight": 1 } }, { "key": "1353", "source": "449", "target": "224", "attributes": { "weight": 1 } }, { "key": "17205", "source": "449", "target": "228", "attributes": { "weight": 1 } }, { "key": "17169", "source": "449", "target": "432", "attributes": { "weight": 1 } }, { "key": "17164", "source": "449", "target": "857", "attributes": { "weight": 1 } }, { "key": "19857", "source": "449", "target": "1744", "attributes": { "weight": 1 } }, { "key": "17228", "source": "449", "target": "496", "attributes": { "weight": 1 } }, { "key": "19834", "source": "449", "target": "2241", "attributes": { "weight": 1 } }, { "key": "19838", "source": "449", "target": "1759", "attributes": { "weight": 1 } }, { "key": "19849", "source": "449", "target": "1247", "attributes": { "weight": 1 } }, { "key": "19851", "source": "449", "target": "1836", "attributes": { "weight": 1 } }, { "key": "8697", "source": "449", "target": "442", "attributes": { "weight": 3 } }, { "key": "19846", "source": "449", "target": "464", "attributes": { "weight": 1 } }, { "key": "19868", "source": "449", "target": "2271", "attributes": { "weight": 1 } }, { "key": "17221", "source": "449", "target": "1323", "attributes": { "weight": 1 } }, { "key": "19861", "source": "449", "target": "480", "attributes": { "weight": 1 } }, { "key": "19839", "source": "449", "target": "2245", "attributes": { "weight": 1 } }, { "key": "16786", "source": "449", "target": "70", "attributes": { "weight": 2 } }, { "key": "19877", "source": "449", "target": "498", "attributes": { "weight": 1 } }, { "key": "26435", "source": "449", "target": "1047", "attributes": { "weight": 2 } }, { "key": "17172", "source": "449", "target": "435", "attributes": { "weight": 2 } }, { "key": "3605", "source": "449", "target": "1025", "attributes": { "weight": 1 } }, { "key": "17184", "source": "449", "target": "445", "attributes": { "weight": 1 } }, { "key": "17220", "source": "449", "target": "2110", "attributes": { "weight": 1 } }, { "key": "19854", "source": "449", "target": "2094", "attributes": { "weight": 1 } }, { "key": "17225", "source": "449", "target": "233", "attributes": { "weight": 1 } }, { "key": "19837", "source": "449", "target": "2244", "attributes": { "weight": 1 } }, { "key": "17219", "source": "449", "target": "2109", "attributes": { "weight": 1 } }, { "key": "19843", "source": "449", "target": "1360", "attributes": { "weight": 1 } }, { "key": "17227", "source": "449", "target": "495", "attributes": { "weight": 1 } }, { "key": "19865", "source": "449", "target": "695", "attributes": { "weight": 1 } }, { "key": "19847", "source": "449", "target": "465", "attributes": { "weight": 1 } }, { "key": "17173", "source": "449", "target": "437", "attributes": { "weight": 1 } }, { "key": "17182", "source": "449", "target": "440", "attributes": { "weight": 2 } }, { "key": "19826", "source": "449", "target": "1756", "attributes": { "weight": 1 } }, { "key": "17170", "source": "449", "target": "1036", "attributes": { "weight": 2 } }, { "key": "17217", "source": "449", "target": "479", "attributes": { "weight": 2 } }, { "key": "19833", "source": "449", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19869", "source": "449", "target": "489", "attributes": { "weight": 1 } }, { "key": "17223", "source": "449", "target": "672", "attributes": { "weight": 2 } }, { "key": "17200", "source": "449", "target": "2107", "attributes": { "weight": 1 } }, { "key": "17222", "source": "449", "target": "490", "attributes": { "weight": 1 } }, { "key": "19831", "source": "449", "target": "425", "attributes": { "weight": 1 } }, { "key": "17183", "source": "449", "target": "443", "attributes": { "weight": 1 } }, { "key": "17176", "source": "449", "target": "50", "attributes": { "weight": 1 } }, { "key": "19844", "source": "449", "target": "2251", "attributes": { "weight": 1 } }, { "key": "17174", "source": "449", "target": "2105", "attributes": { "weight": 1 } }, { "key": "17177", "source": "449", "target": "2106", "attributes": { "weight": 1 } }, { "key": "17180", "source": "449", "target": "51", "attributes": { "weight": 2 } }, { "key": "17208", "source": "449", "target": "208", "attributes": { "weight": 1 } }, { "key": "19864", "source": "449", "target": "2269", "attributes": { "weight": 1 } }, { "key": "17230", "source": "449", "target": "57", "attributes": { "weight": 2 } }, { "key": "19852", "source": "449", "target": "1122", "attributes": { "weight": 1 } }, { "key": "17187", "source": "449", "target": "450", "attributes": { "weight": 2 } }, { "key": "17185", "source": "449", "target": "446", "attributes": { "weight": 1 } }, { "key": "12177", "source": "449", "target": "1535", "attributes": { "weight": 1 } }, { "key": "17196", "source": "449", "target": "1232", "attributes": { "weight": 2 } }, { "key": "17211", "source": "449", "target": "473", "attributes": { "weight": 1 } }, { "key": "4965", "source": "449", "target": "1090", "attributes": { "weight": 2 } }, { "key": "17207", "source": "449", "target": "472", "attributes": { "weight": 2 } }, { "key": "19848", "source": "449", "target": "2254", "attributes": { "weight": 1 } }, { "key": "17197", "source": "449", "target": "459", "attributes": { "weight": 2 } }, { "key": "19870", "source": "449", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19850", "source": "449", "target": "1364", "attributes": { "weight": 1 } }, { "key": "17193", "source": "449", "target": "52", "attributes": { "weight": 1 } }, { "key": "19867", "source": "449", "target": "2270", "attributes": { "weight": 1 } }, { "key": "17206", "source": "449", "target": "471", "attributes": { "weight": 3 } }, { "key": "16784", "source": "449", "target": "674", "attributes": { "weight": 3 } }, { "key": "19853", "source": "449", "target": "2258", "attributes": { "weight": 1 } }, { "key": "19832", "source": "449", "target": "2025", "attributes": { "weight": 1 } }, { "key": "17192", "source": "449", "target": "1219", "attributes": { "weight": 1 } }, { "key": "17218", "source": "449", "target": "481", "attributes": { "weight": 1 } }, { "key": "19860", "source": "449", "target": "478", "attributes": { "weight": 1 } }, { "key": "17204", "source": "449", "target": "54", "attributes": { "weight": 2 } }, { "key": "17216", "source": "449", "target": "231", "attributes": { "weight": 2 } }, { "key": "17190", "source": "449", "target": "454", "attributes": { "weight": 2 } }, { "key": "19863", "source": "449", "target": "1129", "attributes": { "weight": 1 } }, { "key": "19858", "source": "449", "target": "1026", "attributes": { "weight": 2 } }, { "key": "17202", "source": "449", "target": "469", "attributes": { "weight": 1 } }, { "key": "17166", "source": "449", "target": "1354", "attributes": { "weight": 2 } }, { "key": "7270", "source": "449", "target": "1063", "attributes": { "weight": 3 } }, { "key": "4963", "source": "449", "target": "468", "attributes": { "weight": 3 } }, { "key": "19840", "source": "449", "target": "2248", "attributes": { "weight": 1 } }, { "key": "19876", "source": "449", "target": "2276", "attributes": { "weight": 1 } }, { "key": "19856", "source": "449", "target": "1088", "attributes": { "weight": 1 } }, { "key": "17178", "source": "449", "target": "2086", "attributes": { "weight": 1 } }, { "key": "17191", "source": "449", "target": "1358", "attributes": { "weight": 2 } }, { "key": "8696", "source": "449", "target": "195", "attributes": { "weight": 3 } }, { "key": "17167", "source": "449", "target": "220", "attributes": { "weight": 1 } }, { "key": "17163", "source": "449", "target": "1353", "attributes": { "weight": 2 } }, { "key": "17189", "source": "449", "target": "452", "attributes": { "weight": 1 } }, { "key": "26302", "source": "449", "target": "1258", "attributes": { "weight": 1 } }, { "key": "32340", "source": "449", "target": "791", "attributes": { "weight": 1 } }, { "key": "17215", "source": "449", "target": "1126", "attributes": { "weight": 1 } }, { "key": "19872", "source": "449", "target": "235", "attributes": { "weight": 1 } }, { "key": "19835", "source": "449", "target": "2243", "attributes": { "weight": 1 } }, { "key": "12176", "source": "449", "target": "1829", "attributes": { "weight": 1 } }, { "key": "19875", "source": "449", "target": "1390", "attributes": { "weight": 1 } }, { "key": "17199", "source": "449", "target": "1362", "attributes": { "weight": 1 } }, { "key": "17214", "source": "449", "target": "1282", "attributes": { "weight": 2 } }, { "key": "17165", "source": "449", "target": "429", "attributes": { "weight": 2 } }, { "key": "17212", "source": "449", "target": "190", "attributes": { "weight": 1 } }, { "key": "17171", "source": "449", "target": "130", "attributes": { "weight": 2 } }, { "key": "17198", "source": "449", "target": "1811", "attributes": { "weight": 1 } }, { "key": "19842", "source": "449", "target": "186", "attributes": { "weight": 1 } }, { "key": "19841", "source": "449", "target": "1832", "attributes": { "weight": 1 } }, { "key": "17209", "source": "449", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19874", "source": "449", "target": "1375", "attributes": { "weight": 1 } }, { "key": "4962", "source": "449", "target": "370", "attributes": { "weight": 9 } }, { "key": "19845", "source": "449", "target": "2253", "attributes": { "weight": 1 } }, { "key": "17175", "source": "449", "target": "222", "attributes": { "weight": 2 } }, { "key": "19871", "source": "449", "target": "2096", "attributes": { "weight": 1 } }, { "key": "17188", "source": "449", "target": "451", "attributes": { "weight": 2 } }, { "key": "19878", "source": "449", "target": "194", "attributes": { "weight": 1 } }, { "key": "17179", "source": "449", "target": "938", "attributes": { "weight": 2 } }, { "key": "16785", "source": "449", "target": "457", "attributes": { "weight": 1 } }, { "key": "19836", "source": "449", "target": "1070", "attributes": { "weight": 1 } }, { "key": "19829", "source": "449", "target": "438", "attributes": { "weight": 1 } }, { "key": "19830", "source": "449", "target": "439", "attributes": { "weight": 1 } }, { "key": "17162", "source": "449", "target": "1141", "attributes": { "weight": 1 } }, { "key": "1354", "source": "449", "target": "183", "attributes": { "weight": 2 } }, { "key": "19828", "source": "449", "target": "1110", "attributes": { "weight": 1 } }, { "key": "17186", "source": "449", "target": "447", "attributes": { "weight": 1 } }, { "key": "4975", "source": "450", "target": "468", "attributes": { "weight": 5 } }, { "key": "12192", "source": "450", "target": "1839", "attributes": { "weight": 1 } }, { "key": "25857", "source": "450", "target": "220", "attributes": { "weight": 2 } }, { "key": "19908", "source": "450", "target": "2271", "attributes": { "weight": 1 } }, { "key": "19885", "source": "450", "target": "222", "attributes": { "weight": 1 } }, { "key": "33350", "source": "450", "target": "2258", "attributes": { "weight": 1 } }, { "key": "12191", "source": "450", "target": "1564", "attributes": { "weight": 1 } }, { "key": "27031", "source": "450", "target": "1366", "attributes": { "weight": 1 } }, { "key": "19903", "source": "450", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19897", "source": "450", "target": "2253", "attributes": { "weight": 1 } }, { "key": "12186", "source": "450", "target": "1362", "attributes": { "weight": 1 } }, { "key": "33344", "source": "450", "target": "860", "attributes": { "weight": 1 } }, { "key": "33348", "source": "450", "target": "1738", "attributes": { "weight": 1 } }, { "key": "33352", "source": "450", "target": "471", "attributes": { "weight": 1 } }, { "key": "19899", "source": "450", "target": "2254", "attributes": { "weight": 1 } }, { "key": "17232", "source": "450", "target": "2108", "attributes": { "weight": 1 } }, { "key": "27030", "source": "450", "target": "447", "attributes": { "weight": 2 } }, { "key": "19883", "source": "450", "target": "1354", "attributes": { "weight": 3 } }, { "key": "33345", "source": "450", "target": "52", "attributes": { "weight": 1 } }, { "key": "26450", "source": "450", "target": "454", "attributes": { "weight": 1 } }, { "key": "12185", "source": "450", "target": "1535", "attributes": { "weight": 1 } }, { "key": "19882", "source": "450", "target": "429", "attributes": { "weight": 2 } }, { "key": "19887", "source": "450", "target": "438", "attributes": { "weight": 1 } }, { "key": "1393", "source": "450", "target": "224", "attributes": { "weight": 1 } }, { "key": "19893", "source": "450", "target": "451", "attributes": { "weight": 2 } }, { "key": "19891", "source": "450", "target": "2244", "attributes": { "weight": 1 } }, { "key": "33354", "source": "450", "target": "473", "attributes": { "weight": 1 } }, { "key": "27034", "source": "450", "target": "494", "attributes": { "weight": 1 } }, { "key": "33349", "source": "450", "target": "470", "attributes": { "weight": 1 } }, { "key": "19892", "source": "450", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19890", "source": "450", "target": "443", "attributes": { "weight": 1 } }, { "key": "16790", "source": "450", "target": "70", "attributes": { "weight": 2 } }, { "key": "19894", "source": "450", "target": "1358", "attributes": { "weight": 1 } }, { "key": "19888", "source": "450", "target": "2025", "attributes": { "weight": 1 } }, { "key": "33356", "source": "450", "target": "474", "attributes": { "weight": 1 } }, { "key": "27032", "source": "450", "target": "2094", "attributes": { "weight": 1 } }, { "key": "33340", "source": "450", "target": "2645", "attributes": { "weight": 1 } }, { "key": "16789", "source": "450", "target": "674", "attributes": { "weight": 2 } }, { "key": "8706", "source": "450", "target": "442", "attributes": { "weight": 5 } }, { "key": "19901", "source": "450", "target": "1367", "attributes": { "weight": 1 } }, { "key": "33343", "source": "450", "target": "425", "attributes": { "weight": 1 } }, { "key": "16787", "source": "450", "target": "59", "attributes": { "weight": 2 } }, { "key": "19906", "source": "450", "target": "480", "attributes": { "weight": 1 } }, { "key": "19896", "source": "450", "target": "1998", "attributes": { "weight": 1 } }, { "key": "33339", "source": "450", "target": "432", "attributes": { "weight": 1 } }, { "key": "33341", "source": "450", "target": "858", "attributes": { "weight": 1 } }, { "key": "27033", "source": "450", "target": "479", "attributes": { "weight": 2 } }, { "key": "12189", "source": "450", "target": "472", "attributes": { "weight": 1 } }, { "key": "19884", "source": "450", "target": "130", "attributes": { "weight": 3 } }, { "key": "8707", "source": "450", "target": "446", "attributes": { "weight": 2 } }, { "key": "11867", "source": "450", "target": "1363", "attributes": { "weight": 1 } }, { "key": "12188", "source": "450", "target": "1837", "attributes": { "weight": 1 } }, { "key": "12182", "source": "450", "target": "1161", "attributes": { "weight": 1 } }, { "key": "33358", "source": "450", "target": "2110", "attributes": { "weight": 1 } }, { "key": "19889", "source": "450", "target": "2242", "attributes": { "weight": 1 } }, { "key": "27029", "source": "450", "target": "440", "attributes": { "weight": 1 } }, { "key": "33342", "source": "450", "target": "51", "attributes": { "weight": 1 } }, { "key": "12183", "source": "450", "target": "435", "attributes": { "weight": 1 } }, { "key": "19898", "source": "450", "target": "464", "attributes": { "weight": 2 } }, { "key": "33360", "source": "450", "target": "672", "attributes": { "weight": 1 } }, { "key": "19881", "source": "450", "target": "1353", "attributes": { "weight": 1 } }, { "key": "19904", "source": "450", "target": "231", "attributes": { "weight": 4 } }, { "key": "17231", "source": "450", "target": "449", "attributes": { "weight": 2 } }, { "key": "33359", "source": "450", "target": "489", "attributes": { "weight": 1 } }, { "key": "12190", "source": "450", "target": "1768", "attributes": { "weight": 1 } }, { "key": "26449", "source": "450", "target": "1047", "attributes": { "weight": 2 } }, { "key": "12184", "source": "450", "target": "1832", "attributes": { "weight": 1 } }, { "key": "31420", "source": "450", "target": "223", "attributes": { "weight": 2 } }, { "key": "33355", "source": "450", "target": "190", "attributes": { "weight": 1 } }, { "key": "19905", "source": "450", "target": "478", "attributes": { "weight": 1 } }, { "key": "19900", "source": "450", "target": "54", "attributes": { "weight": 1 } }, { "key": "17233", "source": "450", "target": "2111", "attributes": { "weight": 1 } }, { "key": "16788", "source": "450", "target": "434", "attributes": { "weight": 1 } }, { "key": "33353", "source": "450", "target": "189", "attributes": { "weight": 1 } }, { "key": "33347", "source": "450", "target": "458", "attributes": { "weight": 1 } }, { "key": "19886", "source": "450", "target": "50", "attributes": { "weight": 1 } }, { "key": "31301", "source": "450", "target": "1337", "attributes": { "weight": 1 } }, { "key": "19902", "source": "450", "target": "1087", "attributes": { "weight": 1 } }, { "key": "11868", "source": "450", "target": "135", "attributes": { "weight": 2 } }, { "key": "19909", "source": "450", "target": "56", "attributes": { "weight": 3 } }, { "key": "12193", "source": "450", "target": "1842", "attributes": { "weight": 1 } }, { "key": "12187", "source": "450", "target": "1835", "attributes": { "weight": 1 } }, { "key": "33346", "source": "450", "target": "188", "attributes": { "weight": 1 } }, { "key": "33351", "source": "450", "target": "228", "attributes": { "weight": 1 } }, { "key": "32344", "source": "450", "target": "791", "attributes": { "weight": 1 } }, { "key": "19907", "source": "450", "target": "2095", "attributes": { "weight": 1 } }, { "key": "19895", "source": "450", "target": "1360", "attributes": { "weight": 1 } }, { "key": "33357", "source": "450", "target": "1812", "attributes": { "weight": 1 } }, { "key": "17234", "source": "451", "target": "1161", "attributes": { "weight": 1 } }, { "key": "19992", "source": "451", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20009", "source": "451", "target": "2267", "attributes": { "weight": 1 } }, { "key": "1394", "source": "451", "target": "224", "attributes": { "weight": 2 } }, { "key": "26304", "source": "451", "target": "499", "attributes": { "weight": 1 } }, { "key": "19998", "source": "451", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20005", "source": "451", "target": "2260", "attributes": { "weight": 1 } }, { "key": "20003", "source": "451", "target": "1836", "attributes": { "weight": 2 } }, { "key": "19996", "source": "451", "target": "1832", "attributes": { "weight": 4 } }, { "key": "23606", "source": "451", "target": "2252", "attributes": { "weight": 1 } }, { "key": "11870", "source": "451", "target": "135", "attributes": { "weight": 5 } }, { "key": "31421", "source": "451", "target": "223", "attributes": { "weight": 2 } }, { "key": "19986", "source": "451", "target": "435", "attributes": { "weight": 3 } }, { "key": "20010", "source": "451", "target": "489", "attributes": { "weight": 2 } }, { "key": "27045", "source": "451", "target": "2105", "attributes": { "weight": 1 } }, { "key": "6725", "source": "451", "target": "193", "attributes": { "weight": 1 } }, { "key": "19987", "source": "451", "target": "1522", "attributes": { "weight": 1 } }, { "key": "19993", "source": "451", "target": "448", "attributes": { "weight": 1 } }, { "key": "6724", "source": "451", "target": "231", "attributes": { "weight": 1 } }, { "key": "17237", "source": "451", "target": "2111", "attributes": { "weight": 2 } }, { "key": "16796", "source": "451", "target": "70", "attributes": { "weight": 1 } }, { "key": "33364", "source": "451", "target": "2110", "attributes": { "weight": 1 } }, { "key": "16794", "source": "451", "target": "59", "attributes": { "weight": 1 } }, { "key": "20007", "source": "451", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19991", "source": "451", "target": "1023", "attributes": { "weight": 1 } }, { "key": "1396", "source": "451", "target": "490", "attributes": { "weight": 2 } }, { "key": "23333", "source": "451", "target": "429", "attributes": { "weight": 1 } }, { "key": "11871", "source": "451", "target": "468", "attributes": { "weight": 1 } }, { "key": "20001", "source": "451", "target": "2256", "attributes": { "weight": 1 } }, { "key": "20000", "source": "451", "target": "1247", "attributes": { "weight": 3 } }, { "key": "19994", "source": "451", "target": "450", "attributes": { "weight": 2 } }, { "key": "6723", "source": "451", "target": "189", "attributes": { "weight": 4 } }, { "key": "17236", "source": "451", "target": "2108", "attributes": { "weight": 2 } }, { "key": "26470", "source": "451", "target": "454", "attributes": { "weight": 3 } }, { "key": "19989", "source": "451", "target": "438", "attributes": { "weight": 1 } }, { "key": "27047", "source": "451", "target": "1282", "attributes": { "weight": 3 } }, { "key": "32725", "source": "451", "target": "2258", "attributes": { "weight": 3 } }, { "key": "20002", "source": "451", "target": "470", "attributes": { "weight": 4 } }, { "key": "12213", "source": "451", "target": "1564", "attributes": { "weight": 1 } }, { "key": "20004", "source": "451", "target": "472", "attributes": { "weight": 4 } }, { "key": "19999", "source": "451", "target": "2107", "attributes": { "weight": 1 } }, { "key": "1395", "source": "451", "target": "188", "attributes": { "weight": 2 } }, { "key": "32726", "source": "451", "target": "1125", "attributes": { "weight": 2 } }, { "key": "16795", "source": "451", "target": "674", "attributes": { "weight": 1 } }, { "key": "17235", "source": "451", "target": "449", "attributes": { "weight": 2 } }, { "key": "12212", "source": "451", "target": "1535", "attributes": { "weight": 1 } }, { "key": "6722", "source": "451", "target": "183", "attributes": { "weight": 2 } }, { "key": "27046", "source": "451", "target": "1219", "attributes": { "weight": 3 } }, { "key": "19988", "source": "451", "target": "2106", "attributes": { "weight": 1 } }, { "key": "27044", "source": "451", "target": "2645", "attributes": { "weight": 2 } }, { "key": "19990", "source": "451", "target": "51", "attributes": { "weight": 2 } }, { "key": "33363", "source": "451", "target": "52", "attributes": { "weight": 1 } }, { "key": "19997", "source": "451", "target": "186", "attributes": { "weight": 1 } }, { "key": "19995", "source": "451", "target": "2248", "attributes": { "weight": 2 } }, { "key": "23605", "source": "451", "target": "220", "attributes": { "weight": 1 } }, { "key": "23607", "source": "451", "target": "1312", "attributes": { "weight": 1 } }, { "key": "23608", "source": "451", "target": "2450", "attributes": { "weight": 1 } }, { "key": "36992", "source": "451", "target": "455", "attributes": { "weight": 1 } }, { "key": "33362", "source": "451", "target": "425", "attributes": { "weight": 1 } }, { "key": "26303", "source": "451", "target": "1258", "attributes": { "weight": 1 } }, { "key": "37483", "source": "451", "target": "442", "attributes": { "weight": 1 } }, { "key": "20006", "source": "451", "target": "1838", "attributes": { "weight": 1 } }, { "key": "20008", "source": "451", "target": "1744", "attributes": { "weight": 1 } }, { "key": "13049", "source": "452", "target": "304", "attributes": { "weight": 1 } }, { "key": "37445", "source": "452", "target": "435", "attributes": { "weight": 1 } }, { "key": "17238", "source": "452", "target": "449", "attributes": { "weight": 1 } }, { "key": "12348", "source": "452", "target": "357", "attributes": { "weight": 1 } }, { "key": "11088", "source": "452", "target": "170", "attributes": { "weight": 1 } }, { "key": "4125", "source": "452", "target": "228", "attributes": { "weight": 4 } }, { "key": "6727", "source": "452", "target": "495", "attributes": { "weight": 5 } }, { "key": "16800", "source": "452", "target": "70", "attributes": { "weight": 2 } }, { "key": "11076", "source": "452", "target": "454", "attributes": { "weight": 3 } }, { "key": "11064", "source": "452", "target": "223", "attributes": { "weight": 6 } }, { "key": "1401", "source": "452", "target": "193", "attributes": { "weight": 3 } }, { "key": "11065", "source": "452", "target": "440", "attributes": { "weight": 3 } }, { "key": "31465", "source": "452", "target": "178", "attributes": { "weight": 1 } }, { "key": "11114", "source": "452", "target": "428", "attributes": { "weight": 1 } }, { "key": "11115", "source": "452", "target": "1092", "attributes": { "weight": 3 } }, { "key": "25083", "source": "452", "target": "1756", "attributes": { "weight": 1 } }, { "key": "1400", "source": "452", "target": "490", "attributes": { "weight": 1 } }, { "key": "29418", "source": "452", "target": "232", "attributes": { "weight": 1 } }, { "key": "8723", "source": "452", "target": "442", "attributes": { "weight": 3 } }, { "key": "9268", "source": "452", "target": "430", "attributes": { "weight": 2 } }, { "key": "11054", "source": "452", "target": "431", "attributes": { "weight": 1 } }, { "key": "1399", "source": "452", "target": "188", "attributes": { "weight": 2 } }, { "key": "12785", "source": "452", "target": "3", "attributes": { "weight": 2 } }, { "key": "1398", "source": "452", "target": "455", "attributes": { "weight": 1 } }, { "key": "11080", "source": "452", "target": "52", "attributes": { "weight": 4 } }, { "key": "11128", "source": "452", "target": "57", "attributes": { "weight": 3 } }, { "key": "5009", "source": "452", "target": "123", "attributes": { "weight": 7 } }, { "key": "8724", "source": "452", "target": "1363", "attributes": { "weight": 2 } }, { "key": "27051", "source": "452", "target": "1282", "attributes": { "weight": 1 } }, { "key": "5007", "source": "452", "target": "370", "attributes": { "weight": 7 } }, { "key": "12787", "source": "452", "target": "781", "attributes": { "weight": 2 } }, { "key": "11085", "source": "452", "target": "791", "attributes": { "weight": 2 } }, { "key": "24341", "source": "452", "target": "1358", "attributes": { "weight": 1 } }, { "key": "11109", "source": "452", "target": "305", "attributes": { "weight": 2 } }, { "key": "4126", "source": "452", "target": "1131", "attributes": { "weight": 3 } }, { "key": "11052", "source": "452", "target": "889", "attributes": { "weight": 3 } }, { "key": "36909", "source": "452", "target": "2647", "attributes": { "weight": 1 } }, { "key": "27050", "source": "452", "target": "472", "attributes": { "weight": 1 } }, { "key": "35267", "source": "452", "target": "2259", "attributes": { "weight": 1 } }, { "key": "11075", "source": "452", "target": "1116", "attributes": { "weight": 1 } }, { "key": "11051", "source": "452", "target": "429", "attributes": { "weight": 3 } }, { "key": "11068", "source": "452", "target": "339", "attributes": { "weight": 2 } }, { "key": "24044", "source": "452", "target": "1354", "attributes": { "weight": 2 } }, { "key": "11079", "source": "452", "target": "109", "attributes": { "weight": 1 } }, { "key": "11060", "source": "452", "target": "437", "attributes": { "weight": 1 } }, { "key": "24342", "source": "452", "target": "191", "attributes": { "weight": 1 } }, { "key": "16798", "source": "452", "target": "434", "attributes": { "weight": 1 } }, { "key": "11084", "source": "452", "target": "790", "attributes": { "weight": 2 } }, { "key": "11086", "source": "452", "target": "359", "attributes": { "weight": 2 } }, { "key": "11058", "source": "452", "target": "433", "attributes": { "weight": 3 } }, { "key": "11123", "source": "452", "target": "493", "attributes": { "weight": 2 } }, { "key": "11872", "source": "452", "target": "135", "attributes": { "weight": 3 } }, { "key": "11112", "source": "452", "target": "1060", "attributes": { "weight": 2 } }, { "key": "11106", "source": "452", "target": "477", "attributes": { "weight": 4 } }, { "key": "11098", "source": "452", "target": "1367", "attributes": { "weight": 4 } }, { "key": "8725", "source": "452", "target": "229", "attributes": { "weight": 2 } }, { "key": "11099", "source": "452", "target": "189", "attributes": { "weight": 2 } }, { "key": "5008", "source": "452", "target": "468", "attributes": { "weight": 3 } }, { "key": "37446", "source": "452", "target": "2258", "attributes": { "weight": 1 } }, { "key": "1397", "source": "452", "target": "224", "attributes": { "weight": 1 } }, { "key": "11103", "source": "452", "target": "1744", "attributes": { "weight": 2 } }, { "key": "11117", "source": "452", "target": "595", "attributes": { "weight": 2 } }, { "key": "11056", "source": "452", "target": "130", "attributes": { "weight": 4 } }, { "key": "4124", "source": "452", "target": "50", "attributes": { "weight": 3 } }, { "key": "11125", "source": "452", "target": "1375", "attributes": { "weight": 3 } }, { "key": "8728", "source": "452", "target": "233", "attributes": { "weight": 3 } }, { "key": "3947", "source": "452", "target": "432", "attributes": { "weight": 5 } }, { "key": "3104", "source": "452", "target": "894", "attributes": { "weight": 2 } }, { "key": "11104", "source": "452", "target": "1592", "attributes": { "weight": 1 } }, { "key": "11081", "source": "452", "target": "5", "attributes": { "weight": 2 } }, { "key": "11105", "source": "452", "target": "1026", "attributes": { "weight": 3 } }, { "key": "17457", "source": "452", "target": "358", "attributes": { "weight": 1 } }, { "key": "16799", "source": "452", "target": "1118", "attributes": { "weight": 1 } }, { "key": "29127", "source": "452", "target": "488", "attributes": { "weight": 1 } }, { "key": "11057", "source": "452", "target": "49", "attributes": { "weight": 1 } }, { "key": "11107", "source": "452", "target": "479", "attributes": { "weight": 7 } }, { "key": "11126", "source": "452", "target": "496", "attributes": { "weight": 1 } }, { "key": "12786", "source": "452", "target": "392", "attributes": { "weight": 2 } }, { "key": "11069", "source": "452", "target": "778", "attributes": { "weight": 1 } }, { "key": "5006", "source": "452", "target": "779", "attributes": { "weight": 2 } }, { "key": "10815", "source": "452", "target": "457", "attributes": { "weight": 2 } }, { "key": "11090", "source": "452", "target": "338", "attributes": { "weight": 2 } }, { "key": "11122", "source": "452", "target": "1777", "attributes": { "weight": 1 } }, { "key": "30443", "source": "452", "target": "1046", "attributes": { "weight": 1 } }, { "key": "10485", "source": "452", "target": "225", "attributes": { "weight": 2 } }, { "key": "29126", "source": "452", "target": "447", "attributes": { "weight": 1 } }, { "key": "33366", "source": "452", "target": "672", "attributes": { "weight": 1 } }, { "key": "11083", "source": "452", "target": "278", "attributes": { "weight": 2 } }, { "key": "34971", "source": "452", "target": "352", "attributes": { "weight": 1 } }, { "key": "3606", "source": "452", "target": "1025", "attributes": { "weight": 2 } }, { "key": "11067", "source": "452", "target": "441", "attributes": { "weight": 1 } }, { "key": "11118", "source": "452", "target": "673", "attributes": { "weight": 1 } }, { "key": "27238", "source": "452", "target": "425", "attributes": { "weight": 2 } }, { "key": "11089", "source": "452", "target": "1056", "attributes": { "weight": 2 } }, { "key": "26471", "source": "452", "target": "1047", "attributes": { "weight": 2 } }, { "key": "11102", "source": "452", "target": "580", "attributes": { "weight": 1 } }, { "key": "33365", "source": "452", "target": "51", "attributes": { "weight": 1 } }, { "key": "11113", "source": "452", "target": "487", "attributes": { "weight": 2 } }, { "key": "11055", "source": "452", "target": "1036", "attributes": { "weight": 2 } }, { "key": "11097", "source": "452", "target": "371", "attributes": { "weight": 2 } }, { "key": "24046", "source": "452", "target": "1125", "attributes": { "weight": 3 } }, { "key": "11110", "source": "452", "target": "1771", "attributes": { "weight": 2 } }, { "key": "16797", "source": "452", "target": "59", "attributes": { "weight": 2 } }, { "key": "8727", "source": "452", "target": "474", "attributes": { "weight": 3 } }, { "key": "11094", "source": "452", "target": "136", "attributes": { "weight": 1 } }, { "key": "11100", "source": "452", "target": "473", "attributes": { "weight": 5 } }, { "key": "11091", "source": "452", "target": "8", "attributes": { "weight": 3 } }, { "key": "11063", "source": "452", "target": "439", "attributes": { "weight": 1 } }, { "key": "11339", "source": "452", "target": "1742", "attributes": { "weight": 1 } }, { "key": "11074", "source": "452", "target": "693", "attributes": { "weight": 1 } }, { "key": "5010", "source": "452", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11108", "source": "452", "target": "480", "attributes": { "weight": 1 } }, { "key": "10100", "source": "452", "target": "369", "attributes": { "weight": 2 } }, { "key": "11082", "source": "452", "target": "1762", "attributes": { "weight": 2 } }, { "key": "11078", "source": "452", "target": "1536", "attributes": { "weight": 1 } }, { "key": "7279", "source": "452", "target": "1063", "attributes": { "weight": 5 } }, { "key": "11096", "source": "452", "target": "471", "attributes": { "weight": 3 } }, { "key": "23748", "source": "452", "target": "1774", "attributes": { "weight": 1 } }, { "key": "11077", "source": "452", "target": "108", "attributes": { "weight": 1 } }, { "key": "11119", "source": "452", "target": "1775", "attributes": { "weight": 2 } }, { "key": "11066", "source": "452", "target": "1758", "attributes": { "weight": 2 } }, { "key": "35931", "source": "452", "target": "1360", "attributes": { "weight": 1 } }, { "key": "11087", "source": "452", "target": "1024", "attributes": { "weight": 2 } }, { "key": "11073", "source": "452", "target": "419", "attributes": { "weight": 2 } }, { "key": "11121", "source": "452", "target": "492", "attributes": { "weight": 2 } }, { "key": "11070", "source": "452", "target": "1042", "attributes": { "weight": 3 } }, { "key": "32268", "source": "452", "target": "164", "attributes": { "weight": 1 } }, { "key": "11061", "source": "452", "target": "222", "attributes": { "weight": 1 } }, { "key": "11124", "source": "452", "target": "494", "attributes": { "weight": 2 } }, { "key": "24045", "source": "452", "target": "1088", "attributes": { "weight": 4 } }, { "key": "11120", "source": "452", "target": "1093", "attributes": { "weight": 2 } }, { "key": "27048", "source": "452", "target": "1219", "attributes": { "weight": 1 } }, { "key": "11059", "source": "452", "target": "1520", "attributes": { "weight": 2 } }, { "key": "11095", "source": "452", "target": "1258", "attributes": { "weight": 2 } }, { "key": "11072", "source": "452", "target": "445", "attributes": { "weight": 6 } }, { "key": "25468", "source": "452", "target": "2270", "attributes": { "weight": 1 } }, { "key": "11116", "source": "452", "target": "491", "attributes": { "weight": 2 } }, { "key": "11111", "source": "452", "target": "695", "attributes": { "weight": 2 } }, { "key": "8726", "source": "452", "target": "1087", "attributes": { "weight": 2 } }, { "key": "11071", "source": "452", "target": "674", "attributes": { "weight": 4 } }, { "key": "2308", "source": "452", "target": "340", "attributes": { "weight": 4 } }, { "key": "33767", "source": "452", "target": "14", "attributes": { "weight": 1 } }, { "key": "8722", "source": "452", "target": "195", "attributes": { "weight": 5 } }, { "key": "6726", "source": "452", "target": "183", "attributes": { "weight": 3 } }, { "key": "11092", "source": "452", "target": "469", "attributes": { "weight": 2 } }, { "key": "11053", "source": "452", "target": "220", "attributes": { "weight": 4 } }, { "key": "14198", "source": "452", "target": "168", "attributes": { "weight": 1 } }, { "key": "11127", "source": "452", "target": "497", "attributes": { "weight": 2 } }, { "key": "11062", "source": "452", "target": "938", "attributes": { "weight": 2 } }, { "key": "23609", "source": "452", "target": "1312", "attributes": { "weight": 1 } }, { "key": "11093", "source": "452", "target": "470", "attributes": { "weight": 3 } }, { "key": "27049", "source": "452", "target": "1247", "attributes": { "weight": 1 } }, { "key": "34169", "source": "452", "target": "1232", "attributes": { "weight": 1 } }, { "key": "35932", "source": "452", "target": "1390", "attributes": { "weight": 1 } }, { "key": "32960", "source": "452", "target": "154", "attributes": { "weight": 1 } }, { "key": "17857", "source": "452", "target": "1380", "attributes": { "weight": 1 } }, { "key": "11101", "source": "452", "target": "190", "attributes": { "weight": 1 } }, { "key": "31528", "source": "453", "target": "3", "attributes": { "weight": 1 } }, { "key": "20036", "source": "453", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20030", "source": "453", "target": "2251", "attributes": { "weight": 1 } }, { "key": "6730", "source": "453", "target": "231", "attributes": { "weight": 2 } }, { "key": "20031", "source": "453", "target": "54", "attributes": { "weight": 1 } }, { "key": "20025", "source": "453", "target": "429", "attributes": { "weight": 1 } }, { "key": "20032", "source": "453", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20035", "source": "453", "target": "56", "attributes": { "weight": 1 } }, { "key": "20027", "source": "453", "target": "439", "attributes": { "weight": 1 } }, { "key": "20028", "source": "453", "target": "441", "attributes": { "weight": 1 } }, { "key": "20033", "source": "453", "target": "487", "attributes": { "weight": 1 } }, { "key": "20029", "source": "453", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20024", "source": "453", "target": "1353", "attributes": { "weight": 1 } }, { "key": "20026", "source": "453", "target": "1354", "attributes": { "weight": 1 } }, { "key": "6731", "source": "453", "target": "193", "attributes": { "weight": 2 } }, { "key": "20037", "source": "453", "target": "194", "attributes": { "weight": 1 } }, { "key": "1403", "source": "453", "target": "188", "attributes": { "weight": 1 } }, { "key": "20034", "source": "453", "target": "489", "attributes": { "weight": 1 } }, { "key": "8738", "source": "454", "target": "913", "attributes": { "weight": 5 } }, { "key": "26553", "source": "454", "target": "494", "attributes": { "weight": 1 } }, { "key": "17866", "source": "454", "target": "183", "attributes": { "weight": 2 } }, { "key": "15272", "source": "454", "target": "1377", "attributes": { "weight": 1 } }, { "key": "26514", "source": "454", "target": "1361", "attributes": { "weight": 2 } }, { "key": "6753", "source": "454", "target": "1359", "attributes": { "weight": 1 } }, { "key": "6755", "source": "454", "target": "459", "attributes": { "weight": 3 } }, { "key": "9458", "source": "454", "target": "664", "attributes": { "weight": 2 } }, { "key": "26504", "source": "454", "target": "1356", "attributes": { "weight": 1 } }, { "key": "32052", "source": "454", "target": "1816", "attributes": { "weight": 1 } }, { "key": "26497", "source": "454", "target": "2114", "attributes": { "weight": 1 } }, { "key": "26496", "source": "454", "target": "182", "attributes": { "weight": 1 } }, { "key": "15260", "source": "454", "target": "372", "attributes": { "weight": 1 } }, { "key": "18448", "source": "454", "target": "1738", "attributes": { "weight": 1 } }, { "key": "15249", "source": "454", "target": "1385", "attributes": { "weight": 1 } }, { "key": "17538", "source": "454", "target": "496", "attributes": { "weight": 2 } }, { "key": "13934", "source": "454", "target": "180", "attributes": { "weight": 1 } }, { "key": "26531", "source": "454", "target": "371", "attributes": { "weight": 2 } }, { "key": "15264", "source": "454", "target": "1322", "attributes": { "weight": 3 } }, { "key": "26493", "source": "454", "target": "778", "attributes": { "weight": 1 } }, { "key": "7287", "source": "454", "target": "53", "attributes": { "weight": 3 } }, { "key": "6749", "source": "454", "target": "433", "attributes": { "weight": 5 } }, { "key": "15253", "source": "454", "target": "54", "attributes": { "weight": 2 } }, { "key": "3607", "source": "454", "target": "1025", "attributes": { "weight": 1 } }, { "key": "7295", "source": "454", "target": "1063", "attributes": { "weight": 2 } }, { "key": "6759", "source": "454", "target": "695", "attributes": { "weight": 3 } }, { "key": "26516", "source": "454", "target": "638", "attributes": { "weight": 3 } }, { "key": "26476", "source": "454", "target": "1516", "attributes": { "weight": 1 } }, { "key": "26547", "source": "454", "target": "1337", "attributes": { "weight": 2 } }, { "key": "31594", "source": "454", "target": "595", "attributes": { "weight": 1 } }, { "key": "17862", "source": "454", "target": "59", "attributes": { "weight": 3 } }, { "key": "26533", "source": "454", "target": "474", "attributes": { "weight": 1 } }, { "key": "26478", "source": "454", "target": "35", "attributes": { "weight": 1 } }, { "key": "8737", "source": "454", "target": "442", "attributes": { "weight": 2 } }, { "key": "26477", "source": "454", "target": "1141", "attributes": { "weight": 1 } }, { "key": "14200", "source": "454", "target": "168", "attributes": { "weight": 2 } }, { "key": "6758", "source": "454", "target": "231", "attributes": { "weight": 4 } }, { "key": "15238", "source": "454", "target": "1353", "attributes": { "weight": 2 } }, { "key": "3950", "source": "454", "target": "487", "attributes": { "weight": 3 } }, { "key": "17875", "source": "454", "target": "1026", "attributes": { "weight": 3 } }, { "key": "26534", "source": "454", "target": "579", "attributes": { "weight": 2 } }, { "key": "26549", "source": "454", "target": "1750", "attributes": { "weight": 1 } }, { "key": "15271", "source": "454", "target": "56", "attributes": { "weight": 2 } }, { "key": "7291", "source": "454", "target": "375", "attributes": { "weight": 2 } }, { "key": "17867", "source": "454", "target": "1118", "attributes": { "weight": 3 } }, { "key": "26527", "source": "454", "target": "136", "attributes": { "weight": 3 } }, { "key": "11340", "source": "454", "target": "1742", "attributes": { "weight": 2 } }, { "key": "10491", "source": "454", "target": "230", "attributes": { "weight": 1 } }, { "key": "7293", "source": "454", "target": "333", "attributes": { "weight": 3 } }, { "key": "5027", "source": "454", "target": "171", "attributes": { "weight": 3 } }, { "key": "13063", "source": "454", "target": "304", "attributes": { "weight": 2 } }, { "key": "17872", "source": "454", "target": "189", "attributes": { "weight": 2 } }, { "key": "17879", "source": "454", "target": "57", "attributes": { "weight": 3 } }, { "key": "36998", "source": "454", "target": "1366", "attributes": { "weight": 1 } }, { "key": "6754", "source": "454", "target": "457", "attributes": { "weight": 5 } }, { "key": "8736", "source": "454", "target": "195", "attributes": { "weight": 6 } }, { "key": "3948", "source": "454", "target": "432", "attributes": { "weight": 2 } }, { "key": "26530", "source": "454", "target": "396", "attributes": { "weight": 1 } }, { "key": "5026", "source": "454", "target": "368", "attributes": { "weight": 9 } }, { "key": "6761", "source": "454", "target": "495", "attributes": { "weight": 5 } }, { "key": "32380", "source": "454", "target": "2211", "attributes": { "weight": 1 } }, { "key": "17860", "source": "454", "target": "1380", "attributes": { "weight": 2 } }, { "key": "26484", "source": "454", "target": "436", "attributes": { "weight": 1 } }, { "key": "26502", "source": "454", "target": "185", "attributes": { "weight": 1 } }, { "key": "26546", "source": "454", "target": "490", "attributes": { "weight": 1 } }, { "key": "25681", "source": "454", "target": "278", "attributes": { "weight": 3 } }, { "key": "15244", "source": "454", "target": "1355", "attributes": { "weight": 2 } }, { "key": "25915", "source": "454", "target": "1367", "attributes": { "weight": 2 } }, { "key": "26548", "source": "454", "target": "192", "attributes": { "weight": 2 } }, { "key": "11133", "source": "454", "target": "574", "attributes": { "weight": 2 } }, { "key": "17876", "source": "454", "target": "479", "attributes": { "weight": 4 } }, { "key": "15246", "source": "454", "target": "1357", "attributes": { "weight": 2 } }, { "key": "36996", "source": "454", "target": "2644", "attributes": { "weight": 1 } }, { "key": "26557", "source": "454", "target": "500", "attributes": { "weight": 2 } }, { "key": "26551", "source": "454", "target": "492", "attributes": { "weight": 1 } }, { "key": "7292", "source": "454", "target": "154", "attributes": { "weight": 2 } }, { "key": "12396", "source": "454", "target": "1368", "attributes": { "weight": 2 } }, { "key": "5028", "source": "454", "target": "468", "attributes": { "weight": 4 } }, { "key": "13062", "source": "454", "target": "300", "attributes": { "weight": 2 } }, { "key": "6748", "source": "454", "target": "1036", "attributes": { "weight": 5 } }, { "key": "17861", "source": "454", "target": "220", "attributes": { "weight": 4 } }, { "key": "26481", "source": "454", "target": "1520", "attributes": { "weight": 2 } }, { "key": "3949", "source": "454", "target": "458", "attributes": { "weight": 4 } }, { "key": "5029", "source": "454", "target": "1090", "attributes": { "weight": 3 } }, { "key": "15242", "source": "454", "target": "387", "attributes": { "weight": 1 } }, { "key": "26519", "source": "454", "target": "464", "attributes": { "weight": 2 } }, { "key": "6757", "source": "454", "target": "471", "attributes": { "weight": 8 } }, { "key": "26490", "source": "454", "target": "438", "attributes": { "weight": 1 } }, { "key": "26541", "source": "454", "target": "481", "attributes": { "weight": 2 } }, { "key": "15269", "source": "454", "target": "116", "attributes": { "weight": 1 } }, { "key": "13060", "source": "454", "target": "674", "attributes": { "weight": 4 } }, { "key": "13064", "source": "454", "target": "305", "attributes": { "weight": 3 } }, { "key": "13065", "source": "454", "target": "307", "attributes": { "weight": 2 } }, { "key": "12521", "source": "454", "target": "51", "attributes": { "weight": 1 } }, { "key": "24491", "source": "454", "target": "790", "attributes": { "weight": 2 } }, { "key": "17877", "source": "454", "target": "233", "attributes": { "weight": 2 } }, { "key": "17874", "source": "454", "target": "70", "attributes": { "weight": 3 } }, { "key": "26306", "source": "454", "target": "1258", "attributes": { "weight": 1 } }, { "key": "26482", "source": "454", "target": "434", "attributes": { "weight": 2 } }, { "key": "11132", "source": "454", "target": "452", "attributes": { "weight": 3 } }, { "key": "24874", "source": "454", "target": "109", "attributes": { "weight": 2 } }, { "key": "26508", "source": "454", "target": "701", "attributes": { "weight": 1 } }, { "key": "15254", "source": "454", "target": "560", "attributes": { "weight": 1 } }, { "key": "11135", "source": "454", "target": "177", "attributes": { "weight": 2 } }, { "key": "6752", "source": "454", "target": "3", "attributes": { "weight": 3 } }, { "key": "17864", "source": "454", "target": "223", "attributes": { "weight": 3 } }, { "key": "6760", "source": "454", "target": "193", "attributes": { "weight": 4 } }, { "key": "15274", "source": "454", "target": "1350", "attributes": { "weight": 1 } }, { "key": "26542", "source": "454", "target": "1060", "attributes": { "weight": 2 } }, { "key": "15268", "source": "454", "target": "488", "attributes": { "weight": 3 } }, { "key": "25088", "source": "454", "target": "427", "attributes": { "weight": 2 } }, { "key": "13061", "source": "454", "target": "264", "attributes": { "weight": 2 } }, { "key": "26526", "source": "454", "target": "1365", "attributes": { "weight": 2 } }, { "key": "26501", "source": "454", "target": "451", "attributes": { "weight": 3 } }, { "key": "30883", "source": "454", "target": "13", "attributes": { "weight": 1 } }, { "key": "26520", "source": "454", "target": "465", "attributes": { "weight": 2 } }, { "key": "5025", "source": "454", "target": "779", "attributes": { "weight": 2 } }, { "key": "26515", "source": "454", "target": "791", "attributes": { "weight": 3 } }, { "key": "7286", "source": "454", "target": "359", "attributes": { "weight": 6 } }, { "key": "26499", "source": "454", "target": "1047", "attributes": { "weight": 2 } }, { "key": "26556", "source": "454", "target": "194", "attributes": { "weight": 2 } }, { "key": "9456", "source": "454", "target": "419", "attributes": { "weight": 2 } }, { "key": "1406", "source": "454", "target": "456", "attributes": { "weight": 1 } }, { "key": "26545", "source": "454", "target": "178", "attributes": { "weight": 3 } }, { "key": "15245", "source": "454", "target": "860", "attributes": { "weight": 2 } }, { "key": "6747", "source": "454", "target": "889", "attributes": { "weight": 3 } }, { "key": "26507", "source": "454", "target": "187", "attributes": { "weight": 2 } }, { "key": "26494", "source": "454", "target": "1197", "attributes": { "weight": 2 } }, { "key": "26509", "source": "454", "target": "455", "attributes": { "weight": 1 } }, { "key": "26495", "source": "454", "target": "1045", "attributes": { "weight": 1 } }, { "key": "26555", "source": "454", "target": "498", "attributes": { "weight": 2 } }, { "key": "26528", "source": "454", "target": "472", "attributes": { "weight": 1 } }, { "key": "36951", "source": "454", "target": "362", "attributes": { "weight": 1 } }, { "key": "26511", "source": "454", "target": "707", "attributes": { "weight": 2 } }, { "key": "26489", "source": "454", "target": "938", "attributes": { "weight": 2 } }, { "key": "26500", "source": "454", "target": "369", "attributes": { "weight": 1 } }, { "key": "7290", "source": "454", "target": "1390", "attributes": { "weight": 2 } }, { "key": "10490", "source": "454", "target": "225", "attributes": { "weight": 2 } }, { "key": "15259", "source": "454", "target": "1298", "attributes": { "weight": 1 } }, { "key": "10669", "source": "454", "target": "43", "attributes": { "weight": 2 } }, { "key": "15239", "source": "454", "target": "1703", "attributes": { "weight": 1 } }, { "key": "26550", "source": "454", "target": "340", "attributes": { "weight": 2 } }, { "key": "26544", "source": "454", "target": "1323", "attributes": { "weight": 3 } }, { "key": "7288", "source": "454", "target": "190", "attributes": { "weight": 2 } }, { "key": "32106", "source": "454", "target": "788", "attributes": { "weight": 1 } }, { "key": "7289", "source": "454", "target": "1375", "attributes": { "weight": 2 } }, { "key": "26492", "source": "454", "target": "339", "attributes": { "weight": 2 } }, { "key": "29419", "source": "454", "target": "232", "attributes": { "weight": 2 } }, { "key": "15240", "source": "454", "target": "424", "attributes": { "weight": 4 } }, { "key": "15263", "source": "454", "target": "254", "attributes": { "weight": 1 } }, { "key": "9457", "source": "454", "target": "661", "attributes": { "weight": 2 } }, { "key": "17871", "source": "454", "target": "1087", "attributes": { "weight": 2 } }, { "key": "7294", "source": "454", "target": "377", "attributes": { "weight": 3 } }, { "key": "26540", "source": "454", "target": "478", "attributes": { "weight": 2 } }, { "key": "17878", "source": "454", "target": "497", "attributes": { "weight": 3 } }, { "key": "26552", "source": "454", "target": "493", "attributes": { "weight": 2 } }, { "key": "26522", "source": "454", "target": "1387", "attributes": { "weight": 1 } }, { "key": "8739", "source": "454", "target": "370", "attributes": { "weight": 8 } }, { "key": "26529", "source": "454", "target": "208", "attributes": { "weight": 2 } }, { "key": "26486", "source": "454", "target": "164", "attributes": { "weight": 2 } }, { "key": "26488", "source": "454", "target": "222", "attributes": { "weight": 1 } }, { "key": "25087", "source": "454", "target": "1547", "attributes": { "weight": 2 } }, { "key": "37065", "source": "454", "target": "857", "attributes": { "weight": 1 } }, { "key": "26512", "source": "454", "target": "1232", "attributes": { "weight": 2 } }, { "key": "17239", "source": "454", "target": "449", "attributes": { "weight": 2 } }, { "key": "32159", "source": "454", "target": "1779", "attributes": { "weight": 1 } }, { "key": "17873", "source": "454", "target": "473", "attributes": { "weight": 2 } }, { "key": "17869", "source": "454", "target": "470", "attributes": { "weight": 5 } }, { "key": "26124", "source": "454", "target": "1056", "attributes": { "weight": 2 } }, { "key": "7285", "source": "454", "target": "1046", "attributes": { "weight": 6 } }, { "key": "37323", "source": "454", "target": "1775", "attributes": { "weight": 1 } }, { "key": "15270", "source": "454", "target": "1814", "attributes": { "weight": 1 } }, { "key": "26485", "source": "454", "target": "437", "attributes": { "weight": 1 } }, { "key": "15252", "source": "454", "target": "337", "attributes": { "weight": 1 } }, { "key": "26535", "source": "454", "target": "476", "attributes": { "weight": 1 } }, { "key": "9269", "source": "454", "target": "430", "attributes": { "weight": 2 } }, { "key": "26523", "source": "454", "target": "338", "attributes": { "weight": 2 } }, { "key": "9454", "source": "454", "target": "644", "attributes": { "weight": 2 } }, { "key": "30758", "source": "454", "target": "1370", "attributes": { "weight": 1 } }, { "key": "26517", "source": "454", "target": "1024", "attributes": { "weight": 2 } }, { "key": "26498", "source": "454", "target": "450", "attributes": { "weight": 1 } }, { "key": "26537", "source": "454", "target": "1744", "attributes": { "weight": 2 } }, { "key": "36997", "source": "454", "target": "2250", "attributes": { "weight": 1 } }, { "key": "26554", "source": "454", "target": "352", "attributes": { "weight": 2 } }, { "key": "17870", "source": "454", "target": "228", "attributes": { "weight": 3 } }, { "key": "15257", "source": "454", "target": "1553", "attributes": { "weight": 1 } }, { "key": "22668", "source": "454", "target": "1037", "attributes": { "weight": 1 } }, { "key": "26538", "source": "454", "target": "123", "attributes": { "weight": 2 } }, { "key": "15247", "source": "454", "target": "1358", "attributes": { "weight": 2 } }, { "key": "6756", "source": "454", "target": "1363", "attributes": { "weight": 3 } }, { "key": "15266", "source": "454", "target": "961", "attributes": { "weight": 1 } }, { "key": "26525", "source": "454", "target": "467", "attributes": { "weight": 1 } }, { "key": "9455", "source": "454", "target": "645", "attributes": { "weight": 2 } }, { "key": "26539", "source": "454", "target": "477", "attributes": { "weight": 1 } }, { "key": "15250", "source": "454", "target": "426", "attributes": { "weight": 1 } }, { "key": "23752", "source": "454", "target": "1774", "attributes": { "weight": 1 } }, { "key": "34901", "source": "454", "target": "1042", "attributes": { "weight": 1 } }, { "key": "26483", "source": "454", "target": "435", "attributes": { "weight": 1 } }, { "key": "6751", "source": "454", "target": "445", "attributes": { "weight": 2 } }, { "key": "15241", "source": "454", "target": "1070", "attributes": { "weight": 1 } }, { "key": "25606", "source": "454", "target": "1780", "attributes": { "weight": 3 } }, { "key": "24933", "source": "454", "target": "580", "attributes": { "weight": 1 } }, { "key": "26487", "source": "454", "target": "1522", "attributes": { "weight": 2 } }, { "key": "26536", "source": "454", "target": "191", "attributes": { "weight": 1 } }, { "key": "26543", "source": "454", "target": "2270", "attributes": { "weight": 1 } }, { "key": "26513", "source": "454", "target": "1233", "attributes": { "weight": 2 } }, { "key": "11134", "source": "454", "target": "469", "attributes": { "weight": 4 } }, { "key": "26479", "source": "454", "target": "429", "attributes": { "weight": 1 } }, { "key": "26491", "source": "454", "target": "425", "attributes": { "weight": 3 } }, { "key": "15262", "source": "454", "target": "483", "attributes": { "weight": 2 } }, { "key": "17868", "source": "454", "target": "52", "attributes": { "weight": 4 } }, { "key": "15265", "source": "454", "target": "1772", "attributes": { "weight": 1 } }, { "key": "15273", "source": "454", "target": "499", "attributes": { "weight": 2 } }, { "key": "18322", "source": "454", "target": "1092", "attributes": { "weight": 2 } }, { "key": "15267", "source": "454", "target": "1373", "attributes": { "weight": 1 } }, { "key": "26503", "source": "454", "target": "1116", "attributes": { "weight": 1 } }, { "key": "26524", "source": "454", "target": "8", "attributes": { "weight": 2 } }, { "key": "15261", "source": "454", "target": "1306", "attributes": { "weight": 1 } }, { "key": "26518", "source": "454", "target": "170", "attributes": { "weight": 2 } }, { "key": "15243", "source": "454", "target": "447", "attributes": { "weight": 3 } }, { "key": "26506", "source": "454", "target": "2646", "attributes": { "weight": 1 } }, { "key": "15248", "source": "454", "target": "392", "attributes": { "weight": 1 } }, { "key": "6746", "source": "454", "target": "1354", "attributes": { "weight": 1 } }, { "key": "15251", "source": "454", "target": "462", "attributes": { "weight": 2 } }, { "key": "17863", "source": "454", "target": "130", "attributes": { "weight": 4 } }, { "key": "26521", "source": "454", "target": "817", "attributes": { "weight": 1 } }, { "key": "15256", "source": "454", "target": "1611", "attributes": { "weight": 1 } }, { "key": "15258", "source": "454", "target": "163", "attributes": { "weight": 1 } }, { "key": "15255", "source": "454", "target": "1262", "attributes": { "weight": 1 } }, { "key": "6750", "source": "454", "target": "443", "attributes": { "weight": 3 } }, { "key": "17458", "source": "454", "target": "358", "attributes": { "weight": 3 } }, { "key": "26480", "source": "454", "target": "787", "attributes": { "weight": 1 } }, { "key": "26532", "source": "454", "target": "229", "attributes": { "weight": 1 } }, { "key": "24668", "source": "454", "target": "5", "attributes": { "weight": 3 } }, { "key": "24873", "source": "454", "target": "108", "attributes": { "weight": 2 } }, { "key": "26505", "source": "454", "target": "1360", "attributes": { "weight": 2 } }, { "key": "26510", "source": "454", "target": "188", "attributes": { "weight": 1 } }, { "key": "25089", "source": "454", "target": "1093", "attributes": { "weight": 1 } }, { "key": "17865", "source": "454", "target": "440", "attributes": { "weight": 2 } }, { "key": "37005", "source": "455", "target": "1357", "attributes": { "weight": 1 } }, { "key": "1420", "source": "455", "target": "488", "attributes": { "weight": 1 } }, { "key": "15286", "source": "455", "target": "860", "attributes": { "weight": 2 } }, { "key": "24065", "source": "455", "target": "429", "attributes": { "weight": 2 } }, { "key": "37066", "source": "455", "target": "857", "attributes": { "weight": 1 } }, { "key": "1423", "source": "455", "target": "491", "attributes": { "weight": 1 } }, { "key": "1415", "source": "455", "target": "190", "attributes": { "weight": 1 } }, { "key": "1422", "source": "455", "target": "490", "attributes": { "weight": 2 } }, { "key": "26576", "source": "455", "target": "57", "attributes": { "weight": 2 } }, { "key": "15287", "source": "455", "target": "1358", "attributes": { "weight": 2 } }, { "key": "1418", "source": "455", "target": "232", "attributes": { "weight": 1 } }, { "key": "15289", "source": "455", "target": "53", "attributes": { "weight": 1 } }, { "key": "8761", "source": "455", "target": "442", "attributes": { "weight": 2 } }, { "key": "1410", "source": "455", "target": "445", "attributes": { "weight": 1 } }, { "key": "17244", "source": "455", "target": "449", "attributes": { "weight": 1 } }, { "key": "1413", "source": "455", "target": "458", "attributes": { "weight": 3 } }, { "key": "1416", "source": "455", "target": "231", "attributes": { "weight": 4 } }, { "key": "15290", "source": "455", "target": "483", "attributes": { "weight": 2 } }, { "key": "1411", "source": "455", "target": "447", "attributes": { "weight": 1 } }, { "key": "1424", "source": "455", "target": "494", "attributes": { "weight": 1 } }, { "key": "37009", "source": "455", "target": "499", "attributes": { "weight": 1 } }, { "key": "31599", "source": "455", "target": "595", "attributes": { "weight": 1 } }, { "key": "37004", "source": "455", "target": "451", "attributes": { "weight": 1 } }, { "key": "6787", "source": "455", "target": "1362", "attributes": { "weight": 1 } }, { "key": "15284", "source": "455", "target": "1353", "attributes": { "weight": 2 } }, { "key": "1419", "source": "455", "target": "487", "attributes": { "weight": 2 } }, { "key": "31312", "source": "455", "target": "674", "attributes": { "weight": 1 } }, { "key": "1412", "source": "455", "target": "452", "attributes": { "weight": 1 } }, { "key": "12237", "source": "455", "target": "472", "attributes": { "weight": 1 } }, { "key": "37007", "source": "455", "target": "1366", "attributes": { "weight": 1 } }, { "key": "1425", "source": "455", "target": "495", "attributes": { "weight": 3 } }, { "key": "37008", "source": "455", "target": "56", "attributes": { "weight": 1 } }, { "key": "5088", "source": "455", "target": "468", "attributes": { "weight": 3 } }, { "key": "37003", "source": "455", "target": "443", "attributes": { "weight": 1 } }, { "key": "6786", "source": "455", "target": "459", "attributes": { "weight": 1 } }, { "key": "11343", "source": "455", "target": "1742", "attributes": { "weight": 1 } }, { "key": "1409", "source": "455", "target": "130", "attributes": { "weight": 3 } }, { "key": "12236", "source": "455", "target": "435", "attributes": { "weight": 1 } }, { "key": "26574", "source": "455", "target": "454", "attributes": { "weight": 1 } }, { "key": "1417", "source": "455", "target": "427", "attributes": { "weight": 1 } }, { "key": "37002", "source": "455", "target": "2644", "attributes": { "weight": 1 } }, { "key": "11145", "source": "455", "target": "220", "attributes": { "weight": 2 } }, { "key": "32388", "source": "455", "target": "791", "attributes": { "weight": 1 } }, { "key": "1414", "source": "455", "target": "473", "attributes": { "weight": 1 } }, { "key": "37006", "source": "455", "target": "54", "attributes": { "weight": 1 } }, { "key": "15288", "source": "455", "target": "462", "attributes": { "weight": 2 } }, { "key": "15285", "source": "455", "target": "424", "attributes": { "weight": 3 } }, { "key": "26575", "source": "455", "target": "189", "attributes": { "weight": 1 } }, { "key": "1421", "source": "455", "target": "489", "attributes": { "weight": 1 } }, { "key": "26573", "source": "455", "target": "223", "attributes": { "weight": 3 } }, { "key": "1470", "source": "456", "target": "490", "attributes": { "weight": 1 } }, { "key": "1469", "source": "456", "target": "454", "attributes": { "weight": 1 } }, { "key": "1466", "source": "456", "target": "224", "attributes": { "weight": 1 } }, { "key": "1468", "source": "456", "target": "183", "attributes": { "weight": 1 } }, { "key": "1467", "source": "456", "target": "448", "attributes": { "weight": 1 } }, { "key": "10867", "source": "457", "target": "305", "attributes": { "weight": 2 } }, { "key": "10841", "source": "457", "target": "1540", "attributes": { "weight": 1 } }, { "key": "16814", "source": "457", "target": "1354", "attributes": { "weight": 1 } }, { "key": "37067", "source": "457", "target": "857", "attributes": { "weight": 1 } }, { "key": "16815", "source": "457", "target": "432", "attributes": { "weight": 1 } }, { "key": "10848", "source": "457", "target": "170", "attributes": { "weight": 2 } }, { "key": "10854", "source": "457", "target": "1547", "attributes": { "weight": 1 } }, { "key": "16819", "source": "457", "target": "135", "attributes": { "weight": 1 } }, { "key": "5091", "source": "457", "target": "468", "attributes": { "weight": 4 } }, { "key": "10853", "source": "457", "target": "470", "attributes": { "weight": 2 } }, { "key": "16816", "source": "457", "target": "2086", "attributes": { "weight": 1 } }, { "key": "10868", "source": "457", "target": "695", "attributes": { "weight": 2 } }, { "key": "10837", "source": "457", "target": "52", "attributes": { "weight": 1 } }, { "key": "16818", "source": "457", "target": "449", "attributes": { "weight": 1 } }, { "key": "25476", "source": "457", "target": "1360", "attributes": { "weight": 1 } }, { "key": "6805", "source": "457", "target": "188", "attributes": { "weight": 2 } }, { "key": "10827", "source": "457", "target": "1733", "attributes": { "weight": 2 } }, { "key": "10863", "source": "457", "target": "70", "attributes": { "weight": 3 } }, { "key": "10849", "source": "457", "target": "64", "attributes": { "weight": 2 } }, { "key": "10873", "source": "457", "target": "14", "attributes": { "weight": 2 } }, { "key": "10850", "source": "457", "target": "464", "attributes": { "weight": 1 } }, { "key": "16822", "source": "457", "target": "488", "attributes": { "weight": 1 } }, { "key": "10845", "source": "457", "target": "1737", "attributes": { "weight": 1 } }, { "key": "16817", "source": "457", "target": "1070", "attributes": { "weight": 1 } }, { "key": "5092", "source": "457", "target": "472", "attributes": { "weight": 3 } }, { "key": "16821", "source": "457", "target": "231", "attributes": { "weight": 1 } }, { "key": "10829", "source": "457", "target": "440", "attributes": { "weight": 2 } }, { "key": "6806", "source": "457", "target": "189", "attributes": { "weight": 4 } }, { "key": "10857", "source": "457", "target": "1742", "attributes": { "weight": 2 } }, { "key": "10881", "source": "457", "target": "497", "attributes": { "weight": 2 } }, { "key": "10874", "source": "457", "target": "1749", "attributes": { "weight": 2 } }, { "key": "10828", "source": "457", "target": "223", "attributes": { "weight": 1 } }, { "key": "10882", "source": "457", "target": "326", "attributes": { "weight": 1 } }, { "key": "10834", "source": "457", "target": "3", "attributes": { "weight": 2 } }, { "key": "6804", "source": "457", "target": "454", "attributes": { "weight": 5 } }, { "key": "10838", "source": "457", "target": "865", "attributes": { "weight": 1 } }, { "key": "6807", "source": "457", "target": "495", "attributes": { "weight": 2 } }, { "key": "10840", "source": "457", "target": "278", "attributes": { "weight": 1 } }, { "key": "1471", "source": "457", "target": "193", "attributes": { "weight": 3 } }, { "key": "15086", "source": "457", "target": "1992", "attributes": { "weight": 1 } }, { "key": "10844", "source": "457", "target": "1736", "attributes": { "weight": 2 } }, { "key": "10843", "source": "457", "target": "1735", "attributes": { "weight": 2 } }, { "key": "10877", "source": "457", "target": "340", "attributes": { "weight": 1 } }, { "key": "10821", "source": "457", "target": "429", "attributes": { "weight": 2 } }, { "key": "10826", "source": "457", "target": "164", "attributes": { "weight": 1 } }, { "key": "10855", "source": "457", "target": "471", "attributes": { "weight": 2 } }, { "key": "10839", "source": "457", "target": "168", "attributes": { "weight": 1 } }, { "key": "10875", "source": "457", "target": "72", "attributes": { "weight": 1 } }, { "key": "10835", "source": "457", "target": "452", "attributes": { "weight": 2 } }, { "key": "10861", "source": "457", "target": "1743", "attributes": { "weight": 2 } }, { "key": "10869", "source": "457", "target": "1747", "attributes": { "weight": 2 } }, { "key": "5090", "source": "457", "target": "370", "attributes": { "weight": 4 } }, { "key": "10822", "source": "457", "target": "220", "attributes": { "weight": 3 } }, { "key": "10878", "source": "457", "target": "1751", "attributes": { "weight": 1 } }, { "key": "10866", "source": "457", "target": "479", "attributes": { "weight": 3 } }, { "key": "10860", "source": "457", "target": "579", "attributes": { "weight": 2 } }, { "key": "10836", "source": "457", "target": "1118", "attributes": { "weight": 1 } }, { "key": "10865", "source": "457", "target": "304", "attributes": { "weight": 2 } }, { "key": "10859", "source": "457", "target": "474", "attributes": { "weight": 2 } }, { "key": "10870", "source": "457", "target": "178", "attributes": { "weight": 1 } }, { "key": "10871", "source": "457", "target": "1748", "attributes": { "weight": 2 } }, { "key": "10856", "source": "457", "target": "68", "attributes": { "weight": 2 } }, { "key": "10847", "source": "457", "target": "1739", "attributes": { "weight": 2 } }, { "key": "10880", "source": "457", "target": "1390", "attributes": { "weight": 2 } }, { "key": "10862", "source": "457", "target": "580", "attributes": { "weight": 2 } }, { "key": "10879", "source": "457", "target": "1753", "attributes": { "weight": 1 } }, { "key": "10872", "source": "457", "target": "595", "attributes": { "weight": 2 } }, { "key": "10824", "source": "457", "target": "424", "attributes": { "weight": 1 } }, { "key": "31315", "source": "457", "target": "791", "attributes": { "weight": 2 } }, { "key": "29851", "source": "457", "target": "1024", "attributes": { "weight": 1 } }, { "key": "10858", "source": "457", "target": "473", "attributes": { "weight": 1 } }, { "key": "10852", "source": "457", "target": "8", "attributes": { "weight": 2 } }, { "key": "10876", "source": "457", "target": "1750", "attributes": { "weight": 1 } }, { "key": "16820", "source": "457", "target": "1125", "attributes": { "weight": 1 } }, { "key": "10831", "source": "457", "target": "674", "attributes": { "weight": 3 } }, { "key": "6808", "source": "457", "target": "57", "attributes": { "weight": 2 } }, { "key": "10830", "source": "457", "target": "262", "attributes": { "weight": 1 } }, { "key": "10833", "source": "457", "target": "419", "attributes": { "weight": 1 } }, { "key": "10851", "source": "457", "target": "1740", "attributes": { "weight": 1 } }, { "key": "8765", "source": "457", "target": "442", "attributes": { "weight": 3 } }, { "key": "10842", "source": "457", "target": "1734", "attributes": { "weight": 1 } }, { "key": "6803", "source": "457", "target": "183", "attributes": { "weight": 2 } }, { "key": "10832", "source": "457", "target": "447", "attributes": { "weight": 2 } }, { "key": "10846", "source": "457", "target": "1738", "attributes": { "weight": 2 } }, { "key": "10823", "source": "457", "target": "59", "attributes": { "weight": 5 } }, { "key": "10864", "source": "457", "target": "1745", "attributes": { "weight": 2 } }, { "key": "10825", "source": "457", "target": "130", "attributes": { "weight": 4 } }, { "key": "35686", "source": "457", "target": "71", "attributes": { "weight": 1 } }, { "key": "28935", "source": "458", "target": "479", "attributes": { "weight": 1 } }, { "key": "6813", "source": "458", "target": "1365", "attributes": { "weight": 2 } }, { "key": "1474", "source": "458", "target": "455", "attributes": { "weight": 3 } }, { "key": "22839", "source": "458", "target": "462", "attributes": { "weight": 1 } }, { "key": "23618", "source": "458", "target": "220", "attributes": { "weight": 1 } }, { "key": "6810", "source": "458", "target": "182", "attributes": { "weight": 1 } }, { "key": "3954", "source": "458", "target": "432", "attributes": { "weight": 4 } }, { "key": "26312", "source": "458", "target": "1258", "attributes": { "weight": 1 } }, { "key": "6816", "source": "458", "target": "57", "attributes": { "weight": 2 } }, { "key": "27071", "source": "458", "target": "1832", "attributes": { "weight": 1 } }, { "key": "6812", "source": "458", "target": "467", "attributes": { "weight": 2 } }, { "key": "3955", "source": "458", "target": "50", "attributes": { "weight": 1 } }, { "key": "35687", "source": "458", "target": "695", "attributes": { "weight": 1 } }, { "key": "3964", "source": "458", "target": "487", "attributes": { "weight": 2 } }, { "key": "3966", "source": "458", "target": "495", "attributes": { "weight": 4 } }, { "key": "27073", "source": "458", "target": "1247", "attributes": { "weight": 2 } }, { "key": "22840", "source": "458", "target": "1085", "attributes": { "weight": 1 } }, { "key": "23619", "source": "458", "target": "2252", "attributes": { "weight": 1 } }, { "key": "1475", "source": "458", "target": "188", "attributes": { "weight": 4 } }, { "key": "6809", "source": "458", "target": "425", "attributes": { "weight": 2 } }, { "key": "3965", "source": "458", "target": "340", "attributes": { "weight": 1 } }, { "key": "35689", "source": "458", "target": "1390", "attributes": { "weight": 1 } }, { "key": "27074", "source": "458", "target": "472", "attributes": { "weight": 3 } }, { "key": "3962", "source": "458", "target": "189", "attributes": { "weight": 5 } }, { "key": "32733", "source": "458", "target": "228", "attributes": { "weight": 1 } }, { "key": "14294", "source": "458", "target": "53", "attributes": { "weight": 1 } }, { "key": "33412", "source": "458", "target": "2258", "attributes": { "weight": 1 } }, { "key": "33410", "source": "458", "target": "51", "attributes": { "weight": 1 } }, { "key": "3959", "source": "458", "target": "454", "attributes": { "weight": 4 } }, { "key": "32734", "source": "458", "target": "1088", "attributes": { "weight": 1 } }, { "key": "27260", "source": "458", "target": "52", "attributes": { "weight": 2 } }, { "key": "6811", "source": "458", "target": "187", "attributes": { "weight": 2 } }, { "key": "35688", "source": "458", "target": "1750", "attributes": { "weight": 1 } }, { "key": "22838", "source": "458", "target": "1074", "attributes": { "weight": 1 } }, { "key": "27072", "source": "458", "target": "1219", "attributes": { "weight": 1 } }, { "key": "3956", "source": "458", "target": "223", "attributes": { "weight": 3 } }, { "key": "33411", "source": "458", "target": "450", "attributes": { "weight": 1 } }, { "key": "32731", "source": "458", "target": "435", "attributes": { "weight": 3 } }, { "key": "1477", "source": "458", "target": "193", "attributes": { "weight": 3 } }, { "key": "6815", "source": "458", "target": "192", "attributes": { "weight": 2 } }, { "key": "31603", "source": "458", "target": "595", "attributes": { "weight": 1 } }, { "key": "32732", "source": "458", "target": "135", "attributes": { "weight": 3 } }, { "key": "3957", "source": "458", "target": "442", "attributes": { "weight": 1 } }, { "key": "1472", "source": "458", "target": "224", "attributes": { "weight": 2 } }, { "key": "3961", "source": "458", "target": "1087", "attributes": { "weight": 1 } }, { "key": "1476", "source": "458", "target": "490", "attributes": { "weight": 3 } }, { "key": "3963", "source": "458", "target": "483", "attributes": { "weight": 2 } }, { "key": "15297", "source": "458", "target": "672", "attributes": { "weight": 2 } }, { "key": "34975", "source": "458", "target": "352", "attributes": { "weight": 1 } }, { "key": "3960", "source": "458", "target": "8", "attributes": { "weight": 2 } }, { "key": "33413", "source": "458", "target": "473", "attributes": { "weight": 1 } }, { "key": "29852", "source": "458", "target": "1024", "attributes": { "weight": 1 } }, { "key": "32735", "source": "458", "target": "1125", "attributes": { "weight": 1 } }, { "key": "3958", "source": "458", "target": "3", "attributes": { "weight": 3 } }, { "key": "23620", "source": "458", "target": "1312", "attributes": { "weight": 1 } }, { "key": "6814", "source": "458", "target": "476", "attributes": { "weight": 2 } }, { "key": "23338", "source": "458", "target": "1121", "attributes": { "weight": 1 } }, { "key": "1473", "source": "458", "target": "183", "attributes": { "weight": 6 } }, { "key": "27075", "source": "458", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20215", "source": "459", "target": "1247", "attributes": { "weight": 3 } }, { "key": "20221", "source": "459", "target": "489", "attributes": { "weight": 3 } }, { "key": "31531", "source": "459", "target": "438", "attributes": { "weight": 1 } }, { "key": "20207", "source": "459", "target": "2106", "attributes": { "weight": 1 } }, { "key": "1480", "source": "459", "target": "490", "attributes": { "weight": 2 } }, { "key": "20218", "source": "459", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20206", "source": "459", "target": "222", "attributes": { "weight": 1 } }, { "key": "6827", "source": "459", "target": "454", "attributes": { "weight": 3 } }, { "key": "20217", "source": "459", "target": "1087", "attributes": { "weight": 1 } }, { "key": "33415", "source": "459", "target": "52", "attributes": { "weight": 1 } }, { "key": "6834", "source": "459", "target": "57", "attributes": { "weight": 1 } }, { "key": "23621", "source": "459", "target": "220", "attributes": { "weight": 3 } }, { "key": "1481", "source": "459", "target": "193", "attributes": { "weight": 2 } }, { "key": "32736", "source": "459", "target": "2258", "attributes": { "weight": 2 } }, { "key": "20212", "source": "459", "target": "1832", "attributes": { "weight": 3 } }, { "key": "6824", "source": "459", "target": "425", "attributes": { "weight": 1 } }, { "key": "20213", "source": "459", "target": "2251", "attributes": { "weight": 1 } }, { "key": "6828", "source": "459", "target": "455", "attributes": { "weight": 1 } }, { "key": "6829", "source": "459", "target": "188", "attributes": { "weight": 1 } }, { "key": "20220", "source": "459", "target": "480", "attributes": { "weight": 1 } }, { "key": "27077", "source": "459", "target": "1282", "attributes": { "weight": 2 } }, { "key": "33416", "source": "459", "target": "473", "attributes": { "weight": 1 } }, { "key": "6832", "source": "459", "target": "1369", "attributes": { "weight": 1 } }, { "key": "20208", "source": "459", "target": "51", "attributes": { "weight": 1 } }, { "key": "23339", "source": "459", "target": "223", "attributes": { "weight": 3 } }, { "key": "6826", "source": "459", "target": "1356", "attributes": { "weight": 1 } }, { "key": "20219", "source": "459", "target": "2267", "attributes": { "weight": 1 } }, { "key": "11888", "source": "459", "target": "1363", "attributes": { "weight": 2 } }, { "key": "23340", "source": "459", "target": "1366", "attributes": { "weight": 1 } }, { "key": "24066", "source": "459", "target": "1354", "attributes": { "weight": 2 } }, { "key": "6833", "source": "459", "target": "231", "attributes": { "weight": 2 } }, { "key": "20209", "source": "459", "target": "2244", "attributes": { "weight": 1 } }, { "key": "27076", "source": "459", "target": "1219", "attributes": { "weight": 1 } }, { "key": "11153", "source": "459", "target": "471", "attributes": { "weight": 5 } }, { "key": "1479", "source": "459", "target": "183", "attributes": { "weight": 3 } }, { "key": "33417", "source": "459", "target": "2110", "attributes": { "weight": 1 } }, { "key": "32090", "source": "459", "target": "3084", "attributes": { "weight": 1 } }, { "key": "20210", "source": "459", "target": "2245", "attributes": { "weight": 1 } }, { "key": "1478", "source": "459", "target": "224", "attributes": { "weight": 2 } }, { "key": "15303", "source": "459", "target": "472", "attributes": { "weight": 4 } }, { "key": "6830", "source": "459", "target": "189", "attributes": { "weight": 2 } }, { "key": "20203", "source": "459", "target": "130", "attributes": { "weight": 3 } }, { "key": "20214", "source": "459", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20204", "source": "459", "target": "221", "attributes": { "weight": 1 } }, { "key": "11889", "source": "459", "target": "468", "attributes": { "weight": 2 } }, { "key": "24068", "source": "459", "target": "1125", "attributes": { "weight": 3 } }, { "key": "24067", "source": "459", "target": "437", "attributes": { "weight": 2 } }, { "key": "20222", "source": "459", "target": "1375", "attributes": { "weight": 3 } }, { "key": "20211", "source": "459", "target": "2248", "attributes": { "weight": 2 } }, { "key": "23622", "source": "459", "target": "1312", "attributes": { "weight": 1 } }, { "key": "20202", "source": "459", "target": "429", "attributes": { "weight": 1 } }, { "key": "6831", "source": "459", "target": "476", "attributes": { "weight": 1 } }, { "key": "6825", "source": "459", "target": "185", "attributes": { "weight": 1 } }, { "key": "26313", "source": "459", "target": "1258", "attributes": { "weight": 1 } }, { "key": "17247", "source": "459", "target": "449", "attributes": { "weight": 2 } }, { "key": "16823", "source": "459", "target": "135", "attributes": { "weight": 2 } }, { "key": "20205", "source": "459", "target": "435", "attributes": { "weight": 1 } }, { "key": "20216", "source": "459", "target": "1836", "attributes": { "weight": 1 } }, { "key": "23341", "source": "460", "target": "461", "attributes": { "weight": 2 } }, { "key": "6840", "source": "460", "target": "495", "attributes": { "weight": 2 } }, { "key": "11894", "source": "460", "target": "468", "attributes": { "weight": 1 } }, { "key": "1482", "source": "460", "target": "224", "attributes": { "weight": 1 } }, { "key": "32737", "source": "460", "target": "135", "attributes": { "weight": 2 } }, { "key": "33426", "source": "460", "target": "52", "attributes": { "weight": 1 } }, { "key": "33428", "source": "460", "target": "473", "attributes": { "weight": 1 } }, { "key": "33427", "source": "460", "target": "472", "attributes": { "weight": 1 } }, { "key": "3975", "source": "460", "target": "432", "attributes": { "weight": 2 } }, { "key": "1483", "source": "461", "target": "224", "attributes": { "weight": 1 } }, { "key": "6841", "source": "461", "target": "495", "attributes": { "weight": 3 } }, { "key": "11903", "source": "461", "target": "468", "attributes": { "weight": 1 } }, { "key": "23626", "source": "461", "target": "1376", "attributes": { "weight": 1 } }, { "key": "23625", "source": "461", "target": "220", "attributes": { "weight": 1 } }, { "key": "3980", "source": "461", "target": "432", "attributes": { "weight": 3 } }, { "key": "33429", "source": "461", "target": "472", "attributes": { "weight": 1 } }, { "key": "16828", "source": "461", "target": "135", "attributes": { "weight": 2 } }, { "key": "35308", "source": "461", "target": "494", "attributes": { "weight": 1 } }, { "key": "23342", "source": "461", "target": "223", "attributes": { "weight": 1 } }, { "key": "6847", "source": "462", "target": "193", "attributes": { "weight": 1 } }, { "key": "23343", "source": "462", "target": "223", "attributes": { "weight": 1 } }, { "key": "23627", "source": "462", "target": "220", "attributes": { "weight": 1 } }, { "key": "6845", "source": "462", "target": "467", "attributes": { "weight": 1 } }, { "key": "26314", "source": "462", "target": "1258", "attributes": { "weight": 1 } }, { "key": "15307", "source": "462", "target": "672", "attributes": { "weight": 1 } }, { "key": "15306", "source": "462", "target": "490", "attributes": { "weight": 2 } }, { "key": "20223", "source": "462", "target": "221", "attributes": { "weight": 1 } }, { "key": "1484", "source": "462", "target": "224", "attributes": { "weight": 3 } }, { "key": "32738", "source": "462", "target": "135", "attributes": { "weight": 2 } }, { "key": "37011", "source": "462", "target": "425", "attributes": { "weight": 1 } }, { "key": "20228", "source": "462", "target": "2095", "attributes": { "weight": 1 } }, { "key": "27079", "source": "462", "target": "472", "attributes": { "weight": 1 } }, { "key": "3984", "source": "462", "target": "3", "attributes": { "weight": 1 } }, { "key": "15304", "source": "462", "target": "454", "attributes": { "weight": 2 } }, { "key": "20229", "source": "462", "target": "489", "attributes": { "weight": 1 } }, { "key": "20226", "source": "462", "target": "1247", "attributes": { "weight": 2 } }, { "key": "6846", "source": "462", "target": "189", "attributes": { "weight": 3 } }, { "key": "3985", "source": "462", "target": "1075", "attributes": { "weight": 2 } }, { "key": "6844", "source": "462", "target": "188", "attributes": { "weight": 2 } }, { "key": "3983", "source": "462", "target": "432", "attributes": { "weight": 2 } }, { "key": "33434", "source": "462", "target": "1219", "attributes": { "weight": 1 } }, { "key": "20224", "source": "462", "target": "464", "attributes": { "weight": 1 } }, { "key": "15305", "source": "462", "target": "455", "attributes": { "weight": 2 } }, { "key": "20227", "source": "462", "target": "1836", "attributes": { "weight": 1 } }, { "key": "3986", "source": "462", "target": "483", "attributes": { "weight": 2 } }, { "key": "20225", "source": "462", "target": "2254", "attributes": { "weight": 1 } }, { "key": "6843", "source": "462", "target": "183", "attributes": { "weight": 3 } }, { "key": "1486", "source": "463", "target": "188", "attributes": { "weight": 2 } }, { "key": "29036", "source": "463", "target": "495", "attributes": { "weight": 1 } }, { "key": "1485", "source": "463", "target": "224", "attributes": { "weight": 2 } }, { "key": "1487", "source": "463", "target": "193", "attributes": { "weight": 2 } }, { "key": "20240", "source": "464", "target": "1023", "attributes": { "weight": 1 } }, { "key": "33437", "source": "464", "target": "51", "attributes": { "weight": 1 } }, { "key": "20257", "source": "464", "target": "1812", "attributes": { "weight": 1 } }, { "key": "16834", "source": "464", "target": "434", "attributes": { "weight": 1 } }, { "key": "20262", "source": "464", "target": "2189", "attributes": { "weight": 1 } }, { "key": "16835", "source": "464", "target": "674", "attributes": { "weight": 1 } }, { "key": "20242", "source": "464", "target": "2244", "attributes": { "weight": 1 } }, { "key": "26911", "source": "464", "target": "495", "attributes": { "weight": 2 } }, { "key": "20235", "source": "464", "target": "429", "attributes": { "weight": 1 } }, { "key": "20258", "source": "464", "target": "480", "attributes": { "weight": 1 } }, { "key": "25478", "source": "464", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20251", "source": "464", "target": "1247", "attributes": { "weight": 1 } }, { "key": "16838", "source": "464", "target": "1389", "attributes": { "weight": 1 } }, { "key": "20239", "source": "464", "target": "222", "attributes": { "weight": 1 } }, { "key": "20255", "source": "464", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20246", "source": "464", "target": "450", "attributes": { "weight": 2 } }, { "key": "20250", "source": "464", "target": "462", "attributes": { "weight": 1 } }, { "key": "6849", "source": "464", "target": "193", "attributes": { "weight": 1 } }, { "key": "20237", "source": "464", "target": "221", "attributes": { "weight": 1 } }, { "key": "16837", "source": "464", "target": "1337", "attributes": { "weight": 1 } }, { "key": "31628", "source": "464", "target": "595", "attributes": { "weight": 1 } }, { "key": "26602", "source": "464", "target": "189", "attributes": { "weight": 2 } }, { "key": "33439", "source": "464", "target": "442", "attributes": { "weight": 1 } }, { "key": "33438", "source": "464", "target": "425", "attributes": { "weight": 1 } }, { "key": "25477", "source": "464", "target": "220", "attributes": { "weight": 1 } }, { "key": "20244", "source": "464", "target": "448", "attributes": { "weight": 1 } }, { "key": "1488", "source": "464", "target": "490", "attributes": { "weight": 1 } }, { "key": "33440", "source": "464", "target": "135", "attributes": { "weight": 1 } }, { "key": "25479", "source": "464", "target": "57", "attributes": { "weight": 1 } }, { "key": "20238", "source": "464", "target": "435", "attributes": { "weight": 1 } }, { "key": "33436", "source": "464", "target": "2645", "attributes": { "weight": 1 } }, { "key": "20243", "source": "464", "target": "2245", "attributes": { "weight": 1 } }, { "key": "26912", "source": "464", "target": "497", "attributes": { "weight": 1 } }, { "key": "20260", "source": "464", "target": "2111", "attributes": { "weight": 1 } }, { "key": "20249", "source": "464", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20241", "source": "464", "target": "441", "attributes": { "weight": 1 } }, { "key": "20254", "source": "464", "target": "472", "attributes": { "weight": 1 } }, { "key": "27080", "source": "464", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20253", "source": "464", "target": "471", "attributes": { "weight": 1 } }, { "key": "16833", "source": "464", "target": "59", "attributes": { "weight": 1 } }, { "key": "20261", "source": "464", "target": "489", "attributes": { "weight": 1 } }, { "key": "20236", "source": "464", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20247", "source": "464", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20252", "source": "464", "target": "1836", "attributes": { "weight": 2 } }, { "key": "20259", "source": "464", "target": "2095", "attributes": { "weight": 1 } }, { "key": "20256", "source": "464", "target": "2262", "attributes": { "weight": 1 } }, { "key": "20248", "source": "464", "target": "1832", "attributes": { "weight": 1 } }, { "key": "10898", "source": "464", "target": "457", "attributes": { "weight": 1 } }, { "key": "26601", "source": "464", "target": "454", "attributes": { "weight": 2 } }, { "key": "33441", "source": "464", "target": "2110", "attributes": { "weight": 1 } }, { "key": "20245", "source": "464", "target": "449", "attributes": { "weight": 1 } }, { "key": "16836", "source": "464", "target": "70", "attributes": { "weight": 1 } }, { "key": "35980", "source": "465", "target": "434", "attributes": { "weight": 1 } }, { "key": "35984", "source": "465", "target": "2244", "attributes": { "weight": 1 } }, { "key": "35995", "source": "465", "target": "340", "attributes": { "weight": 1 } }, { "key": "35990", "source": "465", "target": "2258", "attributes": { "weight": 1 } }, { "key": "35986", "source": "465", "target": "448", "attributes": { "weight": 1 } }, { "key": "20264", "source": "465", "target": "435", "attributes": { "weight": 1 } }, { "key": "35993", "source": "465", "target": "2262", "attributes": { "weight": 1 } }, { "key": "36925", "source": "465", "target": "1072", "attributes": { "weight": 1 } }, { "key": "35989", "source": "465", "target": "1137", "attributes": { "weight": 1 } }, { "key": "35994", "source": "465", "target": "1337", "attributes": { "weight": 1 } }, { "key": "35996", "source": "465", "target": "73", "attributes": { "weight": 1 } }, { "key": "26603", "source": "465", "target": "454", "attributes": { "weight": 2 } }, { "key": "20265", "source": "465", "target": "1070", "attributes": { "weight": 1 } }, { "key": "1489", "source": "465", "target": "183", "attributes": { "weight": 1 } }, { "key": "35983", "source": "465", "target": "224", "attributes": { "weight": 1 } }, { "key": "35987", "source": "465", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20267", "source": "465", "target": "489", "attributes": { "weight": 1 } }, { "key": "35992", "source": "465", "target": "190", "attributes": { "weight": 1 } }, { "key": "35979", "source": "465", "target": "130", "attributes": { "weight": 1 } }, { "key": "20266", "source": "465", "target": "449", "attributes": { "weight": 1 } }, { "key": "26913", "source": "465", "target": "497", "attributes": { "weight": 1 } }, { "key": "35981", "source": "465", "target": "221", "attributes": { "weight": 1 } }, { "key": "20263", "source": "465", "target": "1354", "attributes": { "weight": 1 } }, { "key": "35982", "source": "465", "target": "1023", "attributes": { "weight": 1 } }, { "key": "35985", "source": "465", "target": "1831", "attributes": { "weight": 1 } }, { "key": "35991", "source": "465", "target": "1741", "attributes": { "weight": 1 } }, { "key": "35988", "source": "465", "target": "2253", "attributes": { "weight": 1 } }, { "key": "1490", "source": "466", "target": "224", "attributes": { "weight": 1 } }, { "key": "3993", "source": "466", "target": "432", "attributes": { "weight": 2 } }, { "key": "6851", "source": "466", "target": "189", "attributes": { "weight": 1 } }, { "key": "1491", "source": "466", "target": "490", "attributes": { "weight": 1 } }, { "key": "6850", "source": "466", "target": "183", "attributes": { "weight": 1 } }, { "key": "6862", "source": "467", "target": "426", "attributes": { "weight": 1 } }, { "key": "18110", "source": "467", "target": "442", "attributes": { "weight": 1 } }, { "key": "1493", "source": "467", "target": "183", "attributes": { "weight": 1 } }, { "key": "15313", "source": "467", "target": "1703", "attributes": { "weight": 1 } }, { "key": "15315", "source": "467", "target": "1355", "attributes": { "weight": 1 } }, { "key": "6857", "source": "467", "target": "1353", "attributes": { "weight": 2 } }, { "key": "31538", "source": "467", "target": "3", "attributes": { "weight": 1 } }, { "key": "18111", "source": "467", "target": "57", "attributes": { "weight": 1 } }, { "key": "15316", "source": "467", "target": "54", "attributes": { "weight": 1 } }, { "key": "1492", "source": "467", "target": "224", "attributes": { "weight": 1 } }, { "key": "18109", "source": "467", "target": "220", "attributes": { "weight": 1 } }, { "key": "32552", "source": "467", "target": "791", "attributes": { "weight": 1 } }, { "key": "6863", "source": "467", "target": "462", "attributes": { "weight": 1 } }, { "key": "6860", "source": "467", "target": "1358", "attributes": { "weight": 2 } }, { "key": "6861", "source": "467", "target": "458", "attributes": { "weight": 2 } }, { "key": "31537", "source": "467", "target": "438", "attributes": { "weight": 1 } }, { "key": "15317", "source": "467", "target": "483", "attributes": { "weight": 2 } }, { "key": "15314", "source": "467", "target": "443", "attributes": { "weight": 1 } }, { "key": "20324", "source": "467", "target": "489", "attributes": { "weight": 1 } }, { "key": "26611", "source": "467", "target": "189", "attributes": { "weight": 1 } }, { "key": "26610", "source": "467", "target": "454", "attributes": { "weight": 1 } }, { "key": "1494", "source": "467", "target": "490", "attributes": { "weight": 1 } }, { "key": "6859", "source": "467", "target": "1357", "attributes": { "weight": 2 } }, { "key": "24083", "source": "467", "target": "130", "attributes": { "weight": 2 } }, { "key": "6865", "source": "467", "target": "56", "attributes": { "weight": 2 } }, { "key": "6864", "source": "467", "target": "231", "attributes": { "weight": 2 } }, { "key": "26612", "source": "467", "target": "495", "attributes": { "weight": 2 } }, { "key": "6858", "source": "467", "target": "424", "attributes": { "weight": 4 } }, { "key": "3807", "source": "468", "target": "645", "attributes": { "weight": 5 } }, { "key": "11980", "source": "468", "target": "460", "attributes": { "weight": 1 } }, { "key": "23778", "source": "468", "target": "1774", "attributes": { "weight": 1 } }, { "key": "11974", "source": "468", "target": "5", "attributes": { "weight": 2 } }, { "key": "11988", "source": "468", "target": "580", "attributes": { "weight": 4 } }, { "key": "11981", "source": "468", "target": "461", "attributes": { "weight": 1 } }, { "key": "5427", "source": "468", "target": "1056", "attributes": { "weight": 3 } }, { "key": "5387", "source": "468", "target": "1036", "attributes": { "weight": 4 } }, { "key": "5464", "source": "468", "target": "333", "attributes": { "weight": 6 } }, { "key": "12353", "source": "468", "target": "357", "attributes": { "weight": 1 } }, { "key": "5461", "source": "468", "target": "495", "attributes": { "weight": 4 } }, { "key": "5428", "source": "468", "target": "337", "attributes": { "weight": 4 } }, { "key": "5455", "source": "468", "target": "1322", "attributes": { "weight": 8 } }, { "key": "33051", "source": "468", "target": "493", "attributes": { "weight": 1 } }, { "key": "5416", "source": "468", "target": "1118", "attributes": { "weight": 4 } }, { "key": "5450", "source": "468", "target": "479", "attributes": { "weight": 2 } }, { "key": "11969", "source": "468", "target": "369", "attributes": { "weight": 1 } }, { "key": "5460", "source": "468", "target": "494", "attributes": { "weight": 2 } }, { "key": "11968", "source": "468", "target": "3", "attributes": { "weight": 1 } }, { "key": "5430", "source": "468", "target": "1247", "attributes": { "weight": 3 } }, { "key": "11987", "source": "468", "target": "1281", "attributes": { "weight": 1 } }, { "key": "32161", "source": "468", "target": "1779", "attributes": { "weight": 1 } }, { "key": "5462", "source": "468", "target": "497", "attributes": { "weight": 5 } }, { "key": "5423", "source": "468", "target": "791", "attributes": { "weight": 3 } }, { "key": "5405", "source": "468", "target": "368", "attributes": { "weight": 7 } }, { "key": "5408", "source": "468", "target": "358", "attributes": { "weight": 6 } }, { "key": "5437", "source": "468", "target": "472", "attributes": { "weight": 5 } }, { "key": "5447", "source": "468", "target": "1026", "attributes": { "weight": 3 } }, { "key": "5401", "source": "468", "target": "779", "attributes": { "weight": 2 } }, { "key": "11966", "source": "468", "target": "339", "attributes": { "weight": 2 } }, { "key": "5453", "source": "468", "target": "1312", "attributes": { "weight": 2 } }, { "key": "5466", "source": "468", "target": "1063", "attributes": { "weight": 7 } }, { "key": "27735", "source": "468", "target": "1553", "attributes": { "weight": 1 } }, { "key": "11965", "source": "468", "target": "164", "attributes": { "weight": 4 } }, { "key": "5400", "source": "468", "target": "442", "attributes": { "weight": 3 } }, { "key": "5425", "source": "468", "target": "638", "attributes": { "weight": 6 } }, { "key": "5403", "source": "468", "target": "636", "attributes": { "weight": 2 } }, { "key": "10504", "source": "468", "target": "234", "attributes": { "weight": 1 } }, { "key": "5390", "source": "468", "target": "130", "attributes": { "weight": 3 } }, { "key": "5422", "source": "468", "target": "1233", "attributes": { "weight": 6 } }, { "key": "29130", "source": "468", "target": "488", "attributes": { "weight": 1 } }, { "key": "17256", "source": "468", "target": "2108", "attributes": { "weight": 1 } }, { "key": "5424", "source": "468", "target": "370", "attributes": { "weight": 12 } }, { "key": "5451", "source": "468", "target": "480", "attributes": { "weight": 2 } }, { "key": "5468", "source": "468", "target": "57", "attributes": { "weight": 4 } }, { "key": "5409", "source": "468", "target": "1133", "attributes": { "weight": 2 } }, { "key": "11995", "source": "468", "target": "894", "attributes": { "weight": 2 } }, { "key": "11993", "source": "468", "target": "1060", "attributes": { "weight": 3 } }, { "key": "5402", "source": "468", "target": "674", "attributes": { "weight": 3 } }, { "key": "5418", "source": "468", "target": "455", "attributes": { "weight": 3 } }, { "key": "30461", "source": "468", "target": "1046", "attributes": { "weight": 2 } }, { "key": "1496", "source": "468", "target": "188", "attributes": { "weight": 4 } }, { "key": "5449", "source": "468", "target": "1294", "attributes": { "weight": 4 } }, { "key": "25630", "source": "468", "target": "1780", "attributes": { "weight": 1 } }, { "key": "5443", "source": "468", "target": "474", "attributes": { "weight": 2 } }, { "key": "11990", "source": "468", "target": "304", "attributes": { "weight": 3 } }, { "key": "5440", "source": "468", "target": "189", "attributes": { "weight": 4 } }, { "key": "5454", "source": "468", "target": "1315", "attributes": { "weight": 4 } }, { "key": "11971", "source": "468", "target": "134", "attributes": { "weight": 1 } }, { "key": "5411", "source": "468", "target": "1047", "attributes": { "weight": 8 } }, { "key": "5394", "source": "468", "target": "644", "attributes": { "weight": 2 } }, { "key": "4001", "source": "468", "target": "432", "attributes": { "weight": 5 } }, { "key": "31664", "source": "468", "target": "595", "attributes": { "weight": 1 } }, { "key": "11986", "source": "468", "target": "471", "attributes": { "weight": 2 } }, { "key": "24530", "source": "468", "target": "790", "attributes": { "weight": 1 } }, { "key": "34909", "source": "468", "target": "1042", "attributes": { "weight": 1 } }, { "key": "5389", "source": "468", "target": "1037", "attributes": { "weight": 4 } }, { "key": "8829", "source": "468", "target": "913", "attributes": { "weight": 4 } }, { "key": "5412", "source": "468", "target": "452", "attributes": { "weight": 3 } }, { "key": "11973", "source": "468", "target": "109", "attributes": { "weight": 2 } }, { "key": "5388", "source": "468", "target": "1152", "attributes": { "weight": 4 } }, { "key": "11979", "source": "468", "target": "359", "attributes": { "weight": 2 } }, { "key": "11994", "source": "468", "target": "178", "attributes": { "weight": 4 } }, { "key": "5445", "source": "468", "target": "123", "attributes": { "weight": 9 } }, { "key": "11983", "source": "468", "target": "1387", "attributes": { "weight": 1 } }, { "key": "5458", "source": "468", "target": "1337", "attributes": { "weight": 3 } }, { "key": "11975", "source": "468", "target": "168", "attributes": { "weight": 3 } }, { "key": "29811", "source": "468", "target": "93", "attributes": { "weight": 1 } }, { "key": "14714", "source": "468", "target": "259", "attributes": { "weight": 1 } }, { "key": "11989", "source": "468", "target": "1744", "attributes": { "weight": 1 } }, { "key": "5406", "source": "468", "target": "449", "attributes": { "weight": 3 } }, { "key": "5381", "source": "468", "target": "1141", "attributes": { "weight": 5 } }, { "key": "1497", "source": "468", "target": "490", "attributes": { "weight": 4 } }, { "key": "5426", "source": "468", "target": "171", "attributes": { "weight": 2 } }, { "key": "9798", "source": "468", "target": "396", "attributes": { "weight": 3 } }, { "key": "5465", "source": "468", "target": "377", "attributes": { "weight": 6 } }, { "key": "7335", "source": "468", "target": "375", "attributes": { "weight": 2 } }, { "key": "11970", "source": "468", "target": "451", "attributes": { "weight": 1 } }, { "key": "17926", "source": "468", "target": "1380", "attributes": { "weight": 1 } }, { "key": "5383", "source": "468", "target": "429", "attributes": { "weight": 2 } }, { "key": "5444", "source": "468", "target": "1282", "attributes": { "weight": 3 } }, { "key": "5436", "source": "468", "target": "661", "attributes": { "weight": 2 } }, { "key": "7334", "source": "468", "target": "1350", "attributes": { "weight": 2 } }, { "key": "5457", "source": "468", "target": "1092", "attributes": { "weight": 3 } }, { "key": "11985", "source": "468", "target": "136", "attributes": { "weight": 3 } }, { "key": "27874", "source": "468", "target": "2528", "attributes": { "weight": 1 } }, { "key": "7336", "source": "468", "target": "1424", "attributes": { "weight": 2 } }, { "key": "5404", "source": "468", "target": "1197", "attributes": { "weight": 4 } }, { "key": "11967", "source": "468", "target": "264", "attributes": { "weight": 1 } }, { "key": "5399", "source": "468", "target": "1174", "attributes": { "weight": 4 } }, { "key": "1495", "source": "468", "target": "224", "attributes": { "weight": 1 } }, { "key": "8830", "source": "468", "target": "925", "attributes": { "weight": 4 } }, { "key": "5386", "source": "468", "target": "195", "attributes": { "weight": 8 } }, { "key": "25921", "source": "468", "target": "1367", "attributes": { "weight": 1 } }, { "key": "3808", "source": "468", "target": "419", "attributes": { "weight": 5 } }, { "key": "5421", "source": "468", "target": "1232", "attributes": { "weight": 8 } }, { "key": "11963", "source": "468", "target": "889", "attributes": { "weight": 2 } }, { "key": "29700", "source": "468", "target": "421", "attributes": { "weight": 1 } }, { "key": "11978", "source": "468", "target": "278", "attributes": { "weight": 3 } }, { "key": "5393", "source": "468", "target": "222", "attributes": { "weight": 2 } }, { "key": "11991", "source": "468", "target": "231", "attributes": { "weight": 2 } }, { "key": "11984", "source": "468", "target": "8", "attributes": { "weight": 1 } }, { "key": "5432", "source": "468", "target": "469", "attributes": { "weight": 4 } }, { "key": "11962", "source": "468", "target": "787", "attributes": { "weight": 2 } }, { "key": "5384", "source": "468", "target": "220", "attributes": { "weight": 5 } }, { "key": "6867", "source": "468", "target": "1125", "attributes": { "weight": 3 } }, { "key": "5420", "source": "468", "target": "651", "attributes": { "weight": 2 } }, { "key": "5415", "source": "468", "target": "1219", "attributes": { "weight": 3 } }, { "key": "5446", "source": "468", "target": "70", "attributes": { "weight": 4 } }, { "key": "5456", "source": "468", "target": "1323", "attributes": { "weight": 10 } }, { "key": "11982", "source": "468", "target": "1024", "attributes": { "weight": 1 } }, { "key": "5452", "source": "468", "target": "1305", "attributes": { "weight": 6 } }, { "key": "5459", "source": "468", "target": "233", "attributes": { "weight": 2 } }, { "key": "10503", "source": "468", "target": "225", "attributes": { "weight": 1 } }, { "key": "5392", "source": "468", "target": "1161", "attributes": { "weight": 4 } }, { "key": "9290", "source": "468", "target": "430", "attributes": { "weight": 1 } }, { "key": "5414", "source": "468", "target": "1217", "attributes": { "weight": 2 } }, { "key": "29701", "source": "468", "target": "1763", "attributes": { "weight": 1 } }, { "key": "24087", "source": "468", "target": "1766", "attributes": { "weight": 2 } }, { "key": "29129", "source": "468", "target": "484", "attributes": { "weight": 1 } }, { "key": "5407", "source": "468", "target": "183", "attributes": { "weight": 3 } }, { "key": "5433", "source": "468", "target": "470", "attributes": { "weight": 7 } }, { "key": "12354", "source": "468", "target": "365", "attributes": { "weight": 1 } }, { "key": "5413", "source": "468", "target": "454", "attributes": { "weight": 4 } }, { "key": "24086", "source": "468", "target": "437", "attributes": { "weight": 2 } }, { "key": "25382", "source": "468", "target": "433", "attributes": { "weight": 1 } }, { "key": "11972", "source": "468", "target": "108", "attributes": { "weight": 1 } }, { "key": "11964", "source": "468", "target": "1520", "attributes": { "weight": 3 } }, { "key": "5397", "source": "468", "target": "425", "attributes": { "weight": 3 } }, { "key": "5439", "source": "468", "target": "1087", "attributes": { "weight": 2 } }, { "key": "11961", "source": "468", "target": "1516", "attributes": { "weight": 1 } }, { "key": "1498", "source": "468", "target": "193", "attributes": { "weight": 4 } }, { "key": "5435", "source": "468", "target": "228", "attributes": { "weight": 2 } }, { "key": "5396", "source": "468", "target": "223", "attributes": { "weight": 3 } }, { "key": "5382", "source": "468", "target": "35", "attributes": { "weight": 2 } }, { "key": "5431", "source": "468", "target": "53", "attributes": { "weight": 3 } }, { "key": "5385", "source": "468", "target": "59", "attributes": { "weight": 6 } }, { "key": "5391", "source": "468", "target": "434", "attributes": { "weight": 2 } }, { "key": "5442", "source": "468", "target": "163", "attributes": { "weight": 3 } }, { "key": "29702", "source": "468", "target": "1253", "attributes": { "weight": 1 } }, { "key": "5417", "source": "468", "target": "52", "attributes": { "weight": 3 } }, { "key": "5419", "source": "468", "target": "457", "attributes": { "weight": 4 } }, { "key": "5441", "source": "468", "target": "473", "attributes": { "weight": 2 } }, { "key": "5410", "source": "468", "target": "450", "attributes": { "weight": 5 } }, { "key": "17257", "source": "468", "target": "2111", "attributes": { "weight": 1 } }, { "key": "7333", "source": "468", "target": "373", "attributes": { "weight": 2 } }, { "key": "11976", "source": "468", "target": "707", "attributes": { "weight": 4 } }, { "key": "5448", "source": "468", "target": "1090", "attributes": { "weight": 5 } }, { "key": "34999", "source": "468", "target": "352", "attributes": { "weight": 2 } }, { "key": "5429", "source": "468", "target": "338", "attributes": { "weight": 11 } }, { "key": "5438", "source": "468", "target": "371", "attributes": { "weight": 7 } }, { "key": "5395", "source": "468", "target": "938", "attributes": { "weight": 9 } }, { "key": "5434", "source": "468", "target": "1258", "attributes": { "weight": 2 } }, { "key": "18475", "source": "468", "target": "1738", "attributes": { "weight": 1 } }, { "key": "5398", "source": "468", "target": "440", "attributes": { "weight": 3 } }, { "key": "5467", "source": "468", "target": "500", "attributes": { "weight": 3 } }, { "key": "36957", "source": "468", "target": "362", "attributes": { "weight": 1 } }, { "key": "5463", "source": "468", "target": "154", "attributes": { "weight": 6 } }, { "key": "11977", "source": "468", "target": "459", "attributes": { "weight": 2 } }, { "key": "11992", "source": "468", "target": "305", "attributes": { "weight": 4 } }, { "key": "11996", "source": "468", "target": "340", "attributes": { "weight": 2 } }, { "key": "1499", "source": "469", "target": "193", "attributes": { "weight": 1 } }, { "key": "11177", "source": "469", "target": "223", "attributes": { "weight": 4 } }, { "key": "8837", "source": "469", "target": "1125", "attributes": { "weight": 3 } }, { "key": "9967", "source": "469", "target": "439", "attributes": { "weight": 2 } }, { "key": "11181", "source": "469", "target": "454", "attributes": { "weight": 4 } }, { "key": "11186", "source": "469", "target": "491", "attributes": { "weight": 1 } }, { "key": "8835", "source": "469", "target": "442", "attributes": { "weight": 3 } }, { "key": "11183", "source": "469", "target": "479", "attributes": { "weight": 1 } }, { "key": "11184", "source": "469", "target": "1770", "attributes": { "weight": 1 } }, { "key": "31330", "source": "469", "target": "59", "attributes": { "weight": 1 } }, { "key": "11187", "source": "469", "target": "1777", "attributes": { "weight": 1 } }, { "key": "11175", "source": "469", "target": "130", "attributes": { "weight": 1 } }, { "key": "24090", "source": "469", "target": "471", "attributes": { "weight": 1 } }, { "key": "9966", "source": "469", "target": "220", "attributes": { "weight": 3 } }, { "key": "11189", "source": "469", "target": "497", "attributes": { "weight": 1 } }, { "key": "11182", "source": "469", "target": "1026", "attributes": { "weight": 2 } }, { "key": "11178", "source": "469", "target": "441", "attributes": { "weight": 1 } }, { "key": "11176", "source": "469", "target": "49", "attributes": { "weight": 1 } }, { "key": "9969", "source": "469", "target": "190", "attributes": { "weight": 4 } }, { "key": "9970", "source": "469", "target": "477", "attributes": { "weight": 2 } }, { "key": "31331", "source": "469", "target": "674", "attributes": { "weight": 1 } }, { "key": "9968", "source": "469", "target": "445", "attributes": { "weight": 3 } }, { "key": "11180", "source": "469", "target": "452", "attributes": { "weight": 2 } }, { "key": "24348", "source": "469", "target": "191", "attributes": { "weight": 1 } }, { "key": "8836", "source": "469", "target": "1363", "attributes": { "weight": 2 } }, { "key": "24347", "source": "469", "target": "1367", "attributes": { "weight": 2 } }, { "key": "11188", "source": "469", "target": "495", "attributes": { "weight": 1 } }, { "key": "17258", "source": "469", "target": "449", "attributes": { "weight": 1 } }, { "key": "5478", "source": "469", "target": "468", "attributes": { "weight": 4 } }, { "key": "33493", "source": "469", "target": "135", "attributes": { "weight": 1 } }, { "key": "11185", "source": "469", "target": "1771", "attributes": { "weight": 2 } }, { "key": "11174", "source": "469", "target": "1756", "attributes": { "weight": 1 } }, { "key": "11179", "source": "469", "target": "1759", "attributes": { "weight": 1 } }, { "key": "30762", "source": "470", "target": "59", "attributes": { "weight": 2 } }, { "key": "32893", "source": "470", "target": "1047", "attributes": { "weight": 3 } }, { "key": "32908", "source": "470", "target": "1306", "attributes": { "weight": 1 } }, { "key": "8839", "source": "470", "target": "442", "attributes": { "weight": 3 } }, { "key": "32898", "source": "470", "target": "228", "attributes": { "weight": 2 } }, { "key": "10901", "source": "470", "target": "220", "attributes": { "weight": 8 } }, { "key": "32883", "source": "470", "target": "35", "attributes": { "weight": 1 } }, { "key": "20335", "source": "470", "target": "1023", "attributes": { "weight": 1 } }, { "key": "32914", "source": "470", "target": "234", "attributes": { "weight": 1 } }, { "key": "5482", "source": "470", "target": "468", "attributes": { "weight": 6 } }, { "key": "32915", "source": "470", "target": "1505", "attributes": { "weight": 1 } }, { "key": "33498", "source": "470", "target": "2258", "attributes": { "weight": 1 } }, { "key": "30903", "source": "470", "target": "3", "attributes": { "weight": 2 } }, { "key": "32556", "source": "470", "target": "791", "attributes": { "weight": 2 } }, { "key": "18069", "source": "470", "target": "2182", "attributes": { "weight": 3 } }, { "key": "11190", "source": "470", "target": "222", "attributes": { "weight": 3 } }, { "key": "17483", "source": "470", "target": "358", "attributes": { "weight": 2 } }, { "key": "29896", "source": "470", "target": "1024", "attributes": { "weight": 2 } }, { "key": "32913", "source": "470", "target": "2064", "attributes": { "weight": 2 } }, { "key": "32916", "source": "470", "target": "3114", "attributes": { "weight": 2 } }, { "key": "33052", "source": "470", "target": "493", "attributes": { "weight": 1 } }, { "key": "32906", "source": "470", "target": "1710", "attributes": { "weight": 2 } }, { "key": "20342", "source": "470", "target": "480", "attributes": { "weight": 1 } }, { "key": "30771", "source": "470", "target": "1374", "attributes": { "weight": 2 } }, { "key": "20343", "source": "470", "target": "489", "attributes": { "weight": 1 } }, { "key": "30770", "source": "470", "target": "3003", "attributes": { "weight": 2 } }, { "key": "20341", "source": "470", "target": "1744", "attributes": { "weight": 4 } }, { "key": "32904", "source": "470", "target": "607", "attributes": { "weight": 1 } }, { "key": "20337", "source": "470", "target": "451", "attributes": { "weight": 4 } }, { "key": "30772", "source": "470", "target": "3004", "attributes": { "weight": 2 } }, { "key": "30773", "source": "470", "target": "1375", "attributes": { "weight": 2 } }, { "key": "30774", "source": "470", "target": "1063", "attributes": { "weight": 3 } }, { "key": "32892", "source": "470", "target": "183", "attributes": { "weight": 1 } }, { "key": "10904", "source": "470", "target": "457", "attributes": { "weight": 2 } }, { "key": "32886", "source": "470", "target": "103", "attributes": { "weight": 1 } }, { "key": "16868", "source": "470", "target": "70", "attributes": { "weight": 2 } }, { "key": "32889", "source": "470", "target": "778", "attributes": { "weight": 1 } }, { "key": "30769", "source": "470", "target": "3002", "attributes": { "weight": 2 } }, { "key": "10505", "source": "470", "target": "225", "attributes": { "weight": 2 } }, { "key": "32902", "source": "470", "target": "474", "attributes": { "weight": 2 } }, { "key": "17260", "source": "470", "target": "2108", "attributes": { "weight": 1 } }, { "key": "24092", "source": "470", "target": "471", "attributes": { "weight": 6 } }, { "key": "32891", "source": "470", "target": "39", "attributes": { "weight": 1 } }, { "key": "9293", "source": "470", "target": "430", "attributes": { "weight": 2 } }, { "key": "32895", "source": "470", "target": "108", "attributes": { "weight": 1 } }, { "key": "10902", "source": "470", "target": "223", "attributes": { "weight": 8 } }, { "key": "26916", "source": "470", "target": "497", "attributes": { "weight": 2 } }, { "key": "18068", "source": "470", "target": "429", "attributes": { "weight": 3 } }, { "key": "32967", "source": "470", "target": "154", "attributes": { "weight": 1 } }, { "key": "32884", "source": "470", "target": "36", "attributes": { "weight": 1 } }, { "key": "10905", "source": "470", "target": "57", "attributes": { "weight": 4 } }, { "key": "26615", "source": "470", "target": "189", "attributes": { "weight": 2 } }, { "key": "32885", "source": "470", "target": "50", "attributes": { "weight": 2 } }, { "key": "1501", "source": "470", "target": "490", "attributes": { "weight": 1 } }, { "key": "32894", "source": "470", "target": "1455", "attributes": { "weight": 1 } }, { "key": "32910", "source": "470", "target": "116", "attributes": { "weight": 1 } }, { "key": "3631", "source": "470", "target": "1025", "attributes": { "weight": 1 } }, { "key": "30765", "source": "470", "target": "1357", "attributes": { "weight": 4 } }, { "key": "20340", "source": "470", "target": "1087", "attributes": { "weight": 2 } }, { "key": "23631", "source": "470", "target": "2248", "attributes": { "weight": 1 } }, { "key": "30763", "source": "470", "target": "437", "attributes": { "weight": 3 } }, { "key": "32912", "source": "470", "target": "233", "attributes": { "weight": 1 } }, { "key": "32911", "source": "470", "target": "672", "attributes": { "weight": 2 } }, { "key": "10903", "source": "470", "target": "52", "attributes": { "weight": 4 } }, { "key": "32909", "source": "470", "target": "2450", "attributes": { "weight": 2 } }, { "key": "26614", "source": "470", "target": "188", "attributes": { "weight": 2 } }, { "key": "30768", "source": "470", "target": "1370", "attributes": { "weight": 2 } }, { "key": "16466", "source": "470", "target": "1387", "attributes": { "weight": 2 } }, { "key": "16867", "source": "470", "target": "674", "attributes": { "weight": 3 } }, { "key": "30767", "source": "470", "target": "135", "attributes": { "weight": 3 } }, { "key": "5483", "source": "470", "target": "1090", "attributes": { "weight": 3 } }, { "key": "11193", "source": "470", "target": "494", "attributes": { "weight": 2 } }, { "key": "33497", "source": "470", "target": "1836", "attributes": { "weight": 1 } }, { "key": "11192", "source": "470", "target": "473", "attributes": { "weight": 3 } }, { "key": "20338", "source": "470", "target": "2253", "attributes": { "weight": 1 } }, { "key": "32907", "source": "470", "target": "482", "attributes": { "weight": 1 } }, { "key": "17927", "source": "470", "target": "454", "attributes": { "weight": 4 } }, { "key": "32887", "source": "470", "target": "440", "attributes": { "weight": 1 } }, { "key": "33494", "source": "470", "target": "51", "attributes": { "weight": 1 } }, { "key": "32888", "source": "470", "target": "2644", "attributes": { "weight": 2 } }, { "key": "17259", "source": "470", "target": "449", "attributes": { "weight": 2 } }, { "key": "24093", "source": "470", "target": "1125", "attributes": { "weight": 5 } }, { "key": "1500", "source": "470", "target": "224", "attributes": { "weight": 1 } }, { "key": "29040", "source": "470", "target": "495", "attributes": { "weight": 2 } }, { "key": "33495", "source": "470", "target": "425", "attributes": { "weight": 1 } }, { "key": "32903", "source": "470", "target": "1026", "attributes": { "weight": 1 } }, { "key": "24091", "source": "470", "target": "130", "attributes": { "weight": 4 } }, { "key": "32763", "source": "470", "target": "1088", "attributes": { "weight": 1 } }, { "key": "30766", "source": "470", "target": "3001", "attributes": { "weight": 2 } }, { "key": "32905", "source": "470", "target": "479", "attributes": { "weight": 1 } }, { "key": "28664", "source": "470", "target": "54", "attributes": { "weight": 2 } }, { "key": "11191", "source": "470", "target": "452", "attributes": { "weight": 2 } }, { "key": "20339", "source": "470", "target": "472", "attributes": { "weight": 2 } }, { "key": "32899", "source": "470", "target": "371", "attributes": { "weight": 2 } }, { "key": "33496", "source": "470", "target": "450", "attributes": { "weight": 1 } }, { "key": "32897", "source": "470", "target": "1766", "attributes": { "weight": 1 } }, { "key": "32900", "source": "470", "target": "2177", "attributes": { "weight": 1 } }, { "key": "32890", "source": "470", "target": "1186", "attributes": { "weight": 1 } }, { "key": "20336", "source": "470", "target": "2246", "attributes": { "weight": 1 } }, { "key": "26316", "source": "470", "target": "1258", "attributes": { "weight": 3 } }, { "key": "32901", "source": "470", "target": "1478", "attributes": { "weight": 1 } }, { "key": "30764", "source": "470", "target": "938", "attributes": { "weight": 2 } }, { "key": "32896", "source": "470", "target": "109", "attributes": { "weight": 1 } }, { "key": "25745", "source": "471", "target": "278", "attributes": { "weight": 1 } }, { "key": "24107", "source": "471", "target": "35", "attributes": { "weight": 1 } }, { "key": "24139", "source": "471", "target": "2470", "attributes": { "weight": 2 } }, { "key": "24120", "source": "471", "target": "1810", "attributes": { "weight": 1 } }, { "key": "24146", "source": "471", "target": "407", "attributes": { "weight": 1 } }, { "key": "31665", "source": "471", "target": "595", "attributes": { "weight": 2 } }, { "key": "17092", "source": "471", "target": "130", "attributes": { "weight": 4 } }, { "key": "24137", "source": "471", "target": "1088", "attributes": { "weight": 1 } }, { "key": "24144", "source": "471", "target": "601", "attributes": { "weight": 2 } }, { "key": "17090", "source": "471", "target": "372", "attributes": { "weight": 3 } }, { "key": "32276", "source": "471", "target": "164", "attributes": { "weight": 1 } }, { "key": "24152", "source": "471", "target": "340", "attributes": { "weight": 2 } }, { "key": "33551", "source": "471", "target": "672", "attributes": { "weight": 1 } }, { "key": "33545", "source": "471", "target": "51", "attributes": { "weight": 1 } }, { "key": "5500", "source": "471", "target": "370", "attributes": { "weight": 9 } }, { "key": "9810", "source": "471", "target": "396", "attributes": { "weight": 4 } }, { "key": "11201", "source": "471", "target": "231", "attributes": { "weight": 4 } }, { "key": "24150", "source": "471", "target": "1131", "attributes": { "weight": 1 } }, { "key": "14267", "source": "471", "target": "1046", "attributes": { "weight": 3 } }, { "key": "20443", "source": "471", "target": "1744", "attributes": { "weight": 6 } }, { "key": "24119", "source": "471", "target": "108", "attributes": { "weight": 1 } }, { "key": "20438", "source": "471", "target": "445", "attributes": { "weight": 1 } }, { "key": "26880", "source": "471", "target": "894", "attributes": { "weight": 1 } }, { "key": "24122", "source": "471", "target": "45", "attributes": { "weight": 2 } }, { "key": "29437", "source": "471", "target": "232", "attributes": { "weight": 1 } }, { "key": "20450", "source": "471", "target": "56", "attributes": { "weight": 2 } }, { "key": "14156", "source": "471", "target": "1891", "attributes": { "weight": 1 } }, { "key": "9809", "source": "471", "target": "387", "attributes": { "weight": 4 } }, { "key": "5503", "source": "471", "target": "123", "attributes": { "weight": 4 } }, { "key": "11196", "source": "471", "target": "452", "attributes": { "weight": 3 } }, { "key": "35208", "source": "471", "target": "254", "attributes": { "weight": 1 } }, { "key": "16877", "source": "471", "target": "674", "attributes": { "weight": 3 } }, { "key": "20447", "source": "471", "target": "2095", "attributes": { "weight": 1 } }, { "key": "5502", "source": "471", "target": "371", "attributes": { "weight": 5 } }, { "key": "24142", "source": "471", "target": "1031", "attributes": { "weight": 1 } }, { "key": "35206", "source": "471", "target": "781", "attributes": { "weight": 1 } }, { "key": "24126", "source": "471", "target": "1364", "attributes": { "weight": 2 } }, { "key": "26362", "source": "471", "target": "1258", "attributes": { "weight": 1 } }, { "key": "24117", "source": "471", "target": "2466", "attributes": { "weight": 1 } }, { "key": "25878", "source": "471", "target": "220", "attributes": { "weight": 3 } }, { "key": "24133", "source": "471", "target": "2094", "attributes": { "weight": 1 } }, { "key": "11199", "source": "471", "target": "1766", "attributes": { "weight": 3 } }, { "key": "36031", "source": "471", "target": "1760", "attributes": { "weight": 1 } }, { "key": "20433", "source": "471", "target": "440", "attributes": { "weight": 2 } }, { "key": "24116", "source": "471", "target": "3", "attributes": { "weight": 2 } }, { "key": "10908", "source": "471", "target": "1568", "attributes": { "weight": 4 } }, { "key": "24149", "source": "471", "target": "1374", "attributes": { "weight": 1 } }, { "key": "24136", "source": "471", "target": "474", "attributes": { "weight": 1 } }, { "key": "24110", "source": "471", "target": "889", "attributes": { "weight": 2 } }, { "key": "33549", "source": "471", "target": "1836", "attributes": { "weight": 1 } }, { "key": "10712", "source": "471", "target": "782", "attributes": { "weight": 1 } }, { "key": "24154", "source": "471", "target": "48", "attributes": { "weight": 2 } }, { "key": "13271", "source": "471", "target": "109", "attributes": { "weight": 5 } }, { "key": "6881", "source": "471", "target": "193", "attributes": { "weight": 2 } }, { "key": "6883", "source": "471", "target": "57", "attributes": { "weight": 3 } }, { "key": "10710", "source": "471", "target": "43", "attributes": { "weight": 2 } }, { "key": "11197", "source": "471", "target": "1358", "attributes": { "weight": 4 } }, { "key": "24125", "source": "471", "target": "1120", "attributes": { "weight": 1 } }, { "key": "24138", "source": "471", "target": "1592", "attributes": { "weight": 1 } }, { "key": "24121", "source": "471", "target": "391", "attributes": { "weight": 1 } }, { "key": "10909", "source": "471", "target": "1375", "attributes": { "weight": 3 } }, { "key": "6879", "source": "471", "target": "52", "attributes": { "weight": 4 } }, { "key": "33547", "source": "471", "target": "450", "attributes": { "weight": 1 } }, { "key": "9303", "source": "471", "target": "430", "attributes": { "weight": 2 } }, { "key": "11198", "source": "471", "target": "459", "attributes": { "weight": 5 } }, { "key": "24151", "source": "471", "target": "233", "attributes": { "weight": 1 } }, { "key": "23635", "source": "471", "target": "1312", "attributes": { "weight": 1 } }, { "key": "18324", "source": "471", "target": "1092", "attributes": { "weight": 3 } }, { "key": "20435", "source": "471", "target": "441", "attributes": { "weight": 1 } }, { "key": "24134", "source": "471", "target": "2469", "attributes": { "weight": 1 } }, { "key": "33548", "source": "471", "target": "135", "attributes": { "weight": 2 } }, { "key": "24153", "source": "471", "target": "492", "attributes": { "weight": 1 } }, { "key": "24109", "source": "471", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20429", "source": "471", "target": "1353", "attributes": { "weight": 3 } }, { "key": "24124", "source": "471", "target": "1387", "attributes": { "weight": 1 } }, { "key": "24145", "source": "471", "target": "2271", "attributes": { "weight": 1 } }, { "key": "35207", "source": "471", "target": "605", "attributes": { "weight": 1 } }, { "key": "24148", "source": "471", "target": "1565", "attributes": { "weight": 1 } }, { "key": "17263", "source": "471", "target": "449", "attributes": { "weight": 3 } }, { "key": "11202", "source": "471", "target": "1711", "attributes": { "weight": 5 } }, { "key": "24135", "source": "471", "target": "473", "attributes": { "weight": 3 } }, { "key": "24132", "source": "471", "target": "1366", "attributes": { "weight": 1 } }, { "key": "31965", "source": "471", "target": "359", "attributes": { "weight": 2 } }, { "key": "6878", "source": "471", "target": "454", "attributes": { "weight": 8 } }, { "key": "24131", "source": "471", "target": "228", "attributes": { "weight": 2 } }, { "key": "35205", "source": "471", "target": "3183", "attributes": { "weight": 1 } }, { "key": "24112", "source": "471", "target": "437", "attributes": { "weight": 2 } }, { "key": "23634", "source": "471", "target": "2248", "attributes": { "weight": 1 } }, { "key": "10907", "source": "471", "target": "457", "attributes": { "weight": 2 } }, { "key": "5504", "source": "471", "target": "1090", "attributes": { "weight": 2 } }, { "key": "24129", "source": "471", "target": "470", "attributes": { "weight": 6 } }, { "key": "5501", "source": "471", "target": "338", "attributes": { "weight": 4 } }, { "key": "6880", "source": "471", "target": "189", "attributes": { "weight": 4 } }, { "key": "13272", "source": "471", "target": "304", "attributes": { "weight": 2 } }, { "key": "20444", "source": "471", "target": "477", "attributes": { "weight": 1 } }, { "key": "20441", "source": "471", "target": "1367", "attributes": { "weight": 1 } }, { "key": "9808", "source": "471", "target": "223", "attributes": { "weight": 5 } }, { "key": "26918", "source": "471", "target": "497", "attributes": { "weight": 1 } }, { "key": "8864", "source": "471", "target": "442", "attributes": { "weight": 3 } }, { "key": "24123", "source": "471", "target": "1024", "attributes": { "weight": 2 } }, { "key": "24128", "source": "471", "target": "469", "attributes": { "weight": 1 } }, { "key": "4007", "source": "471", "target": "432", "attributes": { "weight": 2 } }, { "key": "24111", "source": "471", "target": "59", "attributes": { "weight": 2 } }, { "key": "10711", "source": "471", "target": "44", "attributes": { "weight": 1 } }, { "key": "1504", "source": "471", "target": "183", "attributes": { "weight": 3 } }, { "key": "24108", "source": "471", "target": "429", "attributes": { "weight": 2 } }, { "key": "20434", "source": "471", "target": "1023", "attributes": { "weight": 1 } }, { "key": "8865", "source": "471", "target": "1125", "attributes": { "weight": 3 } }, { "key": "28909", "source": "471", "target": "1349", "attributes": { "weight": 2 } }, { "key": "6882", "source": "471", "target": "495", "attributes": { "weight": 3 } }, { "key": "26622", "source": "471", "target": "1047", "attributes": { "weight": 2 } }, { "key": "24114", "source": "471", "target": "778", "attributes": { "weight": 3 } }, { "key": "20440", "source": "471", "target": "472", "attributes": { "weight": 1 } }, { "key": "24141", "source": "471", "target": "479", "attributes": { "weight": 4 } }, { "key": "24156", "source": "471", "target": "499", "attributes": { "weight": 1 } }, { "key": "35000", "source": "471", "target": "352", "attributes": { "weight": 1 } }, { "key": "10512", "source": "471", "target": "234", "attributes": { "weight": 3 } }, { "key": "20449", "source": "471", "target": "489", "attributes": { "weight": 1 } }, { "key": "24118", "source": "471", "target": "1116", "attributes": { "weight": 2 } }, { "key": "20437", "source": "471", "target": "2245", "attributes": { "weight": 1 } }, { "key": "32561", "source": "471", "target": "791", "attributes": { "weight": 1 } }, { "key": "30731", "source": "471", "target": "1026", "attributes": { "weight": 3 } }, { "key": "20436", "source": "471", "target": "2244", "attributes": { "weight": 1 } }, { "key": "24115", "source": "471", "target": "39", "attributes": { "weight": 2 } }, { "key": "20430", "source": "471", "target": "1756", "attributes": { "weight": 1 } }, { "key": "27879", "source": "471", "target": "339", "attributes": { "weight": 1 } }, { "key": "24130", "source": "471", "target": "136", "attributes": { "weight": 1 } }, { "key": "33053", "source": "471", "target": "1355", "attributes": { "weight": 1 } }, { "key": "20448", "source": "471", "target": "2109", "attributes": { "weight": 2 } }, { "key": "33550", "source": "471", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20442", "source": "471", "target": "1087", "attributes": { "weight": 2 } }, { "key": "20431", "source": "471", "target": "221", "attributes": { "weight": 1 } }, { "key": "24127", "source": "471", "target": "30", "attributes": { "weight": 3 } }, { "key": "17487", "source": "471", "target": "358", "attributes": { "weight": 1 } }, { "key": "24113", "source": "471", "target": "50", "attributes": { "weight": 1 } }, { "key": "10511", "source": "471", "target": "482", "attributes": { "weight": 3 } }, { "key": "36032", "source": "471", "target": "1778", "attributes": { "weight": 1 } }, { "key": "24155", "source": "471", "target": "494", "attributes": { "weight": 1 } }, { "key": "24147", "source": "471", "target": "1373", "attributes": { "weight": 1 } }, { "key": "20439", "source": "471", "target": "464", "attributes": { "weight": 1 } }, { "key": "10510", "source": "471", "target": "225", "attributes": { "weight": 2 } }, { "key": "5498", "source": "471", "target": "938", "attributes": { "weight": 4 } }, { "key": "12000", "source": "471", "target": "468", "attributes": { "weight": 2 } }, { "key": "5499", "source": "471", "target": "368", "attributes": { "weight": 5 } }, { "key": "33054", "source": "471", "target": "493", "attributes": { "weight": 1 } }, { "key": "8863", "source": "471", "target": "195", "attributes": { "weight": 4 } }, { "key": "11200", "source": "471", "target": "54", "attributes": { "weight": 5 } }, { "key": "20446", "source": "471", "target": "1560", "attributes": { "weight": 1 } }, { "key": "11999", "source": "471", "target": "1363", "attributes": { "weight": 2 } }, { "key": "24140", "source": "471", "target": "1746", "attributes": { "weight": 1 } }, { "key": "1505", "source": "471", "target": "188", "attributes": { "weight": 1 } }, { "key": "35209", "source": "471", "target": "116", "attributes": { "weight": 1 } }, { "key": "14155", "source": "471", "target": "392", "attributes": { "weight": 2 } }, { "key": "10118", "source": "471", "target": "369", "attributes": { "weight": 3 } }, { "key": "33546", "source": "471", "target": "425", "attributes": { "weight": 1 } }, { "key": "20445", "source": "471", "target": "480", "attributes": { "weight": 1 } }, { "key": "24143", "source": "471", "target": "2472", "attributes": { "weight": 1 } }, { "key": "20432", "source": "471", "target": "222", "attributes": { "weight": 2 } }, { "key": "20478", "source": "472", "target": "2270", "attributes": { "weight": 1 } }, { "key": "12281", "source": "472", "target": "455", "attributes": { "weight": 1 } }, { "key": "1506", "source": "472", "target": "224", "attributes": { "weight": 1 } }, { "key": "12286", "source": "472", "target": "1838", "attributes": { "weight": 1 } }, { "key": "15333", "source": "472", "target": "1094", "attributes": { "weight": 3 } }, { "key": "27119", "source": "472", "target": "474", "attributes": { "weight": 1 } }, { "key": "8867", "source": "472", "target": "442", "attributes": { "weight": 4 } }, { "key": "5508", "source": "472", "target": "468", "attributes": { "weight": 5 } }, { "key": "26625", "source": "472", "target": "189", "attributes": { "weight": 6 } }, { "key": "32971", "source": "472", "target": "377", "attributes": { "weight": 1 } }, { "key": "35566", "source": "472", "target": "1158", "attributes": { "weight": 1 } }, { "key": "5510", "source": "472", "target": "1090", "attributes": { "weight": 2 } }, { "key": "20458", "source": "472", "target": "222", "attributes": { "weight": 1 } }, { "key": "32780", "source": "472", "target": "445", "attributes": { "weight": 2 } }, { "key": "32782", "source": "472", "target": "1364", "attributes": { "weight": 2 } }, { "key": "27114", "source": "472", "target": "1357", "attributes": { "weight": 2 } }, { "key": "15330", "source": "472", "target": "231", "attributes": { "weight": 8 } }, { "key": "17265", "source": "472", "target": "2108", "attributes": { "weight": 1 } }, { "key": "15332", "source": "472", "target": "1347", "attributes": { "weight": 1 } }, { "key": "33553", "source": "472", "target": "437", "attributes": { "weight": 1 } }, { "key": "1507", "source": "472", "target": "188", "attributes": { "weight": 2 } }, { "key": "27112", "source": "472", "target": "860", "attributes": { "weight": 6 } }, { "key": "20471", "source": "472", "target": "54", "attributes": { "weight": 6 } }, { "key": "20477", "source": "472", "target": "2095", "attributes": { "weight": 1 } }, { "key": "32788", "source": "472", "target": "496", "attributes": { "weight": 2 } }, { "key": "32785", "source": "472", "target": "1371", "attributes": { "weight": 1 } }, { "key": "15325", "source": "472", "target": "1358", "attributes": { "weight": 5 } }, { "key": "27111", "source": "472", "target": "447", "attributes": { "weight": 3 } }, { "key": "20483", "source": "472", "target": "194", "attributes": { "weight": 1 } }, { "key": "27880", "source": "472", "target": "339", "attributes": { "weight": 1 } }, { "key": "32777", "source": "472", "target": "857", "attributes": { "weight": 1 } }, { "key": "31966", "source": "472", "target": "359", "attributes": { "weight": 2 } }, { "key": "27121", "source": "472", "target": "480", "attributes": { "weight": 1 } }, { "key": "20482", "source": "472", "target": "2276", "attributes": { "weight": 1 } }, { "key": "37462", "source": "472", "target": "1217", "attributes": { "weight": 1 } }, { "key": "20460", "source": "472", "target": "440", "attributes": { "weight": 2 } }, { "key": "33552", "source": "472", "target": "2645", "attributes": { "weight": 1 } }, { "key": "33556", "source": "472", "target": "52", "attributes": { "weight": 1 } }, { "key": "20467", "source": "472", "target": "1360", "attributes": { "weight": 1 } }, { "key": "27118", "source": "472", "target": "1366", "attributes": { "weight": 3 } }, { "key": "20476", "source": "472", "target": "695", "attributes": { "weight": 1 } }, { "key": "15327", "source": "472", "target": "337", "attributes": { "weight": 4 } }, { "key": "20462", "source": "472", "target": "2242", "attributes": { "weight": 1 } }, { "key": "12276", "source": "472", "target": "1161", "attributes": { "weight": 1 } }, { "key": "32562", "source": "472", "target": "791", "attributes": { "weight": 1 } }, { "key": "16880", "source": "472", "target": "1337", "attributes": { "weight": 1 } }, { "key": "8866", "source": "472", "target": "195", "attributes": { "weight": 4 } }, { "key": "33554", "source": "472", "target": "425", "attributes": { "weight": 1 } }, { "key": "27122", "source": "472", "target": "481", "attributes": { "weight": 2 } }, { "key": "17488", "source": "472", "target": "358", "attributes": { "weight": 2 } }, { "key": "15328", "source": "472", "target": "1262", "attributes": { "weight": 1 } }, { "key": "20461", "source": "472", "target": "1023", "attributes": { "weight": 1 } }, { "key": "18476", "source": "472", "target": "1738", "attributes": { "weight": 2 } }, { "key": "27123", "source": "472", "target": "483", "attributes": { "weight": 3 } }, { "key": "20465", "source": "472", "target": "2245", "attributes": { "weight": 1 } }, { "key": "16878", "source": "472", "target": "59", "attributes": { "weight": 3 } }, { "key": "25922", "source": "472", "target": "1367", "attributes": { "weight": 4 } }, { "key": "33561", "source": "472", "target": "340", "attributes": { "weight": 1 } }, { "key": "15331", "source": "472", "target": "56", "attributes": { "weight": 8 } }, { "key": "31335", "source": "472", "target": "674", "attributes": { "weight": 3 } }, { "key": "27120", "source": "472", "target": "479", "attributes": { "weight": 2 } }, { "key": "5506", "source": "472", "target": "457", "attributes": { "weight": 3 } }, { "key": "27127", "source": "472", "target": "495", "attributes": { "weight": 1 } }, { "key": "20468", "source": "472", "target": "2251", "attributes": { "weight": 1 } }, { "key": "29704", "source": "472", "target": "1253", "attributes": { "weight": 1 } }, { "key": "20454", "source": "472", "target": "429", "attributes": { "weight": 5 } }, { "key": "15329", "source": "472", "target": "208", "attributes": { "weight": 3 } }, { "key": "27116", "source": "472", "target": "462", "attributes": { "weight": 2 } }, { "key": "20469", "source": "472", "target": "464", "attributes": { "weight": 1 } }, { "key": "20459", "source": "472", "target": "438", "attributes": { "weight": 1 } }, { "key": "12278", "source": "472", "target": "450", "attributes": { "weight": 1 } }, { "key": "12287", "source": "472", "target": "475", "attributes": { "weight": 1 } }, { "key": "12290", "source": "472", "target": "1841", "attributes": { "weight": 1 } }, { "key": "20463", "source": "472", "target": "443", "attributes": { "weight": 3 } }, { "key": "12002", "source": "472", "target": "1522", "attributes": { "weight": 1 } }, { "key": "33558", "source": "472", "target": "487", "attributes": { "weight": 1 } }, { "key": "20466", "source": "472", "target": "451", "attributes": { "weight": 4 } }, { "key": "27126", "source": "472", "target": "494", "attributes": { "weight": 4 } }, { "key": "15324", "source": "472", "target": "387", "attributes": { "weight": 4 } }, { "key": "32787", "source": "472", "target": "2450", "attributes": { "weight": 2 } }, { "key": "8868", "source": "472", "target": "1088", "attributes": { "weight": 2 } }, { "key": "26623", "source": "472", "target": "1047", "attributes": { "weight": 2 } }, { "key": "25879", "source": "472", "target": "220", "attributes": { "weight": 2 } }, { "key": "20455", "source": "472", "target": "1354", "attributes": { "weight": 5 } }, { "key": "12289", "source": "472", "target": "1564", "attributes": { "weight": 1 } }, { "key": "33557", "source": "472", "target": "460", "attributes": { "weight": 1 } }, { "key": "31424", "source": "472", "target": "223", "attributes": { "weight": 1 } }, { "key": "32778", "source": "472", "target": "1703", "attributes": { "weight": 3 } }, { "key": "27125", "source": "472", "target": "233", "attributes": { "weight": 1 } }, { "key": "20475", "source": "472", "target": "2269", "attributes": { "weight": 3 } }, { "key": "20472", "source": "472", "target": "471", "attributes": { "weight": 1 } }, { "key": "26624", "source": "472", "target": "454", "attributes": { "weight": 1 } }, { "key": "32217", "source": "472", "target": "426", "attributes": { "weight": 4 } }, { "key": "31334", "source": "472", "target": "434", "attributes": { "weight": 1 } }, { "key": "32783", "source": "472", "target": "190", "attributes": { "weight": 3 } }, { "key": "15326", "source": "472", "target": "459", "attributes": { "weight": 4 } }, { "key": "18071", "source": "472", "target": "1036", "attributes": { "weight": 1 } }, { "key": "20474", "source": "472", "target": "1812", "attributes": { "weight": 7 } }, { "key": "12288", "source": "472", "target": "1768", "attributes": { "weight": 1 } }, { "key": "27110", "source": "472", "target": "858", "attributes": { "weight": 4 } }, { "key": "32215", "source": "472", "target": "424", "attributes": { "weight": 4 } }, { "key": "12282", "source": "472", "target": "1834", "attributes": { "weight": 1 } }, { "key": "5509", "source": "472", "target": "123", "attributes": { "weight": 5 } }, { "key": "20481", "source": "472", "target": "1375", "attributes": { "weight": 1 } }, { "key": "32784", "source": "472", "target": "372", "attributes": { "weight": 2 } }, { "key": "33559", "source": "472", "target": "1092", "attributes": { "weight": 1 } }, { "key": "17264", "source": "472", "target": "449", "attributes": { "weight": 2 } }, { "key": "12277", "source": "472", "target": "183", "attributes": { "weight": 2 } }, { "key": "27117", "source": "472", "target": "53", "attributes": { "weight": 5 } }, { "key": "4008", "source": "472", "target": "432", "attributes": { "weight": 3 } }, { "key": "20470", "source": "472", "target": "470", "attributes": { "weight": 2 } }, { "key": "16879", "source": "472", "target": "70", "attributes": { "weight": 2 } }, { "key": "12285", "source": "472", "target": "473", "attributes": { "weight": 1 } }, { "key": "20457", "source": "472", "target": "221", "attributes": { "weight": 1 } }, { "key": "32779", "source": "472", "target": "2644", "attributes": { "weight": 2 } }, { "key": "12275", "source": "472", "target": "1141", "attributes": { "weight": 2 } }, { "key": "27113", "source": "472", "target": "452", "attributes": { "weight": 1 } }, { "key": "27115", "source": "472", "target": "458", "attributes": { "weight": 3 } }, { "key": "33555", "source": "472", "target": "3", "attributes": { "weight": 1 } }, { "key": "12280", "source": "472", "target": "1219", "attributes": { "weight": 1 } }, { "key": "29703", "source": "472", "target": "421", "attributes": { "weight": 1 } }, { "key": "32216", "source": "472", "target": "1383", "attributes": { "weight": 1 } }, { "key": "33560", "source": "472", "target": "672", "attributes": { "weight": 1 } }, { "key": "32786", "source": "472", "target": "482", "attributes": { "weight": 3 } }, { "key": "17266", "source": "472", "target": "2111", "attributes": { "weight": 1 } }, { "key": "32219", "source": "472", "target": "2670", "attributes": { "weight": 5 } }, { "key": "26881", "source": "472", "target": "894", "attributes": { "weight": 1 } }, { "key": "32781", "source": "472", "target": "461", "attributes": { "weight": 2 } }, { "key": "20464", "source": "472", "target": "2244", "attributes": { "weight": 1 } }, { "key": "27124", "source": "472", "target": "488", "attributes": { "weight": 1 } }, { "key": "12284", "source": "472", "target": "1362", "attributes": { "weight": 2 } }, { "key": "32972", "source": "472", "target": "1063", "attributes": { "weight": 1 } }, { "key": "20456", "source": "472", "target": "130", "attributes": { "weight": 3 } }, { "key": "5507", "source": "472", "target": "370", "attributes": { "weight": 6 } }, { "key": "32218", "source": "472", "target": "1368", "attributes": { "weight": 4 } }, { "key": "20480", "source": "472", "target": "2189", "attributes": { "weight": 1 } }, { "key": "12003", "source": "472", "target": "1118", "attributes": { "weight": 1 } }, { "key": "15323", "source": "472", "target": "1353", "attributes": { "weight": 7 } }, { "key": "20473", "source": "472", "target": "2094", "attributes": { "weight": 2 } }, { "key": "22879", "source": "472", "target": "1359", "attributes": { "weight": 1 } }, { "key": "12279", "source": "472", "target": "1535", "attributes": { "weight": 1 } }, { "key": "30465", "source": "472", "target": "1046", "attributes": { "weight": 2 } }, { "key": "12283", "source": "472", "target": "1811", "attributes": { "weight": 1 } }, { "key": "20479", "source": "472", "target": "1750", "attributes": { "weight": 1 } }, { "key": "27277", "source": "472", "target": "57", "attributes": { "weight": 1 } }, { "key": "32970", "source": "472", "target": "333", "attributes": { "weight": 1 } }, { "key": "10914", "source": "473", "target": "457", "attributes": { "weight": 1 } }, { "key": "35006", "source": "473", "target": "352", "attributes": { "weight": 1 } }, { "key": "1512", "source": "473", "target": "455", "attributes": { "weight": 1 } }, { "key": "10516", "source": "473", "target": "225", "attributes": { "weight": 2 } }, { "key": "9315", "source": "473", "target": "430", "attributes": { "weight": 1 } }, { "key": "11393", "source": "473", "target": "1742", "attributes": { "weight": 1 } }, { "key": "26711", "source": "473", "target": "1047", "attributes": { "weight": 2 } }, { "key": "33582", "source": "473", "target": "460", "attributes": { "weight": 1 } }, { "key": "24356", "source": "473", "target": "2670", "attributes": { "weight": 2 } }, { "key": "11223", "source": "473", "target": "1092", "attributes": { "weight": 2 } }, { "key": "12291", "source": "473", "target": "435", "attributes": { "weight": 1 } }, { "key": "24167", "source": "473", "target": "437", "attributes": { "weight": 2 } }, { "key": "11215", "source": "473", "target": "359", "attributes": { "weight": 2 } }, { "key": "24354", "source": "473", "target": "1358", "attributes": { "weight": 1 } }, { "key": "11219", "source": "473", "target": "580", "attributes": { "weight": 1 } }, { "key": "24357", "source": "473", "target": "56", "attributes": { "weight": 1 } }, { "key": "17951", "source": "473", "target": "454", "attributes": { "weight": 2 } }, { "key": "13295", "source": "473", "target": "304", "attributes": { "weight": 1 } }, { "key": "11214", "source": "473", "target": "5", "attributes": { "weight": 2 } }, { "key": "11221", "source": "473", "target": "695", "attributes": { "weight": 2 } }, { "key": "24358", "source": "473", "target": "340", "attributes": { "weight": 3 } }, { "key": "33575", "source": "473", "target": "49", "attributes": { "weight": 1 } }, { "key": "33583", "source": "473", "target": "53", "attributes": { "weight": 1 } }, { "key": "32277", "source": "473", "target": "164", "attributes": { "weight": 1 } }, { "key": "11209", "source": "473", "target": "1036", "attributes": { "weight": 2 } }, { "key": "33576", "source": "473", "target": "50", "attributes": { "weight": 1 } }, { "key": "35005", "source": "473", "target": "3", "attributes": { "weight": 1 } }, { "key": "33573", "source": "473", "target": "1756", "attributes": { "weight": 1 } }, { "key": "11224", "source": "473", "target": "595", "attributes": { "weight": 2 } }, { "key": "24355", "source": "473", "target": "1553", "attributes": { "weight": 1 } }, { "key": "13296", "source": "473", "target": "305", "attributes": { "weight": 1 } }, { "key": "36044", "source": "473", "target": "1026", "attributes": { "weight": 1 } }, { "key": "5725", "source": "473", "target": "468", "attributes": { "weight": 2 } }, { "key": "17271", "source": "473", "target": "449", "attributes": { "weight": 1 } }, { "key": "4177", "source": "473", "target": "228", "attributes": { "weight": 3 } }, { "key": "33588", "source": "473", "target": "231", "attributes": { "weight": 1 } }, { "key": "1511", "source": "473", "target": "183", "attributes": { "weight": 3 } }, { "key": "33585", "source": "473", "target": "2258", "attributes": { "weight": 1 } }, { "key": "23453", "source": "473", "target": "223", "attributes": { "weight": 4 } }, { "key": "33584", "source": "473", "target": "135", "attributes": { "weight": 1 } }, { "key": "26712", "source": "473", "target": "189", "attributes": { "weight": 1 } }, { "key": "33572", "source": "473", "target": "429", "attributes": { "weight": 1 } }, { "key": "33586", "source": "473", "target": "190", "attributes": { "weight": 1 } }, { "key": "12796", "source": "473", "target": "392", "attributes": { "weight": 1 } }, { "key": "16889", "source": "473", "target": "70", "attributes": { "weight": 2 } }, { "key": "25482", "source": "473", "target": "2259", "attributes": { "weight": 1 } }, { "key": "33580", "source": "473", "target": "458", "attributes": { "weight": 1 } }, { "key": "26919", "source": "473", "target": "497", "attributes": { "weight": 1 } }, { "key": "6935", "source": "473", "target": "495", "attributes": { "weight": 5 } }, { "key": "11212", "source": "473", "target": "339", "attributes": { "weight": 2 } }, { "key": "23780", "source": "473", "target": "2456", "attributes": { "weight": 1 } }, { "key": "33579", "source": "473", "target": "450", "attributes": { "weight": 1 } }, { "key": "12795", "source": "473", "target": "387", "attributes": { "weight": 1 } }, { "key": "11225", "source": "473", "target": "493", "attributes": { "weight": 2 } }, { "key": "28943", "source": "473", "target": "479", "attributes": { "weight": 3 } }, { "key": "29720", "source": "473", "target": "442", "attributes": { "weight": 2 } }, { "key": "23907", "source": "473", "target": "1455", "attributes": { "weight": 1 } }, { "key": "33581", "source": "473", "target": "459", "attributes": { "weight": 1 } }, { "key": "5726", "source": "473", "target": "371", "attributes": { "weight": 5 } }, { "key": "33578", "source": "473", "target": "441", "attributes": { "weight": 1 } }, { "key": "31470", "source": "473", "target": "178", "attributes": { "weight": 1 } }, { "key": "33577", "source": "473", "target": "439", "attributes": { "weight": 1 } }, { "key": "11217", "source": "473", "target": "470", "attributes": { "weight": 4 } }, { "key": "36980", "source": "473", "target": "362", "attributes": { "weight": 1 } }, { "key": "24353", "source": "473", "target": "39", "attributes": { "weight": 1 } }, { "key": "11639", "source": "473", "target": "358", "attributes": { "weight": 2 } }, { "key": "12528", "source": "473", "target": "51", "attributes": { "weight": 1 } }, { "key": "24166", "source": "473", "target": "130", "attributes": { "weight": 4 } }, { "key": "9973", "source": "473", "target": "1093", "attributes": { "weight": 5 } }, { "key": "32573", "source": "473", "target": "232", "attributes": { "weight": 1 } }, { "key": "33590", "source": "473", "target": "491", "attributes": { "weight": 1 } }, { "key": "32572", "source": "473", "target": "791", "attributes": { "weight": 1 } }, { "key": "33587", "source": "473", "target": "191", "attributes": { "weight": 1 } }, { "key": "5724", "source": "473", "target": "370", "attributes": { "weight": 10 } }, { "key": "27279", "source": "473", "target": "57", "attributes": { "weight": 1 } }, { "key": "12292", "source": "473", "target": "472", "attributes": { "weight": 1 } }, { "key": "31337", "source": "473", "target": "674", "attributes": { "weight": 2 } }, { "key": "9972", "source": "473", "target": "445", "attributes": { "weight": 3 } }, { "key": "3632", "source": "473", "target": "1025", "attributes": { "weight": 2 } }, { "key": "11218", "source": "473", "target": "1258", "attributes": { "weight": 3 } }, { "key": "33589", "source": "473", "target": "477", "attributes": { "weight": 1 } }, { "key": "11210", "source": "473", "target": "433", "attributes": { "weight": 3 } }, { "key": "24168", "source": "473", "target": "471", "attributes": { "weight": 3 } }, { "key": "1514", "source": "473", "target": "490", "attributes": { "weight": 1 } }, { "key": "8929", "source": "473", "target": "1087", "attributes": { "weight": 4 } }, { "key": "14269", "source": "473", "target": "168", "attributes": { "weight": 1 } }, { "key": "4178", "source": "473", "target": "1088", "attributes": { "weight": 3 } }, { "key": "12797", "source": "473", "target": "781", "attributes": { "weight": 1 } }, { "key": "11222", "source": "473", "target": "1060", "attributes": { "weight": 2 } }, { "key": "11213", "source": "473", "target": "452", "attributes": { "weight": 6 } }, { "key": "11216", "source": "473", "target": "8", "attributes": { "weight": 3 } }, { "key": "24538", "source": "473", "target": "790", "attributes": { "weight": 1 } }, { "key": "32175", "source": "473", "target": "233", "attributes": { "weight": 1 } }, { "key": "29721", "source": "473", "target": "421", "attributes": { "weight": 1 } }, { "key": "6934", "source": "473", "target": "193", "attributes": { "weight": 2 } }, { "key": "1510", "source": "473", "target": "224", "attributes": { "weight": 1 } }, { "key": "36043", "source": "473", "target": "440", "attributes": { "weight": 1 } }, { "key": "1513", "source": "473", "target": "188", "attributes": { "weight": 2 } }, { "key": "29899", "source": "473", "target": "1024", "attributes": { "weight": 1 } }, { "key": "30472", "source": "473", "target": "1046", "attributes": { "weight": 1 } }, { "key": "11211", "source": "473", "target": "1520", "attributes": { "weight": 2 } }, { "key": "33591", "source": "473", "target": "672", "attributes": { "weight": 1 } }, { "key": "4018", "source": "473", "target": "432", "attributes": { "weight": 3 } }, { "key": "11220", "source": "473", "target": "1744", "attributes": { "weight": 2 } }, { "key": "24894", "source": "473", "target": "109", "attributes": { "weight": 1 } }, { "key": "10517", "source": "473", "target": "482", "attributes": { "weight": 2 } }, { "key": "33574", "source": "473", "target": "220", "attributes": { "weight": 1 } }, { "key": "33607", "source": "474", "target": "1282", "attributes": { "weight": 1 } }, { "key": "37465", "source": "474", "target": "435", "attributes": { "weight": 1 } }, { "key": "11394", "source": "474", "target": "1742", "attributes": { "weight": 1 } }, { "key": "4179", "source": "474", "target": "1109", "attributes": { "weight": 1 } }, { "key": "8943", "source": "474", "target": "436", "attributes": { "weight": 3 } }, { "key": "28944", "source": "474", "target": "479", "attributes": { "weight": 2 } }, { "key": "16892", "source": "474", "target": "674", "attributes": { "weight": 2 } }, { "key": "8947", "source": "474", "target": "1117", "attributes": { "weight": 3 } }, { "key": "10518", "source": "474", "target": "225", "attributes": { "weight": 1 } }, { "key": "33600", "source": "474", "target": "2645", "attributes": { "weight": 1 } }, { "key": "16895", "source": "474", "target": "1389", "attributes": { "weight": 1 } }, { "key": "17274", "source": "474", "target": "2108", "attributes": { "weight": 1 } }, { "key": "27280", "source": "474", "target": "52", "attributes": { "weight": 2 } }, { "key": "17273", "source": "474", "target": "449", "attributes": { "weight": 2 } }, { "key": "24170", "source": "474", "target": "130", "attributes": { "weight": 3 } }, { "key": "12015", "source": "474", "target": "135", "attributes": { "weight": 4 } }, { "key": "27131", "source": "474", "target": "1247", "attributes": { "weight": 1 } }, { "key": "8944", "source": "474", "target": "442", "attributes": { "weight": 2 } }, { "key": "27132", "source": "474", "target": "472", "attributes": { "weight": 1 } }, { "key": "31675", "source": "474", "target": "3", "attributes": { "weight": 1 } }, { "key": "31677", "source": "474", "target": "595", "attributes": { "weight": 1 } }, { "key": "8941", "source": "474", "target": "1107", "attributes": { "weight": 3 } }, { "key": "1519", "source": "474", "target": "224", "attributes": { "weight": 1 } }, { "key": "16894", "source": "474", "target": "70", "attributes": { "weight": 2 } }, { "key": "4185", "source": "474", "target": "1130", "attributes": { "weight": 1 } }, { "key": "23646", "source": "474", "target": "1312", "attributes": { "weight": 1 } }, { "key": "4181", "source": "474", "target": "50", "attributes": { "weight": 2 } }, { "key": "33610", "source": "474", "target": "672", "attributes": { "weight": 1 } }, { "key": "33601", "source": "474", "target": "51", "attributes": { "weight": 1 } }, { "key": "29900", "source": "474", "target": "1024", "attributes": { "weight": 1 } }, { "key": "8948", "source": "474", "target": "370", "attributes": { "weight": 2 } }, { "key": "30732", "source": "474", "target": "1026", "attributes": { "weight": 1 } }, { "key": "33602", "source": "474", "target": "425", "attributes": { "weight": 1 } }, { "key": "26367", "source": "474", "target": "1258", "attributes": { "weight": 1 } }, { "key": "16893", "source": "474", "target": "1118", "attributes": { "weight": 1 } }, { "key": "8955", "source": "474", "target": "494", "attributes": { "weight": 3 } }, { "key": "33604", "source": "474", "target": "1836", "attributes": { "weight": 1 } }, { "key": "8949", "source": "474", "target": "1121", "attributes": { "weight": 2 } }, { "key": "26714", "source": "474", "target": "454", "attributes": { "weight": 1 } }, { "key": "6946", "source": "474", "target": "183", "attributes": { "weight": 2 } }, { "key": "29175", "source": "474", "target": "1750", "attributes": { "weight": 1 } }, { "key": "9318", "source": "474", "target": "1579", "attributes": { "weight": 1 } }, { "key": "1520", "source": "474", "target": "188", "attributes": { "weight": 2 } }, { "key": "31427", "source": "474", "target": "223", "attributes": { "weight": 2 } }, { "key": "33606", "source": "474", "target": "190", "attributes": { "weight": 1 } }, { "key": "4182", "source": "474", "target": "1112", "attributes": { "weight": 1 } }, { "key": "33608", "source": "474", "target": "191", "attributes": { "weight": 1 } }, { "key": "10519", "source": "474", "target": "482", "attributes": { "weight": 2 } }, { "key": "32579", "source": "474", "target": "791", "attributes": { "weight": 1 } }, { "key": "33066", "source": "474", "target": "1845", "attributes": { "weight": 1 } }, { "key": "17501", "source": "474", "target": "358", "attributes": { "weight": 1 } }, { "key": "8951", "source": "474", "target": "1088", "attributes": { "weight": 2 } }, { "key": "33065", "source": "474", "target": "1355", "attributes": { "weight": 1 } }, { "key": "33603", "source": "474", "target": "450", "attributes": { "weight": 1 } }, { "key": "8945", "source": "474", "target": "444", "attributes": { "weight": 3 } }, { "key": "4180", "source": "474", "target": "1110", "attributes": { "weight": 1 } }, { "key": "10915", "source": "474", "target": "457", "attributes": { "weight": 2 } }, { "key": "26715", "source": "474", "target": "189", "attributes": { "weight": 1 } }, { "key": "1521", "source": "474", "target": "193", "attributes": { "weight": 1 } }, { "key": "32921", "source": "474", "target": "470", "attributes": { "weight": 3 } }, { "key": "32176", "source": "474", "target": "1546", "attributes": { "weight": 1 } }, { "key": "8954", "source": "474", "target": "1131", "attributes": { "weight": 1 } }, { "key": "32977", "source": "474", "target": "154", "attributes": { "weight": 1 } }, { "key": "8953", "source": "474", "target": "1564", "attributes": { "weight": 2 } }, { "key": "2309", "source": "474", "target": "340", "attributes": { "weight": 2 } }, { "key": "4183", "source": "474", "target": "1113", "attributes": { "weight": 1 } }, { "key": "8952", "source": "474", "target": "1125", "attributes": { "weight": 2 } }, { "key": "5739", "source": "474", "target": "468", "attributes": { "weight": 2 } }, { "key": "4186", "source": "474", "target": "233", "attributes": { "weight": 2 } }, { "key": "31676", "source": "474", "target": "8", "attributes": { "weight": 1 } }, { "key": "16896", "source": "474", "target": "73", "attributes": { "weight": 1 } }, { "key": "33609", "source": "474", "target": "489", "attributes": { "weight": 1 } }, { "key": "33605", "source": "474", "target": "2258", "attributes": { "weight": 1 } }, { "key": "8950", "source": "474", "target": "228", "attributes": { "weight": 2 } }, { "key": "9317", "source": "474", "target": "430", "attributes": { "weight": 1 } }, { "key": "26920", "source": "474", "target": "497", "attributes": { "weight": 1 } }, { "key": "8946", "source": "474", "target": "452", "attributes": { "weight": 3 } }, { "key": "16891", "source": "474", "target": "434", "attributes": { "weight": 1 } }, { "key": "4184", "source": "474", "target": "1115", "attributes": { "weight": 1 } }, { "key": "33067", "source": "474", "target": "493", "attributes": { "weight": 1 } }, { "key": "27281", "source": "474", "target": "57", "attributes": { "weight": 1 } }, { "key": "24171", "source": "474", "target": "471", "attributes": { "weight": 1 } }, { "key": "16890", "source": "474", "target": "59", "attributes": { "weight": 2 } }, { "key": "8942", "source": "474", "target": "220", "attributes": { "weight": 3 } }, { "key": "12014", "source": "474", "target": "1363", "attributes": { "weight": 1 } }, { "key": "12682", "source": "474", "target": "695", "attributes": { "weight": 1 } }, { "key": "23645", "source": "474", "target": "2248", "attributes": { "weight": 1 } }, { "key": "6947", "source": "474", "target": "495", "attributes": { "weight": 3 } }, { "key": "20564", "source": "474", "target": "2111", "attributes": { "weight": 1 } }, { "key": "12297", "source": "475", "target": "472", "attributes": { "weight": 1 } }, { "key": "24443", "source": "475", "target": "1535", "attributes": { "weight": 1 } }, { "key": "24444", "source": "475", "target": "2502", "attributes": { "weight": 1 } }, { "key": "12016", "source": "475", "target": "135", "attributes": { "weight": 2 } }, { "key": "1522", "source": "475", "target": "183", "attributes": { "weight": 1 } }, { "key": "1524", "source": "476", "target": "188", "attributes": { "weight": 2 } }, { "key": "6960", "source": "476", "target": "232", "attributes": { "weight": 2 } }, { "key": "6949", "source": "476", "target": "1355", "attributes": { "weight": 1 } }, { "key": "6951", "source": "476", "target": "458", "attributes": { "weight": 2 } }, { "key": "6963", "source": "476", "target": "56", "attributes": { "weight": 2 } }, { "key": "6952", "source": "476", "target": "426", "attributes": { "weight": 1 } }, { "key": "6956", "source": "476", "target": "1368", "attributes": { "weight": 1 } }, { "key": "6964", "source": "476", "target": "495", "attributes": { "weight": 1 } }, { "key": "24178", "source": "476", "target": "130", "attributes": { "weight": 2 } }, { "key": "6957", "source": "476", "target": "191", "attributes": { "weight": 2 } }, { "key": "6948", "source": "476", "target": "424", "attributes": { "weight": 3 } }, { "key": "6955", "source": "476", "target": "54", "attributes": { "weight": 1 } }, { "key": "20624", "source": "476", "target": "489", "attributes": { "weight": 1 } }, { "key": "20622", "source": "476", "target": "429", "attributes": { "weight": 1 } }, { "key": "6959", "source": "476", "target": "483", "attributes": { "weight": 2 } }, { "key": "26722", "source": "476", "target": "57", "attributes": { "weight": 2 } }, { "key": "8974", "source": "476", "target": "442", "attributes": { "weight": 2 } }, { "key": "6958", "source": "476", "target": "231", "attributes": { "weight": 2 } }, { "key": "6953", "source": "476", "target": "459", "attributes": { "weight": 1 } }, { "key": "6962", "source": "476", "target": "488", "attributes": { "weight": 1 } }, { "key": "4020", "source": "476", "target": "487", "attributes": { "weight": 2 } }, { "key": "1525", "source": "476", "target": "193", "attributes": { "weight": 3 } }, { "key": "37018", "source": "476", "target": "3341", "attributes": { "weight": 1 } }, { "key": "6950", "source": "476", "target": "1358", "attributes": { "weight": 1 } }, { "key": "26720", "source": "476", "target": "454", "attributes": { "weight": 1 } }, { "key": "6954", "source": "476", "target": "462", "attributes": { "weight": 1 } }, { "key": "6961", "source": "476", "target": "1067", "attributes": { "weight": 1 } }, { "key": "26721", "source": "476", "target": "189", "attributes": { "weight": 1 } }, { "key": "25892", "source": "476", "target": "220", "attributes": { "weight": 1 } }, { "key": "1523", "source": "476", "target": "183", "attributes": { "weight": 2 } }, { "key": "20623", "source": "476", "target": "1354", "attributes": { "weight": 1 } }, { "key": "32583", "source": "476", "target": "791", "attributes": { "weight": 1 } }, { "key": "9981", "source": "477", "target": "193", "attributes": { "weight": 2 } }, { "key": "18116", "source": "477", "target": "2188", "attributes": { "weight": 1 } }, { "key": "9977", "source": "477", "target": "135", "attributes": { "weight": 3 } }, { "key": "33633", "source": "477", "target": "473", "attributes": { "weight": 1 } }, { "key": "24212", "source": "477", "target": "1116", "attributes": { "weight": 3 } }, { "key": "35333", "source": "477", "target": "1536", "attributes": { "weight": 1 } }, { "key": "20792", "source": "477", "target": "1374", "attributes": { "weight": 1 } }, { "key": "24211", "source": "477", "target": "130", "attributes": { "weight": 2 } }, { "key": "11253", "source": "477", "target": "452", "attributes": { "weight": 4 } }, { "key": "9975", "source": "477", "target": "220", "attributes": { "weight": 2 } }, { "key": "20791", "source": "477", "target": "489", "attributes": { "weight": 1 } }, { "key": "9976", "source": "477", "target": "442", "attributes": { "weight": 4 } }, { "key": "20793", "source": "477", "target": "235", "attributes": { "weight": 1 } }, { "key": "26734", "source": "477", "target": "189", "attributes": { "weight": 1 } }, { "key": "16982", "source": "477", "target": "59", "attributes": { "weight": 1 } }, { "key": "20786", "source": "477", "target": "222", "attributes": { "weight": 1 } }, { "key": "35334", "source": "477", "target": "1088", "attributes": { "weight": 1 } }, { "key": "12798", "source": "477", "target": "439", "attributes": { "weight": 2 } }, { "key": "1538", "source": "477", "target": "224", "attributes": { "weight": 1 } }, { "key": "31429", "source": "477", "target": "223", "attributes": { "weight": 1 } }, { "key": "29047", "source": "477", "target": "495", "attributes": { "weight": 1 } }, { "key": "20785", "source": "477", "target": "221", "attributes": { "weight": 1 } }, { "key": "32831", "source": "477", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9982", "source": "477", "target": "494", "attributes": { "weight": 3 } }, { "key": "20790", "source": "477", "target": "480", "attributes": { "weight": 1 } }, { "key": "9980", "source": "477", "target": "492", "attributes": { "weight": 3 } }, { "key": "9978", "source": "477", "target": "469", "attributes": { "weight": 2 } }, { "key": "20789", "source": "477", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20788", "source": "477", "target": "1087", "attributes": { "weight": 1 } }, { "key": "33072", "source": "477", "target": "493", "attributes": { "weight": 1 } }, { "key": "23651", "source": "477", "target": "445", "attributes": { "weight": 1 } }, { "key": "35332", "source": "477", "target": "50", "attributes": { "weight": 1 } }, { "key": "9979", "source": "477", "target": "595", "attributes": { "weight": 2 } }, { "key": "11254", "source": "477", "target": "190", "attributes": { "weight": 2 } }, { "key": "26733", "source": "477", "target": "454", "attributes": { "weight": 1 } }, { "key": "20787", "source": "477", "target": "471", "attributes": { "weight": 1 } }, { "key": "35335", "source": "477", "target": "1131", "attributes": { "weight": 1 } }, { "key": "9983", "source": "477", "target": "496", "attributes": { "weight": 3 } }, { "key": "18115", "source": "477", "target": "2186", "attributes": { "weight": 1 } }, { "key": "36083", "source": "478", "target": "2262", "attributes": { "weight": 1 } }, { "key": "20800", "source": "478", "target": "2095", "attributes": { "weight": 1 } }, { "key": "36080", "source": "478", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20794", "source": "478", "target": "51", "attributes": { "weight": 1 } }, { "key": "1539", "source": "478", "target": "183", "attributes": { "weight": 1 } }, { "key": "36081", "source": "478", "target": "1831", "attributes": { "weight": 1 } }, { "key": "31355", "source": "478", "target": "674", "attributes": { "weight": 1 } }, { "key": "36082", "source": "478", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20799", "source": "478", "target": "1836", "attributes": { "weight": 1 } }, { "key": "36084", "source": "478", "target": "73", "attributes": { "weight": 1 } }, { "key": "20797", "source": "478", "target": "450", "attributes": { "weight": 1 } }, { "key": "26924", "source": "478", "target": "497", "attributes": { "weight": 1 } }, { "key": "26735", "source": "478", "target": "454", "attributes": { "weight": 2 } }, { "key": "26736", "source": "478", "target": "189", "attributes": { "weight": 2 } }, { "key": "20798", "source": "478", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20795", "source": "478", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20796", "source": "478", "target": "449", "attributes": { "weight": 1 } }, { "key": "20801", "source": "478", "target": "489", "attributes": { "weight": 1 } }, { "key": "36079", "source": "478", "target": "130", "attributes": { "weight": 1 } }, { "key": "28966", "source": "479", "target": "1026", "attributes": { "weight": 3 } }, { "key": "24213", "source": "479", "target": "130", "attributes": { "weight": 5 } }, { "key": "28956", "source": "479", "target": "693", "attributes": { "weight": 2 } }, { "key": "9022", "source": "479", "target": "442", "attributes": { "weight": 5 } }, { "key": "17507", "source": "479", "target": "358", "attributes": { "weight": 2 } }, { "key": "17968", "source": "479", "target": "454", "attributes": { "weight": 4 } }, { "key": "26737", "source": "479", "target": "189", "attributes": { "weight": 1 } }, { "key": "9023", "source": "479", "target": "1087", "attributes": { "weight": 1 } }, { "key": "1542", "source": "479", "target": "188", "attributes": { "weight": 3 } }, { "key": "36087", "source": "479", "target": "2258", "attributes": { "weight": 1 } }, { "key": "16984", "source": "479", "target": "434", "attributes": { "weight": 1 } }, { "key": "4025", "source": "479", "target": "432", "attributes": { "weight": 1 } }, { "key": "17302", "source": "479", "target": "449", "attributes": { "weight": 2 } }, { "key": "30615", "source": "479", "target": "682", "attributes": { "weight": 1 } }, { "key": "16983", "source": "479", "target": "59", "attributes": { "weight": 5 } }, { "key": "28953", "source": "479", "target": "440", "attributes": { "weight": 2 } }, { "key": "26925", "source": "479", "target": "497", "attributes": { "weight": 3 } }, { "key": "16985", "source": "479", "target": "674", "attributes": { "weight": 4 } }, { "key": "24214", "source": "479", "target": "471", "attributes": { "weight": 4 } }, { "key": "1540", "source": "479", "target": "224", "attributes": { "weight": 1 } }, { "key": "27167", "source": "479", "target": "1282", "attributes": { "weight": 1 } }, { "key": "9985", "source": "479", "target": "494", "attributes": { "weight": 2 } }, { "key": "28960", "source": "479", "target": "2042", "attributes": { "weight": 2 } }, { "key": "28955", "source": "479", "target": "1760", "attributes": { "weight": 2 } }, { "key": "4214", "source": "479", "target": "228", "attributes": { "weight": 2 } }, { "key": "1541", "source": "479", "target": "183", "attributes": { "weight": 3 } }, { "key": "28977", "source": "479", "target": "1375", "attributes": { "weight": 2 } }, { "key": "11395", "source": "479", "target": "1742", "attributes": { "weight": 2 } }, { "key": "30503", "source": "479", "target": "56", "attributes": { "weight": 1 } }, { "key": "28950", "source": "479", "target": "787", "attributes": { "weight": 1 } }, { "key": "18328", "source": "479", "target": "1092", "attributes": { "weight": 2 } }, { "key": "28965", "source": "479", "target": "2264", "attributes": { "weight": 2 } }, { "key": "27291", "source": "479", "target": "52", "attributes": { "weight": 1 } }, { "key": "28970", "source": "479", "target": "823", "attributes": { "weight": 1 } }, { "key": "32588", "source": "479", "target": "791", "attributes": { "weight": 1 } }, { "key": "10925", "source": "479", "target": "457", "attributes": { "weight": 3 } }, { "key": "28962", "source": "479", "target": "8", "attributes": { "weight": 2 } }, { "key": "30500", "source": "479", "target": "1357", "attributes": { "weight": 1 } }, { "key": "28964", "source": "479", "target": "474", "attributes": { "weight": 2 } }, { "key": "25754", "source": "479", "target": "278", "attributes": { "weight": 2 } }, { "key": "27163", "source": "479", "target": "450", "attributes": { "weight": 2 } }, { "key": "25895", "source": "479", "target": "220", "attributes": { "weight": 4 } }, { "key": "28963", "source": "479", "target": "473", "attributes": { "weight": 3 } }, { "key": "30499", "source": "479", "target": "424", "attributes": { "weight": 1 } }, { "key": "27166", "source": "479", "target": "472", "attributes": { "weight": 2 } }, { "key": "28969", "source": "479", "target": "483", "attributes": { "weight": 2 } }, { "key": "28971", "source": "479", "target": "595", "attributes": { "weight": 2 } }, { "key": "35337", "source": "479", "target": "1088", "attributes": { "weight": 1 } }, { "key": "28959", "source": "479", "target": "1024", "attributes": { "weight": 3 } }, { "key": "23652", "source": "479", "target": "1312", "attributes": { "weight": 1 } }, { "key": "29048", "source": "479", "target": "495", "attributes": { "weight": 1 } }, { "key": "27290", "source": "479", "target": "425", "attributes": { "weight": 1 } }, { "key": "36088", "source": "479", "target": "190", "attributes": { "weight": 1 } }, { "key": "20802", "source": "479", "target": "489", "attributes": { "weight": 2 } }, { "key": "33634", "source": "479", "target": "51", "attributes": { "weight": 1 } }, { "key": "28951", "source": "479", "target": "223", "attributes": { "weight": 4 } }, { "key": "27164", "source": "479", "target": "1832", "attributes": { "weight": 1 } }, { "key": "12685", "source": "479", "target": "695", "attributes": { "weight": 2 } }, { "key": "36089", "source": "479", "target": "235", "attributes": { "weight": 1 } }, { "key": "25109", "source": "479", "target": "1547", "attributes": { "weight": 1 } }, { "key": "27191", "source": "479", "target": "1390", "attributes": { "weight": 1 } }, { "key": "24696", "source": "479", "target": "5", "attributes": { "weight": 2 } }, { "key": "28949", "source": "479", "target": "429", "attributes": { "weight": 1 } }, { "key": "16986", "source": "479", "target": "70", "attributes": { "weight": 2 } }, { "key": "30501", "source": "479", "target": "54", "attributes": { "weight": 1 } }, { "key": "36085", "source": "479", "target": "221", "attributes": { "weight": 1 } }, { "key": "27292", "source": "479", "target": "57", "attributes": { "weight": 3 } }, { "key": "30938", "source": "479", "target": "13", "attributes": { "weight": 1 } }, { "key": "28973", "source": "479", "target": "1131", "attributes": { "weight": 2 } }, { "key": "2384", "source": "479", "target": "694", "attributes": { "weight": 1 } }, { "key": "28957", "source": "479", "target": "2646", "attributes": { "weight": 2 } }, { "key": "11255", "source": "479", "target": "452", "attributes": { "weight": 7 } }, { "key": "11256", "source": "479", "target": "469", "attributes": { "weight": 1 } }, { "key": "27370", "source": "479", "target": "340", "attributes": { "weight": 4 } }, { "key": "32929", "source": "479", "target": "470", "attributes": { "weight": 1 } }, { "key": "25951", "source": "479", "target": "1367", "attributes": { "weight": 2 } }, { "key": "28974", "source": "479", "target": "1774", "attributes": { "weight": 1 } }, { "key": "32832", "source": "479", "target": "1125", "attributes": { "weight": 1 } }, { "key": "6184", "source": "479", "target": "468", "attributes": { "weight": 2 } }, { "key": "30502", "source": "479", "target": "488", "attributes": { "weight": 1 } }, { "key": "25386", "source": "479", "target": "433", "attributes": { "weight": 1 } }, { "key": "33635", "source": "479", "target": "135", "attributes": { "weight": 1 } }, { "key": "28972", "source": "479", "target": "14", "attributes": { "weight": 2 } }, { "key": "9984", "source": "479", "target": "480", "attributes": { "weight": 2 } }, { "key": "28961", "source": "479", "target": "817", "attributes": { "weight": 1 } }, { "key": "28958", "source": "479", "target": "458", "attributes": { "weight": 2 } }, { "key": "36086", "source": "479", "target": "439", "attributes": { "weight": 1 } }, { "key": "28967", "source": "479", "target": "2828", "attributes": { "weight": 1 } }, { "key": "27165", "source": "479", "target": "1247", "attributes": { "weight": 1 } }, { "key": "28968", "source": "479", "target": "231", "attributes": { "weight": 2 } }, { "key": "28952", "source": "479", "target": "2025", "attributes": { "weight": 2 } }, { "key": "28976", "source": "479", "target": "351", "attributes": { "weight": 1 } }, { "key": "28975", "source": "479", "target": "193", "attributes": { "weight": 2 } }, { "key": "28954", "source": "479", "target": "2", "attributes": { "weight": 2 } }, { "key": "20825", "source": "480", "target": "464", "attributes": { "weight": 1 } }, { "key": "20815", "source": "480", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20840", "source": "480", "target": "1374", "attributes": { "weight": 1 } }, { "key": "20824", "source": "480", "target": "459", "attributes": { "weight": 1 } }, { "key": "20837", "source": "480", "target": "487", "attributes": { "weight": 1 } }, { "key": "20820", "source": "480", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20818", "source": "480", "target": "1358", "attributes": { "weight": 1 } }, { "key": "9986", "source": "480", "target": "445", "attributes": { "weight": 2 } }, { "key": "20845", "source": "480", "target": "2276", "attributes": { "weight": 1 } }, { "key": "16989", "source": "480", "target": "70", "attributes": { "weight": 1 } }, { "key": "20842", "source": "480", "target": "2189", "attributes": { "weight": 1 } }, { "key": "1548", "source": "480", "target": "224", "attributes": { "weight": 1 } }, { "key": "20823", "source": "480", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20808", "source": "480", "target": "440", "attributes": { "weight": 1 } }, { "key": "9988", "source": "480", "target": "595", "attributes": { "weight": 2 } }, { "key": "11257", "source": "480", "target": "452", "attributes": { "weight": 1 } }, { "key": "20826", "source": "480", "target": "1247", "attributes": { "weight": 2 } }, { "key": "20811", "source": "480", "target": "1759", "attributes": { "weight": 1 } }, { "key": "33638", "source": "480", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20827", "source": "480", "target": "2255", "attributes": { "weight": 1 } }, { "key": "27168", "source": "480", "target": "472", "attributes": { "weight": 1 } }, { "key": "26738", "source": "480", "target": "189", "attributes": { "weight": 1 } }, { "key": "20816", "source": "480", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20841", "source": "480", "target": "56", "attributes": { "weight": 1 } }, { "key": "20844", "source": "480", "target": "1375", "attributes": { "weight": 1 } }, { "key": "20810", "source": "480", "target": "441", "attributes": { "weight": 1 } }, { "key": "33637", "source": "480", "target": "51", "attributes": { "weight": 1 } }, { "key": "20813", "source": "480", "target": "449", "attributes": { "weight": 1 } }, { "key": "12031", "source": "480", "target": "135", "attributes": { "weight": 2 } }, { "key": "20839", "source": "480", "target": "491", "attributes": { "weight": 1 } }, { "key": "9987", "source": "480", "target": "479", "attributes": { "weight": 2 } }, { "key": "20803", "source": "480", "target": "1756", "attributes": { "weight": 1 } }, { "key": "16987", "source": "480", "target": "59", "attributes": { "weight": 1 } }, { "key": "20804", "source": "480", "target": "49", "attributes": { "weight": 1 } }, { "key": "9990", "source": "480", "target": "193", "attributes": { "weight": 2 } }, { "key": "20821", "source": "480", "target": "1998", "attributes": { "weight": 1 } }, { "key": "20822", "source": "480", "target": "2088", "attributes": { "weight": 1 } }, { "key": "20843", "source": "480", "target": "73", "attributes": { "weight": 1 } }, { "key": "20817", "source": "480", "target": "227", "attributes": { "weight": 1 } }, { "key": "20807", "source": "480", "target": "439", "attributes": { "weight": 1 } }, { "key": "6185", "source": "480", "target": "468", "attributes": { "weight": 2 } }, { "key": "23653", "source": "480", "target": "220", "attributes": { "weight": 1 } }, { "key": "20809", "source": "480", "target": "1023", "attributes": { "weight": 1 } }, { "key": "27169", "source": "480", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20835", "source": "480", "target": "477", "attributes": { "weight": 1 } }, { "key": "20829", "source": "480", "target": "54", "attributes": { "weight": 1 } }, { "key": "20833", "source": "480", "target": "2261", "attributes": { "weight": 1 } }, { "key": "33639", "source": "480", "target": "672", "attributes": { "weight": 1 } }, { "key": "20828", "source": "480", "target": "470", "attributes": { "weight": 1 } }, { "key": "20831", "source": "480", "target": "471", "attributes": { "weight": 1 } }, { "key": "20806", "source": "480", "target": "2106", "attributes": { "weight": 1 } }, { "key": "32833", "source": "480", "target": "1125", "attributes": { "weight": 2 } }, { "key": "20834", "source": "480", "target": "2262", "attributes": { "weight": 1 } }, { "key": "20838", "source": "480", "target": "489", "attributes": { "weight": 1 } }, { "key": "20836", "source": "480", "target": "482", "attributes": { "weight": 1 } }, { "key": "20805", "source": "480", "target": "1522", "attributes": { "weight": 1 } }, { "key": "20819", "source": "480", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20812", "source": "480", "target": "2245", "attributes": { "weight": 1 } }, { "key": "9989", "source": "480", "target": "1093", "attributes": { "weight": 3 } }, { "key": "24215", "source": "480", "target": "130", "attributes": { "weight": 2 } }, { "key": "36090", "source": "480", "target": "1026", "attributes": { "weight": 1 } }, { "key": "20830", "source": "480", "target": "1836", "attributes": { "weight": 1 } }, { "key": "16988", "source": "480", "target": "674", "attributes": { "weight": 1 } }, { "key": "20814", "source": "480", "target": "450", "attributes": { "weight": 1 } }, { "key": "20832", "source": "480", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20856", "source": "481", "target": "2253", "attributes": { "weight": 1 } }, { "key": "1549", "source": "481", "target": "224", "attributes": { "weight": 1 } }, { "key": "20855", "source": "481", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20857", "source": "481", "target": "2095", "attributes": { "weight": 1 } }, { "key": "29136", "source": "481", "target": "454", "attributes": { "weight": 1 } }, { "key": "20858", "source": "481", "target": "489", "attributes": { "weight": 1 } }, { "key": "29138", "source": "481", "target": "500", "attributes": { "weight": 1 } }, { "key": "30939", "source": "481", "target": "3", "attributes": { "weight": 1 } }, { "key": "20854", "source": "481", "target": "1023", "attributes": { "weight": 1 } }, { "key": "29137", "source": "481", "target": "194", "attributes": { "weight": 1 } }, { "key": "17303", "source": "481", "target": "449", "attributes": { "weight": 1 } }, { "key": "31357", "source": "481", "target": "59", "attributes": { "weight": 1 } }, { "key": "27170", "source": "481", "target": "472", "attributes": { "weight": 2 } }, { "key": "16990", "source": "481", "target": "70", "attributes": { "weight": 1 } }, { "key": "33641", "source": "482", "target": "425", "attributes": { "weight": 1 } }, { "key": "20871", "source": "482", "target": "489", "attributes": { "weight": 2 } }, { "key": "20862", "source": "482", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20874", "source": "482", "target": "2277", "attributes": { "weight": 1 } }, { "key": "27297", "source": "482", "target": "57", "attributes": { "weight": 1 } }, { "key": "16991", "source": "482", "target": "674", "attributes": { "weight": 1 } }, { "key": "32839", "source": "482", "target": "472", "attributes": { "weight": 3 } }, { "key": "10559", "source": "482", "target": "474", "attributes": { "weight": 2 } }, { "key": "20872", "source": "482", "target": "1374", "attributes": { "weight": 1 } }, { "key": "23657", "source": "482", "target": "1312", "attributes": { "weight": 1 } }, { "key": "16992", "source": "482", "target": "70", "attributes": { "weight": 1 } }, { "key": "28678", "source": "482", "target": "54", "attributes": { "weight": 1 } }, { "key": "20867", "source": "482", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20859", "source": "482", "target": "221", "attributes": { "weight": 1 } }, { "key": "33640", "source": "482", "target": "51", "attributes": { "weight": 1 } }, { "key": "33643", "source": "482", "target": "672", "attributes": { "weight": 1 } }, { "key": "20870", "source": "482", "target": "480", "attributes": { "weight": 1 } }, { "key": "32931", "source": "482", "target": "470", "attributes": { "weight": 1 } }, { "key": "20865", "source": "482", "target": "2248", "attributes": { "weight": 1 } }, { "key": "10557", "source": "482", "target": "189", "attributes": { "weight": 1 } }, { "key": "9035", "source": "482", "target": "1087", "attributes": { "weight": 3 } }, { "key": "20866", "source": "482", "target": "2251", "attributes": { "weight": 1 } }, { "key": "10554", "source": "482", "target": "135", "attributes": { "weight": 5 } }, { "key": "20863", "source": "482", "target": "2246", "attributes": { "weight": 1 } }, { "key": "9036", "source": "482", "target": "233", "attributes": { "weight": 3 } }, { "key": "32838", "source": "482", "target": "1121", "attributes": { "weight": 1 } }, { "key": "24217", "source": "482", "target": "130", "attributes": { "weight": 2 } }, { "key": "20864", "source": "482", "target": "449", "attributes": { "weight": 1 } }, { "key": "32837", "source": "482", "target": "435", "attributes": { "weight": 1 } }, { "key": "20860", "source": "482", "target": "1023", "attributes": { "weight": 1 } }, { "key": "32840", "source": "482", "target": "1131", "attributes": { "weight": 1 } }, { "key": "26370", "source": "482", "target": "1258", "attributes": { "weight": 1 } }, { "key": "23656", "source": "482", "target": "220", "attributes": { "weight": 1 } }, { "key": "10561", "source": "482", "target": "1125", "attributes": { "weight": 2 } }, { "key": "27296", "source": "482", "target": "52", "attributes": { "weight": 2 } }, { "key": "10556", "source": "482", "target": "471", "attributes": { "weight": 3 } }, { "key": "1550", "source": "482", "target": "224", "attributes": { "weight": 1 } }, { "key": "10555", "source": "482", "target": "228", "attributes": { "weight": 3 } }, { "key": "10551", "source": "482", "target": "50", "attributes": { "weight": 2 } }, { "key": "10552", "source": "482", "target": "223", "attributes": { "weight": 3 } }, { "key": "20868", "source": "482", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20873", "source": "482", "target": "2273", "attributes": { "weight": 1 } }, { "key": "23655", "source": "482", "target": "1703", "attributes": { "weight": 1 } }, { "key": "10553", "source": "482", "target": "225", "attributes": { "weight": 1 } }, { "key": "10558", "source": "482", "target": "473", "attributes": { "weight": 2 } }, { "key": "33642", "source": "482", "target": "442", "attributes": { "weight": 1 } }, { "key": "20861", "source": "482", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20869", "source": "482", "target": "2261", "attributes": { "weight": 1 } }, { "key": "10560", "source": "482", "target": "1088", "attributes": { "weight": 2 } }, { "key": "4033", "source": "483", "target": "8", "attributes": { "weight": 3 } }, { "key": "20905", "source": "483", "target": "489", "attributes": { "weight": 2 } }, { "key": "23370", "source": "483", "target": "1545", "attributes": { "weight": 1 } }, { "key": "15359", "source": "483", "target": "467", "attributes": { "weight": 2 } }, { "key": "27173", "source": "483", "target": "1219", "attributes": { "weight": 1 } }, { "key": "4031", "source": "483", "target": "462", "attributes": { "weight": 2 } }, { "key": "20900", "source": "483", "target": "1832", "attributes": { "weight": 3 } }, { "key": "23659", "source": "483", "target": "2248", "attributes": { "weight": 1 } }, { "key": "7015", "source": "483", "target": "182", "attributes": { "weight": 1 } }, { "key": "20901", "source": "483", "target": "2254", "attributes": { "weight": 1 } }, { "key": "15361", "source": "483", "target": "672", "attributes": { "weight": 1 } }, { "key": "37020", "source": "483", "target": "425", "attributes": { "weight": 1 } }, { "key": "20903", "source": "483", "target": "2262", "attributes": { "weight": 1 } }, { "key": "15356", "source": "483", "target": "454", "attributes": { "weight": 2 } }, { "key": "27174", "source": "483", "target": "1247", "attributes": { "weight": 1 } }, { "key": "22858", "source": "483", "target": "1067", "attributes": { "weight": 1 } }, { "key": "28978", "source": "483", "target": "479", "attributes": { "weight": 2 } }, { "key": "4034", "source": "483", "target": "487", "attributes": { "weight": 2 } }, { "key": "20897", "source": "483", "target": "221", "attributes": { "weight": 1 } }, { "key": "15358", "source": "483", "target": "188", "attributes": { "weight": 1 } }, { "key": "4027", "source": "483", "target": "432", "attributes": { "weight": 4 } }, { "key": "20898", "source": "483", "target": "2106", "attributes": { "weight": 1 } }, { "key": "7019", "source": "483", "target": "193", "attributes": { "weight": 1 } }, { "key": "22857", "source": "483", "target": "1064", "attributes": { "weight": 1 } }, { "key": "23658", "source": "483", "target": "220", "attributes": { "weight": 1 } }, { "key": "27175", "source": "483", "target": "472", "attributes": { "weight": 3 } }, { "key": "4026", "source": "483", "target": "1068", "attributes": { "weight": 2 } }, { "key": "35022", "source": "483", "target": "595", "attributes": { "weight": 1 } }, { "key": "29906", "source": "483", "target": "1024", "attributes": { "weight": 1 } }, { "key": "20899", "source": "483", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20902", "source": "483", "target": "1836", "attributes": { "weight": 2 } }, { "key": "27176", "source": "483", "target": "1282", "attributes": { "weight": 2 } }, { "key": "7018", "source": "483", "target": "476", "attributes": { "weight": 2 } }, { "key": "4029", "source": "483", "target": "3", "attributes": { "weight": 3 } }, { "key": "23369", "source": "483", "target": "223", "attributes": { "weight": 1 } }, { "key": "15360", "source": "483", "target": "490", "attributes": { "weight": 2 } }, { "key": "7017", "source": "483", "target": "189", "attributes": { "weight": 3 } }, { "key": "15357", "source": "483", "target": "455", "attributes": { "weight": 2 } }, { "key": "4032", "source": "483", "target": "1082", "attributes": { "weight": 2 } }, { "key": "4030", "source": "483", "target": "458", "attributes": { "weight": 2 } }, { "key": "26371", "source": "483", "target": "1258", "attributes": { "weight": 1 } }, { "key": "7020", "source": "483", "target": "495", "attributes": { "weight": 3 } }, { "key": "4028", "source": "483", "target": "442", "attributes": { "weight": 1 } }, { "key": "20904", "source": "483", "target": "2095", "attributes": { "weight": 1 } }, { "key": "7016", "source": "483", "target": "183", "attributes": { "weight": 4 } }, { "key": "1551", "source": "483", "target": "224", "attributes": { "weight": 2 } }, { "key": "32841", "source": "483", "target": "135", "attributes": { "weight": 3 } }, { "key": "20916", "source": "484", "target": "2262", "attributes": { "weight": 1 } }, { "key": "29141", "source": "484", "target": "500", "attributes": { "weight": 1 } }, { "key": "1553", "source": "484", "target": "188", "attributes": { "weight": 1 } }, { "key": "1552", "source": "484", "target": "224", "attributes": { "weight": 1 } }, { "key": "29140", "source": "484", "target": "488", "attributes": { "weight": 1 } }, { "key": "1554", "source": "484", "target": "490", "attributes": { "weight": 1 } }, { "key": "29139", "source": "484", "target": "468", "attributes": { "weight": 1 } }, { "key": "31553", "source": "485", "target": "231", "attributes": { "weight": 1 } }, { "key": "26739", "source": "485", "target": "189", "attributes": { "weight": 1 } }, { "key": "1556", "source": "485", "target": "490", "attributes": { "weight": 1 } }, { "key": "31552", "source": "485", "target": "424", "attributes": { "weight": 1 } }, { "key": "1555", "source": "485", "target": "224", "attributes": { "weight": 1 } }, { "key": "24768", "source": "486", "target": "433", "attributes": { "weight": 2 } }, { "key": "1564", "source": "486", "target": "490", "attributes": { "weight": 1 } }, { "key": "16996", "source": "486", "target": "59", "attributes": { "weight": 1 } }, { "key": "29142", "source": "486", "target": "500", "attributes": { "weight": 1 } }, { "key": "1565", "source": "486", "target": "193", "attributes": { "weight": 1 } }, { "key": "24771", "source": "486", "target": "791", "attributes": { "weight": 2 } }, { "key": "24770", "source": "486", "target": "674", "attributes": { "weight": 1 } }, { "key": "1563", "source": "486", "target": "224", "attributes": { "weight": 1 } }, { "key": "29513", "source": "486", "target": "232", "attributes": { "weight": 2 } }, { "key": "26749", "source": "486", "target": "189", "attributes": { "weight": 1 } }, { "key": "25113", "source": "486", "target": "1547", "attributes": { "weight": 1 } }, { "key": "29052", "source": "486", "target": "495", "attributes": { "weight": 1 } }, { "key": "24769", "source": "486", "target": "2529", "attributes": { "weight": 1 } }, { "key": "4042", "source": "487", "target": "458", "attributes": { "weight": 2 } }, { "key": "3848", "source": "487", "target": "1067", "attributes": { "weight": 1 } }, { "key": "20992", "source": "487", "target": "453", "attributes": { "weight": 1 } }, { "key": "4040", "source": "487", "target": "3", "attributes": { "weight": 3 } }, { "key": "20997", "source": "487", "target": "1812", "attributes": { "weight": 1 } }, { "key": "4038", "source": "487", "target": "1070", "attributes": { "weight": 3 } }, { "key": "4045", "source": "487", "target": "1085", "attributes": { "weight": 2 } }, { "key": "4046", "source": "487", "target": "189", "attributes": { "weight": 4 } }, { "key": "20996", "source": "487", "target": "2262", "attributes": { "weight": 1 } }, { "key": "4041", "source": "487", "target": "454", "attributes": { "weight": 2 } }, { "key": "20989", "source": "487", "target": "438", "attributes": { "weight": 1 } }, { "key": "7035", "source": "487", "target": "193", "attributes": { "weight": 1 } }, { "key": "33660", "source": "487", "target": "425", "attributes": { "weight": 1 } }, { "key": "20995", "source": "487", "target": "2261", "attributes": { "weight": 1 } }, { "key": "17535", "source": "487", "target": "823", "attributes": { "weight": 1 } }, { "key": "1568", "source": "487", "target": "455", "attributes": { "weight": 2 } }, { "key": "32599", "source": "487", "target": "791", "attributes": { "weight": 1 } }, { "key": "30742", "source": "487", "target": "1026", "attributes": { "weight": 1 } }, { "key": "1567", "source": "487", "target": "183", "attributes": { "weight": 4 } }, { "key": "4037", "source": "487", "target": "442", "attributes": { "weight": 1 } }, { "key": "17534", "source": "487", "target": "2122", "attributes": { "weight": 1 } }, { "key": "12039", "source": "487", "target": "135", "attributes": { "weight": 2 } }, { "key": "22859", "source": "487", "target": "1084", "attributes": { "weight": 1 } }, { "key": "7036", "source": "487", "target": "495", "attributes": { "weight": 3 } }, { "key": "20994", "source": "487", "target": "2253", "attributes": { "weight": 1 } }, { "key": "22860", "source": "487", "target": "1091", "attributes": { "weight": 1 } }, { "key": "4043", "source": "487", "target": "53", "attributes": { "weight": 2 } }, { "key": "36095", "source": "487", "target": "440", "attributes": { "weight": 1 } }, { "key": "4048", "source": "487", "target": "483", "attributes": { "weight": 2 } }, { "key": "4036", "source": "487", "target": "432", "attributes": { "weight": 6 } }, { "key": "20999", "source": "487", "target": "2095", "attributes": { "weight": 1 } }, { "key": "1570", "source": "487", "target": "490", "attributes": { "weight": 4 } }, { "key": "4044", "source": "487", "target": "8", "attributes": { "weight": 2 } }, { "key": "33661", "source": "487", "target": "472", "attributes": { "weight": 1 } }, { "key": "20990", "source": "487", "target": "2244", "attributes": { "weight": 1 } }, { "key": "33662", "source": "487", "target": "672", "attributes": { "weight": 1 } }, { "key": "3847", "source": "487", "target": "1066", "attributes": { "weight": 1 } }, { "key": "4039", "source": "487", "target": "674", "attributes": { "weight": 2 } }, { "key": "20993", "source": "487", "target": "2251", "attributes": { "weight": 1 } }, { "key": "31708", "source": "487", "target": "595", "attributes": { "weight": 1 } }, { "key": "23689", "source": "487", "target": "220", "attributes": { "weight": 1 } }, { "key": "3846", "source": "487", "target": "1064", "attributes": { "weight": 1 } }, { "key": "1566", "source": "487", "target": "224", "attributes": { "weight": 1 } }, { "key": "20998", "source": "487", "target": "480", "attributes": { "weight": 1 } }, { "key": "1569", "source": "487", "target": "188", "attributes": { "weight": 2 } }, { "key": "21000", "source": "487", "target": "489", "attributes": { "weight": 1 } }, { "key": "20988", "source": "487", "target": "221", "attributes": { "weight": 1 } }, { "key": "3845", "source": "487", "target": "443", "attributes": { "weight": 1 } }, { "key": "11272", "source": "487", "target": "452", "attributes": { "weight": 2 } }, { "key": "25388", "source": "487", "target": "433", "attributes": { "weight": 1 } }, { "key": "4047", "source": "487", "target": "476", "attributes": { "weight": 2 } }, { "key": "20991", "source": "487", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21001", "source": "487", "target": "2276", "attributes": { "weight": 1 } }, { "key": "4035", "source": "487", "target": "59", "attributes": { "weight": 2 } }, { "key": "16998", "source": "488", "target": "674", "attributes": { "weight": 2 } }, { "key": "1575", "source": "488", "target": "188", "attributes": { "weight": 1 } }, { "key": "29146", "source": "488", "target": "442", "attributes": { "weight": 1 } }, { "key": "1574", "source": "488", "target": "455", "attributes": { "weight": 1 } }, { "key": "1572", "source": "488", "target": "448", "attributes": { "weight": 1 } }, { "key": "37466", "source": "488", "target": "435", "attributes": { "weight": 1 } }, { "key": "33668", "source": "488", "target": "52", "attributes": { "weight": 1 } }, { "key": "17000", "source": "488", "target": "135", "attributes": { "weight": 3 } }, { "key": "27177", "source": "488", "target": "472", "attributes": { "weight": 1 } }, { "key": "16999", "source": "488", "target": "457", "attributes": { "weight": 1 } }, { "key": "29151", "source": "488", "target": "2263", "attributes": { "weight": 1 } }, { "key": "16997", "source": "488", "target": "59", "attributes": { "weight": 2 } }, { "key": "23691", "source": "488", "target": "1312", "attributes": { "weight": 1 } }, { "key": "27300", "source": "488", "target": "57", "attributes": { "weight": 2 } }, { "key": "7043", "source": "488", "target": "476", "attributes": { "weight": 1 } }, { "key": "29054", "source": "488", "target": "495", "attributes": { "weight": 2 } }, { "key": "28980", "source": "488", "target": "479", "attributes": { "weight": 2 } }, { "key": "33667", "source": "488", "target": "425", "attributes": { "weight": 1 } }, { "key": "29150", "source": "488", "target": "228", "attributes": { "weight": 1 } }, { "key": "29144", "source": "488", "target": "432", "attributes": { "weight": 1 } }, { "key": "29176", "source": "488", "target": "1750", "attributes": { "weight": 1 } }, { "key": "29145", "source": "488", "target": "433", "attributes": { "weight": 1 } }, { "key": "17001", "source": "488", "target": "70", "attributes": { "weight": 1 } }, { "key": "15370", "source": "488", "target": "454", "attributes": { "weight": 3 } }, { "key": "31364", "source": "488", "target": "1118", "attributes": { "weight": 1 } }, { "key": "1573", "source": "488", "target": "183", "attributes": { "weight": 3 } }, { "key": "29149", "source": "488", "target": "468", "attributes": { "weight": 1 } }, { "key": "29148", "source": "488", "target": "452", "attributes": { "weight": 1 } }, { "key": "29152", "source": "488", "target": "500", "attributes": { "weight": 1 } }, { "key": "29147", "source": "488", "target": "447", "attributes": { "weight": 1 } }, { "key": "25485", "source": "488", "target": "497", "attributes": { "weight": 1 } }, { "key": "1577", "source": "488", "target": "193", "attributes": { "weight": 2 } }, { "key": "1571", "source": "488", "target": "224", "attributes": { "weight": 1 } }, { "key": "23371", "source": "488", "target": "1121", "attributes": { "weight": 1 } }, { "key": "26752", "source": "488", "target": "189", "attributes": { "weight": 2 } }, { "key": "1576", "source": "488", "target": "490", "attributes": { "weight": 1 } }, { "key": "21081", "source": "489", "target": "1741", "attributes": { "weight": 1 } }, { "key": "21104", "source": "489", "target": "481", "attributes": { "weight": 1 } }, { "key": "21126", "source": "489", "target": "1750", "attributes": { "weight": 1 } }, { "key": "21055", "source": "489", "target": "1358", "attributes": { "weight": 2 } }, { "key": "21066", "source": "489", "target": "465", "attributes": { "weight": 1 } }, { "key": "21083", "source": "489", "target": "1838", "attributes": { "weight": 1 } }, { "key": "21032", "source": "489", "target": "438", "attributes": { "weight": 1 } }, { "key": "21029", "source": "489", "target": "1522", "attributes": { "weight": 1 } }, { "key": "33674", "source": "489", "target": "441", "attributes": { "weight": 1 } }, { "key": "21020", "source": "489", "target": "429", "attributes": { "weight": 2 } }, { "key": "21052", "source": "489", "target": "227", "attributes": { "weight": 1 } }, { "key": "21025", "source": "489", "target": "130", "attributes": { "weight": 1 } }, { "key": "21139", "source": "489", "target": "499", "attributes": { "weight": 1 } }, { "key": "21125", "source": "489", "target": "1775", "attributes": { "weight": 1 } }, { "key": "21045", "source": "489", "target": "2247", "attributes": { "weight": 1 } }, { "key": "21042", "source": "489", "target": "1070", "attributes": { "weight": 1 } }, { "key": "21096", "source": "489", "target": "1127", "attributes": { "weight": 1 } }, { "key": "21087", "source": "489", "target": "1744", "attributes": { "weight": 1 } }, { "key": "21088", "source": "489", "target": "2108", "attributes": { "weight": 1 } }, { "key": "7044", "source": "489", "target": "183", "attributes": { "weight": 1 } }, { "key": "33680", "source": "489", "target": "228", "attributes": { "weight": 1 } }, { "key": "21019", "source": "489", "target": "1353", "attributes": { "weight": 3 } }, { "key": "21076", "source": "489", "target": "1122", "attributes": { "weight": 1 } }, { "key": "21085", "source": "489", "target": "476", "attributes": { "weight": 1 } }, { "key": "32848", "source": "489", "target": "2670", "attributes": { "weight": 2 } }, { "key": "12318", "source": "489", "target": "1830", "attributes": { "weight": 1 } }, { "key": "21069", "source": "489", "target": "2256", "attributes": { "weight": 1 } }, { "key": "21094", "source": "489", "target": "1812", "attributes": { "weight": 2 } }, { "key": "21129", "source": "489", "target": "73", "attributes": { "weight": 1 } }, { "key": "21051", "source": "489", "target": "451", "attributes": { "weight": 2 } }, { "key": "21063", "source": "489", "target": "462", "attributes": { "weight": 2 } }, { "key": "21112", "source": "489", "target": "2270", "attributes": { "weight": 1 } }, { "key": "21136", "source": "489", "target": "2275", "attributes": { "weight": 1 } }, { "key": "21109", "source": "489", "target": "483", "attributes": { "weight": 2 } }, { "key": "21101", "source": "489", "target": "479", "attributes": { "weight": 2 } }, { "key": "21118", "source": "489", "target": "491", "attributes": { "weight": 1 } }, { "key": "21035", "source": "489", "target": "425", "attributes": { "weight": 1 } }, { "key": "21120", "source": "489", "target": "1131", "attributes": { "weight": 1 } }, { "key": "21034", "source": "489", "target": "2240", "attributes": { "weight": 1 } }, { "key": "21122", "source": "489", "target": "192", "attributes": { "weight": 1 } }, { "key": "21137", "source": "489", "target": "2276", "attributes": { "weight": 1 } }, { "key": "21046", "source": "489", "target": "448", "attributes": { "weight": 1 } }, { "key": "21103", "source": "489", "target": "1770", "attributes": { "weight": 1 } }, { "key": "21124", "source": "489", "target": "56", "attributes": { "weight": 3 } }, { "key": "21090", "source": "489", "target": "2264", "attributes": { "weight": 1 } }, { "key": "21030", "source": "489", "target": "222", "attributes": { "weight": 1 } }, { "key": "33681", "source": "489", "target": "189", "attributes": { "weight": 1 } }, { "key": "22881", "source": "489", "target": "1359", "attributes": { "weight": 1 } }, { "key": "21062", "source": "489", "target": "459", "attributes": { "weight": 3 } }, { "key": "21133", "source": "489", "target": "2273", "attributes": { "weight": 1 } }, { "key": "29515", "source": "489", "target": "857", "attributes": { "weight": 1 } }, { "key": "21106", "source": "489", "target": "1560", "attributes": { "weight": 1 } }, { "key": "21021", "source": "489", "target": "1756", "attributes": { "weight": 1 } }, { "key": "21073", "source": "489", "target": "470", "attributes": { "weight": 1 } }, { "key": "33679", "source": "489", "target": "1547", "attributes": { "weight": 1 } }, { "key": "1580", "source": "489", "target": "490", "attributes": { "weight": 1 } }, { "key": "33670", "source": "489", "target": "220", "attributes": { "weight": 1 } }, { "key": "21067", "source": "489", "target": "2254", "attributes": { "weight": 1 } }, { "key": "21117", "source": "489", "target": "2111", "attributes": { "weight": 1 } }, { "key": "21108", "source": "489", "target": "2269", "attributes": { "weight": 1 } }, { "key": "21098", "source": "489", "target": "231", "attributes": { "weight": 4 } }, { "key": "21091", "source": "489", "target": "1026", "attributes": { "weight": 1 } }, { "key": "21078", "source": "489", "target": "471", "attributes": { "weight": 1 } }, { "key": "21113", "source": "489", "target": "2109", "attributes": { "weight": 1 } }, { "key": "21023", "source": "489", "target": "431", "attributes": { "weight": 1 } }, { "key": "21086", "source": "489", "target": "2262", "attributes": { "weight": 1 } }, { "key": "21065", "source": "489", "target": "464", "attributes": { "weight": 1 } }, { "key": "21131", "source": "489", "target": "1777", "attributes": { "weight": 1 } }, { "key": "33671", "source": "489", "target": "2645", "attributes": { "weight": 1 } }, { "key": "33673", "source": "489", "target": "858", "attributes": { "weight": 1 } }, { "key": "21033", "source": "489", "target": "439", "attributes": { "weight": 1 } }, { "key": "21070", "source": "489", "target": "1364", "attributes": { "weight": 1 } }, { "key": "21099", "source": "489", "target": "477", "attributes": { "weight": 1 } }, { "key": "21116", "source": "489", "target": "487", "attributes": { "weight": 1 } }, { "key": "33676", "source": "489", "target": "447", "attributes": { "weight": 1 } }, { "key": "21114", "source": "489", "target": "2271", "attributes": { "weight": 1 } }, { "key": "21080", "source": "489", "target": "1367", "attributes": { "weight": 1 } }, { "key": "21040", "source": "489", "target": "2243", "attributes": { "weight": 1 } }, { "key": "21050", "source": "489", "target": "2248", "attributes": { "weight": 1 } }, { "key": "21138", "source": "489", "target": "498", "attributes": { "weight": 1 } }, { "key": "33685", "source": "489", "target": "1092", "attributes": { "weight": 1 } }, { "key": "21026", "source": "489", "target": "49", "attributes": { "weight": 1 } }, { "key": "21048", "source": "489", "target": "1071", "attributes": { "weight": 1 } }, { "key": "21097", "source": "489", "target": "2268", "attributes": { "weight": 1 } }, { "key": "21038", "source": "489", "target": "1111", "attributes": { "weight": 1 } }, { "key": "21128", "source": "489", "target": "1751", "attributes": { "weight": 1 } }, { "key": "22882", "source": "489", "target": "1362", "attributes": { "weight": 1 } }, { "key": "21132", "source": "489", "target": "235", "attributes": { "weight": 1 } }, { "key": "21079", "source": "489", "target": "2094", "attributes": { "weight": 1 } }, { "key": "21027", "source": "489", "target": "221", "attributes": { "weight": 1 } }, { "key": "21060", "source": "489", "target": "2088", "attributes": { "weight": 1 } }, { "key": "21044", "source": "489", "target": "1759", "attributes": { "weight": 1 } }, { "key": "21057", "source": "489", "target": "1536", "attributes": { "weight": 1 } }, { "key": "32847", "source": "489", "target": "1366", "attributes": { "weight": 1 } }, { "key": "33683", "source": "489", "target": "474", "attributes": { "weight": 1 } }, { "key": "33675", "source": "489", "target": "674", "attributes": { "weight": 1 } }, { "key": "21102", "source": "489", "target": "480", "attributes": { "weight": 1 } }, { "key": "21089", "source": "489", "target": "2263", "attributes": { "weight": 1 } }, { "key": "21095", "source": "489", "target": "1126", "attributes": { "weight": 1 } }, { "key": "21031", "source": "489", "target": "50", "attributes": { "weight": 1 } }, { "key": "21119", "source": "489", "target": "1374", "attributes": { "weight": 1 } }, { "key": "21110", "source": "489", "target": "695", "attributes": { "weight": 1 } }, { "key": "21077", "source": "489", "target": "2259", "attributes": { "weight": 1 } }, { "key": "33682", "source": "489", "target": "190", "attributes": { "weight": 1 } }, { "key": "21049", "source": "489", "target": "1533", "attributes": { "weight": 1 } }, { "key": "21024", "source": "489", "target": "432", "attributes": { "weight": 1 } }, { "key": "21121", "source": "489", "target": "672", "attributes": { "weight": 1 } }, { "key": "21135", "source": "489", "target": "1390", "attributes": { "weight": 1 } }, { "key": "21036", "source": "489", "target": "2025", "attributes": { "weight": 1 } }, { "key": "33677", "source": "489", "target": "450", "attributes": { "weight": 1 } }, { "key": "21074", "source": "489", "target": "1365", "attributes": { "weight": 1 } }, { "key": "21018", "source": "489", "target": "1808", "attributes": { "weight": 1 } }, { "key": "21084", "source": "489", "target": "2261", "attributes": { "weight": 1 } }, { "key": "21092", "source": "489", "target": "2265", "attributes": { "weight": 1 } }, { "key": "21111", "source": "489", "target": "2095", "attributes": { "weight": 1 } }, { "key": "21037", "source": "489", "target": "440", "attributes": { "weight": 1 } }, { "key": "21071", "source": "489", "target": "467", "attributes": { "weight": 1 } }, { "key": "1578", "source": "489", "target": "224", "attributes": { "weight": 1 } }, { "key": "29516", "source": "489", "target": "232", "attributes": { "weight": 1 } }, { "key": "21056", "source": "489", "target": "1360", "attributes": { "weight": 1 } }, { "key": "21127", "source": "489", "target": "1566", "attributes": { "weight": 1 } }, { "key": "33678", "source": "489", "target": "1219", "attributes": { "weight": 1 } }, { "key": "3635", "source": "489", "target": "1025", "attributes": { "weight": 1 } }, { "key": "21064", "source": "489", "target": "2107", "attributes": { "weight": 1 } }, { "key": "21054", "source": "489", "target": "186", "attributes": { "weight": 1 } }, { "key": "21028", "source": "489", "target": "1110", "attributes": { "weight": 1 } }, { "key": "21130", "source": "489", "target": "492", "attributes": { "weight": 1 } }, { "key": "21134", "source": "489", "target": "1375", "attributes": { "weight": 1 } }, { "key": "21061", "source": "489", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21140", "source": "489", "target": "194", "attributes": { "weight": 1 } }, { "key": "21022", "source": "489", "target": "1354", "attributes": { "weight": 1 } }, { "key": "33672", "source": "489", "target": "437", "attributes": { "weight": 1 } }, { "key": "21068", "source": "489", "target": "1120", "attributes": { "weight": 1 } }, { "key": "21105", "source": "489", "target": "482", "attributes": { "weight": 2 } }, { "key": "33684", "source": "489", "target": "2470", "attributes": { "weight": 1 } }, { "key": "21115", "source": "489", "target": "2272", "attributes": { "weight": 1 } }, { "key": "21141", "source": "489", "target": "2278", "attributes": { "weight": 1 } }, { "key": "21082", "source": "489", "target": "1087", "attributes": { "weight": 1 } }, { "key": "21075", "source": "489", "target": "54", "attributes": { "weight": 2 } }, { "key": "21123", "source": "489", "target": "2096", "attributes": { "weight": 1 } }, { "key": "21047", "source": "489", "target": "449", "attributes": { "weight": 1 } }, { "key": "32846", "source": "489", "target": "860", "attributes": { "weight": 2 } }, { "key": "21043", "source": "489", "target": "2244", "attributes": { "weight": 1 } }, { "key": "21039", "source": "489", "target": "2241", "attributes": { "weight": 1 } }, { "key": "21107", "source": "489", "target": "1129", "attributes": { "weight": 1 } }, { "key": "21100", "source": "489", "target": "478", "attributes": { "weight": 1 } }, { "key": "21053", "source": "489", "target": "453", "attributes": { "weight": 1 } }, { "key": "21059", "source": "489", "target": "1998", "attributes": { "weight": 1 } }, { "key": "21041", "source": "489", "target": "443", "attributes": { "weight": 1 } }, { "key": "1579", "source": "489", "target": "455", "attributes": { "weight": 1 } }, { "key": "21072", "source": "489", "target": "1546", "attributes": { "weight": 1 } }, { "key": "21093", "source": "489", "target": "2266", "attributes": { "weight": 1 } }, { "key": "21058", "source": "489", "target": "2251", "attributes": { "weight": 1 } }, { "key": "1616", "source": "490", "target": "232", "attributes": { "weight": 3 } }, { "key": "1601", "source": "490", "target": "456", "attributes": { "weight": 1 } }, { "key": "1603", "source": "490", "target": "459", "attributes": { "weight": 2 } }, { "key": "1617", "source": "490", "target": "486", "attributes": { "weight": 1 } }, { "key": "1605", "source": "490", "target": "466", "attributes": { "weight": 1 } }, { "key": "1618", "source": "490", "target": "487", "attributes": { "weight": 4 } }, { "key": "15378", "source": "490", "target": "483", "attributes": { "weight": 2 } }, { "key": "26757", "source": "490", "target": "189", "attributes": { "weight": 2 } }, { "key": "7051", "source": "490", "target": "494", "attributes": { "weight": 2 } }, { "key": "1582", "source": "490", "target": "432", "attributes": { "weight": 1 } }, { "key": "18119", "source": "490", "target": "52", "attributes": { "weight": 1 } }, { "key": "26754", "source": "490", "target": "1047", "attributes": { "weight": 2 } }, { "key": "1610", "source": "490", "target": "190", "attributes": { "weight": 3 } }, { "key": "1597", "source": "490", "target": "451", "attributes": { "weight": 2 } }, { "key": "1609", "source": "490", "target": "473", "attributes": { "weight": 1 } }, { "key": "1587", "source": "490", "target": "437", "attributes": { "weight": 1 } }, { "key": "37026", "source": "490", "target": "2644", "attributes": { "weight": 1 } }, { "key": "29518", "source": "490", "target": "2211", "attributes": { "weight": 1 } }, { "key": "1584", "source": "490", "target": "49", "attributes": { "weight": 1 } }, { "key": "15372", "source": "490", "target": "1353", "attributes": { "weight": 2 } }, { "key": "1608", "source": "490", "target": "470", "attributes": { "weight": 1 } }, { "key": "1591", "source": "490", "target": "440", "attributes": { "weight": 1 } }, { "key": "1600", "source": "490", "target": "188", "attributes": { "weight": 2 } }, { "key": "31709", "source": "490", "target": "595", "attributes": { "weight": 1 } }, { "key": "15375", "source": "490", "target": "1358", "attributes": { "weight": 2 } }, { "key": "1588", "source": "490", "target": "438", "attributes": { "weight": 1 } }, { "key": "1607", "source": "490", "target": "468", "attributes": { "weight": 4 } }, { "key": "1623", "source": "490", "target": "495", "attributes": { "weight": 3 } }, { "key": "1592", "source": "490", "target": "441", "attributes": { "weight": 1 } }, { "key": "1614", "source": "490", "target": "484", "attributes": { "weight": 1 } }, { "key": "7047", "source": "490", "target": "183", "attributes": { "weight": 1 } }, { "key": "1606", "source": "490", "target": "467", "attributes": { "weight": 1 } }, { "key": "1590", "source": "490", "target": "223", "attributes": { "weight": 1 } }, { "key": "26758", "source": "490", "target": "57", "attributes": { "weight": 2 } }, { "key": "9092", "source": "490", "target": "442", "attributes": { "weight": 2 } }, { "key": "25897", "source": "490", "target": "220", "attributes": { "weight": 1 } }, { "key": "1589", "source": "490", "target": "439", "attributes": { "weight": 1 } }, { "key": "1596", "source": "490", "target": "182", "attributes": { "weight": 1 } }, { "key": "15373", "source": "490", "target": "860", "attributes": { "weight": 2 } }, { "key": "35703", "source": "490", "target": "1356", "attributes": { "weight": 1 } }, { "key": "31365", "source": "490", "target": "674", "attributes": { "weight": 1 } }, { "key": "1625", "source": "490", "target": "500", "attributes": { "weight": 1 } }, { "key": "32602", "source": "490", "target": "791", "attributes": { "weight": 1 } }, { "key": "1586", "source": "490", "target": "436", "attributes": { "weight": 1 } }, { "key": "1613", "source": "490", "target": "427", "attributes": { "weight": 1 } }, { "key": "15380", "source": "490", "target": "499", "attributes": { "weight": 2 } }, { "key": "29517", "source": "490", "target": "857", "attributes": { "weight": 2 } }, { "key": "1594", "source": "490", "target": "445", "attributes": { "weight": 5 } }, { "key": "7049", "source": "490", "target": "701", "attributes": { "weight": 1 } }, { "key": "1581", "source": "490", "target": "429", "attributes": { "weight": 2 } }, { "key": "12319", "source": "490", "target": "435", "attributes": { "weight": 1 } }, { "key": "15376", "source": "490", "target": "462", "attributes": { "weight": 2 } }, { "key": "1612", "source": "490", "target": "231", "attributes": { "weight": 4 } }, { "key": "1620", "source": "490", "target": "489", "attributes": { "weight": 1 } }, { "key": "7045", "source": "490", "target": "1354", "attributes": { "weight": 1 } }, { "key": "26756", "source": "490", "target": "187", "attributes": { "weight": 2 } }, { "key": "1595", "source": "490", "target": "447", "attributes": { "weight": 1 } }, { "key": "15379", "source": "490", "target": "56", "attributes": { "weight": 2 } }, { "key": "26755", "source": "490", "target": "454", "attributes": { "weight": 1 } }, { "key": "37027", "source": "490", "target": "1366", "attributes": { "weight": 1 } }, { "key": "1604", "source": "490", "target": "464", "attributes": { "weight": 1 } }, { "key": "1599", "source": "490", "target": "455", "attributes": { "weight": 2 } }, { "key": "15374", "source": "490", "target": "1357", "attributes": { "weight": 2 } }, { "key": "1611", "source": "490", "target": "191", "attributes": { "weight": 3 } }, { "key": "1621", "source": "490", "target": "491", "attributes": { "weight": 1 } }, { "key": "1619", "source": "490", "target": "488", "attributes": { "weight": 1 } }, { "key": "7050", "source": "490", "target": "1362", "attributes": { "weight": 1 } }, { "key": "7048", "source": "490", "target": "1116", "attributes": { "weight": 2 } }, { "key": "17316", "source": "490", "target": "449", "attributes": { "weight": 1 } }, { "key": "15377", "source": "490", "target": "54", "attributes": { "weight": 2 } }, { "key": "1622", "source": "490", "target": "193", "attributes": { "weight": 3 } }, { "key": "9091", "source": "490", "target": "195", "attributes": { "weight": 3 } }, { "key": "1593", "source": "490", "target": "443", "attributes": { "weight": 2 } }, { "key": "1624", "source": "490", "target": "194", "attributes": { "weight": 1 } }, { "key": "7046", "source": "490", "target": "424", "attributes": { "weight": 4 } }, { "key": "1615", "source": "490", "target": "485", "attributes": { "weight": 1 } }, { "key": "1598", "source": "490", "target": "452", "attributes": { "weight": 1 } }, { "key": "1602", "source": "490", "target": "458", "attributes": { "weight": 3 } }, { "key": "1583", "source": "490", "target": "130", "attributes": { "weight": 3 } }, { "key": "1585", "source": "490", "target": "433", "attributes": { "weight": 3 } }, { "key": "21144", "source": "491", "target": "2245", "attributes": { "weight": 1 } }, { "key": "7052", "source": "491", "target": "57", "attributes": { "weight": 2 } }, { "key": "1629", "source": "491", "target": "490", "attributes": { "weight": 1 } }, { "key": "21142", "source": "491", "target": "221", "attributes": { "weight": 1 } }, { "key": "21145", "source": "491", "target": "2253", "attributes": { "weight": 1 } }, { "key": "33686", "source": "491", "target": "473", "attributes": { "weight": 1 } }, { "key": "21149", "source": "491", "target": "235", "attributes": { "weight": 1 } }, { "key": "21148", "source": "491", "target": "489", "attributes": { "weight": 1 } }, { "key": "29055", "source": "491", "target": "495", "attributes": { "weight": 1 } }, { "key": "1627", "source": "491", "target": "183", "attributes": { "weight": 1 } }, { "key": "21147", "source": "491", "target": "480", "attributes": { "weight": 1 } }, { "key": "23692", "source": "491", "target": "445", "attributes": { "weight": 1 } }, { "key": "1626", "source": "491", "target": "224", "attributes": { "weight": 1 } }, { "key": "21143", "source": "491", "target": "222", "attributes": { "weight": 1 } }, { "key": "11277", "source": "491", "target": "469", "attributes": { "weight": 1 } }, { "key": "9992", "source": "491", "target": "494", "attributes": { "weight": 2 } }, { "key": "21146", "source": "491", "target": "2261", "attributes": { "weight": 1 } }, { "key": "26759", "source": "491", "target": "189", "attributes": { "weight": 1 } }, { "key": "9991", "source": "491", "target": "492", "attributes": { "weight": 2 } }, { "key": "11276", "source": "491", "target": "452", "attributes": { "weight": 2 } }, { "key": "1628", "source": "491", "target": "455", "attributes": { "weight": 1 } }, { "key": "12046", "source": "492", "target": "135", "attributes": { "weight": 1 } }, { "key": "11301", "source": "492", "target": "1762", "attributes": { "weight": 2 } }, { "key": "21268", "source": "492", "target": "49", "attributes": { "weight": 1 } }, { "key": "21267", "source": "492", "target": "130", "attributes": { "weight": 3 } }, { "key": "24377", "source": "492", "target": "441", "attributes": { "weight": 1 } }, { "key": "21270", "source": "492", "target": "1367", "attributes": { "weight": 1 } }, { "key": "11298", "source": "492", "target": "1756", "attributes": { "weight": 1 } }, { "key": "1633", "source": "492", "target": "183", "attributes": { "weight": 1 } }, { "key": "24378", "source": "492", "target": "191", "attributes": { "weight": 1 } }, { "key": "32615", "source": "492", "target": "791", "attributes": { "weight": 1 } }, { "key": "31433", "source": "492", "target": "223", "attributes": { "weight": 2 } }, { "key": "26768", "source": "492", "target": "189", "attributes": { "weight": 1 } }, { "key": "23699", "source": "492", "target": "220", "attributes": { "weight": 1 } }, { "key": "11304", "source": "492", "target": "1093", "attributes": { "weight": 1 } }, { "key": "11302", "source": "492", "target": "190", "attributes": { "weight": 2 } }, { "key": "26767", "source": "492", "target": "454", "attributes": { "weight": 1 } }, { "key": "11299", "source": "492", "target": "439", "attributes": { "weight": 2 } }, { "key": "18122", "source": "492", "target": "57", "attributes": { "weight": 1 } }, { "key": "10575", "source": "492", "target": "225", "attributes": { "weight": 1 } }, { "key": "10002", "source": "492", "target": "445", "attributes": { "weight": 4 } }, { "key": "21271", "source": "492", "target": "489", "attributes": { "weight": 1 } }, { "key": "10004", "source": "492", "target": "491", "attributes": { "weight": 2 } }, { "key": "24256", "source": "492", "target": "471", "attributes": { "weight": 1 } }, { "key": "10003", "source": "492", "target": "477", "attributes": { "weight": 3 } }, { "key": "11300", "source": "492", "target": "452", "attributes": { "weight": 3 } }, { "key": "21269", "source": "492", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21272", "source": "492", "target": "2189", "attributes": { "weight": 1 } }, { "key": "9122", "source": "492", "target": "442", "attributes": { "weight": 2 } }, { "key": "11303", "source": "492", "target": "1771", "attributes": { "weight": 1 } }, { "key": "33098", "source": "493", "target": "1556", "attributes": { "weight": 1 } }, { "key": "12411", "source": "493", "target": "228", "attributes": { "weight": 3 } }, { "key": "3128", "source": "493", "target": "890", "attributes": { "weight": 3 } }, { "key": "34880", "source": "493", "target": "3168", "attributes": { "weight": 1 } }, { "key": "12413", "source": "493", "target": "1088", "attributes": { "weight": 2 } }, { "key": "33096", "source": "493", "target": "189", "attributes": { "weight": 1 } }, { "key": "34879", "source": "493", "target": "3167", "attributes": { "weight": 1 } }, { "key": "1634", "source": "493", "target": "224", "attributes": { "weight": 1 } }, { "key": "12412", "source": "493", "target": "1845", "attributes": { "weight": 2 } }, { "key": "33084", "source": "493", "target": "222", "attributes": { "weight": 1 } }, { "key": "33085", "source": "493", "target": "50", "attributes": { "weight": 1 } }, { "key": "33081", "source": "493", "target": "130", "attributes": { "weight": 1 } }, { "key": "33091", "source": "493", "target": "1056", "attributes": { "weight": 1 } }, { "key": "33102", "source": "493", "target": "1131", "attributes": { "weight": 1 } }, { "key": "34882", "source": "493", "target": "190", "attributes": { "weight": 1 } }, { "key": "33086", "source": "493", "target": "223", "attributes": { "weight": 1 } }, { "key": "33087", "source": "493", "target": "39", "attributes": { "weight": 1 } }, { "key": "33082", "source": "493", "target": "433", "attributes": { "weight": 1 } }, { "key": "27548", "source": "493", "target": "1520", "attributes": { "weight": 2 } }, { "key": "34883", "source": "493", "target": "893", "attributes": { "weight": 1 } }, { "key": "3130", "source": "493", "target": "894", "attributes": { "weight": 4 } }, { "key": "33083", "source": "493", "target": "36", "attributes": { "weight": 1 } }, { "key": "33079", "source": "493", "target": "34", "attributes": { "weight": 1 } }, { "key": "33088", "source": "493", "target": "3", "attributes": { "weight": 1 } }, { "key": "33105", "source": "493", "target": "495", "attributes": { "weight": 1 } }, { "key": "26899", "source": "493", "target": "2658", "attributes": { "weight": 2 } }, { "key": "33097", "source": "493", "target": "474", "attributes": { "weight": 1 } }, { "key": "33094", "source": "493", "target": "471", "attributes": { "weight": 1 } }, { "key": "33099", "source": "493", "target": "1592", "attributes": { "weight": 1 } }, { "key": "10578", "source": "493", "target": "225", "attributes": { "weight": 2 } }, { "key": "11309", "source": "493", "target": "452", "attributes": { "weight": 2 } }, { "key": "33100", "source": "493", "target": "42", "attributes": { "weight": 1 } }, { "key": "26901", "source": "493", "target": "2662", "attributes": { "weight": 2 } }, { "key": "33104", "source": "493", "target": "494", "attributes": { "weight": 1 } }, { "key": "30721", "source": "493", "target": "889", "attributes": { "weight": 1 } }, { "key": "34881", "source": "493", "target": "1367", "attributes": { "weight": 1 } }, { "key": "26900", "source": "493", "target": "2661", "attributes": { "weight": 1 } }, { "key": "11310", "source": "493", "target": "473", "attributes": { "weight": 2 } }, { "key": "33090", "source": "493", "target": "52", "attributes": { "weight": 1 } }, { "key": "33093", "source": "493", "target": "470", "attributes": { "weight": 1 } }, { "key": "33080", "source": "493", "target": "220", "attributes": { "weight": 1 } }, { "key": "33089", "source": "493", "target": "183", "attributes": { "weight": 1 } }, { "key": "30487", "source": "493", "target": "1046", "attributes": { "weight": 1 } }, { "key": "32033", "source": "493", "target": "359", "attributes": { "weight": 2 } }, { "key": "9124", "source": "493", "target": "442", "attributes": { "weight": 3 } }, { "key": "33101", "source": "493", "target": "477", "attributes": { "weight": 1 } }, { "key": "17523", "source": "493", "target": "358", "attributes": { "weight": 2 } }, { "key": "33103", "source": "493", "target": "233", "attributes": { "weight": 1 } }, { "key": "26771", "source": "493", "target": "454", "attributes": { "weight": 2 } }, { "key": "27892", "source": "493", "target": "339", "attributes": { "weight": 2 } }, { "key": "33092", "source": "493", "target": "468", "attributes": { "weight": 1 } }, { "key": "34884", "source": "493", "target": "3115", "attributes": { "weight": 1 } }, { "key": "33095", "source": "493", "target": "2115", "attributes": { "weight": 1 } }, { "key": "33106", "source": "493", "target": "57", "attributes": { "weight": 1 } }, { "key": "34878", "source": "493", "target": "1355", "attributes": { "weight": 1 } }, { "key": "9374", "source": "493", "target": "430", "attributes": { "weight": 2 } }, { "key": "32616", "source": "493", "target": "791", "attributes": { "weight": 2 } }, { "key": "32852", "source": "493", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9125", "source": "493", "target": "1087", "attributes": { "weight": 2 } }, { "key": "6492", "source": "494", "target": "468", "attributes": { "weight": 2 } }, { "key": "27186", "source": "494", "target": "1282", "attributes": { "weight": 1 } }, { "key": "33730", "source": "494", "target": "425", "attributes": { "weight": 1 } }, { "key": "23701", "source": "494", "target": "2248", "attributes": { "weight": 1 } }, { "key": "3636", "source": "494", "target": "1025", "attributes": { "weight": 2 } }, { "key": "10011", "source": "494", "target": "477", "attributes": { "weight": 3 } }, { "key": "11317", "source": "494", "target": "695", "attributes": { "weight": 2 } }, { "key": "32854", "source": "494", "target": "1121", "attributes": { "weight": 1 } }, { "key": "9131", "source": "494", "target": "474", "attributes": { "weight": 3 } }, { "key": "33733", "source": "494", "target": "2110", "attributes": { "weight": 1 } }, { "key": "35347", "source": "494", "target": "439", "attributes": { "weight": 1 } }, { "key": "17057", "source": "494", "target": "70", "attributes": { "weight": 1 } }, { "key": "6493", "source": "494", "target": "1090", "attributes": { "weight": 2 } }, { "key": "32986", "source": "494", "target": "1063", "attributes": { "weight": 1 } }, { "key": "4234", "source": "494", "target": "228", "attributes": { "weight": 3 } }, { "key": "27184", "source": "494", "target": "1247", "attributes": { "weight": 1 } }, { "key": "10008", "source": "494", "target": "674", "attributes": { "weight": 4 } }, { "key": "10010", "source": "494", "target": "8", "attributes": { "weight": 2 } }, { "key": "32856", "source": "494", "target": "1125", "attributes": { "weight": 2 } }, { "key": "11312", "source": "494", "target": "220", "attributes": { "weight": 3 } }, { "key": "33731", "source": "494", "target": "52", "attributes": { "weight": 1 } }, { "key": "35350", "source": "494", "target": "191", "attributes": { "weight": 1 } }, { "key": "35351", "source": "494", "target": "2188", "attributes": { "weight": 1 } }, { "key": "10014", "source": "494", "target": "1093", "attributes": { "weight": 3 } }, { "key": "33107", "source": "494", "target": "493", "attributes": { "weight": 1 } }, { "key": "26775", "source": "494", "target": "454", "attributes": { "weight": 1 } }, { "key": "7134", "source": "494", "target": "490", "attributes": { "weight": 2 } }, { "key": "17320", "source": "494", "target": "449", "attributes": { "weight": 1 } }, { "key": "10009", "source": "494", "target": "445", "attributes": { "weight": 3 } }, { "key": "10012", "source": "494", "target": "479", "attributes": { "weight": 2 } }, { "key": "29059", "source": "494", "target": "495", "attributes": { "weight": 1 } }, { "key": "17056", "source": "494", "target": "59", "attributes": { "weight": 1 } }, { "key": "33732", "source": "494", "target": "2258", "attributes": { "weight": 1 } }, { "key": "7135", "source": "494", "target": "193", "attributes": { "weight": 2 } }, { "key": "12051", "source": "494", "target": "135", "attributes": { "weight": 4 } }, { "key": "27304", "source": "494", "target": "57", "attributes": { "weight": 1 } }, { "key": "35046", "source": "494", "target": "352", "attributes": { "weight": 1 } }, { "key": "11314", "source": "494", "target": "370", "attributes": { "weight": 2 } }, { "key": "32985", "source": "494", "target": "154", "attributes": { "weight": 1 } }, { "key": "11315", "source": "494", "target": "470", "attributes": { "weight": 2 } }, { "key": "24261", "source": "494", "target": "223", "attributes": { "weight": 3 } }, { "key": "10007", "source": "494", "target": "432", "attributes": { "weight": 2 } }, { "key": "24379", "source": "494", "target": "190", "attributes": { "weight": 2 } }, { "key": "33734", "source": "494", "target": "672", "attributes": { "weight": 1 } }, { "key": "1662", "source": "494", "target": "224", "attributes": { "weight": 1 } }, { "key": "27386", "source": "494", "target": "340", "attributes": { "weight": 1 } }, { "key": "29153", "source": "494", "target": "447", "attributes": { "weight": 1 } }, { "key": "14285", "source": "494", "target": "1046", "attributes": { "weight": 2 } }, { "key": "17543", "source": "494", "target": "189", "attributes": { "weight": 2 } }, { "key": "35345", "source": "494", "target": "437", "attributes": { "weight": 1 } }, { "key": "17524", "source": "494", "target": "358", "attributes": { "weight": 1 } }, { "key": "11316", "source": "494", "target": "580", "attributes": { "weight": 1 } }, { "key": "35349", "source": "494", "target": "2186", "attributes": { "weight": 1 } }, { "key": "1664", "source": "494", "target": "455", "attributes": { "weight": 1 } }, { "key": "1665", "source": "494", "target": "188", "attributes": { "weight": 2 } }, { "key": "12050", "source": "494", "target": "1363", "attributes": { "weight": 1 } }, { "key": "37467", "source": "494", "target": "435", "attributes": { "weight": 1 } }, { "key": "9129", "source": "494", "target": "442", "attributes": { "weight": 3 } }, { "key": "11318", "source": "494", "target": "595", "attributes": { "weight": 2 } }, { "key": "9130", "source": "494", "target": "1087", "attributes": { "weight": 2 } }, { "key": "27183", "source": "494", "target": "450", "attributes": { "weight": 1 } }, { "key": "10013", "source": "494", "target": "491", "attributes": { "weight": 2 } }, { "key": "35346", "source": "494", "target": "50", "attributes": { "weight": 1 } }, { "key": "24262", "source": "494", "target": "471", "attributes": { "weight": 1 } }, { "key": "24260", "source": "494", "target": "130", "attributes": { "weight": 2 } }, { "key": "32624", "source": "494", "target": "791", "attributes": { "weight": 1 } }, { "key": "11313", "source": "494", "target": "452", "attributes": { "weight": 1 } }, { "key": "1663", "source": "494", "target": "183", "attributes": { "weight": 3 } }, { "key": "27185", "source": "494", "target": "472", "attributes": { "weight": 4 } }, { "key": "35348", "source": "494", "target": "461", "attributes": { "weight": 1 } }, { "key": "35352", "source": "494", "target": "1771", "attributes": { "weight": 1 } }, { "key": "9132", "source": "494", "target": "233", "attributes": { "weight": 2 } }, { "key": "32855", "source": "494", "target": "1088", "attributes": { "weight": 2 } }, { "key": "12730", "source": "495", "target": "695", "attributes": { "weight": 2 } }, { "key": "29532", "source": "495", "target": "232", "attributes": { "weight": 2 } }, { "key": "12655", "source": "495", "target": "164", "attributes": { "weight": 3 } }, { "key": "23254", "source": "495", "target": "426", "attributes": { "weight": 2 } }, { "key": "29095", "source": "495", "target": "428", "attributes": { "weight": 1 } }, { "key": "31561", "source": "495", "target": "438", "attributes": { "weight": 1 } }, { "key": "29090", "source": "495", "target": "479", "attributes": { "weight": 1 } }, { "key": "26932", "source": "495", "target": "464", "attributes": { "weight": 2 } }, { "key": "29075", "source": "495", "target": "370", "attributes": { "weight": 2 } }, { "key": "26776", "source": "495", "target": "467", "attributes": { "weight": 2 } }, { "key": "7136", "source": "495", "target": "1353", "attributes": { "weight": 2 } }, { "key": "7138", "source": "495", "target": "889", "attributes": { "weight": 3 } }, { "key": "29104", "source": "495", "target": "500", "attributes": { "weight": 2 } }, { "key": "7161", "source": "495", "target": "476", "attributes": { "weight": 1 } }, { "key": "7139", "source": "495", "target": "59", "attributes": { "weight": 4 } }, { "key": "7140", "source": "495", "target": "130", "attributes": { "weight": 6 } }, { "key": "17321", "source": "495", "target": "449", "attributes": { "weight": 1 } }, { "key": "7172", "source": "495", "target": "1094", "attributes": { "weight": 2 } }, { "key": "7141", "source": "495", "target": "442", "attributes": { "weight": 4 } }, { "key": "29088", "source": "495", "target": "1026", "attributes": { "weight": 2 } }, { "key": "29094", "source": "495", "target": "486", "attributes": { "weight": 1 } }, { "key": "31817", "source": "495", "target": "595", "attributes": { "weight": 1 } }, { "key": "29103", "source": "495", "target": "1390", "attributes": { "weight": 1 } }, { "key": "23255", "source": "495", "target": "55", "attributes": { "weight": 1 } }, { "key": "9375", "source": "495", "target": "430", "attributes": { "weight": 1 } }, { "key": "29064", "source": "495", "target": "447", "attributes": { "weight": 2 } }, { "key": "7166", "source": "495", "target": "487", "attributes": { "weight": 3 } }, { "key": "29076", "source": "495", "target": "1024", "attributes": { "weight": 2 } }, { "key": "29073", "source": "495", "target": "1361", "attributes": { "weight": 1 } }, { "key": "29061", "source": "495", "target": "223", "attributes": { "weight": 2 } }, { "key": "13678", "source": "495", "target": "304", "attributes": { "weight": 2 } }, { "key": "37074", "source": "495", "target": "857", "attributes": { "weight": 1 } }, { "key": "7156", "source": "495", "target": "471", "attributes": { "weight": 3 } }, { "key": "24702", "source": "495", "target": "5", "attributes": { "weight": 2 } }, { "key": "7150", "source": "495", "target": "457", "attributes": { "weight": 2 } }, { "key": "27187", "source": "495", "target": "472", "attributes": { "weight": 1 } }, { "key": "29070", "source": "495", "target": "2287", "attributes": { "weight": 2 } }, { "key": "4057", "source": "495", "target": "432", "attributes": { "weight": 2 } }, { "key": "23256", "source": "495", "target": "340", "attributes": { "weight": 3 } }, { "key": "7137", "source": "495", "target": "429", "attributes": { "weight": 2 } }, { "key": "7144", "source": "495", "target": "674", "attributes": { "weight": 5 } }, { "key": "9541", "source": "495", "target": "419", "attributes": { "weight": 2 } }, { "key": "7165", "source": "495", "target": "483", "attributes": { "weight": 3 } }, { "key": "25901", "source": "495", "target": "220", "attributes": { "weight": 2 } }, { "key": "29102", "source": "495", "target": "352", "attributes": { "weight": 2 } }, { "key": "7415", "source": "495", "target": "1063", "attributes": { "weight": 3 } }, { "key": "18352", "source": "495", "target": "1092", "attributes": { "weight": 2 } }, { "key": "17525", "source": "495", "target": "358", "attributes": { "weight": 2 } }, { "key": "29067", "source": "495", "target": "2114", "attributes": { "weight": 1 } }, { "key": "29086", "source": "495", "target": "868", "attributes": { "weight": 2 } }, { "key": "29065", "source": "495", "target": "860", "attributes": { "weight": 1 } }, { "key": "26378", "source": "495", "target": "1258", "attributes": { "weight": 2 } }, { "key": "29096", "source": "495", "target": "488", "attributes": { "weight": 2 } }, { "key": "1670", "source": "495", "target": "193", "attributes": { "weight": 5 } }, { "key": "26933", "source": "495", "target": "497", "attributes": { "weight": 2 } }, { "key": "7167", "source": "495", "target": "192", "attributes": { "weight": 3 } }, { "key": "7160", "source": "495", "target": "474", "attributes": { "weight": 3 } }, { "key": "25659", "source": "495", "target": "1780", "attributes": { "weight": 2 } }, { "key": "29084", "source": "495", "target": "2647", "attributes": { "weight": 2 } }, { "key": "29087", "source": "495", "target": "123", "attributes": { "weight": 2 } }, { "key": "29077", "source": "495", "target": "1025", "attributes": { "weight": 1 } }, { "key": "29068", "source": "495", "target": "693", "attributes": { "weight": 3 } }, { "key": "7146", "source": "495", "target": "452", "attributes": { "weight": 5 } }, { "key": "7142", "source": "495", "target": "443", "attributes": { "weight": 2 } }, { "key": "7162", "source": "495", "target": "191", "attributes": { "weight": 4 } }, { "key": "29089", "source": "495", "target": "477", "attributes": { "weight": 1 } }, { "key": "29092", "source": "495", "target": "823", "attributes": { "weight": 1 } }, { "key": "14003", "source": "495", "target": "180", "attributes": { "weight": 1 } }, { "key": "11319", "source": "495", "target": "469", "attributes": { "weight": 1 } }, { "key": "33108", "source": "495", "target": "493", "attributes": { "weight": 1 } }, { "key": "29091", "source": "495", "target": "427", "attributes": { "weight": 1 } }, { "key": "4252", "source": "495", "target": "673", "attributes": { "weight": 2 } }, { "key": "29074", "source": "495", "target": "791", "attributes": { "weight": 3 } }, { "key": "29078", "source": "495", "target": "463", "attributes": { "weight": 1 } }, { "key": "7148", "source": "495", "target": "1357", "attributes": { "weight": 4 } }, { "key": "7157", "source": "495", "target": "1367", "attributes": { "weight": 4 } }, { "key": "30489", "source": "495", "target": "1046", "attributes": { "weight": 1 } }, { "key": "32096", "source": "495", "target": "3084", "attributes": { "weight": 1 } }, { "key": "29097", "source": "495", "target": "491", "attributes": { "weight": 1 } }, { "key": "29083", "source": "495", "target": "1365", "attributes": { "weight": 1 } }, { "key": "7159", "source": "495", "target": "473", "attributes": { "weight": 5 } }, { "key": "7149", "source": "495", "target": "454", "attributes": { "weight": 5 } }, { "key": "33735", "source": "495", "target": "135", "attributes": { "weight": 1 } }, { "key": "7171", "source": "495", "target": "57", "attributes": { "weight": 6 } }, { "key": "7168", "source": "495", "target": "56", "attributes": { "weight": 3 } }, { "key": "10015", "source": "495", "target": "445", "attributes": { "weight": 3 } }, { "key": "27306", "source": "495", "target": "52", "attributes": { "weight": 2 } }, { "key": "7155", "source": "495", "target": "54", "attributes": { "weight": 3 } }, { "key": "29085", "source": "495", "target": "190", "attributes": { "weight": 1 } }, { "key": "7145", "source": "495", "target": "183", "attributes": { "weight": 3 } }, { "key": "7151", "source": "495", "target": "460", "attributes": { "weight": 2 } }, { "key": "29063", "source": "495", "target": "1760", "attributes": { "weight": 2 } }, { "key": "29559", "source": "495", "target": "181", "attributes": { "weight": 1 } }, { "key": "23252", "source": "495", "target": "424", "attributes": { "weight": 4 } }, { "key": "29081", "source": "495", "target": "8", "attributes": { "weight": 3 } }, { "key": "28502", "source": "495", "target": "580", "attributes": { "weight": 2 } }, { "key": "6494", "source": "495", "target": "468", "attributes": { "weight": 4 } }, { "key": "9134", "source": "495", "target": "228", "attributes": { "weight": 2 } }, { "key": "29071", "source": "495", "target": "1232", "attributes": { "weight": 2 } }, { "key": "25396", "source": "495", "target": "433", "attributes": { "weight": 2 } }, { "key": "29099", "source": "495", "target": "1093", "attributes": { "weight": 1 } }, { "key": "7154", "source": "495", "target": "53", "attributes": { "weight": 3 } }, { "key": "23253", "source": "495", "target": "3", "attributes": { "weight": 5 } }, { "key": "29531", "source": "495", "target": "2211", "attributes": { "weight": 2 } }, { "key": "29093", "source": "495", "target": "2648", "attributes": { "weight": 2 } }, { "key": "7153", "source": "495", "target": "1066", "attributes": { "weight": 2 } }, { "key": "7164", "source": "495", "target": "1371", "attributes": { "weight": 2 } }, { "key": "29069", "source": "495", "target": "187", "attributes": { "weight": 1 } }, { "key": "29066", "source": "495", "target": "2831", "attributes": { "weight": 2 } }, { "key": "29098", "source": "495", "target": "1775", "attributes": { "weight": 2 } }, { "key": "29060", "source": "495", "target": "222", "attributes": { "weight": 1 } }, { "key": "1668", "source": "495", "target": "188", "attributes": { "weight": 4 } }, { "key": "7169", "source": "495", "target": "1375", "attributes": { "weight": 2 } }, { "key": "29082", "source": "495", "target": "470", "attributes": { "weight": 2 } }, { "key": "17058", "source": "495", "target": "70", "attributes": { "weight": 2 } }, { "key": "7170", "source": "495", "target": "1376", "attributes": { "weight": 2 } }, { "key": "1667", "source": "495", "target": "455", "attributes": { "weight": 3 } }, { "key": "7152", "source": "495", "target": "461", "attributes": { "weight": 3 } }, { "key": "1669", "source": "495", "target": "490", "attributes": { "weight": 3 } }, { "key": "29079", "source": "495", "target": "682", "attributes": { "weight": 1 } }, { "key": "27305", "source": "495", "target": "425", "attributes": { "weight": 2 } }, { "key": "25119", "source": "495", "target": "1547", "attributes": { "weight": 2 } }, { "key": "7163", "source": "495", "target": "231", "attributes": { "weight": 3 } }, { "key": "1666", "source": "495", "target": "224", "attributes": { "weight": 3 } }, { "key": "29080", "source": "495", "target": "2042", "attributes": { "weight": 1 } }, { "key": "23702", "source": "495", "target": "1312", "attributes": { "weight": 1 } }, { "key": "27893", "source": "495", "target": "339", "attributes": { "weight": 2 } }, { "key": "29062", "source": "495", "target": "440", "attributes": { "weight": 1 } }, { "key": "29100", "source": "495", "target": "2208", "attributes": { "weight": 1 } }, { "key": "29101", "source": "495", "target": "494", "attributes": { "weight": 1 } }, { "key": "7143", "source": "495", "target": "1070", "attributes": { "weight": 3 } }, { "key": "29072", "source": "495", "target": "1762", "attributes": { "weight": 2 } }, { "key": "7147", "source": "495", "target": "1116", "attributes": { "weight": 5 } }, { "key": "4058", "source": "495", "target": "458", "attributes": { "weight": 4 } }, { "key": "7158", "source": "495", "target": "189", "attributes": { "weight": 5 } }, { "key": "24559", "source": "495", "target": "790", "attributes": { "weight": 2 } }, { "key": "11402", "source": "495", "target": "1742", "attributes": { "weight": 2 } }, { "key": "12053", "source": "496", "target": "135", "attributes": { "weight": 4 } }, { "key": "10018", "source": "496", "target": "1093", "attributes": { "weight": 5 } }, { "key": "24382", "source": "496", "target": "190", "attributes": { "weight": 1 } }, { "key": "1673", "source": "496", "target": "193", "attributes": { "weight": 1 } }, { "key": "9138", "source": "496", "target": "442", "attributes": { "weight": 2 } }, { "key": "23707", "source": "496", "target": "220", "attributes": { "weight": 1 } }, { "key": "32857", "source": "496", "target": "472", "attributes": { "weight": 2 } }, { "key": "3637", "source": "496", "target": "1025", "attributes": { "weight": 2 } }, { "key": "24380", "source": "496", "target": "441", "attributes": { "weight": 1 } }, { "key": "11321", "source": "496", "target": "452", "attributes": { "weight": 1 } }, { "key": "17545", "source": "496", "target": "189", "attributes": { "weight": 2 } }, { "key": "17322", "source": "496", "target": "449", "attributes": { "weight": 1 } }, { "key": "24383", "source": "496", "target": "191", "attributes": { "weight": 1 } }, { "key": "17544", "source": "496", "target": "454", "attributes": { "weight": 2 } }, { "key": "24381", "source": "496", "target": "1358", "attributes": { "weight": 1 } }, { "key": "36180", "source": "496", "target": "1026", "attributes": { "weight": 1 } }, { "key": "10016", "source": "496", "target": "445", "attributes": { "weight": 3 } }, { "key": "35354", "source": "496", "target": "439", "attributes": { "weight": 1 } }, { "key": "1671", "source": "496", "target": "224", "attributes": { "weight": 1 } }, { "key": "30961", "source": "496", "target": "3", "attributes": { "weight": 1 } }, { "key": "24384", "source": "496", "target": "56", "attributes": { "weight": 1 } }, { "key": "10017", "source": "496", "target": "477", "attributes": { "weight": 3 } }, { "key": "1672", "source": "496", "target": "188", "attributes": { "weight": 1 } }, { "key": "26782", "source": "497", "target": "188", "attributes": { "weight": 2 } }, { "key": "26952", "source": "497", "target": "474", "attributes": { "weight": 1 } }, { "key": "13679", "source": "497", "target": "304", "attributes": { "weight": 2 } }, { "key": "26960", "source": "497", "target": "2096", "attributes": { "weight": 1 } }, { "key": "10944", "source": "497", "target": "457", "attributes": { "weight": 2 } }, { "key": "17063", "source": "497", "target": "70", "attributes": { "weight": 1 } }, { "key": "26935", "source": "497", "target": "59", "attributes": { "weight": 1 } }, { "key": "36184", "source": "497", "target": "1831", "attributes": { "weight": 1 } }, { "key": "36188", "source": "497", "target": "2287", "attributes": { "weight": 1 } }, { "key": "17061", "source": "497", "target": "429", "attributes": { "weight": 1 } }, { "key": "36186", "source": "497", "target": "1219", "attributes": { "weight": 1 } }, { "key": "26941", "source": "497", "target": "791", "attributes": { "weight": 2 } }, { "key": "26963", "source": "497", "target": "340", "attributes": { "weight": 3 } }, { "key": "36182", "source": "497", "target": "1023", "attributes": { "weight": 1 } }, { "key": "6499", "source": "497", "target": "468", "attributes": { "weight": 5 } }, { "key": "7422", "source": "497", "target": "674", "attributes": { "weight": 3 } }, { "key": "26965", "source": "497", "target": "1390", "attributes": { "weight": 1 } }, { "key": "1675", "source": "497", "target": "183", "attributes": { "weight": 3 } }, { "key": "11322", "source": "497", "target": "452", "attributes": { "weight": 2 } }, { "key": "17323", "source": "497", "target": "449", "attributes": { "weight": 1 } }, { "key": "7177", "source": "497", "target": "193", "attributes": { "weight": 1 } }, { "key": "11323", "source": "497", "target": "469", "attributes": { "weight": 1 } }, { "key": "26946", "source": "497", "target": "53", "attributes": { "weight": 1 } }, { "key": "26950", "source": "497", "target": "471", "attributes": { "weight": 1 } }, { "key": "26964", "source": "497", "target": "495", "attributes": { "weight": 2 } }, { "key": "26958", "source": "497", "target": "2270", "attributes": { "weight": 1 } }, { "key": "25487", "source": "497", "target": "488", "attributes": { "weight": 1 } }, { "key": "26966", "source": "497", "target": "498", "attributes": { "weight": 1 } }, { "key": "26945", "source": "497", "target": "465", "attributes": { "weight": 1 } }, { "key": "26959", "source": "497", "target": "595", "attributes": { "weight": 2 } }, { "key": "36191", "source": "497", "target": "2258", "attributes": { "weight": 1 } }, { "key": "1674", "source": "497", "target": "224", "attributes": { "weight": 1 } }, { "key": "36181", "source": "497", "target": "221", "attributes": { "weight": 1 } }, { "key": "26961", "source": "497", "target": "673", "attributes": { "weight": 1 } }, { "key": "36193", "source": "497", "target": "2262", "attributes": { "weight": 1 } }, { "key": "11404", "source": "497", "target": "1742", "attributes": { "weight": 2 } }, { "key": "36189", "source": "497", "target": "1137", "attributes": { "weight": 1 } }, { "key": "30490", "source": "497", "target": "1046", "attributes": { "weight": 1 } }, { "key": "26948", "source": "497", "target": "470", "attributes": { "weight": 2 } }, { "key": "17062", "source": "497", "target": "130", "attributes": { "weight": 5 } }, { "key": "4059", "source": "497", "target": "432", "attributes": { "weight": 2 } }, { "key": "36190", "source": "497", "target": "1836", "attributes": { "weight": 1 } }, { "key": "26937", "source": "497", "target": "440", "attributes": { "weight": 2 } }, { "key": "26955", "source": "497", "target": "1026", "attributes": { "weight": 2 } }, { "key": "9139", "source": "497", "target": "442", "attributes": { "weight": 2 } }, { "key": "26939", "source": "497", "target": "1360", "attributes": { "weight": 1 } }, { "key": "26951", "source": "497", "target": "473", "attributes": { "weight": 1 } }, { "key": "26949", "source": "497", "target": "2647", "attributes": { "weight": 1 } }, { "key": "26783", "source": "497", "target": "189", "attributes": { "weight": 2 } }, { "key": "26938", "source": "497", "target": "693", "attributes": { "weight": 1 } }, { "key": "26953", "source": "497", "target": "868", "attributes": { "weight": 1 } }, { "key": "7423", "source": "497", "target": "1063", "attributes": { "weight": 2 } }, { "key": "25397", "source": "497", "target": "433", "attributes": { "weight": 2 } }, { "key": "26947", "source": "497", "target": "8", "attributes": { "weight": 1 } }, { "key": "17981", "source": "497", "target": "454", "attributes": { "weight": 3 } }, { "key": "26936", "source": "497", "target": "223", "attributes": { "weight": 1 } }, { "key": "36183", "source": "497", "target": "2245", "attributes": { "weight": 1 } }, { "key": "26943", "source": "497", "target": "1024", "attributes": { "weight": 2 } }, { "key": "26957", "source": "497", "target": "479", "attributes": { "weight": 3 } }, { "key": "26944", "source": "497", "target": "464", "attributes": { "weight": 1 } }, { "key": "25486", "source": "497", "target": "447", "attributes": { "weight": 1 } }, { "key": "18353", "source": "497", "target": "1092", "attributes": { "weight": 2 } }, { "key": "25902", "source": "497", "target": "220", "attributes": { "weight": 2 } }, { "key": "25488", "source": "497", "target": "194", "attributes": { "weight": 1 } }, { "key": "26956", "source": "497", "target": "478", "attributes": { "weight": 1 } }, { "key": "12734", "source": "497", "target": "695", "attributes": { "weight": 2 } }, { "key": "36185", "source": "497", "target": "2248", "attributes": { "weight": 1 } }, { "key": "36192", "source": "497", "target": "1741", "attributes": { "weight": 1 } }, { "key": "36194", "source": "497", "target": "73", "attributes": { "weight": 1 } }, { "key": "26962", "source": "497", "target": "1750", "attributes": { "weight": 1 } }, { "key": "26940", "source": "497", "target": "52", "attributes": { "weight": 2 } }, { "key": "17526", "source": "497", "target": "358", "attributes": { "weight": 2 } }, { "key": "26967", "source": "497", "target": "57", "attributes": { "weight": 2 } }, { "key": "17064", "source": "497", "target": "1337", "attributes": { "weight": 1 } }, { "key": "26942", "source": "497", "target": "370", "attributes": { "weight": 1 } }, { "key": "36187", "source": "497", "target": "1998", "attributes": { "weight": 1 } }, { "key": "25120", "source": "497", "target": "1547", "attributes": { "weight": 2 } }, { "key": "26954", "source": "497", "target": "123", "attributes": { "weight": 1 } }, { "key": "25492", "source": "498", "target": "57", "attributes": { "weight": 1 } }, { "key": "21390", "source": "498", "target": "2244", "attributes": { "weight": 1 } }, { "key": "21387", "source": "498", "target": "222", "attributes": { "weight": 1 } }, { "key": "25490", "source": "498", "target": "442", "attributes": { "weight": 1 } }, { "key": "26784", "source": "498", "target": "454", "attributes": { "weight": 2 } }, { "key": "31388", "source": "498", "target": "674", "attributes": { "weight": 1 } }, { "key": "21385", "source": "498", "target": "1354", "attributes": { "weight": 1 } }, { "key": "21395", "source": "498", "target": "1367", "attributes": { "weight": 1 } }, { "key": "21396", "source": "498", "target": "2108", "attributes": { "weight": 1 } }, { "key": "25489", "source": "498", "target": "223", "attributes": { "weight": 1 } }, { "key": "21394", "source": "498", "target": "1836", "attributes": { "weight": 1 } }, { "key": "21391", "source": "498", "target": "449", "attributes": { "weight": 1 } }, { "key": "36197", "source": "498", "target": "2258", "attributes": { "weight": 1 } }, { "key": "36196", "source": "498", "target": "1831", "attributes": { "weight": 1 } }, { "key": "21388", "source": "498", "target": "51", "attributes": { "weight": 1 } }, { "key": "21393", "source": "498", "target": "2251", "attributes": { "weight": 1 } }, { "key": "21400", "source": "498", "target": "489", "attributes": { "weight": 1 } }, { "key": "36198", "source": "498", "target": "73", "attributes": { "weight": 1 } }, { "key": "1676", "source": "498", "target": "183", "attributes": { "weight": 1 } }, { "key": "21399", "source": "498", "target": "2111", "attributes": { "weight": 1 } }, { "key": "21401", "source": "498", "target": "2276", "attributes": { "weight": 1 } }, { "key": "26968", "source": "498", "target": "497", "attributes": { "weight": 1 } }, { "key": "21389", "source": "498", "target": "1070", "attributes": { "weight": 1 } }, { "key": "21398", "source": "498", "target": "2095", "attributes": { "weight": 1 } }, { "key": "21392", "source": "498", "target": "1832", "attributes": { "weight": 1 } }, { "key": "21384", "source": "498", "target": "429", "attributes": { "weight": 1 } }, { "key": "25491", "source": "498", "target": "1360", "attributes": { "weight": 1 } }, { "key": "21386", "source": "498", "target": "221", "attributes": { "weight": 1 } }, { "key": "26785", "source": "498", "target": "189", "attributes": { "weight": 2 } }, { "key": "21397", "source": "498", "target": "2267", "attributes": { "weight": 1 } }, { "key": "36195", "source": "498", "target": "1023", "attributes": { "weight": 1 } }, { "key": "15406", "source": "499", "target": "672", "attributes": { "weight": 1 } }, { "key": "26380", "source": "499", "target": "1258", "attributes": { "weight": 1 } }, { "key": "15403", "source": "499", "target": "188", "attributes": { "weight": 2 } }, { "key": "15405", "source": "499", "target": "490", "attributes": { "weight": 2 } }, { "key": "21405", "source": "499", "target": "2253", "attributes": { "weight": 1 } }, { "key": "1677", "source": "499", "target": "224", "attributes": { "weight": 1 } }, { "key": "15401", "source": "499", "target": "183", "attributes": { "weight": 2 } }, { "key": "24272", "source": "499", "target": "471", "attributes": { "weight": 1 } }, { "key": "15402", "source": "499", "target": "454", "attributes": { "weight": 2 } }, { "key": "21404", "source": "499", "target": "130", "attributes": { "weight": 3 } }, { "key": "26379", "source": "499", "target": "429", "attributes": { "weight": 1 } }, { "key": "15404", "source": "499", "target": "189", "attributes": { "weight": 2 } }, { "key": "21406", "source": "499", "target": "489", "attributes": { "weight": 1 } }, { "key": "7178", "source": "499", "target": "231", "attributes": { "weight": 1 } }, { "key": "37030", "source": "499", "target": "455", "attributes": { "weight": 1 } }, { "key": "29161", "source": "500", "target": "791", "attributes": { "weight": 2 } }, { "key": "29166", "source": "500", "target": "428", "attributes": { "weight": 1 } }, { "key": "31826", "source": "500", "target": "595", "attributes": { "weight": 1 } }, { "key": "29162", "source": "500", "target": "2263", "attributes": { "weight": 1 } }, { "key": "17065", "source": "500", "target": "674", "attributes": { "weight": 3 } }, { "key": "9144", "source": "500", "target": "442", "attributes": { "weight": 2 } }, { "key": "29164", "source": "500", "target": "484", "attributes": { "weight": 1 } }, { "key": "24273", "source": "500", "target": "130", "attributes": { "weight": 3 } }, { "key": "1683", "source": "500", "target": "490", "attributes": { "weight": 1 } }, { "key": "29167", "source": "500", "target": "488", "attributes": { "weight": 1 } }, { "key": "29107", "source": "500", "target": "495", "attributes": { "weight": 2 } }, { "key": "29157", "source": "500", "target": "222", "attributes": { "weight": 2 } }, { "key": "26788", "source": "500", "target": "454", "attributes": { "weight": 2 } }, { "key": "29165", "source": "500", "target": "486", "attributes": { "weight": 1 } }, { "key": "27308", "source": "500", "target": "57", "attributes": { "weight": 2 } }, { "key": "26790", "source": "500", "target": "193", "attributes": { "weight": 2 } }, { "key": "33737", "source": "500", "target": "135", "attributes": { "weight": 1 } }, { "key": "29156", "source": "500", "target": "220", "attributes": { "weight": 1 } }, { "key": "29160", "source": "500", "target": "447", "attributes": { "weight": 1 } }, { "key": "29158", "source": "500", "target": "223", "attributes": { "weight": 2 } }, { "key": "29159", "source": "500", "target": "2832", "attributes": { "weight": 1 } }, { "key": "29163", "source": "500", "target": "427", "attributes": { "weight": 1 } }, { "key": "29168", "source": "500", "target": "194", "attributes": { "weight": 1 } }, { "key": "30492", "source": "500", "target": "440", "attributes": { "weight": 1 } }, { "key": "6556", "source": "500", "target": "468", "attributes": { "weight": 3 } }, { "key": "26789", "source": "500", "target": "189", "attributes": { "weight": 2 } }, { "key": "1682", "source": "500", "target": "224", "attributes": { "weight": 1 } }, { "key": "3134", "source": "501", "target": "502", "attributes": { "weight": 1 } }, { "key": "1686", "source": "501", "target": "506", "attributes": { "weight": 2 } }, { "key": "3137", "source": "502", "target": "506", "attributes": { "weight": 1 } }, { "key": "1687", "source": "502", "target": "501", "attributes": { "weight": 2 } }, { "key": "3136", "source": "502", "target": "895", "attributes": { "weight": 1 } }, { "key": "1689", "source": "503", "target": "508", "attributes": { "weight": 1 } }, { "key": "1690", "source": "504", "target": "506", "attributes": { "weight": 1 } }, { "key": "1691", "source": "504", "target": "507", "attributes": { "weight": 1 } }, { "key": "1701", "source": "506", "target": "514", "attributes": { "weight": 1 } }, { "key": "1697", "source": "506", "target": "509", "attributes": { "weight": 1 } }, { "key": "1693", "source": "506", "target": "502", "attributes": { "weight": 2 } }, { "key": "2522", "source": "506", "target": "756", "attributes": { "weight": 2 } }, { "key": "1696", "source": "506", "target": "507", "attributes": { "weight": 3 } }, { "key": "10198", "source": "506", "target": "1322", "attributes": { "weight": 1 } }, { "key": "2520", "source": "506", "target": "726", "attributes": { "weight": 2 } }, { "key": "1694", "source": "506", "target": "503", "attributes": { "weight": 1 } }, { "key": "1695", "source": "506", "target": "504", "attributes": { "weight": 1 } }, { "key": "3141", "source": "506", "target": "899", "attributes": { "weight": 1 } }, { "key": "3138", "source": "506", "target": "895", "attributes": { "weight": 1 } }, { "key": "2519", "source": "506", "target": "711", "attributes": { "weight": 2 } }, { "key": "3139", "source": "506", "target": "501", "attributes": { "weight": 1 } }, { "key": "2521", "source": "506", "target": "753", "attributes": { "weight": 2 } }, { "key": "3142", "source": "507", "target": "900", "attributes": { "weight": 1 } }, { "key": "1703", "source": "507", "target": "506", "attributes": { "weight": 3 } }, { "key": "1702", "source": "507", "target": "504", "attributes": { "weight": 1 } }, { "key": "2523", "source": "507", "target": "718", "attributes": { "weight": 1 } }, { "key": "1704", "source": "508", "target": "506", "attributes": { "weight": 1 } }, { "key": "1711", "source": "514", "target": "506", "attributes": { "weight": 1 } }, { "key": "2493", "source": "517", "target": "524", "attributes": { "weight": 1 } }, { "key": "2490", "source": "517", "target": "731", "attributes": { "weight": 1 } }, { "key": "2498", "source": "517", "target": "770", "attributes": { "weight": 1 } }, { "key": "1716", "source": "517", "target": "519", "attributes": { "weight": 2 } }, { "key": "1722", "source": "517", "target": "529", "attributes": { "weight": 2 } }, { "key": "23097", "source": "517", "target": "724", "attributes": { "weight": 1 } }, { "key": "1720", "source": "517", "target": "527", "attributes": { "weight": 2 } }, { "key": "2494", "source": "517", "target": "525", "attributes": { "weight": 1 } }, { "key": "1721", "source": "517", "target": "528", "attributes": { "weight": 2 } }, { "key": "2489", "source": "517", "target": "518", "attributes": { "weight": 1 } }, { "key": "2488", "source": "517", "target": "711", "attributes": { "weight": 2 } }, { "key": "2492", "source": "517", "target": "737", "attributes": { "weight": 1 } }, { "key": "2491", "source": "517", "target": "521", "attributes": { "weight": 1 } }, { "key": "1719", "source": "517", "target": "526", "attributes": { "weight": 2 } }, { "key": "1718", "source": "517", "target": "523", "attributes": { "weight": 1 } }, { "key": "1723", "source": "517", "target": "537", "attributes": { "weight": 1 } }, { "key": "2495", "source": "517", "target": "531", "attributes": { "weight": 1 } }, { "key": "1725", "source": "518", "target": "517", "attributes": { "weight": 2 } }, { "key": "2511", "source": "518", "target": "523", "attributes": { "weight": 1 } }, { "key": "1727", "source": "519", "target": "526", "attributes": { "weight": 2 } }, { "key": "1726", "source": "519", "target": "517", "attributes": { "weight": 1 } }, { "key": "2549", "source": "521", "target": "517", "attributes": { "weight": 1 } }, { "key": "1729", "source": "521", "target": "525", "attributes": { "weight": 2 } }, { "key": "2557", "source": "523", "target": "517", "attributes": { "weight": 1 } }, { "key": "1731", "source": "523", "target": "518", "attributes": { "weight": 2 } }, { "key": "2565", "source": "525", "target": "521", "attributes": { "weight": 1 } }, { "key": "2566", "source": "525", "target": "523", "attributes": { "weight": 1 } }, { "key": "1733", "source": "525", "target": "517", "attributes": { "weight": 2 } }, { "key": "1734", "source": "526", "target": "517", "attributes": { "weight": 2 } }, { "key": "1735", "source": "526", "target": "519", "attributes": { "weight": 1 } }, { "key": "2567", "source": "526", "target": "768", "attributes": { "weight": 1 } }, { "key": "2568", "source": "527", "target": "517", "attributes": { "weight": 1 } }, { "key": "2570", "source": "528", "target": "755", "attributes": { "weight": 1 } }, { "key": "1738", "source": "529", "target": "531", "attributes": { "weight": 2 } }, { "key": "2594", "source": "531", "target": "744", "attributes": { "weight": 1 } }, { "key": "1741", "source": "532", "target": "517", "attributes": { "weight": 1 } }, { "key": "1743", "source": "534", "target": "517", "attributes": { "weight": 1 } }, { "key": "1746", "source": "537", "target": "532", "attributes": { "weight": 1 } }, { "key": "2743", "source": "540", "target": "804", "attributes": { "weight": 1 } }, { "key": "1749", "source": "540", "target": "407", "attributes": { "weight": 1 } }, { "key": "1750", "source": "541", "target": "407", "attributes": { "weight": 3 } }, { "key": "1751", "source": "542", "target": "553", "attributes": { "weight": 2 } }, { "key": "26970", "source": "542", "target": "407", "attributes": { "weight": 1 } }, { "key": "1752", "source": "543", "target": "547", "attributes": { "weight": 1 } }, { "key": "26971", "source": "543", "target": "407", "attributes": { "weight": 2 } }, { "key": "14046", "source": "544", "target": "1031", "attributes": { "weight": 1 } }, { "key": "1754", "source": "544", "target": "549", "attributes": { "weight": 1 } }, { "key": "11613", "source": "544", "target": "370", "attributes": { "weight": 2 } }, { "key": "15961", "source": "544", "target": "338", "attributes": { "weight": 1 } }, { "key": "10708", "source": "544", "target": "1314", "attributes": { "weight": 1 } }, { "key": "1753", "source": "544", "target": "407", "attributes": { "weight": 4 } }, { "key": "18242", "source": "544", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5481", "source": "544", "target": "371", "attributes": { "weight": 2 } }, { "key": "5479", "source": "544", "target": "779", "attributes": { "weight": 2 } }, { "key": "5480", "source": "544", "target": "368", "attributes": { "weight": 2 } }, { "key": "34503", "source": "544", "target": "1233", "attributes": { "weight": 1 } }, { "key": "7338", "source": "544", "target": "1063", "attributes": { "weight": 2 } }, { "key": "34502", "source": "544", "target": "1047", "attributes": { "weight": 1 } }, { "key": "8838", "source": "544", "target": "195", "attributes": { "weight": 2 } }, { "key": "34534", "source": "545", "target": "1233", "attributes": { "weight": 1 } }, { "key": "28585", "source": "545", "target": "199", "attributes": { "weight": 1 } }, { "key": "26972", "source": "545", "target": "1314", "attributes": { "weight": 2 } }, { "key": "14055", "source": "545", "target": "1031", "attributes": { "weight": 2 } }, { "key": "16018", "source": "545", "target": "195", "attributes": { "weight": 1 } }, { "key": "1756", "source": "545", "target": "407", "attributes": { "weight": 4 } }, { "key": "14054", "source": "545", "target": "391", "attributes": { "weight": 1 } }, { "key": "5563", "source": "545", "target": "371", "attributes": { "weight": 3 } }, { "key": "1757", "source": "546", "target": "550", "attributes": { "weight": 1 } }, { "key": "1758", "source": "547", "target": "407", "attributes": { "weight": 3 } }, { "key": "26973", "source": "547", "target": "543", "attributes": { "weight": 1 } }, { "key": "1759", "source": "548", "target": "407", "attributes": { "weight": 3 } }, { "key": "1771", "source": "549", "target": "544", "attributes": { "weight": 1 } }, { "key": "1772", "source": "550", "target": "407", "attributes": { "weight": 3 } }, { "key": "1775", "source": "552", "target": "407", "attributes": { "weight": 1 } }, { "key": "1776", "source": "553", "target": "548", "attributes": { "weight": 1 } }, { "key": "1777", "source": "553", "target": "407", "attributes": { "weight": 3 } }, { "key": "1779", "source": "554", "target": "35", "attributes": { "weight": 4 } }, { "key": "1780", "source": "555", "target": "559", "attributes": { "weight": 1 } }, { "key": "1781", "source": "555", "target": "163", "attributes": { "weight": 2 } }, { "key": "21579", "source": "556", "target": "358", "attributes": { "weight": 1 } }, { "key": "33840", "source": "556", "target": "1133", "attributes": { "weight": 2 } }, { "key": "36225", "source": "556", "target": "1386", "attributes": { "weight": 1 } }, { "key": "31109", "source": "556", "target": "1765", "attributes": { "weight": 2 } }, { "key": "1782", "source": "556", "target": "163", "attributes": { "weight": 2 } }, { "key": "27869", "source": "556", "target": "339", "attributes": { "weight": 2 } }, { "key": "17905", "source": "556", "target": "1380", "attributes": { "weight": 2 } }, { "key": "1784", "source": "557", "target": "163", "attributes": { "weight": 2 } }, { "key": "1783", "source": "557", "target": "555", "attributes": { "weight": 1 } }, { "key": "18087", "source": "558", "target": "1787", "attributes": { "weight": 1 } }, { "key": "1785", "source": "558", "target": "561", "attributes": { "weight": 3 } }, { "key": "1786", "source": "559", "target": "555", "attributes": { "weight": 1 } }, { "key": "11410", "source": "560", "target": "1538", "attributes": { "weight": 1 } }, { "key": "36240", "source": "560", "target": "358", "attributes": { "weight": 1 } }, { "key": "15334", "source": "560", "target": "454", "attributes": { "weight": 1 } }, { "key": "1787", "source": "560", "target": "163", "attributes": { "weight": 3 } }, { "key": "17941", "source": "560", "target": "1380", "attributes": { "weight": 2 } }, { "key": "17942", "source": "560", "target": "1541", "attributes": { "weight": 2 } }, { "key": "1788", "source": "560", "target": "562", "attributes": { "weight": 2 } }, { "key": "32563", "source": "560", "target": "791", "attributes": { "weight": 1 } }, { "key": "36241", "source": "560", "target": "1386", "attributes": { "weight": 1 } }, { "key": "11413", "source": "561", "target": "1787", "attributes": { "weight": 2 } }, { "key": "1790", "source": "561", "target": "163", "attributes": { "weight": 2 } }, { "key": "1789", "source": "561", "target": "558", "attributes": { "weight": 1 } }, { "key": "17983", "source": "562", "target": "1380", "attributes": { "weight": 1 } }, { "key": "26098", "source": "562", "target": "163", "attributes": { "weight": 2 } }, { "key": "17984", "source": "562", "target": "1541", "attributes": { "weight": 2 } }, { "key": "26097", "source": "562", "target": "1527", "attributes": { "weight": 3 } }, { "key": "15408", "source": "562", "target": "454", "attributes": { "weight": 1 } }, { "key": "1797", "source": "562", "target": "560", "attributes": { "weight": 1 } }, { "key": "24832", "source": "562", "target": "638", "attributes": { "weight": 1 } }, { "key": "1798", "source": "563", "target": "566", "attributes": { "weight": 1 } }, { "key": "1801", "source": "563", "target": "93", "attributes": { "weight": 3 } }, { "key": "1800", "source": "563", "target": "573", "attributes": { "weight": 1 } }, { "key": "1799", "source": "563", "target": "86", "attributes": { "weight": 1 } }, { "key": "9557", "source": "564", "target": "171", "attributes": { "weight": 3 } }, { "key": "27574", "source": "564", "target": "2701", "attributes": { "weight": 1 } }, { "key": "9551", "source": "564", "target": "567", "attributes": { "weight": 1 } }, { "key": "27577", "source": "564", "target": "173", "attributes": { "weight": 1 } }, { "key": "9558", "source": "564", "target": "1629", "attributes": { "weight": 2 } }, { "key": "27578", "source": "564", "target": "96", "attributes": { "weight": 1 } }, { "key": "30548", "source": "564", "target": "572", "attributes": { "weight": 1 } }, { "key": "9564", "source": "564", "target": "1639", "attributes": { "weight": 2 } }, { "key": "3158", "source": "564", "target": "305", "attributes": { "weight": 2 } }, { "key": "9561", "source": "564", "target": "178", "attributes": { "weight": 4 } }, { "key": "9559", "source": "564", "target": "172", "attributes": { "weight": 1 } }, { "key": "27579", "source": "564", "target": "1633", "attributes": { "weight": 1 } }, { "key": "9560", "source": "564", "target": "1634", "attributes": { "weight": 2 } }, { "key": "9553", "source": "564", "target": "168", "attributes": { "weight": 5 } }, { "key": "27571", "source": "564", "target": "1620", "attributes": { "weight": 1 } }, { "key": "25664", "source": "564", "target": "278", "attributes": { "weight": 4 } }, { "key": "27575", "source": "564", "target": "2705", "attributes": { "weight": 1 } }, { "key": "27576", "source": "564", "target": "1844", "attributes": { "weight": 1 } }, { "key": "27572", "source": "564", "target": "2699", "attributes": { "weight": 1 } }, { "key": "9563", "source": "564", "target": "180", "attributes": { "weight": 2 } }, { "key": "9562", "source": "564", "target": "312", "attributes": { "weight": 2 } }, { "key": "9556", "source": "564", "target": "1626", "attributes": { "weight": 2 } }, { "key": "9550", "source": "564", "target": "259", "attributes": { "weight": 1 } }, { "key": "9554", "source": "564", "target": "1623", "attributes": { "weight": 1 } }, { "key": "9552", "source": "564", "target": "167", "attributes": { "weight": 1 } }, { "key": "24913", "source": "564", "target": "580", "attributes": { "weight": 2 } }, { "key": "9555", "source": "564", "target": "1625", "attributes": { "weight": 1 } }, { "key": "1802", "source": "564", "target": "93", "attributes": { "weight": 2 } }, { "key": "12360", "source": "564", "target": "565", "attributes": { "weight": 2 } }, { "key": "27573", "source": "564", "target": "1627", "attributes": { "weight": 1 } }, { "key": "12371", "source": "565", "target": "178", "attributes": { "weight": 2 } }, { "key": "12370", "source": "565", "target": "305", "attributes": { "weight": 1 } }, { "key": "12369", "source": "565", "target": "1844", "attributes": { "weight": 2 } }, { "key": "12368", "source": "565", "target": "297", "attributes": { "weight": 1 } }, { "key": "1804", "source": "565", "target": "93", "attributes": { "weight": 2 } }, { "key": "12365", "source": "565", "target": "89", "attributes": { "weight": 1 } }, { "key": "9569", "source": "565", "target": "171", "attributes": { "weight": 3 } }, { "key": "12363", "source": "565", "target": "164", "attributes": { "weight": 2 } }, { "key": "12362", "source": "565", "target": "564", "attributes": { "weight": 2 } }, { "key": "12366", "source": "565", "target": "168", "attributes": { "weight": 2 } }, { "key": "12364", "source": "565", "target": "567", "attributes": { "weight": 2 } }, { "key": "12367", "source": "565", "target": "359", "attributes": { "weight": 1 } }, { "key": "12372", "source": "565", "target": "1637", "attributes": { "weight": 2 } }, { "key": "29942", "source": "566", "target": "1952", "attributes": { "weight": 1 } }, { "key": "1819", "source": "566", "target": "576", "attributes": { "weight": 1 } }, { "key": "1814", "source": "566", "target": "573", "attributes": { "weight": 3 } }, { "key": "1828", "source": "566", "target": "178", "attributes": { "weight": 4 } }, { "key": "1808", "source": "566", "target": "84", "attributes": { "weight": 1 } }, { "key": "1822", "source": "566", "target": "93", "attributes": { "weight": 5 } }, { "key": "1824", "source": "566", "target": "95", "attributes": { "weight": 1 } }, { "key": "1816", "source": "566", "target": "168", "attributes": { "weight": 3 } }, { "key": "29799", "source": "566", "target": "580", "attributes": { "weight": 1 } }, { "key": "1820", "source": "566", "target": "91", "attributes": { "weight": 1 } }, { "key": "1821", "source": "566", "target": "92", "attributes": { "weight": 1 } }, { "key": "1811", "source": "566", "target": "569", "attributes": { "weight": 1 } }, { "key": "37399", "source": "566", "target": "171", "attributes": { "weight": 1 } }, { "key": "1812", "source": "566", "target": "88", "attributes": { "weight": 1 } }, { "key": "1813", "source": "566", "target": "571", "attributes": { "weight": 1 } }, { "key": "1831", "source": "566", "target": "586", "attributes": { "weight": 1 } }, { "key": "1830", "source": "566", "target": "584", "attributes": { "weight": 1 } }, { "key": "1807", "source": "566", "target": "563", "attributes": { "weight": 1 } }, { "key": "1832", "source": "566", "target": "100", "attributes": { "weight": 1 } }, { "key": "1817", "source": "566", "target": "575", "attributes": { "weight": 1 } }, { "key": "1826", "source": "566", "target": "96", "attributes": { "weight": 1 } }, { "key": "1827", "source": "566", "target": "582", "attributes": { "weight": 4 } }, { "key": "1809", "source": "566", "target": "568", "attributes": { "weight": 1 } }, { "key": "1825", "source": "566", "target": "581", "attributes": { "weight": 1 } }, { "key": "1815", "source": "566", "target": "90", "attributes": { "weight": 1 } }, { "key": "1818", "source": "566", "target": "278", "attributes": { "weight": 7 } }, { "key": "1823", "source": "566", "target": "94", "attributes": { "weight": 1 } }, { "key": "1829", "source": "566", "target": "98", "attributes": { "weight": 1 } }, { "key": "1810", "source": "566", "target": "86", "attributes": { "weight": 1 } }, { "key": "22414", "source": "567", "target": "572", "attributes": { "weight": 7 } }, { "key": "31852", "source": "567", "target": "2115", "attributes": { "weight": 1 } }, { "key": "1833", "source": "567", "target": "93", "attributes": { "weight": 3 } }, { "key": "14432", "source": "567", "target": "272", "attributes": { "weight": 2 } }, { "key": "30552", "source": "567", "target": "172", "attributes": { "weight": 1 } }, { "key": "13931", "source": "567", "target": "168", "attributes": { "weight": 4 } }, { "key": "22406", "source": "567", "target": "2316", "attributes": { "weight": 4 } }, { "key": "8650", "source": "567", "target": "171", "attributes": { "weight": 10 } }, { "key": "30551", "source": "567", "target": "1623", "attributes": { "weight": 1 } }, { "key": "22418", "source": "567", "target": "1624", "attributes": { "weight": 5 } }, { "key": "35461", "source": "567", "target": "177", "attributes": { "weight": 1 } }, { "key": "22440", "source": "567", "target": "2339", "attributes": { "weight": 3 } }, { "key": "30550", "source": "567", "target": "169", "attributes": { "weight": 1 } }, { "key": "22422", "source": "567", "target": "297", "attributes": { "weight": 1 } }, { "key": "22424", "source": "567", "target": "580", "attributes": { "weight": 3 } }, { "key": "22413", "source": "567", "target": "2322", "attributes": { "weight": 3 } }, { "key": "22435", "source": "567", "target": "1635", "attributes": { "weight": 3 } }, { "key": "22439", "source": "567", "target": "2338", "attributes": { "weight": 3 } }, { "key": "25267", "source": "567", "target": "2342", "attributes": { "weight": 1 } }, { "key": "22432", "source": "567", "target": "2335", "attributes": { "weight": 3 } }, { "key": "30549", "source": "567", "target": "1621", "attributes": { "weight": 1 } }, { "key": "22431", "source": "567", "target": "2334", "attributes": { "weight": 2 } }, { "key": "22436", "source": "567", "target": "1636", "attributes": { "weight": 3 } }, { "key": "22409", "source": "567", "target": "1618", "attributes": { "weight": 5 } }, { "key": "22416", "source": "567", "target": "278", "attributes": { "weight": 3 } }, { "key": "22428", "source": "567", "target": "1631", "attributes": { "weight": 6 } }, { "key": "11035", "source": "567", "target": "1036", "attributes": { "weight": 3 } }, { "key": "9573", "source": "567", "target": "564", "attributes": { "weight": 1 } }, { "key": "24387", "source": "567", "target": "2496", "attributes": { "weight": 1 } }, { "key": "22433", "source": "567", "target": "305", "attributes": { "weight": 2 } }, { "key": "22426", "source": "567", "target": "304", "attributes": { "weight": 1 } }, { "key": "22405", "source": "567", "target": "2315", "attributes": { "weight": 3 } }, { "key": "22417", "source": "567", "target": "359", "attributes": { "weight": 4 } }, { "key": "22411", "source": "567", "target": "1619", "attributes": { "weight": 2 } }, { "key": "22412", "source": "567", "target": "2321", "attributes": { "weight": 4 } }, { "key": "27843", "source": "567", "target": "339", "attributes": { "weight": 1 } }, { "key": "22437", "source": "567", "target": "1637", "attributes": { "weight": 6 } }, { "key": "12569", "source": "567", "target": "180", "attributes": { "weight": 3 } }, { "key": "12373", "source": "567", "target": "565", "attributes": { "weight": 2 } }, { "key": "14431", "source": "567", "target": "259", "attributes": { "weight": 2 } }, { "key": "22441", "source": "567", "target": "2341", "attributes": { "weight": 3 } }, { "key": "22427", "source": "567", "target": "2332", "attributes": { "weight": 4 } }, { "key": "22415", "source": "567", "target": "707", "attributes": { "weight": 2 } }, { "key": "22438", "source": "567", "target": "310", "attributes": { "weight": 3 } }, { "key": "12934", "source": "567", "target": "327", "attributes": { "weight": 3 } }, { "key": "22442", "source": "567", "target": "2343", "attributes": { "weight": 2 } }, { "key": "22421", "source": "567", "target": "2328", "attributes": { "weight": 3 } }, { "key": "22419", "source": "567", "target": "170", "attributes": { "weight": 2 } }, { "key": "18054", "source": "567", "target": "173", "attributes": { "weight": 2 } }, { "key": "27705", "source": "567", "target": "1042", "attributes": { "weight": 2 } }, { "key": "25266", "source": "567", "target": "2325", "attributes": { "weight": 1 } }, { "key": "22410", "source": "567", "target": "2281", "attributes": { "weight": 4 } }, { "key": "22429", "source": "567", "target": "2333", "attributes": { "weight": 2 } }, { "key": "22408", "source": "567", "target": "2319", "attributes": { "weight": 4 } }, { "key": "22443", "source": "567", "target": "1640", "attributes": { "weight": 4 } }, { "key": "31853", "source": "567", "target": "1060", "attributes": { "weight": 1 } }, { "key": "22423", "source": "567", "target": "2331", "attributes": { "weight": 2 } }, { "key": "22407", "source": "567", "target": "164", "attributes": { "weight": 3 } }, { "key": "22420", "source": "567", "target": "1628", "attributes": { "weight": 2 } }, { "key": "22430", "source": "567", "target": "1632", "attributes": { "weight": 4 } }, { "key": "22434", "source": "567", "target": "178", "attributes": { "weight": 10 } }, { "key": "17347", "source": "567", "target": "358", "attributes": { "weight": 2 } }, { "key": "22425", "source": "567", "target": "1630", "attributes": { "weight": 4 } }, { "key": "30350", "source": "567", "target": "1046", "attributes": { "weight": 1 } }, { "key": "1834", "source": "568", "target": "566", "attributes": { "weight": 1 } }, { "key": "15412", "source": "569", "target": "91", "attributes": { "weight": 1 } }, { "key": "15411", "source": "569", "target": "164", "attributes": { "weight": 1 } }, { "key": "1841", "source": "569", "target": "578", "attributes": { "weight": 1 } }, { "key": "1840", "source": "569", "target": "168", "attributes": { "weight": 3 } }, { "key": "1842", "source": "569", "target": "178", "attributes": { "weight": 3 } }, { "key": "1839", "source": "569", "target": "566", "attributes": { "weight": 1 } }, { "key": "26839", "source": "569", "target": "278", "attributes": { "weight": 2 } }, { "key": "30356", "source": "569", "target": "1046", "attributes": { "weight": 1 } }, { "key": "1843", "source": "570", "target": "93", "attributes": { "weight": 1 } }, { "key": "1846", "source": "571", "target": "573", "attributes": { "weight": 1 } }, { "key": "1845", "source": "571", "target": "566", "attributes": { "weight": 1 } }, { "key": "1847", "source": "571", "target": "93", "attributes": { "weight": 2 } }, { "key": "25273", "source": "572", "target": "2578", "attributes": { "weight": 1 } }, { "key": "22461", "source": "572", "target": "1628", "attributes": { "weight": 2 } }, { "key": "14538", "source": "572", "target": "259", "attributes": { "weight": 1 } }, { "key": "22459", "source": "572", "target": "2326", "attributes": { "weight": 2 } }, { "key": "22462", "source": "572", "target": "297", "attributes": { "weight": 3 } }, { "key": "22465", "source": "572", "target": "1632", "attributes": { "weight": 1 } }, { "key": "29946", "source": "572", "target": "1952", "attributes": { "weight": 1 } }, { "key": "14196", "source": "572", "target": "168", "attributes": { "weight": 5 } }, { "key": "22463", "source": "572", "target": "580", "attributes": { "weight": 2 } }, { "key": "22464", "source": "572", "target": "173", "attributes": { "weight": 5 } }, { "key": "22452", "source": "572", "target": "2320", "attributes": { "weight": 2 } }, { "key": "22455", "source": "572", "target": "707", "attributes": { "weight": 2 } }, { "key": "14539", "source": "572", "target": "312", "attributes": { "weight": 1 } }, { "key": "22467", "source": "572", "target": "1636", "attributes": { "weight": 2 } }, { "key": "22469", "source": "572", "target": "310", "attributes": { "weight": 3 } }, { "key": "22457", "source": "572", "target": "1624", "attributes": { "weight": 3 } }, { "key": "25272", "source": "572", "target": "2572", "attributes": { "weight": 1 } }, { "key": "18383", "source": "572", "target": "1621", "attributes": { "weight": 1 } }, { "key": "12573", "source": "572", "target": "180", "attributes": { "weight": 3 } }, { "key": "22466", "source": "572", "target": "178", "attributes": { "weight": 10 } }, { "key": "25157", "source": "572", "target": "165", "attributes": { "weight": 2 } }, { "key": "25156", "source": "572", "target": "1143", "attributes": { "weight": 2 } }, { "key": "22454", "source": "572", "target": "567", "attributes": { "weight": 7 } }, { "key": "25270", "source": "572", "target": "2281", "attributes": { "weight": 1 } }, { "key": "27943", "source": "572", "target": "305", "attributes": { "weight": 1 } }, { "key": "30555", "source": "572", "target": "564", "attributes": { "weight": 1 } }, { "key": "22468", "source": "572", "target": "1637", "attributes": { "weight": 4 } }, { "key": "22451", "source": "572", "target": "1617", "attributes": { "weight": 4 } }, { "key": "22472", "source": "572", "target": "1640", "attributes": { "weight": 3 } }, { "key": "9577", "source": "572", "target": "171", "attributes": { "weight": 4 } }, { "key": "35372", "source": "572", "target": "2974", "attributes": { "weight": 1 } }, { "key": "22470", "source": "572", "target": "2337", "attributes": { "weight": 1 } }, { "key": "22458", "source": "572", "target": "170", "attributes": { "weight": 2 } }, { "key": "31202", "source": "572", "target": "2710", "attributes": { "weight": 1 } }, { "key": "32267", "source": "572", "target": "164", "attributes": { "weight": 1 } }, { "key": "22453", "source": "572", "target": "1166", "attributes": { "weight": 3 } }, { "key": "25271", "source": "572", "target": "2331", "attributes": { "weight": 1 } }, { "key": "22460", "source": "572", "target": "2327", "attributes": { "weight": 2 } }, { "key": "1848", "source": "572", "target": "93", "attributes": { "weight": 2 } }, { "key": "22456", "source": "572", "target": "278", "attributes": { "weight": 3 } }, { "key": "30289", "source": "572", "target": "1618", "attributes": { "weight": 1 } }, { "key": "22471", "source": "572", "target": "2340", "attributes": { "weight": 2 } }, { "key": "1855", "source": "573", "target": "96", "attributes": { "weight": 1 } }, { "key": "1853", "source": "573", "target": "576", "attributes": { "weight": 1 } }, { "key": "1854", "source": "573", "target": "93", "attributes": { "weight": 3 } }, { "key": "1856", "source": "573", "target": "100", "attributes": { "weight": 1 } }, { "key": "1851", "source": "573", "target": "86", "attributes": { "weight": 1 } }, { "key": "1850", "source": "573", "target": "566", "attributes": { "weight": 3 } }, { "key": "1852", "source": "573", "target": "571", "attributes": { "weight": 1 } }, { "key": "1849", "source": "573", "target": "563", "attributes": { "weight": 1 } }, { "key": "27676", "source": "573", "target": "178", "attributes": { "weight": 2 } }, { "key": "35482", "source": "574", "target": "264", "attributes": { "weight": 1 } }, { "key": "35485", "source": "574", "target": "1859", "attributes": { "weight": 1 } }, { "key": "35452", "source": "574", "target": "3199", "attributes": { "weight": 2 } }, { "key": "12577", "source": "574", "target": "180", "attributes": { "weight": 3 } }, { "key": "25689", "source": "574", "target": "278", "attributes": { "weight": 3 } }, { "key": "11738", "source": "574", "target": "905", "attributes": { "weight": 2 } }, { "key": "35492", "source": "574", "target": "3209", "attributes": { "weight": 1 } }, { "key": "35488", "source": "574", "target": "3204", "attributes": { "weight": 1 } }, { "key": "12491", "source": "574", "target": "1857", "attributes": { "weight": 3 } }, { "key": "25542", "source": "574", "target": "174", "attributes": { "weight": 2 } }, { "key": "35491", "source": "574", "target": "3207", "attributes": { "weight": 1 } }, { "key": "14204", "source": "574", "target": "168", "attributes": { "weight": 4 } }, { "key": "11146", "source": "574", "target": "454", "attributes": { "weight": 2 } }, { "key": "18384", "source": "574", "target": "1621", "attributes": { "weight": 1 } }, { "key": "5089", "source": "574", "target": "580", "attributes": { "weight": 3 } }, { "key": "35483", "source": "574", "target": "3202", "attributes": { "weight": 1 } }, { "key": "30446", "source": "574", "target": "164", "attributes": { "weight": 4 } }, { "key": "25690", "source": "574", "target": "582", "attributes": { "weight": 2 } }, { "key": "1860", "source": "574", "target": "93", "attributes": { "weight": 1 } }, { "key": "35484", "source": "574", "target": "3", "attributes": { "weight": 1 } }, { "key": "35487", "source": "574", "target": "176", "attributes": { "weight": 1 } }, { "key": "24944", "source": "574", "target": "170", "attributes": { "weight": 2 } }, { "key": "24943", "source": "574", "target": "698", "attributes": { "weight": 2 } }, { "key": "14577", "source": "574", "target": "259", "attributes": { "weight": 2 } }, { "key": "35451", "source": "574", "target": "3198", "attributes": { "weight": 2 } }, { "key": "8198", "source": "574", "target": "1513", "attributes": { "weight": 1 } }, { "key": "30512", "source": "574", "target": "1549", "attributes": { "weight": 2 } }, { "key": "14578", "source": "574", "target": "304", "attributes": { "weight": 2 } }, { "key": "30513", "source": "574", "target": "1642", "attributes": { "weight": 2 } }, { "key": "24945", "source": "574", "target": "579", "attributes": { "weight": 2 } }, { "key": "35489", "source": "574", "target": "3200", "attributes": { "weight": 1 } }, { "key": "35449", "source": "574", "target": "1855", "attributes": { "weight": 2 } }, { "key": "12492", "source": "574", "target": "177", "attributes": { "weight": 3 } }, { "key": "28364", "source": "574", "target": "707", "attributes": { "weight": 1 } }, { "key": "9578", "source": "574", "target": "171", "attributes": { "weight": 3 } }, { "key": "28703", "source": "574", "target": "578", "attributes": { "weight": 1 } }, { "key": "27952", "source": "574", "target": "305", "attributes": { "weight": 2 } }, { "key": "35493", "source": "574", "target": "1860", "attributes": { "weight": 1 } }, { "key": "27677", "source": "574", "target": "178", "attributes": { "weight": 4 } }, { "key": "31602", "source": "574", "target": "595", "attributes": { "weight": 1 } }, { "key": "8763", "source": "574", "target": "175", "attributes": { "weight": 3 } }, { "key": "35450", "source": "574", "target": "1856", "attributes": { "weight": 2 } }, { "key": "8762", "source": "574", "target": "442", "attributes": { "weight": 3 } }, { "key": "35490", "source": "574", "target": "3206", "attributes": { "weight": 1 } }, { "key": "35486", "source": "574", "target": "3203", "attributes": { "weight": 1 } }, { "key": "27951", "source": "574", "target": "301", "attributes": { "weight": 1 } }, { "key": "1866", "source": "575", "target": "566", "attributes": { "weight": 1 } }, { "key": "1875", "source": "576", "target": "93", "attributes": { "weight": 3 } }, { "key": "1871", "source": "576", "target": "86", "attributes": { "weight": 1 } }, { "key": "1874", "source": "576", "target": "168", "attributes": { "weight": 1 } }, { "key": "1873", "source": "576", "target": "90", "attributes": { "weight": 1 } }, { "key": "1870", "source": "576", "target": "566", "attributes": { "weight": 1 } }, { "key": "1877", "source": "576", "target": "178", "attributes": { "weight": 1 } }, { "key": "1872", "source": "576", "target": "573", "attributes": { "weight": 1 } }, { "key": "1876", "source": "576", "target": "96", "attributes": { "weight": 1 } }, { "key": "1881", "source": "577", "target": "93", "attributes": { "weight": 2 } }, { "key": "32943", "source": "578", "target": "178", "attributes": { "weight": 1 } }, { "key": "13286", "source": "578", "target": "318", "attributes": { "weight": 2 } }, { "key": "28705", "source": "578", "target": "1857", "attributes": { "weight": 1 } }, { "key": "28070", "source": "578", "target": "287", "attributes": { "weight": 1 } }, { "key": "13287", "source": "578", "target": "322", "attributes": { "weight": 2 } }, { "key": "13279", "source": "578", "target": "167", "attributes": { "weight": 4 } }, { "key": "13275", "source": "578", "target": "260", "attributes": { "weight": 2 } }, { "key": "18398", "source": "578", "target": "1621", "attributes": { "weight": 1 } }, { "key": "28704", "source": "578", "target": "164", "attributes": { "weight": 2 } }, { "key": "13280", "source": "578", "target": "299", "attributes": { "weight": 2 } }, { "key": "28708", "source": "578", "target": "1921", "attributes": { "weight": 1 } }, { "key": "18397", "source": "578", "target": "830", "attributes": { "weight": 1 } }, { "key": "28429", "source": "578", "target": "580", "attributes": { "weight": 2 } }, { "key": "13284", "source": "578", "target": "839", "attributes": { "weight": 4 } }, { "key": "13281", "source": "578", "target": "300", "attributes": { "weight": 2 } }, { "key": "13277", "source": "578", "target": "264", "attributes": { "weight": 2 } }, { "key": "9665", "source": "578", "target": "171", "attributes": { "weight": 1 } }, { "key": "28709", "source": "578", "target": "1871", "attributes": { "weight": 1 } }, { "key": "28706", "source": "578", "target": "698", "attributes": { "weight": 1 } }, { "key": "1883", "source": "578", "target": "569", "attributes": { "weight": 1 } }, { "key": "12598", "source": "578", "target": "180", "attributes": { "weight": 3 } }, { "key": "14733", "source": "578", "target": "272", "attributes": { "weight": 2 } }, { "key": "28428", "source": "578", "target": "170", "attributes": { "weight": 2 } }, { "key": "14734", "source": "578", "target": "283", "attributes": { "weight": 2 } }, { "key": "13283", "source": "578", "target": "304", "attributes": { "weight": 2 } }, { "key": "26845", "source": "578", "target": "278", "attributes": { "weight": 3 } }, { "key": "3206", "source": "578", "target": "305", "attributes": { "weight": 6 } }, { "key": "12596", "source": "578", "target": "905", "attributes": { "weight": 3 } }, { "key": "37476", "source": "578", "target": "323", "attributes": { "weight": 1 } }, { "key": "13285", "source": "578", "target": "307", "attributes": { "weight": 2 } }, { "key": "13278", "source": "578", "target": "276", "attributes": { "weight": 2 } }, { "key": "12597", "source": "578", "target": "1513", "attributes": { "weight": 2 } }, { "key": "13282", "source": "578", "target": "301", "attributes": { "weight": 2 } }, { "key": "28707", "source": "578", "target": "574", "attributes": { "weight": 1 } }, { "key": "12850", "source": "578", "target": "582", "attributes": { "weight": 2 } }, { "key": "1884", "source": "578", "target": "93", "attributes": { "weight": 4 } }, { "key": "13288", "source": "578", "target": "327", "attributes": { "weight": 4 } }, { "key": "13276", "source": "578", "target": "262", "attributes": { "weight": 2 } }, { "key": "28444", "source": "579", "target": "2345", "attributes": { "weight": 1 } }, { "key": "28442", "source": "579", "target": "2540", "attributes": { "weight": 1 } }, { "key": "1922", "source": "579", "target": "93", "attributes": { "weight": 3 } }, { "key": "12089", "source": "579", "target": "904", "attributes": { "weight": 1 } }, { "key": "28440", "source": "579", "target": "1979", "attributes": { "weight": 1 } }, { "key": "35496", "source": "579", "target": "177", "attributes": { "weight": 1 } }, { "key": "21456", "source": "579", "target": "1823", "attributes": { "weight": 2 } }, { "key": "14272", "source": "579", "target": "168", "attributes": { "weight": 3 } }, { "key": "25032", "source": "579", "target": "313", "attributes": { "weight": 2 } }, { "key": "25748", "source": "579", "target": "697", "attributes": { "weight": 1 } }, { "key": "28439", "source": "579", "target": "1819", "attributes": { "weight": 1 } }, { "key": "2416", "source": "579", "target": "278", "attributes": { "weight": 6 } }, { "key": "28438", "source": "579", "target": "1869", "attributes": { "weight": 1 } }, { "key": "10916", "source": "579", "target": "457", "attributes": { "weight": 2 } }, { "key": "14759", "source": "579", "target": "307", "attributes": { "weight": 1 } }, { "key": "25029", "source": "579", "target": "574", "attributes": { "weight": 2 } }, { "key": "14758", "source": "579", "target": "268", "attributes": { "weight": 1 } }, { "key": "25028", "source": "579", "target": "164", "attributes": { "weight": 3 } }, { "key": "25033", "source": "579", "target": "316", "attributes": { "weight": 2 } }, { "key": "5742", "source": "579", "target": "580", "attributes": { "weight": 3 } }, { "key": "15127", "source": "579", "target": "171", "attributes": { "weight": 1 } }, { "key": "5741", "source": "579", "target": "1227", "attributes": { "weight": 3 } }, { "key": "13962", "source": "579", "target": "180", "attributes": { "weight": 3 } }, { "key": "13304", "source": "579", "target": "305", "attributes": { "weight": 5 } }, { "key": "25031", "source": "579", "target": "582", "attributes": { "weight": 2 } }, { "key": "13303", "source": "579", "target": "304", "attributes": { "weight": 3 } }, { "key": "12088", "source": "579", "target": "1191", "attributes": { "weight": 4 } }, { "key": "28445", "source": "579", "target": "1822", "attributes": { "weight": 1 } }, { "key": "28443", "source": "579", "target": "2437", "attributes": { "weight": 1 } }, { "key": "28446", "source": "579", "target": "178", "attributes": { "weight": 2 } }, { "key": "12090", "source": "579", "target": "1512", "attributes": { "weight": 3 } }, { "key": "25030", "source": "579", "target": "707", "attributes": { "weight": 1 } }, { "key": "28441", "source": "579", "target": "1960", "attributes": { "weight": 1 } }, { "key": "2415", "source": "579", "target": "699", "attributes": { "weight": 1 } }, { "key": "16156", "source": "579", "target": "700", "attributes": { "weight": 3 } }, { "key": "21455", "source": "579", "target": "2280", "attributes": { "weight": 2 } }, { "key": "22698", "source": "579", "target": "1820", "attributes": { "weight": 2 } }, { "key": "26717", "source": "579", "target": "454", "attributes": { "weight": 2 } }, { "key": "21454", "source": "579", "target": "698", "attributes": { "weight": 3 } }, { "key": "28437", "source": "579", "target": "2546", "attributes": { "weight": 1 } }, { "key": "16155", "source": "579", "target": "913", "attributes": { "weight": 1 } }, { "key": "28436", "source": "579", "target": "1868", "attributes": { "weight": 1 } }, { "key": "5748", "source": "580", "target": "574", "attributes": { "weight": 3 } }, { "key": "16162", "source": "580", "target": "1561", "attributes": { "weight": 2 } }, { "key": "16159", "source": "580", "target": "700", "attributes": { "weight": 4 } }, { "key": "5753", "source": "580", "target": "905", "attributes": { "weight": 5 } }, { "key": "28461", "source": "580", "target": "1823", "attributes": { "weight": 1 } }, { "key": "3818", "source": "580", "target": "645", "attributes": { "weight": 2 } }, { "key": "28464", "source": "580", "target": "495", "attributes": { "weight": 2 } }, { "key": "22703", "source": "580", "target": "907", "attributes": { "weight": 1 } }, { "key": "16161", "source": "580", "target": "1291", "attributes": { "weight": 1 } }, { "key": "11233", "source": "580", "target": "452", "attributes": { "weight": 1 } }, { "key": "5752", "source": "580", "target": "370", "attributes": { "weight": 5 } }, { "key": "5760", "source": "580", "target": "177", "attributes": { "weight": 4 } }, { "key": "22516", "source": "580", "target": "572", "attributes": { "weight": 2 } }, { "key": "13329", "source": "580", "target": "259", "attributes": { "weight": 6 } }, { "key": "25047", "source": "580", "target": "1996", "attributes": { "weight": 3 } }, { "key": "25195", "source": "580", "target": "297", "attributes": { "weight": 1 } }, { "key": "31080", "source": "580", "target": "2745", "attributes": { "weight": 1 } }, { "key": "1923", "source": "580", "target": "93", "attributes": { "weight": 5 } }, { "key": "18076", "source": "580", "target": "1036", "attributes": { "weight": 2 } }, { "key": "5749", "source": "580", "target": "168", "attributes": { "weight": 5 } }, { "key": "5747", "source": "580", "target": "698", "attributes": { "weight": 4 } }, { "key": "16157", "source": "580", "target": "195", "attributes": { "weight": 1 } }, { "key": "34911", "source": "580", "target": "1042", "attributes": { "weight": 1 } }, { "key": "28462", "source": "580", "target": "1323", "attributes": { "weight": 2 } }, { "key": "29963", "source": "580", "target": "1952", "attributes": { "weight": 1 } }, { "key": "25891", "source": "580", "target": "220", "attributes": { "weight": 1 } }, { "key": "28463", "source": "580", "target": "1326", "attributes": { "weight": 2 } }, { "key": "13330", "source": "580", "target": "264", "attributes": { "weight": 2 } }, { "key": "25048", "source": "580", "target": "1299", "attributes": { "weight": 2 } }, { "key": "25046", "source": "580", "target": "300", "attributes": { "weight": 2 } }, { "key": "16163", "source": "580", "target": "1322", "attributes": { "weight": 3 } }, { "key": "28454", "source": "580", "target": "1047", "attributes": { "weight": 2 } }, { "key": "13335", "source": "580", "target": "307", "attributes": { "weight": 4 } }, { "key": "16158", "source": "580", "target": "913", "attributes": { "weight": 1 } }, { "key": "28453", "source": "580", "target": "1197", "attributes": { "weight": 2 } }, { "key": "22699", "source": "580", "target": "170", "attributes": { "weight": 4 } }, { "key": "25041", "source": "580", "target": "1187", "attributes": { "weight": 3 } }, { "key": "25040", "source": "580", "target": "697", "attributes": { "weight": 2 } }, { "key": "17503", "source": "580", "target": "358", "attributes": { "weight": 2 } }, { "key": "5762", "source": "580", "target": "180", "attributes": { "weight": 10 } }, { "key": "9516", "source": "580", "target": "419", "attributes": { "weight": 3 } }, { "key": "28455", "source": "580", "target": "1232", "attributes": { "weight": 2 } }, { "key": "22701", "source": "580", "target": "2345", "attributes": { "weight": 1 } }, { "key": "21457", "source": "580", "target": "1905", "attributes": { "weight": 2 } }, { "key": "21458", "source": "580", "target": "1870", "attributes": { "weight": 2 } }, { "key": "28457", "source": "580", "target": "791", "attributes": { "weight": 2 } }, { "key": "7362", "source": "580", "target": "1063", "attributes": { "weight": 2 } }, { "key": "5756", "source": "580", "target": "579", "attributes": { "weight": 3 } }, { "key": "5744", "source": "580", "target": "938", "attributes": { "weight": 2 } }, { "key": "5743", "source": "580", "target": "164", "attributes": { "weight": 8 } }, { "key": "2417", "source": "580", "target": "278", "attributes": { "weight": 10 } }, { "key": "10918", "source": "580", "target": "457", "attributes": { "weight": 2 } }, { "key": "13334", "source": "580", "target": "305", "attributes": { "weight": 5 } }, { "key": "12017", "source": "580", "target": "468", "attributes": { "weight": 4 } }, { "key": "5754", "source": "580", "target": "171", "attributes": { "weight": 3 } }, { "key": "22700", "source": "580", "target": "1820", "attributes": { "weight": 1 } }, { "key": "5758", "source": "580", "target": "582", "attributes": { "weight": 5 } }, { "key": "31680", "source": "580", "target": "595", "attributes": { "weight": 1 } }, { "key": "25050", "source": "580", "target": "1967", "attributes": { "weight": 2 } }, { "key": "22702", "source": "580", "target": "2280", "attributes": { "weight": 1 } }, { "key": "28456", "source": "580", "target": "1233", "attributes": { "weight": 2 } }, { "key": "23787", "source": "580", "target": "1774", "attributes": { "weight": 1 } }, { "key": "13336", "source": "580", "target": "313", "attributes": { "weight": 3 } }, { "key": "13333", "source": "580", "target": "304", "attributes": { "weight": 6 } }, { "key": "5751", "source": "580", "target": "1240", "attributes": { "weight": 3 } }, { "key": "5746", "source": "580", "target": "368", "attributes": { "weight": 4 } }, { "key": "5763", "source": "580", "target": "333", "attributes": { "weight": 4 } }, { "key": "26718", "source": "580", "target": "183", "attributes": { "weight": 2 } }, { "key": "8962", "source": "580", "target": "309", "attributes": { "weight": 2 } }, { "key": "25049", "source": "580", "target": "310", "attributes": { "weight": 2 } }, { "key": "13331", "source": "580", "target": "268", "attributes": { "weight": 5 } }, { "key": "12092", "source": "580", "target": "1512", "attributes": { "weight": 5 } }, { "key": "27282", "source": "580", "target": "57", "attributes": { "weight": 2 } }, { "key": "25045", "source": "580", "target": "1965", "attributes": { "weight": 2 } }, { "key": "28988", "source": "580", "target": "1926", "attributes": { "weight": 1 } }, { "key": "5750", "source": "580", "target": "1227", "attributes": { "weight": 7 } }, { "key": "28458", "source": "580", "target": "1979", "attributes": { "weight": 1 } }, { "key": "28452", "source": "580", "target": "1146", "attributes": { "weight": 3 } }, { "key": "5755", "source": "580", "target": "338", "attributes": { "weight": 8 } }, { "key": "9873", "source": "580", "target": "396", "attributes": { "weight": 1 } }, { "key": "5759", "source": "580", "target": "1315", "attributes": { "weight": 2 } }, { "key": "13337", "source": "580", "target": "327", "attributes": { "weight": 3 } }, { "key": "29829", "source": "580", "target": "566", "attributes": { "weight": 1 } }, { "key": "25039", "source": "580", "target": "564", "attributes": { "weight": 2 } }, { "key": "25043", "source": "580", "target": "1046", "attributes": { "weight": 3 } }, { "key": "12093", "source": "580", "target": "1825", "attributes": { "weight": 1 } }, { "key": "31340", "source": "580", "target": "674", "attributes": { "weight": 1 } }, { "key": "11235", "source": "580", "target": "494", "attributes": { "weight": 1 } }, { "key": "22515", "source": "580", "target": "567", "attributes": { "weight": 3 } }, { "key": "13332", "source": "580", "target": "167", "attributes": { "weight": 2 } }, { "key": "25044", "source": "580", "target": "454", "attributes": { "weight": 1 } }, { "key": "28459", "source": "580", "target": "578", "attributes": { "weight": 2 } }, { "key": "28460", "source": "580", "target": "176", "attributes": { "weight": 1 } }, { "key": "23869", "source": "580", "target": "2461", "attributes": { "weight": 1 } }, { "key": "14782", "source": "580", "target": "261", "attributes": { "weight": 1 } }, { "key": "5757", "source": "580", "target": "123", "attributes": { "weight": 6 } }, { "key": "5745", "source": "580", "target": "1191", "attributes": { "weight": 6 } }, { "key": "7361", "source": "580", "target": "377", "attributes": { "weight": 2 } }, { "key": "11234", "source": "580", "target": "473", "attributes": { "weight": 1 } }, { "key": "8961", "source": "580", "target": "442", "attributes": { "weight": 3 } }, { "key": "25042", "source": "580", "target": "3", "attributes": { "weight": 2 } }, { "key": "16160", "source": "580", "target": "925", "attributes": { "weight": 1 } }, { "key": "5761", "source": "580", "target": "178", "attributes": { "weight": 8 } }, { "key": "1926", "source": "581", "target": "93", "attributes": { "weight": 1 } }, { "key": "1925", "source": "581", "target": "566", "attributes": { "weight": 1 } }, { "key": "12861", "source": "582", "target": "322", "attributes": { "weight": 1 } }, { "key": "1931", "source": "582", "target": "566", "attributes": { "weight": 3 } }, { "key": "12852", "source": "582", "target": "698", "attributes": { "weight": 3 } }, { "key": "2419", "source": "582", "target": "697", "attributes": { "weight": 3 } }, { "key": "12854", "source": "582", "target": "905", "attributes": { "weight": 1 } }, { "key": "25755", "source": "582", "target": "1191", "attributes": { "weight": 1 } }, { "key": "25759", "source": "582", "target": "300", "attributes": { "weight": 2 } }, { "key": "2418", "source": "582", "target": "164", "attributes": { "weight": 4 } }, { "key": "25058", "source": "582", "target": "579", "attributes": { "weight": 2 } }, { "key": "25756", "source": "582", "target": "699", "attributes": { "weight": 2 } }, { "key": "15131", "source": "582", "target": "171", "attributes": { "weight": 1 } }, { "key": "14803", "source": "582", "target": "307", "attributes": { "weight": 2 } }, { "key": "12856", "source": "582", "target": "578", "attributes": { "weight": 2 } }, { "key": "12860", "source": "582", "target": "318", "attributes": { "weight": 1 } }, { "key": "29217", "source": "582", "target": "1872", "attributes": { "weight": 1 } }, { "key": "12862", "source": "582", "target": "326", "attributes": { "weight": 1 } }, { "key": "19019", "source": "582", "target": "305", "attributes": { "weight": 4 } }, { "key": "25760", "source": "582", "target": "177", "attributes": { "weight": 2 } }, { "key": "25758", "source": "582", "target": "574", "attributes": { "weight": 2 } }, { "key": "29214", "source": "582", "target": "259", "attributes": { "weight": 1 } }, { "key": "1932", "source": "582", "target": "93", "attributes": { "weight": 3 } }, { "key": "31692", "source": "582", "target": "1967", "attributes": { "weight": 1 } }, { "key": "12855", "source": "582", "target": "170", "attributes": { "weight": 5 } }, { "key": "28480", "source": "582", "target": "1512", "attributes": { "weight": 2 } }, { "key": "29215", "source": "582", "target": "290", "attributes": { "weight": 1 } }, { "key": "12859", "source": "582", "target": "180", "attributes": { "weight": 2 } }, { "key": "29830", "source": "582", "target": "91", "attributes": { "weight": 2 } }, { "key": "13478", "source": "582", "target": "167", "attributes": { "weight": 2 } }, { "key": "6196", "source": "582", "target": "580", "attributes": { "weight": 5 } }, { "key": "12858", "source": "582", "target": "313", "attributes": { "weight": 5 } }, { "key": "29216", "source": "582", "target": "309", "attributes": { "weight": 1 } }, { "key": "25757", "source": "582", "target": "700", "attributes": { "weight": 1 } }, { "key": "12857", "source": "582", "target": "175", "attributes": { "weight": 2 } }, { "key": "13479", "source": "582", "target": "304", "attributes": { "weight": 4 } }, { "key": "12853", "source": "582", "target": "168", "attributes": { "weight": 4 } }, { "key": "12851", "source": "582", "target": "263", "attributes": { "weight": 1 } }, { "key": "1939", "source": "583", "target": "93", "attributes": { "weight": 1 } }, { "key": "1942", "source": "584", "target": "93", "attributes": { "weight": 4 } }, { "key": "1941", "source": "584", "target": "566", "attributes": { "weight": 1 } }, { "key": "1943", "source": "585", "target": "93", "attributes": { "weight": 3 } }, { "key": "1946", "source": "586", "target": "93", "attributes": { "weight": 2 } }, { "key": "1945", "source": "586", "target": "566", "attributes": { "weight": 1 } }, { "key": "1947", "source": "587", "target": "93", "attributes": { "weight": 1 } }, { "key": "1948", "source": "588", "target": "93", "attributes": { "weight": 2 } }, { "key": "36444", "source": "589", "target": "257", "attributes": { "weight": 1 } }, { "key": "37310", "source": "589", "target": "963", "attributes": { "weight": 1 } }, { "key": "12057", "source": "589", "target": "1328", "attributes": { "weight": 2 } }, { "key": "1953", "source": "589", "target": "248", "attributes": { "weight": 1 } }, { "key": "3400", "source": "589", "target": "961", "attributes": { "weight": 3 } }, { "key": "1956", "source": "590", "target": "592", "attributes": { "weight": 1 } }, { "key": "1957", "source": "590", "target": "593", "attributes": { "weight": 2 } }, { "key": "1955", "source": "590", "target": "8", "attributes": { "weight": 2 } }, { "key": "1959", "source": "590", "target": "597", "attributes": { "weight": 1 } }, { "key": "1958", "source": "590", "target": "595", "attributes": { "weight": 2 } }, { "key": "1954", "source": "590", "target": "591", "attributes": { "weight": 1 } }, { "key": "1960", "source": "591", "target": "590", "attributes": { "weight": 1 } }, { "key": "1964", "source": "592", "target": "590", "attributes": { "weight": 1 } }, { "key": "1965", "source": "592", "target": "8", "attributes": { "weight": 2 } }, { "key": "1967", "source": "592", "target": "596", "attributes": { "weight": 1 } }, { "key": "1966", "source": "592", "target": "595", "attributes": { "weight": 2 } }, { "key": "15091", "source": "592", "target": "1992", "attributes": { "weight": 1 } }, { "key": "35135", "source": "593", "target": "594", "attributes": { "weight": 1 } }, { "key": "1968", "source": "593", "target": "590", "attributes": { "weight": 2 } }, { "key": "35134", "source": "593", "target": "818", "attributes": { "weight": 1 } }, { "key": "35145", "source": "594", "target": "593", "attributes": { "weight": 1 } }, { "key": "1969", "source": "594", "target": "8", "attributes": { "weight": 2 } }, { "key": "1970", "source": "594", "target": "595", "attributes": { "weight": 2 } }, { "key": "35147", "source": "594", "target": "3182", "attributes": { "weight": 1 } }, { "key": "35148", "source": "594", "target": "827", "attributes": { "weight": 1 } }, { "key": "2812", "source": "594", "target": "14", "attributes": { "weight": 1 } }, { "key": "35146", "source": "594", "target": "350", "attributes": { "weight": 1 } }, { "key": "16367", "source": "595", "target": "371", "attributes": { "weight": 2 } }, { "key": "31786", "source": "595", "target": "3023", "attributes": { "weight": 1 } }, { "key": "11280", "source": "595", "target": "222", "attributes": { "weight": 2 } }, { "key": "10931", "source": "595", "target": "457", "attributes": { "weight": 2 } }, { "key": "31721", "source": "595", "target": "440", "attributes": { "weight": 1 } }, { "key": "11284", "source": "595", "target": "1774", "attributes": { "weight": 2 } }, { "key": "31778", "source": "595", "target": "487", "attributes": { "weight": 1 } }, { "key": "35031", "source": "595", "target": "1368", "attributes": { "weight": 1 } }, { "key": "31760", "source": "595", "target": "189", "attributes": { "weight": 1 } }, { "key": "31783", "source": "595", "target": "56", "attributes": { "weight": 1 } }, { "key": "9095", "source": "595", "target": "442", "attributes": { "weight": 2 } }, { "key": "31794", "source": "595", "target": "25", "attributes": { "weight": 1 } }, { "key": "31717", "source": "595", "target": "3014", "attributes": { "weight": 1 } }, { "key": "31787", "source": "595", "target": "351", "attributes": { "weight": 1 } }, { "key": "31758", "source": "595", "target": "9", "attributes": { "weight": 1 } }, { "key": "35032", "source": "595", "target": "483", "attributes": { "weight": 1 } }, { "key": "31751", "source": "595", "target": "817", "attributes": { "weight": 1 } }, { "key": "10568", "source": "595", "target": "225", "attributes": { "weight": 2 } }, { "key": "31790", "source": "595", "target": "495", "attributes": { "weight": 1 } }, { "key": "35030", "source": "595", "target": "426", "attributes": { "weight": 1 } }, { "key": "9995", "source": "595", "target": "480", "attributes": { "weight": 2 } }, { "key": "16366", "source": "595", "target": "338", "attributes": { "weight": 2 } }, { "key": "31720", "source": "595", "target": "223", "attributes": { "weight": 1 } }, { "key": "31732", "source": "595", "target": "2646", "attributes": { "weight": 1 } }, { "key": "27547", "source": "595", "target": "1520", "attributes": { "weight": 2 } }, { "key": "9359", "source": "595", "target": "430", "attributes": { "weight": 1 } }, { "key": "31752", "source": "595", "target": "7", "attributes": { "weight": 1 } }, { "key": "31726", "source": "595", "target": "2122", "attributes": { "weight": 1 } }, { "key": "31765", "source": "595", "target": "580", "attributes": { "weight": 1 } }, { "key": "31782", "source": "595", "target": "672", "attributes": { "weight": 1 } }, { "key": "9994", "source": "595", "target": "477", "attributes": { "weight": 2 } }, { "key": "28981", "source": "595", "target": "2827", "attributes": { "weight": 2 } }, { "key": "31713", "source": "595", "target": "0", "attributes": { "weight": 1 } }, { "key": "14165", "source": "595", "target": "392", "attributes": { "weight": 2 } }, { "key": "31788", "source": "595", "target": "2507", "attributes": { "weight": 1 } }, { "key": "31715", "source": "595", "target": "1", "attributes": { "weight": 1 } }, { "key": "31779", "source": "595", "target": "490", "attributes": { "weight": 1 } }, { "key": "31723", "source": "595", "target": "2", "attributes": { "weight": 1 } }, { "key": "14850", "source": "595", "target": "319", "attributes": { "weight": 2 } }, { "key": "31738", "source": "595", "target": "168", "attributes": { "weight": 1 } }, { "key": "31753", "source": "595", "target": "8", "attributes": { "weight": 1 } }, { "key": "31741", "source": "595", "target": "19", "attributes": { "weight": 1 } }, { "key": "31785", "source": "595", "target": "340", "attributes": { "weight": 1 } }, { "key": "13539", "source": "595", "target": "304", "attributes": { "weight": 4 } }, { "key": "31748", "source": "595", "target": "681", "attributes": { "weight": 1 } }, { "key": "31766", "source": "595", "target": "12", "attributes": { "weight": 1 } }, { "key": "31719", "source": "595", "target": "164", "attributes": { "weight": 1 } }, { "key": "31762", "source": "595", "target": "474", "attributes": { "weight": 1 } }, { "key": "31761", "source": "595", "target": "10", "attributes": { "weight": 1 } }, { "key": "31725", "source": "595", "target": "2831", "attributes": { "weight": 1 } }, { "key": "11283", "source": "595", "target": "473", "attributes": { "weight": 2 } }, { "key": "31791", "source": "595", "target": "1390", "attributes": { "weight": 1 } }, { "key": "31757", "source": "595", "target": "820", "attributes": { "weight": 1 } }, { "key": "31767", "source": "595", "target": "868", "attributes": { "weight": 2 } }, { "key": "1972", "source": "595", "target": "592", "attributes": { "weight": 2 } }, { "key": "1971", "source": "595", "target": "590", "attributes": { "weight": 2 } }, { "key": "31754", "source": "595", "target": "468", "attributes": { "weight": 1 } }, { "key": "31780", "source": "595", "target": "3022", "attributes": { "weight": 1 } }, { "key": "31781", "source": "595", "target": "14", "attributes": { "weight": 1 } }, { "key": "31728", "source": "595", "target": "183", "attributes": { "weight": 1 } }, { "key": "28982", "source": "595", "target": "479", "attributes": { "weight": 2 } }, { "key": "31722", "source": "595", "target": "339", "attributes": { "weight": 1 } }, { "key": "31777", "source": "595", "target": "3021", "attributes": { "weight": 1 } }, { "key": "11281", "source": "595", "target": "452", "attributes": { "weight": 2 } }, { "key": "11285", "source": "595", "target": "494", "attributes": { "weight": 2 } }, { "key": "31749", "source": "595", "target": "464", "attributes": { "weight": 1 } }, { "key": "31742", "source": "595", "target": "791", "attributes": { "weight": 1 } }, { "key": "31731", "source": "595", "target": "3062", "attributes": { "weight": 1 } }, { "key": "12725", "source": "595", "target": "695", "attributes": { "weight": 2 } }, { "key": "28989", "source": "595", "target": "193", "attributes": { "weight": 2 } }, { "key": "31745", "source": "595", "target": "6", "attributes": { "weight": 1 } }, { "key": "31733", "source": "595", "target": "52", "attributes": { "weight": 1 } }, { "key": "31770", "source": "595", "target": "2828", "attributes": { "weight": 1 } }, { "key": "31746", "source": "595", "target": "2071", "attributes": { "weight": 1 } }, { "key": "31716", "source": "595", "target": "432", "attributes": { "weight": 1 } }, { "key": "14308", "source": "595", "target": "53", "attributes": { "weight": 2 } }, { "key": "31724", "source": "595", "target": "419", "attributes": { "weight": 1 } }, { "key": "11282", "source": "595", "target": "789", "attributes": { "weight": 2 } }, { "key": "31744", "source": "595", "target": "3015", "attributes": { "weight": 1 } }, { "key": "31796", "source": "595", "target": "500", "attributes": { "weight": 1 } }, { "key": "25768", "source": "595", "target": "278", "attributes": { "weight": 2 } }, { "key": "31714", "source": "595", "target": "429", "attributes": { "weight": 2 } }, { "key": "31776", "source": "595", "target": "177", "attributes": { "weight": 1 } }, { "key": "31769", "source": "595", "target": "13", "attributes": { "weight": 1 } }, { "key": "25391", "source": "595", "target": "433", "attributes": { "weight": 2 } }, { "key": "1973", "source": "595", "target": "594", "attributes": { "weight": 2 } }, { "key": "26927", "source": "595", "target": "497", "attributes": { "weight": 2 } }, { "key": "16365", "source": "595", "target": "370", "attributes": { "weight": 2 } }, { "key": "24544", "source": "595", "target": "790", "attributes": { "weight": 2 } }, { "key": "31736", "source": "595", "target": "574", "attributes": { "weight": 1 } }, { "key": "25115", "source": "595", "target": "1547", "attributes": { "weight": 2 } }, { "key": "31711", "source": "595", "target": "3013", "attributes": { "weight": 1 } }, { "key": "9993", "source": "595", "target": "445", "attributes": { "weight": 2 } }, { "key": "31771", "source": "595", "target": "3019", "attributes": { "weight": 1 } }, { "key": "28990", "source": "595", "target": "1926", "attributes": { "weight": 2 } }, { "key": "31795", "source": "595", "target": "1063", "attributes": { "weight": 1 } }, { "key": "25898", "source": "595", "target": "220", "attributes": { "weight": 2 } }, { "key": "31764", "source": "595", "target": "3016", "attributes": { "weight": 1 } }, { "key": "31784", "source": "595", "target": "349", "attributes": { "weight": 1 } }, { "key": "29177", "source": "595", "target": "1750", "attributes": { "weight": 2 } }, { "key": "31373", "source": "595", "target": "59", "attributes": { "weight": 2 } }, { "key": "31374", "source": "595", "target": "674", "attributes": { "weight": 2 } }, { "key": "31375", "source": "595", "target": "70", "attributes": { "weight": 2 } }, { "key": "31729", "source": "595", "target": "693", "attributes": { "weight": 1 } }, { "key": "31763", "source": "595", "target": "11", "attributes": { "weight": 1 } }, { "key": "18347", "source": "595", "target": "2208", "attributes": { "weight": 1 } }, { "key": "31772", "source": "595", "target": "372", "attributes": { "weight": 2 } }, { "key": "35033", "source": "595", "target": "2670", "attributes": { "weight": 1 } }, { "key": "31773", "source": "595", "target": "2103", "attributes": { "weight": 1 } }, { "key": "25953", "source": "595", "target": "1367", "attributes": { "weight": 2 } }, { "key": "26094", "source": "595", "target": "358", "attributes": { "weight": 2 } }, { "key": "31756", "source": "595", "target": "1611", "attributes": { "weight": 1 } }, { "key": "18345", "source": "595", "target": "2086", "attributes": { "weight": 1 } }, { "key": "31727", "source": "595", "target": "182", "attributes": { "weight": 1 } }, { "key": "14849", "source": "595", "target": "259", "attributes": { "weight": 2 } }, { "key": "31740", "source": "595", "target": "18", "attributes": { "weight": 1 } }, { "key": "31718", "source": "595", "target": "130", "attributes": { "weight": 2 } }, { "key": "31792", "source": "595", "target": "828", "attributes": { "weight": 1 } }, { "key": "18346", "source": "595", "target": "1092", "attributes": { "weight": 2 } }, { "key": "31759", "source": "595", "target": "1742", "attributes": { "weight": 1 } }, { "key": "30743", "source": "595", "target": "1026", "attributes": { "weight": 2 } }, { "key": "31739", "source": "595", "target": "2287", "attributes": { "weight": 1 } }, { "key": "25639", "source": "595", "target": "1780", "attributes": { "weight": 1 } }, { "key": "31734", "source": "595", "target": "455", "attributes": { "weight": 1 } }, { "key": "31793", "source": "595", "target": "1967", "attributes": { "weight": 1 } }, { "key": "31712", "source": "595", "target": "2499", "attributes": { "weight": 1 } }, { "key": "31755", "source": "595", "target": "471", "attributes": { "weight": 2 } }, { "key": "31797", "source": "595", "target": "57", "attributes": { "weight": 1 } }, { "key": "31735", "source": "595", "target": "188", "attributes": { "weight": 1 } }, { "key": "31737", "source": "595", "target": "458", "attributes": { "weight": 1 } }, { "key": "31789", "source": "595", "target": "2461", "attributes": { "weight": 1 } }, { "key": "18438", "source": "595", "target": "5", "attributes": { "weight": 2 } }, { "key": "31775", "source": "595", "target": "793", "attributes": { "weight": 1 } }, { "key": "31750", "source": "595", "target": "682", "attributes": { "weight": 1 } }, { "key": "31730", "source": "595", "target": "454", "attributes": { "weight": 1 } }, { "key": "9096", "source": "595", "target": "1087", "attributes": { "weight": 1 } }, { "key": "31747", "source": "595", "target": "1965", "attributes": { "weight": 1 } }, { "key": "31774", "source": "595", "target": "823", "attributes": { "weight": 1 } }, { "key": "3042", "source": "595", "target": "424", "attributes": { "weight": 2 } }, { "key": "28150", "source": "595", "target": "305", "attributes": { "weight": 2 } }, { "key": "31768", "source": "595", "target": "2505", "attributes": { "weight": 1 } }, { "key": "25638", "source": "595", "target": "787", "attributes": { "weight": 1 } }, { "key": "31743", "source": "595", "target": "1024", "attributes": { "weight": 2 } }, { "key": "16364", "source": "595", "target": "1232", "attributes": { "weight": 2 } }, { "key": "31378", "source": "596", "target": "59", "attributes": { "weight": 1 } }, { "key": "36390", "source": "596", "target": "434", "attributes": { "weight": 1 } }, { "key": "17025", "source": "596", "target": "2084", "attributes": { "weight": 4 } }, { "key": "31380", "source": "596", "target": "2093", "attributes": { "weight": 1 } }, { "key": "17024", "source": "596", "target": "1354", "attributes": { "weight": 1 } }, { "key": "36397", "source": "596", "target": "3302", "attributes": { "weight": 1 } }, { "key": "36391", "source": "596", "target": "1862", "attributes": { "weight": 1 } }, { "key": "36389", "source": "596", "target": "3278", "attributes": { "weight": 1 } }, { "key": "17028", "source": "596", "target": "1389", "attributes": { "weight": 2 } }, { "key": "1974", "source": "596", "target": "592", "attributes": { "weight": 1 } }, { "key": "36394", "source": "596", "target": "2089", "attributes": { "weight": 1 } }, { "key": "17026", "source": "596", "target": "135", "attributes": { "weight": 1 } }, { "key": "17027", "source": "596", "target": "70", "attributes": { "weight": 2 } }, { "key": "36396", "source": "596", "target": "3300", "attributes": { "weight": 1 } }, { "key": "36398", "source": "596", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36393", "source": "596", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36392", "source": "596", "target": "3284", "attributes": { "weight": 1 } }, { "key": "31379", "source": "596", "target": "2087", "attributes": { "weight": 2 } }, { "key": "36395", "source": "596", "target": "3288", "attributes": { "weight": 1 } }, { "key": "31381", "source": "596", "target": "1337", "attributes": { "weight": 1 } }, { "key": "1975", "source": "597", "target": "590", "attributes": { "weight": 1 } }, { "key": "35173", "source": "597", "target": "350", "attributes": { "weight": 1 } }, { "key": "10585", "source": "598", "target": "30", "attributes": { "weight": 1 } }, { "key": "10586", "source": "598", "target": "601", "attributes": { "weight": 3 } }, { "key": "23138", "source": "598", "target": "2428", "attributes": { "weight": 2 } }, { "key": "23137", "source": "598", "target": "2426", "attributes": { "weight": 2 } }, { "key": "1976", "source": "598", "target": "600", "attributes": { "weight": 3 } }, { "key": "23146", "source": "599", "target": "2431", "attributes": { "weight": 1 } }, { "key": "1977", "source": "599", "target": "601", "attributes": { "weight": 3 } }, { "key": "23144", "source": "599", "target": "1297", "attributes": { "weight": 1 } }, { "key": "23145", "source": "599", "target": "2430", "attributes": { "weight": 1 } }, { "key": "23156", "source": "600", "target": "2424", "attributes": { "weight": 2 } }, { "key": "26220", "source": "600", "target": "1099", "attributes": { "weight": 1 } }, { "key": "23155", "source": "600", "target": "598", "attributes": { "weight": 2 } }, { "key": "1978", "source": "600", "target": "601", "attributes": { "weight": 3 } }, { "key": "26221", "source": "600", "target": "1349", "attributes": { "weight": 1 } }, { "key": "26258", "source": "601", "target": "387", "attributes": { "weight": 1 } }, { "key": "6289", "source": "601", "target": "368", "attributes": { "weight": 3 } }, { "key": "26255", "source": "601", "target": "2425", "attributes": { "weight": 1 } }, { "key": "26261", "source": "601", "target": "876", "attributes": { "weight": 1 } }, { "key": "26259", "source": "601", "target": "45", "attributes": { "weight": 1 } }, { "key": "23168", "source": "601", "target": "2426", "attributes": { "weight": 2 } }, { "key": "23167", "source": "601", "target": "599", "attributes": { "weight": 2 } }, { "key": "23170", "source": "601", "target": "109", "attributes": { "weight": 3 } }, { "key": "26264", "source": "601", "target": "310", "attributes": { "weight": 2 } }, { "key": "26263", "source": "601", "target": "2429", "attributes": { "weight": 1 } }, { "key": "26256", "source": "601", "target": "778", "attributes": { "weight": 1 } }, { "key": "24221", "source": "601", "target": "471", "attributes": { "weight": 2 } }, { "key": "7393", "source": "601", "target": "369", "attributes": { "weight": 5 } }, { "key": "23169", "source": "601", "target": "2427", "attributes": { "weight": 2 } }, { "key": "23171", "source": "601", "target": "600", "attributes": { "weight": 3 } }, { "key": "1997", "source": "601", "target": "605", "attributes": { "weight": 2 } }, { "key": "23172", "source": "601", "target": "2428", "attributes": { "weight": 2 } }, { "key": "26262", "source": "601", "target": "372", "attributes": { "weight": 1 } }, { "key": "16257", "source": "601", "target": "195", "attributes": { "weight": 2 } }, { "key": "1979", "source": "601", "target": "598", "attributes": { "weight": 4 } }, { "key": "26257", "source": "601", "target": "872", "attributes": { "weight": 1 } }, { "key": "26253", "source": "601", "target": "2424", "attributes": { "weight": 1 } }, { "key": "6293", "source": "601", "target": "1297", "attributes": { "weight": 3 } }, { "key": "35214", "source": "601", "target": "116", "attributes": { "weight": 1 } }, { "key": "9057", "source": "601", "target": "442", "attributes": { "weight": 2 } }, { "key": "26265", "source": "601", "target": "48", "attributes": { "weight": 1 } }, { "key": "10770", "source": "601", "target": "43", "attributes": { "weight": 2 } }, { "key": "26266", "source": "601", "target": "2641", "attributes": { "weight": 1 } }, { "key": "6291", "source": "601", "target": "30", "attributes": { "weight": 6 } }, { "key": "10134", "source": "601", "target": "602", "attributes": { "weight": 2 } }, { "key": "24898", "source": "601", "target": "108", "attributes": { "weight": 2 } }, { "key": "7394", "source": "601", "target": "1063", "attributes": { "weight": 1 } }, { "key": "6292", "source": "601", "target": "371", "attributes": { "weight": 3 } }, { "key": "6290", "source": "601", "target": "370", "attributes": { "weight": 2 } }, { "key": "26254", "source": "601", "target": "603", "attributes": { "weight": 2 } }, { "key": "26260", "source": "601", "target": "2634", "attributes": { "weight": 1 } }, { "key": "14120", "source": "601", "target": "1031", "attributes": { "weight": 1 } }, { "key": "26252", "source": "601", "target": "1146", "attributes": { "weight": 2 } }, { "key": "9900", "source": "601", "target": "396", "attributes": { "weight": 2 } }, { "key": "23173", "source": "601", "target": "2431", "attributes": { "weight": 2 } }, { "key": "10028", "source": "602", "target": "874", "attributes": { "weight": 1 } }, { "key": "10027", "source": "602", "target": "604", "attributes": { "weight": 1 } }, { "key": "10054", "source": "602", "target": "1676", "attributes": { "weight": 1 } }, { "key": "10052", "source": "602", "target": "1674", "attributes": { "weight": 2 } }, { "key": "10051", "source": "602", "target": "1673", "attributes": { "weight": 2 } }, { "key": "3046", "source": "602", "target": "882", "attributes": { "weight": 2 } }, { "key": "10031", "source": "602", "target": "1662", "attributes": { "weight": 1 } }, { "key": "10048", "source": "602", "target": "601", "attributes": { "weight": 2 } }, { "key": "10037", "source": "602", "target": "1666", "attributes": { "weight": 1 } }, { "key": "10023", "source": "602", "target": "872", "attributes": { "weight": 2 } }, { "key": "10045", "source": "602", "target": "881", "attributes": { "weight": 2 } }, { "key": "10022", "source": "602", "target": "871", "attributes": { "weight": 2 } }, { "key": "1980", "source": "602", "target": "605", "attributes": { "weight": 2 } }, { "key": "10041", "source": "602", "target": "1667", "attributes": { "weight": 1 } }, { "key": "10034", "source": "602", "target": "1663", "attributes": { "weight": 2 } }, { "key": "10035", "source": "602", "target": "1664", "attributes": { "weight": 1 } }, { "key": "10020", "source": "602", "target": "603", "attributes": { "weight": 1 } }, { "key": "10029", "source": "602", "target": "1454", "attributes": { "weight": 1 } }, { "key": "10042", "source": "602", "target": "879", "attributes": { "weight": 1 } }, { "key": "10038", "source": "602", "target": "876", "attributes": { "weight": 2 } }, { "key": "10053", "source": "602", "target": "1675", "attributes": { "weight": 2 } }, { "key": "10021", "source": "602", "target": "870", "attributes": { "weight": 2 } }, { "key": "10032", "source": "602", "target": "108", "attributes": { "weight": 1 } }, { "key": "1981", "source": "602", "target": "606", "attributes": { "weight": 2 } }, { "key": "10036", "source": "602", "target": "1665", "attributes": { "weight": 1 } }, { "key": "10044", "source": "602", "target": "880", "attributes": { "weight": 1 } }, { "key": "10049", "source": "602", "target": "1671", "attributes": { "weight": 1 } }, { "key": "3045", "source": "602", "target": "878", "attributes": { "weight": 2 } }, { "key": "10047", "source": "602", "target": "1670", "attributes": { "weight": 1 } }, { "key": "10040", "source": "602", "target": "607", "attributes": { "weight": 1 } }, { "key": "10033", "source": "602", "target": "109", "attributes": { "weight": 3 } }, { "key": "10043", "source": "602", "target": "1668", "attributes": { "weight": 1 } }, { "key": "10026", "source": "602", "target": "1660", "attributes": { "weight": 1 } }, { "key": "10039", "source": "602", "target": "877", "attributes": { "weight": 2 } }, { "key": "10046", "source": "602", "target": "1669", "attributes": { "weight": 1 } }, { "key": "10025", "source": "602", "target": "873", "attributes": { "weight": 2 } }, { "key": "10030", "source": "602", "target": "1661", "attributes": { "weight": 1 } }, { "key": "3044", "source": "602", "target": "875", "attributes": { "weight": 2 } }, { "key": "10024", "source": "602", "target": "1659", "attributes": { "weight": 1 } }, { "key": "10019", "source": "602", "target": "1658", "attributes": { "weight": 1 } }, { "key": "10050", "source": "602", "target": "1672", "attributes": { "weight": 3 } }, { "key": "29189", "source": "602", "target": "2833", "attributes": { "weight": 1 } }, { "key": "3047", "source": "602", "target": "883", "attributes": { "weight": 2 } }, { "key": "10057", "source": "603", "target": "602", "attributes": { "weight": 1 } }, { "key": "4295", "source": "603", "target": "371", "attributes": { "weight": 2 } }, { "key": "26197", "source": "603", "target": "601", "attributes": { "weight": 2 } }, { "key": "1982", "source": "603", "target": "605", "attributes": { "weight": 1 } }, { "key": "24860", "source": "603", "target": "2543", "attributes": { "weight": 2 } }, { "key": "21612", "source": "603", "target": "109", "attributes": { "weight": 3 } }, { "key": "10058", "source": "603", "target": "369", "attributes": { "weight": 3 } }, { "key": "30006", "source": "603", "target": "1349", "attributes": { "weight": 2 } }, { "key": "10587", "source": "603", "target": "30", "attributes": { "weight": 1 } }, { "key": "14012", "source": "603", "target": "1031", "attributes": { "weight": 1 } }, { "key": "7912", "source": "604", "target": "109", "attributes": { "weight": 3 } }, { "key": "37258", "source": "604", "target": "114", "attributes": { "weight": 1 } }, { "key": "21674", "source": "604", "target": "369", "attributes": { "weight": 1 } }, { "key": "28510", "source": "604", "target": "2773", "attributes": { "weight": 1 } }, { "key": "28512", "source": "604", "target": "2776", "attributes": { "weight": 1 } }, { "key": "10078", "source": "604", "target": "602", "attributes": { "weight": 1 } }, { "key": "21675", "source": "604", "target": "108", "attributes": { "weight": 3 } }, { "key": "7911", "source": "604", "target": "1451", "attributes": { "weight": 1 } }, { "key": "24870", "source": "604", "target": "116", "attributes": { "weight": 1 } }, { "key": "28511", "source": "604", "target": "1454", "attributes": { "weight": 1 } }, { "key": "7917", "source": "604", "target": "1505", "attributes": { "weight": 2 } }, { "key": "7913", "source": "604", "target": "1457", "attributes": { "weight": 3 } }, { "key": "8669", "source": "604", "target": "103", "attributes": { "weight": 4 } }, { "key": "7910", "source": "604", "target": "1186", "attributes": { "weight": 1 } }, { "key": "1983", "source": "604", "target": "605", "attributes": { "weight": 1 } }, { "key": "28513", "source": "604", "target": "1507", "attributes": { "weight": 1 } }, { "key": "4657", "source": "604", "target": "607", "attributes": { "weight": 5 } }, { "key": "7914", "source": "604", "target": "1469", "attributes": { "weight": 4 } }, { "key": "7909", "source": "604", "target": "104", "attributes": { "weight": 1 } }, { "key": "7916", "source": "604", "target": "1495", "attributes": { "weight": 1 } }, { "key": "21673", "source": "604", "target": "1445", "attributes": { "weight": 2 } }, { "key": "7915", "source": "604", "target": "1475", "attributes": { "weight": 3 } }, { "key": "28884", "source": "604", "target": "106", "attributes": { "weight": 1 } }, { "key": "1987", "source": "605", "target": "602", "attributes": { "weight": 2 } }, { "key": "10729", "source": "605", "target": "30", "attributes": { "weight": 1 } }, { "key": "1994", "source": "605", "target": "601", "attributes": { "weight": 2 } }, { "key": "14056", "source": "605", "target": "1031", "attributes": { "weight": 1 } }, { "key": "35210", "source": "605", "target": "471", "attributes": { "weight": 1 } }, { "key": "1988", "source": "605", "target": "603", "attributes": { "weight": 1 } }, { "key": "1993", "source": "605", "target": "607", "attributes": { "weight": 2 } }, { "key": "5723", "source": "605", "target": "371", "attributes": { "weight": 2 } }, { "key": "1990", "source": "605", "target": "369", "attributes": { "weight": 4 } }, { "key": "1989", "source": "605", "target": "604", "attributes": { "weight": 1 } }, { "key": "1991", "source": "605", "target": "108", "attributes": { "weight": 1 } }, { "key": "1992", "source": "605", "target": "109", "attributes": { "weight": 5 } }, { "key": "1995", "source": "606", "target": "602", "attributes": { "weight": 2 } }, { "key": "3065", "source": "606", "target": "882", "attributes": { "weight": 1 } }, { "key": "14061", "source": "607", "target": "1031", "attributes": { "weight": 1 } }, { "key": "8048", "source": "607", "target": "1457", "attributes": { "weight": 1 } }, { "key": "1996", "source": "607", "target": "605", "attributes": { "weight": 2 } }, { "key": "21770", "source": "607", "target": "1445", "attributes": { "weight": 2 } }, { "key": "32928", "source": "607", "target": "470", "attributes": { "weight": 1 } }, { "key": "8057", "source": "607", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8054", "source": "607", "target": "1484", "attributes": { "weight": 2 } }, { "key": "8052", "source": "607", "target": "1479", "attributes": { "weight": 1 } }, { "key": "28528", "source": "607", "target": "2778", "attributes": { "weight": 1 } }, { "key": "28527", "source": "607", "target": "2774", "attributes": { "weight": 1 } }, { "key": "21771", "source": "607", "target": "369", "attributes": { "weight": 1 } }, { "key": "8046", "source": "607", "target": "604", "attributes": { "weight": 3 } }, { "key": "10124", "source": "607", "target": "602", "attributes": { "weight": 1 } }, { "key": "8049", "source": "607", "target": "1465", "attributes": { "weight": 1 } }, { "key": "8055", "source": "607", "target": "1492", "attributes": { "weight": 2 } }, { "key": "8058", "source": "607", "target": "1507", "attributes": { "weight": 1 } }, { "key": "21769", "source": "607", "target": "103", "attributes": { "weight": 2 } }, { "key": "8056", "source": "607", "target": "1495", "attributes": { "weight": 1 } }, { "key": "10734", "source": "607", "target": "30", "attributes": { "weight": 2 } }, { "key": "8051", "source": "607", "target": "1475", "attributes": { "weight": 1 } }, { "key": "8053", "source": "607", "target": "1483", "attributes": { "weight": 1 } }, { "key": "8047", "source": "607", "target": "109", "attributes": { "weight": 4 } }, { "key": "8050", "source": "607", "target": "1469", "attributes": { "weight": 1 } }, { "key": "21772", "source": "607", "target": "1454", "attributes": { "weight": 2 } }, { "key": "6179", "source": "607", "target": "371", "attributes": { "weight": 2 } }, { "key": "21773", "source": "607", "target": "108", "attributes": { "weight": 3 } }, { "key": "8045", "source": "607", "target": "1186", "attributes": { "weight": 1 } }, { "key": "2426", "source": "608", "target": "706", "attributes": { "weight": 1 } }, { "key": "2425", "source": "608", "target": "619", "attributes": { "weight": 2 } }, { "key": "1998", "source": "608", "target": "611", "attributes": { "weight": 2 } }, { "key": "1999", "source": "608", "target": "626", "attributes": { "weight": 1 } }, { "key": "2427", "source": "609", "target": "617", "attributes": { "weight": 1 } }, { "key": "2000", "source": "609", "target": "610", "attributes": { "weight": 2 } }, { "key": "2002", "source": "609", "target": "378", "attributes": { "weight": 2 } }, { "key": "2001", "source": "609", "target": "628", "attributes": { "weight": 1 } }, { "key": "2428", "source": "610", "target": "676", "attributes": { "weight": 1 } }, { "key": "2004", "source": "610", "target": "378", "attributes": { "weight": 2 } }, { "key": "2003", "source": "610", "target": "609", "attributes": { "weight": 2 } }, { "key": "2005", "source": "611", "target": "608", "attributes": { "weight": 2 } }, { "key": "2429", "source": "611", "target": "630", "attributes": { "weight": 1 } }, { "key": "2006", "source": "611", "target": "619", "attributes": { "weight": 3 } }, { "key": "2007", "source": "612", "target": "615", "attributes": { "weight": 2 } }, { "key": "2008", "source": "612", "target": "618", "attributes": { "weight": 2 } }, { "key": "2010", "source": "613", "target": "626", "attributes": { "weight": 3 } }, { "key": "2430", "source": "613", "target": "619", "attributes": { "weight": 2 } }, { "key": "2011", "source": "613", "target": "629", "attributes": { "weight": 2 } }, { "key": "2322", "source": "614", "target": "678", "attributes": { "weight": 1 } }, { "key": "2323", "source": "614", "target": "679", "attributes": { "weight": 1 } }, { "key": "23709", "source": "614", "target": "2451", "attributes": { "weight": 1 } }, { "key": "2324", "source": "614", "target": "680", "attributes": { "weight": 1 } }, { "key": "2321", "source": "614", "target": "677", "attributes": { "weight": 1 } }, { "key": "2320", "source": "614", "target": "676", "attributes": { "weight": 1 } }, { "key": "2012", "source": "614", "target": "624", "attributes": { "weight": 2 } }, { "key": "2017", "source": "615", "target": "620", "attributes": { "weight": 2 } }, { "key": "2431", "source": "615", "target": "702", "attributes": { "weight": 1 } }, { "key": "2433", "source": "615", "target": "156", "attributes": { "weight": 1 } }, { "key": "2014", "source": "615", "target": "616", "attributes": { "weight": 2 } }, { "key": "2015", "source": "615", "target": "375", "attributes": { "weight": 2 } }, { "key": "2016", "source": "615", "target": "619", "attributes": { "weight": 3 } }, { "key": "2019", "source": "615", "target": "627", "attributes": { "weight": 2 } }, { "key": "2013", "source": "615", "target": "612", "attributes": { "weight": 2 } }, { "key": "2018", "source": "615", "target": "622", "attributes": { "weight": 2 } }, { "key": "2432", "source": "615", "target": "705", "attributes": { "weight": 1 } }, { "key": "2022", "source": "616", "target": "622", "attributes": { "weight": 2 } }, { "key": "2020", "source": "616", "target": "615", "attributes": { "weight": 2 } }, { "key": "2021", "source": "616", "target": "618", "attributes": { "weight": 1 } }, { "key": "2436", "source": "617", "target": "609", "attributes": { "weight": 1 } }, { "key": "2024", "source": "617", "target": "378", "attributes": { "weight": 1 } }, { "key": "2023", "source": "617", "target": "628", "attributes": { "weight": 2 } }, { "key": "2025", "source": "618", "target": "612", "attributes": { "weight": 2 } }, { "key": "2026", "source": "618", "target": "616", "attributes": { "weight": 1 } }, { "key": "2032", "source": "619", "target": "706", "attributes": { "weight": 2 } }, { "key": "2035", "source": "619", "target": "630", "attributes": { "weight": 2 } }, { "key": "2030", "source": "619", "target": "613", "attributes": { "weight": 3 } }, { "key": "2441", "source": "619", "target": "626", "attributes": { "weight": 2 } }, { "key": "27767", "source": "619", "target": "621", "attributes": { "weight": 1 } }, { "key": "2028", "source": "619", "target": "608", "attributes": { "weight": 3 } }, { "key": "2031", "source": "619", "target": "615", "attributes": { "weight": 2 } }, { "key": "2033", "source": "619", "target": "629", "attributes": { "weight": 2 } }, { "key": "2034", "source": "619", "target": "378", "attributes": { "weight": 3 } }, { "key": "2029", "source": "619", "target": "611", "attributes": { "weight": 3 } }, { "key": "2440", "source": "619", "target": "625", "attributes": { "weight": 2 } }, { "key": "2036", "source": "620", "target": "615", "attributes": { "weight": 2 } }, { "key": "2442", "source": "620", "target": "630", "attributes": { "weight": 1 } }, { "key": "27770", "source": "621", "target": "2713", "attributes": { "weight": 1 } }, { "key": "27772", "source": "621", "target": "625", "attributes": { "weight": 1 } }, { "key": "27769", "source": "621", "target": "2583", "attributes": { "weight": 1 } }, { "key": "27771", "source": "621", "target": "2585", "attributes": { "weight": 1 } }, { "key": "2037", "source": "621", "target": "629", "attributes": { "weight": 2 } }, { "key": "2038", "source": "622", "target": "615", "attributes": { "weight": 2 } }, { "key": "2039", "source": "622", "target": "616", "attributes": { "weight": 2 } }, { "key": "2040", "source": "623", "target": "627", "attributes": { "weight": 2 } }, { "key": "23712", "source": "624", "target": "2451", "attributes": { "weight": 1 } }, { "key": "2042", "source": "624", "target": "378", "attributes": { "weight": 2 } }, { "key": "2041", "source": "624", "target": "614", "attributes": { "weight": 2 } }, { "key": "23713", "source": "624", "target": "2453", "attributes": { "weight": 1 } }, { "key": "27777", "source": "625", "target": "621", "attributes": { "weight": 1 } }, { "key": "7631", "source": "625", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7626", "source": "625", "target": "1408", "attributes": { "weight": 2 } }, { "key": "7627", "source": "625", "target": "154", "attributes": { "weight": 3 } }, { "key": "7622", "source": "625", "target": "123", "attributes": { "weight": 2 } }, { "key": "7624", "source": "625", "target": "375", "attributes": { "weight": 2 } }, { "key": "2044", "source": "625", "target": "629", "attributes": { "weight": 2 } }, { "key": "7625", "source": "625", "target": "1407", "attributes": { "weight": 2 } }, { "key": "36805", "source": "625", "target": "337", "attributes": { "weight": 1 } }, { "key": "7621", "source": "625", "target": "1197", "attributes": { "weight": 2 } }, { "key": "25427", "source": "625", "target": "2585", "attributes": { "weight": 2 } }, { "key": "7629", "source": "625", "target": "1417", "attributes": { "weight": 2 } }, { "key": "16408", "source": "625", "target": "925", "attributes": { "weight": 1 } }, { "key": "36806", "source": "625", "target": "1419", "attributes": { "weight": 1 } }, { "key": "7623", "source": "625", "target": "373", "attributes": { "weight": 3 } }, { "key": "27776", "source": "625", "target": "151", "attributes": { "weight": 1 } }, { "key": "2043", "source": "625", "target": "619", "attributes": { "weight": 3 } }, { "key": "25426", "source": "625", "target": "2583", "attributes": { "weight": 2 } }, { "key": "7628", "source": "625", "target": "333", "attributes": { "weight": 2 } }, { "key": "7630", "source": "625", "target": "377", "attributes": { "weight": 2 } }, { "key": "25429", "source": "625", "target": "2587", "attributes": { "weight": 1 } }, { "key": "25428", "source": "625", "target": "2586", "attributes": { "weight": 1 } }, { "key": "27775", "source": "625", "target": "2713", "attributes": { "weight": 1 } }, { "key": "2045", "source": "626", "target": "619", "attributes": { "weight": 3 } }, { "key": "2447", "source": "626", "target": "613", "attributes": { "weight": 2 } }, { "key": "2047", "source": "627", "target": "623", "attributes": { "weight": 2 } }, { "key": "2046", "source": "627", "target": "615", "attributes": { "weight": 2 } }, { "key": "2448", "source": "628", "target": "378", "attributes": { "weight": 1 } }, { "key": "2048", "source": "628", "target": "609", "attributes": { "weight": 1 } }, { "key": "2049", "source": "628", "target": "617", "attributes": { "weight": 2 } }, { "key": "2053", "source": "629", "target": "625", "attributes": { "weight": 2 } }, { "key": "2050", "source": "629", "target": "613", "attributes": { "weight": 2 } }, { "key": "2051", "source": "629", "target": "619", "attributes": { "weight": 2 } }, { "key": "2052", "source": "629", "target": "621", "attributes": { "weight": 2 } }, { "key": "2061", "source": "630", "target": "619", "attributes": { "weight": 2 } }, { "key": "2451", "source": "630", "target": "611", "attributes": { "weight": 1 } }, { "key": "2452", "source": "630", "target": "620", "attributes": { "weight": 1 } }, { "key": "2062", "source": "630", "target": "706", "attributes": { "weight": 2 } }, { "key": "2063", "source": "631", "target": "632", "attributes": { "weight": 2 } }, { "key": "3485", "source": "631", "target": "986", "attributes": { "weight": 2 } }, { "key": "33913", "source": "631", "target": "1233", "attributes": { "weight": 1 } }, { "key": "15570", "source": "631", "target": "338", "attributes": { "weight": 1 } }, { "key": "15569", "source": "631", "target": "195", "attributes": { "weight": 1 } }, { "key": "4436", "source": "631", "target": "368", "attributes": { "weight": 2 } }, { "key": "3479", "source": "631", "target": "387", "attributes": { "weight": 1 } }, { "key": "4437", "source": "631", "target": "371", "attributes": { "weight": 2 } }, { "key": "33912", "source": "631", "target": "1047", "attributes": { "weight": 1 } }, { "key": "3483", "source": "631", "target": "633", "attributes": { "weight": 1 } }, { "key": "3481", "source": "631", "target": "397", "attributes": { "weight": 1 } }, { "key": "3484", "source": "631", "target": "634", "attributes": { "weight": 1 } }, { "key": "4435", "source": "631", "target": "779", "attributes": { "weight": 2 } }, { "key": "10643", "source": "631", "target": "1314", "attributes": { "weight": 1 } }, { "key": "2064", "source": "632", "target": "631", "attributes": { "weight": 2 } }, { "key": "2065", "source": "632", "target": "391", "attributes": { "weight": 1 } }, { "key": "10742", "source": "633", "target": "1314", "attributes": { "weight": 1 } }, { "key": "29261", "source": "633", "target": "2628", "attributes": { "weight": 1 } }, { "key": "6249", "source": "633", "target": "368", "attributes": { "weight": 2 } }, { "key": "16243", "source": "633", "target": "195", "attributes": { "weight": 1 } }, { "key": "6250", "source": "633", "target": "371", "attributes": { "weight": 2 } }, { "key": "13830", "source": "633", "target": "635", "attributes": { "weight": 2 } }, { "key": "3502", "source": "633", "target": "631", "attributes": { "weight": 1 } }, { "key": "13829", "source": "633", "target": "634", "attributes": { "weight": 2 } }, { "key": "2069", "source": "633", "target": "391", "attributes": { "weight": 2 } }, { "key": "34701", "source": "633", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34708", "source": "634", "target": "1233", "attributes": { "weight": 1 } }, { "key": "3503", "source": "634", "target": "631", "attributes": { "weight": 1 } }, { "key": "2070", "source": "634", "target": "391", "attributes": { "weight": 4 } }, { "key": "28604", "source": "634", "target": "199", "attributes": { "weight": 1 } }, { "key": "10769", "source": "634", "target": "407", "attributes": { "weight": 2 } }, { "key": "14119", "source": "634", "target": "1031", "attributes": { "weight": 1 } }, { "key": "13831", "source": "634", "target": "633", "attributes": { "weight": 2 } }, { "key": "13832", "source": "634", "target": "635", "attributes": { "weight": 1 } }, { "key": "10767", "source": "634", "target": "370", "attributes": { "weight": 1 } }, { "key": "29262", "source": "634", "target": "2628", "attributes": { "weight": 1 } }, { "key": "9899", "source": "634", "target": "396", "attributes": { "weight": 1 } }, { "key": "16245", "source": "634", "target": "195", "attributes": { "weight": 1 } }, { "key": "34707", "source": "634", "target": "1047", "attributes": { "weight": 1 } }, { "key": "10768", "source": "634", "target": "1314", "attributes": { "weight": 1 } }, { "key": "6274", "source": "634", "target": "371", "attributes": { "weight": 4 } }, { "key": "14125", "source": "635", "target": "1031", "attributes": { "weight": 1 } }, { "key": "34819", "source": "635", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6449", "source": "635", "target": "371", "attributes": { "weight": 2 } }, { "key": "16373", "source": "635", "target": "195", "attributes": { "weight": 1 } }, { "key": "10785", "source": "635", "target": "1314", "attributes": { "weight": 1 } }, { "key": "13833", "source": "635", "target": "1935", "attributes": { "weight": 1 } }, { "key": "10786", "source": "635", "target": "407", "attributes": { "weight": 3 } }, { "key": "29263", "source": "635", "target": "2628", "attributes": { "weight": 1 } }, { "key": "13835", "source": "635", "target": "634", "attributes": { "weight": 1 } }, { "key": "2071", "source": "635", "target": "391", "attributes": { "weight": 4 } }, { "key": "13834", "source": "635", "target": "633", "attributes": { "weight": 2 } }, { "key": "30981", "source": "636", "target": "2177", "attributes": { "weight": 1 } }, { "key": "30979", "source": "636", "target": "3026", "attributes": { "weight": 1 } }, { "key": "30982", "source": "636", "target": "3028", "attributes": { "weight": 1 } }, { "key": "30980", "source": "636", "target": "3027", "attributes": { "weight": 1 } }, { "key": "12539", "source": "636", "target": "1866", "attributes": { "weight": 1 } }, { "key": "30983", "source": "636", "target": "3036", "attributes": { "weight": 1 } }, { "key": "11856", "source": "636", "target": "638", "attributes": { "weight": 9 } }, { "key": "30355", "source": "636", "target": "1046", "attributes": { "weight": 1 } }, { "key": "16435", "source": "636", "target": "1387", "attributes": { "weight": 1 } }, { "key": "30984", "source": "636", "target": "1816", "attributes": { "weight": 2 } }, { "key": "30978", "source": "636", "target": "2534", "attributes": { "weight": 1 } }, { "key": "24827", "source": "636", "target": "2535", "attributes": { "weight": 3 } }, { "key": "24826", "source": "636", "target": "2533", "attributes": { "weight": 2 } }, { "key": "11855", "source": "636", "target": "1809", "attributes": { "weight": 4 } }, { "key": "12540", "source": "636", "target": "1867", "attributes": { "weight": 1 } }, { "key": "11857", "source": "636", "target": "1813", "attributes": { "weight": 3 } }, { "key": "4637", "source": "636", "target": "468", "attributes": { "weight": 3 } }, { "key": "17352", "source": "636", "target": "358", "attributes": { "weight": 2 } }, { "key": "27732", "source": "636", "target": "1553", "attributes": { "weight": 1 } }, { "key": "30985", "source": "636", "target": "3039", "attributes": { "weight": 1 } }, { "key": "11041", "source": "636", "target": "220", "attributes": { "weight": 2 } }, { "key": "30977", "source": "636", "target": "2712", "attributes": { "weight": 1 } }, { "key": "2072", "source": "636", "target": "640", "attributes": { "weight": 1 } }, { "key": "31954", "source": "638", "target": "359", "attributes": { "weight": 1 } }, { "key": "31025", "source": "638", "target": "3028", "attributes": { "weight": 1 } }, { "key": "11900", "source": "638", "target": "1813", "attributes": { "weight": 3 } }, { "key": "31029", "source": "638", "target": "1559", "attributes": { "weight": 1 } }, { "key": "31011", "source": "638", "target": "164", "attributes": { "weight": 2 } }, { "key": "5235", "source": "638", "target": "468", "attributes": { "weight": 6 } }, { "key": "31024", "source": "638", "target": "1550", "attributes": { "weight": 1 } }, { "key": "31026", "source": "638", "target": "3029", "attributes": { "weight": 1 } }, { "key": "27868", "source": "638", "target": "339", "attributes": { "weight": 2 } }, { "key": "31033", "source": "638", "target": "3034", "attributes": { "weight": 1 } }, { "key": "27266", "source": "638", "target": "57", "attributes": { "weight": 2 } }, { "key": "29203", "source": "638", "target": "178", "attributes": { "weight": 4 } }, { "key": "31014", "source": "638", "target": "1527", "attributes": { "weight": 1 } }, { "key": "27364", "source": "638", "target": "340", "attributes": { "weight": 1 } }, { "key": "17902", "source": "638", "target": "2167", "attributes": { "weight": 2 } }, { "key": "31007", "source": "638", "target": "35", "attributes": { "weight": 1 } }, { "key": "26595", "source": "638", "target": "454", "attributes": { "weight": 3 } }, { "key": "31032", "source": "638", "target": "3033", "attributes": { "weight": 1 } }, { "key": "31017", "source": "638", "target": "1384", "attributes": { "weight": 1 } }, { "key": "25869", "source": "638", "target": "220", "attributes": { "weight": 1 } }, { "key": "32531", "source": "638", "target": "791", "attributes": { "weight": 1 } }, { "key": "11591", "source": "638", "target": "370", "attributes": { "weight": 4 } }, { "key": "17471", "source": "638", "target": "358", "attributes": { "weight": 2 } }, { "key": "31021", "source": "638", "target": "1544", "attributes": { "weight": 1 } }, { "key": "31009", "source": "638", "target": "3024", "attributes": { "weight": 2 } }, { "key": "12763", "source": "638", "target": "1878", "attributes": { "weight": 2 } }, { "key": "31015", "source": "638", "target": "39", "attributes": { "weight": 3 } }, { "key": "15896", "source": "638", "target": "195", "attributes": { "weight": 1 } }, { "key": "16440", "source": "638", "target": "1387", "attributes": { "weight": 2 } }, { "key": "31013", "source": "638", "target": "1524", "attributes": { "weight": 1 } }, { "key": "31016", "source": "638", "target": "1133", "attributes": { "weight": 1 } }, { "key": "31022", "source": "638", "target": "1548", "attributes": { "weight": 1 } }, { "key": "15099", "source": "638", "target": "1995", "attributes": { "weight": 2 } }, { "key": "31031", "source": "638", "target": "3032", "attributes": { "weight": 1 } }, { "key": "8791", "source": "638", "target": "442", "attributes": { "weight": 2 } }, { "key": "30214", "source": "638", "target": "173", "attributes": { "weight": 2 } }, { "key": "31010", "source": "638", "target": "2533", "attributes": { "weight": 1 } }, { "key": "31038", "source": "638", "target": "3039", "attributes": { "weight": 1 } }, { "key": "31028", "source": "638", "target": "3031", "attributes": { "weight": 1 } }, { "key": "31030", "source": "638", "target": "2626", "attributes": { "weight": 1 } }, { "key": "31019", "source": "638", "target": "1386", "attributes": { "weight": 2 } }, { "key": "23259", "source": "638", "target": "1772", "attributes": { "weight": 2 } }, { "key": "14261", "source": "638", "target": "168", "attributes": { "weight": 2 } }, { "key": "32654", "source": "638", "target": "3110", "attributes": { "weight": 1 } }, { "key": "24830", "source": "638", "target": "2534", "attributes": { "weight": 3 } }, { "key": "3798", "source": "638", "target": "645", "attributes": { "weight": 3 } }, { "key": "11899", "source": "638", "target": "1553", "attributes": { "weight": 3 } }, { "key": "12551", "source": "638", "target": "1864", "attributes": { "weight": 2 } }, { "key": "31035", "source": "638", "target": "3036", "attributes": { "weight": 1 } }, { "key": "24831", "source": "638", "target": "562", "attributes": { "weight": 1 } }, { "key": "11898", "source": "638", "target": "1551", "attributes": { "weight": 2 } }, { "key": "12553", "source": "638", "target": "1866", "attributes": { "weight": 2 } }, { "key": "31036", "source": "638", "target": "3037", "attributes": { "weight": 1 } }, { "key": "30456", "source": "638", "target": "2177", "attributes": { "weight": 3 } }, { "key": "31037", "source": "638", "target": "3038", "attributes": { "weight": 2 } }, { "key": "11902", "source": "638", "target": "1816", "attributes": { "weight": 5 } }, { "key": "27458", "source": "638", "target": "1567", "attributes": { "weight": 2 } }, { "key": "31018", "source": "638", "target": "3026", "attributes": { "weight": 1 } }, { "key": "26596", "source": "638", "target": "189", "attributes": { "weight": 3 } }, { "key": "24888", "source": "638", "target": "109", "attributes": { "weight": 2 } }, { "key": "35188", "source": "638", "target": "1562", "attributes": { "weight": 1 } }, { "key": "11896", "source": "638", "target": "1809", "attributes": { "weight": 4 } }, { "key": "30215", "source": "638", "target": "310", "attributes": { "weight": 2 } }, { "key": "12554", "source": "638", "target": "1867", "attributes": { "weight": 2 } }, { "key": "27761", "source": "638", "target": "2712", "attributes": { "weight": 2 } }, { "key": "31023", "source": "638", "target": "136", "attributes": { "weight": 2 } }, { "key": "17901", "source": "638", "target": "1380", "attributes": { "weight": 2 } }, { "key": "31034", "source": "638", "target": "3035", "attributes": { "weight": 2 } }, { "key": "26054", "source": "638", "target": "163", "attributes": { "weight": 2 } }, { "key": "30455", "source": "638", "target": "1046", "attributes": { "weight": 1 } }, { "key": "31027", "source": "638", "target": "3030", "attributes": { "weight": 1 } }, { "key": "11897", "source": "638", "target": "1539", "attributes": { "weight": 3 } }, { "key": "12552", "source": "638", "target": "1865", "attributes": { "weight": 1 } }, { "key": "11901", "source": "638", "target": "1815", "attributes": { "weight": 3 } }, { "key": "11895", "source": "638", "target": "636", "attributes": { "weight": 9 } }, { "key": "31008", "source": "638", "target": "2624", "attributes": { "weight": 2 } }, { "key": "31012", "source": "638", "target": "3025", "attributes": { "weight": 2 } }, { "key": "2075", "source": "638", "target": "639", "attributes": { "weight": 1 } }, { "key": "11160", "source": "638", "target": "1036", "attributes": { "weight": 4 } }, { "key": "31020", "source": "638", "target": "3027", "attributes": { "weight": 1 } }, { "key": "2076", "source": "639", "target": "638", "attributes": { "weight": 1 } }, { "key": "2077", "source": "640", "target": "636", "attributes": { "weight": 1 } }, { "key": "2078", "source": "640", "target": "638", "attributes": { "weight": 1 } }, { "key": "21502", "source": "641", "target": "89", "attributes": { "weight": 1 } }, { "key": "2084", "source": "641", "target": "651", "attributes": { "weight": 3 } }, { "key": "2087", "source": "641", "target": "664", "attributes": { "weight": 2 } }, { "key": "31460", "source": "641", "target": "178", "attributes": { "weight": 1 } }, { "key": "22260", "source": "641", "target": "794", "attributes": { "weight": 1 } }, { "key": "2081", "source": "641", "target": "354", "attributes": { "weight": 2 } }, { "key": "28920", "source": "641", "target": "171", "attributes": { "weight": 1 } }, { "key": "9383", "source": "641", "target": "1056", "attributes": { "weight": 1 } }, { "key": "2082", "source": "641", "target": "419", "attributes": { "weight": 6 } }, { "key": "31139", "source": "641", "target": "362", "attributes": { "weight": 1 } }, { "key": "2083", "source": "641", "target": "650", "attributes": { "weight": 1 } }, { "key": "2086", "source": "641", "target": "661", "attributes": { "weight": 2 } }, { "key": "17329", "source": "641", "target": "358", "attributes": { "weight": 2 } }, { "key": "30333", "source": "641", "target": "1046", "attributes": { "weight": 1 } }, { "key": "3665", "source": "641", "target": "1036", "attributes": { "weight": 2 } }, { "key": "2079", "source": "641", "target": "644", "attributes": { "weight": 1 } }, { "key": "2080", "source": "641", "target": "645", "attributes": { "weight": 6 } }, { "key": "2085", "source": "641", "target": "659", "attributes": { "weight": 1 } }, { "key": "2092", "source": "642", "target": "651", "attributes": { "weight": 1 } }, { "key": "2093", "source": "642", "target": "669", "attributes": { "weight": 1 } }, { "key": "9384", "source": "642", "target": "1054", "attributes": { "weight": 1 } }, { "key": "2090", "source": "642", "target": "354", "attributes": { "weight": 1 } }, { "key": "2091", "source": "642", "target": "419", "attributes": { "weight": 2 } }, { "key": "2088", "source": "642", "target": "644", "attributes": { "weight": 1 } }, { "key": "2089", "source": "642", "target": "645", "attributes": { "weight": 2 } }, { "key": "2094", "source": "643", "target": "645", "attributes": { "weight": 3 } }, { "key": "2095", "source": "643", "target": "419", "attributes": { "weight": 2 } }, { "key": "2100", "source": "644", "target": "645", "attributes": { "weight": 6 } }, { "key": "2102", "source": "644", "target": "647", "attributes": { "weight": 5 } }, { "key": "2113", "source": "644", "target": "669", "attributes": { "weight": 4 } }, { "key": "3687", "source": "644", "target": "1049", "attributes": { "weight": 4 } }, { "key": "14178", "source": "644", "target": "168", "attributes": { "weight": 2 } }, { "key": "31146", "source": "644", "target": "1615", "attributes": { "weight": 1 } }, { "key": "4360", "source": "644", "target": "468", "attributes": { "weight": 2 } }, { "key": "3685", "source": "644", "target": "646", "attributes": { "weight": 2 } }, { "key": "31143", "source": "644", "target": "3042", "attributes": { "weight": 1 } }, { "key": "22266", "source": "644", "target": "794", "attributes": { "weight": 1 } }, { "key": "3684", "source": "644", "target": "1036", "attributes": { "weight": 3 } }, { "key": "3688", "source": "644", "target": "171", "attributes": { "weight": 3 } }, { "key": "31848", "source": "644", "target": "359", "attributes": { "weight": 1 } }, { "key": "31145", "source": "644", "target": "3044", "attributes": { "weight": 1 } }, { "key": "31142", "source": "644", "target": "1041", "attributes": { "weight": 1 } }, { "key": "2105", "source": "644", "target": "650", "attributes": { "weight": 6 } }, { "key": "17339", "source": "644", "target": "358", "attributes": { "weight": 1 } }, { "key": "8463", "source": "644", "target": "442", "attributes": { "weight": 1 } }, { "key": "31849", "source": "644", "target": "1060", "attributes": { "weight": 1 } }, { "key": "2103", "source": "644", "target": "419", "attributes": { "weight": 6 } }, { "key": "27704", "source": "644", "target": "1042", "attributes": { "weight": 2 } }, { "key": "2110", "source": "644", "target": "662", "attributes": { "weight": 1 } }, { "key": "2106", "source": "644", "target": "651", "attributes": { "weight": 5 } }, { "key": "30341", "source": "644", "target": "1046", "attributes": { "weight": 1 } }, { "key": "9386", "source": "644", "target": "454", "attributes": { "weight": 2 } }, { "key": "2101", "source": "644", "target": "354", "attributes": { "weight": 5 } }, { "key": "2107", "source": "644", "target": "659", "attributes": { "weight": 1 } }, { "key": "2108", "source": "644", "target": "660", "attributes": { "weight": 1 } }, { "key": "2099", "source": "644", "target": "642", "attributes": { "weight": 1 } }, { "key": "2111", "source": "644", "target": "664", "attributes": { "weight": 5 } }, { "key": "3686", "source": "644", "target": "652", "attributes": { "weight": 2 } }, { "key": "36947", "source": "644", "target": "362", "attributes": { "weight": 1 } }, { "key": "31144", "source": "644", "target": "3043", "attributes": { "weight": 1 } }, { "key": "2104", "source": "644", "target": "649", "attributes": { "weight": 1 } }, { "key": "27667", "source": "644", "target": "178", "attributes": { "weight": 3 } }, { "key": "2098", "source": "644", "target": "641", "attributes": { "weight": 1 } }, { "key": "31847", "source": "644", "target": "1045", "attributes": { "weight": 1 } }, { "key": "32264", "source": "644", "target": "164", "attributes": { "weight": 1 } }, { "key": "2109", "source": "644", "target": "661", "attributes": { "weight": 6 } }, { "key": "2112", "source": "644", "target": "667", "attributes": { "weight": 4 } }, { "key": "3691", "source": "645", "target": "1038", "attributes": { "weight": 2 } }, { "key": "3714", "source": "645", "target": "664", "attributes": { "weight": 2 } }, { "key": "2132", "source": "645", "target": "362", "attributes": { "weight": 4 } }, { "key": "3701", "source": "645", "target": "1046", "attributes": { "weight": 3 } }, { "key": "9398", "source": "645", "target": "668", "attributes": { "weight": 1 } }, { "key": "3699", "source": "645", "target": "1044", "attributes": { "weight": 2 } }, { "key": "3708", "source": "645", "target": "361", "attributes": { "weight": 1 } }, { "key": "3712", "source": "645", "target": "163", "attributes": { "weight": 2 } }, { "key": "3705", "source": "645", "target": "1055", "attributes": { "weight": 3 } }, { "key": "3719", "source": "645", "target": "1062", "attributes": { "weight": 3 } }, { "key": "12891", "source": "645", "target": "264", "attributes": { "weight": 1 } }, { "key": "8471", "source": "645", "target": "442", "attributes": { "weight": 1 } }, { "key": "2120", "source": "645", "target": "647", "attributes": { "weight": 7 } }, { "key": "3710", "source": "645", "target": "1056", "attributes": { "weight": 2 } }, { "key": "2134", "source": "645", "target": "663", "attributes": { "weight": 2 } }, { "key": "3695", "source": "645", "target": "223", "attributes": { "weight": 2 } }, { "key": "3702", "source": "645", "target": "168", "attributes": { "weight": 3 } }, { "key": "3698", "source": "645", "target": "357", "attributes": { "weight": 1 } }, { "key": "2126", "source": "645", "target": "652", "attributes": { "weight": 4 } }, { "key": "2122", "source": "645", "target": "358", "attributes": { "weight": 4 } }, { "key": "9399", "source": "645", "target": "57", "attributes": { "weight": 2 } }, { "key": "31150", "source": "645", "target": "1613", "attributes": { "weight": 1 } }, { "key": "24610", "source": "645", "target": "2232", "attributes": { "weight": 1 } }, { "key": "2131", "source": "645", "target": "661", "attributes": { "weight": 7 } }, { "key": "3707", "source": "645", "target": "638", "attributes": { "weight": 3 } }, { "key": "2118", "source": "645", "target": "354", "attributes": { "weight": 5 } }, { "key": "3713", "source": "645", "target": "580", "attributes": { "weight": 2 } }, { "key": "2125", "source": "645", "target": "651", "attributes": { "weight": 5 } }, { "key": "9387", "source": "645", "target": "1380", "attributes": { "weight": 2 } }, { "key": "24482", "source": "645", "target": "790", "attributes": { "weight": 1 } }, { "key": "9393", "source": "645", "target": "791", "attributes": { "weight": 2 } }, { "key": "9395", "source": "645", "target": "1606", "attributes": { "weight": 1 } }, { "key": "3689", "source": "645", "target": "1036", "attributes": { "weight": 4 } }, { "key": "2115", "source": "645", "target": "642", "attributes": { "weight": 2 } }, { "key": "3716", "source": "645", "target": "665", "attributes": { "weight": 3 } }, { "key": "2124", "source": "645", "target": "650", "attributes": { "weight": 6 } }, { "key": "3715", "source": "645", "target": "1058", "attributes": { "weight": 3 } }, { "key": "2117", "source": "645", "target": "644", "attributes": { "weight": 6 } }, { "key": "15542", "source": "645", "target": "220", "attributes": { "weight": 2 } }, { "key": "30700", "source": "645", "target": "889", "attributes": { "weight": 1 } }, { "key": "3692", "source": "645", "target": "1039", "attributes": { "weight": 3 } }, { "key": "2128", "source": "645", "target": "657", "attributes": { "weight": 1 } }, { "key": "31148", "source": "645", "target": "3042", "attributes": { "weight": 1 } }, { "key": "2123", "source": "645", "target": "649", "attributes": { "weight": 1 } }, { "key": "2121", "source": "645", "target": "419", "attributes": { "weight": 6 } }, { "key": "2129", "source": "645", "target": "659", "attributes": { "weight": 5 } }, { "key": "2130", "source": "645", "target": "660", "attributes": { "weight": 5 } }, { "key": "3700", "source": "645", "target": "1045", "attributes": { "weight": 2 } }, { "key": "2136", "source": "645", "target": "667", "attributes": { "weight": 6 } }, { "key": "9392", "source": "645", "target": "1603", "attributes": { "weight": 1 } }, { "key": "2127", "source": "645", "target": "656", "attributes": { "weight": 4 } }, { "key": "29608", "source": "645", "target": "1763", "attributes": { "weight": 1 } }, { "key": "3704", "source": "645", "target": "1053", "attributes": { "weight": 3 } }, { "key": "2116", "source": "645", "target": "643", "attributes": { "weight": 3 } }, { "key": "31147", "source": "645", "target": "1035", "attributes": { "weight": 1 } }, { "key": "3694", "source": "645", "target": "164", "attributes": { "weight": 5 } }, { "key": "9389", "source": "645", "target": "339", "attributes": { "weight": 2 } }, { "key": "9388", "source": "645", "target": "1599", "attributes": { "weight": 1 } }, { "key": "25666", "source": "645", "target": "278", "attributes": { "weight": 1 } }, { "key": "2133", "source": "645", "target": "662", "attributes": { "weight": 5 } }, { "key": "3717", "source": "645", "target": "1060", "attributes": { "weight": 3 } }, { "key": "3703", "source": "645", "target": "1049", "attributes": { "weight": 5 } }, { "key": "24611", "source": "645", "target": "2118", "attributes": { "weight": 1 } }, { "key": "3706", "source": "645", "target": "359", "attributes": { "weight": 3 } }, { "key": "3697", "source": "645", "target": "1042", "attributes": { "weight": 4 } }, { "key": "22267", "source": "645", "target": "794", "attributes": { "weight": 1 } }, { "key": "9394", "source": "645", "target": "1605", "attributes": { "weight": 1 } }, { "key": "2114", "source": "645", "target": "641", "attributes": { "weight": 6 } }, { "key": "2119", "source": "645", "target": "646", "attributes": { "weight": 5 } }, { "key": "9396", "source": "645", "target": "1553", "attributes": { "weight": 2 } }, { "key": "3693", "source": "645", "target": "1040", "attributes": { "weight": 2 } }, { "key": "9391", "source": "645", "target": "454", "attributes": { "weight": 2 } }, { "key": "3711", "source": "645", "target": "468", "attributes": { "weight": 5 } }, { "key": "3709", "source": "645", "target": "171", "attributes": { "weight": 3 } }, { "key": "9397", "source": "645", "target": "189", "attributes": { "weight": 2 } }, { "key": "3690", "source": "645", "target": "1037", "attributes": { "weight": 2 } }, { "key": "3696", "source": "645", "target": "1041", "attributes": { "weight": 3 } }, { "key": "3718", "source": "645", "target": "178", "attributes": { "weight": 3 } }, { "key": "2135", "source": "645", "target": "666", "attributes": { "weight": 2 } }, { "key": "27358", "source": "645", "target": "340", "attributes": { "weight": 1 } }, { "key": "31149", "source": "645", "target": "1607", "attributes": { "weight": 1 } }, { "key": "9390", "source": "645", "target": "1047", "attributes": { "weight": 2 } }, { "key": "3720", "source": "645", "target": "669", "attributes": { "weight": 2 } }, { "key": "9412", "source": "646", "target": "1041", "attributes": { "weight": 1 } }, { "key": "3732", "source": "646", "target": "644", "attributes": { "weight": 2 } }, { "key": "31153", "source": "646", "target": "651", "attributes": { "weight": 1 } }, { "key": "22272", "source": "646", "target": "794", "attributes": { "weight": 1 } }, { "key": "2157", "source": "646", "target": "419", "attributes": { "weight": 1 } }, { "key": "2158", "source": "646", "target": "661", "attributes": { "weight": 4 } }, { "key": "2156", "source": "646", "target": "645", "attributes": { "weight": 5 } }, { "key": "27668", "source": "646", "target": "178", "attributes": { "weight": 2 } }, { "key": "3735", "source": "647", "target": "1045", "attributes": { "weight": 2 } }, { "key": "9575", "source": "647", "target": "171", "attributes": { "weight": 3 } }, { "key": "9415", "source": "647", "target": "1600", "attributes": { "weight": 1 } }, { "key": "9416", "source": "647", "target": "1041", "attributes": { "weight": 2 } }, { "key": "2163", "source": "647", "target": "651", "attributes": { "weight": 2 } }, { "key": "22666", "source": "647", "target": "1037", "attributes": { "weight": 1 } }, { "key": "3738", "source": "647", "target": "794", "attributes": { "weight": 4 } }, { "key": "2165", "source": "647", "target": "667", "attributes": { "weight": 3 } }, { "key": "2162", "source": "647", "target": "358", "attributes": { "weight": 4 } }, { "key": "27671", "source": "647", "target": "178", "attributes": { "weight": 3 } }, { "key": "27720", "source": "647", "target": "1042", "attributes": { "weight": 2 } }, { "key": "3736", "source": "647", "target": "1046", "attributes": { "weight": 2 } }, { "key": "26121", "source": "647", "target": "1056", "attributes": { "weight": 1 } }, { "key": "2159", "source": "647", "target": "644", "attributes": { "weight": 5 } }, { "key": "2160", "source": "647", "target": "645", "attributes": { "weight": 7 } }, { "key": "2164", "source": "647", "target": "661", "attributes": { "weight": 5 } }, { "key": "31154", "source": "647", "target": "1611", "attributes": { "weight": 1 } }, { "key": "31855", "source": "647", "target": "1060", "attributes": { "weight": 1 } }, { "key": "3734", "source": "647", "target": "1036", "attributes": { "weight": 4 } }, { "key": "3737", "source": "647", "target": "362", "attributes": { "weight": 3 } }, { "key": "31155", "source": "647", "target": "664", "attributes": { "weight": 1 } }, { "key": "2161", "source": "647", "target": "419", "attributes": { "weight": 2 } }, { "key": "2194", "source": "648", "target": "649", "attributes": { "weight": 3 } }, { "key": "9448", "source": "648", "target": "1602", "attributes": { "weight": 1 } }, { "key": "2193", "source": "648", "target": "354", "attributes": { "weight": 2 } }, { "key": "25575", "source": "649", "target": "2611", "attributes": { "weight": 1 } }, { "key": "3772", "source": "649", "target": "648", "attributes": { "weight": 2 } }, { "key": "3773", "source": "649", "target": "1052", "attributes": { "weight": 3 } }, { "key": "2205", "source": "649", "target": "653", "attributes": { "weight": 4 } }, { "key": "2201", "source": "649", "target": "644", "attributes": { "weight": 1 } }, { "key": "2203", "source": "649", "target": "354", "attributes": { "weight": 6 } }, { "key": "2202", "source": "649", "target": "645", "attributes": { "weight": 1 } }, { "key": "3771", "source": "649", "target": "1034", "attributes": { "weight": 2 } }, { "key": "25574", "source": "649", "target": "164", "attributes": { "weight": 1 } }, { "key": "2207", "source": "649", "target": "655", "attributes": { "weight": 2 } }, { "key": "2204", "source": "649", "target": "419", "attributes": { "weight": 6 } }, { "key": "2206", "source": "649", "target": "654", "attributes": { "weight": 2 } }, { "key": "22283", "source": "650", "target": "794", "attributes": { "weight": 1 } }, { "key": "34973", "source": "650", "target": "3", "attributes": { "weight": 1 } }, { "key": "2211", "source": "650", "target": "419", "attributes": { "weight": 3 } }, { "key": "2210", "source": "650", "target": "645", "attributes": { "weight": 6 } }, { "key": "2212", "source": "650", "target": "651", "attributes": { "weight": 2 } }, { "key": "3774", "source": "650", "target": "661", "attributes": { "weight": 4 } }, { "key": "2208", "source": "650", "target": "641", "attributes": { "weight": 1 } }, { "key": "9460", "source": "650", "target": "1056", "attributes": { "weight": 1 } }, { "key": "2209", "source": "650", "target": "644", "attributes": { "weight": 6 } }, { "key": "9459", "source": "650", "target": "358", "attributes": { "weight": 1 } }, { "key": "30444", "source": "650", "target": "1046", "attributes": { "weight": 1 } }, { "key": "9461", "source": "650", "target": "664", "attributes": { "weight": 2 } }, { "key": "2220", "source": "651", "target": "358", "attributes": { "weight": 3 } }, { "key": "2217", "source": "651", "target": "354", "attributes": { "weight": 3 } }, { "key": "27678", "source": "651", "target": "178", "attributes": { "weight": 3 } }, { "key": "2215", "source": "651", "target": "644", "attributes": { "weight": 5 } }, { "key": "9465", "source": "651", "target": "359", "attributes": { "weight": 2 } }, { "key": "9468", "source": "651", "target": "1614", "attributes": { "weight": 2 } }, { "key": "32270", "source": "651", "target": "164", "attributes": { "weight": 1 } }, { "key": "30449", "source": "651", "target": "1046", "attributes": { "weight": 1 } }, { "key": "2223", "source": "651", "target": "661", "attributes": { "weight": 5 } }, { "key": "31894", "source": "651", "target": "1045", "attributes": { "weight": 1 } }, { "key": "9469", "source": "651", "target": "1615", "attributes": { "weight": 2 } }, { "key": "9467", "source": "651", "target": "794", "attributes": { "weight": 2 } }, { "key": "2225", "source": "651", "target": "665", "attributes": { "weight": 1 } }, { "key": "2218", "source": "651", "target": "647", "attributes": { "weight": 2 } }, { "key": "31158", "source": "651", "target": "646", "attributes": { "weight": 1 } }, { "key": "31159", "source": "651", "target": "652", "attributes": { "weight": 1 } }, { "key": "14259", "source": "651", "target": "168", "attributes": { "weight": 1 } }, { "key": "2214", "source": "651", "target": "642", "attributes": { "weight": 1 } }, { "key": "2224", "source": "651", "target": "664", "attributes": { "weight": 5 } }, { "key": "5125", "source": "651", "target": "468", "attributes": { "weight": 2 } }, { "key": "2213", "source": "651", "target": "641", "attributes": { "weight": 3 } }, { "key": "2226", "source": "651", "target": "669", "attributes": { "weight": 3 } }, { "key": "2219", "source": "651", "target": "419", "attributes": { "weight": 5 } }, { "key": "3779", "source": "651", "target": "171", "attributes": { "weight": 2 } }, { "key": "9466", "source": "651", "target": "362", "attributes": { "weight": 2 } }, { "key": "3780", "source": "651", "target": "1059", "attributes": { "weight": 3 } }, { "key": "3778", "source": "651", "target": "1036", "attributes": { "weight": 2 } }, { "key": "31160", "source": "651", "target": "1051", "attributes": { "weight": 1 } }, { "key": "2222", "source": "651", "target": "659", "attributes": { "weight": 1 } }, { "key": "2221", "source": "651", "target": "650", "attributes": { "weight": 2 } }, { "key": "31895", "source": "651", "target": "1060", "attributes": { "weight": 1 } }, { "key": "2216", "source": "651", "target": "645", "attributes": { "weight": 5 } }, { "key": "3782", "source": "652", "target": "664", "attributes": { "weight": 2 } }, { "key": "2228", "source": "652", "target": "419", "attributes": { "weight": 5 } }, { "key": "2229", "source": "652", "target": "662", "attributes": { "weight": 1 } }, { "key": "31161", "source": "652", "target": "651", "attributes": { "weight": 1 } }, { "key": "2230", "source": "652", "target": "665", "attributes": { "weight": 1 } }, { "key": "2227", "source": "652", "target": "645", "attributes": { "weight": 4 } }, { "key": "3781", "source": "652", "target": "644", "attributes": { "weight": 2 } }, { "key": "2232", "source": "653", "target": "649", "attributes": { "weight": 4 } }, { "key": "2233", "source": "653", "target": "654", "attributes": { "weight": 1 } }, { "key": "9473", "source": "653", "target": "1034", "attributes": { "weight": 1 } }, { "key": "9474", "source": "653", "target": "1052", "attributes": { "weight": 1 } }, { "key": "2231", "source": "653", "target": "354", "attributes": { "weight": 2 } }, { "key": "2235", "source": "654", "target": "649", "attributes": { "weight": 2 } }, { "key": "2234", "source": "654", "target": "354", "attributes": { "weight": 5 } }, { "key": "2236", "source": "654", "target": "653", "attributes": { "weight": 1 } }, { "key": "25577", "source": "655", "target": "2611", "attributes": { "weight": 1 } }, { "key": "2239", "source": "655", "target": "649", "attributes": { "weight": 2 } }, { "key": "2237", "source": "655", "target": "354", "attributes": { "weight": 6 } }, { "key": "25576", "source": "655", "target": "164", "attributes": { "weight": 1 } }, { "key": "2238", "source": "655", "target": "419", "attributes": { "weight": 6 } }, { "key": "31162", "source": "656", "target": "666", "attributes": { "weight": 1 } }, { "key": "2240", "source": "656", "target": "645", "attributes": { "weight": 4 } }, { "key": "3783", "source": "656", "target": "419", "attributes": { "weight": 4 } }, { "key": "2241", "source": "657", "target": "419", "attributes": { "weight": 6 } }, { "key": "22257", "source": "657", "target": "645", "attributes": { "weight": 1 } }, { "key": "9479", "source": "657", "target": "1050", "attributes": { "weight": 1 } }, { "key": "2242", "source": "657", "target": "666", "attributes": { "weight": 4 } }, { "key": "2243", "source": "658", "target": "645", "attributes": { "weight": 2 } }, { "key": "2244", "source": "658", "target": "354", "attributes": { "weight": 3 } }, { "key": "2246", "source": "658", "target": "663", "attributes": { "weight": 1 } }, { "key": "2245", "source": "658", "target": "419", "attributes": { "weight": 5 } }, { "key": "36953", "source": "659", "target": "362", "attributes": { "weight": 1 } }, { "key": "22290", "source": "659", "target": "794", "attributes": { "weight": 2 } }, { "key": "2250", "source": "659", "target": "354", "attributes": { "weight": 1 } }, { "key": "2248", "source": "659", "target": "644", "attributes": { "weight": 1 } }, { "key": "3794", "source": "659", "target": "419", "attributes": { "weight": 4 } }, { "key": "2251", "source": "659", "target": "651", "attributes": { "weight": 1 } }, { "key": "2249", "source": "659", "target": "645", "attributes": { "weight": 5 } }, { "key": "2247", "source": "659", "target": "641", "attributes": { "weight": 1 } }, { "key": "18065", "source": "659", "target": "1036", "attributes": { "weight": 1 } }, { "key": "9498", "source": "660", "target": "1043", "attributes": { "weight": 1 } }, { "key": "31961", "source": "660", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31960", "source": "660", "target": "359", "attributes": { "weight": 1 } }, { "key": "36958", "source": "660", "target": "362", "attributes": { "weight": 1 } }, { "key": "2255", "source": "660", "target": "419", "attributes": { "weight": 6 } }, { "key": "2254", "source": "660", "target": "645", "attributes": { "weight": 5 } }, { "key": "2256", "source": "660", "target": "663", "attributes": { "weight": 1 } }, { "key": "2253", "source": "660", "target": "644", "attributes": { "weight": 1 } }, { "key": "21589", "source": "660", "target": "358", "attributes": { "weight": 1 } }, { "key": "22678", "source": "661", "target": "1037", "attributes": { "weight": 1 } }, { "key": "3811", "source": "661", "target": "1051", "attributes": { "weight": 4 } }, { "key": "2259", "source": "661", "target": "645", "attributes": { "weight": 7 } }, { "key": "2261", "source": "661", "target": "646", "attributes": { "weight": 4 } }, { "key": "2268", "source": "661", "target": "667", "attributes": { "weight": 4 } }, { "key": "3809", "source": "661", "target": "1036", "attributes": { "weight": 2 } }, { "key": "26145", "source": "661", "target": "1056", "attributes": { "weight": 1 } }, { "key": "5497", "source": "661", "target": "468", "attributes": { "weight": 2 } }, { "key": "2258", "source": "661", "target": "644", "attributes": { "weight": 5 } }, { "key": "2263", "source": "661", "target": "419", "attributes": { "weight": 5 } }, { "key": "31166", "source": "661", "target": "1041", "attributes": { "weight": 1 } }, { "key": "9502", "source": "661", "target": "362", "attributes": { "weight": 2 } }, { "key": "3813", "source": "661", "target": "171", "attributes": { "weight": 4 } }, { "key": "3812", "source": "661", "target": "1054", "attributes": { "weight": 5 } }, { "key": "35189", "source": "661", "target": "1562", "attributes": { "weight": 1 } }, { "key": "2265", "source": "661", "target": "651", "attributes": { "weight": 5 } }, { "key": "18395", "source": "661", "target": "1621", "attributes": { "weight": 1 } }, { "key": "27726", "source": "661", "target": "2181", "attributes": { "weight": 2 } }, { "key": "31963", "source": "661", "target": "359", "attributes": { "weight": 1 } }, { "key": "3814", "source": "661", "target": "1061", "attributes": { "weight": 3 } }, { "key": "31964", "source": "661", "target": "1060", "attributes": { "weight": 1 } }, { "key": "2269", "source": "661", "target": "669", "attributes": { "weight": 2 } }, { "key": "30025", "source": "661", "target": "1611", "attributes": { "weight": 1 } }, { "key": "9504", "source": "661", "target": "794", "attributes": { "weight": 2 } }, { "key": "9500", "source": "661", "target": "1042", "attributes": { "weight": 4 } }, { "key": "9503", "source": "661", "target": "1553", "attributes": { "weight": 2 } }, { "key": "2264", "source": "661", "target": "358", "attributes": { "weight": 2 } }, { "key": "2260", "source": "661", "target": "354", "attributes": { "weight": 3 } }, { "key": "14266", "source": "661", "target": "168", "attributes": { "weight": 1 } }, { "key": "2257", "source": "661", "target": "641", "attributes": { "weight": 2 } }, { "key": "31962", "source": "661", "target": "1045", "attributes": { "weight": 1 } }, { "key": "30024", "source": "661", "target": "357", "attributes": { "weight": 1 } }, { "key": "9501", "source": "661", "target": "454", "attributes": { "weight": 2 } }, { "key": "30464", "source": "661", "target": "1046", "attributes": { "weight": 1 } }, { "key": "2267", "source": "661", "target": "178", "attributes": { "weight": 7 } }, { "key": "2262", "source": "661", "target": "647", "attributes": { "weight": 5 } }, { "key": "32275", "source": "661", "target": "164", "attributes": { "weight": 2 } }, { "key": "2266", "source": "661", "target": "664", "attributes": { "weight": 3 } }, { "key": "3810", "source": "661", "target": "650", "attributes": { "weight": 4 } }, { "key": "2272", "source": "662", "target": "645", "attributes": { "weight": 5 } }, { "key": "2274", "source": "662", "target": "419", "attributes": { "weight": 2 } }, { "key": "22302", "source": "662", "target": "794", "attributes": { "weight": 1 } }, { "key": "2273", "source": "662", "target": "354", "attributes": { "weight": 2 } }, { "key": "9515", "source": "662", "target": "665", "attributes": { "weight": 1 } }, { "key": "2276", "source": "662", "target": "664", "attributes": { "weight": 2 } }, { "key": "2275", "source": "662", "target": "652", "attributes": { "weight": 1 } }, { "key": "2271", "source": "662", "target": "644", "attributes": { "weight": 1 } }, { "key": "2278", "source": "663", "target": "419", "attributes": { "weight": 5 } }, { "key": "2280", "source": "663", "target": "660", "attributes": { "weight": 1 } }, { "key": "2279", "source": "663", "target": "658", "attributes": { "weight": 2 } }, { "key": "2277", "source": "663", "target": "354", "attributes": { "weight": 4 } }, { "key": "2284", "source": "664", "target": "419", "attributes": { "weight": 6 } }, { "key": "2283", "source": "664", "target": "354", "attributes": { "weight": 1 } }, { "key": "9518", "source": "664", "target": "650", "attributes": { "weight": 2 } }, { "key": "31171", "source": "664", "target": "647", "attributes": { "weight": 1 } }, { "key": "2287", "source": "664", "target": "662", "attributes": { "weight": 2 } }, { "key": "3820", "source": "664", "target": "645", "attributes": { "weight": 2 } }, { "key": "24585", "source": "664", "target": "794", "attributes": { "weight": 2 } }, { "key": "2281", "source": "664", "target": "641", "attributes": { "weight": 2 } }, { "key": "2286", "source": "664", "target": "661", "attributes": { "weight": 3 } }, { "key": "2285", "source": "664", "target": "651", "attributes": { "weight": 5 } }, { "key": "2282", "source": "664", "target": "644", "attributes": { "weight": 5 } }, { "key": "3821", "source": "664", "target": "652", "attributes": { "weight": 2 } }, { "key": "2290", "source": "665", "target": "651", "attributes": { "weight": 1 } }, { "key": "3825", "source": "665", "target": "645", "attributes": { "weight": 2 } }, { "key": "3824", "source": "665", "target": "1039", "attributes": { "weight": 2 } }, { "key": "2289", "source": "665", "target": "419", "attributes": { "weight": 4 } }, { "key": "2288", "source": "665", "target": "354", "attributes": { "weight": 1 } }, { "key": "2291", "source": "665", "target": "652", "attributes": { "weight": 1 } }, { "key": "9521", "source": "665", "target": "669", "attributes": { "weight": 1 } }, { "key": "2294", "source": "666", "target": "419", "attributes": { "weight": 6 } }, { "key": "2293", "source": "666", "target": "645", "attributes": { "weight": 1 } }, { "key": "31173", "source": "666", "target": "1035", "attributes": { "weight": 1 } }, { "key": "9534", "source": "666", "target": "1050", "attributes": { "weight": 1 } }, { "key": "2295", "source": "666", "target": "657", "attributes": { "weight": 4 } }, { "key": "31174", "source": "666", "target": "656", "attributes": { "weight": 1 } }, { "key": "9539", "source": "667", "target": "794", "attributes": { "weight": 3 } }, { "key": "22688", "source": "667", "target": "1037", "attributes": { "weight": 1 } }, { "key": "27730", "source": "667", "target": "1042", "attributes": { "weight": 2 } }, { "key": "2296", "source": "667", "target": "644", "attributes": { "weight": 4 } }, { "key": "30033", "source": "667", "target": "2916", "attributes": { "weight": 1 } }, { "key": "26147", "source": "667", "target": "1056", "attributes": { "weight": 1 } }, { "key": "9537", "source": "667", "target": "1611", "attributes": { "weight": 2 } }, { "key": "3832", "source": "667", "target": "362", "attributes": { "weight": 3 } }, { "key": "2300", "source": "667", "target": "661", "attributes": { "weight": 4 } }, { "key": "9538", "source": "667", "target": "1060", "attributes": { "weight": 1 } }, { "key": "2298", "source": "667", "target": "647", "attributes": { "weight": 3 } }, { "key": "27699", "source": "667", "target": "178", "attributes": { "weight": 3 } }, { "key": "3830", "source": "667", "target": "1036", "attributes": { "weight": 3 } }, { "key": "3831", "source": "667", "target": "1045", "attributes": { "weight": 1 } }, { "key": "2299", "source": "667", "target": "358", "attributes": { "weight": 3 } }, { "key": "2297", "source": "667", "target": "645", "attributes": { "weight": 6 } }, { "key": "30486", "source": "667", "target": "1046", "attributes": { "weight": 1 } }, { "key": "9543", "source": "668", "target": "645", "attributes": { "weight": 1 } }, { "key": "2301", "source": "668", "target": "419", "attributes": { "weight": 5 } }, { "key": "3836", "source": "668", "target": "354", "attributes": { "weight": 2 } }, { "key": "9544", "source": "668", "target": "361", "attributes": { "weight": 1 } }, { "key": "9542", "source": "668", "target": "1599", "attributes": { "weight": 1 } }, { "key": "2303", "source": "669", "target": "644", "attributes": { "weight": 4 } }, { "key": "2302", "source": "669", "target": "642", "attributes": { "weight": 1 } }, { "key": "9545", "source": "669", "target": "419", "attributes": { "weight": 1 } }, { "key": "2305", "source": "669", "target": "661", "attributes": { "weight": 2 } }, { "key": "27701", "source": "669", "target": "178", "attributes": { "weight": 2 } }, { "key": "2304", "source": "669", "target": "651", "attributes": { "weight": 3 } }, { "key": "3837", "source": "669", "target": "645", "attributes": { "weight": 3 } }, { "key": "3838", "source": "669", "target": "354", "attributes": { "weight": 2 } }, { "key": "2307", "source": "670", "target": "340", "attributes": { "weight": 2 } }, { "key": "2306", "source": "670", "target": "671", "attributes": { "weight": 2 } }, { "key": "24660", "source": "670", "target": "2512", "attributes": { "weight": 1 } }, { "key": "24663", "source": "671", "target": "2512", "attributes": { "weight": 1 } }, { "key": "2310", "source": "671", "target": "670", "attributes": { "weight": 2 } }, { "key": "33715", "source": "672", "target": "482", "attributes": { "weight": 1 } }, { "key": "33704", "source": "672", "target": "1836", "attributes": { "weight": 1 } }, { "key": "33705", "source": "672", "target": "2258", "attributes": { "weight": 1 } }, { "key": "15383", "source": "672", "target": "443", "attributes": { "weight": 1 } }, { "key": "33716", "source": "672", "target": "2110", "attributes": { "weight": 1 } }, { "key": "15391", "source": "672", "target": "483", "attributes": { "weight": 1 } }, { "key": "17011", "source": "672", "target": "59", "attributes": { "weight": 1 } }, { "key": "33718", "source": "672", "target": "1092", "attributes": { "weight": 1 } }, { "key": "15390", "source": "672", "target": "231", "attributes": { "weight": 2 } }, { "key": "21174", "source": "672", "target": "1832", "attributes": { "weight": 1 } }, { "key": "33714", "source": "672", "target": "480", "attributes": { "weight": 1 } }, { "key": "17012", "source": "672", "target": "130", "attributes": { "weight": 2 } }, { "key": "33702", "source": "672", "target": "52", "attributes": { "weight": 1 } }, { "key": "33712", "source": "672", "target": "191", "attributes": { "weight": 1 } }, { "key": "11398", "source": "672", "target": "1742", "attributes": { "weight": 1 } }, { "key": "17317", "source": "672", "target": "449", "attributes": { "weight": 2 } }, { "key": "33720", "source": "672", "target": "494", "attributes": { "weight": 1 } }, { "key": "15382", "source": "672", "target": "424", "attributes": { "weight": 2 } }, { "key": "15384", "source": "672", "target": "860", "attributes": { "weight": 1 } }, { "key": "31805", "source": "672", "target": "595", "attributes": { "weight": 1 } }, { "key": "31804", "source": "672", "target": "8", "attributes": { "weight": 1 } }, { "key": "15385", "source": "672", "target": "1358", "attributes": { "weight": 1 } }, { "key": "33695", "source": "672", "target": "223", "attributes": { "weight": 1 } }, { "key": "33713", "source": "672", "target": "1125", "attributes": { "weight": 1 } }, { "key": "33694", "source": "672", "target": "51", "attributes": { "weight": 1 } }, { "key": "21177", "source": "672", "target": "489", "attributes": { "weight": 1 } }, { "key": "32935", "source": "672", "target": "470", "attributes": { "weight": 2 } }, { "key": "33691", "source": "672", "target": "429", "attributes": { "weight": 1 } }, { "key": "35704", "source": "672", "target": "1738", "attributes": { "weight": 2 } }, { "key": "15387", "source": "672", "target": "462", "attributes": { "weight": 1 } }, { "key": "33075", "source": "672", "target": "1355", "attributes": { "weight": 1 } }, { "key": "15388", "source": "672", "target": "53", "attributes": { "weight": 1 } }, { "key": "33693", "source": "672", "target": "432", "attributes": { "weight": 1 } }, { "key": "21175", "source": "672", "target": "2095", "attributes": { "weight": 1 } }, { "key": "33076", "source": "672", "target": "1368", "attributes": { "weight": 1 } }, { "key": "33701", "source": "672", "target": "1219", "attributes": { "weight": 1 } }, { "key": "17017", "source": "672", "target": "1389", "attributes": { "weight": 1 } }, { "key": "33696", "source": "672", "target": "425", "attributes": { "weight": 1 } }, { "key": "17013", "source": "672", "target": "434", "attributes": { "weight": 1 } }, { "key": "33703", "source": "672", "target": "135", "attributes": { "weight": 1 } }, { "key": "15386", "source": "672", "target": "458", "attributes": { "weight": 2 } }, { "key": "15381", "source": "672", "target": "1353", "attributes": { "weight": 1 } }, { "key": "33698", "source": "672", "target": "441", "attributes": { "weight": 1 } }, { "key": "33717", "source": "672", "target": "487", "attributes": { "weight": 1 } }, { "key": "31555", "source": "672", "target": "1520", "attributes": { "weight": 1 } }, { "key": "15392", "source": "672", "target": "56", "attributes": { "weight": 3 } }, { "key": "33709", "source": "672", "target": "473", "attributes": { "weight": 1 } }, { "key": "17014", "source": "672", "target": "674", "attributes": { "weight": 2 } }, { "key": "17015", "source": "672", "target": "70", "attributes": { "weight": 1 } }, { "key": "33710", "source": "672", "target": "190", "attributes": { "weight": 1 } }, { "key": "33708", "source": "672", "target": "472", "attributes": { "weight": 1 } }, { "key": "33711", "source": "672", "target": "474", "attributes": { "weight": 1 } }, { "key": "15389", "source": "672", "target": "54", "attributes": { "weight": 2 } }, { "key": "7054", "source": "672", "target": "232", "attributes": { "weight": 2 } }, { "key": "17016", "source": "672", "target": "1337", "attributes": { "weight": 1 } }, { "key": "31556", "source": "672", "target": "428", "attributes": { "weight": 1 } }, { "key": "33697", "source": "672", "target": "440", "attributes": { "weight": 1 } }, { "key": "2311", "source": "672", "target": "340", "attributes": { "weight": 3 } }, { "key": "33692", "source": "672", "target": "220", "attributes": { "weight": 1 } }, { "key": "21173", "source": "672", "target": "221", "attributes": { "weight": 1 } }, { "key": "33719", "source": "672", "target": "192", "attributes": { "weight": 1 } }, { "key": "33706", "source": "672", "target": "228", "attributes": { "weight": 1 } }, { "key": "33700", "source": "672", "target": "452", "attributes": { "weight": 1 } }, { "key": "21176", "source": "672", "target": "2111", "attributes": { "weight": 1 } }, { "key": "33707", "source": "672", "target": "471", "attributes": { "weight": 1 } }, { "key": "33699", "source": "672", "target": "450", "attributes": { "weight": 1 } }, { "key": "27891", "source": "672", "target": "339", "attributes": { "weight": 1 } }, { "key": "15393", "source": "672", "target": "499", "attributes": { "weight": 1 } }, { "key": "33690", "source": "672", "target": "1703", "attributes": { "weight": 1 } }, { "key": "24699", "source": "673", "target": "5", "attributes": { "weight": 2 } }, { "key": "4247", "source": "673", "target": "1136", "attributes": { "weight": 1 } }, { "key": "37413", "source": "673", "target": "2831", "attributes": { "weight": 1 } }, { "key": "4250", "source": "673", "target": "495", "attributes": { "weight": 2 } }, { "key": "4251", "source": "673", "target": "352", "attributes": { "weight": 1 } }, { "key": "21604", "source": "673", "target": "358", "attributes": { "weight": 1 } }, { "key": "11399", "source": "673", "target": "1742", "attributes": { "weight": 1 } }, { "key": "26929", "source": "673", "target": "497", "attributes": { "weight": 1 } }, { "key": "14899", "source": "673", "target": "319", "attributes": { "weight": 1 } }, { "key": "2312", "source": "673", "target": "340", "attributes": { "weight": 3 } }, { "key": "30948", "source": "673", "target": "3", "attributes": { "weight": 1 } }, { "key": "4246", "source": "673", "target": "220", "attributes": { "weight": 2 } }, { "key": "4052", "source": "673", "target": "432", "attributes": { "weight": 1 } }, { "key": "11288", "source": "673", "target": "452", "attributes": { "weight": 1 } }, { "key": "25641", "source": "673", "target": "787", "attributes": { "weight": 1 } }, { "key": "29519", "source": "673", "target": "232", "attributes": { "weight": 2 } }, { "key": "35225", "source": "673", "target": "2112", "attributes": { "weight": 1 } }, { "key": "25899", "source": "673", "target": "1024", "attributes": { "weight": 2 } }, { "key": "16560", "source": "673", "target": "2077", "attributes": { "weight": 1 } }, { "key": "25801", "source": "673", "target": "791", "attributes": { "weight": 2 } }, { "key": "35226", "source": "673", "target": "2114", "attributes": { "weight": 1 } }, { "key": "4248", "source": "673", "target": "442", "attributes": { "weight": 2 } }, { "key": "26762", "source": "673", "target": "189", "attributes": { "weight": 1 } }, { "key": "4249", "source": "673", "target": "695", "attributes": { "weight": 2 } }, { "key": "12980", "source": "674", "target": "304", "attributes": { "weight": 2 } }, { "key": "26427", "source": "674", "target": "189", "attributes": { "weight": 2 } }, { "key": "31260", "source": "674", "target": "1808", "attributes": { "weight": 1 } }, { "key": "16759", "source": "674", "target": "464", "attributes": { "weight": 1 } }, { "key": "31279", "source": "674", "target": "1247", "attributes": { "weight": 1 } }, { "key": "31299", "source": "674", "target": "73", "attributes": { "weight": 2 } }, { "key": "36288", "source": "674", "target": "2081", "attributes": { "weight": 1 } }, { "key": "16746", "source": "674", "target": "59", "attributes": { "weight": 3 } }, { "key": "16762", "source": "674", "target": "135", "attributes": { "weight": 2 } }, { "key": "29614", "source": "674", "target": "1253", "attributes": { "weight": 1 } }, { "key": "16764", "source": "674", "target": "54", "attributes": { "weight": 1 } }, { "key": "25377", "source": "674", "target": "433", "attributes": { "weight": 1 } }, { "key": "16758", "source": "674", "target": "370", "attributes": { "weight": 1 } }, { "key": "7246", "source": "674", "target": "1063", "attributes": { "weight": 3 } }, { "key": "16753", "source": "674", "target": "445", "attributes": { "weight": 1 } }, { "key": "22715", "source": "674", "target": "2382", "attributes": { "weight": 1 } }, { "key": "16769", "source": "674", "target": "479", "attributes": { "weight": 4 } }, { "key": "31298", "source": "674", "target": "72", "attributes": { "weight": 1 } }, { "key": "29387", "source": "674", "target": "232", "attributes": { "weight": 1 } }, { "key": "31297", "source": "674", "target": "595", "attributes": { "weight": 2 } }, { "key": "16763", "source": "674", "target": "470", "attributes": { "weight": 3 } }, { "key": "9948", "source": "674", "target": "494", "attributes": { "weight": 4 } }, { "key": "31276", "source": "674", "target": "1232", "attributes": { "weight": 1 } }, { "key": "24025", "source": "674", "target": "1116", "attributes": { "weight": 2 } }, { "key": "31289", "source": "674", "target": "1873", "attributes": { "weight": 1 } }, { "key": "31275", "source": "674", "target": "2088", "attributes": { "weight": 2 } }, { "key": "31294", "source": "674", "target": "178", "attributes": { "weight": 2 } }, { "key": "16766", "source": "674", "target": "1367", "attributes": { "weight": 1 } }, { "key": "6650", "source": "674", "target": "495", "attributes": { "weight": 5 } }, { "key": "31263", "source": "674", "target": "435", "attributes": { "weight": 1 } }, { "key": "16772", "source": "674", "target": "488", "attributes": { "weight": 2 } }, { "key": "16768", "source": "674", "target": "1125", "attributes": { "weight": 1 } }, { "key": "31264", "source": "674", "target": "1110", "attributes": { "weight": 1 } }, { "key": "31271", "source": "674", "target": "1118", "attributes": { "weight": 1 } }, { "key": "23581", "source": "674", "target": "2248", "attributes": { "weight": 1 } }, { "key": "16767", "source": "674", "target": "474", "attributes": { "weight": 2 } }, { "key": "4636", "source": "674", "target": "468", "attributes": { "weight": 3 } }, { "key": "16775", "source": "674", "target": "1389", "attributes": { "weight": 3 } }, { "key": "37063", "source": "674", "target": "857", "attributes": { "weight": 1 } }, { "key": "11040", "source": "674", "target": "452", "attributes": { "weight": 4 } }, { "key": "16747", "source": "674", "target": "432", "attributes": { "weight": 2 } }, { "key": "18445", "source": "674", "target": "1738", "attributes": { "weight": 3 } }, { "key": "31272", "source": "674", "target": "865", "attributes": { "weight": 1 } }, { "key": "25086", "source": "674", "target": "1547", "attributes": { "weight": 2 } }, { "key": "33328", "source": "674", "target": "425", "attributes": { "weight": 1 } }, { "key": "16761", "source": "674", "target": "338", "attributes": { "weight": 1 } }, { "key": "31277", "source": "674", "target": "791", "attributes": { "weight": 2 } }, { "key": "16748", "source": "674", "target": "130", "attributes": { "weight": 4 } }, { "key": "6649", "source": "674", "target": "193", "attributes": { "weight": 5 } }, { "key": "31284", "source": "674", "target": "473", "attributes": { "weight": 2 } }, { "key": "31261", "source": "674", "target": "1141", "attributes": { "weight": 1 } }, { "key": "31291", "source": "674", "target": "427", "attributes": { "weight": 1 } }, { "key": "12978", "source": "674", "target": "454", "attributes": { "weight": 4 } }, { "key": "16773", "source": "674", "target": "672", "attributes": { "weight": 2 } }, { "key": "31266", "source": "674", "target": "1522", "attributes": { "weight": 1 } }, { "key": "10811", "source": "674", "target": "457", "attributes": { "weight": 3 } }, { "key": "31290", "source": "674", "target": "478", "attributes": { "weight": 1 } }, { "key": "29386", "source": "674", "target": "424", "attributes": { "weight": 1 } }, { "key": "31269", "source": "674", "target": "1047", "attributes": { "weight": 1 } }, { "key": "30354", "source": "674", "target": "1046", "attributes": { "weight": 1 } }, { "key": "31282", "source": "674", "target": "2620", "attributes": { "weight": 1 } }, { "key": "17351", "source": "674", "target": "358", "attributes": { "weight": 2 } }, { "key": "31265", "source": "674", "target": "164", "attributes": { "weight": 2 } }, { "key": "31273", "source": "674", "target": "455", "attributes": { "weight": 1 } }, { "key": "16756", "source": "674", "target": "451", "attributes": { "weight": 1 } }, { "key": "33327", "source": "674", "target": "51", "attributes": { "weight": 1 } }, { "key": "31293", "source": "674", "target": "1323", "attributes": { "weight": 1 } }, { "key": "16744", "source": "674", "target": "429", "attributes": { "weight": 4 } }, { "key": "3937", "source": "674", "target": "487", "attributes": { "weight": 2 } }, { "key": "16745", "source": "674", "target": "1354", "attributes": { "weight": 3 } }, { "key": "16776", "source": "674", "target": "500", "attributes": { "weight": 3 } }, { "key": "31285", "source": "674", "target": "1282", "attributes": { "weight": 1 } }, { "key": "16750", "source": "674", "target": "2086", "attributes": { "weight": 1 } }, { "key": "31296", "source": "674", "target": "1337", "attributes": { "weight": 1 } }, { "key": "7243", "source": "674", "target": "70", "attributes": { "weight": 6 } }, { "key": "31262", "source": "674", "target": "1755", "attributes": { "weight": 1 } }, { "key": "31295", "source": "674", "target": "490", "attributes": { "weight": 1 } }, { "key": "8665", "source": "674", "target": "442", "attributes": { "weight": 4 } }, { "key": "6647", "source": "674", "target": "183", "attributes": { "weight": 4 } }, { "key": "7242", "source": "674", "target": "220", "attributes": { "weight": 6 } }, { "key": "31278", "source": "674", "target": "1764", "attributes": { "weight": 2 } }, { "key": "16751", "source": "674", "target": "440", "attributes": { "weight": 2 } }, { "key": "31286", "source": "674", "target": "580", "attributes": { "weight": 1 } }, { "key": "10477", "source": "674", "target": "225", "attributes": { "weight": 1 } }, { "key": "16755", "source": "674", "target": "450", "attributes": { "weight": 2 } }, { "key": "16774", "source": "674", "target": "340", "attributes": { "weight": 2 } }, { "key": "26298", "source": "674", "target": "1258", "attributes": { "weight": 2 } }, { "key": "16757", "source": "674", "target": "199", "attributes": { "weight": 1 } }, { "key": "23415", "source": "674", "target": "223", "attributes": { "weight": 4 } }, { "key": "24766", "source": "674", "target": "486", "attributes": { "weight": 1 } }, { "key": "31288", "source": "674", "target": "1026", "attributes": { "weight": 1 } }, { "key": "33329", "source": "674", "target": "489", "attributes": { "weight": 1 } }, { "key": "31292", "source": "674", "target": "305", "attributes": { "weight": 1 } }, { "key": "31274", "source": "674", "target": "188", "attributes": { "weight": 2 } }, { "key": "12671", "source": "674", "target": "695", "attributes": { "weight": 3 } }, { "key": "31267", "source": "674", "target": "222", "attributes": { "weight": 1 } }, { "key": "31283", "source": "674", "target": "472", "attributes": { "weight": 3 } }, { "key": "16749", "source": "674", "target": "434", "attributes": { "weight": 2 } }, { "key": "29172", "source": "674", "target": "1750", "attributes": { "weight": 2 } }, { "key": "30651", "source": "674", "target": "2994", "attributes": { "weight": 1 } }, { "key": "7244", "source": "674", "target": "1390", "attributes": { "weight": 2 } }, { "key": "27844", "source": "674", "target": "339", "attributes": { "weight": 2 } }, { "key": "16754", "source": "674", "target": "449", "attributes": { "weight": 3 } }, { "key": "16752", "source": "674", "target": "1070", "attributes": { "weight": 1 } }, { "key": "31287", "source": "674", "target": "123", "attributes": { "weight": 1 } }, { "key": "16743", "source": "674", "target": "1754", "attributes": { "weight": 2 } }, { "key": "31300", "source": "674", "target": "498", "attributes": { "weight": 1 } }, { "key": "31270", "source": "674", "target": "1360", "attributes": { "weight": 1 } }, { "key": "2318", "source": "674", "target": "675", "attributes": { "weight": 1 } }, { "key": "16765", "source": "674", "target": "471", "attributes": { "weight": 3 } }, { "key": "7245", "source": "674", "target": "497", "attributes": { "weight": 3 } }, { "key": "31268", "source": "674", "target": "438", "attributes": { "weight": 1 } }, { "key": "6648", "source": "674", "target": "231", "attributes": { "weight": 3 } }, { "key": "31281", "source": "674", "target": "469", "attributes": { "weight": 1 } }, { "key": "16770", "source": "674", "target": "480", "attributes": { "weight": 1 } }, { "key": "16581", "source": "674", "target": "2082", "attributes": { "weight": 1 } }, { "key": "31280", "source": "674", "target": "8", "attributes": { "weight": 1 } }, { "key": "27231", "source": "674", "target": "57", "attributes": { "weight": 2 } }, { "key": "12979", "source": "674", "target": "52", "attributes": { "weight": 4 } }, { "key": "16760", "source": "674", "target": "2091", "attributes": { "weight": 1 } }, { "key": "16771", "source": "674", "target": "482", "attributes": { "weight": 1 } }, { "key": "2319", "source": "675", "target": "674", "attributes": { "weight": 1 } }, { "key": "2325", "source": "676", "target": "614", "attributes": { "weight": 1 } }, { "key": "2435", "source": "676", "target": "610", "attributes": { "weight": 1 } }, { "key": "2326", "source": "676", "target": "678", "attributes": { "weight": 1 } }, { "key": "2327", "source": "677", "target": "614", "attributes": { "weight": 1 } }, { "key": "2329", "source": "678", "target": "676", "attributes": { "weight": 1 } }, { "key": "2328", "source": "678", "target": "614", "attributes": { "weight": 1 } }, { "key": "2330", "source": "679", "target": "614", "attributes": { "weight": 1 } }, { "key": "2331", "source": "680", "target": "614", "attributes": { "weight": 1 } }, { "key": "37230", "source": "681", "target": "682", "attributes": { "weight": 1 } }, { "key": "33776", "source": "681", "target": "244", "attributes": { "weight": 1 } }, { "key": "37228", "source": "681", "target": "5", "attributes": { "weight": 1 } }, { "key": "30591", "source": "681", "target": "25", "attributes": { "weight": 1 } }, { "key": "24436", "source": "681", "target": "19", "attributes": { "weight": 2 } }, { "key": "37227", "source": "681", "target": "693", "attributes": { "weight": 1 } }, { "key": "37235", "source": "681", "target": "2507", "attributes": { "weight": 1 } }, { "key": "37234", "source": "681", "target": "3023", "attributes": { "weight": 1 } }, { "key": "33778", "source": "681", "target": "14", "attributes": { "weight": 2 } }, { "key": "33777", "source": "681", "target": "246", "attributes": { "weight": 1 } }, { "key": "31627", "source": "681", "target": "595", "attributes": { "weight": 1 } }, { "key": "30899", "source": "681", "target": "3", "attributes": { "weight": 2 } }, { "key": "32109", "source": "681", "target": "792", "attributes": { "weight": 3 } }, { "key": "32108", "source": "681", "target": "788", "attributes": { "weight": 3 } }, { "key": "37229", "source": "681", "target": "3346", "attributes": { "weight": 1 } }, { "key": "30302", "source": "681", "target": "1988", "attributes": { "weight": 1 } }, { "key": "24438", "source": "681", "target": "13", "attributes": { "weight": 2 } }, { "key": "31626", "source": "681", "target": "8", "attributes": { "weight": 2 } }, { "key": "31625", "source": "681", "target": "1965", "attributes": { "weight": 2 } }, { "key": "30301", "source": "681", "target": "789", "attributes": { "weight": 2 } }, { "key": "37225", "source": "681", "target": "0", "attributes": { "weight": 1 } }, { "key": "37231", "source": "681", "target": "3017", "attributes": { "weight": 1 } }, { "key": "34992", "source": "681", "target": "352", "attributes": { "weight": 1 } }, { "key": "37233", "source": "681", "target": "3348", "attributes": { "weight": 1 } }, { "key": "23760", "source": "681", "target": "1774", "attributes": { "weight": 2 } }, { "key": "23444", "source": "681", "target": "304", "attributes": { "weight": 3 } }, { "key": "37226", "source": "681", "target": "358", "attributes": { "weight": 1 } }, { "key": "2337", "source": "681", "target": "21", "attributes": { "weight": 2 } }, { "key": "37232", "source": "681", "target": "3347", "attributes": { "weight": 1 } }, { "key": "24437", "source": "681", "target": "303", "attributes": { "weight": 1 } }, { "key": "30597", "source": "682", "target": "53", "attributes": { "weight": 1 } }, { "key": "2338", "source": "682", "target": "3", "attributes": { "weight": 4 } }, { "key": "31630", "source": "682", "target": "8", "attributes": { "weight": 1 } }, { "key": "31632", "source": "682", "target": "14", "attributes": { "weight": 2 } }, { "key": "30598", "source": "682", "target": "819", "attributes": { "weight": 1 } }, { "key": "2792", "source": "682", "target": "829", "attributes": { "weight": 1 } }, { "key": "16533", "source": "682", "target": "2077", "attributes": { "weight": 1 } }, { "key": "30599", "source": "682", "target": "12", "attributes": { "weight": 1 } }, { "key": "2339", "source": "682", "target": "13", "attributes": { "weight": 2 } }, { "key": "33780", "source": "682", "target": "440", "attributes": { "weight": 1 } }, { "key": "30593", "source": "682", "target": "788", "attributes": { "weight": 2 } }, { "key": "33783", "source": "682", "target": "1812", "attributes": { "weight": 1 } }, { "key": "31631", "source": "682", "target": "595", "attributes": { "weight": 1 } }, { "key": "33782", "source": "682", "target": "244", "attributes": { "weight": 1 } }, { "key": "37236", "source": "682", "target": "681", "attributes": { "weight": 1 } }, { "key": "31629", "source": "682", "target": "693", "attributes": { "weight": 1 } }, { "key": "30601", "source": "682", "target": "2992", "attributes": { "weight": 1 } }, { "key": "32110", "source": "682", "target": "792", "attributes": { "weight": 2 } }, { "key": "30603", "source": "682", "target": "352", "attributes": { "weight": 2 } }, { "key": "21582", "source": "682", "target": "358", "attributes": { "weight": 2 } }, { "key": "30596", "source": "682", "target": "791", "attributes": { "weight": 1 } }, { "key": "2791", "source": "682", "target": "828", "attributes": { "weight": 1 } }, { "key": "30595", "source": "682", "target": "242", "attributes": { "weight": 1 } }, { "key": "30594", "source": "682", "target": "4", "attributes": { "weight": 1 } }, { "key": "30602", "source": "682", "target": "340", "attributes": { "weight": 1 } }, { "key": "11348", "source": "682", "target": "1742", "attributes": { "weight": 1 } }, { "key": "30592", "source": "682", "target": "0", "attributes": { "weight": 2 } }, { "key": "23761", "source": "682", "target": "1774", "attributes": { "weight": 3 } }, { "key": "33781", "source": "682", "target": "189", "attributes": { "weight": 1 } }, { "key": "29434", "source": "682", "target": "232", "attributes": { "weight": 1 } }, { "key": "33784", "source": "682", "target": "487", "attributes": { "weight": 1 } }, { "key": "29037", "source": "682", "target": "495", "attributes": { "weight": 1 } }, { "key": "30303", "source": "682", "target": "789", "attributes": { "weight": 1 } }, { "key": "30600", "source": "682", "target": "479", "attributes": { "weight": 1 } }, { "key": "2352", "source": "683", "target": "21", "attributes": { "weight": 1 } }, { "key": "2351", "source": "683", "target": "3", "attributes": { "weight": 1 } }, { "key": "2354", "source": "683", "target": "25", "attributes": { "weight": 2 } }, { "key": "2353", "source": "683", "target": "13", "attributes": { "weight": 1 } }, { "key": "2359", "source": "684", "target": "176", "attributes": { "weight": 2 } }, { "key": "2360", "source": "684", "target": "690", "attributes": { "weight": 1 } }, { "key": "36202", "source": "685", "target": "691", "attributes": { "weight": 1 } }, { "key": "2361", "source": "685", "target": "687", "attributes": { "weight": 3 } }, { "key": "2362", "source": "685", "target": "176", "attributes": { "weight": 3 } }, { "key": "2363", "source": "686", "target": "688", "attributes": { "weight": 1 } }, { "key": "28069", "source": "687", "target": "287", "attributes": { "weight": 1 } }, { "key": "2364", "source": "687", "target": "685", "attributes": { "weight": 3 } }, { "key": "2365", "source": "687", "target": "689", "attributes": { "weight": 3 } }, { "key": "36206", "source": "687", "target": "176", "attributes": { "weight": 2 } }, { "key": "18072", "source": "687", "target": "164", "attributes": { "weight": 3 } }, { "key": "36205", "source": "687", "target": "3275", "attributes": { "weight": 2 } }, { "key": "18396", "source": "687", "target": "1621", "attributes": { "weight": 1 } }, { "key": "2366", "source": "687", "target": "691", "attributes": { "weight": 2 } }, { "key": "2367", "source": "688", "target": "686", "attributes": { "weight": 1 } }, { "key": "2368", "source": "688", "target": "692", "attributes": { "weight": 1 } }, { "key": "2370", "source": "689", "target": "176", "attributes": { "weight": 3 } }, { "key": "36210", "source": "689", "target": "685", "attributes": { "weight": 1 } }, { "key": "2369", "source": "689", "target": "687", "attributes": { "weight": 3 } }, { "key": "2376", "source": "690", "target": "684", "attributes": { "weight": 1 } }, { "key": "2377", "source": "690", "target": "176", "attributes": { "weight": 1 } }, { "key": "36218", "source": "691", "target": "3273", "attributes": { "weight": 1 } }, { "key": "2378", "source": "691", "target": "687", "attributes": { "weight": 1 } }, { "key": "36219", "source": "691", "target": "176", "attributes": { "weight": 1 } }, { "key": "36217", "source": "691", "target": "685", "attributes": { "weight": 2 } }, { "key": "2380", "source": "692", "target": "176", "attributes": { "weight": 1 } }, { "key": "2379", "source": "692", "target": "688", "attributes": { "weight": 1 } }, { "key": "31592", "source": "693", "target": "823", "attributes": { "weight": 1 } }, { "key": "30323", "source": "693", "target": "8", "attributes": { "weight": 3 } }, { "key": "30324", "source": "693", "target": "14", "attributes": { "weight": 2 } }, { "key": "2382", "source": "693", "target": "694", "attributes": { "weight": 1 } }, { "key": "11050", "source": "693", "target": "452", "attributes": { "weight": 1 } }, { "key": "24414", "source": "693", "target": "2505", "attributes": { "weight": 1 } }, { "key": "26905", "source": "693", "target": "497", "attributes": { "weight": 1 } }, { "key": "37411", "source": "693", "target": "2831", "attributes": { "weight": 1 } }, { "key": "30325", "source": "693", "target": "352", "attributes": { "weight": 2 } }, { "key": "2786", "source": "693", "target": "828", "attributes": { "weight": 1 } }, { "key": "31593", "source": "693", "target": "595", "attributes": { "weight": 1 } }, { "key": "21570", "source": "693", "target": "358", "attributes": { "weight": 1 } }, { "key": "27538", "source": "693", "target": "1520", "attributes": { "weight": 1 } }, { "key": "30320", "source": "693", "target": "432", "attributes": { "weight": 1 } }, { "key": "37274", "source": "693", "target": "349", "attributes": { "weight": 1 } }, { "key": "31591", "source": "693", "target": "9", "attributes": { "weight": 1 } }, { "key": "29026", "source": "693", "target": "495", "attributes": { "weight": 3 } }, { "key": "30880", "source": "693", "target": "3", "attributes": { "weight": 1 } }, { "key": "37372", "source": "693", "target": "829", "attributes": { "weight": 1 } }, { "key": "30321", "source": "693", "target": "2646", "attributes": { "weight": 2 } }, { "key": "31590", "source": "693", "target": "682", "attributes": { "weight": 1 } }, { "key": "30881", "source": "693", "target": "13", "attributes": { "weight": 1 } }, { "key": "17588", "source": "693", "target": "790", "attributes": { "weight": 1 } }, { "key": "8712", "source": "693", "target": "442", "attributes": { "weight": 3 } }, { "key": "30879", "source": "693", "target": "2", "attributes": { "weight": 1 } }, { "key": "37218", "source": "693", "target": "681", "attributes": { "weight": 1 } }, { "key": "16525", "source": "693", "target": "2077", "attributes": { "weight": 1 } }, { "key": "30322", "source": "693", "target": "817", "attributes": { "weight": 2 } }, { "key": "29849", "source": "693", "target": "1024", "attributes": { "weight": 1 } }, { "key": "28933", "source": "693", "target": "479", "attributes": { "weight": 2 } }, { "key": "30319", "source": "693", "target": "0", "attributes": { "weight": 2 } }, { "key": "22282", "source": "693", "target": "794", "attributes": { "weight": 1 } }, { "key": "11338", "source": "693", "target": "1742", "attributes": { "weight": 1 } }, { "key": "2388", "source": "694", "target": "479", "attributes": { "weight": 1 } }, { "key": "2385", "source": "694", "target": "3", "attributes": { "weight": 1 } }, { "key": "2389", "source": "694", "target": "14", "attributes": { "weight": 1 } }, { "key": "2386", "source": "694", "target": "693", "attributes": { "weight": 1 } }, { "key": "2387", "source": "694", "target": "9", "attributes": { "weight": 1 } }, { "key": "12704", "source": "695", "target": "8", "attributes": { "weight": 1 } }, { "key": "2391", "source": "695", "target": "56", "attributes": { "weight": 2 } }, { "key": "12696", "source": "695", "target": "674", "attributes": { "weight": 3 } }, { "key": "12694", "source": "695", "target": "223", "attributes": { "weight": 2 } }, { "key": "12708", "source": "695", "target": "70", "attributes": { "weight": 3 } }, { "key": "7025", "source": "695", "target": "193", "attributes": { "weight": 2 } }, { "key": "12719", "source": "695", "target": "352", "attributes": { "weight": 2 } }, { "key": "11265", "source": "695", "target": "473", "attributes": { "weight": 2 } }, { "key": "12689", "source": "695", "target": "59", "attributes": { "weight": 3 } }, { "key": "12715", "source": "695", "target": "72", "attributes": { "weight": 1 } }, { "key": "12707", "source": "695", "target": "474", "attributes": { "weight": 1 } }, { "key": "32590", "source": "695", "target": "791", "attributes": { "weight": 1 } }, { "key": "12703", "source": "695", "target": "53", "attributes": { "weight": 1 } }, { "key": "23792", "source": "695", "target": "370", "attributes": { "weight": 1 } }, { "key": "12701", "source": "695", "target": "6", "attributes": { "weight": 1 } }, { "key": "12709", "source": "695", "target": "1873", "attributes": { "weight": 1 } }, { "key": "7024", "source": "695", "target": "189", "attributes": { "weight": 2 } }, { "key": "4245", "source": "695", "target": "673", "attributes": { "weight": 2 } }, { "key": "12688", "source": "695", "target": "220", "attributes": { "weight": 2 } }, { "key": "36091", "source": "695", "target": "2248", "attributes": { "weight": 1 } }, { "key": "12721", "source": "695", "target": "497", "attributes": { "weight": 2 } }, { "key": "20914", "source": "695", "target": "2095", "attributes": { "weight": 1 } }, { "key": "12720", "source": "695", "target": "1390", "attributes": { "weight": 1 } }, { "key": "12717", "source": "695", "target": "340", "attributes": { "weight": 1 } }, { "key": "12705", "source": "695", "target": "135", "attributes": { "weight": 1 } }, { "key": "12716", "source": "695", "target": "1750", "attributes": { "weight": 1 } }, { "key": "12712", "source": "695", "target": "1337", "attributes": { "weight": 1 } }, { "key": "11396", "source": "695", "target": "1742", "attributes": { "weight": 2 } }, { "key": "12722", "source": "695", "target": "57", "attributes": { "weight": 1 } }, { "key": "7023", "source": "695", "target": "188", "attributes": { "weight": 2 } }, { "key": "12691", "source": "695", "target": "130", "attributes": { "weight": 1 } }, { "key": "35702", "source": "695", "target": "458", "attributes": { "weight": 1 } }, { "key": "20907", "source": "695", "target": "438", "attributes": { "weight": 1 } }, { "key": "20909", "source": "695", "target": "1832", "attributes": { "weight": 1 } }, { "key": "12686", "source": "695", "target": "1141", "attributes": { "weight": 1 } }, { "key": "12700", "source": "695", "target": "1024", "attributes": { "weight": 2 } }, { "key": "12718", "source": "695", "target": "495", "attributes": { "weight": 2 } }, { "key": "12711", "source": "695", "target": "232", "attributes": { "weight": 1 } }, { "key": "12714", "source": "695", "target": "1774", "attributes": { "weight": 2 } }, { "key": "12690", "source": "695", "target": "432", "attributes": { "weight": 1 } }, { "key": "20910", "source": "695", "target": "2253", "attributes": { "weight": 1 } }, { "key": "12710", "source": "695", "target": "479", "attributes": { "weight": 2 } }, { "key": "20911", "source": "695", "target": "472", "attributes": { "weight": 1 } }, { "key": "16993", "source": "695", "target": "1389", "attributes": { "weight": 1 } }, { "key": "11267", "source": "695", "target": "494", "attributes": { "weight": 2 } }, { "key": "12702", "source": "695", "target": "1025", "attributes": { "weight": 1 } }, { "key": "11264", "source": "695", "target": "452", "attributes": { "weight": 2 } }, { "key": "12687", "source": "695", "target": "1755", "attributes": { "weight": 1 } }, { "key": "12706", "source": "695", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20915", "source": "695", "target": "489", "attributes": { "weight": 1 } }, { "key": "9041", "source": "695", "target": "442", "attributes": { "weight": 2 } }, { "key": "10927", "source": "695", "target": "457", "attributes": { "weight": 2 } }, { "key": "12699", "source": "695", "target": "5", "attributes": { "weight": 2 } }, { "key": "20906", "source": "695", "target": "221", "attributes": { "weight": 1 } }, { "key": "20913", "source": "695", "target": "2267", "attributes": { "weight": 1 } }, { "key": "7021", "source": "695", "target": "183", "attributes": { "weight": 2 } }, { "key": "36093", "source": "695", "target": "73", "attributes": { "weight": 1 } }, { "key": "20912", "source": "695", "target": "2261", "attributes": { "weight": 1 } }, { "key": "12692", "source": "695", "target": "434", "attributes": { "weight": 2 } }, { "key": "12697", "source": "695", "target": "3", "attributes": { "weight": 2 } }, { "key": "36092", "source": "695", "target": "2258", "attributes": { "weight": 1 } }, { "key": "7022", "source": "695", "target": "454", "attributes": { "weight": 3 } }, { "key": "11266", "source": "695", "target": "191", "attributes": { "weight": 2 } }, { "key": "12693", "source": "695", "target": "1522", "attributes": { "weight": 1 } }, { "key": "20908", "source": "695", "target": "449", "attributes": { "weight": 1 } }, { "key": "12698", "source": "695", "target": "1118", "attributes": { "weight": 1 } }, { "key": "12695", "source": "695", "target": "440", "attributes": { "weight": 1 } }, { "key": "12713", "source": "695", "target": "595", "attributes": { "weight": 2 } }, { "key": "37472", "source": "696", "target": "307", "attributes": { "weight": 1 } }, { "key": "2395", "source": "696", "target": "697", "attributes": { "weight": 4 } }, { "key": "12963", "source": "696", "target": "304", "attributes": { "weight": 2 } }, { "key": "25667", "source": "696", "target": "167", "attributes": { "weight": 2 } }, { "key": "14472", "source": "697", "target": "312", "attributes": { "weight": 1 } }, { "key": "25676", "source": "697", "target": "2618", "attributes": { "weight": 1 } }, { "key": "25670", "source": "697", "target": "2615", "attributes": { "weight": 2 } }, { "key": "2398", "source": "697", "target": "582", "attributes": { "weight": 3 } }, { "key": "2396", "source": "697", "target": "696", "attributes": { "weight": 4 } }, { "key": "29192", "source": "697", "target": "2614", "attributes": { "weight": 1 } }, { "key": "12416", "source": "697", "target": "316", "attributes": { "weight": 2 } }, { "key": "25668", "source": "697", "target": "2613", "attributes": { "weight": 2 } }, { "key": "25674", "source": "697", "target": "2617", "attributes": { "weight": 1 } }, { "key": "25669", "source": "697", "target": "278", "attributes": { "weight": 2 } }, { "key": "25671", "source": "697", "target": "2616", "attributes": { "weight": 2 } }, { "key": "25672", "source": "697", "target": "579", "attributes": { "weight": 1 } }, { "key": "3165", "source": "697", "target": "305", "attributes": { "weight": 4 } }, { "key": "29193", "source": "697", "target": "1921", "attributes": { "weight": 1 } }, { "key": "14467", "source": "697", "target": "260", "attributes": { "weight": 1 } }, { "key": "14182", "source": "697", "target": "168", "attributes": { "weight": 2 } }, { "key": "22592", "source": "697", "target": "180", "attributes": { "weight": 1 } }, { "key": "27549", "source": "697", "target": "272", "attributes": { "weight": 1 } }, { "key": "14470", "source": "697", "target": "277", "attributes": { "weight": 1 } }, { "key": "14469", "source": "697", "target": "268", "attributes": { "weight": 1 } }, { "key": "28339", "source": "697", "target": "698", "attributes": { "weight": 2 } }, { "key": "27550", "source": "697", "target": "327", "attributes": { "weight": 1 } }, { "key": "25677", "source": "697", "target": "2619", "attributes": { "weight": 1 } }, { "key": "12415", "source": "697", "target": "263", "attributes": { "weight": 2 } }, { "key": "2397", "source": "697", "target": "699", "attributes": { "weight": 6 } }, { "key": "24919", "source": "697", "target": "170", "attributes": { "weight": 2 } }, { "key": "25673", "source": "697", "target": "304", "attributes": { "weight": 2 } }, { "key": "14471", "source": "697", "target": "307", "attributes": { "weight": 1 } }, { "key": "24920", "source": "697", "target": "580", "attributes": { "weight": 2 } }, { "key": "27914", "source": "697", "target": "321", "attributes": { "weight": 1 } }, { "key": "25675", "source": "697", "target": "1924", "attributes": { "weight": 3 } }, { "key": "14468", "source": "697", "target": "261", "attributes": { "weight": 1 } }, { "key": "27913", "source": "697", "target": "299", "attributes": { "weight": 1 } }, { "key": "14570", "source": "698", "target": "307", "attributes": { "weight": 1 } }, { "key": "12846", "source": "698", "target": "582", "attributes": { "weight": 3 } }, { "key": "14569", "source": "698", "target": "259", "attributes": { "weight": 1 } }, { "key": "21442", "source": "698", "target": "579", "attributes": { "weight": 3 } }, { "key": "28357", "source": "698", "target": "178", "attributes": { "weight": 2 } }, { "key": "22690", "source": "698", "target": "170", "attributes": { "weight": 3 } }, { "key": "5033", "source": "698", "target": "580", "attributes": { "weight": 4 } }, { "key": "2453", "source": "698", "target": "707", "attributes": { "weight": 4 } }, { "key": "12574", "source": "698", "target": "180", "attributes": { "weight": 5 } }, { "key": "21439", "source": "698", "target": "1240", "attributes": { "weight": 3 } }, { "key": "14201", "source": "698", "target": "168", "attributes": { "weight": 3 } }, { "key": "29804", "source": "698", "target": "93", "attributes": { "weight": 1 } }, { "key": "12074", "source": "698", "target": "1823", "attributes": { "weight": 4 } }, { "key": "12072", "source": "698", "target": "904", "attributes": { "weight": 1 } }, { "key": "28353", "source": "698", "target": "697", "attributes": { "weight": 2 } }, { "key": "12071", "source": "698", "target": "1191", "attributes": { "weight": 3 } }, { "key": "2399", "source": "698", "target": "278", "attributes": { "weight": 7 } }, { "key": "15788", "source": "698", "target": "1227", "attributes": { "weight": 2 } }, { "key": "24935", "source": "698", "target": "164", "attributes": { "weight": 2 } }, { "key": "13067", "source": "698", "target": "268", "attributes": { "weight": 2 } }, { "key": "21441", "source": "698", "target": "1870", "attributes": { "weight": 2 } }, { "key": "24938", "source": "698", "target": "177", "attributes": { "weight": 2 } }, { "key": "24939", "source": "698", "target": "313", "attributes": { "weight": 2 } }, { "key": "28358", "source": "698", "target": "2770", "attributes": { "weight": 1 } }, { "key": "28354", "source": "698", "target": "2759", "attributes": { "weight": 2 } }, { "key": "24840", "source": "698", "target": "1979", "attributes": { "weight": 2 } }, { "key": "24936", "source": "698", "target": "574", "attributes": { "weight": 2 } }, { "key": "28355", "source": "698", "target": "700", "attributes": { "weight": 2 } }, { "key": "12073", "source": "698", "target": "1512", "attributes": { "weight": 3 } }, { "key": "28356", "source": "698", "target": "1819", "attributes": { "weight": 1 } }, { "key": "13068", "source": "698", "target": "305", "attributes": { "weight": 3 } }, { "key": "25861", "source": "698", "target": "220", "attributes": { "weight": 1 } }, { "key": "24937", "source": "698", "target": "2538", "attributes": { "weight": 1 } }, { "key": "21440", "source": "698", "target": "1960", "attributes": { "weight": 2 } }, { "key": "24841", "source": "698", "target": "2541", "attributes": { "weight": 1 } }, { "key": "28702", "source": "698", "target": "578", "attributes": { "weight": 1 } }, { "key": "24942", "source": "699", "target": "707", "attributes": { "weight": 4 } }, { "key": "25683", "source": "699", "target": "2614", "attributes": { "weight": 2 } }, { "key": "2401", "source": "699", "target": "170", "attributes": { "weight": 5 } }, { "key": "19005", "source": "699", "target": "839", "attributes": { "weight": 4 } }, { "key": "2402", "source": "699", "target": "579", "attributes": { "weight": 1 } }, { "key": "25685", "source": "699", "target": "582", "attributes": { "weight": 2 } }, { "key": "13069", "source": "699", "target": "304", "attributes": { "weight": 4 } }, { "key": "25682", "source": "699", "target": "2613", "attributes": { "weight": 1 } }, { "key": "2400", "source": "699", "target": "697", "attributes": { "weight": 6 } }, { "key": "25686", "source": "699", "target": "2617", "attributes": { "weight": 2 } }, { "key": "25684", "source": "699", "target": "2616", "attributes": { "weight": 2 } }, { "key": "12575", "source": "699", "target": "315", "attributes": { "weight": 4 } }, { "key": "25687", "source": "699", "target": "2618", "attributes": { "weight": 2 } }, { "key": "15820", "source": "700", "target": "170", "attributes": { "weight": 4 } }, { "key": "34215", "source": "700", "target": "3163", "attributes": { "weight": 1 } }, { "key": "34211", "source": "700", "target": "1227", "attributes": { "weight": 1 } }, { "key": "15821", "source": "700", "target": "579", "attributes": { "weight": 3 } }, { "key": "28360", "source": "700", "target": "698", "attributes": { "weight": 2 } }, { "key": "29805", "source": "700", "target": "93", "attributes": { "weight": 2 } }, { "key": "34209", "source": "700", "target": "1187", "attributes": { "weight": 1 } }, { "key": "34214", "source": "700", "target": "309", "attributes": { "weight": 1 } }, { "key": "28361", "source": "700", "target": "1871", "attributes": { "weight": 2 } }, { "key": "25688", "source": "700", "target": "582", "attributes": { "weight": 1 } }, { "key": "28359", "source": "700", "target": "1191", "attributes": { "weight": 2 } }, { "key": "34216", "source": "700", "target": "3164", "attributes": { "weight": 1 } }, { "key": "34212", "source": "700", "target": "3161", "attributes": { "weight": 1 } }, { "key": "28362", "source": "700", "target": "1823", "attributes": { "weight": 2 } }, { "key": "15822", "source": "700", "target": "580", "attributes": { "weight": 4 } }, { "key": "2403", "source": "700", "target": "278", "attributes": { "weight": 3 } }, { "key": "34210", "source": "700", "target": "168", "attributes": { "weight": 1 } }, { "key": "34213", "source": "700", "target": "1561", "attributes": { "weight": 1 } }, { "key": "12576", "source": "700", "target": "180", "attributes": { "weight": 2 } }, { "key": "6785", "source": "701", "target": "57", "attributes": { "weight": 1 } }, { "key": "2421", "source": "701", "target": "188", "attributes": { "weight": 1 } }, { "key": "26571", "source": "701", "target": "454", "attributes": { "weight": 1 } }, { "key": "6782", "source": "701", "target": "189", "attributes": { "weight": 2 } }, { "key": "6783", "source": "701", "target": "490", "attributes": { "weight": 1 } }, { "key": "6781", "source": "701", "target": "183", "attributes": { "weight": 1 } }, { "key": "6784", "source": "701", "target": "193", "attributes": { "weight": 1 } }, { "key": "2424", "source": "702", "target": "367", "attributes": { "weight": 1 } }, { "key": "2423", "source": "702", "target": "615", "attributes": { "weight": 1 } }, { "key": "2434", "source": "703", "target": "378", "attributes": { "weight": 2 } }, { "key": "2437", "source": "704", "target": "378", "attributes": { "weight": 1 } }, { "key": "24706", "source": "704", "target": "2515", "attributes": { "weight": 1 } }, { "key": "24705", "source": "704", "target": "373", "attributes": { "weight": 1 } }, { "key": "2438", "source": "705", "target": "615", "attributes": { "weight": 1 } }, { "key": "27774", "source": "706", "target": "630", "attributes": { "weight": 1 } }, { "key": "27773", "source": "706", "target": "619", "attributes": { "weight": 1 } }, { "key": "2444", "source": "706", "target": "608", "attributes": { "weight": 1 } }, { "key": "24968", "source": "707", "target": "579", "attributes": { "weight": 1 } }, { "key": "24972", "source": "707", "target": "177", "attributes": { "weight": 1 } }, { "key": "22476", "source": "707", "target": "567", "attributes": { "weight": 2 } }, { "key": "24953", "source": "707", "target": "2536", "attributes": { "weight": 1 } }, { "key": "22477", "source": "707", "target": "572", "attributes": { "weight": 2 } }, { "key": "12078", "source": "707", "target": "1824", "attributes": { "weight": 2 } }, { "key": "12075", "source": "707", "target": "1191", "attributes": { "weight": 4 } }, { "key": "17465", "source": "707", "target": "358", "attributes": { "weight": 2 } }, { "key": "28376", "source": "707", "target": "2764", "attributes": { "weight": 1 } }, { "key": "12077", "source": "707", "target": "1512", "attributes": { "weight": 3 } }, { "key": "12079", "source": "707", "target": "1825", "attributes": { "weight": 2 } }, { "key": "28374", "source": "707", "target": "2762", "attributes": { "weight": 1 } }, { "key": "11886", "source": "707", "target": "468", "attributes": { "weight": 4 } }, { "key": "15105", "source": "707", "target": "171", "attributes": { "weight": 1 } }, { "key": "24964", "source": "707", "target": "2540", "attributes": { "weight": 2 } }, { "key": "2454", "source": "707", "target": "698", "attributes": { "weight": 4 } }, { "key": "24975", "source": "707", "target": "907", "attributes": { "weight": 2 } }, { "key": "23222", "source": "707", "target": "2344", "attributes": { "weight": 3 } }, { "key": "28382", "source": "707", "target": "2769", "attributes": { "weight": 1 } }, { "key": "24957", "source": "707", "target": "2537", "attributes": { "weight": 1 } }, { "key": "24956", "source": "707", "target": "164", "attributes": { "weight": 4 } }, { "key": "15826", "source": "707", "target": "338", "attributes": { "weight": 3 } }, { "key": "26584", "source": "707", "target": "454", "attributes": { "weight": 2 } }, { "key": "24960", "source": "707", "target": "1240", "attributes": { "weight": 2 } }, { "key": "8767", "source": "707", "target": "442", "attributes": { "weight": 3 } }, { "key": "24961", "source": "707", "target": "2547", "attributes": { "weight": 1 } }, { "key": "23224", "source": "707", "target": "2438", "attributes": { "weight": 3 } }, { "key": "24965", "source": "707", "target": "1870", "attributes": { "weight": 2 } }, { "key": "24970", "source": "707", "target": "2280", "attributes": { "weight": 2 } }, { "key": "12582", "source": "707", "target": "315", "attributes": { "weight": 4 } }, { "key": "28377", "source": "707", "target": "93", "attributes": { "weight": 2 } }, { "key": "2456", "source": "707", "target": "708", "attributes": { "weight": 3 } }, { "key": "23220", "source": "707", "target": "1868", "attributes": { "weight": 3 } }, { "key": "15827", "source": "707", "target": "1322", "attributes": { "weight": 1 } }, { "key": "24962", "source": "707", "target": "2539", "attributes": { "weight": 2 } }, { "key": "24974", "source": "707", "target": "178", "attributes": { "weight": 4 } }, { "key": "28371", "source": "707", "target": "574", "attributes": { "weight": 1 } }, { "key": "5102", "source": "707", "target": "1227", "attributes": { "weight": 5 } }, { "key": "25694", "source": "707", "target": "278", "attributes": { "weight": 3 } }, { "key": "28385", "source": "707", "target": "2772", "attributes": { "weight": 1 } }, { "key": "24958", "source": "707", "target": "699", "attributes": { "weight": 4 } }, { "key": "28375", "source": "707", "target": "2763", "attributes": { "weight": 1 } }, { "key": "28380", "source": "707", "target": "2767", "attributes": { "weight": 1 } }, { "key": "28383", "source": "707", "target": "1962", "attributes": { "weight": 1 } }, { "key": "24963", "source": "707", "target": "1960", "attributes": { "weight": 2 } }, { "key": "24959", "source": "707", "target": "1905", "attributes": { "weight": 2 } }, { "key": "13141", "source": "707", "target": "839", "attributes": { "weight": 5 } }, { "key": "14258", "source": "707", "target": "168", "attributes": { "weight": 4 } }, { "key": "24966", "source": "707", "target": "2548", "attributes": { "weight": 1 } }, { "key": "5103", "source": "707", "target": "1323", "attributes": { "weight": 2 } }, { "key": "24977", "source": "707", "target": "2551", "attributes": { "weight": 2 } }, { "key": "28378", "source": "707", "target": "2765", "attributes": { "weight": 1 } }, { "key": "12076", "source": "707", "target": "1820", "attributes": { "weight": 3 } }, { "key": "24967", "source": "707", "target": "2345", "attributes": { "weight": 2 } }, { "key": "2455", "source": "707", "target": "170", "attributes": { "weight": 3 } }, { "key": "7305", "source": "707", "target": "333", "attributes": { "weight": 2 } }, { "key": "28370", "source": "707", "target": "2760", "attributes": { "weight": 1 } }, { "key": "28381", "source": "707", "target": "2768", "attributes": { "weight": 1 } }, { "key": "28373", "source": "707", "target": "1819", "attributes": { "weight": 2 } }, { "key": "26585", "source": "707", "target": "189", "attributes": { "weight": 2 } }, { "key": "13140", "source": "707", "target": "304", "attributes": { "weight": 4 } }, { "key": "28692", "source": "707", "target": "1821", "attributes": { "weight": 1 } }, { "key": "28379", "source": "707", "target": "2766", "attributes": { "weight": 1 } }, { "key": "24969", "source": "707", "target": "1822", "attributes": { "weight": 2 } }, { "key": "28372", "source": "707", "target": "903", "attributes": { "weight": 1 } }, { "key": "23223", "source": "707", "target": "2437", "attributes": { "weight": 3 } }, { "key": "24971", "source": "707", "target": "1871", "attributes": { "weight": 2 } }, { "key": "24954", "source": "707", "target": "2545", "attributes": { "weight": 1 } }, { "key": "24955", "source": "707", "target": "2546", "attributes": { "weight": 2 } }, { "key": "24973", "source": "707", "target": "2549", "attributes": { "weight": 1 } }, { "key": "23221", "source": "707", "target": "1869", "attributes": { "weight": 3 } }, { "key": "24976", "source": "707", "target": "2550", "attributes": { "weight": 2 } }, { "key": "28384", "source": "707", "target": "2771", "attributes": { "weight": 1 } }, { "key": "2458", "source": "708", "target": "707", "attributes": { "weight": 3 } }, { "key": "2459", "source": "709", "target": "750", "attributes": { "weight": 2 } }, { "key": "2460", "source": "709", "target": "758", "attributes": { "weight": 2 } }, { "key": "2462", "source": "710", "target": "714", "attributes": { "weight": 1 } }, { "key": "2463", "source": "710", "target": "717", "attributes": { "weight": 1 } }, { "key": "10165", "source": "711", "target": "1322", "attributes": { "weight": 3 } }, { "key": "2469", "source": "711", "target": "725", "attributes": { "weight": 3 } }, { "key": "10162", "source": "711", "target": "1291", "attributes": { "weight": 1 } }, { "key": "10152", "source": "711", "target": "717", "attributes": { "weight": 1 } }, { "key": "15453", "source": "711", "target": "1329", "attributes": { "weight": 1 } }, { "key": "2468", "source": "711", "target": "719", "attributes": { "weight": 2 } }, { "key": "10156", "source": "711", "target": "1243", "attributes": { "weight": 1 } }, { "key": "10160", "source": "711", "target": "123", "attributes": { "weight": 2 } }, { "key": "26039", "source": "711", "target": "2623", "attributes": { "weight": 1 } }, { "key": "2470", "source": "711", "target": "506", "attributes": { "weight": 2 } }, { "key": "10166", "source": "711", "target": "1698", "attributes": { "weight": 2 } }, { "key": "10159", "source": "711", "target": "748", "attributes": { "weight": 1 } }, { "key": "2465", "source": "711", "target": "77", "attributes": { "weight": 2 } }, { "key": "2466", "source": "711", "target": "712", "attributes": { "weight": 3 } }, { "key": "4286", "source": "711", "target": "1294", "attributes": { "weight": 2 } }, { "key": "2472", "source": "711", "target": "739", "attributes": { "weight": 2 } }, { "key": "2467", "source": "711", "target": "517", "attributes": { "weight": 2 } }, { "key": "10157", "source": "711", "target": "337", "attributes": { "weight": 1 } }, { "key": "10153", "source": "711", "target": "1682", "attributes": { "weight": 2 } }, { "key": "10161", "source": "711", "target": "750", "attributes": { "weight": 1 } }, { "key": "33856", "source": "711", "target": "1197", "attributes": { "weight": 1 } }, { "key": "10154", "source": "711", "target": "1683", "attributes": { "weight": 2 } }, { "key": "10150", "source": "711", "target": "1677", "attributes": { "weight": 1 } }, { "key": "2471", "source": "711", "target": "730", "attributes": { "weight": 2 } }, { "key": "10163", "source": "711", "target": "756", "attributes": { "weight": 1 } }, { "key": "2474", "source": "711", "target": "771", "attributes": { "weight": 2 } }, { "key": "10158", "source": "711", "target": "341", "attributes": { "weight": 2 } }, { "key": "10151", "source": "711", "target": "1678", "attributes": { "weight": 2 } }, { "key": "10167", "source": "711", "target": "1699", "attributes": { "weight": 2 } }, { "key": "15452", "source": "711", "target": "925", "attributes": { "weight": 1 } }, { "key": "10155", "source": "711", "target": "1227", "attributes": { "weight": 1 } }, { "key": "2473", "source": "711", "target": "769", "attributes": { "weight": 3 } }, { "key": "4285", "source": "711", "target": "338", "attributes": { "weight": 2 } }, { "key": "10164", "source": "711", "target": "1696", "attributes": { "weight": 2 } }, { "key": "2476", "source": "712", "target": "720", "attributes": { "weight": 1 } }, { "key": "2477", "source": "712", "target": "729", "attributes": { "weight": 2 } }, { "key": "10168", "source": "712", "target": "341", "attributes": { "weight": 2 } }, { "key": "2475", "source": "712", "target": "711", "attributes": { "weight": 3 } }, { "key": "2478", "source": "712", "target": "737", "attributes": { "weight": 2 } }, { "key": "2480", "source": "712", "target": "760", "attributes": { "weight": 1 } }, { "key": "2479", "source": "712", "target": "755", "attributes": { "weight": 1 } }, { "key": "2481", "source": "713", "target": "729", "attributes": { "weight": 1 } }, { "key": "2484", "source": "714", "target": "717", "attributes": { "weight": 1 } }, { "key": "2483", "source": "714", "target": "710", "attributes": { "weight": 1 } }, { "key": "2486", "source": "715", "target": "724", "attributes": { "weight": 1 } }, { "key": "2499", "source": "716", "target": "722", "attributes": { "weight": 2 } }, { "key": "2500", "source": "716", "target": "750", "attributes": { "weight": 2 } }, { "key": "2502", "source": "717", "target": "714", "attributes": { "weight": 1 } }, { "key": "2504", "source": "717", "target": "752", "attributes": { "weight": 1 } }, { "key": "10186", "source": "717", "target": "506", "attributes": { "weight": 1 } }, { "key": "2503", "source": "717", "target": "745", "attributes": { "weight": 1 } }, { "key": "2501", "source": "717", "target": "710", "attributes": { "weight": 1 } }, { "key": "10185", "source": "717", "target": "711", "attributes": { "weight": 1 } }, { "key": "10187", "source": "717", "target": "756", "attributes": { "weight": 1 } }, { "key": "2505", "source": "718", "target": "507", "attributes": { "weight": 1 } }, { "key": "2506", "source": "718", "target": "756", "attributes": { "weight": 1 } }, { "key": "10190", "source": "719", "target": "1701", "attributes": { "weight": 1 } }, { "key": "2507", "source": "719", "target": "711", "attributes": { "weight": 2 } }, { "key": "2513", "source": "722", "target": "750", "attributes": { "weight": 2 } }, { "key": "2512", "source": "722", "target": "716", "attributes": { "weight": 2 } }, { "key": "2515", "source": "723", "target": "748", "attributes": { "weight": 2 } }, { "key": "2848", "source": "723", "target": "728", "attributes": { "weight": 1 } }, { "key": "2514", "source": "723", "target": "736", "attributes": { "weight": 2 } }, { "key": "23106", "source": "724", "target": "517", "attributes": { "weight": 1 } }, { "key": "2516", "source": "724", "target": "715", "attributes": { "weight": 1 } }, { "key": "2517", "source": "724", "target": "738", "attributes": { "weight": 2 } }, { "key": "2518", "source": "725", "target": "711", "attributes": { "weight": 3 } }, { "key": "2524", "source": "726", "target": "506", "attributes": { "weight": 1 } }, { "key": "2525", "source": "726", "target": "732", "attributes": { "weight": 1 } }, { "key": "2527", "source": "726", "target": "746", "attributes": { "weight": 2 } }, { "key": "2528", "source": "726", "target": "753", "attributes": { "weight": 1 } }, { "key": "2526", "source": "726", "target": "734", "attributes": { "weight": 2 } }, { "key": "2529", "source": "727", "target": "748", "attributes": { "weight": 2 } }, { "key": "2530", "source": "727", "target": "765", "attributes": { "weight": 2 } }, { "key": "2532", "source": "728", "target": "775", "attributes": { "weight": 2 } }, { "key": "2531", "source": "728", "target": "748", "attributes": { "weight": 1 } }, { "key": "2849", "source": "728", "target": "723", "attributes": { "weight": 1 } }, { "key": "2533", "source": "729", "target": "712", "attributes": { "weight": 1 } }, { "key": "2534", "source": "729", "target": "713", "attributes": { "weight": 2 } }, { "key": "2535", "source": "730", "target": "711", "attributes": { "weight": 2 } }, { "key": "2537", "source": "731", "target": "770", "attributes": { "weight": 1 } }, { "key": "2536", "source": "731", "target": "757", "attributes": { "weight": 1 } }, { "key": "2539", "source": "732", "target": "742", "attributes": { "weight": 1 } }, { "key": "3144", "source": "732", "target": "753", "attributes": { "weight": 1 } }, { "key": "3143", "source": "732", "target": "897", "attributes": { "weight": 1 } }, { "key": "2538", "source": "732", "target": "726", "attributes": { "weight": 1 } }, { "key": "2540", "source": "733", "target": "749", "attributes": { "weight": 2 } }, { "key": "2541", "source": "733", "target": "750", "attributes": { "weight": 2 } }, { "key": "3148", "source": "734", "target": "732", "attributes": { "weight": 1 } }, { "key": "2543", "source": "734", "target": "746", "attributes": { "weight": 1 } }, { "key": "2542", "source": "734", "target": "726", "attributes": { "weight": 1 } }, { "key": "2850", "source": "736", "target": "748", "attributes": { "weight": 1 } }, { "key": "2548", "source": "736", "target": "769", "attributes": { "weight": 1 } }, { "key": "2546", "source": "736", "target": "723", "attributes": { "weight": 1 } }, { "key": "2547", "source": "736", "target": "761", "attributes": { "weight": 2 } }, { "key": "2552", "source": "737", "target": "517", "attributes": { "weight": 1 } }, { "key": "2553", "source": "737", "target": "755", "attributes": { "weight": 2 } }, { "key": "2551", "source": "737", "target": "712", "attributes": { "weight": 1 } }, { "key": "2555", "source": "738", "target": "739", "attributes": { "weight": 1 } }, { "key": "2554", "source": "738", "target": "724", "attributes": { "weight": 1 } }, { "key": "2560", "source": "739", "target": "743", "attributes": { "weight": 1 } }, { "key": "2559", "source": "739", "target": "738", "attributes": { "weight": 1 } }, { "key": "2558", "source": "739", "target": "711", "attributes": { "weight": 2 } }, { "key": "2562", "source": "740", "target": "767", "attributes": { "weight": 1 } }, { "key": "2851", "source": "740", "target": "748", "attributes": { "weight": 1 } }, { "key": "2563", "source": "740", "target": "772", "attributes": { "weight": 2 } }, { "key": "2564", "source": "741", "target": "750", "attributes": { "weight": 2 } }, { "key": "2569", "source": "742", "target": "726", "attributes": { "weight": 1 } }, { "key": "3150", "source": "742", "target": "506", "attributes": { "weight": 1 } }, { "key": "2571", "source": "743", "target": "739", "attributes": { "weight": 1 } }, { "key": "2573", "source": "744", "target": "517", "attributes": { "weight": 1 } }, { "key": "2576", "source": "745", "target": "756", "attributes": { "weight": 1 } }, { "key": "2575", "source": "745", "target": "717", "attributes": { "weight": 1 } }, { "key": "2578", "source": "746", "target": "734", "attributes": { "weight": 1 } }, { "key": "3152", "source": "746", "target": "742", "attributes": { "weight": 1 } }, { "key": "2577", "source": "746", "target": "726", "attributes": { "weight": 1 } }, { "key": "2580", "source": "747", "target": "709", "attributes": { "weight": 2 } }, { "key": "2581", "source": "747", "target": "750", "attributes": { "weight": 2 } }, { "key": "10251", "source": "748", "target": "711", "attributes": { "weight": 1 } }, { "key": "2588", "source": "748", "target": "765", "attributes": { "weight": 2 } }, { "key": "2590", "source": "748", "target": "769", "attributes": { "weight": 2 } }, { "key": "2587", "source": "748", "target": "761", "attributes": { "weight": 1 } }, { "key": "2584", "source": "748", "target": "728", "attributes": { "weight": 1 } }, { "key": "2855", "source": "748", "target": "750", "attributes": { "weight": 2 } }, { "key": "2585", "source": "748", "target": "740", "attributes": { "weight": 1 } }, { "key": "2591", "source": "748", "target": "772", "attributes": { "weight": 1 } }, { "key": "2582", "source": "748", "target": "723", "attributes": { "weight": 2 } }, { "key": "2586", "source": "748", "target": "759", "attributes": { "weight": 2 } }, { "key": "2583", "source": "748", "target": "727", "attributes": { "weight": 2 } }, { "key": "2589", "source": "748", "target": "767", "attributes": { "weight": 2 } }, { "key": "2854", "source": "748", "target": "736", "attributes": { "weight": 1 } }, { "key": "2593", "source": "748", "target": "775", "attributes": { "weight": 2 } }, { "key": "2856", "source": "748", "target": "835", "attributes": { "weight": 1 } }, { "key": "2595", "source": "749", "target": "733", "attributes": { "weight": 2 } }, { "key": "2596", "source": "749", "target": "750", "attributes": { "weight": 2 } }, { "key": "2600", "source": "750", "target": "733", "attributes": { "weight": 2 } }, { "key": "2858", "source": "750", "target": "748", "attributes": { "weight": 2 } }, { "key": "2597", "source": "750", "target": "709", "attributes": { "weight": 2 } }, { "key": "2599", "source": "750", "target": "722", "attributes": { "weight": 2 } }, { "key": "2604", "source": "750", "target": "774", "attributes": { "weight": 2 } }, { "key": "10253", "source": "750", "target": "711", "attributes": { "weight": 1 } }, { "key": "2605", "source": "750", "target": "776", "attributes": { "weight": 2 } }, { "key": "2603", "source": "750", "target": "758", "attributes": { "weight": 2 } }, { "key": "2857", "source": "750", "target": "741", "attributes": { "weight": 1 } }, { "key": "2598", "source": "750", "target": "716", "attributes": { "weight": 2 } }, { "key": "2601", "source": "750", "target": "749", "attributes": { "weight": 2 } }, { "key": "2608", "source": "752", "target": "717", "attributes": { "weight": 1 } }, { "key": "2611", "source": "753", "target": "506", "attributes": { "weight": 2 } }, { "key": "2612", "source": "753", "target": "726", "attributes": { "weight": 1 } }, { "key": "2615", "source": "755", "target": "517", "attributes": { "weight": 1 } }, { "key": "2616", "source": "755", "target": "737", "attributes": { "weight": 1 } }, { "key": "2614", "source": "755", "target": "712", "attributes": { "weight": 2 } }, { "key": "2618", "source": "756", "target": "506", "attributes": { "weight": 1 } }, { "key": "2617", "source": "756", "target": "718", "attributes": { "weight": 1 } }, { "key": "10307", "source": "756", "target": "717", "attributes": { "weight": 1 } }, { "key": "10306", "source": "756", "target": "711", "attributes": { "weight": 1 } }, { "key": "2619", "source": "756", "target": "745", "attributes": { "weight": 1 } }, { "key": "2620", "source": "757", "target": "517", "attributes": { "weight": 1 } }, { "key": "2621", "source": "758", "target": "747", "attributes": { "weight": 2 } }, { "key": "2622", "source": "759", "target": "748", "attributes": { "weight": 2 } }, { "key": "2623", "source": "759", "target": "772", "attributes": { "weight": 1 } }, { "key": "2624", "source": "760", "target": "712", "attributes": { "weight": 2 } }, { "key": "2628", "source": "761", "target": "769", "attributes": { "weight": 2 } }, { "key": "2626", "source": "761", "target": "736", "attributes": { "weight": 2 } }, { "key": "2627", "source": "761", "target": "748", "attributes": { "weight": 2 } }, { "key": "2629", "source": "762", "target": "712", "attributes": { "weight": 1 } }, { "key": "2631", "source": "763", "target": "769", "attributes": { "weight": 2 } }, { "key": "2634", "source": "765", "target": "727", "attributes": { "weight": 2 } }, { "key": "2635", "source": "765", "target": "748", "attributes": { "weight": 2 } }, { "key": "2638", "source": "767", "target": "740", "attributes": { "weight": 2 } }, { "key": "2639", "source": "767", "target": "748", "attributes": { "weight": 1 } }, { "key": "2641", "source": "768", "target": "526", "attributes": { "weight": 1 } }, { "key": "2643", "source": "769", "target": "761", "attributes": { "weight": 2 } }, { "key": "2642", "source": "769", "target": "711", "attributes": { "weight": 3 } }, { "key": "2644", "source": "769", "target": "763", "attributes": { "weight": 2 } }, { "key": "2861", "source": "769", "target": "748", "attributes": { "weight": 1 } }, { "key": "2645", "source": "770", "target": "731", "attributes": { "weight": 1 } }, { "key": "2646", "source": "770", "target": "757", "attributes": { "weight": 1 } }, { "key": "2647", "source": "771", "target": "711", "attributes": { "weight": 2 } }, { "key": "2862", "source": "772", "target": "759", "attributes": { "weight": 1 } }, { "key": "2649", "source": "772", "target": "748", "attributes": { "weight": 2 } }, { "key": "2648", "source": "772", "target": "740", "attributes": { "weight": 1 } }, { "key": "2654", "source": "774", "target": "750", "attributes": { "weight": 2 } }, { "key": "2656", "source": "775", "target": "748", "attributes": { "weight": 2 } }, { "key": "2655", "source": "775", "target": "728", "attributes": { "weight": 2 } }, { "key": "2863", "source": "776", "target": "750", "attributes": { "weight": 1 } }, { "key": "2657", "source": "776", "target": "741", "attributes": { "weight": 2 } }, { "key": "35227", "source": "777", "target": "1030", "attributes": { "weight": 1 } }, { "key": "2665", "source": "777", "target": "238", "attributes": { "weight": 1 } }, { "key": "30637", "source": "777", "target": "778", "attributes": { "weight": 3 } }, { "key": "30638", "source": "778", "target": "777", "attributes": { "weight": 3 } }, { "key": "3645", "source": "778", "target": "1027", "attributes": { "weight": 4 } }, { "key": "15576", "source": "778", "target": "195", "attributes": { "weight": 1 } }, { "key": "21639", "source": "778", "target": "109", "attributes": { "weight": 2 } }, { "key": "2667", "source": "778", "target": "238", "attributes": { "weight": 2 } }, { "key": "4451", "source": "778", "target": "961", "attributes": { "weight": 1 } }, { "key": "30311", "source": "778", "target": "2980", "attributes": { "weight": 3 } }, { "key": "32867", "source": "778", "target": "1357", "attributes": { "weight": 1 } }, { "key": "14020", "source": "778", "target": "1031", "attributes": { "weight": 3 } }, { "key": "30310", "source": "778", "target": "1030", "attributes": { "weight": 4 } }, { "key": "4450", "source": "778", "target": "371", "attributes": { "weight": 3 } }, { "key": "30639", "source": "778", "target": "239", "attributes": { "weight": 2 } }, { "key": "30748", "source": "778", "target": "1711", "attributes": { "weight": 1 } }, { "key": "26199", "source": "778", "target": "45", "attributes": { "weight": 1 } }, { "key": "12807", "source": "778", "target": "785", "attributes": { "weight": 1 } }, { "key": "26424", "source": "778", "target": "454", "attributes": { "weight": 1 } }, { "key": "2666", "source": "778", "target": "236", "attributes": { "weight": 6 } }, { "key": "10645", "source": "778", "target": "30", "attributes": { "weight": 2 } }, { "key": "10644", "source": "778", "target": "43", "attributes": { "weight": 4 } }, { "key": "4449", "source": "778", "target": "370", "attributes": { "weight": 1 } }, { "key": "3649", "source": "778", "target": "1032", "attributes": { "weight": 4 } }, { "key": "35236", "source": "778", "target": "3193", "attributes": { "weight": 1 } }, { "key": "35231", "source": "778", "target": "3186", "attributes": { "weight": 1 } }, { "key": "4448", "source": "778", "target": "368", "attributes": { "weight": 1 } }, { "key": "24022", "source": "778", "target": "471", "attributes": { "weight": 3 } }, { "key": "3650", "source": "778", "target": "1033", "attributes": { "weight": 2 } }, { "key": "14019", "source": "778", "target": "782", "attributes": { "weight": 1 } }, { "key": "3648", "source": "778", "target": "1029", "attributes": { "weight": 2 } }, { "key": "33919", "source": "778", "target": "1233", "attributes": { "weight": 1 } }, { "key": "21640", "source": "778", "target": "372", "attributes": { "weight": 1 } }, { "key": "32869", "source": "778", "target": "1744", "attributes": { "weight": 1 } }, { "key": "35233", "source": "778", "target": "3188", "attributes": { "weight": 1 } }, { "key": "3646", "source": "778", "target": "1028", "attributes": { "weight": 2 } }, { "key": "8496", "source": "778", "target": "442", "attributes": { "weight": 1 } }, { "key": "3647", "source": "778", "target": "240", "attributes": { "weight": 5 } }, { "key": "30312", "source": "778", "target": "2981", "attributes": { "weight": 2 } }, { "key": "30640", "source": "778", "target": "2993", "attributes": { "weight": 3 } }, { "key": "35235", "source": "778", "target": "3192", "attributes": { "weight": 1 } }, { "key": "9721", "source": "778", "target": "396", "attributes": { "weight": 1 } }, { "key": "14133", "source": "778", "target": "392", "attributes": { "weight": 2 } }, { "key": "26200", "source": "778", "target": "601", "attributes": { "weight": 1 } }, { "key": "35232", "source": "778", "target": "3187", "attributes": { "weight": 1 } }, { "key": "10067", "source": "778", "target": "369", "attributes": { "weight": 2 } }, { "key": "11034", "source": "778", "target": "452", "attributes": { "weight": 1 } }, { "key": "35234", "source": "778", "target": "3190", "attributes": { "weight": 1 } }, { "key": "32868", "source": "778", "target": "470", "attributes": { "weight": 1 } }, { "key": "4488", "source": "779", "target": "195", "attributes": { "weight": 8 } }, { "key": "4554", "source": "779", "target": "1262", "attributes": { "weight": 2 } }, { "key": "4579", "source": "779", "target": "1294", "attributes": { "weight": 2 } }, { "key": "4526", "source": "779", "target": "1209", "attributes": { "weight": 2 } }, { "key": "4576", "source": "779", "target": "1292", "attributes": { "weight": 2 } }, { "key": "4590", "source": "779", "target": "215", "attributes": { "weight": 2 } }, { "key": "4506", "source": "779", "target": "1180", "attributes": { "weight": 2 } }, { "key": "4615", "source": "779", "target": "375", "attributes": { "weight": 2 } }, { "key": "18147", "source": "779", "target": "2205", "attributes": { "weight": 1 } }, { "key": "4538", "source": "779", "target": "1230", "attributes": { "weight": 2 } }, { "key": "4533", "source": "779", "target": "917", "attributes": { "weight": 2 } }, { "key": "4586", "source": "779", "target": "1305", "attributes": { "weight": 2 } }, { "key": "4519", "source": "779", "target": "913", "attributes": { "weight": 3 } }, { "key": "4591", "source": "779", "target": "1315", "attributes": { "weight": 2 } }, { "key": "4489", "source": "779", "target": "236", "attributes": { "weight": 2 } }, { "key": "4516", "source": "779", "target": "1197", "attributes": { "weight": 2 } }, { "key": "4544", "source": "779", "target": "205", "attributes": { "weight": 2 } }, { "key": "4608", "source": "779", "target": "217", "attributes": { "weight": 2 } }, { "key": "4535", "source": "779", "target": "1226", "attributes": { "weight": 2 } }, { "key": "4503", "source": "779", "target": "442", "attributes": { "weight": 2 } }, { "key": "4522", "source": "779", "target": "1047", "attributes": { "weight": 3 } }, { "key": "4601", "source": "779", "target": "1329", "attributes": { "weight": 3 } }, { "key": "4492", "source": "779", "target": "1154", "attributes": { "weight": 2 } }, { "key": "4520", "source": "779", "target": "449", "attributes": { "weight": 2 } }, { "key": "4509", "source": "779", "target": "911", "attributes": { "weight": 2 } }, { "key": "4557", "source": "779", "target": "923", "attributes": { "weight": 2 } }, { "key": "4604", "source": "779", "target": "124", "attributes": { "weight": 2 } }, { "key": "4548", "source": "779", "target": "920", "attributes": { "weight": 2 } }, { "key": "4508", "source": "779", "target": "1184", "attributes": { "weight": 2 } }, { "key": "4567", "source": "779", "target": "926", "attributes": { "weight": 2 } }, { "key": "2668", "source": "779", "target": "238", "attributes": { "weight": 1 } }, { "key": "4595", "source": "779", "target": "1321", "attributes": { "weight": 2 } }, { "key": "4594", "source": "779", "target": "1319", "attributes": { "weight": 2 } }, { "key": "4528", "source": "779", "target": "454", "attributes": { "weight": 2 } }, { "key": "4546", "source": "779", "target": "337", "attributes": { "weight": 2 } }, { "key": "4602", "source": "779", "target": "1331", "attributes": { "weight": 2 } }, { "key": "4566", "source": "779", "target": "925", "attributes": { "weight": 3 } }, { "key": "4562", "source": "779", "target": "371", "attributes": { "weight": 2 } }, { "key": "4565", "source": "779", "target": "1275", "attributes": { "weight": 2 } }, { "key": "4513", "source": "779", "target": "1193", "attributes": { "weight": 2 } }, { "key": "4599", "source": "779", "target": "407", "attributes": { "weight": 3 } }, { "key": "4613", "source": "779", "target": "1348", "attributes": { "weight": 2 } }, { "key": "4518", "source": "779", "target": "1199", "attributes": { "weight": 2 } }, { "key": "4507", "source": "779", "target": "1182", "attributes": { "weight": 3 } }, { "key": "4531", "source": "779", "target": "1221", "attributes": { "weight": 2 } }, { "key": "4486", "source": "779", "target": "933", "attributes": { "weight": 2 } }, { "key": "4580", "source": "779", "target": "1296", "attributes": { "weight": 2 } }, { "key": "4592", "source": "779", "target": "405", "attributes": { "weight": 2 } }, { "key": "4502", "source": "779", "target": "1176", "attributes": { "weight": 2 } }, { "key": "4491", "source": "779", "target": "1153", "attributes": { "weight": 2 } }, { "key": "4523", "source": "779", "target": "1207", "attributes": { "weight": 2 } }, { "key": "4616", "source": "779", "target": "154", "attributes": { "weight": 2 } }, { "key": "4582", "source": "779", "target": "214", "attributes": { "weight": 2 } }, { "key": "4511", "source": "779", "target": "912", "attributes": { "weight": 3 } }, { "key": "4545", "source": "779", "target": "370", "attributes": { "weight": 4 } }, { "key": "4550", "source": "779", "target": "468", "attributes": { "weight": 2 } }, { "key": "4493", "source": "779", "target": "1156", "attributes": { "weight": 2 } }, { "key": "4536", "source": "779", "target": "945", "attributes": { "weight": 2 } }, { "key": "4525", "source": "779", "target": "199", "attributes": { "weight": 2 } }, { "key": "4561", "source": "779", "target": "1268", "attributes": { "weight": 2 } }, { "key": "4583", "source": "779", "target": "372", "attributes": { "weight": 2 } }, { "key": "4542", "source": "779", "target": "1236", "attributes": { "weight": 2 } }, { "key": "4537", "source": "779", "target": "1229", "attributes": { "weight": 2 } }, { "key": "4603", "source": "779", "target": "1333", "attributes": { "weight": 2 } }, { "key": "4572", "source": "779", "target": "123", "attributes": { "weight": 3 } }, { "key": "4539", "source": "779", "target": "1232", "attributes": { "weight": 3 } }, { "key": "4490", "source": "779", "target": "1152", "attributes": { "weight": 2 } }, { "key": "26426", "source": "779", "target": "189", "attributes": { "weight": 1 } }, { "key": "4497", "source": "779", "target": "1170", "attributes": { "weight": 2 } }, { "key": "4494", "source": "779", "target": "1162", "attributes": { "weight": 2 } }, { "key": "4600", "source": "779", "target": "961", "attributes": { "weight": 2 } }, { "key": "4559", "source": "779", "target": "396", "attributes": { "weight": 2 } }, { "key": "4605", "source": "779", "target": "963", "attributes": { "weight": 2 } }, { "key": "4610", "source": "779", "target": "1340", "attributes": { "weight": 2 } }, { "key": "4551", "source": "779", "target": "544", "attributes": { "weight": 2 } }, { "key": "4532", "source": "779", "target": "109", "attributes": { "weight": 2 } }, { "key": "4485", "source": "779", "target": "1145", "attributes": { "weight": 2 } }, { "key": "18635", "source": "779", "target": "1552", "attributes": { "weight": 2 } }, { "key": "4498", "source": "779", "target": "1172", "attributes": { "weight": 2 } }, { "key": "4589", "source": "779", "target": "1309", "attributes": { "weight": 2 } }, { "key": "29241", "source": "779", "target": "2839", "attributes": { "weight": 1 } }, { "key": "4530", "source": "779", "target": "204", "attributes": { "weight": 2 } }, { "key": "4496", "source": "779", "target": "938", "attributes": { "weight": 3 } }, { "key": "4585", "source": "779", "target": "1792", "attributes": { "weight": 2 } }, { "key": "4495", "source": "779", "target": "1165", "attributes": { "weight": 2 } }, { "key": "4587", "source": "779", "target": "1307", "attributes": { "weight": 2 } }, { "key": "4510", "source": "779", "target": "387", "attributes": { "weight": 2 } }, { "key": "4612", "source": "779", "target": "1347", "attributes": { "weight": 2 } }, { "key": "4524", "source": "779", "target": "452", "attributes": { "weight": 2 } }, { "key": "4577", "source": "779", "target": "1293", "attributes": { "weight": 2 } }, { "key": "4515", "source": "779", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4609", "source": "779", "target": "218", "attributes": { "weight": 2 } }, { "key": "4484", "source": "779", "target": "1138", "attributes": { "weight": 2 } }, { "key": "4487", "source": "779", "target": "248", "attributes": { "weight": 2 } }, { "key": "4560", "source": "779", "target": "1266", "attributes": { "weight": 2 } }, { "key": "4505", "source": "779", "target": "1179", "attributes": { "weight": 2 } }, { "key": "4588", "source": "779", "target": "927", "attributes": { "weight": 2 } }, { "key": "4564", "source": "779", "target": "1270", "attributes": { "weight": 2 } }, { "key": "4555", "source": "779", "target": "1263", "attributes": { "weight": 2 } }, { "key": "4553", "source": "779", "target": "1259", "attributes": { "weight": 2 } }, { "key": "4606", "source": "779", "target": "257", "attributes": { "weight": 2 } }, { "key": "4584", "source": "779", "target": "1301", "attributes": { "weight": 2 } }, { "key": "4575", "source": "779", "target": "1291", "attributes": { "weight": 2 } }, { "key": "4534", "source": "779", "target": "918", "attributes": { "weight": 2 } }, { "key": "4500", "source": "779", "target": "631", "attributes": { "weight": 2 } }, { "key": "4549", "source": "779", "target": "921", "attributes": { "weight": 3 } }, { "key": "4512", "source": "779", "target": "389", "attributes": { "weight": 2 } }, { "key": "4568", "source": "779", "target": "1279", "attributes": { "weight": 2 } }, { "key": "4529", "source": "779", "target": "1214", "attributes": { "weight": 2 } }, { "key": "4611", "source": "779", "target": "930", "attributes": { "weight": 2 } }, { "key": "4563", "source": "779", "target": "1269", "attributes": { "weight": 2 } }, { "key": "4517", "source": "779", "target": "368", "attributes": { "weight": 2 } }, { "key": "4540", "source": "779", "target": "1233", "attributes": { "weight": 3 } }, { "key": "4614", "source": "779", "target": "931", "attributes": { "weight": 2 } }, { "key": "4607", "source": "779", "target": "928", "attributes": { "weight": 2 } }, { "key": "4527", "source": "779", "target": "200", "attributes": { "weight": 2 } }, { "key": "4552", "source": "779", "target": "1255", "attributes": { "weight": 2 } }, { "key": "4547", "source": "779", "target": "338", "attributes": { "weight": 2 } }, { "key": "4597", "source": "779", "target": "1323", "attributes": { "weight": 2 } }, { "key": "4569", "source": "779", "target": "1281", "attributes": { "weight": 2 } }, { "key": "4521", "source": "779", "target": "1204", "attributes": { "weight": 2 } }, { "key": "4573", "source": "779", "target": "1289", "attributes": { "weight": 2 } }, { "key": "4556", "source": "779", "target": "208", "attributes": { "weight": 4 } }, { "key": "4558", "source": "779", "target": "924", "attributes": { "weight": 2 } }, { "key": "4617", "source": "779", "target": "1063", "attributes": { "weight": 3 } }, { "key": "4596", "source": "779", "target": "1322", "attributes": { "weight": 2 } }, { "key": "4598", "source": "779", "target": "406", "attributes": { "weight": 2 } }, { "key": "4499", "source": "779", "target": "1174", "attributes": { "weight": 4 } }, { "key": "4571", "source": "779", "target": "1287", "attributes": { "weight": 2 } }, { "key": "4514", "source": "779", "target": "1194", "attributes": { "weight": 2 } }, { "key": "4504", "source": "779", "target": "910", "attributes": { "weight": 2 } }, { "key": "36519", "source": "779", "target": "1228", "attributes": { "weight": 1 } }, { "key": "35184", "source": "779", "target": "108", "attributes": { "weight": 1 } }, { "key": "4581", "source": "779", "target": "990", "attributes": { "weight": 2 } }, { "key": "4570", "source": "779", "target": "1283", "attributes": { "weight": 2 } }, { "key": "4593", "source": "779", "target": "1316", "attributes": { "weight": 2 } }, { "key": "4578", "source": "779", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4543", "source": "779", "target": "1241", "attributes": { "weight": 2 } }, { "key": "4574", "source": "779", "target": "212", "attributes": { "weight": 2 } }, { "key": "4541", "source": "779", "target": "1235", "attributes": { "weight": 2 } }, { "key": "4501", "source": "779", "target": "1175", "attributes": { "weight": 2 } }, { "key": "12820", "source": "780", "target": "1281", "attributes": { "weight": 1 } }, { "key": "28925", "source": "780", "target": "1892", "attributes": { "weight": 1 } }, { "key": "12822", "source": "780", "target": "257", "attributes": { "weight": 1 } }, { "key": "26158", "source": "780", "target": "1214", "attributes": { "weight": 1 } }, { "key": "11905", "source": "780", "target": "135", "attributes": { "weight": 2 } }, { "key": "25440", "source": "780", "target": "990", "attributes": { "weight": 1 } }, { "key": "7326", "source": "780", "target": "1063", "attributes": { "weight": 4 } }, { "key": "25441", "source": "780", "target": "254", "attributes": { "weight": 1 } }, { "key": "12818", "source": "780", "target": "1262", "attributes": { "weight": 2 } }, { "key": "12819", "source": "780", "target": "208", "attributes": { "weight": 1 } }, { "key": "15897", "source": "780", "target": "195", "attributes": { "weight": 1 } }, { "key": "12816", "source": "780", "target": "248", "attributes": { "weight": 1 } }, { "key": "12817", "source": "780", "target": "1158", "attributes": { "weight": 1 } }, { "key": "12821", "source": "780", "target": "785", "attributes": { "weight": 1 } }, { "key": "11592", "source": "780", "target": "199", "attributes": { "weight": 3 } }, { "key": "14042", "source": "780", "target": "1031", "attributes": { "weight": 2 } }, { "key": "2682", "source": "780", "target": "238", "attributes": { "weight": 1 } }, { "key": "5239", "source": "780", "target": "371", "attributes": { "weight": 2 } }, { "key": "11593", "source": "780", "target": "370", "attributes": { "weight": 3 } }, { "key": "11614", "source": "781", "target": "370", "attributes": { "weight": 1 } }, { "key": "12056", "source": "781", "target": "961", "attributes": { "weight": 1 } }, { "key": "12793", "source": "781", "target": "452", "attributes": { "weight": 2 } }, { "key": "12794", "source": "781", "target": "473", "attributes": { "weight": 1 } }, { "key": "2683", "source": "781", "target": "236", "attributes": { "weight": 1 } }, { "key": "35204", "source": "781", "target": "471", "attributes": { "weight": 1 } }, { "key": "5492", "source": "781", "target": "371", "attributes": { "weight": 2 } }, { "key": "32968", "source": "781", "target": "1350", "attributes": { "weight": 1 } }, { "key": "11637", "source": "782", "target": "199", "attributes": { "weight": 2 } }, { "key": "10717", "source": "782", "target": "43", "attributes": { "weight": 3 } }, { "key": "10719", "source": "782", "target": "1718", "attributes": { "weight": 1 } }, { "key": "10725", "source": "782", "target": "1729", "attributes": { "weight": 1 } }, { "key": "10720", "source": "782", "target": "1719", "attributes": { "weight": 1 } }, { "key": "14051", "source": "782", "target": "993", "attributes": { "weight": 1 } }, { "key": "10723", "source": "782", "target": "471", "attributes": { "weight": 1 } }, { "key": "14052", "source": "782", "target": "778", "attributes": { "weight": 1 } }, { "key": "10722", "source": "782", "target": "30", "attributes": { "weight": 1 } }, { "key": "10721", "source": "782", "target": "370", "attributes": { "weight": 2 } }, { "key": "5540", "source": "782", "target": "371", "attributes": { "weight": 5 } }, { "key": "10715", "source": "782", "target": "1716", "attributes": { "weight": 1 } }, { "key": "10718", "source": "782", "target": "44", "attributes": { "weight": 1 } }, { "key": "26238", "source": "782", "target": "48", "attributes": { "weight": 1 } }, { "key": "14053", "source": "782", "target": "1031", "attributes": { "weight": 1 } }, { "key": "2686", "source": "782", "target": "238", "attributes": { "weight": 1 } }, { "key": "10716", "source": "782", "target": "1717", "attributes": { "weight": 1 } }, { "key": "10724", "source": "782", "target": "1314", "attributes": { "weight": 1 } }, { "key": "30813", "source": "783", "target": "2590", "attributes": { "weight": 1 } }, { "key": "25442", "source": "783", "target": "990", "attributes": { "weight": 1 } }, { "key": "33129", "source": "783", "target": "254", "attributes": { "weight": 1 } }, { "key": "2689", "source": "783", "target": "257", "attributes": { "weight": 1 } }, { "key": "5926", "source": "783", "target": "199", "attributes": { "weight": 4 } }, { "key": "7372", "source": "783", "target": "154", "attributes": { "weight": 1 } }, { "key": "9010", "source": "783", "target": "252", "attributes": { "weight": 2 } }, { "key": "28244", "source": "783", "target": "2731", "attributes": { "weight": 2 } }, { "key": "9876", "source": "783", "target": "1031", "attributes": { "weight": 2 } }, { "key": "5927", "source": "783", "target": "370", "attributes": { "weight": 4 } }, { "key": "5928", "source": "783", "target": "371", "attributes": { "weight": 4 } }, { "key": "16180", "source": "783", "target": "195", "attributes": { "weight": 1 } }, { "key": "30004", "source": "784", "target": "249", "attributes": { "weight": 1 } }, { "key": "25894", "source": "784", "target": "220", "attributes": { "weight": 2 } }, { "key": "30002", "source": "784", "target": "236", "attributes": { "weight": 1 } }, { "key": "2691", "source": "784", "target": "785", "attributes": { "weight": 3 } }, { "key": "30005", "source": "784", "target": "1892", "attributes": { "weight": 1 } }, { "key": "30003", "source": "784", "target": "1437", "attributes": { "weight": 1 } }, { "key": "2690", "source": "784", "target": "238", "attributes": { "weight": 1 } }, { "key": "34660", "source": "785", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34659", "source": "785", "target": "1047", "attributes": { "weight": 1 } }, { "key": "12030", "source": "785", "target": "1347", "attributes": { "weight": 2 } }, { "key": "11659", "source": "785", "target": "370", "attributes": { "weight": 2 } }, { "key": "11658", "source": "785", "target": "199", "attributes": { "weight": 2 } }, { "key": "12837", "source": "785", "target": "1063", "attributes": { "weight": 2 } }, { "key": "12832", "source": "785", "target": "780", "attributes": { "weight": 1 } }, { "key": "2692", "source": "785", "target": "238", "attributes": { "weight": 3 } }, { "key": "6181", "source": "785", "target": "371", "attributes": { "weight": 3 } }, { "key": "12836", "source": "785", "target": "1814", "attributes": { "weight": 1 } }, { "key": "12828", "source": "785", "target": "1158", "attributes": { "weight": 1 } }, { "key": "12833", "source": "785", "target": "135", "attributes": { "weight": 1 } }, { "key": "26818", "source": "785", "target": "2650", "attributes": { "weight": 1 } }, { "key": "12834", "source": "785", "target": "208", "attributes": { "weight": 1 } }, { "key": "12835", "source": "785", "target": "256", "attributes": { "weight": 2 } }, { "key": "12831", "source": "785", "target": "1220", "attributes": { "weight": 3 } }, { "key": "2693", "source": "785", "target": "784", "attributes": { "weight": 3 } }, { "key": "35257", "source": "785", "target": "1030", "attributes": { "weight": 1 } }, { "key": "12829", "source": "785", "target": "778", "attributes": { "weight": 1 } }, { "key": "12830", "source": "785", "target": "1892", "attributes": { "weight": 1 } }, { "key": "9883", "source": "785", "target": "1031", "attributes": { "weight": 2 } }, { "key": "3660", "source": "786", "target": "1027", "attributes": { "weight": 2 } }, { "key": "30316", "source": "786", "target": "1030", "attributes": { "weight": 2 } }, { "key": "2697", "source": "786", "target": "236", "attributes": { "weight": 2 } }, { "key": "2698", "source": "786", "target": "238", "attributes": { "weight": 1 } }, { "key": "3661", "source": "786", "target": "240", "attributes": { "weight": 2 } }, { "key": "14128", "source": "786", "target": "1031", "attributes": { "weight": 1 } }, { "key": "16505", "source": "787", "target": "2068", "attributes": { "weight": 1 } }, { "key": "28927", "source": "787", "target": "479", "attributes": { "weight": 1 } }, { "key": "25587", "source": "787", "target": "2070", "attributes": { "weight": 2 } }, { "key": "2700", "source": "787", "target": "788", "attributes": { "weight": 3 } }, { "key": "25588", "source": "787", "target": "5", "attributes": { "weight": 1 } }, { "key": "14314", "source": "787", "target": "319", "attributes": { "weight": 2 } }, { "key": "25596", "source": "787", "target": "2074", "attributes": { "weight": 1 } }, { "key": "16506", "source": "787", "target": "2069", "attributes": { "weight": 1 } }, { "key": "25600", "source": "787", "target": "595", "attributes": { "weight": 1 } }, { "key": "25584", "source": "787", "target": "164", "attributes": { "weight": 1 } }, { "key": "16512", "source": "787", "target": "2077", "attributes": { "weight": 2 } }, { "key": "26387", "source": "787", "target": "454", "attributes": { "weight": 1 } }, { "key": "16508", "source": "787", "target": "2072", "attributes": { "weight": 1 } }, { "key": "25599", "source": "787", "target": "177", "attributes": { "weight": 1 } }, { "key": "25601", "source": "787", "target": "673", "attributes": { "weight": 1 } }, { "key": "35778", "source": "787", "target": "790", "attributes": { "weight": 1 } }, { "key": "34924", "source": "787", "target": "3", "attributes": { "weight": 1 } }, { "key": "29355", "source": "787", "target": "232", "attributes": { "weight": 1 } }, { "key": "11825", "source": "787", "target": "468", "attributes": { "weight": 2 } }, { "key": "22259", "source": "787", "target": "794", "attributes": { "weight": 1 } }, { "key": "16511", "source": "787", "target": "2076", "attributes": { "weight": 1 } }, { "key": "25590", "source": "787", "target": "278", "attributes": { "weight": 2 } }, { "key": "25804", "source": "787", "target": "220", "attributes": { "weight": 1 } }, { "key": "16510", "source": "787", "target": "2075", "attributes": { "weight": 1 } }, { "key": "25598", "source": "787", "target": "2612", "attributes": { "weight": 1 } }, { "key": "25591", "source": "787", "target": "791", "attributes": { "weight": 2 } }, { "key": "25594", "source": "787", "target": "171", "attributes": { "weight": 1 } }, { "key": "16509", "source": "787", "target": "2073", "attributes": { "weight": 1 } }, { "key": "16514", "source": "787", "target": "2079", "attributes": { "weight": 2 } }, { "key": "18012", "source": "787", "target": "1036", "attributes": { "weight": 2 } }, { "key": "25597", "source": "787", "target": "8", "attributes": { "weight": 2 } }, { "key": "25593", "source": "787", "target": "817", "attributes": { "weight": 1 } }, { "key": "25586", "source": "787", "target": "789", "attributes": { "weight": 2 } }, { "key": "16503", "source": "787", "target": "810", "attributes": { "weight": 2 } }, { "key": "25589", "source": "787", "target": "168", "attributes": { "weight": 1 } }, { "key": "34925", "source": "787", "target": "352", "attributes": { "weight": 1 } }, { "key": "25585", "source": "787", "target": "419", "attributes": { "weight": 1 } }, { "key": "16507", "source": "787", "target": "2071", "attributes": { "weight": 2 } }, { "key": "16513", "source": "787", "target": "1780", "attributes": { "weight": 5 } }, { "key": "23398", "source": "787", "target": "304", "attributes": { "weight": 2 } }, { "key": "16504", "source": "787", "target": "2067", "attributes": { "weight": 2 } }, { "key": "30817", "source": "787", "target": "13", "attributes": { "weight": 1 } }, { "key": "25592", "source": "787", "target": "1024", "attributes": { "weight": 2 } }, { "key": "23731", "source": "787", "target": "1774", "attributes": { "weight": 2 } }, { "key": "25595", "source": "787", "target": "7", "attributes": { "weight": 1 } }, { "key": "2714", "source": "788", "target": "794", "attributes": { "weight": 1 } }, { "key": "2704", "source": "788", "target": "0", "attributes": { "weight": 1 } }, { "key": "32102", "source": "788", "target": "454", "attributes": { "weight": 1 } }, { "key": "33762", "source": "788", "target": "9", "attributes": { "weight": 1 } }, { "key": "33765", "source": "788", "target": "351", "attributes": { "weight": 1 } }, { "key": "2716", "source": "788", "target": "319", "attributes": { "weight": 3 } }, { "key": "33761", "source": "788", "target": "817", "attributes": { "weight": 1 } }, { "key": "2706", "source": "788", "target": "419", "attributes": { "weight": 1 } }, { "key": "30878", "source": "788", "target": "2", "attributes": { "weight": 2 } }, { "key": "33760", "source": "788", "target": "2646", "attributes": { "weight": 1 } }, { "key": "17587", "source": "788", "target": "1801", "attributes": { "weight": 1 } }, { "key": "21568", "source": "788", "target": "358", "attributes": { "weight": 2 } }, { "key": "33764", "source": "788", "target": "823", "attributes": { "weight": 1 } }, { "key": "2709", "source": "788", "target": "790", "attributes": { "weight": 2 } }, { "key": "32103", "source": "788", "target": "681", "attributes": { "weight": 3 } }, { "key": "2715", "source": "788", "target": "14", "attributes": { "weight": 3 } }, { "key": "30577", "source": "788", "target": "19", "attributes": { "weight": 2 } }, { "key": "24413", "source": "788", "target": "2505", "attributes": { "weight": 1 } }, { "key": "33766", "source": "788", "target": "828", "attributes": { "weight": 1 } }, { "key": "2705", "source": "788", "target": "787", "attributes": { "weight": 3 } }, { "key": "32104", "source": "788", "target": "7", "attributes": { "weight": 2 } }, { "key": "2707", "source": "788", "target": "3", "attributes": { "weight": 2 } }, { "key": "33763", "source": "788", "target": "10", "attributes": { "weight": 1 } }, { "key": "2710", "source": "788", "target": "791", "attributes": { "weight": 3 } }, { "key": "30578", "source": "788", "target": "682", "attributes": { "weight": 2 } }, { "key": "2712", "source": "788", "target": "13", "attributes": { "weight": 2 } }, { "key": "2711", "source": "788", "target": "8", "attributes": { "weight": 4 } }, { "key": "2708", "source": "788", "target": "789", "attributes": { "weight": 2 } }, { "key": "2713", "source": "788", "target": "793", "attributes": { "weight": 1 } }, { "key": "32105", "source": "788", "target": "2103", "attributes": { "weight": 1 } }, { "key": "21571", "source": "789", "target": "358", "attributes": { "weight": 1 } }, { "key": "23753", "source": "789", "target": "1774", "attributes": { "weight": 2 } }, { "key": "14567", "source": "789", "target": "319", "attributes": { "weight": 3 } }, { "key": "26103", "source": "789", "target": "13", "attributes": { "weight": 4 } }, { "key": "37315", "source": "789", "target": "7", "attributes": { "weight": 1 } }, { "key": "32381", "source": "789", "target": "1926", "attributes": { "weight": 1 } }, { "key": "30295", "source": "789", "target": "791", "attributes": { "weight": 2 } }, { "key": "26101", "source": "789", "target": "4", "attributes": { "weight": 1 } }, { "key": "26104", "source": "789", "target": "793", "attributes": { "weight": 2 } }, { "key": "30296", "source": "789", "target": "681", "attributes": { "weight": 2 } }, { "key": "26102", "source": "789", "target": "19", "attributes": { "weight": 1 } }, { "key": "31595", "source": "789", "target": "8", "attributes": { "weight": 2 } }, { "key": "30294", "source": "789", "target": "2", "attributes": { "weight": 1 } }, { "key": "29420", "source": "789", "target": "232", "attributes": { "weight": 1 } }, { "key": "2717", "source": "789", "target": "788", "attributes": { "weight": 2 } }, { "key": "30298", "source": "789", "target": "1988", "attributes": { "weight": 3 } }, { "key": "25608", "source": "789", "target": "1780", "attributes": { "weight": 1 } }, { "key": "30297", "source": "789", "target": "682", "attributes": { "weight": 1 } }, { "key": "23123", "source": "789", "target": "3", "attributes": { "weight": 6 } }, { "key": "25607", "source": "789", "target": "787", "attributes": { "weight": 2 } }, { "key": "11136", "source": "789", "target": "595", "attributes": { "weight": 2 } }, { "key": "26105", "source": "789", "target": "14", "attributes": { "weight": 4 } }, { "key": "14640", "source": "790", "target": "319", "attributes": { "weight": 1 } }, { "key": "22289", "source": "790", "target": "794", "attributes": { "weight": 1 } }, { "key": "17467", "source": "790", "target": "358", "attributes": { "weight": 4 } }, { "key": "24509", "source": "790", "target": "5", "attributes": { "weight": 2 } }, { "key": "35790", "source": "790", "target": "305", "attributes": { "weight": 1 } }, { "key": "22669", "source": "790", "target": "1037", "attributes": { "weight": 1 } }, { "key": "31608", "source": "790", "target": "595", "attributes": { "weight": 1 } }, { "key": "24507", "source": "790", "target": "454", "attributes": { "weight": 2 } }, { "key": "24514", "source": "790", "target": "473", "attributes": { "weight": 1 } }, { "key": "17600", "source": "790", "target": "59", "attributes": { "weight": 2 } }, { "key": "24502", "source": "790", "target": "220", "attributes": { "weight": 1 } }, { "key": "17603", "source": "790", "target": "2139", "attributes": { "weight": 1 } }, { "key": "17602", "source": "790", "target": "791", "attributes": { "weight": 5 } }, { "key": "24512", "source": "790", "target": "171", "attributes": { "weight": 2 } }, { "key": "35785", "source": "790", "target": "164", "attributes": { "weight": 1 } }, { "key": "11155", "source": "790", "target": "452", "attributes": { "weight": 2 } }, { "key": "26125", "source": "790", "target": "1056", "attributes": { "weight": 1 } }, { "key": "11344", "source": "790", "target": "1742", "attributes": { "weight": 1 } }, { "key": "35784", "source": "790", "target": "787", "attributes": { "weight": 1 } }, { "key": "35787", "source": "790", "target": "419", "attributes": { "weight": 1 } }, { "key": "24511", "source": "790", "target": "1763", "attributes": { "weight": 1 } }, { "key": "24519", "source": "790", "target": "495", "attributes": { "weight": 2 } }, { "key": "24505", "source": "790", "target": "224", "attributes": { "weight": 1 } }, { "key": "24515", "source": "790", "target": "2289", "attributes": { "weight": 2 } }, { "key": "24510", "source": "790", "target": "188", "attributes": { "weight": 1 } }, { "key": "29432", "source": "790", "target": "232", "attributes": { "weight": 2 } }, { "key": "2718", "source": "790", "target": "788", "attributes": { "weight": 2 } }, { "key": "35786", "source": "790", "target": "259", "attributes": { "weight": 1 } }, { "key": "24517", "source": "790", "target": "304", "attributes": { "weight": 1 } }, { "key": "18063", "source": "790", "target": "1036", "attributes": { "weight": 1 } }, { "key": "24518", "source": "790", "target": "1774", "attributes": { "weight": 1 } }, { "key": "36952", "source": "790", "target": "362", "attributes": { "weight": 1 } }, { "key": "24513", "source": "790", "target": "468", "attributes": { "weight": 1 } }, { "key": "17601", "source": "790", "target": "693", "attributes": { "weight": 1 } }, { "key": "35789", "source": "790", "target": "2114", "attributes": { "weight": 1 } }, { "key": "24504", "source": "790", "target": "645", "attributes": { "weight": 1 } }, { "key": "35788", "source": "790", "target": "183", "attributes": { "weight": 1 } }, { "key": "17604", "source": "790", "target": "422", "attributes": { "weight": 1 } }, { "key": "30450", "source": "790", "target": "1046", "attributes": { "weight": 1 } }, { "key": "24506", "source": "790", "target": "2211", "attributes": { "weight": 2 } }, { "key": "24508", "source": "790", "target": "1118", "attributes": { "weight": 1 } }, { "key": "24516", "source": "790", "target": "1125", "attributes": { "weight": 1 } }, { "key": "24503", "source": "790", "target": "1520", "attributes": { "weight": 1 } }, { "key": "3034", "source": "791", "target": "865", "attributes": { "weight": 1 } }, { "key": "17605", "source": "791", "target": "790", "attributes": { "weight": 5 } }, { "key": "29202", "source": "791", "target": "163", "attributes": { "weight": 2 } }, { "key": "3037", "source": "791", "target": "868", "attributes": { "weight": 4 } }, { "key": "32468", "source": "791", "target": "338", "attributes": { "weight": 2 } }, { "key": "25797", "source": "791", "target": "673", "attributes": { "weight": 2 } }, { "key": "9288", "source": "791", "target": "1579", "attributes": { "weight": 1 } }, { "key": "32272", "source": "791", "target": "164", "attributes": { "weight": 2 } }, { "key": "32469", "source": "791", "target": "467", "attributes": { "weight": 1 } }, { "key": "32473", "source": "791", "target": "136", "attributes": { "weight": 1 } }, { "key": "31611", "source": "791", "target": "0", "attributes": { "weight": 2 } }, { "key": "32522", "source": "791", "target": "2868", "attributes": { "weight": 1 } }, { "key": "32453", "source": "791", "target": "1541", "attributes": { "weight": 1 } }, { "key": "25795", "source": "791", "target": "2258", "attributes": { "weight": 1 } }, { "key": "32506", "source": "791", "target": "1092", "attributes": { "weight": 1 } }, { "key": "9287", "source": "791", "target": "430", "attributes": { "weight": 2 } }, { "key": "11156", "source": "791", "target": "452", "attributes": { "weight": 2 } }, { "key": "31318", "source": "791", "target": "59", "attributes": { "weight": 2 } }, { "key": "32513", "source": "791", "target": "1093", "attributes": { "weight": 1 } }, { "key": "11345", "source": "791", "target": "1742", "attributes": { "weight": 2 } }, { "key": "32447", "source": "791", "target": "3097", "attributes": { "weight": 1 } }, { "key": "3028", "source": "791", "target": "859", "attributes": { "weight": 2 } }, { "key": "32510", "source": "791", "target": "192", "attributes": { "weight": 1 } }, { "key": "31319", "source": "791", "target": "674", "attributes": { "weight": 2 } }, { "key": "31317", "source": "791", "target": "1754", "attributes": { "weight": 2 } }, { "key": "8780", "source": "791", "target": "1087", "attributes": { "weight": 2 } }, { "key": "27860", "source": "791", "target": "891", "attributes": { "weight": 2 } }, { "key": "24767", "source": "791", "target": "486", "attributes": { "weight": 2 } }, { "key": "32514", "source": "791", "target": "2124", "attributes": { "weight": 1 } }, { "key": "32414", "source": "791", "target": "437", "attributes": { "weight": 1 } }, { "key": "31320", "source": "791", "target": "1118", "attributes": { "weight": 2 } }, { "key": "30707", "source": "791", "target": "889", "attributes": { "weight": 2 } }, { "key": "32405", "source": "791", "target": "3092", "attributes": { "weight": 1 } }, { "key": "32518", "source": "791", "target": "492", "attributes": { "weight": 1 } }, { "key": "28403", "source": "791", "target": "170", "attributes": { "weight": 2 } }, { "key": "26592", "source": "791", "target": "454", "attributes": { "weight": 3 } }, { "key": "32415", "source": "791", "target": "1522", "attributes": { "weight": 1 } }, { "key": "29857", "source": "791", "target": "2122", "attributes": { "weight": 3 } }, { "key": "32489", "source": "791", "target": "2867", "attributes": { "weight": 1 } }, { "key": "32486", "source": "791", "target": "423", "attributes": { "weight": 1 } }, { "key": "32504", "source": "791", "target": "487", "attributes": { "weight": 1 } }, { "key": "13181", "source": "791", "target": "305", "attributes": { "weight": 2 } }, { "key": "32461", "source": "791", "target": "1800", "attributes": { "weight": 1 } }, { "key": "25867", "source": "791", "target": "220", "attributes": { "weight": 2 } }, { "key": "32409", "source": "791", "target": "130", "attributes": { "weight": 1 } }, { "key": "32528", "source": "791", "target": "2126", "attributes": { "weight": 1 } }, { "key": "32454", "source": "791", "target": "2696", "attributes": { "weight": 1 } }, { "key": "3038", "source": "791", "target": "869", "attributes": { "weight": 2 } }, { "key": "30729", "source": "791", "target": "1026", "attributes": { "weight": 2 } }, { "key": "32426", "source": "791", "target": "1527", "attributes": { "weight": 1 } }, { "key": "25794", "source": "791", "target": "2139", "attributes": { "weight": 2 } }, { "key": "32401", "source": "791", "target": "35", "attributes": { "weight": 1 } }, { "key": "32448", "source": "791", "target": "421", "attributes": { "weight": 1 } }, { "key": "32493", "source": "791", "target": "3104", "attributes": { "weight": 1 } }, { "key": "32476", "source": "791", "target": "228", "attributes": { "weight": 1 } }, { "key": "32477", "source": "791", "target": "471", "attributes": { "weight": 1 } }, { "key": "32443", "source": "791", "target": "2861", "attributes": { "weight": 1 } }, { "key": "32451", "source": "791", "target": "161", "attributes": { "weight": 1 } }, { "key": "27861", "source": "791", "target": "426", "attributes": { "weight": 2 } }, { "key": "32465", "source": "791", "target": "2863", "attributes": { "weight": 1 } }, { "key": "13180", "source": "791", "target": "304", "attributes": { "weight": 2 } }, { "key": "32491", "source": "791", "target": "41", "attributes": { "weight": 1 } }, { "key": "32438", "source": "791", "target": "109", "attributes": { "weight": 1 } }, { "key": "32432", "source": "791", "target": "2123", "attributes": { "weight": 1 } }, { "key": "30300", "source": "791", "target": "1988", "attributes": { "weight": 2 } }, { "key": "3026", "source": "791", "target": "858", "attributes": { "weight": 3 } }, { "key": "31902", "source": "791", "target": "1060", "attributes": { "weight": 2 } }, { "key": "32436", "source": "791", "target": "1384", "attributes": { "weight": 1 } }, { "key": "32420", "source": "791", "target": "2113", "attributes": { "weight": 1 } }, { "key": "31612", "source": "791", "target": "8", "attributes": { "weight": 2 } }, { "key": "32423", "source": "791", "target": "224", "attributes": { "weight": 1 } }, { "key": "3033", "source": "791", "target": "864", "attributes": { "weight": 2 } }, { "key": "27863", "source": "791", "target": "2670", "attributes": { "weight": 2 } }, { "key": "32407", "source": "791", "target": "2856", "attributes": { "weight": 1 } }, { "key": "32487", "source": "791", "target": "3103", "attributes": { "weight": 1 } }, { "key": "27540", "source": "791", "target": "1520", "attributes": { "weight": 2 } }, { "key": "29128", "source": "791", "target": "500", "attributes": { "weight": 2 } }, { "key": "32496", "source": "791", "target": "123", "attributes": { "weight": 2 } }, { "key": "17469", "source": "791", "target": "358", "attributes": { "weight": 3 } }, { "key": "32497", "source": "791", "target": "3000", "attributes": { "weight": 1 } }, { "key": "32483", "source": "791", "target": "2865", "attributes": { "weight": 1 } }, { "key": "32488", "source": "791", "target": "190", "attributes": { "weight": 1 } }, { "key": "25617", "source": "791", "target": "2070", "attributes": { "weight": 1 } }, { "key": "32494", "source": "791", "target": "1557", "attributes": { "weight": 1 } }, { "key": "32481", "source": "791", "target": "1611", "attributes": { "weight": 1 } }, { "key": "14649", "source": "791", "target": "319", "attributes": { "weight": 1 } }, { "key": "32511", "source": "791", "target": "1805", "attributes": { "weight": 1 } }, { "key": "3031", "source": "791", "target": "862", "attributes": { "weight": 2 } }, { "key": "32446", "source": "791", "target": "1798", "attributes": { "weight": 1 } }, { "key": "32411", "source": "791", "target": "3094", "attributes": { "weight": 1 } }, { "key": "32472", "source": "791", "target": "470", "attributes": { "weight": 2 } }, { "key": "32408", "source": "791", "target": "2857", "attributes": { "weight": 1 } }, { "key": "32517", "source": "791", "target": "340", "attributes": { "weight": 1 } }, { "key": "25619", "source": "791", "target": "1780", "attributes": { "weight": 2 } }, { "key": "32450", "source": "791", "target": "370", "attributes": { "weight": 2 } }, { "key": "32455", "source": "791", "target": "422", "attributes": { "weight": 1 } }, { "key": "32485", "source": "791", "target": "2866", "attributes": { "weight": 1 } }, { "key": "32524", "source": "791", "target": "494", "attributes": { "weight": 1 } }, { "key": "32431", "source": "791", "target": "450", "attributes": { "weight": 1 } }, { "key": "29856", "source": "791", "target": "2831", "attributes": { "weight": 3 } }, { "key": "25616", "source": "791", "target": "787", "attributes": { "weight": 2 } }, { "key": "25919", "source": "791", "target": "1367", "attributes": { "weight": 2 } }, { "key": "31899", "source": "791", "target": "1045", "attributes": { "weight": 2 } }, { "key": "32519", "source": "791", "target": "493", "attributes": { "weight": 2 } }, { "key": "22671", "source": "791", "target": "1037", "attributes": { "weight": 2 } }, { "key": "32444", "source": "791", "target": "1232", "attributes": { "weight": 2 } }, { "key": "32418", "source": "791", "target": "223", "attributes": { "weight": 1 } }, { "key": "32490", "source": "791", "target": "474", "attributes": { "weight": 1 } }, { "key": "32527", "source": "791", "target": "1390", "attributes": { "weight": 1 } }, { "key": "32525", "source": "791", "target": "352", "attributes": { "weight": 2 } }, { "key": "25090", "source": "791", "target": "1547", "attributes": { "weight": 2 } }, { "key": "3032", "source": "791", "target": "863", "attributes": { "weight": 2 } }, { "key": "32478", "source": "791", "target": "472", "attributes": { "weight": 1 } }, { "key": "32521", "source": "791", "target": "351", "attributes": { "weight": 1 } }, { "key": "32427", "source": "791", "target": "133", "attributes": { "weight": 1 } }, { "key": "3023", "source": "791", "target": "856", "attributes": { "weight": 3 } }, { "key": "32424", "source": "791", "target": "3096", "attributes": { "weight": 1 } }, { "key": "32404", "source": "791", "target": "429", "attributes": { "weight": 1 } }, { "key": "9476", "source": "791", "target": "419", "attributes": { "weight": 2 } }, { "key": "32456", "source": "791", "target": "2862", "attributes": { "weight": 1 } }, { "key": "32449", "source": "791", "target": "3098", "attributes": { "weight": 1 } }, { "key": "27264", "source": "791", "target": "57", "attributes": { "weight": 4 } }, { "key": "32475", "source": "791", "target": "2647", "attributes": { "weight": 1 } }, { "key": "32501", "source": "791", "target": "695", "attributes": { "weight": 1 } }, { "key": "31322", "source": "791", "target": "70", "attributes": { "weight": 2 } }, { "key": "9289", "source": "791", "target": "1592", "attributes": { "weight": 2 } }, { "key": "32160", "source": "791", "target": "1779", "attributes": { "weight": 2 } }, { "key": "32523", "source": "791", "target": "2869", "attributes": { "weight": 1 } }, { "key": "32463", "source": "791", "target": "361", "attributes": { "weight": 1 } }, { "key": "32417", "source": "791", "target": "438", "attributes": { "weight": 1 } }, { "key": "32505", "source": "791", "target": "428", "attributes": { "weight": 1 } }, { "key": "25793", "source": "791", "target": "2114", "attributes": { "weight": 2 } }, { "key": "32462", "source": "791", "target": "3101", "attributes": { "weight": 1 } }, { "key": "9475", "source": "791", "target": "645", "attributes": { "weight": 2 } }, { "key": "7320", "source": "791", "target": "1063", "attributes": { "weight": 2 } }, { "key": "32457", "source": "791", "target": "3100", "attributes": { "weight": 1 } }, { "key": "27862", "source": "791", "target": "1024", "attributes": { "weight": 4 } }, { "key": "27859", "source": "791", "target": "339", "attributes": { "weight": 2 } }, { "key": "3969", "source": "791", "target": "432", "attributes": { "weight": 3 } }, { "key": "3025", "source": "791", "target": "424", "attributes": { "weight": 3 } }, { "key": "32425", "source": "791", "target": "357", "attributes": { "weight": 1 } }, { "key": "5162", "source": "791", "target": "468", "attributes": { "weight": 3 } }, { "key": "32498", "source": "791", "target": "13", "attributes": { "weight": 1 } }, { "key": "25618", "source": "791", "target": "2077", "attributes": { "weight": 1 } }, { "key": "27594", "source": "791", "target": "171", "attributes": { "weight": 2 } }, { "key": "32467", "source": "791", "target": "3102", "attributes": { "weight": 1 } }, { "key": "3024", "source": "791", "target": "857", "attributes": { "weight": 4 } }, { "key": "32459", "source": "791", "target": "1763", "attributes": { "weight": 1 } }, { "key": "32526", "source": "791", "target": "1375", "attributes": { "weight": 1 } }, { "key": "25736", "source": "791", "target": "278", "attributes": { "weight": 3 } }, { "key": "32441", "source": "791", "target": "188", "attributes": { "weight": 1 } }, { "key": "32471", "source": "791", "target": "1253", "attributes": { "weight": 1 } }, { "key": "3106", "source": "791", "target": "890", "attributes": { "weight": 3 } }, { "key": "32495", "source": "791", "target": "476", "attributes": { "weight": 1 } }, { "key": "31900", "source": "791", "target": "359", "attributes": { "weight": 2 } }, { "key": "32434", "source": "791", "target": "2211", "attributes": { "weight": 1 } }, { "key": "23756", "source": "791", "target": "1774", "attributes": { "weight": 2 } }, { "key": "32410", "source": "791", "target": "433", "attributes": { "weight": 1 } }, { "key": "32509", "source": "791", "target": "1804", "attributes": { "weight": 1 } }, { "key": "3029", "source": "791", "target": "860", "attributes": { "weight": 2 } }, { "key": "32440", "source": "791", "target": "455", "attributes": { "weight": 1 } }, { "key": "26127", "source": "791", "target": "1056", "attributes": { "weight": 2 } }, { "key": "32421", "source": "791", "target": "440", "attributes": { "weight": 1 } }, { "key": "32402", "source": "791", "target": "1380", "attributes": { "weight": 1 } }, { "key": "31613", "source": "791", "target": "823", "attributes": { "weight": 2 } }, { "key": "10495", "source": "791", "target": "225", "attributes": { "weight": 2 } }, { "key": "32520", "source": "791", "target": "193", "attributes": { "weight": 1 } }, { "key": "31614", "source": "791", "target": "595", "attributes": { "weight": 1 } }, { "key": "3027", "source": "791", "target": "442", "attributes": { "weight": 3 } }, { "key": "32508", "source": "791", "target": "14", "attributes": { "weight": 1 } }, { "key": "32439", "source": "791", "target": "52", "attributes": { "weight": 1 } }, { "key": "32452", "source": "791", "target": "638", "attributes": { "weight": 1 } }, { "key": "32512", "source": "791", "target": "1775", "attributes": { "weight": 1 } }, { "key": "24687", "source": "791", "target": "5", "attributes": { "weight": 2 } }, { "key": "32507", "source": "791", "target": "490", "attributes": { "weight": 1 } }, { "key": "31321", "source": "791", "target": "457", "attributes": { "weight": 2 } }, { "key": "13179", "source": "791", "target": "259", "attributes": { "weight": 2 } }, { "key": "32403", "source": "791", "target": "3091", "attributes": { "weight": 1 } }, { "key": "32482", "source": "791", "target": "2864", "attributes": { "weight": 1 } }, { "key": "32480", "source": "791", "target": "1801", "attributes": { "weight": 1 } }, { "key": "32464", "source": "791", "target": "2513", "attributes": { "weight": 1 } }, { "key": "3036", "source": "791", "target": "867", "attributes": { "weight": 2 } }, { "key": "32460", "source": "791", "target": "1765", "attributes": { "weight": 1 } }, { "key": "2719", "source": "791", "target": "788", "attributes": { "weight": 3 } }, { "key": "3030", "source": "791", "target": "861", "attributes": { "weight": 3 } }, { "key": "18064", "source": "791", "target": "1036", "attributes": { "weight": 2 } }, { "key": "32413", "source": "791", "target": "435", "attributes": { "weight": 1 } }, { "key": "32419", "source": "791", "target": "425", "attributes": { "weight": 1 } }, { "key": "30299", "source": "791", "target": "789", "attributes": { "weight": 2 } }, { "key": "32430", "source": "791", "target": "183", "attributes": { "weight": 1 } }, { "key": "32429", "source": "791", "target": "449", "attributes": { "weight": 1 } }, { "key": "32435", "source": "791", "target": "185", "attributes": { "weight": 1 } }, { "key": "32412", "source": "791", "target": "2112", "attributes": { "weight": 1 } }, { "key": "26908", "source": "791", "target": "497", "attributes": { "weight": 2 } }, { "key": "32437", "source": "791", "target": "1536", "attributes": { "weight": 1 } }, { "key": "29032", "source": "791", "target": "495", "attributes": { "weight": 3 } }, { "key": "32428", "source": "791", "target": "2858", "attributes": { "weight": 1 } }, { "key": "32442", "source": "791", "target": "168", "attributes": { "weight": 1 } }, { "key": "32502", "source": "791", "target": "1312", "attributes": { "weight": 1 } }, { "key": "25796", "source": "791", "target": "10", "attributes": { "weight": 1 } }, { "key": "22480", "source": "791", "target": "178", "attributes": { "weight": 3 } }, { "key": "32479", "source": "791", "target": "362", "attributes": { "weight": 2 } }, { "key": "32499", "source": "791", "target": "479", "attributes": { "weight": 1 } }, { "key": "32445", "source": "791", "target": "1233", "attributes": { "weight": 2 } }, { "key": "30452", "source": "791", "target": "1046", "attributes": { "weight": 2 } }, { "key": "9286", "source": "791", "target": "1571", "attributes": { "weight": 1 } }, { "key": "3035", "source": "791", "target": "866", "attributes": { "weight": 3 } }, { "key": "32466", "source": "791", "target": "7", "attributes": { "weight": 1 } }, { "key": "32474", "source": "791", "target": "1258", "attributes": { "weight": 1 } }, { "key": "26593", "source": "791", "target": "189", "attributes": { "weight": 4 } }, { "key": "32492", "source": "791", "target": "2289", "attributes": { "weight": 1 } }, { "key": "3108", "source": "791", "target": "894", "attributes": { "weight": 3 } }, { "key": "32416", "source": "791", "target": "222", "attributes": { "weight": 1 } }, { "key": "32515", "source": "791", "target": "1750", "attributes": { "weight": 1 } }, { "key": "32516", "source": "791", "target": "233", "attributes": { "weight": 1 } }, { "key": "32503", "source": "791", "target": "2118", "attributes": { "weight": 1 } }, { "key": "32500", "source": "791", "target": "427", "attributes": { "weight": 1 } }, { "key": "32458", "source": "791", "target": "1386", "attributes": { "weight": 2 } }, { "key": "31901", "source": "791", "target": "2115", "attributes": { "weight": 2 } }, { "key": "3608", "source": "791", "target": "1025", "attributes": { "weight": 2 } }, { "key": "32406", "source": "791", "target": "2999", "attributes": { "weight": 1 } }, { "key": "28404", "source": "791", "target": "580", "attributes": { "weight": 2 } }, { "key": "32422", "source": "791", "target": "1136", "attributes": { "weight": 1 } }, { "key": "32470", "source": "791", "target": "135", "attributes": { "weight": 1 } }, { "key": "32484", "source": "791", "target": "473", "attributes": { "weight": 1 } }, { "key": "32433", "source": "791", "target": "2860", "attributes": { "weight": 1 } }, { "key": "32113", "source": "792", "target": "0", "attributes": { "weight": 2 } }, { "key": "32118", "source": "792", "target": "11", "attributes": { "weight": 1 } }, { "key": "32117", "source": "792", "target": "7", "attributes": { "weight": 2 } }, { "key": "32115", "source": "792", "target": "681", "attributes": { "weight": 3 } }, { "key": "32114", "source": "792", "target": "3085", "attributes": { "weight": 1 } }, { "key": "33791", "source": "792", "target": "817", "attributes": { "weight": 1 } }, { "key": "31636", "source": "792", "target": "823", "attributes": { "weight": 1 } }, { "key": "33790", "source": "792", "target": "2646", "attributes": { "weight": 1 } }, { "key": "2722", "source": "792", "target": "13", "attributes": { "weight": 3 } }, { "key": "32119", "source": "792", "target": "14", "attributes": { "weight": 2 } }, { "key": "14712", "source": "792", "target": "319", "attributes": { "weight": 1 } }, { "key": "2720", "source": "792", "target": "3", "attributes": { "weight": 2 } }, { "key": "32116", "source": "792", "target": "682", "attributes": { "weight": 2 } }, { "key": "33792", "source": "792", "target": "351", "attributes": { "weight": 1 } }, { "key": "2723", "source": "792", "target": "793", "attributes": { "weight": 1 } }, { "key": "2721", "source": "792", "target": "8", "attributes": { "weight": 4 } }, { "key": "32120", "source": "792", "target": "349", "attributes": { "weight": 1 } }, { "key": "30901", "source": "792", "target": "2", "attributes": { "weight": 2 } }, { "key": "30565", "source": "792", "target": "2103", "attributes": { "weight": 2 } }, { "key": "31703", "source": "793", "target": "595", "attributes": { "weight": 1 } }, { "key": "35149", "source": "793", "target": "13", "attributes": { "weight": 1 } }, { "key": "3634", "source": "793", "target": "1025", "attributes": { "weight": 1 } }, { "key": "26114", "source": "793", "target": "789", "attributes": { "weight": 2 } }, { "key": "35151", "source": "793", "target": "349", "attributes": { "weight": 1 } }, { "key": "2728", "source": "793", "target": "788", "attributes": { "weight": 1 } }, { "key": "37248", "source": "793", "target": "3023", "attributes": { "weight": 1 } }, { "key": "2729", "source": "793", "target": "792", "attributes": { "weight": 1 } }, { "key": "35152", "source": "793", "target": "351", "attributes": { "weight": 1 } }, { "key": "30309", "source": "793", "target": "1988", "attributes": { "weight": 2 } }, { "key": "35150", "source": "793", "target": "14", "attributes": { "weight": 1 } }, { "key": "30943", "source": "793", "target": "3", "attributes": { "weight": 1 } }, { "key": "22335", "source": "794", "target": "650", "attributes": { "weight": 1 } }, { "key": "22362", "source": "794", "target": "2119", "attributes": { "weight": 2 } }, { "key": "22353", "source": "794", "target": "1801", "attributes": { "weight": 1 } }, { "key": "22359", "source": "794", "target": "823", "attributes": { "weight": 1 } }, { "key": "22358", "source": "794", "target": "2116", "attributes": { "weight": 3 } }, { "key": "22347", "source": "794", "target": "361", "attributes": { "weight": 1 } }, { "key": "22348", "source": "794", "target": "1056", "attributes": { "weight": 1 } }, { "key": "29743", "source": "794", "target": "2892", "attributes": { "weight": 1 } }, { "key": "22343", "source": "794", "target": "359", "attributes": { "weight": 1 } }, { "key": "22368", "source": "794", "target": "351", "attributes": { "weight": 1 } }, { "key": "9529", "source": "794", "target": "667", "attributes": { "weight": 3 } }, { "key": "29744", "source": "794", "target": "2465", "attributes": { "weight": 1 } }, { "key": "22328", "source": "794", "target": "3", "attributes": { "weight": 1 } }, { "key": "9528", "source": "794", "target": "661", "attributes": { "weight": 2 } }, { "key": "22314", "source": "794", "target": "2312", "attributes": { "weight": 1 } }, { "key": "22367", "source": "794", "target": "1780", "attributes": { "weight": 1 } }, { "key": "22322", "source": "794", "target": "355", "attributes": { "weight": 1 } }, { "key": "22366", "source": "794", "target": "2124", "attributes": { "weight": 1 } }, { "key": "22316", "source": "794", "target": "1520", "attributes": { "weight": 1 } }, { "key": "22327", "source": "794", "target": "419", "attributes": { "weight": 1 } }, { "key": "2730", "source": "794", "target": "788", "attributes": { "weight": 1 } }, { "key": "22334", "source": "794", "target": "693", "attributes": { "weight": 1 } }, { "key": "22345", "source": "794", "target": "1763", "attributes": { "weight": 2 } }, { "key": "22365", "source": "794", "target": "1804", "attributes": { "weight": 1 } }, { "key": "22346", "source": "794", "target": "1765", "attributes": { "weight": 1 } }, { "key": "22361", "source": "794", "target": "232", "attributes": { "weight": 1 } }, { "key": "22340", "source": "794", "target": "2287", "attributes": { "weight": 1 } }, { "key": "22320", "source": "794", "target": "2113", "attributes": { "weight": 1 } }, { "key": "3827", "source": "794", "target": "647", "attributes": { "weight": 4 } }, { "key": "19094", "source": "794", "target": "2232", "attributes": { "weight": 1 } }, { "key": "9526", "source": "794", "target": "1041", "attributes": { "weight": 3 } }, { "key": "22310", "source": "794", "target": "2233", "attributes": { "weight": 1 } }, { "key": "22337", "source": "794", "target": "891", "attributes": { "weight": 1 } }, { "key": "22319", "source": "794", "target": "645", "attributes": { "weight": 1 } }, { "key": "22330", "source": "794", "target": "1046", "attributes": { "weight": 2 } }, { "key": "22329", "source": "794", "target": "1045", "attributes": { "weight": 1 } }, { "key": "22324", "source": "794", "target": "646", "attributes": { "weight": 1 } }, { "key": "37088", "source": "794", "target": "1782", "attributes": { "weight": 1 } }, { "key": "22317", "source": "794", "target": "2112", "attributes": { "weight": 1 } }, { "key": "22344", "source": "794", "target": "1024", "attributes": { "weight": 1 } }, { "key": "24587", "source": "794", "target": "664", "attributes": { "weight": 2 } }, { "key": "22325", "source": "794", "target": "1042", "attributes": { "weight": 3 } }, { "key": "22331", "source": "794", "target": "2122", "attributes": { "weight": 1 } }, { "key": "29742", "source": "794", "target": "2288", "attributes": { "weight": 1 } }, { "key": "22338", "source": "794", "target": "2313", "attributes": { "weight": 1 } }, { "key": "22323", "source": "794", "target": "2067", "attributes": { "weight": 1 } }, { "key": "22332", "source": "794", "target": "2114", "attributes": { "weight": 1 } }, { "key": "22311", "source": "794", "target": "787", "attributes": { "weight": 1 } }, { "key": "29741", "source": "794", "target": "1253", "attributes": { "weight": 1 } }, { "key": "22349", "source": "794", "target": "7", "attributes": { "weight": 1 } }, { "key": "22369", "source": "794", "target": "2126", "attributes": { "weight": 1 } }, { "key": "29740", "source": "794", "target": "421", "attributes": { "weight": 1 } }, { "key": "22313", "source": "794", "target": "889", "attributes": { "weight": 1 } }, { "key": "22342", "source": "794", "target": "659", "attributes": { "weight": 2 } }, { "key": "9527", "source": "794", "target": "651", "attributes": { "weight": 2 } }, { "key": "22351", "source": "794", "target": "362", "attributes": { "weight": 1 } }, { "key": "22333", "source": "794", "target": "2123", "attributes": { "weight": 1 } }, { "key": "22355", "source": "794", "target": "163", "attributes": { "weight": 1 } }, { "key": "22321", "source": "794", "target": "339", "attributes": { "weight": 2 } }, { "key": "22364", "source": "794", "target": "14", "attributes": { "weight": 1 } }, { "key": "22326", "source": "794", "target": "357", "attributes": { "weight": 1 } }, { "key": "22341", "source": "794", "target": "790", "attributes": { "weight": 1 } }, { "key": "23794", "source": "794", "target": "1774", "attributes": { "weight": 1 } }, { "key": "24586", "source": "794", "target": "1049", "attributes": { "weight": 1 } }, { "key": "22357", "source": "794", "target": "868", "attributes": { "weight": 1 } }, { "key": "22315", "source": "794", "target": "1037", "attributes": { "weight": 1 } }, { "key": "22352", "source": "794", "target": "2115", "attributes": { "weight": 1 } }, { "key": "22339", "source": "794", "target": "2314", "attributes": { "weight": 1 } }, { "key": "22318", "source": "794", "target": "644", "attributes": { "weight": 1 } }, { "key": "29739", "source": "794", "target": "2883", "attributes": { "weight": 1 } }, { "key": "22356", "source": "794", "target": "2289", "attributes": { "weight": 1 } }, { "key": "22336", "source": "794", "target": "2286", "attributes": { "weight": 1 } }, { "key": "22312", "source": "794", "target": "641", "attributes": { "weight": 1 } }, { "key": "22360", "source": "794", "target": "1060", "attributes": { "weight": 1 } }, { "key": "22363", "source": "794", "target": "2291", "attributes": { "weight": 1 } }, { "key": "31119", "source": "794", "target": "1036", "attributes": { "weight": 1 } }, { "key": "22350", "source": "794", "target": "2144", "attributes": { "weight": 1 } }, { "key": "22354", "source": "794", "target": "662", "attributes": { "weight": 1 } }, { "key": "2744", "source": "797", "target": "540", "attributes": { "weight": 1 } }, { "key": "2745", "source": "798", "target": "804", "attributes": { "weight": 1 } }, { "key": "2746", "source": "798", "target": "407", "attributes": { "weight": 1 } }, { "key": "2748", "source": "800", "target": "804", "attributes": { "weight": 1 } }, { "key": "2758", "source": "804", "target": "805", "attributes": { "weight": 1 } }, { "key": "2755", "source": "804", "target": "798", "attributes": { "weight": 1 } }, { "key": "2754", "source": "804", "target": "797", "attributes": { "weight": 1 } }, { "key": "2753", "source": "804", "target": "540", "attributes": { "weight": 1 } }, { "key": "2762", "source": "805", "target": "804", "attributes": { "weight": 1 } }, { "key": "16501", "source": "810", "target": "2077", "attributes": { "weight": 1 } }, { "key": "16502", "source": "810", "target": "1780", "attributes": { "weight": 2 } }, { "key": "2768", "source": "810", "target": "3", "attributes": { "weight": 2 } }, { "key": "16500", "source": "810", "target": "787", "attributes": { "weight": 2 } }, { "key": "2770", "source": "811", "target": "8", "attributes": { "weight": 1 } }, { "key": "2769", "source": "811", "target": "3", "attributes": { "weight": 1 } }, { "key": "2785", "source": "812", "target": "3", "attributes": { "weight": 1 } }, { "key": "2788", "source": "814", "target": "8", "attributes": { "weight": 1 } }, { "key": "23901", "source": "815", "target": "8", "attributes": { "weight": 1 } }, { "key": "2789", "source": "815", "target": "3", "attributes": { "weight": 2 } }, { "key": "23902", "source": "815", "target": "14", "attributes": { "weight": 1 } }, { "key": "2790", "source": "816", "target": "14", "attributes": { "weight": 1 } }, { "key": "23903", "source": "816", "target": "3", "attributes": { "weight": 1 } }, { "key": "33788", "source": "817", "target": "1988", "attributes": { "weight": 1 } }, { "key": "2793", "source": "817", "target": "4", "attributes": { "weight": 1 } }, { "key": "25623", "source": "817", "target": "787", "attributes": { "weight": 1 } }, { "key": "30900", "source": "817", "target": "3", "attributes": { "weight": 3 } }, { "key": "31633", "source": "817", "target": "8", "attributes": { "weight": 1 } }, { "key": "37237", "source": "817", "target": "3017", "attributes": { "weight": 1 } }, { "key": "28940", "source": "817", "target": "479", "attributes": { "weight": 1 } }, { "key": "26604", "source": "817", "target": "454", "attributes": { "weight": 1 } }, { "key": "37238", "source": "817", "target": "823", "attributes": { "weight": 1 } }, { "key": "34995", "source": "817", "target": "352", "attributes": { "weight": 1 } }, { "key": "23764", "source": "817", "target": "1774", "attributes": { "weight": 2 } }, { "key": "33785", "source": "817", "target": "358", "attributes": { "weight": 1 } }, { "key": "35128", "source": "817", "target": "2646", "attributes": { "weight": 1 } }, { "key": "33787", "source": "817", "target": "792", "attributes": { "weight": 1 } }, { "key": "11349", "source": "817", "target": "1742", "attributes": { "weight": 1 } }, { "key": "33786", "source": "817", "target": "788", "attributes": { "weight": 1 } }, { "key": "30327", "source": "817", "target": "693", "attributes": { "weight": 2 } }, { "key": "2794", "source": "817", "target": "14", "attributes": { "weight": 2 } }, { "key": "21586", "source": "817", "target": "89", "attributes": { "weight": 3 } }, { "key": "31634", "source": "817", "target": "595", "attributes": { "weight": 1 } }, { "key": "2795", "source": "818", "target": "8", "attributes": { "weight": 1 } }, { "key": "35130", "source": "818", "target": "352", "attributes": { "weight": 1 } }, { "key": "35129", "source": "818", "target": "593", "attributes": { "weight": 1 } }, { "key": "2803", "source": "819", "target": "3", "attributes": { "weight": 1 } }, { "key": "30606", "source": "819", "target": "682", "attributes": { "weight": 1 } }, { "key": "2804", "source": "819", "target": "8", "attributes": { "weight": 1 } }, { "key": "16537", "source": "819", "target": "2077", "attributes": { "weight": 1 } }, { "key": "31667", "source": "820", "target": "595", "attributes": { "weight": 1 } }, { "key": "2805", "source": "820", "target": "14", "attributes": { "weight": 1 } }, { "key": "2807", "source": "821", "target": "3", "attributes": { "weight": 1 } }, { "key": "2808", "source": "822", "target": "3", "attributes": { "weight": 1 } }, { "key": "31701", "source": "823", "target": "14", "attributes": { "weight": 1 } }, { "key": "28979", "source": "823", "target": "479", "attributes": { "weight": 1 } }, { "key": "21598", "source": "823", "target": "358", "attributes": { "weight": 1 } }, { "key": "31699", "source": "823", "target": "3021", "attributes": { "weight": 1 } }, { "key": "2809", "source": "823", "target": "4", "attributes": { "weight": 1 } }, { "key": "37247", "source": "823", "target": "817", "attributes": { "weight": 1 } }, { "key": "30942", "source": "823", "target": "3", "attributes": { "weight": 3 } }, { "key": "31694", "source": "823", "target": "424", "attributes": { "weight": 1 } }, { "key": "23793", "source": "823", "target": "1774", "attributes": { "weight": 2 } }, { "key": "31700", "source": "823", "target": "595", "attributes": { "weight": 1 } }, { "key": "2810", "source": "823", "target": "828", "attributes": { "weight": 1 } }, { "key": "31697", "source": "823", "target": "792", "attributes": { "weight": 1 } }, { "key": "33814", "source": "823", "target": "440", "attributes": { "weight": 1 } }, { "key": "29907", "source": "823", "target": "1024", "attributes": { "weight": 2 } }, { "key": "22307", "source": "823", "target": "794", "attributes": { "weight": 1 } }, { "key": "31702", "source": "823", "target": "340", "attributes": { "weight": 1 } }, { "key": "31696", "source": "823", "target": "791", "attributes": { "weight": 2 } }, { "key": "29050", "source": "823", "target": "495", "attributes": { "weight": 1 } }, { "key": "33815", "source": "823", "target": "788", "attributes": { "weight": 1 } }, { "key": "31695", "source": "823", "target": "693", "attributes": { "weight": 1 } }, { "key": "17533", "source": "823", "target": "487", "attributes": { "weight": 1 } }, { "key": "31698", "source": "823", "target": "8", "attributes": { "weight": 2 } }, { "key": "2814", "source": "824", "target": "8", "attributes": { "weight": 1 } }, { "key": "2813", "source": "824", "target": "3", "attributes": { "weight": 1 } }, { "key": "2823", "source": "825", "target": "3", "attributes": { "weight": 1 } }, { "key": "2824", "source": "825", "target": "14", "attributes": { "weight": 1 } }, { "key": "2825", "source": "826", "target": "14", "attributes": { "weight": 1 } }, { "key": "35171", "source": "826", "target": "349", "attributes": { "weight": 1 } }, { "key": "35170", "source": "826", "target": "3085", "attributes": { "weight": 1 } }, { "key": "35181", "source": "827", "target": "594", "attributes": { "weight": 1 } }, { "key": "2826", "source": "827", "target": "3", "attributes": { "weight": 1 } }, { "key": "23859", "source": "828", "target": "1774", "attributes": { "weight": 1 } }, { "key": "21608", "source": "828", "target": "358", "attributes": { "weight": 1 } }, { "key": "33835", "source": "828", "target": "788", "attributes": { "weight": 1 } }, { "key": "30960", "source": "828", "target": "3", "attributes": { "weight": 1 } }, { "key": "2828", "source": "828", "target": "682", "attributes": { "weight": 1 } }, { "key": "2827", "source": "828", "target": "693", "attributes": { "weight": 1 } }, { "key": "2829", "source": "828", "target": "8", "attributes": { "weight": 1 } }, { "key": "23860", "source": "828", "target": "2456", "attributes": { "weight": 1 } }, { "key": "2830", "source": "828", "target": "823", "attributes": { "weight": 1 } }, { "key": "31820", "source": "828", "target": "595", "attributes": { "weight": 1 } }, { "key": "37377", "source": "829", "target": "693", "attributes": { "weight": 1 } }, { "key": "35183", "source": "829", "target": "352", "attributes": { "weight": 1 } }, { "key": "2832", "source": "829", "target": "682", "attributes": { "weight": 1 } }, { "key": "37378", "source": "829", "target": "189", "attributes": { "weight": 1 } }, { "key": "2833", "source": "829", "target": "8", "attributes": { "weight": 2 } }, { "key": "2831", "source": "829", "target": "3", "attributes": { "weight": 2 } }, { "key": "27670", "source": "830", "target": "178", "attributes": { "weight": 4 } }, { "key": "31088", "source": "830", "target": "262", "attributes": { "weight": 1 } }, { "key": "15156", "source": "830", "target": "1621", "attributes": { "weight": 2 } }, { "key": "15157", "source": "830", "target": "2018", "attributes": { "weight": 1 } }, { "key": "12977", "source": "830", "target": "322", "attributes": { "weight": 1 } }, { "key": "14185", "source": "830", "target": "168", "attributes": { "weight": 4 } }, { "key": "9574", "source": "830", "target": "171", "attributes": { "weight": 1 } }, { "key": "8663", "source": "830", "target": "164", "attributes": { "weight": 11 } }, { "key": "18360", "source": "830", "target": "1542", "attributes": { "weight": 1 } }, { "key": "30511", "source": "830", "target": "1549", "attributes": { "weight": 1 } }, { "key": "27918", "source": "830", "target": "287", "attributes": { "weight": 1 } }, { "key": "18361", "source": "830", "target": "578", "attributes": { "weight": 1 } }, { "key": "2837", "source": "830", "target": "278", "attributes": { "weight": 3 } }, { "key": "14479", "source": "830", "target": "259", "attributes": { "weight": 1 } }, { "key": "29567", "source": "830", "target": "1966", "attributes": { "weight": 1 } }, { "key": "25559", "source": "830", "target": "2610", "attributes": { "weight": 1 } }, { "key": "22593", "source": "830", "target": "180", "attributes": { "weight": 1 } }, { "key": "25556", "source": "830", "target": "2609", "attributes": { "weight": 1 } }, { "key": "18359", "source": "830", "target": "169", "attributes": { "weight": 2 } }, { "key": "25557", "source": "830", "target": "2009", "attributes": { "weight": 1 } }, { "key": "18358", "source": "830", "target": "167", "attributes": { "weight": 1 } }, { "key": "3169", "source": "830", "target": "305", "attributes": { "weight": 3 } }, { "key": "25558", "source": "830", "target": "2011", "attributes": { "weight": 1 } }, { "key": "36201", "source": "830", "target": "176", "attributes": { "weight": 1 } }, { "key": "12976", "source": "830", "target": "304", "attributes": { "weight": 1 } }, { "key": "18357", "source": "830", "target": "1622", "attributes": { "weight": 1 } }, { "key": "2844", "source": "831", "target": "77", "attributes": { "weight": 1 } }, { "key": "2853", "source": "834", "target": "750", "attributes": { "weight": 1 } }, { "key": "2860", "source": "835", "target": "772", "attributes": { "weight": 1 } }, { "key": "27898", "source": "836", "target": "300", "attributes": { "weight": 1 } }, { "key": "22180", "source": "836", "target": "1897", "attributes": { "weight": 1 } }, { "key": "25959", "source": "836", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14330", "source": "836", "target": "319", "attributes": { "weight": 1 } }, { "key": "23265", "source": "836", "target": "305", "attributes": { "weight": 1 } }, { "key": "12884", "source": "836", "target": "304", "attributes": { "weight": 3 } }, { "key": "14329", "source": "836", "target": "308", "attributes": { "weight": 3 } }, { "key": "14328", "source": "836", "target": "307", "attributes": { "weight": 1 } }, { "key": "14331", "source": "836", "target": "322", "attributes": { "weight": 1 } }, { "key": "14327", "source": "836", "target": "264", "attributes": { "weight": 1 } }, { "key": "2864", "source": "836", "target": "326", "attributes": { "weight": 2 } }, { "key": "12883", "source": "836", "target": "259", "attributes": { "weight": 2 } }, { "key": "18999", "source": "836", "target": "839", "attributes": { "weight": 2 } }, { "key": "14325", "source": "836", "target": "260", "attributes": { "weight": 2 } }, { "key": "12886", "source": "836", "target": "318", "attributes": { "weight": 2 } }, { "key": "14326", "source": "836", "target": "263", "attributes": { "weight": 1 } }, { "key": "12885", "source": "836", "target": "316", "attributes": { "weight": 3 } }, { "key": "27936", "source": "837", "target": "294", "attributes": { "weight": 1 } }, { "key": "2870", "source": "837", "target": "287", "attributes": { "weight": 3 } }, { "key": "27934", "source": "837", "target": "264", "attributes": { "weight": 1 } }, { "key": "14521", "source": "837", "target": "259", "attributes": { "weight": 1 } }, { "key": "27935", "source": "837", "target": "281", "attributes": { "weight": 1 } }, { "key": "2873", "source": "838", "target": "281", "attributes": { "weight": 2 } }, { "key": "2874", "source": "838", "target": "287", "attributes": { "weight": 3 } }, { "key": "27942", "source": "838", "target": "264", "attributes": { "weight": 1 } }, { "key": "14535", "source": "838", "target": "289", "attributes": { "weight": 1 } }, { "key": "3246", "source": "839", "target": "289", "attributes": { "weight": 6 } }, { "key": "3255", "source": "839", "target": "327", "attributes": { "weight": 6 } }, { "key": "3254", "source": "839", "target": "326", "attributes": { "weight": 5 } }, { "key": "14279", "source": "839", "target": "168", "attributes": { "weight": 5 } }, { "key": "28140", "source": "839", "target": "1928", "attributes": { "weight": 1 } }, { "key": "3253", "source": "839", "target": "319", "attributes": { "weight": 6 } }, { "key": "28136", "source": "839", "target": "288", "attributes": { "weight": 1 } }, { "key": "3257", "source": "839", "target": "908", "attributes": { "weight": 1 } }, { "key": "3238", "source": "839", "target": "259", "attributes": { "weight": 7 } }, { "key": "13519", "source": "839", "target": "1854", "attributes": { "weight": 4 } }, { "key": "26030", "source": "839", "target": "2622", "attributes": { "weight": 2 } }, { "key": "3245", "source": "839", "target": "287", "attributes": { "weight": 5 } }, { "key": "28133", "source": "839", "target": "274", "attributes": { "weight": 1 } }, { "key": "13513", "source": "839", "target": "707", "attributes": { "weight": 5 } }, { "key": "19035", "source": "839", "target": "1913", "attributes": { "weight": 2 } }, { "key": "3239", "source": "839", "target": "901", "attributes": { "weight": 1 } }, { "key": "13515", "source": "839", "target": "578", "attributes": { "weight": 4 } }, { "key": "3242", "source": "839", "target": "264", "attributes": { "weight": 7 } }, { "key": "23290", "source": "839", "target": "1898", "attributes": { "weight": 1 } }, { "key": "28141", "source": "839", "target": "329", "attributes": { "weight": 1 } }, { "key": "19039", "source": "839", "target": "1984", "attributes": { "weight": 2 } }, { "key": "23289", "source": "839", "target": "1973", "attributes": { "weight": 1 } }, { "key": "19038", "source": "839", "target": "290", "attributes": { "weight": 2 } }, { "key": "19045", "source": "839", "target": "331", "attributes": { "weight": 2 } }, { "key": "19041", "source": "839", "target": "307", "attributes": { "weight": 2 } }, { "key": "2938", "source": "839", "target": "842", "attributes": { "weight": 1 } }, { "key": "19044", "source": "839", "target": "321", "attributes": { "weight": 3 } }, { "key": "14825", "source": "839", "target": "322", "attributes": { "weight": 4 } }, { "key": "3243", "source": "839", "target": "282", "attributes": { "weight": 1 } }, { "key": "28138", "source": "839", "target": "906", "attributes": { "weight": 1 } }, { "key": "14824", "source": "839", "target": "1987", "attributes": { "weight": 1 } }, { "key": "23292", "source": "839", "target": "1977", "attributes": { "weight": 1 } }, { "key": "19042", "source": "839", "target": "1872", "attributes": { "weight": 2 } }, { "key": "12608", "source": "839", "target": "315", "attributes": { "weight": 6 } }, { "key": "19037", "source": "839", "target": "286", "attributes": { "weight": 2 } }, { "key": "3241", "source": "839", "target": "263", "attributes": { "weight": 5 } }, { "key": "3251", "source": "839", "target": "312", "attributes": { "weight": 7 } }, { "key": "3248", "source": "839", "target": "308", "attributes": { "weight": 5 } }, { "key": "28139", "source": "839", "target": "1918", "attributes": { "weight": 1 } }, { "key": "28134", "source": "839", "target": "902", "attributes": { "weight": 1 } }, { "key": "14821", "source": "839", "target": "260", "attributes": { "weight": 3 } }, { "key": "3256", "source": "839", "target": "336", "attributes": { "weight": 4 } }, { "key": "13517", "source": "839", "target": "314", "attributes": { "weight": 3 } }, { "key": "3250", "source": "839", "target": "311", "attributes": { "weight": 3 } }, { "key": "28132", "source": "839", "target": "1971", "attributes": { "weight": 1 } }, { "key": "14822", "source": "839", "target": "272", "attributes": { "weight": 4 } }, { "key": "3240", "source": "839", "target": "262", "attributes": { "weight": 7 } }, { "key": "3252", "source": "839", "target": "313", "attributes": { "weight": 6 } }, { "key": "14823", "source": "839", "target": "301", "attributes": { "weight": 4 } }, { "key": "19036", "source": "839", "target": "1976", "attributes": { "weight": 2 } }, { "key": "13516", "source": "839", "target": "304", "attributes": { "weight": 7 } }, { "key": "19031", "source": "839", "target": "836", "attributes": { "weight": 2 } }, { "key": "23293", "source": "839", "target": "2442", "attributes": { "weight": 1 } }, { "key": "19043", "source": "839", "target": "318", "attributes": { "weight": 4 } }, { "key": "28142", "source": "839", "target": "1515", "attributes": { "weight": 1 } }, { "key": "19040", "source": "839", "target": "295", "attributes": { "weight": 2 } }, { "key": "19034", "source": "839", "target": "275", "attributes": { "weight": 2 } }, { "key": "13514", "source": "839", "target": "1912", "attributes": { "weight": 2 } }, { "key": "28137", "source": "839", "target": "292", "attributes": { "weight": 1 } }, { "key": "13518", "source": "839", "target": "316", "attributes": { "weight": 7 } }, { "key": "28135", "source": "839", "target": "1914", "attributes": { "weight": 1 } }, { "key": "3244", "source": "839", "target": "283", "attributes": { "weight": 3 } }, { "key": "19033", "source": "839", "target": "699", "attributes": { "weight": 4 } }, { "key": "3249", "source": "839", "target": "179", "attributes": { "weight": 4 } }, { "key": "19032", "source": "839", "target": "1903", "attributes": { "weight": 2 } }, { "key": "3247", "source": "839", "target": "291", "attributes": { "weight": 3 } }, { "key": "2940", "source": "840", "target": "287", "attributes": { "weight": 3 } }, { "key": "28158", "source": "841", "target": "281", "attributes": { "weight": 1 } }, { "key": "2944", "source": "841", "target": "264", "attributes": { "weight": 1 } }, { "key": "2945", "source": "841", "target": "287", "attributes": { "weight": 2 } }, { "key": "28159", "source": "841", "target": "292", "attributes": { "weight": 1 } }, { "key": "13785", "source": "842", "target": "312", "attributes": { "weight": 2 } }, { "key": "13784", "source": "842", "target": "304", "attributes": { "weight": 2 } }, { "key": "2963", "source": "842", "target": "839", "attributes": { "weight": 1 } }, { "key": "2962", "source": "842", "target": "287", "attributes": { "weight": 1 } }, { "key": "2977", "source": "843", "target": "333", "attributes": { "weight": 1 } }, { "key": "2976", "source": "843", "target": "844", "attributes": { "weight": 1 } }, { "key": "2978", "source": "844", "target": "333", "attributes": { "weight": 1 } }, { "key": "2980", "source": "845", "target": "333", "attributes": { "weight": 2 } }, { "key": "2979", "source": "845", "target": "848", "attributes": { "weight": 3 } }, { "key": "2984", "source": "847", "target": "333", "attributes": { "weight": 1 } }, { "key": "36798", "source": "848", "target": "373", "attributes": { "weight": 1 } }, { "key": "36799", "source": "848", "target": "377", "attributes": { "weight": 1 } }, { "key": "2985", "source": "848", "target": "845", "attributes": { "weight": 2 } }, { "key": "2986", "source": "848", "target": "333", "attributes": { "weight": 3 } }, { "key": "3454", "source": "849", "target": "974", "attributes": { "weight": 2 } }, { "key": "2997", "source": "849", "target": "333", "attributes": { "weight": 3 } }, { "key": "2999", "source": "850", "target": "333", "attributes": { "weight": 2 } }, { "key": "2998", "source": "850", "target": "374", "attributes": { "weight": 1 } }, { "key": "7633", "source": "850", "target": "377", "attributes": { "weight": 1 } }, { "key": "7683", "source": "851", "target": "377", "attributes": { "weight": 2 } }, { "key": "36827", "source": "851", "target": "374", "attributes": { "weight": 1 } }, { "key": "3000", "source": "851", "target": "333", "attributes": { "weight": 3 } }, { "key": "36826", "source": "851", "target": "373", "attributes": { "weight": 1 } }, { "key": "36825", "source": "851", "target": "337", "attributes": { "weight": 1 } }, { "key": "7684", "source": "851", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7682", "source": "851", "target": "1323", "attributes": { "weight": 2 } }, { "key": "10380", "source": "851", "target": "1322", "attributes": { "weight": 1 } }, { "key": "3001", "source": "852", "target": "333", "attributes": { "weight": 1 } }, { "key": "3003", "source": "853", "target": "333", "attributes": { "weight": 1 } }, { "key": "3007", "source": "855", "target": "333", "attributes": { "weight": 1 } }, { "key": "32293", "source": "856", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29330", "source": "856", "target": "857", "attributes": { "weight": 2 } }, { "key": "29334", "source": "856", "target": "2868", "attributes": { "weight": 1 } }, { "key": "29331", "source": "856", "target": "424", "attributes": { "weight": 2 } }, { "key": "29332", "source": "856", "target": "232", "attributes": { "weight": 2 } }, { "key": "3008", "source": "856", "target": "791", "attributes": { "weight": 3 } }, { "key": "25785", "source": "856", "target": "861", "attributes": { "weight": 2 } }, { "key": "29333", "source": "856", "target": "869", "attributes": { "weight": 1 } }, { "key": "25784", "source": "856", "target": "2114", "attributes": { "weight": 2 } }, { "key": "37091", "source": "856", "target": "359", "attributes": { "weight": 1 } }, { "key": "32682", "source": "857", "target": "135", "attributes": { "weight": 2 } }, { "key": "29349", "source": "857", "target": "232", "attributes": { "weight": 3 } }, { "key": "37050", "source": "857", "target": "455", "attributes": { "weight": 1 } }, { "key": "37044", "source": "857", "target": "59", "attributes": { "weight": 1 } }, { "key": "29348", "source": "857", "target": "2864", "attributes": { "weight": 1 } }, { "key": "29341", "source": "857", "target": "859", "attributes": { "weight": 2 } }, { "key": "32681", "source": "857", "target": "435", "attributes": { "weight": 1 } }, { "key": "37046", "source": "857", "target": "224", "attributes": { "weight": 1 } }, { "key": "37045", "source": "857", "target": "438", "attributes": { "weight": 1 } }, { "key": "29343", "source": "857", "target": "2211", "attributes": { "weight": 2 } }, { "key": "25786", "source": "857", "target": "861", "attributes": { "weight": 2 } }, { "key": "37053", "source": "857", "target": "1088", "attributes": { "weight": 1 } }, { "key": "37054", "source": "857", "target": "1131", "attributes": { "weight": 1 } }, { "key": "29342", "source": "857", "target": "183", "attributes": { "weight": 2 } }, { "key": "29346", "source": "857", "target": "866", "attributes": { "weight": 2 } }, { "key": "29344", "source": "857", "target": "863", "attributes": { "weight": 1 } }, { "key": "3009", "source": "857", "target": "791", "attributes": { "weight": 4 } }, { "key": "29351", "source": "857", "target": "490", "attributes": { "weight": 2 } }, { "key": "29347", "source": "857", "target": "2861", "attributes": { "weight": 1 } }, { "key": "29338", "source": "857", "target": "424", "attributes": { "weight": 2 } }, { "key": "37047", "source": "857", "target": "674", "attributes": { "weight": 1 } }, { "key": "37056", "source": "857", "target": "495", "attributes": { "weight": 1 } }, { "key": "37055", "source": "857", "target": "193", "attributes": { "weight": 1 } }, { "key": "29352", "source": "857", "target": "869", "attributes": { "weight": 2 } }, { "key": "37052", "source": "857", "target": "228", "attributes": { "weight": 1 } }, { "key": "26285", "source": "857", "target": "1258", "attributes": { "weight": 1 } }, { "key": "29353", "source": "857", "target": "2869", "attributes": { "weight": 1 } }, { "key": "29335", "source": "857", "target": "856", "attributes": { "weight": 2 } }, { "key": "23299", "source": "857", "target": "442", "attributes": { "weight": 2 } }, { "key": "37051", "source": "857", "target": "457", "attributes": { "weight": 1 } }, { "key": "26385", "source": "857", "target": "189", "attributes": { "weight": 2 } }, { "key": "37057", "source": "857", "target": "57", "attributes": { "weight": 1 } }, { "key": "37048", "source": "857", "target": "448", "attributes": { "weight": 1 } }, { "key": "29336", "source": "857", "target": "2856", "attributes": { "weight": 2 } }, { "key": "32294", "source": "857", "target": "188", "attributes": { "weight": 2 } }, { "key": "17122", "source": "857", "target": "449", "attributes": { "weight": 1 } }, { "key": "23507", "source": "857", "target": "220", "attributes": { "weight": 3 } }, { "key": "29340", "source": "857", "target": "425", "attributes": { "weight": 2 } }, { "key": "29339", "source": "857", "target": "223", "attributes": { "weight": 1 } }, { "key": "29345", "source": "857", "target": "864", "attributes": { "weight": 1 } }, { "key": "37049", "source": "857", "target": "454", "attributes": { "weight": 1 } }, { "key": "29350", "source": "857", "target": "489", "attributes": { "weight": 1 } }, { "key": "32683", "source": "857", "target": "472", "attributes": { "weight": 1 } }, { "key": "29337", "source": "857", "target": "432", "attributes": { "weight": 1 } }, { "key": "27002", "source": "858", "target": "472", "attributes": { "weight": 4 } }, { "key": "32698", "source": "858", "target": "135", "attributes": { "weight": 3 } }, { "key": "33225", "source": "858", "target": "51", "attributes": { "weight": 1 } }, { "key": "27000", "source": "858", "target": "1219", "attributes": { "weight": 1 } }, { "key": "29378", "source": "858", "target": "232", "attributes": { "weight": 2 } }, { "key": "27003", "source": "858", "target": "1282", "attributes": { "weight": 1 } }, { "key": "3013", "source": "858", "target": "791", "attributes": { "weight": 3 } }, { "key": "33227", "source": "858", "target": "1836", "attributes": { "weight": 1 } }, { "key": "33226", "source": "858", "target": "450", "attributes": { "weight": 1 } }, { "key": "23572", "source": "858", "target": "2248", "attributes": { "weight": 1 } }, { "key": "29377", "source": "858", "target": "2211", "attributes": { "weight": 2 } }, { "key": "32699", "source": "858", "target": "1125", "attributes": { "weight": 1 } }, { "key": "37443", "source": "858", "target": "2258", "attributes": { "weight": 1 } }, { "key": "26999", "source": "858", "target": "1832", "attributes": { "weight": 1 } }, { "key": "37442", "source": "858", "target": "435", "attributes": { "weight": 1 } }, { "key": "27001", "source": "858", "target": "1247", "attributes": { "weight": 2 } }, { "key": "33228", "source": "858", "target": "489", "attributes": { "weight": 1 } }, { "key": "23571", "source": "858", "target": "220", "attributes": { "weight": 1 } }, { "key": "29376", "source": "858", "target": "223", "attributes": { "weight": 1 } }, { "key": "23573", "source": "858", "target": "1312", "attributes": { "weight": 1 } }, { "key": "23570", "source": "858", "target": "857", "attributes": { "weight": 1 } }, { "key": "3015", "source": "859", "target": "791", "attributes": { "weight": 2 } }, { "key": "29390", "source": "859", "target": "232", "attributes": { "weight": 2 } }, { "key": "29389", "source": "859", "target": "857", "attributes": { "weight": 2 } }, { "key": "32336", "source": "859", "target": "2211", "attributes": { "weight": 1 } }, { "key": "15229", "source": "860", "target": "672", "attributes": { "weight": 1 } }, { "key": "32721", "source": "860", "target": "2258", "attributes": { "weight": 2 } }, { "key": "27023", "source": "860", "target": "1832", "attributes": { "weight": 2 } }, { "key": "32201", "source": "860", "target": "435", "attributes": { "weight": 4 } }, { "key": "32720", "source": "860", "target": "446", "attributes": { "weight": 1 } }, { "key": "27026", "source": "860", "target": "472", "attributes": { "weight": 6 } }, { "key": "27024", "source": "860", "target": "1219", "attributes": { "weight": 3 } }, { "key": "33333", "source": "860", "target": "450", "attributes": { "weight": 1 } }, { "key": "32202", "source": "860", "target": "51", "attributes": { "weight": 3 } }, { "key": "27027", "source": "860", "target": "1282", "attributes": { "weight": 3 } }, { "key": "15225", "source": "860", "target": "455", "attributes": { "weight": 2 } }, { "key": "23583", "source": "860", "target": "1312", "attributes": { "weight": 1 } }, { "key": "15224", "source": "860", "target": "454", "attributes": { "weight": 2 } }, { "key": "32722", "source": "860", "target": "489", "attributes": { "weight": 2 } }, { "key": "3016", "source": "860", "target": "791", "attributes": { "weight": 2 } }, { "key": "15227", "source": "860", "target": "189", "attributes": { "weight": 2 } }, { "key": "29391", "source": "860", "target": "232", "attributes": { "weight": 1 } }, { "key": "15226", "source": "860", "target": "188", "attributes": { "weight": 1 } }, { "key": "29023", "source": "860", "target": "495", "attributes": { "weight": 1 } }, { "key": "15228", "source": "860", "target": "490", "attributes": { "weight": 2 } }, { "key": "34931", "source": "860", "target": "3", "attributes": { "weight": 1 } }, { "key": "27022", "source": "860", "target": "2105", "attributes": { "weight": 1 } }, { "key": "32203", "source": "860", "target": "135", "attributes": { "weight": 5 } }, { "key": "34932", "source": "860", "target": "352", "attributes": { "weight": 1 } }, { "key": "32200", "source": "860", "target": "2645", "attributes": { "weight": 1 } }, { "key": "15223", "source": "860", "target": "183", "attributes": { "weight": 2 } }, { "key": "23582", "source": "860", "target": "220", "attributes": { "weight": 1 } }, { "key": "27025", "source": "860", "target": "1247", "attributes": { "weight": 3 } }, { "key": "25791", "source": "861", "target": "857", "attributes": { "weight": 2 } }, { "key": "29401", "source": "861", "target": "2211", "attributes": { "weight": 2 } }, { "key": "29400", "source": "861", "target": "424", "attributes": { "weight": 1 } }, { "key": "29404", "source": "861", "target": "232", "attributes": { "weight": 2 } }, { "key": "3017", "source": "861", "target": "791", "attributes": { "weight": 3 } }, { "key": "29403", "source": "861", "target": "2861", "attributes": { "weight": 1 } }, { "key": "29402", "source": "861", "target": "866", "attributes": { "weight": 1 } }, { "key": "25790", "source": "861", "target": "856", "attributes": { "weight": 2 } }, { "key": "3018", "source": "862", "target": "791", "attributes": { "weight": 2 } }, { "key": "32348", "source": "862", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29407", "source": "862", "target": "232", "attributes": { "weight": 2 } }, { "key": "29417", "source": "863", "target": "232", "attributes": { "weight": 2 } }, { "key": "29416", "source": "863", "target": "857", "attributes": { "weight": 1 } }, { "key": "32377", "source": "863", "target": "2211", "attributes": { "weight": 1 } }, { "key": "3019", "source": "863", "target": "791", "attributes": { "weight": 2 } }, { "key": "3020", "source": "864", "target": "791", "attributes": { "weight": 2 } }, { "key": "29421", "source": "864", "target": "857", "attributes": { "weight": 1 } }, { "key": "32382", "source": "864", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29422", "source": "864", "target": "232", "attributes": { "weight": 1 } }, { "key": "31311", "source": "865", "target": "70", "attributes": { "weight": 1 } }, { "key": "10820", "source": "865", "target": "457", "attributes": { "weight": 1 } }, { "key": "29424", "source": "865", "target": "232", "attributes": { "weight": 1 } }, { "key": "3021", "source": "865", "target": "791", "attributes": { "weight": 1 } }, { "key": "32386", "source": "865", "target": "2211", "attributes": { "weight": 1 } }, { "key": "31310", "source": "865", "target": "674", "attributes": { "weight": 1 } }, { "key": "29427", "source": "866", "target": "232", "attributes": { "weight": 2 } }, { "key": "32387", "source": "866", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29426", "source": "866", "target": "861", "attributes": { "weight": 1 } }, { "key": "3022", "source": "866", "target": "791", "attributes": { "weight": 3 } }, { "key": "29425", "source": "866", "target": "857", "attributes": { "weight": 2 } }, { "key": "29438", "source": "867", "target": "232", "attributes": { "weight": 1 } }, { "key": "3040", "source": "867", "target": "791", "attributes": { "weight": 2 } }, { "key": "32567", "source": "867", "target": "2211", "attributes": { "weight": 1 } }, { "key": "35009", "source": "868", "target": "352", "attributes": { "weight": 1 } }, { "key": "29903", "source": "868", "target": "53", "attributes": { "weight": 1 } }, { "key": "22305", "source": "868", "target": "794", "attributes": { "weight": 1 } }, { "key": "29044", "source": "868", "target": "495", "attributes": { "weight": 2 } }, { "key": "3041", "source": "868", "target": "791", "attributes": { "weight": 3 } }, { "key": "29901", "source": "868", "target": "3", "attributes": { "weight": 2 } }, { "key": "21595", "source": "868", "target": "89", "attributes": { "weight": 1 } }, { "key": "31682", "source": "868", "target": "595", "attributes": { "weight": 2 } }, { "key": "26921", "source": "868", "target": "497", "attributes": { "weight": 1 } }, { "key": "26723", "source": "868", "target": "189", "attributes": { "weight": 1 } }, { "key": "29904", "source": "868", "target": "340", "attributes": { "weight": 1 } }, { "key": "29902", "source": "868", "target": "1024", "attributes": { "weight": 2 } }, { "key": "32618", "source": "869", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29523", "source": "869", "target": "857", "attributes": { "weight": 2 } }, { "key": "29524", "source": "869", "target": "0", "attributes": { "weight": 1 } }, { "key": "29526", "source": "869", "target": "232", "attributes": { "weight": 2 } }, { "key": "3043", "source": "869", "target": "791", "attributes": { "weight": 2 } }, { "key": "29522", "source": "869", "target": "856", "attributes": { "weight": 1 } }, { "key": "29525", "source": "869", "target": "424", "attributes": { "weight": 1 } }, { "key": "3048", "source": "870", "target": "875", "attributes": { "weight": 1 } }, { "key": "3049", "source": "870", "target": "879", "attributes": { "weight": 1 } }, { "key": "10060", "source": "870", "target": "602", "attributes": { "weight": 2 } }, { "key": "10062", "source": "871", "target": "602", "attributes": { "weight": 2 } }, { "key": "10063", "source": "871", "target": "872", "attributes": { "weight": 1 } }, { "key": "10065", "source": "871", "target": "876", "attributes": { "weight": 1 } }, { "key": "3050", "source": "871", "target": "873", "attributes": { "weight": 1 } }, { "key": "3051", "source": "871", "target": "874", "attributes": { "weight": 1 } }, { "key": "10064", "source": "871", "target": "369", "attributes": { "weight": 1 } }, { "key": "26205", "source": "872", "target": "601", "attributes": { "weight": 1 } }, { "key": "10072", "source": "872", "target": "1665", "attributes": { "weight": 1 } }, { "key": "10073", "source": "872", "target": "1672", "attributes": { "weight": 1 } }, { "key": "10070", "source": "872", "target": "871", "attributes": { "weight": 1 } }, { "key": "14024", "source": "872", "target": "1031", "attributes": { "weight": 1 } }, { "key": "3052", "source": "872", "target": "876", "attributes": { "weight": 2 } }, { "key": "26204", "source": "872", "target": "30", "attributes": { "weight": 1 } }, { "key": "3053", "source": "872", "target": "882", "attributes": { "weight": 1 } }, { "key": "10069", "source": "872", "target": "602", "attributes": { "weight": 2 } }, { "key": "21671", "source": "872", "target": "109", "attributes": { "weight": 1 } }, { "key": "10071", "source": "872", "target": "369", "attributes": { "weight": 1 } }, { "key": "3054", "source": "873", "target": "877", "attributes": { "weight": 2 } }, { "key": "3055", "source": "873", "target": "879", "attributes": { "weight": 1 } }, { "key": "10075", "source": "873", "target": "602", "attributes": { "weight": 2 } }, { "key": "3056", "source": "873", "target": "881", "attributes": { "weight": 1 } }, { "key": "3057", "source": "874", "target": "871", "attributes": { "weight": 1 } }, { "key": "3058", "source": "874", "target": "873", "attributes": { "weight": 1 } }, { "key": "10079", "source": "874", "target": "602", "attributes": { "weight": 1 } }, { "key": "3060", "source": "875", "target": "870", "attributes": { "weight": 1 } }, { "key": "3059", "source": "875", "target": "602", "attributes": { "weight": 2 } }, { "key": "10121", "source": "876", "target": "369", "attributes": { "weight": 1 } }, { "key": "3061", "source": "876", "target": "872", "attributes": { "weight": 2 } }, { "key": "3062", "source": "876", "target": "877", "attributes": { "weight": 2 } }, { "key": "10122", "source": "876", "target": "1672", "attributes": { "weight": 1 } }, { "key": "10120", "source": "876", "target": "871", "attributes": { "weight": 1 } }, { "key": "26239", "source": "876", "target": "601", "attributes": { "weight": 1 } }, { "key": "10119", "source": "876", "target": "602", "attributes": { "weight": 2 } }, { "key": "3064", "source": "877", "target": "876", "attributes": { "weight": 2 } }, { "key": "10123", "source": "877", "target": "602", "attributes": { "weight": 2 } }, { "key": "3063", "source": "877", "target": "873", "attributes": { "weight": 2 } }, { "key": "3066", "source": "878", "target": "602", "attributes": { "weight": 2 } }, { "key": "3067", "source": "879", "target": "870", "attributes": { "weight": 1 } }, { "key": "10126", "source": "879", "target": "602", "attributes": { "weight": 1 } }, { "key": "10127", "source": "879", "target": "369", "attributes": { "weight": 1 } }, { "key": "3068", "source": "879", "target": "871", "attributes": { "weight": 1 } }, { "key": "3069", "source": "879", "target": "873", "attributes": { "weight": 1 } }, { "key": "3070", "source": "879", "target": "874", "attributes": { "weight": 1 } }, { "key": "10129", "source": "880", "target": "602", "attributes": { "weight": 1 } }, { "key": "3071", "source": "880", "target": "881", "attributes": { "weight": 1 } }, { "key": "26251", "source": "881", "target": "2636", "attributes": { "weight": 1 } }, { "key": "3072", "source": "881", "target": "873", "attributes": { "weight": 1 } }, { "key": "3074", "source": "881", "target": "1675", "attributes": { "weight": 1 } }, { "key": "10130", "source": "881", "target": "602", "attributes": { "weight": 2 } }, { "key": "3073", "source": "881", "target": "880", "attributes": { "weight": 1 } }, { "key": "3077", "source": "882", "target": "606", "attributes": { "weight": 1 } }, { "key": "3076", "source": "882", "target": "872", "attributes": { "weight": 1 } }, { "key": "3075", "source": "882", "target": "602", "attributes": { "weight": 2 } }, { "key": "21783", "source": "882", "target": "109", "attributes": { "weight": 2 } }, { "key": "10132", "source": "882", "target": "369", "attributes": { "weight": 1 } }, { "key": "3078", "source": "883", "target": "602", "attributes": { "weight": 2 } }, { "key": "3079", "source": "884", "target": "378", "attributes": { "weight": 1 } }, { "key": "3080", "source": "885", "target": "378", "attributes": { "weight": 1 } }, { "key": "3081", "source": "886", "target": "378", "attributes": { "weight": 1 } }, { "key": "3082", "source": "887", "target": "378", "attributes": { "weight": 1 } }, { "key": "26869", "source": "888", "target": "894", "attributes": { "weight": 1 } }, { "key": "3087", "source": "888", "target": "890", "attributes": { "weight": 2 } }, { "key": "30681", "source": "889", "target": "2139", "attributes": { "weight": 1 } }, { "key": "24745", "source": "889", "target": "1056", "attributes": { "weight": 3 } }, { "key": "3088", "source": "889", "target": "890", "attributes": { "weight": 3 } }, { "key": "30334", "source": "889", "target": "1046", "attributes": { "weight": 2 } }, { "key": "30684", "source": "889", "target": "1765", "attributes": { "weight": 1 } }, { "key": "24602", "source": "889", "target": "2236", "attributes": { "weight": 1 } }, { "key": "27568", "source": "889", "target": "164", "attributes": { "weight": 2 } }, { "key": "30686", "source": "889", "target": "136", "attributes": { "weight": 1 } }, { "key": "30677", "source": "889", "target": "1045", "attributes": { "weight": 1 } }, { "key": "27799", "source": "889", "target": "339", "attributes": { "weight": 3 } }, { "key": "30670", "source": "889", "target": "2999", "attributes": { "weight": 1 } }, { "key": "6585", "source": "889", "target": "189", "attributes": { "weight": 2 } }, { "key": "6586", "source": "889", "target": "193", "attributes": { "weight": 2 } }, { "key": "30671", "source": "889", "target": "432", "attributes": { "weight": 1 } }, { "key": "30690", "source": "889", "target": "3000", "attributes": { "weight": 2 } }, { "key": "11828", "source": "889", "target": "468", "attributes": { "weight": 2 } }, { "key": "24603", "source": "889", "target": "2118", "attributes": { "weight": 2 } }, { "key": "30672", "source": "889", "target": "2112", "attributes": { "weight": 1 } }, { "key": "30694", "source": "889", "target": "493", "attributes": { "weight": 1 } }, { "key": "30685", "source": "889", "target": "53", "attributes": { "weight": 1 } }, { "key": "24601", "source": "889", "target": "1520", "attributes": { "weight": 3 } }, { "key": "30691", "source": "889", "target": "1026", "attributes": { "weight": 2 } }, { "key": "4281", "source": "889", "target": "123", "attributes": { "weight": 3 } }, { "key": "21503", "source": "889", "target": "89", "attributes": { "weight": 1 } }, { "key": "30682", "source": "889", "target": "359", "attributes": { "weight": 4 } }, { "key": "30678", "source": "889", "target": "2114", "attributes": { "weight": 3 } }, { "key": "23935", "source": "889", "target": "471", "attributes": { "weight": 2 } }, { "key": "10952", "source": "889", "target": "452", "attributes": { "weight": 3 } }, { "key": "8269", "source": "889", "target": "442", "attributes": { "weight": 2 } }, { "key": "9214", "source": "889", "target": "430", "attributes": { "weight": 2 } }, { "key": "30687", "source": "889", "target": "362", "attributes": { "weight": 2 } }, { "key": "18013", "source": "889", "target": "1036", "attributes": { "weight": 3 } }, { "key": "6587", "source": "889", "target": "495", "attributes": { "weight": 3 } }, { "key": "4282", "source": "889", "target": "154", "attributes": { "weight": 3 } }, { "key": "30676", "source": "889", "target": "3", "attributes": { "weight": 2 } }, { "key": "22629", "source": "889", "target": "1037", "attributes": { "weight": 2 } }, { "key": "30683", "source": "889", "target": "1024", "attributes": { "weight": 1 } }, { "key": "30679", "source": "889", "target": "52", "attributes": { "weight": 1 } }, { "key": "4280", "source": "889", "target": "370", "attributes": { "weight": 3 } }, { "key": "30688", "source": "889", "target": "2115", "attributes": { "weight": 3 } }, { "key": "17074", "source": "889", "target": "891", "attributes": { "weight": 1 } }, { "key": "6584", "source": "889", "target": "454", "attributes": { "weight": 3 } }, { "key": "3089", "source": "889", "target": "894", "attributes": { "weight": 3 } }, { "key": "30695", "source": "889", "target": "57", "attributes": { "weight": 1 } }, { "key": "30680", "source": "889", "target": "791", "attributes": { "weight": 2 } }, { "key": "22261", "source": "889", "target": "794", "attributes": { "weight": 1 } }, { "key": "30692", "source": "889", "target": "1060", "attributes": { "weight": 3 } }, { "key": "30673", "source": "889", "target": "645", "attributes": { "weight": 1 } }, { "key": "17330", "source": "889", "target": "358", "attributes": { "weight": 4 } }, { "key": "30674", "source": "889", "target": "2113", "attributes": { "weight": 1 } }, { "key": "30669", "source": "889", "target": "220", "attributes": { "weight": 1 } }, { "key": "23934", "source": "889", "target": "130", "attributes": { "weight": 2 } }, { "key": "24659", "source": "889", "target": "340", "attributes": { "weight": 2 } }, { "key": "30675", "source": "889", "target": "419", "attributes": { "weight": 1 } }, { "key": "30693", "source": "889", "target": "2670", "attributes": { "weight": 1 } }, { "key": "24600", "source": "889", "target": "2232", "attributes": { "weight": 2 } }, { "key": "25906", "source": "890", "target": "1367", "attributes": { "weight": 1 } }, { "key": "3094", "source": "890", "target": "791", "attributes": { "weight": 3 } }, { "key": "3097", "source": "890", "target": "894", "attributes": { "weight": 2 } }, { "key": "3090", "source": "890", "target": "888", "attributes": { "weight": 2 } }, { "key": "26870", "source": "890", "target": "891", "attributes": { "weight": 1 } }, { "key": "26871", "source": "890", "target": "893", "attributes": { "weight": 2 } }, { "key": "3091", "source": "890", "target": "889", "attributes": { "weight": 3 } }, { "key": "3092", "source": "890", "target": "339", "attributes": { "weight": 3 } }, { "key": "3098", "source": "890", "target": "493", "attributes": { "weight": 3 } }, { "key": "3093", "source": "890", "target": "225", "attributes": { "weight": 2 } }, { "key": "3095", "source": "890", "target": "359", "attributes": { "weight": 1 } }, { "key": "28639", "source": "891", "target": "2123", "attributes": { "weight": 1 } }, { "key": "3105", "source": "891", "target": "894", "attributes": { "weight": 2 } }, { "key": "17076", "source": "891", "target": "889", "attributes": { "weight": 1 } }, { "key": "3953", "source": "891", "target": "432", "attributes": { "weight": 2 } }, { "key": "21574", "source": "891", "target": "358", "attributes": { "weight": 1 } }, { "key": "27853", "source": "891", "target": "426", "attributes": { "weight": 1 } }, { "key": "17077", "source": "891", "target": "1045", "attributes": { "weight": 2 } }, { "key": "27854", "source": "891", "target": "791", "attributes": { "weight": 2 } }, { "key": "26874", "source": "891", "target": "890", "attributes": { "weight": 1 } }, { "key": "22285", "source": "891", "target": "794", "attributes": { "weight": 1 } }, { "key": "17080", "source": "891", "target": "1060", "attributes": { "weight": 4 } }, { "key": "17079", "source": "891", "target": "1056", "attributes": { "weight": 6 } }, { "key": "27855", "source": "891", "target": "2115", "attributes": { "weight": 2 } }, { "key": "30447", "source": "891", "target": "1046", "attributes": { "weight": 1 } }, { "key": "26876", "source": "891", "target": "2662", "attributes": { "weight": 1 } }, { "key": "27400", "source": "891", "target": "339", "attributes": { "weight": 2 } }, { "key": "17078", "source": "891", "target": "359", "attributes": { "weight": 7 } }, { "key": "27852", "source": "891", "target": "1520", "attributes": { "weight": 1 } }, { "key": "27401", "source": "891", "target": "2670", "attributes": { "weight": 2 } }, { "key": "28640", "source": "891", "target": "2126", "attributes": { "weight": 1 } }, { "key": "34876", "source": "893", "target": "493", "attributes": { "weight": 1 } }, { "key": "26885", "source": "893", "target": "890", "attributes": { "weight": 2 } }, { "key": "21430", "source": "893", "target": "442", "attributes": { "weight": 1 } }, { "key": "3116", "source": "893", "target": "894", "attributes": { "weight": 4 } }, { "key": "26895", "source": "894", "target": "2661", "attributes": { "weight": 1 } }, { "key": "3118", "source": "894", "target": "890", "attributes": { "weight": 2 } }, { "key": "26889", "source": "894", "target": "2657", "attributes": { "weight": 1 } }, { "key": "3120", "source": "894", "target": "225", "attributes": { "weight": 3 } }, { "key": "3117", "source": "894", "target": "889", "attributes": { "weight": 3 } }, { "key": "26888", "source": "894", "target": "888", "attributes": { "weight": 1 } }, { "key": "3122", "source": "894", "target": "891", "attributes": { "weight": 2 } }, { "key": "25954", "source": "894", "target": "1367", "attributes": { "weight": 2 } }, { "key": "26893", "source": "894", "target": "472", "attributes": { "weight": 1 } }, { "key": "3126", "source": "894", "target": "2662", "attributes": { "weight": 2 } }, { "key": "26890", "source": "894", "target": "2658", "attributes": { "weight": 1 } }, { "key": "3125", "source": "894", "target": "893", "attributes": { "weight": 4 } }, { "key": "3119", "source": "894", "target": "339", "attributes": { "weight": 3 } }, { "key": "21431", "source": "894", "target": "1355", "attributes": { "weight": 1 } }, { "key": "3124", "source": "894", "target": "359", "attributes": { "weight": 1 } }, { "key": "3121", "source": "894", "target": "452", "attributes": { "weight": 2 } }, { "key": "17521", "source": "894", "target": "358", "attributes": { "weight": 1 } }, { "key": "9363", "source": "894", "target": "430", "attributes": { "weight": 2 } }, { "key": "3123", "source": "894", "target": "791", "attributes": { "weight": 3 } }, { "key": "26892", "source": "894", "target": "471", "attributes": { "weight": 1 } }, { "key": "26891", "source": "894", "target": "2659", "attributes": { "weight": 1 } }, { "key": "12044", "source": "894", "target": "468", "attributes": { "weight": 2 } }, { "key": "21432", "source": "894", "target": "1845", "attributes": { "weight": 2 } }, { "key": "3127", "source": "894", "target": "493", "attributes": { "weight": 5 } }, { "key": "3133", "source": "895", "target": "897", "attributes": { "weight": 1 } }, { "key": "3131", "source": "895", "target": "502", "attributes": { "weight": 1 } }, { "key": "3132", "source": "895", "target": "506", "attributes": { "weight": 1 } }, { "key": "3135", "source": "896", "target": "900", "attributes": { "weight": 1 } }, { "key": "3146", "source": "897", "target": "506", "attributes": { "weight": 1 } }, { "key": "3151", "source": "899", "target": "506", "attributes": { "weight": 1 } }, { "key": "3156", "source": "900", "target": "896", "attributes": { "weight": 1 } }, { "key": "3157", "source": "900", "target": "507", "attributes": { "weight": 1 } }, { "key": "14428", "source": "901", "target": "259", "attributes": { "weight": 1 } }, { "key": "22889", "source": "901", "target": "326", "attributes": { "weight": 1 } }, { "key": "14429", "source": "901", "target": "304", "attributes": { "weight": 1 } }, { "key": "3162", "source": "901", "target": "287", "attributes": { "weight": 1 } }, { "key": "3163", "source": "901", "target": "839", "attributes": { "weight": 1 } }, { "key": "14430", "source": "901", "target": "312", "attributes": { "weight": 1 } }, { "key": "22888", "source": "901", "target": "166", "attributes": { "weight": 1 } }, { "key": "22890", "source": "901", "target": "327", "attributes": { "weight": 1 } }, { "key": "3182", "source": "902", "target": "312", "attributes": { "weight": 1 } }, { "key": "22218", "source": "902", "target": "262", "attributes": { "weight": 1 } }, { "key": "22219", "source": "902", "target": "268", "attributes": { "weight": 1 } }, { "key": "27964", "source": "902", "target": "168", "attributes": { "weight": 1 } }, { "key": "3181", "source": "902", "target": "277", "attributes": { "weight": 1 } }, { "key": "27963", "source": "902", "target": "259", "attributes": { "weight": 1 } }, { "key": "27965", "source": "902", "target": "304", "attributes": { "weight": 1 } }, { "key": "22949", "source": "902", "target": "321", "attributes": { "weight": 1 } }, { "key": "22950", "source": "902", "target": "326", "attributes": { "weight": 1 } }, { "key": "22947", "source": "902", "target": "272", "attributes": { "weight": 1 } }, { "key": "22948", "source": "902", "target": "316", "attributes": { "weight": 1 } }, { "key": "27966", "source": "902", "target": "839", "attributes": { "weight": 1 } }, { "key": "28386", "source": "903", "target": "707", "attributes": { "weight": 1 } }, { "key": "3187", "source": "903", "target": "305", "attributes": { "weight": 1 } }, { "key": "33126", "source": "903", "target": "278", "attributes": { "weight": 1 } }, { "key": "12082", "source": "904", "target": "579", "attributes": { "weight": 1 } }, { "key": "12081", "source": "904", "target": "698", "attributes": { "weight": 1 } }, { "key": "12080", "source": "904", "target": "1191", "attributes": { "weight": 1 } }, { "key": "12083", "source": "904", "target": "1824", "attributes": { "weight": 1 } }, { "key": "3188", "source": "904", "target": "305", "attributes": { "weight": 1 } }, { "key": "12586", "source": "905", "target": "259", "attributes": { "weight": 1 } }, { "key": "22602", "source": "905", "target": "1511", "attributes": { "weight": 1 } }, { "key": "13945", "source": "905", "target": "262", "attributes": { "weight": 1 } }, { "key": "22600", "source": "905", "target": "276", "attributes": { "weight": 1 } }, { "key": "8208", "source": "905", "target": "327", "attributes": { "weight": 3 } }, { "key": "13953", "source": "905", "target": "312", "attributes": { "weight": 1 } }, { "key": "28003", "source": "905", "target": "300", "attributes": { "weight": 1 } }, { "key": "11741", "source": "905", "target": "287", "attributes": { "weight": 1 } }, { "key": "14664", "source": "905", "target": "322", "attributes": { "weight": 2 } }, { "key": "18415", "source": "905", "target": "301", "attributes": { "weight": 2 } }, { "key": "11743", "source": "905", "target": "313", "attributes": { "weight": 1 } }, { "key": "8204", "source": "905", "target": "263", "attributes": { "weight": 2 } }, { "key": "13949", "source": "905", "target": "93", "attributes": { "weight": 1 } }, { "key": "18414", "source": "905", "target": "264", "attributes": { "weight": 1 } }, { "key": "13947", "source": "905", "target": "286", "attributes": { "weight": 2 } }, { "key": "8206", "source": "905", "target": "1508", "attributes": { "weight": 1 } }, { "key": "11739", "source": "905", "target": "272", "attributes": { "weight": 3 } }, { "key": "12590", "source": "905", "target": "314", "attributes": { "weight": 1 } }, { "key": "5238", "source": "905", "target": "580", "attributes": { "weight": 5 } }, { "key": "13944", "source": "905", "target": "164", "attributes": { "weight": 1 } }, { "key": "22603", "source": "905", "target": "329", "attributes": { "weight": 1 } }, { "key": "13948", "source": "905", "target": "170", "attributes": { "weight": 2 } }, { "key": "12589", "source": "905", "target": "299", "attributes": { "weight": 1 } }, { "key": "12848", "source": "905", "target": "582", "attributes": { "weight": 1 } }, { "key": "13946", "source": "905", "target": "168", "attributes": { "weight": 3 } }, { "key": "12588", "source": "905", "target": "578", "attributes": { "weight": 3 } }, { "key": "8205", "source": "905", "target": "167", "attributes": { "weight": 2 } }, { "key": "13952", "source": "905", "target": "178", "attributes": { "weight": 2 } }, { "key": "3192", "source": "905", "target": "305", "attributes": { "weight": 4 } }, { "key": "13951", "source": "905", "target": "304", "attributes": { "weight": 1 } }, { "key": "11740", "source": "905", "target": "574", "attributes": { "weight": 2 } }, { "key": "22601", "source": "905", "target": "1509", "attributes": { "weight": 1 } }, { "key": "11742", "source": "905", "target": "177", "attributes": { "weight": 3 } }, { "key": "12591", "source": "905", "target": "316", "attributes": { "weight": 1 } }, { "key": "13950", "source": "905", "target": "1512", "attributes": { "weight": 1 } }, { "key": "12587", "source": "905", "target": "260", "attributes": { "weight": 2 } }, { "key": "8207", "source": "905", "target": "278", "attributes": { "weight": 3 } }, { "key": "28050", "source": "906", "target": "304", "attributes": { "weight": 1 } }, { "key": "28049", "source": "906", "target": "287", "attributes": { "weight": 1 } }, { "key": "28051", "source": "906", "target": "839", "attributes": { "weight": 1 } }, { "key": "14722", "source": "906", "target": "286", "attributes": { "weight": 1 } }, { "key": "28048", "source": "906", "target": "268", "attributes": { "weight": 1 } }, { "key": "3205", "source": "906", "target": "307", "attributes": { "weight": 1 } }, { "key": "3204", "source": "906", "target": "262", "attributes": { "weight": 1 } }, { "key": "22991", "source": "906", "target": "258", "attributes": { "weight": 1 } }, { "key": "14721", "source": "906", "target": "259", "attributes": { "weight": 1 } }, { "key": "3287", "source": "907", "target": "305", "attributes": { "weight": 1 } }, { "key": "13976", "source": "907", "target": "180", "attributes": { "weight": 1 } }, { "key": "28495", "source": "907", "target": "278", "attributes": { "weight": 2 } }, { "key": "25074", "source": "907", "target": "707", "attributes": { "weight": 2 } }, { "key": "28496", "source": "907", "target": "1512", "attributes": { "weight": 1 } }, { "key": "22706", "source": "907", "target": "580", "attributes": { "weight": 1 } }, { "key": "28213", "source": "908", "target": "322", "attributes": { "weight": 1 } }, { "key": "28212", "source": "908", "target": "300", "attributes": { "weight": 1 } }, { "key": "23088", "source": "908", "target": "311", "attributes": { "weight": 1 } }, { "key": "13827", "source": "908", "target": "304", "attributes": { "weight": 3 } }, { "key": "18011", "source": "908", "target": "264", "attributes": { "weight": 1 } }, { "key": "23087", "source": "908", "target": "166", "attributes": { "weight": 1 } }, { "key": "23090", "source": "908", "target": "327", "attributes": { "weight": 1 } }, { "key": "23089", "source": "908", "target": "326", "attributes": { "weight": 1 } }, { "key": "3301", "source": "908", "target": "839", "attributes": { "weight": 1 } }, { "key": "15076", "source": "908", "target": "312", "attributes": { "weight": 1 } }, { "key": "15075", "source": "908", "target": "259", "attributes": { "weight": 1 } }, { "key": "23086", "source": "908", "target": "263", "attributes": { "weight": 1 } }, { "key": "3300", "source": "908", "target": "287", "attributes": { "weight": 1 } }, { "key": "3320", "source": "909", "target": "195", "attributes": { "weight": 2 } }, { "key": "15512", "source": "909", "target": "925", "attributes": { "weight": 1 } }, { "key": "15511", "source": "909", "target": "913", "attributes": { "weight": 1 } }, { "key": "4326", "source": "909", "target": "123", "attributes": { "weight": 2 } }, { "key": "21868", "source": "910", "target": "2301", "attributes": { "weight": 1 } }, { "key": "3321", "source": "910", "target": "195", "attributes": { "weight": 5 } }, { "key": "21869", "source": "910", "target": "2212", "attributes": { "weight": 1 } }, { "key": "4462", "source": "910", "target": "368", "attributes": { "weight": 2 } }, { "key": "4461", "source": "910", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4463", "source": "910", "target": "123", "attributes": { "weight": 2 } }, { "key": "15578", "source": "910", "target": "913", "attributes": { "weight": 1 } }, { "key": "4460", "source": "910", "target": "779", "attributes": { "weight": 2 } }, { "key": "15599", "source": "911", "target": "913", "attributes": { "weight": 1 } }, { "key": "28548", "source": "911", "target": "1279", "attributes": { "weight": 1 } }, { "key": "3322", "source": "911", "target": "195", "attributes": { "weight": 4 } }, { "key": "4654", "source": "912", "target": "123", "attributes": { "weight": 4 } }, { "key": "15604", "source": "912", "target": "1174", "attributes": { "weight": 1 } }, { "key": "15621", "source": "912", "target": "926", "attributes": { "weight": 1 } }, { "key": "21878", "source": "912", "target": "2300", "attributes": { "weight": 1 } }, { "key": "15622", "source": "912", "target": "1296", "attributes": { "weight": 1 } }, { "key": "15615", "source": "912", "target": "1263", "attributes": { "weight": 1 } }, { "key": "15609", "source": "912", "target": "1225", "attributes": { "weight": 1 } }, { "key": "15630", "source": "912", "target": "218", "attributes": { "weight": 1 } }, { "key": "15631", "source": "912", "target": "931", "attributes": { "weight": 1 } }, { "key": "15624", "source": "912", "target": "1305", "attributes": { "weight": 1 } }, { "key": "15620", "source": "912", "target": "925", "attributes": { "weight": 1 } }, { "key": "9748", "source": "912", "target": "387", "attributes": { "weight": 2 } }, { "key": "15613", "source": "912", "target": "338", "attributes": { "weight": 1 } }, { "key": "4652", "source": "912", "target": "370", "attributes": { "weight": 3 } }, { "key": "33994", "source": "912", "target": "1232", "attributes": { "weight": 1 } }, { "key": "15619", "source": "912", "target": "1278", "attributes": { "weight": 1 } }, { "key": "18153", "source": "912", "target": "2205", "attributes": { "weight": 1 } }, { "key": "15610", "source": "912", "target": "1233", "attributes": { "weight": 2 } }, { "key": "15628", "source": "912", "target": "1329", "attributes": { "weight": 1 } }, { "key": "8668", "source": "912", "target": "442", "attributes": { "weight": 2 } }, { "key": "4653", "source": "912", "target": "371", "attributes": { "weight": 2 } }, { "key": "15611", "source": "912", "target": "205", "attributes": { "weight": 1 } }, { "key": "15603", "source": "912", "target": "938", "attributes": { "weight": 1 } }, { "key": "3323", "source": "912", "target": "195", "attributes": { "weight": 7 } }, { "key": "15617", "source": "912", "target": "924", "attributes": { "weight": 1 } }, { "key": "15612", "source": "912", "target": "337", "attributes": { "weight": 1 } }, { "key": "15629", "source": "912", "target": "124", "attributes": { "weight": 1 } }, { "key": "15623", "source": "912", "target": "372", "attributes": { "weight": 1 } }, { "key": "15606", "source": "912", "target": "913", "attributes": { "weight": 1 } }, { "key": "4650", "source": "912", "target": "1196", "attributes": { "weight": 3 } }, { "key": "29242", "source": "912", "target": "2841", "attributes": { "weight": 1 } }, { "key": "15627", "source": "912", "target": "1323", "attributes": { "weight": 1 } }, { "key": "15616", "source": "912", "target": "208", "attributes": { "weight": 1 } }, { "key": "15608", "source": "912", "target": "199", "attributes": { "weight": 1 } }, { "key": "15625", "source": "912", "target": "1307", "attributes": { "weight": 1 } }, { "key": "15601", "source": "912", "target": "1156", "attributes": { "weight": 1 } }, { "key": "4649", "source": "912", "target": "779", "attributes": { "weight": 3 } }, { "key": "15607", "source": "912", "target": "1047", "attributes": { "weight": 2 } }, { "key": "15614", "source": "912", "target": "921", "attributes": { "weight": 1 } }, { "key": "15602", "source": "912", "target": "1165", "attributes": { "weight": 1 } }, { "key": "4651", "source": "912", "target": "368", "attributes": { "weight": 3 } }, { "key": "21879", "source": "912", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15626", "source": "912", "target": "215", "attributes": { "weight": 1 } }, { "key": "15605", "source": "912", "target": "1197", "attributes": { "weight": 3 } }, { "key": "7250", "source": "912", "target": "1063", "attributes": { "weight": 3 } }, { "key": "15618", "source": "912", "target": "1269", "attributes": { "weight": 1 } }, { "key": "4655", "source": "912", "target": "1090", "attributes": { "weight": 3 } }, { "key": "15722", "source": "913", "target": "1278", "attributes": { "weight": 1 } }, { "key": "15757", "source": "913", "target": "1344", "attributes": { "weight": 1 } }, { "key": "4955", "source": "913", "target": "921", "attributes": { "weight": 4 } }, { "key": "15754", "source": "913", "target": "928", "attributes": { "weight": 1 } }, { "key": "15661", "source": "913", "target": "1156", "attributes": { "weight": 1 } }, { "key": "15684", "source": "913", "target": "1200", "attributes": { "weight": 1 } }, { "key": "15737", "source": "913", "target": "1792", "attributes": { "weight": 1 } }, { "key": "8692", "source": "913", "target": "195", "attributes": { "weight": 8 } }, { "key": "14543", "source": "913", "target": "305", "attributes": { "weight": 3 } }, { "key": "15697", "source": "913", "target": "945", "attributes": { "weight": 1 } }, { "key": "15678", "source": "913", "target": "911", "attributes": { "weight": 1 } }, { "key": "15716", "source": "913", "target": "1552", "attributes": { "weight": 3 } }, { "key": "15709", "source": "913", "target": "920", "attributes": { "weight": 1 } }, { "key": "8694", "source": "913", "target": "454", "attributes": { "weight": 5 } }, { "key": "15698", "source": "913", "target": "1229", "attributes": { "weight": 1 } }, { "key": "15714", "source": "913", "target": "208", "attributes": { "weight": 2 } }, { "key": "15680", "source": "913", "target": "1192", "attributes": { "weight": 1 } }, { "key": "15691", "source": "913", "target": "1214", "attributes": { "weight": 1 } }, { "key": "15723", "source": "913", "target": "925", "attributes": { "weight": 1 } }, { "key": "18215", "source": "913", "target": "2205", "attributes": { "weight": 1 } }, { "key": "15705", "source": "913", "target": "370", "attributes": { "weight": 1 } }, { "key": "15750", "source": "913", "target": "961", "attributes": { "weight": 1 } }, { "key": "28552", "source": "913", "target": "2780", "attributes": { "weight": 1 } }, { "key": "8695", "source": "913", "target": "468", "attributes": { "weight": 4 } }, { "key": "15675", "source": "913", "target": "2027", "attributes": { "weight": 1 } }, { "key": "15695", "source": "913", "target": "917", "attributes": { "weight": 1 } }, { "key": "15696", "source": "913", "target": "918", "attributes": { "weight": 1 } }, { "key": "15655", "source": "913", "target": "2020", "attributes": { "weight": 1 } }, { "key": "15681", "source": "913", "target": "1194", "attributes": { "weight": 1 } }, { "key": "4959", "source": "913", "target": "1294", "attributes": { "weight": 4 } }, { "key": "10195", "source": "913", "target": "1315", "attributes": { "weight": 2 } }, { "key": "15751", "source": "913", "target": "1329", "attributes": { "weight": 1 } }, { "key": "15736", "source": "913", "target": "1301", "attributes": { "weight": 1 } }, { "key": "15727", "source": "913", "target": "580", "attributes": { "weight": 1 } }, { "key": "15719", "source": "913", "target": "1269", "attributes": { "weight": 1 } }, { "key": "15662", "source": "913", "target": "1159", "attributes": { "weight": 1 } }, { "key": "15682", "source": "913", "target": "1197", "attributes": { "weight": 5 } }, { "key": "15669", "source": "913", "target": "1174", "attributes": { "weight": 3 } }, { "key": "15666", "source": "913", "target": "1165", "attributes": { "weight": 2 } }, { "key": "15658", "source": "913", "target": "1153", "attributes": { "weight": 1 } }, { "key": "15673", "source": "913", "target": "1180", "attributes": { "weight": 1 } }, { "key": "7269", "source": "913", "target": "1063", "attributes": { "weight": 4 } }, { "key": "15702", "source": "913", "target": "1236", "attributes": { "weight": 1 } }, { "key": "15693", "source": "913", "target": "1225", "attributes": { "weight": 1 } }, { "key": "15760", "source": "913", "target": "375", "attributes": { "weight": 1 } }, { "key": "15728", "source": "913", "target": "1286", "attributes": { "weight": 1 } }, { "key": "15745", "source": "913", "target": "1563", "attributes": { "weight": 1 } }, { "key": "4956", "source": "913", "target": "371", "attributes": { "weight": 3 } }, { "key": "15704", "source": "913", "target": "205", "attributes": { "weight": 1 } }, { "key": "15759", "source": "913", "target": "931", "attributes": { "weight": 1 } }, { "key": "15700", "source": "913", "target": "1233", "attributes": { "weight": 3 } }, { "key": "15712", "source": "913", "target": "922", "attributes": { "weight": 1 } }, { "key": "15701", "source": "913", "target": "278", "attributes": { "weight": 1 } }, { "key": "15676", "source": "913", "target": "1182", "attributes": { "weight": 1 } }, { "key": "15656", "source": "913", "target": "1519", "attributes": { "weight": 1 } }, { "key": "15690", "source": "913", "target": "915", "attributes": { "weight": 1 } }, { "key": "15699", "source": "913", "target": "1232", "attributes": { "weight": 2 } }, { "key": "4960", "source": "913", "target": "154", "attributes": { "weight": 4 } }, { "key": "15686", "source": "913", "target": "2034", "attributes": { "weight": 1 } }, { "key": "15671", "source": "913", "target": "1176", "attributes": { "weight": 1 } }, { "key": "15735", "source": "913", "target": "372", "attributes": { "weight": 1 } }, { "key": "15724", "source": "913", "target": "1279", "attributes": { "weight": 2 } }, { "key": "15729", "source": "913", "target": "1287", "attributes": { "weight": 1 } }, { "key": "15747", "source": "913", "target": "1321", "attributes": { "weight": 1 } }, { "key": "15688", "source": "913", "target": "1047", "attributes": { "weight": 2 } }, { "key": "15730", "source": "913", "target": "1289", "attributes": { "weight": 1 } }, { "key": "4952", "source": "913", "target": "779", "attributes": { "weight": 3 } }, { "key": "15726", "source": "913", "target": "579", "attributes": { "weight": 1 } }, { "key": "15740", "source": "913", "target": "927", "attributes": { "weight": 1 } }, { "key": "15717", "source": "913", "target": "924", "attributes": { "weight": 1 } }, { "key": "15711", "source": "913", "target": "1262", "attributes": { "weight": 1 } }, { "key": "15748", "source": "913", "target": "1322", "attributes": { "weight": 1 } }, { "key": "15746", "source": "913", "target": "1320", "attributes": { "weight": 1 } }, { "key": "15752", "source": "913", "target": "124", "attributes": { "weight": 2 } }, { "key": "8693", "source": "913", "target": "442", "attributes": { "weight": 3 } }, { "key": "15706", "source": "913", "target": "919", "attributes": { "weight": 1 } }, { "key": "15732", "source": "913", "target": "1295", "attributes": { "weight": 1 } }, { "key": "4958", "source": "913", "target": "1090", "attributes": { "weight": 3 } }, { "key": "15670", "source": "913", "target": "1175", "attributes": { "weight": 1 } }, { "key": "15725", "source": "913", "target": "1281", "attributes": { "weight": 1 } }, { "key": "15652", "source": "913", "target": "1138", "attributes": { "weight": 1 } }, { "key": "15654", "source": "913", "target": "220", "attributes": { "weight": 2 } }, { "key": "15657", "source": "913", "target": "1152", "attributes": { "weight": 1 } }, { "key": "14542", "source": "913", "target": "304", "attributes": { "weight": 3 } }, { "key": "15703", "source": "913", "target": "1239", "attributes": { "weight": 1 } }, { "key": "15738", "source": "913", "target": "1305", "attributes": { "weight": 1 } }, { "key": "15755", "source": "913", "target": "218", "attributes": { "weight": 2 } }, { "key": "15720", "source": "913", "target": "1271", "attributes": { "weight": 1 } }, { "key": "15679", "source": "913", "target": "912", "attributes": { "weight": 1 } }, { "key": "15664", "source": "913", "target": "1162", "attributes": { "weight": 1 } }, { "key": "15668", "source": "913", "target": "1172", "attributes": { "weight": 1 } }, { "key": "15743", "source": "913", "target": "405", "attributes": { "weight": 1 } }, { "key": "15756", "source": "913", "target": "1342", "attributes": { "weight": 1 } }, { "key": "9754", "source": "913", "target": "399", "attributes": { "weight": 2 } }, { "key": "15707", "source": "913", "target": "337", "attributes": { "weight": 3 } }, { "key": "15741", "source": "913", "target": "1309", "attributes": { "weight": 1 } }, { "key": "9753", "source": "913", "target": "396", "attributes": { "weight": 2 } }, { "key": "15708", "source": "913", "target": "338", "attributes": { "weight": 3 } }, { "key": "15731", "source": "913", "target": "212", "attributes": { "weight": 1 } }, { "key": "15692", "source": "913", "target": "1222", "attributes": { "weight": 1 } }, { "key": "15718", "source": "913", "target": "1268", "attributes": { "weight": 1 } }, { "key": "15753", "source": "913", "target": "1338", "attributes": { "weight": 1 } }, { "key": "4957", "source": "913", "target": "123", "attributes": { "weight": 4 } }, { "key": "15749", "source": "913", "target": "1323", "attributes": { "weight": 1 } }, { "key": "15674", "source": "913", "target": "1181", "attributes": { "weight": 1 } }, { "key": "15665", "source": "913", "target": "1164", "attributes": { "weight": 1 } }, { "key": "15733", "source": "913", "target": "1296", "attributes": { "weight": 1 } }, { "key": "15659", "source": "913", "target": "1154", "attributes": { "weight": 1 } }, { "key": "15710", "source": "913", "target": "1255", "attributes": { "weight": 1 } }, { "key": "4954", "source": "913", "target": "368", "attributes": { "weight": 4 } }, { "key": "15683", "source": "913", "target": "1199", "attributes": { "weight": 1 } }, { "key": "15685", "source": "913", "target": "1202", "attributes": { "weight": 1 } }, { "key": "4953", "source": "913", "target": "1196", "attributes": { "weight": 3 } }, { "key": "15742", "source": "913", "target": "215", "attributes": { "weight": 2 } }, { "key": "3324", "source": "913", "target": "926", "attributes": { "weight": 4 } }, { "key": "15734", "source": "913", "target": "2046", "attributes": { "weight": 1 } }, { "key": "15677", "source": "913", "target": "1184", "attributes": { "weight": 1 } }, { "key": "15687", "source": "913", "target": "914", "attributes": { "weight": 1 } }, { "key": "15739", "source": "913", "target": "1307", "attributes": { "weight": 1 } }, { "key": "10194", "source": "913", "target": "1291", "attributes": { "weight": 2 } }, { "key": "15653", "source": "913", "target": "933", "attributes": { "weight": 1 } }, { "key": "15721", "source": "913", "target": "1276", "attributes": { "weight": 1 } }, { "key": "9752", "source": "913", "target": "387", "attributes": { "weight": 3 } }, { "key": "15694", "source": "913", "target": "109", "attributes": { "weight": 2 } }, { "key": "15758", "source": "913", "target": "930", "attributes": { "weight": 1 } }, { "key": "15667", "source": "913", "target": "1171", "attributes": { "weight": 1 } }, { "key": "15663", "source": "913", "target": "1160", "attributes": { "weight": 1 } }, { "key": "15689", "source": "913", "target": "199", "attributes": { "weight": 2 } }, { "key": "18214", "source": "913", "target": "2200", "attributes": { "weight": 1 } }, { "key": "15713", "source": "913", "target": "1263", "attributes": { "weight": 1 } }, { "key": "15744", "source": "913", "target": "1316", "attributes": { "weight": 1 } }, { "key": "15715", "source": "913", "target": "923", "attributes": { "weight": 1 } }, { "key": "15660", "source": "913", "target": "909", "attributes": { "weight": 1 } }, { "key": "15672", "source": "913", "target": "910", "attributes": { "weight": 1 } }, { "key": "11488", "source": "913", "target": "938", "attributes": { "weight": 2 } }, { "key": "4986", "source": "914", "target": "123", "attributes": { "weight": 2 } }, { "key": "3325", "source": "914", "target": "195", "attributes": { "weight": 4 } }, { "key": "15767", "source": "914", "target": "913", "attributes": { "weight": 1 } }, { "key": "4985", "source": "914", "target": "368", "attributes": { "weight": 2 } }, { "key": "21910", "source": "915", "target": "2212", "attributes": { "weight": 1 } }, { "key": "5035", "source": "915", "target": "123", "attributes": { "weight": 3 } }, { "key": "15789", "source": "915", "target": "913", "attributes": { "weight": 1 } }, { "key": "5034", "source": "915", "target": "368", "attributes": { "weight": 2 } }, { "key": "21908", "source": "915", "target": "2300", "attributes": { "weight": 1 } }, { "key": "21906", "source": "915", "target": "2293", "attributes": { "weight": 1 } }, { "key": "3326", "source": "915", "target": "195", "attributes": { "weight": 4 } }, { "key": "21909", "source": "915", "target": "2301", "attributes": { "weight": 1 } }, { "key": "15790", "source": "915", "target": "925", "attributes": { "weight": 1 } }, { "key": "21907", "source": "915", "target": "1279", "attributes": { "weight": 1 } }, { "key": "15799", "source": "916", "target": "925", "attributes": { "weight": 1 } }, { "key": "21913", "source": "916", "target": "2212", "attributes": { "weight": 1 } }, { "key": "3327", "source": "916", "target": "929", "attributes": { "weight": 1 } }, { "key": "21912", "source": "916", "target": "337", "attributes": { "weight": 1 } }, { "key": "21911", "source": "916", "target": "2293", "attributes": { "weight": 1 } }, { "key": "15814", "source": "917", "target": "913", "attributes": { "weight": 1 } }, { "key": "5073", "source": "917", "target": "779", "attributes": { "weight": 2 } }, { "key": "34198", "source": "917", "target": "123", "attributes": { "weight": 1 } }, { "key": "5078", "source": "917", "target": "1090", "attributes": { "weight": 2 } }, { "key": "21922", "source": "917", "target": "2212", "attributes": { "weight": 1 } }, { "key": "34197", "source": "917", "target": "1232", "attributes": { "weight": 1 } }, { "key": "3328", "source": "917", "target": "195", "attributes": { "weight": 5 } }, { "key": "5077", "source": "917", "target": "371", "attributes": { "weight": 2 } }, { "key": "34196", "source": "917", "target": "1047", "attributes": { "weight": 1 } }, { "key": "5074", "source": "917", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5075", "source": "917", "target": "368", "attributes": { "weight": 2 } }, { "key": "5076", "source": "917", "target": "921", "attributes": { "weight": 3 } }, { "key": "18226", "source": "917", "target": "1197", "attributes": { "weight": 1 } }, { "key": "21921", "source": "917", "target": "2301", "attributes": { "weight": 1 } }, { "key": "34201", "source": "918", "target": "1232", "attributes": { "weight": 1 } }, { "key": "15815", "source": "918", "target": "913", "attributes": { "weight": 1 } }, { "key": "21924", "source": "918", "target": "2300", "attributes": { "weight": 1 } }, { "key": "36567", "source": "918", "target": "1165", "attributes": { "weight": 1 } }, { "key": "21925", "source": "918", "target": "2301", "attributes": { "weight": 1 } }, { "key": "36568", "source": "918", "target": "1174", "attributes": { "weight": 1 } }, { "key": "36569", "source": "918", "target": "1228", "attributes": { "weight": 1 } }, { "key": "3329", "source": "918", "target": "195", "attributes": { "weight": 5 } }, { "key": "5079", "source": "918", "target": "779", "attributes": { "weight": 2 } }, { "key": "21926", "source": "918", "target": "2212", "attributes": { "weight": 1 } }, { "key": "34199", "source": "918", "target": "1182", "attributes": { "weight": 1 } }, { "key": "5081", "source": "918", "target": "368", "attributes": { "weight": 2 } }, { "key": "15816", "source": "918", "target": "921", "attributes": { "weight": 1 } }, { "key": "18686", "source": "918", "target": "1552", "attributes": { "weight": 2 } }, { "key": "5080", "source": "918", "target": "1196", "attributes": { "weight": 2 } }, { "key": "34202", "source": "918", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34203", "source": "918", "target": "123", "attributes": { "weight": 1 } }, { "key": "5082", "source": "918", "target": "1090", "attributes": { "weight": 2 } }, { "key": "34200", "source": "918", "target": "1047", "attributes": { "weight": 1 } }, { "key": "21923", "source": "918", "target": "199", "attributes": { "weight": 1 } }, { "key": "34469", "source": "919", "target": "123", "attributes": { "weight": 1 } }, { "key": "32098", "source": "919", "target": "1196", "attributes": { "weight": 1 } }, { "key": "15900", "source": "919", "target": "913", "attributes": { "weight": 1 } }, { "key": "21942", "source": "919", "target": "2212", "attributes": { "weight": 1 } }, { "key": "3331", "source": "919", "target": "195", "attributes": { "weight": 2 } }, { "key": "15901", "source": "919", "target": "925", "attributes": { "weight": 2 } }, { "key": "21989", "source": "920", "target": "2300", "attributes": { "weight": 1 } }, { "key": "21988", "source": "920", "target": "199", "attributes": { "weight": 1 } }, { "key": "5342", "source": "920", "target": "779", "attributes": { "weight": 2 } }, { "key": "15927", "source": "920", "target": "921", "attributes": { "weight": 1 } }, { "key": "15928", "source": "920", "target": "925", "attributes": { "weight": 1 } }, { "key": "3332", "source": "920", "target": "195", "attributes": { "weight": 4 } }, { "key": "34495", "source": "920", "target": "1233", "attributes": { "weight": 1 } }, { "key": "15925", "source": "920", "target": "1196", "attributes": { "weight": 1 } }, { "key": "5343", "source": "920", "target": "368", "attributes": { "weight": 2 } }, { "key": "21990", "source": "920", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21991", "source": "920", "target": "2212", "attributes": { "weight": 1 } }, { "key": "5344", "source": "920", "target": "123", "attributes": { "weight": 3 } }, { "key": "15926", "source": "920", "target": "913", "attributes": { "weight": 1 } }, { "key": "15952", "source": "921", "target": "925", "attributes": { "weight": 1 } }, { "key": "15933", "source": "921", "target": "1172", "attributes": { "weight": 1 } }, { "key": "15959", "source": "921", "target": "1350", "attributes": { "weight": 2 } }, { "key": "5353", "source": "921", "target": "368", "attributes": { "weight": 4 } }, { "key": "11598", "source": "921", "target": "199", "attributes": { "weight": 3 } }, { "key": "5368", "source": "921", "target": "124", "attributes": { "weight": 4 } }, { "key": "18754", "source": "921", "target": "1552", "attributes": { "weight": 2 } }, { "key": "15934", "source": "921", "target": "1175", "attributes": { "weight": 1 } }, { "key": "5363", "source": "921", "target": "1296", "attributes": { "weight": 3 } }, { "key": "5346", "source": "921", "target": "1165", "attributes": { "weight": 4 } }, { "key": "5364", "source": "921", "target": "1305", "attributes": { "weight": 3 } }, { "key": "18753", "source": "921", "target": "1176", "attributes": { "weight": 2 } }, { "key": "5360", "source": "921", "target": "1289", "attributes": { "weight": 3 } }, { "key": "5361", "source": "921", "target": "212", "attributes": { "weight": 4 } }, { "key": "15945", "source": "921", "target": "205", "attributes": { "weight": 1 } }, { "key": "15956", "source": "921", "target": "1309", "attributes": { "weight": 1 } }, { "key": "11601", "source": "921", "target": "1333", "attributes": { "weight": 2 } }, { "key": "15958", "source": "921", "target": "928", "attributes": { "weight": 1 } }, { "key": "5371", "source": "921", "target": "154", "attributes": { "weight": 6 } }, { "key": "5349", "source": "921", "target": "779", "attributes": { "weight": 3 } }, { "key": "5372", "source": "921", "target": "1063", "attributes": { "weight": 6 } }, { "key": "5357", "source": "921", "target": "1255", "attributes": { "weight": 2 } }, { "key": "15950", "source": "921", "target": "1269", "attributes": { "weight": 2 } }, { "key": "15942", "source": "921", "target": "918", "attributes": { "weight": 1 } }, { "key": "15932", "source": "921", "target": "1171", "attributes": { "weight": 1 } }, { "key": "11599", "source": "921", "target": "208", "attributes": { "weight": 2 } }, { "key": "5354", "source": "921", "target": "913", "attributes": { "weight": 4 } }, { "key": "5351", "source": "921", "target": "1194", "attributes": { "weight": 3 } }, { "key": "15931", "source": "921", "target": "1162", "attributes": { "weight": 1 } }, { "key": "15953", "source": "921", "target": "1279", "attributes": { "weight": 2 } }, { "key": "5352", "source": "921", "target": "1196", "attributes": { "weight": 3 } }, { "key": "15939", "source": "921", "target": "1199", "attributes": { "weight": 1 } }, { "key": "15954", "source": "921", "target": "1287", "attributes": { "weight": 1 } }, { "key": "5348", "source": "921", "target": "1179", "attributes": { "weight": 3 } }, { "key": "5355", "source": "921", "target": "917", "attributes": { "weight": 3 } }, { "key": "15955", "source": "921", "target": "1792", "attributes": { "weight": 1 } }, { "key": "15944", "source": "921", "target": "1236", "attributes": { "weight": 1 } }, { "key": "15940", "source": "921", "target": "198", "attributes": { "weight": 1 } }, { "key": "15929", "source": "921", "target": "236", "attributes": { "weight": 1 } }, { "key": "15951", "source": "921", "target": "1278", "attributes": { "weight": 1 } }, { "key": "7332", "source": "921", "target": "375", "attributes": { "weight": 2 } }, { "key": "15938", "source": "921", "target": "1197", "attributes": { "weight": 4 } }, { "key": "15948", "source": "921", "target": "924", "attributes": { "weight": 1 } }, { "key": "5347", "source": "921", "target": "938", "attributes": { "weight": 3 } }, { "key": "15930", "source": "921", "target": "1160", "attributes": { "weight": 1 } }, { "key": "5350", "source": "921", "target": "1184", "attributes": { "weight": 3 } }, { "key": "8826", "source": "921", "target": "195", "attributes": { "weight": 7 } }, { "key": "11602", "source": "921", "target": "218", "attributes": { "weight": 2 } }, { "key": "15937", "source": "921", "target": "912", "attributes": { "weight": 1 } }, { "key": "15935", "source": "921", "target": "1180", "attributes": { "weight": 1 } }, { "key": "15947", "source": "921", "target": "1263", "attributes": { "weight": 1 } }, { "key": "5367", "source": "921", "target": "1321", "attributes": { "weight": 3 } }, { "key": "5370", "source": "921", "target": "931", "attributes": { "weight": 2 } }, { "key": "11600", "source": "921", "target": "215", "attributes": { "weight": 2 } }, { "key": "5366", "source": "921", "target": "927", "attributes": { "weight": 2 } }, { "key": "15943", "source": "921", "target": "1233", "attributes": { "weight": 2 } }, { "key": "3333", "source": "921", "target": "926", "attributes": { "weight": 3 } }, { "key": "5369", "source": "921", "target": "930", "attributes": { "weight": 3 } }, { "key": "34497", "source": "921", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5356", "source": "921", "target": "1235", "attributes": { "weight": 3 } }, { "key": "36629", "source": "921", "target": "1228", "attributes": { "weight": 1 } }, { "key": "15936", "source": "921", "target": "1182", "attributes": { "weight": 2 } }, { "key": "5362", "source": "921", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15949", "source": "921", "target": "1268", "attributes": { "weight": 1 } }, { "key": "5358", "source": "921", "target": "371", "attributes": { "weight": 3 } }, { "key": "15941", "source": "921", "target": "1225", "attributes": { "weight": 1 } }, { "key": "5365", "source": "921", "target": "1307", "attributes": { "weight": 3 } }, { "key": "15957", "source": "921", "target": "1316", "attributes": { "weight": 1 } }, { "key": "5359", "source": "921", "target": "123", "attributes": { "weight": 5 } }, { "key": "15946", "source": "921", "target": "920", "attributes": { "weight": 1 } }, { "key": "34519", "source": "922", "target": "123", "attributes": { "weight": 1 } }, { "key": "3334", "source": "922", "target": "195", "attributes": { "weight": 2 } }, { "key": "15969", "source": "922", "target": "913", "attributes": { "weight": 1 } }, { "key": "15970", "source": "922", "target": "925", "attributes": { "weight": 1 } }, { "key": "21995", "source": "923", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15998", "source": "923", "target": "913", "attributes": { "weight": 1 } }, { "key": "5543", "source": "923", "target": "123", "attributes": { "weight": 3 } }, { "key": "5542", "source": "923", "target": "779", "attributes": { "weight": 2 } }, { "key": "18252", "source": "923", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5541", "source": "923", "target": "938", "attributes": { "weight": 2 } }, { "key": "34527", "source": "923", "target": "1232", "attributes": { "weight": 1 } }, { "key": "7344", "source": "923", "target": "1063", "attributes": { "weight": 1 } }, { "key": "3335", "source": "923", "target": "195", "attributes": { "weight": 4 } }, { "key": "5544", "source": "923", "target": "1090", "attributes": { "weight": 2 } }, { "key": "21994", "source": "923", "target": "2301", "attributes": { "weight": 1 } }, { "key": "18253", "source": "923", "target": "208", "attributes": { "weight": 1 } }, { "key": "16013", "source": "924", "target": "1296", "attributes": { "weight": 1 } }, { "key": "16011", "source": "924", "target": "208", "attributes": { "weight": 3 } }, { "key": "18839", "source": "924", "target": "1174", "attributes": { "weight": 2 } }, { "key": "16015", "source": "924", "target": "405", "attributes": { "weight": 1 } }, { "key": "18840", "source": "924", "target": "1228", "attributes": { "weight": 2 } }, { "key": "34528", "source": "924", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16008", "source": "924", "target": "338", "attributes": { "weight": 1 } }, { "key": "18841", "source": "924", "target": "1552", "attributes": { "weight": 2 } }, { "key": "16014", "source": "924", "target": "1305", "attributes": { "weight": 1 } }, { "key": "18842", "source": "924", "target": "218", "attributes": { "weight": 2 } }, { "key": "16004", "source": "924", "target": "913", "attributes": { "weight": 1 } }, { "key": "3336", "source": "924", "target": "926", "attributes": { "weight": 2 } }, { "key": "16009", "source": "924", "target": "921", "attributes": { "weight": 1 } }, { "key": "25527", "source": "924", "target": "2600", "attributes": { "weight": 1 } }, { "key": "5555", "source": "924", "target": "123", "attributes": { "weight": 4 } }, { "key": "5554", "source": "924", "target": "371", "attributes": { "weight": 2 } }, { "key": "16010", "source": "924", "target": "1263", "attributes": { "weight": 1 } }, { "key": "25529", "source": "924", "target": "2602", "attributes": { "weight": 1 } }, { "key": "5552", "source": "924", "target": "1196", "attributes": { "weight": 3 } }, { "key": "16012", "source": "924", "target": "925", "attributes": { "weight": 1 } }, { "key": "5553", "source": "924", "target": "368", "attributes": { "weight": 3 } }, { "key": "16002", "source": "924", "target": "912", "attributes": { "weight": 1 } }, { "key": "16007", "source": "924", "target": "337", "attributes": { "weight": 2 } }, { "key": "25528", "source": "924", "target": "2601", "attributes": { "weight": 1 } }, { "key": "16006", "source": "924", "target": "1236", "attributes": { "weight": 1 } }, { "key": "16003", "source": "924", "target": "1197", "attributes": { "weight": 3 } }, { "key": "16005", "source": "924", "target": "1233", "attributes": { "weight": 2 } }, { "key": "5551", "source": "924", "target": "779", "attributes": { "weight": 2 } }, { "key": "25530", "source": "924", "target": "2604", "attributes": { "weight": 1 } }, { "key": "8875", "source": "924", "target": "195", "attributes": { "weight": 7 } }, { "key": "16001", "source": "924", "target": "1152", "attributes": { "weight": 1 } }, { "key": "16016", "source": "924", "target": "1329", "attributes": { "weight": 1 } }, { "key": "3337", "source": "925", "target": "195", "attributes": { "weight": 7 } }, { "key": "5710", "source": "925", "target": "123", "attributes": { "weight": 5 } }, { "key": "16098", "source": "925", "target": "920", "attributes": { "weight": 1 } }, { "key": "16116", "source": "925", "target": "1291", "attributes": { "weight": 1 } }, { "key": "16111", "source": "925", "target": "1690", "attributes": { "weight": 1 } }, { "key": "16063", "source": "925", "target": "1182", "attributes": { "weight": 2 } }, { "key": "16091", "source": "925", "target": "1236", "attributes": { "weight": 1 } }, { "key": "32099", "source": "925", "target": "372", "attributes": { "weight": 1 } }, { "key": "16086", "source": "925", "target": "1687", "attributes": { "weight": 1 } }, { "key": "16077", "source": "925", "target": "1210", "attributes": { "weight": 1 } }, { "key": "5707", "source": "925", "target": "1196", "attributes": { "weight": 4 } }, { "key": "8923", "source": "925", "target": "1322", "attributes": { "weight": 5 } }, { "key": "16050", "source": "925", "target": "1162", "attributes": { "weight": 1 } }, { "key": "16107", "source": "925", "target": "1269", "attributes": { "weight": 3 } }, { "key": "16052", "source": "925", "target": "2021", "attributes": { "weight": 1 } }, { "key": "16076", "source": "925", "target": "199", "attributes": { "weight": 1 } }, { "key": "16142", "source": "925", "target": "931", "attributes": { "weight": 1 } }, { "key": "16125", "source": "925", "target": "1309", "attributes": { "weight": 1 } }, { "key": "16148", "source": "925", "target": "1417", "attributes": { "weight": 1 } }, { "key": "16089", "source": "925", "target": "1234", "attributes": { "weight": 1 } }, { "key": "16104", "source": "925", "target": "208", "attributes": { "weight": 4 } }, { "key": "5712", "source": "925", "target": "1294", "attributes": { "weight": 6 } }, { "key": "16058", "source": "925", "target": "2023", "attributes": { "weight": 1 } }, { "key": "16147", "source": "925", "target": "625", "attributes": { "weight": 1 } }, { "key": "10244", "source": "925", "target": "1315", "attributes": { "weight": 3 } }, { "key": "16132", "source": "925", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16059", "source": "925", "target": "1172", "attributes": { "weight": 1 } }, { "key": "16064", "source": "925", "target": "1184", "attributes": { "weight": 1 } }, { "key": "16080", "source": "925", "target": "1215", "attributes": { "weight": 1 } }, { "key": "16095", "source": "925", "target": "370", "attributes": { "weight": 2 } }, { "key": "16083", "source": "925", "target": "1225", "attributes": { "weight": 1 } }, { "key": "16135", "source": "925", "target": "124", "attributes": { "weight": 3 } }, { "key": "16070", "source": "925", "target": "2032", "attributes": { "weight": 1 } }, { "key": "16053", "source": "925", "target": "2022", "attributes": { "weight": 1 } }, { "key": "16108", "source": "925", "target": "1271", "attributes": { "weight": 1 } }, { "key": "16079", "source": "925", "target": "915", "attributes": { "weight": 1 } }, { "key": "16127", "source": "925", "target": "215", "attributes": { "weight": 2 } }, { "key": "16123", "source": "925", "target": "2047", "attributes": { "weight": 1 } }, { "key": "16057", "source": "925", "target": "938", "attributes": { "weight": 2 } }, { "key": "16139", "source": "925", "target": "1343", "attributes": { "weight": 1 } }, { "key": "37513", "source": "925", "target": "2192", "attributes": { "weight": 1 } }, { "key": "16054", "source": "925", "target": "1164", "attributes": { "weight": 1 } }, { "key": "16067", "source": "925", "target": "1194", "attributes": { "weight": 1 } }, { "key": "16101", "source": "925", "target": "1257", "attributes": { "weight": 1 } }, { "key": "8921", "source": "925", "target": "338", "attributes": { "weight": 7 } }, { "key": "5709", "source": "925", "target": "371", "attributes": { "weight": 3 } }, { "key": "16055", "source": "925", "target": "1165", "attributes": { "weight": 1 } }, { "key": "16115", "source": "925", "target": "1289", "attributes": { "weight": 1 } }, { "key": "16099", "source": "925", "target": "921", "attributes": { "weight": 1 } }, { "key": "16075", "source": "925", "target": "1685", "attributes": { "weight": 1 } }, { "key": "16096", "source": "925", "target": "919", "attributes": { "weight": 2 } }, { "key": "16126", "source": "925", "target": "1311", "attributes": { "weight": 1 } }, { "key": "16106", "source": "925", "target": "924", "attributes": { "weight": 1 } }, { "key": "16078", "source": "925", "target": "1211", "attributes": { "weight": 1 } }, { "key": "16117", "source": "925", "target": "1295", "attributes": { "weight": 1 } }, { "key": "16114", "source": "925", "target": "1287", "attributes": { "weight": 1 } }, { "key": "8920", "source": "925", "target": "442", "attributes": { "weight": 2 } }, { "key": "5711", "source": "925", "target": "1090", "attributes": { "weight": 3 } }, { "key": "16045", "source": "925", "target": "2020", "attributes": { "weight": 1 } }, { "key": "16044", "source": "925", "target": "711", "attributes": { "weight": 1 } }, { "key": "16144", "source": "925", "target": "1407", "attributes": { "weight": 1 } }, { "key": "16129", "source": "925", "target": "1563", "attributes": { "weight": 1 } }, { "key": "3338", "source": "925", "target": "926", "attributes": { "weight": 4 } }, { "key": "16140", "source": "925", "target": "1344", "attributes": { "weight": 1 } }, { "key": "16113", "source": "925", "target": "1286", "attributes": { "weight": 1 } }, { "key": "16136", "source": "925", "target": "928", "attributes": { "weight": 1 } }, { "key": "16097", "source": "925", "target": "337", "attributes": { "weight": 3 } }, { "key": "16102", "source": "925", "target": "922", "attributes": { "weight": 1 } }, { "key": "16084", "source": "925", "target": "1686", "attributes": { "weight": 1 } }, { "key": "16094", "source": "925", "target": "205", "attributes": { "weight": 1 } }, { "key": "16069", "source": "925", "target": "2031", "attributes": { "weight": 1 } }, { "key": "7348", "source": "925", "target": "1063", "attributes": { "weight": 4 } }, { "key": "16082", "source": "925", "target": "1222", "attributes": { "weight": 1 } }, { "key": "16121", "source": "925", "target": "1303", "attributes": { "weight": 1 } }, { "key": "16049", "source": "925", "target": "1156", "attributes": { "weight": 1 } }, { "key": "16090", "source": "925", "target": "2038", "attributes": { "weight": 1 } }, { "key": "16138", "source": "925", "target": "1342", "attributes": { "weight": 1 } }, { "key": "16068", "source": "925", "target": "1197", "attributes": { "weight": 6 } }, { "key": "8922", "source": "925", "target": "468", "attributes": { "weight": 4 } }, { "key": "16046", "source": "925", "target": "1519", "attributes": { "weight": 1 } }, { "key": "16133", "source": "925", "target": "1331", "attributes": { "weight": 1 } }, { "key": "16092", "source": "925", "target": "2039", "attributes": { "weight": 1 } }, { "key": "16122", "source": "925", "target": "1305", "attributes": { "weight": 1 } }, { "key": "16051", "source": "925", "target": "937", "attributes": { "weight": 1 } }, { "key": "16119", "source": "925", "target": "1693", "attributes": { "weight": 1 } }, { "key": "16100", "source": "925", "target": "2043", "attributes": { "weight": 1 } }, { "key": "16040", "source": "925", "target": "1140", "attributes": { "weight": 1 } }, { "key": "16061", "source": "925", "target": "1681", "attributes": { "weight": 1 } }, { "key": "16087", "source": "925", "target": "1232", "attributes": { "weight": 2 } }, { "key": "16146", "source": "925", "target": "333", "attributes": { "weight": 1 } }, { "key": "5708", "source": "925", "target": "368", "attributes": { "weight": 5 } }, { "key": "16109", "source": "925", "target": "2044", "attributes": { "weight": 1 } }, { "key": "16093", "source": "925", "target": "2040", "attributes": { "weight": 1 } }, { "key": "16143", "source": "925", "target": "373", "attributes": { "weight": 1 } }, { "key": "16145", "source": "925", "target": "154", "attributes": { "weight": 2 } }, { "key": "16074", "source": "925", "target": "1205", "attributes": { "weight": 1 } }, { "key": "5706", "source": "925", "target": "779", "attributes": { "weight": 3 } }, { "key": "16047", "source": "925", "target": "1152", "attributes": { "weight": 1 } }, { "key": "18861", "source": "925", "target": "1284", "attributes": { "weight": 1 } }, { "key": "16048", "source": "925", "target": "909", "attributes": { "weight": 1 } }, { "key": "16085", "source": "925", "target": "2036", "attributes": { "weight": 1 } }, { "key": "16043", "source": "925", "target": "220", "attributes": { "weight": 2 } }, { "key": "16112", "source": "925", "target": "580", "attributes": { "weight": 1 } }, { "key": "16124", "source": "925", "target": "1307", "attributes": { "weight": 1 } }, { "key": "16060", "source": "925", "target": "1174", "attributes": { "weight": 2 } }, { "key": "16071", "source": "925", "target": "1199", "attributes": { "weight": 1 } }, { "key": "16081", "source": "925", "target": "916", "attributes": { "weight": 1 } }, { "key": "16137", "source": "925", "target": "218", "attributes": { "weight": 1 } }, { "key": "16103", "source": "925", "target": "1263", "attributes": { "weight": 3 } }, { "key": "16149", "source": "925", "target": "377", "attributes": { "weight": 1 } }, { "key": "16134", "source": "925", "target": "408", "attributes": { "weight": 1 } }, { "key": "16120", "source": "925", "target": "1300", "attributes": { "weight": 2 } }, { "key": "16062", "source": "925", "target": "1181", "attributes": { "weight": 1 } }, { "key": "16065", "source": "925", "target": "912", "attributes": { "weight": 1 } }, { "key": "16141", "source": "925", "target": "930", "attributes": { "weight": 1 } }, { "key": "8924", "source": "925", "target": "1323", "attributes": { "weight": 5 } }, { "key": "16072", "source": "925", "target": "913", "attributes": { "weight": 1 } }, { "key": "9854", "source": "925", "target": "387", "attributes": { "weight": 3 } }, { "key": "16066", "source": "925", "target": "1192", "attributes": { "weight": 1 } }, { "key": "16056", "source": "925", "target": "1167", "attributes": { "weight": 1 } }, { "key": "16128", "source": "925", "target": "405", "attributes": { "weight": 1 } }, { "key": "16110", "source": "925", "target": "1278", "attributes": { "weight": 1 } }, { "key": "16130", "source": "925", "target": "1321", "attributes": { "weight": 1 } }, { "key": "16118", "source": "925", "target": "1296", "attributes": { "weight": 1 } }, { "key": "16042", "source": "925", "target": "933", "attributes": { "weight": 1 } }, { "key": "16131", "source": "925", "target": "1326", "attributes": { "weight": 1 } }, { "key": "16105", "source": "925", "target": "1552", "attributes": { "weight": 4 } }, { "key": "16073", "source": "925", "target": "1047", "attributes": { "weight": 2 } }, { "key": "16088", "source": "925", "target": "1233", "attributes": { "weight": 3 } }, { "key": "16041", "source": "925", "target": "2019", "attributes": { "weight": 1 } }, { "key": "5719", "source": "926", "target": "1090", "attributes": { "weight": 2 } }, { "key": "18873", "source": "926", "target": "124", "attributes": { "weight": 2 } }, { "key": "36653", "source": "926", "target": "1165", "attributes": { "weight": 1 } }, { "key": "18863", "source": "926", "target": "1526", "attributes": { "weight": 2 } }, { "key": "18874", "source": "926", "target": "218", "attributes": { "weight": 2 } }, { "key": "3342", "source": "926", "target": "924", "attributes": { "weight": 2 } }, { "key": "7350", "source": "926", "target": "1047", "attributes": { "weight": 5 } }, { "key": "5714", "source": "926", "target": "779", "attributes": { "weight": 2 } }, { "key": "18865", "source": "926", "target": "199", "attributes": { "weight": 2 } }, { "key": "18862", "source": "926", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18870", "source": "926", "target": "1552", "attributes": { "weight": 2 } }, { "key": "3343", "source": "926", "target": "925", "attributes": { "weight": 3 } }, { "key": "7351", "source": "926", "target": "1232", "attributes": { "weight": 3 } }, { "key": "18869", "source": "926", "target": "208", "attributes": { "weight": 2 } }, { "key": "10246", "source": "926", "target": "1329", "attributes": { "weight": 2 } }, { "key": "7349", "source": "926", "target": "1197", "attributes": { "weight": 5 } }, { "key": "5718", "source": "926", "target": "123", "attributes": { "weight": 8 } }, { "key": "8925", "source": "926", "target": "195", "attributes": { "weight": 9 } }, { "key": "11638", "source": "926", "target": "938", "attributes": { "weight": 1 } }, { "key": "5716", "source": "926", "target": "368", "attributes": { "weight": 6 } }, { "key": "18864", "source": "926", "target": "198", "attributes": { "weight": 2 } }, { "key": "36654", "source": "926", "target": "1294", "attributes": { "weight": 1 } }, { "key": "3340", "source": "926", "target": "370", "attributes": { "weight": 11 } }, { "key": "16150", "source": "926", "target": "912", "attributes": { "weight": 1 } }, { "key": "18872", "source": "926", "target": "1315", "attributes": { "weight": 2 } }, { "key": "7353", "source": "926", "target": "1063", "attributes": { "weight": 2 } }, { "key": "18868", "source": "926", "target": "1263", "attributes": { "weight": 2 } }, { "key": "10245", "source": "926", "target": "338", "attributes": { "weight": 9 } }, { "key": "5715", "source": "926", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5713", "source": "926", "target": "1152", "attributes": { "weight": 3 } }, { "key": "3341", "source": "926", "target": "921", "attributes": { "weight": 3 } }, { "key": "34555", "source": "926", "target": "1182", "attributes": { "weight": 1 } }, { "key": "18867", "source": "926", "target": "337", "attributes": { "weight": 2 } }, { "key": "3339", "source": "926", "target": "913", "attributes": { "weight": 5 } }, { "key": "18866", "source": "926", "target": "1228", "attributes": { "weight": 2 } }, { "key": "34556", "source": "926", "target": "1323", "attributes": { "weight": 1 } }, { "key": "18871", "source": "926", "target": "1269", "attributes": { "weight": 2 } }, { "key": "5717", "source": "926", "target": "371", "attributes": { "weight": 5 } }, { "key": "7352", "source": "926", "target": "1233", "attributes": { "weight": 4 } }, { "key": "16233", "source": "927", "target": "913", "attributes": { "weight": 1 } }, { "key": "6235", "source": "927", "target": "1090", "attributes": { "weight": 2 } }, { "key": "22090", "source": "927", "target": "2301", "attributes": { "weight": 1 } }, { "key": "34690", "source": "927", "target": "123", "attributes": { "weight": 1 } }, { "key": "22091", "source": "927", "target": "2212", "attributes": { "weight": 1 } }, { "key": "6233", "source": "927", "target": "779", "attributes": { "weight": 2 } }, { "key": "6234", "source": "927", "target": "921", "attributes": { "weight": 2 } }, { "key": "3344", "source": "927", "target": "195", "attributes": { "weight": 4 } }, { "key": "34689", "source": "927", "target": "1232", "attributes": { "weight": 1 } }, { "key": "7409", "source": "928", "target": "1063", "attributes": { "weight": 1 } }, { "key": "34815", "source": "928", "target": "1182", "attributes": { "weight": 1 } }, { "key": "6447", "source": "928", "target": "123", "attributes": { "weight": 3 } }, { "key": "6445", "source": "928", "target": "779", "attributes": { "weight": 2 } }, { "key": "16372", "source": "928", "target": "925", "attributes": { "weight": 1 } }, { "key": "6446", "source": "928", "target": "1196", "attributes": { "weight": 2 } }, { "key": "34816", "source": "928", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16371", "source": "928", "target": "921", "attributes": { "weight": 1 } }, { "key": "11723", "source": "928", "target": "370", "attributes": { "weight": 2 } }, { "key": "11724", "source": "928", "target": "208", "attributes": { "weight": 1 } }, { "key": "6444", "source": "928", "target": "938", "attributes": { "weight": 2 } }, { "key": "34817", "source": "928", "target": "1232", "attributes": { "weight": 1 } }, { "key": "3345", "source": "928", "target": "195", "attributes": { "weight": 4 } }, { "key": "6448", "source": "928", "target": "1090", "attributes": { "weight": 2 } }, { "key": "22156", "source": "928", "target": "2301", "attributes": { "weight": 1 } }, { "key": "16370", "source": "928", "target": "913", "attributes": { "weight": 1 } }, { "key": "3346", "source": "929", "target": "916", "attributes": { "weight": 1 } }, { "key": "18311", "source": "930", "target": "1197", "attributes": { "weight": 2 } }, { "key": "34834", "source": "930", "target": "1232", "attributes": { "weight": 1 } }, { "key": "16391", "source": "930", "target": "925", "attributes": { "weight": 1 } }, { "key": "6486", "source": "930", "target": "921", "attributes": { "weight": 3 } }, { "key": "22166", "source": "930", "target": "2212", "attributes": { "weight": 1 } }, { "key": "6488", "source": "930", "target": "1090", "attributes": { "weight": 2 } }, { "key": "6484", "source": "930", "target": "1196", "attributes": { "weight": 2 } }, { "key": "6483", "source": "930", "target": "779", "attributes": { "weight": 2 } }, { "key": "22163", "source": "930", "target": "199", "attributes": { "weight": 1 } }, { "key": "22165", "source": "930", "target": "2301", "attributes": { "weight": 1 } }, { "key": "6487", "source": "930", "target": "123", "attributes": { "weight": 3 } }, { "key": "34835", "source": "930", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16390", "source": "930", "target": "913", "attributes": { "weight": 1 } }, { "key": "3347", "source": "930", "target": "195", "attributes": { "weight": 6 } }, { "key": "22164", "source": "930", "target": "2300", "attributes": { "weight": 1 } }, { "key": "6485", "source": "930", "target": "368", "attributes": { "weight": 2 } }, { "key": "34833", "source": "930", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16395", "source": "931", "target": "912", "attributes": { "weight": 1 } }, { "key": "6502", "source": "931", "target": "338", "attributes": { "weight": 2 } }, { "key": "22168", "source": "931", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22167", "source": "931", "target": "337", "attributes": { "weight": 1 } }, { "key": "6504", "source": "931", "target": "123", "attributes": { "weight": 3 } }, { "key": "34841", "source": "931", "target": "1197", "attributes": { "weight": 1 } }, { "key": "16396", "source": "931", "target": "913", "attributes": { "weight": 1 } }, { "key": "34842", "source": "931", "target": "1047", "attributes": { "weight": 1 } }, { "key": "6503", "source": "931", "target": "921", "attributes": { "weight": 2 } }, { "key": "16397", "source": "931", "target": "925", "attributes": { "weight": 1 } }, { "key": "3348", "source": "931", "target": "195", "attributes": { "weight": 5 } }, { "key": "6501", "source": "931", "target": "368", "attributes": { "weight": 2 } }, { "key": "34843", "source": "931", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6500", "source": "931", "target": "779", "attributes": { "weight": 2 } }, { "key": "3352", "source": "932", "target": "952", "attributes": { "weight": 1 } }, { "key": "3350", "source": "932", "target": "942", "attributes": { "weight": 1 } }, { "key": "3351", "source": "932", "target": "947", "attributes": { "weight": 1 } }, { "key": "32282", "source": "932", "target": "945", "attributes": { "weight": 1 } }, { "key": "3349", "source": "932", "target": "938", "attributes": { "weight": 1 } }, { "key": "32283", "source": "932", "target": "3090", "attributes": { "weight": 1 } }, { "key": "4277", "source": "933", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15431", "source": "933", "target": "913", "attributes": { "weight": 1 } }, { "key": "33853", "source": "933", "target": "1232", "attributes": { "weight": 1 } }, { "key": "3353", "source": "933", "target": "938", "attributes": { "weight": 1 } }, { "key": "3354", "source": "933", "target": "951", "attributes": { "weight": 1 } }, { "key": "18556", "source": "933", "target": "218", "attributes": { "weight": 2 } }, { "key": "18552", "source": "933", "target": "1174", "attributes": { "weight": 2 } }, { "key": "3355", "source": "933", "target": "954", "attributes": { "weight": 1 } }, { "key": "36457", "source": "933", "target": "208", "attributes": { "weight": 1 } }, { "key": "33852", "source": "933", "target": "1182", "attributes": { "weight": 1 } }, { "key": "18554", "source": "933", "target": "199", "attributes": { "weight": 2 } }, { "key": "4276", "source": "933", "target": "1196", "attributes": { "weight": 2 } }, { "key": "33854", "source": "933", "target": "123", "attributes": { "weight": 1 } }, { "key": "18555", "source": "933", "target": "1552", "attributes": { "weight": 2 } }, { "key": "4275", "source": "933", "target": "779", "attributes": { "weight": 2 } }, { "key": "8266", "source": "933", "target": "195", "attributes": { "weight": 5 } }, { "key": "18553", "source": "933", "target": "1047", "attributes": { "weight": 2 } }, { "key": "36456", "source": "933", "target": "337", "attributes": { "weight": 1 } }, { "key": "15432", "source": "933", "target": "925", "attributes": { "weight": 1 } }, { "key": "3356", "source": "934", "target": "938", "attributes": { "weight": 1 } }, { "key": "30034", "source": "935", "target": "257", "attributes": { "weight": 2 } }, { "key": "26803", "source": "935", "target": "963", "attributes": { "weight": 1 } }, { "key": "26802", "source": "935", "target": "248", "attributes": { "weight": 1 } }, { "key": "3357", "source": "935", "target": "961", "attributes": { "weight": 2 } }, { "key": "3358", "source": "936", "target": "938", "attributes": { "weight": 1 } }, { "key": "3362", "source": "937", "target": "955", "attributes": { "weight": 1 } }, { "key": "10170", "source": "937", "target": "1291", "attributes": { "weight": 1 } }, { "key": "3359", "source": "937", "target": "943", "attributes": { "weight": 1 } }, { "key": "21853", "source": "937", "target": "337", "attributes": { "weight": 1 } }, { "key": "3363", "source": "937", "target": "960", "attributes": { "weight": 1 } }, { "key": "33883", "source": "937", "target": "1197", "attributes": { "weight": 1 } }, { "key": "3360", "source": "937", "target": "944", "attributes": { "weight": 1 } }, { "key": "10171", "source": "937", "target": "1322", "attributes": { "weight": 1 } }, { "key": "3361", "source": "937", "target": "946", "attributes": { "weight": 1 } }, { "key": "15527", "source": "937", "target": "1329", "attributes": { "weight": 1 } }, { "key": "15526", "source": "937", "target": "925", "attributes": { "weight": 1 } }, { "key": "21852", "source": "937", "target": "2293", "attributes": { "weight": 1 } }, { "key": "36496", "source": "938", "target": "124", "attributes": { "weight": 1 } }, { "key": "11465", "source": "938", "target": "254", "attributes": { "weight": 1 } }, { "key": "4396", "source": "938", "target": "371", "attributes": { "weight": 2 } }, { "key": "4387", "source": "938", "target": "387", "attributes": { "weight": 5 } }, { "key": "3372", "source": "938", "target": "958", "attributes": { "weight": 1 } }, { "key": "3368", "source": "938", "target": "947", "attributes": { "weight": 1 } }, { "key": "26406", "source": "938", "target": "454", "attributes": { "weight": 2 } }, { "key": "15548", "source": "938", "target": "1236", "attributes": { "weight": 1 } }, { "key": "15550", "source": "938", "target": "1279", "attributes": { "weight": 2 } }, { "key": "11457", "source": "938", "target": "926", "attributes": { "weight": 2 } }, { "key": "4407", "source": "938", "target": "928", "attributes": { "weight": 2 } }, { "key": "3371", "source": "938", "target": "957", "attributes": { "weight": 1 } }, { "key": "11449", "source": "938", "target": "1047", "attributes": { "weight": 2 } }, { "key": "4388", "source": "938", "target": "1196", "attributes": { "weight": 3 } }, { "key": "10182", "source": "938", "target": "1238", "attributes": { "weight": 2 } }, { "key": "11453", "source": "938", "target": "205", "attributes": { "weight": 2 } }, { "key": "11450", "source": "938", "target": "199", "attributes": { "weight": 2 } }, { "key": "36495", "source": "938", "target": "1269", "attributes": { "weight": 1 } }, { "key": "15549", "source": "938", "target": "925", "attributes": { "weight": 2 } }, { "key": "17149", "source": "938", "target": "449", "attributes": { "weight": 2 } }, { "key": "18583", "source": "938", "target": "1176", "attributes": { "weight": 2 } }, { "key": "11469", "source": "938", "target": "1334", "attributes": { "weight": 1 } }, { "key": "28545", "source": "938", "target": "2780", "attributes": { "weight": 1 } }, { "key": "11467", "source": "938", "target": "1326", "attributes": { "weight": 1 } }, { "key": "4386", "source": "938", "target": "779", "attributes": { "weight": 3 } }, { "key": "11020", "source": "938", "target": "452", "attributes": { "weight": 2 } }, { "key": "11454", "source": "938", "target": "337", "attributes": { "weight": 2 } }, { "key": "11447", "source": "938", "target": "913", "attributes": { "weight": 2 } }, { "key": "3370", "source": "938", "target": "952", "attributes": { "weight": 1 } }, { "key": "11472", "source": "938", "target": "218", "attributes": { "weight": 1 } }, { "key": "10184", "source": "938", "target": "1692", "attributes": { "weight": 2 } }, { "key": "4401", "source": "938", "target": "1294", "attributes": { "weight": 3 } }, { "key": "4391", "source": "938", "target": "338", "attributes": { "weight": 7 } }, { "key": "26407", "source": "938", "target": "189", "attributes": { "weight": 2 } }, { "key": "3365", "source": "938", "target": "933", "attributes": { "weight": 1 } }, { "key": "11452", "source": "938", "target": "1232", "attributes": { "weight": 2 } }, { "key": "11442", "source": "938", "target": "236", "attributes": { "weight": 1 } }, { "key": "11448", "source": "938", "target": "358", "attributes": { "weight": 2 } }, { "key": "3374", "source": "938", "target": "962", "attributes": { "weight": 1 } }, { "key": "11458", "source": "938", "target": "1281", "attributes": { "weight": 2 } }, { "key": "7222", "source": "938", "target": "1350", "attributes": { "weight": 2 } }, { "key": "27219", "source": "938", "target": "57", "attributes": { "weight": 2 } }, { "key": "4389", "source": "938", "target": "368", "attributes": { "weight": 4 } }, { "key": "4395", "source": "938", "target": "923", "attributes": { "weight": 2 } }, { "key": "8473", "source": "938", "target": "442", "attributes": { "weight": 3 } }, { "key": "11468", "source": "938", "target": "961", "attributes": { "weight": 1 } }, { "key": "3366", "source": "938", "target": "934", "attributes": { "weight": 1 } }, { "key": "11451", "source": "938", "target": "1228", "attributes": { "weight": 2 } }, { "key": "11445", "source": "938", "target": "1180", "attributes": { "weight": 2 } }, { "key": "17150", "source": "938", "target": "2111", "attributes": { "weight": 1 } }, { "key": "4397", "source": "938", "target": "580", "attributes": { "weight": 2 } }, { "key": "4394", "source": "938", "target": "471", "attributes": { "weight": 4 } }, { "key": "3367", "source": "938", "target": "936", "attributes": { "weight": 1 } }, { "key": "3369", "source": "938", "target": "949", "attributes": { "weight": 1 } }, { "key": "4385", "source": "938", "target": "1172", "attributes": { "weight": 3 } }, { "key": "15547", "source": "938", "target": "912", "attributes": { "weight": 1 } }, { "key": "11460", "source": "938", "target": "990", "attributes": { "weight": 2 } }, { "key": "11463", "source": "938", "target": "215", "attributes": { "weight": 1 } }, { "key": "15546", "source": "938", "target": "1184", "attributes": { "weight": 1 } }, { "key": "4402", "source": "938", "target": "1296", "attributes": { "weight": 3 } }, { "key": "14017", "source": "938", "target": "1031", "attributes": { "weight": 2 } }, { "key": "10183", "source": "938", "target": "1691", "attributes": { "weight": 2 } }, { "key": "30754", "source": "938", "target": "470", "attributes": { "weight": 2 } }, { "key": "15544", "source": "938", "target": "220", "attributes": { "weight": 2 } }, { "key": "11455", "source": "938", "target": "1251", "attributes": { "weight": 1 } }, { "key": "11456", "source": "938", "target": "208", "attributes": { "weight": 4 } }, { "key": "36493", "source": "938", "target": "1165", "attributes": { "weight": 1 } }, { "key": "18584", "source": "938", "target": "1552", "attributes": { "weight": 2 } }, { "key": "11464", "source": "938", "target": "1316", "attributes": { "weight": 1 } }, { "key": "11470", "source": "938", "target": "963", "attributes": { "weight": 1 } }, { "key": "4406", "source": "938", "target": "1322", "attributes": { "weight": 3 } }, { "key": "4405", "source": "938", "target": "1315", "attributes": { "weight": 3 } }, { "key": "11443", "source": "938", "target": "1152", "attributes": { "weight": 1 } }, { "key": "15545", "source": "938", "target": "1155", "attributes": { "weight": 1 } }, { "key": "11462", "source": "938", "target": "1305", "attributes": { "weight": 2 } }, { "key": "8472", "source": "938", "target": "195", "attributes": { "weight": 7 } }, { "key": "4404", "source": "938", "target": "1309", "attributes": { "weight": 2 } }, { "key": "15551", "source": "938", "target": "1329", "attributes": { "weight": 1 } }, { "key": "11461", "source": "938", "target": "372", "attributes": { "weight": 1 } }, { "key": "35538", "source": "938", "target": "1710", "attributes": { "weight": 1 } }, { "key": "3373", "source": "938", "target": "959", "attributes": { "weight": 1 } }, { "key": "11444", "source": "938", "target": "1174", "attributes": { "weight": 3 } }, { "key": "11466", "source": "938", "target": "1323", "attributes": { "weight": 3 } }, { "key": "30755", "source": "938", "target": "1370", "attributes": { "weight": 2 } }, { "key": "33896", "source": "938", "target": "1182", "attributes": { "weight": 1 } }, { "key": "11471", "source": "938", "target": "257", "attributes": { "weight": 1 } }, { "key": "4400", "source": "938", "target": "1090", "attributes": { "weight": 3 } }, { "key": "29534", "source": "938", "target": "1415", "attributes": { "weight": 1 } }, { "key": "4398", "source": "938", "target": "123", "attributes": { "weight": 5 } }, { "key": "11446", "source": "938", "target": "1197", "attributes": { "weight": 3 } }, { "key": "4403", "source": "938", "target": "1307", "attributes": { "weight": 4 } }, { "key": "11459", "source": "938", "target": "212", "attributes": { "weight": 1 } }, { "key": "3364", "source": "938", "target": "932", "attributes": { "weight": 1 } }, { "key": "36494", "source": "938", "target": "1263", "attributes": { "weight": 1 } }, { "key": "7225", "source": "938", "target": "1063", "attributes": { "weight": 2 } }, { "key": "4392", "source": "938", "target": "921", "attributes": { "weight": 3 } }, { "key": "33897", "source": "938", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4393", "source": "938", "target": "468", "attributes": { "weight": 9 } }, { "key": "7223", "source": "938", "target": "375", "attributes": { "weight": 2 } }, { "key": "4399", "source": "938", "target": "1291", "attributes": { "weight": 3 } }, { "key": "4390", "source": "938", "target": "370", "attributes": { "weight": 4 } }, { "key": "7224", "source": "938", "target": "154", "attributes": { "weight": 2 } }, { "key": "18442", "source": "938", "target": "1738", "attributes": { "weight": 1 } }, { "key": "3375", "source": "939", "target": "124", "attributes": { "weight": 1 } }, { "key": "3376", "source": "940", "target": "961", "attributes": { "weight": 1 } }, { "key": "37309", "source": "941", "target": "589", "attributes": { "weight": 1 } }, { "key": "26813", "source": "941", "target": "257", "attributes": { "weight": 4 } }, { "key": "3377", "source": "941", "target": "961", "attributes": { "weight": 3 } }, { "key": "37090", "source": "941", "target": "250", "attributes": { "weight": 2 } }, { "key": "3378", "source": "941", "target": "963", "attributes": { "weight": 2 } }, { "key": "3381", "source": "942", "target": "952", "attributes": { "weight": 1 } }, { "key": "3379", "source": "942", "target": "932", "attributes": { "weight": 1 } }, { "key": "3380", "source": "942", "target": "945", "attributes": { "weight": 1 } }, { "key": "3382", "source": "943", "target": "937", "attributes": { "weight": 1 } }, { "key": "3383", "source": "944", "target": "937", "attributes": { "weight": 1 } }, { "key": "11537", "source": "945", "target": "215", "attributes": { "weight": 1 } }, { "key": "11535", "source": "945", "target": "208", "attributes": { "weight": 2 } }, { "key": "5117", "source": "945", "target": "123", "attributes": { "weight": 3 } }, { "key": "11538", "source": "945", "target": "218", "attributes": { "weight": 1 } }, { "key": "5115", "source": "945", "target": "779", "attributes": { "weight": 2 } }, { "key": "3386", "source": "945", "target": "952", "attributes": { "weight": 1 } }, { "key": "11536", "source": "945", "target": "212", "attributes": { "weight": 1 } }, { "key": "5116", "source": "945", "target": "1196", "attributes": { "weight": 2 } }, { "key": "11534", "source": "945", "target": "199", "attributes": { "weight": 1 } }, { "key": "3385", "source": "945", "target": "949", "attributes": { "weight": 1 } }, { "key": "32284", "source": "945", "target": "932", "attributes": { "weight": 1 } }, { "key": "15833", "source": "945", "target": "913", "attributes": { "weight": 1 } }, { "key": "5118", "source": "945", "target": "1090", "attributes": { "weight": 2 } }, { "key": "8768", "source": "945", "target": "195", "attributes": { "weight": 3 } }, { "key": "3384", "source": "945", "target": "947", "attributes": { "weight": 1 } }, { "key": "3387", "source": "946", "target": "937", "attributes": { "weight": 1 } }, { "key": "3389", "source": "947", "target": "938", "attributes": { "weight": 1 } }, { "key": "3388", "source": "947", "target": "932", "attributes": { "weight": 1 } }, { "key": "3390", "source": "948", "target": "124", "attributes": { "weight": 1 } }, { "key": "3391", "source": "949", "target": "938", "attributes": { "weight": 1 } }, { "key": "3392", "source": "949", "target": "945", "attributes": { "weight": 1 } }, { "key": "3393", "source": "950", "target": "961", "attributes": { "weight": 1 } }, { "key": "3394", "source": "951", "target": "933", "attributes": { "weight": 1 } }, { "key": "3395", "source": "952", "target": "932", "attributes": { "weight": 1 } }, { "key": "3396", "source": "952", "target": "938", "attributes": { "weight": 1 } }, { "key": "3397", "source": "952", "target": "942", "attributes": { "weight": 1 } }, { "key": "3398", "source": "952", "target": "945", "attributes": { "weight": 1 } }, { "key": "3399", "source": "953", "target": "124", "attributes": { "weight": 1 } }, { "key": "3401", "source": "954", "target": "933", "attributes": { "weight": 1 } }, { "key": "3402", "source": "955", "target": "937", "attributes": { "weight": 1 } }, { "key": "22017", "source": "956", "target": "2212", "attributes": { "weight": 1 } }, { "key": "3403", "source": "956", "target": "124", "attributes": { "weight": 1 } }, { "key": "3404", "source": "957", "target": "938", "attributes": { "weight": 1 } }, { "key": "3405", "source": "958", "target": "938", "attributes": { "weight": 1 } }, { "key": "3406", "source": "959", "target": "938", "attributes": { "weight": 1 } }, { "key": "3407", "source": "960", "target": "937", "attributes": { "weight": 1 } }, { "key": "25455", "source": "961", "target": "1381", "attributes": { "weight": 1 } }, { "key": "11698", "source": "961", "target": "1196", "attributes": { "weight": 1 } }, { "key": "11697", "source": "961", "target": "938", "attributes": { "weight": 1 } }, { "key": "11706", "source": "961", "target": "1334", "attributes": { "weight": 2 } }, { "key": "11699", "source": "961", "target": "1047", "attributes": { "weight": 2 } }, { "key": "3412", "source": "961", "target": "589", "attributes": { "weight": 3 } }, { "key": "25457", "source": "961", "target": "1298", "attributes": { "weight": 1 } }, { "key": "26820", "source": "961", "target": "248", "attributes": { "weight": 1 } }, { "key": "34788", "source": "961", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6376", "source": "961", "target": "370", "attributes": { "weight": 5 } }, { "key": "11701", "source": "961", "target": "205", "attributes": { "weight": 1 } }, { "key": "36771", "source": "961", "target": "1063", "attributes": { "weight": 1 } }, { "key": "11700", "source": "961", "target": "199", "attributes": { "weight": 4 } }, { "key": "3409", "source": "961", "target": "940", "attributes": { "weight": 1 } }, { "key": "6375", "source": "961", "target": "251", "attributes": { "weight": 2 } }, { "key": "6373", "source": "961", "target": "368", "attributes": { "weight": 2 } }, { "key": "12059", "source": "961", "target": "1328", "attributes": { "weight": 1 } }, { "key": "9074", "source": "961", "target": "195", "attributes": { "weight": 8 } }, { "key": "11703", "source": "961", "target": "212", "attributes": { "weight": 1 } }, { "key": "11708", "source": "961", "target": "218", "attributes": { "weight": 2 } }, { "key": "3410", "source": "961", "target": "941", "attributes": { "weight": 4 } }, { "key": "18950", "source": "961", "target": "1288", "attributes": { "weight": 1 } }, { "key": "11702", "source": "961", "target": "208", "attributes": { "weight": 4 } }, { "key": "32287", "source": "961", "target": "253", "attributes": { "weight": 1 } }, { "key": "34789", "source": "961", "target": "1233", "attributes": { "weight": 1 } }, { "key": "3415", "source": "961", "target": "967", "attributes": { "weight": 3 } }, { "key": "36726", "source": "961", "target": "1174", "attributes": { "weight": 1 } }, { "key": "6374", "source": "961", "target": "250", "attributes": { "weight": 4 } }, { "key": "6379", "source": "961", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11696", "source": "961", "target": "1156", "attributes": { "weight": 1 } }, { "key": "6372", "source": "961", "target": "779", "attributes": { "weight": 2 } }, { "key": "3408", "source": "961", "target": "935", "attributes": { "weight": 2 } }, { "key": "6378", "source": "961", "target": "123", "attributes": { "weight": 4 } }, { "key": "11707", "source": "961", "target": "257", "attributes": { "weight": 3 } }, { "key": "6377", "source": "961", "target": "371", "attributes": { "weight": 2 } }, { "key": "3416", "source": "961", "target": "968", "attributes": { "weight": 5 } }, { "key": "3414", "source": "961", "target": "964", "attributes": { "weight": 3 } }, { "key": "15367", "source": "961", "target": "454", "attributes": { "weight": 1 } }, { "key": "3413", "source": "961", "target": "963", "attributes": { "weight": 4 } }, { "key": "25456", "source": "961", "target": "990", "attributes": { "weight": 1 } }, { "key": "6380", "source": "961", "target": "252", "attributes": { "weight": 2 } }, { "key": "11705", "source": "961", "target": "254", "attributes": { "weight": 2 } }, { "key": "3411", "source": "961", "target": "950", "attributes": { "weight": 1 } }, { "key": "11704", "source": "961", "target": "372", "attributes": { "weight": 2 } }, { "key": "16281", "source": "961", "target": "913", "attributes": { "weight": 1 } }, { "key": "14122", "source": "961", "target": "1031", "attributes": { "weight": 1 } }, { "key": "12058", "source": "961", "target": "781", "attributes": { "weight": 1 } }, { "key": "10781", "source": "961", "target": "43", "attributes": { "weight": 1 } }, { "key": "6371", "source": "961", "target": "778", "attributes": { "weight": 1 } }, { "key": "3417", "source": "962", "target": "938", "attributes": { "weight": 1 } }, { "key": "37313", "source": "963", "target": "967", "attributes": { "weight": 1 } }, { "key": "26827", "source": "963", "target": "257", "attributes": { "weight": 2 } }, { "key": "34810", "source": "963", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6421", "source": "963", "target": "371", "attributes": { "weight": 3 } }, { "key": "3425", "source": "963", "target": "961", "attributes": { "weight": 5 } }, { "key": "26826", "source": "963", "target": "935", "attributes": { "weight": 1 } }, { "key": "28606", "source": "963", "target": "199", "attributes": { "weight": 1 } }, { "key": "37312", "source": "963", "target": "589", "attributes": { "weight": 1 } }, { "key": "32288", "source": "963", "target": "253", "attributes": { "weight": 1 } }, { "key": "6420", "source": "963", "target": "370", "attributes": { "weight": 4 } }, { "key": "3424", "source": "963", "target": "941", "attributes": { "weight": 2 } }, { "key": "6419", "source": "963", "target": "779", "attributes": { "weight": 2 } }, { "key": "34809", "source": "963", "target": "1047", "attributes": { "weight": 1 } }, { "key": "9093", "source": "963", "target": "195", "attributes": { "weight": 3 } }, { "key": "34811", "source": "963", "target": "123", "attributes": { "weight": 1 } }, { "key": "3426", "source": "963", "target": "964", "attributes": { "weight": 2 } }, { "key": "6422", "source": "963", "target": "1090", "attributes": { "weight": 2 } }, { "key": "37311", "source": "963", "target": "250", "attributes": { "weight": 1 } }, { "key": "3429", "source": "964", "target": "968", "attributes": { "weight": 1 } }, { "key": "6423", "source": "964", "target": "371", "attributes": { "weight": 2 } }, { "key": "3427", "source": "964", "target": "961", "attributes": { "weight": 3 } }, { "key": "26828", "source": "964", "target": "257", "attributes": { "weight": 1 } }, { "key": "3428", "source": "964", "target": "963", "attributes": { "weight": 2 } }, { "key": "3430", "source": "965", "target": "124", "attributes": { "weight": 1 } }, { "key": "3431", "source": "966", "target": "124", "attributes": { "weight": 1 } }, { "key": "37314", "source": "967", "target": "963", "attributes": { "weight": 1 } }, { "key": "3432", "source": "967", "target": "961", "attributes": { "weight": 3 } }, { "key": "3433", "source": "968", "target": "961", "attributes": { "weight": 5 } }, { "key": "3434", "source": "968", "target": "964", "attributes": { "weight": 1 } }, { "key": "3436", "source": "969", "target": "979", "attributes": { "weight": 1 } }, { "key": "3435", "source": "969", "target": "333", "attributes": { "weight": 1 } }, { "key": "7473", "source": "970", "target": "377", "attributes": { "weight": 2 } }, { "key": "3442", "source": "970", "target": "976", "attributes": { "weight": 1 } }, { "key": "3441", "source": "970", "target": "333", "attributes": { "weight": 2 } }, { "key": "3443", "source": "971", "target": "377", "attributes": { "weight": 1 } }, { "key": "3445", "source": "972", "target": "373", "attributes": { "weight": 1 } }, { "key": "3446", "source": "972", "target": "973", "attributes": { "weight": 1 } }, { "key": "3447", "source": "973", "target": "373", "attributes": { "weight": 1 } }, { "key": "3448", "source": "973", "target": "972", "attributes": { "weight": 1 } }, { "key": "3450", "source": "974", "target": "849", "attributes": { "weight": 2 } }, { "key": "3449", "source": "974", "target": "333", "attributes": { "weight": 2 } }, { "key": "3455", "source": "975", "target": "373", "attributes": { "weight": 1 } }, { "key": "3457", "source": "975", "target": "979", "attributes": { "weight": 1 } }, { "key": "7641", "source": "975", "target": "333", "attributes": { "weight": 2 } }, { "key": "3456", "source": "975", "target": "976", "attributes": { "weight": 1 } }, { "key": "36808", "source": "975", "target": "377", "attributes": { "weight": 1 } }, { "key": "3459", "source": "976", "target": "374", "attributes": { "weight": 1 } }, { "key": "3462", "source": "976", "target": "377", "attributes": { "weight": 2 } }, { "key": "3464", "source": "976", "target": "979", "attributes": { "weight": 1 } }, { "key": "3458", "source": "976", "target": "970", "attributes": { "weight": 1 } }, { "key": "3461", "source": "976", "target": "977", "attributes": { "weight": 1 } }, { "key": "3460", "source": "976", "target": "975", "attributes": { "weight": 1 } }, { "key": "7642", "source": "976", "target": "333", "attributes": { "weight": 2 } }, { "key": "3463", "source": "976", "target": "978", "attributes": { "weight": 1 } }, { "key": "12358", "source": "977", "target": "978", "attributes": { "weight": 1 } }, { "key": "7643", "source": "977", "target": "333", "attributes": { "weight": 3 } }, { "key": "3465", "source": "977", "target": "976", "attributes": { "weight": 1 } }, { "key": "3468", "source": "978", "target": "976", "attributes": { "weight": 1 } }, { "key": "12359", "source": "978", "target": "977", "attributes": { "weight": 1 } }, { "key": "7677", "source": "978", "target": "333", "attributes": { "weight": 2 } }, { "key": "3470", "source": "979", "target": "975", "attributes": { "weight": 1 } }, { "key": "3471", "source": "979", "target": "976", "attributes": { "weight": 1 } }, { "key": "3469", "source": "979", "target": "969", "attributes": { "weight": 1 } }, { "key": "3505", "source": "986", "target": "631", "attributes": { "weight": 2 } }, { "key": "3521", "source": "989", "target": "991", "attributes": { "weight": 1 } }, { "key": "25439", "source": "989", "target": "2591", "attributes": { "weight": 1 } }, { "key": "3520", "source": "989", "target": "990", "attributes": { "weight": 2 } }, { "key": "25443", "source": "990", "target": "2590", "attributes": { "weight": 2 } }, { "key": "34652", "source": "990", "target": "1047", "attributes": { "weight": 1 } }, { "key": "25445", "source": "990", "target": "783", "attributes": { "weight": 1 } }, { "key": "16196", "source": "990", "target": "195", "attributes": { "weight": 1 } }, { "key": "25447", "source": "990", "target": "254", "attributes": { "weight": 1 } }, { "key": "11655", "source": "990", "target": "938", "attributes": { "weight": 2 } }, { "key": "7379", "source": "990", "target": "1063", "attributes": { "weight": 2 } }, { "key": "3522", "source": "990", "target": "989", "attributes": { "weight": 2 } }, { "key": "12024", "source": "990", "target": "1281", "attributes": { "weight": 3 } }, { "key": "25446", "source": "990", "target": "1298", "attributes": { "weight": 1 } }, { "key": "25449", "source": "990", "target": "1334", "attributes": { "weight": 1 } }, { "key": "25450", "source": "990", "target": "2591", "attributes": { "weight": 1 } }, { "key": "11656", "source": "990", "target": "370", "attributes": { "weight": 2 } }, { "key": "7378", "source": "990", "target": "154", "attributes": { "weight": 1 } }, { "key": "25444", "source": "990", "target": "780", "attributes": { "weight": 1 } }, { "key": "6170", "source": "990", "target": "779", "attributes": { "weight": 2 } }, { "key": "6171", "source": "990", "target": "368", "attributes": { "weight": 2 } }, { "key": "6172", "source": "990", "target": "371", "attributes": { "weight": 2 } }, { "key": "6173", "source": "990", "target": "1090", "attributes": { "weight": 2 } }, { "key": "25448", "source": "990", "target": "961", "attributes": { "weight": 1 } }, { "key": "3523", "source": "991", "target": "989", "attributes": { "weight": 1 } }, { "key": "3525", "source": "992", "target": "1017", "attributes": { "weight": 1 } }, { "key": "14011", "source": "993", "target": "1031", "attributes": { "weight": 1 } }, { "key": "3526", "source": "993", "target": "1014", "attributes": { "weight": 1 } }, { "key": "14009", "source": "993", "target": "782", "attributes": { "weight": 1 } }, { "key": "14007", "source": "993", "target": "44", "attributes": { "weight": 2 } }, { "key": "14010", "source": "993", "target": "1726", "attributes": { "weight": 1 } }, { "key": "10584", "source": "993", "target": "43", "attributes": { "weight": 3 } }, { "key": "14006", "source": "993", "target": "1716", "attributes": { "weight": 1 } }, { "key": "14008", "source": "993", "target": "1718", "attributes": { "weight": 1 } }, { "key": "3528", "source": "994", "target": "999", "attributes": { "weight": 3 } }, { "key": "3527", "source": "994", "target": "43", "attributes": { "weight": 1 } }, { "key": "3529", "source": "995", "target": "43", "attributes": { "weight": 2 } }, { "key": "3549", "source": "996", "target": "999", "attributes": { "weight": 1 } }, { "key": "3550", "source": "997", "target": "43", "attributes": { "weight": 2 } }, { "key": "3554", "source": "998", "target": "43", "attributes": { "weight": 2 } }, { "key": "26211", "source": "999", "target": "1726", "attributes": { "weight": 1 } }, { "key": "26209", "source": "999", "target": "1722", "attributes": { "weight": 1 } }, { "key": "3557", "source": "999", "target": "996", "attributes": { "weight": 1 } }, { "key": "3555", "source": "999", "target": "994", "attributes": { "weight": 3 } }, { "key": "26210", "source": "999", "target": "1723", "attributes": { "weight": 1 } }, { "key": "3556", "source": "999", "target": "43", "attributes": { "weight": 1 } }, { "key": "3559", "source": "999", "target": "1020", "attributes": { "weight": 2 } }, { "key": "3558", "source": "999", "target": "1009", "attributes": { "weight": 1 } }, { "key": "3560", "source": "1000", "target": "43", "attributes": { "weight": 2 } }, { "key": "3561", "source": "1001", "target": "44", "attributes": { "weight": 2 } }, { "key": "3562", "source": "1002", "target": "43", "attributes": { "weight": 1 } }, { "key": "3566", "source": "1004", "target": "1006", "attributes": { "weight": 1 } }, { "key": "10692", "source": "1004", "target": "43", "attributes": { "weight": 3 } }, { "key": "3569", "source": "1006", "target": "1004", "attributes": { "weight": 1 } }, { "key": "3570", "source": "1007", "target": "1013", "attributes": { "weight": 1 } }, { "key": "3571", "source": "1008", "target": "43", "attributes": { "weight": 1 } }, { "key": "3572", "source": "1008", "target": "1022", "attributes": { "weight": 2 } }, { "key": "3573", "source": "1009", "target": "999", "attributes": { "weight": 1 } }, { "key": "3575", "source": "1010", "target": "1022", "attributes": { "weight": 1 } }, { "key": "3574", "source": "1010", "target": "43", "attributes": { "weight": 2 } }, { "key": "3576", "source": "1011", "target": "43", "attributes": { "weight": 2 } }, { "key": "3577", "source": "1011", "target": "1022", "attributes": { "weight": 1 } }, { "key": "3578", "source": "1012", "target": "43", "attributes": { "weight": 2 } }, { "key": "10736", "source": "1012", "target": "44", "attributes": { "weight": 1 } }, { "key": "3580", "source": "1013", "target": "44", "attributes": { "weight": 1 } }, { "key": "3581", "source": "1013", "target": "1007", "attributes": { "weight": 1 } }, { "key": "3579", "source": "1013", "target": "43", "attributes": { "weight": 2 } }, { "key": "3582", "source": "1014", "target": "993", "attributes": { "weight": 1 } }, { "key": "3584", "source": "1015", "target": "1019", "attributes": { "weight": 1 } }, { "key": "3583", "source": "1015", "target": "43", "attributes": { "weight": 1 } }, { "key": "3585", "source": "1016", "target": "43", "attributes": { "weight": 2 } }, { "key": "3587", "source": "1017", "target": "43", "attributes": { "weight": 1 } }, { "key": "3586", "source": "1017", "target": "992", "attributes": { "weight": 1 } }, { "key": "3589", "source": "1019", "target": "43", "attributes": { "weight": 1 } }, { "key": "3590", "source": "1019", "target": "1015", "attributes": { "weight": 1 } }, { "key": "3592", "source": "1020", "target": "44", "attributes": { "weight": 1 } }, { "key": "3593", "source": "1020", "target": "999", "attributes": { "weight": 2 } }, { "key": "3591", "source": "1020", "target": "43", "attributes": { "weight": 3 } }, { "key": "3594", "source": "1021", "target": "43", "attributes": { "weight": 1 } }, { "key": "3597", "source": "1022", "target": "1008", "attributes": { "weight": 2 } }, { "key": "3599", "source": "1022", "target": "1011", "attributes": { "weight": 1 } }, { "key": "3595", "source": "1022", "target": "43", "attributes": { "weight": 3 } }, { "key": "3598", "source": "1022", "target": "1010", "attributes": { "weight": 1 } }, { "key": "19577", "source": "1023", "target": "231", "attributes": { "weight": 1 } }, { "key": "35862", "source": "1023", "target": "497", "attributes": { "weight": 1 } }, { "key": "19552", "source": "1023", "target": "1756", "attributes": { "weight": 1 } }, { "key": "19574", "source": "1023", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19560", "source": "1023", "target": "440", "attributes": { "weight": 1 } }, { "key": "35859", "source": "1023", "target": "1092", "attributes": { "weight": 1 } }, { "key": "19592", "source": "1023", "target": "1390", "attributes": { "weight": 2 } }, { "key": "19595", "source": "1023", "target": "2278", "attributes": { "weight": 1 } }, { "key": "19587", "source": "1023", "target": "234", "attributes": { "weight": 1 } }, { "key": "35856", "source": "1023", "target": "465", "attributes": { "weight": 1 } }, { "key": "19569", "source": "1023", "target": "464", "attributes": { "weight": 1 } }, { "key": "3603", "source": "1023", "target": "1025", "attributes": { "weight": 1 } }, { "key": "19551", "source": "1023", "target": "429", "attributes": { "weight": 1 } }, { "key": "19573", "source": "1023", "target": "230", "attributes": { "weight": 1 } }, { "key": "19593", "source": "1023", "target": "2276", "attributes": { "weight": 1 } }, { "key": "19566", "source": "1023", "target": "227", "attributes": { "weight": 1 } }, { "key": "19556", "source": "1023", "target": "221", "attributes": { "weight": 1 } }, { "key": "19582", "source": "1023", "target": "1560", "attributes": { "weight": 1 } }, { "key": "25465", "source": "1023", "target": "2270", "attributes": { "weight": 1 } }, { "key": "19578", "source": "1023", "target": "480", "attributes": { "weight": 1 } }, { "key": "35858", "source": "1023", "target": "478", "attributes": { "weight": 1 } }, { "key": "19557", "source": "1023", "target": "222", "attributes": { "weight": 1 } }, { "key": "19585", "source": "1023", "target": "1374", "attributes": { "weight": 1 } }, { "key": "35863", "source": "1023", "target": "498", "attributes": { "weight": 1 } }, { "key": "19563", "source": "1023", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19558", "source": "1023", "target": "439", "attributes": { "weight": 1 } }, { "key": "19561", "source": "1023", "target": "2242", "attributes": { "weight": 1 } }, { "key": "19559", "source": "1023", "target": "2025", "attributes": { "weight": 1 } }, { "key": "19562", "source": "1023", "target": "441", "attributes": { "weight": 1 } }, { "key": "19576", "source": "1023", "target": "1708", "attributes": { "weight": 1 } }, { "key": "19565", "source": "1023", "target": "451", "attributes": { "weight": 1 } }, { "key": "19553", "source": "1023", "target": "1354", "attributes": { "weight": 1 } }, { "key": "19584", "source": "1023", "target": "2111", "attributes": { "weight": 1 } }, { "key": "19570", "source": "1023", "target": "470", "attributes": { "weight": 1 } }, { "key": "19554", "source": "1023", "target": "130", "attributes": { "weight": 1 } }, { "key": "35860", "source": "1023", "target": "1776", "attributes": { "weight": 1 } }, { "key": "19572", "source": "1023", "target": "472", "attributes": { "weight": 1 } }, { "key": "19586", "source": "1023", "target": "56", "attributes": { "weight": 1 } }, { "key": "35855", "source": "1023", "target": "1360", "attributes": { "weight": 1 } }, { "key": "19571", "source": "1023", "target": "471", "attributes": { "weight": 1 } }, { "key": "19568", "source": "1023", "target": "1998", "attributes": { "weight": 1 } }, { "key": "19575", "source": "1023", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19550", "source": "1023", "target": "1353", "attributes": { "weight": 1 } }, { "key": "19589", "source": "1023", "target": "1777", "attributes": { "weight": 1 } }, { "key": "19590", "source": "1023", "target": "235", "attributes": { "weight": 1 } }, { "key": "19579", "source": "1023", "target": "1770", "attributes": { "weight": 1 } }, { "key": "35853", "source": "1023", "target": "433", "attributes": { "weight": 1 } }, { "key": "35854", "source": "1023", "target": "1760", "attributes": { "weight": 1 } }, { "key": "19580", "source": "1023", "target": "481", "attributes": { "weight": 1 } }, { "key": "19567", "source": "1023", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19581", "source": "1023", "target": "482", "attributes": { "weight": 1 } }, { "key": "35861", "source": "1023", "target": "1778", "attributes": { "weight": 1 } }, { "key": "19564", "source": "1023", "target": "449", "attributes": { "weight": 1 } }, { "key": "19588", "source": "1023", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19583", "source": "1023", "target": "2095", "attributes": { "weight": 1 } }, { "key": "19555", "source": "1023", "target": "49", "attributes": { "weight": 1 } }, { "key": "19591", "source": "1023", "target": "1375", "attributes": { "weight": 1 } }, { "key": "35857", "source": "1023", "target": "1026", "attributes": { "weight": 1 } }, { "key": "19594", "source": "1023", "target": "194", "attributes": { "weight": 1 } }, { "key": "26598", "source": "1024", "target": "189", "attributes": { "weight": 2 } }, { "key": "25621", "source": "1024", "target": "1780", "attributes": { "weight": 2 } }, { "key": "29859", "source": "1024", "target": "432", "attributes": { "weight": 1 } }, { "key": "29173", "source": "1024", "target": "1750", "attributes": { "weight": 1 } }, { "key": "29872", "source": "1024", "target": "6", "attributes": { "weight": 2 } }, { "key": "29870", "source": "1024", "target": "2902", "attributes": { "weight": 2 } }, { "key": "29876", "source": "1024", "target": "470", "attributes": { "weight": 2 } }, { "key": "11161", "source": "1024", "target": "452", "attributes": { "weight": 2 } }, { "key": "24346", "source": "1024", "target": "190", "attributes": { "weight": 1 } }, { "key": "24072", "source": "1024", "target": "471", "attributes": { "weight": 2 } }, { "key": "11904", "source": "1024", "target": "468", "attributes": { "weight": 1 } }, { "key": "29880", "source": "1024", "target": "868", "attributes": { "weight": 2 } }, { "key": "29885", "source": "1024", "target": "14", "attributes": { "weight": 2 } }, { "key": "27871", "source": "1024", "target": "791", "attributes": { "weight": 4 } }, { "key": "29888", "source": "1024", "target": "1390", "attributes": { "weight": 1 } }, { "key": "29864", "source": "1024", "target": "2122", "attributes": { "weight": 2 } }, { "key": "29875", "source": "1024", "target": "135", "attributes": { "weight": 1 } }, { "key": "29868", "source": "1024", "target": "458", "attributes": { "weight": 1 } }, { "key": "29863", "source": "1024", "target": "2831", "attributes": { "weight": 2 } }, { "key": "29860", "source": "1024", "target": "164", "attributes": { "weight": 1 } }, { "key": "29874", "source": "1024", "target": "8", "attributes": { "weight": 4 } }, { "key": "25871", "source": "1024", "target": "673", "attributes": { "weight": 2 } }, { "key": "29884", "source": "1024", "target": "232", "attributes": { "weight": 2 } }, { "key": "27365", "source": "1024", "target": "340", "attributes": { "weight": 2 } }, { "key": "29882", "source": "1024", "target": "483", "attributes": { "weight": 1 } }, { "key": "24688", "source": "1024", "target": "5", "attributes": { "weight": 3 } }, { "key": "31615", "source": "1024", "target": "595", "attributes": { "weight": 2 } }, { "key": "17472", "source": "1024", "target": "358", "attributes": { "weight": 2 } }, { "key": "25620", "source": "1024", "target": "787", "attributes": { "weight": 2 } }, { "key": "29877", "source": "1024", "target": "2647", "attributes": { "weight": 1 } }, { "key": "29034", "source": "1024", "target": "495", "attributes": { "weight": 2 } }, { "key": "29869", "source": "1024", "target": "2287", "attributes": { "weight": 1 } }, { "key": "26597", "source": "1024", "target": "454", "attributes": { "weight": 2 } }, { "key": "29883", "source": "1024", "target": "823", "attributes": { "weight": 2 } }, { "key": "37412", "source": "1024", "target": "3376", "attributes": { "weight": 1 } }, { "key": "29865", "source": "1024", "target": "693", "attributes": { "weight": 1 } }, { "key": "34885", "source": "1024", "target": "424", "attributes": { "weight": 1 } }, { "key": "29873", "source": "1024", "target": "53", "attributes": { "weight": 1 } }, { "key": "29878", "source": "1024", "target": "473", "attributes": { "weight": 1 } }, { "key": "29879", "source": "1024", "target": "474", "attributes": { "weight": 1 } }, { "key": "22292", "source": "1024", "target": "794", "attributes": { "weight": 1 } }, { "key": "29886", "source": "1024", "target": "56", "attributes": { "weight": 1 } }, { "key": "11346", "source": "1024", "target": "1742", "attributes": { "weight": 2 } }, { "key": "29871", "source": "1024", "target": "370", "attributes": { "weight": 1 } }, { "key": "29861", "source": "1024", "target": "223", "attributes": { "weight": 2 } }, { "key": "24071", "source": "1024", "target": "130", "attributes": { "weight": 2 } }, { "key": "34886", "source": "1024", "target": "3021", "attributes": { "weight": 1 } }, { "key": "12675", "source": "1024", "target": "695", "attributes": { "weight": 2 } }, { "key": "29867", "source": "1024", "target": "457", "attributes": { "weight": 1 } }, { "key": "29881", "source": "1024", "target": "13", "attributes": { "weight": 2 } }, { "key": "29862", "source": "1024", "target": "3", "attributes": { "weight": 2 } }, { "key": "28936", "source": "1024", "target": "479", "attributes": { "weight": 3 } }, { "key": "29866", "source": "1024", "target": "52", "attributes": { "weight": 1 } }, { "key": "3609", "source": "1024", "target": "1025", "attributes": { "weight": 1 } }, { "key": "23758", "source": "1024", "target": "1774", "attributes": { "weight": 1 } }, { "key": "8793", "source": "1024", "target": "442", "attributes": { "weight": 2 } }, { "key": "16829", "source": "1024", "target": "70", "attributes": { "weight": 1 } }, { "key": "25870", "source": "1024", "target": "220", "attributes": { "weight": 2 } }, { "key": "26910", "source": "1024", "target": "497", "attributes": { "weight": 2 } }, { "key": "27267", "source": "1024", "target": "57", "attributes": { "weight": 2 } }, { "key": "30710", "source": "1024", "target": "889", "attributes": { "weight": 1 } }, { "key": "29887", "source": "1024", "target": "193", "attributes": { "weight": 1 } }, { "key": "3621", "source": "1025", "target": "8", "attributes": { "weight": 1 } }, { "key": "3617", "source": "1025", "target": "454", "attributes": { "weight": 1 } }, { "key": "3620", "source": "1025", "target": "53", "attributes": { "weight": 1 } }, { "key": "3625", "source": "1025", "target": "793", "attributes": { "weight": 1 } }, { "key": "3614", "source": "1025", "target": "3", "attributes": { "weight": 2 } }, { "key": "35976", "source": "1025", "target": "235", "attributes": { "weight": 1 } }, { "key": "3611", "source": "1025", "target": "432", "attributes": { "weight": 1 } }, { "key": "12677", "source": "1025", "target": "695", "attributes": { "weight": 1 } }, { "key": "3619", "source": "1025", "target": "1024", "attributes": { "weight": 1 } }, { "key": "3623", "source": "1025", "target": "473", "attributes": { "weight": 2 } }, { "key": "3624", "source": "1025", "target": "1026", "attributes": { "weight": 3 } }, { "key": "3626", "source": "1025", "target": "489", "attributes": { "weight": 1 } }, { "key": "3628", "source": "1025", "target": "496", "attributes": { "weight": 2 } }, { "key": "3622", "source": "1025", "target": "470", "attributes": { "weight": 1 } }, { "key": "21581", "source": "1025", "target": "89", "attributes": { "weight": 1 } }, { "key": "3627", "source": "1025", "target": "494", "attributes": { "weight": 2 } }, { "key": "29035", "source": "1025", "target": "495", "attributes": { "weight": 1 } }, { "key": "3612", "source": "1025", "target": "222", "attributes": { "weight": 2 } }, { "key": "3615", "source": "1025", "target": "449", "attributes": { "weight": 1 } }, { "key": "3618", "source": "1025", "target": "791", "attributes": { "weight": 2 } }, { "key": "3616", "source": "1025", "target": "452", "attributes": { "weight": 2 } }, { "key": "3613", "source": "1025", "target": "1023", "attributes": { "weight": 1 } }, { "key": "26599", "source": "1025", "target": "189", "attributes": { "weight": 1 } }, { "key": "35975", "source": "1025", "target": "2244", "attributes": { "weight": 1 } }, { "key": "3610", "source": "1025", "target": "0", "attributes": { "weight": 1 } }, { "key": "32927", "source": "1026", "target": "470", "attributes": { "weight": 1 } }, { "key": "3633", "source": "1026", "target": "1025", "attributes": { "weight": 3 } }, { "key": "36059", "source": "1026", "target": "439", "attributes": { "weight": 1 } }, { "key": "36074", "source": "1026", "target": "235", "attributes": { "weight": 1 } }, { "key": "27369", "source": "1026", "target": "340", "attributes": { "weight": 3 } }, { "key": "18325", "source": "1026", "target": "1092", "attributes": { "weight": 3 } }, { "key": "36056", "source": "1026", "target": "1756", "attributes": { "weight": 1 } }, { "key": "36062", "source": "1026", "target": "2245", "attributes": { "weight": 1 } }, { "key": "29447", "source": "1026", "target": "232", "attributes": { "weight": 1 } }, { "key": "11248", "source": "1026", "target": "1773", "attributes": { "weight": 2 } }, { "key": "36057", "source": "1026", "target": "221", "attributes": { "weight": 1 } }, { "key": "9008", "source": "1026", "target": "442", "attributes": { "weight": 2 } }, { "key": "36077", "source": "1026", "target": "2278", "attributes": { "weight": 1 } }, { "key": "30738", "source": "1026", "target": "474", "attributes": { "weight": 1 } }, { "key": "17964", "source": "1026", "target": "454", "attributes": { "weight": 3 } }, { "key": "30476", "source": "1026", "target": "1046", "attributes": { "weight": 1 } }, { "key": "36075", "source": "1026", "target": "1375", "attributes": { "weight": 1 } }, { "key": "6973", "source": "1026", "target": "193", "attributes": { "weight": 2 } }, { "key": "36066", "source": "1026", "target": "89", "attributes": { "weight": 1 } }, { "key": "30733", "source": "1026", "target": "223", "attributes": { "weight": 2 } }, { "key": "36076", "source": "1026", "target": "496", "attributes": { "weight": 1 } }, { "key": "30736", "source": "1026", "target": "791", "attributes": { "weight": 2 } }, { "key": "21596", "source": "1026", "target": "358", "attributes": { "weight": 2 } }, { "key": "11249", "source": "1026", "target": "1778", "attributes": { "weight": 2 } }, { "key": "4022", "source": "1026", "target": "432", "attributes": { "weight": 3 } }, { "key": "20697", "source": "1026", "target": "449", "attributes": { "weight": 2 } }, { "key": "25385", "source": "1026", "target": "433", "attributes": { "weight": 2 } }, { "key": "27287", "source": "1026", "target": "57", "attributes": { "weight": 1 } }, { "key": "36061", "source": "1026", "target": "2244", "attributes": { "weight": 1 } }, { "key": "36068", "source": "1026", "target": "2258", "attributes": { "weight": 1 } }, { "key": "30718", "source": "1026", "target": "889", "attributes": { "weight": 2 } }, { "key": "36065", "source": "1026", "target": "448", "attributes": { "weight": 1 } }, { "key": "11243", "source": "1026", "target": "1760", "attributes": { "weight": 2 } }, { "key": "25893", "source": "1026", "target": "220", "attributes": { "weight": 2 } }, { "key": "36064", "source": "1026", "target": "226", "attributes": { "weight": 1 } }, { "key": "14306", "source": "1026", "target": "53", "attributes": { "weight": 3 } }, { "key": "24196", "source": "1026", "target": "130", "attributes": { "weight": 5 } }, { "key": "29046", "source": "1026", "target": "495", "attributes": { "weight": 2 } }, { "key": "11245", "source": "1026", "target": "1762", "attributes": { "weight": 2 } }, { "key": "36072", "source": "1026", "target": "480", "attributes": { "weight": 1 } }, { "key": "26923", "source": "1026", "target": "497", "attributes": { "weight": 2 } }, { "key": "20698", "source": "1026", "target": "489", "attributes": { "weight": 1 } }, { "key": "11247", "source": "1026", "target": "1769", "attributes": { "weight": 2 } }, { "key": "36071", "source": "1026", "target": "2266", "attributes": { "weight": 1 } }, { "key": "36067", "source": "1026", "target": "2248", "attributes": { "weight": 1 } }, { "key": "30740", "source": "1026", "target": "595", "attributes": { "weight": 2 } }, { "key": "36073", "source": "1026", "target": "73", "attributes": { "weight": 1 } }, { "key": "11242", "source": "1026", "target": "1757", "attributes": { "weight": 2 } }, { "key": "31351", "source": "1026", "target": "674", "attributes": { "weight": 1 } }, { "key": "30735", "source": "1026", "target": "52", "attributes": { "weight": 2 } }, { "key": "27545", "source": "1026", "target": "1520", "attributes": { "weight": 2 } }, { "key": "36070", "source": "1026", "target": "190", "attributes": { "weight": 1 } }, { "key": "5925", "source": "1026", "target": "468", "attributes": { "weight": 3 } }, { "key": "36063", "source": "1026", "target": "445", "attributes": { "weight": 1 } }, { "key": "26729", "source": "1026", "target": "183", "attributes": { "weight": 1 } }, { "key": "11244", "source": "1026", "target": "452", "attributes": { "weight": 3 } }, { "key": "26730", "source": "1026", "target": "189", "attributes": { "weight": 2 } }, { "key": "30739", "source": "1026", "target": "487", "attributes": { "weight": 1 } }, { "key": "11246", "source": "1026", "target": "469", "attributes": { "weight": 2 } }, { "key": "36058", "source": "1026", "target": "222", "attributes": { "weight": 1 } }, { "key": "33628", "source": "1026", "target": "135", "attributes": { "weight": 1 } }, { "key": "36069", "source": "1026", "target": "473", "attributes": { "weight": 1 } }, { "key": "28946", "source": "1026", "target": "479", "attributes": { "weight": 3 } }, { "key": "30737", "source": "1026", "target": "471", "attributes": { "weight": 3 } }, { "key": "30734", "source": "1026", "target": "440", "attributes": { "weight": 1 } }, { "key": "36060", "source": "1026", "target": "1023", "attributes": { "weight": 1 } }, { "key": "3638", "source": "1027", "target": "778", "attributes": { "weight": 4 } }, { "key": "3643", "source": "1027", "target": "786", "attributes": { "weight": 2 } }, { "key": "3642", "source": "1027", "target": "1032", "attributes": { "weight": 2 } }, { "key": "3641", "source": "1027", "target": "1031", "attributes": { "weight": 1 } }, { "key": "3640", "source": "1027", "target": "1030", "attributes": { "weight": 1 } }, { "key": "3639", "source": "1027", "target": "371", "attributes": { "weight": 1 } }, { "key": "3644", "source": "1028", "target": "778", "attributes": { "weight": 2 } }, { "key": "3654", "source": "1029", "target": "778", "attributes": { "weight": 2 } }, { "key": "35249", "source": "1030", "target": "1220", "attributes": { "weight": 1 } }, { "key": "3655", "source": "1030", "target": "1027", "attributes": { "weight": 1 } }, { "key": "30643", "source": "1030", "target": "1032", "attributes": { "weight": 2 } }, { "key": "35252", "source": "1030", "target": "2993", "attributes": { "weight": 1 } }, { "key": "14159", "source": "1030", "target": "392", "attributes": { "weight": 1 } }, { "key": "35250", "source": "1030", "target": "1261", "attributes": { "weight": 1 } }, { "key": "30313", "source": "1030", "target": "786", "attributes": { "weight": 2 } }, { "key": "35254", "source": "1030", "target": "785", "attributes": { "weight": 1 } }, { "key": "35248", "source": "1030", "target": "777", "attributes": { "weight": 1 } }, { "key": "35253", "source": "1030", "target": "3189", "attributes": { "weight": 1 } }, { "key": "35255", "source": "1030", "target": "2980", "attributes": { "weight": 1 } }, { "key": "35251", "source": "1030", "target": "240", "attributes": { "weight": 1 } }, { "key": "3656", "source": "1030", "target": "778", "attributes": { "weight": 5 } }, { "key": "35256", "source": "1030", "target": "2981", "attributes": { "weight": 1 } }, { "key": "3657", "source": "1031", "target": "1027", "attributes": { "weight": 1 } }, { "key": "14102", "source": "1031", "target": "607", "attributes": { "weight": 1 } }, { "key": "14076", "source": "1031", "target": "1047", "attributes": { "weight": 2 } }, { "key": "9026", "source": "1031", "target": "195", "attributes": { "weight": 3 } }, { "key": "24216", "source": "1031", "target": "471", "attributes": { "weight": 1 } }, { "key": "14116", "source": "1031", "target": "1063", "attributes": { "weight": 1 } }, { "key": "9885", "source": "1031", "target": "390", "attributes": { "weight": 2 } }, { "key": "14062", "source": "1031", "target": "993", "attributes": { "weight": 1 } }, { "key": "9889", "source": "1031", "target": "785", "attributes": { "weight": 2 } }, { "key": "6192", "source": "1031", "target": "368", "attributes": { "weight": 2 } }, { "key": "9888", "source": "1031", "target": "783", "attributes": { "weight": 2 } }, { "key": "14083", "source": "1031", "target": "1232", "attributes": { "weight": 2 } }, { "key": "14094", "source": "1031", "target": "1262", "attributes": { "weight": 1 } }, { "key": "14085", "source": "1031", "target": "29", "attributes": { "weight": 1 } }, { "key": "14098", "source": "1031", "target": "605", "attributes": { "weight": 1 } }, { "key": "14101", "source": "1031", "target": "1726", "attributes": { "weight": 1 } }, { "key": "14104", "source": "1031", "target": "1306", "attributes": { "weight": 1 } }, { "key": "14091", "source": "1031", "target": "544", "attributes": { "weight": 1 } }, { "key": "10739", "source": "1031", "target": "407", "attributes": { "weight": 4 } }, { "key": "14074", "source": "1031", "target": "1719", "attributes": { "weight": 1 } }, { "key": "14099", "source": "1031", "target": "1281", "attributes": { "weight": 1 } }, { "key": "14112", "source": "1031", "target": "218", "attributes": { "weight": 1 } }, { "key": "11259", "source": "1031", "target": "220", "attributes": { "weight": 2 } }, { "key": "10738", "source": "1031", "target": "1314", "attributes": { "weight": 2 } }, { "key": "14088", "source": "1031", "target": "337", "attributes": { "weight": 2 } }, { "key": "14115", "source": "1031", "target": "1349", "attributes": { "weight": 1 } }, { "key": "6193", "source": "1031", "target": "371", "attributes": { "weight": 5 } }, { "key": "14106", "source": "1031", "target": "601", "attributes": { "weight": 1 } }, { "key": "14084", "source": "1031", "target": "1233", "attributes": { "weight": 2 } }, { "key": "9886", "source": "1031", "target": "396", "attributes": { "weight": 2 } }, { "key": "14109", "source": "1031", "target": "1334", "attributes": { "weight": 1 } }, { "key": "14071", "source": "1031", "target": "1186", "attributes": { "weight": 1 } }, { "key": "14070", "source": "1031", "target": "44", "attributes": { "weight": 1 } }, { "key": "14103", "source": "1031", "target": "372", "attributes": { "weight": 1 } }, { "key": "14079", "source": "1031", "target": "109", "attributes": { "weight": 1 } }, { "key": "10737", "source": "1031", "target": "43", "attributes": { "weight": 2 } }, { "key": "14067", "source": "1031", "target": "938", "attributes": { "weight": 2 } }, { "key": "14095", "source": "1031", "target": "208", "attributes": { "weight": 2 } }, { "key": "14108", "source": "1031", "target": "961", "attributes": { "weight": 1 } }, { "key": "9887", "source": "1031", "target": "399", "attributes": { "weight": 2 } }, { "key": "14064", "source": "1031", "target": "236", "attributes": { "weight": 1 } }, { "key": "14114", "source": "1031", "target": "786", "attributes": { "weight": 1 } }, { "key": "14093", "source": "1031", "target": "240", "attributes": { "weight": 1 } }, { "key": "28601", "source": "1031", "target": "199", "attributes": { "weight": 1 } }, { "key": "9027", "source": "1031", "target": "442", "attributes": { "weight": 1 } }, { "key": "14107", "source": "1031", "target": "254", "attributes": { "weight": 2 } }, { "key": "14081", "source": "1031", "target": "45", "attributes": { "weight": 2 } }, { "key": "14105", "source": "1031", "target": "634", "attributes": { "weight": 1 } }, { "key": "14065", "source": "1031", "target": "1716", "attributes": { "weight": 1 } }, { "key": "14113", "source": "1031", "target": "48", "attributes": { "weight": 1 } }, { "key": "14090", "source": "1031", "target": "30", "attributes": { "weight": 1 } }, { "key": "14069", "source": "1031", "target": "778", "attributes": { "weight": 3 } }, { "key": "14089", "source": "1031", "target": "338", "attributes": { "weight": 2 } }, { "key": "14087", "source": "1031", "target": "780", "attributes": { "weight": 1 } }, { "key": "14072", "source": "1031", "target": "872", "attributes": { "weight": 1 } }, { "key": "14073", "source": "1031", "target": "1718", "attributes": { "weight": 1 } }, { "key": "14100", "source": "1031", "target": "123", "attributes": { "weight": 2 } }, { "key": "14078", "source": "1031", "target": "108", "attributes": { "weight": 1 } }, { "key": "14082", "source": "1031", "target": "392", "attributes": { "weight": 2 } }, { "key": "14110", "source": "1031", "target": "257", "attributes": { "weight": 1 } }, { "key": "14063", "source": "1031", "target": "603", "attributes": { "weight": 1 } }, { "key": "14097", "source": "1031", "target": "545", "attributes": { "weight": 2 } }, { "key": "14068", "source": "1031", "target": "103", "attributes": { "weight": 1 } }, { "key": "14075", "source": "1031", "target": "238", "attributes": { "weight": 1 } }, { "key": "14077", "source": "1031", "target": "369", "attributes": { "weight": 1 } }, { "key": "14080", "source": "1031", "target": "391", "attributes": { "weight": 1 } }, { "key": "14086", "source": "1031", "target": "370", "attributes": { "weight": 2 } }, { "key": "14096", "source": "1031", "target": "782", "attributes": { "weight": 1 } }, { "key": "14111", "source": "1031", "target": "635", "attributes": { "weight": 1 } }, { "key": "9884", "source": "1031", "target": "387", "attributes": { "weight": 2 } }, { "key": "14092", "source": "1031", "target": "1261", "attributes": { "weight": 1 } }, { "key": "14066", "source": "1031", "target": "1717", "attributes": { "weight": 1 } }, { "key": "35261", "source": "1032", "target": "3191", "attributes": { "weight": 1 } }, { "key": "30644", "source": "1032", "target": "1030", "attributes": { "weight": 2 } }, { "key": "35260", "source": "1032", "target": "1892", "attributes": { "weight": 1 } }, { "key": "3658", "source": "1032", "target": "1027", "attributes": { "weight": 2 } }, { "key": "3659", "source": "1032", "target": "778", "attributes": { "weight": 4 } }, { "key": "35259", "source": "1032", "target": "3184", "attributes": { "weight": 1 } }, { "key": "3662", "source": "1033", "target": "778", "attributes": { "weight": 2 } }, { "key": "3664", "source": "1034", "target": "649", "attributes": { "weight": 2 } }, { "key": "9382", "source": "1034", "target": "653", "attributes": { "weight": 1 } }, { "key": "3663", "source": "1034", "target": "354", "attributes": { "weight": 3 } }, { "key": "3666", "source": "1035", "target": "419", "attributes": { "weight": 4 } }, { "key": "30336", "source": "1035", "target": "1046", "attributes": { "weight": 1 } }, { "key": "31141", "source": "1035", "target": "666", "attributes": { "weight": 1 } }, { "key": "32156", "source": "1035", "target": "1779", "attributes": { "weight": 1 } }, { "key": "23732", "source": "1035", "target": "1774", "attributes": { "weight": 1 } }, { "key": "31140", "source": "1035", "target": "645", "attributes": { "weight": 1 } }, { "key": "10392", "source": "1036", "target": "225", "attributes": { "weight": 3 } }, { "key": "18042", "source": "1036", "target": "1060", "attributes": { "weight": 3 } }, { "key": "4313", "source": "1036", "target": "123", "attributes": { "weight": 2 } }, { "key": "12332", "source": "1036", "target": "365", "attributes": { "weight": 1 } }, { "key": "18037", "source": "1036", "target": "2115", "attributes": { "weight": 3 } }, { "key": "6590", "source": "1036", "target": "1037", "attributes": { "weight": 8 } }, { "key": "24607", "source": "1036", "target": "2237", "attributes": { "weight": 1 } }, { "key": "6594", "source": "1036", "target": "304", "attributes": { "weight": 5 } }, { "key": "18041", "source": "1036", "target": "305", "attributes": { "weight": 2 } }, { "key": "7211", "source": "1036", "target": "1063", "attributes": { "weight": 2 } }, { "key": "10995", "source": "1036", "target": "1611", "attributes": { "weight": 2 } }, { "key": "18027", "source": "1036", "target": "52", "attributes": { "weight": 2 } }, { "key": "10986", "source": "1036", "target": "164", "attributes": { "weight": 3 } }, { "key": "10993", "source": "1036", "target": "171", "attributes": { "weight": 4 } }, { "key": "4306", "source": "1036", "target": "183", "attributes": { "weight": 3 } }, { "key": "3674", "source": "1036", "target": "651", "attributes": { "weight": 2 } }, { "key": "18016", "source": "1036", "target": "889", "attributes": { "weight": 3 } }, { "key": "18034", "source": "1036", "target": "361", "attributes": { "weight": 1 } }, { "key": "4307", "source": "1036", "target": "1232", "attributes": { "weight": 2 } }, { "key": "18031", "source": "1036", "target": "791", "attributes": { "weight": 2 } }, { "key": "3671", "source": "1036", "target": "647", "attributes": { "weight": 4 } }, { "key": "18026", "source": "1036", "target": "109", "attributes": { "weight": 1 } }, { "key": "10990", "source": "1036", "target": "638", "attributes": { "weight": 4 } }, { "key": "4305", "source": "1036", "target": "1042", "attributes": { "weight": 5 } }, { "key": "3920", "source": "1036", "target": "432", "attributes": { "weight": 2 } }, { "key": "3675", "source": "1036", "target": "1056", "attributes": { "weight": 5 } }, { "key": "12663", "source": "1036", "target": "223", "attributes": { "weight": 3 } }, { "key": "6591", "source": "1036", "target": "454", "attributes": { "weight": 5 } }, { "key": "18029", "source": "1036", "target": "278", "attributes": { "weight": 3 } }, { "key": "10989", "source": "1036", "target": "452", "attributes": { "weight": 2 } }, { "key": "10992", "source": "1036", "target": "1765", "attributes": { "weight": 4 } }, { "key": "29603", "source": "1036", "target": "2891", "attributes": { "weight": 1 } }, { "key": "4311", "source": "1036", "target": "468", "attributes": { "weight": 5 } }, { "key": "3676", "source": "1036", "target": "661", "attributes": { "weight": 2 } }, { "key": "18039", "source": "1036", "target": "580", "attributes": { "weight": 2 } }, { "key": "18018", "source": "1036", "target": "1520", "attributes": { "weight": 2 } }, { "key": "17133", "source": "1036", "target": "449", "attributes": { "weight": 2 } }, { "key": "18028", "source": "1036", "target": "168", "attributes": { "weight": 2 } }, { "key": "10994", "source": "1036", "target": "297", "attributes": { "weight": 3 } }, { "key": "3668", "source": "1036", "target": "644", "attributes": { "weight": 3 } }, { "key": "18035", "source": "1036", "target": "136", "attributes": { "weight": 1 } }, { "key": "18024", "source": "1036", "target": "1046", "attributes": { "weight": 2 } }, { "key": "18017", "source": "1036", "target": "433", "attributes": { "weight": 2 } }, { "key": "3667", "source": "1036", "target": "641", "attributes": { "weight": 2 } }, { "key": "4309", "source": "1036", "target": "370", "attributes": { "weight": 2 } }, { "key": "24606", "source": "1036", "target": "2235", "attributes": { "weight": 1 } }, { "key": "10991", "source": "1036", "target": "1763", "attributes": { "weight": 3 } }, { "key": "18025", "source": "1036", "target": "2114", "attributes": { "weight": 1 } }, { "key": "18044", "source": "1036", "target": "177", "attributes": { "weight": 2 } }, { "key": "18015", "source": "1036", "target": "787", "attributes": { "weight": 2 } }, { "key": "18036", "source": "1036", "target": "472", "attributes": { "weight": 1 } }, { "key": "18033", "source": "1036", "target": "359", "attributes": { "weight": 3 } }, { "key": "18020", "source": "1036", "target": "2113", "attributes": { "weight": 1 } }, { "key": "11329", "source": "1036", "target": "1742", "attributes": { "weight": 2 } }, { "key": "6596", "source": "1036", "target": "193", "attributes": { "weight": 2 } }, { "key": "6593", "source": "1036", "target": "189", "attributes": { "weight": 3 } }, { "key": "6592", "source": "1036", "target": "169", "attributes": { "weight": 2 } }, { "key": "3670", "source": "1036", "target": "1041", "attributes": { "weight": 3 } }, { "key": "4310", "source": "1036", "target": "1253", "attributes": { "weight": 7 } }, { "key": "3669", "source": "1036", "target": "645", "attributes": { "weight": 4 } }, { "key": "18038", "source": "1036", "target": "93", "attributes": { "weight": 2 } }, { "key": "10997", "source": "1036", "target": "163", "attributes": { "weight": 3 } }, { "key": "10996", "source": "1036", "target": "473", "attributes": { "weight": 2 } }, { "key": "6595", "source": "1036", "target": "178", "attributes": { "weight": 6 } }, { "key": "10987", "source": "1036", "target": "567", "attributes": { "weight": 3 } }, { "key": "18022", "source": "1036", "target": "357", "attributes": { "weight": 1 } }, { "key": "10999", "source": "1036", "target": "310", "attributes": { "weight": 3 } }, { "key": "3677", "source": "1036", "target": "667", "attributes": { "weight": 3 } }, { "key": "8431", "source": "1036", "target": "442", "attributes": { "weight": 2 } }, { "key": "18043", "source": "1036", "target": "2118", "attributes": { "weight": 1 } }, { "key": "37263", "source": "1036", "target": "1799", "attributes": { "weight": 1 } }, { "key": "18030", "source": "1036", "target": "790", "attributes": { "weight": 1 } }, { "key": "10998", "source": "1036", "target": "1772", "attributes": { "weight": 3 } }, { "key": "24605", "source": "1036", "target": "2232", "attributes": { "weight": 1 } }, { "key": "18040", "source": "1036", "target": "2116", "attributes": { "weight": 4 } }, { "key": "14292", "source": "1036", "target": "53", "attributes": { "weight": 2 } }, { "key": "18019", "source": "1036", "target": "2112", "attributes": { "weight": 1 } }, { "key": "10988", "source": "1036", "target": "264", "attributes": { "weight": 3 } }, { "key": "18045", "source": "1036", "target": "1780", "attributes": { "weight": 2 } }, { "key": "8430", "source": "1036", "target": "220", "attributes": { "weight": 7 } }, { "key": "18023", "source": "1036", "target": "3", "attributes": { "weight": 2 } }, { "key": "4312", "source": "1036", "target": "362", "attributes": { "weight": 12 } }, { "key": "18032", "source": "1036", "target": "659", "attributes": { "weight": 1 } }, { "key": "3673", "source": "1036", "target": "1045", "attributes": { "weight": 3 } }, { "key": "4308", "source": "1036", "target": "421", "attributes": { "weight": 6 } }, { "key": "18021", "source": "1036", "target": "339", "attributes": { "weight": 2 } }, { "key": "3672", "source": "1036", "target": "419", "attributes": { "weight": 4 } }, { "key": "22638", "source": "1037", "target": "419", "attributes": { "weight": 1 } }, { "key": "22651", "source": "1037", "target": "362", "attributes": { "weight": 3 } }, { "key": "22655", "source": "1037", "target": "2289", "attributes": { "weight": 1 } }, { "key": "22657", "source": "1037", "target": "1060", "attributes": { "weight": 2 } }, { "key": "14173", "source": "1037", "target": "358", "attributes": { "weight": 5 } }, { "key": "22641", "source": "1037", "target": "790", "attributes": { "weight": 1 } }, { "key": "22648", "source": "1037", "target": "53", "attributes": { "weight": 1 } }, { "key": "22639", "source": "1037", "target": "1045", "attributes": { "weight": 2 } }, { "key": "22650", "source": "1037", "target": "661", "attributes": { "weight": 1 } }, { "key": "22632", "source": "1037", "target": "1520", "attributes": { "weight": 1 } }, { "key": "22631", "source": "1037", "target": "889", "attributes": { "weight": 2 } }, { "key": "22634", "source": "1037", "target": "164", "attributes": { "weight": 3 } }, { "key": "22637", "source": "1037", "target": "647", "attributes": { "weight": 1 } }, { "key": "22656", "source": "1037", "target": "2116", "attributes": { "weight": 1 } }, { "key": "22658", "source": "1037", "target": "2118", "attributes": { "weight": 2 } }, { "key": "22633", "source": "1037", "target": "2112", "attributes": { "weight": 1 } }, { "key": "4328", "source": "1037", "target": "468", "attributes": { "weight": 4 } }, { "key": "22635", "source": "1037", "target": "339", "attributes": { "weight": 2 } }, { "key": "22652", "source": "1037", "target": "2115", "attributes": { "weight": 2 } }, { "key": "22636", "source": "1037", "target": "442", "attributes": { "weight": 1 } }, { "key": "21505", "source": "1037", "target": "89", "attributes": { "weight": 2 } }, { "key": "22642", "source": "1037", "target": "421", "attributes": { "weight": 1 } }, { "key": "4327", "source": "1037", "target": "1046", "attributes": { "weight": 10 } }, { "key": "22630", "source": "1037", "target": "1380", "attributes": { "weight": 1 } }, { "key": "22647", "source": "1037", "target": "1056", "attributes": { "weight": 4 } }, { "key": "6607", "source": "1037", "target": "1036", "attributes": { "weight": 8 } }, { "key": "22263", "source": "1037", "target": "794", "attributes": { "weight": 1 } }, { "key": "3678", "source": "1037", "target": "645", "attributes": { "weight": 2 } }, { "key": "22646", "source": "1037", "target": "1765", "attributes": { "weight": 1 } }, { "key": "22640", "source": "1037", "target": "454", "attributes": { "weight": 1 } }, { "key": "22659", "source": "1037", "target": "2119", "attributes": { "weight": 1 } }, { "key": "27703", "source": "1037", "target": "1042", "attributes": { "weight": 2 } }, { "key": "24567", "source": "1037", "target": "1049", "attributes": { "weight": 1 } }, { "key": "22649", "source": "1037", "target": "1253", "attributes": { "weight": 2 } }, { "key": "22654", "source": "1037", "target": "93", "attributes": { "weight": 2 } }, { "key": "22643", "source": "1037", "target": "791", "attributes": { "weight": 2 } }, { "key": "22644", "source": "1037", "target": "359", "attributes": { "weight": 2 } }, { "key": "22660", "source": "1037", "target": "667", "attributes": { "weight": 1 } }, { "key": "22653", "source": "1037", "target": "1801", "attributes": { "weight": 2 } }, { "key": "22645", "source": "1037", "target": "1763", "attributes": { "weight": 1 } }, { "key": "3679", "source": "1038", "target": "645", "attributes": { "weight": 2 } }, { "key": "3680", "source": "1039", "target": "645", "attributes": { "weight": 3 } }, { "key": "3681", "source": "1039", "target": "419", "attributes": { "weight": 3 } }, { "key": "3682", "source": "1040", "target": "645", "attributes": { "weight": 2 } }, { "key": "9402", "source": "1041", "target": "647", "attributes": { "weight": 2 } }, { "key": "30347", "source": "1041", "target": "1046", "attributes": { "weight": 1 } }, { "key": "9404", "source": "1041", "target": "359", "attributes": { "weight": 2 } }, { "key": "24572", "source": "1041", "target": "1056", "attributes": { "weight": 1 } }, { "key": "24569", "source": "1041", "target": "1037", "attributes": { "weight": 1 } }, { "key": "9405", "source": "1041", "target": "1060", "attributes": { "weight": 2 } }, { "key": "24571", "source": "1041", "target": "1049", "attributes": { "weight": 1 } }, { "key": "24570", "source": "1041", "target": "1045", "attributes": { "weight": 2 } }, { "key": "31151", "source": "1041", "target": "644", "attributes": { "weight": 1 } }, { "key": "24574", "source": "1041", "target": "2291", "attributes": { "weight": 1 } }, { "key": "3726", "source": "1041", "target": "645", "attributes": { "weight": 3 } }, { "key": "31152", "source": "1041", "target": "661", "attributes": { "weight": 1 } }, { "key": "24573", "source": "1041", "target": "362", "attributes": { "weight": 2 } }, { "key": "9403", "source": "1041", "target": "358", "attributes": { "weight": 3 } }, { "key": "9406", "source": "1041", "target": "794", "attributes": { "weight": 3 } }, { "key": "24568", "source": "1041", "target": "2510", "attributes": { "weight": 1 } }, { "key": "9401", "source": "1041", "target": "646", "attributes": { "weight": 1 } }, { "key": "3725", "source": "1041", "target": "1036", "attributes": { "weight": 3 } }, { "key": "27917", "source": "1042", "target": "287", "attributes": { "weight": 1 } }, { "key": "15102", "source": "1042", "target": "171", "attributes": { "weight": 4 } }, { "key": "25678", "source": "1042", "target": "278", "attributes": { "weight": 1 } }, { "key": "27716", "source": "1042", "target": "1060", "attributes": { "weight": 3 } }, { "key": "27708", "source": "1042", "target": "567", "attributes": { "weight": 2 } }, { "key": "21509", "source": "1042", "target": "89", "attributes": { "weight": 1 } }, { "key": "14184", "source": "1042", "target": "178", "attributes": { "weight": 5 } }, { "key": "27714", "source": "1042", "target": "359", "attributes": { "weight": 3 } }, { "key": "27706", "source": "1042", "target": "1037", "attributes": { "weight": 2 } }, { "key": "27718", "source": "1042", "target": "667", "attributes": { "weight": 2 } }, { "key": "27710", "source": "1042", "target": "357", "attributes": { "weight": 2 } }, { "key": "34890", "source": "1042", "target": "442", "attributes": { "weight": 1 } }, { "key": "14183", "source": "1042", "target": "164", "attributes": { "weight": 4 } }, { "key": "9413", "source": "1042", "target": "419", "attributes": { "weight": 3 } }, { "key": "27711", "source": "1042", "target": "1045", "attributes": { "weight": 3 } }, { "key": "4618", "source": "1042", "target": "1036", "attributes": { "weight": 5 } }, { "key": "9414", "source": "1042", "target": "661", "attributes": { "weight": 4 } }, { "key": "30008", "source": "1042", "target": "2914", "attributes": { "weight": 1 } }, { "key": "11039", "source": "1042", "target": "452", "attributes": { "weight": 3 } }, { "key": "26120", "source": "1042", "target": "1056", "attributes": { "weight": 3 } }, { "key": "34898", "source": "1042", "target": "305", "attributes": { "weight": 1 } }, { "key": "27715", "source": "1042", "target": "362", "attributes": { "weight": 3 } }, { "key": "27589", "source": "1042", "target": "1763", "attributes": { "weight": 2 } }, { "key": "27717", "source": "1042", "target": "1772", "attributes": { "weight": 2 } }, { "key": "27709", "source": "1042", "target": "647", "attributes": { "weight": 2 } }, { "key": "27707", "source": "1042", "target": "644", "attributes": { "weight": 2 } }, { "key": "27712", "source": "1042", "target": "2181", "attributes": { "weight": 2 } }, { "key": "3733", "source": "1042", "target": "645", "attributes": { "weight": 4 } }, { "key": "34897", "source": "1042", "target": "304", "attributes": { "weight": 1 } }, { "key": "34891", "source": "1042", "target": "3", "attributes": { "weight": 1 } }, { "key": "30352", "source": "1042", "target": "1046", "attributes": { "weight": 2 } }, { "key": "34895", "source": "1042", "target": "468", "attributes": { "weight": 1 } }, { "key": "17348", "source": "1042", "target": "358", "attributes": { "weight": 3 } }, { "key": "34896", "source": "1042", "target": "580", "attributes": { "weight": 1 } }, { "key": "34893", "source": "1042", "target": "3171", "attributes": { "weight": 1 } }, { "key": "27713", "source": "1042", "target": "1051", "attributes": { "weight": 3 } }, { "key": "34892", "source": "1042", "target": "454", "attributes": { "weight": 1 } }, { "key": "27719", "source": "1042", "target": "1061", "attributes": { "weight": 2 } }, { "key": "34894", "source": "1042", "target": "3172", "attributes": { "weight": 1 } }, { "key": "22273", "source": "1042", "target": "794", "attributes": { "weight": 3 } }, { "key": "11854", "source": "1042", "target": "1611", "attributes": { "weight": 10 } }, { "key": "9417", "source": "1043", "target": "660", "attributes": { "weight": 1 } }, { "key": "3741", "source": "1043", "target": "419", "attributes": { "weight": 4 } }, { "key": "3760", "source": "1044", "target": "1057", "attributes": { "weight": 2 } }, { "key": "31870", "source": "1045", "target": "2115", "attributes": { "weight": 2 } }, { "key": "3764", "source": "1045", "target": "419", "attributes": { "weight": 3 } }, { "key": "31866", "source": "1045", "target": "651", "attributes": { "weight": 1 } }, { "key": "8685", "source": "1045", "target": "220", "attributes": { "weight": 3 } }, { "key": "31863", "source": "1045", "target": "2123", "attributes": { "weight": 1 } }, { "key": "37095", "source": "1045", "target": "2126", "attributes": { "weight": 1 } }, { "key": "17851", "source": "1045", "target": "1380", "attributes": { "weight": 1 } }, { "key": "31861", "source": "1045", "target": "357", "attributes": { "weight": 1 } }, { "key": "22667", "source": "1045", "target": "1037", "attributes": { "weight": 2 } }, { "key": "27722", "source": "1045", "target": "1042", "attributes": { "weight": 3 } }, { "key": "19075", "source": "1045", "target": "2232", "attributes": { "weight": 1 } }, { "key": "36950", "source": "1045", "target": "362", "attributes": { "weight": 1 } }, { "key": "3762", "source": "1045", "target": "645", "attributes": { "weight": 2 } }, { "key": "28613", "source": "1045", "target": "1253", "attributes": { "weight": 2 } }, { "key": "8686", "source": "1045", "target": "1056", "attributes": { "weight": 6 } }, { "key": "3761", "source": "1045", "target": "1036", "attributes": { "weight": 3 } }, { "key": "28612", "source": "1045", "target": "421", "attributes": { "weight": 3 } }, { "key": "29622", "source": "1045", "target": "2119", "attributes": { "weight": 1 } }, { "key": "24575", "source": "1045", "target": "1041", "attributes": { "weight": 2 } }, { "key": "31858", "source": "1045", "target": "2233", "attributes": { "weight": 1 } }, { "key": "24576", "source": "1045", "target": "1049", "attributes": { "weight": 1 } }, { "key": "31862", "source": "1045", "target": "3068", "attributes": { "weight": 1 } }, { "key": "31867", "source": "1045", "target": "791", "attributes": { "weight": 2 } }, { "key": "31869", "source": "1045", "target": "661", "attributes": { "weight": 1 } }, { "key": "27848", "source": "1045", "target": "339", "attributes": { "weight": 2 } }, { "key": "19076", "source": "1045", "target": "2239", "attributes": { "weight": 1 } }, { "key": "22277", "source": "1045", "target": "794", "attributes": { "weight": 1 } }, { "key": "31864", "source": "1045", "target": "3070", "attributes": { "weight": 1 } }, { "key": "30704", "source": "1045", "target": "889", "attributes": { "weight": 1 } }, { "key": "31860", "source": "1045", "target": "644", "attributes": { "weight": 1 } }, { "key": "17356", "source": "1045", "target": "358", "attributes": { "weight": 4 } }, { "key": "12344", "source": "1045", "target": "1060", "attributes": { "weight": 3 } }, { "key": "31868", "source": "1045", "target": "359", "attributes": { "weight": 2 } }, { "key": "3765", "source": "1045", "target": "667", "attributes": { "weight": 1 } }, { "key": "29621", "source": "1045", "target": "1763", "attributes": { "weight": 2 } }, { "key": "26431", "source": "1045", "target": "454", "attributes": { "weight": 1 } }, { "key": "21510", "source": "1045", "target": "89", "attributes": { "weight": 1 } }, { "key": "31865", "source": "1045", "target": "2286", "attributes": { "weight": 1 } }, { "key": "29801", "source": "1045", "target": "93", "attributes": { "weight": 2 } }, { "key": "3763", "source": "1045", "target": "647", "attributes": { "weight": 2 } }, { "key": "31871", "source": "1045", "target": "2124", "attributes": { "weight": 2 } }, { "key": "31857", "source": "1045", "target": "3063", "attributes": { "weight": 1 } }, { "key": "31859", "source": "1045", "target": "3066", "attributes": { "weight": 1 } }, { "key": "31872", "source": "1045", "target": "2125", "attributes": { "weight": 1 } }, { "key": "17075", "source": "1045", "target": "891", "attributes": { "weight": 2 } }, { "key": "27535", "source": "1045", "target": "1520", "attributes": { "weight": 1 } }, { "key": "30360", "source": "1045", "target": "1046", "attributes": { "weight": 1 } }, { "key": "24485", "source": "1045", "target": "1801", "attributes": { "weight": 2 } }, { "key": "29802", "source": "1046", "target": "93", "attributes": { "weight": 2 } }, { "key": "24486", "source": "1046", "target": "2144", "attributes": { "weight": 1 } }, { "key": "30397", "source": "1046", "target": "790", "attributes": { "weight": 1 } }, { "key": "29194", "source": "1046", "target": "278", "attributes": { "weight": 2 } }, { "key": "21511", "source": "1046", "target": "89", "attributes": { "weight": 2 } }, { "key": "30368", "source": "1046", "target": "164", "attributes": { "weight": 1 } }, { "key": "30428", "source": "1046", "target": "178", "attributes": { "weight": 1 } }, { "key": "14190", "source": "1046", "target": "432", "attributes": { "weight": 2 } }, { "key": "4937", "source": "1046", "target": "1232", "attributes": { "weight": 2 } }, { "key": "30419", "source": "1046", "target": "163", "attributes": { "weight": 1 } }, { "key": "14191", "source": "1046", "target": "130", "attributes": { "weight": 3 } }, { "key": "29394", "source": "1046", "target": "232", "attributes": { "weight": 1 } }, { "key": "30376", "source": "1046", "target": "567", "attributes": { "weight": 1 } }, { "key": "24666", "source": "1046", "target": "5", "attributes": { "weight": 2 } }, { "key": "30371", "source": "1046", "target": "2113", "attributes": { "weight": 1 } }, { "key": "27591", "source": "1046", "target": "1060", "attributes": { "weight": 3 } }, { "key": "4939", "source": "1046", "target": "370", "attributes": { "weight": 2 } }, { "key": "30400", "source": "1046", "target": "2139", "attributes": { "weight": 1 } }, { "key": "30382", "source": "1046", "target": "264", "attributes": { "weight": 1 } }, { "key": "30410", "source": "1046", "target": "2528", "attributes": { "weight": 1 } }, { "key": "30363", "source": "1046", "target": "641", "attributes": { "weight": 1 } }, { "key": "14193", "source": "1046", "target": "168", "attributes": { "weight": 2 } }, { "key": "14195", "source": "1046", "target": "494", "attributes": { "weight": 2 } }, { "key": "30374", "source": "1046", "target": "354", "attributes": { "weight": 1 } }, { "key": "30361", "source": "1046", "target": "1380", "attributes": { "weight": 1 } }, { "key": "30435", "source": "1046", "target": "497", "attributes": { "weight": 1 } }, { "key": "3767", "source": "1046", "target": "647", "attributes": { "weight": 2 } }, { "key": "30365", "source": "1046", "target": "59", "attributes": { "weight": 1 } }, { "key": "30391", "source": "1046", "target": "452", "attributes": { "weight": 1 } }, { "key": "30411", "source": "1046", "target": "661", "attributes": { "weight": 1 } }, { "key": "30415", "source": "1046", "target": "1801", "attributes": { "weight": 1 } }, { "key": "27536", "source": "1046", "target": "1520", "attributes": { "weight": 2 } }, { "key": "30414", "source": "1046", "target": "297", "attributes": { "weight": 1 } }, { "key": "30426", "source": "1046", "target": "176", "attributes": { "weight": 1 } }, { "key": "30392", "source": "1046", "target": "650", "attributes": { "weight": 1 } }, { "key": "30436", "source": "1046", "target": "154", "attributes": { "weight": 1 } }, { "key": "30395", "source": "1046", "target": "167", "attributes": { "weight": 1 } }, { "key": "30429", "source": "1046", "target": "2291", "attributes": { "weight": 1 } }, { "key": "30389", "source": "1046", "target": "2123", "attributes": { "weight": 1 } }, { "key": "24577", "source": "1046", "target": "1041", "attributes": { "weight": 2 } }, { "key": "24487", "source": "1046", "target": "1804", "attributes": { "weight": 2 } }, { "key": "4936", "source": "1046", "target": "1037", "attributes": { "weight": 12 } }, { "key": "30377", "source": "1046", "target": "262", "attributes": { "weight": 1 } }, { "key": "30421", "source": "1046", "target": "70", "attributes": { "weight": 1 } }, { "key": "24617", "source": "1046", "target": "2232", "attributes": { "weight": 1 } }, { "key": "29623", "source": "1046", "target": "2116", "attributes": { "weight": 2 } }, { "key": "30388", "source": "1046", "target": "2114", "attributes": { "weight": 1 } }, { "key": "30396", "source": "1046", "target": "651", "attributes": { "weight": 1 } }, { "key": "30369", "source": "1046", "target": "644", "attributes": { "weight": 1 } }, { "key": "4941", "source": "1046", "target": "1090", "attributes": { "weight": 2 } }, { "key": "8688", "source": "1046", "target": "362", "attributes": { "weight": 5 } }, { "key": "18057", "source": "1046", "target": "1036", "attributes": { "weight": 2 } }, { "key": "30383", "source": "1046", "target": "357", "attributes": { "weight": 1 } }, { "key": "30427", "source": "1046", "target": "177", "attributes": { "weight": 1 } }, { "key": "30433", "source": "1046", "target": "193", "attributes": { "weight": 1 } }, { "key": "27590", "source": "1046", "target": "171", "attributes": { "weight": 2 } }, { "key": "30387", "source": "1046", "target": "1133", "attributes": { "weight": 1 } }, { "key": "30407", "source": "1046", "target": "1253", "attributes": { "weight": 1 } }, { "key": "30379", "source": "1046", "target": "225", "attributes": { "weight": 1 } }, { "key": "30362", "source": "1046", "target": "430", "attributes": { "weight": 1 } }, { "key": "30367", "source": "1046", "target": "2112", "attributes": { "weight": 1 } }, { "key": "26123", "source": "1046", "target": "1056", "attributes": { "weight": 2 } }, { "key": "30373", "source": "1046", "target": "259", "attributes": { "weight": 1 } }, { "key": "30399", "source": "1046", "target": "791", "attributes": { "weight": 2 } }, { "key": "30420", "source": "1046", "target": "2289", "attributes": { "weight": 1 } }, { "key": "30381", "source": "1046", "target": "569", "attributes": { "weight": 1 } }, { "key": "12345", "source": "1046", "target": "358", "attributes": { "weight": 5 } }, { "key": "30386", "source": "1046", "target": "1045", "attributes": { "weight": 1 } }, { "key": "30385", "source": "1046", "target": "3", "attributes": { "weight": 1 } }, { "key": "8687", "source": "1046", "target": "220", "attributes": { "weight": 3 } }, { "key": "7268", "source": "1046", "target": "454", "attributes": { "weight": 6 } }, { "key": "14192", "source": "1046", "target": "52", "attributes": { "weight": 2 } }, { "key": "30437", "source": "1046", "target": "57", "attributes": { "weight": 1 } }, { "key": "30398", "source": "1046", "target": "421", "attributes": { "weight": 1 } }, { "key": "30406", "source": "1046", "target": "53", "attributes": { "weight": 1 } }, { "key": "30384", "source": "1046", "target": "1527", "attributes": { "weight": 1 } }, { "key": "30394", "source": "1046", "target": "891", "attributes": { "weight": 1 } }, { "key": "22278", "source": "1046", "target": "794", "attributes": { "weight": 2 } }, { "key": "30408", "source": "1046", "target": "468", "attributes": { "weight": 2 } }, { "key": "30404", "source": "1046", "target": "1765", "attributes": { "weight": 2 } }, { "key": "30418", "source": "1046", "target": "473", "attributes": { "weight": 1 } }, { "key": "30366", "source": "1046", "target": "1035", "attributes": { "weight": 1 } }, { "key": "30375", "source": "1046", "target": "442", "attributes": { "weight": 1 } }, { "key": "30364", "source": "1046", "target": "889", "attributes": { "weight": 2 } }, { "key": "24932", "source": "1046", "target": "580", "attributes": { "weight": 3 } }, { "key": "24931", "source": "1046", "target": "170", "attributes": { "weight": 3 } }, { "key": "3766", "source": "1046", "target": "645", "attributes": { "weight": 3 } }, { "key": "30372", "source": "1046", "target": "440", "attributes": { "weight": 1 } }, { "key": "14194", "source": "1046", "target": "471", "attributes": { "weight": 3 } }, { "key": "30409", "source": "1046", "target": "136", "attributes": { "weight": 1 } }, { "key": "30412", "source": "1046", "target": "472", "attributes": { "weight": 2 } }, { "key": "30434", "source": "1046", "target": "495", "attributes": { "weight": 1 } }, { "key": "30380", "source": "1046", "target": "674", "attributes": { "weight": 1 } }, { "key": "30416", "source": "1046", "target": "1611", "attributes": { "weight": 1 } }, { "key": "30393", "source": "1046", "target": "109", "attributes": { "weight": 1 } }, { "key": "4940", "source": "1046", "target": "123", "attributes": { "weight": 2 } }, { "key": "30432", "source": "1046", "target": "493", "attributes": { "weight": 1 } }, { "key": "30422", "source": "1046", "target": "1026", "attributes": { "weight": 1 } }, { "key": "30403", "source": "1046", "target": "1763", "attributes": { "weight": 1 } }, { "key": "30430", "source": "1046", "target": "2124", "attributes": { "weight": 1 } }, { "key": "30370", "source": "1046", "target": "223", "attributes": { "weight": 1 } }, { "key": "30390", "source": "1046", "target": "2211", "attributes": { "weight": 1 } }, { "key": "4938", "source": "1046", "target": "1233", "attributes": { "weight": 3 } }, { "key": "30431", "source": "1046", "target": "667", "attributes": { "weight": 1 } }, { "key": "30425", "source": "1046", "target": "305", "attributes": { "weight": 1 } }, { "key": "30417", "source": "1046", "target": "189", "attributes": { "weight": 2 } }, { "key": "30413", "source": "1046", "target": "2115", "attributes": { "weight": 1 } }, { "key": "27849", "source": "1046", "target": "339", "attributes": { "weight": 2 } }, { "key": "3768", "source": "1046", "target": "419", "attributes": { "weight": 2 } }, { "key": "24618", "source": "1046", "target": "2118", "attributes": { "weight": 2 } }, { "key": "30405", "source": "1046", "target": "361", "attributes": { "weight": 2 } }, { "key": "30378", "source": "1046", "target": "1042", "attributes": { "weight": 2 } }, { "key": "30424", "source": "1046", "target": "173", "attributes": { "weight": 1 } }, { "key": "30402", "source": "1046", "target": "638", "attributes": { "weight": 1 } }, { "key": "30401", "source": "1046", "target": "359", "attributes": { "weight": 2 } }, { "key": "30423", "source": "1046", "target": "304", "attributes": { "weight": 1 } }, { "key": "34144", "source": "1047", "target": "405", "attributes": { "weight": 1 } }, { "key": "4995", "source": "1047", "target": "1090", "attributes": { "weight": 2 } }, { "key": "34103", "source": "1047", "target": "1225", "attributes": { "weight": 1 } }, { "key": "14029", "source": "1047", "target": "1031", "attributes": { "weight": 2 } }, { "key": "11501", "source": "1047", "target": "212", "attributes": { "weight": 2 } }, { "key": "34164", "source": "1047", "target": "1424", "attributes": { "weight": 1 } }, { "key": "34099", "source": "1047", "target": "419", "attributes": { "weight": 1 } }, { "key": "29535", "source": "1047", "target": "1415", "attributes": { "weight": 1 } }, { "key": "4992", "source": "1047", "target": "371", "attributes": { "weight": 3 } }, { "key": "26461", "source": "1047", "target": "188", "attributes": { "weight": 2 } }, { "key": "18676", "source": "1047", "target": "1165", "attributes": { "weight": 3 } }, { "key": "15768", "source": "1047", "target": "220", "attributes": { "weight": 4 } }, { "key": "4989", "source": "1047", "target": "368", "attributes": { "weight": 3 } }, { "key": "26468", "source": "1047", "target": "193", "attributes": { "weight": 2 } }, { "key": "34142", "source": "1047", "target": "1315", "attributes": { "weight": 1 } }, { "key": "11502", "source": "1047", "target": "215", "attributes": { "weight": 2 } }, { "key": "15772", "source": "1047", "target": "1329", "attributes": { "weight": 1 } }, { "key": "31303", "source": "1047", "target": "674", "attributes": { "weight": 1 } }, { "key": "34155", "source": "1047", "target": "928", "attributes": { "weight": 1 } }, { "key": "34137", "source": "1047", "target": "403", "attributes": { "weight": 1 } }, { "key": "34118", "source": "1047", "target": "1262", "attributes": { "weight": 1 } }, { "key": "34090", "source": "1047", "target": "1172", "attributes": { "weight": 1 } }, { "key": "34114", "source": "1047", "target": "337", "attributes": { "weight": 1 } }, { "key": "18677", "source": "1047", "target": "1552", "attributes": { "weight": 2 } }, { "key": "34145", "source": "1047", "target": "1316", "attributes": { "weight": 1 } }, { "key": "7274", "source": "1047", "target": "154", "attributes": { "weight": 2 } }, { "key": "26462", "source": "1047", "target": "471", "attributes": { "weight": 2 } }, { "key": "34109", "source": "1047", "target": "1232", "attributes": { "weight": 1 } }, { "key": "3770", "source": "1047", "target": "223", "attributes": { "weight": 5 } }, { "key": "34130", "source": "1047", "target": "1291", "attributes": { "weight": 1 } }, { "key": "26454", "source": "1047", "target": "435", "attributes": { "weight": 2 } }, { "key": "34088", "source": "1047", "target": "1789", "attributes": { "weight": 1 } }, { "key": "11505", "source": "1047", "target": "218", "attributes": { "weight": 2 } }, { "key": "26467", "source": "1047", "target": "490", "attributes": { "weight": 2 } }, { "key": "34161", "source": "1047", "target": "375", "attributes": { "weight": 1 } }, { "key": "34095", "source": "1047", "target": "1184", "attributes": { "weight": 1 } }, { "key": "7273", "source": "1047", "target": "373", "attributes": { "weight": 2 } }, { "key": "34153", "source": "1047", "target": "963", "attributes": { "weight": 1 } }, { "key": "7276", "source": "1047", "target": "377", "attributes": { "weight": 1 } }, { "key": "34085", "source": "1047", "target": "1152", "attributes": { "weight": 2 } }, { "key": "34147", "source": "1047", "target": "254", "attributes": { "weight": 1 } }, { "key": "13048", "source": "1047", "target": "305", "attributes": { "weight": 2 } }, { "key": "34154", "source": "1047", "target": "257", "attributes": { "weight": 1 } }, { "key": "35098", "source": "1047", "target": "200", "attributes": { "weight": 1 } }, { "key": "34121", "source": "1047", "target": "396", "attributes": { "weight": 1 } }, { "key": "10666", "source": "1047", "target": "1314", "attributes": { "weight": 2 } }, { "key": "31302", "source": "1047", "target": "59", "attributes": { "weight": 2 } }, { "key": "26456", "source": "1047", "target": "183", "attributes": { "weight": 2 } }, { "key": "15769", "source": "1047", "target": "912", "attributes": { "weight": 2 } }, { "key": "34108", "source": "1047", "target": "1227", "attributes": { "weight": 1 } }, { "key": "4990", "source": "1047", "target": "168", "attributes": { "weight": 3 } }, { "key": "26460", "source": "1047", "target": "1219", "attributes": { "weight": 2 } }, { "key": "34159", "source": "1047", "target": "931", "attributes": { "weight": 1 } }, { "key": "15771", "source": "1047", "target": "925", "attributes": { "weight": 2 } }, { "key": "27236", "source": "1047", "target": "52", "attributes": { "weight": 2 } }, { "key": "9453", "source": "1047", "target": "645", "attributes": { "weight": 2 } }, { "key": "34143", "source": "1047", "target": "634", "attributes": { "weight": 1 } }, { "key": "26464", "source": "1047", "target": "189", "attributes": { "weight": 2 } }, { "key": "34111", "source": "1047", "target": "1236", "attributes": { "weight": 1 } }, { "key": "32874", "source": "1047", "target": "1744", "attributes": { "weight": 2 } }, { "key": "7277", "source": "1047", "target": "1063", "attributes": { "weight": 2 } }, { "key": "34107", "source": "1047", "target": "391", "attributes": { "weight": 1 } }, { "key": "34149", "source": "1047", "target": "406", "attributes": { "weight": 1 } }, { "key": "34102", "source": "1047", "target": "1214", "attributes": { "weight": 1 } }, { "key": "34115", "source": "1047", "target": "338", "attributes": { "weight": 2 } }, { "key": "34150", "source": "1047", "target": "407", "attributes": { "weight": 1 } }, { "key": "34123", "source": "1047", "target": "1269", "attributes": { "weight": 1 } }, { "key": "34097", "source": "1047", "target": "1194", "attributes": { "weight": 1 } }, { "key": "26457", "source": "1047", "target": "450", "attributes": { "weight": 2 } }, { "key": "34083", "source": "1047", "target": "248", "attributes": { "weight": 1 } }, { "key": "15770", "source": "1047", "target": "913", "attributes": { "weight": 2 } }, { "key": "34132", "source": "1047", "target": "990", "attributes": { "weight": 1 } }, { "key": "34089", "source": "1047", "target": "1171", "attributes": { "weight": 1 } }, { "key": "34148", "source": "1047", "target": "1323", "attributes": { "weight": 2 } }, { "key": "34127", "source": "1047", "target": "1286", "attributes": { "weight": 1 } }, { "key": "34093", "source": "1047", "target": "1180", "attributes": { "weight": 1 } }, { "key": "34138", "source": "1047", "target": "1792", "attributes": { "weight": 1 } }, { "key": "11499", "source": "1047", "target": "199", "attributes": { "weight": 2 } }, { "key": "36547", "source": "1047", "target": "1228", "attributes": { "weight": 1 } }, { "key": "34096", "source": "1047", "target": "387", "attributes": { "weight": 1 } }, { "key": "34094", "source": "1047", "target": "1182", "attributes": { "weight": 1 } }, { "key": "26463", "source": "1047", "target": "472", "attributes": { "weight": 2 } }, { "key": "34087", "source": "1047", "target": "237", "attributes": { "weight": 1 } }, { "key": "34117", "source": "1047", "target": "544", "attributes": { "weight": 1 } }, { "key": "34092", "source": "1047", "target": "631", "attributes": { "weight": 1 } }, { "key": "34116", "source": "1047", "target": "30", "attributes": { "weight": 1 } }, { "key": "13047", "source": "1047", "target": "304", "attributes": { "weight": 2 } }, { "key": "11504", "source": "1047", "target": "1334", "attributes": { "weight": 1 } }, { "key": "10665", "source": "1047", "target": "43", "attributes": { "weight": 2 } }, { "key": "18447", "source": "1047", "target": "1738", "attributes": { "weight": 1 } }, { "key": "34106", "source": "1047", "target": "918", "attributes": { "weight": 1 } }, { "key": "26455", "source": "1047", "target": "449", "attributes": { "weight": 2 } }, { "key": "34110", "source": "1047", "target": "1233", "attributes": { "weight": 1 } }, { "key": "7272", "source": "1047", "target": "926", "attributes": { "weight": 5 } }, { "key": "34162", "source": "1047", "target": "149", "attributes": { "weight": 1 } }, { "key": "34101", "source": "1047", "target": "1199", "attributes": { "weight": 1 } }, { "key": "4994", "source": "1047", "target": "1125", "attributes": { "weight": 3 } }, { "key": "34151", "source": "1047", "target": "408", "attributes": { "weight": 1 } }, { "key": "34100", "source": "1047", "target": "1197", "attributes": { "weight": 2 } }, { "key": "11503", "source": "1047", "target": "961", "attributes": { "weight": 2 } }, { "key": "34119", "source": "1047", "target": "1263", "attributes": { "weight": 1 } }, { "key": "4991", "source": "1047", "target": "468", "attributes": { "weight": 8 } }, { "key": "34135", "source": "1047", "target": "372", "attributes": { "weight": 1 } }, { "key": "34086", "source": "1047", "target": "1155", "attributes": { "weight": 1 } }, { "key": "34157", "source": "1047", "target": "930", "attributes": { "weight": 1 } }, { "key": "34141", "source": "1047", "target": "1309", "attributes": { "weight": 1 } }, { "key": "34126", "source": "1047", "target": "1281", "attributes": { "weight": 1 } }, { "key": "8715", "source": "1047", "target": "442", "attributes": { "weight": 4 } }, { "key": "34104", "source": "1047", "target": "109", "attributes": { "weight": 1 } }, { "key": "7275", "source": "1047", "target": "333", "attributes": { "weight": 3 } }, { "key": "4988", "source": "1047", "target": "779", "attributes": { "weight": 3 } }, { "key": "34091", "source": "1047", "target": "1174", "attributes": { "weight": 1 } }, { "key": "34120", "source": "1047", "target": "924", "attributes": { "weight": 1 } }, { "key": "34160", "source": "1047", "target": "1350", "attributes": { "weight": 1 } }, { "key": "34124", "source": "1047", "target": "1278", "attributes": { "weight": 1 } }, { "key": "34133", "source": "1047", "target": "1298", "attributes": { "weight": 1 } }, { "key": "34140", "source": "1047", "target": "1307", "attributes": { "weight": 1 } }, { "key": "34146", "source": "1047", "target": "1321", "attributes": { "weight": 1 } }, { "key": "34129", "source": "1047", "target": "1289", "attributes": { "weight": 1 } }, { "key": "4996", "source": "1047", "target": "1294", "attributes": { "weight": 4 } }, { "key": "34113", "source": "1047", "target": "205", "attributes": { "weight": 1 } }, { "key": "4997", "source": "1047", "target": "1322", "attributes": { "weight": 3 } }, { "key": "27362", "source": "1047", "target": "340", "attributes": { "weight": 2 } }, { "key": "26466", "source": "1047", "target": "2111", "attributes": { "weight": 2 } }, { "key": "34156", "source": "1047", "target": "1342", "attributes": { "weight": 1 } }, { "key": "34125", "source": "1047", "target": "1279", "attributes": { "weight": 1 } }, { "key": "34128", "source": "1047", "target": "1287", "attributes": { "weight": 1 } }, { "key": "34105", "source": "1047", "target": "917", "attributes": { "weight": 1 } }, { "key": "34152", "source": "1047", "target": "124", "attributes": { "weight": 2 } }, { "key": "28347", "source": "1047", "target": "580", "attributes": { "weight": 2 } }, { "key": "34098", "source": "1047", "target": "1196", "attributes": { "weight": 1 } }, { "key": "26453", "source": "1047", "target": "2645", "attributes": { "weight": 2 } }, { "key": "34134", "source": "1047", "target": "785", "attributes": { "weight": 1 } }, { "key": "34139", "source": "1047", "target": "1305", "attributes": { "weight": 1 } }, { "key": "34136", "source": "1047", "target": "1301", "attributes": { "weight": 1 } }, { "key": "11498", "source": "1047", "target": "938", "attributes": { "weight": 2 } }, { "key": "34131", "source": "1047", "target": "1296", "attributes": { "weight": 1 } }, { "key": "31304", "source": "1047", "target": "70", "attributes": { "weight": 2 } }, { "key": "34163", "source": "1047", "target": "1406", "attributes": { "weight": 1 } }, { "key": "34082", "source": "1047", "target": "933", "attributes": { "weight": 1 } }, { "key": "11500", "source": "1047", "target": "208", "attributes": { "weight": 2 } }, { "key": "8714", "source": "1047", "target": "195", "attributes": { "weight": 7 } }, { "key": "26465", "source": "1047", "target": "473", "attributes": { "weight": 2 } }, { "key": "34122", "source": "1047", "target": "1268", "attributes": { "weight": 1 } }, { "key": "34112", "source": "1047", "target": "1239", "attributes": { "weight": 1 } }, { "key": "26452", "source": "1047", "target": "130", "attributes": { "weight": 2 } }, { "key": "26459", "source": "1047", "target": "454", "attributes": { "weight": 2 } }, { "key": "27237", "source": "1047", "target": "57", "attributes": { "weight": 2 } }, { "key": "32873", "source": "1047", "target": "470", "attributes": { "weight": 3 } }, { "key": "34158", "source": "1047", "target": "1347", "attributes": { "weight": 1 } }, { "key": "26458", "source": "1047", "target": "452", "attributes": { "weight": 2 } }, { "key": "34084", "source": "1047", "target": "236", "attributes": { "weight": 1 } }, { "key": "4993", "source": "1047", "target": "123", "attributes": { "weight": 3 } }, { "key": "3775", "source": "1048", "target": "419", "attributes": { "weight": 2 } }, { "key": "24580", "source": "1049", "target": "1046", "attributes": { "weight": 1 } }, { "key": "3785", "source": "1049", "target": "645", "attributes": { "weight": 5 } }, { "key": "24579", "source": "1049", "target": "1045", "attributes": { "weight": 1 } }, { "key": "24581", "source": "1049", "target": "794", "attributes": { "weight": 1 } }, { "key": "24578", "source": "1049", "target": "1036", "attributes": { "weight": 1 } }, { "key": "3786", "source": "1049", "target": "358", "attributes": { "weight": 2 } }, { "key": "3784", "source": "1049", "target": "644", "attributes": { "weight": 4 } }, { "key": "9480", "source": "1050", "target": "657", "attributes": { "weight": 1 } }, { "key": "3787", "source": "1050", "target": "419", "attributes": { "weight": 4 } }, { "key": "9481", "source": "1050", "target": "666", "attributes": { "weight": 1 } }, { "key": "27724", "source": "1051", "target": "1042", "attributes": { "weight": 3 } }, { "key": "31164", "source": "1051", "target": "651", "attributes": { "weight": 1 } }, { "key": "3788", "source": "1051", "target": "661", "attributes": { "weight": 4 } }, { "key": "9482", "source": "1052", "target": "653", "attributes": { "weight": 1 } }, { "key": "3789", "source": "1052", "target": "354", "attributes": { "weight": 3 } }, { "key": "3790", "source": "1052", "target": "649", "attributes": { "weight": 3 } }, { "key": "3791", "source": "1053", "target": "645", "attributes": { "weight": 3 } }, { "key": "9483", "source": "1053", "target": "419", "attributes": { "weight": 2 } }, { "key": "9484", "source": "1054", "target": "419", "attributes": { "weight": 1 } }, { "key": "3792", "source": "1054", "target": "354", "attributes": { "weight": 5 } }, { "key": "3793", "source": "1054", "target": "661", "attributes": { "weight": 5 } }, { "key": "3796", "source": "1055", "target": "419", "attributes": { "weight": 3 } }, { "key": "3795", "source": "1055", "target": "645", "attributes": { "weight": 3 } }, { "key": "24750", "source": "1056", "target": "889", "attributes": { "weight": 3 } }, { "key": "24528", "source": "1056", "target": "1798", "attributes": { "weight": 1 } }, { "key": "37108", "source": "1056", "target": "2124", "attributes": { "weight": 1 } }, { "key": "3805", "source": "1056", "target": "1036", "attributes": { "weight": 4 } }, { "key": "12351", "source": "1056", "target": "355", "attributes": { "weight": 1 } }, { "key": "24636", "source": "1056", "target": "2237", "attributes": { "weight": 1 } }, { "key": "9497", "source": "1056", "target": "650", "attributes": { "weight": 1 } }, { "key": "24582", "source": "1056", "target": "1041", "attributes": { "weight": 1 } }, { "key": "5254", "source": "1056", "target": "468", "attributes": { "weight": 3 } }, { "key": "26141", "source": "1056", "target": "661", "attributes": { "weight": 1 } }, { "key": "34468", "source": "1056", "target": "1232", "attributes": { "weight": 1 } }, { "key": "26132", "source": "1056", "target": "647", "attributes": { "weight": 1 } }, { "key": "24755", "source": "1056", "target": "2528", "attributes": { "weight": 2 } }, { "key": "8802", "source": "1056", "target": "1045", "attributes": { "weight": 6 } }, { "key": "26130", "source": "1056", "target": "164", "attributes": { "weight": 1 } }, { "key": "26143", "source": "1056", "target": "667", "attributes": { "weight": 1 } }, { "key": "24635", "source": "1056", "target": "1046", "attributes": { "weight": 3 } }, { "key": "24756", "source": "1056", "target": "2289", "attributes": { "weight": 2 } }, { "key": "26131", "source": "1056", "target": "1042", "attributes": { "weight": 3 } }, { "key": "21587", "source": "1056", "target": "89", "attributes": { "weight": 2 } }, { "key": "27873", "source": "1056", "target": "2670", "attributes": { "weight": 1 } }, { "key": "17615", "source": "1056", "target": "1801", "attributes": { "weight": 3 } }, { "key": "3806", "source": "1056", "target": "645", "attributes": { "weight": 2 } }, { "key": "26134", "source": "1056", "target": "454", "attributes": { "weight": 2 } }, { "key": "17614", "source": "1056", "target": "2143", "attributes": { "weight": 1 } }, { "key": "17477", "source": "1056", "target": "358", "attributes": { "weight": 4 } }, { "key": "17616", "source": "1056", "target": "1804", "attributes": { "weight": 2 } }, { "key": "12352", "source": "1056", "target": "357", "attributes": { "weight": 2 } }, { "key": "24753", "source": "1056", "target": "339", "attributes": { "weight": 3 } }, { "key": "18436", "source": "1056", "target": "359", "attributes": { "weight": 5 } }, { "key": "33050", "source": "1056", "target": "493", "attributes": { "weight": 1 } }, { "key": "26142", "source": "1056", "target": "362", "attributes": { "weight": 2 } }, { "key": "17613", "source": "1056", "target": "1794", "attributes": { "weight": 2 } }, { "key": "26136", "source": "1056", "target": "421", "attributes": { "weight": 1 } }, { "key": "18437", "source": "1056", "target": "422", "attributes": { "weight": 1 } }, { "key": "11167", "source": "1056", "target": "452", "attributes": { "weight": 2 } }, { "key": "26139", "source": "1056", "target": "171", "attributes": { "weight": 1 } }, { "key": "26140", "source": "1056", "target": "1253", "attributes": { "weight": 3 } }, { "key": "17908", "source": "1056", "target": "1380", "attributes": { "weight": 3 } }, { "key": "17082", "source": "1056", "target": "891", "attributes": { "weight": 6 } }, { "key": "22296", "source": "1056", "target": "794", "attributes": { "weight": 1 } }, { "key": "26137", "source": "1056", "target": "791", "attributes": { "weight": 2 } }, { "key": "24751", "source": "1056", "target": "2312", "attributes": { "weight": 1 } }, { "key": "29681", "source": "1056", "target": "2119", "attributes": { "weight": 1 } }, { "key": "9496", "source": "1056", "target": "641", "attributes": { "weight": 1 } }, { "key": "22675", "source": "1056", "target": "1037", "attributes": { "weight": 4 } }, { "key": "24754", "source": "1056", "target": "2313", "attributes": { "weight": 3 } }, { "key": "8801", "source": "1056", "target": "220", "attributes": { "weight": 3 } }, { "key": "24752", "source": "1056", "target": "1520", "attributes": { "weight": 3 } }, { "key": "26135", "source": "1056", "target": "790", "attributes": { "weight": 1 } }, { "key": "26138", "source": "1056", "target": "370", "attributes": { "weight": 1 } }, { "key": "29680", "source": "1056", "target": "2116", "attributes": { "weight": 1 } }, { "key": "26133", "source": "1056", "target": "419", "attributes": { "weight": 1 } }, { "key": "24758", "source": "1056", "target": "232", "attributes": { "weight": 4 } }, { "key": "31958", "source": "1056", "target": "2115", "attributes": { "weight": 2 } }, { "key": "24529", "source": "1056", "target": "2144", "attributes": { "weight": 1 } }, { "key": "24757", "source": "1056", "target": "1060", "attributes": { "weight": 4 } }, { "key": "3819", "source": "1057", "target": "645", "attributes": { "weight": 2 } }, { "key": "3822", "source": "1058", "target": "645", "attributes": { "weight": 3 } }, { "key": "3823", "source": "1059", "target": "651", "attributes": { "weight": 3 } }, { "key": "9524", "source": "1060", "target": "667", "attributes": { "weight": 1 } }, { "key": "32017", "source": "1060", "target": "3074", "attributes": { "weight": 1 } }, { "key": "32003", "source": "1060", "target": "2314", "attributes": { "weight": 1 } }, { "key": "32000", "source": "1060", "target": "3070", "attributes": { "weight": 2 } }, { "key": "28635", "source": "1060", "target": "421", "attributes": { "weight": 3 } }, { "key": "31989", "source": "1060", "target": "3065", "attributes": { "weight": 1 } }, { "key": "32022", "source": "1060", "target": "2126", "attributes": { "weight": 1 } }, { "key": "31992", "source": "1060", "target": "259", "attributes": { "weight": 1 } }, { "key": "17970", "source": "1060", "target": "1380", "attributes": { "weight": 2 } }, { "key": "3826", "source": "1060", "target": "645", "attributes": { "weight": 3 } }, { "key": "11269", "source": "1060", "target": "473", "attributes": { "weight": 2 } }, { "key": "31995", "source": "1060", "target": "647", "attributes": { "weight": 1 } }, { "key": "31996", "source": "1060", "target": "1045", "attributes": { "weight": 2 } }, { "key": "37119", "source": "1060", "target": "2528", "attributes": { "weight": 1 } }, { "key": "29734", "source": "1060", "target": "1763", "attributes": { "weight": 2 } }, { "key": "11268", "source": "1060", "target": "452", "attributes": { "weight": 2 } }, { "key": "10565", "source": "1060", "target": "339", "attributes": { "weight": 3 } }, { "key": "24761", "source": "1060", "target": "1056", "attributes": { "weight": 4 } }, { "key": "37116", "source": "1060", "target": "2312", "attributes": { "weight": 1 } }, { "key": "27728", "source": "1060", "target": "1042", "attributes": { "weight": 3 } }, { "key": "9050", "source": "1060", "target": "442", "attributes": { "weight": 2 } }, { "key": "9522", "source": "1060", "target": "1041", "attributes": { "weight": 2 } }, { "key": "32005", "source": "1060", "target": "1232", "attributes": { "weight": 1 } }, { "key": "9523", "source": "1060", "target": "419", "attributes": { "weight": 2 } }, { "key": "26742", "source": "1060", "target": "454", "attributes": { "weight": 2 } }, { "key": "24643", "source": "1060", "target": "2118", "attributes": { "weight": 2 } }, { "key": "32004", "source": "1060", "target": "651", "attributes": { "weight": 1 } }, { "key": "32001", "source": "1060", "target": "52", "attributes": { "weight": 1 } }, { "key": "32013", "source": "1060", "target": "3071", "attributes": { "weight": 1 } }, { "key": "31999", "source": "1060", "target": "2123", "attributes": { "weight": 1 } }, { "key": "17083", "source": "1060", "target": "891", "attributes": { "weight": 4 } }, { "key": "30719", "source": "1060", "target": "889", "attributes": { "weight": 3 } }, { "key": "29735", "source": "1060", "target": "2119", "attributes": { "weight": 1 } }, { "key": "21599", "source": "1060", "target": "89", "attributes": { "weight": 1 } }, { "key": "31994", "source": "1060", "target": "225", "attributes": { "weight": 1 } }, { "key": "12034", "source": "1060", "target": "468", "attributes": { "weight": 2 } }, { "key": "26743", "source": "1060", "target": "189", "attributes": { "weight": 1 } }, { "key": "31987", "source": "1060", "target": "2233", "attributes": { "weight": 2 } }, { "key": "22685", "source": "1060", "target": "1037", "attributes": { "weight": 2 } }, { "key": "32009", "source": "1060", "target": "660", "attributes": { "weight": 1 } }, { "key": "24644", "source": "1060", "target": "2239", "attributes": { "weight": 1 } }, { "key": "18082", "source": "1060", "target": "1036", "attributes": { "weight": 3 } }, { "key": "32015", "source": "1060", "target": "3073", "attributes": { "weight": 1 } }, { "key": "29831", "source": "1060", "target": "93", "attributes": { "weight": 2 } }, { "key": "32002", "source": "1060", "target": "2286", "attributes": { "weight": 1 } }, { "key": "25764", "source": "1060", "target": "278", "attributes": { "weight": 1 } }, { "key": "28637", "source": "1060", "target": "2116", "attributes": { "weight": 3 } }, { "key": "31986", "source": "1060", "target": "3063", "attributes": { "weight": 1 } }, { "key": "32006", "source": "1060", "target": "791", "attributes": { "weight": 2 } }, { "key": "32020", "source": "1060", "target": "3076", "attributes": { "weight": 1 } }, { "key": "31997", "source": "1060", "target": "3067", "attributes": { "weight": 1 } }, { "key": "37117", "source": "1060", "target": "2313", "attributes": { "weight": 1 } }, { "key": "25765", "source": "1060", "target": "359", "attributes": { "weight": 5 } }, { "key": "28636", "source": "1060", "target": "1253", "attributes": { "weight": 3 } }, { "key": "22308", "source": "1060", "target": "794", "attributes": { "weight": 1 } }, { "key": "31993", "source": "1060", "target": "567", "attributes": { "weight": 1 } }, { "key": "17510", "source": "1060", "target": "358", "attributes": { "weight": 4 } }, { "key": "31991", "source": "1060", "target": "644", "attributes": { "weight": 1 } }, { "key": "32019", "source": "1060", "target": "3075", "attributes": { "weight": 1 } }, { "key": "31998", "source": "1060", "target": "3068", "attributes": { "weight": 1 } }, { "key": "32014", "source": "1060", "target": "3072", "attributes": { "weight": 1 } }, { "key": "27546", "source": "1060", "target": "1520", "attributes": { "weight": 2 } }, { "key": "31471", "source": "1060", "target": "178", "attributes": { "weight": 2 } }, { "key": "32012", "source": "1060", "target": "2115", "attributes": { "weight": 2 } }, { "key": "37118", "source": "1060", "target": "2861", "attributes": { "weight": 1 } }, { "key": "12356", "source": "1060", "target": "357", "attributes": { "weight": 2 } }, { "key": "32018", "source": "1060", "target": "2125", "attributes": { "weight": 1 } }, { "key": "14277", "source": "1060", "target": "168", "attributes": { "weight": 1 } }, { "key": "27886", "source": "1060", "target": "2670", "attributes": { "weight": 3 } }, { "key": "27656", "source": "1060", "target": "1046", "attributes": { "weight": 3 } }, { "key": "31990", "source": "1060", "target": "3066", "attributes": { "weight": 1 } }, { "key": "32008", "source": "1060", "target": "171", "attributes": { "weight": 1 } }, { "key": "31988", "source": "1060", "target": "3064", "attributes": { "weight": 1 } }, { "key": "32016", "source": "1060", "target": "2124", "attributes": { "weight": 2 } }, { "key": "32011", "source": "1060", "target": "362", "attributes": { "weight": 2 } }, { "key": "32007", "source": "1060", "target": "370", "attributes": { "weight": 1 } }, { "key": "37120", "source": "1060", "target": "232", "attributes": { "weight": 1 } }, { "key": "32021", "source": "1060", "target": "3077", "attributes": { "weight": 1 } }, { "key": "32010", "source": "1060", "target": "661", "attributes": { "weight": 1 } }, { "key": "31118", "source": "1060", "target": "1765", "attributes": { "weight": 3 } }, { "key": "3833", "source": "1061", "target": "661", "attributes": { "weight": 3 } }, { "key": "27731", "source": "1061", "target": "1042", "attributes": { "weight": 2 } }, { "key": "24590", "source": "1061", "target": "178", "attributes": { "weight": 2 } }, { "key": "9705", "source": "1061", "target": "171", "attributes": { "weight": 2 } }, { "key": "3835", "source": "1062", "target": "419", "attributes": { "weight": 4 } }, { "key": "3834", "source": "1062", "target": "645", "attributes": { "weight": 3 } }, { "key": "7723", "source": "1063", "target": "1047", "attributes": { "weight": 2 } }, { "key": "7700", "source": "1063", "target": "248", "attributes": { "weight": 2 } }, { "key": "33017", "source": "1063", "target": "472", "attributes": { "weight": 1 } }, { "key": "7753", "source": "1063", "target": "1296", "attributes": { "weight": 2 } }, { "key": "7739", "source": "1063", "target": "30", "attributes": { "weight": 1 } }, { "key": "6549", "source": "1063", "target": "338", "attributes": { "weight": 5 } }, { "key": "6554", "source": "1063", "target": "123", "attributes": { "weight": 6 } }, { "key": "36828", "source": "1063", "target": "1279", "attributes": { "weight": 1 } }, { "key": "29768", "source": "1063", "target": "1253", "attributes": { "weight": 1 } }, { "key": "7703", "source": "1063", "target": "1036", "attributes": { "weight": 2 } }, { "key": "7702", "source": "1063", "target": "236", "attributes": { "weight": 2 } }, { "key": "7720", "source": "1063", "target": "1197", "attributes": { "weight": 2 } }, { "key": "7775", "source": "1063", "target": "1391", "attributes": { "weight": 1 } }, { "key": "7747", "source": "1063", "target": "926", "attributes": { "weight": 2 } }, { "key": "7791", "source": "1063", "target": "1414", "attributes": { "weight": 1 } }, { "key": "7729", "source": "1063", "target": "1220", "attributes": { "weight": 2 } }, { "key": "7744", "source": "1063", "target": "396", "attributes": { "weight": 2 } }, { "key": "7746", "source": "1063", "target": "925", "attributes": { "weight": 4 } }, { "key": "36830", "source": "1063", "target": "257", "attributes": { "weight": 1 } }, { "key": "7756", "source": "1063", "target": "372", "attributes": { "weight": 3 } }, { "key": "7704", "source": "1063", "target": "1381", "attributes": { "weight": 2 } }, { "key": "7754", "source": "1063", "target": "990", "attributes": { "weight": 2 } }, { "key": "7705", "source": "1063", "target": "130", "attributes": { "weight": 2 } }, { "key": "7750", "source": "1063", "target": "580", "attributes": { "weight": 2 } }, { "key": "7731", "source": "1063", "target": "392", "attributes": { "weight": 1 } }, { "key": "7769", "source": "1063", "target": "340", "attributes": { "weight": 2 } }, { "key": "7752", "source": "1063", "target": "1294", "attributes": { "weight": 1 } }, { "key": "7780", "source": "1063", "target": "1350", "attributes": { "weight": 3 } }, { "key": "7761", "source": "1063", "target": "1315", "attributes": { "weight": 1 } }, { "key": "29766", "source": "1063", "target": "421", "attributes": { "weight": 1 } }, { "key": "7764", "source": "1063", "target": "1323", "attributes": { "weight": 2 } }, { "key": "7745", "source": "1063", "target": "1269", "attributes": { "weight": 1 } }, { "key": "7713", "source": "1063", "target": "1383", "attributes": { "weight": 2 } }, { "key": "33018", "source": "1063", "target": "494", "attributes": { "weight": 1 } }, { "key": "10790", "source": "1063", "target": "1314", "attributes": { "weight": 1 } }, { "key": "7784", "source": "1063", "target": "1404", "attributes": { "weight": 1 } }, { "key": "7771", "source": "1063", "target": "1347", "attributes": { "weight": 2 } }, { "key": "6547", "source": "1063", "target": "370", "attributes": { "weight": 6 } }, { "key": "30799", "source": "1063", "target": "1370", "attributes": { "weight": 2 } }, { "key": "7726", "source": "1063", "target": "454", "attributes": { "weight": 2 } }, { "key": "7787", "source": "1063", "target": "1408", "attributes": { "weight": 2 } }, { "key": "7757", "source": "1063", "target": "305", "attributes": { "weight": 2 } }, { "key": "31825", "source": "1063", "target": "595", "attributes": { "weight": 1 } }, { "key": "7714", "source": "1063", "target": "442", "attributes": { "weight": 6 } }, { "key": "7741", "source": "1063", "target": "1262", "attributes": { "weight": 3 } }, { "key": "6552", "source": "1063", "target": "208", "attributes": { "weight": 5 } }, { "key": "7778", "source": "1063", "target": "1397", "attributes": { "weight": 1 } }, { "key": "6555", "source": "1063", "target": "1090", "attributes": { "weight": 4 } }, { "key": "7773", "source": "1063", "target": "1377", "attributes": { "weight": 3 } }, { "key": "7707", "source": "1063", "target": "1156", "attributes": { "weight": 2 } }, { "key": "7730", "source": "1063", "target": "109", "attributes": { "weight": 2 } }, { "key": "32047", "source": "1063", "target": "359", "attributes": { "weight": 1 } }, { "key": "7740", "source": "1063", "target": "544", "attributes": { "weight": 2 } }, { "key": "6545", "source": "1063", "target": "1196", "attributes": { "weight": 3 } }, { "key": "7794", "source": "1063", "target": "625", "attributes": { "weight": 3 } }, { "key": "16413", "source": "1063", "target": "220", "attributes": { "weight": 3 } }, { "key": "7712", "source": "1063", "target": "1174", "attributes": { "weight": 1 } }, { "key": "7742", "source": "1063", "target": "1263", "attributes": { "weight": 1 } }, { "key": "7758", "source": "1063", "target": "1305", "attributes": { "weight": 1 } }, { "key": "7766", "source": "1063", "target": "1388", "attributes": { "weight": 4 } }, { "key": "6551", "source": "1063", "target": "468", "attributes": { "weight": 6 } }, { "key": "14130", "source": "1063", "target": "1031", "attributes": { "weight": 1 } }, { "key": "7718", "source": "1063", "target": "387", "attributes": { "weight": 3 } }, { "key": "7733", "source": "1063", "target": "1385", "attributes": { "weight": 2 } }, { "key": "30797", "source": "1063", "target": "470", "attributes": { "weight": 3 } }, { "key": "36829", "source": "1063", "target": "961", "attributes": { "weight": 1 } }, { "key": "7725", "source": "1063", "target": "199", "attributes": { "weight": 4 } }, { "key": "7763", "source": "1063", "target": "1322", "attributes": { "weight": 1 } }, { "key": "7710", "source": "1063", "target": "43", "attributes": { "weight": 2 } }, { "key": "7767", "source": "1063", "target": "124", "attributes": { "weight": 2 } }, { "key": "7751", "source": "1063", "target": "304", "attributes": { "weight": 3 } }, { "key": "7743", "source": "1063", "target": "923", "attributes": { "weight": 1 } }, { "key": "7777", "source": "1063", "target": "373", "attributes": { "weight": 2 } }, { "key": "7716", "source": "1063", "target": "1184", "attributes": { "weight": 2 } }, { "key": "3839", "source": "1063", "target": "223", "attributes": { "weight": 2 } }, { "key": "7789", "source": "1063", "target": "1412", "attributes": { "weight": 1 } }, { "key": "7774", "source": "1063", "target": "497", "attributes": { "weight": 2 } }, { "key": "7738", "source": "1063", "target": "780", "attributes": { "weight": 4 } }, { "key": "7782", "source": "1063", "target": "375", "attributes": { "weight": 2 } }, { "key": "7802", "source": "1063", "target": "1427", "attributes": { "weight": 1 } }, { "key": "17529", "source": "1063", "target": "358", "attributes": { "weight": 1 } }, { "key": "7779", "source": "1063", "target": "1398", "attributes": { "weight": 1 } }, { "key": "7795", "source": "1063", "target": "1417", "attributes": { "weight": 2 } }, { "key": "7709", "source": "1063", "target": "1165", "attributes": { "weight": 1 } }, { "key": "7776", "source": "1063", "target": "1396", "attributes": { "weight": 2 } }, { "key": "7800", "source": "1063", "target": "851", "attributes": { "weight": 2 } }, { "key": "7717", "source": "1063", "target": "674", "attributes": { "weight": 3 } }, { "key": "7724", "source": "1063", "target": "452", "attributes": { "weight": 5 } }, { "key": "7728", "source": "1063", "target": "201", "attributes": { "weight": 1 } }, { "key": "7708", "source": "1063", "target": "1158", "attributes": { "weight": 2 } }, { "key": "7788", "source": "1063", "target": "1411", "attributes": { "weight": 1 } }, { "key": "7732", "source": "1063", "target": "168", "attributes": { "weight": 2 } }, { "key": "14168", "source": "1063", "target": "1963", "attributes": { "weight": 1 } }, { "key": "7711", "source": "1063", "target": "938", "attributes": { "weight": 2 } }, { "key": "7760", "source": "1063", "target": "215", "attributes": { "weight": 2 } }, { "key": "6550", "source": "1063", "target": "921", "attributes": { "weight": 6 } }, { "key": "6546", "source": "1063", "target": "368", "attributes": { "weight": 5 } }, { "key": "7785", "source": "1063", "target": "1406", "attributes": { "weight": 2 } }, { "key": "7796", "source": "1063", "target": "1419", "attributes": { "weight": 1 } }, { "key": "7781", "source": "1063", "target": "1401", "attributes": { "weight": 2 } }, { "key": "7727", "source": "1063", "target": "1214", "attributes": { "weight": 2 } }, { "key": "7759", "source": "1063", "target": "1309", "attributes": { "weight": 1 } }, { "key": "7701", "source": "1063", "target": "195", "attributes": { "weight": 6 } }, { "key": "27894", "source": "1063", "target": "339", "attributes": { "weight": 1 } }, { "key": "36831", "source": "1063", "target": "374", "attributes": { "weight": 1 } }, { "key": "33016", "source": "1063", "target": "135", "attributes": { "weight": 1 } }, { "key": "7749", "source": "1063", "target": "1281", "attributes": { "weight": 2 } }, { "key": "7797", "source": "1063", "target": "1420", "attributes": { "weight": 1 } }, { "key": "7734", "source": "1063", "target": "1232", "attributes": { "weight": 2 } }, { "key": "12844", "source": "1063", "target": "785", "attributes": { "weight": 2 } }, { "key": "33014", "source": "1063", "target": "432", "attributes": { "weight": 1 } }, { "key": "7786", "source": "1063", "target": "1407", "attributes": { "weight": 3 } }, { "key": "7765", "source": "1063", "target": "407", "attributes": { "weight": 1 } }, { "key": "12843", "source": "1063", "target": "1892", "attributes": { "weight": 2 } }, { "key": "12657", "source": "1063", "target": "180", "attributes": { "weight": 1 } }, { "key": "25782", "source": "1063", "target": "278", "attributes": { "weight": 1 } }, { "key": "7721", "source": "1063", "target": "913", "attributes": { "weight": 5 } }, { "key": "29767", "source": "1063", "target": "1763", "attributes": { "weight": 1 } }, { "key": "6544", "source": "1063", "target": "779", "attributes": { "weight": 3 } }, { "key": "7799", "source": "1063", "target": "1422", "attributes": { "weight": 2 } }, { "key": "17982", "source": "1063", "target": "1380", "attributes": { "weight": 1 } }, { "key": "7755", "source": "1063", "target": "1298", "attributes": { "weight": 2 } }, { "key": "35090", "source": "1063", "target": "352", "attributes": { "weight": 1 } }, { "key": "33015", "source": "1063", "target": "1219", "attributes": { "weight": 1 } }, { "key": "7790", "source": "1063", "target": "1413", "attributes": { "weight": 1 } }, { "key": "7715", "source": "1063", "target": "1182", "attributes": { "weight": 2 } }, { "key": "7783", "source": "1063", "target": "149", "attributes": { "weight": 3 } }, { "key": "7737", "source": "1063", "target": "791", "attributes": { "weight": 2 } }, { "key": "7803", "source": "1063", "target": "57", "attributes": { "weight": 2 } }, { "key": "7792", "source": "1063", "target": "154", "attributes": { "weight": 7 } }, { "key": "7768", "source": "1063", "target": "928", "attributes": { "weight": 1 } }, { "key": "7801", "source": "1063", "target": "1424", "attributes": { "weight": 2 } }, { "key": "18483", "source": "1063", "target": "1738", "attributes": { "weight": 1 } }, { "key": "7793", "source": "1063", "target": "333", "attributes": { "weight": 3 } }, { "key": "7770", "source": "1063", "target": "218", "attributes": { "weight": 2 } }, { "key": "7762", "source": "1063", "target": "601", "attributes": { "weight": 1 } }, { "key": "7706", "source": "1063", "target": "1155", "attributes": { "weight": 2 } }, { "key": "7748", "source": "1063", "target": "189", "attributes": { "weight": 2 } }, { "key": "7722", "source": "1063", "target": "449", "attributes": { "weight": 3 } }, { "key": "7735", "source": "1063", "target": "1233", "attributes": { "weight": 2 } }, { "key": "6548", "source": "1063", "target": "337", "attributes": { "weight": 4 } }, { "key": "6553", "source": "1063", "target": "371", "attributes": { "weight": 4 } }, { "key": "30798", "source": "1063", "target": "1744", "attributes": { "weight": 3 } }, { "key": "7772", "source": "1063", "target": "495", "attributes": { "weight": 3 } }, { "key": "7736", "source": "1063", "target": "1236", "attributes": { "weight": 1 } }, { "key": "7798", "source": "1063", "target": "377", "attributes": { "weight": 2 } }, { "key": "7719", "source": "1063", "target": "912", "attributes": { "weight": 3 } }, { "key": "22843", "source": "1064", "target": "483", "attributes": { "weight": 1 } }, { "key": "3971", "source": "1064", "target": "432", "attributes": { "weight": 2 } }, { "key": "3842", "source": "1064", "target": "487", "attributes": { "weight": 1 } }, { "key": "22842", "source": "1064", "target": "1085", "attributes": { "weight": 2 } }, { "key": "22844", "source": "1065", "target": "1069", "attributes": { "weight": 1 } }, { "key": "22845", "source": "1065", "target": "1371", "attributes": { "weight": 1 } }, { "key": "3977", "source": "1065", "target": "1081", "attributes": { "weight": 2 } }, { "key": "3843", "source": "1065", "target": "432", "attributes": { "weight": 1 } }, { "key": "6848", "source": "1066", "target": "495", "attributes": { "weight": 2 } }, { "key": "3990", "source": "1066", "target": "189", "attributes": { "weight": 2 } }, { "key": "3844", "source": "1066", "target": "487", "attributes": { "weight": 1 } }, { "key": "3989", "source": "1066", "target": "183", "attributes": { "weight": 1 } }, { "key": "23629", "source": "1066", "target": "220", "attributes": { "weight": 1 } }, { "key": "3988", "source": "1066", "target": "59", "attributes": { "weight": 2 } }, { "key": "33435", "source": "1066", "target": "135", "attributes": { "weight": 1 } }, { "key": "3849", "source": "1067", "target": "487", "attributes": { "weight": 1 } }, { "key": "22862", "source": "1067", "target": "483", "attributes": { "weight": 2 } }, { "key": "7037", "source": "1067", "target": "183", "attributes": { "weight": 1 } }, { "key": "7039", "source": "1067", "target": "476", "attributes": { "weight": 1 } }, { "key": "7038", "source": "1067", "target": "189", "attributes": { "weight": 1 } }, { "key": "7040", "source": "1067", "target": "193", "attributes": { "weight": 1 } }, { "key": "4050", "source": "1067", "target": "432", "attributes": { "weight": 2 } }, { "key": "3850", "source": "1068", "target": "432", "attributes": { "weight": 2 } }, { "key": "3851", "source": "1068", "target": "1081", "attributes": { "weight": 2 } }, { "key": "3852", "source": "1068", "target": "483", "attributes": { "weight": 2 } }, { "key": "3921", "source": "1069", "target": "432", "attributes": { "weight": 2 } }, { "key": "22835", "source": "1069", "target": "1065", "attributes": { "weight": 1 } }, { "key": "16738", "source": "1070", "target": "59", "attributes": { "weight": 1 } }, { "key": "19663", "source": "1070", "target": "2248", "attributes": { "weight": 1 } }, { "key": "16739", "source": "1070", "target": "434", "attributes": { "weight": 1 } }, { "key": "19673", "source": "1070", "target": "2095", "attributes": { "weight": 1 } }, { "key": "23579", "source": "1070", "target": "220", "attributes": { "weight": 1 } }, { "key": "19658", "source": "1070", "target": "438", "attributes": { "weight": 1 } }, { "key": "19662", "source": "1070", "target": "449", "attributes": { "weight": 1 } }, { "key": "23580", "source": "1070", "target": "1094", "attributes": { "weight": 1 } }, { "key": "19676", "source": "1070", "target": "1390", "attributes": { "weight": 1 } }, { "key": "19675", "source": "1070", "target": "235", "attributes": { "weight": 1 } }, { "key": "19666", "source": "1070", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19667", "source": "1070", "target": "465", "attributes": { "weight": 1 } }, { "key": "19665", "source": "1070", "target": "186", "attributes": { "weight": 1 } }, { "key": "19668", "source": "1070", "target": "1247", "attributes": { "weight": 1 } }, { "key": "19670", "source": "1070", "target": "2261", "attributes": { "weight": 1 } }, { "key": "16742", "source": "1070", "target": "70", "attributes": { "weight": 2 } }, { "key": "19657", "source": "1070", "target": "2106", "attributes": { "weight": 1 } }, { "key": "6643", "source": "1070", "target": "495", "attributes": { "weight": 3 } }, { "key": "19669", "source": "1070", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19677", "source": "1070", "target": "2276", "attributes": { "weight": 1 } }, { "key": "33326", "source": "1070", "target": "135", "attributes": { "weight": 1 } }, { "key": "16741", "source": "1070", "target": "457", "attributes": { "weight": 1 } }, { "key": "3935", "source": "1070", "target": "432", "attributes": { "weight": 3 } }, { "key": "19661", "source": "1070", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19678", "source": "1070", "target": "498", "attributes": { "weight": 1 } }, { "key": "15218", "source": "1070", "target": "183", "attributes": { "weight": 1 } }, { "key": "19672", "source": "1070", "target": "1812", "attributes": { "weight": 1 } }, { "key": "19674", "source": "1070", "target": "489", "attributes": { "weight": 1 } }, { "key": "3936", "source": "1070", "target": "487", "attributes": { "weight": 3 } }, { "key": "19655", "source": "1070", "target": "221", "attributes": { "weight": 1 } }, { "key": "19656", "source": "1070", "target": "1522", "attributes": { "weight": 1 } }, { "key": "23330", "source": "1070", "target": "223", "attributes": { "weight": 1 } }, { "key": "19671", "source": "1070", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19660", "source": "1070", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19659", "source": "1070", "target": "51", "attributes": { "weight": 1 } }, { "key": "16740", "source": "1070", "target": "674", "attributes": { "weight": 1 } }, { "key": "19664", "source": "1070", "target": "1832", "attributes": { "weight": 1 } }, { "key": "22837", "source": "1071", "target": "1371", "attributes": { "weight": 1 } }, { "key": "23585", "source": "1071", "target": "220", "attributes": { "weight": 1 } }, { "key": "19910", "source": "1071", "target": "489", "attributes": { "weight": 1 } }, { "key": "3946", "source": "1071", "target": "432", "attributes": { "weight": 2 } }, { "key": "33361", "source": "1071", "target": "135", "attributes": { "weight": 1 } }, { "key": "30505", "source": "1072", "target": "352", "attributes": { "weight": 2 } }, { "key": "21576", "source": "1072", "target": "89", "attributes": { "weight": 1 } }, { "key": "36923", "source": "1072", "target": "1375", "attributes": { "weight": 1 } }, { "key": "27438", "source": "1072", "target": "2683", "attributes": { "weight": 1 } }, { "key": "36924", "source": "1072", "target": "1390", "attributes": { "weight": 1 } }, { "key": "24069", "source": "1072", "target": "130", "attributes": { "weight": 2 } }, { "key": "36921", "source": "1072", "target": "53", "attributes": { "weight": 1 } }, { "key": "36916", "source": "1072", "target": "448", "attributes": { "weight": 1 } }, { "key": "36920", "source": "1072", "target": "1137", "attributes": { "weight": 1 } }, { "key": "36918", "source": "1072", "target": "2251", "attributes": { "weight": 1 } }, { "key": "36917", "source": "1072", "target": "186", "attributes": { "weight": 1 } }, { "key": "36914", "source": "1072", "target": "221", "attributes": { "weight": 1 } }, { "key": "35973", "source": "1072", "target": "440", "attributes": { "weight": 1 } }, { "key": "36922", "source": "1072", "target": "235", "attributes": { "weight": 1 } }, { "key": "34987", "source": "1072", "target": "3", "attributes": { "weight": 1 } }, { "key": "27437", "source": "1072", "target": "2682", "attributes": { "weight": 1 } }, { "key": "36919", "source": "1072", "target": "465", "attributes": { "weight": 1 } }, { "key": "36915", "source": "1072", "target": "224", "attributes": { "weight": 1 } }, { "key": "3967", "source": "1072", "target": "432", "attributes": { "weight": 1 } }, { "key": "35974", "source": "1072", "target": "2258", "attributes": { "weight": 1 } }, { "key": "3968", "source": "1073", "target": "432", "attributes": { "weight": 2 } }, { "key": "3970", "source": "1074", "target": "432", "attributes": { "weight": 2 } }, { "key": "22841", "source": "1074", "target": "1084", "attributes": { "weight": 1 } }, { "key": "3974", "source": "1075", "target": "1083", "attributes": { "weight": 2 } }, { "key": "3973", "source": "1075", "target": "462", "attributes": { "weight": 2 } }, { "key": "3972", "source": "1075", "target": "432", "attributes": { "weight": 2 } }, { "key": "3976", "source": "1076", "target": "432", "attributes": { "weight": 2 } }, { "key": "3978", "source": "1077", "target": "432", "attributes": { "weight": 2 } }, { "key": "3979", "source": "1078", "target": "432", "attributes": { "weight": 2 } }, { "key": "3981", "source": "1079", "target": "432", "attributes": { "weight": 2 } }, { "key": "3982", "source": "1079", "target": "1083", "attributes": { "weight": 2 } }, { "key": "23628", "source": "1080", "target": "1066", "attributes": { "weight": 1 } }, { "key": "22846", "source": "1080", "target": "1094", "attributes": { "weight": 1 } }, { "key": "3987", "source": "1080", "target": "432", "attributes": { "weight": 2 } }, { "key": "3991", "source": "1081", "target": "1068", "attributes": { "weight": 2 } }, { "key": "3992", "source": "1081", "target": "1065", "attributes": { "weight": 2 } }, { "key": "3994", "source": "1082", "target": "483", "attributes": { "weight": 2 } }, { "key": "4003", "source": "1083", "target": "1075", "attributes": { "weight": 2 } }, { "key": "4002", "source": "1083", "target": "432", "attributes": { "weight": 2 } }, { "key": "4004", "source": "1083", "target": "1079", "attributes": { "weight": 2 } }, { "key": "22849", "source": "1084", "target": "1085", "attributes": { "weight": 1 } }, { "key": "22848", "source": "1084", "target": "1074", "attributes": { "weight": 1 } }, { "key": "4005", "source": "1084", "target": "432", "attributes": { "weight": 2 } }, { "key": "22850", "source": "1084", "target": "487", "attributes": { "weight": 1 } }, { "key": "22852", "source": "1085", "target": "1084", "attributes": { "weight": 1 } }, { "key": "23636", "source": "1085", "target": "220", "attributes": { "weight": 1 } }, { "key": "6889", "source": "1085", "target": "183", "attributes": { "weight": 1 } }, { "key": "4010", "source": "1085", "target": "487", "attributes": { "weight": 2 } }, { "key": "22853", "source": "1085", "target": "483", "attributes": { "weight": 1 } }, { "key": "4009", "source": "1085", "target": "432", "attributes": { "weight": 2 } }, { "key": "6890", "source": "1085", "target": "189", "attributes": { "weight": 1 } }, { "key": "22851", "source": "1085", "target": "1064", "attributes": { "weight": 1 } }, { "key": "4011", "source": "1086", "target": "432", "attributes": { "weight": 2 } }, { "key": "10513", "source": "1087", "target": "225", "attributes": { "weight": 1 } }, { "key": "20555", "source": "1087", "target": "194", "attributes": { "weight": 1 } }, { "key": "8911", "source": "1087", "target": "595", "attributes": { "weight": 1 } }, { "key": "20535", "source": "1087", "target": "2248", "attributes": { "weight": 1 } }, { "key": "9305", "source": "1087", "target": "1571", "attributes": { "weight": 2 } }, { "key": "20539", "source": "1087", "target": "459", "attributes": { "weight": 1 } }, { "key": "8898", "source": "1087", "target": "50", "attributes": { "weight": 2 } }, { "key": "8913", "source": "1087", "target": "493", "attributes": { "weight": 2 } }, { "key": "20544", "source": "1087", "target": "1744", "attributes": { "weight": 1 } }, { "key": "8899", "source": "1087", "target": "442", "attributes": { "weight": 8 } }, { "key": "27463", "source": "1087", "target": "1567", "attributes": { "weight": 1 } }, { "key": "4176", "source": "1087", "target": "233", "attributes": { "weight": 1 } }, { "key": "8894", "source": "1087", "target": "220", "attributes": { "weight": 2 } }, { "key": "9307", "source": "1087", "target": "1574", "attributes": { "weight": 1 } }, { "key": "29441", "source": "1087", "target": "232", "attributes": { "weight": 1 } }, { "key": "32172", "source": "1087", "target": "52", "attributes": { "weight": 1 } }, { "key": "20533", "source": "1087", "target": "445", "attributes": { "weight": 1 } }, { "key": "8909", "source": "1087", "target": "482", "attributes": { "weight": 3 } }, { "key": "9306", "source": "1087", "target": "1573", "attributes": { "weight": 2 } }, { "key": "9312", "source": "1087", "target": "1597", "attributes": { "weight": 2 } }, { "key": "17950", "source": "1087", "target": "454", "attributes": { "weight": 2 } }, { "key": "20542", "source": "1087", "target": "1367", "attributes": { "weight": 2 } }, { "key": "8912", "source": "1087", "target": "340", "attributes": { "weight": 2 } }, { "key": "24164", "source": "1087", "target": "130", "attributes": { "weight": 2 } }, { "key": "20545", "source": "1087", "target": "1708", "attributes": { "weight": 1 } }, { "key": "20538", "source": "1087", "target": "1998", "attributes": { "weight": 1 } }, { "key": "20543", "source": "1087", "target": "230", "attributes": { "weight": 1 } }, { "key": "32174", "source": "1087", "target": "1128", "attributes": { "weight": 1 } }, { "key": "20553", "source": "1087", "target": "1375", "attributes": { "weight": 1 } }, { "key": "8896", "source": "1087", "target": "436", "attributes": { "weight": 3 } }, { "key": "26631", "source": "1087", "target": "189", "attributes": { "weight": 1 } }, { "key": "31132", "source": "1087", "target": "1562", "attributes": { "weight": 1 } }, { "key": "20552", "source": "1087", "target": "2273", "attributes": { "weight": 1 } }, { "key": "20537", "source": "1087", "target": "227", "attributes": { "weight": 1 } }, { "key": "20554", "source": "1087", "target": "2276", "attributes": { "weight": 1 } }, { "key": "8901", "source": "1087", "target": "452", "attributes": { "weight": 2 } }, { "key": "4012", "source": "1087", "target": "432", "attributes": { "weight": 3 } }, { "key": "8893", "source": "1087", "target": "430", "attributes": { "weight": 3 } }, { "key": "8897", "source": "1087", "target": "1110", "attributes": { "weight": 1 } }, { "key": "20534", "source": "1087", "target": "450", "attributes": { "weight": 1 } }, { "key": "9309", "source": "1087", "target": "1579", "attributes": { "weight": 2 } }, { "key": "20551", "source": "1087", "target": "234", "attributes": { "weight": 1 } }, { "key": "12404", "source": "1087", "target": "1355", "attributes": { "weight": 2 } }, { "key": "20540", "source": "1087", "target": "470", "attributes": { "weight": 2 } }, { "key": "31131", "source": "1087", "target": "1530", "attributes": { "weight": 1 } }, { "key": "31425", "source": "1087", "target": "223", "attributes": { "weight": 1 } }, { "key": "20549", "source": "1087", "target": "489", "attributes": { "weight": 1 } }, { "key": "8905", "source": "1087", "target": "473", "attributes": { "weight": 4 } }, { "key": "33060", "source": "1087", "target": "1845", "attributes": { "weight": 1 } }, { "key": "32976", "source": "1087", "target": "154", "attributes": { "weight": 1 } }, { "key": "8914", "source": "1087", "target": "193", "attributes": { "weight": 1 } }, { "key": "20532", "source": "1087", "target": "2245", "attributes": { "weight": 1 } }, { "key": "8895", "source": "1087", "target": "1109", "attributes": { "weight": 2 } }, { "key": "20541", "source": "1087", "target": "471", "attributes": { "weight": 2 } }, { "key": "4175", "source": "1087", "target": "1131", "attributes": { "weight": 1 } }, { "key": "33568", "source": "1087", "target": "135", "attributes": { "weight": 1 } }, { "key": "4013", "source": "1087", "target": "458", "attributes": { "weight": 1 } }, { "key": "8908", "source": "1087", "target": "479", "attributes": { "weight": 1 } }, { "key": "4174", "source": "1087", "target": "228", "attributes": { "weight": 1 } }, { "key": "20528", "source": "1087", "target": "429", "attributes": { "weight": 1 } }, { "key": "20546", "source": "1087", "target": "231", "attributes": { "weight": 3 } }, { "key": "20550", "source": "1087", "target": "1374", "attributes": { "weight": 1 } }, { "key": "31542", "source": "1087", "target": "3056", "attributes": { "weight": 1 } }, { "key": "20547", "source": "1087", "target": "477", "attributes": { "weight": 1 } }, { "key": "8904", "source": "1087", "target": "1121", "attributes": { "weight": 2 } }, { "key": "9310", "source": "1087", "target": "1592", "attributes": { "weight": 2 } }, { "key": "8903", "source": "1087", "target": "791", "attributes": { "weight": 2 } }, { "key": "20527", "source": "1087", "target": "1703", "attributes": { "weight": 1 } }, { "key": "9308", "source": "1087", "target": "1578", "attributes": { "weight": 1 } }, { "key": "5701", "source": "1087", "target": "468", "attributes": { "weight": 2 } }, { "key": "9311", "source": "1087", "target": "1593", "attributes": { "weight": 2 } }, { "key": "20529", "source": "1087", "target": "441", "attributes": { "weight": 1 } }, { "key": "20536", "source": "1087", "target": "1705", "attributes": { "weight": 1 } }, { "key": "17268", "source": "1087", "target": "449", "attributes": { "weight": 1 } }, { "key": "8902", "source": "1087", "target": "1117", "attributes": { "weight": 3 } }, { "key": "20548", "source": "1087", "target": "1560", "attributes": { "weight": 1 } }, { "key": "8915", "source": "1087", "target": "494", "attributes": { "weight": 2 } }, { "key": "20530", "source": "1087", "target": "1070", "attributes": { "weight": 1 } }, { "key": "20531", "source": "1087", "target": "2244", "attributes": { "weight": 1 } }, { "key": "8906", "source": "1087", "target": "1088", "attributes": { "weight": 2 } }, { "key": "32171", "source": "1087", "target": "1115", "attributes": { "weight": 1 } }, { "key": "8892", "source": "1087", "target": "1107", "attributes": { "weight": 3 } }, { "key": "8900", "source": "1087", "target": "444", "attributes": { "weight": 3 } }, { "key": "8907", "source": "1087", "target": "1125", "attributes": { "weight": 2 } }, { "key": "8910", "source": "1087", "target": "1130", "attributes": { "weight": 1 } }, { "key": "8964", "source": "1088", "target": "1107", "attributes": { "weight": 3 } }, { "key": "8966", "source": "1088", "target": "436", "attributes": { "weight": 3 } }, { "key": "33617", "source": "1088", "target": "425", "attributes": { "weight": 1 } }, { "key": "8972", "source": "1088", "target": "1125", "attributes": { "weight": 1 } }, { "key": "35315", "source": "1088", "target": "1116", "attributes": { "weight": 1 } }, { "key": "12410", "source": "1088", "target": "493", "attributes": { "weight": 2 } }, { "key": "32802", "source": "1088", "target": "193", "attributes": { "weight": 1 } }, { "key": "32800", "source": "1088", "target": "1367", "attributes": { "weight": 1 } }, { "key": "32799", "source": "1088", "target": "1845", "attributes": { "weight": 1 } }, { "key": "4189", "source": "1088", "target": "444", "attributes": { "weight": 2 } }, { "key": "4195", "source": "1088", "target": "473", "attributes": { "weight": 3 } }, { "key": "35320", "source": "1088", "target": "1126", "attributes": { "weight": 1 } }, { "key": "35321", "source": "1088", "target": "231", "attributes": { "weight": 1 } }, { "key": "32798", "source": "1088", "target": "470", "attributes": { "weight": 1 } }, { "key": "4187", "source": "1088", "target": "50", "attributes": { "weight": 2 } }, { "key": "4019", "source": "1088", "target": "432", "attributes": { "weight": 2 } }, { "key": "8971", "source": "1088", "target": "474", "attributes": { "weight": 2 } }, { "key": "24177", "source": "1088", "target": "1374", "attributes": { "weight": 3 } }, { "key": "4192", "source": "1088", "target": "1121", "attributes": { "weight": 1 } }, { "key": "32797", "source": "1088", "target": "458", "attributes": { "weight": 1 } }, { "key": "4188", "source": "1088", "target": "223", "attributes": { "weight": 2 } }, { "key": "33619", "source": "1088", "target": "135", "attributes": { "weight": 1 } }, { "key": "24175", "source": "1088", "target": "452", "attributes": { "weight": 4 } }, { "key": "24174", "source": "1088", "target": "130", "attributes": { "weight": 2 } }, { "key": "8970", "source": "1088", "target": "1087", "attributes": { "weight": 2 } }, { "key": "35325", "source": "1088", "target": "1375", "attributes": { "weight": 1 } }, { "key": "35324", "source": "1088", "target": "56", "attributes": { "weight": 1 } }, { "key": "37071", "source": "1088", "target": "857", "attributes": { "weight": 1 } }, { "key": "32801", "source": "1088", "target": "1744", "attributes": { "weight": 1 } }, { "key": "4194", "source": "1088", "target": "229", "attributes": { "weight": 2 } }, { "key": "24176", "source": "1088", "target": "471", "attributes": { "weight": 1 } }, { "key": "4190", "source": "1088", "target": "183", "attributes": { "weight": 2 } }, { "key": "35317", "source": "1088", "target": "189", "attributes": { "weight": 1 } }, { "key": "35323", "source": "1088", "target": "479", "attributes": { "weight": 1 } }, { "key": "35316", "source": "1088", "target": "1358", "attributes": { "weight": 1 } }, { "key": "10527", "source": "1088", "target": "482", "attributes": { "weight": 2 } }, { "key": "20620", "source": "1088", "target": "449", "attributes": { "weight": 1 } }, { "key": "8965", "source": "1088", "target": "220", "attributes": { "weight": 2 } }, { "key": "4193", "source": "1088", "target": "228", "attributes": { "weight": 3 } }, { "key": "4196", "source": "1088", "target": "1131", "attributes": { "weight": 2 } }, { "key": "8973", "source": "1088", "target": "1564", "attributes": { "weight": 2 } }, { "key": "8968", "source": "1088", "target": "1363", "attributes": { "weight": 2 } }, { "key": "35318", "source": "1088", "target": "190", "attributes": { "weight": 1 } }, { "key": "12409", "source": "1088", "target": "1355", "attributes": { "weight": 3 } }, { "key": "4197", "source": "1088", "target": "233", "attributes": { "weight": 2 } }, { "key": "8967", "source": "1088", "target": "442", "attributes": { "weight": 3 } }, { "key": "10526", "source": "1088", "target": "225", "attributes": { "weight": 1 } }, { "key": "35319", "source": "1088", "target": "191", "attributes": { "weight": 1 } }, { "key": "33618", "source": "1088", "target": "52", "attributes": { "weight": 1 } }, { "key": "32803", "source": "1088", "target": "494", "attributes": { "weight": 2 } }, { "key": "20621", "source": "1088", "target": "227", "attributes": { "weight": 1 } }, { "key": "8969", "source": "1088", "target": "472", "attributes": { "weight": 2 } }, { "key": "24173", "source": "1088", "target": "429", "attributes": { "weight": 2 } }, { "key": "35322", "source": "1088", "target": "477", "attributes": { "weight": 1 } }, { "key": "4191", "source": "1088", "target": "1117", "attributes": { "weight": 2 } }, { "key": "4023", "source": "1089", "target": "432", "attributes": { "weight": 2 } }, { "key": "6049", "source": "1090", "target": "1305", "attributes": { "weight": 3 } }, { "key": "6020", "source": "1090", "target": "338", "attributes": { "weight": 3 } }, { "key": "6052", "source": "1090", "target": "1309", "attributes": { "weight": 2 } }, { "key": "6047", "source": "1090", "target": "1301", "attributes": { "weight": 2 } }, { "key": "6060", "source": "1090", "target": "254", "attributes": { "weight": 2 } }, { "key": "6006", "source": "1090", "target": "1214", "attributes": { "weight": 2 } }, { "key": "16185", "source": "1090", "target": "370", "attributes": { "weight": 1 } }, { "key": "6014", "source": "1090", "target": "1236", "attributes": { "weight": 2 } }, { "key": "6008", "source": "1090", "target": "917", "attributes": { "weight": 2 } }, { "key": "6035", "source": "1090", "target": "189", "attributes": { "weight": 2 } }, { "key": "5966", "source": "1090", "target": "1150", "attributes": { "weight": 2 } }, { "key": "6059", "source": "1090", "target": "1321", "attributes": { "weight": 2 } }, { "key": "5989", "source": "1090", "target": "779", "attributes": { "weight": 2 } }, { "key": "6061", "source": "1090", "target": "1322", "attributes": { "weight": 3 } }, { "key": "6045", "source": "1090", "target": "990", "attributes": { "weight": 2 } }, { "key": "6070", "source": "1090", "target": "340", "attributes": { "weight": 2 } }, { "key": "6026", "source": "1090", "target": "1262", "attributes": { "weight": 2 } }, { "key": "5986", "source": "1090", "target": "1179", "attributes": { "weight": 2 } }, { "key": "6062", "source": "1090", "target": "1323", "attributes": { "weight": 4 } }, { "key": "34642", "source": "1090", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6022", "source": "1090", "target": "468", "attributes": { "weight": 5 } }, { "key": "5974", "source": "1090", "target": "1159", "attributes": { "weight": 2 } }, { "key": "5996", "source": "1090", "target": "368", "attributes": { "weight": 3 } }, { "key": "6055", "source": "1090", "target": "405", "attributes": { "weight": 2 } }, { "key": "6072", "source": "1090", "target": "930", "attributes": { "weight": 2 } }, { "key": "6001", "source": "1090", "target": "1202", "attributes": { "weight": 2 } }, { "key": "6000", "source": "1090", "target": "1200", "attributes": { "weight": 2 } }, { "key": "6038", "source": "1090", "target": "123", "attributes": { "weight": 3 } }, { "key": "6078", "source": "1090", "target": "1063", "attributes": { "weight": 4 } }, { "key": "6079", "source": "1090", "target": "57", "attributes": { "weight": 2 } }, { "key": "5978", "source": "1090", "target": "938", "attributes": { "weight": 3 } }, { "key": "5994", "source": "1090", "target": "1196", "attributes": { "weight": 2 } }, { "key": "6015", "source": "1090", "target": "1237", "attributes": { "weight": 2 } }, { "key": "18898", "source": "1090", "target": "1552", "attributes": { "weight": 2 } }, { "key": "5968", "source": "1090", "target": "236", "attributes": { "weight": 2 } }, { "key": "6028", "source": "1090", "target": "208", "attributes": { "weight": 4 } }, { "key": "6040", "source": "1090", "target": "212", "attributes": { "weight": 2 } }, { "key": "6033", "source": "1090", "target": "925", "attributes": { "weight": 3 } }, { "key": "6064", "source": "1090", "target": "1329", "attributes": { "weight": 3 } }, { "key": "6063", "source": "1090", "target": "961", "attributes": { "weight": 2 } }, { "key": "5992", "source": "1090", "target": "912", "attributes": { "weight": 3 } }, { "key": "6046", "source": "1090", "target": "372", "attributes": { "weight": 3 } }, { "key": "5999", "source": "1090", "target": "449", "attributes": { "weight": 2 } }, { "key": "6071", "source": "1090", "target": "218", "attributes": { "weight": 3 } }, { "key": "6011", "source": "1090", "target": "1231", "attributes": { "weight": 2 } }, { "key": "5997", "source": "1090", "target": "1046", "attributes": { "weight": 2 } }, { "key": "5977", "source": "1090", "target": "1165", "attributes": { "weight": 3 } }, { "key": "5964", "source": "1090", "target": "933", "attributes": { "weight": 2 } }, { "key": "5967", "source": "1090", "target": "195", "attributes": { "weight": 9 } }, { "key": "5995", "source": "1090", "target": "1197", "attributes": { "weight": 5 } }, { "key": "6057", "source": "1090", "target": "1319", "attributes": { "weight": 2 } }, { "key": "6017", "source": "1090", "target": "1239", "attributes": { "weight": 2 } }, { "key": "5985", "source": "1090", "target": "442", "attributes": { "weight": 4 } }, { "key": "4024", "source": "1090", "target": "432", "attributes": { "weight": 3 } }, { "key": "6009", "source": "1090", "target": "918", "attributes": { "weight": 2 } }, { "key": "6024", "source": "1090", "target": "471", "attributes": { "weight": 2 } }, { "key": "5972", "source": "1090", "target": "1155", "attributes": { "weight": 2 } }, { "key": "5979", "source": "1090", "target": "223", "attributes": { "weight": 2 } }, { "key": "6051", "source": "1090", "target": "927", "attributes": { "weight": 2 } }, { "key": "6068", "source": "1090", "target": "257", "attributes": { "weight": 2 } }, { "key": "6012", "source": "1090", "target": "1233", "attributes": { "weight": 3 } }, { "key": "6010", "source": "1090", "target": "945", "attributes": { "weight": 2 } }, { "key": "5988", "source": "1090", "target": "1182", "attributes": { "weight": 2 } }, { "key": "6069", "source": "1090", "target": "928", "attributes": { "weight": 2 } }, { "key": "6005", "source": "1090", "target": "454", "attributes": { "weight": 3 } }, { "key": "6056", "source": "1090", "target": "1316", "attributes": { "weight": 2 } }, { "key": "6054", "source": "1090", "target": "1315", "attributes": { "weight": 2 } }, { "key": "5991", "source": "1090", "target": "387", "attributes": { "weight": 3 } }, { "key": "6002", "source": "1090", "target": "1047", "attributes": { "weight": 2 } }, { "key": "6034", "source": "1090", "target": "926", "attributes": { "weight": 2 } }, { "key": "6066", "source": "1090", "target": "963", "attributes": { "weight": 2 } }, { "key": "6053", "source": "1090", "target": "215", "attributes": { "weight": 3 } }, { "key": "6021", "source": "1090", "target": "921", "attributes": { "weight": 2 } }, { "key": "5982", "source": "1090", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18897", "source": "1090", "target": "1234", "attributes": { "weight": 1 } }, { "key": "6019", "source": "1090", "target": "337", "attributes": { "weight": 4 } }, { "key": "6048", "source": "1090", "target": "1792", "attributes": { "weight": 2 } }, { "key": "6004", "source": "1090", "target": "199", "attributes": { "weight": 4 } }, { "key": "6074", "source": "1090", "target": "1350", "attributes": { "weight": 2 } }, { "key": "6075", "source": "1090", "target": "375", "attributes": { "weight": 2 } }, { "key": "6036", "source": "1090", "target": "1279", "attributes": { "weight": 3 } }, { "key": "6016", "source": "1090", "target": "1238", "attributes": { "weight": 2 } }, { "key": "6037", "source": "1090", "target": "1281", "attributes": { "weight": 2 } }, { "key": "5980", "source": "1090", "target": "1171", "attributes": { "weight": 2 } }, { "key": "6032", "source": "1090", "target": "1269", "attributes": { "weight": 2 } }, { "key": "5976", "source": "1090", "target": "1162", "attributes": { "weight": 2 } }, { "key": "6042", "source": "1090", "target": "1293", "attributes": { "weight": 2 } }, { "key": "6025", "source": "1090", "target": "472", "attributes": { "weight": 2 } }, { "key": "6050", "source": "1090", "target": "1307", "attributes": { "weight": 2 } }, { "key": "6065", "source": "1090", "target": "124", "attributes": { "weight": 3 } }, { "key": "6018", "source": "1090", "target": "205", "attributes": { "weight": 2 } }, { "key": "6067", "source": "1090", "target": "1338", "attributes": { "weight": 2 } }, { "key": "5973", "source": "1090", "target": "1156", "attributes": { "weight": 2 } }, { "key": "6013", "source": "1090", "target": "1235", "attributes": { "weight": 2 } }, { "key": "5998", "source": "1090", "target": "913", "attributes": { "weight": 3 } }, { "key": "6029", "source": "1090", "target": "923", "attributes": { "weight": 2 } }, { "key": "6039", "source": "1090", "target": "1289", "attributes": { "weight": 2 } }, { "key": "6043", "source": "1090", "target": "1294", "attributes": { "weight": 4 } }, { "key": "6030", "source": "1090", "target": "1268", "attributes": { "weight": 2 } }, { "key": "5983", "source": "1090", "target": "1175", "attributes": { "weight": 2 } }, { "key": "5965", "source": "1090", "target": "220", "attributes": { "weight": 2 } }, { "key": "5975", "source": "1090", "target": "1160", "attributes": { "weight": 2 } }, { "key": "5963", "source": "1090", "target": "1138", "attributes": { "weight": 2 } }, { "key": "5993", "source": "1090", "target": "1194", "attributes": { "weight": 2 } }, { "key": "6023", "source": "1090", "target": "470", "attributes": { "weight": 3 } }, { "key": "6077", "source": "1090", "target": "154", "attributes": { "weight": 2 } }, { "key": "6073", "source": "1090", "target": "494", "attributes": { "weight": 2 } }, { "key": "6007", "source": "1090", "target": "1219", "attributes": { "weight": 2 } }, { "key": "6058", "source": "1090", "target": "1320", "attributes": { "weight": 2 } }, { "key": "6041", "source": "1090", "target": "1291", "attributes": { "weight": 2 } }, { "key": "6076", "source": "1090", "target": "149", "attributes": { "weight": 2 } }, { "key": "6044", "source": "1090", "target": "1296", "attributes": { "weight": 2 } }, { "key": "5984", "source": "1090", "target": "1176", "attributes": { "weight": 2 } }, { "key": "6027", "source": "1090", "target": "1263", "attributes": { "weight": 2 } }, { "key": "5969", "source": "1090", "target": "1152", "attributes": { "weight": 2 } }, { "key": "6031", "source": "1090", "target": "371", "attributes": { "weight": 2 } }, { "key": "5971", "source": "1090", "target": "130", "attributes": { "weight": 2 } }, { "key": "6003", "source": "1090", "target": "452", "attributes": { "weight": 2 } }, { "key": "5970", "source": "1090", "target": "1154", "attributes": { "weight": 2 } }, { "key": "5990", "source": "1090", "target": "1184", "attributes": { "weight": 2 } }, { "key": "5981", "source": "1090", "target": "1172", "attributes": { "weight": 2 } }, { "key": "5987", "source": "1090", "target": "1180", "attributes": { "weight": 2 } }, { "key": "4049", "source": "1091", "target": "432", "attributes": { "weight": 2 } }, { "key": "22861", "source": "1091", "target": "487", "attributes": { "weight": 1 } }, { "key": "33666", "source": "1092", "target": "672", "attributes": { "weight": 1 } }, { "key": "18338", "source": "1092", "target": "479", "attributes": { "weight": 2 } }, { "key": "18343", "source": "1092", "target": "497", "attributes": { "weight": 2 } }, { "key": "11274", "source": "1092", "target": "452", "attributes": { "weight": 3 } }, { "key": "36109", "source": "1092", "target": "221", "attributes": { "weight": 1 } }, { "key": "32601", "source": "1092", "target": "791", "attributes": { "weight": 1 } }, { "key": "18332", "source": "1092", "target": "2086", "attributes": { "weight": 1 } }, { "key": "25390", "source": "1092", "target": "433", "attributes": { "weight": 1 } }, { "key": "18340", "source": "1092", "target": "340", "attributes": { "weight": 2 } }, { "key": "33665", "source": "1092", "target": "489", "attributes": { "weight": 1 } }, { "key": "18344", "source": "1092", "target": "57", "attributes": { "weight": 1 } }, { "key": "36118", "source": "1092", "target": "1375", "attributes": { "weight": 1 } }, { "key": "18333", "source": "1092", "target": "223", "attributes": { "weight": 1 } }, { "key": "14307", "source": "1092", "target": "53", "attributes": { "weight": 3 } }, { "key": "18331", "source": "1092", "target": "130", "attributes": { "weight": 2 } }, { "key": "7041", "source": "1092", "target": "193", "attributes": { "weight": 3 } }, { "key": "11275", "source": "1092", "target": "473", "attributes": { "weight": 2 } }, { "key": "18335", "source": "1092", "target": "1026", "attributes": { "weight": 3 } }, { "key": "33664", "source": "1092", "target": "472", "attributes": { "weight": 1 } }, { "key": "36117", "source": "1092", "target": "2258", "attributes": { "weight": 1 } }, { "key": "18334", "source": "1092", "target": "471", "attributes": { "weight": 3 } }, { "key": "33663", "source": "1092", "target": "135", "attributes": { "weight": 1 } }, { "key": "4051", "source": "1092", "target": "432", "attributes": { "weight": 4 } }, { "key": "9079", "source": "1092", "target": "442", "attributes": { "weight": 2 } }, { "key": "18330", "source": "1092", "target": "220", "attributes": { "weight": 1 } }, { "key": "6400", "source": "1092", "target": "468", "attributes": { "weight": 3 } }, { "key": "26751", "source": "1092", "target": "189", "attributes": { "weight": 1 } }, { "key": "36112", "source": "1092", "target": "2245", "attributes": { "weight": 1 } }, { "key": "36115", "source": "1092", "target": "2248", "attributes": { "weight": 1 } }, { "key": "18341", "source": "1092", "target": "2208", "attributes": { "weight": 1 } }, { "key": "18336", "source": "1092", "target": "1812", "attributes": { "weight": 1 } }, { "key": "36110", "source": "1092", "target": "222", "attributes": { "weight": 1 } }, { "key": "18337", "source": "1092", "target": "231", "attributes": { "weight": 1 } }, { "key": "36111", "source": "1092", "target": "1023", "attributes": { "weight": 1 } }, { "key": "36116", "source": "1092", "target": "2253", "attributes": { "weight": 1 } }, { "key": "18339", "source": "1092", "target": "595", "attributes": { "weight": 2 } }, { "key": "36114", "source": "1092", "target": "89", "attributes": { "weight": 1 } }, { "key": "18342", "source": "1092", "target": "495", "attributes": { "weight": 2 } }, { "key": "36113", "source": "1092", "target": "448", "attributes": { "weight": 1 } }, { "key": "18329", "source": "1092", "target": "429", "attributes": { "weight": 1 } }, { "key": "17975", "source": "1092", "target": "454", "attributes": { "weight": 3 } }, { "key": "11294", "source": "1093", "target": "492", "attributes": { "weight": 1 } }, { "key": "12800", "source": "1093", "target": "221", "attributes": { "weight": 1 } }, { "key": "12043", "source": "1093", "target": "135", "attributes": { "weight": 1 } }, { "key": "9998", "source": "1093", "target": "473", "attributes": { "weight": 5 } }, { "key": "29057", "source": "1093", "target": "495", "attributes": { "weight": 1 } }, { "key": "4053", "source": "1093", "target": "432", "attributes": { "weight": 2 } }, { "key": "32610", "source": "1093", "target": "791", "attributes": { "weight": 1 } }, { "key": "11293", "source": "1093", "target": "452", "attributes": { "weight": 2 } }, { "key": "11292", "source": "1093", "target": "439", "attributes": { "weight": 1 } }, { "key": "29520", "source": "1093", "target": "232", "attributes": { "weight": 1 } }, { "key": "10001", "source": "1093", "target": "496", "attributes": { "weight": 5 } }, { "key": "9997", "source": "1093", "target": "1536", "attributes": { "weight": 2 } }, { "key": "10000", "source": "1093", "target": "494", "attributes": { "weight": 3 } }, { "key": "9996", "source": "1093", "target": "222", "attributes": { "weight": 4 } }, { "key": "26763", "source": "1093", "target": "189", "attributes": { "weight": 1 } }, { "key": "9999", "source": "1093", "target": "480", "attributes": { "weight": 3 } }, { "key": "25118", "source": "1093", "target": "1547", "attributes": { "weight": 1 } }, { "key": "25117", "source": "1093", "target": "454", "attributes": { "weight": 1 } }, { "key": "32858", "source": "1094", "target": "135", "attributes": { "weight": 2 } }, { "key": "7200", "source": "1094", "target": "495", "attributes": { "weight": 2 } }, { "key": "23376", "source": "1094", "target": "223", "attributes": { "weight": 1 } }, { "key": "4061", "source": "1094", "target": "432", "attributes": { "weight": 2 } }, { "key": "27188", "source": "1094", "target": "1247", "attributes": { "weight": 1 } }, { "key": "22863", "source": "1094", "target": "1071", "attributes": { "weight": 1 } }, { "key": "21426", "source": "1094", "target": "2245", "attributes": { "weight": 1 } }, { "key": "15409", "source": "1094", "target": "472", "attributes": { "weight": 2 } }, { "key": "23708", "source": "1094", "target": "220", "attributes": { "weight": 1 } }, { "key": "22864", "source": "1094", "target": "1080", "attributes": { "weight": 1 } }, { "key": "7199", "source": "1094", "target": "189", "attributes": { "weight": 1 } }, { "key": "7198", "source": "1094", "target": "183", "attributes": { "weight": 1 } }, { "key": "4062", "source": "1095", "target": "1103", "attributes": { "weight": 2 } }, { "key": "4063", "source": "1095", "target": "1105", "attributes": { "weight": 2 } }, { "key": "28898", "source": "1096", "target": "1097", "attributes": { "weight": 1 } }, { "key": "28902", "source": "1096", "target": "1349", "attributes": { "weight": 2 } }, { "key": "4064", "source": "1096", "target": "1104", "attributes": { "weight": 1 } }, { "key": "28899", "source": "1096", "target": "1099", "attributes": { "weight": 2 } }, { "key": "28901", "source": "1096", "target": "1105", "attributes": { "weight": 1 } }, { "key": "28900", "source": "1096", "target": "2826", "attributes": { "weight": 1 } }, { "key": "28903", "source": "1097", "target": "1096", "attributes": { "weight": 1 } }, { "key": "4065", "source": "1097", "target": "1104", "attributes": { "weight": 1 } }, { "key": "4066", "source": "1098", "target": "1104", "attributes": { "weight": 1 } }, { "key": "5490", "source": "1099", "target": "1349", "attributes": { "weight": 5 } }, { "key": "28906", "source": "1099", "target": "1097", "attributes": { "weight": 1 } }, { "key": "37418", "source": "1099", "target": "1149", "attributes": { "weight": 1 } }, { "key": "4068", "source": "1099", "target": "1103", "attributes": { "weight": 1 } }, { "key": "4067", "source": "1099", "target": "1101", "attributes": { "weight": 2 } }, { "key": "28905", "source": "1099", "target": "1096", "attributes": { "weight": 2 } }, { "key": "4069", "source": "1099", "target": "1104", "attributes": { "weight": 1 } }, { "key": "37420", "source": "1099", "target": "3377", "attributes": { "weight": 1 } }, { "key": "37419", "source": "1099", "target": "27", "attributes": { "weight": 1 } }, { "key": "10709", "source": "1099", "target": "43", "attributes": { "weight": 1 } }, { "key": "9806", "source": "1099", "target": "30", "attributes": { "weight": 3 } }, { "key": "28908", "source": "1099", "target": "1105", "attributes": { "weight": 2 } }, { "key": "23157", "source": "1099", "target": "2424", "attributes": { "weight": 1 } }, { "key": "26237", "source": "1099", "target": "600", "attributes": { "weight": 1 } }, { "key": "37421", "source": "1099", "target": "3378", "attributes": { "weight": 1 } }, { "key": "28907", "source": "1099", "target": "2826", "attributes": { "weight": 2 } }, { "key": "4070", "source": "1100", "target": "1096", "attributes": { "weight": 2 } }, { "key": "4071", "source": "1100", "target": "1103", "attributes": { "weight": 2 } }, { "key": "4072", "source": "1101", "target": "1099", "attributes": { "weight": 2 } }, { "key": "4073", "source": "1102", "target": "1104", "attributes": { "weight": 1 } }, { "key": "4077", "source": "1103", "target": "1104", "attributes": { "weight": 2 } }, { "key": "4075", "source": "1103", "target": "1099", "attributes": { "weight": 1 } }, { "key": "4076", "source": "1103", "target": "1100", "attributes": { "weight": 2 } }, { "key": "4074", "source": "1103", "target": "1095", "attributes": { "weight": 2 } }, { "key": "4078", "source": "1104", "target": "1096", "attributes": { "weight": 1 } }, { "key": "4083", "source": "1104", "target": "1103", "attributes": { "weight": 2 } }, { "key": "4079", "source": "1104", "target": "1097", "attributes": { "weight": 1 } }, { "key": "4081", "source": "1104", "target": "1099", "attributes": { "weight": 1 } }, { "key": "4080", "source": "1104", "target": "1098", "attributes": { "weight": 1 } }, { "key": "37425", "source": "1104", "target": "3377", "attributes": { "weight": 1 } }, { "key": "4082", "source": "1104", "target": "1102", "attributes": { "weight": 1 } }, { "key": "28913", "source": "1105", "target": "1096", "attributes": { "weight": 1 } }, { "key": "28914", "source": "1105", "target": "1099", "attributes": { "weight": 2 } }, { "key": "28915", "source": "1105", "target": "1349", "attributes": { "weight": 2 } }, { "key": "4084", "source": "1105", "target": "1095", "attributes": { "weight": 2 } }, { "key": "37426", "source": "1105", "target": "2826", "attributes": { "weight": 1 } }, { "key": "4085", "source": "1106", "target": "1114", "attributes": { "weight": 1 } }, { "key": "4086", "source": "1106", "target": "1125", "attributes": { "weight": 1 } }, { "key": "8260", "source": "1107", "target": "228", "attributes": { "weight": 4 } }, { "key": "13836", "source": "1107", "target": "1936", "attributes": { "weight": 1 } }, { "key": "35271", "source": "1107", "target": "50", "attributes": { "weight": 1 } }, { "key": "8265", "source": "1107", "target": "233", "attributes": { "weight": 3 } }, { "key": "8264", "source": "1107", "target": "1125", "attributes": { "weight": 2 } }, { "key": "16612", "source": "1107", "target": "70", "attributes": { "weight": 1 } }, { "key": "4089", "source": "1107", "target": "1127", "attributes": { "weight": 1 } }, { "key": "23302", "source": "1107", "target": "1121", "attributes": { "weight": 2 } }, { "key": "8261", "source": "1107", "target": "1087", "attributes": { "weight": 3 } }, { "key": "8263", "source": "1107", "target": "1088", "attributes": { "weight": 3 } }, { "key": "8259", "source": "1107", "target": "1545", "attributes": { "weight": 2 } }, { "key": "35270", "source": "1107", "target": "1109", "attributes": { "weight": 1 } }, { "key": "26289", "source": "1107", "target": "1258", "attributes": { "weight": 1 } }, { "key": "33174", "source": "1107", "target": "52", "attributes": { "weight": 1 } }, { "key": "16611", "source": "1107", "target": "59", "attributes": { "weight": 1 } }, { "key": "8262", "source": "1107", "target": "474", "attributes": { "weight": 3 } }, { "key": "33172", "source": "1107", "target": "425", "attributes": { "weight": 1 } }, { "key": "4087", "source": "1107", "target": "1111", "attributes": { "weight": 1 } }, { "key": "23511", "source": "1107", "target": "191", "attributes": { "weight": 1 } }, { "key": "33175", "source": "1107", "target": "135", "attributes": { "weight": 1 } }, { "key": "33173", "source": "1107", "target": "442", "attributes": { "weight": 1 } }, { "key": "35273", "source": "1107", "target": "229", "attributes": { "weight": 1 } }, { "key": "35272", "source": "1107", "target": "1113", "attributes": { "weight": 1 } }, { "key": "4088", "source": "1107", "target": "1114", "attributes": { "weight": 1 } }, { "key": "35274", "source": "1107", "target": "1131", "attributes": { "weight": 1 } }, { "key": "4092", "source": "1108", "target": "1125", "attributes": { "weight": 1 } }, { "key": "13839", "source": "1109", "target": "50", "attributes": { "weight": 1 } }, { "key": "8439", "source": "1109", "target": "1087", "attributes": { "weight": 2 } }, { "key": "35276", "source": "1109", "target": "1107", "attributes": { "weight": 1 } }, { "key": "8438", "source": "1109", "target": "1363", "attributes": { "weight": 2 } }, { "key": "4094", "source": "1109", "target": "474", "attributes": { "weight": 1 } }, { "key": "8437", "source": "1109", "target": "442", "attributes": { "weight": 2 } }, { "key": "8440", "source": "1109", "target": "1125", "attributes": { "weight": 1 } }, { "key": "23993", "source": "1109", "target": "130", "attributes": { "weight": 2 } }, { "key": "35277", "source": "1109", "target": "436", "attributes": { "weight": 1 } }, { "key": "8441", "source": "1109", "target": "1564", "attributes": { "weight": 2 } }, { "key": "4093", "source": "1109", "target": "228", "attributes": { "weight": 2 } }, { "key": "8455", "source": "1110", "target": "1087", "attributes": { "weight": 1 } }, { "key": "4096", "source": "1110", "target": "52", "attributes": { "weight": 2 } }, { "key": "35282", "source": "1110", "target": "1131", "attributes": { "weight": 1 } }, { "key": "4097", "source": "1110", "target": "1121", "attributes": { "weight": 1 } }, { "key": "33224", "source": "1110", "target": "442", "attributes": { "weight": 1 } }, { "key": "4099", "source": "1110", "target": "474", "attributes": { "weight": 1 } }, { "key": "19369", "source": "1110", "target": "449", "attributes": { "weight": 1 } }, { "key": "4098", "source": "1110", "target": "228", "attributes": { "weight": 1 } }, { "key": "19368", "source": "1110", "target": "2245", "attributes": { "weight": 1 } }, { "key": "8456", "source": "1110", "target": "1125", "attributes": { "weight": 1 } }, { "key": "19370", "source": "1110", "target": "2262", "attributes": { "weight": 1 } }, { "key": "31248", "source": "1110", "target": "674", "attributes": { "weight": 1 } }, { "key": "19371", "source": "1110", "target": "489", "attributes": { "weight": 1 } }, { "key": "8484", "source": "1111", "target": "1363", "attributes": { "weight": 2 } }, { "key": "19596", "source": "1111", "target": "489", "attributes": { "weight": 1 } }, { "key": "4109", "source": "1111", "target": "1107", "attributes": { "weight": 1 } }, { "key": "4110", "source": "1111", "target": "1125", "attributes": { "weight": 1 } }, { "key": "19640", "source": "1112", "target": "1744", "attributes": { "weight": 1 } }, { "key": "4111", "source": "1112", "target": "220", "attributes": { "weight": 3 } }, { "key": "4112", "source": "1112", "target": "228", "attributes": { "weight": 1 } }, { "key": "8648", "source": "1112", "target": "442", "attributes": { "weight": 2 } }, { "key": "8649", "source": "1112", "target": "1125", "attributes": { "weight": 1 } }, { "key": "4113", "source": "1112", "target": "474", "attributes": { "weight": 1 } }, { "key": "4114", "source": "1113", "target": "228", "attributes": { "weight": 1 } }, { "key": "4116", "source": "1113", "target": "1125", "attributes": { "weight": 1 } }, { "key": "4115", "source": "1113", "target": "474", "attributes": { "weight": 1 } }, { "key": "35296", "source": "1113", "target": "1107", "attributes": { "weight": 1 } }, { "key": "4118", "source": "1114", "target": "1106", "attributes": { "weight": 1 } }, { "key": "4120", "source": "1114", "target": "1125", "attributes": { "weight": 1 } }, { "key": "4119", "source": "1114", "target": "1107", "attributes": { "weight": 1 } }, { "key": "32164", "source": "1115", "target": "233", "attributes": { "weight": 1 } }, { "key": "4123", "source": "1115", "target": "474", "attributes": { "weight": 1 } }, { "key": "4122", "source": "1115", "target": "228", "attributes": { "weight": 1 } }, { "key": "32163", "source": "1115", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9267", "source": "1115", "target": "430", "attributes": { "weight": 1 } }, { "key": "24054", "source": "1116", "target": "1125", "attributes": { "weight": 2 } }, { "key": "24050", "source": "1116", "target": "674", "attributes": { "weight": 2 } }, { "key": "24056", "source": "1116", "target": "193", "attributes": { "weight": 2 } }, { "key": "6732", "source": "1116", "target": "183", "attributes": { "weight": 3 } }, { "key": "11130", "source": "1116", "target": "452", "attributes": { "weight": 1 } }, { "key": "24048", "source": "1116", "target": "439", "attributes": { "weight": 2 } }, { "key": "24051", "source": "1116", "target": "445", "attributes": { "weight": 3 } }, { "key": "24053", "source": "1116", "target": "471", "attributes": { "weight": 2 } }, { "key": "35300", "source": "1116", "target": "50", "attributes": { "weight": 1 } }, { "key": "8732", "source": "1116", "target": "442", "attributes": { "weight": 2 } }, { "key": "35301", "source": "1116", "target": "1088", "attributes": { "weight": 1 } }, { "key": "11131", "source": "1116", "target": "52", "attributes": { "weight": 2 } }, { "key": "31422", "source": "1116", "target": "223", "attributes": { "weight": 1 } }, { "key": "17537", "source": "1116", "target": "189", "attributes": { "weight": 2 } }, { "key": "18101", "source": "1116", "target": "57", "attributes": { "weight": 2 } }, { "key": "24055", "source": "1116", "target": "477", "attributes": { "weight": 3 } }, { "key": "24049", "source": "1116", "target": "441", "attributes": { "weight": 2 } }, { "key": "12214", "source": "1116", "target": "435", "attributes": { "weight": 1 } }, { "key": "24052", "source": "1116", "target": "135", "attributes": { "weight": 2 } }, { "key": "8733", "source": "1116", "target": "1363", "attributes": { "weight": 3 } }, { "key": "4127", "source": "1116", "target": "228", "attributes": { "weight": 2 } }, { "key": "6733", "source": "1116", "target": "490", "attributes": { "weight": 2 } }, { "key": "26473", "source": "1116", "target": "454", "attributes": { "weight": 1 } }, { "key": "6734", "source": "1116", "target": "495", "attributes": { "weight": 5 } }, { "key": "11129", "source": "1116", "target": "220", "attributes": { "weight": 2 } }, { "key": "24047", "source": "1116", "target": "130", "attributes": { "weight": 2 } }, { "key": "37042", "source": "1117", "target": "1125", "attributes": { "weight": 1 } }, { "key": "35302", "source": "1117", "target": "50", "attributes": { "weight": 1 } }, { "key": "8741", "source": "1117", "target": "474", "attributes": { "weight": 3 } }, { "key": "26308", "source": "1117", "target": "1258", "attributes": { "weight": 1 } }, { "key": "8740", "source": "1117", "target": "1087", "attributes": { "weight": 3 } }, { "key": "4128", "source": "1117", "target": "1121", "attributes": { "weight": 1 } }, { "key": "4129", "source": "1117", "target": "1088", "attributes": { "weight": 2 } }, { "key": "26307", "source": "1117", "target": "2643", "attributes": { "weight": 1 } }, { "key": "20058", "source": "1117", "target": "2245", "attributes": { "weight": 1 } }, { "key": "4130", "source": "1118", "target": "228", "attributes": { "weight": 2 } }, { "key": "11880", "source": "1118", "target": "1808", "attributes": { "weight": 1 } }, { "key": "16809", "source": "1118", "target": "452", "attributes": { "weight": 1 } }, { "key": "23383", "source": "1118", "target": "2445", "attributes": { "weight": 1 } }, { "key": "25863", "source": "1118", "target": "220", "attributes": { "weight": 1 } }, { "key": "26564", "source": "1118", "target": "183", "attributes": { "weight": 1 } }, { "key": "12523", "source": "1118", "target": "1337", "attributes": { "weight": 1 } }, { "key": "12522", "source": "1118", "target": "435", "attributes": { "weight": 1 } }, { "key": "6775", "source": "1118", "target": "193", "attributes": { "weight": 3 } }, { "key": "23384", "source": "1118", "target": "2001", "attributes": { "weight": 1 } }, { "key": "16811", "source": "1118", "target": "474", "attributes": { "weight": 1 } }, { "key": "31308", "source": "1118", "target": "231", "attributes": { "weight": 1 } }, { "key": "11881", "source": "1118", "target": "472", "attributes": { "weight": 1 } }, { "key": "16807", "source": "1118", "target": "1354", "attributes": { "weight": 1 } }, { "key": "8749", "source": "1118", "target": "442", "attributes": { "weight": 2 } }, { "key": "26565", "source": "1118", "target": "189", "attributes": { "weight": 2 } }, { "key": "31307", "source": "1118", "target": "70", "attributes": { "weight": 2 } }, { "key": "17886", "source": "1118", "target": "454", "attributes": { "weight": 3 } }, { "key": "16806", "source": "1118", "target": "429", "attributes": { "weight": 2 } }, { "key": "10817", "source": "1118", "target": "457", "attributes": { "weight": 1 } }, { "key": "16808", "source": "1118", "target": "130", "attributes": { "weight": 3 } }, { "key": "31423", "source": "1118", "target": "223", "attributes": { "weight": 2 } }, { "key": "5059", "source": "1118", "target": "468", "attributes": { "weight": 4 } }, { "key": "16810", "source": "1118", "target": "135", "attributes": { "weight": 1 } }, { "key": "12673", "source": "1118", "target": "695", "attributes": { "weight": 1 } }, { "key": "31309", "source": "1118", "target": "488", "attributes": { "weight": 1 } }, { "key": "24492", "source": "1118", "target": "790", "attributes": { "weight": 1 } }, { "key": "31305", "source": "1118", "target": "674", "attributes": { "weight": 1 } }, { "key": "35685", "source": "1118", "target": "2114", "attributes": { "weight": 1 } }, { "key": "10816", "source": "1118", "target": "1733", "attributes": { "weight": 2 } }, { "key": "13070", "source": "1118", "target": "59", "attributes": { "weight": 4 } }, { "key": "31306", "source": "1118", "target": "791", "attributes": { "weight": 2 } }, { "key": "4132", "source": "1119", "target": "1125", "attributes": { "weight": 1 } }, { "key": "24078", "source": "1120", "target": "471", "attributes": { "weight": 1 } }, { "key": "4133", "source": "1120", "target": "1125", "attributes": { "weight": 1 } }, { "key": "23344", "source": "1120", "target": "223", "attributes": { "weight": 1 } }, { "key": "20313", "source": "1120", "target": "489", "attributes": { "weight": 1 } }, { "key": "20312", "source": "1120", "target": "221", "attributes": { "weight": 1 } }, { "key": "4138", "source": "1121", "target": "228", "attributes": { "weight": 1 } }, { "key": "12398", "source": "1121", "target": "1355", "attributes": { "weight": 2 } }, { "key": "32762", "source": "1121", "target": "494", "attributes": { "weight": 1 } }, { "key": "4140", "source": "1121", "target": "1088", "attributes": { "weight": 1 } }, { "key": "20334", "source": "1121", "target": "1744", "attributes": { "weight": 1 } }, { "key": "4135", "source": "1121", "target": "1110", "attributes": { "weight": 1 } }, { "key": "4139", "source": "1121", "target": "229", "attributes": { "weight": 1 } }, { "key": "8833", "source": "1121", "target": "474", "attributes": { "weight": 2 } }, { "key": "9292", "source": "1121", "target": "1592", "attributes": { "weight": 2 } }, { "key": "4141", "source": "1121", "target": "1131", "attributes": { "weight": 1 } }, { "key": "23354", "source": "1121", "target": "451", "attributes": { "weight": 1 } }, { "key": "8832", "source": "1121", "target": "1087", "attributes": { "weight": 2 } }, { "key": "23352", "source": "1121", "target": "443", "attributes": { "weight": 1 } }, { "key": "23355", "source": "1121", "target": "1358", "attributes": { "weight": 1 } }, { "key": "23356", "source": "1121", "target": "458", "attributes": { "weight": 1 } }, { "key": "23357", "source": "1121", "target": "1545", "attributes": { "weight": 1 } }, { "key": "32759", "source": "1121", "target": "1703", "attributes": { "weight": 1 } }, { "key": "23359", "source": "1121", "target": "488", "attributes": { "weight": 1 } }, { "key": "9291", "source": "1121", "target": "430", "attributes": { "weight": 2 } }, { "key": "4134", "source": "1121", "target": "436", "attributes": { "weight": 2 } }, { "key": "33492", "source": "1121", "target": "52", "attributes": { "weight": 1 } }, { "key": "23358", "source": "1121", "target": "483", "attributes": { "weight": 1 } }, { "key": "32761", "source": "1121", "target": "482", "attributes": { "weight": 1 } }, { "key": "32760", "source": "1121", "target": "1708", "attributes": { "weight": 1 } }, { "key": "23351", "source": "1121", "target": "1107", "attributes": { "weight": 2 } }, { "key": "4142", "source": "1121", "target": "233", "attributes": { "weight": 2 } }, { "key": "4137", "source": "1121", "target": "1117", "attributes": { "weight": 1 } }, { "key": "4136", "source": "1121", "target": "50", "attributes": { "weight": 2 } }, { "key": "24088", "source": "1121", "target": "130", "attributes": { "weight": 2 } }, { "key": "23353", "source": "1121", "target": "447", "attributes": { "weight": 1 } }, { "key": "20407", "source": "1122", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20409", "source": "1122", "target": "489", "attributes": { "weight": 1 } }, { "key": "20408", "source": "1122", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20406", "source": "1122", "target": "449", "attributes": { "weight": 1 } }, { "key": "4143", "source": "1122", "target": "1125", "attributes": { "weight": 1 } }, { "key": "20405", "source": "1122", "target": "2245", "attributes": { "weight": 1 } }, { "key": "8846", "source": "1122", "target": "1564", "attributes": { "weight": 2 } }, { "key": "4144", "source": "1122", "target": "1127", "attributes": { "weight": 2 } }, { "key": "32139", "source": "1123", "target": "228", "attributes": { "weight": 1 } }, { "key": "4145", "source": "1123", "target": "1125", "attributes": { "weight": 1 } }, { "key": "8979", "source": "1125", "target": "1107", "attributes": { "weight": 2 } }, { "key": "32822", "source": "1125", "target": "494", "attributes": { "weight": 2 } }, { "key": "9001", "source": "1125", "target": "1128", "attributes": { "weight": 1 } }, { "key": "16899", "source": "1125", "target": "59", "attributes": { "weight": 1 } }, { "key": "8986", "source": "1125", "target": "444", "attributes": { "weight": 2 } }, { "key": "37489", "source": "1125", "target": "36", "attributes": { "weight": 1 } }, { "key": "16900", "source": "1125", "target": "434", "attributes": { "weight": 1 } }, { "key": "32806", "source": "1125", "target": "432", "attributes": { "weight": 2 } }, { "key": "24192", "source": "1125", "target": "1374", "attributes": { "weight": 3 } }, { "key": "32816", "source": "1125", "target": "190", "attributes": { "weight": 2 } }, { "key": "33070", "source": "1125", "target": "3115", "attributes": { "weight": 1 } }, { "key": "24193", "source": "1125", "target": "1711", "attributes": { "weight": 1 } }, { "key": "32809", "source": "1125", "target": "440", "attributes": { "weight": 1 } }, { "key": "4200", "source": "1125", "target": "1111", "attributes": { "weight": 1 } }, { "key": "32820", "source": "1125", "target": "340", "attributes": { "weight": 1 } }, { "key": "8982", "source": "1125", "target": "1110", "attributes": { "weight": 1 } }, { "key": "32815", "source": "1125", "target": "1845", "attributes": { "weight": 2 } }, { "key": "9351", "source": "1125", "target": "1597", "attributes": { "weight": 2 } }, { "key": "4209", "source": "1125", "target": "1132", "attributes": { "weight": 1 } }, { "key": "8997", "source": "1125", "target": "474", "attributes": { "weight": 2 } }, { "key": "9005", "source": "1125", "target": "1566", "attributes": { "weight": 1 } }, { "key": "31484", "source": "1125", "target": "39", "attributes": { "weight": 1 } }, { "key": "24186", "source": "1125", "target": "452", "attributes": { "weight": 3 } }, { "key": "24195", "source": "1125", "target": "1375", "attributes": { "weight": 2 } }, { "key": "9350", "source": "1125", "target": "1593", "attributes": { "weight": 2 } }, { "key": "4203", "source": "1125", "target": "1119", "attributes": { "weight": 1 } }, { "key": "16901", "source": "1125", "target": "674", "attributes": { "weight": 1 } }, { "key": "8999", "source": "1125", "target": "231", "attributes": { "weight": 4 } }, { "key": "10528", "source": "1125", "target": "1703", "attributes": { "weight": 2 } }, { "key": "8984", "source": "1125", "target": "249", "attributes": { "weight": 3 } }, { "key": "24183", "source": "1125", "target": "130", "attributes": { "weight": 2 } }, { "key": "10532", "source": "1125", "target": "1708", "attributes": { "weight": 2 } }, { "key": "32812", "source": "1125", "target": "1355", "attributes": { "weight": 3 } }, { "key": "9002", "source": "1125", "target": "1562", "attributes": { "weight": 3 } }, { "key": "32818", "source": "1125", "target": "479", "attributes": { "weight": 1 } }, { "key": "8992", "source": "1125", "target": "471", "attributes": { "weight": 3 } }, { "key": "4205", "source": "1125", "target": "1122", "attributes": { "weight": 1 } }, { "key": "24190", "source": "1125", "target": "54", "attributes": { "weight": 2 } }, { "key": "10530", "source": "1125", "target": "1705", "attributes": { "weight": 2 } }, { "key": "9004", "source": "1125", "target": "1131", "attributes": { "weight": 1 } }, { "key": "4207", "source": "1125", "target": "1126", "attributes": { "weight": 1 } }, { "key": "31486", "source": "1125", "target": "257", "attributes": { "weight": 2 } }, { "key": "4208", "source": "1125", "target": "1129", "attributes": { "weight": 1 } }, { "key": "8998", "source": "1125", "target": "1088", "attributes": { "weight": 1 } }, { "key": "8980", "source": "1125", "target": "1109", "attributes": { "weight": 1 } }, { "key": "6970", "source": "1125", "target": "468", "attributes": { "weight": 3 } }, { "key": "24184", "source": "1125", "target": "437", "attributes": { "weight": 2 } }, { "key": "32807", "source": "1125", "target": "424", "attributes": { "weight": 1 } }, { "key": "32819", "source": "1125", "target": "480", "attributes": { "weight": 2 } }, { "key": "33627", "source": "1125", "target": "672", "attributes": { "weight": 1 } }, { "key": "24182", "source": "1125", "target": "1354", "attributes": { "weight": 2 } }, { "key": "31487", "source": "1125", "target": "154", "attributes": { "weight": 1 } }, { "key": "32821", "source": "1125", "target": "493", "attributes": { "weight": 2 } }, { "key": "24540", "source": "1125", "target": "790", "attributes": { "weight": 1 } }, { "key": "8993", "source": "1125", "target": "1367", "attributes": { "weight": 3 } }, { "key": "24187", "source": "1125", "target": "1116", "attributes": { "weight": 2 } }, { "key": "10531", "source": "1125", "target": "227", "attributes": { "weight": 1 } }, { "key": "8981", "source": "1125", "target": "436", "attributes": { "weight": 2 } }, { "key": "32178", "source": "1125", "target": "3088", "attributes": { "weight": 1 } }, { "key": "33128", "source": "1125", "target": "783", "attributes": { "weight": 1 } }, { "key": "9343", "source": "1125", "target": "1571", "attributes": { "weight": 2 } }, { "key": "32813", "source": "1125", "target": "451", "attributes": { "weight": 2 } }, { "key": "24189", "source": "1125", "target": "470", "attributes": { "weight": 5 } }, { "key": "24191", "source": "1125", "target": "1744", "attributes": { "weight": 5 } }, { "key": "8995", "source": "1125", "target": "229", "attributes": { "weight": 1 } }, { "key": "4206", "source": "1125", "target": "1123", "attributes": { "weight": 1 } }, { "key": "24194", "source": "1125", "target": "56", "attributes": { "weight": 1 } }, { "key": "10536", "source": "1125", "target": "234", "attributes": { "weight": 1 } }, { "key": "29446", "source": "1125", "target": "232", "attributes": { "weight": 2 } }, { "key": "8989", "source": "1125", "target": "1363", "attributes": { "weight": 2 } }, { "key": "24188", "source": "1125", "target": "459", "attributes": { "weight": 3 } }, { "key": "4204", "source": "1125", "target": "1120", "attributes": { "weight": 1 } }, { "key": "24181", "source": "1125", "target": "429", "attributes": { "weight": 3 } }, { "key": "8990", "source": "1125", "target": "469", "attributes": { "weight": 3 } }, { "key": "4198", "source": "1125", "target": "1106", "attributes": { "weight": 1 } }, { "key": "5922", "source": "1125", "target": "1047", "attributes": { "weight": 3 } }, { "key": "9003", "source": "1125", "target": "1564", "attributes": { "weight": 2 } }, { "key": "34857", "source": "1125", "target": "3165", "attributes": { "weight": 1 } }, { "key": "32810", "source": "1125", "target": "445", "attributes": { "weight": 1 } }, { "key": "8996", "source": "1125", "target": "1087", "attributes": { "weight": 1 } }, { "key": "8991", "source": "1125", "target": "228", "attributes": { "weight": 1 } }, { "key": "16902", "source": "1125", "target": "457", "attributes": { "weight": 1 } }, { "key": "37490", "source": "1125", "target": "1357", "attributes": { "weight": 1 } }, { "key": "32808", "source": "1125", "target": "858", "attributes": { "weight": 1 } }, { "key": "4201", "source": "1125", "target": "1113", "attributes": { "weight": 1 } }, { "key": "8987", "source": "1125", "target": "446", "attributes": { "weight": 2 } }, { "key": "30781", "source": "1125", "target": "1370", "attributes": { "weight": 1 } }, { "key": "9006", "source": "1125", "target": "233", "attributes": { "weight": 2 } }, { "key": "33626", "source": "1125", "target": "52", "attributes": { "weight": 1 } }, { "key": "31483", "source": "1125", "target": "34", "attributes": { "weight": 1 } }, { "key": "9349", "source": "1125", "target": "1592", "attributes": { "weight": 2 } }, { "key": "32177", "source": "1125", "target": "1546", "attributes": { "weight": 1 } }, { "key": "8983", "source": "1125", "target": "50", "attributes": { "weight": 1 } }, { "key": "9347", "source": "1125", "target": "1576", "attributes": { "weight": 2 } }, { "key": "16903", "source": "1125", "target": "70", "attributes": { "weight": 1 } }, { "key": "9348", "source": "1125", "target": "1579", "attributes": { "weight": 2 } }, { "key": "9346", "source": "1125", "target": "1574", "attributes": { "weight": 1 } }, { "key": "10534", "source": "1125", "target": "482", "attributes": { "weight": 2 } }, { "key": "35011", "source": "1125", "target": "352", "attributes": { "weight": 2 } }, { "key": "32814", "source": "1125", "target": "458", "attributes": { "weight": 1 } }, { "key": "10535", "source": "1125", "target": "1560", "attributes": { "weight": 3 } }, { "key": "9344", "source": "1125", "target": "430", "attributes": { "weight": 2 } }, { "key": "31485", "source": "1125", "target": "1530", "attributes": { "weight": 2 } }, { "key": "37043", "source": "1125", "target": "1117", "attributes": { "weight": 1 } }, { "key": "10529", "source": "1125", "target": "225", "attributes": { "weight": 1 } }, { "key": "4202", "source": "1125", "target": "1114", "attributes": { "weight": 1 } }, { "key": "8988", "source": "1125", "target": "251", "attributes": { "weight": 3 } }, { "key": "32817", "source": "1125", "target": "477", "attributes": { "weight": 2 } }, { "key": "14158", "source": "1125", "target": "1891", "attributes": { "weight": 1 } }, { "key": "24185", "source": "1125", "target": "222", "attributes": { "weight": 2 } }, { "key": "5923", "source": "1125", "target": "370", "attributes": { "weight": 3 } }, { "key": "32811", "source": "1125", "target": "447", "attributes": { "weight": 1 } }, { "key": "9000", "source": "1125", "target": "252", "attributes": { "weight": 3 } }, { "key": "8985", "source": "1125", "target": "1112", "attributes": { "weight": 1 } }, { "key": "9345", "source": "1125", "target": "1573", "attributes": { "weight": 2 } }, { "key": "4199", "source": "1125", "target": "1108", "attributes": { "weight": 1 } }, { "key": "10533", "source": "1125", "target": "1709", "attributes": { "weight": 1 } }, { "key": "6971", "source": "1125", "target": "193", "attributes": { "weight": 1 } }, { "key": "4210", "source": "1126", "target": "1125", "attributes": { "weight": 1 } }, { "key": "20719", "source": "1126", "target": "2245", "attributes": { "weight": 1 } }, { "key": "17298", "source": "1126", "target": "449", "attributes": { "weight": 1 } }, { "key": "20720", "source": "1126", "target": "489", "attributes": { "weight": 1 } }, { "key": "35330", "source": "1126", "target": "1088", "attributes": { "weight": 1 } }, { "key": "20743", "source": "1127", "target": "489", "attributes": { "weight": 1 } }, { "key": "4212", "source": "1127", "target": "1122", "attributes": { "weight": 2 } }, { "key": "4213", "source": "1127", "target": "228", "attributes": { "weight": 2 } }, { "key": "20742", "source": "1127", "target": "2111", "attributes": { "weight": 1 } }, { "key": "4211", "source": "1127", "target": "1107", "attributes": { "weight": 1 } }, { "key": "32181", "source": "1128", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9029", "source": "1128", "target": "1125", "attributes": { "weight": 1 } }, { "key": "9028", "source": "1128", "target": "442", "attributes": { "weight": 2 } }, { "key": "4215", "source": "1128", "target": "228", "attributes": { "weight": 1 } }, { "key": "20881", "source": "1129", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20882", "source": "1129", "target": "449", "attributes": { "weight": 1 } }, { "key": "4216", "source": "1129", "target": "1125", "attributes": { "weight": 1 } }, { "key": "20883", "source": "1129", "target": "489", "attributes": { "weight": 1 } }, { "key": "13845", "source": "1130", "target": "50", "attributes": { "weight": 1 } }, { "key": "4219", "source": "1130", "target": "233", "attributes": { "weight": 1 } }, { "key": "4217", "source": "1130", "target": "228", "attributes": { "weight": 1 } }, { "key": "9044", "source": "1130", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9042", "source": "1130", "target": "442", "attributes": { "weight": 2 } }, { "key": "9045", "source": "1130", "target": "1564", "attributes": { "weight": 2 } }, { "key": "24220", "source": "1130", "target": "130", "attributes": { "weight": 2 } }, { "key": "9043", "source": "1130", "target": "1535", "attributes": { "weight": 2 } }, { "key": "4218", "source": "1130", "target": "474", "attributes": { "weight": 1 } }, { "key": "10569", "source": "1131", "target": "225", "attributes": { "weight": 1 } }, { "key": "35342", "source": "1131", "target": "477", "attributes": { "weight": 1 } }, { "key": "33074", "source": "1131", "target": "493", "attributes": { "weight": 1 } }, { "key": "35341", "source": "1131", "target": "1110", "attributes": { "weight": 1 } }, { "key": "21171", "source": "1131", "target": "1744", "attributes": { "weight": 1 } }, { "key": "35340", "source": "1131", "target": "436", "attributes": { "weight": 1 } }, { "key": "32849", "source": "1131", "target": "482", "attributes": { "weight": 1 } }, { "key": "9098", "source": "1131", "target": "474", "attributes": { "weight": 1 } }, { "key": "24241", "source": "1131", "target": "471", "attributes": { "weight": 1 } }, { "key": "37072", "source": "1131", "target": "857", "attributes": { "weight": 1 } }, { "key": "4225", "source": "1131", "target": "229", "attributes": { "weight": 2 } }, { "key": "33689", "source": "1131", "target": "135", "attributes": { "weight": 1 } }, { "key": "31431", "source": "1131", "target": "223", "attributes": { "weight": 1 } }, { "key": "21172", "source": "1131", "target": "489", "attributes": { "weight": 1 } }, { "key": "4227", "source": "1131", "target": "1088", "attributes": { "weight": 2 } }, { "key": "4221", "source": "1131", "target": "50", "attributes": { "weight": 2 } }, { "key": "35339", "source": "1131", "target": "1107", "attributes": { "weight": 1 } }, { "key": "9099", "source": "1131", "target": "1125", "attributes": { "weight": 1 } }, { "key": "28984", "source": "1131", "target": "479", "attributes": { "weight": 2 } }, { "key": "4224", "source": "1131", "target": "228", "attributes": { "weight": 1 } }, { "key": "4223", "source": "1131", "target": "1121", "attributes": { "weight": 1 } }, { "key": "9100", "source": "1131", "target": "233", "attributes": { "weight": 1 } }, { "key": "33073", "source": "1131", "target": "1355", "attributes": { "weight": 1 } }, { "key": "4226", "source": "1131", "target": "1087", "attributes": { "weight": 1 } }, { "key": "4222", "source": "1131", "target": "452", "attributes": { "weight": 3 } }, { "key": "4220", "source": "1131", "target": "220", "attributes": { "weight": 3 } }, { "key": "4233", "source": "1132", "target": "1125", "attributes": { "weight": 1 } }, { "key": "30996", "source": "1133", "target": "638", "attributes": { "weight": 1 } }, { "key": "7271", "source": "1133", "target": "223", "attributes": { "weight": 4 } }, { "key": "17853", "source": "1133", "target": "1380", "attributes": { "weight": 1 } }, { "key": "29931", "source": "1133", "target": "1527", "attributes": { "weight": 2 } }, { "key": "17854", "source": "1133", "target": "1386", "attributes": { "weight": 5 } }, { "key": "27850", "source": "1133", "target": "339", "attributes": { "weight": 1 } }, { "key": "26051", "source": "1133", "target": "163", "attributes": { "weight": 3 } }, { "key": "34864", "source": "1133", "target": "2511", "attributes": { "weight": 1 } }, { "key": "17455", "source": "1133", "target": "358", "attributes": { "weight": 1 } }, { "key": "4974", "source": "1133", "target": "468", "attributes": { "weight": 2 } }, { "key": "8703", "source": "1133", "target": "220", "attributes": { "weight": 3 } }, { "key": "30438", "source": "1133", "target": "1046", "attributes": { "weight": 1 } }, { "key": "29932", "source": "1133", "target": "1541", "attributes": { "weight": 2 } }, { "key": "23177", "source": "1133", "target": "2432", "attributes": { "weight": 1 } }, { "key": "33839", "source": "1133", "target": "162", "attributes": { "weight": 1 } }, { "key": "4235", "source": "1133", "target": "1134", "attributes": { "weight": 1 } }, { "key": "32342", "source": "1133", "target": "791", "attributes": { "weight": 1 } }, { "key": "33837", "source": "1133", "target": "1382", "attributes": { "weight": 1 } }, { "key": "33838", "source": "1133", "target": "556", "attributes": { "weight": 1 } }, { "key": "4237", "source": "1134", "target": "1133", "attributes": { "weight": 1 } }, { "key": "11335", "source": "1136", "target": "1742", "attributes": { "weight": 1 } }, { "key": "4240", "source": "1136", "target": "3", "attributes": { "weight": 2 } }, { "key": "4241", "source": "1136", "target": "673", "attributes": { "weight": 1 } }, { "key": "32329", "source": "1136", "target": "791", "attributes": { "weight": 1 } }, { "key": "37406", "source": "1136", "target": "2831", "attributes": { "weight": 1 } }, { "key": "11350", "source": "1137", "target": "1742", "attributes": { "weight": 1 } }, { "key": "36926", "source": "1137", "target": "2122", "attributes": { "weight": 1 } }, { "key": "35999", "source": "1137", "target": "497", "attributes": { "weight": 1 } }, { "key": "4244", "source": "1137", "target": "673", "attributes": { "weight": 1 } }, { "key": "36927", "source": "1137", "target": "2287", "attributes": { "weight": 1 } }, { "key": "35998", "source": "1137", "target": "1390", "attributes": { "weight": 1 } }, { "key": "36928", "source": "1137", "target": "1072", "attributes": { "weight": 1 } }, { "key": "35997", "source": "1137", "target": "465", "attributes": { "weight": 1 } }, { "key": "33842", "source": "1138", "target": "123", "attributes": { "weight": 1 } }, { "key": "21806", "source": "1138", "target": "2300", "attributes": { "weight": 1 } }, { "key": "4256", "source": "1138", "target": "1090", "attributes": { "weight": 2 } }, { "key": "8249", "source": "1138", "target": "195", "attributes": { "weight": 3 } }, { "key": "21807", "source": "1138", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21805", "source": "1138", "target": "1279", "attributes": { "weight": 1 } }, { "key": "15426", "source": "1138", "target": "913", "attributes": { "weight": 1 } }, { "key": "4255", "source": "1138", "target": "779", "attributes": { "weight": 2 } }, { "key": "21808", "source": "1138", "target": "2212", "attributes": { "weight": 1 } }, { "key": "4257", "source": "1139", "target": "368", "attributes": { "weight": 2 } }, { "key": "18548", "source": "1140", "target": "337", "attributes": { "weight": 2 } }, { "key": "27202", "source": "1140", "target": "2664", "attributes": { "weight": 1 } }, { "key": "36454", "source": "1140", "target": "1315", "attributes": { "weight": 1 } }, { "key": "36453", "source": "1140", "target": "1284", "attributes": { "weight": 1 } }, { "key": "36450", "source": "1140", "target": "1174", "attributes": { "weight": 1 } }, { "key": "36455", "source": "1140", "target": "1322", "attributes": { "weight": 1 } }, { "key": "4261", "source": "1140", "target": "1294", "attributes": { "weight": 3 } }, { "key": "18549", "source": "1140", "target": "1263", "attributes": { "weight": 2 } }, { "key": "36451", "source": "1140", "target": "1526", "attributes": { "weight": 1 } }, { "key": "15427", "source": "1140", "target": "925", "attributes": { "weight": 1 } }, { "key": "4258", "source": "1140", "target": "368", "attributes": { "weight": 2 } }, { "key": "4260", "source": "1140", "target": "123", "attributes": { "weight": 3 } }, { "key": "18547", "source": "1140", "target": "1197", "attributes": { "weight": 3 } }, { "key": "4259", "source": "1140", "target": "338", "attributes": { "weight": 5 } }, { "key": "15428", "source": "1140", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18550", "source": "1140", "target": "1552", "attributes": { "weight": 2 } }, { "key": "27201", "source": "1140", "target": "2663", "attributes": { "weight": 1 } }, { "key": "33843", "source": "1140", "target": "1233", "attributes": { "weight": 1 } }, { "key": "8251", "source": "1140", "target": "195", "attributes": { "weight": 5 } }, { "key": "11427", "source": "1140", "target": "370", "attributes": { "weight": 1 } }, { "key": "36452", "source": "1140", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18551", "source": "1140", "target": "1291", "attributes": { "weight": 2 } }, { "key": "33844", "source": "1140", "target": "1323", "attributes": { "weight": 1 } }, { "key": "8255", "source": "1141", "target": "442", "attributes": { "weight": 3 } }, { "key": "4262", "source": "1141", "target": "468", "attributes": { "weight": 5 } }, { "key": "32125", "source": "1141", "target": "1761", "attributes": { "weight": 1 } }, { "key": "32126", "source": "1141", "target": "1247", "attributes": { "weight": 1 } }, { "key": "32127", "source": "1141", "target": "1767", "attributes": { "weight": 1 } }, { "key": "32129", "source": "1141", "target": "1839", "attributes": { "weight": 1 } }, { "key": "32124", "source": "1141", "target": "1832", "attributes": { "weight": 1 } }, { "key": "32130", "source": "1141", "target": "1842", "attributes": { "weight": 1 } }, { "key": "12505", "source": "1141", "target": "1861", "attributes": { "weight": 1 } }, { "key": "12122", "source": "1141", "target": "472", "attributes": { "weight": 2 } }, { "key": "12507", "source": "1141", "target": "1768", "attributes": { "weight": 2 } }, { "key": "26383", "source": "1141", "target": "454", "attributes": { "weight": 1 } }, { "key": "11821", "source": "1141", "target": "1363", "attributes": { "weight": 1 } }, { "key": "17119", "source": "1141", "target": "449", "attributes": { "weight": 1 } }, { "key": "12120", "source": "1141", "target": "1835", "attributes": { "weight": 1 } }, { "key": "12658", "source": "1141", "target": "695", "attributes": { "weight": 1 } }, { "key": "32128", "source": "1141", "target": "1282", "attributes": { "weight": 1 } }, { "key": "12504", "source": "1141", "target": "51", "attributes": { "weight": 1 } }, { "key": "33163", "source": "1141", "target": "2258", "attributes": { "weight": 1 } }, { "key": "33162", "source": "1141", "target": "135", "attributes": { "weight": 1 } }, { "key": "12506", "source": "1141", "target": "1863", "attributes": { "weight": 1 } }, { "key": "12121", "source": "1141", "target": "1837", "attributes": { "weight": 1 } }, { "key": "31213", "source": "1141", "target": "1337", "attributes": { "weight": 3 } }, { "key": "12119", "source": "1141", "target": "435", "attributes": { "weight": 1 } }, { "key": "31212", "source": "1141", "target": "674", "attributes": { "weight": 1 } }, { "key": "12508", "source": "1141", "target": "70", "attributes": { "weight": 2 } }, { "key": "12118", "source": "1141", "target": "1161", "attributes": { "weight": 1 } }, { "key": "31211", "source": "1141", "target": "434", "attributes": { "weight": 2 } }, { "key": "25802", "source": "1141", "target": "220", "attributes": { "weight": 1 } }, { "key": "4264", "source": "1142", "target": "368", "attributes": { "weight": 2 } }, { "key": "37529", "source": "1143", "target": "2971", "attributes": { "weight": 1 } }, { "key": "25125", "source": "1143", "target": "165", "attributes": { "weight": 2 } }, { "key": "37527", "source": "1143", "target": "3397", "attributes": { "weight": 1 } }, { "key": "31177", "source": "1143", "target": "3051", "attributes": { "weight": 1 } }, { "key": "17327", "source": "1143", "target": "358", "attributes": { "weight": 2 } }, { "key": "30141", "source": "1143", "target": "2973", "attributes": { "weight": 1 } }, { "key": "37525", "source": "1143", "target": "3392", "attributes": { "weight": 1 } }, { "key": "14169", "source": "1143", "target": "168", "attributes": { "weight": 1 } }, { "key": "30139", "source": "1143", "target": "1177", "attributes": { "weight": 2 } }, { "key": "4265", "source": "1143", "target": "1166", "attributes": { "weight": 5 } }, { "key": "25126", "source": "1143", "target": "297", "attributes": { "weight": 4 } }, { "key": "15101", "source": "1143", "target": "171", "attributes": { "weight": 2 } }, { "key": "25128", "source": "1143", "target": "173", "attributes": { "weight": 3 } }, { "key": "4266", "source": "1143", "target": "310", "attributes": { "weight": 5 } }, { "key": "37530", "source": "1143", "target": "3408", "attributes": { "weight": 1 } }, { "key": "37526", "source": "1143", "target": "3393", "attributes": { "weight": 1 } }, { "key": "37524", "source": "1143", "target": "3390", "attributes": { "weight": 1 } }, { "key": "17805", "source": "1143", "target": "178", "attributes": { "weight": 3 } }, { "key": "30138", "source": "1143", "target": "1151", "attributes": { "weight": 1 } }, { "key": "30142", "source": "1143", "target": "2975", "attributes": { "weight": 2 } }, { "key": "25122", "source": "1143", "target": "1146", "attributes": { "weight": 4 } }, { "key": "25124", "source": "1143", "target": "572", "attributes": { "weight": 2 } }, { "key": "30140", "source": "1143", "target": "2803", "attributes": { "weight": 1 } }, { "key": "37528", "source": "1143", "target": "3399", "attributes": { "weight": 1 } }, { "key": "25123", "source": "1143", "target": "1187", "attributes": { "weight": 1 } }, { "key": "25127", "source": "1143", "target": "1996", "attributes": { "weight": 2 } }, { "key": "33850", "source": "1144", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4267", "source": "1144", "target": "368", "attributes": { "weight": 2 } }, { "key": "8256", "source": "1144", "target": "195", "attributes": { "weight": 3 } }, { "key": "8258", "source": "1145", "target": "195", "attributes": { "weight": 3 } }, { "key": "4269", "source": "1145", "target": "779", "attributes": { "weight": 2 } }, { "key": "4270", "source": "1145", "target": "1196", "attributes": { "weight": 2 } }, { "key": "28731", "source": "1146", "target": "2808", "attributes": { "weight": 1 } }, { "key": "14312", "source": "1146", "target": "259", "attributes": { "weight": 1 } }, { "key": "25134", "source": "1146", "target": "2121", "attributes": { "weight": 2 } }, { "key": "18485", "source": "1146", "target": "1280", "attributes": { "weight": 3 } }, { "key": "26194", "source": "1146", "target": "601", "attributes": { "weight": 2 } }, { "key": "28745", "source": "1146", "target": "2822", "attributes": { "weight": 1 } }, { "key": "25133", "source": "1146", "target": "2120", "attributes": { "weight": 2 } }, { "key": "25130", "source": "1146", "target": "1178", "attributes": { "weight": 2 } }, { "key": "17328", "source": "1146", "target": "297", "attributes": { "weight": 7 } }, { "key": "28737", "source": "1146", "target": "2423", "attributes": { "weight": 2 } }, { "key": "12877", "source": "1146", "target": "305", "attributes": { "weight": 2 } }, { "key": "28744", "source": "1146", "target": "2821", "attributes": { "weight": 1 } }, { "key": "28735", "source": "1146", "target": "2812", "attributes": { "weight": 1 } }, { "key": "27567", "source": "1146", "target": "171", "attributes": { "weight": 1 } }, { "key": "28722", "source": "1146", "target": "2213", "attributes": { "weight": 2 } }, { "key": "28732", "source": "1146", "target": "2809", "attributes": { "weight": 1 } }, { "key": "28734", "source": "1146", "target": "173", "attributes": { "weight": 2 } }, { "key": "28245", "source": "1146", "target": "2228", "attributes": { "weight": 2 } }, { "key": "14170", "source": "1146", "target": "168", "attributes": { "weight": 2 } }, { "key": "28730", "source": "1146", "target": "2745", "attributes": { "weight": 2 } }, { "key": "4273", "source": "1146", "target": "1299", "attributes": { "weight": 4 } }, { "key": "28723", "source": "1146", "target": "2791", "attributes": { "weight": 1 } }, { "key": "28728", "source": "1146", "target": "2804", "attributes": { "weight": 1 } }, { "key": "25129", "source": "1146", "target": "1143", "attributes": { "weight": 3 } }, { "key": "28742", "source": "1146", "target": "2819", "attributes": { "weight": 1 } }, { "key": "17806", "source": "1146", "target": "178", "attributes": { "weight": 3 } }, { "key": "28724", "source": "1146", "target": "1187", "attributes": { "weight": 2 } }, { "key": "28741", "source": "1146", "target": "2818", "attributes": { "weight": 1 } }, { "key": "28740", "source": "1146", "target": "2224", "attributes": { "weight": 2 } }, { "key": "25131", "source": "1146", "target": "2555", "attributes": { "weight": 2 } }, { "key": "25660", "source": "1146", "target": "278", "attributes": { "weight": 1 } }, { "key": "28725", "source": "1146", "target": "2797", "attributes": { "weight": 1 } }, { "key": "28738", "source": "1146", "target": "2815", "attributes": { "weight": 1 } }, { "key": "28736", "source": "1146", "target": "2813", "attributes": { "weight": 1 } }, { "key": "28726", "source": "1146", "target": "2799", "attributes": { "weight": 1 } }, { "key": "28729", "source": "1146", "target": "338", "attributes": { "weight": 2 } }, { "key": "4274", "source": "1146", "target": "310", "attributes": { "weight": 10 } }, { "key": "28733", "source": "1146", "target": "2810", "attributes": { "weight": 1 } }, { "key": "32244", "source": "1146", "target": "164", "attributes": { "weight": 2 } }, { "key": "28336", "source": "1146", "target": "580", "attributes": { "weight": 3 } }, { "key": "25132", "source": "1146", "target": "1996", "attributes": { "weight": 3 } }, { "key": "28727", "source": "1146", "target": "2802", "attributes": { "weight": 1 } }, { "key": "4272", "source": "1146", "target": "1166", "attributes": { "weight": 7 } }, { "key": "28739", "source": "1146", "target": "1323", "attributes": { "weight": 2 } }, { "key": "28743", "source": "1146", "target": "2820", "attributes": { "weight": 1 } }, { "key": "4278", "source": "1147", "target": "123", "attributes": { "weight": 2 } }, { "key": "18557", "source": "1148", "target": "1526", "attributes": { "weight": 2 } }, { "key": "18559", "source": "1148", "target": "1552", "attributes": { "weight": 1 } }, { "key": "33855", "source": "1148", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4279", "source": "1148", "target": "368", "attributes": { "weight": 2 } }, { "key": "36458", "source": "1148", "target": "337", "attributes": { "weight": 1 } }, { "key": "18558", "source": "1148", "target": "1197", "attributes": { "weight": 3 } }, { "key": "4290", "source": "1149", "target": "30", "attributes": { "weight": 5 } }, { "key": "26195", "source": "1149", "target": "27", "attributes": { "weight": 1 } }, { "key": "29296", "source": "1149", "target": "2639", "attributes": { "weight": 1 } }, { "key": "9713", "source": "1149", "target": "1244", "attributes": { "weight": 2 } }, { "key": "37416", "source": "1149", "target": "1099", "attributes": { "weight": 1 } }, { "key": "4292", "source": "1150", "target": "123", "attributes": { "weight": 2 } }, { "key": "4293", "source": "1150", "target": "1090", "attributes": { "weight": 2 } }, { "key": "30147", "source": "1151", "target": "1187", "attributes": { "weight": 1 } }, { "key": "4294", "source": "1151", "target": "310", "attributes": { "weight": 3 } }, { "key": "30148", "source": "1151", "target": "165", "attributes": { "weight": 1 } }, { "key": "30145", "source": "1151", "target": "2553", "attributes": { "weight": 1 } }, { "key": "30149", "source": "1151", "target": "297", "attributes": { "weight": 2 } }, { "key": "30150", "source": "1151", "target": "173", "attributes": { "weight": 1 } }, { "key": "30144", "source": "1151", "target": "1143", "attributes": { "weight": 1 } }, { "key": "30146", "source": "1151", "target": "1166", "attributes": { "weight": 1 } }, { "key": "18567", "source": "1152", "target": "1326", "attributes": { "weight": 2 } }, { "key": "36462", "source": "1152", "target": "1196", "attributes": { "weight": 1 } }, { "key": "4319", "source": "1152", "target": "926", "attributes": { "weight": 2 } }, { "key": "8432", "source": "1152", "target": "195", "attributes": { "weight": 7 } }, { "key": "11433", "source": "1152", "target": "208", "attributes": { "weight": 4 } }, { "key": "35664", "source": "1152", "target": "396", "attributes": { "weight": 1 } }, { "key": "15504", "source": "1152", "target": "913", "attributes": { "weight": 1 } }, { "key": "18566", "source": "1152", "target": "1284", "attributes": { "weight": 2 } }, { "key": "11434", "source": "1152", "target": "1323", "attributes": { "weight": 3 } }, { "key": "11431", "source": "1152", "target": "199", "attributes": { "weight": 2 } }, { "key": "4318", "source": "1152", "target": "468", "attributes": { "weight": 4 } }, { "key": "21812", "source": "1152", "target": "337", "attributes": { "weight": 2 } }, { "key": "4316", "source": "1152", "target": "370", "attributes": { "weight": 4 } }, { "key": "36465", "source": "1152", "target": "1315", "attributes": { "weight": 1 } }, { "key": "33866", "source": "1152", "target": "1047", "attributes": { "weight": 2 } }, { "key": "11432", "source": "1152", "target": "1251", "attributes": { "weight": 1 } }, { "key": "33867", "source": "1152", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18564", "source": "1152", "target": "2229", "attributes": { "weight": 2 } }, { "key": "15506", "source": "1152", "target": "925", "attributes": { "weight": 1 } }, { "key": "4315", "source": "1152", "target": "368", "attributes": { "weight": 2 } }, { "key": "33868", "source": "1152", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18562", "source": "1152", "target": "387", "attributes": { "weight": 2 } }, { "key": "36464", "source": "1152", "target": "1248", "attributes": { "weight": 1 } }, { "key": "36460", "source": "1152", "target": "1174", "attributes": { "weight": 1 } }, { "key": "15505", "source": "1152", "target": "924", "attributes": { "weight": 1 } }, { "key": "4320", "source": "1152", "target": "123", "attributes": { "weight": 3 } }, { "key": "18133", "source": "1152", "target": "1197", "attributes": { "weight": 4 } }, { "key": "36463", "source": "1152", "target": "1228", "attributes": { "weight": 1 } }, { "key": "4322", "source": "1152", "target": "1294", "attributes": { "weight": 3 } }, { "key": "15507", "source": "1152", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10169", "source": "1152", "target": "1322", "attributes": { "weight": 1 } }, { "key": "18568", "source": "1152", "target": "1331", "attributes": { "weight": 1 } }, { "key": "18563", "source": "1152", "target": "1201", "attributes": { "weight": 2 } }, { "key": "33865", "source": "1152", "target": "1182", "attributes": { "weight": 1 } }, { "key": "18565", "source": "1152", "target": "1552", "attributes": { "weight": 2 } }, { "key": "11430", "source": "1152", "target": "938", "attributes": { "weight": 1 } }, { "key": "4321", "source": "1152", "target": "1090", "attributes": { "weight": 2 } }, { "key": "36466", "source": "1152", "target": "218", "attributes": { "weight": 1 } }, { "key": "4314", "source": "1152", "target": "779", "attributes": { "weight": 2 } }, { "key": "36459", "source": "1152", "target": "1165", "attributes": { "weight": 1 } }, { "key": "4317", "source": "1152", "target": "338", "attributes": { "weight": 5 } }, { "key": "36461", "source": "1152", "target": "1526", "attributes": { "weight": 1 } }, { "key": "33869", "source": "1153", "target": "123", "attributes": { "weight": 1 } }, { "key": "21813", "source": "1153", "target": "199", "attributes": { "weight": 1 } }, { "key": "4323", "source": "1153", "target": "779", "attributes": { "weight": 2 } }, { "key": "21816", "source": "1153", "target": "2212", "attributes": { "weight": 1 } }, { "key": "8433", "source": "1153", "target": "195", "attributes": { "weight": 4 } }, { "key": "15508", "source": "1153", "target": "913", "attributes": { "weight": 1 } }, { "key": "21815", "source": "1153", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21814", "source": "1153", "target": "2300", "attributes": { "weight": 1 } }, { "key": "15509", "source": "1154", "target": "195", "attributes": { "weight": 2 } }, { "key": "4324", "source": "1154", "target": "779", "attributes": { "weight": 2 } }, { "key": "33870", "source": "1154", "target": "123", "attributes": { "weight": 1 } }, { "key": "4325", "source": "1154", "target": "1090", "attributes": { "weight": 2 } }, { "key": "21817", "source": "1154", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15510", "source": "1154", "target": "913", "attributes": { "weight": 1 } }, { "key": "4333", "source": "1155", "target": "370", "attributes": { "weight": 4 } }, { "key": "7215", "source": "1155", "target": "1063", "attributes": { "weight": 2 } }, { "key": "11836", "source": "1155", "target": "135", "attributes": { "weight": 2 } }, { "key": "4335", "source": "1155", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4334", "source": "1155", "target": "371", "attributes": { "weight": 2 } }, { "key": "15513", "source": "1155", "target": "195", "attributes": { "weight": 1 } }, { "key": "15514", "source": "1155", "target": "938", "attributes": { "weight": 1 } }, { "key": "33871", "source": "1155", "target": "1047", "attributes": { "weight": 1 } }, { "key": "11440", "source": "1156", "target": "218", "attributes": { "weight": 2 } }, { "key": "4341", "source": "1156", "target": "123", "attributes": { "weight": 3 } }, { "key": "4336", "source": "1156", "target": "779", "attributes": { "weight": 2 } }, { "key": "4343", "source": "1156", "target": "1296", "attributes": { "weight": 2 } }, { "key": "8435", "source": "1156", "target": "195", "attributes": { "weight": 7 } }, { "key": "15516", "source": "1156", "target": "913", "attributes": { "weight": 1 } }, { "key": "11436", "source": "1156", "target": "199", "attributes": { "weight": 2 } }, { "key": "4337", "source": "1156", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4342", "source": "1156", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11438", "source": "1156", "target": "212", "attributes": { "weight": 1 } }, { "key": "36468", "source": "1156", "target": "337", "attributes": { "weight": 1 } }, { "key": "18569", "source": "1156", "target": "1174", "attributes": { "weight": 2 } }, { "key": "15517", "source": "1156", "target": "925", "attributes": { "weight": 1 } }, { "key": "36467", "source": "1156", "target": "1197", "attributes": { "weight": 1 } }, { "key": "4338", "source": "1156", "target": "368", "attributes": { "weight": 2 } }, { "key": "18570", "source": "1156", "target": "1552", "attributes": { "weight": 2 } }, { "key": "33872", "source": "1156", "target": "1232", "attributes": { "weight": 1 } }, { "key": "4340", "source": "1156", "target": "371", "attributes": { "weight": 2 } }, { "key": "15518", "source": "1156", "target": "1305", "attributes": { "weight": 1 } }, { "key": "11439", "source": "1156", "target": "961", "attributes": { "weight": 1 } }, { "key": "7216", "source": "1156", "target": "154", "attributes": { "weight": 2 } }, { "key": "7217", "source": "1156", "target": "1063", "attributes": { "weight": 2 } }, { "key": "11437", "source": "1156", "target": "208", "attributes": { "weight": 4 } }, { "key": "4339", "source": "1156", "target": "338", "attributes": { "weight": 3 } }, { "key": "15515", "source": "1156", "target": "912", "attributes": { "weight": 1 } }, { "key": "36469", "source": "1156", "target": "215", "attributes": { "weight": 1 } }, { "key": "33878", "source": "1157", "target": "1323", "attributes": { "weight": 1 } }, { "key": "4344", "source": "1157", "target": "1294", "attributes": { "weight": 2 } }, { "key": "33875", "source": "1157", "target": "1197", "attributes": { "weight": 1 } }, { "key": "33876", "source": "1157", "target": "1233", "attributes": { "weight": 1 } }, { "key": "33877", "source": "1157", "target": "338", "attributes": { "weight": 1 } }, { "key": "26809", "source": "1158", "target": "2650", "attributes": { "weight": 1 } }, { "key": "12804", "source": "1158", "target": "780", "attributes": { "weight": 1 } }, { "key": "4345", "source": "1158", "target": "371", "attributes": { "weight": 2 } }, { "key": "21617", "source": "1158", "target": "109", "attributes": { "weight": 1 } }, { "key": "15215", "source": "1158", "target": "454", "attributes": { "weight": 1 } }, { "key": "12806", "source": "1158", "target": "257", "attributes": { "weight": 1 } }, { "key": "12803", "source": "1158", "target": "248", "attributes": { "weight": 2 } }, { "key": "26805", "source": "1158", "target": "251", "attributes": { "weight": 1 } }, { "key": "15216", "source": "1158", "target": "472", "attributes": { "weight": 2 } }, { "key": "7218", "source": "1158", "target": "1063", "attributes": { "weight": 2 } }, { "key": "26807", "source": "1158", "target": "2649", "attributes": { "weight": 1 } }, { "key": "11441", "source": "1158", "target": "370", "attributes": { "weight": 1 } }, { "key": "12805", "source": "1158", "target": "785", "attributes": { "weight": 1 } }, { "key": "26806", "source": "1158", "target": "1220", "attributes": { "weight": 1 } }, { "key": "26804", "source": "1158", "target": "250", "attributes": { "weight": 1 } }, { "key": "26808", "source": "1158", "target": "256", "attributes": { "weight": 1 } }, { "key": "11838", "source": "1158", "target": "135", "attributes": { "weight": 3 } }, { "key": "33879", "source": "1159", "target": "1232", "attributes": { "weight": 1 } }, { "key": "4346", "source": "1159", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15519", "source": "1159", "target": "913", "attributes": { "weight": 1 } }, { "key": "15520", "source": "1160", "target": "913", "attributes": { "weight": 1 } }, { "key": "4348", "source": "1160", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4349", "source": "1160", "target": "1090", "attributes": { "weight": 2 } }, { "key": "21850", "source": "1160", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21851", "source": "1160", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15521", "source": "1160", "target": "921", "attributes": { "weight": 1 } }, { "key": "17137", "source": "1161", "target": "451", "attributes": { "weight": 1 } }, { "key": "12136", "source": "1161", "target": "435", "attributes": { "weight": 1 } }, { "key": "4350", "source": "1161", "target": "468", "attributes": { "weight": 4 } }, { "key": "12143", "source": "1161", "target": "1247", "attributes": { "weight": 1 } }, { "key": "12140", "source": "1161", "target": "1535", "attributes": { "weight": 1 } }, { "key": "12139", "source": "1161", "target": "1832", "attributes": { "weight": 1 } }, { "key": "12135", "source": "1161", "target": "1141", "attributes": { "weight": 1 } }, { "key": "12146", "source": "1161", "target": "1564", "attributes": { "weight": 1 } }, { "key": "12141", "source": "1161", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12144", "source": "1161", "target": "472", "attributes": { "weight": 1 } }, { "key": "12142", "source": "1161", "target": "1834", "attributes": { "weight": 1 } }, { "key": "35355", "source": "1161", "target": "1811", "attributes": { "weight": 1 } }, { "key": "17138", "source": "1161", "target": "135", "attributes": { "weight": 1 } }, { "key": "12138", "source": "1161", "target": "450", "attributes": { "weight": 1 } }, { "key": "17136", "source": "1161", "target": "429", "attributes": { "weight": 1 } }, { "key": "12145", "source": "1161", "target": "1282", "attributes": { "weight": 1 } }, { "key": "12137", "source": "1161", "target": "446", "attributes": { "weight": 1 } }, { "key": "17139", "source": "1161", "target": "231", "attributes": { "weight": 1 } }, { "key": "18574", "source": "1162", "target": "218", "attributes": { "weight": 2 } }, { "key": "36470", "source": "1162", "target": "1228", "attributes": { "weight": 1 } }, { "key": "4351", "source": "1162", "target": "779", "attributes": { "weight": 2 } }, { "key": "15525", "source": "1162", "target": "925", "attributes": { "weight": 1 } }, { "key": "18571", "source": "1162", "target": "1174", "attributes": { "weight": 2 } }, { "key": "33882", "source": "1162", "target": "123", "attributes": { "weight": 1 } }, { "key": "4354", "source": "1162", "target": "371", "attributes": { "weight": 2 } }, { "key": "4352", "source": "1162", "target": "1196", "attributes": { "weight": 2 } }, { "key": "15523", "source": "1162", "target": "921", "attributes": { "weight": 1 } }, { "key": "8444", "source": "1162", "target": "195", "attributes": { "weight": 6 } }, { "key": "36471", "source": "1162", "target": "1552", "attributes": { "weight": 1 } }, { "key": "35093", "source": "1162", "target": "200", "attributes": { "weight": 1 } }, { "key": "4353", "source": "1162", "target": "368", "attributes": { "weight": 2 } }, { "key": "4355", "source": "1162", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15522", "source": "1162", "target": "913", "attributes": { "weight": 1 } }, { "key": "33881", "source": "1162", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18573", "source": "1162", "target": "337", "attributes": { "weight": 2 } }, { "key": "15524", "source": "1162", "target": "208", "attributes": { "weight": 3 } }, { "key": "33880", "source": "1162", "target": "1197", "attributes": { "weight": 1 } }, { "key": "18572", "source": "1162", "target": "1526", "attributes": { "weight": 2 } }, { "key": "9718", "source": "1163", "target": "1323", "attributes": { "weight": 1 } }, { "key": "15530", "source": "1163", "target": "195", "attributes": { "weight": 1 } }, { "key": "4356", "source": "1163", "target": "368", "attributes": { "weight": 2 } }, { "key": "33884", "source": "1163", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9719", "source": "1163", "target": "411", "attributes": { "weight": 2 } }, { "key": "9716", "source": "1163", "target": "396", "attributes": { "weight": 1 } }, { "key": "15531", "source": "1163", "target": "338", "attributes": { "weight": 2 } }, { "key": "37130", "source": "1163", "target": "387", "attributes": { "weight": 1 } }, { "key": "37131", "source": "1163", "target": "1552", "attributes": { "weight": 1 } }, { "key": "9717", "source": "1163", "target": "399", "attributes": { "weight": 2 } }, { "key": "15532", "source": "1164", "target": "913", "attributes": { "weight": 1 } }, { "key": "4361", "source": "1164", "target": "368", "attributes": { "weight": 2 } }, { "key": "21863", "source": "1164", "target": "2212", "attributes": { "weight": 1 } }, { "key": "18136", "source": "1164", "target": "1197", "attributes": { "weight": 1 } }, { "key": "4362", "source": "1164", "target": "123", "attributes": { "weight": 2 } }, { "key": "8464", "source": "1164", "target": "195", "attributes": { "weight": 3 } }, { "key": "18137", "source": "1164", "target": "208", "attributes": { "weight": 1 } }, { "key": "15533", "source": "1164", "target": "925", "attributes": { "weight": 1 } }, { "key": "18577", "source": "1165", "target": "1228", "attributes": { "weight": 2 } }, { "key": "15537", "source": "1165", "target": "925", "attributes": { "weight": 1 } }, { "key": "18578", "source": "1165", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18579", "source": "1165", "target": "1296", "attributes": { "weight": 2 } }, { "key": "8465", "source": "1165", "target": "195", "attributes": { "weight": 6 } }, { "key": "18575", "source": "1165", "target": "1174", "attributes": { "weight": 2 } }, { "key": "4365", "source": "1165", "target": "368", "attributes": { "weight": 2 } }, { "key": "4366", "source": "1165", "target": "370", "attributes": { "weight": 3 } }, { "key": "18576", "source": "1165", "target": "1180", "attributes": { "weight": 2 } }, { "key": "36479", "source": "1165", "target": "199", "attributes": { "weight": 1 } }, { "key": "15535", "source": "1165", "target": "913", "attributes": { "weight": 2 } }, { "key": "4367", "source": "1165", "target": "338", "attributes": { "weight": 5 } }, { "key": "36477", "source": "1165", "target": "1184", "attributes": { "weight": 1 } }, { "key": "36478", "source": "1165", "target": "1532", "attributes": { "weight": 1 } }, { "key": "36480", "source": "1165", "target": "918", "attributes": { "weight": 1 } }, { "key": "4370", "source": "1165", "target": "123", "attributes": { "weight": 3 } }, { "key": "15534", "source": "1165", "target": "912", "attributes": { "weight": 1 } }, { "key": "36486", "source": "1165", "target": "214", "attributes": { "weight": 1 } }, { "key": "36476", "source": "1165", "target": "938", "attributes": { "weight": 1 } }, { "key": "7220", "source": "1165", "target": "1063", "attributes": { "weight": 1 } }, { "key": "36490", "source": "1165", "target": "124", "attributes": { "weight": 1 } }, { "key": "15538", "source": "1165", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18580", "source": "1165", "target": "1301", "attributes": { "weight": 1 } }, { "key": "36483", "source": "1165", "target": "1263", "attributes": { "weight": 1 } }, { "key": "36481", "source": "1165", "target": "205", "attributes": { "weight": 1 } }, { "key": "36482", "source": "1165", "target": "337", "attributes": { "weight": 1 } }, { "key": "33888", "source": "1165", "target": "1047", "attributes": { "weight": 2 } }, { "key": "33887", "source": "1165", "target": "1182", "attributes": { "weight": 2 } }, { "key": "36484", "source": "1165", "target": "926", "attributes": { "weight": 1 } }, { "key": "36487", "source": "1165", "target": "1305", "attributes": { "weight": 1 } }, { "key": "15536", "source": "1165", "target": "208", "attributes": { "weight": 3 } }, { "key": "4369", "source": "1165", "target": "371", "attributes": { "weight": 2 } }, { "key": "36475", "source": "1165", "target": "1152", "attributes": { "weight": 1 } }, { "key": "25511", "source": "1165", "target": "2599", "attributes": { "weight": 1 } }, { "key": "36488", "source": "1165", "target": "1315", "attributes": { "weight": 1 } }, { "key": "33890", "source": "1165", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4363", "source": "1165", "target": "779", "attributes": { "weight": 2 } }, { "key": "36485", "source": "1165", "target": "1294", "attributes": { "weight": 1 } }, { "key": "18138", "source": "1165", "target": "1197", "attributes": { "weight": 3 } }, { "key": "33889", "source": "1165", "target": "1232", "attributes": { "weight": 1 } }, { "key": "25512", "source": "1165", "target": "2604", "attributes": { "weight": 1 } }, { "key": "18581", "source": "1165", "target": "218", "attributes": { "weight": 2 } }, { "key": "36489", "source": "1165", "target": "405", "attributes": { "weight": 1 } }, { "key": "4364", "source": "1165", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4371", "source": "1165", "target": "1090", "attributes": { "weight": 3 } }, { "key": "18139", "source": "1165", "target": "2205", "attributes": { "weight": 1 } }, { "key": "4368", "source": "1165", "target": "921", "attributes": { "weight": 4 } }, { "key": "28754", "source": "1166", "target": "2807", "attributes": { "weight": 1 } }, { "key": "28752", "source": "1166", "target": "2793", "attributes": { "weight": 3 } }, { "key": "28751", "source": "1166", "target": "1178", "attributes": { "weight": 3 } }, { "key": "30171", "source": "1166", "target": "2934", "attributes": { "weight": 2 } }, { "key": "4374", "source": "1166", "target": "1177", "attributes": { "weight": 3 } }, { "key": "4380", "source": "1166", "target": "310", "attributes": { "weight": 5 } }, { "key": "30173", "source": "1166", "target": "2968", "attributes": { "weight": 1 } }, { "key": "6616", "source": "1166", "target": "178", "attributes": { "weight": 9 } }, { "key": "4376", "source": "1166", "target": "165", "attributes": { "weight": 6 } }, { "key": "30176", "source": "1166", "target": "2974", "attributes": { "weight": 1 } }, { "key": "30163", "source": "1166", "target": "1151", "attributes": { "weight": 1 } }, { "key": "24276", "source": "1166", "target": "2216", "attributes": { "weight": 2 } }, { "key": "4381", "source": "1166", "target": "1341", "attributes": { "weight": 4 } }, { "key": "4372", "source": "1166", "target": "1143", "attributes": { "weight": 5 } }, { "key": "22393", "source": "1166", "target": "572", "attributes": { "weight": 3 } }, { "key": "14349", "source": "1166", "target": "259", "attributes": { "weight": 1 } }, { "key": "28756", "source": "1166", "target": "2121", "attributes": { "weight": 2 } }, { "key": "30168", "source": "1166", "target": "2962", "attributes": { "weight": 2 } }, { "key": "25138", "source": "1166", "target": "2556", "attributes": { "weight": 2 } }, { "key": "25143", "source": "1166", "target": "2562", "attributes": { "weight": 2 } }, { "key": "12565", "source": "1166", "target": "180", "attributes": { "weight": 2 } }, { "key": "4379", "source": "1166", "target": "173", "attributes": { "weight": 4 } }, { "key": "25141", "source": "1166", "target": "2560", "attributes": { "weight": 3 } }, { "key": "30169", "source": "1166", "target": "2963", "attributes": { "weight": 2 } }, { "key": "30166", "source": "1166", "target": "2958", "attributes": { "weight": 1 } }, { "key": "17341", "source": "1166", "target": "358", "attributes": { "weight": 2 } }, { "key": "30164", "source": "1166", "target": "2955", "attributes": { "weight": 1 } }, { "key": "25139", "source": "1166", "target": "2557", "attributes": { "weight": 2 } }, { "key": "4373", "source": "1166", "target": "1146", "attributes": { "weight": 8 } }, { "key": "30165", "source": "1166", "target": "2956", "attributes": { "weight": 2 } }, { "key": "35367", "source": "1166", "target": "2213", "attributes": { "weight": 1 } }, { "key": "28994", "source": "1166", "target": "2829", "attributes": { "weight": 1 } }, { "key": "28755", "source": "1166", "target": "2120", "attributes": { "weight": 2 } }, { "key": "27584", "source": "1166", "target": "171", "attributes": { "weight": 1 } }, { "key": "18488", "source": "1166", "target": "1280", "attributes": { "weight": 3 } }, { "key": "25140", "source": "1166", "target": "2558", "attributes": { "weight": 1 } }, { "key": "4375", "source": "1166", "target": "1187", "attributes": { "weight": 8 } }, { "key": "28753", "source": "1166", "target": "2555", "attributes": { "weight": 2 } }, { "key": "30174", "source": "1166", "target": "2970", "attributes": { "weight": 2 } }, { "key": "30175", "source": "1166", "target": "2745", "attributes": { "weight": 2 } }, { "key": "30172", "source": "1166", "target": "2967", "attributes": { "weight": 1 } }, { "key": "13846", "source": "1166", "target": "1952", "attributes": { "weight": 4 } }, { "key": "4378", "source": "1166", "target": "297", "attributes": { "weight": 5 } }, { "key": "28249", "source": "1166", "target": "2749", "attributes": { "weight": 2 } }, { "key": "4377", "source": "1166", "target": "338", "attributes": { "weight": 4 } }, { "key": "28250", "source": "1166", "target": "2228", "attributes": { "weight": 3 } }, { "key": "30177", "source": "1166", "target": "2814", "attributes": { "weight": 2 } }, { "key": "17340", "source": "1166", "target": "2957", "attributes": { "weight": 2 } }, { "key": "17342", "source": "1166", "target": "2969", "attributes": { "weight": 2 } }, { "key": "23179", "source": "1166", "target": "1227", "attributes": { "weight": 1 } }, { "key": "30046", "source": "1166", "target": "2940", "attributes": { "weight": 1 } }, { "key": "10805", "source": "1166", "target": "168", "attributes": { "weight": 3 } }, { "key": "17343", "source": "1166", "target": "2117", "attributes": { "weight": 3 } }, { "key": "30045", "source": "1166", "target": "2938", "attributes": { "weight": 2 } }, { "key": "30167", "source": "1166", "target": "2929", "attributes": { "weight": 1 } }, { "key": "25142", "source": "1166", "target": "2561", "attributes": { "weight": 3 } }, { "key": "32265", "source": "1166", "target": "164", "attributes": { "weight": 2 } }, { "key": "25665", "source": "1166", "target": "278", "attributes": { "weight": 1 } }, { "key": "30170", "source": "1166", "target": "2966", "attributes": { "weight": 1 } }, { "key": "18582", "source": "1167", "target": "1197", "attributes": { "weight": 3 } }, { "key": "10178", "source": "1167", "target": "1315", "attributes": { "weight": 1 } }, { "key": "36492", "source": "1167", "target": "1284", "attributes": { "weight": 1 } }, { "key": "33891", "source": "1167", "target": "338", "attributes": { "weight": 1 } }, { "key": "10176", "source": "1167", "target": "1689", "attributes": { "weight": 1 } }, { "key": "4384", "source": "1167", "target": "1294", "attributes": { "weight": 3 } }, { "key": "10177", "source": "1167", "target": "1291", "attributes": { "weight": 1 } }, { "key": "21864", "source": "1167", "target": "337", "attributes": { "weight": 2 } }, { "key": "33893", "source": "1167", "target": "1323", "attributes": { "weight": 1 } }, { "key": "36491", "source": "1167", "target": "1215", "attributes": { "weight": 1 } }, { "key": "10180", "source": "1167", "target": "1326", "attributes": { "weight": 1 } }, { "key": "10181", "source": "1167", "target": "1331", "attributes": { "weight": 1 } }, { "key": "15540", "source": "1167", "target": "925", "attributes": { "weight": 1 } }, { "key": "15541", "source": "1167", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10179", "source": "1167", "target": "1322", "attributes": { "weight": 1 } }, { "key": "33892", "source": "1167", "target": "123", "attributes": { "weight": 1 } }, { "key": "4408", "source": "1168", "target": "368", "attributes": { "weight": 2 } }, { "key": "4409", "source": "1169", "target": "368", "attributes": { "weight": 2 } }, { "key": "33899", "source": "1169", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4415", "source": "1170", "target": "368", "attributes": { "weight": 2 } }, { "key": "4414", "source": "1170", "target": "779", "attributes": { "weight": 2 } }, { "key": "33900", "source": "1170", "target": "1233", "attributes": { "weight": 1 } }, { "key": "8481", "source": "1170", "target": "195", "attributes": { "weight": 3 } }, { "key": "33901", "source": "1171", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4416", "source": "1171", "target": "1196", "attributes": { "weight": 2 } }, { "key": "15558", "source": "1171", "target": "913", "attributes": { "weight": 1 } }, { "key": "21865", "source": "1171", "target": "2212", "attributes": { "weight": 1 } }, { "key": "33903", "source": "1171", "target": "123", "attributes": { "weight": 1 } }, { "key": "15557", "source": "1171", "target": "195", "attributes": { "weight": 2 } }, { "key": "15559", "source": "1171", "target": "921", "attributes": { "weight": 1 } }, { "key": "33902", "source": "1171", "target": "1232", "attributes": { "weight": 1 } }, { "key": "11475", "source": "1171", "target": "370", "attributes": { "weight": 1 } }, { "key": "4417", "source": "1171", "target": "1090", "attributes": { "weight": 2 } }, { "key": "36498", "source": "1172", "target": "1294", "attributes": { "weight": 1 } }, { "key": "33904", "source": "1172", "target": "1182", "attributes": { "weight": 1 } }, { "key": "4423", "source": "1172", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11477", "source": "1172", "target": "208", "attributes": { "weight": 3 } }, { "key": "15562", "source": "1172", "target": "925", "attributes": { "weight": 1 } }, { "key": "18587", "source": "1172", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18585", "source": "1172", "target": "1174", "attributes": { "weight": 2 } }, { "key": "36499", "source": "1172", "target": "218", "attributes": { "weight": 1 } }, { "key": "4421", "source": "1172", "target": "1196", "attributes": { "weight": 2 } }, { "key": "8483", "source": "1172", "target": "195", "attributes": { "weight": 4 } }, { "key": "36497", "source": "1172", "target": "337", "attributes": { "weight": 1 } }, { "key": "15560", "source": "1172", "target": "913", "attributes": { "weight": 1 } }, { "key": "15561", "source": "1172", "target": "921", "attributes": { "weight": 1 } }, { "key": "4419", "source": "1172", "target": "938", "attributes": { "weight": 3 } }, { "key": "33905", "source": "1172", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4422", "source": "1172", "target": "123", "attributes": { "weight": 3 } }, { "key": "33906", "source": "1172", "target": "1232", "attributes": { "weight": 1 } }, { "key": "4420", "source": "1172", "target": "779", "attributes": { "weight": 2 } }, { "key": "11476", "source": "1172", "target": "370", "attributes": { "weight": 2 } }, { "key": "18586", "source": "1172", "target": "199", "attributes": { "weight": 2 } }, { "key": "33908", "source": "1173", "target": "1323", "attributes": { "weight": 1 } }, { "key": "4425", "source": "1173", "target": "1294", "attributes": { "weight": 3 } }, { "key": "4426", "source": "1173", "target": "1322", "attributes": { "weight": 2 } }, { "key": "15563", "source": "1173", "target": "1329", "attributes": { "weight": 1 } }, { "key": "36502", "source": "1173", "target": "1331", "attributes": { "weight": 1 } }, { "key": "36500", "source": "1173", "target": "1284", "attributes": { "weight": 1 } }, { "key": "33907", "source": "1173", "target": "1197", "attributes": { "weight": 2 } }, { "key": "11478", "source": "1173", "target": "370", "attributes": { "weight": 1 } }, { "key": "4424", "source": "1173", "target": "1291", "attributes": { "weight": 2 } }, { "key": "18588", "source": "1173", "target": "337", "attributes": { "weight": 2 } }, { "key": "25513", "source": "1173", "target": "2603", "attributes": { "weight": 1 } }, { "key": "36501", "source": "1173", "target": "1326", "attributes": { "weight": 1 } }, { "key": "15564", "source": "1174", "target": "912", "attributes": { "weight": 1 } }, { "key": "18615", "source": "1174", "target": "1296", "attributes": { "weight": 2 } }, { "key": "4428", "source": "1174", "target": "368", "attributes": { "weight": 3 } }, { "key": "18604", "source": "1174", "target": "1238", "attributes": { "weight": 2 } }, { "key": "18618", "source": "1174", "target": "1792", "attributes": { "weight": 2 } }, { "key": "18592", "source": "1174", "target": "1152", "attributes": { "weight": 2 } }, { "key": "18596", "source": "1174", "target": "1182", "attributes": { "weight": 3 } }, { "key": "36506", "source": "1174", "target": "1225", "attributes": { "weight": 1 } }, { "key": "18626", "source": "1174", "target": "218", "attributes": { "weight": 2 } }, { "key": "36508", "source": "1174", "target": "1228", "attributes": { "weight": 1 } }, { "key": "4431", "source": "1174", "target": "371", "attributes": { "weight": 2 } }, { "key": "18610", "source": "1174", "target": "924", "attributes": { "weight": 2 } }, { "key": "18601", "source": "1174", "target": "199", "attributes": { "weight": 3 } }, { "key": "18594", "source": "1174", "target": "1165", "attributes": { "weight": 2 } }, { "key": "36507", "source": "1174", "target": "918", "attributes": { "weight": 1 } }, { "key": "18605", "source": "1174", "target": "337", "attributes": { "weight": 3 } }, { "key": "18625", "source": "1174", "target": "124", "attributes": { "weight": 2 } }, { "key": "33910", "source": "1174", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18608", "source": "1174", "target": "208", "attributes": { "weight": 2 } }, { "key": "36505", "source": "1174", "target": "1532", "attributes": { "weight": 1 } }, { "key": "18612", "source": "1174", "target": "926", "attributes": { "weight": 2 } }, { "key": "18614", "source": "1174", "target": "1289", "attributes": { "weight": 2 } }, { "key": "36511", "source": "1174", "target": "1263", "attributes": { "weight": 1 } }, { "key": "18595", "source": "1174", "target": "1172", "attributes": { "weight": 2 } }, { "key": "15568", "source": "1174", "target": "1329", "attributes": { "weight": 3 } }, { "key": "36509", "source": "1174", "target": "205", "attributes": { "weight": 1 } }, { "key": "18589", "source": "1174", "target": "1140", "attributes": { "weight": 2 } }, { "key": "36504", "source": "1174", "target": "1180", "attributes": { "weight": 1 } }, { "key": "18602", "source": "1174", "target": "1210", "attributes": { "weight": 2 } }, { "key": "36510", "source": "1174", "target": "1255", "attributes": { "weight": 1 } }, { "key": "36513", "source": "1174", "target": "1286", "attributes": { "weight": 1 } }, { "key": "18613", "source": "1174", "target": "1281", "attributes": { "weight": 1 } }, { "key": "4427", "source": "1174", "target": "779", "attributes": { "weight": 4 } }, { "key": "18624", "source": "1174", "target": "961", "attributes": { "weight": 2 } }, { "key": "18598", "source": "1174", "target": "387", "attributes": { "weight": 1 } }, { "key": "18607", "source": "1174", "target": "1262", "attributes": { "weight": 1 } }, { "key": "33909", "source": "1174", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18609", "source": "1174", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18600", "source": "1174", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18597", "source": "1174", "target": "1184", "attributes": { "weight": 2 } }, { "key": "18606", "source": "1174", "target": "338", "attributes": { "weight": 3 } }, { "key": "33911", "source": "1174", "target": "1323", "attributes": { "weight": 1 } }, { "key": "4434", "source": "1174", "target": "1294", "attributes": { "weight": 4 } }, { "key": "4430", "source": "1174", "target": "468", "attributes": { "weight": 4 } }, { "key": "4432", "source": "1174", "target": "123", "attributes": { "weight": 3 } }, { "key": "15566", "source": "1174", "target": "925", "attributes": { "weight": 2 } }, { "key": "18603", "source": "1174", "target": "1236", "attributes": { "weight": 2 } }, { "key": "18623", "source": "1174", "target": "1321", "attributes": { "weight": 2 } }, { "key": "11479", "source": "1174", "target": "938", "attributes": { "weight": 3 } }, { "key": "28547", "source": "1174", "target": "1279", "attributes": { "weight": 1 } }, { "key": "36512", "source": "1174", "target": "1269", "attributes": { "weight": 1 } }, { "key": "8485", "source": "1174", "target": "195", "attributes": { "weight": 7 } }, { "key": "4429", "source": "1174", "target": "370", "attributes": { "weight": 3 } }, { "key": "7234", "source": "1174", "target": "1063", "attributes": { "weight": 1 } }, { "key": "18620", "source": "1174", "target": "215", "attributes": { "weight": 2 } }, { "key": "18617", "source": "1174", "target": "1301", "attributes": { "weight": 2 } }, { "key": "18616", "source": "1174", "target": "372", "attributes": { "weight": 1 } }, { "key": "18621", "source": "1174", "target": "1315", "attributes": { "weight": 2 } }, { "key": "15567", "source": "1174", "target": "1305", "attributes": { "weight": 3 } }, { "key": "18611", "source": "1174", "target": "1268", "attributes": { "weight": 2 } }, { "key": "36515", "source": "1174", "target": "1322", "attributes": { "weight": 1 } }, { "key": "35094", "source": "1174", "target": "200", "attributes": { "weight": 1 } }, { "key": "18599", "source": "1174", "target": "1194", "attributes": { "weight": 2 } }, { "key": "18622", "source": "1174", "target": "405", "attributes": { "weight": 2 } }, { "key": "18619", "source": "1174", "target": "1309", "attributes": { "weight": 2 } }, { "key": "15565", "source": "1174", "target": "913", "attributes": { "weight": 3 } }, { "key": "36514", "source": "1174", "target": "212", "attributes": { "weight": 1 } }, { "key": "18590", "source": "1174", "target": "933", "attributes": { "weight": 2 } }, { "key": "18593", "source": "1174", "target": "1156", "attributes": { "weight": 2 } }, { "key": "18591", "source": "1174", "target": "236", "attributes": { "weight": 1 } }, { "key": "36503", "source": "1174", "target": "1162", "attributes": { "weight": 1 } }, { "key": "4433", "source": "1174", "target": "1090", "attributes": { "weight": 2 } }, { "key": "8487", "source": "1175", "target": "195", "attributes": { "weight": 4 } }, { "key": "33917", "source": "1175", "target": "123", "attributes": { "weight": 1 } }, { "key": "33915", "source": "1175", "target": "1232", "attributes": { "weight": 1 } }, { "key": "4440", "source": "1175", "target": "368", "attributes": { "weight": 2 } }, { "key": "4438", "source": "1175", "target": "779", "attributes": { "weight": 2 } }, { "key": "4441", "source": "1175", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15573", "source": "1175", "target": "913", "attributes": { "weight": 1 } }, { "key": "4439", "source": "1175", "target": "1196", "attributes": { "weight": 2 } }, { "key": "33916", "source": "1175", "target": "1233", "attributes": { "weight": 1 } }, { "key": "15574", "source": "1175", "target": "921", "attributes": { "weight": 1 } }, { "key": "4444", "source": "1176", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4443", "source": "1176", "target": "1196", "attributes": { "weight": 2 } }, { "key": "15575", "source": "1176", "target": "913", "attributes": { "weight": 1 } }, { "key": "18627", "source": "1176", "target": "938", "attributes": { "weight": 2 } }, { "key": "36516", "source": "1176", "target": "1197", "attributes": { "weight": 1 } }, { "key": "18630", "source": "1176", "target": "218", "attributes": { "weight": 2 } }, { "key": "8489", "source": "1176", "target": "195", "attributes": { "weight": 5 } }, { "key": "18629", "source": "1176", "target": "208", "attributes": { "weight": 2 } }, { "key": "4442", "source": "1176", "target": "779", "attributes": { "weight": 2 } }, { "key": "33918", "source": "1176", "target": "123", "attributes": { "weight": 1 } }, { "key": "18628", "source": "1176", "target": "921", "attributes": { "weight": 2 } }, { "key": "30179", "source": "1177", "target": "1143", "attributes": { "weight": 2 } }, { "key": "30180", "source": "1177", "target": "173", "attributes": { "weight": 1 } }, { "key": "4446", "source": "1177", "target": "297", "attributes": { "weight": 3 } }, { "key": "35369", "source": "1177", "target": "1996", "attributes": { "weight": 1 } }, { "key": "4447", "source": "1177", "target": "310", "attributes": { "weight": 3 } }, { "key": "4445", "source": "1177", "target": "1166", "attributes": { "weight": 3 } }, { "key": "17835", "source": "1178", "target": "178", "attributes": { "weight": 2 } }, { "key": "28759", "source": "1178", "target": "1166", "attributes": { "weight": 2 } }, { "key": "28766", "source": "1178", "target": "2810", "attributes": { "weight": 1 } }, { "key": "28761", "source": "1178", "target": "2798", "attributes": { "weight": 1 } }, { "key": "28770", "source": "1178", "target": "2818", "attributes": { "weight": 1 } }, { "key": "28769", "source": "1178", "target": "2815", "attributes": { "weight": 1 } }, { "key": "28771", "source": "1178", "target": "2121", "attributes": { "weight": 1 } }, { "key": "25148", "source": "1178", "target": "1996", "attributes": { "weight": 3 } }, { "key": "28763", "source": "1178", "target": "2801", "attributes": { "weight": 1 } }, { "key": "25149", "source": "1178", "target": "2120", "attributes": { "weight": 2 } }, { "key": "28762", "source": "1178", "target": "2799", "attributes": { "weight": 1 } }, { "key": "4464", "source": "1178", "target": "310", "attributes": { "weight": 7 } }, { "key": "28767", "source": "1178", "target": "2812", "attributes": { "weight": 1 } }, { "key": "28764", "source": "1178", "target": "2808", "attributes": { "weight": 1 } }, { "key": "28758", "source": "1178", "target": "2791", "attributes": { "weight": 1 } }, { "key": "28760", "source": "1178", "target": "2555", "attributes": { "weight": 1 } }, { "key": "28768", "source": "1178", "target": "2813", "attributes": { "weight": 1 } }, { "key": "25146", "source": "1178", "target": "1146", "attributes": { "weight": 2 } }, { "key": "28765", "source": "1178", "target": "2809", "attributes": { "weight": 1 } }, { "key": "25147", "source": "1178", "target": "297", "attributes": { "weight": 3 } }, { "key": "8651", "source": "1179", "target": "195", "attributes": { "weight": 3 } }, { "key": "4466", "source": "1179", "target": "921", "attributes": { "weight": 3 } }, { "key": "4467", "source": "1179", "target": "123", "attributes": { "weight": 2 } }, { "key": "4465", "source": "1179", "target": "779", "attributes": { "weight": 2 } }, { "key": "33922", "source": "1179", "target": "1232", "attributes": { "weight": 1 } }, { "key": "4468", "source": "1179", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4470", "source": "1180", "target": "1196", "attributes": { "weight": 2 } }, { "key": "33926", "source": "1180", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18632", "source": "1180", "target": "1552", "attributes": { "weight": 2 } }, { "key": "4472", "source": "1180", "target": "371", "attributes": { "weight": 2 } }, { "key": "36518", "source": "1180", "target": "1228", "attributes": { "weight": 1 } }, { "key": "8652", "source": "1180", "target": "195", "attributes": { "weight": 6 } }, { "key": "33923", "source": "1180", "target": "1182", "attributes": { "weight": 1 } }, { "key": "11480", "source": "1180", "target": "938", "attributes": { "weight": 2 } }, { "key": "18631", "source": "1180", "target": "1174", "attributes": { "weight": 2 } }, { "key": "33924", "source": "1180", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4473", "source": "1180", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4469", "source": "1180", "target": "779", "attributes": { "weight": 2 } }, { "key": "4471", "source": "1180", "target": "368", "attributes": { "weight": 2 } }, { "key": "15579", "source": "1180", "target": "913", "attributes": { "weight": 1 } }, { "key": "18633", "source": "1180", "target": "218", "attributes": { "weight": 1 } }, { "key": "36517", "source": "1180", "target": "1165", "attributes": { "weight": 1 } }, { "key": "11481", "source": "1180", "target": "370", "attributes": { "weight": 2 } }, { "key": "33925", "source": "1180", "target": "1232", "attributes": { "weight": 1 } }, { "key": "15580", "source": "1180", "target": "921", "attributes": { "weight": 1 } }, { "key": "33927", "source": "1180", "target": "123", "attributes": { "weight": 1 } }, { "key": "18142", "source": "1181", "target": "1197", "attributes": { "weight": 2 } }, { "key": "4475", "source": "1181", "target": "123", "attributes": { "weight": 3 } }, { "key": "21872", "source": "1181", "target": "2300", "attributes": { "weight": 1 } }, { "key": "8653", "source": "1181", "target": "195", "attributes": { "weight": 3 } }, { "key": "15581", "source": "1181", "target": "913", "attributes": { "weight": 1 } }, { "key": "21874", "source": "1181", "target": "2212", "attributes": { "weight": 1 } }, { "key": "4474", "source": "1181", "target": "368", "attributes": { "weight": 2 } }, { "key": "15582", "source": "1181", "target": "925", "attributes": { "weight": 1 } }, { "key": "21870", "source": "1181", "target": "2293", "attributes": { "weight": 1 } }, { "key": "21871", "source": "1181", "target": "337", "attributes": { "weight": 1 } }, { "key": "21873", "source": "1181", "target": "2301", "attributes": { "weight": 1 } }, { "key": "15584", "source": "1182", "target": "913", "attributes": { "weight": 1 } }, { "key": "33962", "source": "1182", "target": "1294", "attributes": { "weight": 1 } }, { "key": "33943", "source": "1182", "target": "3138", "attributes": { "weight": 1 } }, { "key": "7239", "source": "1182", "target": "1063", "attributes": { "weight": 2 } }, { "key": "4481", "source": "1182", "target": "1090", "attributes": { "weight": 2 } }, { "key": "33939", "source": "1182", "target": "1180", "attributes": { "weight": 1 } }, { "key": "33942", "source": "1182", "target": "1196", "attributes": { "weight": 1 } }, { "key": "33947", "source": "1182", "target": "199", "attributes": { "weight": 1 } }, { "key": "33965", "source": "1182", "target": "1309", "attributes": { "weight": 1 } }, { "key": "33944", "source": "1182", "target": "1202", "attributes": { "weight": 1 } }, { "key": "33958", "source": "1182", "target": "208", "attributes": { "weight": 1 } }, { "key": "33961", "source": "1182", "target": "212", "attributes": { "weight": 1 } }, { "key": "33951", "source": "1182", "target": "1232", "attributes": { "weight": 1 } }, { "key": "33953", "source": "1182", "target": "1236", "attributes": { "weight": 1 } }, { "key": "33955", "source": "1182", "target": "337", "attributes": { "weight": 2 } }, { "key": "33933", "source": "1182", "target": "1152", "attributes": { "weight": 1 } }, { "key": "33971", "source": "1182", "target": "218", "attributes": { "weight": 1 } }, { "key": "4478", "source": "1182", "target": "370", "attributes": { "weight": 3 } }, { "key": "4476", "source": "1182", "target": "779", "attributes": { "weight": 3 } }, { "key": "18145", "source": "1182", "target": "372", "attributes": { "weight": 1 } }, { "key": "33932", "source": "1182", "target": "933", "attributes": { "weight": 1 } }, { "key": "15585", "source": "1182", "target": "921", "attributes": { "weight": 2 } }, { "key": "33936", "source": "1182", "target": "938", "attributes": { "weight": 1 } }, { "key": "8656", "source": "1182", "target": "195", "attributes": { "weight": 6 } }, { "key": "33950", "source": "1182", "target": "918", "attributes": { "weight": 1 } }, { "key": "33934", "source": "1182", "target": "3132", "attributes": { "weight": 1 } }, { "key": "4479", "source": "1182", "target": "371", "attributes": { "weight": 2 } }, { "key": "33940", "source": "1182", "target": "1184", "attributes": { "weight": 1 } }, { "key": "18144", "source": "1182", "target": "1197", "attributes": { "weight": 3 } }, { "key": "33967", "source": "1182", "target": "1321", "attributes": { "weight": 1 } }, { "key": "33966", "source": "1182", "target": "215", "attributes": { "weight": 1 } }, { "key": "33938", "source": "1182", "target": "1174", "attributes": { "weight": 2 } }, { "key": "33960", "source": "1182", "target": "926", "attributes": { "weight": 1 } }, { "key": "33948", "source": "1182", "target": "1210", "attributes": { "weight": 1 } }, { "key": "33937", "source": "1182", "target": "1172", "attributes": { "weight": 1 } }, { "key": "18146", "source": "1182", "target": "2205", "attributes": { "weight": 1 } }, { "key": "15586", "source": "1182", "target": "925", "attributes": { "weight": 2 } }, { "key": "33954", "source": "1182", "target": "3146", "attributes": { "weight": 1 } }, { "key": "33957", "source": "1182", "target": "1263", "attributes": { "weight": 1 } }, { "key": "33952", "source": "1182", "target": "1233", "attributes": { "weight": 1 } }, { "key": "33963", "source": "1182", "target": "3157", "attributes": { "weight": 1 } }, { "key": "33964", "source": "1182", "target": "1307", "attributes": { "weight": 1 } }, { "key": "18634", "source": "1182", "target": "1552", "attributes": { "weight": 2 } }, { "key": "33959", "source": "1182", "target": "1269", "attributes": { "weight": 1 } }, { "key": "33949", "source": "1182", "target": "1225", "attributes": { "weight": 1 } }, { "key": "33945", "source": "1182", "target": "1047", "attributes": { "weight": 1 } }, { "key": "33969", "source": "1182", "target": "124", "attributes": { "weight": 1 } }, { "key": "18143", "source": "1182", "target": "387", "attributes": { "weight": 2 } }, { "key": "33941", "source": "1182", "target": "1194", "attributes": { "weight": 1 } }, { "key": "4480", "source": "1182", "target": "123", "attributes": { "weight": 3 } }, { "key": "33956", "source": "1182", "target": "338", "attributes": { "weight": 1 } }, { "key": "33935", "source": "1182", "target": "1165", "attributes": { "weight": 2 } }, { "key": "33946", "source": "1182", "target": "3141", "attributes": { "weight": 1 } }, { "key": "4477", "source": "1182", "target": "368", "attributes": { "weight": 3 } }, { "key": "33970", "source": "1182", "target": "928", "attributes": { "weight": 1 } }, { "key": "33968", "source": "1182", "target": "1323", "attributes": { "weight": 1 } }, { "key": "4482", "source": "1183", "target": "368", "attributes": { "weight": 2 } }, { "key": "33972", "source": "1183", "target": "1233", "attributes": { "weight": 1 } }, { "key": "33974", "source": "1184", "target": "1182", "attributes": { "weight": 1 } }, { "key": "36522", "source": "1184", "target": "337", "attributes": { "weight": 1 } }, { "key": "33977", "source": "1184", "target": "1232", "attributes": { "weight": 1 } }, { "key": "7240", "source": "1184", "target": "1063", "attributes": { "weight": 2 } }, { "key": "15590", "source": "1184", "target": "925", "attributes": { "weight": 1 } }, { "key": "4622", "source": "1184", "target": "370", "attributes": { "weight": 3 } }, { "key": "33975", "source": "1184", "target": "1197", "attributes": { "weight": 2 } }, { "key": "15587", "source": "1184", "target": "938", "attributes": { "weight": 1 } }, { "key": "4627", "source": "1184", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4620", "source": "1184", "target": "1196", "attributes": { "weight": 2 } }, { "key": "33976", "source": "1184", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18636", "source": "1184", "target": "1174", "attributes": { "weight": 2 } }, { "key": "4623", "source": "1184", "target": "338", "attributes": { "weight": 4 } }, { "key": "4621", "source": "1184", "target": "368", "attributes": { "weight": 2 } }, { "key": "36521", "source": "1184", "target": "199", "attributes": { "weight": 1 } }, { "key": "33978", "source": "1184", "target": "1233", "attributes": { "weight": 1 } }, { "key": "36520", "source": "1184", "target": "1165", "attributes": { "weight": 1 } }, { "key": "15592", "source": "1184", "target": "215", "attributes": { "weight": 2 } }, { "key": "15588", "source": "1184", "target": "913", "attributes": { "weight": 1 } }, { "key": "4628", "source": "1184", "target": "1294", "attributes": { "weight": 3 } }, { "key": "18639", "source": "1184", "target": "124", "attributes": { "weight": 2 } }, { "key": "18638", "source": "1184", "target": "1308", "attributes": { "weight": 1 } }, { "key": "4619", "source": "1184", "target": "779", "attributes": { "weight": 2 } }, { "key": "4626", "source": "1184", "target": "123", "attributes": { "weight": 3 } }, { "key": "8661", "source": "1184", "target": "195", "attributes": { "weight": 8 } }, { "key": "15589", "source": "1184", "target": "208", "attributes": { "weight": 2 } }, { "key": "4625", "source": "1184", "target": "371", "attributes": { "weight": 2 } }, { "key": "35095", "source": "1184", "target": "200", "attributes": { "weight": 1 } }, { "key": "4624", "source": "1184", "target": "921", "attributes": { "weight": 3 } }, { "key": "15591", "source": "1184", "target": "1305", "attributes": { "weight": 1 } }, { "key": "15593", "source": "1184", "target": "218", "attributes": { "weight": 2 } }, { "key": "18637", "source": "1184", "target": "1552", "attributes": { "weight": 2 } }, { "key": "4629", "source": "1185", "target": "368", "attributes": { "weight": 2 } }, { "key": "4630", "source": "1185", "target": "123", "attributes": { "weight": 2 } }, { "key": "7883", "source": "1186", "target": "1438", "attributes": { "weight": 3 } }, { "key": "7903", "source": "1186", "target": "117", "attributes": { "weight": 1 } }, { "key": "21669", "source": "1186", "target": "108", "attributes": { "weight": 2 } }, { "key": "7884", "source": "1186", "target": "103", "attributes": { "weight": 4 } }, { "key": "7898", "source": "1186", "target": "114", "attributes": { "weight": 1 } }, { "key": "7889", "source": "1186", "target": "1455", "attributes": { "weight": 1 } }, { "key": "7887", "source": "1186", "target": "1450", "attributes": { "weight": 1 } }, { "key": "7892", "source": "1186", "target": "1458", "attributes": { "weight": 1 } }, { "key": "7897", "source": "1186", "target": "607", "attributes": { "weight": 1 } }, { "key": "7882", "source": "1186", "target": "1437", "attributes": { "weight": 1 } }, { "key": "7902", "source": "1186", "target": "116", "attributes": { "weight": 3 } }, { "key": "7891", "source": "1186", "target": "110", "attributes": { "weight": 2 } }, { "key": "21668", "source": "1186", "target": "1445", "attributes": { "weight": 2 } }, { "key": "7901", "source": "1186", "target": "1498", "attributes": { "weight": 1 } }, { "key": "7900", "source": "1186", "target": "1495", "attributes": { "weight": 3 } }, { "key": "7904", "source": "1186", "target": "118", "attributes": { "weight": 2 } }, { "key": "7885", "source": "1186", "target": "105", "attributes": { "weight": 1 } }, { "key": "7907", "source": "1186", "target": "1506", "attributes": { "weight": 2 } }, { "key": "7886", "source": "1186", "target": "1447", "attributes": { "weight": 1 } }, { "key": "4631", "source": "1186", "target": "371", "attributes": { "weight": 3 } }, { "key": "7899", "source": "1186", "target": "1306", "attributes": { "weight": 2 } }, { "key": "7896", "source": "1186", "target": "1477", "attributes": { "weight": 2 } }, { "key": "14023", "source": "1186", "target": "1031", "attributes": { "weight": 1 } }, { "key": "7906", "source": "1186", "target": "119", "attributes": { "weight": 1 } }, { "key": "7893", "source": "1186", "target": "1460", "attributes": { "weight": 1 } }, { "key": "7895", "source": "1186", "target": "1261", "attributes": { "weight": 1 } }, { "key": "7894", "source": "1186", "target": "1463", "attributes": { "weight": 1 } }, { "key": "7888", "source": "1186", "target": "604", "attributes": { "weight": 1 } }, { "key": "7890", "source": "1186", "target": "109", "attributes": { "weight": 4 } }, { "key": "10068", "source": "1186", "target": "602", "attributes": { "weight": 1 } }, { "key": "7905", "source": "1186", "target": "1505", "attributes": { "weight": 2 } }, { "key": "32870", "source": "1186", "target": "470", "attributes": { "weight": 1 } }, { "key": "21670", "source": "1186", "target": "1459", "attributes": { "weight": 1 } }, { "key": "30186", "source": "1187", "target": "2965", "attributes": { "weight": 1 } }, { "key": "30061", "source": "1187", "target": "2935", "attributes": { "weight": 1 } }, { "key": "30059", "source": "1187", "target": "2933", "attributes": { "weight": 1 } }, { "key": "30057", "source": "1187", "target": "2930", "attributes": { "weight": 1 } }, { "key": "30184", "source": "1187", "target": "1151", "attributes": { "weight": 1 } }, { "key": "4632", "source": "1187", "target": "1166", "attributes": { "weight": 9 } }, { "key": "25150", "source": "1187", "target": "1143", "attributes": { "weight": 1 } }, { "key": "29944", "source": "1187", "target": "1952", "attributes": { "weight": 2 } }, { "key": "30056", "source": "1187", "target": "2923", "attributes": { "weight": 1 } }, { "key": "30062", "source": "1187", "target": "2936", "attributes": { "weight": 1 } }, { "key": "30187", "source": "1187", "target": "2557", "attributes": { "weight": 1 } }, { "key": "24921", "source": "1187", "target": "170", "attributes": { "weight": 3 } }, { "key": "28773", "source": "1187", "target": "1146", "attributes": { "weight": 3 } }, { "key": "30055", "source": "1187", "target": "2922", "attributes": { "weight": 1 } }, { "key": "25151", "source": "1187", "target": "165", "attributes": { "weight": 2 } }, { "key": "24922", "source": "1187", "target": "580", "attributes": { "weight": 3 } }, { "key": "25154", "source": "1187", "target": "173", "attributes": { "weight": 1 } }, { "key": "17350", "source": "1187", "target": "2964", "attributes": { "weight": 2 } }, { "key": "30188", "source": "1187", "target": "1341", "attributes": { "weight": 1 } }, { "key": "25155", "source": "1187", "target": "310", "attributes": { "weight": 4 } }, { "key": "30063", "source": "1187", "target": "2942", "attributes": { "weight": 2 } }, { "key": "12328", "source": "1187", "target": "1843", "attributes": { "weight": 1 } }, { "key": "33980", "source": "1187", "target": "700", "attributes": { "weight": 1 } }, { "key": "25152", "source": "1187", "target": "297", "attributes": { "weight": 4 } }, { "key": "30060", "source": "1187", "target": "2934", "attributes": { "weight": 1 } }, { "key": "29945", "source": "1187", "target": "1953", "attributes": { "weight": 1 } }, { "key": "10810", "source": "1187", "target": "168", "attributes": { "weight": 3 } }, { "key": "30058", "source": "1187", "target": "2932", "attributes": { "weight": 1 } }, { "key": "25153", "source": "1187", "target": "1996", "attributes": { "weight": 1 } }, { "key": "30185", "source": "1187", "target": "2553", "attributes": { "weight": 1 } }, { "key": "33985", "source": "1188", "target": "338", "attributes": { "weight": 1 } }, { "key": "33982", "source": "1188", "target": "1197", "attributes": { "weight": 1 } }, { "key": "33984", "source": "1188", "target": "1233", "attributes": { "weight": 1 } }, { "key": "21876", "source": "1188", "target": "337", "attributes": { "weight": 1 } }, { "key": "33983", "source": "1188", "target": "1232", "attributes": { "weight": 1 } }, { "key": "10191", "source": "1188", "target": "1322", "attributes": { "weight": 1 } }, { "key": "15596", "source": "1188", "target": "195", "attributes": { "weight": 2 } }, { "key": "33987", "source": "1188", "target": "1323", "attributes": { "weight": 1 } }, { "key": "15597", "source": "1188", "target": "1329", "attributes": { "weight": 1 } }, { "key": "33986", "source": "1188", "target": "123", "attributes": { "weight": 1 } }, { "key": "4633", "source": "1188", "target": "368", "attributes": { "weight": 2 } }, { "key": "4634", "source": "1189", "target": "368", "attributes": { "weight": 2 } }, { "key": "4635", "source": "1189", "target": "123", "attributes": { "weight": 2 } }, { "key": "36523", "source": "1190", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18640", "source": "1190", "target": "1248", "attributes": { "weight": 1 } }, { "key": "4638", "source": "1190", "target": "368", "attributes": { "weight": 2 } }, { "key": "33989", "source": "1190", "target": "1233", "attributes": { "weight": 1 } }, { "key": "24923", "source": "1191", "target": "2536", "attributes": { "weight": 1 } }, { "key": "23180", "source": "1191", "target": "1227", "attributes": { "weight": 1 } }, { "key": "28344", "source": "1191", "target": "2768", "attributes": { "weight": 1 } }, { "key": "23216", "source": "1191", "target": "1871", "attributes": { "weight": 2 } }, { "key": "12069", "source": "1191", "target": "1824", "attributes": { "weight": 3 } }, { "key": "12984", "source": "1191", "target": "304", "attributes": { "weight": 2 } }, { "key": "12065", "source": "1191", "target": "707", "attributes": { "weight": 4 } }, { "key": "24927", "source": "1191", "target": "278", "attributes": { "weight": 4 } }, { "key": "28340", "source": "1191", "target": "700", "attributes": { "weight": 2 } }, { "key": "24928", "source": "1191", "target": "2437", "attributes": { "weight": 2 } }, { "key": "28345", "source": "1191", "target": "2772", "attributes": { "weight": 1 } }, { "key": "24924", "source": "1191", "target": "2546", "attributes": { "weight": 2 } }, { "key": "4639", "source": "1191", "target": "580", "attributes": { "weight": 6 } }, { "key": "24925", "source": "1191", "target": "1905", "attributes": { "weight": 2 } }, { "key": "32266", "source": "1191", "target": "164", "attributes": { "weight": 1 } }, { "key": "24835", "source": "1191", "target": "2541", "attributes": { "weight": 1 } }, { "key": "14187", "source": "1191", "target": "168", "attributes": { "weight": 2 } }, { "key": "28343", "source": "1191", "target": "1512", "attributes": { "weight": 1 } }, { "key": "12064", "source": "1191", "target": "698", "attributes": { "weight": 3 } }, { "key": "12070", "source": "1191", "target": "1825", "attributes": { "weight": 1 } }, { "key": "23217", "source": "1191", "target": "1962", "attributes": { "weight": 2 } }, { "key": "24926", "source": "1191", "target": "2538", "attributes": { "weight": 1 } }, { "key": "25679", "source": "1191", "target": "582", "attributes": { "weight": 1 } }, { "key": "12068", "source": "1191", "target": "1823", "attributes": { "weight": 5 } }, { "key": "23862", "source": "1191", "target": "2461", "attributes": { "weight": 1 } }, { "key": "12066", "source": "1191", "target": "904", "attributes": { "weight": 1 } }, { "key": "23214", "source": "1191", "target": "1979", "attributes": { "weight": 3 } }, { "key": "12067", "source": "1191", "target": "579", "attributes": { "weight": 4 } }, { "key": "24929", "source": "1191", "target": "305", "attributes": { "weight": 2 } }, { "key": "28342", "source": "1191", "target": "2344", "attributes": { "weight": 1 } }, { "key": "12571", "source": "1191", "target": "180", "attributes": { "weight": 4 } }, { "key": "28341", "source": "1191", "target": "1869", "attributes": { "weight": 1 } }, { "key": "21437", "source": "1191", "target": "1240", "attributes": { "weight": 3 } }, { "key": "23213", "source": "1191", "target": "2279", "attributes": { "weight": 2 } }, { "key": "23215", "source": "1191", "target": "1870", "attributes": { "weight": 2 } }, { "key": "22689", "source": "1191", "target": "170", "attributes": { "weight": 4 } }, { "key": "15632", "source": "1192", "target": "913", "attributes": { "weight": 1 } }, { "key": "4656", "source": "1192", "target": "123", "attributes": { "weight": 3 } }, { "key": "15633", "source": "1192", "target": "925", "attributes": { "weight": 1 } }, { "key": "8675", "source": "1193", "target": "195", "attributes": { "weight": 3 } }, { "key": "4661", "source": "1193", "target": "779", "attributes": { "weight": 2 } }, { "key": "33997", "source": "1194", "target": "1182", "attributes": { "weight": 1 } }, { "key": "36530", "source": "1194", "target": "208", "attributes": { "weight": 1 } }, { "key": "33998", "source": "1194", "target": "1197", "attributes": { "weight": 2 } }, { "key": "4663", "source": "1194", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4665", "source": "1194", "target": "921", "attributes": { "weight": 3 } }, { "key": "34000", "source": "1194", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18662", "source": "1194", "target": "218", "attributes": { "weight": 2 } }, { "key": "18661", "source": "1194", "target": "1174", "attributes": { "weight": 2 } }, { "key": "8678", "source": "1194", "target": "195", "attributes": { "weight": 6 } }, { "key": "15634", "source": "1194", "target": "913", "attributes": { "weight": 1 } }, { "key": "4664", "source": "1194", "target": "368", "attributes": { "weight": 2 } }, { "key": "4666", "source": "1194", "target": "123", "attributes": { "weight": 3 } }, { "key": "4662", "source": "1194", "target": "779", "attributes": { "weight": 2 } }, { "key": "15635", "source": "1194", "target": "925", "attributes": { "weight": 1 } }, { "key": "33999", "source": "1194", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4667", "source": "1194", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4668", "source": "1195", "target": "123", "attributes": { "weight": 2 } }, { "key": "4740", "source": "1196", "target": "1348", "attributes": { "weight": 2 } }, { "key": "4739", "source": "1196", "target": "930", "attributes": { "weight": 2 } }, { "key": "4699", "source": "1196", "target": "1238", "attributes": { "weight": 2 } }, { "key": "4718", "source": "1196", "target": "123", "attributes": { "weight": 3 } }, { "key": "4685", "source": "1196", "target": "912", "attributes": { "weight": 3 } }, { "key": "4680", "source": "1196", "target": "910", "attributes": { "weight": 2 } }, { "key": "4712", "source": "1196", "target": "925", "attributes": { "weight": 4 } }, { "key": "15637", "source": "1196", "target": "1278", "attributes": { "weight": 1 } }, { "key": "4669", "source": "1196", "target": "1145", "attributes": { "weight": 2 } }, { "key": "4686", "source": "1196", "target": "1194", "attributes": { "weight": 2 } }, { "key": "4675", "source": "1196", "target": "938", "attributes": { "weight": 3 } }, { "key": "4692", "source": "1196", "target": "917", "attributes": { "weight": 2 } }, { "key": "7252", "source": "1196", "target": "375", "attributes": { "weight": 1 } }, { "key": "4721", "source": "1196", "target": "1291", "attributes": { "weight": 2 } }, { "key": "18157", "source": "1196", "target": "1197", "attributes": { "weight": 2 } }, { "key": "4681", "source": "1196", "target": "1180", "attributes": { "weight": 2 } }, { "key": "4720", "source": "1196", "target": "212", "attributes": { "weight": 2 } }, { "key": "4673", "source": "1196", "target": "1162", "attributes": { "weight": 2 } }, { "key": "4710", "source": "1196", "target": "1268", "attributes": { "weight": 2 } }, { "key": "4713", "source": "1196", "target": "926", "attributes": { "weight": 2 } }, { "key": "4677", "source": "1196", "target": "1172", "attributes": { "weight": 2 } }, { "key": "4741", "source": "1196", "target": "1350", "attributes": { "weight": 2 } }, { "key": "4737", "source": "1196", "target": "217", "attributes": { "weight": 2 } }, { "key": "4724", "source": "1196", "target": "1296", "attributes": { "weight": 2 } }, { "key": "11484", "source": "1196", "target": "961", "attributes": { "weight": 1 } }, { "key": "34004", "source": "1196", "target": "1323", "attributes": { "weight": 2 } }, { "key": "4671", "source": "1196", "target": "1156", "attributes": { "weight": 2 } }, { "key": "4688", "source": "1196", "target": "1199", "attributes": { "weight": 2 } }, { "key": "4730", "source": "1196", "target": "215", "attributes": { "weight": 4 } }, { "key": "32097", "source": "1196", "target": "919", "attributes": { "weight": 1 } }, { "key": "18663", "source": "1196", "target": "1269", "attributes": { "weight": 2 } }, { "key": "34001", "source": "1196", "target": "1182", "attributes": { "weight": 1 } }, { "key": "4727", "source": "1196", "target": "1792", "attributes": { "weight": 2 } }, { "key": "4722", "source": "1196", "target": "1090", "attributes": { "weight": 2 } }, { "key": "4698", "source": "1196", "target": "1236", "attributes": { "weight": 2 } }, { "key": "4674", "source": "1196", "target": "1165", "attributes": { "weight": 2 } }, { "key": "4707", "source": "1196", "target": "1263", "attributes": { "weight": 3 } }, { "key": "4714", "source": "1196", "target": "1279", "attributes": { "weight": 2 } }, { "key": "4705", "source": "1196", "target": "921", "attributes": { "weight": 3 } }, { "key": "4682", "source": "1196", "target": "779", "attributes": { "weight": 2 } }, { "key": "36532", "source": "1196", "target": "1228", "attributes": { "weight": 1 } }, { "key": "4672", "source": "1196", "target": "1160", "attributes": { "weight": 2 } }, { "key": "4732", "source": "1196", "target": "1316", "attributes": { "weight": 2 } }, { "key": "4716", "source": "1196", "target": "1283", "attributes": { "weight": 2 } }, { "key": "4709", "source": "1196", "target": "924", "attributes": { "weight": 3 } }, { "key": "4725", "source": "1196", "target": "214", "attributes": { "weight": 2 } }, { "key": "4729", "source": "1196", "target": "1309", "attributes": { "weight": 2 } }, { "key": "4726", "source": "1196", "target": "1301", "attributes": { "weight": 2 } }, { "key": "4743", "source": "1196", "target": "1063", "attributes": { "weight": 3 } }, { "key": "4702", "source": "1196", "target": "370", "attributes": { "weight": 3 } }, { "key": "4693", "source": "1196", "target": "918", "attributes": { "weight": 2 } }, { "key": "36531", "source": "1196", "target": "1152", "attributes": { "weight": 1 } }, { "key": "4695", "source": "1196", "target": "945", "attributes": { "weight": 2 } }, { "key": "4690", "source": "1196", "target": "1207", "attributes": { "weight": 2 } }, { "key": "34002", "source": "1196", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4683", "source": "1196", "target": "1184", "attributes": { "weight": 2 } }, { "key": "4697", "source": "1196", "target": "1235", "attributes": { "weight": 2 } }, { "key": "4742", "source": "1196", "target": "154", "attributes": { "weight": 3 } }, { "key": "4731", "source": "1196", "target": "1315", "attributes": { "weight": 2 } }, { "key": "4701", "source": "1196", "target": "205", "attributes": { "weight": 2 } }, { "key": "4691", "source": "1196", "target": "199", "attributes": { "weight": 3 } }, { "key": "4670", "source": "1196", "target": "933", "attributes": { "weight": 2 } }, { "key": "4676", "source": "1196", "target": "1171", "attributes": { "weight": 2 } }, { "key": "4706", "source": "1196", "target": "1255", "attributes": { "weight": 2 } }, { "key": "4679", "source": "1196", "target": "1176", "attributes": { "weight": 2 } }, { "key": "4704", "source": "1196", "target": "338", "attributes": { "weight": 4 } }, { "key": "4678", "source": "1196", "target": "1175", "attributes": { "weight": 2 } }, { "key": "4715", "source": "1196", "target": "1281", "attributes": { "weight": 2 } }, { "key": "4723", "source": "1196", "target": "1294", "attributes": { "weight": 2 } }, { "key": "4717", "source": "1196", "target": "1287", "attributes": { "weight": 3 } }, { "key": "4735", "source": "1196", "target": "124", "attributes": { "weight": 3 } }, { "key": "4711", "source": "1196", "target": "371", "attributes": { "weight": 2 } }, { "key": "15636", "source": "1196", "target": "920", "attributes": { "weight": 1 } }, { "key": "4696", "source": "1196", "target": "1229", "attributes": { "weight": 2 } }, { "key": "4736", "source": "1196", "target": "928", "attributes": { "weight": 2 } }, { "key": "4719", "source": "1196", "target": "1289", "attributes": { "weight": 2 } }, { "key": "15638", "source": "1196", "target": "1329", "attributes": { "weight": 1 } }, { "key": "4694", "source": "1196", "target": "1226", "attributes": { "weight": 2 } }, { "key": "4703", "source": "1196", "target": "337", "attributes": { "weight": 2 } }, { "key": "4700", "source": "1196", "target": "1241", "attributes": { "weight": 2 } }, { "key": "4708", "source": "1196", "target": "208", "attributes": { "weight": 3 } }, { "key": "8679", "source": "1196", "target": "195", "attributes": { "weight": 7 } }, { "key": "4689", "source": "1196", "target": "913", "attributes": { "weight": 3 } }, { "key": "4734", "source": "1196", "target": "1333", "attributes": { "weight": 2 } }, { "key": "4684", "source": "1196", "target": "911", "attributes": { "weight": 2 } }, { "key": "4687", "source": "1196", "target": "368", "attributes": { "weight": 2 } }, { "key": "4728", "source": "1196", "target": "1305", "attributes": { "weight": 2 } }, { "key": "4733", "source": "1196", "target": "1321", "attributes": { "weight": 2 } }, { "key": "4738", "source": "1196", "target": "218", "attributes": { "weight": 3 } }, { "key": "10192", "source": "1196", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34003", "source": "1196", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34009", "source": "1197", "target": "1162", "attributes": { "weight": 1 } }, { "key": "34032", "source": "1197", "target": "1232", "attributes": { "weight": 2 } }, { "key": "7253", "source": "1197", "target": "195", "attributes": { "weight": 11 } }, { "key": "18672", "source": "1197", "target": "1343", "attributes": { "weight": 3 } }, { "key": "37499", "source": "1197", "target": "3382", "attributes": { "weight": 1 } }, { "key": "18173", "source": "1197", "target": "1196", "attributes": { "weight": 2 } }, { "key": "34051", "source": "1197", "target": "1296", "attributes": { "weight": 2 } }, { "key": "15644", "source": "1197", "target": "1329", "attributes": { "weight": 5 } }, { "key": "34016", "source": "1197", "target": "1194", "attributes": { "weight": 2 } }, { "key": "34011", "source": "1197", "target": "1167", "attributes": { "weight": 2 } }, { "key": "7258", "source": "1197", "target": "154", "attributes": { "weight": 2 } }, { "key": "18195", "source": "1197", "target": "1278", "attributes": { "weight": 2 } }, { "key": "18182", "source": "1197", "target": "917", "attributes": { "weight": 1 } }, { "key": "18180", "source": "1197", "target": "1211", "attributes": { "weight": 2 } }, { "key": "34057", "source": "1197", "target": "1308", "attributes": { "weight": 2 } }, { "key": "18200", "source": "1197", "target": "2203", "attributes": { "weight": 3 } }, { "key": "18191", "source": "1197", "target": "923", "attributes": { "weight": 1 } }, { "key": "34061", "source": "1197", "target": "2049", "attributes": { "weight": 1 } }, { "key": "34025", "source": "1197", "target": "1225", "attributes": { "weight": 2 } }, { "key": "18167", "source": "1197", "target": "1681", "attributes": { "weight": 2 } }, { "key": "34034", "source": "1197", "target": "2037", "attributes": { "weight": 1 } }, { "key": "34052", "source": "1197", "target": "1693", "attributes": { "weight": 1 } }, { "key": "11485", "source": "1197", "target": "938", "attributes": { "weight": 3 } }, { "key": "36538", "source": "1197", "target": "1305", "attributes": { "weight": 1 } }, { "key": "34053", "source": "1197", "target": "3159", "attributes": { "weight": 1 } }, { "key": "18667", "source": "1197", "target": "1184", "attributes": { "weight": 3 } }, { "key": "18162", "source": "1197", "target": "1152", "attributes": { "weight": 3 } }, { "key": "7260", "source": "1197", "target": "625", "attributes": { "weight": 2 } }, { "key": "34060", "source": "1197", "target": "1324", "attributes": { "weight": 1 } }, { "key": "37495", "source": "1197", "target": "3379", "attributes": { "weight": 1 } }, { "key": "34048", "source": "1197", "target": "3155", "attributes": { "weight": 1 } }, { "key": "18668", "source": "1197", "target": "1288", "attributes": { "weight": 3 } }, { "key": "34023", "source": "1197", "target": "2035", "attributes": { "weight": 1 } }, { "key": "37504", "source": "1197", "target": "3387", "attributes": { "weight": 1 } }, { "key": "18184", "source": "1197", "target": "2200", "attributes": { "weight": 1 } }, { "key": "34033", "source": "1197", "target": "1234", "attributes": { "weight": 1 } }, { "key": "18669", "source": "1197", "target": "1289", "attributes": { "weight": 1 } }, { "key": "18179", "source": "1197", "target": "2197", "attributes": { "weight": 3 } }, { "key": "34028", "source": "1197", "target": "3144", "attributes": { "weight": 1 } }, { "key": "7256", "source": "1197", "target": "1401", "attributes": { "weight": 2 } }, { "key": "18161", "source": "1197", "target": "2191", "attributes": { "weight": 3 } }, { "key": "18192", "source": "1197", "target": "1552", "attributes": { "weight": 3 } }, { "key": "34007", "source": "1197", "target": "3131", "attributes": { "weight": 1 } }, { "key": "18193", "source": "1197", "target": "1269", "attributes": { "weight": 4 } }, { "key": "18186", "source": "1197", "target": "337", "attributes": { "weight": 5 } }, { "key": "26430", "source": "1197", "target": "454", "attributes": { "weight": 2 } }, { "key": "34027", "source": "1197", "target": "3143", "attributes": { "weight": 1 } }, { "key": "18201", "source": "1197", "target": "1300", "attributes": { "weight": 2 } }, { "key": "34030", "source": "1197", "target": "1227", "attributes": { "weight": 1 } }, { "key": "34037", "source": "1197", "target": "1245", "attributes": { "weight": 1 } }, { "key": "18212", "source": "1197", "target": "930", "attributes": { "weight": 2 } }, { "key": "4744", "source": "1197", "target": "779", "attributes": { "weight": 2 } }, { "key": "34029", "source": "1197", "target": "1687", "attributes": { "weight": 1 } }, { "key": "4745", "source": "1197", "target": "368", "attributes": { "weight": 5 } }, { "key": "34039", "source": "1197", "target": "1248", "attributes": { "weight": 1 } }, { "key": "34013", "source": "1197", "target": "2029", "attributes": { "weight": 1 } }, { "key": "34018", "source": "1197", "target": "1198", "attributes": { "weight": 1 } }, { "key": "18181", "source": "1197", "target": "1215", "attributes": { "weight": 4 } }, { "key": "18204", "source": "1197", "target": "1315", "attributes": { "weight": 4 } }, { "key": "34065", "source": "1197", "target": "931", "attributes": { "weight": 1 } }, { "key": "34026", "source": "1197", "target": "1686", "attributes": { "weight": 1 } }, { "key": "18177", "source": "1197", "target": "1206", "attributes": { "weight": 2 } }, { "key": "7257", "source": "1197", "target": "1407", "attributes": { "weight": 2 } }, { "key": "15639", "source": "1197", "target": "912", "attributes": { "weight": 3 } }, { "key": "11486", "source": "1197", "target": "370", "attributes": { "weight": 2 } }, { "key": "18666", "source": "1197", "target": "1174", "attributes": { "weight": 3 } }, { "key": "34014", "source": "1197", "target": "1188", "attributes": { "weight": 1 } }, { "key": "18199", "source": "1197", "target": "1293", "attributes": { "weight": 1 } }, { "key": "34042", "source": "1197", "target": "1260", "attributes": { "weight": 1 } }, { "key": "18446", "source": "1197", "target": "1738", "attributes": { "weight": 1 } }, { "key": "18164", "source": "1197", "target": "2193", "attributes": { "weight": 1 } }, { "key": "7261", "source": "1197", "target": "1417", "attributes": { "weight": 2 } }, { "key": "4746", "source": "1197", "target": "338", "attributes": { "weight": 7 } }, { "key": "4750", "source": "1197", "target": "1090", "attributes": { "weight": 4 } }, { "key": "18166", "source": "1197", "target": "1165", "attributes": { "weight": 4 } }, { "key": "37497", "source": "1197", "target": "2196", "attributes": { "weight": 1 } }, { "key": "18171", "source": "1197", "target": "2195", "attributes": { "weight": 3 } }, { "key": "18175", "source": "1197", "target": "1203", "attributes": { "weight": 2 } }, { "key": "15641", "source": "1197", "target": "921", "attributes": { "weight": 4 } }, { "key": "34056", "source": "1197", "target": "2048", "attributes": { "weight": 1 } }, { "key": "18168", "source": "1197", "target": "1181", "attributes": { "weight": 2 } }, { "key": "34041", "source": "1197", "target": "2043", "attributes": { "weight": 1 } }, { "key": "37503", "source": "1197", "target": "3386", "attributes": { "weight": 1 } }, { "key": "18665", "source": "1197", "target": "1148", "attributes": { "weight": 3 } }, { "key": "34055", "source": "1197", "target": "1304", "attributes": { "weight": 1 } }, { "key": "18664", "source": "1197", "target": "1140", "attributes": { "weight": 3 } }, { "key": "37500", "source": "1197", "target": "2201", "attributes": { "weight": 1 } }, { "key": "18187", "source": "1197", "target": "544", "attributes": { "weight": 1 } }, { "key": "36536", "source": "1197", "target": "205", "attributes": { "weight": 1 } }, { "key": "18202", "source": "1197", "target": "403", "attributes": { "weight": 2 } }, { "key": "34031", "source": "1197", "target": "1229", "attributes": { "weight": 1 } }, { "key": "7263", "source": "1197", "target": "1063", "attributes": { "weight": 2 } }, { "key": "37502", "source": "1197", "target": "2202", "attributes": { "weight": 1 } }, { "key": "18169", "source": "1197", "target": "1182", "attributes": { "weight": 2 } }, { "key": "34020", "source": "1197", "target": "1201", "attributes": { "weight": 1 } }, { "key": "4752", "source": "1197", "target": "1322", "attributes": { "weight": 5 } }, { "key": "4749", "source": "1197", "target": "123", "attributes": { "weight": 4 } }, { "key": "18190", "source": "1197", "target": "208", "attributes": { "weight": 4 } }, { "key": "18209", "source": "1197", "target": "408", "attributes": { "weight": 4 } }, { "key": "7254", "source": "1197", "target": "926", "attributes": { "weight": 5 } }, { "key": "18211", "source": "1197", "target": "218", "attributes": { "weight": 4 } }, { "key": "18194", "source": "1197", "target": "2044", "attributes": { "weight": 2 } }, { "key": "7259", "source": "1197", "target": "333", "attributes": { "weight": 2 } }, { "key": "18170", "source": "1197", "target": "387", "attributes": { "weight": 3 } }, { "key": "37496", "source": "1197", "target": "3380", "attributes": { "weight": 1 } }, { "key": "34019", "source": "1197", "target": "3140", "attributes": { "weight": 1 } }, { "key": "34044", "source": "1197", "target": "1265", "attributes": { "weight": 1 } }, { "key": "34040", "source": "1197", "target": "1254", "attributes": { "weight": 1 } }, { "key": "18165", "source": "1197", "target": "1164", "attributes": { "weight": 1 } }, { "key": "34062", "source": "1197", "target": "1325", "attributes": { "weight": 1 } }, { "key": "34022", "source": "1197", "target": "1685", "attributes": { "weight": 1 } }, { "key": "18206", "source": "1197", "target": "1323", "attributes": { "weight": 3 } }, { "key": "34021", "source": "1197", "target": "1047", "attributes": { "weight": 2 } }, { "key": "18172", "source": "1197", "target": "389", "attributes": { "weight": 1 } }, { "key": "7255", "source": "1197", "target": "373", "attributes": { "weight": 2 } }, { "key": "34015", "source": "1197", "target": "2030", "attributes": { "weight": 1 } }, { "key": "34059", "source": "1197", "target": "1321", "attributes": { "weight": 2 } }, { "key": "34050", "source": "1197", "target": "1295", "attributes": { "weight": 1 } }, { "key": "18178", "source": "1197", "target": "199", "attributes": { "weight": 4 } }, { "key": "18197", "source": "1197", "target": "1287", "attributes": { "weight": 4 } }, { "key": "4748", "source": "1197", "target": "371", "attributes": { "weight": 3 } }, { "key": "34036", "source": "1197", "target": "2041", "attributes": { "weight": 1 } }, { "key": "34043", "source": "1197", "target": "396", "attributes": { "weight": 2 } }, { "key": "34010", "source": "1197", "target": "937", "attributes": { "weight": 1 } }, { "key": "36535", "source": "1197", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18207", "source": "1197", "target": "406", "attributes": { "weight": 3 } }, { "key": "37501", "source": "1197", "target": "3384", "attributes": { "weight": 1 } }, { "key": "34038", "source": "1197", "target": "3150", "attributes": { "weight": 1 } }, { "key": "18183", "source": "1197", "target": "1233", "attributes": { "weight": 3 } }, { "key": "18163", "source": "1197", "target": "2021", "attributes": { "weight": 2 } }, { "key": "18174", "source": "1197", "target": "1199", "attributes": { "weight": 2 } }, { "key": "18203", "source": "1197", "target": "215", "attributes": { "weight": 2 } }, { "key": "36537", "source": "1197", "target": "1284", "attributes": { "weight": 1 } }, { "key": "4747", "source": "1197", "target": "468", "attributes": { "weight": 4 } }, { "key": "18670", "source": "1197", "target": "405", "attributes": { "weight": 3 } }, { "key": "15640", "source": "1197", "target": "913", "attributes": { "weight": 5 } }, { "key": "34045", "source": "1197", "target": "1271", "attributes": { "weight": 1 } }, { "key": "34024", "source": "1197", "target": "1218", "attributes": { "weight": 1 } }, { "key": "4751", "source": "1197", "target": "1294", "attributes": { "weight": 7 } }, { "key": "18176", "source": "1197", "target": "1205", "attributes": { "weight": 2 } }, { "key": "34064", "source": "1197", "target": "1342", "attributes": { "weight": 2 } }, { "key": "34047", "source": "1197", "target": "1690", "attributes": { "weight": 1 } }, { "key": "34035", "source": "1197", "target": "2040", "attributes": { "weight": 1 } }, { "key": "18185", "source": "1197", "target": "1236", "attributes": { "weight": 4 } }, { "key": "34008", "source": "1197", "target": "1157", "attributes": { "weight": 1 } }, { "key": "34049", "source": "1197", "target": "1285", "attributes": { "weight": 1 } }, { "key": "18210", "source": "1197", "target": "124", "attributes": { "weight": 3 } }, { "key": "18189", "source": "1197", "target": "1263", "attributes": { "weight": 4 } }, { "key": "15642", "source": "1197", "target": "924", "attributes": { "weight": 3 } }, { "key": "18188", "source": "1197", "target": "1255", "attributes": { "weight": 2 } }, { "key": "36534", "source": "1197", "target": "1176", "attributes": { "weight": 1 } }, { "key": "34063", "source": "1197", "target": "1326", "attributes": { "weight": 2 } }, { "key": "18205", "source": "1197", "target": "1317", "attributes": { "weight": 2 } }, { "key": "18671", "source": "1197", "target": "1331", "attributes": { "weight": 3 } }, { "key": "18208", "source": "1197", "target": "407", "attributes": { "weight": 1 } }, { "key": "34054", "source": "1197", "target": "1303", "attributes": { "weight": 1 } }, { "key": "18196", "source": "1197", "target": "1286", "attributes": { "weight": 4 } }, { "key": "18160", "source": "1197", "target": "2190", "attributes": { "weight": 3 } }, { "key": "7262", "source": "1197", "target": "377", "attributes": { "weight": 2 } }, { "key": "34012", "source": "1197", "target": "1173", "attributes": { "weight": 2 } }, { "key": "36533", "source": "1197", "target": "1156", "attributes": { "weight": 1 } }, { "key": "34017", "source": "1197", "target": "2031", "attributes": { "weight": 1 } }, { "key": "34046", "source": "1197", "target": "1277", "attributes": { "weight": 1 } }, { "key": "28346", "source": "1197", "target": "580", "attributes": { "weight": 2 } }, { "key": "34006", "source": "1197", "target": "711", "attributes": { "weight": 1 } }, { "key": "15643", "source": "1197", "target": "925", "attributes": { "weight": 6 } }, { "key": "18198", "source": "1197", "target": "1291", "attributes": { "weight": 3 } }, { "key": "34058", "source": "1197", "target": "1313", "attributes": { "weight": 1 } }, { "key": "34070", "source": "1198", "target": "1197", "attributes": { "weight": 1 } }, { "key": "4943", "source": "1198", "target": "368", "attributes": { "weight": 2 } }, { "key": "4944", "source": "1198", "target": "1294", "attributes": { "weight": 2 } }, { "key": "4947", "source": "1199", "target": "779", "attributes": { "weight": 2 } }, { "key": "21885", "source": "1199", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21882", "source": "1199", "target": "337", "attributes": { "weight": 2 } }, { "key": "34072", "source": "1199", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4948", "source": "1199", "target": "1196", "attributes": { "weight": 2 } }, { "key": "4951", "source": "1199", "target": "1294", "attributes": { "weight": 3 } }, { "key": "34071", "source": "1199", "target": "1047", "attributes": { "weight": 1 } }, { "key": "4949", "source": "1199", "target": "368", "attributes": { "weight": 2 } }, { "key": "21884", "source": "1199", "target": "2301", "attributes": { "weight": 1 } }, { "key": "15651", "source": "1199", "target": "925", "attributes": { "weight": 1 } }, { "key": "18213", "source": "1199", "target": "1197", "attributes": { "weight": 2 } }, { "key": "18673", "source": "1199", "target": "1552", "attributes": { "weight": 2 } }, { "key": "8691", "source": "1199", "target": "195", "attributes": { "weight": 3 } }, { "key": "15649", "source": "1199", "target": "913", "attributes": { "weight": 1 } }, { "key": "4950", "source": "1199", "target": "123", "attributes": { "weight": 3 } }, { "key": "15650", "source": "1199", "target": "921", "attributes": { "weight": 1 } }, { "key": "21883", "source": "1199", "target": "2300", "attributes": { "weight": 1 } }, { "key": "4977", "source": "1200", "target": "1090", "attributes": { "weight": 2 } }, { "key": "21886", "source": "1200", "target": "2301", "attributes": { "weight": 1 } }, { "key": "34077", "source": "1200", "target": "123", "attributes": { "weight": 1 } }, { "key": "21887", "source": "1200", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15763", "source": "1200", "target": "913", "attributes": { "weight": 1 } }, { "key": "36546", "source": "1201", "target": "337", "attributes": { "weight": 1 } }, { "key": "34078", "source": "1201", "target": "1197", "attributes": { "weight": 1 } }, { "key": "8710", "source": "1201", "target": "195", "attributes": { "weight": 3 } }, { "key": "18674", "source": "1201", "target": "1090", "attributes": { "weight": 1 } }, { "key": "18675", "source": "1201", "target": "405", "attributes": { "weight": 2 } }, { "key": "36545", "source": "1201", "target": "1228", "attributes": { "weight": 1 } }, { "key": "36544", "source": "1201", "target": "1526", "attributes": { "weight": 1 } }, { "key": "4979", "source": "1201", "target": "338", "attributes": { "weight": 5 } }, { "key": "4978", "source": "1201", "target": "368", "attributes": { "weight": 2 } }, { "key": "36543", "source": "1201", "target": "1152", "attributes": { "weight": 1 } }, { "key": "34079", "source": "1201", "target": "1233", "attributes": { "weight": 1 } }, { "key": "4981", "source": "1201", "target": "1294", "attributes": { "weight": 3 } }, { "key": "4980", "source": "1201", "target": "123", "attributes": { "weight": 2 } }, { "key": "34080", "source": "1202", "target": "1182", "attributes": { "weight": 1 } }, { "key": "4982", "source": "1202", "target": "1090", "attributes": { "weight": 2 } }, { "key": "15764", "source": "1202", "target": "913", "attributes": { "weight": 1 } }, { "key": "18216", "source": "1203", "target": "1197", "attributes": { "weight": 2 } }, { "key": "4984", "source": "1203", "target": "1291", "attributes": { "weight": 3 } }, { "key": "21888", "source": "1203", "target": "2293", "attributes": { "weight": 1 } }, { "key": "10197", "source": "1203", "target": "1322", "attributes": { "weight": 1 } }, { "key": "21890", "source": "1203", "target": "1284", "attributes": { "weight": 1 } }, { "key": "15766", "source": "1203", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34081", "source": "1203", "target": "1323", "attributes": { "weight": 1 } }, { "key": "21889", "source": "1203", "target": "337", "attributes": { "weight": 1 } }, { "key": "4983", "source": "1203", "target": "338", "attributes": { "weight": 3 } }, { "key": "8713", "source": "1204", "target": "195", "attributes": { "weight": 3 } }, { "key": "4987", "source": "1204", "target": "779", "attributes": { "weight": 2 } }, { "key": "18217", "source": "1205", "target": "1197", "attributes": { "weight": 2 } }, { "key": "21893", "source": "1205", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21891", "source": "1205", "target": "2293", "attributes": { "weight": 1 } }, { "key": "5000", "source": "1205", "target": "123", "attributes": { "weight": 3 } }, { "key": "21892", "source": "1205", "target": "337", "attributes": { "weight": 1 } }, { "key": "15777", "source": "1205", "target": "1329", "attributes": { "weight": 1 } }, { "key": "4999", "source": "1205", "target": "368", "attributes": { "weight": 2 } }, { "key": "15776", "source": "1205", "target": "925", "attributes": { "weight": 1 } }, { "key": "21894", "source": "1205", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15775", "source": "1205", "target": "195", "attributes": { "weight": 1 } }, { "key": "10200", "source": "1206", "target": "1315", "attributes": { "weight": 1 } }, { "key": "10201", "source": "1206", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34166", "source": "1206", "target": "1323", "attributes": { "weight": 1 } }, { "key": "10199", "source": "1206", "target": "1291", "attributes": { "weight": 1 } }, { "key": "5002", "source": "1206", "target": "338", "attributes": { "weight": 4 } }, { "key": "9756", "source": "1206", "target": "390", "attributes": { "weight": 3 } }, { "key": "5003", "source": "1206", "target": "1294", "attributes": { "weight": 2 } }, { "key": "5001", "source": "1206", "target": "368", "attributes": { "weight": 2 } }, { "key": "21895", "source": "1206", "target": "337", "attributes": { "weight": 2 } }, { "key": "18218", "source": "1206", "target": "1197", "attributes": { "weight": 2 } }, { "key": "15778", "source": "1206", "target": "1329", "attributes": { "weight": 1 } }, { "key": "5004", "source": "1207", "target": "779", "attributes": { "weight": 2 } }, { "key": "5005", "source": "1207", "target": "1196", "attributes": { "weight": 2 } }, { "key": "8721", "source": "1207", "target": "195", "attributes": { "weight": 3 } }, { "key": "34167", "source": "1207", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5013", "source": "1208", "target": "1294", "attributes": { "weight": 2 } }, { "key": "5021", "source": "1209", "target": "779", "attributes": { "weight": 2 } }, { "key": "18683", "source": "1210", "target": "208", "attributes": { "weight": 2 } }, { "key": "18682", "source": "1210", "target": "1174", "attributes": { "weight": 2 } }, { "key": "5022", "source": "1210", "target": "123", "attributes": { "weight": 2 } }, { "key": "15784", "source": "1210", "target": "925", "attributes": { "weight": 1 } }, { "key": "18684", "source": "1210", "target": "218", "attributes": { "weight": 2 } }, { "key": "34175", "source": "1210", "target": "1182", "attributes": { "weight": 1 } }, { "key": "36561", "source": "1210", "target": "337", "attributes": { "weight": 1 } }, { "key": "8735", "source": "1210", "target": "195", "attributes": { "weight": 3 } }, { "key": "5031", "source": "1211", "target": "123", "attributes": { "weight": 3 } }, { "key": "21905", "source": "1211", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21903", "source": "1211", "target": "337", "attributes": { "weight": 1 } }, { "key": "15787", "source": "1211", "target": "925", "attributes": { "weight": 1 } }, { "key": "15786", "source": "1211", "target": "195", "attributes": { "weight": 1 } }, { "key": "5030", "source": "1211", "target": "368", "attributes": { "weight": 2 } }, { "key": "21904", "source": "1211", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21902", "source": "1211", "target": "2293", "attributes": { "weight": 1 } }, { "key": "18224", "source": "1211", "target": "1197", "attributes": { "weight": 2 } }, { "key": "8742", "source": "1212", "target": "195", "attributes": { "weight": 3 } }, { "key": "5032", "source": "1212", "target": "368", "attributes": { "weight": 2 } }, { "key": "5036", "source": "1213", "target": "368", "attributes": { "weight": 2 } }, { "key": "26150", "source": "1214", "target": "2627", "attributes": { "weight": 1 } }, { "key": "5037", "source": "1214", "target": "779", "attributes": { "weight": 2 } }, { "key": "5038", "source": "1214", "target": "371", "attributes": { "weight": 3 } }, { "key": "34178", "source": "1214", "target": "1047", "attributes": { "weight": 1 } }, { "key": "34179", "source": "1214", "target": "1232", "attributes": { "weight": 1 } }, { "key": "26154", "source": "1214", "target": "2629", "attributes": { "weight": 1 } }, { "key": "26151", "source": "1214", "target": "392", "attributes": { "weight": 1 } }, { "key": "5039", "source": "1214", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11874", "source": "1214", "target": "1281", "attributes": { "weight": 1 } }, { "key": "34180", "source": "1214", "target": "1233", "attributes": { "weight": 1 } }, { "key": "15793", "source": "1214", "target": "195", "attributes": { "weight": 1 } }, { "key": "15794", "source": "1214", "target": "913", "attributes": { "weight": 1 } }, { "key": "26153", "source": "1214", "target": "2628", "attributes": { "weight": 2 } }, { "key": "11531", "source": "1214", "target": "370", "attributes": { "weight": 2 } }, { "key": "7296", "source": "1214", "target": "1063", "attributes": { "weight": 2 } }, { "key": "26152", "source": "1214", "target": "780", "attributes": { "weight": 1 } }, { "key": "26155", "source": "1214", "target": "123", "attributes": { "weight": 1 } }, { "key": "26156", "source": "1214", "target": "218", "attributes": { "weight": 1 } }, { "key": "15798", "source": "1215", "target": "1329", "attributes": { "weight": 1 } }, { "key": "36562", "source": "1215", "target": "1167", "attributes": { "weight": 1 } }, { "key": "15796", "source": "1215", "target": "338", "attributes": { "weight": 1 } }, { "key": "36564", "source": "1215", "target": "1284", "attributes": { "weight": 1 } }, { "key": "15797", "source": "1215", "target": "925", "attributes": { "weight": 1 } }, { "key": "18225", "source": "1215", "target": "1197", "attributes": { "weight": 4 } }, { "key": "5044", "source": "1215", "target": "1294", "attributes": { "weight": 3 } }, { "key": "36563", "source": "1215", "target": "337", "attributes": { "weight": 1 } }, { "key": "10205", "source": "1215", "target": "1322", "attributes": { "weight": 1 } }, { "key": "10204", "source": "1215", "target": "1291", "attributes": { "weight": 1 } }, { "key": "5045", "source": "1216", "target": "368", "attributes": { "weight": 2 } }, { "key": "37447", "source": "1217", "target": "435", "attributes": { "weight": 1 } }, { "key": "37449", "source": "1217", "target": "472", "attributes": { "weight": 1 } }, { "key": "5047", "source": "1217", "target": "468", "attributes": { "weight": 2 } }, { "key": "33369", "source": "1217", "target": "135", "attributes": { "weight": 1 } }, { "key": "37448", "source": "1217", "target": "2258", "attributes": { "weight": 1 } }, { "key": "34183", "source": "1218", "target": "1197", "attributes": { "weight": 1 } }, { "key": "21914", "source": "1218", "target": "337", "attributes": { "weight": 1 } }, { "key": "15803", "source": "1218", "target": "1329", "attributes": { "weight": 1 } }, { "key": "5052", "source": "1218", "target": "368", "attributes": { "weight": 2 } }, { "key": "5053", "source": "1218", "target": "1294", "attributes": { "weight": 2 } }, { "key": "34184", "source": "1218", "target": "1233", "attributes": { "weight": 1 } }, { "key": "27056", "source": "1219", "target": "429", "attributes": { "weight": 3 } }, { "key": "27062", "source": "1219", "target": "452", "attributes": { "weight": 1 } }, { "key": "15282", "source": "1219", "target": "387", "attributes": { "weight": 2 } }, { "key": "32961", "source": "1219", "target": "377", "attributes": { "weight": 1 } }, { "key": "12227", "source": "1219", "target": "1833", "attributes": { "weight": 1 } }, { "key": "12229", "source": "1219", "target": "1835", "attributes": { "weight": 1 } }, { "key": "18449", "source": "1219", "target": "1738", "attributes": { "weight": 1 } }, { "key": "33375", "source": "1219", "target": "489", "attributes": { "weight": 1 } }, { "key": "33371", "source": "1219", "target": "51", "attributes": { "weight": 1 } }, { "key": "11876", "source": "1219", "target": "1363", "attributes": { "weight": 1 } }, { "key": "12235", "source": "1219", "target": "1840", "attributes": { "weight": 1 } }, { "key": "12233", "source": "1219", "target": "1564", "attributes": { "weight": 1 } }, { "key": "17460", "source": "1219", "target": "358", "attributes": { "weight": 2 } }, { "key": "12221", "source": "1219", "target": "435", "attributes": { "weight": 1 } }, { "key": "11877", "source": "1219", "target": "135", "attributes": { "weight": 2 } }, { "key": "12231", "source": "1219", "target": "1837", "attributes": { "weight": 1 } }, { "key": "12224", "source": "1219", "target": "1829", "attributes": { "weight": 1 } }, { "key": "26561", "source": "1219", "target": "1047", "attributes": { "weight": 2 } }, { "key": "32206", "source": "1219", "target": "1368", "attributes": { "weight": 1 } }, { "key": "12220", "source": "1219", "target": "1161", "attributes": { "weight": 1 } }, { "key": "26560", "source": "1219", "target": "183", "attributes": { "weight": 1 } }, { "key": "12223", "source": "1219", "target": "1828", "attributes": { "weight": 1 } }, { "key": "27068", "source": "1219", "target": "231", "attributes": { "weight": 4 } }, { "key": "32205", "source": "1219", "target": "424", "attributes": { "weight": 1 } }, { "key": "12234", "source": "1219", "target": "1839", "attributes": { "weight": 1 } }, { "key": "33372", "source": "1219", "target": "442", "attributes": { "weight": 1 } }, { "key": "27063", "source": "1219", "target": "1358", "attributes": { "weight": 2 } }, { "key": "8746", "source": "1219", "target": "446", "attributes": { "weight": 2 } }, { "key": "33373", "source": "1219", "target": "462", "attributes": { "weight": 1 } }, { "key": "33374", "source": "1219", "target": "2258", "attributes": { "weight": 1 } }, { "key": "27069", "source": "1219", "target": "483", "attributes": { "weight": 2 } }, { "key": "27061", "source": "1219", "target": "451", "attributes": { "weight": 3 } }, { "key": "32860", "source": "1219", "target": "1357", "attributes": { "weight": 1 } }, { "key": "33376", "source": "1219", "target": "672", "attributes": { "weight": 1 } }, { "key": "32730", "source": "1219", "target": "53", "attributes": { "weight": 1 } }, { "key": "5055", "source": "1219", "target": "1090", "attributes": { "weight": 2 } }, { "key": "12222", "source": "1219", "target": "1827", "attributes": { "weight": 1 } }, { "key": "15283", "source": "1219", "target": "208", "attributes": { "weight": 3 } }, { "key": "12226", "source": "1219", "target": "1535", "attributes": { "weight": 1 } }, { "key": "32962", "source": "1219", "target": "1063", "attributes": { "weight": 1 } }, { "key": "27060", "source": "1219", "target": "860", "attributes": { "weight": 3 } }, { "key": "35958", "source": "1219", "target": "1360", "attributes": { "weight": 1 } }, { "key": "25916", "source": "1219", "target": "1367", "attributes": { "weight": 1 } }, { "key": "27067", "source": "1219", "target": "1812", "attributes": { "weight": 1 } }, { "key": "12228", "source": "1219", "target": "1362", "attributes": { "weight": 2 } }, { "key": "35959", "source": "1219", "target": "497", "attributes": { "weight": 1 } }, { "key": "27070", "source": "1219", "target": "56", "attributes": { "weight": 4 } }, { "key": "11138", "source": "1219", "target": "220", "attributes": { "weight": 3 } }, { "key": "15281", "source": "1219", "target": "1353", "attributes": { "weight": 5 } }, { "key": "27064", "source": "1219", "target": "458", "attributes": { "weight": 1 } }, { "key": "27065", "source": "1219", "target": "459", "attributes": { "weight": 2 } }, { "key": "27066", "source": "1219", "target": "54", "attributes": { "weight": 3 } }, { "key": "12225", "source": "1219", "target": "1832", "attributes": { "weight": 1 } }, { "key": "17241", "source": "1219", "target": "449", "attributes": { "weight": 1 } }, { "key": "27057", "source": "1219", "target": "1354", "attributes": { "weight": 3 } }, { "key": "27059", "source": "1219", "target": "858", "attributes": { "weight": 2 } }, { "key": "33370", "source": "1219", "target": "2645", "attributes": { "weight": 1 } }, { "key": "5054", "source": "1219", "target": "468", "attributes": { "weight": 3 } }, { "key": "12230", "source": "1219", "target": "1247", "attributes": { "weight": 1 } }, { "key": "12219", "source": "1219", "target": "1826", "attributes": { "weight": 1 } }, { "key": "12232", "source": "1219", "target": "472", "attributes": { "weight": 1 } }, { "key": "27058", "source": "1219", "target": "130", "attributes": { "weight": 1 } }, { "key": "17242", "source": "1219", "target": "2108", "attributes": { "weight": 1 } }, { "key": "11878", "source": "1220", "target": "1347", "attributes": { "weight": 2 } }, { "key": "5056", "source": "1220", "target": "371", "attributes": { "weight": 2 } }, { "key": "35240", "source": "1220", "target": "1030", "attributes": { "weight": 1 } }, { "key": "26815", "source": "1220", "target": "1158", "attributes": { "weight": 1 } }, { "key": "7299", "source": "1220", "target": "1063", "attributes": { "weight": 2 } }, { "key": "12811", "source": "1220", "target": "370", "attributes": { "weight": 2 } }, { "key": "12812", "source": "1220", "target": "785", "attributes": { "weight": 3 } }, { "key": "26816", "source": "1220", "target": "2650", "attributes": { "weight": 1 } }, { "key": "5061", "source": "1221", "target": "368", "attributes": { "weight": 2 } }, { "key": "8750", "source": "1221", "target": "195", "attributes": { "weight": 4 } }, { "key": "34185", "source": "1221", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5060", "source": "1221", "target": "779", "attributes": { "weight": 2 } }, { "key": "5062", "source": "1222", "target": "123", "attributes": { "weight": 3 } }, { "key": "15804", "source": "1222", "target": "913", "attributes": { "weight": 1 } }, { "key": "8751", "source": "1222", "target": "195", "attributes": { "weight": 3 } }, { "key": "15805", "source": "1222", "target": "925", "attributes": { "weight": 1 } }, { "key": "21916", "source": "1223", "target": "337", "attributes": { "weight": 1 } }, { "key": "21915", "source": "1223", "target": "2293", "attributes": { "weight": 1 } }, { "key": "5063", "source": "1223", "target": "368", "attributes": { "weight": 2 } }, { "key": "8752", "source": "1224", "target": "195", "attributes": { "weight": 3 } }, { "key": "34186", "source": "1224", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5064", "source": "1224", "target": "368", "attributes": { "weight": 2 } }, { "key": "21919", "source": "1225", "target": "2301", "attributes": { "weight": 1 } }, { "key": "15807", "source": "1225", "target": "913", "attributes": { "weight": 1 } }, { "key": "15806", "source": "1225", "target": "912", "attributes": { "weight": 1 } }, { "key": "15808", "source": "1225", "target": "921", "attributes": { "weight": 1 } }, { "key": "15809", "source": "1225", "target": "208", "attributes": { "weight": 2 } }, { "key": "18685", "source": "1225", "target": "124", "attributes": { "weight": 2 } }, { "key": "5066", "source": "1225", "target": "123", "attributes": { "weight": 3 } }, { "key": "34191", "source": "1225", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34190", "source": "1225", "target": "1232", "attributes": { "weight": 1 } }, { "key": "36566", "source": "1225", "target": "218", "attributes": { "weight": 1 } }, { "key": "5065", "source": "1225", "target": "368", "attributes": { "weight": 2 } }, { "key": "8753", "source": "1225", "target": "195", "attributes": { "weight": 3 } }, { "key": "34187", "source": "1225", "target": "1182", "attributes": { "weight": 1 } }, { "key": "21917", "source": "1225", "target": "2293", "attributes": { "weight": 1 } }, { "key": "34188", "source": "1225", "target": "1197", "attributes": { "weight": 2 } }, { "key": "34189", "source": "1225", "target": "1047", "attributes": { "weight": 1 } }, { "key": "21920", "source": "1225", "target": "2212", "attributes": { "weight": 1 } }, { "key": "15810", "source": "1225", "target": "925", "attributes": { "weight": 1 } }, { "key": "21918", "source": "1225", "target": "337", "attributes": { "weight": 1 } }, { "key": "36565", "source": "1225", "target": "1174", "attributes": { "weight": 1 } }, { "key": "5094", "source": "1226", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5093", "source": "1226", "target": "779", "attributes": { "weight": 2 } }, { "key": "23190", "source": "1227", "target": "2436", "attributes": { "weight": 1 } }, { "key": "5104", "source": "1227", "target": "368", "attributes": { "weight": 2 } }, { "key": "7306", "source": "1227", "target": "333", "attributes": { "weight": 3 } }, { "key": "15829", "source": "1227", "target": "698", "attributes": { "weight": 2 } }, { "key": "15831", "source": "1227", "target": "1323", "attributes": { "weight": 3 } }, { "key": "10212", "source": "1227", "target": "1291", "attributes": { "weight": 2 } }, { "key": "13142", "source": "1227", "target": "304", "attributes": { "weight": 3 } }, { "key": "23184", "source": "1227", "target": "370", "attributes": { "weight": 1 } }, { "key": "23188", "source": "1227", "target": "2435", "attributes": { "weight": 2 } }, { "key": "27980", "source": "1227", "target": "305", "attributes": { "weight": 1 } }, { "key": "18494", "source": "1227", "target": "2214", "attributes": { "weight": 2 } }, { "key": "10210", "source": "1227", "target": "711", "attributes": { "weight": 1 } }, { "key": "18493", "source": "1227", "target": "2213", "attributes": { "weight": 1 } }, { "key": "15830", "source": "1227", "target": "278", "attributes": { "weight": 4 } }, { "key": "34220", "source": "1227", "target": "1197", "attributes": { "weight": 1 } }, { "key": "23181", "source": "1227", "target": "1146", "attributes": { "weight": 4 } }, { "key": "28214", "source": "1227", "target": "2726", "attributes": { "weight": 1 } }, { "key": "34221", "source": "1227", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18495", "source": "1227", "target": "1280", "attributes": { "weight": 2 } }, { "key": "23191", "source": "1227", "target": "1299", "attributes": { "weight": 1 } }, { "key": "5107", "source": "1227", "target": "338", "attributes": { "weight": 9 } }, { "key": "23192", "source": "1227", "target": "1823", "attributes": { "weight": 1 } }, { "key": "29806", "source": "1227", "target": "93", "attributes": { "weight": 1 } }, { "key": "34225", "source": "1227", "target": "2830", "attributes": { "weight": 1 } }, { "key": "34223", "source": "1227", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34224", "source": "1227", "target": "1233", "attributes": { "weight": 1 } }, { "key": "23182", "source": "1227", "target": "1166", "attributes": { "weight": 1 } }, { "key": "23186", "source": "1227", "target": "1254", "attributes": { "weight": 4 } }, { "key": "5106", "source": "1227", "target": "170", "attributes": { "weight": 4 } }, { "key": "10214", "source": "1227", "target": "1322", "attributes": { "weight": 3 } }, { "key": "25168", "source": "1227", "target": "297", "attributes": { "weight": 2 } }, { "key": "23185", "source": "1227", "target": "1245", "attributes": { "weight": 2 } }, { "key": "23187", "source": "1227", "target": "2434", "attributes": { "weight": 2 } }, { "key": "34222", "source": "1227", "target": "700", "attributes": { "weight": 1 } }, { "key": "5113", "source": "1227", "target": "310", "attributes": { "weight": 5 } }, { "key": "34226", "source": "1227", "target": "123", "attributes": { "weight": 1 } }, { "key": "5110", "source": "1227", "target": "1284", "attributes": { "weight": 3 } }, { "key": "5108", "source": "1227", "target": "579", "attributes": { "weight": 3 } }, { "key": "23189", "source": "1227", "target": "1285", "attributes": { "weight": 5 } }, { "key": "15832", "source": "1227", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10211", "source": "1227", "target": "1680", "attributes": { "weight": 1 } }, { "key": "23193", "source": "1227", "target": "1331", "attributes": { "weight": 1 } }, { "key": "15828", "source": "1227", "target": "195", "attributes": { "weight": 2 } }, { "key": "5105", "source": "1227", "target": "707", "attributes": { "weight": 5 } }, { "key": "21930", "source": "1227", "target": "337", "attributes": { "weight": 2 } }, { "key": "5112", "source": "1227", "target": "1326", "attributes": { "weight": 2 } }, { "key": "13941", "source": "1227", "target": "180", "attributes": { "weight": 2 } }, { "key": "5109", "source": "1227", "target": "580", "attributes": { "weight": 7 } }, { "key": "10213", "source": "1227", "target": "1315", "attributes": { "weight": 2 } }, { "key": "5111", "source": "1227", "target": "1294", "attributes": { "weight": 3 } }, { "key": "23183", "source": "1227", "target": "2433", "attributes": { "weight": 2 } }, { "key": "11532", "source": "1228", "target": "938", "attributes": { "weight": 2 } }, { "key": "36573", "source": "1228", "target": "1165", "attributes": { "weight": 1 } }, { "key": "5114", "source": "1228", "target": "368", "attributes": { "weight": 2 } }, { "key": "36586", "source": "1228", "target": "1296", "attributes": { "weight": 1 } }, { "key": "18689", "source": "1228", "target": "1180", "attributes": { "weight": 2 } }, { "key": "18707", "source": "1228", "target": "1305", "attributes": { "weight": 2 } }, { "key": "18704", "source": "1228", "target": "1286", "attributes": { "weight": 2 } }, { "key": "11533", "source": "1228", "target": "370", "attributes": { "weight": 1 } }, { "key": "36584", "source": "1228", "target": "924", "attributes": { "weight": 1 } }, { "key": "18702", "source": "1228", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18699", "source": "1228", "target": "1255", "attributes": { "weight": 2 } }, { "key": "18690", "source": "1228", "target": "779", "attributes": { "weight": 2 } }, { "key": "36583", "source": "1228", "target": "1260", "attributes": { "weight": 1 } }, { "key": "18705", "source": "1228", "target": "1294", "attributes": { "weight": 2 } }, { "key": "36577", "source": "1228", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18695", "source": "1228", "target": "2229", "attributes": { "weight": 2 } }, { "key": "36572", "source": "1228", "target": "2193", "attributes": { "weight": 1 } }, { "key": "18708", "source": "1228", "target": "405", "attributes": { "weight": 2 } }, { "key": "36585", "source": "1228", "target": "1284", "attributes": { "weight": 1 } }, { "key": "18691", "source": "1228", "target": "1190", "attributes": { "weight": 2 } }, { "key": "36581", "source": "1228", "target": "205", "attributes": { "weight": 1 } }, { "key": "36588", "source": "1228", "target": "1315", "attributes": { "weight": 1 } }, { "key": "18688", "source": "1228", "target": "1174", "attributes": { "weight": 2 } }, { "key": "36571", "source": "1228", "target": "1162", "attributes": { "weight": 1 } }, { "key": "18700", "source": "1228", "target": "1263", "attributes": { "weight": 2 } }, { "key": "36580", "source": "1228", "target": "1241", "attributes": { "weight": 1 } }, { "key": "36579", "source": "1228", "target": "1236", "attributes": { "weight": 1 } }, { "key": "18710", "source": "1228", "target": "218", "attributes": { "weight": 2 } }, { "key": "18709", "source": "1228", "target": "408", "attributes": { "weight": 2 } }, { "key": "18697", "source": "1228", "target": "337", "attributes": { "weight": 2 } }, { "key": "36575", "source": "1228", "target": "1532", "attributes": { "weight": 1 } }, { "key": "18706", "source": "1228", "target": "1301", "attributes": { "weight": 1 } }, { "key": "18693", "source": "1228", "target": "1197", "attributes": { "weight": 2 } }, { "key": "18703", "source": "1228", "target": "926", "attributes": { "weight": 2 } }, { "key": "36574", "source": "1228", "target": "1196", "attributes": { "weight": 1 } }, { "key": "36570", "source": "1228", "target": "1140", "attributes": { "weight": 1 } }, { "key": "11147", "source": "1228", "target": "195", "attributes": { "weight": 6 } }, { "key": "18711", "source": "1228", "target": "1342", "attributes": { "weight": 2 } }, { "key": "18692", "source": "1228", "target": "1526", "attributes": { "weight": 2 } }, { "key": "18698", "source": "1228", "target": "338", "attributes": { "weight": 2 } }, { "key": "18694", "source": "1228", "target": "918", "attributes": { "weight": 2 } }, { "key": "36576", "source": "1228", "target": "1201", "attributes": { "weight": 1 } }, { "key": "36587", "source": "1228", "target": "214", "attributes": { "weight": 1 } }, { "key": "18687", "source": "1228", "target": "1152", "attributes": { "weight": 2 } }, { "key": "18701", "source": "1228", "target": "208", "attributes": { "weight": 2 } }, { "key": "36578", "source": "1228", "target": "199", "attributes": { "weight": 1 } }, { "key": "36589", "source": "1228", "target": "124", "attributes": { "weight": 1 } }, { "key": "36582", "source": "1228", "target": "921", "attributes": { "weight": 1 } }, { "key": "18696", "source": "1228", "target": "1238", "attributes": { "weight": 1 } }, { "key": "8771", "source": "1229", "target": "195", "attributes": { "weight": 5 } }, { "key": "34230", "source": "1229", "target": "1232", "attributes": { "weight": 1 } }, { "key": "15834", "source": "1229", "target": "913", "attributes": { "weight": 1 } }, { "key": "5120", "source": "1229", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5119", "source": "1229", "target": "779", "attributes": { "weight": 2 } }, { "key": "34231", "source": "1229", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5122", "source": "1229", "target": "123", "attributes": { "weight": 3 } }, { "key": "34229", "source": "1229", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5121", "source": "1229", "target": "368", "attributes": { "weight": 2 } }, { "key": "5123", "source": "1230", "target": "779", "attributes": { "weight": 2 } }, { "key": "21932", "source": "1230", "target": "2301", "attributes": { "weight": 1 } }, { "key": "21933", "source": "1230", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21931", "source": "1230", "target": "1279", "attributes": { "weight": 1 } }, { "key": "5124", "source": "1231", "target": "1090", "attributes": { "weight": 2 } }, { "key": "26587", "source": "1232", "target": "454", "attributes": { "weight": 2 } }, { "key": "34272", "source": "1232", "target": "206", "attributes": { "weight": 1 } }, { "key": "34261", "source": "1232", "target": "918", "attributes": { "weight": 1 } }, { "key": "34288", "source": "1232", "target": "1301", "attributes": { "weight": 1 } }, { "key": "34285", "source": "1232", "target": "1294", "attributes": { "weight": 1 } }, { "key": "5128", "source": "1232", "target": "368", "attributes": { "weight": 3 } }, { "key": "7309", "source": "1232", "target": "926", "attributes": { "weight": 3 } }, { "key": "34304", "source": "1232", "target": "1331", "attributes": { "weight": 1 } }, { "key": "26586", "source": "1232", "target": "223", "attributes": { "weight": 3 } }, { "key": "11539", "source": "1232", "target": "938", "attributes": { "weight": 2 } }, { "key": "11541", "source": "1232", "target": "370", "attributes": { "weight": 3 } }, { "key": "34235", "source": "1232", "target": "236", "attributes": { "weight": 1 } }, { "key": "7311", "source": "1232", "target": "154", "attributes": { "weight": 2 } }, { "key": "34309", "source": "1232", "target": "1342", "attributes": { "weight": 1 } }, { "key": "27263", "source": "1232", "target": "57", "attributes": { "weight": 2 } }, { "key": "34267", "source": "1232", "target": "205", "attributes": { "weight": 1 } }, { "key": "34294", "source": "1232", "target": "1315", "attributes": { "weight": 1 } }, { "key": "34277", "source": "1232", "target": "923", "attributes": { "weight": 1 } }, { "key": "31006", "source": "1232", "target": "39", "attributes": { "weight": 3 } }, { "key": "34276", "source": "1232", "target": "208", "attributes": { "weight": 1 } }, { "key": "34289", "source": "1232", "target": "1792", "attributes": { "weight": 1 } }, { "key": "15837", "source": "1232", "target": "278", "attributes": { "weight": 2 } }, { "key": "34298", "source": "1232", "target": "1321", "attributes": { "weight": 1 } }, { "key": "34265", "source": "1232", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34303", "source": "1232", "target": "961", "attributes": { "weight": 1 } }, { "key": "34268", "source": "1232", "target": "3147", "attributes": { "weight": 1 } }, { "key": "34255", "source": "1232", "target": "452", "attributes": { "weight": 1 } }, { "key": "34251", "source": "1232", "target": "912", "attributes": { "weight": 1 } }, { "key": "34247", "source": "1232", "target": "1184", "attributes": { "weight": 1 } }, { "key": "11542", "source": "1232", "target": "1251", "attributes": { "weight": 1 } }, { "key": "34242", "source": "1232", "target": "1172", "attributes": { "weight": 1 } }, { "key": "5130", "source": "1232", "target": "338", "attributes": { "weight": 4 } }, { "key": "34241", "source": "1232", "target": "1171", "attributes": { "weight": 1 } }, { "key": "34233", "source": "1232", "target": "933", "attributes": { "weight": 1 } }, { "key": "34234", "source": "1232", "target": "3130", "attributes": { "weight": 1 } }, { "key": "34266", "source": "1232", "target": "1236", "attributes": { "weight": 1 } }, { "key": "31897", "source": "1232", "target": "1060", "attributes": { "weight": 1 } }, { "key": "34306", "source": "1232", "target": "963", "attributes": { "weight": 1 } }, { "key": "34246", "source": "1232", "target": "1182", "attributes": { "weight": 1 } }, { "key": "7312", "source": "1232", "target": "1063", "attributes": { "weight": 2 } }, { "key": "34299", "source": "1232", "target": "1322", "attributes": { "weight": 1 } }, { "key": "15836", "source": "1232", "target": "913", "attributes": { "weight": 2 } }, { "key": "18714", "source": "1232", "target": "1197", "attributes": { "weight": 3 } }, { "key": "34236", "source": "1232", "target": "1152", "attributes": { "weight": 1 } }, { "key": "34269", "source": "1232", "target": "1056", "attributes": { "weight": 1 } }, { "key": "34275", "source": "1232", "target": "1263", "attributes": { "weight": 1 } }, { "key": "18715", "source": "1232", "target": "1552", "attributes": { "weight": 2 } }, { "key": "34305", "source": "1232", "target": "124", "attributes": { "weight": 1 } }, { "key": "34278", "source": "1232", "target": "3152", "attributes": { "weight": 1 } }, { "key": "5132", "source": "1232", "target": "371", "attributes": { "weight": 3 } }, { "key": "32394", "source": "1232", "target": "791", "attributes": { "weight": 2 } }, { "key": "9785", "source": "1232", "target": "396", "attributes": { "weight": 3 } }, { "key": "34245", "source": "1232", "target": "1180", "attributes": { "weight": 1 } }, { "key": "34300", "source": "1232", "target": "1323", "attributes": { "weight": 2 } }, { "key": "34243", "source": "1232", "target": "1175", "attributes": { "weight": 1 } }, { "key": "34262", "source": "1232", "target": "391", "attributes": { "weight": 1 } }, { "key": "34274", "source": "1232", "target": "1262", "attributes": { "weight": 1 } }, { "key": "31316", "source": "1232", "target": "674", "attributes": { "weight": 1 } }, { "key": "10682", "source": "1232", "target": "1314", "attributes": { "weight": 2 } }, { "key": "34250", "source": "1232", "target": "387", "attributes": { "weight": 1 } }, { "key": "34301", "source": "1232", "target": "3162", "attributes": { "weight": 1 } }, { "key": "7310", "source": "1232", "target": "375", "attributes": { "weight": 2 } }, { "key": "34296", "source": "1232", "target": "1316", "attributes": { "weight": 1 } }, { "key": "34282", "source": "1232", "target": "1289", "attributes": { "weight": 1 } }, { "key": "34291", "source": "1232", "target": "1307", "attributes": { "weight": 1 } }, { "key": "34286", "source": "1232", "target": "1296", "attributes": { "weight": 1 } }, { "key": "34252", "source": "1232", "target": "1194", "attributes": { "weight": 1 } }, { "key": "34290", "source": "1232", "target": "1305", "attributes": { "weight": 1 } }, { "key": "27262", "source": "1232", "target": "52", "attributes": { "weight": 2 } }, { "key": "17246", "source": "1232", "target": "449", "attributes": { "weight": 2 } }, { "key": "34271", "source": "1232", "target": "921", "attributes": { "weight": 1 } }, { "key": "28387", "source": "1232", "target": "580", "attributes": { "weight": 2 } }, { "key": "34240", "source": "1232", "target": "1165", "attributes": { "weight": 1 } }, { "key": "34258", "source": "1232", "target": "1225", "attributes": { "weight": 1 } }, { "key": "34257", "source": "1232", "target": "1214", "attributes": { "weight": 1 } }, { "key": "34256", "source": "1232", "target": "199", "attributes": { "weight": 1 } }, { "key": "34308", "source": "1232", "target": "928", "attributes": { "weight": 1 } }, { "key": "34297", "source": "1232", "target": "1320", "attributes": { "weight": 1 } }, { "key": "34253", "source": "1232", "target": "1047", "attributes": { "weight": 1 } }, { "key": "34248", "source": "1232", "target": "1188", "attributes": { "weight": 1 } }, { "key": "34302", "source": "1232", "target": "407", "attributes": { "weight": 1 } }, { "key": "34273", "source": "1232", "target": "472", "attributes": { "weight": 1 } }, { "key": "27206", "source": "1232", "target": "2665", "attributes": { "weight": 1 } }, { "key": "34292", "source": "1232", "target": "927", "attributes": { "weight": 1 } }, { "key": "34295", "source": "1232", "target": "405", "attributes": { "weight": 1 } }, { "key": "34307", "source": "1232", "target": "257", "attributes": { "weight": 1 } }, { "key": "11540", "source": "1232", "target": "358", "attributes": { "weight": 3 } }, { "key": "18716", "source": "1232", "target": "218", "attributes": { "weight": 2 } }, { "key": "18450", "source": "1232", "target": "1738", "attributes": { "weight": 1 } }, { "key": "34270", "source": "1232", "target": "337", "attributes": { "weight": 1 } }, { "key": "34239", "source": "1232", "target": "3133", "attributes": { "weight": 1 } }, { "key": "14037", "source": "1232", "target": "1031", "attributes": { "weight": 2 } }, { "key": "34310", "source": "1232", "target": "930", "attributes": { "weight": 1 } }, { "key": "15835", "source": "1232", "target": "220", "attributes": { "weight": 4 } }, { "key": "8773", "source": "1232", "target": "442", "attributes": { "weight": 5 } }, { "key": "34249", "source": "1232", "target": "911", "attributes": { "weight": 1 } }, { "key": "13157", "source": "1232", "target": "304", "attributes": { "weight": 2 } }, { "key": "34263", "source": "1232", "target": "1227", "attributes": { "weight": 1 } }, { "key": "27205", "source": "1232", "target": "2296", "attributes": { "weight": 1 } }, { "key": "8772", "source": "1232", "target": "195", "attributes": { "weight": 9 } }, { "key": "5129", "source": "1232", "target": "1046", "attributes": { "weight": 2 } }, { "key": "34281", "source": "1232", "target": "123", "attributes": { "weight": 1 } }, { "key": "34264", "source": "1232", "target": "1229", "attributes": { "weight": 1 } }, { "key": "17893", "source": "1232", "target": "1380", "attributes": { "weight": 1 } }, { "key": "34237", "source": "1232", "target": "1156", "attributes": { "weight": 1 } }, { "key": "34254", "source": "1232", "target": "1207", "attributes": { "weight": 1 } }, { "key": "5127", "source": "1232", "target": "779", "attributes": { "weight": 3 } }, { "key": "34293", "source": "1232", "target": "1309", "attributes": { "weight": 1 } }, { "key": "15838", "source": "1232", "target": "925", "attributes": { "weight": 2 } }, { "key": "34238", "source": "1232", "target": "1159", "attributes": { "weight": 1 } }, { "key": "10681", "source": "1232", "target": "43", "attributes": { "weight": 2 } }, { "key": "5131", "source": "1232", "target": "468", "attributes": { "weight": 8 } }, { "key": "31896", "source": "1232", "target": "359", "attributes": { "weight": 1 } }, { "key": "29029", "source": "1232", "target": "495", "attributes": { "weight": 2 } }, { "key": "29536", "source": "1232", "target": "1415", "attributes": { "weight": 1 } }, { "key": "26588", "source": "1232", "target": "189", "attributes": { "weight": 2 } }, { "key": "34259", "source": "1232", "target": "109", "attributes": { "weight": 1 } }, { "key": "15839", "source": "1232", "target": "595", "attributes": { "weight": 2 } }, { "key": "34244", "source": "1232", "target": "1179", "attributes": { "weight": 1 } }, { "key": "34260", "source": "1232", "target": "917", "attributes": { "weight": 1 } }, { "key": "34287", "source": "1232", "target": "372", "attributes": { "weight": 1 } }, { "key": "34279", "source": "1232", "target": "1286", "attributes": { "weight": 1 } }, { "key": "5126", "source": "1232", "target": "1036", "attributes": { "weight": 2 } }, { "key": "34283", "source": "1232", "target": "1291", "attributes": { "weight": 1 } }, { "key": "34280", "source": "1232", "target": "1287", "attributes": { "weight": 1 } }, { "key": "34284", "source": "1232", "target": "1090", "attributes": { "weight": 1 } }, { "key": "34344", "source": "1233", "target": "1201", "attributes": { "weight": 1 } }, { "key": "34360", "source": "1233", "target": "2229", "attributes": { "weight": 1 } }, { "key": "7315", "source": "1233", "target": "154", "attributes": { "weight": 2 } }, { "key": "11543", "source": "1233", "target": "358", "attributes": { "weight": 2 } }, { "key": "34366", "source": "1233", "target": "1241", "attributes": { "weight": 1 } }, { "key": "18228", "source": "1233", "target": "1197", "attributes": { "weight": 3 } }, { "key": "34431", "source": "1233", "target": "48", "attributes": { "weight": 1 } }, { "key": "34326", "source": "1233", "target": "1174", "attributes": { "weight": 1 } }, { "key": "34315", "source": "1233", "target": "380", "attributes": { "weight": 1 } }, { "key": "34437", "source": "1233", "target": "417", "attributes": { "weight": 1 } }, { "key": "34324", "source": "1233", "target": "1169", "attributes": { "weight": 1 } }, { "key": "34428", "source": "1233", "target": "1343", "attributes": { "weight": 1 } }, { "key": "28388", "source": "1233", "target": "580", "attributes": { "weight": 2 } }, { "key": "34385", "source": "1233", "target": "1273", "attributes": { "weight": 1 } }, { "key": "34345", "source": "1233", "target": "1047", "attributes": { "weight": 1 } }, { "key": "5141", "source": "1233", "target": "1294", "attributes": { "weight": 3 } }, { "key": "34368", "source": "1233", "target": "1248", "attributes": { "weight": 1 } }, { "key": "34379", "source": "1233", "target": "1263", "attributes": { "weight": 1 } }, { "key": "34371", "source": "1233", "target": "1250", "attributes": { "weight": 1 } }, { "key": "34339", "source": "1233", "target": "389", "attributes": { "weight": 1 } }, { "key": "34322", "source": "1233", "target": "237", "attributes": { "weight": 1 } }, { "key": "34376", "source": "1233", "target": "1256", "attributes": { "weight": 1 } }, { "key": "34433", "source": "1233", "target": "1348", "attributes": { "weight": 1 } }, { "key": "34329", "source": "1233", "target": "778", "attributes": { "weight": 1 } }, { "key": "7317", "source": "1233", "target": "1063", "attributes": { "weight": 2 } }, { "key": "10683", "source": "1233", "target": "43", "attributes": { "weight": 2 } }, { "key": "34372", "source": "1233", "target": "30", "attributes": { "weight": 1 } }, { "key": "34381", "source": "1233", "target": "545", "attributes": { "weight": 1 } }, { "key": "34416", "source": "1233", "target": "407", "attributes": { "weight": 1 } }, { "key": "34311", "source": "1233", "target": "1140", "attributes": { "weight": 1 } }, { "key": "34343", "source": "1233", "target": "1199", "attributes": { "weight": 1 } }, { "key": "34363", "source": "1233", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34350", "source": "1233", "target": "108", "attributes": { "weight": 1 } }, { "key": "34364", "source": "1233", "target": "1234", "attributes": { "weight": 1 } }, { "key": "15846", "source": "1233", "target": "1329", "attributes": { "weight": 2 } }, { "key": "34313", "source": "1233", "target": "2780", "attributes": { "weight": 1 } }, { "key": "34340", "source": "1233", "target": "1526", "attributes": { "weight": 1 } }, { "key": "34403", "source": "1233", "target": "1302", "attributes": { "weight": 1 } }, { "key": "34361", "source": "1233", "target": "1229", "attributes": { "weight": 1 } }, { "key": "34419", "source": "1233", "target": "1655", "attributes": { "weight": 1 } }, { "key": "9786", "source": "1233", "target": "396", "attributes": { "weight": 4 } }, { "key": "34346", "source": "1233", "target": "369", "attributes": { "weight": 1 } }, { "key": "34386", "source": "1233", "target": "1275", "attributes": { "weight": 1 } }, { "key": "7313", "source": "1233", "target": "926", "attributes": { "weight": 4 } }, { "key": "15844", "source": "1233", "target": "924", "attributes": { "weight": 2 } }, { "key": "34395", "source": "1233", "target": "1290", "attributes": { "weight": 1 } }, { "key": "34342", "source": "1233", "target": "1645", "attributes": { "weight": 1 } }, { "key": "15840", "source": "1233", "target": "220", "attributes": { "weight": 4 } }, { "key": "34412", "source": "1233", "target": "1321", "attributes": { "weight": 1 } }, { "key": "34320", "source": "1233", "target": "1163", "attributes": { "weight": 1 } }, { "key": "27207", "source": "1233", "target": "2666", "attributes": { "weight": 1 } }, { "key": "28576", "source": "1233", "target": "208", "attributes": { "weight": 2 } }, { "key": "5138", "source": "1233", "target": "371", "attributes": { "weight": 3 } }, { "key": "5135", "source": "1233", "target": "1046", "attributes": { "weight": 3 } }, { "key": "34408", "source": "1233", "target": "1315", "attributes": { "weight": 1 } }, { "key": "34316", "source": "1233", "target": "1148", "attributes": { "weight": 1 } }, { "key": "5139", "source": "1233", "target": "123", "attributes": { "weight": 4 } }, { "key": "14039", "source": "1233", "target": "1323", "attributes": { "weight": 2 } }, { "key": "34335", "source": "1233", "target": "1188", "attributes": { "weight": 1 } }, { "key": "34424", "source": "1233", "target": "635", "attributes": { "weight": 1 } }, { "key": "15845", "source": "1233", "target": "925", "attributes": { "weight": 3 } }, { "key": "34353", "source": "1233", "target": "1224", "attributes": { "weight": 1 } }, { "key": "34348", "source": "1233", "target": "1214", "attributes": { "weight": 1 } }, { "key": "28575", "source": "1233", "target": "337", "attributes": { "weight": 2 } }, { "key": "34383", "source": "1233", "target": "1269", "attributes": { "weight": 1 } }, { "key": "34375", "source": "1233", "target": "136", "attributes": { "weight": 1 } }, { "key": "34377", "source": "1233", "target": "1260", "attributes": { "weight": 1 } }, { "key": "10215", "source": "1233", "target": "1322", "attributes": { "weight": 3 } }, { "key": "34352", "source": "1233", "target": "1221", "attributes": { "weight": 1 } }, { "key": "7314", "source": "1233", "target": "373", "attributes": { "weight": 2 } }, { "key": "34407", "source": "1233", "target": "633", "attributes": { "weight": 1 } }, { "key": "34400", "source": "1233", "target": "785", "attributes": { "weight": 1 } }, { "key": "34347", "source": "1233", "target": "199", "attributes": { "weight": 1 } }, { "key": "26589", "source": "1233", "target": "454", "attributes": { "weight": 2 } }, { "key": "34421", "source": "1233", "target": "408", "attributes": { "weight": 1 } }, { "key": "34404", "source": "1233", "target": "1305", "attributes": { "weight": 1 } }, { "key": "34398", "source": "1233", "target": "1296", "attributes": { "weight": 1 } }, { "key": "34354", "source": "1233", "target": "1225", "attributes": { "weight": 1 } }, { "key": "34418", "source": "1233", "target": "1330", "attributes": { "weight": 1 } }, { "key": "34390", "source": "1233", "target": "401", "attributes": { "weight": 1 } }, { "key": "34323", "source": "1233", "target": "938", "attributes": { "weight": 1 } }, { "key": "34396", "source": "1233", "target": "212", "attributes": { "weight": 1 } }, { "key": "34373", "source": "1233", "target": "544", "attributes": { "weight": 1 } }, { "key": "5134", "source": "1233", "target": "368", "attributes": { "weight": 3 } }, { "key": "34401", "source": "1233", "target": "1300", "attributes": { "weight": 1 } }, { "key": "34411", "source": "1233", "target": "1316", "attributes": { "weight": 1 } }, { "key": "34405", "source": "1233", "target": "1307", "attributes": { "weight": 1 } }, { "key": "34349", "source": "1233", "target": "390", "attributes": { "weight": 1 } }, { "key": "31467", "source": "1233", "target": "3", "attributes": { "weight": 2 } }, { "key": "34392", "source": "1233", "target": "1287", "attributes": { "weight": 1 } }, { "key": "34387", "source": "1233", "target": "399", "attributes": { "weight": 2 } }, { "key": "34318", "source": "1233", "target": "1157", "attributes": { "weight": 1 } }, { "key": "34429", "source": "1233", "target": "1346", "attributes": { "weight": 1 } }, { "key": "34334", "source": "1233", "target": "1184", "attributes": { "weight": 1 } }, { "key": "34336", "source": "1233", "target": "1190", "attributes": { "weight": 1 } }, { "key": "34312", "source": "1233", "target": "379", "attributes": { "weight": 1 } }, { "key": "34378", "source": "1233", "target": "1262", "attributes": { "weight": 1 } }, { "key": "34394", "source": "1233", "target": "1289", "attributes": { "weight": 1 } }, { "key": "34333", "source": "1233", "target": "383", "attributes": { "weight": 1 } }, { "key": "34425", "source": "1233", "target": "218", "attributes": { "weight": 1 } }, { "key": "34409", "source": "1233", "target": "634", "attributes": { "weight": 1 } }, { "key": "34314", "source": "1233", "target": "1144", "attributes": { "weight": 1 } }, { "key": "34370", "source": "1233", "target": "920", "attributes": { "weight": 1 } }, { "key": "34430", "source": "1233", "target": "930", "attributes": { "weight": 1 } }, { "key": "34415", "source": "1233", "target": "406", "attributes": { "weight": 1 } }, { "key": "32395", "source": "1233", "target": "791", "attributes": { "weight": 2 } }, { "key": "15841", "source": "1233", "target": "912", "attributes": { "weight": 2 } }, { "key": "8775", "source": "1233", "target": "442", "attributes": { "weight": 3 } }, { "key": "34410", "source": "1233", "target": "405", "attributes": { "weight": 1 } }, { "key": "34426", "source": "1233", "target": "413", "attributes": { "weight": 1 } }, { "key": "34367", "source": "1233", "target": "205", "attributes": { "weight": 1 } }, { "key": "34382", "source": "1233", "target": "397", "attributes": { "weight": 1 } }, { "key": "13159", "source": "1233", "target": "304", "attributes": { "weight": 2 } }, { "key": "34338", "source": "1233", "target": "388", "attributes": { "weight": 1 } }, { "key": "15843", "source": "1233", "target": "921", "attributes": { "weight": 2 } }, { "key": "34356", "source": "1233", "target": "918", "attributes": { "weight": 1 } }, { "key": "15842", "source": "1233", "target": "913", "attributes": { "weight": 3 } }, { "key": "34422", "source": "1233", "target": "124", "attributes": { "weight": 1 } }, { "key": "34399", "source": "1233", "target": "214", "attributes": { "weight": 1 } }, { "key": "34438", "source": "1233", "target": "418", "attributes": { "weight": 1 } }, { "key": "34417", "source": "1233", "target": "961", "attributes": { "weight": 1 } }, { "key": "5137", "source": "1233", "target": "468", "attributes": { "weight": 6 } }, { "key": "34414", "source": "1233", "target": "1326", "attributes": { "weight": 1 } }, { "key": "34321", "source": "1233", "target": "1165", "attributes": { "weight": 1 } }, { "key": "34374", "source": "1233", "target": "1255", "attributes": { "weight": 1 } }, { "key": "34406", "source": "1233", "target": "215", "attributes": { "weight": 1 } }, { "key": "8774", "source": "1233", "target": "195", "attributes": { "weight": 9 } }, { "key": "34341", "source": "1233", "target": "1196", "attributes": { "weight": 1 } }, { "key": "34358", "source": "1233", "target": "1227", "attributes": { "weight": 1 } }, { "key": "34351", "source": "1233", "target": "1218", "attributes": { "weight": 1 } }, { "key": "34355", "source": "1233", "target": "109", "attributes": { "weight": 1 } }, { "key": "34388", "source": "1233", "target": "189", "attributes": { "weight": 1 } }, { "key": "34389", "source": "1233", "target": "1281", "attributes": { "weight": 1 } }, { "key": "34328", "source": "1233", "target": "1175", "attributes": { "weight": 1 } }, { "key": "34362", "source": "1233", "target": "394", "attributes": { "weight": 1 } }, { "key": "34331", "source": "1233", "target": "1182", "attributes": { "weight": 1 } }, { "key": "34402", "source": "1233", "target": "403", "attributes": { "weight": 1 } }, { "key": "34330", "source": "1233", "target": "1180", "attributes": { "weight": 1 } }, { "key": "34420", "source": "1233", "target": "1331", "attributes": { "weight": 1 } }, { "key": "25695", "source": "1233", "target": "278", "attributes": { "weight": 1 } }, { "key": "7316", "source": "1233", "target": "377", "attributes": { "weight": 2 } }, { "key": "10684", "source": "1233", "target": "1314", "attributes": { "weight": 3 } }, { "key": "34332", "source": "1233", "target": "1183", "attributes": { "weight": 1 } }, { "key": "5136", "source": "1233", "target": "338", "attributes": { "weight": 5 } }, { "key": "34365", "source": "1233", "target": "1236", "attributes": { "weight": 1 } }, { "key": "34319", "source": "1233", "target": "1162", "attributes": { "weight": 1 } }, { "key": "34413", "source": "1233", "target": "1325", "attributes": { "weight": 1 } }, { "key": "34357", "source": "1233", "target": "391", "attributes": { "weight": 1 } }, { "key": "34397", "source": "1233", "target": "1291", "attributes": { "weight": 1 } }, { "key": "34436", "source": "1233", "target": "333", "attributes": { "weight": 1 } }, { "key": "5140", "source": "1233", "target": "1090", "attributes": { "weight": 3 } }, { "key": "34393", "source": "1233", "target": "1288", "attributes": { "weight": 1 } }, { "key": "34384", "source": "1233", "target": "1272", "attributes": { "weight": 1 } }, { "key": "34434", "source": "1233", "target": "415", "attributes": { "weight": 1 } }, { "key": "34423", "source": "1233", "target": "409", "attributes": { "weight": 1 } }, { "key": "34380", "source": "1233", "target": "1264", "attributes": { "weight": 1 } }, { "key": "14038", "source": "1233", "target": "1031", "attributes": { "weight": 2 } }, { "key": "34427", "source": "1233", "target": "1342", "attributes": { "weight": 1 } }, { "key": "34432", "source": "1233", "target": "414", "attributes": { "weight": 1 } }, { "key": "5133", "source": "1233", "target": "779", "attributes": { "weight": 3 } }, { "key": "34435", "source": "1233", "target": "931", "attributes": { "weight": 1 } }, { "key": "34317", "source": "1233", "target": "1152", "attributes": { "weight": 1 } }, { "key": "34327", "source": "1233", "target": "631", "attributes": { "weight": 1 } }, { "key": "34337", "source": "1233", "target": "911", "attributes": { "weight": 1 } }, { "key": "34369", "source": "1233", "target": "1249", "attributes": { "weight": 1 } }, { "key": "34391", "source": "1233", "target": "1286", "attributes": { "weight": 1 } }, { "key": "13158", "source": "1233", "target": "387", "attributes": { "weight": 2 } }, { "key": "34359", "source": "1233", "target": "3145", "attributes": { "weight": 1 } }, { "key": "34325", "source": "1233", "target": "1170", "attributes": { "weight": 1 } }, { "key": "5143", "source": "1234", "target": "368", "attributes": { "weight": 2 } }, { "key": "34440", "source": "1234", "target": "1233", "attributes": { "weight": 1 } }, { "key": "21938", "source": "1234", "target": "337", "attributes": { "weight": 2 } }, { "key": "15857", "source": "1234", "target": "925", "attributes": { "weight": 1 } }, { "key": "18718", "source": "1234", "target": "1552", "attributes": { "weight": 2 } }, { "key": "8777", "source": "1234", "target": "195", "attributes": { "weight": 4 } }, { "key": "18717", "source": "1234", "target": "1526", "attributes": { "weight": 2 } }, { "key": "21937", "source": "1234", "target": "2293", "attributes": { "weight": 1 } }, { "key": "34439", "source": "1234", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34441", "source": "1234", "target": "338", "attributes": { "weight": 1 } }, { "key": "5144", "source": "1234", "target": "123", "attributes": { "weight": 3 } }, { "key": "5147", "source": "1235", "target": "921", "attributes": { "weight": 3 } }, { "key": "5148", "source": "1235", "target": "1090", "attributes": { "weight": 2 } }, { "key": "5145", "source": "1235", "target": "779", "attributes": { "weight": 2 } }, { "key": "5146", "source": "1235", "target": "1196", "attributes": { "weight": 2 } }, { "key": "8778", "source": "1235", "target": "195", "attributes": { "weight": 4 } }, { "key": "34444", "source": "1236", "target": "1047", "attributes": { "weight": 1 } }, { "key": "5153", "source": "1236", "target": "338", "attributes": { "weight": 4 } }, { "key": "18237", "source": "1236", "target": "2205", "attributes": { "weight": 1 } }, { "key": "15864", "source": "1236", "target": "1262", "attributes": { "weight": 1 } }, { "key": "15863", "source": "1236", "target": "921", "attributes": { "weight": 1 } }, { "key": "18236", "source": "1236", "target": "1197", "attributes": { "weight": 4 } }, { "key": "36593", "source": "1236", "target": "199", "attributes": { "weight": 1 } }, { "key": "15869", "source": "1236", "target": "215", "attributes": { "weight": 2 } }, { "key": "34446", "source": "1236", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5150", "source": "1236", "target": "1196", "attributes": { "weight": 2 } }, { "key": "8779", "source": "1236", "target": "195", "attributes": { "weight": 9 } }, { "key": "15861", "source": "1236", "target": "938", "attributes": { "weight": 1 } }, { "key": "18721", "source": "1236", "target": "1263", "attributes": { "weight": 2 } }, { "key": "9787", "source": "1236", "target": "387", "attributes": { "weight": 2 } }, { "key": "18720", "source": "1236", "target": "337", "attributes": { "weight": 2 } }, { "key": "5154", "source": "1236", "target": "371", "attributes": { "weight": 2 } }, { "key": "15867", "source": "1236", "target": "925", "attributes": { "weight": 1 } }, { "key": "15865", "source": "1236", "target": "208", "attributes": { "weight": 3 } }, { "key": "34445", "source": "1236", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5157", "source": "1236", "target": "1294", "attributes": { "weight": 3 } }, { "key": "34443", "source": "1236", "target": "1182", "attributes": { "weight": 1 } }, { "key": "7319", "source": "1236", "target": "1063", "attributes": { "weight": 1 } }, { "key": "15862", "source": "1236", "target": "913", "attributes": { "weight": 1 } }, { "key": "15871", "source": "1236", "target": "218", "attributes": { "weight": 3 } }, { "key": "34447", "source": "1236", "target": "1323", "attributes": { "weight": 1 } }, { "key": "15870", "source": "1236", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18719", "source": "1236", "target": "1174", "attributes": { "weight": 2 } }, { "key": "15866", "source": "1236", "target": "924", "attributes": { "weight": 1 } }, { "key": "15868", "source": "1236", "target": "1305", "attributes": { "weight": 1 } }, { "key": "5152", "source": "1236", "target": "370", "attributes": { "weight": 3 } }, { "key": "5151", "source": "1236", "target": "368", "attributes": { "weight": 2 } }, { "key": "36594", "source": "1236", "target": "1228", "attributes": { "weight": 1 } }, { "key": "5156", "source": "1236", "target": "1090", "attributes": { "weight": 2 } }, { "key": "5149", "source": "1236", "target": "779", "attributes": { "weight": 2 } }, { "key": "5155", "source": "1236", "target": "123", "attributes": { "weight": 3 } }, { "key": "5158", "source": "1237", "target": "1090", "attributes": { "weight": 2 } }, { "key": "5160", "source": "1238", "target": "1196", "attributes": { "weight": 2 } }, { "key": "18722", "source": "1238", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18723", "source": "1238", "target": "199", "attributes": { "weight": 2 } }, { "key": "18725", "source": "1238", "target": "408", "attributes": { "weight": 1 } }, { "key": "5161", "source": "1238", "target": "1090", "attributes": { "weight": 2 } }, { "key": "18726", "source": "1238", "target": "218", "attributes": { "weight": 2 } }, { "key": "36595", "source": "1238", "target": "212", "attributes": { "weight": 1 } }, { "key": "10216", "source": "1238", "target": "938", "attributes": { "weight": 2 } }, { "key": "21941", "source": "1238", "target": "2300", "attributes": { "weight": 1 } }, { "key": "18724", "source": "1238", "target": "208", "attributes": { "weight": 2 } }, { "key": "5163", "source": "1239", "target": "1090", "attributes": { "weight": 2 } }, { "key": "34449", "source": "1239", "target": "1047", "attributes": { "weight": 1 } }, { "key": "15875", "source": "1239", "target": "913", "attributes": { "weight": 1 } }, { "key": "24994", "source": "1240", "target": "2345", "attributes": { "weight": 2 } }, { "key": "24990", "source": "1240", "target": "1960", "attributes": { "weight": 2 } }, { "key": "24996", "source": "1240", "target": "1512", "attributes": { "weight": 2 } }, { "key": "24992", "source": "1240", "target": "1820", "attributes": { "weight": 2 } }, { "key": "24987", "source": "1240", "target": "2538", "attributes": { "weight": 1 } }, { "key": "21449", "source": "1240", "target": "1823", "attributes": { "weight": 3 } }, { "key": "24985", "source": "1240", "target": "2537", "attributes": { "weight": 1 } }, { "key": "24984", "source": "1240", "target": "2546", "attributes": { "weight": 2 } }, { "key": "24991", "source": "1240", "target": "2540", "attributes": { "weight": 2 } }, { "key": "21446", "source": "1240", "target": "2279", "attributes": { "weight": 2 } }, { "key": "24988", "source": "1240", "target": "707", "attributes": { "weight": 2 } }, { "key": "21448", "source": "1240", "target": "2280", "attributes": { "weight": 3 } }, { "key": "24993", "source": "1240", "target": "2548", "attributes": { "weight": 1 } }, { "key": "24995", "source": "1240", "target": "1822", "attributes": { "weight": 2 } }, { "key": "5164", "source": "1240", "target": "580", "attributes": { "weight": 3 } }, { "key": "28405", "source": "1240", "target": "2539", "attributes": { "weight": 1 } }, { "key": "21447", "source": "1240", "target": "698", "attributes": { "weight": 3 } }, { "key": "24982", "source": "1240", "target": "2536", "attributes": { "weight": 1 } }, { "key": "24986", "source": "1240", "target": "1869", "attributes": { "weight": 1 } }, { "key": "24983", "source": "1240", "target": "2545", "attributes": { "weight": 1 } }, { "key": "24989", "source": "1240", "target": "1979", "attributes": { "weight": 2 } }, { "key": "21445", "source": "1240", "target": "1191", "attributes": { "weight": 3 } }, { "key": "8782", "source": "1241", "target": "195", "attributes": { "weight": 5 } }, { "key": "5165", "source": "1241", "target": "779", "attributes": { "weight": 2 } }, { "key": "34452", "source": "1241", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34453", "source": "1241", "target": "123", "attributes": { "weight": 1 } }, { "key": "36596", "source": "1241", "target": "1552", "attributes": { "weight": 1 } }, { "key": "5166", "source": "1241", "target": "1196", "attributes": { "weight": 2 } }, { "key": "18727", "source": "1241", "target": "1228", "attributes": { "weight": 2 } }, { "key": "5167", "source": "1241", "target": "368", "attributes": { "weight": 2 } }, { "key": "18728", "source": "1241", "target": "208", "attributes": { "weight": 2 } }, { "key": "5234", "source": "1242", "target": "368", "attributes": { "weight": 2 } }, { "key": "24737", "source": "1243", "target": "2525", "attributes": { "weight": 2 } }, { "key": "5236", "source": "1243", "target": "128", "attributes": { "weight": 3 } }, { "key": "10219", "source": "1243", "target": "1322", "attributes": { "weight": 1 } }, { "key": "10217", "source": "1243", "target": "711", "attributes": { "weight": 1 } }, { "key": "24735", "source": "1243", "target": "2523", "attributes": { "weight": 2 } }, { "key": "10218", "source": "1243", "target": "1694", "attributes": { "weight": 1 } }, { "key": "10220", "source": "1243", "target": "1697", "attributes": { "weight": 1 } }, { "key": "24733", "source": "1243", "target": "2521", "attributes": { "weight": 2 } }, { "key": "24734", "source": "1243", "target": "2522", "attributes": { "weight": 2 } }, { "key": "10221", "source": "1243", "target": "1701", "attributes": { "weight": 1 } }, { "key": "24732", "source": "1243", "target": "2519", "attributes": { "weight": 1 } }, { "key": "26223", "source": "1244", "target": "30", "attributes": { "weight": 1 } }, { "key": "5237", "source": "1244", "target": "1149", "attributes": { "weight": 4 } }, { "key": "9789", "source": "1244", "target": "27", "attributes": { "weight": 2 } }, { "key": "23198", "source": "1245", "target": "1285", "attributes": { "weight": 2 } }, { "key": "5242", "source": "1245", "target": "1284", "attributes": { "weight": 2 } }, { "key": "23197", "source": "1245", "target": "1227", "attributes": { "weight": 2 } }, { "key": "10222", "source": "1245", "target": "1322", "attributes": { "weight": 1 } }, { "key": "5244", "source": "1245", "target": "1326", "attributes": { "weight": 2 } }, { "key": "5243", "source": "1245", "target": "1294", "attributes": { "weight": 2 } }, { "key": "34461", "source": "1245", "target": "1197", "attributes": { "weight": 1 } }, { "key": "28218", "source": "1245", "target": "2726", "attributes": { "weight": 1 } }, { "key": "34462", "source": "1245", "target": "1323", "attributes": { "weight": 1 } }, { "key": "36758", "source": "1245", "target": "333", "attributes": { "weight": 1 } }, { "key": "5241", "source": "1245", "target": "338", "attributes": { "weight": 5 } }, { "key": "5269", "source": "1246", "target": "368", "attributes": { "weight": 2 } }, { "key": "20301", "source": "1247", "target": "1546", "attributes": { "weight": 1 } }, { "key": "20290", "source": "1247", "target": "221", "attributes": { "weight": 1 } }, { "key": "20298", "source": "1247", "target": "459", "attributes": { "weight": 3 } }, { "key": "20294", "source": "1247", "target": "451", "attributes": { "weight": 3 } }, { "key": "32138", "source": "1247", "target": "1564", "attributes": { "weight": 1 } }, { "key": "20300", "source": "1247", "target": "464", "attributes": { "weight": 1 } }, { "key": "27099", "source": "1247", "target": "494", "attributes": { "weight": 1 } }, { "key": "20307", "source": "1247", "target": "56", "attributes": { "weight": 4 } }, { "key": "29682", "source": "1247", "target": "421", "attributes": { "weight": 1 } }, { "key": "27081", "source": "1247", "target": "130", "attributes": { "weight": 2 } }, { "key": "27100", "source": "1247", "target": "1094", "attributes": { "weight": 1 } }, { "key": "20297", "source": "1247", "target": "2251", "attributes": { "weight": 1 } }, { "key": "31327", "source": "1247", "target": "674", "attributes": { "weight": 1 } }, { "key": "20287", "source": "1247", "target": "1353", "attributes": { "weight": 3 } }, { "key": "27083", "source": "1247", "target": "440", "attributes": { "weight": 1 } }, { "key": "27087", "source": "1247", "target": "183", "attributes": { "weight": 1 } }, { "key": "27085", "source": "1247", "target": "447", "attributes": { "weight": 1 } }, { "key": "27091", "source": "1247", "target": "1362", "attributes": { "weight": 1 } }, { "key": "27090", "source": "1247", "target": "458", "attributes": { "weight": 2 } }, { "key": "27086", "source": "1247", "target": "860", "attributes": { "weight": 3 } }, { "key": "27093", "source": "1247", "target": "54", "attributes": { "weight": 1 } }, { "key": "20289", "source": "1247", "target": "1354", "attributes": { "weight": 2 } }, { "key": "32137", "source": "1247", "target": "1141", "attributes": { "weight": 1 } }, { "key": "20296", "source": "1247", "target": "1360", "attributes": { "weight": 1 } }, { "key": "5338", "source": "1247", "target": "468", "attributes": { "weight": 3 } }, { "key": "20304", "source": "1247", "target": "229", "attributes": { "weight": 1 } }, { "key": "20291", "source": "1247", "target": "443", "attributes": { "weight": 1 } }, { "key": "27094", "source": "1247", "target": "1366", "attributes": { "weight": 2 } }, { "key": "12268", "source": "1247", "target": "1219", "attributes": { "weight": 1 } }, { "key": "27084", "source": "1247", "target": "442", "attributes": { "weight": 1 } }, { "key": "20302", "source": "1247", "target": "2094", "attributes": { "weight": 2 } }, { "key": "37451", "source": "1247", "target": "424", "attributes": { "weight": 1 } }, { "key": "20303", "source": "1247", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20308", "source": "1247", "target": "235", "attributes": { "weight": 1 } }, { "key": "12267", "source": "1247", "target": "1161", "attributes": { "weight": 1 } }, { "key": "27097", "source": "1247", "target": "479", "attributes": { "weight": 1 } }, { "key": "20288", "source": "1247", "target": "429", "attributes": { "weight": 2 } }, { "key": "27095", "source": "1247", "target": "474", "attributes": { "weight": 1 } }, { "key": "27082", "source": "1247", "target": "858", "attributes": { "weight": 2 } }, { "key": "20293", "source": "1247", "target": "449", "attributes": { "weight": 1 } }, { "key": "27096", "source": "1247", "target": "1812", "attributes": { "weight": 1 } }, { "key": "20295", "source": "1247", "target": "1358", "attributes": { "weight": 2 } }, { "key": "20292", "source": "1247", "target": "1070", "attributes": { "weight": 1 } }, { "key": "27098", "source": "1247", "target": "483", "attributes": { "weight": 1 } }, { "key": "20305", "source": "1247", "target": "231", "attributes": { "weight": 4 } }, { "key": "20299", "source": "1247", "target": "462", "attributes": { "weight": 2 } }, { "key": "20306", "source": "1247", "target": "480", "attributes": { "weight": 2 } }, { "key": "27092", "source": "1247", "target": "53", "attributes": { "weight": 2 } }, { "key": "27088", "source": "1247", "target": "452", "attributes": { "weight": 1 } }, { "key": "11169", "source": "1247", "target": "220", "attributes": { "weight": 3 } }, { "key": "27089", "source": "1247", "target": "1357", "attributes": { "weight": 1 } }, { "key": "18751", "source": "1248", "target": "2229", "attributes": { "weight": 1 } }, { "key": "18750", "source": "1248", "target": "1526", "attributes": { "weight": 2 } }, { "key": "18752", "source": "1248", "target": "337", "attributes": { "weight": 2 } }, { "key": "5339", "source": "1248", "target": "368", "attributes": { "weight": 2 } }, { "key": "34493", "source": "1248", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34492", "source": "1248", "target": "1197", "attributes": { "weight": 1 } }, { "key": "36628", "source": "1248", "target": "1152", "attributes": { "weight": 1 } }, { "key": "34494", "source": "1249", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5341", "source": "1249", "target": "368", "attributes": { "weight": 2 } }, { "key": "5345", "source": "1250", "target": "368", "attributes": { "weight": 2 } }, { "key": "8824", "source": "1250", "target": "195", "attributes": { "weight": 3 } }, { "key": "34496", "source": "1250", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5374", "source": "1251", "target": "1294", "attributes": { "weight": 2 } }, { "key": "5373", "source": "1251", "target": "1291", "attributes": { "weight": 3 } }, { "key": "11604", "source": "1251", "target": "938", "attributes": { "weight": 1 } }, { "key": "11605", "source": "1251", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5375", "source": "1251", "target": "1322", "attributes": { "weight": 3 } }, { "key": "11606", "source": "1251", "target": "370", "attributes": { "weight": 1 } }, { "key": "11610", "source": "1251", "target": "1329", "attributes": { "weight": 2 } }, { "key": "11609", "source": "1251", "target": "1323", "attributes": { "weight": 1 } }, { "key": "11611", "source": "1251", "target": "1331", "attributes": { "weight": 1 } }, { "key": "11608", "source": "1251", "target": "1284", "attributes": { "weight": 1 } }, { "key": "11607", "source": "1251", "target": "337", "attributes": { "weight": 1 } }, { "key": "11603", "source": "1251", "target": "1152", "attributes": { "weight": 1 } }, { "key": "9661", "source": "1252", "target": "1626", "attributes": { "weight": 1 } }, { "key": "5376", "source": "1252", "target": "171", "attributes": { "weight": 4 } }, { "key": "21476", "source": "1252", "target": "2285", "attributes": { "weight": 3 } }, { "key": "9663", "source": "1252", "target": "178", "attributes": { "weight": 5 } }, { "key": "9662", "source": "1252", "target": "172", "attributes": { "weight": 4 } }, { "key": "32555", "source": "1253", "target": "791", "attributes": { "weight": 1 } }, { "key": "29687", "source": "1253", "target": "421", "attributes": { "weight": 1 } }, { "key": "29688", "source": "1253", "target": "171", "attributes": { "weight": 1 } }, { "key": "32274", "source": "1253", "target": "164", "attributes": { "weight": 1 } }, { "key": "29698", "source": "1253", "target": "2782", "attributes": { "weight": 1 } }, { "key": "23891", "source": "1253", "target": "2463", "attributes": { "weight": 2 } }, { "key": "28624", "source": "1253", "target": "1060", "attributes": { "weight": 3 } }, { "key": "29692", "source": "1253", "target": "2288", "attributes": { "weight": 1 } }, { "key": "29686", "source": "1253", "target": "1046", "attributes": { "weight": 2 } }, { "key": "23893", "source": "1253", "target": "2465", "attributes": { "weight": 3 } }, { "key": "22677", "source": "1253", "target": "1037", "attributes": { "weight": 2 } }, { "key": "29695", "source": "1253", "target": "2116", "attributes": { "weight": 1 } }, { "key": "29694", "source": "1253", "target": "70", "attributes": { "weight": 1 } }, { "key": "28623", "source": "1253", "target": "1801", "attributes": { "weight": 1 } }, { "key": "26144", "source": "1253", "target": "1056", "attributes": { "weight": 3 } }, { "key": "29697", "source": "1253", "target": "794", "attributes": { "weight": 1 } }, { "key": "5380", "source": "1253", "target": "1036", "attributes": { "weight": 7 } }, { "key": "29691", "source": "1253", "target": "2115", "attributes": { "weight": 1 } }, { "key": "28621", "source": "1253", "target": "359", "attributes": { "weight": 4 } }, { "key": "29684", "source": "1253", "target": "2883", "attributes": { "weight": 1 } }, { "key": "29696", "source": "1253", "target": "2891", "attributes": { "weight": 1 } }, { "key": "29693", "source": "1253", "target": "473", "attributes": { "weight": 1 } }, { "key": "17482", "source": "1253", "target": "358", "attributes": { "weight": 3 } }, { "key": "28620", "source": "1253", "target": "1045", "attributes": { "weight": 2 } }, { "key": "29690", "source": "1253", "target": "472", "attributes": { "weight": 1 } }, { "key": "23892", "source": "1253", "target": "1763", "attributes": { "weight": 3 } }, { "key": "29685", "source": "1253", "target": "419", "attributes": { "weight": 1 } }, { "key": "28622", "source": "1253", "target": "362", "attributes": { "weight": 3 } }, { "key": "29699", "source": "1253", "target": "1063", "attributes": { "weight": 1 } }, { "key": "29683", "source": "1253", "target": "130", "attributes": { "weight": 1 } }, { "key": "29689", "source": "1253", "target": "468", "attributes": { "weight": 1 } }, { "key": "5469", "source": "1254", "target": "338", "attributes": { "weight": 5 } }, { "key": "5470", "source": "1254", "target": "1284", "attributes": { "weight": 2 } }, { "key": "36763", "source": "1254", "target": "333", "attributes": { "weight": 1 } }, { "key": "23200", "source": "1254", "target": "1227", "attributes": { "weight": 4 } }, { "key": "10231", "source": "1254", "target": "1315", "attributes": { "weight": 1 } }, { "key": "34499", "source": "1254", "target": "1323", "attributes": { "weight": 1 } }, { "key": "5471", "source": "1254", "target": "1294", "attributes": { "weight": 2 } }, { "key": "34498", "source": "1254", "target": "1197", "attributes": { "weight": 1 } }, { "key": "10232", "source": "1254", "target": "1322", "attributes": { "weight": 1 } }, { "key": "5472", "source": "1254", "target": "1326", "attributes": { "weight": 2 } }, { "key": "23201", "source": "1254", "target": "1285", "attributes": { "weight": 1 } }, { "key": "5485", "source": "1255", "target": "1196", "attributes": { "weight": 2 } }, { "key": "18243", "source": "1255", "target": "1197", "attributes": { "weight": 2 } }, { "key": "18756", "source": "1255", "target": "1526", "attributes": { "weight": 2 } }, { "key": "5488", "source": "1255", "target": "123", "attributes": { "weight": 3 } }, { "key": "34504", "source": "1255", "target": "1233", "attributes": { "weight": 1 } }, { "key": "21992", "source": "1255", "target": "2212", "attributes": { "weight": 1 } }, { "key": "18755", "source": "1255", "target": "1174", "attributes": { "weight": 2 } }, { "key": "15962", "source": "1255", "target": "913", "attributes": { "weight": 1 } }, { "key": "36630", "source": "1255", "target": "1228", "attributes": { "weight": 1 } }, { "key": "36633", "source": "1255", "target": "1294", "attributes": { "weight": 1 } }, { "key": "8840", "source": "1255", "target": "195", "attributes": { "weight": 4 } }, { "key": "5487", "source": "1255", "target": "921", "attributes": { "weight": 2 } }, { "key": "36632", "source": "1255", "target": "1552", "attributes": { "weight": 1 } }, { "key": "18757", "source": "1255", "target": "124", "attributes": { "weight": 1 } }, { "key": "36631", "source": "1255", "target": "337", "attributes": { "weight": 1 } }, { "key": "5484", "source": "1255", "target": "779", "attributes": { "weight": 2 } }, { "key": "5486", "source": "1255", "target": "368", "attributes": { "weight": 2 } }, { "key": "21993", "source": "1256", "target": "337", "attributes": { "weight": 1 } }, { "key": "34510", "source": "1256", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5491", "source": "1256", "target": "368", "attributes": { "weight": 2 } }, { "key": "15965", "source": "1257", "target": "925", "attributes": { "weight": 1 } }, { "key": "5493", "source": "1257", "target": "123", "attributes": { "weight": 2 } }, { "key": "26335", "source": "1258", "target": "451", "attributes": { "weight": 1 } }, { "key": "26353", "source": "1258", "target": "231", "attributes": { "weight": 1 } }, { "key": "26333", "source": "1258", "target": "1355", "attributes": { "weight": 1 } }, { "key": "26345", "source": "1258", "target": "470", "attributes": { "weight": 3 } }, { "key": "26361", "source": "1258", "target": "499", "attributes": { "weight": 1 } }, { "key": "5494", "source": "1258", "target": "468", "attributes": { "weight": 2 } }, { "key": "26319", "source": "1258", "target": "857", "attributes": { "weight": 1 } }, { "key": "33539", "source": "1258", "target": "135", "attributes": { "weight": 1 } }, { "key": "26358", "source": "1258", "target": "193", "attributes": { "weight": 2 } }, { "key": "26338", "source": "1258", "target": "1117", "attributes": { "weight": 1 } }, { "key": "26342", "source": "1258", "target": "459", "attributes": { "weight": 1 } }, { "key": "26323", "source": "1258", "target": "59", "attributes": { "weight": 1 } }, { "key": "26326", "source": "1258", "target": "2644", "attributes": { "weight": 1 } }, { "key": "26341", "source": "1258", "target": "458", "attributes": { "weight": 1 } }, { "key": "26325", "source": "1258", "target": "436", "attributes": { "weight": 1 } }, { "key": "26322", "source": "1258", "target": "1107", "attributes": { "weight": 1 } }, { "key": "25877", "source": "1258", "target": "220", "attributes": { "weight": 1 } }, { "key": "26347", "source": "1258", "target": "471", "attributes": { "weight": 1 } }, { "key": "26340", "source": "1258", "target": "52", "attributes": { "weight": 1 } }, { "key": "27275", "source": "1258", "target": "57", "attributes": { "weight": 1 } }, { "key": "26343", "source": "1258", "target": "462", "attributes": { "weight": 1 } }, { "key": "26320", "source": "1258", "target": "1703", "attributes": { "weight": 1 } }, { "key": "26330", "source": "1258", "target": "674", "attributes": { "weight": 2 } }, { "key": "8851", "source": "1258", "target": "442", "attributes": { "weight": 2 } }, { "key": "26328", "source": "1258", "target": "443", "attributes": { "weight": 1 } }, { "key": "26334", "source": "1258", "target": "449", "attributes": { "weight": 1 } }, { "key": "26360", "source": "1258", "target": "495", "attributes": { "weight": 2 } }, { "key": "26339", "source": "1258", "target": "1358", "attributes": { "weight": 1 } }, { "key": "26351", "source": "1258", "target": "474", "attributes": { "weight": 1 } }, { "key": "26356", "source": "1258", "target": "1372", "attributes": { "weight": 2 } }, { "key": "23378", "source": "1258", "target": "183", "attributes": { "weight": 2 } }, { "key": "26329", "source": "1258", "target": "444", "attributes": { "weight": 1 } }, { "key": "26344", "source": "1258", "target": "1363", "attributes": { "weight": 1 } }, { "key": "26357", "source": "1258", "target": "56", "attributes": { "weight": 1 } }, { "key": "26349", "source": "1258", "target": "189", "attributes": { "weight": 2 } }, { "key": "26318", "source": "1258", "target": "1353", "attributes": { "weight": 1 } }, { "key": "26324", "source": "1258", "target": "424", "attributes": { "weight": 1 } }, { "key": "26331", "source": "1258", "target": "445", "attributes": { "weight": 1 } }, { "key": "26359", "source": "1258", "target": "2208", "attributes": { "weight": 1 } }, { "key": "26352", "source": "1258", "target": "1744", "attributes": { "weight": 2 } }, { "key": "26355", "source": "1258", "target": "483", "attributes": { "weight": 1 } }, { "key": "26321", "source": "1258", "target": "429", "attributes": { "weight": 1 } }, { "key": "11195", "source": "1258", "target": "473", "attributes": { "weight": 3 } }, { "key": "24101", "source": "1258", "target": "130", "attributes": { "weight": 3 } }, { "key": "11194", "source": "1258", "target": "452", "attributes": { "weight": 2 } }, { "key": "26332", "source": "1258", "target": "447", "attributes": { "weight": 1 } }, { "key": "26350", "source": "1258", "target": "190", "attributes": { "weight": 1 } }, { "key": "26337", "source": "1258", "target": "454", "attributes": { "weight": 1 } }, { "key": "26346", "source": "1258", "target": "54", "attributes": { "weight": 1 } }, { "key": "26327", "source": "1258", "target": "441", "attributes": { "weight": 1 } }, { "key": "32558", "source": "1258", "target": "791", "attributes": { "weight": 1 } }, { "key": "26336", "source": "1258", "target": "1357", "attributes": { "weight": 1 } }, { "key": "26348", "source": "1258", "target": "1367", "attributes": { "weight": 1 } }, { "key": "26354", "source": "1258", "target": "482", "attributes": { "weight": 1 } }, { "key": "5495", "source": "1259", "target": "779", "attributes": { "weight": 2 } }, { "key": "36634", "source": "1260", "target": "1228", "attributes": { "weight": 1 } }, { "key": "34512", "source": "1260", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5505", "source": "1260", "target": "368", "attributes": { "weight": 2 } }, { "key": "18758", "source": "1260", "target": "1526", "attributes": { "weight": 2 } }, { "key": "36635", "source": "1260", "target": "337", "attributes": { "weight": 1 } }, { "key": "34513", "source": "1260", "target": "1233", "attributes": { "weight": 1 } }, { "key": "7992", "source": "1261", "target": "1439", "attributes": { "weight": 3 } }, { "key": "7999", "source": "1261", "target": "1501", "attributes": { "weight": 1 } }, { "key": "8000", "source": "1261", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7996", "source": "1261", "target": "1490", "attributes": { "weight": 2 } }, { "key": "5511", "source": "1261", "target": "371", "attributes": { "weight": 3 } }, { "key": "8869", "source": "1261", "target": "109", "attributes": { "weight": 4 } }, { "key": "7990", "source": "1261", "target": "1436", "attributes": { "weight": 1 } }, { "key": "7993", "source": "1261", "target": "1446", "attributes": { "weight": 1 } }, { "key": "21752", "source": "1261", "target": "103", "attributes": { "weight": 2 } }, { "key": "24891", "source": "1261", "target": "1455", "attributes": { "weight": 1 } }, { "key": "14047", "source": "1261", "target": "1031", "attributes": { "weight": 1 } }, { "key": "7998", "source": "1261", "target": "1500", "attributes": { "weight": 1 } }, { "key": "21753", "source": "1261", "target": "108", "attributes": { "weight": 2 } }, { "key": "35242", "source": "1261", "target": "1030", "attributes": { "weight": 1 } }, { "key": "7991", "source": "1261", "target": "1437", "attributes": { "weight": 3 } }, { "key": "7994", "source": "1261", "target": "1186", "attributes": { "weight": 1 } }, { "key": "7997", "source": "1261", "target": "1499", "attributes": { "weight": 3 } }, { "key": "7995", "source": "1261", "target": "1486", "attributes": { "weight": 1 } }, { "key": "7341", "source": "1262", "target": "1063", "attributes": { "weight": 3 } }, { "key": "34516", "source": "1262", "target": "1047", "attributes": { "weight": 1 } }, { "key": "11617", "source": "1262", "target": "208", "attributes": { "weight": 2 } }, { "key": "5516", "source": "1262", "target": "123", "attributes": { "weight": 3 } }, { "key": "11616", "source": "1262", "target": "370", "attributes": { "weight": 3 } }, { "key": "29011", "source": "1262", "target": "220", "attributes": { "weight": 1 } }, { "key": "18244", "source": "1262", "target": "124", "attributes": { "weight": 1 } }, { "key": "35567", "source": "1262", "target": "135", "attributes": { "weight": 1 } }, { "key": "15967", "source": "1262", "target": "913", "attributes": { "weight": 1 } }, { "key": "12824", "source": "1262", "target": "780", "attributes": { "weight": 1 } }, { "key": "15968", "source": "1262", "target": "1236", "attributes": { "weight": 1 } }, { "key": "14049", "source": "1262", "target": "1031", "attributes": { "weight": 1 } }, { "key": "5517", "source": "1262", "target": "1090", "attributes": { "weight": 2 } }, { "key": "7340", "source": "1262", "target": "154", "attributes": { "weight": 2 } }, { "key": "18759", "source": "1262", "target": "1174", "attributes": { "weight": 1 } }, { "key": "11615", "source": "1262", "target": "199", "attributes": { "weight": 3 } }, { "key": "18760", "source": "1262", "target": "1552", "attributes": { "weight": 1 } }, { "key": "34517", "source": "1262", "target": "1232", "attributes": { "weight": 1 } }, { "key": "5514", "source": "1262", "target": "368", "attributes": { "weight": 2 } }, { "key": "7339", "source": "1262", "target": "1350", "attributes": { "weight": 3 } }, { "key": "34518", "source": "1262", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5515", "source": "1262", "target": "371", "attributes": { "weight": 2 } }, { "key": "8870", "source": "1262", "target": "195", "attributes": { "weight": 4 } }, { "key": "15335", "source": "1262", "target": "454", "attributes": { "weight": 1 } }, { "key": "26162", "source": "1262", "target": "1214", "attributes": { "weight": 1 } }, { "key": "5513", "source": "1262", "target": "779", "attributes": { "weight": 2 } }, { "key": "25526", "source": "1263", "target": "2607", "attributes": { "weight": 1 } }, { "key": "15972", "source": "1263", "target": "913", "attributes": { "weight": 1 } }, { "key": "18770", "source": "1263", "target": "124", "attributes": { "weight": 2 } }, { "key": "34523", "source": "1263", "target": "1233", "attributes": { "weight": 1 } }, { "key": "7342", "source": "1263", "target": "1063", "attributes": { "weight": 1 } }, { "key": "34522", "source": "1263", "target": "1232", "attributes": { "weight": 1 } }, { "key": "8871", "source": "1263", "target": "195", "attributes": { "weight": 8 } }, { "key": "25525", "source": "1263", "target": "2602", "attributes": { "weight": 1 } }, { "key": "18246", "source": "1263", "target": "1197", "attributes": { "weight": 4 } }, { "key": "15975", "source": "1263", "target": "208", "attributes": { "weight": 3 } }, { "key": "5520", "source": "1263", "target": "368", "attributes": { "weight": 2 } }, { "key": "36640", "source": "1263", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18764", "source": "1263", "target": "337", "attributes": { "weight": 2 } }, { "key": "18767", "source": "1263", "target": "926", "attributes": { "weight": 2 } }, { "key": "5518", "source": "1263", "target": "779", "attributes": { "weight": 2 } }, { "key": "36639", "source": "1263", "target": "199", "attributes": { "weight": 1 } }, { "key": "36637", "source": "1263", "target": "1165", "attributes": { "weight": 1 } }, { "key": "18762", "source": "1263", "target": "1526", "attributes": { "weight": 2 } }, { "key": "15976", "source": "1263", "target": "924", "attributes": { "weight": 1 } }, { "key": "5524", "source": "1263", "target": "1322", "attributes": { "weight": 3 } }, { "key": "5522", "source": "1263", "target": "1090", "attributes": { "weight": 3 } }, { "key": "5521", "source": "1263", "target": "123", "attributes": { "weight": 3 } }, { "key": "15978", "source": "1263", "target": "1329", "attributes": { "weight": 1 } }, { "key": "36636", "source": "1263", "target": "1140", "attributes": { "weight": 1 } }, { "key": "18765", "source": "1263", "target": "1552", "attributes": { "weight": 2 } }, { "key": "5519", "source": "1263", "target": "1196", "attributes": { "weight": 3 } }, { "key": "34520", "source": "1263", "target": "1182", "attributes": { "weight": 1 } }, { "key": "36641", "source": "1263", "target": "1284", "attributes": { "weight": 1 } }, { "key": "18769", "source": "1263", "target": "1323", "attributes": { "weight": 2 } }, { "key": "18761", "source": "1263", "target": "1174", "attributes": { "weight": 2 } }, { "key": "15974", "source": "1263", "target": "921", "attributes": { "weight": 1 } }, { "key": "34521", "source": "1263", "target": "1047", "attributes": { "weight": 1 } }, { "key": "5523", "source": "1263", "target": "1294", "attributes": { "weight": 3 } }, { "key": "36638", "source": "1263", "target": "938", "attributes": { "weight": 1 } }, { "key": "15977", "source": "1263", "target": "925", "attributes": { "weight": 3 } }, { "key": "18768", "source": "1263", "target": "1291", "attributes": { "weight": 2 } }, { "key": "18763", "source": "1263", "target": "1236", "attributes": { "weight": 2 } }, { "key": "15971", "source": "1263", "target": "912", "attributes": { "weight": 1 } }, { "key": "15973", "source": "1263", "target": "338", "attributes": { "weight": 3 } }, { "key": "18771", "source": "1263", "target": "218", "attributes": { "weight": 2 } }, { "key": "36642", "source": "1263", "target": "1315", "attributes": { "weight": 1 } }, { "key": "18766", "source": "1263", "target": "1269", "attributes": { "weight": 2 } }, { "key": "18245", "source": "1263", "target": "387", "attributes": { "weight": 1 } }, { "key": "21996", "source": "1264", "target": "337", "attributes": { "weight": 1 } }, { "key": "35668", "source": "1264", "target": "1330", "attributes": { "weight": 1 } }, { "key": "34531", "source": "1264", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5561", "source": "1264", "target": "368", "attributes": { "weight": 2 } }, { "key": "35667", "source": "1264", "target": "396", "attributes": { "weight": 1 } }, { "key": "16017", "source": "1265", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34533", "source": "1265", "target": "1323", "attributes": { "weight": 1 } }, { "key": "34532", "source": "1265", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5562", "source": "1265", "target": "338", "attributes": { "weight": 3 } }, { "key": "10240", "source": "1265", "target": "1322", "attributes": { "weight": 1 } }, { "key": "21997", "source": "1265", "target": "337", "attributes": { "weight": 1 } }, { "key": "10239", "source": "1265", "target": "1291", "attributes": { "weight": 1 } }, { "key": "8878", "source": "1266", "target": "195", "attributes": { "weight": 3 } }, { "key": "5565", "source": "1266", "target": "368", "attributes": { "weight": 2 } }, { "key": "5564", "source": "1266", "target": "779", "attributes": { "weight": 2 } }, { "key": "5568", "source": "1267", "target": "123", "attributes": { "weight": 2 } }, { "key": "5567", "source": "1267", "target": "368", "attributes": { "weight": 2 } }, { "key": "16019", "source": "1268", "target": "195", "attributes": { "weight": 2 } }, { "key": "16020", "source": "1268", "target": "913", "attributes": { "weight": 1 } }, { "key": "5570", "source": "1268", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5569", "source": "1268", "target": "779", "attributes": { "weight": 2 } }, { "key": "16021", "source": "1268", "target": "921", "attributes": { "weight": 1 } }, { "key": "34538", "source": "1268", "target": "123", "attributes": { "weight": 1 } }, { "key": "36652", "source": "1268", "target": "208", "attributes": { "weight": 1 } }, { "key": "18844", "source": "1268", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18846", "source": "1268", "target": "218", "attributes": { "weight": 2 } }, { "key": "5571", "source": "1268", "target": "1090", "attributes": { "weight": 2 } }, { "key": "18843", "source": "1268", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18845", "source": "1268", "target": "925", "attributes": { "weight": 1 } }, { "key": "34537", "source": "1268", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18847", "source": "1269", "target": "938", "attributes": { "weight": 2 } }, { "key": "18850", "source": "1269", "target": "1196", "attributes": { "weight": 2 } }, { "key": "16026", "source": "1269", "target": "208", "attributes": { "weight": 3 } }, { "key": "18851", "source": "1269", "target": "199", "attributes": { "weight": 2 } }, { "key": "18849", "source": "1269", "target": "387", "attributes": { "weight": 1 } }, { "key": "18859", "source": "1269", "target": "124", "attributes": { "weight": 2 } }, { "key": "5691", "source": "1269", "target": "1294", "attributes": { "weight": 4 } }, { "key": "18848", "source": "1269", "target": "1174", "attributes": { "weight": 2 } }, { "key": "16023", "source": "1269", "target": "912", "attributes": { "weight": 1 } }, { "key": "34540", "source": "1269", "target": "1182", "attributes": { "weight": 1 } }, { "key": "5688", "source": "1269", "target": "368", "attributes": { "weight": 2 } }, { "key": "18852", "source": "1269", "target": "337", "attributes": { "weight": 2 } }, { "key": "7347", "source": "1269", "target": "1063", "attributes": { "weight": 1 } }, { "key": "18860", "source": "1269", "target": "218", "attributes": { "weight": 2 } }, { "key": "34542", "source": "1269", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18853", "source": "1269", "target": "338", "attributes": { "weight": 2 } }, { "key": "16024", "source": "1269", "target": "913", "attributes": { "weight": 1 } }, { "key": "18857", "source": "1269", "target": "1322", "attributes": { "weight": 2 } }, { "key": "5687", "source": "1269", "target": "779", "attributes": { "weight": 2 } }, { "key": "18854", "source": "1269", "target": "1263", "attributes": { "weight": 2 } }, { "key": "18855", "source": "1269", "target": "926", "attributes": { "weight": 2 } }, { "key": "8879", "source": "1269", "target": "195", "attributes": { "weight": 7 } }, { "key": "16025", "source": "1269", "target": "921", "attributes": { "weight": 2 } }, { "key": "16027", "source": "1269", "target": "925", "attributes": { "weight": 3 } }, { "key": "34541", "source": "1269", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18856", "source": "1269", "target": "215", "attributes": { "weight": 2 } }, { "key": "18257", "source": "1269", "target": "1197", "attributes": { "weight": 4 } }, { "key": "18858", "source": "1269", "target": "1323", "attributes": { "weight": 2 } }, { "key": "5689", "source": "1269", "target": "123", "attributes": { "weight": 3 } }, { "key": "5690", "source": "1269", "target": "1090", "attributes": { "weight": 2 } }, { "key": "8884", "source": "1270", "target": "195", "attributes": { "weight": 3 } }, { "key": "5692", "source": "1270", "target": "779", "attributes": { "weight": 2 } }, { "key": "16029", "source": "1271", "target": "925", "attributes": { "weight": 1 } }, { "key": "34544", "source": "1271", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5693", "source": "1271", "target": "368", "attributes": { "weight": 2 } }, { "key": "21999", "source": "1271", "target": "337", "attributes": { "weight": 1 } }, { "key": "8886", "source": "1271", "target": "195", "attributes": { "weight": 3 } }, { "key": "16028", "source": "1271", "target": "913", "attributes": { "weight": 1 } }, { "key": "5694", "source": "1271", "target": "123", "attributes": { "weight": 3 } }, { "key": "21998", "source": "1271", "target": "2293", "attributes": { "weight": 1 } }, { "key": "22001", "source": "1271", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22000", "source": "1271", "target": "2301", "attributes": { "weight": 1 } }, { "key": "34545", "source": "1272", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9852", "source": "1272", "target": "396", "attributes": { "weight": 2 } }, { "key": "5695", "source": "1272", "target": "368", "attributes": { "weight": 3 } }, { "key": "37164", "source": "1272", "target": "338", "attributes": { "weight": 1 } }, { "key": "37165", "source": "1272", "target": "1552", "attributes": { "weight": 1 } }, { "key": "37166", "source": "1272", "target": "411", "attributes": { "weight": 1 } }, { "key": "9853", "source": "1272", "target": "1323", "attributes": { "weight": 1 } }, { "key": "5696", "source": "1273", "target": "368", "attributes": { "weight": 2 } }, { "key": "34546", "source": "1273", "target": "1233", "attributes": { "weight": 1 } }, { "key": "8887", "source": "1273", "target": "195", "attributes": { "weight": 3 } }, { "key": "5697", "source": "1274", "target": "338", "attributes": { "weight": 2 } }, { "key": "5699", "source": "1275", "target": "368", "attributes": { "weight": 2 } }, { "key": "34548", "source": "1275", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34549", "source": "1275", "target": "123", "attributes": { "weight": 1 } }, { "key": "5698", "source": "1275", "target": "779", "attributes": { "weight": 2 } }, { "key": "8888", "source": "1275", "target": "195", "attributes": { "weight": 3 } }, { "key": "5700", "source": "1276", "target": "123", "attributes": { "weight": 2 } }, { "key": "16031", "source": "1276", "target": "913", "attributes": { "weight": 1 } }, { "key": "34551", "source": "1277", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34552", "source": "1277", "target": "1323", "attributes": { "weight": 1 } }, { "key": "22004", "source": "1277", "target": "337", "attributes": { "weight": 1 } }, { "key": "10241", "source": "1277", "target": "1315", "attributes": { "weight": 1 } }, { "key": "5703", "source": "1277", "target": "1294", "attributes": { "weight": 2 } }, { "key": "5702", "source": "1277", "target": "338", "attributes": { "weight": 4 } }, { "key": "5705", "source": "1278", "target": "123", "attributes": { "weight": 3 } }, { "key": "16034", "source": "1278", "target": "913", "attributes": { "weight": 1 } }, { "key": "16035", "source": "1278", "target": "921", "attributes": { "weight": 1 } }, { "key": "16033", "source": "1278", "target": "1196", "attributes": { "weight": 1 } }, { "key": "16037", "source": "1278", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16032", "source": "1278", "target": "912", "attributes": { "weight": 1 } }, { "key": "34553", "source": "1278", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16036", "source": "1278", "target": "925", "attributes": { "weight": 1 } }, { "key": "8919", "source": "1278", "target": "195", "attributes": { "weight": 3 } }, { "key": "5704", "source": "1278", "target": "368", "attributes": { "weight": 2 } }, { "key": "18259", "source": "1278", "target": "1197", "attributes": { "weight": 2 } }, { "key": "28593", "source": "1279", "target": "123", "attributes": { "weight": 2 } }, { "key": "28587", "source": "1279", "target": "1174", "attributes": { "weight": 1 } }, { "key": "5727", "source": "1279", "target": "779", "attributes": { "weight": 2 } }, { "key": "5728", "source": "1279", "target": "1196", "attributes": { "weight": 2 } }, { "key": "36765", "source": "1279", "target": "1063", "attributes": { "weight": 1 } }, { "key": "28586", "source": "1279", "target": "2780", "attributes": { "weight": 1 } }, { "key": "16153", "source": "1279", "target": "921", "attributes": { "weight": 2 } }, { "key": "22009", "source": "1279", "target": "1230", "attributes": { "weight": 1 } }, { "key": "22010", "source": "1279", "target": "2308", "attributes": { "weight": 1 } }, { "key": "28588", "source": "1279", "target": "911", "attributes": { "weight": 1 } }, { "key": "28594", "source": "1279", "target": "1691", "attributes": { "weight": 1 } }, { "key": "28592", "source": "1279", "target": "2781", "attributes": { "weight": 1 } }, { "key": "16151", "source": "1279", "target": "938", "attributes": { "weight": 2 } }, { "key": "34561", "source": "1279", "target": "1047", "attributes": { "weight": 1 } }, { "key": "5729", "source": "1279", "target": "1090", "attributes": { "weight": 3 } }, { "key": "22008", "source": "1279", "target": "915", "attributes": { "weight": 1 } }, { "key": "16152", "source": "1279", "target": "913", "attributes": { "weight": 2 } }, { "key": "22007", "source": "1279", "target": "1138", "attributes": { "weight": 1 } }, { "key": "28589", "source": "1279", "target": "368", "attributes": { "weight": 1 } }, { "key": "8930", "source": "1279", "target": "195", "attributes": { "weight": 4 } }, { "key": "28591", "source": "1279", "target": "2297", "attributes": { "weight": 1 } }, { "key": "28590", "source": "1279", "target": "199", "attributes": { "weight": 1 } }, { "key": "29538", "source": "1279", "target": "1415", "attributes": { "weight": 1 } }, { "key": "18519", "source": "1280", "target": "2228", "attributes": { "weight": 2 } }, { "key": "18511", "source": "1280", "target": "297", "attributes": { "weight": 3 } }, { "key": "18506", "source": "1280", "target": "1178", "attributes": { "weight": 2 } }, { "key": "18503", "source": "1280", "target": "1146", "attributes": { "weight": 4 } }, { "key": "18508", "source": "1280", "target": "1227", "attributes": { "weight": 2 } }, { "key": "18514", "source": "1280", "target": "2223", "attributes": { "weight": 1 } }, { "key": "18505", "source": "1280", "target": "1166", "attributes": { "weight": 3 } }, { "key": "18517", "source": "1280", "target": "2225", "attributes": { "weight": 1 } }, { "key": "18510", "source": "1280", "target": "2219", "attributes": { "weight": 1 } }, { "key": "18518", "source": "1280", "target": "2226", "attributes": { "weight": 1 } }, { "key": "31073", "source": "1280", "target": "2745", "attributes": { "weight": 1 } }, { "key": "18512", "source": "1280", "target": "2221", "attributes": { "weight": 1 } }, { "key": "5732", "source": "1280", "target": "338", "attributes": { "weight": 4 } }, { "key": "31074", "source": "1280", "target": "3041", "attributes": { "weight": 1 } }, { "key": "24319", "source": "1280", "target": "2216", "attributes": { "weight": 2 } }, { "key": "18507", "source": "1280", "target": "2214", "attributes": { "weight": 2 } }, { "key": "18513", "source": "1280", "target": "2222", "attributes": { "weight": 1 } }, { "key": "25746", "source": "1280", "target": "278", "attributes": { "weight": 1 } }, { "key": "18515", "source": "1280", "target": "310", "attributes": { "weight": 4 } }, { "key": "29962", "source": "1280", "target": "1952", "attributes": { "weight": 1 } }, { "key": "18504", "source": "1280", "target": "2213", "attributes": { "weight": 1 } }, { "key": "14270", "source": "1280", "target": "168", "attributes": { "weight": 2 } }, { "key": "18516", "source": "1280", "target": "2224", "attributes": { "weight": 1 } }, { "key": "18509", "source": "1280", "target": "2218", "attributes": { "weight": 1 } }, { "key": "29781", "source": "1281", "target": "1429", "attributes": { "weight": 2 } }, { "key": "29780", "source": "1281", "target": "2898", "attributes": { "weight": 2 } }, { "key": "5733", "source": "1281", "target": "779", "attributes": { "weight": 2 } }, { "key": "35112", "source": "1281", "target": "212", "attributes": { "weight": 1 } }, { "key": "5736", "source": "1281", "target": "371", "attributes": { "weight": 3 } }, { "key": "16154", "source": "1281", "target": "913", "attributes": { "weight": 1 } }, { "key": "14157", "source": "1281", "target": "392", "attributes": { "weight": 2 } }, { "key": "29776", "source": "1281", "target": "2894", "attributes": { "weight": 2 } }, { "key": "34564", "source": "1281", "target": "123", "attributes": { "weight": 1 } }, { "key": "29775", "source": "1281", "target": "202", "attributes": { "weight": 2 } }, { "key": "29778", "source": "1281", "target": "2896", "attributes": { "weight": 2 } }, { "key": "11642", "source": "1281", "target": "370", "attributes": { "weight": 2 } }, { "key": "30102", "source": "1281", "target": "200", "attributes": { "weight": 2 } }, { "key": "29777", "source": "1281", "target": "2895", "attributes": { "weight": 1 } }, { "key": "30104", "source": "1281", "target": "210", "attributes": { "weight": 2 } }, { "key": "11643", "source": "1281", "target": "208", "attributes": { "weight": 2 } }, { "key": "34563", "source": "1281", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18875", "source": "1281", "target": "1174", "attributes": { "weight": 1 } }, { "key": "29773", "source": "1281", "target": "2893", "attributes": { "weight": 2 } }, { "key": "35111", "source": "1281", "target": "3178", "attributes": { "weight": 1 } }, { "key": "5735", "source": "1281", "target": "368", "attributes": { "weight": 2 } }, { "key": "35110", "source": "1281", "target": "3177", "attributes": { "weight": 1 } }, { "key": "5737", "source": "1281", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11641", "source": "1281", "target": "199", "attributes": { "weight": 2 } }, { "key": "8932", "source": "1281", "target": "195", "attributes": { "weight": 4 } }, { "key": "7359", "source": "1281", "target": "1063", "attributes": { "weight": 2 } }, { "key": "30103", "source": "1281", "target": "201", "attributes": { "weight": 2 } }, { "key": "35109", "source": "1281", "target": "3176", "attributes": { "weight": 1 } }, { "key": "35108", "source": "1281", "target": "3175", "attributes": { "weight": 1 } }, { "key": "11640", "source": "1281", "target": "938", "attributes": { "weight": 2 } }, { "key": "12012", "source": "1281", "target": "468", "attributes": { "weight": 1 } }, { "key": "34562", "source": "1281", "target": "1047", "attributes": { "weight": 1 } }, { "key": "29779", "source": "1281", "target": "2897", "attributes": { "weight": 2 } }, { "key": "29774", "source": "1281", "target": "197", "attributes": { "weight": 2 } }, { "key": "14057", "source": "1281", "target": "1031", "attributes": { "weight": 1 } }, { "key": "12011", "source": "1281", "target": "1214", "attributes": { "weight": 1 } }, { "key": "12013", "source": "1281", "target": "990", "attributes": { "weight": 3 } }, { "key": "12827", "source": "1281", "target": "780", "attributes": { "weight": 1 } }, { "key": "5734", "source": "1281", "target": "1196", "attributes": { "weight": 2 } }, { "key": "33612", "source": "1282", "target": "2645", "attributes": { "weight": 1 } }, { "key": "8956", "source": "1282", "target": "442", "attributes": { "weight": 3 } }, { "key": "33615", "source": "1282", "target": "135", "attributes": { "weight": 1 } }, { "key": "33614", "source": "1282", "target": "1362", "attributes": { "weight": 1 } }, { "key": "27143", "source": "1282", "target": "464", "attributes": { "weight": 1 } }, { "key": "20565", "source": "1282", "target": "2251", "attributes": { "weight": 1 } }, { "key": "27147", "source": "1282", "target": "1812", "attributes": { "weight": 2 } }, { "key": "32226", "source": "1282", "target": "1358", "attributes": { "weight": 1 } }, { "key": "27136", "source": "1282", "target": "858", "attributes": { "weight": 1 } }, { "key": "31339", "source": "1282", "target": "1337", "attributes": { "weight": 3 } }, { "key": "17276", "source": "1282", "target": "2108", "attributes": { "weight": 1 } }, { "key": "25949", "source": "1282", "target": "1367", "attributes": { "weight": 2 } }, { "key": "27141", "source": "1282", "target": "458", "attributes": { "weight": 2 } }, { "key": "32227", "source": "1282", "target": "1368", "attributes": { "weight": 3 } }, { "key": "27149", "source": "1282", "target": "479", "attributes": { "weight": 1 } }, { "key": "27134", "source": "1282", "target": "429", "attributes": { "weight": 3 } }, { "key": "27137", "source": "1282", "target": "447", "attributes": { "weight": 1 } }, { "key": "32143", "source": "1282", "target": "435", "attributes": { "weight": 1 } }, { "key": "27133", "source": "1282", "target": "1353", "attributes": { "weight": 4 } }, { "key": "27148", "source": "1282", "target": "231", "attributes": { "weight": 4 } }, { "key": "17275", "source": "1282", "target": "449", "attributes": { "weight": 2 } }, { "key": "33613", "source": "1282", "target": "51", "attributes": { "weight": 1 } }, { "key": "27142", "source": "1282", "target": "459", "attributes": { "weight": 2 } }, { "key": "27135", "source": "1282", "target": "1354", "attributes": { "weight": 3 } }, { "key": "27138", "source": "1282", "target": "860", "attributes": { "weight": 4 } }, { "key": "27150", "source": "1282", "target": "480", "attributes": { "weight": 1 } }, { "key": "32142", "source": "1282", "target": "1141", "attributes": { "weight": 1 } }, { "key": "26716", "source": "1282", "target": "183", "attributes": { "weight": 1 } }, { "key": "35363", "source": "1282", "target": "1811", "attributes": { "weight": 1 } }, { "key": "33616", "source": "1282", "target": "474", "attributes": { "weight": 1 } }, { "key": "27139", "source": "1282", "target": "451", "attributes": { "weight": 3 } }, { "key": "25888", "source": "1282", "target": "220", "attributes": { "weight": 2 } }, { "key": "12529", "source": "1282", "target": "223", "attributes": { "weight": 2 } }, { "key": "5740", "source": "1282", "target": "468", "attributes": { "weight": 3 } }, { "key": "27145", "source": "1282", "target": "1366", "attributes": { "weight": 1 } }, { "key": "27146", "source": "1282", "target": "2094", "attributes": { "weight": 1 } }, { "key": "33611", "source": "1282", "target": "130", "attributes": { "weight": 1 } }, { "key": "17502", "source": "1282", "target": "358", "attributes": { "weight": 2 } }, { "key": "27154", "source": "1282", "target": "494", "attributes": { "weight": 1 } }, { "key": "31338", "source": "1282", "target": "674", "attributes": { "weight": 1 } }, { "key": "27140", "source": "1282", "target": "452", "attributes": { "weight": 1 } }, { "key": "12293", "source": "1282", "target": "1161", "attributes": { "weight": 1 } }, { "key": "12294", "source": "1282", "target": "1564", "attributes": { "weight": 1 } }, { "key": "27151", "source": "1282", "target": "2269", "attributes": { "weight": 1 } }, { "key": "32144", "source": "1282", "target": "446", "attributes": { "weight": 1 } }, { "key": "32228", "source": "1282", "target": "2670", "attributes": { "weight": 1 } }, { "key": "27144", "source": "1282", "target": "54", "attributes": { "weight": 1 } }, { "key": "27152", "source": "1282", "target": "483", "attributes": { "weight": 2 } }, { "key": "27153", "source": "1282", "target": "56", "attributes": { "weight": 4 } }, { "key": "8975", "source": "1283", "target": "195", "attributes": { "weight": 3 } }, { "key": "5765", "source": "1283", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5764", "source": "1283", "target": "779", "attributes": { "weight": 2 } }, { "key": "5766", "source": "1284", "target": "1227", "attributes": { "weight": 3 } }, { "key": "18879", "source": "1284", "target": "1552", "attributes": { "weight": 2 } }, { "key": "37170", "source": "1284", "target": "390", "attributes": { "weight": 1 } }, { "key": "22012", "source": "1284", "target": "1680", "attributes": { "weight": 1 } }, { "key": "11645", "source": "1284", "target": "1251", "attributes": { "weight": 1 } }, { "key": "18881", "source": "1284", "target": "408", "attributes": { "weight": 2 } }, { "key": "16897", "source": "1284", "target": "59", "attributes": { "weight": 1 } }, { "key": "36658", "source": "1284", "target": "1173", "attributes": { "weight": 1 } }, { "key": "28596", "source": "1284", "target": "123", "attributes": { "weight": 1 } }, { "key": "36659", "source": "1284", "target": "1215", "attributes": { "weight": 1 } }, { "key": "36661", "source": "1284", "target": "1263", "attributes": { "weight": 1 } }, { "key": "5771", "source": "1284", "target": "1294", "attributes": { "weight": 3 } }, { "key": "18878", "source": "1284", "target": "337", "attributes": { "weight": 3 } }, { "key": "5772", "source": "1284", "target": "1322", "attributes": { "weight": 3 } }, { "key": "22011", "source": "1284", "target": "2293", "attributes": { "weight": 1 } }, { "key": "28595", "source": "1284", "target": "368", "attributes": { "weight": 1 } }, { "key": "36656", "source": "1284", "target": "1152", "attributes": { "weight": 1 } }, { "key": "16165", "source": "1284", "target": "1329", "attributes": { "weight": 2 } }, { "key": "18876", "source": "1284", "target": "1184", "attributes": { "weight": 1 } }, { "key": "5768", "source": "1284", "target": "1254", "attributes": { "weight": 2 } }, { "key": "5767", "source": "1284", "target": "1245", "attributes": { "weight": 2 } }, { "key": "36657", "source": "1284", "target": "1167", "attributes": { "weight": 1 } }, { "key": "36663", "source": "1284", "target": "1315", "attributes": { "weight": 1 } }, { "key": "18880", "source": "1284", "target": "1286", "attributes": { "weight": 1 } }, { "key": "18877", "source": "1284", "target": "1197", "attributes": { "weight": 2 } }, { "key": "36655", "source": "1284", "target": "1140", "attributes": { "weight": 1 } }, { "key": "22013", "source": "1284", "target": "1203", "attributes": { "weight": 1 } }, { "key": "16164", "source": "1284", "target": "338", "attributes": { "weight": 3 } }, { "key": "11644", "source": "1284", "target": "370", "attributes": { "weight": 1 } }, { "key": "36660", "source": "1284", "target": "1228", "attributes": { "weight": 1 } }, { "key": "22014", "source": "1284", "target": "2303", "attributes": { "weight": 1 } }, { "key": "36662", "source": "1284", "target": "1288", "attributes": { "weight": 1 } }, { "key": "5770", "source": "1284", "target": "1291", "attributes": { "weight": 3 } }, { "key": "5769", "source": "1284", "target": "1285", "attributes": { "weight": 3 } }, { "key": "28224", "source": "1285", "target": "2434", "attributes": { "weight": 1 } }, { "key": "34568", "source": "1285", "target": "1323", "attributes": { "weight": 1 } }, { "key": "23204", "source": "1285", "target": "1227", "attributes": { "weight": 5 } }, { "key": "28225", "source": "1285", "target": "2435", "attributes": { "weight": 1 } }, { "key": "23207", "source": "1285", "target": "1254", "attributes": { "weight": 1 } }, { "key": "23205", "source": "1285", "target": "2433", "attributes": { "weight": 1 } }, { "key": "5773", "source": "1285", "target": "368", "attributes": { "weight": 2 } }, { "key": "28226", "source": "1285", "target": "2727", "attributes": { "weight": 1 } }, { "key": "5775", "source": "1285", "target": "1284", "attributes": { "weight": 3 } }, { "key": "5777", "source": "1285", "target": "1326", "attributes": { "weight": 3 } }, { "key": "34566", "source": "1285", "target": "1197", "attributes": { "weight": 1 } }, { "key": "5776", "source": "1285", "target": "1294", "attributes": { "weight": 2 } }, { "key": "10247", "source": "1285", "target": "1291", "attributes": { "weight": 1 } }, { "key": "28223", "source": "1285", "target": "2725", "attributes": { "weight": 1 } }, { "key": "10248", "source": "1285", "target": "1315", "attributes": { "weight": 1 } }, { "key": "5778", "source": "1285", "target": "1331", "attributes": { "weight": 3 } }, { "key": "10249", "source": "1285", "target": "1322", "attributes": { "weight": 2 } }, { "key": "34567", "source": "1285", "target": "123", "attributes": { "weight": 1 } }, { "key": "23206", "source": "1285", "target": "1245", "attributes": { "weight": 2 } }, { "key": "5774", "source": "1285", "target": "338", "attributes": { "weight": 7 } }, { "key": "7363", "source": "1285", "target": "333", "attributes": { "weight": 2 } }, { "key": "18882", "source": "1286", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18883", "source": "1286", "target": "1526", "attributes": { "weight": 2 } }, { "key": "36664", "source": "1286", "target": "1294", "attributes": { "weight": 1 } }, { "key": "18260", "source": "1286", "target": "1197", "attributes": { "weight": 4 } }, { "key": "8976", "source": "1286", "target": "195", "attributes": { "weight": 6 } }, { "key": "5779", "source": "1286", "target": "368", "attributes": { "weight": 2 } }, { "key": "34571", "source": "1286", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34572", "source": "1286", "target": "1323", "attributes": { "weight": 1 } }, { "key": "18885", "source": "1286", "target": "337", "attributes": { "weight": 2 } }, { "key": "34569", "source": "1286", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16167", "source": "1286", "target": "925", "attributes": { "weight": 1 } }, { "key": "22016", "source": "1286", "target": "2212", "attributes": { "weight": 1 } }, { "key": "18886", "source": "1286", "target": "1552", "attributes": { "weight": 2 } }, { "key": "16168", "source": "1286", "target": "1329", "attributes": { "weight": 1 } }, { "key": "5780", "source": "1286", "target": "338", "attributes": { "weight": 4 } }, { "key": "5781", "source": "1286", "target": "123", "attributes": { "weight": 3 } }, { "key": "16166", "source": "1286", "target": "913", "attributes": { "weight": 1 } }, { "key": "18887", "source": "1286", "target": "124", "attributes": { "weight": 2 } }, { "key": "18884", "source": "1286", "target": "1228", "attributes": { "weight": 2 } }, { "key": "34570", "source": "1286", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18261", "source": "1287", "target": "1197", "attributes": { "weight": 3 } }, { "key": "8977", "source": "1287", "target": "195", "attributes": { "weight": 4 } }, { "key": "16170", "source": "1287", "target": "921", "attributes": { "weight": 1 } }, { "key": "5783", "source": "1287", "target": "1196", "attributes": { "weight": 3 } }, { "key": "5785", "source": "1287", "target": "123", "attributes": { "weight": 3 } }, { "key": "5786", "source": "1287", "target": "1294", "attributes": { "weight": 3 } }, { "key": "18889", "source": "1287", "target": "1315", "attributes": { "weight": 1 } }, { "key": "5782", "source": "1287", "target": "779", "attributes": { "weight": 2 } }, { "key": "18888", "source": "1287", "target": "1552", "attributes": { "weight": 2 } }, { "key": "16171", "source": "1287", "target": "208", "attributes": { "weight": 1 } }, { "key": "5784", "source": "1287", "target": "368", "attributes": { "weight": 2 } }, { "key": "18890", "source": "1287", "target": "124", "attributes": { "weight": 2 } }, { "key": "34573", "source": "1287", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16172", "source": "1287", "target": "925", "attributes": { "weight": 1 } }, { "key": "36665", "source": "1287", "target": "337", "attributes": { "weight": 1 } }, { "key": "10250", "source": "1287", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34574", "source": "1287", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16173", "source": "1287", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16169", "source": "1287", "target": "913", "attributes": { "weight": 1 } }, { "key": "34576", "source": "1288", "target": "1323", "attributes": { "weight": 1 } }, { "key": "9874", "source": "1288", "target": "390", "attributes": { "weight": 3 } }, { "key": "5787", "source": "1288", "target": "368", "attributes": { "weight": 2 } }, { "key": "36666", "source": "1288", "target": "1552", "attributes": { "weight": 1 } }, { "key": "5788", "source": "1288", "target": "1291", "attributes": { "weight": 2 } }, { "key": "5789", "source": "1288", "target": "1294", "attributes": { "weight": 3 } }, { "key": "18891", "source": "1288", "target": "1197", "attributes": { "weight": 3 } }, { "key": "36668", "source": "1288", "target": "1326", "attributes": { "weight": 1 } }, { "key": "34575", "source": "1288", "target": "1233", "attributes": { "weight": 1 } }, { "key": "36669", "source": "1288", "target": "1331", "attributes": { "weight": 1 } }, { "key": "5790", "source": "1288", "target": "1322", "attributes": { "weight": 2 } }, { "key": "36667", "source": "1288", "target": "1284", "attributes": { "weight": 1 } }, { "key": "16174", "source": "1288", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18892", "source": "1288", "target": "337", "attributes": { "weight": 2 } }, { "key": "5915", "source": "1289", "target": "779", "attributes": { "weight": 2 } }, { "key": "34629", "source": "1289", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16179", "source": "1289", "target": "925", "attributes": { "weight": 1 } }, { "key": "34630", "source": "1289", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34632", "source": "1289", "target": "123", "attributes": { "weight": 1 } }, { "key": "5919", "source": "1289", "target": "921", "attributes": { "weight": 3 } }, { "key": "16178", "source": "1289", "target": "208", "attributes": { "weight": 3 } }, { "key": "5917", "source": "1289", "target": "368", "attributes": { "weight": 2 } }, { "key": "8978", "source": "1289", "target": "195", "attributes": { "weight": 7 } }, { "key": "5921", "source": "1289", "target": "1090", "attributes": { "weight": 2 } }, { "key": "5920", "source": "1289", "target": "371", "attributes": { "weight": 2 } }, { "key": "18893", "source": "1289", "target": "1174", "attributes": { "weight": 2 } }, { "key": "16177", "source": "1289", "target": "913", "attributes": { "weight": 1 } }, { "key": "18894", "source": "1289", "target": "1552", "attributes": { "weight": 2 } }, { "key": "5918", "source": "1289", "target": "370", "attributes": { "weight": 3 } }, { "key": "34631", "source": "1289", "target": "1233", "attributes": { "weight": 1 } }, { "key": "5916", "source": "1289", "target": "1196", "attributes": { "weight": 2 } }, { "key": "34635", "source": "1290", "target": "1233", "attributes": { "weight": 1 } }, { "key": "37174", "source": "1290", "target": "411", "attributes": { "weight": 1 } }, { "key": "37172", "source": "1290", "target": "387", "attributes": { "weight": 1 } }, { "key": "5929", "source": "1290", "target": "368", "attributes": { "weight": 2 } }, { "key": "9880", "source": "1290", "target": "399", "attributes": { "weight": 1 } }, { "key": "37173", "source": "1290", "target": "390", "attributes": { "weight": 1 } }, { "key": "10258", "source": "1291", "target": "1167", "attributes": { "weight": 1 } }, { "key": "36672", "source": "1291", "target": "1140", "attributes": { "weight": 1 } }, { "key": "10271", "source": "1291", "target": "1308", "attributes": { "weight": 2 } }, { "key": "10263", "source": "1291", "target": "1227", "attributes": { "weight": 2 } }, { "key": "34638", "source": "1291", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16182", "source": "1291", "target": "220", "attributes": { "weight": 2 } }, { "key": "10274", "source": "1291", "target": "1329", "attributes": { "weight": 3 } }, { "key": "10259", "source": "1291", "target": "913", "attributes": { "weight": 2 } }, { "key": "10277", "source": "1291", "target": "1343", "attributes": { "weight": 1 } }, { "key": "25536", "source": "1291", "target": "2606", "attributes": { "weight": 1 } }, { "key": "5951", "source": "1291", "target": "1326", "attributes": { "weight": 3 } }, { "key": "10260", "source": "1291", "target": "1203", "attributes": { "weight": 2 } }, { "key": "10272", "source": "1291", "target": "1317", "attributes": { "weight": 1 } }, { "key": "5939", "source": "1291", "target": "779", "attributes": { "weight": 2 } }, { "key": "10264", "source": "1291", "target": "337", "attributes": { "weight": 3 } }, { "key": "5942", "source": "1291", "target": "338", "attributes": { "weight": 4 } }, { "key": "5940", "source": "1291", "target": "1196", "attributes": { "weight": 2 } }, { "key": "5952", "source": "1291", "target": "408", "attributes": { "weight": 2 } }, { "key": "34640", "source": "1291", "target": "1233", "attributes": { "weight": 1 } }, { "key": "10255", "source": "1291", "target": "711", "attributes": { "weight": 1 } }, { "key": "10267", "source": "1291", "target": "1285", "attributes": { "weight": 1 } }, { "key": "5947", "source": "1291", "target": "1090", "attributes": { "weight": 2 } }, { "key": "25535", "source": "1291", "target": "2605", "attributes": { "weight": 1 } }, { "key": "10261", "source": "1291", "target": "1206", "attributes": { "weight": 1 } }, { "key": "34641", "source": "1291", "target": "3151", "attributes": { "weight": 1 } }, { "key": "16183", "source": "1291", "target": "925", "attributes": { "weight": 1 } }, { "key": "11654", "source": "1291", "target": "370", "attributes": { "weight": 2 } }, { "key": "10269", "source": "1291", "target": "1300", "attributes": { "weight": 1 } }, { "key": "10276", "source": "1291", "target": "1335", "attributes": { "weight": 1 } }, { "key": "10270", "source": "1291", "target": "1304", "attributes": { "weight": 2 } }, { "key": "5937", "source": "1291", "target": "938", "attributes": { "weight": 3 } }, { "key": "5944", "source": "1291", "target": "1284", "attributes": { "weight": 4 } }, { "key": "18895", "source": "1291", "target": "1552", "attributes": { "weight": 2 } }, { "key": "34639", "source": "1291", "target": "1232", "attributes": { "weight": 1 } }, { "key": "7373", "source": "1291", "target": "377", "attributes": { "weight": 2 } }, { "key": "5946", "source": "1291", "target": "123", "attributes": { "weight": 4 } }, { "key": "5941", "source": "1291", "target": "368", "attributes": { "weight": 4 } }, { "key": "10262", "source": "1291", "target": "1215", "attributes": { "weight": 1 } }, { "key": "10273", "source": "1291", "target": "1322", "attributes": { "weight": 2 } }, { "key": "10275", "source": "1291", "target": "1331", "attributes": { "weight": 2 } }, { "key": "16184", "source": "1291", "target": "580", "attributes": { "weight": 1 } }, { "key": "5950", "source": "1291", "target": "1323", "attributes": { "weight": 4 } }, { "key": "5943", "source": "1291", "target": "1251", "attributes": { "weight": 3 } }, { "key": "5948", "source": "1291", "target": "1294", "attributes": { "weight": 4 } }, { "key": "10266", "source": "1291", "target": "1690", "attributes": { "weight": 1 } }, { "key": "18896", "source": "1291", "target": "1286", "attributes": { "weight": 1 } }, { "key": "9012", "source": "1291", "target": "195", "attributes": { "weight": 4 } }, { "key": "36673", "source": "1291", "target": "1263", "attributes": { "weight": 1 } }, { "key": "5949", "source": "1291", "target": "1315", "attributes": { "weight": 3 } }, { "key": "5938", "source": "1291", "target": "1173", "attributes": { "weight": 2 } }, { "key": "10265", "source": "1291", "target": "1265", "attributes": { "weight": 1 } }, { "key": "10268", "source": "1291", "target": "1693", "attributes": { "weight": 1 } }, { "key": "5945", "source": "1291", "target": "1288", "attributes": { "weight": 2 } }, { "key": "10257", "source": "1291", "target": "1680", "attributes": { "weight": 1 } }, { "key": "10256", "source": "1291", "target": "937", "attributes": { "weight": 1 } }, { "key": "18263", "source": "1291", "target": "1197", "attributes": { "weight": 4 } }, { "key": "5953", "source": "1291", "target": "333", "attributes": { "weight": 4 } }, { "key": "5960", "source": "1292", "target": "779", "attributes": { "weight": 2 } }, { "key": "18265", "source": "1293", "target": "1197", "attributes": { "weight": 1 } }, { "key": "9015", "source": "1293", "target": "195", "attributes": { "weight": 3 } }, { "key": "5961", "source": "1293", "target": "779", "attributes": { "weight": 2 } }, { "key": "22039", "source": "1293", "target": "2212", "attributes": { "weight": 1 } }, { "key": "5962", "source": "1293", "target": "1090", "attributes": { "weight": 2 } }, { "key": "6123", "source": "1294", "target": "400", "attributes": { "weight": 2 } }, { "key": "6149", "source": "1294", "target": "373", "attributes": { "weight": 3 } }, { "key": "6088", "source": "1294", "target": "1174", "attributes": { "weight": 3 } }, { "key": "6100", "source": "1294", "target": "1206", "attributes": { "weight": 2 } }, { "key": "37516", "source": "1294", "target": "2202", "attributes": { "weight": 1 } }, { "key": "6104", "source": "1294", "target": "1215", "attributes": { "weight": 3 } }, { "key": "6122", "source": "1294", "target": "925", "attributes": { "weight": 5 } }, { "key": "9882", "source": "1294", "target": "393", "attributes": { "weight": 3 } }, { "key": "36680", "source": "1294", "target": "1305", "attributes": { "weight": 1 } }, { "key": "6128", "source": "1294", "target": "123", "attributes": { "weight": 3 } }, { "key": "36682", "source": "1294", "target": "1342", "attributes": { "weight": 1 } }, { "key": "6098", "source": "1294", "target": "1201", "attributes": { "weight": 3 } }, { "key": "36675", "source": "1294", "target": "1172", "attributes": { "weight": 1 } }, { "key": "6107", "source": "1294", "target": "1233", "attributes": { "weight": 3 } }, { "key": "6130", "source": "1294", "target": "1090", "attributes": { "weight": 4 } }, { "key": "6099", "source": "1294", "target": "1047", "attributes": { "weight": 4 } }, { "key": "6113", "source": "1294", "target": "1251", "attributes": { "weight": 2 } }, { "key": "6084", "source": "1294", "target": "1157", "attributes": { "weight": 2 } }, { "key": "6103", "source": "1294", "target": "390", "attributes": { "weight": 3 } }, { "key": "6108", "source": "1294", "target": "1236", "attributes": { "weight": 3 } }, { "key": "36681", "source": "1294", "target": "1321", "attributes": { "weight": 1 } }, { "key": "6131", "source": "1294", "target": "1296", "attributes": { "weight": 3 } }, { "key": "6094", "source": "1294", "target": "368", "attributes": { "weight": 3 } }, { "key": "6111", "source": "1294", "target": "337", "attributes": { "weight": 4 } }, { "key": "18899", "source": "1294", "target": "1228", "attributes": { "weight": 2 } }, { "key": "6144", "source": "1294", "target": "1331", "attributes": { "weight": 3 } }, { "key": "6089", "source": "1294", "target": "779", "attributes": { "weight": 2 } }, { "key": "36679", "source": "1294", "target": "1286", "attributes": { "weight": 1 } }, { "key": "6114", "source": "1294", "target": "468", "attributes": { "weight": 4 } }, { "key": "6146", "source": "1294", "target": "124", "attributes": { "weight": 3 } }, { "key": "6137", "source": "1294", "target": "1317", "attributes": { "weight": 2 } }, { "key": "6101", "source": "1294", "target": "1208", "attributes": { "weight": 2 } }, { "key": "6092", "source": "1294", "target": "1196", "attributes": { "weight": 2 } }, { "key": "6133", "source": "1294", "target": "403", "attributes": { "weight": 2 } }, { "key": "6115", "source": "1294", "target": "1254", "attributes": { "weight": 2 } }, { "key": "6125", "source": "1294", "target": "1285", "attributes": { "weight": 2 } }, { "key": "6086", "source": "1294", "target": "938", "attributes": { "weight": 3 } }, { "key": "6096", "source": "1294", "target": "1199", "attributes": { "weight": 2 } }, { "key": "6140", "source": "1294", "target": "1323", "attributes": { "weight": 4 } }, { "key": "6112", "source": "1294", "target": "338", "attributes": { "weight": 6 } }, { "key": "6093", "source": "1294", "target": "1197", "attributes": { "weight": 7 } }, { "key": "6126", "source": "1294", "target": "1287", "attributes": { "weight": 3 } }, { "key": "6139", "source": "1294", "target": "1322", "attributes": { "weight": 4 } }, { "key": "6148", "source": "1294", "target": "1343", "attributes": { "weight": 2 } }, { "key": "6082", "source": "1294", "target": "195", "attributes": { "weight": 9 } }, { "key": "6109", "source": "1294", "target": "370", "attributes": { "weight": 4 } }, { "key": "6135", "source": "1294", "target": "1315", "attributes": { "weight": 4 } }, { "key": "6152", "source": "1294", "target": "377", "attributes": { "weight": 3 } }, { "key": "6147", "source": "1294", "target": "218", "attributes": { "weight": 3 } }, { "key": "6091", "source": "1294", "target": "387", "attributes": { "weight": 2 } }, { "key": "6127", "source": "1294", "target": "1288", "attributes": { "weight": 4 } }, { "key": "18266", "source": "1294", "target": "2204", "attributes": { "weight": 3 } }, { "key": "6136", "source": "1294", "target": "405", "attributes": { "weight": 3 } }, { "key": "6141", "source": "1294", "target": "1326", "attributes": { "weight": 4 } }, { "key": "6097", "source": "1294", "target": "913", "attributes": { "weight": 4 } }, { "key": "6118", "source": "1294", "target": "396", "attributes": { "weight": 3 } }, { "key": "6153", "source": "1294", "target": "417", "attributes": { "weight": 2 } }, { "key": "36676", "source": "1294", "target": "1255", "attributes": { "weight": 1 } }, { "key": "6120", "source": "1294", "target": "1269", "attributes": { "weight": 3 } }, { "key": "6106", "source": "1294", "target": "1227", "attributes": { "weight": 3 } }, { "key": "6138", "source": "1294", "target": "1318", "attributes": { "weight": 2 } }, { "key": "6080", "source": "1294", "target": "1140", "attributes": { "weight": 4 } }, { "key": "6119", "source": "1294", "target": "371", "attributes": { "weight": 2 } }, { "key": "6083", "source": "1294", "target": "1152", "attributes": { "weight": 3 } }, { "key": "34644", "source": "1294", "target": "1232", "attributes": { "weight": 1 } }, { "key": "36677", "source": "1294", "target": "1552", "attributes": { "weight": 1 } }, { "key": "6081", "source": "1294", "target": "711", "attributes": { "weight": 2 } }, { "key": "7376", "source": "1294", "target": "1063", "attributes": { "weight": 1 } }, { "key": "6145", "source": "1294", "target": "408", "attributes": { "weight": 4 } }, { "key": "6142", "source": "1294", "target": "406", "attributes": { "weight": 2 } }, { "key": "6132", "source": "1294", "target": "1300", "attributes": { "weight": 2 } }, { "key": "6117", "source": "1294", "target": "208", "attributes": { "weight": 3 } }, { "key": "6105", "source": "1294", "target": "1218", "attributes": { "weight": 2 } }, { "key": "6095", "source": "1294", "target": "1198", "attributes": { "weight": 2 } }, { "key": "36678", "source": "1294", "target": "926", "attributes": { "weight": 1 } }, { "key": "6110", "source": "1294", "target": "1245", "attributes": { "weight": 2 } }, { "key": "36674", "source": "1294", "target": "1165", "attributes": { "weight": 1 } }, { "key": "6129", "source": "1294", "target": "1291", "attributes": { "weight": 5 } }, { "key": "6116", "source": "1294", "target": "1263", "attributes": { "weight": 3 } }, { "key": "6150", "source": "1294", "target": "1352", "attributes": { "weight": 2 } }, { "key": "34643", "source": "1294", "target": "1182", "attributes": { "weight": 1 } }, { "key": "6151", "source": "1294", "target": "333", "attributes": { "weight": 2 } }, { "key": "6087", "source": "1294", "target": "1173", "attributes": { "weight": 3 } }, { "key": "6090", "source": "1294", "target": "1184", "attributes": { "weight": 3 } }, { "key": "6143", "source": "1294", "target": "1329", "attributes": { "weight": 4 } }, { "key": "6102", "source": "1294", "target": "199", "attributes": { "weight": 4 } }, { "key": "6124", "source": "1294", "target": "1284", "attributes": { "weight": 4 } }, { "key": "6134", "source": "1294", "target": "1308", "attributes": { "weight": 3 } }, { "key": "6121", "source": "1294", "target": "1277", "attributes": { "weight": 2 } }, { "key": "6085", "source": "1294", "target": "1167", "attributes": { "weight": 3 } }, { "key": "22041", "source": "1295", "target": "337", "attributes": { "weight": 1 } }, { "key": "16186", "source": "1295", "target": "913", "attributes": { "weight": 1 } }, { "key": "22043", "source": "1295", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22042", "source": "1295", "target": "2300", "attributes": { "weight": 1 } }, { "key": "16187", "source": "1295", "target": "925", "attributes": { "weight": 1 } }, { "key": "6154", "source": "1295", "target": "368", "attributes": { "weight": 2 } }, { "key": "34645", "source": "1295", "target": "1197", "attributes": { "weight": 1 } }, { "key": "9016", "source": "1295", "target": "195", "attributes": { "weight": 3 } }, { "key": "6155", "source": "1295", "target": "123", "attributes": { "weight": 3 } }, { "key": "22040", "source": "1295", "target": "2293", "attributes": { "weight": 1 } }, { "key": "16194", "source": "1296", "target": "372", "attributes": { "weight": 2 } }, { "key": "16192", "source": "1296", "target": "924", "attributes": { "weight": 1 } }, { "key": "6165", "source": "1296", "target": "123", "attributes": { "weight": 3 } }, { "key": "36686", "source": "1296", "target": "337", "attributes": { "weight": 1 } }, { "key": "16191", "source": "1296", "target": "208", "attributes": { "weight": 3 } }, { "key": "9018", "source": "1296", "target": "442", "attributes": { "weight": 2 } }, { "key": "6162", "source": "1296", "target": "338", "attributes": { "weight": 4 } }, { "key": "6163", "source": "1296", "target": "921", "attributes": { "weight": 3 } }, { "key": "34650", "source": "1296", "target": "1323", "attributes": { "weight": 1 } }, { "key": "16189", "source": "1296", "target": "912", "attributes": { "weight": 1 } }, { "key": "6164", "source": "1296", "target": "371", "attributes": { "weight": 2 } }, { "key": "9017", "source": "1296", "target": "195", "attributes": { "weight": 7 } }, { "key": "6169", "source": "1296", "target": "124", "attributes": { "weight": 2 } }, { "key": "16193", "source": "1296", "target": "925", "attributes": { "weight": 1 } }, { "key": "18901", "source": "1296", "target": "1552", "attributes": { "weight": 2 } }, { "key": "6158", "source": "1296", "target": "779", "attributes": { "weight": 2 } }, { "key": "16190", "source": "1296", "target": "913", "attributes": { "weight": 1 } }, { "key": "6168", "source": "1296", "target": "1305", "attributes": { "weight": 2 } }, { "key": "18902", "source": "1296", "target": "218", "attributes": { "weight": 2 } }, { "key": "34649", "source": "1296", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6160", "source": "1296", "target": "368", "attributes": { "weight": 3 } }, { "key": "18900", "source": "1296", "target": "1174", "attributes": { "weight": 2 } }, { "key": "36683", "source": "1296", "target": "1165", "attributes": { "weight": 1 } }, { "key": "36685", "source": "1296", "target": "1228", "attributes": { "weight": 1 } }, { "key": "34647", "source": "1296", "target": "1047", "attributes": { "weight": 1 } }, { "key": "34648", "source": "1296", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34646", "source": "1296", "target": "1197", "attributes": { "weight": 2 } }, { "key": "6159", "source": "1296", "target": "1196", "attributes": { "weight": 2 } }, { "key": "7377", "source": "1296", "target": "1063", "attributes": { "weight": 2 } }, { "key": "6167", "source": "1296", "target": "1294", "attributes": { "weight": 3 } }, { "key": "6166", "source": "1296", "target": "1090", "attributes": { "weight": 2 } }, { "key": "6161", "source": "1296", "target": "370", "attributes": { "weight": 3 } }, { "key": "6156", "source": "1296", "target": "1156", "attributes": { "weight": 2 } }, { "key": "36687", "source": "1296", "target": "215", "attributes": { "weight": 1 } }, { "key": "6157", "source": "1296", "target": "938", "attributes": { "weight": 3 } }, { "key": "36684", "source": "1296", "target": "199", "attributes": { "weight": 1 } }, { "key": "18270", "source": "1296", "target": "387", "attributes": { "weight": 1 } }, { "key": "23164", "source": "1297", "target": "601", "attributes": { "weight": 3 } }, { "key": "23162", "source": "1297", "target": "2425", "attributes": { "weight": 2 } }, { "key": "6174", "source": "1297", "target": "2429", "attributes": { "weight": 3 } }, { "key": "23163", "source": "1297", "target": "599", "attributes": { "weight": 1 } }, { "key": "26246", "source": "1297", "target": "2635", "attributes": { "weight": 1 } }, { "key": "7380", "source": "1298", "target": "1350", "attributes": { "weight": 1 } }, { "key": "32978", "source": "1298", "target": "1381", "attributes": { "weight": 1 } }, { "key": "7381", "source": "1298", "target": "1063", "attributes": { "weight": 2 } }, { "key": "25451", "source": "1298", "target": "990", "attributes": { "weight": 1 } }, { "key": "29013", "source": "1298", "target": "372", "attributes": { "weight": 1 } }, { "key": "6180", "source": "1298", "target": "371", "attributes": { "weight": 2 } }, { "key": "7009", "source": "1298", "target": "183", "attributes": { "weight": 1 } }, { "key": "15353", "source": "1298", "target": "454", "attributes": { "weight": 1 } }, { "key": "25452", "source": "1298", "target": "961", "attributes": { "weight": 1 } }, { "key": "31133", "source": "1298", "target": "442", "attributes": { "weight": 1 } }, { "key": "11657", "source": "1298", "target": "370", "attributes": { "weight": 1 } }, { "key": "32979", "source": "1298", "target": "781", "attributes": { "weight": 1 } }, { "key": "34658", "source": "1298", "target": "1047", "attributes": { "weight": 1 } }, { "key": "15352", "source": "1298", "target": "248", "attributes": { "weight": 1 } }, { "key": "35611", "source": "1299", "target": "3216", "attributes": { "weight": 1 } }, { "key": "35627", "source": "1299", "target": "3238", "attributes": { "weight": 1 } }, { "key": "35616", "source": "1299", "target": "3225", "attributes": { "weight": 1 } }, { "key": "35624", "source": "1299", "target": "3234", "attributes": { "weight": 1 } }, { "key": "26247", "source": "1299", "target": "2634", "attributes": { "weight": 1 } }, { "key": "31081", "source": "1299", "target": "2745", "attributes": { "weight": 1 } }, { "key": "35615", "source": "1299", "target": "3221", "attributes": { "weight": 1 } }, { "key": "35629", "source": "1299", "target": "3242", "attributes": { "weight": 1 } }, { "key": "35610", "source": "1299", "target": "3215", "attributes": { "weight": 1 } }, { "key": "35623", "source": "1299", "target": "3233", "attributes": { "weight": 1 } }, { "key": "35626", "source": "1299", "target": "3236", "attributes": { "weight": 1 } }, { "key": "35620", "source": "1299", "target": "3230", "attributes": { "weight": 1 } }, { "key": "6182", "source": "1299", "target": "1146", "attributes": { "weight": 4 } }, { "key": "35618", "source": "1299", "target": "3228", "attributes": { "weight": 1 } }, { "key": "35612", "source": "1299", "target": "3217", "attributes": { "weight": 1 } }, { "key": "23209", "source": "1299", "target": "1227", "attributes": { "weight": 1 } }, { "key": "35614", "source": "1299", "target": "3220", "attributes": { "weight": 1 } }, { "key": "35619", "source": "1299", "target": "3229", "attributes": { "weight": 1 } }, { "key": "6183", "source": "1299", "target": "338", "attributes": { "weight": 6 } }, { "key": "35617", "source": "1299", "target": "3227", "attributes": { "weight": 1 } }, { "key": "23130", "source": "1299", "target": "2423", "attributes": { "weight": 2 } }, { "key": "35628", "source": "1299", "target": "3239", "attributes": { "weight": 1 } }, { "key": "35625", "source": "1299", "target": "3235", "attributes": { "weight": 1 } }, { "key": "35621", "source": "1299", "target": "3231", "attributes": { "weight": 1 } }, { "key": "35613", "source": "1299", "target": "3218", "attributes": { "weight": 1 } }, { "key": "35609", "source": "1299", "target": "3214", "attributes": { "weight": 1 } }, { "key": "25057", "source": "1299", "target": "580", "attributes": { "weight": 2 } }, { "key": "6188", "source": "1300", "target": "1294", "attributes": { "weight": 2 } }, { "key": "10284", "source": "1300", "target": "1322", "attributes": { "weight": 1 } }, { "key": "36768", "source": "1300", "target": "377", "attributes": { "weight": 1 } }, { "key": "22078", "source": "1300", "target": "1680", "attributes": { "weight": 1 } }, { "key": "6187", "source": "1300", "target": "123", "attributes": { "weight": 2 } }, { "key": "18271", "source": "1300", "target": "1197", "attributes": { "weight": 2 } }, { "key": "36767", "source": "1300", "target": "333", "attributes": { "weight": 1 } }, { "key": "36766", "source": "1300", "target": "373", "attributes": { "weight": 1 } }, { "key": "6186", "source": "1300", "target": "368", "attributes": { "weight": 2 } }, { "key": "10285", "source": "1300", "target": "1331", "attributes": { "weight": 1 } }, { "key": "16200", "source": "1300", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34664", "source": "1300", "target": "337", "attributes": { "weight": 1 } }, { "key": "16199", "source": "1300", "target": "925", "attributes": { "weight": 2 } }, { "key": "34663", "source": "1300", "target": "1233", "attributes": { "weight": 1 } }, { "key": "10283", "source": "1300", "target": "1291", "attributes": { "weight": 1 } }, { "key": "6189", "source": "1300", "target": "1323", "attributes": { "weight": 5 } }, { "key": "34665", "source": "1300", "target": "338", "attributes": { "weight": 1 } }, { "key": "6199", "source": "1301", "target": "1090", "attributes": { "weight": 2 } }, { "key": "34669", "source": "1301", "target": "1047", "attributes": { "weight": 1 } }, { "key": "11667", "source": "1301", "target": "208", "attributes": { "weight": 3 } }, { "key": "11666", "source": "1301", "target": "199", "attributes": { "weight": 2 } }, { "key": "16205", "source": "1301", "target": "913", "attributes": { "weight": 1 } }, { "key": "6197", "source": "1301", "target": "779", "attributes": { "weight": 2 } }, { "key": "34671", "source": "1301", "target": "123", "attributes": { "weight": 1 } }, { "key": "18905", "source": "1301", "target": "1174", "attributes": { "weight": 2 } }, { "key": "18906", "source": "1301", "target": "337", "attributes": { "weight": 1 } }, { "key": "34670", "source": "1301", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18907", "source": "1301", "target": "1552", "attributes": { "weight": 2 } }, { "key": "36690", "source": "1301", "target": "215", "attributes": { "weight": 1 } }, { "key": "36691", "source": "1301", "target": "218", "attributes": { "weight": 1 } }, { "key": "6198", "source": "1301", "target": "1196", "attributes": { "weight": 2 } }, { "key": "18909", "source": "1301", "target": "1329", "attributes": { "weight": 1 } }, { "key": "9032", "source": "1301", "target": "195", "attributes": { "weight": 3 } }, { "key": "18908", "source": "1301", "target": "1315", "attributes": { "weight": 1 } }, { "key": "37176", "source": "1302", "target": "387", "attributes": { "weight": 1 } }, { "key": "6207", "source": "1302", "target": "368", "attributes": { "weight": 2 } }, { "key": "37177", "source": "1302", "target": "411", "attributes": { "weight": 1 } }, { "key": "34674", "source": "1302", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9895", "source": "1302", "target": "399", "attributes": { "weight": 2 } }, { "key": "34675", "source": "1303", "target": "1197", "attributes": { "weight": 1 } }, { "key": "6208", "source": "1303", "target": "368", "attributes": { "weight": 2 } }, { "key": "22082", "source": "1303", "target": "2293", "attributes": { "weight": 1 } }, { "key": "22083", "source": "1303", "target": "337", "attributes": { "weight": 1 } }, { "key": "16208", "source": "1303", "target": "925", "attributes": { "weight": 1 } }, { "key": "34676", "source": "1303", "target": "123", "attributes": { "weight": 1 } }, { "key": "16209", "source": "1303", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34679", "source": "1304", "target": "1323", "attributes": { "weight": 1 } }, { "key": "10289", "source": "1304", "target": "1322", "attributes": { "weight": 1 } }, { "key": "16210", "source": "1304", "target": "1329", "attributes": { "weight": 1 } }, { "key": "6209", "source": "1304", "target": "338", "attributes": { "weight": 2 } }, { "key": "10288", "source": "1304", "target": "1291", "attributes": { "weight": 2 } }, { "key": "34678", "source": "1304", "target": "1197", "attributes": { "weight": 1 } }, { "key": "16220", "source": "1305", "target": "925", "attributes": { "weight": 1 } }, { "key": "6210", "source": "1305", "target": "779", "attributes": { "weight": 2 } }, { "key": "18912", "source": "1305", "target": "1552", "attributes": { "weight": 2 } }, { "key": "18277", "source": "1305", "target": "2205", "attributes": { "weight": 1 } }, { "key": "34680", "source": "1305", "target": "1047", "attributes": { "weight": 1 } }, { "key": "34681", "source": "1305", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6213", "source": "1305", "target": "370", "attributes": { "weight": 4 } }, { "key": "11669", "source": "1305", "target": "938", "attributes": { "weight": 2 } }, { "key": "18911", "source": "1305", "target": "1165", "attributes": { "weight": 2 } }, { "key": "16212", "source": "1305", "target": "1174", "attributes": { "weight": 3 } }, { "key": "36695", "source": "1305", "target": "124", "attributes": { "weight": 1 } }, { "key": "6220", "source": "1305", "target": "1296", "attributes": { "weight": 2 } }, { "key": "6218", "source": "1305", "target": "123", "attributes": { "weight": 3 } }, { "key": "34682", "source": "1305", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16213", "source": "1305", "target": "1184", "attributes": { "weight": 1 } }, { "key": "16211", "source": "1305", "target": "1156", "attributes": { "weight": 1 } }, { "key": "6219", "source": "1305", "target": "1090", "attributes": { "weight": 3 } }, { "key": "9896", "source": "1305", "target": "387", "attributes": { "weight": 2 } }, { "key": "6212", "source": "1305", "target": "368", "attributes": { "weight": 2 } }, { "key": "7389", "source": "1305", "target": "1063", "attributes": { "weight": 1 } }, { "key": "16214", "source": "1305", "target": "912", "attributes": { "weight": 1 } }, { "key": "16219", "source": "1305", "target": "924", "attributes": { "weight": 1 } }, { "key": "16221", "source": "1305", "target": "1329", "attributes": { "weight": 1 } }, { "key": "6215", "source": "1305", "target": "921", "attributes": { "weight": 3 } }, { "key": "9038", "source": "1305", "target": "195", "attributes": { "weight": 9 } }, { "key": "6211", "source": "1305", "target": "1196", "attributes": { "weight": 2 } }, { "key": "36692", "source": "1305", "target": "1197", "attributes": { "weight": 1 } }, { "key": "11670", "source": "1305", "target": "199", "attributes": { "weight": 3 } }, { "key": "16222", "source": "1305", "target": "218", "attributes": { "weight": 3 } }, { "key": "36693", "source": "1305", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18913", "source": "1305", "target": "1323", "attributes": { "weight": 2 } }, { "key": "6214", "source": "1305", "target": "338", "attributes": { "weight": 4 } }, { "key": "16216", "source": "1305", "target": "1236", "attributes": { "weight": 1 } }, { "key": "16215", "source": "1305", "target": "913", "attributes": { "weight": 1 } }, { "key": "6216", "source": "1305", "target": "468", "attributes": { "weight": 6 } }, { "key": "36694", "source": "1305", "target": "1294", "attributes": { "weight": 1 } }, { "key": "16217", "source": "1305", "target": "337", "attributes": { "weight": 2 } }, { "key": "16218", "source": "1305", "target": "208", "attributes": { "weight": 3 } }, { "key": "6217", "source": "1305", "target": "371", "attributes": { "weight": 2 } }, { "key": "14118", "source": "1306", "target": "1031", "attributes": { "weight": 1 } }, { "key": "21782", "source": "1306", "target": "1487", "attributes": { "weight": 2 } }, { "key": "8075", "source": "1306", "target": "1502", "attributes": { "weight": 1 } }, { "key": "8073", "source": "1306", "target": "1478", "attributes": { "weight": 1 } }, { "key": "8076", "source": "1306", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21779", "source": "1306", "target": "103", "attributes": { "weight": 3 } }, { "key": "21780", "source": "1306", "target": "108", "attributes": { "weight": 3 } }, { "key": "15355", "source": "1306", "target": "454", "attributes": { "weight": 1 } }, { "key": "8067", "source": "1306", "target": "1432", "attributes": { "weight": 2 } }, { "key": "21781", "source": "1306", "target": "1464", "attributes": { "weight": 1 } }, { "key": "8068", "source": "1306", "target": "1186", "attributes": { "weight": 2 } }, { "key": "6221", "source": "1306", "target": "371", "attributes": { "weight": 3 } }, { "key": "32932", "source": "1306", "target": "470", "attributes": { "weight": 1 } }, { "key": "8071", "source": "1306", "target": "109", "attributes": { "weight": 4 } }, { "key": "8074", "source": "1306", "target": "116", "attributes": { "weight": 4 } }, { "key": "8070", "source": "1306", "target": "1455", "attributes": { "weight": 3 } }, { "key": "8072", "source": "1306", "target": "1473", "attributes": { "weight": 1 } }, { "key": "8069", "source": "1306", "target": "1453", "attributes": { "weight": 2 } }, { "key": "34685", "source": "1307", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6226", "source": "1307", "target": "371", "attributes": { "weight": 2 } }, { "key": "6227", "source": "1307", "target": "123", "attributes": { "weight": 3 } }, { "key": "34686", "source": "1307", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16229", "source": "1307", "target": "925", "attributes": { "weight": 1 } }, { "key": "16228", "source": "1307", "target": "370", "attributes": { "weight": 1 } }, { "key": "35114", "source": "1307", "target": "200", "attributes": { "weight": 1 } }, { "key": "9040", "source": "1307", "target": "195", "attributes": { "weight": 7 } }, { "key": "16227", "source": "1307", "target": "913", "attributes": { "weight": 1 } }, { "key": "6224", "source": "1307", "target": "368", "attributes": { "weight": 2 } }, { "key": "11672", "source": "1307", "target": "208", "attributes": { "weight": 3 } }, { "key": "34684", "source": "1307", "target": "1047", "attributes": { "weight": 1 } }, { "key": "6222", "source": "1307", "target": "938", "attributes": { "weight": 4 } }, { "key": "6223", "source": "1307", "target": "779", "attributes": { "weight": 2 } }, { "key": "6225", "source": "1307", "target": "921", "attributes": { "weight": 3 } }, { "key": "16226", "source": "1307", "target": "912", "attributes": { "weight": 1 } }, { "key": "34683", "source": "1307", "target": "1182", "attributes": { "weight": 1 } }, { "key": "6228", "source": "1307", "target": "1090", "attributes": { "weight": 2 } }, { "key": "11671", "source": "1307", "target": "199", "attributes": { "weight": 1 } }, { "key": "18915", "source": "1308", "target": "1552", "attributes": { "weight": 2 } }, { "key": "6232", "source": "1308", "target": "1294", "attributes": { "weight": 3 } }, { "key": "6230", "source": "1308", "target": "338", "attributes": { "weight": 5 } }, { "key": "16232", "source": "1308", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18914", "source": "1308", "target": "1197", "attributes": { "weight": 3 } }, { "key": "6229", "source": "1308", "target": "368", "attributes": { "weight": 2 } }, { "key": "22089", "source": "1308", "target": "337", "attributes": { "weight": 2 } }, { "key": "6231", "source": "1308", "target": "123", "attributes": { "weight": 2 } }, { "key": "10291", "source": "1308", "target": "1322", "attributes": { "weight": 2 } }, { "key": "36696", "source": "1308", "target": "1315", "attributes": { "weight": 1 } }, { "key": "34688", "source": "1308", "target": "1323", "attributes": { "weight": 1 } }, { "key": "10292", "source": "1308", "target": "1326", "attributes": { "weight": 1 } }, { "key": "10290", "source": "1308", "target": "1291", "attributes": { "weight": 2 } }, { "key": "34693", "source": "1309", "target": "1232", "attributes": { "weight": 1 } }, { "key": "16234", "source": "1309", "target": "913", "attributes": { "weight": 1 } }, { "key": "6236", "source": "1309", "target": "938", "attributes": { "weight": 2 } }, { "key": "18916", "source": "1309", "target": "208", "attributes": { "weight": 2 } }, { "key": "9046", "source": "1309", "target": "195", "attributes": { "weight": 4 } }, { "key": "34691", "source": "1309", "target": "1182", "attributes": { "weight": 1 } }, { "key": "11673", "source": "1309", "target": "370", "attributes": { "weight": 2 } }, { "key": "36698", "source": "1309", "target": "218", "attributes": { "weight": 1 } }, { "key": "6240", "source": "1309", "target": "1090", "attributes": { "weight": 2 } }, { "key": "36697", "source": "1309", "target": "1174", "attributes": { "weight": 1 } }, { "key": "6237", "source": "1309", "target": "779", "attributes": { "weight": 2 } }, { "key": "6238", "source": "1309", "target": "1196", "attributes": { "weight": 2 } }, { "key": "6239", "source": "1309", "target": "123", "attributes": { "weight": 3 } }, { "key": "16235", "source": "1309", "target": "921", "attributes": { "weight": 1 } }, { "key": "7390", "source": "1309", "target": "1063", "attributes": { "weight": 1 } }, { "key": "34692", "source": "1309", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18917", "source": "1309", "target": "1552", "attributes": { "weight": 2 } }, { "key": "16236", "source": "1309", "target": "925", "attributes": { "weight": 1 } }, { "key": "6241", "source": "1310", "target": "368", "attributes": { "weight": 2 } }, { "key": "16237", "source": "1311", "target": "925", "attributes": { "weight": 1 } }, { "key": "22092", "source": "1311", "target": "2293", "attributes": { "weight": 1 } }, { "key": "6242", "source": "1311", "target": "123", "attributes": { "weight": 2 } }, { "key": "6251", "source": "1312", "target": "468", "attributes": { "weight": 2 } }, { "key": "23663", "source": "1312", "target": "130", "attributes": { "weight": 1 } }, { "key": "23679", "source": "1312", "target": "483", "attributes": { "weight": 1 } }, { "key": "23682", "source": "1312", "target": "1566", "attributes": { "weight": 1 } }, { "key": "23669", "source": "1312", "target": "452", "attributes": { "weight": 1 } }, { "key": "26741", "source": "1312", "target": "189", "attributes": { "weight": 1 } }, { "key": "23681", "source": "1312", "target": "488", "attributes": { "weight": 1 } }, { "key": "23666", "source": "1312", "target": "1533", "attributes": { "weight": 1 } }, { "key": "23662", "source": "1312", "target": "424", "attributes": { "weight": 1 } }, { "key": "23668", "source": "1312", "target": "451", "attributes": { "weight": 1 } }, { "key": "23661", "source": "1312", "target": "1354", "attributes": { "weight": 1 } }, { "key": "23677", "source": "1312", "target": "479", "attributes": { "weight": 1 } }, { "key": "23683", "source": "1312", "target": "495", "attributes": { "weight": 1 } }, { "key": "32591", "source": "1312", "target": "791", "attributes": { "weight": 1 } }, { "key": "23665", "source": "1312", "target": "440", "attributes": { "weight": 1 } }, { "key": "23672", "source": "1312", "target": "459", "attributes": { "weight": 1 } }, { "key": "23671", "source": "1312", "target": "458", "attributes": { "weight": 1 } }, { "key": "23673", "source": "1312", "target": "471", "attributes": { "weight": 1 } }, { "key": "23680", "source": "1312", "target": "232", "attributes": { "weight": 1 } }, { "key": "23678", "source": "1312", "target": "482", "attributes": { "weight": 1 } }, { "key": "9049", "source": "1312", "target": "1363", "attributes": { "weight": 4 } }, { "key": "23670", "source": "1312", "target": "2251", "attributes": { "weight": 1 } }, { "key": "23660", "source": "1312", "target": "429", "attributes": { "weight": 1 } }, { "key": "23674", "source": "1312", "target": "229", "attributes": { "weight": 1 } }, { "key": "23675", "source": "1312", "target": "474", "attributes": { "weight": 1 } }, { "key": "23667", "source": "1312", "target": "2248", "attributes": { "weight": 1 } }, { "key": "23664", "source": "1312", "target": "858", "attributes": { "weight": 1 } }, { "key": "23676", "source": "1312", "target": "231", "attributes": { "weight": 1 } }, { "key": "23684", "source": "1312", "target": "1375", "attributes": { "weight": 1 } }, { "key": "6252", "source": "1313", "target": "368", "attributes": { "weight": 2 } }, { "key": "34702", "source": "1313", "target": "1197", "attributes": { "weight": 1 } }, { "key": "6253", "source": "1313", "target": "338", "attributes": { "weight": 3 } }, { "key": "10752", "source": "1314", "target": "370", "attributes": { "weight": 3 } }, { "key": "10751", "source": "1314", "target": "1233", "attributes": { "weight": 3 } }, { "key": "10746", "source": "1314", "target": "387", "attributes": { "weight": 1 } }, { "key": "10764", "source": "1314", "target": "635", "attributes": { "weight": 1 } }, { "key": "10748", "source": "1314", "target": "391", "attributes": { "weight": 1 } }, { "key": "10757", "source": "1314", "target": "782", "attributes": { "weight": 1 } }, { "key": "32185", "source": "1314", "target": "392", "attributes": { "weight": 1 } }, { "key": "10756", "source": "1314", "target": "208", "attributes": { "weight": 2 } }, { "key": "10766", "source": "1314", "target": "1063", "attributes": { "weight": 1 } }, { "key": "10758", "source": "1314", "target": "123", "attributes": { "weight": 1 } }, { "key": "10759", "source": "1314", "target": "1031", "attributes": { "weight": 2 } }, { "key": "10760", "source": "1314", "target": "633", "attributes": { "weight": 1 } }, { "key": "10762", "source": "1314", "target": "1323", "attributes": { "weight": 3 } }, { "key": "10747", "source": "1314", "target": "1047", "attributes": { "weight": 2 } }, { "key": "10745", "source": "1314", "target": "44", "attributes": { "weight": 1 } }, { "key": "28603", "source": "1314", "target": "199", "attributes": { "weight": 1 } }, { "key": "10763", "source": "1314", "target": "407", "attributes": { "weight": 1 } }, { "key": "12035", "source": "1314", "target": "471", "attributes": { "weight": 2 } }, { "key": "26974", "source": "1314", "target": "545", "attributes": { "weight": 2 } }, { "key": "10754", "source": "1314", "target": "30", "attributes": { "weight": 1 } }, { "key": "9898", "source": "1314", "target": "396", "attributes": { "weight": 2 } }, { "key": "10750", "source": "1314", "target": "1232", "attributes": { "weight": 2 } }, { "key": "10765", "source": "1314", "target": "48", "attributes": { "weight": 1 } }, { "key": "10753", "source": "1314", "target": "338", "attributes": { "weight": 3 } }, { "key": "6255", "source": "1314", "target": "371", "attributes": { "weight": 4 } }, { "key": "10761", "source": "1314", "target": "634", "attributes": { "weight": 1 } }, { "key": "16244", "source": "1314", "target": "195", "attributes": { "weight": 1 } }, { "key": "10749", "source": "1314", "target": "45", "attributes": { "weight": 1 } }, { "key": "10744", "source": "1314", "target": "631", "attributes": { "weight": 1 } }, { "key": "10755", "source": "1314", "target": "544", "attributes": { "weight": 1 } }, { "key": "6254", "source": "1314", "target": "368", "attributes": { "weight": 4 } }, { "key": "10743", "source": "1314", "target": "43", "attributes": { "weight": 1 } }, { "key": "6266", "source": "1315", "target": "123", "attributes": { "weight": 4 } }, { "key": "10301", "source": "1315", "target": "406", "attributes": { "weight": 2 } }, { "key": "10302", "source": "1315", "target": "1329", "attributes": { "weight": 2 } }, { "key": "10295", "source": "1315", "target": "1206", "attributes": { "weight": 1 } }, { "key": "6260", "source": "1315", "target": "370", "attributes": { "weight": 6 } }, { "key": "6272", "source": "1315", "target": "1335", "attributes": { "weight": 2 } }, { "key": "36707", "source": "1315", "target": "1552", "attributes": { "weight": 1 } }, { "key": "36710", "source": "1315", "target": "1331", "attributes": { "weight": 1 } }, { "key": "10298", "source": "1315", "target": "1277", "attributes": { "weight": 1 } }, { "key": "36706", "source": "1315", "target": "1165", "attributes": { "weight": 1 } }, { "key": "6259", "source": "1315", "target": "368", "attributes": { "weight": 4 } }, { "key": "7392", "source": "1315", "target": "1063", "attributes": { "weight": 1 } }, { "key": "36708", "source": "1315", "target": "926", "attributes": { "weight": 1 } }, { "key": "37178", "source": "1315", "target": "396", "attributes": { "weight": 1 } }, { "key": "6270", "source": "1315", "target": "403", "attributes": { "weight": 3 } }, { "key": "6273", "source": "1315", "target": "377", "attributes": { "weight": 2 } }, { "key": "10293", "source": "1315", "target": "1167", "attributes": { "weight": 1 } }, { "key": "25537", "source": "1315", "target": "2603", "attributes": { "weight": 1 } }, { "key": "34703", "source": "1315", "target": "1047", "attributes": { "weight": 1 } }, { "key": "6267", "source": "1315", "target": "1291", "attributes": { "weight": 3 } }, { "key": "18923", "source": "1315", "target": "1263", "attributes": { "weight": 2 } }, { "key": "18922", "source": "1315", "target": "337", "attributes": { "weight": 3 } }, { "key": "34704", "source": "1315", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6265", "source": "1315", "target": "580", "attributes": { "weight": 3 } }, { "key": "22093", "source": "1315", "target": "1680", "attributes": { "weight": 1 } }, { "key": "18925", "source": "1315", "target": "405", "attributes": { "weight": 2 } }, { "key": "6262", "source": "1315", "target": "468", "attributes": { "weight": 4 } }, { "key": "10299", "source": "1315", "target": "925", "attributes": { "weight": 3 } }, { "key": "6258", "source": "1315", "target": "1196", "attributes": { "weight": 2 } }, { "key": "10300", "source": "1315", "target": "1285", "attributes": { "weight": 1 } }, { "key": "10297", "source": "1315", "target": "1254", "attributes": { "weight": 1 } }, { "key": "10296", "source": "1315", "target": "1227", "attributes": { "weight": 2 } }, { "key": "36711", "source": "1315", "target": "124", "attributes": { "weight": 1 } }, { "key": "18927", "source": "1315", "target": "1326", "attributes": { "weight": 2 } }, { "key": "36709", "source": "1315", "target": "1284", "attributes": { "weight": 1 } }, { "key": "18281", "source": "1315", "target": "1197", "attributes": { "weight": 4 } }, { "key": "6271", "source": "1315", "target": "1322", "attributes": { "weight": 3 } }, { "key": "6263", "source": "1315", "target": "208", "attributes": { "weight": 2 } }, { "key": "18921", "source": "1315", "target": "1228", "attributes": { "weight": 2 } }, { "key": "18924", "source": "1315", "target": "1308", "attributes": { "weight": 2 } }, { "key": "9053", "source": "1315", "target": "195", "attributes": { "weight": 8 } }, { "key": "6264", "source": "1315", "target": "371", "attributes": { "weight": 2 } }, { "key": "18926", "source": "1315", "target": "1321", "attributes": { "weight": 1 } }, { "key": "6256", "source": "1315", "target": "938", "attributes": { "weight": 3 } }, { "key": "34705", "source": "1315", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6268", "source": "1315", "target": "1090", "attributes": { "weight": 2 } }, { "key": "6261", "source": "1315", "target": "338", "attributes": { "weight": 5 } }, { "key": "10294", "source": "1315", "target": "913", "attributes": { "weight": 2 } }, { "key": "36704", "source": "1315", "target": "1140", "attributes": { "weight": 1 } }, { "key": "6269", "source": "1315", "target": "1294", "attributes": { "weight": 4 } }, { "key": "6257", "source": "1315", "target": "779", "attributes": { "weight": 2 } }, { "key": "34706", "source": "1315", "target": "1323", "attributes": { "weight": 3 } }, { "key": "36705", "source": "1315", "target": "1152", "attributes": { "weight": 1 } }, { "key": "36712", "source": "1315", "target": "1343", "attributes": { "weight": 1 } }, { "key": "18920", "source": "1315", "target": "1174", "attributes": { "weight": 2 } }, { "key": "34716", "source": "1316", "target": "123", "attributes": { "weight": 1 } }, { "key": "16252", "source": "1316", "target": "913", "attributes": { "weight": 1 } }, { "key": "34714", "source": "1316", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6282", "source": "1316", "target": "368", "attributes": { "weight": 2 } }, { "key": "9055", "source": "1316", "target": "195", "attributes": { "weight": 6 } }, { "key": "6281", "source": "1316", "target": "1196", "attributes": { "weight": 2 } }, { "key": "11680", "source": "1316", "target": "370", "attributes": { "weight": 2 } }, { "key": "34713", "source": "1316", "target": "1047", "attributes": { "weight": 1 } }, { "key": "11679", "source": "1316", "target": "938", "attributes": { "weight": 1 } }, { "key": "16253", "source": "1316", "target": "921", "attributes": { "weight": 1 } }, { "key": "34715", "source": "1316", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6283", "source": "1316", "target": "1090", "attributes": { "weight": 2 } }, { "key": "6280", "source": "1316", "target": "779", "attributes": { "weight": 2 } }, { "key": "34718", "source": "1317", "target": "1323", "attributes": { "weight": 1 } }, { "key": "6284", "source": "1317", "target": "1294", "attributes": { "weight": 2 } }, { "key": "10305", "source": "1317", "target": "1322", "attributes": { "weight": 1 } }, { "key": "18282", "source": "1317", "target": "1197", "attributes": { "weight": 2 } }, { "key": "34717", "source": "1317", "target": "338", "attributes": { "weight": 1 } }, { "key": "10304", "source": "1317", "target": "1291", "attributes": { "weight": 1 } }, { "key": "34721", "source": "1318", "target": "1323", "attributes": { "weight": 1 } }, { "key": "34720", "source": "1318", "target": "338", "attributes": { "weight": 1 } }, { "key": "6285", "source": "1318", "target": "1294", "attributes": { "weight": 2 } }, { "key": "6286", "source": "1319", "target": "779", "attributes": { "weight": 2 } }, { "key": "6287", "source": "1319", "target": "1090", "attributes": { "weight": 2 } }, { "key": "34722", "source": "1320", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34723", "source": "1320", "target": "123", "attributes": { "weight": 1 } }, { "key": "6288", "source": "1320", "target": "1090", "attributes": { "weight": 2 } }, { "key": "16256", "source": "1320", "target": "913", "attributes": { "weight": 1 } }, { "key": "6297", "source": "1321", "target": "921", "attributes": { "weight": 3 } }, { "key": "36718", "source": "1321", "target": "1294", "attributes": { "weight": 1 } }, { "key": "16260", "source": "1321", "target": "208", "attributes": { "weight": 3 } }, { "key": "6296", "source": "1321", "target": "368", "attributes": { "weight": 2 } }, { "key": "34728", "source": "1321", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18939", "source": "1321", "target": "1552", "attributes": { "weight": 2 } }, { "key": "34724", "source": "1321", "target": "1182", "attributes": { "weight": 1 } }, { "key": "16261", "source": "1321", "target": "925", "attributes": { "weight": 1 } }, { "key": "6294", "source": "1321", "target": "779", "attributes": { "weight": 2 } }, { "key": "18938", "source": "1321", "target": "1174", "attributes": { "weight": 2 } }, { "key": "6295", "source": "1321", "target": "1196", "attributes": { "weight": 2 } }, { "key": "6299", "source": "1321", "target": "123", "attributes": { "weight": 3 } }, { "key": "6300", "source": "1321", "target": "1090", "attributes": { "weight": 2 } }, { "key": "36717", "source": "1321", "target": "337", "attributes": { "weight": 1 } }, { "key": "16258", "source": "1321", "target": "913", "attributes": { "weight": 1 } }, { "key": "36719", "source": "1321", "target": "218", "attributes": { "weight": 1 } }, { "key": "34727", "source": "1321", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34725", "source": "1321", "target": "1197", "attributes": { "weight": 2 } }, { "key": "6298", "source": "1321", "target": "371", "attributes": { "weight": 2 } }, { "key": "34726", "source": "1321", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16259", "source": "1321", "target": "370", "attributes": { "weight": 1 } }, { "key": "9058", "source": "1321", "target": "195", "attributes": { "weight": 6 } }, { "key": "6309", "source": "1322", "target": "370", "attributes": { "weight": 5 } }, { "key": "10331", "source": "1322", "target": "1689", "attributes": { "weight": 1 } }, { "key": "10319", "source": "1322", "target": "1203", "attributes": { "weight": 1 } }, { "key": "10310", "source": "1322", "target": "711", "attributes": { "weight": 3 } }, { "key": "34730", "source": "1322", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6305", "source": "1322", "target": "779", "attributes": { "weight": 2 } }, { "key": "10343", "source": "1322", "target": "405", "attributes": { "weight": 1 } }, { "key": "10321", "source": "1322", "target": "1206", "attributes": { "weight": 1 } }, { "key": "6313", "source": "1322", "target": "468", "attributes": { "weight": 8 } }, { "key": "7395", "source": "1322", "target": "1063", "attributes": { "weight": 1 } }, { "key": "10312", "source": "1322", "target": "937", "attributes": { "weight": 1 } }, { "key": "10344", "source": "1322", "target": "1317", "attributes": { "weight": 1 } }, { "key": "10323", "source": "1322", "target": "199", "attributes": { "weight": 1 } }, { "key": "10348", "source": "1322", "target": "373", "attributes": { "weight": 1 } }, { "key": "10337", "source": "1322", "target": "1291", "attributes": { "weight": 2 } }, { "key": "6317", "source": "1322", "target": "1284", "attributes": { "weight": 4 } }, { "key": "10327", "source": "1322", "target": "1243", "attributes": { "weight": 1 } }, { "key": "16269", "source": "1322", "target": "580", "attributes": { "weight": 3 } }, { "key": "10339", "source": "1322", "target": "1300", "attributes": { "weight": 1 } }, { "key": "6308", "source": "1322", "target": "1047", "attributes": { "weight": 3 } }, { "key": "36720", "source": "1322", "target": "1140", "attributes": { "weight": 1 } }, { "key": "16267", "source": "1322", "target": "707", "attributes": { "weight": 1 } }, { "key": "6310", "source": "1322", "target": "128", "attributes": { "weight": 3 } }, { "key": "6307", "source": "1322", "target": "368", "attributes": { "weight": 3 } }, { "key": "6316", "source": "1322", "target": "371", "attributes": { "weight": 2 } }, { "key": "6304", "source": "1322", "target": "1173", "attributes": { "weight": 2 } }, { "key": "10342", "source": "1322", "target": "1308", "attributes": { "weight": 2 } }, { "key": "6320", "source": "1322", "target": "304", "attributes": { "weight": 5 } }, { "key": "18478", "source": "1322", "target": "1738", "attributes": { "weight": 1 } }, { "key": "6314", "source": "1322", "target": "1263", "attributes": { "weight": 2 } }, { "key": "6327", "source": "1322", "target": "408", "attributes": { "weight": 2 } }, { "key": "10318", "source": "1322", "target": "1684", "attributes": { "weight": 1 } }, { "key": "15364", "source": "1322", "target": "454", "attributes": { "weight": 3 } }, { "key": "10347", "source": "1322", "target": "1343", "attributes": { "weight": 1 } }, { "key": "10334", "source": "1322", "target": "925", "attributes": { "weight": 3 } }, { "key": "10320", "source": "1322", "target": "506", "attributes": { "weight": 1 } }, { "key": "16268", "source": "1322", "target": "278", "attributes": { "weight": 4 } }, { "key": "10329", "source": "1322", "target": "337", "attributes": { "weight": 4 } }, { "key": "6319", "source": "1322", "target": "123", "attributes": { "weight": 4 } }, { "key": "18941", "source": "1322", "target": "1552", "attributes": { "weight": 2 } }, { "key": "10309", "source": "1322", "target": "1679", "attributes": { "weight": 1 } }, { "key": "6315", "source": "1322", "target": "208", "attributes": { "weight": 2 } }, { "key": "9061", "source": "1322", "target": "442", "attributes": { "weight": 3 } }, { "key": "6318", "source": "1322", "target": "1288", "attributes": { "weight": 2 } }, { "key": "10313", "source": "1322", "target": "1680", "attributes": { "weight": 1 } }, { "key": "6312", "source": "1322", "target": "1251", "attributes": { "weight": 3 } }, { "key": "10326", "source": "1322", "target": "1233", "attributes": { "weight": 4 } }, { "key": "10349", "source": "1322", "target": "1702", "attributes": { "weight": 1 } }, { "key": "9060", "source": "1322", "target": "195", "attributes": { "weight": 6 } }, { "key": "10324", "source": "1322", "target": "1215", "attributes": { "weight": 1 } }, { "key": "12605", "source": "1322", "target": "180", "attributes": { "weight": 2 } }, { "key": "6326", "source": "1322", "target": "1331", "attributes": { "weight": 4 } }, { "key": "6322", "source": "1322", "target": "1294", "attributes": { "weight": 5 } }, { "key": "10325", "source": "1322", "target": "1686", "attributes": { "weight": 1 } }, { "key": "6303", "source": "1322", "target": "938", "attributes": { "weight": 3 } }, { "key": "6325", "source": "1322", "target": "1326", "attributes": { "weight": 3 } }, { "key": "10352", "source": "1322", "target": "851", "attributes": { "weight": 1 } }, { "key": "9062", "source": "1322", "target": "1227", "attributes": { "weight": 5 } }, { "key": "18942", "source": "1322", "target": "1269", "attributes": { "weight": 2 } }, { "key": "18940", "source": "1322", "target": "1174", "attributes": { "weight": 2 } }, { "key": "10351", "source": "1322", "target": "377", "attributes": { "weight": 1 } }, { "key": "10333", "source": "1322", "target": "1690", "attributes": { "weight": 1 } }, { "key": "16266", "source": "1322", "target": "913", "attributes": { "weight": 1 } }, { "key": "6323", "source": "1322", "target": "1315", "attributes": { "weight": 4 } }, { "key": "6329", "source": "1322", "target": "333", "attributes": { "weight": 5 } }, { "key": "10336", "source": "1322", "target": "1287", "attributes": { "weight": 1 } }, { "key": "10314", "source": "1322", "target": "1167", "attributes": { "weight": 1 } }, { "key": "10345", "source": "1322", "target": "1329", "attributes": { "weight": 4 } }, { "key": "11686", "source": "1322", "target": "358", "attributes": { "weight": 2 } }, { "key": "10350", "source": "1322", "target": "374", "attributes": { "weight": 1 } }, { "key": "6306", "source": "1322", "target": "1197", "attributes": { "weight": 6 } }, { "key": "10316", "source": "1322", "target": "1188", "attributes": { "weight": 1 } }, { "key": "10330", "source": "1322", "target": "1254", "attributes": { "weight": 1 } }, { "key": "16270", "source": "1322", "target": "305", "attributes": { "weight": 2 } }, { "key": "10346", "source": "1322", "target": "1335", "attributes": { "weight": 1 } }, { "key": "6328", "source": "1322", "target": "124", "attributes": { "weight": 2 } }, { "key": "10332", "source": "1322", "target": "1265", "attributes": { "weight": 1 } }, { "key": "10315", "source": "1322", "target": "1681", "attributes": { "weight": 1 } }, { "key": "10328", "source": "1322", "target": "1245", "attributes": { "weight": 1 } }, { "key": "10322", "source": "1322", "target": "1685", "attributes": { "weight": 1 } }, { "key": "10340", "source": "1322", "target": "1695", "attributes": { "weight": 1 } }, { "key": "6324", "source": "1322", "target": "1323", "attributes": { "weight": 5 } }, { "key": "10338", "source": "1322", "target": "1693", "attributes": { "weight": 1 } }, { "key": "10341", "source": "1322", "target": "1304", "attributes": { "weight": 1 } }, { "key": "16265", "source": "1322", "target": "220", "attributes": { "weight": 2 } }, { "key": "10311", "source": "1322", "target": "1152", "attributes": { "weight": 1 } }, { "key": "10317", "source": "1322", "target": "1196", "attributes": { "weight": 1 } }, { "key": "6311", "source": "1322", "target": "338", "attributes": { "weight": 5 } }, { "key": "6321", "source": "1322", "target": "1090", "attributes": { "weight": 3 } }, { "key": "10335", "source": "1322", "target": "1285", "attributes": { "weight": 2 } }, { "key": "34743", "source": "1323", "target": "1203", "attributes": { "weight": 1 } }, { "key": "34749", "source": "1323", "target": "1245", "attributes": { "weight": 1 } }, { "key": "34773", "source": "1323", "target": "408", "attributes": { "weight": 2 } }, { "key": "34775", "source": "1323", "target": "1343", "attributes": { "weight": 1 } }, { "key": "6334", "source": "1323", "target": "370", "attributes": { "weight": 7 } }, { "key": "34738", "source": "1323", "target": "3135", "attributes": { "weight": 1 } }, { "key": "34769", "source": "1323", "target": "405", "attributes": { "weight": 1 } }, { "key": "31361", "source": "1323", "target": "674", "attributes": { "weight": 1 } }, { "key": "34760", "source": "1323", "target": "1288", "attributes": { "weight": 1 } }, { "key": "6336", "source": "1323", "target": "468", "attributes": { "weight": 10 } }, { "key": "34732", "source": "1323", "target": "3129", "attributes": { "weight": 1 } }, { "key": "6342", "source": "1323", "target": "1300", "attributes": { "weight": 4 } }, { "key": "6337", "source": "1323", "target": "371", "attributes": { "weight": 3 } }, { "key": "11687", "source": "1323", "target": "1152", "attributes": { "weight": 3 } }, { "key": "34733", "source": "1323", "target": "1157", "attributes": { "weight": 1 } }, { "key": "13510", "source": "1323", "target": "304", "attributes": { "weight": 3 } }, { "key": "11689", "source": "1323", "target": "358", "attributes": { "weight": 2 } }, { "key": "26746", "source": "1323", "target": "454", "attributes": { "weight": 3 } }, { "key": "34774", "source": "1323", "target": "124", "attributes": { "weight": 1 } }, { "key": "16272", "source": "1323", "target": "912", "attributes": { "weight": 1 } }, { "key": "34739", "source": "1323", "target": "1182", "attributes": { "weight": 1 } }, { "key": "6344", "source": "1323", "target": "1322", "attributes": { "weight": 6 } }, { "key": "12606", "source": "1323", "target": "180", "attributes": { "weight": 5 } }, { "key": "6335", "source": "1323", "target": "338", "attributes": { "weight": 7 } }, { "key": "34742", "source": "1323", "target": "1196", "attributes": { "weight": 2 } }, { "key": "34735", "source": "1323", "target": "1173", "attributes": { "weight": 1 } }, { "key": "34764", "source": "1323", "target": "3160", "attributes": { "weight": 1 } }, { "key": "34759", "source": "1323", "target": "1286", "attributes": { "weight": 1 } }, { "key": "34772", "source": "1323", "target": "1331", "attributes": { "weight": 1 } }, { "key": "11691", "source": "1323", "target": "1251", "attributes": { "weight": 1 } }, { "key": "34737", "source": "1323", "target": "3134", "attributes": { "weight": 1 } }, { "key": "34734", "source": "1323", "target": "1167", "attributes": { "weight": 1 } }, { "key": "34736", "source": "1323", "target": "1174", "attributes": { "weight": 1 } }, { "key": "34767", "source": "1323", "target": "1308", "attributes": { "weight": 1 } }, { "key": "9064", "source": "1323", "target": "442", "attributes": { "weight": 4 } }, { "key": "16271", "source": "1323", "target": "220", "attributes": { "weight": 2 } }, { "key": "34768", "source": "1323", "target": "1315", "attributes": { "weight": 3 } }, { "key": "34766", "source": "1323", "target": "1305", "attributes": { "weight": 1 } }, { "key": "34754", "source": "1323", "target": "1265", "attributes": { "weight": 1 } }, { "key": "9902", "source": "1323", "target": "390", "attributes": { "weight": 3 } }, { "key": "34741", "source": "1323", "target": "387", "attributes": { "weight": 2 } }, { "key": "34758", "source": "1323", "target": "1285", "attributes": { "weight": 1 } }, { "key": "34757", "source": "1323", "target": "926", "attributes": { "weight": 1 } }, { "key": "28487", "source": "1323", "target": "580", "attributes": { "weight": 2 } }, { "key": "9065", "source": "1323", "target": "1227", "attributes": { "weight": 5 } }, { "key": "7400", "source": "1323", "target": "851", "attributes": { "weight": 2 } }, { "key": "7397", "source": "1323", "target": "154", "attributes": { "weight": 2 } }, { "key": "9905", "source": "1323", "target": "406", "attributes": { "weight": 4 } }, { "key": "34763", "source": "1323", "target": "1693", "attributes": { "weight": 1 } }, { "key": "17306", "source": "1323", "target": "449", "attributes": { "weight": 1 } }, { "key": "18945", "source": "1323", "target": "1289", "attributes": { "weight": 1 } }, { "key": "9525", "source": "1323", "target": "278", "attributes": { "weight": 7 } }, { "key": "9063", "source": "1323", "target": "195", "attributes": { "weight": 11 } }, { "key": "6332", "source": "1323", "target": "168", "attributes": { "weight": 6 } }, { "key": "34750", "source": "1323", "target": "1254", "attributes": { "weight": 1 } }, { "key": "9901", "source": "1323", "target": "1163", "attributes": { "weight": 1 } }, { "key": "29832", "source": "1323", "target": "93", "attributes": { "weight": 1 } }, { "key": "34746", "source": "1323", "target": "1232", "attributes": { "weight": 2 } }, { "key": "28837", "source": "1323", "target": "1146", "attributes": { "weight": 3 } }, { "key": "6330", "source": "1323", "target": "779", "attributes": { "weight": 2 } }, { "key": "18944", "source": "1323", "target": "1269", "attributes": { "weight": 2 } }, { "key": "11688", "source": "1323", "target": "938", "attributes": { "weight": 3 } }, { "key": "34747", "source": "1323", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34745", "source": "1323", "target": "1206", "attributes": { "weight": 1 } }, { "key": "34756", "source": "1323", "target": "1277", "attributes": { "weight": 1 } }, { "key": "6343", "source": "1323", "target": "403", "attributes": { "weight": 5 } }, { "key": "26747", "source": "1323", "target": "189", "attributes": { "weight": 2 } }, { "key": "28838", "source": "1323", "target": "310", "attributes": { "weight": 2 } }, { "key": "7399", "source": "1323", "target": "377", "attributes": { "weight": 3 } }, { "key": "7401", "source": "1323", "target": "1063", "attributes": { "weight": 2 } }, { "key": "6331", "source": "1323", "target": "368", "attributes": { "weight": 5 } }, { "key": "16274", "source": "1323", "target": "925", "attributes": { "weight": 3 } }, { "key": "34748", "source": "1323", "target": "1236", "attributes": { "weight": 1 } }, { "key": "34770", "source": "1323", "target": "1317", "attributes": { "weight": 1 } }, { "key": "34755", "source": "1323", "target": "3154", "attributes": { "weight": 1 } }, { "key": "27298", "source": "1323", "target": "57", "attributes": { "weight": 2 } }, { "key": "18283", "source": "1323", "target": "1197", "attributes": { "weight": 4 } }, { "key": "18943", "source": "1323", "target": "1552", "attributes": { "weight": 2 } }, { "key": "7398", "source": "1323", "target": "333", "attributes": { "weight": 3 } }, { "key": "34752", "source": "1323", "target": "1263", "attributes": { "weight": 1 } }, { "key": "10773", "source": "1323", "target": "1314", "attributes": { "weight": 3 } }, { "key": "9904", "source": "1323", "target": "1272", "attributes": { "weight": 1 } }, { "key": "11690", "source": "1323", "target": "199", "attributes": { "weight": 3 } }, { "key": "34771", "source": "1323", "target": "1318", "attributes": { "weight": 1 } }, { "key": "13511", "source": "1323", "target": "305", "attributes": { "weight": 4 } }, { "key": "16273", "source": "1323", "target": "913", "attributes": { "weight": 1 } }, { "key": "6339", "source": "1323", "target": "1291", "attributes": { "weight": 4 } }, { "key": "34751", "source": "1323", "target": "3151", "attributes": { "weight": 1 } }, { "key": "23210", "source": "1323", "target": "337", "attributes": { "weight": 4 } }, { "key": "7396", "source": "1323", "target": "373", "attributes": { "weight": 2 } }, { "key": "34731", "source": "1323", "target": "1140", "attributes": { "weight": 1 } }, { "key": "6333", "source": "1323", "target": "707", "attributes": { "weight": 2 } }, { "key": "6341", "source": "1323", "target": "1294", "attributes": { "weight": 4 } }, { "key": "34744", "source": "1323", "target": "1047", "attributes": { "weight": 2 } }, { "key": "34765", "source": "1323", "target": "1304", "attributes": { "weight": 1 } }, { "key": "34753", "source": "1323", "target": "208", "attributes": { "weight": 2 } }, { "key": "28486", "source": "1323", "target": "170", "attributes": { "weight": 2 } }, { "key": "16275", "source": "1323", "target": "1329", "attributes": { "weight": 2 } }, { "key": "6340", "source": "1323", "target": "1090", "attributes": { "weight": 4 } }, { "key": "34762", "source": "1323", "target": "1296", "attributes": { "weight": 1 } }, { "key": "34740", "source": "1323", "target": "1188", "attributes": { "weight": 1 } }, { "key": "6338", "source": "1323", "target": "123", "attributes": { "weight": 5 } }, { "key": "34761", "source": "1323", "target": "2605", "attributes": { "weight": 1 } }, { "key": "9903", "source": "1323", "target": "396", "attributes": { "weight": 4 } }, { "key": "34776", "source": "1324", "target": "1197", "attributes": { "weight": 1 } }, { "key": "9066", "source": "1324", "target": "195", "attributes": { "weight": 3 } }, { "key": "6346", "source": "1324", "target": "123", "attributes": { "weight": 3 } }, { "key": "22148", "source": "1324", "target": "337", "attributes": { "weight": 1 } }, { "key": "22149", "source": "1324", "target": "2300", "attributes": { "weight": 1 } }, { "key": "22150", "source": "1324", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22151", "source": "1324", "target": "2212", "attributes": { "weight": 1 } }, { "key": "6345", "source": "1324", "target": "368", "attributes": { "weight": 2 } }, { "key": "22147", "source": "1324", "target": "2293", "attributes": { "weight": 1 } }, { "key": "34779", "source": "1325", "target": "1197", "attributes": { "weight": 1 } }, { "key": "6348", "source": "1325", "target": "368", "attributes": { "weight": 2 } }, { "key": "22152", "source": "1325", "target": "337", "attributes": { "weight": 1 } }, { "key": "34780", "source": "1325", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9070", "source": "1325", "target": "195", "attributes": { "weight": 3 } }, { "key": "18947", "source": "1326", "target": "337", "attributes": { "weight": 2 } }, { "key": "9906", "source": "1326", "target": "406", "attributes": { "weight": 2 } }, { "key": "36723", "source": "1326", "target": "1552", "attributes": { "weight": 1 } }, { "key": "16277", "source": "1326", "target": "195", "attributes": { "weight": 2 } }, { "key": "6353", "source": "1326", "target": "1245", "attributes": { "weight": 2 } }, { "key": "36722", "source": "1326", "target": "1173", "attributes": { "weight": 1 } }, { "key": "6356", "source": "1326", "target": "1285", "attributes": { "weight": 3 } }, { "key": "36724", "source": "1326", "target": "1288", "attributes": { "weight": 1 } }, { "key": "6359", "source": "1326", "target": "1294", "attributes": { "weight": 3 } }, { "key": "10356", "source": "1326", "target": "1308", "attributes": { "weight": 1 } }, { "key": "34781", "source": "1326", "target": "1233", "attributes": { "weight": 1 } }, { "key": "36725", "source": "1326", "target": "408", "attributes": { "weight": 1 } }, { "key": "10355", "source": "1326", "target": "1167", "attributes": { "weight": 1 } }, { "key": "16279", "source": "1326", "target": "1329", "attributes": { "weight": 1 } }, { "key": "11692", "source": "1326", "target": "938", "attributes": { "weight": 1 } }, { "key": "6351", "source": "1326", "target": "390", "attributes": { "weight": 4 } }, { "key": "6352", "source": "1326", "target": "1227", "attributes": { "weight": 2 } }, { "key": "18946", "source": "1326", "target": "1197", "attributes": { "weight": 3 } }, { "key": "28493", "source": "1326", "target": "580", "attributes": { "weight": 2 } }, { "key": "18948", "source": "1326", "target": "1315", "attributes": { "weight": 2 } }, { "key": "11693", "source": "1326", "target": "370", "attributes": { "weight": 1 } }, { "key": "6355", "source": "1326", "target": "1254", "attributes": { "weight": 2 } }, { "key": "6350", "source": "1326", "target": "368", "attributes": { "weight": 2 } }, { "key": "6354", "source": "1326", "target": "338", "attributes": { "weight": 9 } }, { "key": "6357", "source": "1326", "target": "123", "attributes": { "weight": 2 } }, { "key": "36721", "source": "1326", "target": "1152", "attributes": { "weight": 1 } }, { "key": "16278", "source": "1326", "target": "925", "attributes": { "weight": 1 } }, { "key": "6360", "source": "1326", "target": "1322", "attributes": { "weight": 3 } }, { "key": "6358", "source": "1326", "target": "1291", "attributes": { "weight": 3 } }, { "key": "6370", "source": "1327", "target": "368", "attributes": { "weight": 2 } }, { "key": "12060", "source": "1328", "target": "589", "attributes": { "weight": 2 } }, { "key": "12061", "source": "1328", "target": "961", "attributes": { "weight": 1 } }, { "key": "26821", "source": "1328", "target": "257", "attributes": { "weight": 2 } }, { "key": "6381", "source": "1328", "target": "371", "attributes": { "weight": 2 } }, { "key": "35115", "source": "1328", "target": "1281", "attributes": { "weight": 1 } }, { "key": "12038", "source": "1328", "target": "248", "attributes": { "weight": 3 } }, { "key": "18952", "source": "1329", "target": "1268", "attributes": { "weight": 1 } }, { "key": "6385", "source": "1329", "target": "123", "attributes": { "weight": 4 } }, { "key": "16342", "source": "1329", "target": "1326", "attributes": { "weight": 1 } }, { "key": "9911", "source": "1329", "target": "403", "attributes": { "weight": 2 } }, { "key": "16299", "source": "1329", "target": "1197", "attributes": { "weight": 4 } }, { "key": "16319", "source": "1329", "target": "1689", "attributes": { "weight": 1 } }, { "key": "9910", "source": "1329", "target": "387", "attributes": { "weight": 2 } }, { "key": "16304", "source": "1329", "target": "1205", "attributes": { "weight": 1 } }, { "key": "16323", "source": "1329", "target": "1265", "attributes": { "weight": 1 } }, { "key": "16308", "source": "1329", "target": "390", "attributes": { "weight": 1 } }, { "key": "16287", "source": "1329", "target": "1167", "attributes": { "weight": 1 } }, { "key": "16325", "source": "1329", "target": "1690", "attributes": { "weight": 1 } }, { "key": "16344", "source": "1329", "target": "408", "attributes": { "weight": 1 } }, { "key": "6383", "source": "1329", "target": "368", "attributes": { "weight": 3 } }, { "key": "16292", "source": "1329", "target": "1681", "attributes": { "weight": 1 } }, { "key": "10360", "source": "1329", "target": "1291", "attributes": { "weight": 4 } }, { "key": "6382", "source": "1329", "target": "779", "attributes": { "weight": 3 } }, { "key": "9912", "source": "1329", "target": "406", "attributes": { "weight": 2 } }, { "key": "16340", "source": "1329", "target": "1323", "attributes": { "weight": 2 } }, { "key": "6387", "source": "1329", "target": "1294", "attributes": { "weight": 4 } }, { "key": "16313", "source": "1329", "target": "1227", "attributes": { "weight": 1 } }, { "key": "16350", "source": "1329", "target": "333", "attributes": { "weight": 1 } }, { "key": "6384", "source": "1329", "target": "338", "attributes": { "weight": 7 } }, { "key": "10358", "source": "1329", "target": "912", "attributes": { "weight": 2 } }, { "key": "16322", "source": "1329", "target": "924", "attributes": { "weight": 1 } }, { "key": "16311", "source": "1329", "target": "1686", "attributes": { "weight": 1 } }, { "key": "16293", "source": "1329", "target": "2026", "attributes": { "weight": 1 } }, { "key": "16309", "source": "1329", "target": "1215", "attributes": { "weight": 1 } }, { "key": "16318", "source": "1329", "target": "337", "attributes": { "weight": 3 } }, { "key": "16302", "source": "1329", "target": "1203", "attributes": { "weight": 1 } }, { "key": "16283", "source": "1329", "target": "711", "attributes": { "weight": 1 } }, { "key": "9075", "source": "1329", "target": "195", "attributes": { "weight": 6 } }, { "key": "16333", "source": "1329", "target": "1300", "attributes": { "weight": 1 } }, { "key": "16315", "source": "1329", "target": "2037", "attributes": { "weight": 1 } }, { "key": "16339", "source": "1329", "target": "405", "attributes": { "weight": 1 } }, { "key": "16320", "source": "1329", "target": "1263", "attributes": { "weight": 1 } }, { "key": "16286", "source": "1329", "target": "1165", "attributes": { "weight": 1 } }, { "key": "16289", "source": "1329", "target": "2024", "attributes": { "weight": 1 } }, { "key": "16298", "source": "1329", "target": "1196", "attributes": { "weight": 1 } }, { "key": "16328", "source": "1329", "target": "1286", "attributes": { "weight": 1 } }, { "key": "16294", "source": "1329", "target": "2028", "attributes": { "weight": 1 } }, { "key": "10362", "source": "1329", "target": "1322", "attributes": { "weight": 4 } }, { "key": "11710", "source": "1329", "target": "1251", "attributes": { "weight": 2 } }, { "key": "16327", "source": "1329", "target": "1284", "attributes": { "weight": 3 } }, { "key": "16321", "source": "1329", "target": "208", "attributes": { "weight": 1 } }, { "key": "16351", "source": "1329", "target": "377", "attributes": { "weight": 1 } }, { "key": "16295", "source": "1329", "target": "2029", "attributes": { "weight": 1 } }, { "key": "16343", "source": "1329", "target": "1331", "attributes": { "weight": 1 } }, { "key": "16314", "source": "1329", "target": "1233", "attributes": { "weight": 2 } }, { "key": "9076", "source": "1329", "target": "442", "attributes": { "weight": 2 } }, { "key": "16331", "source": "1329", "target": "2045", "attributes": { "weight": 1 } }, { "key": "16324", "source": "1329", "target": "1278", "attributes": { "weight": 1 } }, { "key": "16300", "source": "1329", "target": "913", "attributes": { "weight": 1 } }, { "key": "16307", "source": "1329", "target": "2035", "attributes": { "weight": 1 } }, { "key": "16348", "source": "1329", "target": "2050", "attributes": { "weight": 1 } }, { "key": "10359", "source": "1329", "target": "926", "attributes": { "weight": 2 } }, { "key": "16296", "source": "1329", "target": "1188", "attributes": { "weight": 1 } }, { "key": "16310", "source": "1329", "target": "1218", "attributes": { "weight": 1 } }, { "key": "16297", "source": "1329", "target": "2030", "attributes": { "weight": 1 } }, { "key": "16282", "source": "1329", "target": "1140", "attributes": { "weight": 1 } }, { "key": "16332", "source": "1329", "target": "1693", "attributes": { "weight": 1 } }, { "key": "16346", "source": "1329", "target": "1342", "attributes": { "weight": 1 } }, { "key": "16330", "source": "1329", "target": "1288", "attributes": { "weight": 1 } }, { "key": "16301", "source": "1329", "target": "2033", "attributes": { "weight": 1 } }, { "key": "16312", "source": "1329", "target": "1687", "attributes": { "weight": 1 } }, { "key": "16336", "source": "1329", "target": "1305", "attributes": { "weight": 1 } }, { "key": "10361", "source": "1329", "target": "1315", "attributes": { "weight": 2 } }, { "key": "16345", "source": "1329", "target": "124", "attributes": { "weight": 1 } }, { "key": "16341", "source": "1329", "target": "2049", "attributes": { "weight": 1 } }, { "key": "16338", "source": "1329", "target": "1308", "attributes": { "weight": 1 } }, { "key": "16306", "source": "1329", "target": "1685", "attributes": { "weight": 1 } }, { "key": "16317", "source": "1329", "target": "2041", "attributes": { "weight": 1 } }, { "key": "16316", "source": "1329", "target": "1236", "attributes": { "weight": 1 } }, { "key": "16337", "source": "1329", "target": "2048", "attributes": { "weight": 1 } }, { "key": "16291", "source": "1329", "target": "1174", "attributes": { "weight": 3 } }, { "key": "16284", "source": "1329", "target": "1152", "attributes": { "weight": 1 } }, { "key": "11709", "source": "1329", "target": "370", "attributes": { "weight": 2 } }, { "key": "16347", "source": "1329", "target": "1343", "attributes": { "weight": 2 } }, { "key": "16305", "source": "1329", "target": "1206", "attributes": { "weight": 1 } }, { "key": "16334", "source": "1329", "target": "1303", "attributes": { "weight": 1 } }, { "key": "16288", "source": "1329", "target": "938", "attributes": { "weight": 1 } }, { "key": "16335", "source": "1329", "target": "1304", "attributes": { "weight": 1 } }, { "key": "6386", "source": "1329", "target": "1090", "attributes": { "weight": 3 } }, { "key": "18951", "source": "1329", "target": "1552", "attributes": { "weight": 2 } }, { "key": "16329", "source": "1329", "target": "1287", "attributes": { "weight": 1 } }, { "key": "16290", "source": "1329", "target": "1173", "attributes": { "weight": 1 } }, { "key": "16349", "source": "1329", "target": "2051", "attributes": { "weight": 1 } }, { "key": "16303", "source": "1329", "target": "1047", "attributes": { "weight": 1 } }, { "key": "16285", "source": "1329", "target": "937", "attributes": { "weight": 1 } }, { "key": "16326", "source": "1329", "target": "925", "attributes": { "weight": 1 } }, { "key": "37180", "source": "1330", "target": "387", "attributes": { "weight": 1 } }, { "key": "37181", "source": "1330", "target": "411", "attributes": { "weight": 1 } }, { "key": "34790", "source": "1330", "target": "1233", "attributes": { "weight": 1 } }, { "key": "35669", "source": "1330", "target": "1264", "attributes": { "weight": 1 } }, { "key": "9913", "source": "1330", "target": "396", "attributes": { "weight": 2 } }, { "key": "6388", "source": "1330", "target": "368", "attributes": { "weight": 2 } }, { "key": "36729", "source": "1331", "target": "1288", "attributes": { "weight": 1 } }, { "key": "34793", "source": "1331", "target": "1232", "attributes": { "weight": 1 } }, { "key": "6392", "source": "1331", "target": "1285", "attributes": { "weight": 2 } }, { "key": "34794", "source": "1331", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16352", "source": "1331", "target": "925", "attributes": { "weight": 1 } }, { "key": "36727", "source": "1331", "target": "1173", "attributes": { "weight": 1 } }, { "key": "6391", "source": "1331", "target": "338", "attributes": { "weight": 7 } }, { "key": "10363", "source": "1331", "target": "1167", "attributes": { "weight": 1 } }, { "key": "11711", "source": "1331", "target": "370", "attributes": { "weight": 1 } }, { "key": "10364", "source": "1331", "target": "1291", "attributes": { "weight": 2 } }, { "key": "6390", "source": "1331", "target": "368", "attributes": { "weight": 2 } }, { "key": "10365", "source": "1331", "target": "1300", "attributes": { "weight": 1 } }, { "key": "6389", "source": "1331", "target": "779", "attributes": { "weight": 2 } }, { "key": "34796", "source": "1331", "target": "1323", "attributes": { "weight": 1 } }, { "key": "9915", "source": "1331", "target": "390", "attributes": { "weight": 3 } }, { "key": "11712", "source": "1331", "target": "1251", "attributes": { "weight": 1 } }, { "key": "34795", "source": "1331", "target": "123", "attributes": { "weight": 1 } }, { "key": "6394", "source": "1331", "target": "1322", "attributes": { "weight": 5 } }, { "key": "18955", "source": "1331", "target": "1315", "attributes": { "weight": 2 } }, { "key": "18954", "source": "1331", "target": "337", "attributes": { "weight": 2 } }, { "key": "16353", "source": "1331", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18956", "source": "1331", "target": "408", "attributes": { "weight": 2 } }, { "key": "36728", "source": "1331", "target": "1552", "attributes": { "weight": 1 } }, { "key": "6393", "source": "1331", "target": "1294", "attributes": { "weight": 4 } }, { "key": "23211", "source": "1331", "target": "1227", "attributes": { "weight": 1 } }, { "key": "34792", "source": "1331", "target": "3129", "attributes": { "weight": 1 } }, { "key": "9077", "source": "1331", "target": "195", "attributes": { "weight": 4 } }, { "key": "18953", "source": "1331", "target": "1197", "attributes": { "weight": 3 } }, { "key": "6401", "source": "1332", "target": "368", "attributes": { "weight": 2 } }, { "key": "11713", "source": "1333", "target": "370", "attributes": { "weight": 1 } }, { "key": "9088", "source": "1333", "target": "195", "attributes": { "weight": 5 } }, { "key": "11714", "source": "1333", "target": "921", "attributes": { "weight": 2 } }, { "key": "34802", "source": "1333", "target": "123", "attributes": { "weight": 1 } }, { "key": "6402", "source": "1333", "target": "779", "attributes": { "weight": 2 } }, { "key": "6403", "source": "1333", "target": "1196", "attributes": { "weight": 2 } }, { "key": "11717", "source": "1334", "target": "370", "attributes": { "weight": 2 } }, { "key": "28605", "source": "1334", "target": "199", "attributes": { "weight": 1 } }, { "key": "11716", "source": "1334", "target": "1047", "attributes": { "weight": 1 } }, { "key": "11718", "source": "1334", "target": "961", "attributes": { "weight": 2 } }, { "key": "25458", "source": "1334", "target": "990", "attributes": { "weight": 1 } }, { "key": "11715", "source": "1334", "target": "938", "attributes": { "weight": 1 } }, { "key": "6405", "source": "1334", "target": "371", "attributes": { "weight": 2 } }, { "key": "14123", "source": "1334", "target": "1031", "attributes": { "weight": 1 } }, { "key": "6417", "source": "1335", "target": "338", "attributes": { "weight": 2 } }, { "key": "10368", "source": "1335", "target": "1291", "attributes": { "weight": 1 } }, { "key": "6418", "source": "1335", "target": "1315", "attributes": { "weight": 2 } }, { "key": "10369", "source": "1335", "target": "1322", "attributes": { "weight": 1 } }, { "key": "6424", "source": "1336", "target": "123", "attributes": { "weight": 2 } }, { "key": "36383", "source": "1337", "target": "3283", "attributes": { "weight": 1 } }, { "key": "24231", "source": "1337", "target": "130", "attributes": { "weight": 2 } }, { "key": "12532", "source": "1337", "target": "1862", "attributes": { "weight": 1 } }, { "key": "16590", "source": "1337", "target": "1522", "attributes": { "weight": 1 } }, { "key": "31366", "source": "1337", "target": "1141", "attributes": { "weight": 3 } }, { "key": "17003", "source": "1337", "target": "1354", "attributes": { "weight": 2 } }, { "key": "18480", "source": "1337", "target": "1738", "attributes": { "weight": 1 } }, { "key": "31368", "source": "1337", "target": "674", "attributes": { "weight": 1 } }, { "key": "36120", "source": "1337", "target": "465", "attributes": { "weight": 1 } }, { "key": "12724", "source": "1337", "target": "695", "attributes": { "weight": 1 } }, { "key": "6425", "source": "1337", "target": "468", "attributes": { "weight": 3 } }, { "key": "16589", "source": "1337", "target": "1754", "attributes": { "weight": 1 } }, { "key": "26760", "source": "1337", "target": "454", "attributes": { "weight": 2 } }, { "key": "17008", "source": "1337", "target": "70", "attributes": { "weight": 3 } }, { "key": "30656", "source": "1337", "target": "2994", "attributes": { "weight": 1 } }, { "key": "17004", "source": "1337", "target": "434", "attributes": { "weight": 4 } }, { "key": "17009", "source": "1337", "target": "672", "attributes": { "weight": 1 } }, { "key": "36119", "source": "1337", "target": "1360", "attributes": { "weight": 1 } }, { "key": "16591", "source": "1337", "target": "2083", "attributes": { "weight": 1 } }, { "key": "11279", "source": "1337", "target": "220", "attributes": { "weight": 2 } }, { "key": "36121", "source": "1337", "target": "2096", "attributes": { "weight": 1 } }, { "key": "31367", "source": "1337", "target": "59", "attributes": { "weight": 1 } }, { "key": "12534", "source": "1337", "target": "1863", "attributes": { "weight": 2 } }, { "key": "31371", "source": "1337", "target": "596", "attributes": { "weight": 1 } }, { "key": "17005", "source": "1337", "target": "464", "attributes": { "weight": 1 } }, { "key": "36122", "source": "1337", "target": "1390", "attributes": { "weight": 1 } }, { "key": "36385", "source": "1337", "target": "73", "attributes": { "weight": 1 } }, { "key": "17010", "source": "1337", "target": "497", "attributes": { "weight": 1 } }, { "key": "36384", "source": "1337", "target": "1764", "attributes": { "weight": 1 } }, { "key": "17006", "source": "1337", "target": "135", "attributes": { "weight": 1 } }, { "key": "9094", "source": "1337", "target": "442", "attributes": { "weight": 2 } }, { "key": "17007", "source": "1337", "target": "472", "attributes": { "weight": 1 } }, { "key": "31370", "source": "1337", "target": "1282", "attributes": { "weight": 3 } }, { "key": "31369", "source": "1337", "target": "450", "attributes": { "weight": 1 } }, { "key": "17002", "source": "1337", "target": "429", "attributes": { "weight": 1 } }, { "key": "12533", "source": "1337", "target": "1118", "attributes": { "weight": 1 } }, { "key": "31372", "source": "1337", "target": "1389", "attributes": { "weight": 1 } }, { "key": "11719", "source": "1338", "target": "199", "attributes": { "weight": 1 } }, { "key": "11720", "source": "1338", "target": "208", "attributes": { "weight": 1 } }, { "key": "22155", "source": "1338", "target": "2301", "attributes": { "weight": 1 } }, { "key": "6426", "source": "1338", "target": "1090", "attributes": { "weight": 2 } }, { "key": "16368", "source": "1338", "target": "913", "attributes": { "weight": 1 } }, { "key": "6456", "source": "1339", "target": "123", "attributes": { "weight": 2 } }, { "key": "22159", "source": "1339", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22157", "source": "1339", "target": "2300", "attributes": { "weight": 1 } }, { "key": "22158", "source": "1339", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22161", "source": "1340", "target": "2212", "attributes": { "weight": 1 } }, { "key": "6468", "source": "1340", "target": "779", "attributes": { "weight": 2 } }, { "key": "9121", "source": "1340", "target": "195", "attributes": { "weight": 3 } }, { "key": "22160", "source": "1340", "target": "2301", "attributes": { "weight": 1 } }, { "key": "30283", "source": "1341", "target": "2560", "attributes": { "weight": 1 } }, { "key": "6469", "source": "1341", "target": "1166", "attributes": { "weight": 4 } }, { "key": "30284", "source": "1341", "target": "2970", "attributes": { "weight": 1 } }, { "key": "37590", "source": "1341", "target": "3407", "attributes": { "weight": 1 } }, { "key": "30280", "source": "1341", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30281", "source": "1341", "target": "165", "attributes": { "weight": 2 } }, { "key": "30282", "source": "1341", "target": "2934", "attributes": { "weight": 2 } }, { "key": "25221", "source": "1341", "target": "310", "attributes": { "weight": 2 } }, { "key": "25220", "source": "1341", "target": "297", "attributes": { "weight": 1 } }, { "key": "30279", "source": "1341", "target": "2793", "attributes": { "weight": 1 } }, { "key": "34827", "source": "1342", "target": "1232", "attributes": { "weight": 1 } }, { "key": "36752", "source": "1342", "target": "337", "attributes": { "weight": 1 } }, { "key": "36753", "source": "1342", "target": "1552", "attributes": { "weight": 1 } }, { "key": "36751", "source": "1342", "target": "1228", "attributes": { "weight": 1 } }, { "key": "34826", "source": "1342", "target": "1047", "attributes": { "weight": 1 } }, { "key": "18994", "source": "1342", "target": "1197", "attributes": { "weight": 3 } }, { "key": "36754", "source": "1342", "target": "1294", "attributes": { "weight": 1 } }, { "key": "9123", "source": "1342", "target": "195", "attributes": { "weight": 4 } }, { "key": "16382", "source": "1342", "target": "913", "attributes": { "weight": 1 } }, { "key": "22162", "source": "1342", "target": "2212", "attributes": { "weight": 1 } }, { "key": "6472", "source": "1342", "target": "123", "attributes": { "weight": 3 } }, { "key": "6470", "source": "1342", "target": "368", "attributes": { "weight": 2 } }, { "key": "34828", "source": "1342", "target": "1233", "attributes": { "weight": 1 } }, { "key": "16383", "source": "1342", "target": "925", "attributes": { "weight": 1 } }, { "key": "6471", "source": "1342", "target": "371", "attributes": { "weight": 2 } }, { "key": "36750", "source": "1342", "target": "1526", "attributes": { "weight": 1 } }, { "key": "16384", "source": "1342", "target": "1329", "attributes": { "weight": 1 } }, { "key": "36755", "source": "1342", "target": "124", "attributes": { "weight": 1 } }, { "key": "34831", "source": "1343", "target": "1323", "attributes": { "weight": 1 } }, { "key": "18995", "source": "1343", "target": "337", "attributes": { "weight": 2 } }, { "key": "10371", "source": "1343", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34829", "source": "1343", "target": "1197", "attributes": { "weight": 2 } }, { "key": "6476", "source": "1343", "target": "1294", "attributes": { "weight": 2 } }, { "key": "16385", "source": "1343", "target": "925", "attributes": { "weight": 1 } }, { "key": "16386", "source": "1343", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34830", "source": "1343", "target": "1233", "attributes": { "weight": 1 } }, { "key": "18996", "source": "1343", "target": "1552", "attributes": { "weight": 2 } }, { "key": "6473", "source": "1343", "target": "368", "attributes": { "weight": 2 } }, { "key": "18997", "source": "1343", "target": "1326", "attributes": { "weight": 1 } }, { "key": "6474", "source": "1343", "target": "338", "attributes": { "weight": 6 } }, { "key": "6475", "source": "1343", "target": "123", "attributes": { "weight": 2 } }, { "key": "10370", "source": "1343", "target": "1291", "attributes": { "weight": 1 } }, { "key": "9126", "source": "1343", "target": "195", "attributes": { "weight": 5 } }, { "key": "36756", "source": "1343", "target": "1315", "attributes": { "weight": 1 } }, { "key": "6477", "source": "1344", "target": "123", "attributes": { "weight": 3 } }, { "key": "16388", "source": "1344", "target": "925", "attributes": { "weight": 1 } }, { "key": "16387", "source": "1344", "target": "913", "attributes": { "weight": 1 } }, { "key": "6478", "source": "1345", "target": "368", "attributes": { "weight": 2 } }, { "key": "6482", "source": "1346", "target": "368", "attributes": { "weight": 2 } }, { "key": "34832", "source": "1346", "target": "1233", "attributes": { "weight": 1 } }, { "key": "12048", "source": "1347", "target": "135", "attributes": { "weight": 3 } }, { "key": "11731", "source": "1347", "target": "370", "attributes": { "weight": 1 } }, { "key": "6491", "source": "1347", "target": "371", "attributes": { "weight": 2 } }, { "key": "34837", "source": "1347", "target": "1047", "attributes": { "weight": 1 } }, { "key": "12047", "source": "1347", "target": "1220", "attributes": { "weight": 3 } }, { "key": "15399", "source": "1347", "target": "1158", "attributes": { "weight": 1 } }, { "key": "16393", "source": "1347", "target": "195", "attributes": { "weight": 1 } }, { "key": "7414", "source": "1347", "target": "1063", "attributes": { "weight": 2 } }, { "key": "6490", "source": "1347", "target": "779", "attributes": { "weight": 2 } }, { "key": "12049", "source": "1347", "target": "785", "attributes": { "weight": 2 } }, { "key": "35568", "source": "1347", "target": "248", "attributes": { "weight": 1 } }, { "key": "9137", "source": "1348", "target": "195", "attributes": { "weight": 3 } }, { "key": "6495", "source": "1348", "target": "779", "attributes": { "weight": 2 } }, { "key": "34839", "source": "1348", "target": "1233", "attributes": { "weight": 1 } }, { "key": "6497", "source": "1348", "target": "368", "attributes": { "weight": 2 } }, { "key": "6496", "source": "1348", "target": "1196", "attributes": { "weight": 2 } }, { "key": "9935", "source": "1349", "target": "30", "attributes": { "weight": 3 } }, { "key": "21803", "source": "1349", "target": "109", "attributes": { "weight": 2 } }, { "key": "28919", "source": "1349", "target": "1105", "attributes": { "weight": 2 } }, { "key": "26274", "source": "1349", "target": "600", "attributes": { "weight": 1 } }, { "key": "28917", "source": "1349", "target": "471", "attributes": { "weight": 2 } }, { "key": "10146", "source": "1349", "target": "369", "attributes": { "weight": 2 } }, { "key": "6498", "source": "1349", "target": "371", "attributes": { "weight": 2 } }, { "key": "30007", "source": "1349", "target": "603", "attributes": { "weight": 2 } }, { "key": "28916", "source": "1349", "target": "1096", "attributes": { "weight": 2 } }, { "key": "14129", "source": "1349", "target": "1031", "attributes": { "weight": 1 } }, { "key": "28918", "source": "1349", "target": "2826", "attributes": { "weight": 2 } }, { "key": "26275", "source": "1349", "target": "1099", "attributes": { "weight": 3 } }, { "key": "36789", "source": "1350", "target": "372", "attributes": { "weight": 1 } }, { "key": "6510", "source": "1350", "target": "1090", "attributes": { "weight": 2 } }, { "key": "7461", "source": "1350", "target": "1396", "attributes": { "weight": 1 } }, { "key": "7458", "source": "1350", "target": "938", "attributes": { "weight": 2 } }, { "key": "7466", "source": "1350", "target": "1411", "attributes": { "weight": 1 } }, { "key": "7471", "source": "1350", "target": "1424", "attributes": { "weight": 4 } }, { "key": "15407", "source": "1350", "target": "454", "attributes": { "weight": 1 } }, { "key": "36791", "source": "1350", "target": "377", "attributes": { "weight": 1 } }, { "key": "34846", "source": "1350", "target": "1047", "attributes": { "weight": 1 } }, { "key": "36790", "source": "1350", "target": "3315", "attributes": { "weight": 1 } }, { "key": "16399", "source": "1350", "target": "921", "attributes": { "weight": 2 } }, { "key": "7459", "source": "1350", "target": "468", "attributes": { "weight": 2 } }, { "key": "7469", "source": "1350", "target": "1422", "attributes": { "weight": 1 } }, { "key": "7464", "source": "1350", "target": "1406", "attributes": { "weight": 1 } }, { "key": "7462", "source": "1350", "target": "1397", "attributes": { "weight": 1 } }, { "key": "7470", "source": "1350", "target": "1423", "attributes": { "weight": 1 } }, { "key": "7472", "source": "1350", "target": "1063", "attributes": { "weight": 3 } }, { "key": "7460", "source": "1350", "target": "123", "attributes": { "weight": 2 } }, { "key": "7467", "source": "1350", "target": "1413", "attributes": { "weight": 1 } }, { "key": "32989", "source": "1350", "target": "208", "attributes": { "weight": 2 } }, { "key": "7465", "source": "1350", "target": "1410", "attributes": { "weight": 1 } }, { "key": "36787", "source": "1350", "target": "387", "attributes": { "weight": 1 } }, { "key": "36788", "source": "1350", "target": "1262", "attributes": { "weight": 1 } }, { "key": "29600", "source": "1350", "target": "2880", "attributes": { "weight": 1 } }, { "key": "6509", "source": "1350", "target": "1196", "attributes": { "weight": 2 } }, { "key": "7463", "source": "1350", "target": "375", "attributes": { "weight": 3 } }, { "key": "29309", "source": "1350", "target": "2848", "attributes": { "weight": 1 } }, { "key": "7468", "source": "1350", "target": "154", "attributes": { "weight": 2 } }, { "key": "6511", "source": "1351", "target": "123", "attributes": { "weight": 2 } }, { "key": "36792", "source": "1351", "target": "377", "attributes": { "weight": 1 } }, { "key": "6526", "source": "1352", "target": "1294", "attributes": { "weight": 2 } }, { "key": "34850", "source": "1352", "target": "338", "attributes": { "weight": 1 } }, { "key": "19108", "source": "1353", "target": "450", "attributes": { "weight": 1 } }, { "key": "23910", "source": "1353", "target": "437", "attributes": { "weight": 3 } }, { "key": "28653", "source": "1353", "target": "54", "attributes": { "weight": 2 } }, { "key": "19103", "source": "1353", "target": "222", "attributes": { "weight": 1 } }, { "key": "15200", "source": "1353", "target": "454", "attributes": { "weight": 2 } }, { "key": "35198", "source": "1353", "target": "2470", "attributes": { "weight": 1 } }, { "key": "26978", "source": "1353", "target": "2105", "attributes": { "weight": 1 } }, { "key": "19101", "source": "1353", "target": "130", "attributes": { "weight": 3 } }, { "key": "19124", "source": "1353", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19121", "source": "1353", "target": "2271", "attributes": { "weight": 1 } }, { "key": "19105", "source": "1353", "target": "51", "attributes": { "weight": 2 } }, { "key": "23506", "source": "1353", "target": "220", "attributes": { "weight": 1 } }, { "key": "6565", "source": "1353", "target": "188", "attributes": { "weight": 2 } }, { "key": "19115", "source": "1353", "target": "2258", "attributes": { "weight": 3 } }, { "key": "6562", "source": "1353", "target": "224", "attributes": { "weight": 1 } }, { "key": "19102", "source": "1353", "target": "221", "attributes": { "weight": 1 } }, { "key": "26284", "source": "1353", "target": "1258", "attributes": { "weight": 1 } }, { "key": "15202", "source": "1353", "target": "455", "attributes": { "weight": 2 } }, { "key": "19106", "source": "1353", "target": "1023", "attributes": { "weight": 1 } }, { "key": "15199", "source": "1353", "target": "435", "attributes": { "weight": 6 } }, { "key": "19107", "source": "1353", "target": "2245", "attributes": { "weight": 1 } }, { "key": "15203", "source": "1353", "target": "472", "attributes": { "weight": 7 } }, { "key": "15204", "source": "1353", "target": "1369", "attributes": { "weight": 1 } }, { "key": "15206", "source": "1353", "target": "672", "attributes": { "weight": 1 } }, { "key": "17121", "source": "1353", "target": "2108", "attributes": { "weight": 2 } }, { "key": "19122", "source": "1353", "target": "2111", "attributes": { "weight": 1 } }, { "key": "6563", "source": "1353", "target": "183", "attributes": { "weight": 2 } }, { "key": "19116", "source": "1353", "target": "471", "attributes": { "weight": 3 } }, { "key": "15201", "source": "1353", "target": "1219", "attributes": { "weight": 5 } }, { "key": "6567", "source": "1353", "target": "189", "attributes": { "weight": 2 } }, { "key": "26977", "source": "1353", "target": "2645", "attributes": { "weight": 2 } }, { "key": "6566", "source": "1353", "target": "467", "attributes": { "weight": 2 } }, { "key": "19114", "source": "1353", "target": "1836", "attributes": { "weight": 2 } }, { "key": "11822", "source": "1353", "target": "135", "attributes": { "weight": 9 } }, { "key": "6568", "source": "1353", "target": "193", "attributes": { "weight": 1 } }, { "key": "19120", "source": "1353", "target": "2109", "attributes": { "weight": 2 } }, { "key": "19111", "source": "1353", "target": "453", "attributes": { "weight": 1 } }, { "key": "6569", "source": "1353", "target": "57", "attributes": { "weight": 2 } }, { "key": "19118", "source": "1353", "target": "2261", "attributes": { "weight": 1 } }, { "key": "31491", "source": "1353", "target": "438", "attributes": { "weight": 1 } }, { "key": "19104", "source": "1353", "target": "2106", "attributes": { "weight": 1 } }, { "key": "19117", "source": "1353", "target": "1838", "attributes": { "weight": 1 } }, { "key": "26979", "source": "1353", "target": "1282", "attributes": { "weight": 4 } }, { "key": "19110", "source": "1353", "target": "1832", "attributes": { "weight": 6 } }, { "key": "6564", "source": "1353", "target": "1358", "attributes": { "weight": 5 } }, { "key": "19109", "source": "1353", "target": "2248", "attributes": { "weight": 1 } }, { "key": "17120", "source": "1353", "target": "449", "attributes": { "weight": 2 } }, { "key": "19125", "source": "1353", "target": "2278", "attributes": { "weight": 1 } }, { "key": "19119", "source": "1353", "target": "2267", "attributes": { "weight": 1 } }, { "key": "28654", "source": "1353", "target": "1711", "attributes": { "weight": 1 } }, { "key": "15205", "source": "1353", "target": "490", "attributes": { "weight": 2 } }, { "key": "19113", "source": "1353", "target": "1247", "attributes": { "weight": 3 } }, { "key": "19112", "source": "1353", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19123", "source": "1353", "target": "489", "attributes": { "weight": 3 } }, { "key": "19212", "source": "1354", "target": "2253", "attributes": { "weight": 1 } }, { "key": "16625", "source": "1354", "target": "70", "attributes": { "weight": 2 } }, { "key": "19232", "source": "1354", "target": "2276", "attributes": { "weight": 1 } }, { "key": "26987", "source": "1354", "target": "1282", "attributes": { "weight": 3 } }, { "key": "23925", "source": "1354", "target": "130", "attributes": { "weight": 2 } }, { "key": "19213", "source": "1354", "target": "2107", "attributes": { "weight": 1 } }, { "key": "12126", "source": "1354", "target": "1535", "attributes": { "weight": 1 } }, { "key": "19211", "source": "1354", "target": "2088", "attributes": { "weight": 1 } }, { "key": "19197", "source": "1354", "target": "221", "attributes": { "weight": 1 } }, { "key": "33177", "source": "1354", "target": "52", "attributes": { "weight": 1 } }, { "key": "6576", "source": "1354", "target": "183", "attributes": { "weight": 1 } }, { "key": "19200", "source": "1354", "target": "438", "attributes": { "weight": 1 } }, { "key": "23930", "source": "1354", "target": "459", "attributes": { "weight": 2 } }, { "key": "16618", "source": "1354", "target": "224", "attributes": { "weight": 1 } }, { "key": "16631", "source": "1354", "target": "1389", "attributes": { "weight": 2 } }, { "key": "19206", "source": "1354", "target": "2248", "attributes": { "weight": 2 } }, { "key": "19222", "source": "1354", "target": "2261", "attributes": { "weight": 1 } }, { "key": "35199", "source": "1354", "target": "56", "attributes": { "weight": 1 } }, { "key": "19220", "source": "1354", "target": "2260", "attributes": { "weight": 1 } }, { "key": "19219", "source": "1354", "target": "472", "attributes": { "weight": 5 } }, { "key": "19229", "source": "1354", "target": "1751", "attributes": { "weight": 1 } }, { "key": "16615", "source": "1354", "target": "59", "attributes": { "weight": 2 } }, { "key": "19207", "source": "1354", "target": "1832", "attributes": { "weight": 4 } }, { "key": "23927", "source": "1354", "target": "446", "attributes": { "weight": 3 } }, { "key": "19208", "source": "1354", "target": "453", "attributes": { "weight": 1 } }, { "key": "9156", "source": "1354", "target": "1592", "attributes": { "weight": 3 } }, { "key": "19210", "source": "1354", "target": "1998", "attributes": { "weight": 1 } }, { "key": "26984", "source": "1354", "target": "2645", "attributes": { "weight": 2 } }, { "key": "19224", "source": "1354", "target": "2262", "attributes": { "weight": 1 } }, { "key": "6580", "source": "1354", "target": "231", "attributes": { "weight": 3 } }, { "key": "16624", "source": "1354", "target": "2081", "attributes": { "weight": 1 } }, { "key": "19231", "source": "1354", "target": "76", "attributes": { "weight": 1 } }, { "key": "33178", "source": "1354", "target": "2258", "attributes": { "weight": 2 } }, { "key": "19198", "source": "1354", "target": "222", "attributes": { "weight": 1 } }, { "key": "16632", "source": "1354", "target": "73", "attributes": { "weight": 2 } }, { "key": "9155", "source": "1354", "target": "430", "attributes": { "weight": 1 } }, { "key": "6578", "source": "1354", "target": "188", "attributes": { "weight": 2 } }, { "key": "19202", "source": "1354", "target": "223", "attributes": { "weight": 4 } }, { "key": "19205", "source": "1354", "target": "450", "attributes": { "weight": 3 } }, { "key": "16633", "source": "1354", "target": "1752", "attributes": { "weight": 1 } }, { "key": "19209", "source": "1354", "target": "186", "attributes": { "weight": 1 } }, { "key": "19216", "source": "1354", "target": "2254", "attributes": { "weight": 1 } }, { "key": "26985", "source": "1354", "target": "2105", "attributes": { "weight": 1 } }, { "key": "19223", "source": "1354", "target": "476", "attributes": { "weight": 1 } }, { "key": "19217", "source": "1354", "target": "1247", "attributes": { "weight": 2 } }, { "key": "16626", "source": "1354", "target": "1745", "attributes": { "weight": 1 } }, { "key": "16620", "source": "1354", "target": "1862", "attributes": { "weight": 1 } }, { "key": "33176", "source": "1354", "target": "425", "attributes": { "weight": 1 } }, { "key": "35670", "source": "1354", "target": "1738", "attributes": { "weight": 2 } }, { "key": "16628", "source": "1354", "target": "1337", "attributes": { "weight": 2 } }, { "key": "23926", "source": "1354", "target": "437", "attributes": { "weight": 2 } }, { "key": "16623", "source": "1354", "target": "66", "attributes": { "weight": 1 } }, { "key": "11826", "source": "1354", "target": "135", "attributes": { "weight": 6 } }, { "key": "23928", "source": "1354", "target": "3", "attributes": { "weight": 4 } }, { "key": "17128", "source": "1354", "target": "2108", "attributes": { "weight": 1 } }, { "key": "6577", "source": "1354", "target": "454", "attributes": { "weight": 1 } }, { "key": "19230", "source": "1354", "target": "2275", "attributes": { "weight": 1 } }, { "key": "16613", "source": "1354", "target": "1754", "attributes": { "weight": 1 } }, { "key": "19199", "source": "1354", "target": "2106", "attributes": { "weight": 1 } }, { "key": "19226", "source": "1354", "target": "2109", "attributes": { "weight": 1 } }, { "key": "19214", "source": "1354", "target": "464", "attributes": { "weight": 1 } }, { "key": "26986", "source": "1354", "target": "1219", "attributes": { "weight": 3 } }, { "key": "16630", "source": "1354", "target": "596", "attributes": { "weight": 1 } }, { "key": "19225", "source": "1354", "target": "2267", "attributes": { "weight": 1 } }, { "key": "23512", "source": "1354", "target": "220", "attributes": { "weight": 3 } }, { "key": "19215", "source": "1354", "target": "465", "attributes": { "weight": 1 } }, { "key": "6583", "source": "1354", "target": "57", "attributes": { "weight": 1 } }, { "key": "19218", "source": "1354", "target": "1836", "attributes": { "weight": 2 } }, { "key": "19203", "source": "1354", "target": "1023", "attributes": { "weight": 1 } }, { "key": "6579", "source": "1354", "target": "189", "attributes": { "weight": 2 } }, { "key": "23931", "source": "1354", "target": "54", "attributes": { "weight": 1 } }, { "key": "31218", "source": "1354", "target": "1764", "attributes": { "weight": 1 } }, { "key": "19227", "source": "1354", "target": "2111", "attributes": { "weight": 1 } }, { "key": "6581", "source": "1354", "target": "490", "attributes": { "weight": 1 } }, { "key": "23513", "source": "1354", "target": "1312", "attributes": { "weight": 1 } }, { "key": "33179", "source": "1354", "target": "2110", "attributes": { "weight": 1 } }, { "key": "12127", "source": "1354", "target": "1564", "attributes": { "weight": 1 } }, { "key": "16616", "source": "1354", "target": "434", "attributes": { "weight": 2 } }, { "key": "16629", "source": "1354", "target": "72", "attributes": { "weight": 1 } }, { "key": "23929", "source": "1354", "target": "452", "attributes": { "weight": 2 } }, { "key": "19228", "source": "1354", "target": "489", "attributes": { "weight": 1 } }, { "key": "16617", "source": "1354", "target": "1522", "attributes": { "weight": 2 } }, { "key": "16614", "source": "1354", "target": "1755", "attributes": { "weight": 1 } }, { "key": "19201", "source": "1354", "target": "51", "attributes": { "weight": 3 } }, { "key": "23933", "source": "1354", "target": "1125", "attributes": { "weight": 2 } }, { "key": "19233", "source": "1354", "target": "498", "attributes": { "weight": 1 } }, { "key": "16619", "source": "1354", "target": "674", "attributes": { "weight": 3 } }, { "key": "6582", "source": "1354", "target": "193", "attributes": { "weight": 1 } }, { "key": "23932", "source": "1354", "target": "471", "attributes": { "weight": 1 } }, { "key": "19204", "source": "1354", "target": "2245", "attributes": { "weight": 1 } }, { "key": "12125", "source": "1354", "target": "435", "attributes": { "weight": 4 } }, { "key": "19221", "source": "1354", "target": "1838", "attributes": { "weight": 1 } }, { "key": "16621", "source": "1354", "target": "1118", "attributes": { "weight": 1 } }, { "key": "16627", "source": "1354", "target": "2095", "attributes": { "weight": 2 } }, { "key": "16622", "source": "1354", "target": "457", "attributes": { "weight": 1 } }, { "key": "17127", "source": "1354", "target": "449", "attributes": { "weight": 2 } }, { "key": "6657", "source": "1355", "target": "183", "attributes": { "weight": 3 } }, { "key": "12388", "source": "1355", "target": "442", "attributes": { "weight": 2 } }, { "key": "32719", "source": "1355", "target": "1125", "attributes": { "weight": 3 } }, { "key": "33040", "source": "1355", "target": "672", "attributes": { "weight": 1 } }, { "key": "33038", "source": "1355", "target": "474", "attributes": { "weight": 1 } }, { "key": "33035", "source": "1355", "target": "425", "attributes": { "weight": 1 } }, { "key": "12394", "source": "1355", "target": "1088", "attributes": { "weight": 3 } }, { "key": "12393", "source": "1355", "target": "189", "attributes": { "weight": 3 } }, { "key": "21428", "source": "1355", "target": "894", "attributes": { "weight": 1 } }, { "key": "12389", "source": "1355", "target": "1121", "attributes": { "weight": 2 } }, { "key": "26300", "source": "1355", "target": "1258", "attributes": { "weight": 1 } }, { "key": "33039", "source": "1355", "target": "1131", "attributes": { "weight": 1 } }, { "key": "12390", "source": "1355", "target": "228", "attributes": { "weight": 2 } }, { "key": "33034", "source": "1355", "target": "223", "attributes": { "weight": 1 } }, { "key": "6658", "source": "1355", "target": "476", "attributes": { "weight": 1 } }, { "key": "15221", "source": "1355", "target": "454", "attributes": { "weight": 2 } }, { "key": "34869", "source": "1355", "target": "493", "attributes": { "weight": 1 } }, { "key": "12392", "source": "1355", "target": "1087", "attributes": { "weight": 2 } }, { "key": "15222", "source": "1355", "target": "467", "attributes": { "weight": 1 } }, { "key": "33036", "source": "1355", "target": "52", "attributes": { "weight": 1 } }, { "key": "26301", "source": "1355", "target": "1368", "attributes": { "weight": 1 } }, { "key": "33041", "source": "1355", "target": "57", "attributes": { "weight": 1 } }, { "key": "33037", "source": "1355", "target": "188", "attributes": { "weight": 1 } }, { "key": "35682", "source": "1356", "target": "438", "attributes": { "weight": 1 } }, { "key": "6737", "source": "1356", "target": "443", "attributes": { "weight": 1 } }, { "key": "26474", "source": "1356", "target": "454", "attributes": { "weight": 1 } }, { "key": "6739", "source": "1356", "target": "231", "attributes": { "weight": 1 } }, { "key": "35684", "source": "1356", "target": "57", "attributes": { "weight": 1 } }, { "key": "6736", "source": "1356", "target": "424", "attributes": { "weight": 1 } }, { "key": "6738", "source": "1356", "target": "459", "attributes": { "weight": 1 } }, { "key": "35683", "source": "1356", "target": "490", "attributes": { "weight": 1 } }, { "key": "26475", "source": "1356", "target": "189", "attributes": { "weight": 1 } }, { "key": "20052", "source": "1356", "target": "429", "attributes": { "weight": 1 } }, { "key": "20053", "source": "1356", "target": "2251", "attributes": { "weight": 1 } }, { "key": "30757", "source": "1357", "target": "1744", "attributes": { "weight": 3 } }, { "key": "31529", "source": "1357", "target": "438", "attributes": { "weight": 1 } }, { "key": "36995", "source": "1357", "target": "455", "attributes": { "weight": 1 } }, { "key": "32728", "source": "1357", "target": "135", "attributes": { "weight": 4 } }, { "key": "23334", "source": "1357", "target": "223", "attributes": { "weight": 1 } }, { "key": "32875", "source": "1357", "target": "778", "attributes": { "weight": 1 } }, { "key": "23610", "source": "1357", "target": "220", "attributes": { "weight": 1 } }, { "key": "30496", "source": "1357", "target": "479", "attributes": { "weight": 1 } }, { "key": "32727", "source": "1357", "target": "435", "attributes": { "weight": 2 } }, { "key": "6740", "source": "1357", "target": "183", "attributes": { "weight": 2 } }, { "key": "36994", "source": "1357", "target": "224", "attributes": { "weight": 1 } }, { "key": "26305", "source": "1357", "target": "1258", "attributes": { "weight": 1 } }, { "key": "27054", "source": "1357", "target": "472", "attributes": { "weight": 2 } }, { "key": "6742", "source": "1357", "target": "189", "attributes": { "weight": 2 } }, { "key": "36993", "source": "1357", "target": "425", "attributes": { "weight": 1 } }, { "key": "15236", "source": "1357", "target": "188", "attributes": { "weight": 1 } }, { "key": "28659", "source": "1357", "target": "54", "attributes": { "weight": 2 } }, { "key": "6745", "source": "1357", "target": "57", "attributes": { "weight": 2 } }, { "key": "28660", "source": "1357", "target": "1370", "attributes": { "weight": 3 } }, { "key": "15237", "source": "1357", "target": "490", "attributes": { "weight": 2 } }, { "key": "27052", "source": "1357", "target": "1832", "attributes": { "weight": 1 } }, { "key": "27053", "source": "1357", "target": "1247", "attributes": { "weight": 1 } }, { "key": "15235", "source": "1357", "target": "454", "attributes": { "weight": 2 } }, { "key": "37484", "source": "1357", "target": "1125", "attributes": { "weight": 1 } }, { "key": "33367", "source": "1357", "target": "51", "attributes": { "weight": 1 } }, { "key": "32859", "source": "1357", "target": "1219", "attributes": { "weight": 1 } }, { "key": "6741", "source": "1357", "target": "467", "attributes": { "weight": 2 } }, { "key": "6743", "source": "1357", "target": "193", "attributes": { "weight": 1 } }, { "key": "6744", "source": "1357", "target": "495", "attributes": { "weight": 4 } }, { "key": "30756", "source": "1357", "target": "470", "attributes": { "weight": 4 } }, { "key": "28661", "source": "1358", "target": "54", "attributes": { "weight": 2 } }, { "key": "33368", "source": "1358", "target": "425", "attributes": { "weight": 2 } }, { "key": "6762", "source": "1358", "target": "224", "attributes": { "weight": 2 } }, { "key": "20066", "source": "1358", "target": "1832", "attributes": { "weight": 4 } }, { "key": "15278", "source": "1358", "target": "1369", "attributes": { "weight": 1 } }, { "key": "26309", "source": "1358", "target": "1258", "attributes": { "weight": 1 } }, { "key": "20068", "source": "1358", "target": "1836", "attributes": { "weight": 2 } }, { "key": "23612", "source": "1358", "target": "220", "attributes": { "weight": 1 } }, { "key": "20061", "source": "1358", "target": "435", "attributes": { "weight": 5 } }, { "key": "6770", "source": "1358", "target": "495", "attributes": { "weight": 2 } }, { "key": "28662", "source": "1358", "target": "1711", "attributes": { "weight": 1 } }, { "key": "24345", "source": "1358", "target": "496", "attributes": { "weight": 1 } }, { "key": "16804", "source": "1358", "target": "135", "attributes": { "weight": 5 } }, { "key": "27055", "source": "1358", "target": "1219", "attributes": { "weight": 2 } }, { "key": "20071", "source": "1358", "target": "2261", "attributes": { "weight": 1 } }, { "key": "6768", "source": "1358", "target": "192", "attributes": { "weight": 2 } }, { "key": "20059", "source": "1358", "target": "130", "attributes": { "weight": 3 } }, { "key": "24344", "source": "1358", "target": "473", "attributes": { "weight": 1 } }, { "key": "24343", "source": "1358", "target": "452", "attributes": { "weight": 1 } }, { "key": "23611", "source": "1358", "target": "1353", "attributes": { "weight": 1 } }, { "key": "15279", "source": "1358", "target": "490", "attributes": { "weight": 2 } }, { "key": "20062", "source": "1358", "target": "2106", "attributes": { "weight": 1 } }, { "key": "6763", "source": "1358", "target": "183", "attributes": { "weight": 3 } }, { "key": "15277", "source": "1358", "target": "472", "attributes": { "weight": 5 } }, { "key": "24057", "source": "1358", "target": "437", "attributes": { "weight": 2 } }, { "key": "31530", "source": "1358", "target": "3058", "attributes": { "weight": 1 } }, { "key": "20069", "source": "1358", "target": "2258", "attributes": { "weight": 2 } }, { "key": "20070", "source": "1358", "target": "471", "attributes": { "weight": 3 } }, { "key": "15280", "source": "1358", "target": "672", "attributes": { "weight": 1 } }, { "key": "6765", "source": "1358", "target": "467", "attributes": { "weight": 2 } }, { "key": "20075", "source": "1358", "target": "2111", "attributes": { "weight": 1 } }, { "key": "36999", "source": "1358", "target": "3341", "attributes": { "weight": 1 } }, { "key": "20073", "source": "1358", "target": "2267", "attributes": { "weight": 1 } }, { "key": "35303", "source": "1358", "target": "1088", "attributes": { "weight": 1 } }, { "key": "20076", "source": "1358", "target": "489", "attributes": { "weight": 2 } }, { "key": "6771", "source": "1358", "target": "57", "attributes": { "weight": 2 } }, { "key": "23335", "source": "1358", "target": "223", "attributes": { "weight": 1 } }, { "key": "6769", "source": "1358", "target": "193", "attributes": { "weight": 1 } }, { "key": "17240", "source": "1358", "target": "449", "attributes": { "weight": 2 } }, { "key": "6764", "source": "1358", "target": "188", "attributes": { "weight": 2 } }, { "key": "15275", "source": "1358", "target": "454", "attributes": { "weight": 2 } }, { "key": "32729", "source": "1358", "target": "51", "attributes": { "weight": 2 } }, { "key": "20067", "source": "1358", "target": "1247", "attributes": { "weight": 2 } }, { "key": "20060", "source": "1358", "target": "221", "attributes": { "weight": 1 } }, { "key": "15276", "source": "1358", "target": "455", "attributes": { "weight": 2 } }, { "key": "23336", "source": "1358", "target": "56", "attributes": { "weight": 2 } }, { "key": "6767", "source": "1358", "target": "476", "attributes": { "weight": 1 } }, { "key": "20064", "source": "1358", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20072", "source": "1358", "target": "2108", "attributes": { "weight": 1 } }, { "key": "20065", "source": "1358", "target": "450", "attributes": { "weight": 1 } }, { "key": "20063", "source": "1358", "target": "438", "attributes": { "weight": 2 } }, { "key": "6766", "source": "1358", "target": "189", "attributes": { "weight": 3 } }, { "key": "20074", "source": "1358", "target": "480", "attributes": { "weight": 1 } }, { "key": "12215", "source": "1359", "target": "435", "attributes": { "weight": 1 } }, { "key": "31191", "source": "1359", "target": "220", "attributes": { "weight": 1 } }, { "key": "22870", "source": "1359", "target": "2394", "attributes": { "weight": 1 } }, { "key": "22873", "source": "1359", "target": "1832", "attributes": { "weight": 1 } }, { "key": "22876", "source": "1359", "target": "489", "attributes": { "weight": 1 } }, { "key": "12218", "source": "1359", "target": "1564", "attributes": { "weight": 2 } }, { "key": "22872", "source": "1359", "target": "2247", "attributes": { "weight": 1 } }, { "key": "22875", "source": "1359", "target": "472", "attributes": { "weight": 1 } }, { "key": "22874", "source": "1359", "target": "135", "attributes": { "weight": 1 } }, { "key": "22871", "source": "1359", "target": "51", "attributes": { "weight": 1 } }, { "key": "12217", "source": "1359", "target": "1768", "attributes": { "weight": 1 } }, { "key": "6773", "source": "1359", "target": "1362", "attributes": { "weight": 4 } }, { "key": "6772", "source": "1359", "target": "183", "attributes": { "weight": 1 } }, { "key": "12216", "source": "1359", "target": "1535", "attributes": { "weight": 1 } }, { "key": "35939", "source": "1360", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20078", "source": "1360", "target": "51", "attributes": { "weight": 1 } }, { "key": "35954", "source": "1360", "target": "1337", "attributes": { "weight": 1 } }, { "key": "35946", "source": "1360", "target": "1998", "attributes": { "weight": 1 } }, { "key": "26558", "source": "1360", "target": "454", "attributes": { "weight": 2 } }, { "key": "35953", "source": "1360", "target": "2262", "attributes": { "weight": 1 } }, { "key": "20086", "source": "1360", "target": "489", "attributes": { "weight": 1 } }, { "key": "25469", "source": "1360", "target": "220", "attributes": { "weight": 1 } }, { "key": "25471", "source": "1360", "target": "457", "attributes": { "weight": 1 } }, { "key": "35935", "source": "1360", "target": "1755", "attributes": { "weight": 1 } }, { "key": "35951", "source": "1360", "target": "2258", "attributes": { "weight": 1 } }, { "key": "35937", "source": "1360", "target": "434", "attributes": { "weight": 1 } }, { "key": "35944", "source": "1360", "target": "452", "attributes": { "weight": 1 } }, { "key": "6774", "source": "1360", "target": "193", "attributes": { "weight": 1 } }, { "key": "20080", "source": "1360", "target": "450", "attributes": { "weight": 1 } }, { "key": "35949", "source": "1360", "target": "2255", "attributes": { "weight": 1 } }, { "key": "26906", "source": "1360", "target": "497", "attributes": { "weight": 1 } }, { "key": "35956", "source": "1360", "target": "1389", "attributes": { "weight": 1 } }, { "key": "20083", "source": "1360", "target": "2108", "attributes": { "weight": 1 } }, { "key": "25474", "source": "1360", "target": "498", "attributes": { "weight": 1 } }, { "key": "35943", "source": "1360", "target": "2248", "attributes": { "weight": 1 } }, { "key": "25473", "source": "1360", "target": "2259", "attributes": { "weight": 1 } }, { "key": "7297", "source": "1360", "target": "674", "attributes": { "weight": 2 } }, { "key": "35948", "source": "1360", "target": "1764", "attributes": { "weight": 1 } }, { "key": "25470", "source": "1360", "target": "223", "attributes": { "weight": 1 } }, { "key": "20077", "source": "1360", "target": "435", "attributes": { "weight": 1 } }, { "key": "35938", "source": "1360", "target": "221", "attributes": { "weight": 1 } }, { "key": "20084", "source": "1360", "target": "480", "attributes": { "weight": 1 } }, { "key": "16805", "source": "1360", "target": "70", "attributes": { "weight": 2 } }, { "key": "20082", "source": "1360", "target": "472", "attributes": { "weight": 1 } }, { "key": "35945", "source": "1360", "target": "1219", "attributes": { "weight": 1 } }, { "key": "35957", "source": "1360", "target": "73", "attributes": { "weight": 1 } }, { "key": "35950", "source": "1360", "target": "1836", "attributes": { "weight": 1 } }, { "key": "35942", "source": "1360", "target": "448", "attributes": { "weight": 1 } }, { "key": "35940", "source": "1360", "target": "224", "attributes": { "weight": 1 } }, { "key": "35941", "source": "1360", "target": "1831", "attributes": { "weight": 1 } }, { "key": "25472", "source": "1360", "target": "464", "attributes": { "weight": 1 } }, { "key": "35947", "source": "1360", "target": "2088", "attributes": { "weight": 1 } }, { "key": "25475", "source": "1360", "target": "57", "attributes": { "weight": 1 } }, { "key": "20081", "source": "1360", "target": "1247", "attributes": { "weight": 1 } }, { "key": "20087", "source": "1360", "target": "2276", "attributes": { "weight": 1 } }, { "key": "20085", "source": "1360", "target": "2095", "attributes": { "weight": 1 } }, { "key": "35952", "source": "1360", "target": "1741", "attributes": { "weight": 1 } }, { "key": "26559", "source": "1360", "target": "189", "attributes": { "weight": 2 } }, { "key": "35955", "source": "1360", "target": "72", "attributes": { "weight": 1 } }, { "key": "20079", "source": "1360", "target": "449", "attributes": { "weight": 1 } }, { "key": "35936", "source": "1360", "target": "130", "attributes": { "weight": 1 } }, { "key": "29031", "source": "1361", "target": "495", "attributes": { "weight": 1 } }, { "key": "23624", "source": "1361", "target": "2248", "attributes": { "weight": 1 } }, { "key": "6835", "source": "1361", "target": "231", "attributes": { "weight": 2 } }, { "key": "26591", "source": "1361", "target": "454", "attributes": { "weight": 2 } }, { "key": "23623", "source": "1361", "target": "220", "attributes": { "weight": 1 } }, { "key": "33418", "source": "1361", "target": "135", "attributes": { "weight": 1 } }, { "key": "12261", "source": "1362", "target": "1564", "attributes": { "weight": 2 } }, { "key": "33424", "source": "1362", "target": "1282", "attributes": { "weight": 1 } }, { "key": "27078", "source": "1362", "target": "1247", "attributes": { "weight": 1 } }, { "key": "8785", "source": "1362", "target": "446", "attributes": { "weight": 3 } }, { "key": "12253", "source": "1362", "target": "450", "attributes": { "weight": 1 } }, { "key": "31195", "source": "1362", "target": "442", "attributes": { "weight": 1 } }, { "key": "33423", "source": "1362", "target": "1836", "attributes": { "weight": 1 } }, { "key": "11893", "source": "1362", "target": "135", "attributes": { "weight": 2 } }, { "key": "12259", "source": "1362", "target": "472", "attributes": { "weight": 2 } }, { "key": "6839", "source": "1362", "target": "490", "attributes": { "weight": 1 } }, { "key": "6836", "source": "1362", "target": "183", "attributes": { "weight": 1 } }, { "key": "33425", "source": "1362", "target": "2110", "attributes": { "weight": 1 } }, { "key": "6837", "source": "1362", "target": "454", "attributes": { "weight": 1 } }, { "key": "6838", "source": "1362", "target": "455", "attributes": { "weight": 1 } }, { "key": "12256", "source": "1362", "target": "1359", "attributes": { "weight": 3 } }, { "key": "12258", "source": "1362", "target": "1761", "attributes": { "weight": 1 } }, { "key": "12260", "source": "1362", "target": "1768", "attributes": { "weight": 1 } }, { "key": "31196", "source": "1362", "target": "52", "attributes": { "weight": 1 } }, { "key": "17250", "source": "1362", "target": "2108", "attributes": { "weight": 1 } }, { "key": "12251", "source": "1362", "target": "435", "attributes": { "weight": 1 } }, { "key": "31193", "source": "1362", "target": "220", "attributes": { "weight": 1 } }, { "key": "17249", "source": "1362", "target": "449", "attributes": { "weight": 1 } }, { "key": "12255", "source": "1362", "target": "1535", "attributes": { "weight": 1 } }, { "key": "12252", "source": "1362", "target": "1831", "attributes": { "weight": 1 } }, { "key": "22877", "source": "1362", "target": "489", "attributes": { "weight": 1 } }, { "key": "12257", "source": "1362", "target": "1219", "attributes": { "weight": 2 } }, { "key": "31197", "source": "1362", "target": "1363", "attributes": { "weight": 1 } }, { "key": "12254", "source": "1362", "target": "1832", "attributes": { "weight": 1 } }, { "key": "31194", "source": "1362", "target": "51", "attributes": { "weight": 1 } }, { "key": "31198", "source": "1362", "target": "57", "attributes": { "weight": 1 } }, { "key": "11914", "source": "1363", "target": "1219", "attributes": { "weight": 1 } }, { "key": "8812", "source": "1363", "target": "1109", "attributes": { "weight": 2 } }, { "key": "8819", "source": "1363", "target": "469", "attributes": { "weight": 2 } }, { "key": "8822", "source": "1363", "target": "1312", "attributes": { "weight": 4 } }, { "key": "27270", "source": "1363", "target": "425", "attributes": { "weight": 1 } }, { "key": "11922", "source": "1363", "target": "494", "attributes": { "weight": 1 } }, { "key": "8821", "source": "1363", "target": "1125", "attributes": { "weight": 2 } }, { "key": "6853", "source": "1363", "target": "454", "attributes": { "weight": 3 } }, { "key": "8820", "source": "1363", "target": "1088", "attributes": { "weight": 2 } }, { "key": "31199", "source": "1363", "target": "1362", "attributes": { "weight": 1 } }, { "key": "11911", "source": "1363", "target": "1522", "attributes": { "weight": 1 } }, { "key": "11910", "source": "1363", "target": "59", "attributes": { "weight": 1 } }, { "key": "11913", "source": "1363", "target": "450", "attributes": { "weight": 1 } }, { "key": "11918", "source": "1363", "target": "471", "attributes": { "weight": 2 } }, { "key": "11916", "source": "1363", "target": "459", "attributes": { "weight": 2 } }, { "key": "26315", "source": "1363", "target": "1258", "attributes": { "weight": 1 } }, { "key": "8816", "source": "1363", "target": "449", "attributes": { "weight": 2 } }, { "key": "11915", "source": "1363", "target": "1810", "attributes": { "weight": 2 } }, { "key": "11921", "source": "1363", "target": "231", "attributes": { "weight": 2 } }, { "key": "8814", "source": "1363", "target": "1529", "attributes": { "weight": 2 } }, { "key": "8811", "source": "1363", "target": "1518", "attributes": { "weight": 2 } }, { "key": "11917", "source": "1363", "target": "1811", "attributes": { "weight": 1 } }, { "key": "11908", "source": "1363", "target": "1141", "attributes": { "weight": 1 } }, { "key": "11920", "source": "1363", "target": "474", "attributes": { "weight": 1 } }, { "key": "8810", "source": "1363", "target": "220", "attributes": { "weight": 4 } }, { "key": "27271", "source": "1363", "target": "52", "attributes": { "weight": 1 } }, { "key": "8817", "source": "1363", "target": "452", "attributes": { "weight": 2 } }, { "key": "32091", "source": "1363", "target": "3084", "attributes": { "weight": 1 } }, { "key": "11919", "source": "1363", "target": "1366", "attributes": { "weight": 1 } }, { "key": "11909", "source": "1363", "target": "429", "attributes": { "weight": 2 } }, { "key": "8818", "source": "1363", "target": "1116", "attributes": { "weight": 3 } }, { "key": "6854", "source": "1363", "target": "57", "attributes": { "weight": 3 } }, { "key": "8815", "source": "1363", "target": "182", "attributes": { "weight": 2 } }, { "key": "8813", "source": "1363", "target": "1111", "attributes": { "weight": 2 } }, { "key": "11912", "source": "1363", "target": "183", "attributes": { "weight": 1 } }, { "key": "24081", "source": "1364", "target": "471", "attributes": { "weight": 2 } }, { "key": "23630", "source": "1364", "target": "220", "attributes": { "weight": 1 } }, { "key": "33445", "source": "1364", "target": "135", "attributes": { "weight": 1 } }, { "key": "20321", "source": "1364", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20323", "source": "1364", "target": "489", "attributes": { "weight": 1 } }, { "key": "32742", "source": "1364", "target": "472", "attributes": { "weight": 2 } }, { "key": "20319", "source": "1364", "target": "2245", "attributes": { "weight": 1 } }, { "key": "23345", "source": "1364", "target": "223", "attributes": { "weight": 1 } }, { "key": "20320", "source": "1364", "target": "449", "attributes": { "weight": 1 } }, { "key": "37454", "source": "1364", "target": "435", "attributes": { "weight": 1 } }, { "key": "24080", "source": "1364", "target": "130", "attributes": { "weight": 2 } }, { "key": "35203", "source": "1364", "target": "1374", "attributes": { "weight": 1 } }, { "key": "6856", "source": "1364", "target": "231", "attributes": { "weight": 1 } }, { "key": "24082", "source": "1364", "target": "2469", "attributes": { "weight": 1 } }, { "key": "20322", "source": "1364", "target": "2261", "attributes": { "weight": 1 } }, { "key": "37069", "source": "1365", "target": "192", "attributes": { "weight": 1 } }, { "key": "26616", "source": "1365", "target": "183", "attributes": { "weight": 2 } }, { "key": "6868", "source": "1365", "target": "458", "attributes": { "weight": 2 } }, { "key": "37068", "source": "1365", "target": "424", "attributes": { "weight": 1 } }, { "key": "26617", "source": "1365", "target": "454", "attributes": { "weight": 2 } }, { "key": "20344", "source": "1365", "target": "489", "attributes": { "weight": 1 } }, { "key": "29041", "source": "1365", "target": "495", "attributes": { "weight": 1 } }, { "key": "6869", "source": "1365", "target": "231", "attributes": { "weight": 2 } }, { "key": "6887", "source": "1366", "target": "231", "attributes": { "weight": 2 } }, { "key": "20453", "source": "1366", "target": "1375", "attributes": { "weight": 2 } }, { "key": "37015", "source": "1366", "target": "188", "attributes": { "weight": 1 } }, { "key": "24157", "source": "1366", "target": "471", "attributes": { "weight": 1 } }, { "key": "12001", "source": "1366", "target": "1363", "attributes": { "weight": 1 } }, { "key": "20452", "source": "1366", "target": "1832", "attributes": { "weight": 3 } }, { "key": "37013", "source": "1366", "target": "454", "attributes": { "weight": 1 } }, { "key": "27106", "source": "1366", "target": "450", "attributes": { "weight": 1 } }, { "key": "23362", "source": "1366", "target": "2251", "attributes": { "weight": 1 } }, { "key": "37461", "source": "1366", "target": "2258", "attributes": { "weight": 1 } }, { "key": "6885", "source": "1366", "target": "183", "attributes": { "weight": 1 } }, { "key": "27109", "source": "1366", "target": "1282", "attributes": { "weight": 1 } }, { "key": "6886", "source": "1366", "target": "189", "attributes": { "weight": 1 } }, { "key": "6884", "source": "1366", "target": "224", "attributes": { "weight": 1 } }, { "key": "27107", "source": "1366", "target": "1247", "attributes": { "weight": 2 } }, { "key": "6888", "source": "1366", "target": "193", "attributes": { "weight": 1 } }, { "key": "23361", "source": "1366", "target": "223", "attributes": { "weight": 1 } }, { "key": "37016", "source": "1366", "target": "490", "attributes": { "weight": 1 } }, { "key": "20451", "source": "1366", "target": "130", "attributes": { "weight": 3 } }, { "key": "27108", "source": "1366", "target": "472", "attributes": { "weight": 3 } }, { "key": "37014", "source": "1366", "target": "455", "attributes": { "weight": 1 } }, { "key": "32776", "source": "1366", "target": "135", "attributes": { "weight": 3 } }, { "key": "37460", "source": "1366", "target": "435", "attributes": { "weight": 1 } }, { "key": "20513", "source": "1367", "target": "2262", "attributes": { "weight": 1 } }, { "key": "25936", "source": "1367", "target": "791", "attributes": { "weight": 2 } }, { "key": "20501", "source": "1367", "target": "449", "attributes": { "weight": 1 } }, { "key": "25941", "source": "1367", "target": "1282", "attributes": { "weight": 2 } }, { "key": "8881", "source": "1367", "target": "228", "attributes": { "weight": 2 } }, { "key": "20500", "source": "1367", "target": "51", "attributes": { "weight": 2 } }, { "key": "34874", "source": "1367", "target": "493", "attributes": { "weight": 1 } }, { "key": "24349", "source": "1367", "target": "445", "attributes": { "weight": 3 } }, { "key": "20515", "source": "1367", "target": "480", "attributes": { "weight": 1 } }, { "key": "8880", "source": "1367", "target": "442", "attributes": { "weight": 2 } }, { "key": "20519", "source": "1367", "target": "492", "attributes": { "weight": 1 } }, { "key": "25926", "source": "1367", "target": "223", "attributes": { "weight": 2 } }, { "key": "20509", "source": "1367", "target": "1836", "attributes": { "weight": 1 } }, { "key": "17496", "source": "1367", "target": "894", "attributes": { "weight": 3 } }, { "key": "16883", "source": "1367", "target": "70", "attributes": { "weight": 1 } }, { "key": "20517", "source": "1367", "target": "489", "attributes": { "weight": 1 } }, { "key": "32792", "source": "1367", "target": "1088", "attributes": { "weight": 1 } }, { "key": "16882", "source": "1367", "target": "674", "attributes": { "weight": 1 } }, { "key": "25939", "source": "1367", "target": "472", "attributes": { "weight": 4 } }, { "key": "25940", "source": "1367", "target": "189", "attributes": { "weight": 2 } }, { "key": "24159", "source": "1367", "target": "130", "attributes": { "weight": 2 } }, { "key": "20502", "source": "1367", "target": "450", "attributes": { "weight": 1 } }, { "key": "25924", "source": "1367", "target": "432", "attributes": { "weight": 1 } }, { "key": "20508", "source": "1367", "target": "1247", "attributes": { "weight": 1 } }, { "key": "24350", "source": "1367", "target": "469", "attributes": { "weight": 2 } }, { "key": "17495", "source": "1367", "target": "53", "attributes": { "weight": 2 } }, { "key": "20521", "source": "1367", "target": "498", "attributes": { "weight": 1 } }, { "key": "8883", "source": "1367", "target": "233", "attributes": { "weight": 1 } }, { "key": "20498", "source": "1367", "target": "2106", "attributes": { "weight": 1 } }, { "key": "20520", "source": "1367", "target": "235", "attributes": { "weight": 1 } }, { "key": "25928", "source": "1367", "target": "446", "attributes": { "weight": 1 } }, { "key": "25932", "source": "1367", "target": "454", "attributes": { "weight": 2 } }, { "key": "25935", "source": "1367", "target": "188", "attributes": { "weight": 1 } }, { "key": "25929", "source": "1367", "target": "3", "attributes": { "weight": 1 } }, { "key": "20507", "source": "1367", "target": "2254", "attributes": { "weight": 1 } }, { "key": "25934", "source": "1367", "target": "52", "attributes": { "weight": 1 } }, { "key": "12004", "source": "1367", "target": "135", "attributes": { "weight": 4 } }, { "key": "25931", "source": "1367", "target": "1535", "attributes": { "weight": 1 } }, { "key": "25933", "source": "1367", "target": "1219", "attributes": { "weight": 1 } }, { "key": "25925", "source": "1367", "target": "890", "attributes": { "weight": 1 } }, { "key": "6891", "source": "1367", "target": "495", "attributes": { "weight": 4 } }, { "key": "23638", "source": "1367", "target": "1368", "attributes": { "weight": 1 } }, { "key": "20512", "source": "1367", "target": "1087", "attributes": { "weight": 2 } }, { "key": "23637", "source": "1367", "target": "220", "attributes": { "weight": 2 } }, { "key": "20514", "source": "1367", "target": "2267", "attributes": { "weight": 1 } }, { "key": "25937", "source": "1367", "target": "8", "attributes": { "weight": 1 } }, { "key": "11205", "source": "1367", "target": "452", "attributes": { "weight": 3 } }, { "key": "20495", "source": "1367", "target": "435", "attributes": { "weight": 2 } }, { "key": "25945", "source": "1367", "target": "595", "attributes": { "weight": 2 } }, { "key": "12681", "source": "1367", "target": "695", "attributes": { "weight": 1 } }, { "key": "25923", "source": "1367", "target": "430", "attributes": { "weight": 1 } }, { "key": "25946", "source": "1367", "target": "193", "attributes": { "weight": 1 } }, { "key": "20505", "source": "1367", "target": "1998", "attributes": { "weight": 1 } }, { "key": "33564", "source": "1367", "target": "2645", "attributes": { "weight": 1 } }, { "key": "25943", "source": "1367", "target": "479", "attributes": { "weight": 2 } }, { "key": "20510", "source": "1367", "target": "2258", "attributes": { "weight": 1 } }, { "key": "25942", "source": "1367", "target": "1768", "attributes": { "weight": 1 } }, { "key": "25938", "source": "1367", "target": "468", "attributes": { "weight": 1 } }, { "key": "25927", "source": "1367", "target": "440", "attributes": { "weight": 2 } }, { "key": "25930", "source": "1367", "target": "183", "attributes": { "weight": 2 } }, { "key": "20518", "source": "1367", "target": "2189", "attributes": { "weight": 1 } }, { "key": "31336", "source": "1367", "target": "59", "attributes": { "weight": 1 } }, { "key": "37463", "source": "1367", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20503", "source": "1367", "target": "2248", "attributes": { "weight": 1 } }, { "key": "25944", "source": "1367", "target": "232", "attributes": { "weight": 2 } }, { "key": "8882", "source": "1367", "target": "1125", "attributes": { "weight": 3 } }, { "key": "20497", "source": "1367", "target": "222", "attributes": { "weight": 1 } }, { "key": "20494", "source": "1367", "target": "221", "attributes": { "weight": 1 } }, { "key": "20506", "source": "1367", "target": "464", "attributes": { "weight": 1 } }, { "key": "20496", "source": "1367", "target": "1522", "attributes": { "weight": 1 } }, { "key": "20499", "source": "1367", "target": "439", "attributes": { "weight": 1 } }, { "key": "20511", "source": "1367", "target": "471", "attributes": { "weight": 1 } }, { "key": "20516", "source": "1367", "target": "2095", "attributes": { "weight": 1 } }, { "key": "26363", "source": "1367", "target": "1258", "attributes": { "weight": 1 } }, { "key": "25947", "source": "1367", "target": "57", "attributes": { "weight": 2 } }, { "key": "20504", "source": "1367", "target": "2251", "attributes": { "weight": 1 } }, { "key": "32225", "source": "1368", "target": "1282", "attributes": { "weight": 3 } }, { "key": "32796", "source": "1368", "target": "446", "attributes": { "weight": 1 } }, { "key": "35007", "source": "1368", "target": "595", "attributes": { "weight": 1 } }, { "key": "33064", "source": "1368", "target": "57", "attributes": { "weight": 1 } }, { "key": "33063", "source": "1368", "target": "672", "attributes": { "weight": 1 } }, { "key": "23363", "source": "1368", "target": "223", "attributes": { "weight": 1 } }, { "key": "23644", "source": "1368", "target": "220", "attributes": { "weight": 1 } }, { "key": "6942", "source": "1368", "target": "183", "attributes": { "weight": 3 } }, { "key": "32223", "source": "1368", "target": "135", "attributes": { "weight": 4 } }, { "key": "32224", "source": "1368", "target": "472", "attributes": { "weight": 4 } }, { "key": "6944", "source": "1368", "target": "476", "attributes": { "weight": 1 } }, { "key": "6943", "source": "1368", "target": "189", "attributes": { "weight": 3 } }, { "key": "6945", "source": "1368", "target": "193", "attributes": { "weight": 1 } }, { "key": "33062", "source": "1368", "target": "188", "attributes": { "weight": 1 } }, { "key": "6941", "source": "1368", "target": "182", "attributes": { "weight": 1 } }, { "key": "32222", "source": "1368", "target": "1219", "attributes": { "weight": 2 } }, { "key": "26366", "source": "1368", "target": "1258", "attributes": { "weight": 1 } }, { "key": "12408", "source": "1368", "target": "8", "attributes": { "weight": 2 } }, { "key": "32220", "source": "1368", "target": "51", "attributes": { "weight": 3 } }, { "key": "12406", "source": "1368", "target": "3", "attributes": { "weight": 2 } }, { "key": "32221", "source": "1368", "target": "1832", "attributes": { "weight": 3 } }, { "key": "6940", "source": "1368", "target": "224", "attributes": { "weight": 1 } }, { "key": "31545", "source": "1368", "target": "438", "attributes": { "weight": 1 } }, { "key": "32795", "source": "1368", "target": "435", "attributes": { "weight": 1 } }, { "key": "12407", "source": "1368", "target": "454", "attributes": { "weight": 2 } }, { "key": "26731", "source": "1369", "target": "189", "attributes": { "weight": 1 } }, { "key": "15349", "source": "1369", "target": "56", "attributes": { "weight": 1 } }, { "key": "6976", "source": "1369", "target": "231", "attributes": { "weight": 2 } }, { "key": "15346", "source": "1369", "target": "1353", "attributes": { "weight": 1 } }, { "key": "15348", "source": "1369", "target": "54", "attributes": { "weight": 1 } }, { "key": "6975", "source": "1369", "target": "459", "attributes": { "weight": 1 } }, { "key": "15347", "source": "1369", "target": "1358", "attributes": { "weight": 1 } }, { "key": "6974", "source": "1369", "target": "424", "attributes": { "weight": 3 } }, { "key": "30790", "source": "1370", "target": "1063", "attributes": { "weight": 2 } }, { "key": "6977", "source": "1370", "target": "183", "attributes": { "weight": 1 } }, { "key": "31445", "source": "1370", "target": "3053", "attributes": { "weight": 1 } }, { "key": "31449", "source": "1370", "target": "3003", "attributes": { "weight": 1 } }, { "key": "30782", "source": "1370", "target": "220", "attributes": { "weight": 1 } }, { "key": "30786", "source": "1370", "target": "135", "attributes": { "weight": 1 } }, { "key": "30789", "source": "1370", "target": "1125", "attributes": { "weight": 1 } }, { "key": "31448", "source": "1370", "target": "3055", "attributes": { "weight": 1 } }, { "key": "31446", "source": "1370", "target": "3001", "attributes": { "weight": 1 } }, { "key": "30784", "source": "1370", "target": "938", "attributes": { "weight": 2 } }, { "key": "31447", "source": "1370", "target": "3002", "attributes": { "weight": 1 } }, { "key": "30787", "source": "1370", "target": "470", "attributes": { "weight": 2 } }, { "key": "30783", "source": "1370", "target": "59", "attributes": { "weight": 1 } }, { "key": "30788", "source": "1370", "target": "1744", "attributes": { "weight": 2 } }, { "key": "30785", "source": "1370", "target": "454", "attributes": { "weight": 1 } }, { "key": "31450", "source": "1370", "target": "3004", "attributes": { "weight": 1 } }, { "key": "28676", "source": "1370", "target": "1357", "attributes": { "weight": 3 } }, { "key": "32835", "source": "1371", "target": "135", "attributes": { "weight": 2 } }, { "key": "22854", "source": "1371", "target": "443", "attributes": { "weight": 1 } }, { "key": "7013", "source": "1371", "target": "189", "attributes": { "weight": 1 } }, { "key": "22855", "source": "1371", "target": "1071", "attributes": { "weight": 1 } }, { "key": "22856", "source": "1371", "target": "1065", "attributes": { "weight": 1 } }, { "key": "7014", "source": "1371", "target": "495", "attributes": { "weight": 2 } }, { "key": "32836", "source": "1371", "target": "472", "attributes": { "weight": 1 } }, { "key": "7012", "source": "1371", "target": "183", "attributes": { "weight": 1 } }, { "key": "23654", "source": "1371", "target": "220", "attributes": { "weight": 1 } }, { "key": "7031", "source": "1372", "target": "231", "attributes": { "weight": 1 } }, { "key": "26372", "source": "1372", "target": "188", "attributes": { "weight": 2 } }, { "key": "26373", "source": "1372", "target": "1258", "attributes": { "weight": 2 } }, { "key": "7032", "source": "1372", "target": "193", "attributes": { "weight": 4 } }, { "key": "28679", "source": "1373", "target": "54", "attributes": { "weight": 1 } }, { "key": "15369", "source": "1373", "target": "189", "attributes": { "weight": 1 } }, { "key": "23690", "source": "1373", "target": "220", "attributes": { "weight": 1 } }, { "key": "7042", "source": "1373", "target": "183", "attributes": { "weight": 1 } }, { "key": "28680", "source": "1373", "target": "1711", "attributes": { "weight": 2 } }, { "key": "15368", "source": "1373", "target": "454", "attributes": { "weight": 1 } }, { "key": "24229", "source": "1373", "target": "471", "attributes": { "weight": 1 } }, { "key": "21163", "source": "1374", "target": "1087", "attributes": { "weight": 1 } }, { "key": "21166", "source": "1374", "target": "482", "attributes": { "weight": 1 } }, { "key": "24237", "source": "1374", "target": "1125", "attributes": { "weight": 3 } }, { "key": "21151", "source": "1374", "target": "130", "attributes": { "weight": 3 } }, { "key": "21167", "source": "1374", "target": "2109", "attributes": { "weight": 1 } }, { "key": "9097", "source": "1374", "target": "233", "attributes": { "weight": 2 } }, { "key": "21159", "source": "1374", "target": "449", "attributes": { "weight": 1 } }, { "key": "21157", "source": "1374", "target": "2244", "attributes": { "weight": 1 } }, { "key": "21170", "source": "1374", "target": "56", "attributes": { "weight": 1 } }, { "key": "31430", "source": "1374", "target": "223", "attributes": { "weight": 1 } }, { "key": "24236", "source": "1374", "target": "1088", "attributes": { "weight": 3 } }, { "key": "21162", "source": "1374", "target": "54", "attributes": { "weight": 4 } }, { "key": "30793", "source": "1374", "target": "470", "attributes": { "weight": 3 } }, { "key": "24232", "source": "1374", "target": "437", "attributes": { "weight": 2 } }, { "key": "21164", "source": "1374", "target": "477", "attributes": { "weight": 1 } }, { "key": "33688", "source": "1374", "target": "52", "attributes": { "weight": 1 } }, { "key": "21152", "source": "1374", "target": "221", "attributes": { "weight": 1 } }, { "key": "23693", "source": "1374", "target": "220", "attributes": { "weight": 3 } }, { "key": "24239", "source": "1374", "target": "1711", "attributes": { "weight": 3 } }, { "key": "23694", "source": "1374", "target": "1364", "attributes": { "weight": 2 } }, { "key": "21169", "source": "1374", "target": "489", "attributes": { "weight": 1 } }, { "key": "33687", "source": "1374", "target": "425", "attributes": { "weight": 1 } }, { "key": "21153", "source": "1374", "target": "222", "attributes": { "weight": 1 } }, { "key": "21161", "source": "1374", "target": "135", "attributes": { "weight": 2 } }, { "key": "7053", "source": "1374", "target": "231", "attributes": { "weight": 5 } }, { "key": "21168", "source": "1374", "target": "2271", "attributes": { "weight": 1 } }, { "key": "21154", "source": "1374", "target": "50", "attributes": { "weight": 1 } }, { "key": "21160", "source": "1374", "target": "2248", "attributes": { "weight": 1 } }, { "key": "21155", "source": "1374", "target": "439", "attributes": { "weight": 1 } }, { "key": "21150", "source": "1374", "target": "1353", "attributes": { "weight": 1 } }, { "key": "24240", "source": "1374", "target": "1375", "attributes": { "weight": 1 } }, { "key": "24238", "source": "1374", "target": "2470", "attributes": { "weight": 2 } }, { "key": "21156", "source": "1374", "target": "1023", "attributes": { "weight": 1 } }, { "key": "24234", "source": "1374", "target": "228", "attributes": { "weight": 3 } }, { "key": "24233", "source": "1374", "target": "1766", "attributes": { "weight": 2 } }, { "key": "21158", "source": "1374", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21165", "source": "1374", "target": "480", "attributes": { "weight": 1 } }, { "key": "24235", "source": "1374", "target": "471", "attributes": { "weight": 1 } }, { "key": "7173", "source": "1375", "target": "231", "attributes": { "weight": 5 } }, { "key": "21337", "source": "1375", "target": "1777", "attributes": { "weight": 1 } }, { "key": "24270", "source": "1375", "target": "1374", "attributes": { "weight": 1 } }, { "key": "11320", "source": "1375", "target": "452", "attributes": { "weight": 3 } }, { "key": "21316", "source": "1375", "target": "439", "attributes": { "weight": 1 } }, { "key": "24268", "source": "1375", "target": "1125", "attributes": { "weight": 2 } }, { "key": "23703", "source": "1375", "target": "220", "attributes": { "weight": 3 } }, { "key": "21325", "source": "1375", "target": "459", "attributes": { "weight": 3 } }, { "key": "18123", "source": "1375", "target": "52", "attributes": { "weight": 1 } }, { "key": "21326", "source": "1375", "target": "54", "attributes": { "weight": 2 } }, { "key": "23704", "source": "1375", "target": "2248", "attributes": { "weight": 1 } }, { "key": "21338", "source": "1375", "target": "235", "attributes": { "weight": 1 } }, { "key": "21335", "source": "1375", "target": "489", "attributes": { "weight": 1 } }, { "key": "10942", "source": "1375", "target": "471", "attributes": { "weight": 3 } }, { "key": "33736", "source": "1375", "target": "135", "attributes": { "weight": 1 } }, { "key": "24267", "source": "1375", "target": "437", "attributes": { "weight": 1 } }, { "key": "23705", "source": "1375", "target": "1312", "attributes": { "weight": 1 } }, { "key": "21315", "source": "1375", "target": "222", "attributes": { "weight": 1 } }, { "key": "36167", "source": "1375", "target": "1092", "attributes": { "weight": 1 } }, { "key": "21319", "source": "1375", "target": "1023", "attributes": { "weight": 1 } }, { "key": "21320", "source": "1375", "target": "2244", "attributes": { "weight": 1 } }, { "key": "21322", "source": "1375", "target": "449", "attributes": { "weight": 1 } }, { "key": "9135", "source": "1375", "target": "442", "attributes": { "weight": 2 } }, { "key": "24269", "source": "1375", "target": "2470", "attributes": { "weight": 2 } }, { "key": "21328", "source": "1375", "target": "472", "attributes": { "weight": 1 } }, { "key": "28987", "source": "1375", "target": "479", "attributes": { "weight": 2 } }, { "key": "10581", "source": "1375", "target": "225", "attributes": { "weight": 2 } }, { "key": "36942", "source": "1375", "target": "1072", "attributes": { "weight": 1 } }, { "key": "21332", "source": "1375", "target": "480", "attributes": { "weight": 1 } }, { "key": "7416", "source": "1375", "target": "454", "attributes": { "weight": 2 } }, { "key": "36165", "source": "1375", "target": "1760", "attributes": { "weight": 1 } }, { "key": "35353", "source": "1375", "target": "1088", "attributes": { "weight": 1 } }, { "key": "26780", "source": "1375", "target": "183", "attributes": { "weight": 1 } }, { "key": "7174", "source": "1375", "target": "495", "attributes": { "weight": 2 } }, { "key": "24266", "source": "1375", "target": "429", "attributes": { "weight": 1 } }, { "key": "21314", "source": "1375", "target": "221", "attributes": { "weight": 1 } }, { "key": "21324", "source": "1375", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21317", "source": "1375", "target": "51", "attributes": { "weight": 1 } }, { "key": "30959", "source": "1375", "target": "3", "attributes": { "weight": 1 } }, { "key": "21321", "source": "1375", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21323", "source": "1375", "target": "1832", "attributes": { "weight": 1 } }, { "key": "32628", "source": "1375", "target": "791", "attributes": { "weight": 1 } }, { "key": "24271", "source": "1375", "target": "1711", "attributes": { "weight": 1 } }, { "key": "27307", "source": "1375", "target": "57", "attributes": { "weight": 1 } }, { "key": "36943", "source": "1375", "target": "2647", "attributes": { "weight": 1 } }, { "key": "36168", "source": "1375", "target": "1778", "attributes": { "weight": 1 } }, { "key": "21318", "source": "1375", "target": "223", "attributes": { "weight": 3 } }, { "key": "26781", "source": "1375", "target": "189", "attributes": { "weight": 1 } }, { "key": "21336", "source": "1375", "target": "56", "attributes": { "weight": 1 } }, { "key": "21333", "source": "1375", "target": "2109", "attributes": { "weight": 1 } }, { "key": "21330", "source": "1375", "target": "2261", "attributes": { "weight": 1 } }, { "key": "21327", "source": "1375", "target": "1366", "attributes": { "weight": 2 } }, { "key": "21329", "source": "1375", "target": "1087", "attributes": { "weight": 1 } }, { "key": "30796", "source": "1375", "target": "470", "attributes": { "weight": 3 } }, { "key": "36166", "source": "1375", "target": "1026", "attributes": { "weight": 1 } }, { "key": "21334", "source": "1375", "target": "2271", "attributes": { "weight": 1 } }, { "key": "21331", "source": "1375", "target": "1744", "attributes": { "weight": 1 } }, { "key": "23706", "source": "1376", "target": "220", "attributes": { "weight": 1 } }, { "key": "21353", "source": "1376", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21352", "source": "1376", "target": "2245", "attributes": { "weight": 1 } }, { "key": "7175", "source": "1376", "target": "495", "attributes": { "weight": 2 } }, { "key": "15400", "source": "1377", "target": "454", "attributes": { "weight": 1 } }, { "key": "7419", "source": "1377", "target": "154", "attributes": { "weight": 3 } }, { "key": "32988", "source": "1377", "target": "1350", "attributes": { "weight": 1 } }, { "key": "29017", "source": "1377", "target": "387", "attributes": { "weight": 1 } }, { "key": "35088", "source": "1377", "target": "3", "attributes": { "weight": 1 } }, { "key": "7420", "source": "1377", "target": "377", "attributes": { "weight": 1 } }, { "key": "7421", "source": "1377", "target": "1063", "attributes": { "weight": 3 } }, { "key": "32987", "source": "1377", "target": "1388", "attributes": { "weight": 1 } }, { "key": "7176", "source": "1377", "target": "183", "attributes": { "weight": 1 } }, { "key": "7201", "source": "1378", "target": "116", "attributes": { "weight": 1 } }, { "key": "7202", "source": "1379", "target": "1378", "attributes": { "weight": 1 } }, { "key": "17752", "source": "1380", "target": "2165", "attributes": { "weight": 1 } }, { "key": "17778", "source": "1380", "target": "638", "attributes": { "weight": 2 } }, { "key": "17800", "source": "1380", "target": "305", "attributes": { "weight": 1 } }, { "key": "17761", "source": "1380", "target": "2168", "attributes": { "weight": 1 } }, { "key": "17753", "source": "1380", "target": "1520", "attributes": { "weight": 1 } }, { "key": "17749", "source": "1380", "target": "35", "attributes": { "weight": 1 } }, { "key": "17765", "source": "1380", "target": "2169", "attributes": { "weight": 1 } }, { "key": "17763", "source": "1380", "target": "1045", "attributes": { "weight": 1 } }, { "key": "17804", "source": "1380", "target": "340", "attributes": { "weight": 1 } }, { "key": "12876", "source": "1380", "target": "304", "attributes": { "weight": 2 } }, { "key": "17784", "source": "1380", "target": "1387", "attributes": { "weight": 2 } }, { "key": "22628", "source": "1380", "target": "1037", "attributes": { "weight": 1 } }, { "key": "17792", "source": "1380", "target": "362", "attributes": { "weight": 2 } }, { "key": "17769", "source": "1380", "target": "454", "attributes": { "weight": 2 } }, { "key": "7205", "source": "1380", "target": "359", "attributes": { "weight": 6 } }, { "key": "17802", "source": "1380", "target": "1565", "attributes": { "weight": 2 } }, { "key": "17789", "source": "1380", "target": "136", "attributes": { "weight": 1 } }, { "key": "17764", "source": "1380", "target": "1133", "attributes": { "weight": 2 } }, { "key": "30331", "source": "1380", "target": "1046", "attributes": { "weight": 1 } }, { "key": "17760", "source": "1380", "target": "1527", "attributes": { "weight": 2 } }, { "key": "17775", "source": "1380", "target": "161", "attributes": { "weight": 4 } }, { "key": "17787", "source": "1380", "target": "468", "attributes": { "weight": 1 } }, { "key": "17759", "source": "1380", "target": "38", "attributes": { "weight": 1 } }, { "key": "17766", "source": "1380", "target": "1878", "attributes": { "weight": 1 } }, { "key": "17774", "source": "1380", "target": "1539", "attributes": { "weight": 4 } }, { "key": "17755", "source": "1380", "target": "164", "attributes": { "weight": 2 } }, { "key": "24591", "source": "1380", "target": "2118", "attributes": { "weight": 1 } }, { "key": "17788", "source": "1380", "target": "1548", "attributes": { "weight": 1 } }, { "key": "17773", "source": "1380", "target": "168", "attributes": { "weight": 1 } }, { "key": "17794", "source": "1380", "target": "2178", "attributes": { "weight": 1 } }, { "key": "17786", "source": "1380", "target": "40", "attributes": { "weight": 1 } }, { "key": "17758", "source": "1380", "target": "442", "attributes": { "weight": 1 } }, { "key": "9377", "source": "1380", "target": "645", "attributes": { "weight": 2 } }, { "key": "17754", "source": "1380", "target": "2166", "attributes": { "weight": 1 } }, { "key": "12875", "source": "1380", "target": "259", "attributes": { "weight": 3 } }, { "key": "17770", "source": "1380", "target": "2171", "attributes": { "weight": 1 } }, { "key": "9378", "source": "1380", "target": "419", "attributes": { "weight": 2 } }, { "key": "17785", "source": "1380", "target": "1544", "attributes": { "weight": 1 } }, { "key": "17776", "source": "1380", "target": "2173", "attributes": { "weight": 1 } }, { "key": "17797", "source": "1380", "target": "41", "attributes": { "weight": 1 } }, { "key": "17768", "source": "1380", "target": "1384", "attributes": { "weight": 1 } }, { "key": "17799", "source": "1380", "target": "1559", "attributes": { "weight": 1 } }, { "key": "17326", "source": "1380", "target": "358", "attributes": { "weight": 3 } }, { "key": "17767", "source": "1380", "target": "452", "attributes": { "weight": 1 } }, { "key": "17750", "source": "1380", "target": "2163", "attributes": { "weight": 1 } }, { "key": "17771", "source": "1380", "target": "2172", "attributes": { "weight": 1 } }, { "key": "17795", "source": "1380", "target": "163", "attributes": { "weight": 4 } }, { "key": "17757", "source": "1380", "target": "339", "attributes": { "weight": 2 } }, { "key": "17772", "source": "1380", "target": "1782", "attributes": { "weight": 1 } }, { "key": "32295", "source": "1380", "target": "791", "attributes": { "weight": 1 } }, { "key": "17791", "source": "1380", "target": "560", "attributes": { "weight": 2 } }, { "key": "17751", "source": "1380", "target": "2164", "attributes": { "weight": 1 } }, { "key": "17801", "source": "1380", "target": "1060", "attributes": { "weight": 2 } }, { "key": "17793", "source": "1380", "target": "2177", "attributes": { "weight": 1 } }, { "key": "17782", "source": "1380", "target": "1765", "attributes": { "weight": 2 } }, { "key": "17762", "source": "1380", "target": "133", "attributes": { "weight": 2 } }, { "key": "17777", "source": "1380", "target": "2174", "attributes": { "weight": 1 } }, { "key": "17748", "source": "1380", "target": "1516", "attributes": { "weight": 1 } }, { "key": "17779", "source": "1380", "target": "1541", "attributes": { "weight": 1 } }, { "key": "17783", "source": "1380", "target": "1056", "attributes": { "weight": 2 } }, { "key": "17756", "source": "1380", "target": "36", "attributes": { "weight": 2 } }, { "key": "17780", "source": "1380", "target": "556", "attributes": { "weight": 2 } }, { "key": "17790", "source": "1380", "target": "1550", "attributes": { "weight": 1 } }, { "key": "17796", "source": "1380", "target": "1555", "attributes": { "weight": 1 } }, { "key": "17781", "source": "1380", "target": "1386", "attributes": { "weight": 2 } }, { "key": "17798", "source": "1380", "target": "42", "attributes": { "weight": 1 } }, { "key": "7212", "source": "1381", "target": "154", "attributes": { "weight": 2 } }, { "key": "25437", "source": "1381", "target": "961", "attributes": { "weight": 1 } }, { "key": "11435", "source": "1381", "target": "370", "attributes": { "weight": 1 } }, { "key": "7213", "source": "1381", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7219", "source": "1382", "target": "163", "attributes": { "weight": 6 } }, { "key": "17817", "source": "1382", "target": "1386", "attributes": { "weight": 6 } }, { "key": "33836", "source": "1382", "target": "1133", "attributes": { "weight": 1 } }, { "key": "14132", "source": "1383", "target": "1377", "attributes": { "weight": 1 } }, { "key": "32955", "source": "1383", "target": "154", "attributes": { "weight": 1 } }, { "key": "14131", "source": "1383", "target": "392", "attributes": { "weight": 1 } }, { "key": "32954", "source": "1383", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7235", "source": "1383", "target": "1063", "attributes": { "weight": 2 } }, { "key": "31000", "source": "1384", "target": "638", "attributes": { "weight": 1 } }, { "key": "17858", "source": "1384", "target": "1544", "attributes": { "weight": 1 } }, { "key": "12749", "source": "1384", "target": "1878", "attributes": { "weight": 1 } }, { "key": "25860", "source": "1384", "target": "163", "attributes": { "weight": 2 } }, { "key": "12748", "source": "1384", "target": "1875", "attributes": { "weight": 1 } }, { "key": "12754", "source": "1384", "target": "1888", "attributes": { "weight": 1 } }, { "key": "12753", "source": "1384", "target": "1887", "attributes": { "weight": 1 } }, { "key": "12755", "source": "1384", "target": "1889", "attributes": { "weight": 1 } }, { "key": "12752", "source": "1384", "target": "1884", "attributes": { "weight": 1 } }, { "key": "7281", "source": "1384", "target": "223", "attributes": { "weight": 4 } }, { "key": "12751", "source": "1384", "target": "1883", "attributes": { "weight": 1 } }, { "key": "7282", "source": "1384", "target": "133", "attributes": { "weight": 5 } }, { "key": "32379", "source": "1384", "target": "791", "attributes": { "weight": 1 } }, { "key": "12750", "source": "1384", "target": "1879", "attributes": { "weight": 1 } }, { "key": "8730", "source": "1384", "target": "442", "attributes": { "weight": 1 } }, { "key": "10488", "source": "1384", "target": "1524", "attributes": { "weight": 4 } }, { "key": "15299", "source": "1385", "target": "1262", "attributes": { "weight": 1 } }, { "key": "7308", "source": "1385", "target": "1063", "attributes": { "weight": 2 } }, { "key": "32207", "source": "1385", "target": "472", "attributes": { "weight": 1 } }, { "key": "14154", "source": "1385", "target": "392", "attributes": { "weight": 1 } }, { "key": "12792", "source": "1385", "target": "473", "attributes": { "weight": 1 } }, { "key": "29010", "source": "1385", "target": "387", "attributes": { "weight": 1 } }, { "key": "15298", "source": "1385", "target": "454", "attributes": { "weight": 1 } }, { "key": "7307", "source": "1385", "target": "154", "attributes": { "weight": 3 } }, { "key": "8795", "source": "1386", "target": "1382", "attributes": { "weight": 7 } }, { "key": "36226", "source": "1386", "target": "223", "attributes": { "weight": 1 } }, { "key": "36234", "source": "1386", "target": "1544", "attributes": { "weight": 1 } }, { "key": "36228", "source": "1386", "target": "1527", "attributes": { "weight": 1 } }, { "key": "31039", "source": "1386", "target": "638", "attributes": { "weight": 2 } }, { "key": "7325", "source": "1386", "target": "163", "attributes": { "weight": 7 } }, { "key": "36236", "source": "1386", "target": "560", "attributes": { "weight": 1 } }, { "key": "36229", "source": "1386", "target": "358", "attributes": { "weight": 1 } }, { "key": "36230", "source": "1386", "target": "791", "attributes": { "weight": 1 } }, { "key": "36227", "source": "1386", "target": "1524", "attributes": { "weight": 1 } }, { "key": "36231", "source": "1386", "target": "1541", "attributes": { "weight": 1 } }, { "key": "36233", "source": "1386", "target": "3277", "attributes": { "weight": 1 } }, { "key": "17906", "source": "1386", "target": "1380", "attributes": { "weight": 2 } }, { "key": "36232", "source": "1386", "target": "556", "attributes": { "weight": 1 } }, { "key": "7324", "source": "1386", "target": "1133", "attributes": { "weight": 11 } }, { "key": "36235", "source": "1386", "target": "136", "attributes": { "weight": 1 } }, { "key": "16451", "source": "1387", "target": "470", "attributes": { "weight": 2 } }, { "key": "26605", "source": "1387", "target": "454", "attributes": { "weight": 1 } }, { "key": "16441", "source": "1387", "target": "1524", "attributes": { "weight": 1 } }, { "key": "16454", "source": "1387", "target": "2058", "attributes": { "weight": 1 } }, { "key": "16463", "source": "1387", "target": "2065", "attributes": { "weight": 1 } }, { "key": "16458", "source": "1387", "target": "2060", "attributes": { "weight": 1 } }, { "key": "16464", "source": "1387", "target": "2066", "attributes": { "weight": 1 } }, { "key": "24073", "source": "1387", "target": "471", "attributes": { "weight": 1 } }, { "key": "16443", "source": "1387", "target": "2055", "attributes": { "weight": 1 } }, { "key": "32655", "source": "1387", "target": "2177", "attributes": { "weight": 1 } }, { "key": "16444", "source": "1387", "target": "636", "attributes": { "weight": 1 } }, { "key": "26058", "source": "1387", "target": "163", "attributes": { "weight": 1 } }, { "key": "16452", "source": "1387", "target": "2056", "attributes": { "weight": 1 } }, { "key": "18094", "source": "1387", "target": "2185", "attributes": { "weight": 1 } }, { "key": "16446", "source": "1387", "target": "108", "attributes": { "weight": 1 } }, { "key": "8803", "source": "1387", "target": "442", "attributes": { "weight": 1 } }, { "key": "16445", "source": "1387", "target": "358", "attributes": { "weight": 2 } }, { "key": "16449", "source": "1387", "target": "1539", "attributes": { "weight": 1 } }, { "key": "16465", "source": "1387", "target": "1816", "attributes": { "weight": 2 } }, { "key": "16442", "source": "1387", "target": "2054", "attributes": { "weight": 1 } }, { "key": "16447", "source": "1387", "target": "109", "attributes": { "weight": 1 } }, { "key": "11906", "source": "1387", "target": "468", "attributes": { "weight": 2 } }, { "key": "17909", "source": "1387", "target": "1380", "attributes": { "weight": 2 } }, { "key": "16448", "source": "1387", "target": "392", "attributes": { "weight": 1 } }, { "key": "16461", "source": "1387", "target": "2063", "attributes": { "weight": 2 } }, { "key": "16462", "source": "1387", "target": "2064", "attributes": { "weight": 1 } }, { "key": "16460", "source": "1387", "target": "2062", "attributes": { "weight": 1 } }, { "key": "7327", "source": "1387", "target": "1384", "attributes": { "weight": 4 } }, { "key": "16450", "source": "1387", "target": "638", "attributes": { "weight": 2 } }, { "key": "16459", "source": "1387", "target": "2061", "attributes": { "weight": 1 } }, { "key": "10498", "source": "1387", "target": "225", "attributes": { "weight": 1 } }, { "key": "16457", "source": "1387", "target": "304", "attributes": { "weight": 1 } }, { "key": "16453", "source": "1387", "target": "2057", "attributes": { "weight": 1 } }, { "key": "16455", "source": "1387", "target": "2059", "attributes": { "weight": 1 } }, { "key": "16456", "source": "1387", "target": "1744", "attributes": { "weight": 1 } }, { "key": "25873", "source": "1387", "target": "220", "attributes": { "weight": 1 } }, { "key": "32983", "source": "1388", "target": "1383", "attributes": { "weight": 1 } }, { "key": "7406", "source": "1388", "target": "1063", "attributes": { "weight": 4 } }, { "key": "7405", "source": "1388", "target": "154", "attributes": { "weight": 3 } }, { "key": "7404", "source": "1388", "target": "1350", "attributes": { "weight": 1 } }, { "key": "18481", "source": "1389", "target": "1738", "attributes": { "weight": 1 } }, { "key": "17031", "source": "1389", "target": "424", "attributes": { "weight": 1 } }, { "key": "31384", "source": "1389", "target": "2087", "attributes": { "weight": 2 } }, { "key": "36403", "source": "1389", "target": "3292", "attributes": { "weight": 1 } }, { "key": "36400", "source": "1389", "target": "1764", "attributes": { "weight": 1 } }, { "key": "17042", "source": "1389", "target": "73", "attributes": { "weight": 3 } }, { "key": "17032", "source": "1389", "target": "434", "attributes": { "weight": 2 } }, { "key": "17041", "source": "1389", "target": "596", "attributes": { "weight": 2 } }, { "key": "17037", "source": "1389", "target": "474", "attributes": { "weight": 1 } }, { "key": "17036", "source": "1389", "target": "135", "attributes": { "weight": 1 } }, { "key": "17035", "source": "1389", "target": "464", "attributes": { "weight": 1 } }, { "key": "17039", "source": "1389", "target": "695", "attributes": { "weight": 1 } }, { "key": "36399", "source": "1389", "target": "3280", "attributes": { "weight": 1 } }, { "key": "17040", "source": "1389", "target": "672", "attributes": { "weight": 1 } }, { "key": "31382", "source": "1389", "target": "1755", "attributes": { "weight": 1 } }, { "key": "36401", "source": "1389", "target": "1863", "attributes": { "weight": 1 } }, { "key": "17038", "source": "1389", "target": "70", "attributes": { "weight": 2 } }, { "key": "36132", "source": "1389", "target": "1360", "attributes": { "weight": 1 } }, { "key": "11296", "source": "1389", "target": "220", "attributes": { "weight": 2 } }, { "key": "36406", "source": "1389", "target": "3303", "attributes": { "weight": 1 } }, { "key": "17029", "source": "1389", "target": "429", "attributes": { "weight": 1 } }, { "key": "17030", "source": "1389", "target": "1354", "attributes": { "weight": 2 } }, { "key": "36405", "source": "1389", "target": "3297", "attributes": { "weight": 1 } }, { "key": "31385", "source": "1389", "target": "1337", "attributes": { "weight": 1 } }, { "key": "36402", "source": "1389", "target": "3291", "attributes": { "weight": 1 } }, { "key": "17033", "source": "1389", "target": "447", "attributes": { "weight": 1 } }, { "key": "29187", "source": "1389", "target": "1750", "attributes": { "weight": 2 } }, { "key": "17034", "source": "1389", "target": "1862", "attributes": { "weight": 2 } }, { "key": "31383", "source": "1389", "target": "59", "attributes": { "weight": 1 } }, { "key": "36404", "source": "1389", "target": "3294", "attributes": { "weight": 1 } }, { "key": "7413", "source": "1389", "target": "674", "attributes": { "weight": 4 } }, { "key": "36173", "source": "1390", "target": "2248", "attributes": { "weight": 1 } }, { "key": "37376", "source": "1390", "target": "8", "attributes": { "weight": 1 } }, { "key": "11403", "source": "1390", "target": "1742", "attributes": { "weight": 1 } }, { "key": "29915", "source": "1390", "target": "1024", "attributes": { "weight": 1 } }, { "key": "17060", "source": "1390", "target": "70", "attributes": { "weight": 1 } }, { "key": "21348", "source": "1390", "target": "1836", "attributes": { "weight": 1 } }, { "key": "10943", "source": "1390", "target": "457", "attributes": { "weight": 2 } }, { "key": "21344", "source": "1390", "target": "1070", "attributes": { "weight": 1 } }, { "key": "36170", "source": "1390", "target": "434", "attributes": { "weight": 1 } }, { "key": "21340", "source": "1390", "target": "130", "attributes": { "weight": 2 } }, { "key": "36944", "source": "1390", "target": "1072", "attributes": { "weight": 1 } }, { "key": "21343", "source": "1390", "target": "1023", "attributes": { "weight": 2 } }, { "key": "21341", "source": "1390", "target": "221", "attributes": { "weight": 2 } }, { "key": "27194", "source": "1390", "target": "442", "attributes": { "weight": 1 } }, { "key": "17059", "source": "1390", "target": "59", "attributes": { "weight": 2 } }, { "key": "21346", "source": "1390", "target": "2245", "attributes": { "weight": 1 } }, { "key": "35715", "source": "1390", "target": "458", "attributes": { "weight": 1 } }, { "key": "29106", "source": "1390", "target": "495", "attributes": { "weight": 1 } }, { "key": "36172", "source": "1390", "target": "448", "attributes": { "weight": 1 } }, { "key": "21350", "source": "1390", "target": "2095", "attributes": { "weight": 1 } }, { "key": "36169", "source": "1390", "target": "1755", "attributes": { "weight": 1 } }, { "key": "12732", "source": "1390", "target": "223", "attributes": { "weight": 4 } }, { "key": "27195", "source": "1390", "target": "189", "attributes": { "weight": 1 } }, { "key": "21342", "source": "1390", "target": "438", "attributes": { "weight": 1 } }, { "key": "26934", "source": "1390", "target": "497", "attributes": { "weight": 1 } }, { "key": "36178", "source": "1390", "target": "340", "attributes": { "weight": 1 } }, { "key": "35182", "source": "1390", "target": "352", "attributes": { "weight": 1 } }, { "key": "36177", "source": "1390", "target": "1337", "attributes": { "weight": 1 } }, { "key": "21349", "source": "1390", "target": "2108", "attributes": { "weight": 1 } }, { "key": "7418", "source": "1390", "target": "454", "attributes": { "weight": 2 } }, { "key": "27197", "source": "1390", "target": "1750", "attributes": { "weight": 3 } }, { "key": "7417", "source": "1390", "target": "674", "attributes": { "weight": 2 } }, { "key": "21345", "source": "1390", "target": "2244", "attributes": { "weight": 1 } }, { "key": "27196", "source": "1390", "target": "479", "attributes": { "weight": 1 } }, { "key": "36175", "source": "1390", "target": "1137", "attributes": { "weight": 1 } }, { "key": "31819", "source": "1390", "target": "595", "attributes": { "weight": 1 } }, { "key": "36179", "source": "1390", "target": "73", "attributes": { "weight": 1 } }, { "key": "21347", "source": "1390", "target": "449", "attributes": { "weight": 1 } }, { "key": "36171", "source": "1390", "target": "1831", "attributes": { "weight": 1 } }, { "key": "21351", "source": "1390", "target": "489", "attributes": { "weight": 1 } }, { "key": "12733", "source": "1390", "target": "695", "attributes": { "weight": 1 } }, { "key": "35087", "source": "1390", "target": "3", "attributes": { "weight": 1 } }, { "key": "36174", "source": "1390", "target": "452", "attributes": { "weight": 1 } }, { "key": "27198", "source": "1390", "target": "193", "attributes": { "weight": 1 } }, { "key": "36176", "source": "1390", "target": "2258", "attributes": { "weight": 1 } }, { "key": "32629", "source": "1390", "target": "791", "attributes": { "weight": 1 } }, { "key": "25401", "source": "1391", "target": "1408", "attributes": { "weight": 1 } }, { "key": "29539", "source": "1391", "target": "1415", "attributes": { "weight": 1 } }, { "key": "25402", "source": "1391", "target": "1412", "attributes": { "weight": 1 } }, { "key": "7424", "source": "1391", "target": "1063", "attributes": { "weight": 1 } }, { "key": "29264", "source": "1392", "target": "149", "attributes": { "weight": 2 } }, { "key": "7425", "source": "1392", "target": "154", "attributes": { "weight": 1 } }, { "key": "29265", "source": "1392", "target": "158", "attributes": { "weight": 1 } }, { "key": "7426", "source": "1392", "target": "1425", "attributes": { "weight": 2 } }, { "key": "29266", "source": "1393", "target": "2844", "attributes": { "weight": 1 } }, { "key": "29268", "source": "1393", "target": "160", "attributes": { "weight": 1 } }, { "key": "29267", "source": "1393", "target": "149", "attributes": { "weight": 1 } }, { "key": "7427", "source": "1393", "target": "154", "attributes": { "weight": 1 } }, { "key": "36774", "source": "1394", "target": "377", "attributes": { "weight": 1 } }, { "key": "7428", "source": "1394", "target": "333", "attributes": { "weight": 1 } }, { "key": "7430", "source": "1395", "target": "377", "attributes": { "weight": 1 } }, { "key": "7429", "source": "1395", "target": "333", "attributes": { "weight": 1 } }, { "key": "7431", "source": "1396", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7434", "source": "1396", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7432", "source": "1396", "target": "1423", "attributes": { "weight": 2 } }, { "key": "7433", "source": "1396", "target": "1424", "attributes": { "weight": 2 } }, { "key": "7453", "source": "1397", "target": "1063", "attributes": { "weight": 1 } }, { "key": "7450", "source": "1397", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7451", "source": "1397", "target": "375", "attributes": { "weight": 1 } }, { "key": "7452", "source": "1397", "target": "154", "attributes": { "weight": 1 } }, { "key": "7454", "source": "1398", "target": "1063", "attributes": { "weight": 1 } }, { "key": "7456", "source": "1399", "target": "149", "attributes": { "weight": 1 } }, { "key": "7455", "source": "1399", "target": "1400", "attributes": { "weight": 1 } }, { "key": "29270", "source": "1400", "target": "2845", "attributes": { "weight": 1 } }, { "key": "7457", "source": "1400", "target": "1399", "attributes": { "weight": 1 } }, { "key": "29269", "source": "1400", "target": "149", "attributes": { "weight": 1 } }, { "key": "7476", "source": "1401", "target": "1197", "attributes": { "weight": 2 } }, { "key": "24709", "source": "1401", "target": "1403", "attributes": { "weight": 1 } }, { "key": "7479", "source": "1401", "target": "377", "attributes": { "weight": 2 } }, { "key": "7478", "source": "1401", "target": "333", "attributes": { "weight": 1 } }, { "key": "7480", "source": "1401", "target": "1063", "attributes": { "weight": 2 } }, { "key": "24708", "source": "1401", "target": "2514", "attributes": { "weight": 1 } }, { "key": "7477", "source": "1401", "target": "373", "attributes": { "weight": 3 } }, { "key": "7500", "source": "1402", "target": "333", "attributes": { "weight": 2 } }, { "key": "24713", "source": "1403", "target": "1401", "attributes": { "weight": 1 } }, { "key": "7506", "source": "1403", "target": "377", "attributes": { "weight": 1 } }, { "key": "24712", "source": "1403", "target": "374", "attributes": { "weight": 1 } }, { "key": "7507", "source": "1404", "target": "1063", "attributes": { "weight": 1 } }, { "key": "36796", "source": "1404", "target": "377", "attributes": { "weight": 1 } }, { "key": "29542", "source": "1404", "target": "1415", "attributes": { "weight": 1 } }, { "key": "7508", "source": "1405", "target": "377", "attributes": { "weight": 1 } }, { "key": "7509", "source": "1406", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7511", "source": "1406", "target": "154", "attributes": { "weight": 1 } }, { "key": "34849", "source": "1406", "target": "1047", "attributes": { "weight": 1 } }, { "key": "7512", "source": "1406", "target": "1063", "attributes": { "weight": 2 } }, { "key": "32992", "source": "1406", "target": "208", "attributes": { "weight": 2 } }, { "key": "7510", "source": "1406", "target": "375", "attributes": { "weight": 2 } }, { "key": "36797", "source": "1406", "target": "3315", "attributes": { "weight": 1 } }, { "key": "16401", "source": "1407", "target": "925", "attributes": { "weight": 1 } }, { "key": "7518", "source": "1407", "target": "377", "attributes": { "weight": 2 } }, { "key": "7516", "source": "1407", "target": "333", "attributes": { "weight": 2 } }, { "key": "7514", "source": "1407", "target": "123", "attributes": { "weight": 2 } }, { "key": "7515", "source": "1407", "target": "373", "attributes": { "weight": 2 } }, { "key": "7513", "source": "1407", "target": "1197", "attributes": { "weight": 2 } }, { "key": "7519", "source": "1407", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7517", "source": "1407", "target": "625", "attributes": { "weight": 2 } }, { "key": "36800", "source": "1407", "target": "337", "attributes": { "weight": 1 } }, { "key": "25416", "source": "1408", "target": "2588", "attributes": { "weight": 2 } }, { "key": "36873", "source": "1408", "target": "3336", "attributes": { "weight": 1 } }, { "key": "7521", "source": "1408", "target": "1063", "attributes": { "weight": 2 } }, { "key": "36872", "source": "1408", "target": "3327", "attributes": { "weight": 1 } }, { "key": "7520", "source": "1408", "target": "625", "attributes": { "weight": 3 } }, { "key": "25415", "source": "1408", "target": "1414", "attributes": { "weight": 1 } }, { "key": "29543", "source": "1408", "target": "1415", "attributes": { "weight": 1 } }, { "key": "25414", "source": "1408", "target": "1391", "attributes": { "weight": 1 } }, { "key": "25413", "source": "1408", "target": "2582", "attributes": { "weight": 1 } }, { "key": "7522", "source": "1409", "target": "373", "attributes": { "weight": 2 } }, { "key": "7523", "source": "1409", "target": "377", "attributes": { "weight": 2 } }, { "key": "7525", "source": "1410", "target": "1423", "attributes": { "weight": 1 } }, { "key": "7526", "source": "1410", "target": "1424", "attributes": { "weight": 1 } }, { "key": "7524", "source": "1410", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7527", "source": "1411", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7528", "source": "1411", "target": "1063", "attributes": { "weight": 1 } }, { "key": "7529", "source": "1412", "target": "1063", "attributes": { "weight": 1 } }, { "key": "25421", "source": "1412", "target": "1408", "attributes": { "weight": 1 } }, { "key": "25420", "source": "1412", "target": "1391", "attributes": { "weight": 1 } }, { "key": "25423", "source": "1412", "target": "1420", "attributes": { "weight": 1 } }, { "key": "25422", "source": "1412", "target": "1414", "attributes": { "weight": 1 } }, { "key": "29544", "source": "1412", "target": "1415", "attributes": { "weight": 1 } }, { "key": "7531", "source": "1413", "target": "154", "attributes": { "weight": 1 } }, { "key": "7530", "source": "1413", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7532", "source": "1413", "target": "1063", "attributes": { "weight": 1 } }, { "key": "37359", "source": "1414", "target": "3357", "attributes": { "weight": 1 } }, { "key": "25424", "source": "1414", "target": "1412", "attributes": { "weight": 1 } }, { "key": "7533", "source": "1414", "target": "1063", "attributes": { "weight": 1 } }, { "key": "29545", "source": "1414", "target": "1415", "attributes": { "weight": 1 } }, { "key": "25425", "source": "1414", "target": "2589", "attributes": { "weight": 1 } }, { "key": "29553", "source": "1415", "target": "149", "attributes": { "weight": 1 } }, { "key": "29546", "source": "1415", "target": "938", "attributes": { "weight": 1 } }, { "key": "29554", "source": "1415", "target": "1404", "attributes": { "weight": 1 } }, { "key": "29555", "source": "1415", "target": "1408", "attributes": { "weight": 1 } }, { "key": "29552", "source": "1415", "target": "375", "attributes": { "weight": 1 } }, { "key": "29551", "source": "1415", "target": "1391", "attributes": { "weight": 1 } }, { "key": "29557", "source": "1415", "target": "1414", "attributes": { "weight": 1 } }, { "key": "29548", "source": "1415", "target": "1232", "attributes": { "weight": 1 } }, { "key": "29550", "source": "1415", "target": "1279", "attributes": { "weight": 1 } }, { "key": "29549", "source": "1415", "target": "1552", "attributes": { "weight": 1 } }, { "key": "29547", "source": "1415", "target": "1047", "attributes": { "weight": 1 } }, { "key": "7534", "source": "1415", "target": "154", "attributes": { "weight": 2 } }, { "key": "29556", "source": "1415", "target": "1412", "attributes": { "weight": 1 } }, { "key": "37361", "source": "1416", "target": "3355", "attributes": { "weight": 1 } }, { "key": "37362", "source": "1416", "target": "3356", "attributes": { "weight": 1 } }, { "key": "7586", "source": "1416", "target": "155", "attributes": { "weight": 2 } }, { "key": "29285", "source": "1416", "target": "2844", "attributes": { "weight": 1 } }, { "key": "7585", "source": "1416", "target": "154", "attributes": { "weight": 2 } }, { "key": "7636", "source": "1417", "target": "333", "attributes": { "weight": 2 } }, { "key": "7639", "source": "1417", "target": "1063", "attributes": { "weight": 2 } }, { "key": "16409", "source": "1417", "target": "925", "attributes": { "weight": 1 } }, { "key": "7637", "source": "1417", "target": "625", "attributes": { "weight": 2 } }, { "key": "34852", "source": "1417", "target": "123", "attributes": { "weight": 1 } }, { "key": "7638", "source": "1417", "target": "377", "attributes": { "weight": 2 } }, { "key": "36807", "source": "1417", "target": "337", "attributes": { "weight": 1 } }, { "key": "7635", "source": "1417", "target": "373", "attributes": { "weight": 2 } }, { "key": "7634", "source": "1417", "target": "1197", "attributes": { "weight": 2 } }, { "key": "7640", "source": "1418", "target": "377", "attributes": { "weight": 1 } }, { "key": "36809", "source": "1419", "target": "625", "attributes": { "weight": 1 } }, { "key": "7644", "source": "1419", "target": "123", "attributes": { "weight": 2 } }, { "key": "7646", "source": "1419", "target": "1063", "attributes": { "weight": 1 } }, { "key": "7645", "source": "1419", "target": "375", "attributes": { "weight": 1 } }, { "key": "36810", "source": "1419", "target": "377", "attributes": { "weight": 1 } }, { "key": "7647", "source": "1420", "target": "1063", "attributes": { "weight": 1 } }, { "key": "25434", "source": "1420", "target": "1412", "attributes": { "weight": 1 } }, { "key": "7678", "source": "1421", "target": "333", "attributes": { "weight": 1 } }, { "key": "7681", "source": "1422", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7679", "source": "1422", "target": "1350", "attributes": { "weight": 1 } }, { "key": "7680", "source": "1422", "target": "154", "attributes": { "weight": 1 } }, { "key": "36432", "source": "1423", "target": "3308", "attributes": { "weight": 1 } }, { "key": "29323", "source": "1423", "target": "2849", "attributes": { "weight": 2 } }, { "key": "29322", "source": "1423", "target": "2847", "attributes": { "weight": 1 } }, { "key": "7689", "source": "1423", "target": "1424", "attributes": { "weight": 2 } }, { "key": "7688", "source": "1423", "target": "158", "attributes": { "weight": 2 } }, { "key": "29324", "source": "1423", "target": "2854", "attributes": { "weight": 1 } }, { "key": "29325", "source": "1423", "target": "2855", "attributes": { "weight": 1 } }, { "key": "7686", "source": "1423", "target": "1350", "attributes": { "weight": 1 } }, { "key": "29321", "source": "1423", "target": "2846", "attributes": { "weight": 1 } }, { "key": "7685", "source": "1423", "target": "1396", "attributes": { "weight": 2 } }, { "key": "7687", "source": "1423", "target": "1410", "attributes": { "weight": 1 } }, { "key": "7696", "source": "1424", "target": "1423", "attributes": { "weight": 2 } }, { "key": "7695", "source": "1424", "target": "154", "attributes": { "weight": 1 } }, { "key": "34853", "source": "1424", "target": "1047", "attributes": { "weight": 1 } }, { "key": "29326", "source": "1424", "target": "2846", "attributes": { "weight": 1 } }, { "key": "7697", "source": "1424", "target": "1063", "attributes": { "weight": 2 } }, { "key": "7694", "source": "1424", "target": "1410", "attributes": { "weight": 1 } }, { "key": "29602", "source": "1424", "target": "2880", "attributes": { "weight": 1 } }, { "key": "7693", "source": "1424", "target": "375", "attributes": { "weight": 2 } }, { "key": "33013", "source": "1424", "target": "208", "attributes": { "weight": 2 } }, { "key": "7692", "source": "1424", "target": "1350", "attributes": { "weight": 4 } }, { "key": "7690", "source": "1424", "target": "468", "attributes": { "weight": 2 } }, { "key": "7691", "source": "1424", "target": "1396", "attributes": { "weight": 2 } }, { "key": "29327", "source": "1424", "target": "2851", "attributes": { "weight": 1 } }, { "key": "7698", "source": "1425", "target": "1392", "attributes": { "weight": 2 } }, { "key": "30115", "source": "1425", "target": "158", "attributes": { "weight": 1 } }, { "key": "7699", "source": "1425", "target": "154", "attributes": { "weight": 1 } }, { "key": "29291", "source": "1425", "target": "160", "attributes": { "weight": 2 } }, { "key": "29290", "source": "1425", "target": "2845", "attributes": { "weight": 1 } }, { "key": "29289", "source": "1425", "target": "149", "attributes": { "weight": 1 } }, { "key": "7805", "source": "1426", "target": "333", "attributes": { "weight": 1 } }, { "key": "7806", "source": "1427", "target": "1063", "attributes": { "weight": 1 } }, { "key": "7809", "source": "1428", "target": "154", "attributes": { "weight": 1 } }, { "key": "7812", "source": "1429", "target": "990", "attributes": { "weight": 1 } }, { "key": "28610", "source": "1429", "target": "199", "attributes": { "weight": 1 } }, { "key": "29786", "source": "1429", "target": "1281", "attributes": { "weight": 2 } }, { "key": "7813", "source": "1430", "target": "1488", "attributes": { "weight": 1 } }, { "key": "7814", "source": "1431", "target": "105", "attributes": { "weight": 1 } }, { "key": "7818", "source": "1432", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21611", "source": "1432", "target": "109", "attributes": { "weight": 2 } }, { "key": "28878", "source": "1432", "target": "103", "attributes": { "weight": 1 } }, { "key": "21610", "source": "1432", "target": "108", "attributes": { "weight": 1 } }, { "key": "24859", "source": "1432", "target": "1495", "attributes": { "weight": 1 } }, { "key": "7816", "source": "1432", "target": "1306", "attributes": { "weight": 2 } }, { "key": "7815", "source": "1432", "target": "1473", "attributes": { "weight": 1 } }, { "key": "7817", "source": "1432", "target": "116", "attributes": { "weight": 4 } }, { "key": "7819", "source": "1433", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7820", "source": "1434", "target": "109", "attributes": { "weight": 1 } }, { "key": "7821", "source": "1434", "target": "1505", "attributes": { "weight": 1 } }, { "key": "27428", "source": "1435", "target": "3418", "attributes": { "weight": 1 } }, { "key": "7822", "source": "1435", "target": "1437", "attributes": { "weight": 2 } }, { "key": "7823", "source": "1435", "target": "1499", "attributes": { "weight": 1 } }, { "key": "7826", "source": "1436", "target": "1261", "attributes": { "weight": 1 } }, { "key": "21614", "source": "1437", "target": "108", "attributes": { "weight": 2 } }, { "key": "27429", "source": "1437", "target": "3419", "attributes": { "weight": 1 } }, { "key": "7829", "source": "1437", "target": "1186", "attributes": { "weight": 1 } }, { "key": "24861", "source": "1437", "target": "371", "attributes": { "weight": 1 } }, { "key": "7827", "source": "1437", "target": "1435", "attributes": { "weight": 2 } }, { "key": "7830", "source": "1437", "target": "1455", "attributes": { "weight": 3 } }, { "key": "21613", "source": "1437", "target": "103", "attributes": { "weight": 2 } }, { "key": "7828", "source": "1437", "target": "1447", "attributes": { "weight": 1 } }, { "key": "29995", "source": "1437", "target": "249", "attributes": { "weight": 1 } }, { "key": "21615", "source": "1437", "target": "109", "attributes": { "weight": 2 } }, { "key": "7835", "source": "1437", "target": "1499", "attributes": { "weight": 5 } }, { "key": "7833", "source": "1437", "target": "1261", "attributes": { "weight": 3 } }, { "key": "7831", "source": "1437", "target": "1458", "attributes": { "weight": 1 } }, { "key": "7832", "source": "1437", "target": "1471", "attributes": { "weight": 4 } }, { "key": "29996", "source": "1437", "target": "784", "attributes": { "weight": 1 } }, { "key": "27430", "source": "1437", "target": "2681", "attributes": { "weight": 1 } }, { "key": "21616", "source": "1437", "target": "1498", "attributes": { "weight": 2 } }, { "key": "7834", "source": "1437", "target": "1472", "attributes": { "weight": 3 } }, { "key": "7838", "source": "1438", "target": "116", "attributes": { "weight": 2 } }, { "key": "24862", "source": "1438", "target": "1445", "attributes": { "weight": 1 } }, { "key": "7839", "source": "1438", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21618", "source": "1438", "target": "109", "attributes": { "weight": 2 } }, { "key": "7837", "source": "1438", "target": "1495", "attributes": { "weight": 1 } }, { "key": "7836", "source": "1438", "target": "1186", "attributes": { "weight": 4 } }, { "key": "7848", "source": "1439", "target": "1261", "attributes": { "weight": 3 } }, { "key": "7849", "source": "1440", "target": "105", "attributes": { "weight": 1 } }, { "key": "7850", "source": "1441", "target": "1505", "attributes": { "weight": 1 } }, { "key": "32235", "source": "1442", "target": "1506", "attributes": { "weight": 1 } }, { "key": "32234", "source": "1442", "target": "1474", "attributes": { "weight": 1 } }, { "key": "7853", "source": "1442", "target": "1495", "attributes": { "weight": 2 } }, { "key": "7854", "source": "1443", "target": "1505", "attributes": { "weight": 1 } }, { "key": "28507", "source": "1443", "target": "1454", "attributes": { "weight": 1 } }, { "key": "7856", "source": "1444", "target": "1505", "attributes": { "weight": 1 } }, { "key": "32236", "source": "1444", "target": "1495", "attributes": { "weight": 1 } }, { "key": "7855", "source": "1444", "target": "112", "attributes": { "weight": 1 } }, { "key": "21659", "source": "1445", "target": "1489", "attributes": { "weight": 1 } }, { "key": "21652", "source": "1445", "target": "110", "attributes": { "weight": 2 } }, { "key": "21662", "source": "1445", "target": "1506", "attributes": { "weight": 2 } }, { "key": "21655", "source": "1445", "target": "1469", "attributes": { "weight": 2 } }, { "key": "24867", "source": "1445", "target": "1459", "attributes": { "weight": 1 } }, { "key": "21644", "source": "1445", "target": "105", "attributes": { "weight": 2 } }, { "key": "21658", "source": "1445", "target": "607", "attributes": { "weight": 2 } }, { "key": "21660", "source": "1445", "target": "116", "attributes": { "weight": 3 } }, { "key": "21648", "source": "1445", "target": "604", "attributes": { "weight": 2 } }, { "key": "21657", "source": "1445", "target": "1479", "attributes": { "weight": 2 } }, { "key": "24866", "source": "1445", "target": "1457", "attributes": { "weight": 1 } }, { "key": "21650", "source": "1445", "target": "1454", "attributes": { "weight": 3 } }, { "key": "21646", "source": "1445", "target": "1448", "attributes": { "weight": 1 } }, { "key": "21654", "source": "1445", "target": "1468", "attributes": { "weight": 1 } }, { "key": "24865", "source": "1445", "target": "1438", "attributes": { "weight": 1 } }, { "key": "7871", "source": "1445", "target": "1495", "attributes": { "weight": 4 } }, { "key": "21643", "source": "1445", "target": "103", "attributes": { "weight": 3 } }, { "key": "24868", "source": "1445", "target": "114", "attributes": { "weight": 1 } }, { "key": "21656", "source": "1445", "target": "1475", "attributes": { "weight": 1 } }, { "key": "21647", "source": "1445", "target": "1186", "attributes": { "weight": 2 } }, { "key": "21653", "source": "1445", "target": "1465", "attributes": { "weight": 2 } }, { "key": "24869", "source": "1445", "target": "115", "attributes": { "weight": 1 } }, { "key": "21661", "source": "1445", "target": "118", "attributes": { "weight": 2 } }, { "key": "21649", "source": "1445", "target": "1451", "attributes": { "weight": 1 } }, { "key": "21645", "source": "1445", "target": "106", "attributes": { "weight": 2 } }, { "key": "21651", "source": "1445", "target": "108", "attributes": { "weight": 2 } }, { "key": "7876", "source": "1446", "target": "1261", "attributes": { "weight": 1 } }, { "key": "7879", "source": "1447", "target": "1471", "attributes": { "weight": 2 } }, { "key": "7877", "source": "1447", "target": "1437", "attributes": { "weight": 1 } }, { "key": "7878", "source": "1447", "target": "1186", "attributes": { "weight": 1 } }, { "key": "21667", "source": "1448", "target": "1445", "attributes": { "weight": 1 } }, { "key": "7880", "source": "1448", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7881", "source": "1449", "target": "106", "attributes": { "weight": 1 } }, { "key": "21672", "source": "1450", "target": "116", "attributes": { "weight": 1 } }, { "key": "7908", "source": "1450", "target": "1487", "attributes": { "weight": 1 } }, { "key": "7918", "source": "1451", "target": "604", "attributes": { "weight": 1 } }, { "key": "7919", "source": "1451", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21676", "source": "1451", "target": "1445", "attributes": { "weight": 1 } }, { "key": "7921", "source": "1452", "target": "1501", "attributes": { "weight": 1 } }, { "key": "7923", "source": "1453", "target": "1306", "attributes": { "weight": 2 } }, { "key": "7922", "source": "1453", "target": "1478", "attributes": { "weight": 1 } }, { "key": "21687", "source": "1454", "target": "1507", "attributes": { "weight": 2 } }, { "key": "28518", "source": "1454", "target": "2777", "attributes": { "weight": 1 } }, { "key": "28516", "source": "1454", "target": "1443", "attributes": { "weight": 1 } }, { "key": "21683", "source": "1454", "target": "369", "attributes": { "weight": 1 } }, { "key": "10101", "source": "1454", "target": "602", "attributes": { "weight": 1 } }, { "key": "21685", "source": "1454", "target": "109", "attributes": { "weight": 3 } }, { "key": "7924", "source": "1454", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21684", "source": "1454", "target": "108", "attributes": { "weight": 3 } }, { "key": "24871", "source": "1454", "target": "103", "attributes": { "weight": 2 } }, { "key": "28517", "source": "1454", "target": "604", "attributes": { "weight": 1 } }, { "key": "21682", "source": "1454", "target": "1445", "attributes": { "weight": 3 } }, { "key": "21686", "source": "1454", "target": "607", "attributes": { "weight": 2 } }, { "key": "24872", "source": "1455", "target": "1261", "attributes": { "weight": 1 } }, { "key": "7925", "source": "1455", "target": "1437", "attributes": { "weight": 3 } }, { "key": "21688", "source": "1455", "target": "103", "attributes": { "weight": 3 } }, { "key": "21691", "source": "1455", "target": "109", "attributes": { "weight": 3 } }, { "key": "23906", "source": "1455", "target": "473", "attributes": { "weight": 1 } }, { "key": "7928", "source": "1455", "target": "1478", "attributes": { "weight": 3 } }, { "key": "35542", "source": "1455", "target": "1710", "attributes": { "weight": 1 } }, { "key": "7926", "source": "1455", "target": "1186", "attributes": { "weight": 1 } }, { "key": "21692", "source": "1455", "target": "116", "attributes": { "weight": 2 } }, { "key": "21689", "source": "1455", "target": "369", "attributes": { "weight": 1 } }, { "key": "7929", "source": "1455", "target": "1485", "attributes": { "weight": 1 } }, { "key": "7927", "source": "1455", "target": "1466", "attributes": { "weight": 1 } }, { "key": "7932", "source": "1455", "target": "1502", "attributes": { "weight": 3 } }, { "key": "32876", "source": "1455", "target": "470", "attributes": { "weight": 1 } }, { "key": "7931", "source": "1455", "target": "1498", "attributes": { "weight": 3 } }, { "key": "7933", "source": "1455", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7930", "source": "1455", "target": "1306", "attributes": { "weight": 3 } }, { "key": "21690", "source": "1455", "target": "108", "attributes": { "weight": 3 } }, { "key": "28885", "source": "1455", "target": "1464", "attributes": { "weight": 1 } }, { "key": "7950", "source": "1456", "target": "112", "attributes": { "weight": 1 } }, { "key": "7957", "source": "1457", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7955", "source": "1457", "target": "604", "attributes": { "weight": 3 } }, { "key": "24885", "source": "1457", "target": "30", "attributes": { "weight": 2 } }, { "key": "7956", "source": "1457", "target": "607", "attributes": { "weight": 1 } }, { "key": "21740", "source": "1457", "target": "109", "attributes": { "weight": 2 } }, { "key": "24884", "source": "1457", "target": "1445", "attributes": { "weight": 1 } }, { "key": "21739", "source": "1457", "target": "108", "attributes": { "weight": 2 } }, { "key": "7958", "source": "1458", "target": "1437", "attributes": { "weight": 1 } }, { "key": "7959", "source": "1458", "target": "1186", "attributes": { "weight": 1 } }, { "key": "21741", "source": "1458", "target": "103", "attributes": { "weight": 2 } }, { "key": "21742", "source": "1458", "target": "1498", "attributes": { "weight": 2 } }, { "key": "7961", "source": "1459", "target": "116", "attributes": { "weight": 3 } }, { "key": "21743", "source": "1459", "target": "1186", "attributes": { "weight": 1 } }, { "key": "24887", "source": "1459", "target": "1495", "attributes": { "weight": 1 } }, { "key": "7962", "source": "1459", "target": "1505", "attributes": { "weight": 1 } }, { "key": "28888", "source": "1459", "target": "103", "attributes": { "weight": 1 } }, { "key": "24886", "source": "1459", "target": "1445", "attributes": { "weight": 1 } }, { "key": "7960", "source": "1459", "target": "109", "attributes": { "weight": 1 } }, { "key": "7963", "source": "1460", "target": "1186", "attributes": { "weight": 1 } }, { "key": "7964", "source": "1460", "target": "109", "attributes": { "weight": 1 } }, { "key": "7965", "source": "1460", "target": "112", "attributes": { "weight": 1 } }, { "key": "7966", "source": "1461", "target": "1501", "attributes": { "weight": 1 } }, { "key": "7967", "source": "1462", "target": "1499", "attributes": { "weight": 2 } }, { "key": "7969", "source": "1463", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7968", "source": "1463", "target": "1186", "attributes": { "weight": 1 } }, { "key": "28891", "source": "1464", "target": "109", "attributes": { "weight": 1 } }, { "key": "28889", "source": "1464", "target": "103", "attributes": { "weight": 1 } }, { "key": "21744", "source": "1464", "target": "1306", "attributes": { "weight": 1 } }, { "key": "28890", "source": "1464", "target": "1455", "attributes": { "weight": 1 } }, { "key": "7970", "source": "1464", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7971", "source": "1465", "target": "607", "attributes": { "weight": 1 } }, { "key": "24889", "source": "1465", "target": "109", "attributes": { "weight": 1 } }, { "key": "7972", "source": "1465", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21745", "source": "1465", "target": "1445", "attributes": { "weight": 2 } }, { "key": "7975", "source": "1466", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7974", "source": "1466", "target": "116", "attributes": { "weight": 1 } }, { "key": "21748", "source": "1466", "target": "109", "attributes": { "weight": 2 } }, { "key": "21747", "source": "1466", "target": "108", "attributes": { "weight": 3 } }, { "key": "21746", "source": "1466", "target": "103", "attributes": { "weight": 3 } }, { "key": "7973", "source": "1466", "target": "1455", "attributes": { "weight": 1 } }, { "key": "7976", "source": "1467", "target": "105", "attributes": { "weight": 2 } }, { "key": "7977", "source": "1468", "target": "1476", "attributes": { "weight": 1 } }, { "key": "21749", "source": "1468", "target": "1445", "attributes": { "weight": 1 } }, { "key": "7978", "source": "1468", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7981", "source": "1469", "target": "1475", "attributes": { "weight": 1 } }, { "key": "7979", "source": "1469", "target": "105", "attributes": { "weight": 1 } }, { "key": "7983", "source": "1469", "target": "1505", "attributes": { "weight": 1 } }, { "key": "7982", "source": "1469", "target": "607", "attributes": { "weight": 1 } }, { "key": "21751", "source": "1469", "target": "109", "attributes": { "weight": 2 } }, { "key": "7980", "source": "1469", "target": "604", "attributes": { "weight": 3 } }, { "key": "21750", "source": "1469", "target": "1445", "attributes": { "weight": 2 } }, { "key": "7984", "source": "1470", "target": "116", "attributes": { "weight": 1 } }, { "key": "7986", "source": "1471", "target": "1437", "attributes": { "weight": 3 } }, { "key": "7988", "source": "1471", "target": "1447", "attributes": { "weight": 1 } }, { "key": "30805", "source": "1471", "target": "3009", "attributes": { "weight": 1 } }, { "key": "7987", "source": "1471", "target": "103", "attributes": { "weight": 3 } }, { "key": "7989", "source": "1471", "target": "1504", "attributes": { "weight": 1 } }, { "key": "7985", "source": "1471", "target": "101", "attributes": { "weight": 1 } }, { "key": "30804", "source": "1471", "target": "3008", "attributes": { "weight": 1 } }, { "key": "30803", "source": "1471", "target": "1458", "attributes": { "weight": 1 } }, { "key": "8001", "source": "1472", "target": "1437", "attributes": { "weight": 3 } }, { "key": "21756", "source": "1473", "target": "109", "attributes": { "weight": 3 } }, { "key": "8002", "source": "1473", "target": "1432", "attributes": { "weight": 1 } }, { "key": "8003", "source": "1473", "target": "1306", "attributes": { "weight": 1 } }, { "key": "21757", "source": "1473", "target": "116", "attributes": { "weight": 2 } }, { "key": "21755", "source": "1473", "target": "108", "attributes": { "weight": 2 } }, { "key": "8004", "source": "1473", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21754", "source": "1473", "target": "103", "attributes": { "weight": 3 } }, { "key": "8005", "source": "1474", "target": "1495", "attributes": { "weight": 2 } }, { "key": "32237", "source": "1474", "target": "1442", "attributes": { "weight": 1 } }, { "key": "8006", "source": "1474", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21758", "source": "1475", "target": "1445", "attributes": { "weight": 1 } }, { "key": "8008", "source": "1475", "target": "604", "attributes": { "weight": 3 } }, { "key": "21760", "source": "1475", "target": "109", "attributes": { "weight": 1 } }, { "key": "8007", "source": "1475", "target": "105", "attributes": { "weight": 1 } }, { "key": "8010", "source": "1475", "target": "607", "attributes": { "weight": 1 } }, { "key": "21759", "source": "1475", "target": "106", "attributes": { "weight": 1 } }, { "key": "8011", "source": "1475", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8009", "source": "1475", "target": "1469", "attributes": { "weight": 1 } }, { "key": "8013", "source": "1476", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8012", "source": "1476", "target": "1468", "attributes": { "weight": 1 } }, { "key": "8015", "source": "1477", "target": "112", "attributes": { "weight": 1 } }, { "key": "8014", "source": "1477", "target": "1186", "attributes": { "weight": 2 } }, { "key": "32920", "source": "1478", "target": "470", "attributes": { "weight": 1 } }, { "key": "21763", "source": "1478", "target": "108", "attributes": { "weight": 2 } }, { "key": "8016", "source": "1478", "target": "1186", "attributes": { "weight": 1 } }, { "key": "8019", "source": "1478", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8018", "source": "1478", "target": "1306", "attributes": { "weight": 1 } }, { "key": "21761", "source": "1478", "target": "103", "attributes": { "weight": 3 } }, { "key": "21762", "source": "1478", "target": "1455", "attributes": { "weight": 2 } }, { "key": "21764", "source": "1478", "target": "109", "attributes": { "weight": 3 } }, { "key": "21765", "source": "1478", "target": "116", "attributes": { "weight": 1 } }, { "key": "8017", "source": "1478", "target": "1453", "attributes": { "weight": 1 } }, { "key": "21767", "source": "1479", "target": "108", "attributes": { "weight": 1 } }, { "key": "8020", "source": "1479", "target": "109", "attributes": { "weight": 2 } }, { "key": "8022", "source": "1479", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21766", "source": "1479", "target": "1445", "attributes": { "weight": 2 } }, { "key": "8021", "source": "1479", "target": "607", "attributes": { "weight": 1 } }, { "key": "8023", "source": "1480", "target": "105", "attributes": { "weight": 1 } }, { "key": "8024", "source": "1481", "target": "1501", "attributes": { "weight": 1 } }, { "key": "8025", "source": "1482", "target": "116", "attributes": { "weight": 1 } }, { "key": "8026", "source": "1483", "target": "607", "attributes": { "weight": 3 } }, { "key": "8028", "source": "1484", "target": "1505", "attributes": { "weight": 1 } }, { "key": "28526", "source": "1484", "target": "2774", "attributes": { "weight": 1 } }, { "key": "8027", "source": "1484", "target": "607", "attributes": { "weight": 2 } }, { "key": "28892", "source": "1484", "target": "109", "attributes": { "weight": 1 } }, { "key": "8030", "source": "1485", "target": "1502", "attributes": { "weight": 1 } }, { "key": "8029", "source": "1485", "target": "1455", "attributes": { "weight": 1 } }, { "key": "8031", "source": "1486", "target": "1261", "attributes": { "weight": 1 } }, { "key": "28894", "source": "1487", "target": "116", "attributes": { "weight": 1 } }, { "key": "28893", "source": "1487", "target": "103", "attributes": { "weight": 1 } }, { "key": "8044", "source": "1487", "target": "1186", "attributes": { "weight": 1 } }, { "key": "21768", "source": "1487", "target": "1306", "attributes": { "weight": 2 } }, { "key": "8059", "source": "1488", "target": "112", "attributes": { "weight": 1 } }, { "key": "8060", "source": "1489", "target": "1505", "attributes": { "weight": 1 } }, { "key": "21774", "source": "1489", "target": "1445", "attributes": { "weight": 1 } }, { "key": "8061", "source": "1490", "target": "105", "attributes": { "weight": 3 } }, { "key": "8062", "source": "1490", "target": "1261", "attributes": { "weight": 2 } }, { "key": "8063", "source": "1490", "target": "1491", "attributes": { "weight": 2 } }, { "key": "21776", "source": "1490", "target": "103", "attributes": { "weight": 2 } }, { "key": "8066", "source": "1491", "target": "1490", "attributes": { "weight": 2 } }, { "key": "21777", "source": "1491", "target": "103", "attributes": { "weight": 2 } }, { "key": "21778", "source": "1491", "target": "2292", "attributes": { "weight": 1 } }, { "key": "28529", "source": "1492", "target": "2775", "attributes": { "weight": 1 } }, { "key": "8077", "source": "1492", "target": "607", "attributes": { "weight": 2 } }, { "key": "28530", "source": "1492", "target": "2779", "attributes": { "weight": 1 } }, { "key": "8078", "source": "1493", "target": "105", "attributes": { "weight": 1 } }, { "key": "8079", "source": "1494", "target": "1505", "attributes": { "weight": 1 } }, { "key": "24900", "source": "1495", "target": "1459", "attributes": { "weight": 1 } }, { "key": "8084", "source": "1495", "target": "604", "attributes": { "weight": 1 } }, { "key": "8080", "source": "1495", "target": "1438", "attributes": { "weight": 1 } }, { "key": "32238", "source": "1495", "target": "1444", "attributes": { "weight": 1 } }, { "key": "8087", "source": "1495", "target": "1474", "attributes": { "weight": 2 } }, { "key": "8085", "source": "1495", "target": "109", "attributes": { "weight": 2 } }, { "key": "8089", "source": "1495", "target": "1496", "attributes": { "weight": 2 } }, { "key": "24899", "source": "1495", "target": "1432", "attributes": { "weight": 1 } }, { "key": "8081", "source": "1495", "target": "1442", "attributes": { "weight": 1 } }, { "key": "28895", "source": "1495", "target": "116", "attributes": { "weight": 1 } }, { "key": "21784", "source": "1495", "target": "103", "attributes": { "weight": 3 } }, { "key": "8082", "source": "1495", "target": "1445", "attributes": { "weight": 4 } }, { "key": "8083", "source": "1495", "target": "1186", "attributes": { "weight": 3 } }, { "key": "37261", "source": "1495", "target": "114", "attributes": { "weight": 1 } }, { "key": "8091", "source": "1495", "target": "1506", "attributes": { "weight": 3 } }, { "key": "8088", "source": "1495", "target": "607", "attributes": { "weight": 1 } }, { "key": "8086", "source": "1495", "target": "110", "attributes": { "weight": 1 } }, { "key": "8090", "source": "1495", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8092", "source": "1496", "target": "112", "attributes": { "weight": 1 } }, { "key": "8093", "source": "1496", "target": "1495", "attributes": { "weight": 2 } }, { "key": "8094", "source": "1497", "target": "1501", "attributes": { "weight": 1 } }, { "key": "21785", "source": "1498", "target": "1437", "attributes": { "weight": 3 } }, { "key": "21787", "source": "1498", "target": "108", "attributes": { "weight": 2 } }, { "key": "8098", "source": "1498", "target": "1455", "attributes": { "weight": 3 } }, { "key": "8099", "source": "1498", "target": "1502", "attributes": { "weight": 1 } }, { "key": "21786", "source": "1498", "target": "103", "attributes": { "weight": 2 } }, { "key": "21788", "source": "1498", "target": "109", "attributes": { "weight": 2 } }, { "key": "21789", "source": "1498", "target": "1458", "attributes": { "weight": 2 } }, { "key": "8097", "source": "1498", "target": "1186", "attributes": { "weight": 1 } }, { "key": "8113", "source": "1499", "target": "1462", "attributes": { "weight": 2 } }, { "key": "8111", "source": "1499", "target": "1435", "attributes": { "weight": 1 } }, { "key": "8115", "source": "1499", "target": "1503", "attributes": { "weight": 1 } }, { "key": "27436", "source": "1499", "target": "3418", "attributes": { "weight": 1 } }, { "key": "8114", "source": "1499", "target": "1261", "attributes": { "weight": 5 } }, { "key": "8112", "source": "1499", "target": "1437", "attributes": { "weight": 3 } }, { "key": "27434", "source": "1499", "target": "2681", "attributes": { "weight": 1 } }, { "key": "8116", "source": "1500", "target": "1261", "attributes": { "weight": 1 } }, { "key": "8118", "source": "1501", "target": "1461", "attributes": { "weight": 1 } }, { "key": "8121", "source": "1501", "target": "1497", "attributes": { "weight": 1 } }, { "key": "8120", "source": "1501", "target": "1481", "attributes": { "weight": 1 } }, { "key": "8119", "source": "1501", "target": "1261", "attributes": { "weight": 1 } }, { "key": "8117", "source": "1501", "target": "1452", "attributes": { "weight": 1 } }, { "key": "8124", "source": "1502", "target": "1306", "attributes": { "weight": 1 } }, { "key": "8125", "source": "1502", "target": "1498", "attributes": { "weight": 1 } }, { "key": "21798", "source": "1502", "target": "109", "attributes": { "weight": 2 } }, { "key": "8126", "source": "1502", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8122", "source": "1502", "target": "1455", "attributes": { "weight": 3 } }, { "key": "8123", "source": "1502", "target": "1485", "attributes": { "weight": 1 } }, { "key": "21797", "source": "1502", "target": "103", "attributes": { "weight": 2 } }, { "key": "8127", "source": "1503", "target": "1499", "attributes": { "weight": 1 } }, { "key": "8128", "source": "1504", "target": "1437", "attributes": { "weight": 1 } }, { "key": "8148", "source": "1505", "target": "604", "attributes": { "weight": 2 } }, { "key": "8147", "source": "1505", "target": "1186", "attributes": { "weight": 2 } }, { "key": "8163", "source": "1505", "target": "1261", "attributes": { "weight": 1 } }, { "key": "8144", "source": "1505", "target": "105", "attributes": { "weight": 1 } }, { "key": "8177", "source": "1505", "target": "1495", "attributes": { "weight": 1 } }, { "key": "8180", "source": "1505", "target": "1502", "attributes": { "weight": 1 } }, { "key": "8169", "source": "1505", "target": "1479", "attributes": { "weight": 1 } }, { "key": "8135", "source": "1505", "target": "1432", "attributes": { "weight": 1 } }, { "key": "8139", "source": "1505", "target": "103", "attributes": { "weight": 3 } }, { "key": "8145", "source": "1505", "target": "106", "attributes": { "weight": 1 } }, { "key": "8167", "source": "1505", "target": "1476", "attributes": { "weight": 1 } }, { "key": "8142", "source": "1505", "target": "1443", "attributes": { "weight": 1 } }, { "key": "8182", "source": "1505", "target": "118", "attributes": { "weight": 1 } }, { "key": "8138", "source": "1505", "target": "1438", "attributes": { "weight": 1 } }, { "key": "8136", "source": "1505", "target": "1433", "attributes": { "weight": 1 } }, { "key": "8140", "source": "1505", "target": "1441", "attributes": { "weight": 1 } }, { "key": "8178", "source": "1505", "target": "115", "attributes": { "weight": 1 } }, { "key": "8151", "source": "1505", "target": "1454", "attributes": { "weight": 1 } }, { "key": "8172", "source": "1505", "target": "607", "attributes": { "weight": 1 } }, { "key": "8174", "source": "1505", "target": "114", "attributes": { "weight": 1 } }, { "key": "8143", "source": "1505", "target": "1444", "attributes": { "weight": 1 } }, { "key": "32939", "source": "1505", "target": "470", "attributes": { "weight": 1 } }, { "key": "8159", "source": "1505", "target": "1465", "attributes": { "weight": 1 } }, { "key": "8179", "source": "1505", "target": "116", "attributes": { "weight": 1 } }, { "key": "8152", "source": "1505", "target": "1455", "attributes": { "weight": 1 } }, { "key": "8175", "source": "1505", "target": "1306", "attributes": { "weight": 1 } }, { "key": "8162", "source": "1505", "target": "1469", "attributes": { "weight": 1 } }, { "key": "8146", "source": "1505", "target": "1448", "attributes": { "weight": 1 } }, { "key": "8176", "source": "1505", "target": "1494", "attributes": { "weight": 1 } }, { "key": "8149", "source": "1505", "target": "1451", "attributes": { "weight": 1 } }, { "key": "8171", "source": "1505", "target": "112", "attributes": { "weight": 1 } }, { "key": "8181", "source": "1505", "target": "117", "attributes": { "weight": 1 } }, { "key": "8184", "source": "1505", "target": "1507", "attributes": { "weight": 1 } }, { "key": "8165", "source": "1505", "target": "1474", "attributes": { "weight": 1 } }, { "key": "8168", "source": "1505", "target": "1478", "attributes": { "weight": 1 } }, { "key": "8170", "source": "1505", "target": "1484", "attributes": { "weight": 1 } }, { "key": "8158", "source": "1505", "target": "1464", "attributes": { "weight": 1 } }, { "key": "8166", "source": "1505", "target": "1475", "attributes": { "weight": 1 } }, { "key": "8157", "source": "1505", "target": "1463", "attributes": { "weight": 1 } }, { "key": "8183", "source": "1505", "target": "1506", "attributes": { "weight": 1 } }, { "key": "8141", "source": "1505", "target": "104", "attributes": { "weight": 1 } }, { "key": "8155", "source": "1505", "target": "1457", "attributes": { "weight": 1 } }, { "key": "8137", "source": "1505", "target": "1434", "attributes": { "weight": 1 } }, { "key": "8156", "source": "1505", "target": "1459", "attributes": { "weight": 1 } }, { "key": "8173", "source": "1505", "target": "1489", "attributes": { "weight": 1 } }, { "key": "8160", "source": "1505", "target": "1466", "attributes": { "weight": 1 } }, { "key": "8153", "source": "1505", "target": "108", "attributes": { "weight": 3 } }, { "key": "8161", "source": "1505", "target": "1468", "attributes": { "weight": 1 } }, { "key": "8154", "source": "1505", "target": "110", "attributes": { "weight": 1 } }, { "key": "8150", "source": "1505", "target": "107", "attributes": { "weight": 1 } }, { "key": "8164", "source": "1505", "target": "1473", "attributes": { "weight": 1 } }, { "key": "8188", "source": "1506", "target": "1495", "attributes": { "weight": 3 } }, { "key": "21800", "source": "1506", "target": "1445", "attributes": { "weight": 2 } }, { "key": "21802", "source": "1506", "target": "109", "attributes": { "weight": 2 } }, { "key": "21801", "source": "1506", "target": "108", "attributes": { "weight": 2 } }, { "key": "8187", "source": "1506", "target": "1186", "attributes": { "weight": 2 } }, { "key": "32239", "source": "1506", "target": "1442", "attributes": { "weight": 1 } }, { "key": "8190", "source": "1506", "target": "1505", "attributes": { "weight": 1 } }, { "key": "8189", "source": "1506", "target": "116", "attributes": { "weight": 2 } }, { "key": "24904", "source": "1506", "target": "103", "attributes": { "weight": 1 } }, { "key": "8192", "source": "1507", "target": "1505", "attributes": { "weight": 1 } }, { "key": "28534", "source": "1507", "target": "604", "attributes": { "weight": 1 } }, { "key": "8191", "source": "1507", "target": "607", "attributes": { "weight": 1 } }, { "key": "21804", "source": "1507", "target": "1454", "attributes": { "weight": 2 } }, { "key": "8202", "source": "1508", "target": "905", "attributes": { "weight": 1 } }, { "key": "22598", "source": "1508", "target": "1513", "attributes": { "weight": 1 } }, { "key": "31090", "source": "1508", "target": "314", "attributes": { "weight": 1 } }, { "key": "22599", "source": "1508", "target": "315", "attributes": { "weight": 1 } }, { "key": "22605", "source": "1509", "target": "1511", "attributes": { "weight": 1 } }, { "key": "8210", "source": "1509", "target": "315", "attributes": { "weight": 2 } }, { "key": "8209", "source": "1509", "target": "1513", "attributes": { "weight": 1 } }, { "key": "22604", "source": "1509", "target": "905", "attributes": { "weight": 1 } }, { "key": "8212", "source": "1510", "target": "1513", "attributes": { "weight": 1 } }, { "key": "14738", "source": "1510", "target": "259", "attributes": { "weight": 1 } }, { "key": "14739", "source": "1510", "target": "168", "attributes": { "weight": 1 } }, { "key": "14740", "source": "1510", "target": "312", "attributes": { "weight": 1 } }, { "key": "14741", "source": "1510", "target": "336", "attributes": { "weight": 1 } }, { "key": "8213", "source": "1511", "target": "1513", "attributes": { "weight": 1 } }, { "key": "22607", "source": "1511", "target": "905", "attributes": { "weight": 1 } }, { "key": "8214", "source": "1511", "target": "315", "attributes": { "weight": 2 } }, { "key": "22608", "source": "1511", "target": "1509", "attributes": { "weight": 1 } }, { "key": "28696", "source": "1512", "target": "1871", "attributes": { "weight": 1 } }, { "key": "28476", "source": "1512", "target": "1823", "attributes": { "weight": 1 } }, { "key": "26847", "source": "1512", "target": "278", "attributes": { "weight": 3 } }, { "key": "28477", "source": "1512", "target": "907", "attributes": { "weight": 1 } }, { "key": "13345", "source": "1512", "target": "304", "attributes": { "weight": 2 } }, { "key": "13963", "source": "1512", "target": "905", "attributes": { "weight": 1 } }, { "key": "22705", "source": "1512", "target": "170", "attributes": { "weight": 4 } }, { "key": "12101", "source": "1512", "target": "1825", "attributes": { "weight": 1 } }, { "key": "28695", "source": "1512", "target": "1870", "attributes": { "weight": 1 } }, { "key": "8218", "source": "1512", "target": "1513", "attributes": { "weight": 1 } }, { "key": "25052", "source": "1512", "target": "1240", "attributes": { "weight": 2 } }, { "key": "12100", "source": "1512", "target": "1824", "attributes": { "weight": 2 } }, { "key": "12096", "source": "1512", "target": "1819", "attributes": { "weight": 4 } }, { "key": "28471", "source": "1512", "target": "1960", "attributes": { "weight": 1 } }, { "key": "12099", "source": "1512", "target": "580", "attributes": { "weight": 5 } }, { "key": "28473", "source": "1512", "target": "1820", "attributes": { "weight": 1 } }, { "key": "12095", "source": "1512", "target": "707", "attributes": { "weight": 3 } }, { "key": "13964", "source": "1512", "target": "180", "attributes": { "weight": 3 } }, { "key": "12094", "source": "1512", "target": "698", "attributes": { "weight": 3 } }, { "key": "28472", "source": "1512", "target": "2540", "attributes": { "weight": 1 } }, { "key": "14274", "source": "1512", "target": "168", "attributes": { "weight": 3 } }, { "key": "28470", "source": "1512", "target": "1979", "attributes": { "weight": 1 } }, { "key": "28467", "source": "1512", "target": "1191", "attributes": { "weight": 1 } }, { "key": "28474", "source": "1512", "target": "2345", "attributes": { "weight": 1 } }, { "key": "23280", "source": "1512", "target": "305", "attributes": { "weight": 3 } }, { "key": "12098", "source": "1512", "target": "579", "attributes": { "weight": 3 } }, { "key": "28469", "source": "1512", "target": "1905", "attributes": { "weight": 1 } }, { "key": "29213", "source": "1512", "target": "582", "attributes": { "weight": 1 } }, { "key": "28697", "source": "1512", "target": "2785", "attributes": { "weight": 1 } }, { "key": "28475", "source": "1512", "target": "1822", "attributes": { "weight": 1 } }, { "key": "12097", "source": "1512", "target": "1821", "attributes": { "weight": 3 } }, { "key": "8224", "source": "1513", "target": "1510", "attributes": { "weight": 1 } }, { "key": "12603", "source": "1513", "target": "578", "attributes": { "weight": 2 } }, { "key": "11748", "source": "1513", "target": "263", "attributes": { "weight": 1 } }, { "key": "8219", "source": "1513", "target": "260", "attributes": { "weight": 1 } }, { "key": "11750", "source": "1513", "target": "312", "attributes": { "weight": 1 } }, { "key": "8221", "source": "1513", "target": "167", "attributes": { "weight": 2 } }, { "key": "22614", "source": "1513", "target": "301", "attributes": { "weight": 1 } }, { "key": "11751", "source": "1513", "target": "327", "attributes": { "weight": 2 } }, { "key": "22613", "source": "1513", "target": "1508", "attributes": { "weight": 1 } }, { "key": "8227", "source": "1513", "target": "1512", "attributes": { "weight": 1 } }, { "key": "22612", "source": "1513", "target": "272", "attributes": { "weight": 1 } }, { "key": "11749", "source": "1513", "target": "300", "attributes": { "weight": 1 } }, { "key": "8226", "source": "1513", "target": "299", "attributes": { "weight": 2 } }, { "key": "8223", "source": "1513", "target": "1509", "attributes": { "weight": 1 } }, { "key": "11747", "source": "1513", "target": "259", "attributes": { "weight": 1 } }, { "key": "31092", "source": "1513", "target": "314", "attributes": { "weight": 1 } }, { "key": "13968", "source": "1513", "target": "170", "attributes": { "weight": 1 } }, { "key": "8222", "source": "1513", "target": "168", "attributes": { "weight": 3 } }, { "key": "8220", "source": "1513", "target": "574", "attributes": { "weight": 1 } }, { "key": "31091", "source": "1513", "target": "313", "attributes": { "weight": 1 } }, { "key": "22615", "source": "1513", "target": "305", "attributes": { "weight": 1 } }, { "key": "8228", "source": "1513", "target": "177", "attributes": { "weight": 1 } }, { "key": "8225", "source": "1513", "target": "1511", "attributes": { "weight": 1 } }, { "key": "8244", "source": "1514", "target": "315", "attributes": { "weight": 1 } }, { "key": "28207", "source": "1515", "target": "839", "attributes": { "weight": 1 } }, { "key": "15051", "source": "1515", "target": "277", "attributes": { "weight": 2 } }, { "key": "28206", "source": "1515", "target": "168", "attributes": { "weight": 1 } }, { "key": "15050", "source": "1515", "target": "268", "attributes": { "weight": 1 } }, { "key": "13809", "source": "1515", "target": "304", "attributes": { "weight": 2 } }, { "key": "15055", "source": "1515", "target": "327", "attributes": { "weight": 2 } }, { "key": "28205", "source": "1515", "target": "263", "attributes": { "weight": 1 } }, { "key": "8248", "source": "1515", "target": "180", "attributes": { "weight": 3 } }, { "key": "15053", "source": "1515", "target": "307", "attributes": { "weight": 1 } }, { "key": "15054", "source": "1515", "target": "322", "attributes": { "weight": 1 } }, { "key": "28208", "source": "1515", "target": "326", "attributes": { "weight": 1 } }, { "key": "17740", "source": "1516", "target": "1380", "attributes": { "weight": 1 } }, { "key": "26382", "source": "1516", "target": "1565", "attributes": { "weight": 1 } }, { "key": "35720", "source": "1516", "target": "3252", "attributes": { "weight": 1 } }, { "key": "35722", "source": "1516", "target": "3253", "attributes": { "weight": 1 } }, { "key": "35729", "source": "1516", "target": "136", "attributes": { "weight": 1 } }, { "key": "35725", "source": "1516", "target": "3255", "attributes": { "weight": 1 } }, { "key": "17743", "source": "1516", "target": "1555", "attributes": { "weight": 1 } }, { "key": "26381", "source": "1516", "target": "454", "attributes": { "weight": 1 } }, { "key": "35730", "source": "1516", "target": "3260", "attributes": { "weight": 1 } }, { "key": "17742", "source": "1516", "target": "40", "attributes": { "weight": 1 } }, { "key": "8252", "source": "1516", "target": "442", "attributes": { "weight": 3 } }, { "key": "35731", "source": "1516", "target": "3261", "attributes": { "weight": 1 } }, { "key": "35726", "source": "1516", "target": "3256", "attributes": { "weight": 1 } }, { "key": "17741", "source": "1516", "target": "38", "attributes": { "weight": 1 } }, { "key": "35732", "source": "1516", "target": "3263", "attributes": { "weight": 1 } }, { "key": "35728", "source": "1516", "target": "2696", "attributes": { "weight": 1 } }, { "key": "8253", "source": "1516", "target": "1558", "attributes": { "weight": 4 } }, { "key": "35727", "source": "1516", "target": "3257", "attributes": { "weight": 1 } }, { "key": "11820", "source": "1516", "target": "468", "attributes": { "weight": 1 } }, { "key": "35733", "source": "1516", "target": "3264", "attributes": { "weight": 1 } }, { "key": "35724", "source": "1516", "target": "2169", "attributes": { "weight": 1 } }, { "key": "17744", "source": "1516", "target": "41", "attributes": { "weight": 1 } }, { "key": "27796", "source": "1516", "target": "339", "attributes": { "weight": 1 } }, { "key": "35721", "source": "1516", "target": "35", "attributes": { "weight": 1 } }, { "key": "35723", "source": "1516", "target": "3254", "attributes": { "weight": 1 } }, { "key": "8254", "source": "1517", "target": "195", "attributes": { "weight": 4 } }, { "key": "8289", "source": "1518", "target": "1363", "attributes": { "weight": 2 } }, { "key": "8429", "source": "1519", "target": "195", "attributes": { "weight": 3 } }, { "key": "21809", "source": "1519", "target": "2293", "attributes": { "weight": 1 } }, { "key": "21811", "source": "1519", "target": "2212", "attributes": { "weight": 1 } }, { "key": "33862", "source": "1519", "target": "123", "attributes": { "weight": 1 } }, { "key": "15500", "source": "1519", "target": "913", "attributes": { "weight": 1 } }, { "key": "21810", "source": "1519", "target": "337", "attributes": { "weight": 1 } }, { "key": "15501", "source": "1519", "target": "925", "attributes": { "weight": 1 } }, { "key": "27530", "source": "1520", "target": "493", "attributes": { "weight": 2 } }, { "key": "24608", "source": "1520", "target": "889", "attributes": { "weight": 3 } }, { "key": "24476", "source": "1520", "target": "790", "attributes": { "weight": 1 } }, { "key": "27510", "source": "1520", "target": "35", "attributes": { "weight": 1 } }, { "key": "22661", "source": "1520", "target": "1037", "attributes": { "weight": 1 } }, { "key": "10393", "source": "1520", "target": "225", "attributes": { "weight": 1 } }, { "key": "27528", "source": "1520", "target": "1060", "attributes": { "weight": 2 } }, { "key": "27522", "source": "1520", "target": "359", "attributes": { "weight": 2 } }, { "key": "24477", "source": "1520", "target": "1801", "attributes": { "weight": 1 } }, { "key": "26392", "source": "1520", "target": "454", "attributes": { "weight": 2 } }, { "key": "18049", "source": "1520", "target": "1036", "attributes": { "weight": 2 } }, { "key": "36945", "source": "1520", "target": "362", "attributes": { "weight": 1 } }, { "key": "11837", "source": "1520", "target": "468", "attributes": { "weight": 2 } }, { "key": "27514", "source": "1520", "target": "2113", "attributes": { "weight": 1 } }, { "key": "24609", "source": "1520", "target": "2118", "attributes": { "weight": 1 } }, { "key": "27525", "source": "1520", "target": "2115", "attributes": { "weight": 2 } }, { "key": "22264", "source": "1520", "target": "794", "attributes": { "weight": 1 } }, { "key": "24747", "source": "1520", "target": "1056", "attributes": { "weight": 3 } }, { "key": "27511", "source": "1520", "target": "432", "attributes": { "weight": 1 } }, { "key": "17334", "source": "1520", "target": "358", "attributes": { "weight": 2 } }, { "key": "31500", "source": "1520", "target": "672", "attributes": { "weight": 1 } }, { "key": "11009", "source": "1520", "target": "452", "attributes": { "weight": 2 } }, { "key": "11010", "source": "1520", "target": "473", "attributes": { "weight": 2 } }, { "key": "11332", "source": "1520", "target": "1742", "attributes": { "weight": 1 } }, { "key": "27515", "source": "1520", "target": "339", "attributes": { "weight": 2 } }, { "key": "29374", "source": "1520", "target": "232", "attributes": { "weight": 1 } }, { "key": "21507", "source": "1520", "target": "89", "attributes": { "weight": 1 } }, { "key": "27527", "source": "1520", "target": "1026", "attributes": { "weight": 2 } }, { "key": "27803", "source": "1520", "target": "891", "attributes": { "weight": 1 } }, { "key": "14293", "source": "1520", "target": "53", "attributes": { "weight": 2 } }, { "key": "27518", "source": "1520", "target": "2114", "attributes": { "weight": 2 } }, { "key": "27520", "source": "1520", "target": "52", "attributes": { "weight": 1 } }, { "key": "27517", "source": "1520", "target": "1046", "attributes": { "weight": 2 } }, { "key": "27529", "source": "1520", "target": "595", "attributes": { "weight": 2 } }, { "key": "27521", "source": "1520", "target": "791", "attributes": { "weight": 2 } }, { "key": "27512", "source": "1520", "target": "2112", "attributes": { "weight": 1 } }, { "key": "17815", "source": "1520", "target": "1380", "attributes": { "weight": 1 } }, { "key": "27524", "source": "1520", "target": "136", "attributes": { "weight": 1 } }, { "key": "9223", "source": "1520", "target": "430", "attributes": { "weight": 1 } }, { "key": "27526", "source": "1520", "target": "2289", "attributes": { "weight": 1 } }, { "key": "27519", "source": "1520", "target": "693", "attributes": { "weight": 1 } }, { "key": "8442", "source": "1520", "target": "442", "attributes": { "weight": 2 } }, { "key": "27523", "source": "1520", "target": "2696", "attributes": { "weight": 1 } }, { "key": "27516", "source": "1520", "target": "1045", "attributes": { "weight": 1 } }, { "key": "27513", "source": "1520", "target": "223", "attributes": { "weight": 1 } }, { "key": "8443", "source": "1521", "target": "1557", "attributes": { "weight": 1 } }, { "key": "10394", "source": "1521", "target": "225", "attributes": { "weight": 1 } }, { "key": "17816", "source": "1521", "target": "133", "attributes": { "weight": 1 } }, { "key": "19383", "source": "1522", "target": "231", "attributes": { "weight": 1 } }, { "key": "11847", "source": "1522", "target": "70", "attributes": { "weight": 3 } }, { "key": "19385", "source": "1522", "target": "489", "attributes": { "weight": 1 } }, { "key": "19373", "source": "1522", "target": "1756", "attributes": { "weight": 1 } }, { "key": "19381", "source": "1522", "target": "2251", "attributes": { "weight": 1 } }, { "key": "11842", "source": "1522", "target": "223", "attributes": { "weight": 1 } }, { "key": "19387", "source": "1522", "target": "235", "attributes": { "weight": 1 } }, { "key": "19386", "source": "1522", "target": "56", "attributes": { "weight": 1 } }, { "key": "11844", "source": "1522", "target": "1363", "attributes": { "weight": 1 } }, { "key": "30650", "source": "1522", "target": "2994", "attributes": { "weight": 1 } }, { "key": "19377", "source": "1522", "target": "443", "attributes": { "weight": 1 } }, { "key": "19380", "source": "1522", "target": "451", "attributes": { "weight": 1 } }, { "key": "11846", "source": "1522", "target": "189", "attributes": { "weight": 1 } }, { "key": "19388", "source": "1522", "target": "194", "attributes": { "weight": 1 } }, { "key": "29379", "source": "1522", "target": "424", "attributes": { "weight": 1 } }, { "key": "11843", "source": "1522", "target": "183", "attributes": { "weight": 1 } }, { "key": "11848", "source": "1522", "target": "57", "attributes": { "weight": 1 } }, { "key": "31250", "source": "1522", "target": "59", "attributes": { "weight": 1 } }, { "key": "31251", "source": "1522", "target": "674", "attributes": { "weight": 1 } }, { "key": "11014", "source": "1522", "target": "220", "attributes": { "weight": 2 } }, { "key": "19384", "source": "1522", "target": "480", "attributes": { "weight": 1 } }, { "key": "19375", "source": "1522", "target": "440", "attributes": { "weight": 1 } }, { "key": "31252", "source": "1522", "target": "791", "attributes": { "weight": 2 } }, { "key": "18441", "source": "1522", "target": "1738", "attributes": { "weight": 1 } }, { "key": "12666", "source": "1522", "target": "695", "attributes": { "weight": 1 } }, { "key": "8461", "source": "1522", "target": "442", "attributes": { "weight": 2 } }, { "key": "16578", "source": "1522", "target": "1754", "attributes": { "weight": 2 } }, { "key": "16579", "source": "1522", "target": "1861", "attributes": { "weight": 1 } }, { "key": "19382", "source": "1522", "target": "1367", "attributes": { "weight": 1 } }, { "key": "19379", "source": "1522", "target": "2244", "attributes": { "weight": 1 } }, { "key": "26403", "source": "1522", "target": "454", "attributes": { "weight": 2 } }, { "key": "19378", "source": "1522", "target": "1070", "attributes": { "weight": 1 } }, { "key": "16580", "source": "1522", "target": "1337", "attributes": { "weight": 1 } }, { "key": "11841", "source": "1522", "target": "434", "attributes": { "weight": 1 } }, { "key": "11845", "source": "1522", "target": "472", "attributes": { "weight": 1 } }, { "key": "19376", "source": "1522", "target": "2243", "attributes": { "weight": 1 } }, { "key": "19374", "source": "1522", "target": "221", "attributes": { "weight": 1 } }, { "key": "16726", "source": "1522", "target": "1354", "attributes": { "weight": 2 } }, { "key": "19372", "source": "1522", "target": "429", "attributes": { "weight": 1 } }, { "key": "8474", "source": "1523", "target": "195", "attributes": { "weight": 3 } }, { "key": "30976", "source": "1524", "target": "638", "attributes": { "weight": 1 } }, { "key": "23236", "source": "1524", "target": "1544", "attributes": { "weight": 2 } }, { "key": "16430", "source": "1524", "target": "1387", "attributes": { "weight": 1 } }, { "key": "25853", "source": "1524", "target": "163", "attributes": { "weight": 2 } }, { "key": "26179", "source": "1524", "target": "38", "attributes": { "weight": 3 } }, { "key": "17829", "source": "1524", "target": "1380", "attributes": { "weight": 1 } }, { "key": "10404", "source": "1524", "target": "225", "attributes": { "weight": 1 } }, { "key": "36220", "source": "1524", "target": "1386", "attributes": { "weight": 1 } }, { "key": "25852", "source": "1524", "target": "1384", "attributes": { "weight": 3 } }, { "key": "8486", "source": "1524", "target": "442", "attributes": { "weight": 2 } }, { "key": "26278", "source": "1524", "target": "2642", "attributes": { "weight": 1 } }, { "key": "17830", "source": "1524", "target": "133", "attributes": { "weight": 3 } }, { "key": "10405", "source": "1524", "target": "1559", "attributes": { "weight": 4 } }, { "key": "8666", "source": "1525", "target": "195", "attributes": { "weight": 3 } }, { "key": "25514", "source": "1526", "target": "2600", "attributes": { "weight": 1 } }, { "key": "18648", "source": "1526", "target": "1162", "attributes": { "weight": 2 } }, { "key": "18656", "source": "1526", "target": "405", "attributes": { "weight": 2 } }, { "key": "18659", "source": "1526", "target": "1329", "attributes": { "weight": 1 } }, { "key": "18647", "source": "1526", "target": "1152", "attributes": { "weight": 2 } }, { "key": "36529", "source": "1526", "target": "1342", "attributes": { "weight": 1 } }, { "key": "18653", "source": "1526", "target": "1263", "attributes": { "weight": 2 } }, { "key": "18660", "source": "1526", "target": "124", "attributes": { "weight": 2 } }, { "key": "18646", "source": "1526", "target": "1148", "attributes": { "weight": 2 } }, { "key": "18649", "source": "1526", "target": "1228", "attributes": { "weight": 2 } }, { "key": "36525", "source": "1526", "target": "2193", "attributes": { "weight": 1 } }, { "key": "18658", "source": "1526", "target": "1323", "attributes": { "weight": 1 } }, { "key": "36527", "source": "1526", "target": "2229", "attributes": { "weight": 1 } }, { "key": "36528", "source": "1526", "target": "1234", "attributes": { "weight": 1 } }, { "key": "18652", "source": "1526", "target": "1260", "attributes": { "weight": 2 } }, { "key": "18650", "source": "1526", "target": "1248", "attributes": { "weight": 2 } }, { "key": "8676", "source": "1526", "target": "195", "attributes": { "weight": 4 } }, { "key": "33996", "source": "1526", "target": "1233", "attributes": { "weight": 1 } }, { "key": "36524", "source": "1526", "target": "1140", "attributes": { "weight": 1 } }, { "key": "18654", "source": "1526", "target": "926", "attributes": { "weight": 2 } }, { "key": "18651", "source": "1526", "target": "1255", "attributes": { "weight": 2 } }, { "key": "18655", "source": "1526", "target": "1286", "attributes": { "weight": 2 } }, { "key": "18657", "source": "1526", "target": "1322", "attributes": { "weight": 1 } }, { "key": "36526", "source": "1526", "target": "1201", "attributes": { "weight": 1 } }, { "key": "24616", "source": "1527", "target": "163", "attributes": { "weight": 6 } }, { "key": "30986", "source": "1527", "target": "638", "attributes": { "weight": 1 } }, { "key": "36221", "source": "1527", "target": "1386", "attributes": { "weight": 1 } }, { "key": "17353", "source": "1527", "target": "358", "attributes": { "weight": 1 } }, { "key": "27846", "source": "1527", "target": "1539", "attributes": { "weight": 1 } }, { "key": "17841", "source": "1527", "target": "1380", "attributes": { "weight": 1 } }, { "key": "29926", "source": "1527", "target": "1538", "attributes": { "weight": 1 } }, { "key": "17842", "source": "1527", "target": "1548", "attributes": { "weight": 1 } }, { "key": "29928", "source": "1527", "target": "2905", "attributes": { "weight": 1 } }, { "key": "32335", "source": "1527", "target": "791", "attributes": { "weight": 1 } }, { "key": "29929", "source": "1527", "target": "2625", "attributes": { "weight": 1 } }, { "key": "30358", "source": "1527", "target": "1046", "attributes": { "weight": 1 } }, { "key": "8677", "source": "1527", "target": "220", "attributes": { "weight": 3 } }, { "key": "29924", "source": "1527", "target": "2903", "attributes": { "weight": 1 } }, { "key": "29930", "source": "1527", "target": "2906", "attributes": { "weight": 1 } }, { "key": "29925", "source": "1527", "target": "1133", "attributes": { "weight": 2 } }, { "key": "29927", "source": "1527", "target": "1541", "attributes": { "weight": 3 } }, { "key": "37468", "source": "1527", "target": "1530", "attributes": { "weight": 1 } }, { "key": "36949", "source": "1527", "target": "362", "attributes": { "weight": 1 } }, { "key": "17843", "source": "1527", "target": "562", "attributes": { "weight": 4 } }, { "key": "32650", "source": "1527", "target": "2626", "attributes": { "weight": 1 } }, { "key": "27845", "source": "1527", "target": "339", "attributes": { "weight": 1 } }, { "key": "8681", "source": "1528", "target": "195", "attributes": { "weight": 3 } }, { "key": "8689", "source": "1529", "target": "1363", "attributes": { "weight": 2 } }, { "key": "37470", "source": "1530", "target": "2689", "attributes": { "weight": 1 } }, { "key": "37469", "source": "1530", "target": "1527", "attributes": { "weight": 1 } }, { "key": "27452", "source": "1530", "target": "2685", "attributes": { "weight": 1 } }, { "key": "31128", "source": "1530", "target": "1562", "attributes": { "weight": 2 } }, { "key": "8702", "source": "1530", "target": "1538", "attributes": { "weight": 5 } }, { "key": "27453", "source": "1530", "target": "2687", "attributes": { "weight": 2 } }, { "key": "27454", "source": "1530", "target": "1567", "attributes": { "weight": 3 } }, { "key": "8704", "source": "1531", "target": "436", "attributes": { "weight": 2 } }, { "key": "29399", "source": "1531", "target": "232", "attributes": { "weight": 1 } }, { "key": "19880", "source": "1531", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19879", "source": "1531", "target": "227", "attributes": { "weight": 1 } }, { "key": "36542", "source": "1532", "target": "124", "attributes": { "weight": 1 } }, { "key": "36539", "source": "1532", "target": "1165", "attributes": { "weight": 1 } }, { "key": "8705", "source": "1532", "target": "195", "attributes": { "weight": 3 } }, { "key": "36540", "source": "1532", "target": "1174", "attributes": { "weight": 1 } }, { "key": "36541", "source": "1532", "target": "1228", "attributes": { "weight": 1 } }, { "key": "19914", "source": "1533", "target": "1836", "attributes": { "weight": 1 } }, { "key": "8709", "source": "1533", "target": "1564", "attributes": { "weight": 2 } }, { "key": "23586", "source": "1533", "target": "1312", "attributes": { "weight": 1 } }, { "key": "19915", "source": "1533", "target": "489", "attributes": { "weight": 1 } }, { "key": "19911", "source": "1533", "target": "51", "attributes": { "weight": 1 } }, { "key": "32162", "source": "1533", "target": "3088", "attributes": { "weight": 1 } }, { "key": "19912", "source": "1533", "target": "2245", "attributes": { "weight": 1 } }, { "key": "8708", "source": "1533", "target": "1535", "attributes": { "weight": 2 } }, { "key": "19913", "source": "1533", "target": "1832", "attributes": { "weight": 1 } }, { "key": "8711", "source": "1534", "target": "322", "attributes": { "weight": 4 } }, { "key": "12202", "source": "1535", "target": "1161", "attributes": { "weight": 1 } }, { "key": "24416", "source": "1535", "target": "475", "attributes": { "weight": 1 } }, { "key": "8716", "source": "1535", "target": "442", "attributes": { "weight": 2 } }, { "key": "12204", "source": "1535", "target": "183", "attributes": { "weight": 1 } }, { "key": "12211", "source": "1535", "target": "231", "attributes": { "weight": 3 } }, { "key": "12206", "source": "1535", "target": "451", "attributes": { "weight": 2 } }, { "key": "12205", "source": "1535", "target": "450", "attributes": { "weight": 1 } }, { "key": "12200", "source": "1535", "target": "1354", "attributes": { "weight": 1 } }, { "key": "12207", "source": "1535", "target": "1359", "attributes": { "weight": 1 } }, { "key": "25914", "source": "1535", "target": "1367", "attributes": { "weight": 1 } }, { "key": "24415", "source": "1535", "target": "2502", "attributes": { "weight": 1 } }, { "key": "12208", "source": "1535", "target": "1219", "attributes": { "weight": 1 } }, { "key": "8717", "source": "1535", "target": "1533", "attributes": { "weight": 2 } }, { "key": "12203", "source": "1535", "target": "449", "attributes": { "weight": 1 } }, { "key": "12209", "source": "1535", "target": "1362", "attributes": { "weight": 1 } }, { "key": "8718", "source": "1535", "target": "1130", "attributes": { "weight": 2 } }, { "key": "12201", "source": "1535", "target": "220", "attributes": { "weight": 1 } }, { "key": "12199", "source": "1535", "target": "429", "attributes": { "weight": 1 } }, { "key": "12210", "source": "1535", "target": "472", "attributes": { "weight": 1 } }, { "key": "35306", "source": "1536", "target": "191", "attributes": { "weight": 1 } }, { "key": "35307", "source": "1536", "target": "477", "attributes": { "weight": 1 } }, { "key": "20089", "source": "1536", "target": "441", "attributes": { "weight": 1 } }, { "key": "20092", "source": "1536", "target": "2189", "attributes": { "weight": 1 } }, { "key": "32383", "source": "1536", "target": "791", "attributes": { "weight": 1 } }, { "key": "20091", "source": "1536", "target": "489", "attributes": { "weight": 1 } }, { "key": "11139", "source": "1536", "target": "452", "attributes": { "weight": 1 } }, { "key": "24059", "source": "1536", "target": "130", "attributes": { "weight": 2 } }, { "key": "26562", "source": "1536", "target": "189", "attributes": { "weight": 1 } }, { "key": "20088", "source": "1536", "target": "439", "attributes": { "weight": 1 } }, { "key": "35305", "source": "1536", "target": "190", "attributes": { "weight": 1 } }, { "key": "8748", "source": "1536", "target": "442", "attributes": { "weight": 2 } }, { "key": "11879", "source": "1536", "target": "135", "attributes": { "weight": 1 } }, { "key": "20090", "source": "1536", "target": "2245", "attributes": { "weight": 1 } }, { "key": "9962", "source": "1536", "target": "1093", "attributes": { "weight": 2 } }, { "key": "30885", "source": "1536", "target": "3", "attributes": { "weight": 1 } }, { "key": "35304", "source": "1536", "target": "445", "attributes": { "weight": 1 } }, { "key": "8755", "source": "1537", "target": "195", "attributes": { "weight": 3 } }, { "key": "11406", "source": "1538", "target": "560", "attributes": { "weight": 1 } }, { "key": "27457", "source": "1538", "target": "1567", "attributes": { "weight": 1 } }, { "key": "29933", "source": "1538", "target": "1527", "attributes": { "weight": 1 } }, { "key": "35186", "source": "1538", "target": "1530", "attributes": { "weight": 2 } }, { "key": "24623", "source": "1538", "target": "161", "attributes": { "weight": 1 } }, { "key": "8760", "source": "1538", "target": "163", "attributes": { "weight": 3 } }, { "key": "35187", "source": "1538", "target": "1562", "attributes": { "weight": 1 } }, { "key": "31005", "source": "1539", "target": "1809", "attributes": { "weight": 1 } }, { "key": "17891", "source": "1539", "target": "1380", "attributes": { "weight": 2 } }, { "key": "27856", "source": "1539", "target": "1527", "attributes": { "weight": 1 } }, { "key": "8769", "source": "1539", "target": "1550", "attributes": { "weight": 11 } }, { "key": "34918", "source": "1539", "target": "3025", "attributes": { "weight": 1 } }, { "key": "34919", "source": "1539", "target": "1815", "attributes": { "weight": 1 } }, { "key": "11887", "source": "1539", "target": "638", "attributes": { "weight": 3 } }, { "key": "12550", "source": "1539", "target": "1866", "attributes": { "weight": 1 } }, { "key": "17892", "source": "1539", "target": "1548", "attributes": { "weight": 1 } }, { "key": "8770", "source": "1539", "target": "163", "attributes": { "weight": 3 } }, { "key": "32053", "source": "1539", "target": "1816", "attributes": { "weight": 1 } }, { "key": "8781", "source": "1540", "target": "1543", "attributes": { "weight": 2 } }, { "key": "8792", "source": "1541", "target": "1527", "attributes": { "weight": 6 } }, { "key": "18086", "source": "1541", "target": "1787", "attributes": { "weight": 2 } }, { "key": "36224", "source": "1541", "target": "1386", "attributes": { "weight": 1 } }, { "key": "17904", "source": "1541", "target": "562", "attributes": { "weight": 2 } }, { "key": "17903", "source": "1541", "target": "1380", "attributes": { "weight": 2 } }, { "key": "26056", "source": "1541", "target": "163", "attributes": { "weight": 2 } }, { "key": "29934", "source": "1541", "target": "1133", "attributes": { "weight": 2 } }, { "key": "32532", "source": "1541", "target": "560", "attributes": { "weight": 1 } }, { "key": "26055", "source": "1541", "target": "2625", "attributes": { "weight": 2 } }, { "key": "9598", "source": "1542", "target": "171", "attributes": { "weight": 2 } }, { "key": "15182", "source": "1542", "target": "1621", "attributes": { "weight": 2 } }, { "key": "18391", "source": "1542", "target": "830", "attributes": { "weight": 1 } }, { "key": "8794", "source": "1542", "target": "164", "attributes": { "weight": 8 } }, { "key": "18392", "source": "1542", "target": "178", "attributes": { "weight": 2 } }, { "key": "29570", "source": "1542", "target": "1966", "attributes": { "weight": 1 } }, { "key": "8798", "source": "1543", "target": "457", "attributes": { "weight": 2 } }, { "key": "15423", "source": "1544", "target": "136", "attributes": { "weight": 2 } }, { "key": "17910", "source": "1544", "target": "1380", "attributes": { "weight": 1 } }, { "key": "8808", "source": "1544", "target": "442", "attributes": { "weight": 1 } }, { "key": "15422", "source": "1544", "target": "38", "attributes": { "weight": 3 } }, { "key": "32551", "source": "1544", "target": "791", "attributes": { "weight": 1 } }, { "key": "30131", "source": "1544", "target": "133", "attributes": { "weight": 3 } }, { "key": "17913", "source": "1544", "target": "1557", "attributes": { "weight": 1 } }, { "key": "23240", "source": "1544", "target": "1524", "attributes": { "weight": 2 } }, { "key": "23239", "source": "1544", "target": "34", "attributes": { "weight": 1 } }, { "key": "10500", "source": "1544", "target": "1565", "attributes": { "weight": 1 } }, { "key": "17912", "source": "1544", "target": "40", "attributes": { "weight": 1 } }, { "key": "17914", "source": "1544", "target": "1559", "attributes": { "weight": 3 } }, { "key": "36238", "source": "1544", "target": "1386", "attributes": { "weight": 1 } }, { "key": "10499", "source": "1544", "target": "225", "attributes": { "weight": 1 } }, { "key": "17911", "source": "1544", "target": "1384", "attributes": { "weight": 1 } }, { "key": "31042", "source": "1544", "target": "638", "attributes": { "weight": 1 } }, { "key": "8828", "source": "1545", "target": "436", "attributes": { "weight": 2 } }, { "key": "23350", "source": "1545", "target": "483", "attributes": { "weight": 1 } }, { "key": "23349", "source": "1545", "target": "231", "attributes": { "weight": 1 } }, { "key": "23346", "source": "1545", "target": "1703", "attributes": { "weight": 1 } }, { "key": "23348", "source": "1545", "target": "1121", "attributes": { "weight": 1 } }, { "key": "8827", "source": "1545", "target": "1107", "attributes": { "weight": 2 } }, { "key": "23347", "source": "1545", "target": "458", "attributes": { "weight": 1 } }, { "key": "32168", "source": "1546", "target": "1125", "attributes": { "weight": 1 } }, { "key": "20329", "source": "1546", "target": "51", "attributes": { "weight": 1 } }, { "key": "8831", "source": "1546", "target": "1564", "attributes": { "weight": 2 } }, { "key": "13842", "source": "1546", "target": "1936", "attributes": { "weight": 1 } }, { "key": "20331", "source": "1546", "target": "1247", "attributes": { "weight": 1 } }, { "key": "20330", "source": "1546", "target": "1832", "attributes": { "weight": 1 } }, { "key": "13843", "source": "1546", "target": "228", "attributes": { "weight": 1 } }, { "key": "20333", "source": "1546", "target": "489", "attributes": { "weight": 1 } }, { "key": "20332", "source": "1546", "target": "1836", "attributes": { "weight": 1 } }, { "key": "32167", "source": "1546", "target": "474", "attributes": { "weight": 1 } }, { "key": "8841", "source": "1547", "target": "442", "attributes": { "weight": 2 } }, { "key": "36003", "source": "1547", "target": "2258", "attributes": { "weight": 1 } }, { "key": "36002", "source": "1547", "target": "2245", "attributes": { "weight": 1 } }, { "key": "25105", "source": "1547", "target": "497", "attributes": { "weight": 2 } }, { "key": "33499", "source": "1547", "target": "489", "attributes": { "weight": 1 } }, { "key": "25093", "source": "1547", "target": "674", "attributes": { "weight": 2 } }, { "key": "10906", "source": "1547", "target": "457", "attributes": { "weight": 1 } }, { "key": "25383", "source": "1547", "target": "433", "attributes": { "weight": 1 } }, { "key": "25103", "source": "1547", "target": "1093", "attributes": { "weight": 1 } }, { "key": "25094", "source": "1547", "target": "454", "attributes": { "weight": 2 } }, { "key": "25104", "source": "1547", "target": "495", "attributes": { "weight": 2 } }, { "key": "25106", "source": "1547", "target": "57", "attributes": { "weight": 2 } }, { "key": "25099", "source": "1547", "target": "486", "attributes": { "weight": 1 } }, { "key": "25102", "source": "1547", "target": "1775", "attributes": { "weight": 2 } }, { "key": "25100", "source": "1547", "target": "428", "attributes": { "weight": 1 } }, { "key": "25098", "source": "1547", "target": "427", "attributes": { "weight": 1 } }, { "key": "25101", "source": "1547", "target": "595", "attributes": { "weight": 2 } }, { "key": "25091", "source": "1547", "target": "220", "attributes": { "weight": 1 } }, { "key": "25095", "source": "1547", "target": "791", "attributes": { "weight": 2 } }, { "key": "25096", "source": "1547", "target": "189", "attributes": { "weight": 2 } }, { "key": "25097", "source": "1547", "target": "479", "attributes": { "weight": 1 } }, { "key": "25092", "source": "1547", "target": "223", "attributes": { "weight": 2 } }, { "key": "17933", "source": "1548", "target": "1539", "attributes": { "weight": 1 } }, { "key": "31043", "source": "1548", "target": "638", "attributes": { "weight": 1 } }, { "key": "8842", "source": "1548", "target": "1550", "attributes": { "weight": 5 } }, { "key": "8843", "source": "1548", "target": "163", "attributes": { "weight": 3 } }, { "key": "17931", "source": "1548", "target": "2167", "attributes": { "weight": 1 } }, { "key": "17932", "source": "1548", "target": "1527", "attributes": { "weight": 1 } }, { "key": "30518", "source": "1549", "target": "281", "attributes": { "weight": 1 } }, { "key": "30520", "source": "1549", "target": "175", "attributes": { "weight": 2 } }, { "key": "30519", "source": "1549", "target": "2985", "attributes": { "weight": 1 } }, { "key": "30517", "source": "1549", "target": "574", "attributes": { "weight": 2 } }, { "key": "26281", "source": "1549", "target": "1642", "attributes": { "weight": 2 } }, { "key": "8845", "source": "1549", "target": "164", "attributes": { "weight": 4 } }, { "key": "30516", "source": "1549", "target": "830", "attributes": { "weight": 1 } }, { "key": "29230", "source": "1550", "target": "2836", "attributes": { "weight": 1 } }, { "key": "29231", "source": "1550", "target": "1995", "attributes": { "weight": 1 } }, { "key": "31046", "source": "1550", "target": "638", "attributes": { "weight": 1 } }, { "key": "29228", "source": "1550", "target": "2835", "attributes": { "weight": 1 } }, { "key": "31045", "source": "1550", "target": "1809", "attributes": { "weight": 1 } }, { "key": "16467", "source": "1550", "target": "1387", "attributes": { "weight": 1 } }, { "key": "29229", "source": "1550", "target": "1551", "attributes": { "weight": 1 } }, { "key": "12555", "source": "1550", "target": "1866", "attributes": { "weight": 1 } }, { "key": "17485", "source": "1550", "target": "358", "attributes": { "weight": 1 } }, { "key": "8850", "source": "1550", "target": "163", "attributes": { "weight": 4 } }, { "key": "8848", "source": "1550", "target": "1539", "attributes": { "weight": 7 } }, { "key": "29227", "source": "1550", "target": "2834", "attributes": { "weight": 1 } }, { "key": "26061", "source": "1550", "target": "1816", "attributes": { "weight": 2 } }, { "key": "8847", "source": "1550", "target": "220", "attributes": { "weight": 3 } }, { "key": "8849", "source": "1550", "target": "1548", "attributes": { "weight": 5 } }, { "key": "17939", "source": "1550", "target": "2167", "attributes": { "weight": 1 } }, { "key": "17938", "source": "1550", "target": "1380", "attributes": { "weight": 1 } }, { "key": "11998", "source": "1551", "target": "638", "attributes": { "weight": 2 } }, { "key": "29233", "source": "1551", "target": "1550", "attributes": { "weight": 1 } }, { "key": "31047", "source": "1551", "target": "3028", "attributes": { "weight": 1 } }, { "key": "8852", "source": "1551", "target": "1539", "attributes": { "weight": 3 } }, { "key": "18254", "source": "1552", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18784", "source": "1552", "target": "1152", "attributes": { "weight": 2 } }, { "key": "29248", "source": "1552", "target": "2840", "attributes": { "weight": 1 } }, { "key": "18829", "source": "1552", "target": "1321", "attributes": { "weight": 2 } }, { "key": "15999", "source": "1552", "target": "913", "attributes": { "weight": 3 } }, { "key": "18824", "source": "1552", "target": "1305", "attributes": { "weight": 2 } }, { "key": "8874", "source": "1552", "target": "195", "attributes": { "weight": 5 } }, { "key": "18821", "source": "1552", "target": "1296", "attributes": { "weight": 2 } }, { "key": "18835", "source": "1552", "target": "124", "attributes": { "weight": 2 } }, { "key": "18836", "source": "1552", "target": "218", "attributes": { "weight": 2 } }, { "key": "18782", "source": "1552", "target": "1140", "attributes": { "weight": 2 } }, { "key": "18820", "source": "1552", "target": "1294", "attributes": { "weight": 2 } }, { "key": "18812", "source": "1552", "target": "926", "attributes": { "weight": 2 } }, { "key": "18814", "source": "1552", "target": "1286", "attributes": { "weight": 2 } }, { "key": "18799", "source": "1552", "target": "1228", "attributes": { "weight": 2 } }, { "key": "18806", "source": "1552", "target": "1255", "attributes": { "weight": 2 } }, { "key": "18810", "source": "1552", "target": "924", "attributes": { "weight": 2 } }, { "key": "18832", "source": "1552", "target": "1326", "attributes": { "weight": 2 } }, { "key": "18834", "source": "1552", "target": "1331", "attributes": { "weight": 2 } }, { "key": "18794", "source": "1552", "target": "1184", "attributes": { "weight": 2 } }, { "key": "18789", "source": "1552", "target": "1172", "attributes": { "weight": 2 } }, { "key": "18818", "source": "1552", "target": "1291", "attributes": { "weight": 2 } }, { "key": "18808", "source": "1552", "target": "1263", "attributes": { "weight": 2 } }, { "key": "18786", "source": "1552", "target": "1162", "attributes": { "weight": 2 } }, { "key": "18826", "source": "1552", "target": "215", "attributes": { "weight": 2 } }, { "key": "37160", "source": "1552", "target": "390", "attributes": { "weight": 1 } }, { "key": "18785", "source": "1552", "target": "1156", "attributes": { "weight": 2 } }, { "key": "18822", "source": "1552", "target": "372", "attributes": { "weight": 1 } }, { "key": "18827", "source": "1552", "target": "1315", "attributes": { "weight": 2 } }, { "key": "18798", "source": "1552", "target": "918", "attributes": { "weight": 2 } }, { "key": "18817", "source": "1552", "target": "1289", "attributes": { "weight": 2 } }, { "key": "18807", "source": "1552", "target": "1262", "attributes": { "weight": 1 } }, { "key": "18838", "source": "1552", "target": "1343", "attributes": { "weight": 2 } }, { "key": "18811", "source": "1552", "target": "1268", "attributes": { "weight": 2 } }, { "key": "36648", "source": "1552", "target": "2193", "attributes": { "weight": 1 } }, { "key": "18791", "source": "1552", "target": "1180", "attributes": { "weight": 2 } }, { "key": "18805", "source": "1552", "target": "921", "attributes": { "weight": 2 } }, { "key": "29537", "source": "1552", "target": "1415", "attributes": { "weight": 1 } }, { "key": "16000", "source": "1552", "target": "925", "attributes": { "weight": 4 } }, { "key": "18795", "source": "1552", "target": "387", "attributes": { "weight": 1 } }, { "key": "37162", "source": "1552", "target": "416", "attributes": { "weight": 1 } }, { "key": "36651", "source": "1552", "target": "1308", "attributes": { "weight": 1 } }, { "key": "18796", "source": "1552", "target": "1199", "attributes": { "weight": 2 } }, { "key": "18837", "source": "1552", "target": "1342", "attributes": { "weight": 2 } }, { "key": "18804", "source": "1552", "target": "338", "attributes": { "weight": 2 } }, { "key": "37159", "source": "1552", "target": "1163", "attributes": { "weight": 1 } }, { "key": "18813", "source": "1552", "target": "1284", "attributes": { "weight": 2 } }, { "key": "18803", "source": "1552", "target": "337", "attributes": { "weight": 2 } }, { "key": "18256", "source": "1552", "target": "2205", "attributes": { "weight": 1 } }, { "key": "18800", "source": "1552", "target": "1232", "attributes": { "weight": 2 } }, { "key": "36649", "source": "1552", "target": "199", "attributes": { "weight": 1 } }, { "key": "18255", "source": "1552", "target": "2200", "attributes": { "weight": 1 } }, { "key": "18801", "source": "1552", "target": "1234", "attributes": { "weight": 2 } }, { "key": "18787", "source": "1552", "target": "1165", "attributes": { "weight": 2 } }, { "key": "18825", "source": "1552", "target": "1309", "attributes": { "weight": 2 } }, { "key": "18792", "source": "1552", "target": "1182", "attributes": { "weight": 2 } }, { "key": "18819", "source": "1552", "target": "1090", "attributes": { "weight": 2 } }, { "key": "37161", "source": "1552", "target": "1272", "attributes": { "weight": 1 } }, { "key": "18809", "source": "1552", "target": "208", "attributes": { "weight": 2 } }, { "key": "18831", "source": "1552", "target": "1323", "attributes": { "weight": 2 } }, { "key": "18797", "source": "1552", "target": "1047", "attributes": { "weight": 2 } }, { "key": "18815", "source": "1552", "target": "1287", "attributes": { "weight": 2 } }, { "key": "18802", "source": "1552", "target": "1241", "attributes": { "weight": 2 } }, { "key": "18788", "source": "1552", "target": "938", "attributes": { "weight": 2 } }, { "key": "18783", "source": "1552", "target": "933", "attributes": { "weight": 2 } }, { "key": "18816", "source": "1552", "target": "1288", "attributes": { "weight": 2 } }, { "key": "18830", "source": "1552", "target": "1322", "attributes": { "weight": 2 } }, { "key": "18823", "source": "1552", "target": "1301", "attributes": { "weight": 2 } }, { "key": "36650", "source": "1552", "target": "205", "attributes": { "weight": 1 } }, { "key": "18790", "source": "1552", "target": "1174", "attributes": { "weight": 2 } }, { "key": "29247", "source": "1552", "target": "2839", "attributes": { "weight": 1 } }, { "key": "18828", "source": "1552", "target": "405", "attributes": { "weight": 2 } }, { "key": "18793", "source": "1552", "target": "779", "attributes": { "weight": 2 } }, { "key": "18833", "source": "1552", "target": "1329", "attributes": { "weight": 2 } }, { "key": "27742", "source": "1553", "target": "305", "attributes": { "weight": 1 } }, { "key": "9510", "source": "1553", "target": "644", "attributes": { "weight": 2 } }, { "key": "23260", "source": "1553", "target": "1772", "attributes": { "weight": 1 } }, { "key": "27736", "source": "1553", "target": "636", "attributes": { "weight": 1 } }, { "key": "9512", "source": "1553", "target": "419", "attributes": { "weight": 2 } }, { "key": "26063", "source": "1553", "target": "163", "attributes": { "weight": 2 } }, { "key": "27743", "source": "1553", "target": "2711", "attributes": { "weight": 1 } }, { "key": "31482", "source": "1553", "target": "1125", "attributes": { "weight": 1 } }, { "key": "8917", "source": "1553", "target": "1562", "attributes": { "weight": 4 } }, { "key": "17498", "source": "1553", "target": "358", "attributes": { "weight": 2 } }, { "key": "9511", "source": "1553", "target": "645", "attributes": { "weight": 2 } }, { "key": "12007", "source": "1553", "target": "638", "attributes": { "weight": 3 } }, { "key": "27738", "source": "1553", "target": "168", "attributes": { "weight": 1 } }, { "key": "27464", "source": "1553", "target": "1567", "attributes": { "weight": 2 } }, { "key": "8916", "source": "1553", "target": "442", "attributes": { "weight": 2 } }, { "key": "15339", "source": "1553", "target": "454", "attributes": { "weight": 1 } }, { "key": "27740", "source": "1553", "target": "304", "attributes": { "weight": 1 } }, { "key": "35003", "source": "1553", "target": "352", "attributes": { "weight": 1 } }, { "key": "12008", "source": "1553", "target": "135", "attributes": { "weight": 2 } }, { "key": "24352", "source": "1553", "target": "452", "attributes": { "weight": 1 } }, { "key": "27629", "source": "1553", "target": "171", "attributes": { "weight": 2 } }, { "key": "27741", "source": "1553", "target": "173", "attributes": { "weight": 1 } }, { "key": "27737", "source": "1553", "target": "1809", "attributes": { "weight": 1 } }, { "key": "27739", "source": "1553", "target": "468", "attributes": { "weight": 1 } }, { "key": "8918", "source": "1553", "target": "1570", "attributes": { "weight": 3 } }, { "key": "28074", "source": "1554", "target": "316", "attributes": { "weight": 1 } }, { "key": "14748", "source": "1554", "target": "304", "attributes": { "weight": 1 } }, { "key": "8940", "source": "1554", "target": "307", "attributes": { "weight": 2 } }, { "key": "14747", "source": "1554", "target": "261", "attributes": { "weight": 1 } }, { "key": "32580", "source": "1555", "target": "791", "attributes": { "weight": 1 } }, { "key": "17956", "source": "1555", "target": "41", "attributes": { "weight": 1 } }, { "key": "8957", "source": "1555", "target": "442", "attributes": { "weight": 1 } }, { "key": "17954", "source": "1555", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17955", "source": "1555", "target": "133", "attributes": { "weight": 1 } }, { "key": "31115", "source": "1555", "target": "2696", "attributes": { "weight": 1 } }, { "key": "30134", "source": "1555", "target": "1557", "attributes": { "weight": 1 } }, { "key": "30133", "source": "1555", "target": "2952", "attributes": { "weight": 1 } }, { "key": "17953", "source": "1555", "target": "1516", "attributes": { "weight": 1 } }, { "key": "24172", "source": "1556", "target": "54", "attributes": { "weight": 1 } }, { "key": "16426", "source": "1556", "target": "39", "attributes": { "weight": 3 } }, { "key": "33068", "source": "1556", "target": "493", "attributes": { "weight": 1 } }, { "key": "26187", "source": "1556", "target": "36", "attributes": { "weight": 1 } }, { "key": "26189", "source": "1556", "target": "2631", "attributes": { "weight": 1 } }, { "key": "26188", "source": "1556", "target": "2630", "attributes": { "weight": 1 } }, { "key": "8959", "source": "1556", "target": "442", "attributes": { "weight": 1 } }, { "key": "8960", "source": "1556", "target": "132", "attributes": { "weight": 1 } }, { "key": "10523", "source": "1556", "target": "225", "attributes": { "weight": 2 } }, { "key": "10524", "source": "1557", "target": "225", "attributes": { "weight": 1 } }, { "key": "30136", "source": "1557", "target": "2950", "attributes": { "weight": 1 } }, { "key": "26090", "source": "1557", "target": "163", "attributes": { "weight": 1 } }, { "key": "8963", "source": "1557", "target": "442", "attributes": { "weight": 2 } }, { "key": "17962", "source": "1557", "target": "1544", "attributes": { "weight": 1 } }, { "key": "26719", "source": "1557", "target": "223", "attributes": { "weight": 4 } }, { "key": "10525", "source": "1557", "target": "133", "attributes": { "weight": 7 } }, { "key": "9014", "source": "1558", "target": "1516", "attributes": { "weight": 4 } }, { "key": "26732", "source": "1558", "target": "136", "attributes": { "weight": 4 } }, { "key": "17966", "source": "1559", "target": "1380", "attributes": { "weight": 1 } }, { "key": "10546", "source": "1559", "target": "1524", "attributes": { "weight": 4 } }, { "key": "17967", "source": "1559", "target": "1544", "attributes": { "weight": 3 } }, { "key": "17084", "source": "1559", "target": "2097", "attributes": { "weight": 1 } }, { "key": "10547", "source": "1559", "target": "225", "attributes": { "weight": 1 } }, { "key": "26193", "source": "1559", "target": "38", "attributes": { "weight": 4 } }, { "key": "9020", "source": "1559", "target": "442", "attributes": { "weight": 2 } }, { "key": "30107", "source": "1559", "target": "133", "attributes": { "weight": 1 } }, { "key": "31058", "source": "1559", "target": "638", "attributes": { "weight": 1 } }, { "key": "9037", "source": "1560", "target": "442", "attributes": { "weight": 1 } }, { "key": "10562", "source": "1560", "target": "225", "attributes": { "weight": 1 } }, { "key": "20879", "source": "1560", "target": "1087", "attributes": { "weight": 1 } }, { "key": "20875", "source": "1560", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20876", "source": "1560", "target": "2245", "attributes": { "weight": 1 } }, { "key": "10563", "source": "1560", "target": "1125", "attributes": { "weight": 3 } }, { "key": "20877", "source": "1560", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20878", "source": "1560", "target": "471", "attributes": { "weight": 1 } }, { "key": "20880", "source": "1560", "target": "489", "attributes": { "weight": 1 } }, { "key": "34697", "source": "1561", "target": "93", "attributes": { "weight": 1 } }, { "key": "13969", "source": "1561", "target": "180", "attributes": { "weight": 2 } }, { "key": "34696", "source": "1561", "target": "700", "attributes": { "weight": 1 } }, { "key": "9047", "source": "1561", "target": "580", "attributes": { "weight": 3 } }, { "key": "34698", "source": "1561", "target": "3164", "attributes": { "weight": 1 } }, { "key": "25761", "source": "1561", "target": "278", "attributes": { "weight": 2 } }, { "key": "35197", "source": "1562", "target": "2693", "attributes": { "weight": 1 } }, { "key": "35195", "source": "1562", "target": "661", "attributes": { "weight": 1 } }, { "key": "31137", "source": "1562", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9051", "source": "1562", "target": "1553", "attributes": { "weight": 4 } }, { "key": "35192", "source": "1562", "target": "1530", "attributes": { "weight": 1 } }, { "key": "27468", "source": "1562", "target": "2690", "attributes": { "weight": 1 } }, { "key": "27467", "source": "1562", "target": "2685", "attributes": { "weight": 1 } }, { "key": "35193", "source": "1562", "target": "1538", "attributes": { "weight": 1 } }, { "key": "9052", "source": "1562", "target": "1125", "attributes": { "weight": 3 } }, { "key": "35196", "source": "1562", "target": "2689", "attributes": { "weight": 1 } }, { "key": "35191", "source": "1562", "target": "442", "attributes": { "weight": 1 } }, { "key": "27469", "source": "1562", "target": "1567", "attributes": { "weight": 2 } }, { "key": "35194", "source": "1562", "target": "638", "attributes": { "weight": 1 } }, { "key": "22095", "source": "1563", "target": "337", "attributes": { "weight": 1 } }, { "key": "34719", "source": "1563", "target": "123", "attributes": { "weight": 1 } }, { "key": "22098", "source": "1563", "target": "2212", "attributes": { "weight": 1 } }, { "key": "16255", "source": "1563", "target": "925", "attributes": { "weight": 1 } }, { "key": "22097", "source": "1563", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22094", "source": "1563", "target": "2293", "attributes": { "weight": 1 } }, { "key": "9056", "source": "1563", "target": "195", "attributes": { "weight": 3 } }, { "key": "16254", "source": "1563", "target": "913", "attributes": { "weight": 1 } }, { "key": "22096", "source": "1563", "target": "2300", "attributes": { "weight": 1 } }, { "key": "22880", "source": "1564", "target": "2394", "attributes": { "weight": 1 } }, { "key": "12305", "source": "1564", "target": "429", "attributes": { "weight": 1 } }, { "key": "12306", "source": "1564", "target": "1354", "attributes": { "weight": 1 } }, { "key": "9081", "source": "1564", "target": "1533", "attributes": { "weight": 2 } }, { "key": "9080", "source": "1564", "target": "1109", "attributes": { "weight": 2 } }, { "key": "9085", "source": "1564", "target": "1088", "attributes": { "weight": 2 } }, { "key": "9087", "source": "1564", "target": "1130", "attributes": { "weight": 2 } }, { "key": "12311", "source": "1564", "target": "451", "attributes": { "weight": 1 } }, { "key": "12307", "source": "1564", "target": "220", "attributes": { "weight": 1 } }, { "key": "9086", "source": "1564", "target": "1125", "attributes": { "weight": 2 } }, { "key": "12312", "source": "1564", "target": "1359", "attributes": { "weight": 2 } }, { "key": "9082", "source": "1564", "target": "1546", "attributes": { "weight": 2 } }, { "key": "12308", "source": "1564", "target": "1161", "attributes": { "weight": 1 } }, { "key": "12317", "source": "1564", "target": "231", "attributes": { "weight": 1 } }, { "key": "12313", "source": "1564", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12309", "source": "1564", "target": "449", "attributes": { "weight": 1 } }, { "key": "9084", "source": "1564", "target": "474", "attributes": { "weight": 2 } }, { "key": "32146", "source": "1564", "target": "1247", "attributes": { "weight": 1 } }, { "key": "12316", "source": "1564", "target": "1282", "attributes": { "weight": 1 } }, { "key": "12310", "source": "1564", "target": "450", "attributes": { "weight": 1 } }, { "key": "12314", "source": "1564", "target": "1362", "attributes": { "weight": 2 } }, { "key": "12315", "source": "1564", "target": "472", "attributes": { "weight": 1 } }, { "key": "9083", "source": "1564", "target": "1122", "attributes": { "weight": 2 } }, { "key": "26753", "source": "1565", "target": "1516", "attributes": { "weight": 1 } }, { "key": "9089", "source": "1565", "target": "133", "attributes": { "weight": 5 } }, { "key": "10566", "source": "1565", "target": "225", "attributes": { "weight": 1 } }, { "key": "10567", "source": "1565", "target": "1544", "attributes": { "weight": 2 } }, { "key": "24230", "source": "1565", "target": "471", "attributes": { "weight": 1 } }, { "key": "12873", "source": "1565", "target": "1893", "attributes": { "weight": 1 } }, { "key": "12874", "source": "1565", "target": "38", "attributes": { "weight": 1 } }, { "key": "17976", "source": "1565", "target": "1380", "attributes": { "weight": 2 } }, { "key": "9103", "source": "1566", "target": "1125", "attributes": { "weight": 1 } }, { "key": "21224", "source": "1566", "target": "489", "attributes": { "weight": 1 } }, { "key": "23697", "source": "1566", "target": "1312", "attributes": { "weight": 1 } }, { "key": "31489", "source": "1567", "target": "1125", "attributes": { "weight": 2 } }, { "key": "27486", "source": "1567", "target": "164", "attributes": { "weight": 2 } }, { "key": "27489", "source": "1567", "target": "2686", "attributes": { "weight": 1 } }, { "key": "27502", "source": "1567", "target": "2694", "attributes": { "weight": 1 } }, { "key": "27494", "source": "1567", "target": "1087", "attributes": { "weight": 1 } }, { "key": "27495", "source": "1567", "target": "1553", "attributes": { "weight": 2 } }, { "key": "27488", "source": "1567", "target": "1530", "attributes": { "weight": 1 } }, { "key": "27491", "source": "1567", "target": "638", "attributes": { "weight": 2 } }, { "key": "27501", "source": "1567", "target": "2693", "attributes": { "weight": 1 } }, { "key": "27498", "source": "1567", "target": "2690", "attributes": { "weight": 1 } }, { "key": "26095", "source": "1567", "target": "163", "attributes": { "weight": 1 } }, { "key": "27496", "source": "1567", "target": "2689", "attributes": { "weight": 1 } }, { "key": "27493", "source": "1567", "target": "2688", "attributes": { "weight": 1 } }, { "key": "27487", "source": "1567", "target": "2685", "attributes": { "weight": 1 } }, { "key": "27492", "source": "1567", "target": "2687", "attributes": { "weight": 1 } }, { "key": "27497", "source": "1567", "target": "1562", "attributes": { "weight": 2 } }, { "key": "27499", "source": "1567", "target": "2691", "attributes": { "weight": 1 } }, { "key": "27485", "source": "1567", "target": "2684", "attributes": { "weight": 1 } }, { "key": "9118", "source": "1567", "target": "442", "attributes": { "weight": 2 } }, { "key": "27500", "source": "1567", "target": "2692", "attributes": { "weight": 1 } }, { "key": "27490", "source": "1567", "target": "1538", "attributes": { "weight": 1 } }, { "key": "10941", "source": "1568", "target": "471", "attributes": { "weight": 4 } }, { "key": "9133", "source": "1568", "target": "442", "attributes": { "weight": 3 } }, { "key": "24265", "source": "1568", "target": "56", "attributes": { "weight": 1 } }, { "key": "24263", "source": "1568", "target": "130", "attributes": { "weight": 2 } }, { "key": "24264", "source": "1568", "target": "437", "attributes": { "weight": 1 } }, { "key": "9136", "source": "1569", "target": "195", "attributes": { "weight": 3 } }, { "key": "9146", "source": "1570", "target": "1553", "attributes": { "weight": 3 } }, { "key": "9149", "source": "1571", "target": "791", "attributes": { "weight": 1 } }, { "key": "9148", "source": "1571", "target": "442", "attributes": { "weight": 1 } }, { "key": "9153", "source": "1571", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9147", "source": "1571", "target": "430", "attributes": { "weight": 1 } }, { "key": "9151", "source": "1571", "target": "1087", "attributes": { "weight": 2 } }, { "key": "9152", "source": "1571", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9150", "source": "1571", "target": "228", "attributes": { "weight": 1 } }, { "key": "9217", "source": "1572", "target": "1579", "attributes": { "weight": 1 } }, { "key": "9219", "source": "1572", "target": "1591", "attributes": { "weight": 1 } }, { "key": "9220", "source": "1572", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9215", "source": "1572", "target": "430", "attributes": { "weight": 1 } }, { "key": "9218", "source": "1572", "target": "1588", "attributes": { "weight": 1 } }, { "key": "9216", "source": "1572", "target": "1575", "attributes": { "weight": 1 } }, { "key": "9226", "source": "1573", "target": "1087", "attributes": { "weight": 2 } }, { "key": "9225", "source": "1573", "target": "228", "attributes": { "weight": 1 } }, { "key": "9224", "source": "1573", "target": "430", "attributes": { "weight": 1 } }, { "key": "9227", "source": "1573", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9229", "source": "1574", "target": "430", "attributes": { "weight": 1 } }, { "key": "9230", "source": "1574", "target": "228", "attributes": { "weight": 1 } }, { "key": "9232", "source": "1574", "target": "1125", "attributes": { "weight": 1 } }, { "key": "9231", "source": "1574", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9233", "source": "1575", "target": "1572", "attributes": { "weight": 1 } }, { "key": "9238", "source": "1576", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9237", "source": "1576", "target": "228", "attributes": { "weight": 1 } }, { "key": "9236", "source": "1576", "target": "430", "attributes": { "weight": 1 } }, { "key": "9240", "source": "1577", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9244", "source": "1578", "target": "1087", "attributes": { "weight": 1 } }, { "key": "9251", "source": "1579", "target": "1585", "attributes": { "weight": 1 } }, { "key": "9247", "source": "1579", "target": "430", "attributes": { "weight": 1 } }, { "key": "9250", "source": "1579", "target": "1584", "attributes": { "weight": 1 } }, { "key": "9258", "source": "1579", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9253", "source": "1579", "target": "228", "attributes": { "weight": 2 } }, { "key": "9248", "source": "1579", "target": "1572", "attributes": { "weight": 1 } }, { "key": "9252", "source": "1579", "target": "791", "attributes": { "weight": 1 } }, { "key": "9255", "source": "1579", "target": "1087", "attributes": { "weight": 2 } }, { "key": "9256", "source": "1579", "target": "474", "attributes": { "weight": 1 } }, { "key": "9257", "source": "1579", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9249", "source": "1579", "target": "442", "attributes": { "weight": 1 } }, { "key": "9260", "source": "1580", "target": "1598", "attributes": { "weight": 1 } }, { "key": "9259", "source": "1580", "target": "1591", "attributes": { "weight": 1 } }, { "key": "9263", "source": "1581", "target": "430", "attributes": { "weight": 1 } }, { "key": "9264", "source": "1582", "target": "1591", "attributes": { "weight": 1 } }, { "key": "9265", "source": "1582", "target": "1598", "attributes": { "weight": 1 } }, { "key": "9266", "source": "1583", "target": "430", "attributes": { "weight": 1 } }, { "key": "9273", "source": "1584", "target": "1598", "attributes": { "weight": 1 } }, { "key": "9271", "source": "1584", "target": "1579", "attributes": { "weight": 1 } }, { "key": "9272", "source": "1584", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9270", "source": "1584", "target": "430", "attributes": { "weight": 1 } }, { "key": "9278", "source": "1585", "target": "1587", "attributes": { "weight": 1 } }, { "key": "37367", "source": "1585", "target": "135", "attributes": { "weight": 1 } }, { "key": "9279", "source": "1585", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9276", "source": "1585", "target": "1579", "attributes": { "weight": 1 } }, { "key": "9277", "source": "1585", "target": "1586", "attributes": { "weight": 1 } }, { "key": "9275", "source": "1585", "target": "430", "attributes": { "weight": 1 } }, { "key": "9280", "source": "1586", "target": "430", "attributes": { "weight": 1 } }, { "key": "9281", "source": "1586", "target": "1585", "attributes": { "weight": 1 } }, { "key": "9283", "source": "1587", "target": "1591", "attributes": { "weight": 1 } }, { "key": "9282", "source": "1587", "target": "1585", "attributes": { "weight": 1 } }, { "key": "9285", "source": "1588", "target": "1598", "attributes": { "weight": 1 } }, { "key": "9284", "source": "1588", "target": "430", "attributes": { "weight": 1 } }, { "key": "9314", "source": "1589", "target": "1596", "attributes": { "weight": 1 } }, { "key": "9313", "source": "1589", "target": "430", "attributes": { "weight": 1 } }, { "key": "9316", "source": "1590", "target": "430", "attributes": { "weight": 1 } }, { "key": "9324", "source": "1591", "target": "1592", "attributes": { "weight": 1 } }, { "key": "9323", "source": "1591", "target": "1587", "attributes": { "weight": 1 } }, { "key": "9321", "source": "1591", "target": "1572", "attributes": { "weight": 1 } }, { "key": "9320", "source": "1591", "target": "430", "attributes": { "weight": 1 } }, { "key": "9322", "source": "1591", "target": "1582", "attributes": { "weight": 1 } }, { "key": "11241", "source": "1592", "target": "452", "attributes": { "weight": 1 } }, { "key": "9337", "source": "1592", "target": "1121", "attributes": { "weight": 2 } }, { "key": "9334", "source": "1592", "target": "1584", "attributes": { "weight": 1 } }, { "key": "9330", "source": "1592", "target": "1577", "attributes": { "weight": 1 } }, { "key": "9333", "source": "1592", "target": "1579", "attributes": { "weight": 1 } }, { "key": "33069", "source": "1592", "target": "493", "attributes": { "weight": 1 } }, { "key": "9329", "source": "1592", "target": "130", "attributes": { "weight": 3 } }, { "key": "9327", "source": "1592", "target": "430", "attributes": { "weight": 1 } }, { "key": "9340", "source": "1592", "target": "1591", "attributes": { "weight": 1 } }, { "key": "9325", "source": "1592", "target": "1571", "attributes": { "weight": 1 } }, { "key": "24180", "source": "1592", "target": "471", "attributes": { "weight": 1 } }, { "key": "9328", "source": "1592", "target": "1572", "attributes": { "weight": 1 } }, { "key": "9332", "source": "1592", "target": "225", "attributes": { "weight": 1 } }, { "key": "9339", "source": "1592", "target": "1087", "attributes": { "weight": 2 } }, { "key": "9335", "source": "1592", "target": "1585", "attributes": { "weight": 1 } }, { "key": "9338", "source": "1592", "target": "228", "attributes": { "weight": 2 } }, { "key": "9326", "source": "1592", "target": "1354", "attributes": { "weight": 3 } }, { "key": "9336", "source": "1592", "target": "791", "attributes": { "weight": 2 } }, { "key": "31981", "source": "1592", "target": "2115", "attributes": { "weight": 1 } }, { "key": "9331", "source": "1592", "target": "442", "attributes": { "weight": 2 } }, { "key": "9342", "source": "1592", "target": "233", "attributes": { "weight": 2 } }, { "key": "9341", "source": "1592", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9355", "source": "1593", "target": "430", "attributes": { "weight": 1 } }, { "key": "9356", "source": "1593", "target": "228", "attributes": { "weight": 2 } }, { "key": "9357", "source": "1593", "target": "1087", "attributes": { "weight": 2 } }, { "key": "9358", "source": "1593", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9360", "source": "1594", "target": "430", "attributes": { "weight": 1 } }, { "key": "9361", "source": "1595", "target": "430", "attributes": { "weight": 1 } }, { "key": "9362", "source": "1596", "target": "430", "attributes": { "weight": 1 } }, { "key": "9365", "source": "1597", "target": "228", "attributes": { "weight": 1 } }, { "key": "9364", "source": "1597", "target": "430", "attributes": { "weight": 1 } }, { "key": "9367", "source": "1597", "target": "1125", "attributes": { "weight": 2 } }, { "key": "9366", "source": "1597", "target": "1087", "attributes": { "weight": 2 } }, { "key": "9370", "source": "1598", "target": "430", "attributes": { "weight": 1 } }, { "key": "9371", "source": "1598", "target": "1582", "attributes": { "weight": 1 } }, { "key": "9373", "source": "1598", "target": "1588", "attributes": { "weight": 1 } }, { "key": "9372", "source": "1598", "target": "1584", "attributes": { "weight": 1 } }, { "key": "9380", "source": "1599", "target": "1604", "attributes": { "weight": 1 } }, { "key": "9379", "source": "1599", "target": "645", "attributes": { "weight": 1 } }, { "key": "9381", "source": "1600", "target": "647", "attributes": { "weight": 1 } }, { "key": "9447", "source": "1601", "target": "419", "attributes": { "weight": 2 } }, { "key": "9450", "source": "1602", "target": "648", "attributes": { "weight": 1 } }, { "key": "9449", "source": "1602", "target": "354", "attributes": { "weight": 1 } }, { "key": "9462", "source": "1603", "target": "645", "attributes": { "weight": 1 } }, { "key": "9463", "source": "1604", "target": "668", "attributes": { "weight": 1 } }, { "key": "9477", "source": "1605", "target": "645", "attributes": { "weight": 1 } }, { "key": "9478", "source": "1605", "target": "419", "attributes": { "weight": 1 } }, { "key": "9489", "source": "1606", "target": "645", "attributes": { "weight": 1 } }, { "key": "9490", "source": "1607", "target": "419", "attributes": { "weight": 2 } }, { "key": "31165", "source": "1607", "target": "645", "attributes": { "weight": 1 } }, { "key": "9492", "source": "1608", "target": "419", "attributes": { "weight": 1 } }, { "key": "9495", "source": "1609", "target": "419", "attributes": { "weight": 1 } }, { "key": "9499", "source": "1610", "target": "419", "attributes": { "weight": 1 } }, { "key": "36978", "source": "1611", "target": "362", "attributes": { "weight": 1 } }, { "key": "31666", "source": "1611", "target": "595", "attributes": { "weight": 1 } }, { "key": "31468", "source": "1611", "target": "178", "attributes": { "weight": 2 } }, { "key": "30028", "source": "1611", "target": "2914", "attributes": { "weight": 1 } }, { "key": "23452", "source": "1611", "target": "304", "attributes": { "weight": 2 } }, { "key": "14268", "source": "1611", "target": "168", "attributes": { "weight": 2 } }, { "key": "31169", "source": "1611", "target": "647", "attributes": { "weight": 1 } }, { "key": "30030", "source": "1611", "target": "2917", "attributes": { "weight": 1 } }, { "key": "30029", "source": "1611", "target": "2915", "attributes": { "weight": 1 } }, { "key": "9509", "source": "1611", "target": "667", "attributes": { "weight": 2 } }, { "key": "24351", "source": "1611", "target": "473", "attributes": { "weight": 1 } }, { "key": "30032", "source": "1611", "target": "661", "attributes": { "weight": 1 } }, { "key": "21591", "source": "1611", "target": "89", "attributes": { "weight": 1 } }, { "key": "12005", "source": "1611", "target": "1042", "attributes": { "weight": 10 } }, { "key": "11206", "source": "1611", "target": "1036", "attributes": { "weight": 2 } }, { "key": "15338", "source": "1611", "target": "454", "attributes": { "weight": 1 } }, { "key": "30026", "source": "1611", "target": "2912", "attributes": { "weight": 1 } }, { "key": "17497", "source": "1611", "target": "358", "attributes": { "weight": 1 } }, { "key": "29573", "source": "1611", "target": "164", "attributes": { "weight": 1 } }, { "key": "30469", "source": "1611", "target": "1046", "attributes": { "weight": 1 } }, { "key": "18074", "source": "1611", "target": "2181", "attributes": { "weight": 2 } }, { "key": "30031", "source": "1611", "target": "2918", "attributes": { "weight": 1 } }, { "key": "35002", "source": "1611", "target": "352", "attributes": { "weight": 1 } }, { "key": "12006", "source": "1611", "target": "135", "attributes": { "weight": 1 } }, { "key": "14737", "source": "1611", "target": "259", "attributes": { "weight": 1 } }, { "key": "32566", "source": "1611", "target": "791", "attributes": { "weight": 1 } }, { "key": "27628", "source": "1611", "target": "171", "attributes": { "weight": 1 } }, { "key": "27199", "source": "1611", "target": "305", "attributes": { "weight": 1 } }, { "key": "9530", "source": "1612", "target": "354", "attributes": { "weight": 1 } }, { "key": "31172", "source": "1613", "target": "645", "attributes": { "weight": 1 } }, { "key": "9533", "source": "1613", "target": "419", "attributes": { "weight": 2 } }, { "key": "9536", "source": "1614", "target": "651", "attributes": { "weight": 2 } }, { "key": "31176", "source": "1615", "target": "644", "attributes": { "weight": 1 } }, { "key": "9540", "source": "1615", "target": "651", "attributes": { "weight": 2 } }, { "key": "21465", "source": "1616", "target": "2285", "attributes": { "weight": 3 } }, { "key": "9548", "source": "1616", "target": "171", "attributes": { "weight": 2 } }, { "key": "22385", "source": "1617", "target": "1637", "attributes": { "weight": 3 } }, { "key": "25241", "source": "1617", "target": "2316", "attributes": { "weight": 1 } }, { "key": "22384", "source": "1617", "target": "178", "attributes": { "weight": 5 } }, { "key": "25244", "source": "1617", "target": "1631", "attributes": { "weight": 2 } }, { "key": "25242", "source": "1617", "target": "2281", "attributes": { "weight": 1 } }, { "key": "9549", "source": "1617", "target": "171", "attributes": { "weight": 3 } }, { "key": "22383", "source": "1617", "target": "572", "attributes": { "weight": 4 } }, { "key": "30547", "source": "1617", "target": "1623", "attributes": { "weight": 1 } }, { "key": "25243", "source": "1617", "target": "1624", "attributes": { "weight": 1 } }, { "key": "22394", "source": "1618", "target": "2317", "attributes": { "weight": 3 } }, { "key": "25249", "source": "1618", "target": "1636", "attributes": { "weight": 1 } }, { "key": "22396", "source": "1618", "target": "1624", "attributes": { "weight": 4 } }, { "key": "22398", "source": "1618", "target": "178", "attributes": { "weight": 3 } }, { "key": "22397", "source": "1618", "target": "2328", "attributes": { "weight": 2 } }, { "key": "9565", "source": "1618", "target": "171", "attributes": { "weight": 1 } }, { "key": "30288", "source": "1618", "target": "572", "attributes": { "weight": 1 } }, { "key": "22400", "source": "1618", "target": "2342", "attributes": { "weight": 3 } }, { "key": "25248", "source": "1618", "target": "2334", "attributes": { "weight": 2 } }, { "key": "22401", "source": "1618", "target": "1640", "attributes": { "weight": 4 } }, { "key": "25246", "source": "1618", "target": "2316", "attributes": { "weight": 2 } }, { "key": "22395", "source": "1618", "target": "567", "attributes": { "weight": 5 } }, { "key": "22399", "source": "1618", "target": "1637", "attributes": { "weight": 4 } }, { "key": "25247", "source": "1618", "target": "2281", "attributes": { "weight": 1 } }, { "key": "21467", "source": "1619", "target": "172", "attributes": { "weight": 2 } }, { "key": "9566", "source": "1619", "target": "171", "attributes": { "weight": 1 } }, { "key": "22404", "source": "1619", "target": "567", "attributes": { "weight": 2 } }, { "key": "27585", "source": "1620", "target": "564", "attributes": { "weight": 1 } }, { "key": "9568", "source": "1620", "target": "171", "attributes": { "weight": 2 } }, { "key": "27586", "source": "1620", "target": "1629", "attributes": { "weight": 1 } }, { "key": "9567", "source": "1620", "target": "1626", "attributes": { "weight": 2 } }, { "key": "27587", "source": "1620", "target": "1633", "attributes": { "weight": 1 } }, { "key": "18375", "source": "1621", "target": "172", "attributes": { "weight": 1 } }, { "key": "15169", "source": "1621", "target": "2010", "attributes": { "weight": 2 } }, { "key": "30553", "source": "1621", "target": "567", "attributes": { "weight": 1 } }, { "key": "18379", "source": "1621", "target": "178", "attributes": { "weight": 1 } }, { "key": "15168", "source": "1621", "target": "2009", "attributes": { "weight": 1 } }, { "key": "18368", "source": "1621", "target": "2209", "attributes": { "weight": 1 } }, { "key": "18366", "source": "1621", "target": "167", "attributes": { "weight": 1 } }, { "key": "18373", "source": "1621", "target": "2210", "attributes": { "weight": 1 } }, { "key": "15176", "source": "1621", "target": "2016", "attributes": { "weight": 2 } }, { "key": "15158", "source": "1621", "target": "2003", "attributes": { "weight": 1 } }, { "key": "18367", "source": "1621", "target": "168", "attributes": { "weight": 1 } }, { "key": "18365", "source": "1621", "target": "574", "attributes": { "weight": 1 } }, { "key": "17087", "source": "1621", "target": "263", "attributes": { "weight": 2 } }, { "key": "15178", "source": "1621", "target": "1641", "attributes": { "weight": 2 } }, { "key": "15171", "source": "1621", "target": "2012", "attributes": { "weight": 1 } }, { "key": "18364", "source": "1621", "target": "572", "attributes": { "weight": 1 } }, { "key": "18371", "source": "1621", "target": "687", "attributes": { "weight": 1 } }, { "key": "18363", "source": "1621", "target": "262", "attributes": { "weight": 1 } }, { "key": "15160", "source": "1621", "target": "2005", "attributes": { "weight": 1 } }, { "key": "15175", "source": "1621", "target": "2015", "attributes": { "weight": 2 } }, { "key": "18380", "source": "1621", "target": "312", "attributes": { "weight": 1 } }, { "key": "18378", "source": "1621", "target": "177", "attributes": { "weight": 1 } }, { "key": "15163", "source": "1621", "target": "169", "attributes": { "weight": 4 } }, { "key": "15173", "source": "1621", "target": "2013", "attributes": { "weight": 1 } }, { "key": "30554", "source": "1621", "target": "1637", "attributes": { "weight": 1 } }, { "key": "18377", "source": "1621", "target": "175", "attributes": { "weight": 1 } }, { "key": "18381", "source": "1621", "target": "322", "attributes": { "weight": 1 } }, { "key": "18382", "source": "1621", "target": "326", "attributes": { "weight": 1 } }, { "key": "15165", "source": "1621", "target": "2006", "attributes": { "weight": 2 } }, { "key": "17088", "source": "1621", "target": "286", "attributes": { "weight": 1 } }, { "key": "15161", "source": "1621", "target": "830", "attributes": { "weight": 2 } }, { "key": "15177", "source": "1621", "target": "2017", "attributes": { "weight": 1 } }, { "key": "15174", "source": "1621", "target": "2014", "attributes": { "weight": 1 } }, { "key": "18362", "source": "1621", "target": "259", "attributes": { "weight": 2 } }, { "key": "15166", "source": "1621", "target": "2007", "attributes": { "weight": 1 } }, { "key": "18376", "source": "1621", "target": "174", "attributes": { "weight": 1 } }, { "key": "15179", "source": "1621", "target": "2018", "attributes": { "weight": 2 } }, { "key": "15162", "source": "1621", "target": "1622", "attributes": { "weight": 2 } }, { "key": "18372", "source": "1621", "target": "578", "attributes": { "weight": 1 } }, { "key": "18369", "source": "1621", "target": "287", "attributes": { "weight": 1 } }, { "key": "15170", "source": "1621", "target": "2011", "attributes": { "weight": 2 } }, { "key": "15159", "source": "1621", "target": "2004", "attributes": { "weight": 2 } }, { "key": "15167", "source": "1621", "target": "2008", "attributes": { "weight": 1 } }, { "key": "9576", "source": "1621", "target": "171", "attributes": { "weight": 3 } }, { "key": "15172", "source": "1621", "target": "176", "attributes": { "weight": 2 } }, { "key": "18370", "source": "1621", "target": "661", "attributes": { "weight": 1 } }, { "key": "15164", "source": "1621", "target": "1542", "attributes": { "weight": 2 } }, { "key": "18374", "source": "1621", "target": "299", "attributes": { "weight": 1 } }, { "key": "32269", "source": "1622", "target": "164", "attributes": { "weight": 1 } }, { "key": "9579", "source": "1622", "target": "171", "attributes": { "weight": 1 } }, { "key": "18385", "source": "1622", "target": "830", "attributes": { "weight": 1 } }, { "key": "15180", "source": "1622", "target": "1621", "attributes": { "weight": 2 } }, { "key": "32941", "source": "1622", "target": "178", "attributes": { "weight": 1 } }, { "key": "9588", "source": "1623", "target": "1629", "attributes": { "weight": 1 } }, { "key": "9591", "source": "1623", "target": "1639", "attributes": { "weight": 1 } }, { "key": "9590", "source": "1623", "target": "1633", "attributes": { "weight": 1 } }, { "key": "30557", "source": "1623", "target": "1617", "attributes": { "weight": 1 } }, { "key": "21470", "source": "1623", "target": "2285", "attributes": { "weight": 3 } }, { "key": "9589", "source": "1623", "target": "172", "attributes": { "weight": 1 } }, { "key": "30290", "source": "1623", "target": "1637", "attributes": { "weight": 2 } }, { "key": "9587", "source": "1623", "target": "171", "attributes": { "weight": 2 } }, { "key": "9586", "source": "1623", "target": "1626", "attributes": { "weight": 1 } }, { "key": "9584", "source": "1623", "target": "564", "attributes": { "weight": 1 } }, { "key": "30558", "source": "1623", "target": "567", "attributes": { "weight": 1 } }, { "key": "9585", "source": "1623", "target": "1625", "attributes": { "weight": 3 } }, { "key": "30667", "source": "1624", "target": "1632", "attributes": { "weight": 1 } }, { "key": "25283", "source": "1624", "target": "1637", "attributes": { "weight": 2 } }, { "key": "22487", "source": "1624", "target": "1640", "attributes": { "weight": 2 } }, { "key": "25281", "source": "1624", "target": "1628", "attributes": { "weight": 1 } }, { "key": "22484", "source": "1624", "target": "567", "attributes": { "weight": 5 } }, { "key": "22483", "source": "1624", "target": "1618", "attributes": { "weight": 4 } }, { "key": "25282", "source": "1624", "target": "1631", "attributes": { "weight": 2 } }, { "key": "22485", "source": "1624", "target": "572", "attributes": { "weight": 3 } }, { "key": "25280", "source": "1624", "target": "2281", "attributes": { "weight": 1 } }, { "key": "25278", "source": "1624", "target": "2316", "attributes": { "weight": 1 } }, { "key": "22486", "source": "1624", "target": "178", "attributes": { "weight": 5 } }, { "key": "25279", "source": "1624", "target": "1617", "attributes": { "weight": 1 } }, { "key": "9592", "source": "1624", "target": "171", "attributes": { "weight": 1 } }, { "key": "9596", "source": "1625", "target": "171", "attributes": { "weight": 2 } }, { "key": "9595", "source": "1625", "target": "1626", "attributes": { "weight": 1 } }, { "key": "9594", "source": "1625", "target": "1623", "attributes": { "weight": 3 } }, { "key": "21472", "source": "1625", "target": "2285", "attributes": { "weight": 3 } }, { "key": "9593", "source": "1625", "target": "564", "attributes": { "weight": 1 } }, { "key": "9597", "source": "1625", "target": "178", "attributes": { "weight": 1 } }, { "key": "21471", "source": "1625", "target": "172", "attributes": { "weight": 3 } }, { "key": "9601", "source": "1626", "target": "1623", "attributes": { "weight": 1 } }, { "key": "9603", "source": "1626", "target": "171", "attributes": { "weight": 4 } }, { "key": "12378", "source": "1626", "target": "1844", "attributes": { "weight": 2 } }, { "key": "27596", "source": "1626", "target": "2335", "attributes": { "weight": 1 } }, { "key": "9599", "source": "1626", "target": "564", "attributes": { "weight": 2 } }, { "key": "9604", "source": "1626", "target": "1252", "attributes": { "weight": 1 } }, { "key": "27595", "source": "1626", "target": "2706", "attributes": { "weight": 1 } }, { "key": "9607", "source": "1626", "target": "1633", "attributes": { "weight": 2 } }, { "key": "9602", "source": "1626", "target": "1625", "attributes": { "weight": 1 } }, { "key": "9600", "source": "1626", "target": "1620", "attributes": { "weight": 2 } }, { "key": "9606", "source": "1626", "target": "172", "attributes": { "weight": 1 } }, { "key": "9605", "source": "1626", "target": "1629", "attributes": { "weight": 3 } }, { "key": "9608", "source": "1626", "target": "178", "attributes": { "weight": 4 } }, { "key": "9660", "source": "1627", "target": "171", "attributes": { "weight": 2 } }, { "key": "27615", "source": "1627", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27614", "source": "1627", "target": "564", "attributes": { "weight": 1 } }, { "key": "22501", "source": "1628", "target": "178", "attributes": { "weight": 3 } }, { "key": "22502", "source": "1628", "target": "1637", "attributes": { "weight": 3 } }, { "key": "25172", "source": "1628", "target": "173", "attributes": { "weight": 1 } }, { "key": "9664", "source": "1628", "target": "171", "attributes": { "weight": 1 } }, { "key": "22497", "source": "1628", "target": "2320", "attributes": { "weight": 1 } }, { "key": "25293", "source": "1628", "target": "1624", "attributes": { "weight": 1 } }, { "key": "22499", "source": "1628", "target": "572", "attributes": { "weight": 2 } }, { "key": "22503", "source": "1628", "target": "1640", "attributes": { "weight": 1 } }, { "key": "22500", "source": "1628", "target": "2326", "attributes": { "weight": 1 } }, { "key": "22498", "source": "1628", "target": "567", "attributes": { "weight": 2 } }, { "key": "9668", "source": "1629", "target": "1626", "attributes": { "weight": 3 } }, { "key": "9666", "source": "1629", "target": "564", "attributes": { "weight": 2 } }, { "key": "27641", "source": "1629", "target": "2704", "attributes": { "weight": 1 } }, { "key": "27642", "source": "1629", "target": "2705", "attributes": { "weight": 1 } }, { "key": "9667", "source": "1629", "target": "1623", "attributes": { "weight": 1 } }, { "key": "27646", "source": "1629", "target": "2708", "attributes": { "weight": 1 } }, { "key": "27637", "source": "1629", "target": "1620", "attributes": { "weight": 1 } }, { "key": "27643", "source": "1629", "target": "2706", "attributes": { "weight": 1 } }, { "key": "27638", "source": "1629", "target": "1627", "attributes": { "weight": 1 } }, { "key": "27636", "source": "1629", "target": "2697", "attributes": { "weight": 1 } }, { "key": "27647", "source": "1629", "target": "1633", "attributes": { "weight": 1 } }, { "key": "27640", "source": "1629", "target": "2703", "attributes": { "weight": 1 } }, { "key": "27645", "source": "1629", "target": "1844", "attributes": { "weight": 1 } }, { "key": "9672", "source": "1629", "target": "1638", "attributes": { "weight": 1 } }, { "key": "9670", "source": "1629", "target": "172", "attributes": { "weight": 1 } }, { "key": "27644", "source": "1629", "target": "2707", "attributes": { "weight": 1 } }, { "key": "9669", "source": "1629", "target": "171", "attributes": { "weight": 2 } }, { "key": "9671", "source": "1629", "target": "178", "attributes": { "weight": 1 } }, { "key": "37402", "source": "1629", "target": "93", "attributes": { "weight": 1 } }, { "key": "27639", "source": "1629", "target": "2702", "attributes": { "weight": 1 } }, { "key": "22517", "source": "1630", "target": "567", "attributes": { "weight": 4 } }, { "key": "9674", "source": "1630", "target": "171", "attributes": { "weight": 1 } }, { "key": "25313", "source": "1630", "target": "2281", "attributes": { "weight": 2 } }, { "key": "25317", "source": "1631", "target": "2281", "attributes": { "weight": 2 } }, { "key": "22522", "source": "1631", "target": "178", "attributes": { "weight": 3 } }, { "key": "21483", "source": "1631", "target": "2285", "attributes": { "weight": 2 } }, { "key": "9680", "source": "1631", "target": "171", "attributes": { "weight": 1 } }, { "key": "25316", "source": "1631", "target": "1617", "attributes": { "weight": 2 } }, { "key": "22521", "source": "1631", "target": "567", "attributes": { "weight": 6 } }, { "key": "25318", "source": "1631", "target": "1624", "attributes": { "weight": 2 } }, { "key": "25321", "source": "1632", "target": "2339", "attributes": { "weight": 1 } }, { "key": "30668", "source": "1632", "target": "1624", "attributes": { "weight": 1 } }, { "key": "22525", "source": "1632", "target": "572", "attributes": { "weight": 1 } }, { "key": "22526", "source": "1632", "target": "178", "attributes": { "weight": 3 } }, { "key": "9681", "source": "1632", "target": "171", "attributes": { "weight": 1 } }, { "key": "22524", "source": "1632", "target": "567", "attributes": { "weight": 4 } }, { "key": "25320", "source": "1632", "target": "2281", "attributes": { "weight": 2 } }, { "key": "31205", "source": "1632", "target": "2332", "attributes": { "weight": 1 } }, { "key": "27657", "source": "1633", "target": "564", "attributes": { "weight": 1 } }, { "key": "27658", "source": "1633", "target": "1620", "attributes": { "weight": 1 } }, { "key": "9686", "source": "1633", "target": "171", "attributes": { "weight": 3 } }, { "key": "27659", "source": "1633", "target": "1629", "attributes": { "weight": 1 } }, { "key": "9684", "source": "1633", "target": "1623", "attributes": { "weight": 1 } }, { "key": "9685", "source": "1633", "target": "1626", "attributes": { "weight": 2 } }, { "key": "27661", "source": "1634", "target": "1639", "attributes": { "weight": 1 } }, { "key": "9687", "source": "1634", "target": "564", "attributes": { "weight": 2 } }, { "key": "9688", "source": "1634", "target": "171", "attributes": { "weight": 2 } }, { "key": "27660", "source": "1634", "target": "2699", "attributes": { "weight": 1 } }, { "key": "24404", "source": "1635", "target": "2496", "attributes": { "weight": 1 } }, { "key": "22545", "source": "1635", "target": "178", "attributes": { "weight": 3 } }, { "key": "22544", "source": "1635", "target": "567", "attributes": { "weight": 3 } }, { "key": "9696", "source": "1635", "target": "171", "attributes": { "weight": 1 } }, { "key": "25333", "source": "1636", "target": "2281", "attributes": { "weight": 1 } }, { "key": "9697", "source": "1636", "target": "171", "attributes": { "weight": 1 } }, { "key": "24405", "source": "1636", "target": "2496", "attributes": { "weight": 1 } }, { "key": "22548", "source": "1636", "target": "567", "attributes": { "weight": 3 } }, { "key": "22549", "source": "1636", "target": "572", "attributes": { "weight": 2 } }, { "key": "22550", "source": "1636", "target": "178", "attributes": { "weight": 4 } }, { "key": "25331", "source": "1636", "target": "2316", "attributes": { "weight": 1 } }, { "key": "22551", "source": "1636", "target": "1637", "attributes": { "weight": 3 } }, { "key": "25332", "source": "1636", "target": "1618", "attributes": { "weight": 1 } }, { "key": "13972", "source": "1637", "target": "178", "attributes": { "weight": 8 } }, { "key": "14281", "source": "1637", "target": "168", "attributes": { "weight": 1 } }, { "key": "22553", "source": "1637", "target": "2316", "attributes": { "weight": 3 } }, { "key": "22556", "source": "1637", "target": "567", "attributes": { "weight": 6 } }, { "key": "12609", "source": "1637", "target": "180", "attributes": { "weight": 1 } }, { "key": "22557", "source": "1637", "target": "572", "attributes": { "weight": 4 } }, { "key": "25336", "source": "1637", "target": "2326", "attributes": { "weight": 3 } }, { "key": "25335", "source": "1637", "target": "1624", "attributes": { "weight": 2 } }, { "key": "22555", "source": "1637", "target": "1618", "attributes": { "weight": 4 } }, { "key": "25334", "source": "1637", "target": "2281", "attributes": { "weight": 2 } }, { "key": "9698", "source": "1637", "target": "171", "attributes": { "weight": 3 } }, { "key": "22560", "source": "1637", "target": "1636", "attributes": { "weight": 3 } }, { "key": "22558", "source": "1637", "target": "359", "attributes": { "weight": 1 } }, { "key": "25337", "source": "1637", "target": "2328", "attributes": { "weight": 3 } }, { "key": "24406", "source": "1637", "target": "2496", "attributes": { "weight": 1 } }, { "key": "22552", "source": "1637", "target": "2315", "attributes": { "weight": 2 } }, { "key": "30291", "source": "1637", "target": "1623", "attributes": { "weight": 2 } }, { "key": "25338", "source": "1637", "target": "2333", "attributes": { "weight": 1 } }, { "key": "12384", "source": "1637", "target": "565", "attributes": { "weight": 2 } }, { "key": "22554", "source": "1637", "target": "1617", "attributes": { "weight": 3 } }, { "key": "22559", "source": "1637", "target": "1628", "attributes": { "weight": 3 } }, { "key": "22561", "source": "1637", "target": "1640", "attributes": { "weight": 4 } }, { "key": "30562", "source": "1637", "target": "172", "attributes": { "weight": 1 } }, { "key": "30561", "source": "1637", "target": "1621", "attributes": { "weight": 1 } }, { "key": "25339", "source": "1637", "target": "2342", "attributes": { "weight": 1 } }, { "key": "9702", "source": "1638", "target": "1629", "attributes": { "weight": 1 } }, { "key": "21498", "source": "1638", "target": "2285", "attributes": { "weight": 3 } }, { "key": "9703", "source": "1638", "target": "178", "attributes": { "weight": 1 } }, { "key": "9701", "source": "1638", "target": "171", "attributes": { "weight": 2 } }, { "key": "9706", "source": "1639", "target": "564", "attributes": { "weight": 2 } }, { "key": "9708", "source": "1639", "target": "171", "attributes": { "weight": 2 } }, { "key": "27665", "source": "1639", "target": "2342", "attributes": { "weight": 1 } }, { "key": "9707", "source": "1639", "target": "1623", "attributes": { "weight": 1 } }, { "key": "27664", "source": "1639", "target": "1634", "attributes": { "weight": 1 } }, { "key": "22579", "source": "1640", "target": "567", "attributes": { "weight": 4 } }, { "key": "22585", "source": "1640", "target": "1628", "attributes": { "weight": 1 } }, { "key": "22576", "source": "1640", "target": "2315", "attributes": { "weight": 3 } }, { "key": "31208", "source": "1640", "target": "2337", "attributes": { "weight": 1 } }, { "key": "25346", "source": "1640", "target": "2569", "attributes": { "weight": 2 } }, { "key": "22587", "source": "1640", "target": "2334", "attributes": { "weight": 3 } }, { "key": "22589", "source": "1640", "target": "2336", "attributes": { "weight": 2 } }, { "key": "22584", "source": "1640", "target": "2325", "attributes": { "weight": 3 } }, { "key": "22582", "source": "1640", "target": "2324", "attributes": { "weight": 3 } }, { "key": "22577", "source": "1640", "target": "2318", "attributes": { "weight": 2 } }, { "key": "22578", "source": "1640", "target": "1618", "attributes": { "weight": 4 } }, { "key": "22591", "source": "1640", "target": "2343", "attributes": { "weight": 3 } }, { "key": "22588", "source": "1640", "target": "178", "attributes": { "weight": 3 } }, { "key": "22590", "source": "1640", "target": "1637", "attributes": { "weight": 4 } }, { "key": "9709", "source": "1640", "target": "171", "attributes": { "weight": 1 } }, { "key": "31207", "source": "1640", "target": "2330", "attributes": { "weight": 1 } }, { "key": "22581", "source": "1640", "target": "572", "attributes": { "weight": 3 } }, { "key": "22583", "source": "1640", "target": "1624", "attributes": { "weight": 2 } }, { "key": "22580", "source": "1640", "target": "2322", "attributes": { "weight": 3 } }, { "key": "25350", "source": "1640", "target": "2342", "attributes": { "weight": 1 } }, { "key": "25348", "source": "1640", "target": "2576", "attributes": { "weight": 1 } }, { "key": "22586", "source": "1640", "target": "2328", "attributes": { "weight": 2 } }, { "key": "25344", "source": "1640", "target": "2563", "attributes": { "weight": 1 } }, { "key": "9710", "source": "1641", "target": "171", "attributes": { "weight": 1 } }, { "key": "15196", "source": "1641", "target": "1621", "attributes": { "weight": 2 } }, { "key": "32281", "source": "1641", "target": "164", "attributes": { "weight": 1 } }, { "key": "30539", "source": "1642", "target": "174", "attributes": { "weight": 2 } }, { "key": "26283", "source": "1642", "target": "1549", "attributes": { "weight": 2 } }, { "key": "30542", "source": "1642", "target": "2987", "attributes": { "weight": 1 } }, { "key": "26282", "source": "1642", "target": "164", "attributes": { "weight": 4 } }, { "key": "30537", "source": "1642", "target": "2984", "attributes": { "weight": 1 } }, { "key": "35534", "source": "1642", "target": "1860", "attributes": { "weight": 1 } }, { "key": "28169", "source": "1642", "target": "301", "attributes": { "weight": 1 } }, { "key": "30535", "source": "1642", "target": "2982", "attributes": { "weight": 1 } }, { "key": "30533", "source": "1642", "target": "259", "attributes": { "weight": 1 } }, { "key": "9711", "source": "1642", "target": "171", "attributes": { "weight": 1 } }, { "key": "30541", "source": "1642", "target": "2986", "attributes": { "weight": 1 } }, { "key": "28168", "source": "1642", "target": "287", "attributes": { "weight": 2 } }, { "key": "30538", "source": "1642", "target": "2985", "attributes": { "weight": 1 } }, { "key": "30534", "source": "1642", "target": "574", "attributes": { "weight": 2 } }, { "key": "26848", "source": "1642", "target": "278", "attributes": { "weight": 2 } }, { "key": "30536", "source": "1642", "target": "2983", "attributes": { "weight": 1 } }, { "key": "30540", "source": "1642", "target": "178", "attributes": { "weight": 1 } }, { "key": "37133", "source": "1643", "target": "411", "attributes": { "weight": 1 } }, { "key": "9728", "source": "1643", "target": "396", "attributes": { "weight": 2 } }, { "key": "9749", "source": "1644", "target": "396", "attributes": { "weight": 2 } }, { "key": "9751", "source": "1645", "target": "411", "attributes": { "weight": 1 } }, { "key": "34066", "source": "1645", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34067", "source": "1645", "target": "338", "attributes": { "weight": 1 } }, { "key": "9750", "source": "1645", "target": "396", "attributes": { "weight": 2 } }, { "key": "9788", "source": "1646", "target": "396", "attributes": { "weight": 2 } }, { "key": "9804", "source": "1647", "target": "396", "attributes": { "weight": 1 } }, { "key": "37157", "source": "1647", "target": "390", "attributes": { "weight": 1 } }, { "key": "37158", "source": "1647", "target": "411", "attributes": { "weight": 1 } }, { "key": "9803", "source": "1647", "target": "393", "attributes": { "weight": 1 } }, { "key": "9805", "source": "1647", "target": "400", "attributes": { "weight": 1 } }, { "key": "9807", "source": "1648", "target": "396", "attributes": { "weight": 2 } }, { "key": "9811", "source": "1649", "target": "396", "attributes": { "weight": 2 } }, { "key": "9868", "source": "1650", "target": "396", "attributes": { "weight": 2 } }, { "key": "9867", "source": "1650", "target": "393", "attributes": { "weight": 1 } }, { "key": "37168", "source": "1650", "target": "390", "attributes": { "weight": 1 } }, { "key": "9872", "source": "1651", "target": "396", "attributes": { "weight": 1 } }, { "key": "9878", "source": "1652", "target": "404", "attributes": { "weight": 2 } }, { "key": "9879", "source": "1652", "target": "415", "attributes": { "weight": 2 } }, { "key": "9877", "source": "1652", "target": "396", "attributes": { "weight": 2 } }, { "key": "9881", "source": "1653", "target": "396", "attributes": { "weight": 2 } }, { "key": "9894", "source": "1654", "target": "396", "attributes": { "weight": 3 } }, { "key": "34791", "source": "1655", "target": "1233", "attributes": { "weight": 1 } }, { "key": "9914", "source": "1655", "target": "396", "attributes": { "weight": 1 } }, { "key": "9918", "source": "1656", "target": "391", "attributes": { "weight": 1 } }, { "key": "9919", "source": "1656", "target": "396", "attributes": { "weight": 1 } }, { "key": "9928", "source": "1657", "target": "396", "attributes": { "weight": 2 } }, { "key": "37206", "source": "1657", "target": "411", "attributes": { "weight": 1 } }, { "key": "10056", "source": "1658", "target": "1666", "attributes": { "weight": 1 } }, { "key": "10055", "source": "1658", "target": "602", "attributes": { "weight": 1 } }, { "key": "10074", "source": "1659", "target": "602", "attributes": { "weight": 1 } }, { "key": "10076", "source": "1660", "target": "602", "attributes": { "weight": 1 } }, { "key": "10102", "source": "1661", "target": "602", "attributes": { "weight": 1 } }, { "key": "10103", "source": "1662", "target": "602", "attributes": { "weight": 1 } }, { "key": "10105", "source": "1662", "target": "1675", "attributes": { "weight": 2 } }, { "key": "10104", "source": "1662", "target": "369", "attributes": { "weight": 1 } }, { "key": "10110", "source": "1663", "target": "602", "attributes": { "weight": 2 } }, { "key": "10111", "source": "1663", "target": "369", "attributes": { "weight": 1 } }, { "key": "10112", "source": "1663", "target": "1672", "attributes": { "weight": 1 } }, { "key": "10113", "source": "1664", "target": "602", "attributes": { "weight": 1 } }, { "key": "10114", "source": "1665", "target": "602", "attributes": { "weight": 1 } }, { "key": "10115", "source": "1665", "target": "872", "attributes": { "weight": 1 } }, { "key": "10117", "source": "1666", "target": "602", "attributes": { "weight": 1 } }, { "key": "10125", "source": "1667", "target": "602", "attributes": { "weight": 1 } }, { "key": "10128", "source": "1668", "target": "602", "attributes": { "weight": 1 } }, { "key": "10131", "source": "1669", "target": "602", "attributes": { "weight": 1 } }, { "key": "10133", "source": "1670", "target": "1658", "attributes": { "weight": 1 } }, { "key": "10135", "source": "1671", "target": "602", "attributes": { "weight": 1 } }, { "key": "10139", "source": "1672", "target": "876", "attributes": { "weight": 1 } }, { "key": "10136", "source": "1672", "target": "602", "attributes": { "weight": 3 } }, { "key": "10137", "source": "1672", "target": "872", "attributes": { "weight": 1 } }, { "key": "10138", "source": "1672", "target": "1663", "attributes": { "weight": 1 } }, { "key": "10140", "source": "1673", "target": "602", "attributes": { "weight": 2 } }, { "key": "26271", "source": "1674", "target": "876", "attributes": { "weight": 1 } }, { "key": "10141", "source": "1674", "target": "602", "attributes": { "weight": 1 } }, { "key": "10142", "source": "1675", "target": "602", "attributes": { "weight": 2 } }, { "key": "10143", "source": "1675", "target": "369", "attributes": { "weight": 1 } }, { "key": "10144", "source": "1675", "target": "1662", "attributes": { "weight": 1 } }, { "key": "10145", "source": "1676", "target": "879", "attributes": { "weight": 1 } }, { "key": "10147", "source": "1677", "target": "711", "attributes": { "weight": 1 } }, { "key": "23096", "source": "1678", "target": "2417", "attributes": { "weight": 1 } }, { "key": "23092", "source": "1678", "target": "1683", "attributes": { "weight": 1 } }, { "key": "23095", "source": "1678", "target": "2414", "attributes": { "weight": 1 } }, { "key": "10148", "source": "1678", "target": "711", "attributes": { "weight": 2 } }, { "key": "10149", "source": "1679", "target": "1322", "attributes": { "weight": 1 } }, { "key": "21857", "source": "1680", "target": "2293", "attributes": { "weight": 1 } }, { "key": "21861", "source": "1680", "target": "1315", "attributes": { "weight": 1 } }, { "key": "10172", "source": "1680", "target": "1227", "attributes": { "weight": 1 } }, { "key": "10173", "source": "1680", "target": "337", "attributes": { "weight": 2 } }, { "key": "10174", "source": "1680", "target": "1291", "attributes": { "weight": 1 } }, { "key": "21860", "source": "1680", "target": "1300", "attributes": { "weight": 1 } }, { "key": "21859", "source": "1680", "target": "1284", "attributes": { "weight": 1 } }, { "key": "10175", "source": "1680", "target": "1322", "attributes": { "weight": 1 } }, { "key": "21858", "source": "1680", "target": "338", "attributes": { "weight": 1 } }, { "key": "18140", "source": "1681", "target": "1197", "attributes": { "weight": 2 } }, { "key": "15571", "source": "1681", "target": "925", "attributes": { "weight": 1 } }, { "key": "21867", "source": "1681", "target": "337", "attributes": { "weight": 1 } }, { "key": "33914", "source": "1681", "target": "123", "attributes": { "weight": 1 } }, { "key": "21866", "source": "1681", "target": "2293", "attributes": { "weight": 1 } }, { "key": "15572", "source": "1681", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10188", "source": "1681", "target": "1322", "attributes": { "weight": 1 } }, { "key": "23100", "source": "1682", "target": "2413", "attributes": { "weight": 1 } }, { "key": "23099", "source": "1682", "target": "2412", "attributes": { "weight": 1 } }, { "key": "10189", "source": "1682", "target": "711", "attributes": { "weight": 2 } }, { "key": "23098", "source": "1682", "target": "2408", "attributes": { "weight": 1 } }, { "key": "10193", "source": "1683", "target": "711", "attributes": { "weight": 2 } }, { "key": "23101", "source": "1683", "target": "1678", "attributes": { "weight": 1 } }, { "key": "10196", "source": "1684", "target": "1322", "attributes": { "weight": 1 } }, { "key": "21896", "source": "1685", "target": "337", "attributes": { "weight": 1 } }, { "key": "34168", "source": "1685", "target": "1197", "attributes": { "weight": 1 } }, { "key": "15779", "source": "1685", "target": "925", "attributes": { "weight": 1 } }, { "key": "15780", "source": "1685", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10202", "source": "1685", "target": "1322", "attributes": { "weight": 1 } }, { "key": "10207", "source": "1686", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34204", "source": "1686", "target": "1197", "attributes": { "weight": 1 } }, { "key": "15817", "source": "1686", "target": "925", "attributes": { "weight": 1 } }, { "key": "21927", "source": "1686", "target": "2293", "attributes": { "weight": 1 } }, { "key": "15818", "source": "1686", "target": "1329", "attributes": { "weight": 1 } }, { "key": "21928", "source": "1686", "target": "337", "attributes": { "weight": 1 } }, { "key": "10206", "source": "1686", "target": "1687", "attributes": { "weight": 1 } }, { "key": "15824", "source": "1687", "target": "925", "attributes": { "weight": 1 } }, { "key": "10208", "source": "1687", "target": "1686", "attributes": { "weight": 1 } }, { "key": "15825", "source": "1687", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10209", "source": "1687", "target": "1322", "attributes": { "weight": 1 } }, { "key": "34219", "source": "1687", "target": "1197", "attributes": { "weight": 1 } }, { "key": "10233", "source": "1688", "target": "338", "attributes": { "weight": 1 } }, { "key": "15966", "source": "1689", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10235", "source": "1689", "target": "1695", "attributes": { "weight": 1 } }, { "key": "10234", "source": "1689", "target": "1167", "attributes": { "weight": 1 } }, { "key": "10236", "source": "1689", "target": "1322", "attributes": { "weight": 1 } }, { "key": "10242", "source": "1690", "target": "1291", "attributes": { "weight": 1 } }, { "key": "16038", "source": "1690", "target": "925", "attributes": { "weight": 1 } }, { "key": "34554", "source": "1690", "target": "1197", "attributes": { "weight": 1 } }, { "key": "16039", "source": "1690", "target": "1329", "attributes": { "weight": 1 } }, { "key": "22006", "source": "1690", "target": "337", "attributes": { "weight": 1 } }, { "key": "22005", "source": "1690", "target": "2293", "attributes": { "weight": 1 } }, { "key": "10243", "source": "1690", "target": "1322", "attributes": { "weight": 1 } }, { "key": "10254", "source": "1691", "target": "938", "attributes": { "weight": 2 } }, { "key": "22020", "source": "1691", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22019", "source": "1691", "target": "2301", "attributes": { "weight": 1 } }, { "key": "28600", "source": "1691", "target": "1279", "attributes": { "weight": 1 } }, { "key": "22018", "source": "1691", "target": "199", "attributes": { "weight": 2 } }, { "key": "10278", "source": "1692", "target": "938", "attributes": { "weight": 2 } }, { "key": "10279", "source": "1693", "target": "1291", "attributes": { "weight": 1 } }, { "key": "34662", "source": "1693", "target": "1323", "attributes": { "weight": 1 } }, { "key": "22075", "source": "1693", "target": "2293", "attributes": { "weight": 1 } }, { "key": "16198", "source": "1693", "target": "1329", "attributes": { "weight": 1 } }, { "key": "10280", "source": "1693", "target": "1322", "attributes": { "weight": 1 } }, { "key": "22076", "source": "1693", "target": "337", "attributes": { "weight": 1 } }, { "key": "16197", "source": "1693", "target": "925", "attributes": { "weight": 1 } }, { "key": "34661", "source": "1693", "target": "1197", "attributes": { "weight": 1 } }, { "key": "10281", "source": "1694", "target": "1243", "attributes": { "weight": 1 } }, { "key": "10282", "source": "1694", "target": "1700", "attributes": { "weight": 1 } }, { "key": "10287", "source": "1695", "target": "1322", "attributes": { "weight": 1 } }, { "key": "10286", "source": "1695", "target": "1689", "attributes": { "weight": 1 } }, { "key": "10308", "source": "1696", "target": "711", "attributes": { "weight": 2 } }, { "key": "10354", "source": "1697", "target": "128", "attributes": { "weight": 1 } }, { "key": "10353", "source": "1697", "target": "1243", "attributes": { "weight": 2 } }, { "key": "10366", "source": "1698", "target": "711", "attributes": { "weight": 2 } }, { "key": "26117", "source": "1698", "target": "1699", "attributes": { "weight": 1 } }, { "key": "26118", "source": "1699", "target": "1698", "attributes": { "weight": 1 } }, { "key": "10367", "source": "1699", "target": "711", "attributes": { "weight": 2 } }, { "key": "10372", "source": "1700", "target": "128", "attributes": { "weight": 1 } }, { "key": "10373", "source": "1700", "target": "1694", "attributes": { "weight": 1 } }, { "key": "10374", "source": "1701", "target": "719", "attributes": { "weight": 1 } }, { "key": "10375", "source": "1701", "target": "1243", "attributes": { "weight": 1 } }, { "key": "10377", "source": "1702", "target": "1322", "attributes": { "weight": 1 } }, { "key": "28655", "source": "1703", "target": "54", "attributes": { "weight": 1 } }, { "key": "33165", "source": "1703", "target": "228", "attributes": { "weight": 1 } }, { "key": "23300", "source": "1703", "target": "1121", "attributes": { "weight": 2 } }, { "key": "33164", "source": "1703", "target": "442", "attributes": { "weight": 1 } }, { "key": "15207", "source": "1703", "target": "183", "attributes": { "weight": 1 } }, { "key": "15208", "source": "1703", "target": "454", "attributes": { "weight": 1 } }, { "key": "19127", "source": "1703", "target": "1087", "attributes": { "weight": 1 } }, { "key": "10383", "source": "1703", "target": "223", "attributes": { "weight": 3 } }, { "key": "10385", "source": "1703", "target": "1706", "attributes": { "weight": 1 } }, { "key": "33166", "source": "1703", "target": "672", "attributes": { "weight": 1 } }, { "key": "19126", "source": "1703", "target": "2245", "attributes": { "weight": 1 } }, { "key": "10386", "source": "1703", "target": "1125", "attributes": { "weight": 2 } }, { "key": "32685", "source": "1703", "target": "472", "attributes": { "weight": 3 } }, { "key": "10387", "source": "1703", "target": "1714", "attributes": { "weight": 1 } }, { "key": "32684", "source": "1703", "target": "135", "attributes": { "weight": 3 } }, { "key": "26286", "source": "1703", "target": "1258", "attributes": { "weight": 1 } }, { "key": "10384", "source": "1703", "target": "225", "attributes": { "weight": 1 } }, { "key": "15210", "source": "1703", "target": "189", "attributes": { "weight": 1 } }, { "key": "15209", "source": "1703", "target": "467", "attributes": { "weight": 1 } }, { "key": "23508", "source": "1703", "target": "220", "attributes": { "weight": 1 } }, { "key": "10389", "source": "1704", "target": "225", "attributes": { "weight": 1 } }, { "key": "10482", "source": "1705", "target": "1125", "attributes": { "weight": 2 } }, { "key": "19985", "source": "1705", "target": "1087", "attributes": { "weight": 1 } }, { "key": "10484", "source": "1706", "target": "225", "attributes": { "weight": 1 } }, { "key": "28658", "source": "1706", "target": "54", "attributes": { "weight": 2 } }, { "key": "10483", "source": "1706", "target": "1703", "attributes": { "weight": 1 } }, { "key": "10539", "source": "1708", "target": "225", "attributes": { "weight": 1 } }, { "key": "20702", "source": "1708", "target": "2261", "attributes": { "weight": 1 } }, { "key": "32824", "source": "1708", "target": "228", "attributes": { "weight": 1 } }, { "key": "10538", "source": "1708", "target": "223", "attributes": { "weight": 1 } }, { "key": "20700", "source": "1708", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20699", "source": "1708", "target": "1023", "attributes": { "weight": 1 } }, { "key": "10540", "source": "1708", "target": "1125", "attributes": { "weight": 2 } }, { "key": "20701", "source": "1708", "target": "1087", "attributes": { "weight": 1 } }, { "key": "32823", "source": "1708", "target": "1121", "attributes": { "weight": 1 } }, { "key": "10544", "source": "1709", "target": "225", "attributes": { "weight": 1 } }, { "key": "10545", "source": "1709", "target": "1125", "attributes": { "weight": 1 } }, { "key": "35551", "source": "1710", "target": "3114", "attributes": { "weight": 1 } }, { "key": "35550", "source": "1710", "target": "2450", "attributes": { "weight": 1 } }, { "key": "10550", "source": "1710", "target": "137", "attributes": { "weight": 1 } }, { "key": "35545", "source": "1710", "target": "2644", "attributes": { "weight": 1 } }, { "key": "10549", "source": "1710", "target": "225", "attributes": { "weight": 1 } }, { "key": "16427", "source": "1710", "target": "39", "attributes": { "weight": 2 } }, { "key": "16477", "source": "1710", "target": "2064", "attributes": { "weight": 1 } }, { "key": "35547", "source": "1710", "target": "1455", "attributes": { "weight": 1 } }, { "key": "35549", "source": "1710", "target": "3212", "attributes": { "weight": 1 } }, { "key": "35546", "source": "1710", "target": "442", "attributes": { "weight": 1 } }, { "key": "35548", "source": "1710", "target": "3211", "attributes": { "weight": 1 } }, { "key": "32930", "source": "1710", "target": "470", "attributes": { "weight": 2 } }, { "key": "28677", "source": "1710", "target": "54", "attributes": { "weight": 1 } }, { "key": "35544", "source": "1710", "target": "938", "attributes": { "weight": 1 } }, { "key": "10548", "source": "1710", "target": "131", "attributes": { "weight": 1 } }, { "key": "10570", "source": "1711", "target": "225", "attributes": { "weight": 1 } }, { "key": "28681", "source": "1711", "target": "1353", "attributes": { "weight": 1 } }, { "key": "28687", "source": "1711", "target": "2784", "attributes": { "weight": 1 } }, { "key": "28685", "source": "1711", "target": "54", "attributes": { "weight": 2 } }, { "key": "28682", "source": "1711", "target": "39", "attributes": { "weight": 1 } }, { "key": "24243", "source": "1711", "target": "437", "attributes": { "weight": 3 } }, { "key": "30749", "source": "1711", "target": "778", "attributes": { "weight": 1 } }, { "key": "28684", "source": "1711", "target": "2783", "attributes": { "weight": 1 } }, { "key": "28686", "source": "1711", "target": "1373", "attributes": { "weight": 2 } }, { "key": "24246", "source": "1711", "target": "1374", "attributes": { "weight": 3 } }, { "key": "11289", "source": "1711", "target": "471", "attributes": { "weight": 5 } }, { "key": "24242", "source": "1711", "target": "429", "attributes": { "weight": 3 } }, { "key": "24247", "source": "1711", "target": "1375", "attributes": { "weight": 1 } }, { "key": "21182", "source": "1711", "target": "130", "attributes": { "weight": 4 } }, { "key": "28683", "source": "1711", "target": "1358", "attributes": { "weight": 1 } }, { "key": "24244", "source": "1711", "target": "1125", "attributes": { "weight": 1 } }, { "key": "24245", "source": "1711", "target": "2109", "attributes": { "weight": 1 } }, { "key": "10576", "source": "1712", "target": "225", "attributes": { "weight": 1 } }, { "key": "10577", "source": "1713", "target": "1704", "attributes": { "weight": 1 } }, { "key": "10580", "source": "1714", "target": "225", "attributes": { "weight": 1 } }, { "key": "29790", "source": "1714", "target": "54", "attributes": { "weight": 1 } }, { "key": "10579", "source": "1714", "target": "1703", "attributes": { "weight": 1 } }, { "key": "10589", "source": "1715", "target": "43", "attributes": { "weight": 1 } }, { "key": "28544", "source": "1715", "target": "199", "attributes": { "weight": 1 } }, { "key": "10592", "source": "1716", "target": "782", "attributes": { "weight": 1 } }, { "key": "10593", "source": "1716", "target": "371", "attributes": { "weight": 3 } }, { "key": "10590", "source": "1716", "target": "43", "attributes": { "weight": 3 } }, { "key": "14014", "source": "1716", "target": "993", "attributes": { "weight": 1 } }, { "key": "10591", "source": "1716", "target": "44", "attributes": { "weight": 1 } }, { "key": "14015", "source": "1716", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10595", "source": "1717", "target": "43", "attributes": { "weight": 3 } }, { "key": "14016", "source": "1717", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10596", "source": "1717", "target": "782", "attributes": { "weight": 1 } }, { "key": "10655", "source": "1718", "target": "43", "attributes": { "weight": 3 } }, { "key": "10656", "source": "1718", "target": "44", "attributes": { "weight": 1 } }, { "key": "14025", "source": "1718", "target": "993", "attributes": { "weight": 1 } }, { "key": "14026", "source": "1718", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10658", "source": "1718", "target": "371", "attributes": { "weight": 3 } }, { "key": "28549", "source": "1718", "target": "199", "attributes": { "weight": 1 } }, { "key": "10657", "source": "1718", "target": "782", "attributes": { "weight": 1 } }, { "key": "11482", "source": "1718", "target": "370", "attributes": { "weight": 1 } }, { "key": "14027", "source": "1719", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10660", "source": "1719", "target": "782", "attributes": { "weight": 1 } }, { "key": "10659", "source": "1719", "target": "43", "attributes": { "weight": 2 } }, { "key": "10664", "source": "1720", "target": "43", "attributes": { "weight": 1 } }, { "key": "10667", "source": "1721", "target": "43", "attributes": { "weight": 2 } }, { "key": "26217", "source": "1722", "target": "999", "attributes": { "weight": 1 } }, { "key": "10685", "source": "1722", "target": "43", "attributes": { "weight": 2 } }, { "key": "10728", "source": "1723", "target": "43", "attributes": { "weight": 2 } }, { "key": "26242", "source": "1723", "target": "999", "attributes": { "weight": 1 } }, { "key": "10730", "source": "1724", "target": "43", "attributes": { "weight": 1 } }, { "key": "10731", "source": "1725", "target": "43", "attributes": { "weight": 2 } }, { "key": "26243", "source": "1726", "target": "999", "attributes": { "weight": 1 } }, { "key": "14060", "source": "1726", "target": "1031", "attributes": { "weight": 1 } }, { "key": "10733", "source": "1726", "target": "43", "attributes": { "weight": 3 } }, { "key": "14059", "source": "1726", "target": "993", "attributes": { "weight": 1 } }, { "key": "10735", "source": "1727", "target": "43", "attributes": { "weight": 1 } }, { "key": "10741", "source": "1728", "target": "43", "attributes": { "weight": 1 } }, { "key": "10782", "source": "1729", "target": "43", "attributes": { "weight": 3 } }, { "key": "10783", "source": "1729", "target": "782", "attributes": { "weight": 1 } }, { "key": "10784", "source": "1730", "target": "44", "attributes": { "weight": 1 } }, { "key": "10789", "source": "1731", "target": "43", "attributes": { "weight": 2 } }, { "key": "10792", "source": "1732", "target": "35", "attributes": { "weight": 3 } }, { "key": "10804", "source": "1733", "target": "1752", "attributes": { "weight": 2 } }, { "key": "10801", "source": "1733", "target": "1118", "attributes": { "weight": 2 } }, { "key": "10803", "source": "1733", "target": "1741", "attributes": { "weight": 2 } }, { "key": "10802", "source": "1733", "target": "457", "attributes": { "weight": 2 } }, { "key": "15140", "source": "1733", "target": "74", "attributes": { "weight": 2 } }, { "key": "15139", "source": "1733", "target": "2002", "attributes": { "weight": 1 } }, { "key": "32240", "source": "1733", "target": "2447", "attributes": { "weight": 1 } }, { "key": "31393", "source": "1733", "target": "223", "attributes": { "weight": 2 } }, { "key": "15137", "source": "1733", "target": "2000", "attributes": { "weight": 2 } }, { "key": "15138", "source": "1733", "target": "2001", "attributes": { "weight": 2 } }, { "key": "15136", "source": "1733", "target": "1999", "attributes": { "weight": 2 } }, { "key": "15134", "source": "1733", "target": "1997", "attributes": { "weight": 2 } }, { "key": "11849", "source": "1733", "target": "1808", "attributes": { "weight": 1 } }, { "key": "15135", "source": "1733", "target": "61", "attributes": { "weight": 2 } }, { "key": "15141", "source": "1733", "target": "76", "attributes": { "weight": 2 } }, { "key": "10889", "source": "1734", "target": "457", "attributes": { "weight": 1 } }, { "key": "10890", "source": "1735", "target": "457", "attributes": { "weight": 2 } }, { "key": "10891", "source": "1735", "target": "1739", "attributes": { "weight": 1 } }, { "key": "10892", "source": "1736", "target": "457", "attributes": { "weight": 2 } }, { "key": "10893", "source": "1737", "target": "457", "attributes": { "weight": 1 } }, { "key": "18470", "source": "1738", "target": "2212", "attributes": { "weight": 1 } }, { "key": "18460", "source": "1738", "target": "1047", "attributes": { "weight": 1 } }, { "key": "33433", "source": "1738", "target": "2258", "attributes": { "weight": 1 } }, { "key": "18464", "source": "1738", "target": "370", "attributes": { "weight": 1 } }, { "key": "18469", "source": "1738", "target": "1322", "attributes": { "weight": 1 } }, { "key": "35692", "source": "1738", "target": "1354", "attributes": { "weight": 2 } }, { "key": "16830", "source": "1738", "target": "434", "attributes": { "weight": 2 } }, { "key": "18455", "source": "1738", "target": "938", "attributes": { "weight": 1 } }, { "key": "18466", "source": "1738", "target": "468", "attributes": { "weight": 1 } }, { "key": "18471", "source": "1738", "target": "373", "attributes": { "weight": 1 } }, { "key": "10894", "source": "1738", "target": "457", "attributes": { "weight": 2 } }, { "key": "16831", "source": "1738", "target": "70", "attributes": { "weight": 3 } }, { "key": "33431", "source": "1738", "target": "425", "attributes": { "weight": 1 } }, { "key": "33430", "source": "1738", "target": "51", "attributes": { "weight": 1 } }, { "key": "18468", "source": "1738", "target": "189", "attributes": { "weight": 1 } }, { "key": "18454", "source": "1738", "target": "1522", "attributes": { "weight": 1 } }, { "key": "22774", "source": "1738", "target": "2349", "attributes": { "weight": 1 } }, { "key": "18463", "source": "1738", "target": "1232", "attributes": { "weight": 1 } }, { "key": "18461", "source": "1738", "target": "454", "attributes": { "weight": 1 } }, { "key": "18452", "source": "1738", "target": "220", "attributes": { "weight": 1 } }, { "key": "18459", "source": "1738", "target": "1197", "attributes": { "weight": 1 } }, { "key": "35693", "source": "1738", "target": "672", "attributes": { "weight": 2 } }, { "key": "18456", "source": "1738", "target": "223", "attributes": { "weight": 1 } }, { "key": "18458", "source": "1738", "target": "674", "attributes": { "weight": 3 } }, { "key": "18472", "source": "1738", "target": "1063", "attributes": { "weight": 1 } }, { "key": "18457", "source": "1738", "target": "442", "attributes": { "weight": 3 } }, { "key": "18462", "source": "1738", "target": "1219", "attributes": { "weight": 1 } }, { "key": "18473", "source": "1738", "target": "57", "attributes": { "weight": 1 } }, { "key": "18453", "source": "1738", "target": "59", "attributes": { "weight": 1 } }, { "key": "18465", "source": "1738", "target": "135", "attributes": { "weight": 3 } }, { "key": "18467", "source": "1738", "target": "472", "attributes": { "weight": 2 } }, { "key": "33432", "source": "1738", "target": "450", "attributes": { "weight": 1 } }, { "key": "10895", "source": "1739", "target": "457", "attributes": { "weight": 2 } }, { "key": "10899", "source": "1740", "target": "457", "attributes": { "weight": 1 } }, { "key": "36036", "source": "1741", "target": "433", "attributes": { "weight": 1 } }, { "key": "36037", "source": "1741", "target": "440", "attributes": { "weight": 1 } }, { "key": "20522", "source": "1741", "target": "429", "attributes": { "weight": 1 } }, { "key": "20523", "source": "1741", "target": "489", "attributes": { "weight": 1 } }, { "key": "36038", "source": "1741", "target": "1360", "attributes": { "weight": 1 } }, { "key": "36042", "source": "1741", "target": "497", "attributes": { "weight": 1 } }, { "key": "15145", "source": "1741", "target": "74", "attributes": { "weight": 2 } }, { "key": "10912", "source": "1741", "target": "1733", "attributes": { "weight": 2 } }, { "key": "23389", "source": "1741", "target": "2446", "attributes": { "weight": 1 } }, { "key": "36040", "source": "1741", "target": "428", "attributes": { "weight": 1 } }, { "key": "16884", "source": "1741", "target": "59", "attributes": { "weight": 2 } }, { "key": "36039", "source": "1741", "target": "465", "attributes": { "weight": 1 } }, { "key": "36041", "source": "1741", "target": "3272", "attributes": { "weight": 1 } }, { "key": "11373", "source": "1742", "target": "1024", "attributes": { "weight": 2 } }, { "key": "11369", "source": "1742", "target": "5", "attributes": { "weight": 1 } }, { "key": "11361", "source": "1742", "target": "440", "attributes": { "weight": 1 } }, { "key": "11362", "source": "1742", "target": "1136", "attributes": { "weight": 1 } }, { "key": "11366", "source": "1742", "target": "452", "attributes": { "weight": 1 } }, { "key": "11375", "source": "1742", "target": "682", "attributes": { "weight": 1 } }, { "key": "11374", "source": "1742", "target": "6", "attributes": { "weight": 1 } }, { "key": "11370", "source": "1742", "target": "455", "attributes": { "weight": 1 } }, { "key": "11358", "source": "1742", "target": "1036", "attributes": { "weight": 2 } }, { "key": "11381", "source": "1742", "target": "473", "attributes": { "weight": 1 } }, { "key": "11354", "source": "1742", "target": "0", "attributes": { "weight": 1 } }, { "key": "11389", "source": "1742", "target": "1780", "attributes": { "weight": 1 } }, { "key": "11365", "source": "1742", "target": "693", "attributes": { "weight": 1 } }, { "key": "11379", "source": "1742", "target": "8", "attributes": { "weight": 3 } }, { "key": "11391", "source": "1742", "target": "1390", "attributes": { "weight": 1 } }, { "key": "11372", "source": "1742", "target": "791", "attributes": { "weight": 2 } }, { "key": "11382", "source": "1742", "target": "474", "attributes": { "weight": 1 } }, { "key": "11390", "source": "1742", "target": "495", "attributes": { "weight": 2 } }, { "key": "11383", "source": "1742", "target": "479", "attributes": { "weight": 2 } }, { "key": "11360", "source": "1742", "target": "1520", "attributes": { "weight": 1 } }, { "key": "11367", "source": "1742", "target": "454", "attributes": { "weight": 2 } }, { "key": "11386", "source": "1742", "target": "672", "attributes": { "weight": 1 } }, { "key": "11385", "source": "1742", "target": "14", "attributes": { "weight": 1 } }, { "key": "11377", "source": "1742", "target": "1137", "attributes": { "weight": 1 } }, { "key": "11378", "source": "1742", "target": "53", "attributes": { "weight": 1 } }, { "key": "31672", "source": "1742", "target": "595", "attributes": { "weight": 1 } }, { "key": "11384", "source": "1742", "target": "695", "attributes": { "weight": 2 } }, { "key": "11371", "source": "1742", "target": "790", "attributes": { "weight": 1 } }, { "key": "11359", "source": "1742", "target": "130", "attributes": { "weight": 1 } }, { "key": "11364", "source": "1742", "target": "3", "attributes": { "weight": 3 } }, { "key": "11368", "source": "1742", "target": "52", "attributes": { "weight": 1 } }, { "key": "11387", "source": "1742", "target": "673", "attributes": { "weight": 1 } }, { "key": "11388", "source": "1742", "target": "340", "attributes": { "weight": 1 } }, { "key": "11356", "source": "1742", "target": "59", "attributes": { "weight": 1 } }, { "key": "11376", "source": "1742", "target": "817", "attributes": { "weight": 1 } }, { "key": "11380", "source": "1742", "target": "135", "attributes": { "weight": 1 } }, { "key": "10913", "source": "1742", "target": "457", "attributes": { "weight": 2 } }, { "key": "11355", "source": "1742", "target": "220", "attributes": { "weight": 1 } }, { "key": "11392", "source": "1742", "target": "497", "attributes": { "weight": 2 } }, { "key": "11363", "source": "1742", "target": "442", "attributes": { "weight": 1 } }, { "key": "11357", "source": "1742", "target": "1779", "attributes": { "weight": 1 } }, { "key": "10917", "source": "1743", "target": "457", "attributes": { "weight": 2 } }, { "key": "20681", "source": "1744", "target": "56", "attributes": { "weight": 1 } }, { "key": "33624", "source": "1744", "target": "425", "attributes": { "weight": 1 } }, { "key": "20684", "source": "1744", "target": "2277", "attributes": { "weight": 1 } }, { "key": "20667", "source": "1744", "target": "186", "attributes": { "weight": 1 } }, { "key": "20670", "source": "1744", "target": "470", "attributes": { "weight": 5 } }, { "key": "27284", "source": "1744", "target": "52", "attributes": { "weight": 3 } }, { "key": "30777", "source": "1744", "target": "189", "attributes": { "weight": 1 } }, { "key": "20650", "source": "1744", "target": "221", "attributes": { "weight": 1 } }, { "key": "32804", "source": "1744", "target": "228", "attributes": { "weight": 2 } }, { "key": "32805", "source": "1744", "target": "1088", "attributes": { "weight": 1 } }, { "key": "20656", "source": "1744", "target": "2243", "attributes": { "weight": 1 } }, { "key": "20649", "source": "1744", "target": "130", "attributes": { "weight": 5 } }, { "key": "24179", "source": "1744", "target": "1125", "attributes": { "weight": 5 } }, { "key": "18077", "source": "1744", "target": "220", "attributes": { "weight": 3 } }, { "key": "32923", "source": "1744", "target": "1047", "attributes": { "weight": 2 } }, { "key": "20655", "source": "1744", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20668", "source": "1744", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20658", "source": "1744", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20669", "source": "1744", "target": "1121", "attributes": { "weight": 1 } }, { "key": "11239", "source": "1744", "target": "452", "attributes": { "weight": 2 } }, { "key": "20679", "source": "1744", "target": "489", "attributes": { "weight": 1 } }, { "key": "20654", "source": "1744", "target": "223", "attributes": { "weight": 5 } }, { "key": "10919", "source": "1744", "target": "57", "attributes": { "weight": 3 } }, { "key": "26368", "source": "1744", "target": "1258", "attributes": { "weight": 2 } }, { "key": "32925", "source": "1744", "target": "109", "attributes": { "weight": 1 } }, { "key": "20660", "source": "1744", "target": "2246", "attributes": { "weight": 1 } }, { "key": "20651", "source": "1744", "target": "222", "attributes": { "weight": 1 } }, { "key": "20664", "source": "1744", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20671", "source": "1744", "target": "54", "attributes": { "weight": 1 } }, { "key": "32924", "source": "1744", "target": "108", "attributes": { "weight": 1 } }, { "key": "20662", "source": "1744", "target": "449", "attributes": { "weight": 1 } }, { "key": "20666", "source": "1744", "target": "453", "attributes": { "weight": 1 } }, { "key": "12019", "source": "1744", "target": "468", "attributes": { "weight": 1 } }, { "key": "20653", "source": "1744", "target": "438", "attributes": { "weight": 1 } }, { "key": "11240", "source": "1744", "target": "473", "attributes": { "weight": 2 } }, { "key": "30780", "source": "1744", "target": "1063", "attributes": { "weight": 2 } }, { "key": "20674", "source": "1744", "target": "471", "attributes": { "weight": 6 } }, { "key": "20657", "source": "1744", "target": "1112", "attributes": { "weight": 1 } }, { "key": "20665", "source": "1744", "target": "451", "attributes": { "weight": 1 } }, { "key": "30776", "source": "1744", "target": "1357", "attributes": { "weight": 3 } }, { "key": "20672", "source": "1744", "target": "1836", "attributes": { "weight": 1 } }, { "key": "20663", "source": "1744", "target": "1531", "attributes": { "weight": 1 } }, { "key": "20661", "source": "1744", "target": "448", "attributes": { "weight": 1 } }, { "key": "20678", "source": "1744", "target": "231", "attributes": { "weight": 1 } }, { "key": "20676", "source": "1744", "target": "2260", "attributes": { "weight": 1 } }, { "key": "32926", "source": "1744", "target": "135", "attributes": { "weight": 2 } }, { "key": "32922", "source": "1744", "target": "778", "attributes": { "weight": 1 } }, { "key": "16475", "source": "1744", "target": "1387", "attributes": { "weight": 1 } }, { "key": "20677", "source": "1744", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20682", "source": "1744", "target": "2273", "attributes": { "weight": 1 } }, { "key": "20673", "source": "1744", "target": "1122", "attributes": { "weight": 1 } }, { "key": "20680", "source": "1744", "target": "1131", "attributes": { "weight": 1 } }, { "key": "26725", "source": "1744", "target": "454", "attributes": { "weight": 2 } }, { "key": "33625", "source": "1744", "target": "442", "attributes": { "weight": 1 } }, { "key": "20683", "source": "1744", "target": "1375", "attributes": { "weight": 1 } }, { "key": "30779", "source": "1744", "target": "3004", "attributes": { "weight": 2 } }, { "key": "30778", "source": "1744", "target": "1370", "attributes": { "weight": 2 } }, { "key": "20675", "source": "1744", "target": "1087", "attributes": { "weight": 1 } }, { "key": "20659", "source": "1744", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20652", "source": "1744", "target": "50", "attributes": { "weight": 1 } }, { "key": "12302", "source": "1744", "target": "435", "attributes": { "weight": 1 } }, { "key": "10922", "source": "1745", "target": "457", "attributes": { "weight": 2 } }, { "key": "31352", "source": "1745", "target": "59", "attributes": { "weight": 1 } }, { "key": "16973", "source": "1745", "target": "1354", "attributes": { "weight": 1 } }, { "key": "10924", "source": "1746", "target": "471", "attributes": { "weight": 2 } }, { "key": "10928", "source": "1747", "target": "457", "attributes": { "weight": 2 } }, { "key": "10930", "source": "1748", "target": "457", "attributes": { "weight": 2 } }, { "key": "10934", "source": "1749", "target": "457", "attributes": { "weight": 2 } }, { "key": "21223", "source": "1750", "target": "489", "attributes": { "weight": 1 } }, { "key": "29182", "source": "1750", "target": "8", "attributes": { "weight": 1 } }, { "key": "12728", "source": "1750", "target": "695", "attributes": { "weight": 1 } }, { "key": "29184", "source": "1750", "target": "488", "attributes": { "weight": 1 } }, { "key": "17021", "source": "1750", "target": "70", "attributes": { "weight": 3 } }, { "key": "21219", "source": "1750", "target": "438", "attributes": { "weight": 1 } }, { "key": "32612", "source": "1750", "target": "791", "attributes": { "weight": 1 } }, { "key": "35706", "source": "1750", "target": "3248", "attributes": { "weight": 1 } }, { "key": "35705", "source": "1750", "target": "458", "attributes": { "weight": 1 } }, { "key": "27192", "source": "1750", "target": "1390", "attributes": { "weight": 3 } }, { "key": "26764", "source": "1750", "target": "454", "attributes": { "weight": 1 } }, { "key": "21220", "source": "1750", "target": "2251", "attributes": { "weight": 1 } }, { "key": "29181", "source": "1750", "target": "1024", "attributes": { "weight": 1 } }, { "key": "21221", "source": "1750", "target": "472", "attributes": { "weight": 1 } }, { "key": "21218", "source": "1750", "target": "221", "attributes": { "weight": 1 } }, { "key": "21222", "source": "1750", "target": "2095", "attributes": { "weight": 1 } }, { "key": "25900", "source": "1750", "target": "220", "attributes": { "weight": 2 } }, { "key": "29180", "source": "1750", "target": "674", "attributes": { "weight": 2 } }, { "key": "29178", "source": "1750", "target": "59", "attributes": { "weight": 2 } }, { "key": "29185", "source": "1750", "target": "595", "attributes": { "weight": 2 } }, { "key": "35708", "source": "1750", "target": "3250", "attributes": { "weight": 1 } }, { "key": "26930", "source": "1750", "target": "497", "attributes": { "weight": 1 } }, { "key": "10936", "source": "1750", "target": "457", "attributes": { "weight": 1 } }, { "key": "29179", "source": "1750", "target": "223", "attributes": { "weight": 2 } }, { "key": "29186", "source": "1750", "target": "1389", "attributes": { "weight": 2 } }, { "key": "29183", "source": "1750", "target": "474", "attributes": { "weight": 1 } }, { "key": "35707", "source": "1750", "target": "3249", "attributes": { "weight": 1 } }, { "key": "33723", "source": "1750", "target": "135", "attributes": { "weight": 1 } }, { "key": "21231", "source": "1751", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21225", "source": "1751", "target": "429", "attributes": { "weight": 1 } }, { "key": "21230", "source": "1751", "target": "2251", "attributes": { "weight": 1 } }, { "key": "21232", "source": "1751", "target": "489", "attributes": { "weight": 1 } }, { "key": "21226", "source": "1751", "target": "1354", "attributes": { "weight": 1 } }, { "key": "10938", "source": "1751", "target": "457", "attributes": { "weight": 1 } }, { "key": "21227", "source": "1751", "target": "221", "attributes": { "weight": 1 } }, { "key": "21228", "source": "1751", "target": "438", "attributes": { "weight": 1 } }, { "key": "21229", "source": "1751", "target": "440", "attributes": { "weight": 1 } }, { "key": "13619", "source": "1751", "target": "59", "attributes": { "weight": 3 } }, { "key": "17055", "source": "1752", "target": "59", "attributes": { "weight": 2 } }, { "key": "17054", "source": "1752", "target": "1354", "attributes": { "weight": 1 } }, { "key": "32243", "source": "1752", "target": "193", "attributes": { "weight": 1 } }, { "key": "10939", "source": "1752", "target": "1733", "attributes": { "weight": 2 } }, { "key": "23395", "source": "1752", "target": "2092", "attributes": { "weight": 1 } }, { "key": "23396", "source": "1752", "target": "2447", "attributes": { "weight": 1 } }, { "key": "10940", "source": "1753", "target": "457", "attributes": { "weight": 1 } }, { "key": "13677", "source": "1753", "target": "59", "attributes": { "weight": 4 } }, { "key": "10946", "source": "1754", "target": "220", "attributes": { "weight": 2 } }, { "key": "16592", "source": "1754", "target": "429", "attributes": { "weight": 1 } }, { "key": "16594", "source": "1754", "target": "674", "attributes": { "weight": 2 } }, { "key": "23908", "source": "1754", "target": "130", "attributes": { "weight": 2 } }, { "key": "16596", "source": "1754", "target": "231", "attributes": { "weight": 1 } }, { "key": "11814", "source": "1754", "target": "1808", "attributes": { "weight": 1 } }, { "key": "16595", "source": "1754", "target": "135", "attributes": { "weight": 1 } }, { "key": "32290", "source": "1754", "target": "791", "attributes": { "weight": 1 } }, { "key": "16593", "source": "1754", "target": "1354", "attributes": { "weight": 1 } }, { "key": "16577", "source": "1754", "target": "1337", "attributes": { "weight": 1 } }, { "key": "31209", "source": "1754", "target": "59", "attributes": { "weight": 1 } }, { "key": "16576", "source": "1754", "target": "1522", "attributes": { "weight": 3 } }, { "key": "11815", "source": "1754", "target": "70", "attributes": { "weight": 3 } }, { "key": "35792", "source": "1755", "target": "1360", "attributes": { "weight": 1 } }, { "key": "16599", "source": "1755", "target": "70", "attributes": { "weight": 2 } }, { "key": "12659", "source": "1755", "target": "695", "attributes": { "weight": 1 } }, { "key": "10948", "source": "1755", "target": "220", "attributes": { "weight": 2 } }, { "key": "16597", "source": "1755", "target": "1354", "attributes": { "weight": 1 } }, { "key": "35793", "source": "1755", "target": "1390", "attributes": { "weight": 1 } }, { "key": "16598", "source": "1755", "target": "135", "attributes": { "weight": 1 } }, { "key": "31214", "source": "1755", "target": "434", "attributes": { "weight": 2 } }, { "key": "31215", "source": "1755", "target": "674", "attributes": { "weight": 1 } }, { "key": "31216", "source": "1755", "target": "1389", "attributes": { "weight": 1 } }, { "key": "19193", "source": "1756", "target": "489", "attributes": { "weight": 1 } }, { "key": "19188", "source": "1756", "target": "471", "attributes": { "weight": 1 } }, { "key": "19184", "source": "1756", "target": "2251", "attributes": { "weight": 1 } }, { "key": "10950", "source": "1756", "target": "469", "attributes": { "weight": 1 } }, { "key": "19171", "source": "1756", "target": "431", "attributes": { "weight": 1 } }, { "key": "35795", "source": "1756", "target": "1026", "attributes": { "weight": 1 } }, { "key": "19172", "source": "1756", "target": "221", "attributes": { "weight": 1 } }, { "key": "19195", "source": "1756", "target": "1777", "attributes": { "weight": 1 } }, { "key": "19185", "source": "1756", "target": "1998", "attributes": { "weight": 1 } }, { "key": "33171", "source": "1756", "target": "473", "attributes": { "weight": 1 } }, { "key": "19173", "source": "1756", "target": "1522", "attributes": { "weight": 1 } }, { "key": "19181", "source": "1756", "target": "449", "attributes": { "weight": 1 } }, { "key": "19196", "source": "1756", "target": "235", "attributes": { "weight": 1 } }, { "key": "19183", "source": "1756", "target": "186", "attributes": { "weight": 1 } }, { "key": "25082", "source": "1756", "target": "452", "attributes": { "weight": 1 } }, { "key": "19178", "source": "1756", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19190", "source": "1756", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19176", "source": "1756", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19194", "source": "1756", "target": "73", "attributes": { "weight": 1 } }, { "key": "19189", "source": "1756", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19187", "source": "1756", "target": "2258", "attributes": { "weight": 1 } }, { "key": "10951", "source": "1756", "target": "492", "attributes": { "weight": 1 } }, { "key": "19191", "source": "1756", "target": "2268", "attributes": { "weight": 1 } }, { "key": "19174", "source": "1756", "target": "222", "attributes": { "weight": 1 } }, { "key": "19177", "source": "1756", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19182", "source": "1756", "target": "2248", "attributes": { "weight": 1 } }, { "key": "19179", "source": "1756", "target": "226", "attributes": { "weight": 1 } }, { "key": "19180", "source": "1756", "target": "448", "attributes": { "weight": 1 } }, { "key": "19186", "source": "1756", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19175", "source": "1756", "target": "2025", "attributes": { "weight": 1 } }, { "key": "19192", "source": "1756", "target": "480", "attributes": { "weight": 1 } }, { "key": "11000", "source": "1757", "target": "1026", "attributes": { "weight": 2 } }, { "key": "11029", "source": "1758", "target": "452", "attributes": { "weight": 2 } }, { "key": "11037", "source": "1759", "target": "469", "attributes": { "weight": 1 } }, { "key": "19729", "source": "1759", "target": "480", "attributes": { "weight": 1 } }, { "key": "19726", "source": "1759", "target": "449", "attributes": { "weight": 1 } }, { "key": "19727", "source": "1759", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19724", "source": "1759", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19730", "source": "1759", "target": "489", "attributes": { "weight": 1 } }, { "key": "19728", "source": "1759", "target": "2254", "attributes": { "weight": 1 } }, { "key": "19725", "source": "1759", "target": "2245", "attributes": { "weight": 1 } }, { "key": "29021", "source": "1760", "target": "495", "attributes": { "weight": 2 } }, { "key": "35874", "source": "1760", "target": "222", "attributes": { "weight": 1 } }, { "key": "35872", "source": "1760", "target": "130", "attributes": { "weight": 1 } }, { "key": "35876", "source": "1760", "target": "2244", "attributes": { "weight": 1 } }, { "key": "35884", "source": "1760", "target": "1375", "attributes": { "weight": 1 } }, { "key": "11038", "source": "1760", "target": "1026", "attributes": { "weight": 2 } }, { "key": "35882", "source": "1760", "target": "340", "attributes": { "weight": 1 } }, { "key": "35881", "source": "1760", "target": "471", "attributes": { "weight": 1 } }, { "key": "35885", "source": "1760", "target": "2278", "attributes": { "weight": 1 } }, { "key": "35879", "source": "1760", "target": "2248", "attributes": { "weight": 1 } }, { "key": "35883", "source": "1760", "target": "235", "attributes": { "weight": 1 } }, { "key": "35877", "source": "1760", "target": "2245", "attributes": { "weight": 1 } }, { "key": "28932", "source": "1760", "target": "479", "attributes": { "weight": 2 } }, { "key": "35875", "source": "1760", "target": "1023", "attributes": { "weight": 1 } }, { "key": "35873", "source": "1760", "target": "221", "attributes": { "weight": 1 } }, { "key": "35878", "source": "1760", "target": "448", "attributes": { "weight": 1 } }, { "key": "26425", "source": "1760", "target": "189", "attributes": { "weight": 1 } }, { "key": "35880", "source": "1760", "target": "2258", "attributes": { "weight": 1 } }, { "key": "32136", "source": "1761", "target": "1768", "attributes": { "weight": 1 } }, { "key": "11148", "source": "1761", "target": "220", "attributes": { "weight": 2 } }, { "key": "12238", "source": "1761", "target": "1362", "attributes": { "weight": 1 } }, { "key": "32135", "source": "1761", "target": "1141", "attributes": { "weight": 1 } }, { "key": "11150", "source": "1762", "target": "452", "attributes": { "weight": 2 } }, { "key": "30727", "source": "1762", "target": "2258", "attributes": { "weight": 1 } }, { "key": "11152", "source": "1762", "target": "492", "attributes": { "weight": 2 } }, { "key": "30728", "source": "1762", "target": "340", "attributes": { "weight": 1 } }, { "key": "11149", "source": "1762", "target": "222", "attributes": { "weight": 2 } }, { "key": "11151", "source": "1762", "target": "1026", "attributes": { "weight": 2 } }, { "key": "29030", "source": "1762", "target": "495", "attributes": { "weight": 2 } }, { "key": "22293", "source": "1763", "target": "794", "attributes": { "weight": 2 } }, { "key": "23888", "source": "1763", "target": "2288", "attributes": { "weight": 3 } }, { "key": "29659", "source": "1763", "target": "2883", "attributes": { "weight": 1 } }, { "key": "29673", "source": "1763", "target": "2782", "attributes": { "weight": 1 } }, { "key": "32539", "source": "1763", "target": "791", "attributes": { "weight": 1 } }, { "key": "29675", "source": "1763", "target": "1063", "attributes": { "weight": 1 } }, { "key": "29658", "source": "1763", "target": "357", "attributes": { "weight": 1 } }, { "key": "29671", "source": "1763", "target": "1060", "attributes": { "weight": 2 } }, { "key": "23884", "source": "1763", "target": "2463", "attributes": { "weight": 2 } }, { "key": "17473", "source": "1763", "target": "358", "attributes": { "weight": 4 } }, { "key": "29661", "source": "1763", "target": "1045", "attributes": { "weight": 2 } }, { "key": "29663", "source": "1763", "target": "359", "attributes": { "weight": 3 } }, { "key": "27598", "source": "1763", "target": "1042", "attributes": { "weight": 2 } }, { "key": "29674", "source": "1763", "target": "2892", "attributes": { "weight": 1 } }, { "key": "22673", "source": "1763", "target": "1037", "attributes": { "weight": 1 } }, { "key": "23885", "source": "1763", "target": "421", "attributes": { "weight": 3 } }, { "key": "29662", "source": "1763", "target": "2886", "attributes": { "weight": 1 } }, { "key": "29664", "source": "1763", "target": "361", "attributes": { "weight": 1 } }, { "key": "29669", "source": "1763", "target": "2888", "attributes": { "weight": 1 } }, { "key": "23887", "source": "1763", "target": "2464", "attributes": { "weight": 2 } }, { "key": "11162", "source": "1763", "target": "1036", "attributes": { "weight": 3 } }, { "key": "29665", "source": "1763", "target": "171", "attributes": { "weight": 1 } }, { "key": "23886", "source": "1763", "target": "1253", "attributes": { "weight": 3 } }, { "key": "29667", "source": "1763", "target": "362", "attributes": { "weight": 3 } }, { "key": "30457", "source": "1763", "target": "1046", "attributes": { "weight": 1 } }, { "key": "29657", "source": "1763", "target": "645", "attributes": { "weight": 1 } }, { "key": "23890", "source": "1763", "target": "2465", "attributes": { "weight": 3 } }, { "key": "29660", "source": "1763", "target": "419", "attributes": { "weight": 1 } }, { "key": "13207", "source": "1763", "target": "264", "attributes": { "weight": 1 } }, { "key": "14262", "source": "1763", "target": "164", "attributes": { "weight": 2 } }, { "key": "29672", "source": "1763", "target": "2891", "attributes": { "weight": 1 } }, { "key": "29668", "source": "1763", "target": "2115", "attributes": { "weight": 1 } }, { "key": "23889", "source": "1763", "target": "2116", "attributes": { "weight": 3 } }, { "key": "24524", "source": "1763", "target": "790", "attributes": { "weight": 1 } }, { "key": "29666", "source": "1763", "target": "468", "attributes": { "weight": 1 } }, { "key": "29670", "source": "1763", "target": "2889", "attributes": { "weight": 1 } }, { "key": "16841", "source": "1764", "target": "70", "attributes": { "weight": 2 } }, { "key": "36322", "source": "1764", "target": "1337", "attributes": { "weight": 1 } }, { "key": "31325", "source": "1764", "target": "674", "attributes": { "weight": 2 } }, { "key": "35977", "source": "1764", "target": "1360", "attributes": { "weight": 1 } }, { "key": "36321", "source": "1764", "target": "434", "attributes": { "weight": 1 } }, { "key": "36323", "source": "1764", "target": "1389", "attributes": { "weight": 1 } }, { "key": "11164", "source": "1764", "target": "220", "attributes": { "weight": 2 } }, { "key": "31324", "source": "1764", "target": "1354", "attributes": { "weight": 1 } }, { "key": "17475", "source": "1765", "target": "358", "attributes": { "weight": 3 } }, { "key": "24723", "source": "1765", "target": "2290", "attributes": { "weight": 2 } }, { "key": "30458", "source": "1765", "target": "1046", "attributes": { "weight": 2 } }, { "key": "31112", "source": "1765", "target": "556", "attributes": { "weight": 2 } }, { "key": "24634", "source": "1765", "target": "2118", "attributes": { "weight": 1 } }, { "key": "31111", "source": "1765", "target": "359", "attributes": { "weight": 3 } }, { "key": "24724", "source": "1765", "target": "2518", "attributes": { "weight": 2 } }, { "key": "26057", "source": "1765", "target": "163", "attributes": { "weight": 1 } }, { "key": "31114", "source": "1765", "target": "1060", "attributes": { "weight": 3 } }, { "key": "17907", "source": "1765", "target": "1380", "attributes": { "weight": 2 } }, { "key": "27872", "source": "1765", "target": "339", "attributes": { "weight": 2 } }, { "key": "32540", "source": "1765", "target": "791", "attributes": { "weight": 1 } }, { "key": "11165", "source": "1765", "target": "1036", "attributes": { "weight": 4 } }, { "key": "30711", "source": "1765", "target": "889", "attributes": { "weight": 2 } }, { "key": "24722", "source": "1765", "target": "2517", "attributes": { "weight": 2 } }, { "key": "22294", "source": "1765", "target": "794", "attributes": { "weight": 2 } }, { "key": "21583", "source": "1765", "target": "89", "attributes": { "weight": 1 } }, { "key": "24721", "source": "1765", "target": "2516", "attributes": { "weight": 2 } }, { "key": "22674", "source": "1765", "target": "1037", "attributes": { "weight": 1 } }, { "key": "34866", "source": "1765", "target": "2511", "attributes": { "weight": 1 } }, { "key": "37107", "source": "1765", "target": "2115", "attributes": { "weight": 1 } }, { "key": "31113", "source": "1765", "target": "1555", "attributes": { "weight": 1 } }, { "key": "24075", "source": "1766", "target": "437", "attributes": { "weight": 2 } }, { "key": "11170", "source": "1766", "target": "471", "attributes": { "weight": 3 } }, { "key": "32881", "source": "1766", "target": "470", "attributes": { "weight": 1 } }, { "key": "24074", "source": "1766", "target": "130", "attributes": { "weight": 2 } }, { "key": "24076", "source": "1766", "target": "468", "attributes": { "weight": 2 } }, { "key": "24077", "source": "1766", "target": "1374", "attributes": { "weight": 2 } }, { "key": "32141", "source": "1767", "target": "1141", "attributes": { "weight": 1 } }, { "key": "11207", "source": "1767", "target": "220", "attributes": { "weight": 2 } }, { "key": "12298", "source": "1768", "target": "450", "attributes": { "weight": 1 } }, { "key": "12301", "source": "1768", "target": "472", "attributes": { "weight": 1 } }, { "key": "32145", "source": "1768", "target": "1761", "attributes": { "weight": 1 } }, { "key": "25950", "source": "1768", "target": "1367", "attributes": { "weight": 1 } }, { "key": "12300", "source": "1768", "target": "1362", "attributes": { "weight": 1 } }, { "key": "12530", "source": "1768", "target": "1141", "attributes": { "weight": 2 } }, { "key": "11236", "source": "1768", "target": "220", "attributes": { "weight": 2 } }, { "key": "12299", "source": "1768", "target": "1359", "attributes": { "weight": 1 } }, { "key": "11238", "source": "1769", "target": "1026", "attributes": { "weight": 2 } }, { "key": "20848", "source": "1770", "target": "441", "attributes": { "weight": 1 } }, { "key": "20852", "source": "1770", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20850", "source": "1770", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20851", "source": "1770", "target": "2253", "attributes": { "weight": 1 } }, { "key": "11258", "source": "1770", "target": "469", "attributes": { "weight": 1 } }, { "key": "20849", "source": "1770", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20847", "source": "1770", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20846", "source": "1770", "target": "221", "attributes": { "weight": 1 } }, { "key": "20853", "source": "1770", "target": "489", "attributes": { "weight": 1 } }, { "key": "11263", "source": "1771", "target": "492", "attributes": { "weight": 1 } }, { "key": "11261", "source": "1771", "target": "452", "attributes": { "weight": 2 } }, { "key": "11262", "source": "1771", "target": "469", "attributes": { "weight": 2 } }, { "key": "35338", "source": "1771", "target": "494", "attributes": { "weight": 1 } }, { "key": "11270", "source": "1772", "target": "1036", "attributes": { "weight": 3 } }, { "key": "23263", "source": "1772", "target": "1553", "attributes": { "weight": 1 } }, { "key": "15365", "source": "1772", "target": "454", "attributes": { "weight": 1 } }, { "key": "35024", "source": "1772", "target": "352", "attributes": { "weight": 1 } }, { "key": "26093", "source": "1772", "target": "163", "attributes": { "weight": 1 } }, { "key": "23264", "source": "1772", "target": "2441", "attributes": { "weight": 1 } }, { "key": "27729", "source": "1772", "target": "1042", "attributes": { "weight": 2 } }, { "key": "23262", "source": "1772", "target": "638", "attributes": { "weight": 2 } }, { "key": "17512", "source": "1772", "target": "358", "attributes": { "weight": 1 } }, { "key": "11278", "source": "1773", "target": "1026", "attributes": { "weight": 2 } }, { "key": "23805", "source": "1774", "target": "241", "attributes": { "weight": 1 } }, { "key": "23806", "source": "1774", "target": "164", "attributes": { "weight": 1 } }, { "key": "23810", "source": "1774", "target": "358", "attributes": { "weight": 1 } }, { "key": "23801", "source": "1774", "target": "0", "attributes": { "weight": 2 } }, { "key": "23812", "source": "1774", "target": "242", "attributes": { "weight": 1 } }, { "key": "23833", "source": "1774", "target": "245", "attributes": { "weight": 1 } }, { "key": "23832", "source": "1774", "target": "580", "attributes": { "weight": 1 } }, { "key": "23841", "source": "1774", "target": "349", "attributes": { "weight": 1 } }, { "key": "23821", "source": "1774", "target": "682", "attributes": { "weight": 3 } }, { "key": "23829", "source": "1774", "target": "473", "attributes": { "weight": 1 } }, { "key": "23819", "source": "1774", "target": "6", "attributes": { "weight": 2 } }, { "key": "23842", "source": "1774", "target": "340", "attributes": { "weight": 1 } }, { "key": "23814", "source": "1774", "target": "789", "attributes": { "weight": 2 } }, { "key": "33829", "source": "1774", "target": "2646", "attributes": { "weight": 1 } }, { "key": "12726", "source": "1774", "target": "695", "attributes": { "weight": 2 } }, { "key": "23820", "source": "1774", "target": "681", "attributes": { "weight": 2 } }, { "key": "23804", "source": "1774", "target": "2454", "attributes": { "weight": 1 } }, { "key": "23823", "source": "1774", "target": "817", "attributes": { "weight": 2 } }, { "key": "23822", "source": "1774", "target": "243", "attributes": { "weight": 1 } }, { "key": "14898", "source": "1774", "target": "319", "attributes": { "weight": 2 } }, { "key": "23827", "source": "1774", "target": "468", "attributes": { "weight": 1 } }, { "key": "23818", "source": "1774", "target": "1024", "attributes": { "weight": 1 } }, { "key": "33828", "source": "1774", "target": "2", "attributes": { "weight": 1 } }, { "key": "23813", "source": "1774", "target": "454", "attributes": { "weight": 1 } }, { "key": "23836", "source": "1774", "target": "823", "attributes": { "weight": 2 } }, { "key": "23807", "source": "1774", "target": "442", "attributes": { "weight": 1 } }, { "key": "23825", "source": "1774", "target": "7", "attributes": { "weight": 1 } }, { "key": "23838", "source": "1774", "target": "178", "attributes": { "weight": 2 } }, { "key": "23845", "source": "1774", "target": "351", "attributes": { "weight": 1 } }, { "key": "23803", "source": "1774", "target": "1035", "attributes": { "weight": 1 } }, { "key": "23824", "source": "1774", "target": "171", "attributes": { "weight": 2 } }, { "key": "24463", "source": "1774", "target": "2505", "attributes": { "weight": 1 } }, { "key": "23843", "source": "1774", "target": "2455", "attributes": { "weight": 1 } }, { "key": "23817", "source": "1774", "target": "791", "attributes": { "weight": 2 } }, { "key": "23809", "source": "1774", "target": "3", "attributes": { "weight": 1 } }, { "key": "23839", "source": "1774", "target": "246", "attributes": { "weight": 1 } }, { "key": "23808", "source": "1774", "target": "419", "attributes": { "weight": 1 } }, { "key": "30618", "source": "1774", "target": "19", "attributes": { "weight": 1 } }, { "key": "14897", "source": "1774", "target": "304", "attributes": { "weight": 2 } }, { "key": "23802", "source": "1774", "target": "787", "attributes": { "weight": 2 } }, { "key": "23847", "source": "1774", "target": "828", "attributes": { "weight": 1 } }, { "key": "23831", "source": "1774", "target": "244", "attributes": { "weight": 1 } }, { "key": "23840", "source": "1774", "target": "14", "attributes": { "weight": 2 } }, { "key": "35040", "source": "1774", "target": "352", "attributes": { "weight": 1 } }, { "key": "23834", "source": "1774", "target": "13", "attributes": { "weight": 2 } }, { "key": "23815", "source": "1774", "target": "5", "attributes": { "weight": 1 } }, { "key": "23844", "source": "1774", "target": "1780", "attributes": { "weight": 2 } }, { "key": "23837", "source": "1774", "target": "794", "attributes": { "weight": 1 } }, { "key": "24549", "source": "1774", "target": "790", "attributes": { "weight": 1 } }, { "key": "23830", "source": "1774", "target": "346", "attributes": { "weight": 1 } }, { "key": "23826", "source": "1774", "target": "8", "attributes": { "weight": 2 } }, { "key": "23811", "source": "1774", "target": "452", "attributes": { "weight": 1 } }, { "key": "23816", "source": "1774", "target": "278", "attributes": { "weight": 3 } }, { "key": "23846", "source": "1774", "target": "2456", "attributes": { "weight": 1 } }, { "key": "23835", "source": "1774", "target": "479", "attributes": { "weight": 2 } }, { "key": "23828", "source": "1774", "target": "9", "attributes": { "weight": 2 } }, { "key": "11287", "source": "1774", "target": "595", "attributes": { "weight": 2 } }, { "key": "29056", "source": "1775", "target": "495", "attributes": { "weight": 2 } }, { "key": "21216", "source": "1775", "target": "2245", "attributes": { "weight": 1 } }, { "key": "37329", "source": "1775", "target": "57", "attributes": { "weight": 1 } }, { "key": "21217", "source": "1775", "target": "489", "attributes": { "weight": 1 } }, { "key": "11290", "source": "1775", "target": "452", "attributes": { "weight": 2 } }, { "key": "32609", "source": "1775", "target": "791", "attributes": { "weight": 1 } }, { "key": "37325", "source": "1775", "target": "442", "attributes": { "weight": 1 } }, { "key": "25392", "source": "1775", "target": "433", "attributes": { "weight": 2 } }, { "key": "37328", "source": "1775", "target": "454", "attributes": { "weight": 1 } }, { "key": "37326", "source": "1775", "target": "3", "attributes": { "weight": 1 } }, { "key": "25116", "source": "1775", "target": "1547", "attributes": { "weight": 2 } }, { "key": "37327", "source": "1775", "target": "183", "attributes": { "weight": 1 } }, { "key": "36126", "source": "1776", "target": "448", "attributes": { "weight": 1 } }, { "key": "36127", "source": "1776", "target": "2258", "attributes": { "weight": 1 } }, { "key": "36125", "source": "1776", "target": "1023", "attributes": { "weight": 1 } }, { "key": "11291", "source": "1776", "target": "1026", "attributes": { "weight": 2 } }, { "key": "11306", "source": "1777", "target": "469", "attributes": { "weight": 1 } }, { "key": "21277", "source": "1777", "target": "489", "attributes": { "weight": 1 } }, { "key": "26769", "source": "1777", "target": "189", "attributes": { "weight": 1 } }, { "key": "21278", "source": "1777", "target": "2189", "attributes": { "weight": 1 } }, { "key": "11305", "source": "1777", "target": "452", "attributes": { "weight": 1 } }, { "key": "11307", "source": "1777", "target": "190", "attributes": { "weight": 1 } }, { "key": "21275", "source": "1777", "target": "1023", "attributes": { "weight": 1 } }, { "key": "21273", "source": "1777", "target": "1756", "attributes": { "weight": 1 } }, { "key": "21279", "source": "1777", "target": "1375", "attributes": { "weight": 1 } }, { "key": "21274", "source": "1777", "target": "439", "attributes": { "weight": 1 } }, { "key": "21276", "source": "1777", "target": "2245", "attributes": { "weight": 1 } }, { "key": "26770", "source": "1778", "target": "189", "attributes": { "weight": 1 } }, { "key": "36155", "source": "1778", "target": "448", "attributes": { "weight": 1 } }, { "key": "36157", "source": "1778", "target": "471", "attributes": { "weight": 1 } }, { "key": "36153", "source": "1778", "target": "1023", "attributes": { "weight": 1 } }, { "key": "36158", "source": "1778", "target": "235", "attributes": { "weight": 1 } }, { "key": "36159", "source": "1778", "target": "1375", "attributes": { "weight": 1 } }, { "key": "11308", "source": "1778", "target": "1026", "attributes": { "weight": 2 } }, { "key": "36152", "source": "1778", "target": "222", "attributes": { "weight": 1 } }, { "key": "36154", "source": "1778", "target": "2244", "attributes": { "weight": 1 } }, { "key": "36151", "source": "1778", "target": "221", "attributes": { "weight": 1 } }, { "key": "36156", "source": "1778", "target": "2258", "attributes": { "weight": 1 } }, { "key": "36150", "source": "1778", "target": "130", "attributes": { "weight": 1 } }, { "key": "21504", "source": "1779", "target": "358", "attributes": { "weight": 2 } }, { "key": "32153", "source": "1779", "target": "454", "attributes": { "weight": 1 } }, { "key": "32154", "source": "1779", "target": "791", "attributes": { "weight": 2 } }, { "key": "32155", "source": "1779", "target": "468", "attributes": { "weight": 1 } }, { "key": "32152", "source": "1779", "target": "419", "attributes": { "weight": 1 } }, { "key": "30818", "source": "1779", "target": "3", "attributes": { "weight": 2 } }, { "key": "32150", "source": "1779", "target": "1035", "attributes": { "weight": 1 } }, { "key": "14323", "source": "1779", "target": "319", "attributes": { "weight": 1 } }, { "key": "26389", "source": "1779", "target": "5", "attributes": { "weight": 2 } }, { "key": "11328", "source": "1779", "target": "1742", "attributes": { "weight": 1 } }, { "key": "32151", "source": "1779", "target": "435", "attributes": { "weight": 1 } }, { "key": "25646", "source": "1780", "target": "791", "attributes": { "weight": 2 } }, { "key": "25647", "source": "1780", "target": "1024", "attributes": { "weight": 2 } }, { "key": "14911", "source": "1780", "target": "319", "attributes": { "weight": 2 } }, { "key": "25655", "source": "1780", "target": "2612", "attributes": { "weight": 1 } }, { "key": "16562", "source": "1780", "target": "787", "attributes": { "weight": 5 } }, { "key": "16567", "source": "1780", "target": "2076", "attributes": { "weight": 1 } }, { "key": "25652", "source": "1780", "target": "2505", "attributes": { "weight": 1 } }, { "key": "25654", "source": "1780", "target": "304", "attributes": { "weight": 1 } }, { "key": "25648", "source": "1780", "target": "2073", "attributes": { "weight": 1 } }, { "key": "23852", "source": "1780", "target": "1774", "attributes": { "weight": 2 } }, { "key": "25644", "source": "1780", "target": "789", "attributes": { "weight": 1 } }, { "key": "35043", "source": "1780", "target": "3", "attributes": { "weight": 1 } }, { "key": "25645", "source": "1780", "target": "5", "attributes": { "weight": 1 } }, { "key": "25649", "source": "1780", "target": "2074", "attributes": { "weight": 1 } }, { "key": "16566", "source": "1780", "target": "2075", "attributes": { "weight": 1 } }, { "key": "25651", "source": "1780", "target": "468", "attributes": { "weight": 1 } }, { "key": "25642", "source": "1780", "target": "2069", "attributes": { "weight": 1 } }, { "key": "25650", "source": "1780", "target": "8", "attributes": { "weight": 2 } }, { "key": "25653", "source": "1780", "target": "13", "attributes": { "weight": 1 } }, { "key": "18085", "source": "1780", "target": "1036", "attributes": { "weight": 2 } }, { "key": "11401", "source": "1780", "target": "1742", "attributes": { "weight": 1 } }, { "key": "16565", "source": "1780", "target": "2070", "attributes": { "weight": 2 } }, { "key": "16569", "source": "1780", "target": "2079", "attributes": { "weight": 2 } }, { "key": "25657", "source": "1780", "target": "14", "attributes": { "weight": 1 } }, { "key": "25658", "source": "1780", "target": "495", "attributes": { "weight": 2 } }, { "key": "25643", "source": "1780", "target": "454", "attributes": { "weight": 3 } }, { "key": "16561", "source": "1780", "target": "810", "attributes": { "weight": 2 } }, { "key": "16563", "source": "1780", "target": "2067", "attributes": { "weight": 2 } }, { "key": "16568", "source": "1780", "target": "2077", "attributes": { "weight": 2 } }, { "key": "25656", "source": "1780", "target": "595", "attributes": { "weight": 1 } }, { "key": "37429", "source": "1780", "target": "2080", "attributes": { "weight": 1 } }, { "key": "16564", "source": "1780", "target": "2068", "attributes": { "weight": 1 } }, { "key": "35044", "source": "1780", "target": "352", "attributes": { "weight": 1 } }, { "key": "22375", "source": "1780", "target": "794", "attributes": { "weight": 1 } }, { "key": "11405", "source": "1781", "target": "1787", "attributes": { "weight": 2 } }, { "key": "11407", "source": "1782", "target": "1788", "attributes": { "weight": 2 } }, { "key": "17889", "source": "1782", "target": "1380", "attributes": { "weight": 1 } }, { "key": "37083", "source": "1782", "target": "2579", "attributes": { "weight": 1 } }, { "key": "15097", "source": "1782", "target": "162", "attributes": { "weight": 2 } }, { "key": "15096", "source": "1782", "target": "161", "attributes": { "weight": 1 } }, { "key": "11408", "source": "1783", "target": "1787", "attributes": { "weight": 1 } }, { "key": "11409", "source": "1784", "target": "1787", "attributes": { "weight": 1 } }, { "key": "11412", "source": "1785", "target": "1787", "attributes": { "weight": 3 } }, { "key": "11415", "source": "1786", "target": "1787", "attributes": { "weight": 3 } }, { "key": "18093", "source": "1787", "target": "2184", "attributes": { "weight": 2 } }, { "key": "11417", "source": "1787", "target": "1783", "attributes": { "weight": 1 } }, { "key": "11422", "source": "1787", "target": "1788", "attributes": { "weight": 1 } }, { "key": "11419", "source": "1787", "target": "1784", "attributes": { "weight": 1 } }, { "key": "18091", "source": "1787", "target": "1541", "attributes": { "weight": 2 } }, { "key": "11420", "source": "1787", "target": "1785", "attributes": { "weight": 3 } }, { "key": "11418", "source": "1787", "target": "558", "attributes": { "weight": 3 } }, { "key": "18092", "source": "1787", "target": "2183", "attributes": { "weight": 2 } }, { "key": "11416", "source": "1787", "target": "1781", "attributes": { "weight": 1 } }, { "key": "11421", "source": "1787", "target": "1786", "attributes": { "weight": 3 } }, { "key": "11424", "source": "1788", "target": "162", "attributes": { "weight": 1 } }, { "key": "11426", "source": "1788", "target": "1787", "attributes": { "weight": 1 } }, { "key": "11425", "source": "1788", "target": "163", "attributes": { "weight": 2 } }, { "key": "11423", "source": "1788", "target": "1782", "attributes": { "weight": 1 } }, { "key": "33898", "source": "1789", "target": "1047", "attributes": { "weight": 1 } }, { "key": "28546", "source": "1789", "target": "199", "attributes": { "weight": 1 } }, { "key": "11474", "source": "1789", "target": "208", "attributes": { "weight": 1 } }, { "key": "11473", "source": "1789", "target": "370", "attributes": { "weight": 1 } }, { "key": "11647", "source": "1790", "target": "208", "attributes": { "weight": 1 } }, { "key": "11646", "source": "1790", "target": "199", "attributes": { "weight": 1 } }, { "key": "11661", "source": "1791", "target": "208", "attributes": { "weight": 1 } }, { "key": "11660", "source": "1791", "target": "370", "attributes": { "weight": 1 } }, { "key": "11668", "source": "1792", "target": "370", "attributes": { "weight": 1 } }, { "key": "18910", "source": "1792", "target": "1174", "attributes": { "weight": 1 } }, { "key": "11768", "source": "1793", "target": "1801", "attributes": { "weight": 2 } }, { "key": "11769", "source": "1793", "target": "1806", "attributes": { "weight": 3 } }, { "key": "17554", "source": "1793", "target": "1804", "attributes": { "weight": 1 } }, { "key": "11775", "source": "1794", "target": "1806", "attributes": { "weight": 4 } }, { "key": "17559", "source": "1794", "target": "1056", "attributes": { "weight": 2 } }, { "key": "31842", "source": "1794", "target": "2115", "attributes": { "weight": 1 } }, { "key": "11773", "source": "1794", "target": "1803", "attributes": { "weight": 2 } }, { "key": "24473", "source": "1794", "target": "1802", "attributes": { "weight": 1 } }, { "key": "24472", "source": "1794", "target": "358", "attributes": { "weight": 1 } }, { "key": "11774", "source": "1794", "target": "1804", "attributes": { "weight": 3 } }, { "key": "24471", "source": "1794", "target": "1796", "attributes": { "weight": 1 } }, { "key": "11771", "source": "1794", "target": "1799", "attributes": { "weight": 2 } }, { "key": "11770", "source": "1794", "target": "1798", "attributes": { "weight": 2 } }, { "key": "11772", "source": "1794", "target": "1801", "attributes": { "weight": 3 } }, { "key": "24474", "source": "1794", "target": "1805", "attributes": { "weight": 1 } }, { "key": "17560", "source": "1794", "target": "2148", "attributes": { "weight": 1 } }, { "key": "17562", "source": "1795", "target": "1806", "attributes": { "weight": 2 } }, { "key": "31843", "source": "1795", "target": "2115", "attributes": { "weight": 1 } }, { "key": "17561", "source": "1795", "target": "1796", "attributes": { "weight": 1 } }, { "key": "11776", "source": "1795", "target": "1801", "attributes": { "weight": 3 } }, { "key": "17570", "source": "1796", "target": "1804", "attributes": { "weight": 2 } }, { "key": "17567", "source": "1796", "target": "1798", "attributes": { "weight": 2 } }, { "key": "17565", "source": "1796", "target": "1795", "attributes": { "weight": 1 } }, { "key": "24479", "source": "1796", "target": "1803", "attributes": { "weight": 1 } }, { "key": "24480", "source": "1796", "target": "1805", "attributes": { "weight": 1 } }, { "key": "17566", "source": "1796", "target": "358", "attributes": { "weight": 2 } }, { "key": "17568", "source": "1796", "target": "1799", "attributes": { "weight": 3 } }, { "key": "24478", "source": "1796", "target": "1794", "attributes": { "weight": 1 } }, { "key": "17569", "source": "1796", "target": "1802", "attributes": { "weight": 1 } }, { "key": "17571", "source": "1796", "target": "1806", "attributes": { "weight": 2 } }, { "key": "24481", "source": "1796", "target": "2152", "attributes": { "weight": 1 } }, { "key": "11777", "source": "1796", "target": "1801", "attributes": { "weight": 2 } }, { "key": "11780", "source": "1798", "target": "1801", "attributes": { "weight": 3 } }, { "key": "24496", "source": "1798", "target": "358", "attributes": { "weight": 1 } }, { "key": "24497", "source": "1798", "target": "2141", "attributes": { "weight": 1 } }, { "key": "24501", "source": "1798", "target": "1805", "attributes": { "weight": 1 } }, { "key": "11779", "source": "1798", "target": "1794", "attributes": { "weight": 2 } }, { "key": "32396", "source": "1798", "target": "791", "attributes": { "weight": 1 } }, { "key": "31898", "source": "1798", "target": "2115", "attributes": { "weight": 1 } }, { "key": "24500", "source": "1798", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17596", "source": "1798", "target": "1796", "attributes": { "weight": 2 } }, { "key": "24499", "source": "1798", "target": "1056", "attributes": { "weight": 1 } }, { "key": "37265", "source": "1798", "target": "3349", "attributes": { "weight": 1 } }, { "key": "17598", "source": "1798", "target": "1806", "attributes": { "weight": 2 } }, { "key": "24498", "source": "1798", "target": "1799", "attributes": { "weight": 2 } }, { "key": "17597", "source": "1798", "target": "2148", "attributes": { "weight": 1 } }, { "key": "37267", "source": "1799", "target": "358", "attributes": { "weight": 1 } }, { "key": "11781", "source": "1799", "target": "1794", "attributes": { "weight": 2 } }, { "key": "17612", "source": "1799", "target": "1796", "attributes": { "weight": 3 } }, { "key": "11782", "source": "1799", "target": "1804", "attributes": { "weight": 4 } }, { "key": "37266", "source": "1799", "target": "1036", "attributes": { "weight": 1 } }, { "key": "24526", "source": "1799", "target": "1806", "attributes": { "weight": 2 } }, { "key": "24525", "source": "1799", "target": "1798", "attributes": { "weight": 2 } }, { "key": "11783", "source": "1800", "target": "1801", "attributes": { "weight": 2 } }, { "key": "11784", "source": "1800", "target": "1806", "attributes": { "weight": 3 } }, { "key": "32541", "source": "1800", "target": "791", "attributes": { "weight": 1 } }, { "key": "17626", "source": "1801", "target": "358", "attributes": { "weight": 1 } }, { "key": "24537", "source": "1801", "target": "2509", "attributes": { "weight": 1 } }, { "key": "11788", "source": "1801", "target": "1796", "attributes": { "weight": 2 } }, { "key": "11785", "source": "1801", "target": "1793", "attributes": { "weight": 2 } }, { "key": "11792", "source": "1801", "target": "1802", "attributes": { "weight": 3 } }, { "key": "32565", "source": "1801", "target": "791", "attributes": { "weight": 1 } }, { "key": "11786", "source": "1801", "target": "1794", "attributes": { "weight": 3 } }, { "key": "17636", "source": "1801", "target": "2149", "attributes": { "weight": 1 } }, { "key": "17630", "source": "1801", "target": "420", "attributes": { "weight": 1 } }, { "key": "17633", "source": "1801", "target": "1056", "attributes": { "weight": 3 } }, { "key": "24535", "source": "1801", "target": "1520", "attributes": { "weight": 1 } }, { "key": "11794", "source": "1801", "target": "1804", "attributes": { "weight": 3 } }, { "key": "17627", "source": "1801", "target": "788", "attributes": { "weight": 1 } }, { "key": "11793", "source": "1801", "target": "1803", "attributes": { "weight": 2 } }, { "key": "31978", "source": "1801", "target": "2115", "attributes": { "weight": 1 } }, { "key": "11787", "source": "1801", "target": "1795", "attributes": { "weight": 3 } }, { "key": "11796", "source": "1801", "target": "1806", "attributes": { "weight": 4 } }, { "key": "17625", "source": "1801", "target": "2132", "attributes": { "weight": 1 } }, { "key": "17632", "source": "1801", "target": "2140", "attributes": { "weight": 1 } }, { "key": "11791", "source": "1801", "target": "1800", "attributes": { "weight": 2 } }, { "key": "17624", "source": "1801", "target": "2127", "attributes": { "weight": 1 } }, { "key": "17631", "source": "1801", "target": "422", "attributes": { "weight": 1 } }, { "key": "11797", "source": "1801", "target": "1807", "attributes": { "weight": 3 } }, { "key": "11795", "source": "1801", "target": "1805", "attributes": { "weight": 3 } }, { "key": "24536", "source": "1801", "target": "1045", "attributes": { "weight": 2 } }, { "key": "17629", "source": "1801", "target": "2137", "attributes": { "weight": 1 } }, { "key": "30468", "source": "1801", "target": "1046", "attributes": { "weight": 1 } }, { "key": "24534", "source": "1801", "target": "2128", "attributes": { "weight": 1 } }, { "key": "11790", "source": "1801", "target": "1798", "attributes": { "weight": 3 } }, { "key": "22301", "source": "1801", "target": "794", "attributes": { "weight": 1 } }, { "key": "17634", "source": "1801", "target": "423", "attributes": { "weight": 1 } }, { "key": "22681", "source": "1801", "target": "1037", "attributes": { "weight": 2 } }, { "key": "28629", "source": "1801", "target": "1253", "attributes": { "weight": 1 } }, { "key": "29712", "source": "1801", "target": "2465", "attributes": { "weight": 1 } }, { "key": "17628", "source": "1801", "target": "2135", "attributes": { "weight": 1 } }, { "key": "17637", "source": "1801", "target": "2152", "attributes": { "weight": 1 } }, { "key": "37268", "source": "1801", "target": "1799", "attributes": { "weight": 1 } }, { "key": "17635", "source": "1801", "target": "2145", "attributes": { "weight": 1 } }, { "key": "11798", "source": "1802", "target": "1801", "attributes": { "weight": 3 } }, { "key": "17648", "source": "1802", "target": "1796", "attributes": { "weight": 1 } }, { "key": "17649", "source": "1802", "target": "2148", "attributes": { "weight": 1 } }, { "key": "17650", "source": "1802", "target": "1804", "attributes": { "weight": 1 } }, { "key": "31985", "source": "1802", "target": "2115", "attributes": { "weight": 1 } }, { "key": "24542", "source": "1802", "target": "1794", "attributes": { "weight": 1 } }, { "key": "17651", "source": "1802", "target": "1806", "attributes": { "weight": 2 } }, { "key": "24543", "source": "1803", "target": "1796", "attributes": { "weight": 1 } }, { "key": "17655", "source": "1803", "target": "1804", "attributes": { "weight": 1 } }, { "key": "11799", "source": "1803", "target": "1794", "attributes": { "weight": 2 } }, { "key": "11800", "source": "1803", "target": "1801", "attributes": { "weight": 2 } }, { "key": "17666", "source": "1804", "target": "1802", "attributes": { "weight": 1 } }, { "key": "32026", "source": "1804", "target": "2115", "attributes": { "weight": 1 } }, { "key": "17658", "source": "1804", "target": "358", "attributes": { "weight": 1 } }, { "key": "17656", "source": "1804", "target": "1793", "attributes": { "weight": 1 } }, { "key": "17663", "source": "1804", "target": "2144", "attributes": { "weight": 1 } }, { "key": "17665", "source": "1804", "target": "2148", "attributes": { "weight": 1 } }, { "key": "17657", "source": "1804", "target": "1796", "attributes": { "weight": 2 } }, { "key": "11802", "source": "1804", "target": "1799", "attributes": { "weight": 4 } }, { "key": "24547", "source": "1804", "target": "1046", "attributes": { "weight": 2 } }, { "key": "11803", "source": "1804", "target": "1801", "attributes": { "weight": 3 } }, { "key": "17661", "source": "1804", "target": "1056", "attributes": { "weight": 2 } }, { "key": "17660", "source": "1804", "target": "2141", "attributes": { "weight": 1 } }, { "key": "32605", "source": "1804", "target": "791", "attributes": { "weight": 1 } }, { "key": "17669", "source": "1804", "target": "1807", "attributes": { "weight": 1 } }, { "key": "17662", "source": "1804", "target": "2143", "attributes": { "weight": 1 } }, { "key": "17668", "source": "1804", "target": "1805", "attributes": { "weight": 1 } }, { "key": "24546", "source": "1804", "target": "2132", "attributes": { "weight": 1 } }, { "key": "17667", "source": "1804", "target": "1803", "attributes": { "weight": 1 } }, { "key": "11801", "source": "1804", "target": "1794", "attributes": { "weight": 3 } }, { "key": "24545", "source": "1804", "target": "2130", "attributes": { "weight": 1 } }, { "key": "30125", "source": "1804", "target": "2949", "attributes": { "weight": 1 } }, { "key": "17664", "source": "1804", "target": "362", "attributes": { "weight": 1 } }, { "key": "22373", "source": "1804", "target": "794", "attributes": { "weight": 1 } }, { "key": "24548", "source": "1804", "target": "1798", "attributes": { "weight": 1 } }, { "key": "11804", "source": "1804", "target": "1806", "attributes": { "weight": 3 } }, { "key": "32607", "source": "1805", "target": "791", "attributes": { "weight": 1 } }, { "key": "17670", "source": "1805", "target": "358", "attributes": { "weight": 1 } }, { "key": "11806", "source": "1805", "target": "1806", "attributes": { "weight": 4 } }, { "key": "11805", "source": "1805", "target": "1801", "attributes": { "weight": 3 } }, { "key": "24700", "source": "1805", "target": "5", "attributes": { "weight": 1 } }, { "key": "32027", "source": "1805", "target": "2115", "attributes": { "weight": 1 } }, { "key": "17671", "source": "1805", "target": "1804", "attributes": { "weight": 1 } }, { "key": "24550", "source": "1805", "target": "1794", "attributes": { "weight": 1 } }, { "key": "24552", "source": "1805", "target": "1798", "attributes": { "weight": 1 } }, { "key": "24551", "source": "1805", "target": "1796", "attributes": { "weight": 1 } }, { "key": "24556", "source": "1806", "target": "1799", "attributes": { "weight": 2 } }, { "key": "17686", "source": "1806", "target": "2146", "attributes": { "weight": 2 } }, { "key": "17674", "source": "1806", "target": "1795", "attributes": { "weight": 2 } }, { "key": "17679", "source": "1806", "target": "2134", "attributes": { "weight": 1 } }, { "key": "11809", "source": "1806", "target": "1800", "attributes": { "weight": 3 } }, { "key": "17680", "source": "1806", "target": "2135", "attributes": { "weight": 2 } }, { "key": "24557", "source": "1806", "target": "2144", "attributes": { "weight": 1 } }, { "key": "17690", "source": "1806", "target": "2149", "attributes": { "weight": 1 } }, { "key": "17694", "source": "1806", "target": "2152", "attributes": { "weight": 1 } }, { "key": "17675", "source": "1806", "target": "2131", "attributes": { "weight": 1 } }, { "key": "11812", "source": "1806", "target": "1805", "attributes": { "weight": 4 } }, { "key": "17691", "source": "1806", "target": "2150", "attributes": { "weight": 1 } }, { "key": "32028", "source": "1806", "target": "2115", "attributes": { "weight": 1 } }, { "key": "17685", "source": "1806", "target": "2145", "attributes": { "weight": 1 } }, { "key": "17681", "source": "1806", "target": "2136", "attributes": { "weight": 1 } }, { "key": "24555", "source": "1806", "target": "2508", "attributes": { "weight": 1 } }, { "key": "17693", "source": "1806", "target": "1807", "attributes": { "weight": 2 } }, { "key": "24558", "source": "1806", "target": "2509", "attributes": { "weight": 1 } }, { "key": "17684", "source": "1806", "target": "2142", "attributes": { "weight": 1 } }, { "key": "17687", "source": "1806", "target": "2147", "attributes": { "weight": 1 } }, { "key": "17676", "source": "1806", "target": "1796", "attributes": { "weight": 2 } }, { "key": "11810", "source": "1806", "target": "1801", "attributes": { "weight": 4 } }, { "key": "37271", "source": "1806", "target": "3349", "attributes": { "weight": 1 } }, { "key": "17683", "source": "1806", "target": "2138", "attributes": { "weight": 1 } }, { "key": "17672", "source": "1806", "target": "2128", "attributes": { "weight": 2 } }, { "key": "11807", "source": "1806", "target": "1793", "attributes": { "weight": 3 } }, { "key": "17682", "source": "1806", "target": "1798", "attributes": { "weight": 2 } }, { "key": "17689", "source": "1806", "target": "1802", "attributes": { "weight": 2 } }, { "key": "11808", "source": "1806", "target": "1794", "attributes": { "weight": 4 } }, { "key": "17677", "source": "1806", "target": "2132", "attributes": { "weight": 2 } }, { "key": "24554", "source": "1806", "target": "2141", "attributes": { "weight": 1 } }, { "key": "11811", "source": "1806", "target": "1804", "attributes": { "weight": 3 } }, { "key": "17688", "source": "1806", "target": "2148", "attributes": { "weight": 1 } }, { "key": "17678", "source": "1806", "target": "2133", "attributes": { "weight": 1 } }, { "key": "17673", "source": "1806", "target": "2129", "attributes": { "weight": 1 } }, { "key": "17692", "source": "1806", "target": "2151", "attributes": { "weight": 1 } }, { "key": "11813", "source": "1807", "target": "1801", "attributes": { "weight": 3 } }, { "key": "24562", "source": "1807", "target": "2141", "attributes": { "weight": 1 } }, { "key": "17696", "source": "1807", "target": "358", "attributes": { "weight": 1 } }, { "key": "17699", "source": "1807", "target": "1806", "attributes": { "weight": 2 } }, { "key": "17698", "source": "1807", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17697", "source": "1807", "target": "2135", "attributes": { "weight": 2 } }, { "key": "24563", "source": "1807", "target": "2152", "attributes": { "weight": 1 } }, { "key": "19100", "source": "1808", "target": "489", "attributes": { "weight": 1 } }, { "key": "31210", "source": "1808", "target": "674", "attributes": { "weight": 1 } }, { "key": "11818", "source": "1808", "target": "1118", "attributes": { "weight": 1 } }, { "key": "11819", "source": "1808", "target": "70", "attributes": { "weight": 1 } }, { "key": "11816", "source": "1808", "target": "1754", "attributes": { "weight": 1 } }, { "key": "11817", "source": "1808", "target": "1733", "attributes": { "weight": 1 } }, { "key": "19098", "source": "1808", "target": "429", "attributes": { "weight": 1 } }, { "key": "19099", "source": "1808", "target": "231", "attributes": { "weight": 1 } }, { "key": "11864", "source": "1809", "target": "1813", "attributes": { "weight": 2 } }, { "key": "30995", "source": "1809", "target": "3028", "attributes": { "weight": 1 } }, { "key": "30994", "source": "1809", "target": "2177", "attributes": { "weight": 1 } }, { "key": "30991", "source": "1809", "target": "2534", "attributes": { "weight": 1 } }, { "key": "17360", "source": "1809", "target": "358", "attributes": { "weight": 2 } }, { "key": "11863", "source": "1809", "target": "638", "attributes": { "weight": 4 } }, { "key": "27758", "source": "1809", "target": "2535", "attributes": { "weight": 1 } }, { "key": "30989", "source": "1809", "target": "2533", "attributes": { "weight": 1 } }, { "key": "11862", "source": "1809", "target": "636", "attributes": { "weight": 4 } }, { "key": "30990", "source": "1809", "target": "2712", "attributes": { "weight": 1 } }, { "key": "27733", "source": "1809", "target": "1553", "attributes": { "weight": 1 } }, { "key": "30992", "source": "1809", "target": "1539", "attributes": { "weight": 1 } }, { "key": "30993", "source": "1809", "target": "1550", "attributes": { "weight": 1 } }, { "key": "11883", "source": "1810", "target": "1363", "attributes": { "weight": 2 } }, { "key": "24061", "source": "1810", "target": "471", "attributes": { "weight": 1 } }, { "key": "24062", "source": "1810", "target": "2469", "attributes": { "weight": 1 } }, { "key": "24063", "source": "1810", "target": "231", "attributes": { "weight": 3 } }, { "key": "24060", "source": "1810", "target": "130", "attributes": { "weight": 2 } }, { "key": "17248", "source": "1811", "target": "449", "attributes": { "weight": 1 } }, { "key": "33422", "source": "1811", "target": "135", "attributes": { "weight": 1 } }, { "key": "35361", "source": "1811", "target": "3194", "attributes": { "weight": 1 } }, { "key": "35362", "source": "1811", "target": "1282", "attributes": { "weight": 1 } }, { "key": "11891", "source": "1811", "target": "1363", "attributes": { "weight": 1 } }, { "key": "12249", "source": "1811", "target": "1836", "attributes": { "weight": 2 } }, { "key": "12248", "source": "1811", "target": "435", "attributes": { "weight": 1 } }, { "key": "35359", "source": "1811", "target": "1161", "attributes": { "weight": 1 } }, { "key": "35360", "source": "1811", "target": "2105", "attributes": { "weight": 1 } }, { "key": "12250", "source": "1811", "target": "472", "attributes": { "weight": 1 } }, { "key": "32826", "source": "1812", "target": "51", "attributes": { "weight": 2 } }, { "key": "20711", "source": "1812", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20709", "source": "1812", "target": "432", "attributes": { "weight": 1 } }, { "key": "20713", "source": "1812", "target": "464", "attributes": { "weight": 1 } }, { "key": "20712", "source": "1812", "target": "2250", "attributes": { "weight": 1 } }, { "key": "27158", "source": "1812", "target": "1282", "attributes": { "weight": 2 } }, { "key": "20717", "source": "1812", "target": "487", "attributes": { "weight": 1 } }, { "key": "33812", "source": "1812", "target": "682", "attributes": { "weight": 1 } }, { "key": "12023", "source": "1812", "target": "135", "attributes": { "weight": 5 } }, { "key": "27155", "source": "1812", "target": "1832", "attributes": { "weight": 3 } }, { "key": "32827", "source": "1812", "target": "2258", "attributes": { "weight": 2 } }, { "key": "20714", "source": "1812", "target": "2254", "attributes": { "weight": 1 } }, { "key": "27156", "source": "1812", "target": "1219", "attributes": { "weight": 1 } }, { "key": "27157", "source": "1812", "target": "1247", "attributes": { "weight": 1 } }, { "key": "20716", "source": "1812", "target": "2262", "attributes": { "weight": 1 } }, { "key": "33630", "source": "1812", "target": "450", "attributes": { "weight": 1 } }, { "key": "23648", "source": "1812", "target": "220", "attributes": { "weight": 1 } }, { "key": "20710", "source": "1812", "target": "1070", "attributes": { "weight": 1 } }, { "key": "30935", "source": "1812", "target": "3", "attributes": { "weight": 2 } }, { "key": "20715", "source": "1812", "target": "472", "attributes": { "weight": 6 } }, { "key": "35018", "source": "1812", "target": "352", "attributes": { "weight": 1 } }, { "key": "18326", "source": "1812", "target": "1092", "attributes": { "weight": 1 } }, { "key": "23365", "source": "1812", "target": "223", "attributes": { "weight": 1 } }, { "key": "32825", "source": "1812", "target": "435", "attributes": { "weight": 2 } }, { "key": "20718", "source": "1812", "target": "489", "attributes": { "weight": 2 } }, { "key": "12025", "source": "1813", "target": "636", "attributes": { "weight": 3 } }, { "key": "12027", "source": "1813", "target": "638", "attributes": { "weight": 3 } }, { "key": "31057", "source": "1813", "target": "2712", "attributes": { "weight": 1 } }, { "key": "12026", "source": "1813", "target": "1809", "attributes": { "weight": 2 } }, { "key": "15394", "source": "1814", "target": "1158", "attributes": { "weight": 1 } }, { "key": "12041", "source": "1814", "target": "248", "attributes": { "weight": 1 } }, { "key": "12841", "source": "1814", "target": "370", "attributes": { "weight": 1 } }, { "key": "12842", "source": "1814", "target": "785", "attributes": { "weight": 1 } }, { "key": "34920", "source": "1815", "target": "3025", "attributes": { "weight": 1 } }, { "key": "32063", "source": "1815", "target": "1867", "attributes": { "weight": 1 } }, { "key": "12052", "source": "1815", "target": "638", "attributes": { "weight": 3 } }, { "key": "32064", "source": "1815", "target": "1816", "attributes": { "weight": 1 } }, { "key": "34921", "source": "1815", "target": "1539", "attributes": { "weight": 1 } }, { "key": "16499", "source": "1816", "target": "2060", "attributes": { "weight": 1 } }, { "key": "12054", "source": "1816", "target": "638", "attributes": { "weight": 5 } }, { "key": "32071", "source": "1816", "target": "3039", "attributes": { "weight": 1 } }, { "key": "32066", "source": "1816", "target": "454", "attributes": { "weight": 1 } }, { "key": "26096", "source": "1816", "target": "1550", "attributes": { "weight": 2 } }, { "key": "32068", "source": "1816", "target": "3079", "attributes": { "weight": 1 } }, { "key": "16498", "source": "1816", "target": "1387", "attributes": { "weight": 2 } }, { "key": "32070", "source": "1816", "target": "1815", "attributes": { "weight": 1 } }, { "key": "31068", "source": "1816", "target": "636", "attributes": { "weight": 2 } }, { "key": "32069", "source": "1816", "target": "1867", "attributes": { "weight": 1 } }, { "key": "32067", "source": "1816", "target": "1539", "attributes": { "weight": 1 } }, { "key": "32065", "source": "1816", "target": "35", "attributes": { "weight": 1 } }, { "key": "28401", "source": "1819", "target": "1821", "attributes": { "weight": 1 } }, { "key": "28402", "source": "1819", "target": "579", "attributes": { "weight": 1 } }, { "key": "28399", "source": "1819", "target": "698", "attributes": { "weight": 1 } }, { "key": "27748", "source": "1819", "target": "170", "attributes": { "weight": 3 } }, { "key": "12084", "source": "1819", "target": "1512", "attributes": { "weight": 4 } }, { "key": "13942", "source": "1819", "target": "180", "attributes": { "weight": 2 } }, { "key": "28400", "source": "1819", "target": "707", "attributes": { "weight": 2 } }, { "key": "23725", "source": "1820", "target": "168", "attributes": { "weight": 1 } }, { "key": "12086", "source": "1820", "target": "1824", "attributes": { "weight": 1 } }, { "key": "25020", "source": "1820", "target": "1240", "attributes": { "weight": 2 } }, { "key": "22696", "source": "1820", "target": "580", "attributes": { "weight": 1 } }, { "key": "27754", "source": "1820", "target": "170", "attributes": { "weight": 1 } }, { "key": "25021", "source": "1820", "target": "305", "attributes": { "weight": 2 } }, { "key": "22695", "source": "1820", "target": "579", "attributes": { "weight": 2 } }, { "key": "25019", "source": "1820", "target": "278", "attributes": { "weight": 2 } }, { "key": "28425", "source": "1820", "target": "1512", "attributes": { "weight": 1 } }, { "key": "13960", "source": "1820", "target": "180", "attributes": { "weight": 1 } }, { "key": "12085", "source": "1820", "target": "707", "attributes": { "weight": 3 } }, { "key": "28431", "source": "1821", "target": "1819", "attributes": { "weight": 1 } }, { "key": "28694", "source": "1821", "target": "707", "attributes": { "weight": 1 } }, { "key": "12087", "source": "1821", "target": "1512", "attributes": { "weight": 3 } }, { "key": "28447", "source": "1822", "target": "2759", "attributes": { "weight": 2 } }, { "key": "25035", "source": "1822", "target": "1240", "attributes": { "weight": 2 } }, { "key": "25034", "source": "1822", "target": "707", "attributes": { "weight": 2 } }, { "key": "28451", "source": "1822", "target": "2770", "attributes": { "weight": 2 } }, { "key": "28449", "source": "1822", "target": "579", "attributes": { "weight": 1 } }, { "key": "28448", "source": "1822", "target": "2761", "attributes": { "weight": 2 } }, { "key": "28450", "source": "1822", "target": "1512", "attributes": { "weight": 1 } }, { "key": "27756", "source": "1822", "target": "170", "attributes": { "weight": 1 } }, { "key": "26846", "source": "1822", "target": "278", "attributes": { "weight": 1 } }, { "key": "25036", "source": "1822", "target": "305", "attributes": { "weight": 2 } }, { "key": "12091", "source": "1822", "target": "1824", "attributes": { "weight": 1 } }, { "key": "21464", "source": "1823", "target": "579", "attributes": { "weight": 2 } }, { "key": "21462", "source": "1823", "target": "1240", "attributes": { "weight": 3 } }, { "key": "12604", "source": "1823", "target": "180", "attributes": { "weight": 2 } }, { "key": "27757", "source": "1823", "target": "170", "attributes": { "weight": 1 } }, { "key": "12103", "source": "1823", "target": "698", "attributes": { "weight": 4 } }, { "key": "13509", "source": "1823", "target": "305", "attributes": { "weight": 2 } }, { "key": "28483", "source": "1823", "target": "278", "attributes": { "weight": 2 } }, { "key": "12104", "source": "1823", "target": "1824", "attributes": { "weight": 1 } }, { "key": "21463", "source": "1823", "target": "1870", "attributes": { "weight": 2 } }, { "key": "28484", "source": "1823", "target": "580", "attributes": { "weight": 1 } }, { "key": "12102", "source": "1823", "target": "1191", "attributes": { "weight": 6 } }, { "key": "28482", "source": "1823", "target": "700", "attributes": { "weight": 2 } }, { "key": "21461", "source": "1823", "target": "1905", "attributes": { "weight": 2 } }, { "key": "28485", "source": "1823", "target": "1512", "attributes": { "weight": 1 } }, { "key": "12111", "source": "1824", "target": "1823", "attributes": { "weight": 1 } }, { "key": "12110", "source": "1824", "target": "1512", "attributes": { "weight": 2 } }, { "key": "12106", "source": "1824", "target": "707", "attributes": { "weight": 2 } }, { "key": "12105", "source": "1824", "target": "1191", "attributes": { "weight": 3 } }, { "key": "12108", "source": "1824", "target": "1820", "attributes": { "weight": 1 } }, { "key": "12112", "source": "1824", "target": "1825", "attributes": { "weight": 1 } }, { "key": "12107", "source": "1824", "target": "904", "attributes": { "weight": 1 } }, { "key": "12109", "source": "1824", "target": "1822", "attributes": { "weight": 1 } }, { "key": "12117", "source": "1825", "target": "1824", "attributes": { "weight": 1 } }, { "key": "12116", "source": "1825", "target": "1512", "attributes": { "weight": 1 } }, { "key": "12115", "source": "1825", "target": "580", "attributes": { "weight": 1 } }, { "key": "12113", "source": "1825", "target": "1191", "attributes": { "weight": 1 } }, { "key": "12114", "source": "1825", "target": "707", "attributes": { "weight": 2 } }, { "key": "28506", "source": "1825", "target": "278", "attributes": { "weight": 2 } }, { "key": "12133", "source": "1826", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12134", "source": "1826", "target": "1839", "attributes": { "weight": 1 } }, { "key": "12167", "source": "1827", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12168", "source": "1828", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12169", "source": "1829", "target": "449", "attributes": { "weight": 1 } }, { "key": "12170", "source": "1829", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12174", "source": "1830", "target": "489", "attributes": { "weight": 1 } }, { "key": "35903", "source": "1831", "target": "1390", "attributes": { "weight": 1 } }, { "key": "32723", "source": "1831", "target": "231", "attributes": { "weight": 2 } }, { "key": "35904", "source": "1831", "target": "497", "attributes": { "weight": 1 } }, { "key": "35901", "source": "1831", "target": "465", "attributes": { "weight": 1 } }, { "key": "12175", "source": "1831", "target": "1362", "attributes": { "weight": 1 } }, { "key": "35900", "source": "1831", "target": "1360", "attributes": { "weight": 1 } }, { "key": "35905", "source": "1831", "target": "498", "attributes": { "weight": 1 } }, { "key": "35902", "source": "1831", "target": "478", "attributes": { "weight": 1 } }, { "key": "27041", "source": "1832", "target": "458", "attributes": { "weight": 1 } }, { "key": "27039", "source": "1832", "target": "860", "attributes": { "weight": 3 } }, { "key": "32204", "source": "1832", "target": "1368", "attributes": { "weight": 3 } }, { "key": "19954", "source": "1832", "target": "443", "attributes": { "weight": 1 } }, { "key": "27038", "source": "1832", "target": "447", "attributes": { "weight": 1 } }, { "key": "19958", "source": "1832", "target": "449", "attributes": { "weight": 1 } }, { "key": "19957", "source": "1832", "target": "2247", "attributes": { "weight": 1 } }, { "key": "19961", "source": "1832", "target": "1358", "attributes": { "weight": 2 } }, { "key": "19952", "source": "1832", "target": "221", "attributes": { "weight": 1 } }, { "key": "22869", "source": "1832", "target": "1359", "attributes": { "weight": 1 } }, { "key": "27035", "source": "1832", "target": "858", "attributes": { "weight": 1 } }, { "key": "19964", "source": "1832", "target": "464", "attributes": { "weight": 1 } }, { "key": "12194", "source": "1832", "target": "220", "attributes": { "weight": 1 } }, { "key": "12196", "source": "1832", "target": "450", "attributes": { "weight": 1 } }, { "key": "32724", "source": "1832", "target": "53", "attributes": { "weight": 1 } }, { "key": "19959", "source": "1832", "target": "1533", "attributes": { "weight": 1 } }, { "key": "37444", "source": "1832", "target": "1367", "attributes": { "weight": 1 } }, { "key": "19970", "source": "1832", "target": "2094", "attributes": { "weight": 2 } }, { "key": "27042", "source": "1832", "target": "1812", "attributes": { "weight": 3 } }, { "key": "19981", "source": "1832", "target": "235", "attributes": { "weight": 1 } }, { "key": "12197", "source": "1832", "target": "1219", "attributes": { "weight": 1 } }, { "key": "19971", "source": "1832", "target": "1838", "attributes": { "weight": 1 } }, { "key": "19984", "source": "1832", "target": "498", "attributes": { "weight": 1 } }, { "key": "27037", "source": "1832", "target": "442", "attributes": { "weight": 1 } }, { "key": "12195", "source": "1832", "target": "1161", "attributes": { "weight": 1 } }, { "key": "19960", "source": "1832", "target": "451", "attributes": { "weight": 4 } }, { "key": "19972", "source": "1832", "target": "2108", "attributes": { "weight": 1 } }, { "key": "19976", "source": "1832", "target": "483", "attributes": { "weight": 3 } }, { "key": "19951", "source": "1832", "target": "130", "attributes": { "weight": 1 } }, { "key": "19969", "source": "1832", "target": "1366", "attributes": { "weight": 3 } }, { "key": "19956", "source": "1832", "target": "2244", "attributes": { "weight": 1 } }, { "key": "27036", "source": "1832", "target": "440", "attributes": { "weight": 1 } }, { "key": "19979", "source": "1832", "target": "672", "attributes": { "weight": 1 } }, { "key": "19982", "source": "1832", "target": "1375", "attributes": { "weight": 1 } }, { "key": "19980", "source": "1832", "target": "56", "attributes": { "weight": 6 } }, { "key": "19983", "source": "1832", "target": "2276", "attributes": { "weight": 1 } }, { "key": "19962", "source": "1832", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19955", "source": "1832", "target": "1070", "attributes": { "weight": 1 } }, { "key": "19973", "source": "1832", "target": "231", "attributes": { "weight": 5 } }, { "key": "12198", "source": "1832", "target": "1362", "attributes": { "weight": 1 } }, { "key": "19978", "source": "1832", "target": "2270", "attributes": { "weight": 1 } }, { "key": "19966", "source": "1832", "target": "1546", "attributes": { "weight": 1 } }, { "key": "19949", "source": "1832", "target": "429", "attributes": { "weight": 3 } }, { "key": "19974", "source": "1832", "target": "480", "attributes": { "weight": 1 } }, { "key": "19977", "source": "1832", "target": "695", "attributes": { "weight": 1 } }, { "key": "19953", "source": "1832", "target": "2243", "attributes": { "weight": 1 } }, { "key": "27043", "source": "1832", "target": "479", "attributes": { "weight": 1 } }, { "key": "32134", "source": "1832", "target": "1141", "attributes": { "weight": 1 } }, { "key": "19967", "source": "1832", "target": "54", "attributes": { "weight": 3 } }, { "key": "19975", "source": "1832", "target": "2269", "attributes": { "weight": 1 } }, { "key": "27040", "source": "1832", "target": "1357", "attributes": { "weight": 1 } }, { "key": "19963", "source": "1832", "target": "459", "attributes": { "weight": 3 } }, { "key": "19950", "source": "1832", "target": "1354", "attributes": { "weight": 4 } }, { "key": "19968", "source": "1832", "target": "1122", "attributes": { "weight": 1 } }, { "key": "19965", "source": "1832", "target": "1364", "attributes": { "weight": 1 } }, { "key": "12519", "source": "1832", "target": "223", "attributes": { "weight": 1 } }, { "key": "19948", "source": "1832", "target": "1353", "attributes": { "weight": 6 } }, { "key": "12239", "source": "1833", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12244", "source": "1834", "target": "1835", "attributes": { "weight": 1 } }, { "key": "12240", "source": "1834", "target": "220", "attributes": { "weight": 1 } }, { "key": "33421", "source": "1834", "target": "2258", "attributes": { "weight": 1 } }, { "key": "33420", "source": "1834", "target": "135", "attributes": { "weight": 1 } }, { "key": "12247", "source": "1834", "target": "1839", "attributes": { "weight": 1 } }, { "key": "12243", "source": "1834", "target": "450", "attributes": { "weight": 1 } }, { "key": "12241", "source": "1834", "target": "1161", "attributes": { "weight": 1 } }, { "key": "12246", "source": "1834", "target": "472", "attributes": { "weight": 1 } }, { "key": "33419", "source": "1834", "target": "51", "attributes": { "weight": 1 } }, { "key": "12242", "source": "1834", "target": "435", "attributes": { "weight": 1 } }, { "key": "12245", "source": "1834", "target": "1837", "attributes": { "weight": 1 } }, { "key": "12264", "source": "1835", "target": "1219", "attributes": { "weight": 1 } }, { "key": "26852", "source": "1835", "target": "2653", "attributes": { "weight": 1 } }, { "key": "26855", "source": "1835", "target": "2656", "attributes": { "weight": 1 } }, { "key": "26850", "source": "1835", "target": "2651", "attributes": { "weight": 1 } }, { "key": "26853", "source": "1835", "target": "2654", "attributes": { "weight": 1 } }, { "key": "12265", "source": "1835", "target": "1834", "attributes": { "weight": 1 } }, { "key": "12262", "source": "1835", "target": "1141", "attributes": { "weight": 1 } }, { "key": "12263", "source": "1835", "target": "450", "attributes": { "weight": 1 } }, { "key": "12266", "source": "1835", "target": "1837", "attributes": { "weight": 1 } }, { "key": "26851", "source": "1835", "target": "2652", "attributes": { "weight": 1 } }, { "key": "26854", "source": "1835", "target": "2655", "attributes": { "weight": 1 } }, { "key": "36005", "source": "1836", "target": "497", "attributes": { "weight": 1 } }, { "key": "20373", "source": "1836", "target": "2025", "attributes": { "weight": 1 } }, { "key": "33500", "source": "1836", "target": "220", "attributes": { "weight": 1 } }, { "key": "20370", "source": "1836", "target": "429", "attributes": { "weight": 2 } }, { "key": "33505", "source": "1836", "target": "1362", "attributes": { "weight": 1 } }, { "key": "20390", "source": "1836", "target": "231", "attributes": { "weight": 2 } }, { "key": "20388", "source": "1836", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20375", "source": "1836", "target": "449", "attributes": { "weight": 1 } }, { "key": "20389", "source": "1836", "target": "2108", "attributes": { "weight": 1 } }, { "key": "33506", "source": "1836", "target": "53", "attributes": { "weight": 1 } }, { "key": "20391", "source": "1836", "target": "478", "attributes": { "weight": 1 } }, { "key": "20372", "source": "1836", "target": "130", "attributes": { "weight": 2 } }, { "key": "20378", "source": "1836", "target": "2249", "attributes": { "weight": 1 } }, { "key": "20371", "source": "1836", "target": "1354", "attributes": { "weight": 2 } }, { "key": "33508", "source": "1836", "target": "471", "attributes": { "weight": 1 } }, { "key": "33509", "source": "1836", "target": "190", "attributes": { "weight": 1 } }, { "key": "20382", "source": "1836", "target": "464", "attributes": { "weight": 2 } }, { "key": "33503", "source": "1836", "target": "442", "attributes": { "weight": 1 } }, { "key": "33502", "source": "1836", "target": "858", "attributes": { "weight": 1 } }, { "key": "20386", "source": "1836", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20381", "source": "1836", "target": "462", "attributes": { "weight": 1 } }, { "key": "20376", "source": "1836", "target": "1533", "attributes": { "weight": 1 } }, { "key": "20374", "source": "1836", "target": "2243", "attributes": { "weight": 1 } }, { "key": "33507", "source": "1836", "target": "470", "attributes": { "weight": 1 } }, { "key": "36004", "source": "1836", "target": "1360", "attributes": { "weight": 1 } }, { "key": "12269", "source": "1836", "target": "1811", "attributes": { "weight": 2 } }, { "key": "20395", "source": "1836", "target": "2111", "attributes": { "weight": 1 } }, { "key": "33504", "source": "1836", "target": "52", "attributes": { "weight": 1 } }, { "key": "33510", "source": "1836", "target": "474", "attributes": { "weight": 1 } }, { "key": "20392", "source": "1836", "target": "480", "attributes": { "weight": 1 } }, { "key": "20380", "source": "1836", "target": "459", "attributes": { "weight": 1 } }, { "key": "20383", "source": "1836", "target": "2256", "attributes": { "weight": 1 } }, { "key": "20393", "source": "1836", "target": "2269", "attributes": { "weight": 1 } }, { "key": "20379", "source": "1836", "target": "1358", "attributes": { "weight": 2 } }, { "key": "20399", "source": "1836", "target": "1390", "attributes": { "weight": 1 } }, { "key": "20377", "source": "1836", "target": "451", "attributes": { "weight": 2 } }, { "key": "20396", "source": "1836", "target": "2096", "attributes": { "weight": 1 } }, { "key": "20398", "source": "1836", "target": "73", "attributes": { "weight": 1 } }, { "key": "20401", "source": "1836", "target": "498", "attributes": { "weight": 1 } }, { "key": "20369", "source": "1836", "target": "1353", "attributes": { "weight": 2 } }, { "key": "20400", "source": "1836", "target": "2276", "attributes": { "weight": 1 } }, { "key": "33511", "source": "1836", "target": "672", "attributes": { "weight": 1 } }, { "key": "20385", "source": "1836", "target": "54", "attributes": { "weight": 1 } }, { "key": "20397", "source": "1836", "target": "56", "attributes": { "weight": 1 } }, { "key": "33501", "source": "1836", "target": "2645", "attributes": { "weight": 1 } }, { "key": "20394", "source": "1836", "target": "483", "attributes": { "weight": 2 } }, { "key": "20387", "source": "1836", "target": "1838", "attributes": { "weight": 1 } }, { "key": "20384", "source": "1836", "target": "1546", "attributes": { "weight": 1 } }, { "key": "12270", "source": "1837", "target": "1141", "attributes": { "weight": 1 } }, { "key": "12273", "source": "1837", "target": "1834", "attributes": { "weight": 1 } }, { "key": "12274", "source": "1837", "target": "1835", "attributes": { "weight": 1 } }, { "key": "12272", "source": "1837", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12271", "source": "1837", "target": "450", "attributes": { "weight": 1 } }, { "key": "20571", "source": "1838", "target": "429", "attributes": { "weight": 1 } }, { "key": "20570", "source": "1838", "target": "1353", "attributes": { "weight": 1 } }, { "key": "20580", "source": "1838", "target": "489", "attributes": { "weight": 1 } }, { "key": "20573", "source": "1838", "target": "51", "attributes": { "weight": 1 } }, { "key": "20581", "source": "1838", "target": "56", "attributes": { "weight": 1 } }, { "key": "17277", "source": "1838", "target": "135", "attributes": { "weight": 1 } }, { "key": "20576", "source": "1838", "target": "451", "attributes": { "weight": 1 } }, { "key": "20575", "source": "1838", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20572", "source": "1838", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20579", "source": "1838", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20574", "source": "1838", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20578", "source": "1838", "target": "1836", "attributes": { "weight": 1 } }, { "key": "12295", "source": "1838", "target": "435", "attributes": { "weight": 1 } }, { "key": "12296", "source": "1838", "target": "472", "attributes": { "weight": 1 } }, { "key": "20577", "source": "1838", "target": "2254", "attributes": { "weight": 1 } }, { "key": "32147", "source": "1839", "target": "1141", "attributes": { "weight": 1 } }, { "key": "12323", "source": "1839", "target": "1834", "attributes": { "weight": 1 } }, { "key": "12321", "source": "1839", "target": "450", "attributes": { "weight": 1 } }, { "key": "12322", "source": "1839", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12320", "source": "1839", "target": "1826", "attributes": { "weight": 1 } }, { "key": "12324", "source": "1840", "target": "1219", "attributes": { "weight": 1 } }, { "key": "12325", "source": "1841", "target": "435", "attributes": { "weight": 1 } }, { "key": "12326", "source": "1841", "target": "472", "attributes": { "weight": 1 } }, { "key": "32149", "source": "1842", "target": "1141", "attributes": { "weight": 1 } }, { "key": "12327", "source": "1842", "target": "450", "attributes": { "weight": 1 } }, { "key": "12331", "source": "1843", "target": "165", "attributes": { "weight": 2 } }, { "key": "32635", "source": "1843", "target": "2964", "attributes": { "weight": 1 } }, { "key": "12330", "source": "1843", "target": "1187", "attributes": { "weight": 1 } }, { "key": "27649", "source": "1844", "target": "1629", "attributes": { "weight": 1 } }, { "key": "12381", "source": "1844", "target": "1626", "attributes": { "weight": 2 } }, { "key": "12380", "source": "1844", "target": "565", "attributes": { "weight": 2 } }, { "key": "27648", "source": "1844", "target": "564", "attributes": { "weight": 1 } }, { "key": "33056", "source": "1845", "target": "223", "attributes": { "weight": 1 } }, { "key": "33059", "source": "1845", "target": "474", "attributes": { "weight": 1 } }, { "key": "32791", "source": "1845", "target": "1125", "attributes": { "weight": 2 } }, { "key": "32790", "source": "1845", "target": "1088", "attributes": { "weight": 1 } }, { "key": "12402", "source": "1845", "target": "442", "attributes": { "weight": 2 } }, { "key": "32789", "source": "1845", "target": "228", "attributes": { "weight": 2 } }, { "key": "33057", "source": "1845", "target": "52", "attributes": { "weight": 1 } }, { "key": "21429", "source": "1845", "target": "894", "attributes": { "weight": 2 } }, { "key": "12403", "source": "1845", "target": "493", "attributes": { "weight": 2 } }, { "key": "33058", "source": "1845", "target": "1087", "attributes": { "weight": 1 } }, { "key": "12431", "source": "1846", "target": "277", "attributes": { "weight": 2 } }, { "key": "12432", "source": "1846", "target": "1852", "attributes": { "weight": 1 } }, { "key": "12435", "source": "1847", "target": "263", "attributes": { "weight": 2 } }, { "key": "14602", "source": "1847", "target": "259", "attributes": { "weight": 1 } }, { "key": "12441", "source": "1848", "target": "1852", "attributes": { "weight": 1 } }, { "key": "12440", "source": "1848", "target": "277", "attributes": { "weight": 2 } }, { "key": "22964", "source": "1848", "target": "1906", "attributes": { "weight": 1 } }, { "key": "22969", "source": "1849", "target": "307", "attributes": { "weight": 1 } }, { "key": "19008", "source": "1849", "target": "313", "attributes": { "weight": 2 } }, { "key": "14658", "source": "1849", "target": "305", "attributes": { "weight": 1 } }, { "key": "13199", "source": "1849", "target": "304", "attributes": { "weight": 3 } }, { "key": "12442", "source": "1849", "target": "277", "attributes": { "weight": 1 } }, { "key": "23439", "source": "1849", "target": "268", "attributes": { "weight": 1 } }, { "key": "24431", "source": "1849", "target": "1965", "attributes": { "weight": 1 } }, { "key": "14662", "source": "1850", "target": "307", "attributes": { "weight": 1 } }, { "key": "19011", "source": "1850", "target": "313", "attributes": { "weight": 2 } }, { "key": "24792", "source": "1850", "target": "304", "attributes": { "weight": 2 } }, { "key": "12443", "source": "1850", "target": "277", "attributes": { "weight": 1 } }, { "key": "28044", "source": "1851", "target": "312", "attributes": { "weight": 1 } }, { "key": "28043", "source": "1851", "target": "287", "attributes": { "weight": 1 } }, { "key": "12446", "source": "1851", "target": "263", "attributes": { "weight": 1 } }, { "key": "14783", "source": "1852", "target": "277", "attributes": { "weight": 1 } }, { "key": "12450", "source": "1852", "target": "1846", "attributes": { "weight": 1 } }, { "key": "12451", "source": "1852", "target": "1848", "attributes": { "weight": 1 } }, { "key": "23029", "source": "1853", "target": "289", "attributes": { "weight": 1 } }, { "key": "14902", "source": "1853", "target": "304", "attributes": { "weight": 1 } }, { "key": "14901", "source": "1853", "target": "259", "attributes": { "weight": 1 } }, { "key": "12459", "source": "1853", "target": "263", "attributes": { "weight": 1 } }, { "key": "14903", "source": "1853", "target": "312", "attributes": { "weight": 1 } }, { "key": "13806", "source": "1854", "target": "314", "attributes": { "weight": 2 } }, { "key": "13807", "source": "1854", "target": "322", "attributes": { "weight": 3 } }, { "key": "13795", "source": "1854", "target": "261", "attributes": { "weight": 3 } }, { "key": "15048", "source": "1854", "target": "263", "attributes": { "weight": 1 } }, { "key": "13802", "source": "1854", "target": "305", "attributes": { "weight": 3 } }, { "key": "28204", "source": "1854", "target": "168", "attributes": { "weight": 1 } }, { "key": "13800", "source": "1854", "target": "300", "attributes": { "weight": 3 } }, { "key": "12482", "source": "1854", "target": "316", "attributes": { "weight": 2 } }, { "key": "25081", "source": "1854", "target": "170", "attributes": { "weight": 2 } }, { "key": "15049", "source": "1854", "target": "307", "attributes": { "weight": 1 } }, { "key": "13804", "source": "1854", "target": "308", "attributes": { "weight": 2 } }, { "key": "13794", "source": "1854", "target": "259", "attributes": { "weight": 3 } }, { "key": "13805", "source": "1854", "target": "312", "attributes": { "weight": 2 } }, { "key": "13803", "source": "1854", "target": "839", "attributes": { "weight": 4 } }, { "key": "31104", "source": "1854", "target": "276", "attributes": { "weight": 1 } }, { "key": "13798", "source": "1854", "target": "277", "attributes": { "weight": 5 } }, { "key": "13799", "source": "1854", "target": "278", "attributes": { "weight": 5 } }, { "key": "13801", "source": "1854", "target": "304", "attributes": { "weight": 4 } }, { "key": "12481", "source": "1854", "target": "268", "attributes": { "weight": 1 } }, { "key": "13797", "source": "1854", "target": "167", "attributes": { "weight": 2 } }, { "key": "31105", "source": "1854", "target": "180", "attributes": { "weight": 1 } }, { "key": "13808", "source": "1854", "target": "326", "attributes": { "weight": 2 } }, { "key": "13796", "source": "1854", "target": "264", "attributes": { "weight": 3 } }, { "key": "12486", "source": "1855", "target": "177", "attributes": { "weight": 3 } }, { "key": "35459", "source": "1855", "target": "1857", "attributes": { "weight": 1 } }, { "key": "12487", "source": "1855", "target": "1860", "attributes": { "weight": 1 } }, { "key": "35445", "source": "1855", "target": "574", "attributes": { "weight": 2 } }, { "key": "12488", "source": "1856", "target": "177", "attributes": { "weight": 3 } }, { "key": "35446", "source": "1856", "target": "574", "attributes": { "weight": 2 } }, { "key": "35464", "source": "1856", "target": "1857", "attributes": { "weight": 1 } }, { "key": "35465", "source": "1856", "target": "3", "attributes": { "weight": 1 } }, { "key": "35470", "source": "1857", "target": "167", "attributes": { "weight": 1 } }, { "key": "35472", "source": "1857", "target": "305", "attributes": { "weight": 1 } }, { "key": "35473", "source": "1857", "target": "3203", "attributes": { "weight": 1 } }, { "key": "12490", "source": "1857", "target": "177", "attributes": { "weight": 3 } }, { "key": "35474", "source": "1857", "target": "1860", "attributes": { "weight": 1 } }, { "key": "27674", "source": "1857", "target": "178", "attributes": { "weight": 3 } }, { "key": "14517", "source": "1857", "target": "259", "attributes": { "weight": 2 } }, { "key": "35476", "source": "1857", "target": "327", "attributes": { "weight": 1 } }, { "key": "35468", "source": "1857", "target": "1856", "attributes": { "weight": 1 } }, { "key": "27673", "source": "1857", "target": "175", "attributes": { "weight": 4 } }, { "key": "35467", "source": "1857", "target": "264", "attributes": { "weight": 1 } }, { "key": "27931", "source": "1857", "target": "287", "attributes": { "weight": 1 } }, { "key": "28701", "source": "1857", "target": "578", "attributes": { "weight": 1 } }, { "key": "35466", "source": "1857", "target": "1855", "attributes": { "weight": 1 } }, { "key": "35471", "source": "1857", "target": "1858", "attributes": { "weight": 1 } }, { "key": "35475", "source": "1857", "target": "321", "attributes": { "weight": 1 } }, { "key": "25680", "source": "1857", "target": "278", "attributes": { "weight": 3 } }, { "key": "35469", "source": "1857", "target": "3198", "attributes": { "weight": 1 } }, { "key": "12489", "source": "1857", "target": "574", "attributes": { "weight": 3 } }, { "key": "14188", "source": "1857", "target": "168", "attributes": { "weight": 2 } }, { "key": "35495", "source": "1858", "target": "1857", "attributes": { "weight": 1 } }, { "key": "12493", "source": "1858", "target": "177", "attributes": { "weight": 3 } }, { "key": "35497", "source": "1859", "target": "574", "attributes": { "weight": 1 } }, { "key": "12494", "source": "1859", "target": "177", "attributes": { "weight": 3 } }, { "key": "35498", "source": "1859", "target": "3206", "attributes": { "weight": 1 } }, { "key": "35532", "source": "1860", "target": "1642", "attributes": { "weight": 1 } }, { "key": "12503", "source": "1860", "target": "177", "attributes": { "weight": 3 } }, { "key": "35531", "source": "1860", "target": "574", "attributes": { "weight": 1 } }, { "key": "12502", "source": "1860", "target": "1855", "attributes": { "weight": 1 } }, { "key": "35530", "source": "1860", "target": "1857", "attributes": { "weight": 1 } }, { "key": "16582", "source": "1861", "target": "1522", "attributes": { "weight": 1 } }, { "key": "12518", "source": "1861", "target": "1141", "attributes": { "weight": 1 } }, { "key": "16792", "source": "1862", "target": "70", "attributes": { "weight": 2 } }, { "key": "16791", "source": "1862", "target": "1354", "attributes": { "weight": 1 } }, { "key": "36289", "source": "1862", "target": "3278", "attributes": { "weight": 1 } }, { "key": "12520", "source": "1862", "target": "1337", "attributes": { "weight": 1 } }, { "key": "16793", "source": "1862", "target": "1389", "attributes": { "weight": 2 } }, { "key": "36291", "source": "1862", "target": "596", "attributes": { "weight": 1 } }, { "key": "36290", "source": "1862", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36325", "source": "1863", "target": "2081", "attributes": { "weight": 1 } }, { "key": "36324", "source": "1863", "target": "434", "attributes": { "weight": 1 } }, { "key": "12525", "source": "1863", "target": "1141", "attributes": { "weight": 1 } }, { "key": "36326", "source": "1863", "target": "1389", "attributes": { "weight": 1 } }, { "key": "12526", "source": "1863", "target": "1337", "attributes": { "weight": 2 } }, { "key": "31326", "source": "1863", "target": "70", "attributes": { "weight": 1 } }, { "key": "12536", "source": "1864", "target": "1866", "attributes": { "weight": 1 } }, { "key": "12537", "source": "1864", "target": "638", "attributes": { "weight": 2 } }, { "key": "12538", "source": "1864", "target": "1867", "attributes": { "weight": 1 } }, { "key": "12542", "source": "1865", "target": "638", "attributes": { "weight": 1 } }, { "key": "12541", "source": "1865", "target": "1866", "attributes": { "weight": 1 } }, { "key": "12549", "source": "1866", "target": "1867", "attributes": { "weight": 1 } }, { "key": "12547", "source": "1866", "target": "638", "attributes": { "weight": 2 } }, { "key": "26052", "source": "1866", "target": "163", "attributes": { "weight": 1 } }, { "key": "12543", "source": "1866", "target": "1864", "attributes": { "weight": 1 } }, { "key": "12544", "source": "1866", "target": "636", "attributes": { "weight": 1 } }, { "key": "12545", "source": "1866", "target": "1865", "attributes": { "weight": 1 } }, { "key": "12546", "source": "1866", "target": "1539", "attributes": { "weight": 1 } }, { "key": "12548", "source": "1866", "target": "1550", "attributes": { "weight": 1 } }, { "key": "12556", "source": "1867", "target": "1864", "attributes": { "weight": 1 } }, { "key": "12559", "source": "1867", "target": "638", "attributes": { "weight": 2 } }, { "key": "12557", "source": "1867", "target": "636", "attributes": { "weight": 1 } }, { "key": "12558", "source": "1867", "target": "1866", "attributes": { "weight": 1 } }, { "key": "32057", "source": "1867", "target": "1815", "attributes": { "weight": 1 } }, { "key": "32058", "source": "1867", "target": "1816", "attributes": { "weight": 1 } }, { "key": "23212", "source": "1868", "target": "707", "attributes": { "weight": 3 } }, { "key": "12560", "source": "1868", "target": "180", "attributes": { "weight": 3 } }, { "key": "28335", "source": "1868", "target": "579", "attributes": { "weight": 1 } }, { "key": "28369", "source": "1869", "target": "579", "attributes": { "weight": 1 } }, { "key": "28368", "source": "1869", "target": "170", "attributes": { "weight": 1 } }, { "key": "24949", "source": "1869", "target": "1240", "attributes": { "weight": 1 } }, { "key": "23219", "source": "1869", "target": "707", "attributes": { "weight": 3 } }, { "key": "12580", "source": "1869", "target": "180", "attributes": { "weight": 3 } }, { "key": "28367", "source": "1869", "target": "1191", "attributes": { "weight": 1 } }, { "key": "23226", "source": "1870", "target": "1191", "attributes": { "weight": 2 } }, { "key": "12592", "source": "1870", "target": "180", "attributes": { "weight": 2 } }, { "key": "21453", "source": "1870", "target": "1823", "attributes": { "weight": 2 } }, { "key": "25017", "source": "1870", "target": "278", "attributes": { "weight": 2 } }, { "key": "25016", "source": "1870", "target": "707", "attributes": { "weight": 2 } }, { "key": "21452", "source": "1870", "target": "580", "attributes": { "weight": 2 } }, { "key": "25018", "source": "1870", "target": "305", "attributes": { "weight": 2 } }, { "key": "28693", "source": "1870", "target": "1512", "attributes": { "weight": 1 } }, { "key": "21451", "source": "1870", "target": "698", "attributes": { "weight": 2 } }, { "key": "25053", "source": "1871", "target": "707", "attributes": { "weight": 2 } }, { "key": "28478", "source": "1871", "target": "700", "attributes": { "weight": 2 } }, { "key": "23230", "source": "1871", "target": "1191", "attributes": { "weight": 2 } }, { "key": "25751", "source": "1871", "target": "278", "attributes": { "weight": 1 } }, { "key": "25054", "source": "1871", "target": "305", "attributes": { "weight": 2 } }, { "key": "28698", "source": "1871", "target": "1512", "attributes": { "weight": 1 } }, { "key": "12600", "source": "1871", "target": "180", "attributes": { "weight": 2 } }, { "key": "28711", "source": "1871", "target": "578", "attributes": { "weight": 1 } }, { "key": "14913", "source": "1872", "target": "259", "attributes": { "weight": 1 } }, { "key": "14919", "source": "1872", "target": "327", "attributes": { "weight": 3 } }, { "key": "25774", "source": "1872", "target": "278", "attributes": { "weight": 2 } }, { "key": "14917", "source": "1872", "target": "313", "attributes": { "weight": 1 } }, { "key": "24815", "source": "1872", "target": "326", "attributes": { "weight": 1 } }, { "key": "23044", "source": "1872", "target": "316", "attributes": { "weight": 1 } }, { "key": "19055", "source": "1872", "target": "262", "attributes": { "weight": 2 } }, { "key": "23043", "source": "1872", "target": "166", "attributes": { "weight": 1 } }, { "key": "12654", "source": "1872", "target": "180", "attributes": { "weight": 1 } }, { "key": "28165", "source": "1872", "target": "276", "attributes": { "weight": 1 } }, { "key": "14915", "source": "1872", "target": "268", "attributes": { "weight": 1 } }, { "key": "14916", "source": "1872", "target": "312", "attributes": { "weight": 1 } }, { "key": "14914", "source": "1872", "target": "263", "attributes": { "weight": 1 } }, { "key": "13655", "source": "1872", "target": "304", "attributes": { "weight": 2 } }, { "key": "14918", "source": "1872", "target": "318", "attributes": { "weight": 2 } }, { "key": "29222", "source": "1872", "target": "582", "attributes": { "weight": 1 } }, { "key": "19056", "source": "1872", "target": "264", "attributes": { "weight": 2 } }, { "key": "19057", "source": "1872", "target": "839", "attributes": { "weight": 2 } }, { "key": "12684", "source": "1873", "target": "695", "attributes": { "weight": 1 } }, { "key": "31353", "source": "1873", "target": "674", "attributes": { "weight": 1 } }, { "key": "16974", "source": "1873", "target": "70", "attributes": { "weight": 1 } }, { "key": "12736", "source": "1874", "target": "1884", "attributes": { "weight": 1 } }, { "key": "12737", "source": "1874", "target": "1885", "attributes": { "weight": 1 } }, { "key": "12738", "source": "1875", "target": "1887", "attributes": { "weight": 1 } }, { "key": "12740", "source": "1876", "target": "1881", "attributes": { "weight": 1 } }, { "key": "12739", "source": "1876", "target": "1877", "attributes": { "weight": 1 } }, { "key": "12743", "source": "1877", "target": "1882", "attributes": { "weight": 1 } }, { "key": "12742", "source": "1877", "target": "1881", "attributes": { "weight": 1 } }, { "key": "12741", "source": "1877", "target": "1876", "attributes": { "weight": 1 } }, { "key": "17856", "source": "1878", "target": "1995", "attributes": { "weight": 3 } }, { "key": "12745", "source": "1878", "target": "638", "attributes": { "weight": 2 } }, { "key": "12747", "source": "1878", "target": "1888", "attributes": { "weight": 1 } }, { "key": "25859", "source": "1878", "target": "163", "attributes": { "weight": 2 } }, { "key": "12744", "source": "1878", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12746", "source": "1878", "target": "1883", "attributes": { "weight": 1 } }, { "key": "12757", "source": "1879", "target": "1881", "attributes": { "weight": 1 } }, { "key": "12756", "source": "1879", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12758", "source": "1880", "target": "1887", "attributes": { "weight": 1 } }, { "key": "12759", "source": "1881", "target": "1874", "attributes": { "weight": 1 } }, { "key": "12761", "source": "1881", "target": "1879", "attributes": { "weight": 1 } }, { "key": "12760", "source": "1881", "target": "1876", "attributes": { "weight": 1 } }, { "key": "12762", "source": "1882", "target": "1879", "attributes": { "weight": 1 } }, { "key": "12765", "source": "1883", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12766", "source": "1883", "target": "1889", "attributes": { "weight": 1 } }, { "key": "12764", "source": "1883", "target": "1878", "attributes": { "weight": 1 } }, { "key": "12767", "source": "1884", "target": "1874", "attributes": { "weight": 1 } }, { "key": "12768", "source": "1884", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12769", "source": "1885", "target": "3414", "attributes": { "weight": 1 } }, { "key": "12770", "source": "1886", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12771", "source": "1887", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12772", "source": "1887", "target": "1880", "attributes": { "weight": 1 } }, { "key": "12774", "source": "1888", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12773", "source": "1888", "target": "1878", "attributes": { "weight": 1 } }, { "key": "12775", "source": "1889", "target": "1384", "attributes": { "weight": 1 } }, { "key": "12776", "source": "1889", "target": "1883", "attributes": { "weight": 1 } }, { "key": "12783", "source": "1890", "target": "473", "attributes": { "weight": 1 } }, { "key": "14138", "source": "1890", "target": "1891", "attributes": { "weight": 1 } }, { "key": "14137", "source": "1890", "target": "392", "attributes": { "weight": 1 } }, { "key": "14161", "source": "1891", "target": "254", "attributes": { "weight": 1 } }, { "key": "14160", "source": "1891", "target": "392", "attributes": { "weight": 1 } }, { "key": "14162", "source": "1891", "target": "154", "attributes": { "weight": 1 } }, { "key": "12799", "source": "1891", "target": "452", "attributes": { "weight": 2 } }, { "key": "12808", "source": "1892", "target": "370", "attributes": { "weight": 1 } }, { "key": "29999", "source": "1892", "target": "371", "attributes": { "weight": 1 } }, { "key": "12809", "source": "1892", "target": "785", "attributes": { "weight": 1 } }, { "key": "30000", "source": "1892", "target": "784", "attributes": { "weight": 1 } }, { "key": "12810", "source": "1892", "target": "1063", "attributes": { "weight": 2 } }, { "key": "35239", "source": "1892", "target": "1032", "attributes": { "weight": 1 } }, { "key": "28924", "source": "1892", "target": "780", "attributes": { "weight": 1 } }, { "key": "12870", "source": "1893", "target": "1565", "attributes": { "weight": 1 } }, { "key": "12869", "source": "1893", "target": "38", "attributes": { "weight": 1 } }, { "key": "12878", "source": "1894", "target": "264", "attributes": { "weight": 2 } }, { "key": "14313", "source": "1894", "target": "319", "attributes": { "weight": 4 } }, { "key": "33112", "source": "1895", "target": "294", "attributes": { "weight": 1 } }, { "key": "12892", "source": "1895", "target": "264", "attributes": { "weight": 2 } }, { "key": "27909", "source": "1896", "target": "268", "attributes": { "weight": 1 } }, { "key": "12960", "source": "1896", "target": "304", "attributes": { "weight": 2 } }, { "key": "22896", "source": "1897", "target": "1906", "attributes": { "weight": 1 } }, { "key": "22185", "source": "1897", "target": "268", "attributes": { "weight": 1 } }, { "key": "22895", "source": "1897", "target": "275", "attributes": { "weight": 3 } }, { "key": "22184", "source": "1897", "target": "836", "attributes": { "weight": 1 } }, { "key": "12961", "source": "1897", "target": "304", "attributes": { "weight": 2 } }, { "key": "22898", "source": "1897", "target": "316", "attributes": { "weight": 2 } }, { "key": "27910", "source": "1897", "target": "277", "attributes": { "weight": 1 } }, { "key": "22897", "source": "1897", "target": "307", "attributes": { "weight": 1 } }, { "key": "25962", "source": "1897", "target": "2622", "attributes": { "weight": 2 } }, { "key": "27911", "source": "1897", "target": "300", "attributes": { "weight": 1 } }, { "key": "23413", "source": "1898", "target": "327", "attributes": { "weight": 1 } }, { "key": "27912", "source": "1898", "target": "322", "attributes": { "weight": 1 } }, { "key": "23412", "source": "1898", "target": "316", "attributes": { "weight": 1 } }, { "key": "23270", "source": "1898", "target": "839", "attributes": { "weight": 1 } }, { "key": "14465", "source": "1898", "target": "266", "attributes": { "weight": 1 } }, { "key": "23411", "source": "1898", "target": "166", "attributes": { "weight": 1 } }, { "key": "12962", "source": "1898", "target": "264", "attributes": { "weight": 2 } }, { "key": "14464", "source": "1898", "target": "259", "attributes": { "weight": 1 } }, { "key": "22899", "source": "1898", "target": "318", "attributes": { "weight": 3 } }, { "key": "14466", "source": "1898", "target": "304", "attributes": { "weight": 2 } }, { "key": "25963", "source": "1898", "target": "2622", "attributes": { "weight": 2 } }, { "key": "27933", "source": "1899", "target": "305", "attributes": { "weight": 1 } }, { "key": "13022", "source": "1899", "target": "312", "attributes": { "weight": 2 } }, { "key": "13020", "source": "1899", "target": "287", "attributes": { "weight": 2 } }, { "key": "13021", "source": "1899", "target": "304", "attributes": { "weight": 2 } }, { "key": "13019", "source": "1899", "target": "259", "attributes": { "weight": 2 } }, { "key": "13023", "source": "1900", "target": "304", "attributes": { "weight": 2 } }, { "key": "14519", "source": "1900", "target": "305", "attributes": { "weight": 1 } }, { "key": "19002", "source": "1900", "target": "313", "attributes": { "weight": 2 } }, { "key": "13041", "source": "1901", "target": "304", "attributes": { "weight": 3 } }, { "key": "14540", "source": "1901", "target": "313", "attributes": { "weight": 2 } }, { "key": "25225", "source": "1902", "target": "171", "attributes": { "weight": 1 } }, { "key": "25227", "source": "1902", "target": "1967", "attributes": { "weight": 1 } }, { "key": "25226", "source": "1902", "target": "307", "attributes": { "weight": 1 } }, { "key": "13050", "source": "1902", "target": "304", "attributes": { "weight": 2 } }, { "key": "22212", "source": "1903", "target": "268", "attributes": { "weight": 1 } }, { "key": "13066", "source": "1903", "target": "304", "attributes": { "weight": 2 } }, { "key": "22919", "source": "1903", "target": "321", "attributes": { "weight": 1 } }, { "key": "22920", "source": "1903", "target": "326", "attributes": { "weight": 1 } }, { "key": "19004", "source": "1903", "target": "839", "attributes": { "weight": 2 } }, { "key": "22921", "source": "1903", "target": "327", "attributes": { "weight": 1 } }, { "key": "22213", "source": "1903", "target": "167", "attributes": { "weight": 1 } }, { "key": "14568", "source": "1903", "target": "259", "attributes": { "weight": 1 } }, { "key": "22918", "source": "1903", "target": "316", "attributes": { "weight": 1 } }, { "key": "13078", "source": "1904", "target": "312", "attributes": { "weight": 2 } }, { "key": "13077", "source": "1904", "target": "304", "attributes": { "weight": 2 } }, { "key": "13076", "source": "1904", "target": "167", "attributes": { "weight": 2 } }, { "key": "13075", "source": "1904", "target": "259", "attributes": { "weight": 2 } }, { "key": "21444", "source": "1905", "target": "1823", "attributes": { "weight": 2 } }, { "key": "28366", "source": "1905", "target": "1512", "attributes": { "weight": 1 } }, { "key": "24947", "source": "1905", "target": "707", "attributes": { "weight": 2 } }, { "key": "24948", "source": "1905", "target": "305", "attributes": { "weight": 2 } }, { "key": "21443", "source": "1905", "target": "580", "attributes": { "weight": 2 } }, { "key": "13126", "source": "1905", "target": "268", "attributes": { "weight": 2 } }, { "key": "13937", "source": "1905", "target": "180", "attributes": { "weight": 1 } }, { "key": "28365", "source": "1905", "target": "278", "attributes": { "weight": 3 } }, { "key": "24946", "source": "1905", "target": "1191", "attributes": { "weight": 2 } }, { "key": "23275", "source": "1906", "target": "1925", "attributes": { "weight": 1 } }, { "key": "13135", "source": "1906", "target": "18", "attributes": { "weight": 1 } }, { "key": "13134", "source": "1906", "target": "275", "attributes": { "weight": 5 } }, { "key": "25973", "source": "1906", "target": "2622", "attributes": { "weight": 2 } }, { "key": "22953", "source": "1906", "target": "1848", "attributes": { "weight": 1 } }, { "key": "22951", "source": "1906", "target": "1897", "attributes": { "weight": 1 } }, { "key": "22952", "source": "1906", "target": "277", "attributes": { "weight": 1 } }, { "key": "27784", "source": "1906", "target": "2098", "attributes": { "weight": 1 } }, { "key": "13136", "source": "1906", "target": "304", "attributes": { "weight": 5 } }, { "key": "13137", "source": "1907", "target": "304", "attributes": { "weight": 2 } }, { "key": "22955", "source": "1907", "target": "307", "attributes": { "weight": 1 } }, { "key": "22954", "source": "1907", "target": "275", "attributes": { "weight": 2 } }, { "key": "25974", "source": "1907", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13138", "source": "1908", "target": "1917", "attributes": { "weight": 2 } }, { "key": "22956", "source": "1908", "target": "326", "attributes": { "weight": 1 } }, { "key": "27979", "source": "1908", "target": "305", "attributes": { "weight": 1 } }, { "key": "13139", "source": "1908", "target": "304", "attributes": { "weight": 2 } }, { "key": "14610", "source": "1908", "target": "319", "attributes": { "weight": 3 } }, { "key": "14609", "source": "1908", "target": "260", "attributes": { "weight": 1 } }, { "key": "14626", "source": "1909", "target": "1984", "attributes": { "weight": 1 } }, { "key": "25976", "source": "1909", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13150", "source": "1909", "target": "283", "attributes": { "weight": 4 } }, { "key": "27984", "source": "1909", "target": "305", "attributes": { "weight": 1 } }, { "key": "14629", "source": "1909", "target": "327", "attributes": { "weight": 2 } }, { "key": "14627", "source": "1909", "target": "304", "attributes": { "weight": 2 } }, { "key": "14628", "source": "1909", "target": "312", "attributes": { "weight": 1 } }, { "key": "13152", "source": "1910", "target": "319", "attributes": { "weight": 6 } }, { "key": "13155", "source": "1911", "target": "312", "attributes": { "weight": 2 } }, { "key": "13154", "source": "1911", "target": "304", "attributes": { "weight": 2 } }, { "key": "13153", "source": "1911", "target": "259", "attributes": { "weight": 3 } }, { "key": "17993", "source": "1911", "target": "322", "attributes": { "weight": 1 } }, { "key": "26170", "source": "1911", "target": "262", "attributes": { "weight": 2 } }, { "key": "13156", "source": "1911", "target": "336", "attributes": { "weight": 2 } }, { "key": "26171", "source": "1911", "target": "263", "attributes": { "weight": 2 } }, { "key": "13187", "source": "1912", "target": "312", "attributes": { "weight": 2 } }, { "key": "13182", "source": "1912", "target": "259", "attributes": { "weight": 2 } }, { "key": "13185", "source": "1912", "target": "304", "attributes": { "weight": 2 } }, { "key": "13188", "source": "1912", "target": "326", "attributes": { "weight": 2 } }, { "key": "13183", "source": "1912", "target": "264", "attributes": { "weight": 2 } }, { "key": "13184", "source": "1912", "target": "272", "attributes": { "weight": 2 } }, { "key": "13186", "source": "1912", "target": "839", "attributes": { "weight": 2 } }, { "key": "13189", "source": "1912", "target": "327", "attributes": { "weight": 2 } }, { "key": "13191", "source": "1913", "target": "304", "attributes": { "weight": 2 } }, { "key": "27990", "source": "1913", "target": "312", "attributes": { "weight": 1 } }, { "key": "14650", "source": "1913", "target": "259", "attributes": { "weight": 1 } }, { "key": "17994", "source": "1913", "target": "264", "attributes": { "weight": 1 } }, { "key": "19007", "source": "1913", "target": "839", "attributes": { "weight": 2 } }, { "key": "27991", "source": "1913", "target": "326", "attributes": { "weight": 1 } }, { "key": "17995", "source": "1913", "target": "327", "attributes": { "weight": 1 } }, { "key": "13192", "source": "1914", "target": "304", "attributes": { "weight": 2 } }, { "key": "13193", "source": "1914", "target": "327", "attributes": { "weight": 2 } }, { "key": "27995", "source": "1914", "target": "839", "attributes": { "weight": 1 } }, { "key": "14653", "source": "1914", "target": "259", "attributes": { "weight": 1 } }, { "key": "13200", "source": "1915", "target": "313", "attributes": { "weight": 2 } }, { "key": "19010", "source": "1915", "target": "305", "attributes": { "weight": 2 } }, { "key": "23440", "source": "1915", "target": "167", "attributes": { "weight": 1 } }, { "key": "13201", "source": "1916", "target": "312", "attributes": { "weight": 2 } }, { "key": "25982", "source": "1916", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13202", "source": "1916", "target": "327", "attributes": { "weight": 2 } }, { "key": "29797", "source": "1917", "target": "262", "attributes": { "weight": 1 } }, { "key": "13228", "source": "1917", "target": "264", "attributes": { "weight": 2 } }, { "key": "13229", "source": "1917", "target": "1908", "attributes": { "weight": 2 } }, { "key": "23445", "source": "1917", "target": "260", "attributes": { "weight": 1 } }, { "key": "14688", "source": "1917", "target": "319", "attributes": { "weight": 4 } }, { "key": "28059", "source": "1918", "target": "263", "attributes": { "weight": 1 } }, { "key": "18004", "source": "1918", "target": "327", "attributes": { "weight": 1 } }, { "key": "28061", "source": "1918", "target": "839", "attributes": { "weight": 1 } }, { "key": "28060", "source": "1918", "target": "305", "attributes": { "weight": 1 } }, { "key": "22238", "source": "1918", "target": "336", "attributes": { "weight": 1 } }, { "key": "18003", "source": "1918", "target": "312", "attributes": { "weight": 1 } }, { "key": "22237", "source": "1918", "target": "262", "attributes": { "weight": 1 } }, { "key": "18001", "source": "1918", "target": "264", "attributes": { "weight": 1 } }, { "key": "13269", "source": "1918", "target": "304", "attributes": { "weight": 2 } }, { "key": "18002", "source": "1918", "target": "287", "attributes": { "weight": 1 } }, { "key": "14726", "source": "1918", "target": "259", "attributes": { "weight": 1 } }, { "key": "28062", "source": "1918", "target": "311", "attributes": { "weight": 1 } }, { "key": "28063", "source": "1918", "target": "322", "attributes": { "weight": 1 } }, { "key": "22998", "source": "1919", "target": "301", "attributes": { "weight": 1 } }, { "key": "14727", "source": "1919", "target": "263", "attributes": { "weight": 2 } }, { "key": "28066", "source": "1919", "target": "304", "attributes": { "weight": 1 } }, { "key": "28067", "source": "1919", "target": "305", "attributes": { "weight": 1 } }, { "key": "14728", "source": "1919", "target": "312", "attributes": { "weight": 1 } }, { "key": "28064", "source": "1919", "target": "167", "attributes": { "weight": 1 } }, { "key": "22239", "source": "1919", "target": "289", "attributes": { "weight": 1 } }, { "key": "22999", "source": "1919", "target": "326", "attributes": { "weight": 1 } }, { "key": "22997", "source": "1919", "target": "166", "attributes": { "weight": 1 } }, { "key": "13270", "source": "1919", "target": "259", "attributes": { "weight": 2 } }, { "key": "28065", "source": "1919", "target": "287", "attributes": { "weight": 1 } }, { "key": "14729", "source": "1920", "target": "268", "attributes": { "weight": 1 } }, { "key": "23000", "source": "1920", "target": "307", "attributes": { "weight": 1 } }, { "key": "28068", "source": "1920", "target": "313", "attributes": { "weight": 1 } }, { "key": "14730", "source": "1920", "target": "278", "attributes": { "weight": 2 } }, { "key": "13273", "source": "1920", "target": "304", "attributes": { "weight": 4 } }, { "key": "14731", "source": "1920", "target": "305", "attributes": { "weight": 1 } }, { "key": "23002", "source": "1921", "target": "316", "attributes": { "weight": 1 } }, { "key": "29210", "source": "1921", "target": "697", "attributes": { "weight": 1 } }, { "key": "28071", "source": "1921", "target": "305", "attributes": { "weight": 1 } }, { "key": "13294", "source": "1921", "target": "304", "attributes": { "weight": 2 } }, { "key": "28710", "source": "1921", "target": "578", "attributes": { "weight": 1 } }, { "key": "14749", "source": "1922", "target": "305", "attributes": { "weight": 1 } }, { "key": "26026", "source": "1922", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13297", "source": "1922", "target": "304", "attributes": { "weight": 3 } }, { "key": "19018", "source": "1922", "target": "313", "attributes": { "weight": 2 } }, { "key": "23013", "source": "1923", "target": "326", "attributes": { "weight": 1 } }, { "key": "13508", "source": "1923", "target": "304", "attributes": { "weight": 2 } }, { "key": "23011", "source": "1923", "target": "275", "attributes": { "weight": 1 } }, { "key": "28155", "source": "1924", "target": "305", "attributes": { "weight": 1 } }, { "key": "13590", "source": "1924", "target": "304", "attributes": { "weight": 1 } }, { "key": "25772", "source": "1924", "target": "278", "attributes": { "weight": 1 } }, { "key": "25771", "source": "1924", "target": "697", "attributes": { "weight": 3 } }, { "key": "23296", "source": "1925", "target": "305", "attributes": { "weight": 1 } }, { "key": "13617", "source": "1925", "target": "304", "attributes": { "weight": 3 } }, { "key": "24812", "source": "1925", "target": "167", "attributes": { "weight": 1 } }, { "key": "23030", "source": "1925", "target": "314", "attributes": { "weight": 1 } }, { "key": "23295", "source": "1925", "target": "1906", "attributes": { "weight": 1 } }, { "key": "14904", "source": "1925", "target": "275", "attributes": { "weight": 3 } }, { "key": "24813", "source": "1925", "target": "277", "attributes": { "weight": 2 } }, { "key": "28160", "source": "1925", "target": "300", "attributes": { "weight": 1 } }, { "key": "27792", "source": "1926", "target": "2715", "attributes": { "weight": 1 } }, { "key": "25775", "source": "1926", "target": "278", "attributes": { "weight": 2 } }, { "key": "17097", "source": "1926", "target": "2099", "attributes": { "weight": 2 } }, { "key": "27790", "source": "1926", "target": "3421", "attributes": { "weight": 1 } }, { "key": "17096", "source": "1926", "target": "2098", "attributes": { "weight": 2 } }, { "key": "28993", "source": "1926", "target": "595", "attributes": { "weight": 2 } }, { "key": "17099", "source": "1926", "target": "2101", "attributes": { "weight": 1 } }, { "key": "28992", "source": "1926", "target": "580", "attributes": { "weight": 1 } }, { "key": "27791", "source": "1926", "target": "168", "attributes": { "weight": 2 } }, { "key": "13669", "source": "1926", "target": "304", "attributes": { "weight": 2 } }, { "key": "27793", "source": "1926", "target": "2717", "attributes": { "weight": 1 } }, { "key": "27789", "source": "1926", "target": "2714", "attributes": { "weight": 1 } }, { "key": "27788", "source": "1926", "target": "164", "attributes": { "weight": 1 } }, { "key": "32620", "source": "1926", "target": "789", "attributes": { "weight": 1 } }, { "key": "17098", "source": "1926", "target": "2100", "attributes": { "weight": 1 } }, { "key": "13692", "source": "1927", "target": "304", "attributes": { "weight": 3 } }, { "key": "26034", "source": "1927", "target": "2622", "attributes": { "weight": 2 } }, { "key": "23497", "source": "1927", "target": "326", "attributes": { "weight": 1 } }, { "key": "23056", "source": "1927", "target": "275", "attributes": { "weight": 2 } }, { "key": "13710", "source": "1928", "target": "313", "attributes": { "weight": 2 } }, { "key": "27564", "source": "1928", "target": "168", "attributes": { "weight": 1 } }, { "key": "13711", "source": "1928", "target": "327", "attributes": { "weight": 3 } }, { "key": "13708", "source": "1928", "target": "259", "attributes": { "weight": 2 } }, { "key": "13709", "source": "1928", "target": "262", "attributes": { "weight": 2 } }, { "key": "28179", "source": "1928", "target": "839", "attributes": { "weight": 1 } }, { "key": "31100", "source": "1928", "target": "314", "attributes": { "weight": 1 } }, { "key": "31101", "source": "1928", "target": "326", "attributes": { "weight": 1 } }, { "key": "14993", "source": "1928", "target": "304", "attributes": { "weight": 2 } }, { "key": "14996", "source": "1929", "target": "259", "attributes": { "weight": 1 } }, { "key": "13724", "source": "1929", "target": "312", "attributes": { "weight": 3 } }, { "key": "23297", "source": "1929", "target": "305", "attributes": { "weight": 1 } }, { "key": "22251", "source": "1929", "target": "167", "attributes": { "weight": 1 } }, { "key": "26035", "source": "1929", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13723", "source": "1929", "target": "304", "attributes": { "weight": 2 } }, { "key": "22250", "source": "1929", "target": "262", "attributes": { "weight": 1 } }, { "key": "14997", "source": "1929", "target": "327", "attributes": { "weight": 1 } }, { "key": "28184", "source": "1929", "target": "322", "attributes": { "weight": 1 } }, { "key": "26036", "source": "1930", "target": "2622", "attributes": { "weight": 2 } }, { "key": "13725", "source": "1930", "target": "304", "attributes": { "weight": 2 } }, { "key": "14998", "source": "1930", "target": "275", "attributes": { "weight": 3 } }, { "key": "15031", "source": "1931", "target": "277", "attributes": { "weight": 1 } }, { "key": "28201", "source": "1931", "target": "300", "attributes": { "weight": 1 } }, { "key": "28202", "source": "1931", "target": "318", "attributes": { "weight": 1 } }, { "key": "13783", "source": "1931", "target": "319", "attributes": { "weight": 2 } }, { "key": "13779", "source": "1931", "target": "304", "attributes": { "weight": 2 } }, { "key": "13775", "source": "1931", "target": "264", "attributes": { "weight": 2 } }, { "key": "15029", "source": "1931", "target": "262", "attributes": { "weight": 1 } }, { "key": "13776", "source": "1931", "target": "167", "attributes": { "weight": 2 } }, { "key": "19062", "source": "1931", "target": "305", "attributes": { "weight": 2 } }, { "key": "13781", "source": "1931", "target": "313", "attributes": { "weight": 2 } }, { "key": "13782", "source": "1931", "target": "316", "attributes": { "weight": 2 } }, { "key": "13780", "source": "1931", "target": "312", "attributes": { "weight": 2 } }, { "key": "13774", "source": "1931", "target": "259", "attributes": { "weight": 2 } }, { "key": "15030", "source": "1931", "target": "263", "attributes": { "weight": 1 } }, { "key": "13778", "source": "1931", "target": "291", "attributes": { "weight": 2 } }, { "key": "28203", "source": "1931", "target": "322", "attributes": { "weight": 1 } }, { "key": "13777", "source": "1931", "target": "287", "attributes": { "weight": 2 } }, { "key": "15032", "source": "1931", "target": "311", "attributes": { "weight": 1 } }, { "key": "13788", "source": "1932", "target": "264", "attributes": { "weight": 2 } }, { "key": "15035", "source": "1932", "target": "319", "attributes": { "weight": 2 } }, { "key": "15038", "source": "1933", "target": "277", "attributes": { "weight": 1 } }, { "key": "23078", "source": "1933", "target": "295", "attributes": { "weight": 1 } }, { "key": "15040", "source": "1933", "target": "307", "attributes": { "weight": 1 } }, { "key": "23077", "source": "1933", "target": "283", "attributes": { "weight": 1 } }, { "key": "15044", "source": "1933", "target": "336", "attributes": { "weight": 1 } }, { "key": "23505", "source": "1933", "target": "326", "attributes": { "weight": 1 } }, { "key": "15039", "source": "1933", "target": "287", "attributes": { "weight": 1 } }, { "key": "13789", "source": "1933", "target": "264", "attributes": { "weight": 2 } }, { "key": "13790", "source": "1933", "target": "304", "attributes": { "weight": 3 } }, { "key": "15036", "source": "1933", "target": "259", "attributes": { "weight": 1 } }, { "key": "15043", "source": "1933", "target": "327", "attributes": { "weight": 1 } }, { "key": "15037", "source": "1933", "target": "260", "attributes": { "weight": 1 } }, { "key": "15042", "source": "1933", "target": "319", "attributes": { "weight": 1 } }, { "key": "15041", "source": "1933", "target": "179", "attributes": { "weight": 2 } }, { "key": "13791", "source": "1934", "target": "278", "attributes": { "weight": 4 } }, { "key": "13793", "source": "1934", "target": "313", "attributes": { "weight": 3 } }, { "key": "13792", "source": "1934", "target": "304", "attributes": { "weight": 3 } }, { "key": "15046", "source": "1934", "target": "268", "attributes": { "weight": 1 } }, { "key": "15045", "source": "1934", "target": "261", "attributes": { "weight": 1 } }, { "key": "15047", "source": "1934", "target": "305", "attributes": { "weight": 2 } }, { "key": "13828", "source": "1935", "target": "635", "attributes": { "weight": 1 } }, { "key": "29260", "source": "1935", "target": "2628", "attributes": { "weight": 1 } }, { "key": "13837", "source": "1936", "target": "1107", "attributes": { "weight": 1 } }, { "key": "13838", "source": "1936", "target": "1546", "attributes": { "weight": 1 } }, { "key": "13847", "source": "1937", "target": "1953", "attributes": { "weight": 2 } }, { "key": "29940", "source": "1937", "target": "1952", "attributes": { "weight": 1 } }, { "key": "13850", "source": "1938", "target": "1957", "attributes": { "weight": 1 } }, { "key": "13849", "source": "1938", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13848", "source": "1938", "target": "1944", "attributes": { "weight": 1 } }, { "key": "13851", "source": "1939", "target": "1941", "attributes": { "weight": 1 } }, { "key": "13853", "source": "1939", "target": "1947", "attributes": { "weight": 1 } }, { "key": "13854", "source": "1939", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13852", "source": "1939", "target": "1944", "attributes": { "weight": 1 } }, { "key": "13858", "source": "1940", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13857", "source": "1940", "target": "1951", "attributes": { "weight": 1 } }, { "key": "13856", "source": "1940", "target": "1949", "attributes": { "weight": 2 } }, { "key": "13862", "source": "1941", "target": "1950", "attributes": { "weight": 1 } }, { "key": "13860", "source": "1941", "target": "1944", "attributes": { "weight": 1 } }, { "key": "13861", "source": "1941", "target": "1947", "attributes": { "weight": 1 } }, { "key": "13866", "source": "1941", "target": "1958", "attributes": { "weight": 2 } }, { "key": "13865", "source": "1941", "target": "1956", "attributes": { "weight": 1 } }, { "key": "13864", "source": "1941", "target": "1954", "attributes": { "weight": 1 } }, { "key": "13863", "source": "1941", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13859", "source": "1941", "target": "1939", "attributes": { "weight": 1 } }, { "key": "13869", "source": "1942", "target": "1953", "attributes": { "weight": 2 } }, { "key": "13867", "source": "1942", "target": "1944", "attributes": { "weight": 2 } }, { "key": "13868", "source": "1942", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13870", "source": "1943", "target": "1953", "attributes": { "weight": 2 } }, { "key": "29949", "source": "1943", "target": "1948", "attributes": { "weight": 1 } }, { "key": "29950", "source": "1943", "target": "1952", "attributes": { "weight": 1 } }, { "key": "13875", "source": "1944", "target": "1947", "attributes": { "weight": 1 } }, { "key": "13873", "source": "1944", "target": "1941", "attributes": { "weight": 1 } }, { "key": "13874", "source": "1944", "target": "1942", "attributes": { "weight": 2 } }, { "key": "13877", "source": "1944", "target": "1951", "attributes": { "weight": 1 } }, { "key": "13879", "source": "1944", "target": "1953", "attributes": { "weight": 1 } }, { "key": "13878", "source": "1944", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13872", "source": "1944", "target": "1939", "attributes": { "weight": 1 } }, { "key": "13876", "source": "1944", "target": "1948", "attributes": { "weight": 1 } }, { "key": "13871", "source": "1944", "target": "1938", "attributes": { "weight": 1 } }, { "key": "29954", "source": "1947", "target": "2910", "attributes": { "weight": 1 } }, { "key": "29953", "source": "1947", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29952", "source": "1947", "target": "1948", "attributes": { "weight": 1 } }, { "key": "13883", "source": "1947", "target": "1941", "attributes": { "weight": 1 } }, { "key": "13885", "source": "1947", "target": "1958", "attributes": { "weight": 2 } }, { "key": "13882", "source": "1947", "target": "1939", "attributes": { "weight": 1 } }, { "key": "13884", "source": "1947", "target": "1944", "attributes": { "weight": 1 } }, { "key": "29958", "source": "1948", "target": "1953", "attributes": { "weight": 1 } }, { "key": "29957", "source": "1948", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29955", "source": "1948", "target": "1943", "attributes": { "weight": 1 } }, { "key": "13886", "source": "1948", "target": "1944", "attributes": { "weight": 1 } }, { "key": "29956", "source": "1948", "target": "1947", "attributes": { "weight": 1 } }, { "key": "29960", "source": "1949", "target": "1937", "attributes": { "weight": 1 } }, { "key": "13887", "source": "1949", "target": "1940", "attributes": { "weight": 1 } }, { "key": "13888", "source": "1950", "target": "1941", "attributes": { "weight": 2 } }, { "key": "13889", "source": "1950", "target": "1952", "attributes": { "weight": 1 } }, { "key": "13892", "source": "1951", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13891", "source": "1951", "target": "1944", "attributes": { "weight": 1 } }, { "key": "13890", "source": "1951", "target": "1940", "attributes": { "weight": 1 } }, { "key": "29968", "source": "1952", "target": "572", "attributes": { "weight": 1 } }, { "key": "13909", "source": "1952", "target": "1957", "attributes": { "weight": 2 } }, { "key": "13897", "source": "1952", "target": "1939", "attributes": { "weight": 2 } }, { "key": "29980", "source": "1952", "target": "2910", "attributes": { "weight": 1 } }, { "key": "29966", "source": "1952", "target": "2908", "attributes": { "weight": 1 } }, { "key": "29965", "source": "1952", "target": "566", "attributes": { "weight": 1 } }, { "key": "13898", "source": "1952", "target": "1940", "attributes": { "weight": 2 } }, { "key": "13906", "source": "1952", "target": "1954", "attributes": { "weight": 2 } }, { "key": "13908", "source": "1952", "target": "1956", "attributes": { "weight": 2 } }, { "key": "29981", "source": "1952", "target": "2911", "attributes": { "weight": 1 } }, { "key": "29964", "source": "1952", "target": "1937", "attributes": { "weight": 1 } }, { "key": "13899", "source": "1952", "target": "1941", "attributes": { "weight": 2 } }, { "key": "29982", "source": "1952", "target": "1958", "attributes": { "weight": 1 } }, { "key": "29971", "source": "1952", "target": "1943", "attributes": { "weight": 1 } }, { "key": "13900", "source": "1952", "target": "1942", "attributes": { "weight": 2 } }, { "key": "13904", "source": "1952", "target": "1951", "attributes": { "weight": 2 } }, { "key": "29970", "source": "1952", "target": "168", "attributes": { "weight": 1 } }, { "key": "13894", "source": "1952", "target": "1166", "attributes": { "weight": 4 } }, { "key": "13896", "source": "1952", "target": "1938", "attributes": { "weight": 2 } }, { "key": "29975", "source": "1952", "target": "93", "attributes": { "weight": 1 } }, { "key": "29973", "source": "1952", "target": "1948", "attributes": { "weight": 1 } }, { "key": "29974", "source": "1952", "target": "2909", "attributes": { "weight": 1 } }, { "key": "13903", "source": "1952", "target": "1950", "attributes": { "weight": 1 } }, { "key": "13905", "source": "1952", "target": "1953", "attributes": { "weight": 2 } }, { "key": "13901", "source": "1952", "target": "1944", "attributes": { "weight": 2 } }, { "key": "29976", "source": "1952", "target": "1280", "attributes": { "weight": 1 } }, { "key": "13895", "source": "1952", "target": "2907", "attributes": { "weight": 1 } }, { "key": "29969", "source": "1952", "target": "2216", "attributes": { "weight": 1 } }, { "key": "29972", "source": "1952", "target": "1947", "attributes": { "weight": 1 } }, { "key": "29977", "source": "1952", "target": "580", "attributes": { "weight": 1 } }, { "key": "29978", "source": "1952", "target": "178", "attributes": { "weight": 1 } }, { "key": "29967", "source": "1952", "target": "1187", "attributes": { "weight": 2 } }, { "key": "29979", "source": "1952", "target": "310", "attributes": { "weight": 2 } }, { "key": "13912", "source": "1953", "target": "1943", "attributes": { "weight": 2 } }, { "key": "13913", "source": "1953", "target": "1944", "attributes": { "weight": 1 } }, { "key": "13910", "source": "1953", "target": "1937", "attributes": { "weight": 2 } }, { "key": "29983", "source": "1953", "target": "1187", "attributes": { "weight": 1 } }, { "key": "29984", "source": "1953", "target": "1948", "attributes": { "weight": 1 } }, { "key": "13911", "source": "1953", "target": "1942", "attributes": { "weight": 2 } }, { "key": "13915", "source": "1953", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13916", "source": "1954", "target": "1941", "attributes": { "weight": 1 } }, { "key": "13918", "source": "1954", "target": "1957", "attributes": { "weight": 1 } }, { "key": "13917", "source": "1954", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13920", "source": "1956", "target": "1941", "attributes": { "weight": 1 } }, { "key": "13921", "source": "1956", "target": "1950", "attributes": { "weight": 1 } }, { "key": "29987", "source": "1956", "target": "1952", "attributes": { "weight": 1 } }, { "key": "13924", "source": "1957", "target": "1952", "attributes": { "weight": 2 } }, { "key": "13925", "source": "1957", "target": "1954", "attributes": { "weight": 1 } }, { "key": "13922", "source": "1957", "target": "1938", "attributes": { "weight": 1 } }, { "key": "13923", "source": "1957", "target": "1941", "attributes": { "weight": 1 } }, { "key": "13926", "source": "1958", "target": "1941", "attributes": { "weight": 2 } }, { "key": "13927", "source": "1958", "target": "1947", "attributes": { "weight": 2 } }, { "key": "29992", "source": "1958", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29993", "source": "1958", "target": "2910", "attributes": { "weight": 1 } }, { "key": "13959", "source": "1960", "target": "180", "attributes": { "weight": 1 } }, { "key": "28421", "source": "1960", "target": "1512", "attributes": { "weight": 1 } }, { "key": "28420", "source": "1960", "target": "579", "attributes": { "weight": 1 } }, { "key": "25012", "source": "1960", "target": "707", "attributes": { "weight": 2 } }, { "key": "25013", "source": "1960", "target": "1240", "attributes": { "weight": 2 } }, { "key": "21450", "source": "1960", "target": "698", "attributes": { "weight": 2 } }, { "key": "28419", "source": "1960", "target": "278", "attributes": { "weight": 2 } }, { "key": "13977", "source": "1961", "target": "168", "attributes": { "weight": 1 } }, { "key": "28498", "source": "1962", "target": "278", "attributes": { "weight": 2 } }, { "key": "19052", "source": "1962", "target": "305", "attributes": { "weight": 2 } }, { "key": "13978", "source": "1962", "target": "180", "attributes": { "weight": 1 } }, { "key": "14906", "source": "1962", "target": "268", "attributes": { "weight": 1 } }, { "key": "28497", "source": "1962", "target": "707", "attributes": { "weight": 1 } }, { "key": "23231", "source": "1962", "target": "1191", "attributes": { "weight": 2 } }, { "key": "14134", "source": "1963", "target": "392", "attributes": { "weight": 1 } }, { "key": "14136", "source": "1963", "target": "1063", "attributes": { "weight": 1 } }, { "key": "14135", "source": "1963", "target": "154", "attributes": { "weight": 1 } }, { "key": "14141", "source": "1964", "target": "392", "attributes": { "weight": 1 } }, { "key": "14263", "source": "1965", "target": "168", "attributes": { "weight": 2 } }, { "key": "29205", "source": "1965", "target": "278", "attributes": { "weight": 2 } }, { "key": "30898", "source": "1965", "target": "3019", "attributes": { "weight": 2 } }, { "key": "24435", "source": "1965", "target": "2507", "attributes": { "weight": 1 } }, { "key": "30590", "source": "1965", "target": "25", "attributes": { "weight": 1 } }, { "key": "30585", "source": "1965", "target": "2500", "attributes": { "weight": 1 } }, { "key": "24999", "source": "1965", "target": "580", "attributes": { "weight": 2 } }, { "key": "23868", "source": "1965", "target": "2461", "attributes": { "weight": 3 } }, { "key": "30587", "source": "1965", "target": "2878", "attributes": { "weight": 1 } }, { "key": "31622", "source": "1965", "target": "681", "attributes": { "weight": 2 } }, { "key": "30586", "source": "1965", "target": "2989", "attributes": { "weight": 1 } }, { "key": "24434", "source": "1965", "target": "1849", "attributes": { "weight": 1 } }, { "key": "23443", "source": "1965", "target": "304", "attributes": { "weight": 3 } }, { "key": "24432", "source": "1965", "target": "2501", "attributes": { "weight": 3 } }, { "key": "23867", "source": "1965", "target": "277", "attributes": { "weight": 2 } }, { "key": "34991", "source": "1965", "target": "3", "attributes": { "weight": 1 } }, { "key": "31624", "source": "1965", "target": "1967", "attributes": { "weight": 2 } }, { "key": "30588", "source": "1965", "target": "2990", "attributes": { "weight": 1 } }, { "key": "31621", "source": "1965", "target": "19", "attributes": { "weight": 1 } }, { "key": "24433", "source": "1965", "target": "18", "attributes": { "weight": 1 } }, { "key": "30897", "source": "1965", "target": "13", "attributes": { "weight": 3 } }, { "key": "31623", "source": "1965", "target": "595", "attributes": { "weight": 1 } }, { "key": "27700", "source": "1966", "target": "178", "attributes": { "weight": 4 } }, { "key": "29579", "source": "1966", "target": "169", "attributes": { "weight": 1 } }, { "key": "21500", "source": "1966", "target": "2285", "attributes": { "weight": 2 } }, { "key": "14284", "source": "1966", "target": "168", "attributes": { "weight": 2 } }, { "key": "29581", "source": "1966", "target": "2873", "attributes": { "weight": 1 } }, { "key": "27666", "source": "1966", "target": "171", "attributes": { "weight": 2 } }, { "key": "29580", "source": "1966", "target": "1542", "attributes": { "weight": 1 } }, { "key": "21499", "source": "1966", "target": "172", "attributes": { "weight": 2 } }, { "key": "29577", "source": "1966", "target": "164", "attributes": { "weight": 2 } }, { "key": "29578", "source": "1966", "target": "830", "attributes": { "weight": 1 } }, { "key": "35089", "source": "1967", "target": "3", "attributes": { "weight": 1 } }, { "key": "31823", "source": "1967", "target": "595", "attributes": { "weight": 1 } }, { "key": "14286", "source": "1967", "target": "168", "attributes": { "weight": 2 } }, { "key": "30627", "source": "1967", "target": "25", "attributes": { "weight": 2 } }, { "key": "25778", "source": "1967", "target": "278", "attributes": { "weight": 5 } }, { "key": "31822", "source": "1967", "target": "582", "attributes": { "weight": 1 } }, { "key": "30965", "source": "1967", "target": "3019", "attributes": { "weight": 2 } }, { "key": "25080", "source": "1967", "target": "580", "attributes": { "weight": 2 } }, { "key": "24467", "source": "1967", "target": "2500", "attributes": { "weight": 1 } }, { "key": "30962", "source": "1967", "target": "19", "attributes": { "weight": 1 } }, { "key": "31821", "source": "1967", "target": "1965", "attributes": { "weight": 2 } }, { "key": "25230", "source": "1967", "target": "1902", "attributes": { "weight": 1 } }, { "key": "30966", "source": "1967", "target": "2461", "attributes": { "weight": 2 } }, { "key": "30964", "source": "1967", "target": "304", "attributes": { "weight": 1 } }, { "key": "30963", "source": "1967", "target": "13", "attributes": { "weight": 2 } }, { "key": "14310", "source": "1968", "target": "319", "attributes": { "weight": 2 } }, { "key": "27895", "source": "1969", "target": "305", "attributes": { "weight": 1 } }, { "key": "22174", "source": "1969", "target": "289", "attributes": { "weight": 1 } }, { "key": "22173", "source": "1969", "target": "262", "attributes": { "weight": 1 } }, { "key": "25957", "source": "1969", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14311", "source": "1969", "target": "259", "attributes": { "weight": 1 } }, { "key": "18998", "source": "1970", "target": "305", "attributes": { "weight": 2 } }, { "key": "14321", "source": "1970", "target": "304", "attributes": { "weight": 1 } }, { "key": "14322", "source": "1971", "target": "259", "attributes": { "weight": 1 } }, { "key": "22883", "source": "1971", "target": "166", "attributes": { "weight": 1 } }, { "key": "22884", "source": "1971", "target": "304", "attributes": { "weight": 1 } }, { "key": "22177", "source": "1971", "target": "262", "attributes": { "weight": 1 } }, { "key": "22178", "source": "1971", "target": "327", "attributes": { "weight": 1 } }, { "key": "27896", "source": "1971", "target": "839", "attributes": { "weight": 1 } }, { "key": "27897", "source": "1971", "target": "322", "attributes": { "weight": 1 } }, { "key": "14324", "source": "1972", "target": "259", "attributes": { "weight": 1 } }, { "key": "22179", "source": "1972", "target": "262", "attributes": { "weight": 1 } }, { "key": "25958", "source": "1972", "target": "2622", "attributes": { "weight": 2 } }, { "key": "25960", "source": "1973", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14333", "source": "1973", "target": "312", "attributes": { "weight": 1 } }, { "key": "22181", "source": "1973", "target": "262", "attributes": { "weight": 1 } }, { "key": "14332", "source": "1973", "target": "259", "attributes": { "weight": 1 } }, { "key": "23266", "source": "1973", "target": "287", "attributes": { "weight": 1 } }, { "key": "22182", "source": "1973", "target": "289", "attributes": { "weight": 1 } }, { "key": "23267", "source": "1973", "target": "839", "attributes": { "weight": 1 } }, { "key": "14350", "source": "1974", "target": "287", "attributes": { "weight": 2 } }, { "key": "14630", "source": "1975", "target": "259", "attributes": { "weight": 1 } }, { "key": "22220", "source": "1975", "target": "289", "attributes": { "weight": 2 } }, { "key": "17996", "source": "1976", "target": "264", "attributes": { "weight": 1 } }, { "key": "19009", "source": "1976", "target": "839", "attributes": { "weight": 2 } }, { "key": "22225", "source": "1976", "target": "326", "attributes": { "weight": 1 } }, { "key": "27996", "source": "1976", "target": "277", "attributes": { "weight": 1 } }, { "key": "22224", "source": "1976", "target": "268", "attributes": { "weight": 1 } }, { "key": "27997", "source": "1976", "target": "287", "attributes": { "weight": 1 } }, { "key": "27998", "source": "1976", "target": "304", "attributes": { "weight": 1 } }, { "key": "17997", "source": "1976", "target": "307", "attributes": { "weight": 1 } }, { "key": "14659", "source": "1976", "target": "259", "attributes": { "weight": 1 } }, { "key": "14661", "source": "1977", "target": "327", "attributes": { "weight": 2 } }, { "key": "14660", "source": "1977", "target": "259", "attributes": { "weight": 1 } }, { "key": "23277", "source": "1977", "target": "839", "attributes": { "weight": 1 } }, { "key": "23276", "source": "1977", "target": "264", "attributes": { "weight": 1 } }, { "key": "25981", "source": "1977", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14663", "source": "1978", "target": "319", "attributes": { "weight": 2 } }, { "key": "28410", "source": "1979", "target": "580", "attributes": { "weight": 1 } }, { "key": "14674", "source": "1979", "target": "277", "attributes": { "weight": 1 } }, { "key": "28411", "source": "1979", "target": "1512", "attributes": { "weight": 1 } }, { "key": "23225", "source": "1979", "target": "1191", "attributes": { "weight": 3 } }, { "key": "25002", "source": "1979", "target": "305", "attributes": { "weight": 2 } }, { "key": "28409", "source": "1979", "target": "579", "attributes": { "weight": 1 } }, { "key": "25000", "source": "1979", "target": "278", "attributes": { "weight": 2 } }, { "key": "24845", "source": "1979", "target": "698", "attributes": { "weight": 2 } }, { "key": "24846", "source": "1979", "target": "2542", "attributes": { "weight": 1 } }, { "key": "25001", "source": "1979", "target": "1240", "attributes": { "weight": 2 } }, { "key": "14689", "source": "1980", "target": "319", "attributes": { "weight": 2 } }, { "key": "14713", "source": "1981", "target": "277", "attributes": { "weight": 1 } }, { "key": "28037", "source": "1981", "target": "268", "attributes": { "weight": 1 } }, { "key": "14719", "source": "1982", "target": "259", "attributes": { "weight": 1 } }, { "key": "14720", "source": "1983", "target": "287", "attributes": { "weight": 2 } }, { "key": "22235", "source": "1984", "target": "268", "attributes": { "weight": 2 } }, { "key": "28054", "source": "1984", "target": "304", "attributes": { "weight": 1 } }, { "key": "25984", "source": "1984", "target": "2622", "attributes": { "weight": 2 } }, { "key": "14724", "source": "1984", "target": "1909", "attributes": { "weight": 1 } }, { "key": "19015", "source": "1984", "target": "839", "attributes": { "weight": 2 } }, { "key": "22236", "source": "1984", "target": "272", "attributes": { "weight": 1 } }, { "key": "28052", "source": "1984", "target": "167", "attributes": { "weight": 1 } }, { "key": "28053", "source": "1984", "target": "168", "attributes": { "weight": 1 } }, { "key": "14725", "source": "1984", "target": "329", "attributes": { "weight": 1 } }, { "key": "17999", "source": "1984", "target": "264", "attributes": { "weight": 1 } }, { "key": "14723", "source": "1984", "target": "259", "attributes": { "weight": 1 } }, { "key": "18000", "source": "1984", "target": "307", "attributes": { "weight": 1 } }, { "key": "28055", "source": "1984", "target": "322", "attributes": { "weight": 1 } }, { "key": "14742", "source": "1985", "target": "259", "attributes": { "weight": 1 } }, { "key": "14743", "source": "1985", "target": "304", "attributes": { "weight": 1 } }, { "key": "14744", "source": "1985", "target": "312", "attributes": { "weight": 1 } }, { "key": "23003", "source": "1985", "target": "326", "attributes": { "weight": 1 } }, { "key": "28072", "source": "1985", "target": "287", "attributes": { "weight": 1 } }, { "key": "28073", "source": "1985", "target": "305", "attributes": { "weight": 1 } }, { "key": "14766", "source": "1986", "target": "319", "attributes": { "weight": 2 } }, { "key": "14780", "source": "1987", "target": "839", "attributes": { "weight": 1 } }, { "key": "14776", "source": "1987", "target": "259", "attributes": { "weight": 1 } }, { "key": "14778", "source": "1987", "target": "264", "attributes": { "weight": 1 } }, { "key": "14781", "source": "1987", "target": "312", "attributes": { "weight": 1 } }, { "key": "14777", "source": "1987", "target": "260", "attributes": { "weight": 1 } }, { "key": "14779", "source": "1987", "target": "167", "attributes": { "weight": 1 } }, { "key": "26028", "source": "1987", "target": "2622", "attributes": { "weight": 2 } }, { "key": "30304", "source": "1988", "target": "2", "attributes": { "weight": 2 } }, { "key": "33809", "source": "1988", "target": "817", "attributes": { "weight": 1 } }, { "key": "31686", "source": "1988", "target": "8", "attributes": { "weight": 2 } }, { "key": "30308", "source": "1988", "target": "793", "attributes": { "weight": 2 } }, { "key": "26108", "source": "1988", "target": "3", "attributes": { "weight": 5 } }, { "key": "14784", "source": "1988", "target": "319", "attributes": { "weight": 2 } }, { "key": "30305", "source": "1988", "target": "789", "attributes": { "weight": 3 } }, { "key": "26110", "source": "1988", "target": "13", "attributes": { "weight": 4 } }, { "key": "30306", "source": "1988", "target": "791", "attributes": { "weight": 2 } }, { "key": "30307", "source": "1988", "target": "681", "attributes": { "weight": 2 } }, { "key": "26109", "source": "1988", "target": "19", "attributes": { "weight": 2 } }, { "key": "26111", "source": "1988", "target": "14", "attributes": { "weight": 3 } }, { "key": "37318", "source": "1988", "target": "7", "attributes": { "weight": 1 } }, { "key": "14900", "source": "1989", "target": "319", "attributes": { "weight": 2 } }, { "key": "28210", "source": "1991", "target": "262", "attributes": { "weight": 1 } }, { "key": "15063", "source": "1991", "target": "287", "attributes": { "weight": 2 } }, { "key": "15082", "source": "1992", "target": "352", "attributes": { "weight": 1 } }, { "key": "15077", "source": "1992", "target": "3", "attributes": { "weight": 1 } }, { "key": "15079", "source": "1992", "target": "6", "attributes": { "weight": 1 } }, { "key": "15078", "source": "1992", "target": "457", "attributes": { "weight": 1 } }, { "key": "15083", "source": "1992", "target": "1994", "attributes": { "weight": 1 } }, { "key": "15080", "source": "1992", "target": "8", "attributes": { "weight": 1 } }, { "key": "15081", "source": "1992", "target": "592", "attributes": { "weight": 1 } }, { "key": "15088", "source": "1993", "target": "3", "attributes": { "weight": 1 } }, { "key": "15094", "source": "1994", "target": "1992", "attributes": { "weight": 1 } }, { "key": "25889", "source": "1995", "target": "1878", "attributes": { "weight": 2 } }, { "key": "29237", "source": "1995", "target": "2837", "attributes": { "weight": 1 } }, { "key": "25890", "source": "1995", "target": "163", "attributes": { "weight": 2 } }, { "key": "17961", "source": "1995", "target": "1380", "attributes": { "weight": 1 } }, { "key": "15100", "source": "1995", "target": "638", "attributes": { "weight": 2 } }, { "key": "29236", "source": "1995", "target": "1550", "attributes": { "weight": 1 } }, { "key": "25204", "source": "1996", "target": "2561", "attributes": { "weight": 1 } }, { "key": "15128", "source": "1996", "target": "171", "attributes": { "weight": 1 } }, { "key": "25056", "source": "1996", "target": "580", "attributes": { "weight": 3 } }, { "key": "25201", "source": "1996", "target": "1178", "attributes": { "weight": 3 } }, { "key": "35380", "source": "1996", "target": "1177", "attributes": { "weight": 1 } }, { "key": "25202", "source": "1996", "target": "1187", "attributes": { "weight": 1 } }, { "key": "25199", "source": "1996", "target": "1143", "attributes": { "weight": 2 } }, { "key": "33155", "source": "1996", "target": "178", "attributes": { "weight": 1 } }, { "key": "25200", "source": "1996", "target": "1146", "attributes": { "weight": 3 } }, { "key": "25055", "source": "1996", "target": "170", "attributes": { "weight": 3 } }, { "key": "25203", "source": "1996", "target": "297", "attributes": { "weight": 3 } }, { "key": "30244", "source": "1996", "target": "2934", "attributes": { "weight": 2 } }, { "key": "25205", "source": "1996", "target": "310", "attributes": { "weight": 4 } }, { "key": "31217", "source": "1997", "target": "59", "attributes": { "weight": 1 } }, { "key": "15133", "source": "1997", "target": "1733", "attributes": { "weight": 2 } }, { "key": "20143", "source": "1998", "target": "221", "attributes": { "weight": 1 } }, { "key": "35963", "source": "1998", "target": "428", "attributes": { "weight": 1 } }, { "key": "20141", "source": "1998", "target": "1756", "attributes": { "weight": 1 } }, { "key": "20145", "source": "1998", "target": "2244", "attributes": { "weight": 1 } }, { "key": "35961", "source": "1998", "target": "440", "attributes": { "weight": 1 } }, { "key": "20148", "source": "1998", "target": "1087", "attributes": { "weight": 1 } }, { "key": "20144", "source": "1998", "target": "1023", "attributes": { "weight": 1 } }, { "key": "35960", "source": "1998", "target": "433", "attributes": { "weight": 1 } }, { "key": "15142", "source": "1998", "target": "74", "attributes": { "weight": 2 } }, { "key": "35964", "source": "1998", "target": "3272", "attributes": { "weight": 1 } }, { "key": "20146", "source": "1998", "target": "450", "attributes": { "weight": 1 } }, { "key": "35962", "source": "1998", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20140", "source": "1998", "target": "429", "attributes": { "weight": 1 } }, { "key": "35965", "source": "1998", "target": "497", "attributes": { "weight": 1 } }, { "key": "20149", "source": "1998", "target": "231", "attributes": { "weight": 1 } }, { "key": "20142", "source": "1998", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20152", "source": "1998", "target": "194", "attributes": { "weight": 1 } }, { "key": "20151", "source": "1998", "target": "489", "attributes": { "weight": 1 } }, { "key": "20147", "source": "1998", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20150", "source": "1998", "target": "480", "attributes": { "weight": 1 } }, { "key": "31323", "source": "1999", "target": "59", "attributes": { "weight": 1 } }, { "key": "15144", "source": "1999", "target": "1733", "attributes": { "weight": 2 } }, { "key": "31359", "source": "2000", "target": "59", "attributes": { "weight": 1 } }, { "key": "15146", "source": "2000", "target": "1733", "attributes": { "weight": 2 } }, { "key": "31360", "source": "2001", "target": "59", "attributes": { "weight": 1 } }, { "key": "23394", "source": "2001", "target": "2092", "attributes": { "weight": 1 } }, { "key": "23393", "source": "2001", "target": "1118", "attributes": { "weight": 1 } }, { "key": "15147", "source": "2001", "target": "1733", "attributes": { "weight": 2 } }, { "key": "15148", "source": "2002", "target": "1733", "attributes": { "weight": 1 } }, { "key": "15153", "source": "2003", "target": "1621", "attributes": { "weight": 1 } }, { "key": "24918", "source": "2004", "target": "164", "attributes": { "weight": 8 } }, { "key": "15154", "source": "2004", "target": "1621", "attributes": { "weight": 2 } }, { "key": "27905", "source": "2004", "target": "287", "attributes": { "weight": 1 } }, { "key": "15155", "source": "2005", "target": "1621", "attributes": { "weight": 1 } }, { "key": "15183", "source": "2006", "target": "1621", "attributes": { "weight": 2 } }, { "key": "15184", "source": "2007", "target": "1621", "attributes": { "weight": 1 } }, { "key": "15185", "source": "2008", "target": "1621", "attributes": { "weight": 1 } }, { "key": "25561", "source": "2009", "target": "830", "attributes": { "weight": 1 } }, { "key": "15186", "source": "2009", "target": "1621", "attributes": { "weight": 1 } }, { "key": "15187", "source": "2010", "target": "1621", "attributes": { "weight": 2 } }, { "key": "15188", "source": "2011", "target": "1621", "attributes": { "weight": 2 } }, { "key": "25562", "source": "2011", "target": "830", "attributes": { "weight": 1 } }, { "key": "15189", "source": "2012", "target": "1621", "attributes": { "weight": 1 } }, { "key": "15191", "source": "2013", "target": "1621", "attributes": { "weight": 1 } }, { "key": "15192", "source": "2014", "target": "1621", "attributes": { "weight": 1 } }, { "key": "15193", "source": "2015", "target": "1621", "attributes": { "weight": 2 } }, { "key": "15194", "source": "2016", "target": "1621", "attributes": { "weight": 2 } }, { "key": "32280", "source": "2016", "target": "164", "attributes": { "weight": 1 } }, { "key": "15195", "source": "2017", "target": "1621", "attributes": { "weight": 1 } }, { "key": "18408", "source": "2018", "target": "169", "attributes": { "weight": 1 } }, { "key": "29582", "source": "2018", "target": "164", "attributes": { "weight": 2 } }, { "key": "15198", "source": "2018", "target": "1621", "attributes": { "weight": 2 } }, { "key": "15197", "source": "2018", "target": "830", "attributes": { "weight": 1 } }, { "key": "15429", "source": "2019", "target": "925", "attributes": { "weight": 1 } }, { "key": "15455", "source": "2020", "target": "925", "attributes": { "weight": 1 } }, { "key": "15454", "source": "2020", "target": "913", "attributes": { "weight": 1 } }, { "key": "18134", "source": "2021", "target": "1197", "attributes": { "weight": 2 } }, { "key": "21855", "source": "2021", "target": "337", "attributes": { "weight": 1 } }, { "key": "15528", "source": "2021", "target": "925", "attributes": { "weight": 1 } }, { "key": "21856", "source": "2021", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21854", "source": "2021", "target": "2293", "attributes": { "weight": 1 } }, { "key": "15529", "source": "2022", "target": "925", "attributes": { "weight": 1 } }, { "key": "15552", "source": "2023", "target": "2039", "attributes": { "weight": 1 } }, { "key": "15553", "source": "2023", "target": "925", "attributes": { "weight": 1 } }, { "key": "15555", "source": "2024", "target": "1329", "attributes": { "weight": 1 } }, { "key": "19523", "source": "2025", "target": "1756", "attributes": { "weight": 1 } }, { "key": "15556", "source": "2025", "target": "479", "attributes": { "weight": 3 } }, { "key": "16731", "source": "2025", "target": "70", "attributes": { "weight": 1 } }, { "key": "19522", "source": "2025", "target": "429", "attributes": { "weight": 1 } }, { "key": "19524", "source": "2025", "target": "221", "attributes": { "weight": 1 } }, { "key": "19527", "source": "2025", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19528", "source": "2025", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19529", "source": "2025", "target": "449", "attributes": { "weight": 1 } }, { "key": "19530", "source": "2025", "target": "450", "attributes": { "weight": 1 } }, { "key": "19525", "source": "2025", "target": "435", "attributes": { "weight": 1 } }, { "key": "19535", "source": "2025", "target": "489", "attributes": { "weight": 1 } }, { "key": "19534", "source": "2025", "target": "231", "attributes": { "weight": 1 } }, { "key": "19536", "source": "2025", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19533", "source": "2025", "target": "2258", "attributes": { "weight": 1 } }, { "key": "28929", "source": "2025", "target": "2042", "attributes": { "weight": 1 } }, { "key": "19531", "source": "2025", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19532", "source": "2025", "target": "1836", "attributes": { "weight": 1 } }, { "key": "19526", "source": "2025", "target": "1023", "attributes": { "weight": 1 } }, { "key": "15577", "source": "2026", "target": "1329", "attributes": { "weight": 1 } }, { "key": "15583", "source": "2027", "target": "913", "attributes": { "weight": 1 } }, { "key": "15594", "source": "2028", "target": "1329", "attributes": { "weight": 1 } }, { "key": "15595", "source": "2029", "target": "1329", "attributes": { "weight": 1 } }, { "key": "33981", "source": "2029", "target": "1197", "attributes": { "weight": 1 } }, { "key": "33988", "source": "2030", "target": "1197", "attributes": { "weight": 1 } }, { "key": "15598", "source": "2030", "target": "1329", "attributes": { "weight": 1 } }, { "key": "21877", "source": "2030", "target": "337", "attributes": { "weight": 1 } }, { "key": "15646", "source": "2031", "target": "925", "attributes": { "weight": 1 } }, { "key": "34068", "source": "2031", "target": "1197", "attributes": { "weight": 1 } }, { "key": "21881", "source": "2032", "target": "337", "attributes": { "weight": 1 } }, { "key": "34069", "source": "2032", "target": "123", "attributes": { "weight": 1 } }, { "key": "15648", "source": "2032", "target": "925", "attributes": { "weight": 1 } }, { "key": "21880", "source": "2032", "target": "2293", "attributes": { "weight": 1 } }, { "key": "15762", "source": "2033", "target": "1329", "attributes": { "weight": 1 } }, { "key": "15765", "source": "2034", "target": "913", "attributes": { "weight": 1 } }, { "key": "15791", "source": "2035", "target": "2048", "attributes": { "weight": 1 } }, { "key": "34177", "source": "2035", "target": "1197", "attributes": { "weight": 1 } }, { "key": "15792", "source": "2035", "target": "1329", "attributes": { "weight": 1 } }, { "key": "15823", "source": "2036", "target": "925", "attributes": { "weight": 1 } }, { "key": "21940", "source": "2037", "target": "337", "attributes": { "weight": 1 } }, { "key": "15858", "source": "2037", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34442", "source": "2037", "target": "1197", "attributes": { "weight": 1 } }, { "key": "21939", "source": "2037", "target": "2293", "attributes": { "weight": 1 } }, { "key": "15860", "source": "2038", "target": "2047", "attributes": { "weight": 1 } }, { "key": "15859", "source": "2038", "target": "925", "attributes": { "weight": 1 } }, { "key": "15873", "source": "2039", "target": "925", "attributes": { "weight": 1 } }, { "key": "15872", "source": "2039", "target": "2023", "attributes": { "weight": 1 } }, { "key": "15874", "source": "2040", "target": "925", "attributes": { "weight": 1 } }, { "key": "34448", "source": "2040", "target": "1197", "attributes": { "weight": 1 } }, { "key": "15876", "source": "2041", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34451", "source": "2041", "target": "1197", "attributes": { "weight": 1 } }, { "key": "28939", "source": "2042", "target": "479", "attributes": { "weight": 2 } }, { "key": "15899", "source": "2042", "target": "2025", "attributes": { "weight": 2 } }, { "key": "35978", "source": "2042", "target": "2258", "attributes": { "weight": 1 } }, { "key": "29038", "source": "2042", "target": "495", "attributes": { "weight": 1 } }, { "key": "34507", "source": "2043", "target": "1197", "attributes": { "weight": 1 } }, { "key": "15963", "source": "2043", "target": "925", "attributes": { "weight": 1 } }, { "key": "34508", "source": "2043", "target": "123", "attributes": { "weight": 1 } }, { "key": "22003", "source": "2044", "target": "337", "attributes": { "weight": 1 } }, { "key": "22002", "source": "2044", "target": "2293", "attributes": { "weight": 1 } }, { "key": "18258", "source": "2044", "target": "1197", "attributes": { "weight": 2 } }, { "key": "16030", "source": "2044", "target": "925", "attributes": { "weight": 1 } }, { "key": "16188", "source": "2045", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16195", "source": "2046", "target": "913", "attributes": { "weight": 1 } }, { "key": "16225", "source": "2047", "target": "925", "attributes": { "weight": 1 } }, { "key": "16224", "source": "2047", "target": "2038", "attributes": { "weight": 1 } }, { "key": "16231", "source": "2048", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34687", "source": "2048", "target": "1197", "attributes": { "weight": 1 } }, { "key": "16230", "source": "2048", "target": "2035", "attributes": { "weight": 1 } }, { "key": "16276", "source": "2049", "target": "1329", "attributes": { "weight": 1 } }, { "key": "34777", "source": "2049", "target": "1197", "attributes": { "weight": 1 } }, { "key": "16389", "source": "2050", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16394", "source": "2051", "target": "1329", "attributes": { "weight": 1 } }, { "key": "16419", "source": "2052", "target": "39", "attributes": { "weight": 1 } }, { "key": "16428", "source": "2053", "target": "2052", "attributes": { "weight": 1 } }, { "key": "16429", "source": "2053", "target": "39", "attributes": { "weight": 1 } }, { "key": "16431", "source": "2054", "target": "1387", "attributes": { "weight": 2 } }, { "key": "16432", "source": "2054", "target": "2063", "attributes": { "weight": 1 } }, { "key": "16433", "source": "2055", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16434", "source": "2055", "target": "2066", "attributes": { "weight": 1 } }, { "key": "16468", "source": "2056", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16470", "source": "2057", "target": "2065", "attributes": { "weight": 1 } }, { "key": "16469", "source": "2057", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16471", "source": "2058", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16472", "source": "2059", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16473", "source": "2059", "target": "2061", "attributes": { "weight": 1 } }, { "key": "16474", "source": "2059", "target": "2066", "attributes": { "weight": 1 } }, { "key": "16479", "source": "2060", "target": "2066", "attributes": { "weight": 1 } }, { "key": "16480", "source": "2060", "target": "1816", "attributes": { "weight": 1 } }, { "key": "16478", "source": "2060", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16483", "source": "2061", "target": "2066", "attributes": { "weight": 1 } }, { "key": "16482", "source": "2061", "target": "2059", "attributes": { "weight": 1 } }, { "key": "16481", "source": "2061", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16484", "source": "2062", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16485", "source": "2062", "target": "2066", "attributes": { "weight": 1 } }, { "key": "16486", "source": "2063", "target": "2054", "attributes": { "weight": 1 } }, { "key": "16487", "source": "2063", "target": "1387", "attributes": { "weight": 2 } }, { "key": "16488", "source": "2064", "target": "1387", "attributes": { "weight": 1 } }, { "key": "32937", "source": "2064", "target": "470", "attributes": { "weight": 1 } }, { "key": "16489", "source": "2064", "target": "1710", "attributes": { "weight": 1 } }, { "key": "16490", "source": "2065", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16491", "source": "2065", "target": "2057", "attributes": { "weight": 1 } }, { "key": "16496", "source": "2066", "target": "2061", "attributes": { "weight": 1 } }, { "key": "16497", "source": "2066", "target": "2062", "attributes": { "weight": 1 } }, { "key": "16494", "source": "2066", "target": "2059", "attributes": { "weight": 1 } }, { "key": "16495", "source": "2066", "target": "2060", "attributes": { "weight": 1 } }, { "key": "16492", "source": "2066", "target": "2055", "attributes": { "weight": 1 } }, { "key": "16493", "source": "2066", "target": "1387", "attributes": { "weight": 1 } }, { "key": "16518", "source": "2067", "target": "2077", "attributes": { "weight": 1 } }, { "key": "22271", "source": "2067", "target": "794", "attributes": { "weight": 1 } }, { "key": "34929", "source": "2067", "target": "352", "attributes": { "weight": 1 } }, { "key": "17101", "source": "2067", "target": "8", "attributes": { "weight": 1 } }, { "key": "16519", "source": "2067", "target": "1780", "attributes": { "weight": 2 } }, { "key": "16516", "source": "2067", "target": "787", "attributes": { "weight": 2 } }, { "key": "16517", "source": "2067", "target": "3", "attributes": { "weight": 1 } }, { "key": "30828", "source": "2067", "target": "13", "attributes": { "weight": 1 } }, { "key": "16521", "source": "2068", "target": "1780", "attributes": { "weight": 1 } }, { "key": "17102", "source": "2068", "target": "3", "attributes": { "weight": 1 } }, { "key": "17103", "source": "2068", "target": "14", "attributes": { "weight": 1 } }, { "key": "16520", "source": "2068", "target": "787", "attributes": { "weight": 1 } }, { "key": "16524", "source": "2069", "target": "787", "attributes": { "weight": 1 } }, { "key": "25605", "source": "2069", "target": "1780", "attributes": { "weight": 1 } }, { "key": "25610", "source": "2070", "target": "220", "attributes": { "weight": 1 } }, { "key": "16526", "source": "2070", "target": "2077", "attributes": { "weight": 2 } }, { "key": "37428", "source": "2070", "target": "2080", "attributes": { "weight": 1 } }, { "key": "25611", "source": "2070", "target": "791", "attributes": { "weight": 1 } }, { "key": "34974", "source": "2070", "target": "352", "attributes": { "weight": 1 } }, { "key": "16527", "source": "2070", "target": "1780", "attributes": { "weight": 2 } }, { "key": "25609", "source": "2070", "target": "787", "attributes": { "weight": 2 } }, { "key": "16531", "source": "2071", "target": "2079", "attributes": { "weight": 1 } }, { "key": "31619", "source": "2071", "target": "8", "attributes": { "weight": 1 } }, { "key": "34990", "source": "2071", "target": "3", "attributes": { "weight": 1 } }, { "key": "16530", "source": "2071", "target": "2074", "attributes": { "weight": 1 } }, { "key": "16529", "source": "2071", "target": "787", "attributes": { "weight": 2 } }, { "key": "31620", "source": "2071", "target": "595", "attributes": { "weight": 1 } }, { "key": "34993", "source": "2072", "target": "3", "attributes": { "weight": 1 } }, { "key": "16532", "source": "2072", "target": "787", "attributes": { "weight": 1 } }, { "key": "25622", "source": "2073", "target": "1780", "attributes": { "weight": 1 } }, { "key": "16534", "source": "2073", "target": "787", "attributes": { "weight": 1 } }, { "key": "34994", "source": "2073", "target": "352", "attributes": { "weight": 1 } }, { "key": "25626", "source": "2074", "target": "787", "attributes": { "weight": 1 } }, { "key": "16535", "source": "2074", "target": "2071", "attributes": { "weight": 1 } }, { "key": "16536", "source": "2074", "target": "2077", "attributes": { "weight": 1 } }, { "key": "25627", "source": "2074", "target": "1780", "attributes": { "weight": 1 } }, { "key": "16541", "source": "2075", "target": "2079", "attributes": { "weight": 1 } }, { "key": "16540", "source": "2075", "target": "1780", "attributes": { "weight": 1 } }, { "key": "16539", "source": "2075", "target": "787", "attributes": { "weight": 1 } }, { "key": "16543", "source": "2076", "target": "1780", "attributes": { "weight": 1 } }, { "key": "16542", "source": "2076", "target": "787", "attributes": { "weight": 1 } }, { "key": "16545", "source": "2077", "target": "787", "attributes": { "weight": 2 } }, { "key": "16553", "source": "2077", "target": "2074", "attributes": { "weight": 1 } }, { "key": "16551", "source": "2077", "target": "5", "attributes": { "weight": 2 } }, { "key": "16547", "source": "2077", "target": "2067", "attributes": { "weight": 1 } }, { "key": "16544", "source": "2077", "target": "810", "attributes": { "weight": 1 } }, { "key": "25636", "source": "2077", "target": "791", "attributes": { "weight": 1 } }, { "key": "16552", "source": "2077", "target": "682", "attributes": { "weight": 1 } }, { "key": "16549", "source": "2077", "target": "693", "attributes": { "weight": 1 } }, { "key": "16555", "source": "2077", "target": "9", "attributes": { "weight": 1 } }, { "key": "16546", "source": "2077", "target": "1", "attributes": { "weight": 1 } }, { "key": "16557", "source": "2077", "target": "1780", "attributes": { "weight": 2 } }, { "key": "16550", "source": "2077", "target": "2070", "attributes": { "weight": 2 } }, { "key": "16554", "source": "2077", "target": "819", "attributes": { "weight": 1 } }, { "key": "35023", "source": "2077", "target": "352", "attributes": { "weight": 1 } }, { "key": "16558", "source": "2077", "target": "2080", "attributes": { "weight": 1 } }, { "key": "16548", "source": "2077", "target": "3", "attributes": { "weight": 1 } }, { "key": "16556", "source": "2077", "target": "673", "attributes": { "weight": 1 } }, { "key": "30952", "source": "2079", "target": "3", "attributes": { "weight": 1 } }, { "key": "16572", "source": "2079", "target": "2075", "attributes": { "weight": 1 } }, { "key": "16571", "source": "2079", "target": "2071", "attributes": { "weight": 1 } }, { "key": "16574", "source": "2079", "target": "1780", "attributes": { "weight": 2 } }, { "key": "16570", "source": "2079", "target": "787", "attributes": { "weight": 2 } }, { "key": "16575", "source": "2080", "target": "2077", "attributes": { "weight": 1 } }, { "key": "37431", "source": "2080", "target": "1780", "attributes": { "weight": 1 } }, { "key": "37430", "source": "2080", "target": "2070", "attributes": { "weight": 1 } }, { "key": "16583", "source": "2081", "target": "2083", "attributes": { "weight": 1 } }, { "key": "36341", "source": "2081", "target": "434", "attributes": { "weight": 1 } }, { "key": "16885", "source": "2081", "target": "1354", "attributes": { "weight": 1 } }, { "key": "16886", "source": "2081", "target": "70", "attributes": { "weight": 2 } }, { "key": "36343", "source": "2081", "target": "1863", "attributes": { "weight": 1 } }, { "key": "36342", "source": "2081", "target": "674", "attributes": { "weight": 1 } }, { "key": "16585", "source": "2082", "target": "674", "attributes": { "weight": 1 } }, { "key": "16587", "source": "2083", "target": "70", "attributes": { "weight": 1 } }, { "key": "16586", "source": "2083", "target": "2081", "attributes": { "weight": 1 } }, { "key": "16588", "source": "2083", "target": "1337", "attributes": { "weight": 1 } }, { "key": "16634", "source": "2084", "target": "70", "attributes": { "weight": 2 } }, { "key": "36245", "source": "2084", "target": "3302", "attributes": { "weight": 1 } }, { "key": "36246", "source": "2084", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36242", "source": "2084", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36243", "source": "2084", "target": "2089", "attributes": { "weight": 1 } }, { "key": "36244", "source": "2084", "target": "3288", "attributes": { "weight": 1 } }, { "key": "16635", "source": "2084", "target": "596", "attributes": { "weight": 3 } }, { "key": "16696", "source": "2085", "target": "70", "attributes": { "weight": 1 } }, { "key": "16727", "source": "2086", "target": "674", "attributes": { "weight": 1 } }, { "key": "18317", "source": "2086", "target": "8", "attributes": { "weight": 2 } }, { "key": "16729", "source": "2086", "target": "70", "attributes": { "weight": 1 } }, { "key": "16728", "source": "2086", "target": "457", "attributes": { "weight": 1 } }, { "key": "18319", "source": "2086", "target": "595", "attributes": { "weight": 1 } }, { "key": "35831", "source": "2086", "target": "2258", "attributes": { "weight": 1 } }, { "key": "18320", "source": "2086", "target": "2208", "attributes": { "weight": 1 } }, { "key": "17148", "source": "2086", "target": "449", "attributes": { "weight": 1 } }, { "key": "18318", "source": "2086", "target": "1092", "attributes": { "weight": 1 } }, { "key": "23304", "source": "2086", "target": "223", "attributes": { "weight": 1 } }, { "key": "30822", "source": "2086", "target": "3", "attributes": { "weight": 1 } }, { "key": "36276", "source": "2087", "target": "3289", "attributes": { "weight": 1 } }, { "key": "36272", "source": "2087", "target": "3278", "attributes": { "weight": 1 } }, { "key": "36275", "source": "2087", "target": "1862", "attributes": { "weight": 1 } }, { "key": "16730", "source": "2087", "target": "70", "attributes": { "weight": 2 } }, { "key": "36281", "source": "2087", "target": "3300", "attributes": { "weight": 1 } }, { "key": "31256", "source": "2087", "target": "1389", "attributes": { "weight": 2 } }, { "key": "36280", "source": "2087", "target": "3295", "attributes": { "weight": 1 } }, { "key": "36274", "source": "2087", "target": "3280", "attributes": { "weight": 1 } }, { "key": "31255", "source": "2087", "target": "596", "attributes": { "weight": 2 } }, { "key": "36279", "source": "2087", "target": "3293", "attributes": { "weight": 1 } }, { "key": "36283", "source": "2087", "target": "3304", "attributes": { "weight": 1 } }, { "key": "36273", "source": "2087", "target": "434", "attributes": { "weight": 1 } }, { "key": "36282", "source": "2087", "target": "3303", "attributes": { "weight": 1 } }, { "key": "36278", "source": "2087", "target": "3292", "attributes": { "weight": 1 } }, { "key": "36277", "source": "2087", "target": "3291", "attributes": { "weight": 1 } }, { "key": "20155", "source": "2088", "target": "438", "attributes": { "weight": 1 } }, { "key": "31314", "source": "2088", "target": "674", "attributes": { "weight": 2 } }, { "key": "35967", "source": "2088", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20158", "source": "2088", "target": "194", "attributes": { "weight": 1 } }, { "key": "16813", "source": "2088", "target": "70", "attributes": { "weight": 2 } }, { "key": "20153", "source": "2088", "target": "429", "attributes": { "weight": 1 } }, { "key": "20157", "source": "2088", "target": "489", "attributes": { "weight": 1 } }, { "key": "20156", "source": "2088", "target": "480", "attributes": { "weight": 1 } }, { "key": "36301", "source": "2088", "target": "434", "attributes": { "weight": 1 } }, { "key": "20154", "source": "2088", "target": "1354", "attributes": { "weight": 1 } }, { "key": "36318", "source": "2089", "target": "596", "attributes": { "weight": 1 } }, { "key": "16832", "source": "2089", "target": "70", "attributes": { "weight": 2 } }, { "key": "36319", "source": "2089", "target": "3305", "attributes": { "weight": 1 } }, { "key": "36317", "source": "2089", "target": "3288", "attributes": { "weight": 1 } }, { "key": "36320", "source": "2089", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36316", "source": "2089", "target": "2084", "attributes": { "weight": 1 } }, { "key": "23385", "source": "2090", "target": "60", "attributes": { "weight": 1 } }, { "key": "16839", "source": "2090", "target": "59", "attributes": { "weight": 2 } }, { "key": "16840", "source": "2091", "target": "674", "attributes": { "weight": 1 } }, { "key": "23387", "source": "2092", "target": "2001", "attributes": { "weight": 1 } }, { "key": "23388", "source": "2092", "target": "1752", "attributes": { "weight": 1 } }, { "key": "16869", "source": "2092", "target": "59", "attributes": { "weight": 2 } }, { "key": "23386", "source": "2092", "target": "60", "attributes": { "weight": 1 } }, { "key": "35695", "source": "2092", "target": "3248", "attributes": { "weight": 1 } }, { "key": "16876", "source": "2093", "target": "70", "attributes": { "weight": 2 } }, { "key": "31333", "source": "2093", "target": "596", "attributes": { "weight": 1 } }, { "key": "20490", "source": "2094", "target": "2258", "attributes": { "weight": 1 } }, { "key": "33563", "source": "2094", "target": "135", "attributes": { "weight": 1 } }, { "key": "20484", "source": "2094", "target": "435", "attributes": { "weight": 1 } }, { "key": "20492", "source": "2094", "target": "2267", "attributes": { "weight": 1 } }, { "key": "20489", "source": "2094", "target": "1247", "attributes": { "weight": 2 } }, { "key": "27128", "source": "2094", "target": "2645", "attributes": { "weight": 1 } }, { "key": "16881", "source": "2094", "target": "70", "attributes": { "weight": 1 } }, { "key": "24158", "source": "2094", "target": "471", "attributes": { "weight": 1 } }, { "key": "20485", "source": "2094", "target": "2106", "attributes": { "weight": 1 } }, { "key": "20486", "source": "2094", "target": "449", "attributes": { "weight": 1 } }, { "key": "20491", "source": "2094", "target": "472", "attributes": { "weight": 2 } }, { "key": "20493", "source": "2094", "target": "489", "attributes": { "weight": 1 } }, { "key": "33562", "source": "2094", "target": "51", "attributes": { "weight": 1 } }, { "key": "27130", "source": "2094", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20488", "source": "2094", "target": "1832", "attributes": { "weight": 2 } }, { "key": "27129", "source": "2094", "target": "450", "attributes": { "weight": 1 } }, { "key": "20487", "source": "2094", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20949", "source": "2095", "target": "194", "attributes": { "weight": 1 } }, { "key": "20919", "source": "2095", "target": "222", "attributes": { "weight": 1 } }, { "key": "20942", "source": "2095", "target": "489", "attributes": { "weight": 1 } }, { "key": "20924", "source": "2095", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20934", "source": "2095", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20929", "source": "2095", "target": "462", "attributes": { "weight": 1 } }, { "key": "20928", "source": "2095", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20945", "source": "2095", "target": "235", "attributes": { "weight": 1 } }, { "key": "20923", "source": "2095", "target": "1070", "attributes": { "weight": 1 } }, { "key": "16995", "source": "2095", "target": "1354", "attributes": { "weight": 2 } }, { "key": "20948", "source": "2095", "target": "498", "attributes": { "weight": 1 } }, { "key": "20922", "source": "2095", "target": "443", "attributes": { "weight": 1 } }, { "key": "20927", "source": "2095", "target": "450", "attributes": { "weight": 1 } }, { "key": "20937", "source": "2095", "target": "481", "attributes": { "weight": 1 } }, { "key": "20947", "source": "2095", "target": "2276", "attributes": { "weight": 1 } }, { "key": "20925", "source": "2095", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20917", "source": "2095", "target": "130", "attributes": { "weight": 1 } }, { "key": "20921", "source": "2095", "target": "2242", "attributes": { "weight": 1 } }, { "key": "20936", "source": "2095", "target": "478", "attributes": { "weight": 1 } }, { "key": "20931", "source": "2095", "target": "2254", "attributes": { "weight": 1 } }, { "key": "20939", "source": "2095", "target": "695", "attributes": { "weight": 1 } }, { "key": "20932", "source": "2095", "target": "471", "attributes": { "weight": 1 } }, { "key": "20926", "source": "2095", "target": "449", "attributes": { "weight": 1 } }, { "key": "20930", "source": "2095", "target": "464", "attributes": { "weight": 1 } }, { "key": "20933", "source": "2095", "target": "472", "attributes": { "weight": 1 } }, { "key": "20946", "source": "2095", "target": "1390", "attributes": { "weight": 1 } }, { "key": "20940", "source": "2095", "target": "2270", "attributes": { "weight": 1 } }, { "key": "20935", "source": "2095", "target": "231", "attributes": { "weight": 1 } }, { "key": "20938", "source": "2095", "target": "483", "attributes": { "weight": 1 } }, { "key": "20941", "source": "2095", "target": "487", "attributes": { "weight": 1 } }, { "key": "20944", "source": "2095", "target": "1750", "attributes": { "weight": 1 } }, { "key": "20943", "source": "2095", "target": "672", "attributes": { "weight": 1 } }, { "key": "20920", "source": "2095", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20918", "source": "2095", "target": "221", "attributes": { "weight": 1 } }, { "key": "16994", "source": "2095", "target": "429", "attributes": { "weight": 2 } }, { "key": "21180", "source": "2096", "target": "1836", "attributes": { "weight": 1 } }, { "key": "36123", "source": "2096", "target": "1337", "attributes": { "weight": 1 } }, { "key": "17018", "source": "2096", "target": "70", "attributes": { "weight": 1 } }, { "key": "36124", "source": "2096", "target": "73", "attributes": { "weight": 1 } }, { "key": "26928", "source": "2096", "target": "497", "attributes": { "weight": 1 } }, { "key": "21181", "source": "2096", "target": "489", "attributes": { "weight": 1 } }, { "key": "21179", "source": "2096", "target": "449", "attributes": { "weight": 1 } }, { "key": "17085", "source": "2097", "target": "1559", "attributes": { "weight": 1 } }, { "key": "27781", "source": "2098", "target": "1906", "attributes": { "weight": 1 } }, { "key": "17093", "source": "2098", "target": "1926", "attributes": { "weight": 2 } }, { "key": "27782", "source": "2098", "target": "303", "attributes": { "weight": 1 } }, { "key": "17094", "source": "2099", "target": "1926", "attributes": { "weight": 2 } }, { "key": "17095", "source": "2100", "target": "1926", "attributes": { "weight": 1 } }, { "key": "17100", "source": "2101", "target": "1926", "attributes": { "weight": 1 } }, { "key": "17108", "source": "2102", "target": "13", "attributes": { "weight": 1 } }, { "key": "17109", "source": "2102", "target": "2103", "attributes": { "weight": 1 } }, { "key": "17107", "source": "2102", "target": "2068", "attributes": { "weight": 1 } }, { "key": "17106", "source": "2102", "target": "2067", "attributes": { "weight": 1 } }, { "key": "17113", "source": "2103", "target": "2102", "attributes": { "weight": 1 } }, { "key": "30570", "source": "2103", "target": "792", "attributes": { "weight": 2 } }, { "key": "30569", "source": "2103", "target": "788", "attributes": { "weight": 2 } }, { "key": "30571", "source": "2103", "target": "8", "attributes": { "weight": 1 } }, { "key": "31693", "source": "2103", "target": "595", "attributes": { "weight": 1 } }, { "key": "30568", "source": "2103", "target": "3", "attributes": { "weight": 1 } }, { "key": "17118", "source": "2104", "target": "14", "attributes": { "weight": 2 } }, { "key": "17116", "source": "2104", "target": "2067", "attributes": { "weight": 1 } }, { "key": "17117", "source": "2104", "target": "3", "attributes": { "weight": 3 } }, { "key": "33831", "source": "2104", "target": "8", "attributes": { "weight": 1 } }, { "key": "27008", "source": "2105", "target": "451", "attributes": { "weight": 1 } }, { "key": "27004", "source": "2105", "target": "1353", "attributes": { "weight": 1 } }, { "key": "27010", "source": "2105", "target": "56", "attributes": { "weight": 1 } }, { "key": "35356", "source": "2105", "target": "1811", "attributes": { "weight": 1 } }, { "key": "27009", "source": "2105", "target": "231", "attributes": { "weight": 1 } }, { "key": "27006", "source": "2105", "target": "1354", "attributes": { "weight": 1 } }, { "key": "17144", "source": "2105", "target": "449", "attributes": { "weight": 1 } }, { "key": "27007", "source": "2105", "target": "860", "attributes": { "weight": 1 } }, { "key": "27005", "source": "2105", "target": "429", "attributes": { "weight": 1 } }, { "key": "19439", "source": "2106", "target": "480", "attributes": { "weight": 1 } }, { "key": "19426", "source": "2106", "target": "1353", "attributes": { "weight": 1 } }, { "key": "19430", "source": "2106", "target": "1070", "attributes": { "weight": 1 } }, { "key": "17147", "source": "2106", "target": "449", "attributes": { "weight": 1 } }, { "key": "19428", "source": "2106", "target": "1354", "attributes": { "weight": 1 } }, { "key": "19434", "source": "2106", "target": "459", "attributes": { "weight": 1 } }, { "key": "19433", "source": "2106", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19441", "source": "2106", "target": "56", "attributes": { "weight": 2 } }, { "key": "19427", "source": "2106", "target": "429", "attributes": { "weight": 1 } }, { "key": "19436", "source": "2106", "target": "2094", "attributes": { "weight": 1 } }, { "key": "19435", "source": "2106", "target": "54", "attributes": { "weight": 1 } }, { "key": "19440", "source": "2106", "target": "483", "attributes": { "weight": 1 } }, { "key": "19437", "source": "2106", "target": "1367", "attributes": { "weight": 1 } }, { "key": "19429", "source": "2106", "target": "2243", "attributes": { "weight": 1 } }, { "key": "19432", "source": "2106", "target": "1358", "attributes": { "weight": 1 } }, { "key": "19438", "source": "2106", "target": "231", "attributes": { "weight": 2 } }, { "key": "19431", "source": "2106", "target": "451", "attributes": { "weight": 1 } }, { "key": "20234", "source": "2107", "target": "489", "attributes": { "weight": 1 } }, { "key": "20232", "source": "2107", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20231", "source": "2107", "target": "451", "attributes": { "weight": 1 } }, { "key": "20233", "source": "2107", "target": "2258", "attributes": { "weight": 1 } }, { "key": "17252", "source": "2107", "target": "449", "attributes": { "weight": 1 } }, { "key": "20230", "source": "2107", "target": "1354", "attributes": { "weight": 1 } }, { "key": "17291", "source": "2108", "target": "468", "attributes": { "weight": 1 } }, { "key": "17282", "source": "2108", "target": "130", "attributes": { "weight": 1 } }, { "key": "20690", "source": "2108", "target": "1836", "attributes": { "weight": 1 } }, { "key": "17279", "source": "2108", "target": "429", "attributes": { "weight": 2 } }, { "key": "17280", "source": "2108", "target": "1354", "attributes": { "weight": 1 } }, { "key": "17289", "source": "2108", "target": "1219", "attributes": { "weight": 1 } }, { "key": "20687", "source": "2108", "target": "1360", "attributes": { "weight": 1 } }, { "key": "17295", "source": "2108", "target": "474", "attributes": { "weight": 1 } }, { "key": "17285", "source": "2108", "target": "223", "attributes": { "weight": 1 } }, { "key": "17290", "source": "2108", "target": "1362", "attributes": { "weight": 1 } }, { "key": "20689", "source": "2108", "target": "54", "attributes": { "weight": 1 } }, { "key": "17287", "source": "2108", "target": "450", "attributes": { "weight": 1 } }, { "key": "17281", "source": "2108", "target": "220", "attributes": { "weight": 1 } }, { "key": "20686", "source": "2108", "target": "1358", "attributes": { "weight": 1 } }, { "key": "17278", "source": "2108", "target": "1353", "attributes": { "weight": 2 } }, { "key": "20688", "source": "2108", "target": "135", "attributes": { "weight": 1 } }, { "key": "17284", "source": "2108", "target": "51", "attributes": { "weight": 1 } }, { "key": "17294", "source": "2108", "target": "189", "attributes": { "weight": 1 } }, { "key": "20693", "source": "2108", "target": "1390", "attributes": { "weight": 1 } }, { "key": "17283", "source": "2108", "target": "435", "attributes": { "weight": 1 } }, { "key": "17296", "source": "2108", "target": "1282", "attributes": { "weight": 1 } }, { "key": "17288", "source": "2108", "target": "451", "attributes": { "weight": 2 } }, { "key": "17297", "source": "2108", "target": "231", "attributes": { "weight": 2 } }, { "key": "17292", "source": "2108", "target": "470", "attributes": { "weight": 1 } }, { "key": "20692", "source": "2108", "target": "56", "attributes": { "weight": 1 } }, { "key": "20694", "source": "2108", "target": "498", "attributes": { "weight": 1 } }, { "key": "20691", "source": "2108", "target": "489", "attributes": { "weight": 1 } }, { "key": "20685", "source": "2108", "target": "1832", "attributes": { "weight": 1 } }, { "key": "17286", "source": "2108", "target": "442", "attributes": { "weight": 1 } }, { "key": "17293", "source": "2108", "target": "472", "attributes": { "weight": 1 } }, { "key": "24224", "source": "2109", "target": "442", "attributes": { "weight": 2 } }, { "key": "24222", "source": "2109", "target": "437", "attributes": { "weight": 2 } }, { "key": "17304", "source": "2109", "target": "449", "attributes": { "weight": 1 } }, { "key": "33646", "source": "2109", "target": "135", "attributes": { "weight": 1 } }, { "key": "20958", "source": "2109", "target": "429", "attributes": { "weight": 3 } }, { "key": "33645", "source": "2109", "target": "52", "attributes": { "weight": 1 } }, { "key": "35215", "source": "2109", "target": "459", "attributes": { "weight": 1 } }, { "key": "33644", "source": "2109", "target": "425", "attributes": { "weight": 1 } }, { "key": "20957", "source": "2109", "target": "1353", "attributes": { "weight": 2 } }, { "key": "20960", "source": "2109", "target": "130", "attributes": { "weight": 3 } }, { "key": "20968", "source": "2109", "target": "56", "attributes": { "weight": 2 } }, { "key": "24225", "source": "2109", "target": "1711", "attributes": { "weight": 1 } }, { "key": "20961", "source": "2109", "target": "221", "attributes": { "weight": 1 } }, { "key": "24223", "source": "2109", "target": "223", "attributes": { "weight": 2 } }, { "key": "20965", "source": "2109", "target": "231", "attributes": { "weight": 3 } }, { "key": "20969", "source": "2109", "target": "1375", "attributes": { "weight": 1 } }, { "key": "20964", "source": "2109", "target": "471", "attributes": { "weight": 2 } }, { "key": "20962", "source": "2109", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20967", "source": "2109", "target": "1374", "attributes": { "weight": 1 } }, { "key": "20966", "source": "2109", "target": "489", "attributes": { "weight": 1 } }, { "key": "20963", "source": "2109", "target": "54", "attributes": { "weight": 3 } }, { "key": "20959", "source": "2109", "target": "1354", "attributes": { "weight": 1 } }, { "key": "33657", "source": "2110", "target": "231", "attributes": { "weight": 1 } }, { "key": "33655", "source": "2110", "target": "1362", "attributes": { "weight": 1 } }, { "key": "33647", "source": "2110", "target": "429", "attributes": { "weight": 1 } }, { "key": "33648", "source": "2110", "target": "1354", "attributes": { "weight": 1 } }, { "key": "33652", "source": "2110", "target": "451", "attributes": { "weight": 1 } }, { "key": "33659", "source": "2110", "target": "494", "attributes": { "weight": 1 } }, { "key": "33656", "source": "2110", "target": "464", "attributes": { "weight": 1 } }, { "key": "33651", "source": "2110", "target": "450", "attributes": { "weight": 1 } }, { "key": "33654", "source": "2110", "target": "459", "attributes": { "weight": 1 } }, { "key": "33653", "source": "2110", "target": "52", "attributes": { "weight": 1 } }, { "key": "17305", "source": "2110", "target": "449", "attributes": { "weight": 1 } }, { "key": "33650", "source": "2110", "target": "130", "attributes": { "weight": 1 } }, { "key": "33649", "source": "2110", "target": "220", "attributes": { "weight": 1 } }, { "key": "33658", "source": "2110", "target": "672", "attributes": { "weight": 1 } }, { "key": "17308", "source": "2111", "target": "435", "attributes": { "weight": 1 } }, { "key": "21003", "source": "2111", "target": "1354", "attributes": { "weight": 1 } }, { "key": "21015", "source": "2111", "target": "56", "attributes": { "weight": 1 } }, { "key": "21012", "source": "2111", "target": "231", "attributes": { "weight": 1 } }, { "key": "21008", "source": "2111", "target": "135", "attributes": { "weight": 1 } }, { "key": "21004", "source": "2111", "target": "1023", "attributes": { "weight": 1 } }, { "key": "17311", "source": "2111", "target": "450", "attributes": { "weight": 1 } }, { "key": "17309", "source": "2111", "target": "938", "attributes": { "weight": 1 } }, { "key": "21010", "source": "2111", "target": "474", "attributes": { "weight": 1 } }, { "key": "17312", "source": "2111", "target": "451", "attributes": { "weight": 2 } }, { "key": "21007", "source": "2111", "target": "464", "attributes": { "weight": 1 } }, { "key": "21005", "source": "2111", "target": "186", "attributes": { "weight": 1 } }, { "key": "21011", "source": "2111", "target": "1127", "attributes": { "weight": 1 } }, { "key": "21014", "source": "2111", "target": "672", "attributes": { "weight": 1 } }, { "key": "17315", "source": "2111", "target": "472", "attributes": { "weight": 1 } }, { "key": "21009", "source": "2111", "target": "1836", "attributes": { "weight": 1 } }, { "key": "17313", "source": "2111", "target": "370", "attributes": { "weight": 1 } }, { "key": "21013", "source": "2111", "target": "489", "attributes": { "weight": 1 } }, { "key": "21002", "source": "2111", "target": "1353", "attributes": { "weight": 1 } }, { "key": "26750", "source": "2111", "target": "1047", "attributes": { "weight": 2 } }, { "key": "21006", "source": "2111", "target": "1358", "attributes": { "weight": 1 } }, { "key": "17307", "source": "2111", "target": "429", "attributes": { "weight": 2 } }, { "key": "21016", "source": "2111", "target": "2276", "attributes": { "weight": 1 } }, { "key": "17314", "source": "2111", "target": "468", "attributes": { "weight": 1 } }, { "key": "21017", "source": "2111", "target": "498", "attributes": { "weight": 1 } }, { "key": "17310", "source": "2111", "target": "51", "attributes": { "weight": 1 } }, { "key": "30338", "source": "2112", "target": "1046", "attributes": { "weight": 1 } }, { "key": "27804", "source": "2112", "target": "339", "attributes": { "weight": 1 } }, { "key": "32317", "source": "2112", "target": "2211", "attributes": { "weight": 1 } }, { "key": "27531", "source": "2112", "target": "1520", "attributes": { "weight": 1 } }, { "key": "35223", "source": "2112", "target": "673", "attributes": { "weight": 1 } }, { "key": "18050", "source": "2112", "target": "1036", "attributes": { "weight": 1 } }, { "key": "30699", "source": "2112", "target": "889", "attributes": { "weight": 1 } }, { "key": "32316", "source": "2112", "target": "424", "attributes": { "weight": 1 } }, { "key": "17335", "source": "2112", "target": "358", "attributes": { "weight": 2 } }, { "key": "22265", "source": "2112", "target": "794", "attributes": { "weight": 1 } }, { "key": "22662", "source": "2112", "target": "1037", "attributes": { "weight": 1 } }, { "key": "35676", "source": "2112", "target": "59", "attributes": { "weight": 1 } }, { "key": "32318", "source": "2112", "target": "791", "attributes": { "weight": 1 } }, { "key": "30701", "source": "2113", "target": "889", "attributes": { "weight": 1 } }, { "key": "27533", "source": "2113", "target": "1520", "attributes": { "weight": 1 } }, { "key": "30343", "source": "2113", "target": "1046", "attributes": { "weight": 1 } }, { "key": "17344", "source": "2113", "target": "358", "attributes": { "weight": 2 } }, { "key": "18052", "source": "2113", "target": "1036", "attributes": { "weight": 1 } }, { "key": "32327", "source": "2113", "target": "791", "attributes": { "weight": 1 } }, { "key": "22268", "source": "2113", "target": "794", "attributes": { "weight": 1 } }, { "key": "35224", "source": "2114", "target": "673", "attributes": { "weight": 1 } }, { "key": "27851", "source": "2114", "target": "339", "attributes": { "weight": 1 } }, { "key": "35783", "source": "2114", "target": "790", "attributes": { "weight": 1 } }, { "key": "17456", "source": "2114", "target": "358", "attributes": { "weight": 2 } }, { "key": "27537", "source": "2114", "target": "1520", "attributes": { "weight": 2 } }, { "key": "18058", "source": "2114", "target": "1036", "attributes": { "weight": 1 } }, { "key": "26448", "source": "2114", "target": "454", "attributes": { "weight": 1 } }, { "key": "29025", "source": "2114", "target": "495", "attributes": { "weight": 1 } }, { "key": "31518", "source": "2114", "target": "59", "attributes": { "weight": 3 } }, { "key": "30705", "source": "2114", "target": "889", "attributes": { "weight": 3 } }, { "key": "25787", "source": "2114", "target": "856", "attributes": { "weight": 2 } }, { "key": "25788", "source": "2114", "target": "2211", "attributes": { "weight": 3 } }, { "key": "31520", "source": "2114", "target": "189", "attributes": { "weight": 1 } }, { "key": "22280", "source": "2114", "target": "794", "attributes": { "weight": 1 } }, { "key": "35679", "source": "2114", "target": "1118", "attributes": { "weight": 1 } }, { "key": "30439", "source": "2114", "target": "1046", "attributes": { "weight": 1 } }, { "key": "25789", "source": "2114", "target": "791", "attributes": { "weight": 2 } }, { "key": "31519", "source": "2114", "target": "183", "attributes": { "weight": 1 } }, { "key": "23584", "source": "2114", "target": "220", "attributes": { "weight": 1 } }, { "key": "32343", "source": "2114", "target": "424", "attributes": { "weight": 1 } }, { "key": "31974", "source": "2115", "target": "359", "attributes": { "weight": 2 } }, { "key": "27882", "source": "2115", "target": "339", "attributes": { "weight": 2 } }, { "key": "31971", "source": "2115", "target": "2123", "attributes": { "weight": 1 } }, { "key": "22300", "source": "2115", "target": "794", "attributes": { "weight": 1 } }, { "key": "30715", "source": "2115", "target": "889", "attributes": { "weight": 2 } }, { "key": "31970", "source": "2115", "target": "1045", "attributes": { "weight": 2 } }, { "key": "37111", "source": "2115", "target": "3070", "attributes": { "weight": 1 } }, { "key": "37112", "source": "2115", "target": "2861", "attributes": { "weight": 1 } }, { "key": "28628", "source": "2115", "target": "2288", "attributes": { "weight": 2 } }, { "key": "29710", "source": "2115", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29709", "source": "2115", "target": "421", "attributes": { "weight": 1 } }, { "key": "37115", "source": "2115", "target": "232", "attributes": { "weight": 1 } }, { "key": "36977", "source": "2115", "target": "362", "attributes": { "weight": 1 } }, { "key": "31973", "source": "2115", "target": "791", "attributes": { "weight": 2 } }, { "key": "33055", "source": "2115", "target": "493", "attributes": { "weight": 1 } }, { "key": "30466", "source": "2115", "target": "1046", "attributes": { "weight": 1 } }, { "key": "31975", "source": "2115", "target": "1060", "attributes": { "weight": 2 } }, { "key": "17490", "source": "2115", "target": "358", "attributes": { "weight": 3 } }, { "key": "37113", "source": "2115", "target": "1765", "attributes": { "weight": 1 } }, { "key": "31972", "source": "2115", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29711", "source": "2115", "target": "1253", "attributes": { "weight": 1 } }, { "key": "31977", "source": "2115", "target": "3075", "attributes": { "weight": 1 } }, { "key": "31969", "source": "2115", "target": "2233", "attributes": { "weight": 1 } }, { "key": "27883", "source": "2115", "target": "891", "attributes": { "weight": 1 } }, { "key": "37114", "source": "2115", "target": "1056", "attributes": { "weight": 1 } }, { "key": "22680", "source": "2115", "target": "1037", "attributes": { "weight": 2 } }, { "key": "18073", "source": "2115", "target": "1036", "attributes": { "weight": 2 } }, { "key": "31976", "source": "2115", "target": "2125", "attributes": { "weight": 1 } }, { "key": "17506", "source": "2116", "target": "358", "attributes": { "weight": 2 } }, { "key": "28631", "source": "2116", "target": "2510", "attributes": { "weight": 1 } }, { "key": "29727", "source": "2116", "target": "422", "attributes": { "weight": 1 } }, { "key": "29729", "source": "2116", "target": "1056", "attributes": { "weight": 1 } }, { "key": "23896", "source": "2116", "target": "1763", "attributes": { "weight": 3 } }, { "key": "18079", "source": "2116", "target": "1036", "attributes": { "weight": 4 } }, { "key": "29725", "source": "2116", "target": "2884", "attributes": { "weight": 1 } }, { "key": "22684", "source": "2116", "target": "1037", "attributes": { "weight": 1 } }, { "key": "29726", "source": "2116", "target": "421", "attributes": { "weight": 1 } }, { "key": "28633", "source": "2116", "target": "362", "attributes": { "weight": 2 } }, { "key": "28634", "source": "2116", "target": "1060", "attributes": { "weight": 3 } }, { "key": "29728", "source": "2116", "target": "171", "attributes": { "weight": 1 } }, { "key": "28632", "source": "2116", "target": "359", "attributes": { "weight": 2 } }, { "key": "29730", "source": "2116", "target": "1253", "attributes": { "weight": 1 } }, { "key": "29724", "source": "2116", "target": "1046", "attributes": { "weight": 2 } }, { "key": "22306", "source": "2116", "target": "794", "attributes": { "weight": 3 } }, { "key": "29723", "source": "2116", "target": "2881", "attributes": { "weight": 1 } }, { "key": "30261", "source": "2117", "target": "2560", "attributes": { "weight": 1 } }, { "key": "30260", "source": "2117", "target": "2963", "attributes": { "weight": 1 } }, { "key": "17509", "source": "2117", "target": "1166", "attributes": { "weight": 3 } }, { "key": "24655", "source": "2118", "target": "1060", "attributes": { "weight": 2 } }, { "key": "24654", "source": "2118", "target": "163", "attributes": { "weight": 1 } }, { "key": "19087", "source": "2118", "target": "2232", "attributes": { "weight": 3 } }, { "key": "24650", "source": "2118", "target": "359", "attributes": { "weight": 2 } }, { "key": "24652", "source": "2118", "target": "1765", "attributes": { "weight": 1 } }, { "key": "24649", "source": "2118", "target": "339", "attributes": { "weight": 2 } }, { "key": "19086", "source": "2118", "target": "2231", "attributes": { "weight": 2 } }, { "key": "18083", "source": "2118", "target": "1036", "attributes": { "weight": 1 } }, { "key": "19090", "source": "2118", "target": "2236", "attributes": { "weight": 2 } }, { "key": "24648", "source": "2118", "target": "1520", "attributes": { "weight": 1 } }, { "key": "24653", "source": "2118", "target": "1056", "attributes": { "weight": 2 } }, { "key": "24645", "source": "2118", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17511", "source": "2118", "target": "358", "attributes": { "weight": 3 } }, { "key": "19092", "source": "2118", "target": "2239", "attributes": { "weight": 2 } }, { "key": "19091", "source": "2118", "target": "2237", "attributes": { "weight": 2 } }, { "key": "22686", "source": "2118", "target": "1037", "attributes": { "weight": 2 } }, { "key": "19088", "source": "2118", "target": "2234", "attributes": { "weight": 1 } }, { "key": "19089", "source": "2118", "target": "2235", "attributes": { "weight": 2 } }, { "key": "30481", "source": "2118", "target": "1046", "attributes": { "weight": 1 } }, { "key": "24651", "source": "2118", "target": "161", "attributes": { "weight": 1 } }, { "key": "24647", "source": "2118", "target": "2511", "attributes": { "weight": 1 } }, { "key": "24646", "source": "2118", "target": "889", "attributes": { "weight": 2 } }, { "key": "29750", "source": "2119", "target": "1060", "attributes": { "weight": 1 } }, { "key": "22687", "source": "2119", "target": "1037", "attributes": { "weight": 1 } }, { "key": "29748", "source": "2119", "target": "1056", "attributes": { "weight": 1 } }, { "key": "22370", "source": "2119", "target": "794", "attributes": { "weight": 2 } }, { "key": "29745", "source": "2119", "target": "1045", "attributes": { "weight": 1 } }, { "key": "29749", "source": "2119", "target": "362", "attributes": { "weight": 1 } }, { "key": "29747", "source": "2119", "target": "359", "attributes": { "weight": 1 } }, { "key": "17516", "source": "2119", "target": "358", "attributes": { "weight": 2 } }, { "key": "29746", "source": "2119", "target": "421", "attributes": { "weight": 1 } }, { "key": "28858", "source": "2120", "target": "2808", "attributes": { "weight": 1 } }, { "key": "17527", "source": "2120", "target": "297", "attributes": { "weight": 5 } }, { "key": "28853", "source": "2120", "target": "1166", "attributes": { "weight": 2 } }, { "key": "28863", "source": "2120", "target": "2817", "attributes": { "weight": 1 } }, { "key": "28861", "source": "2120", "target": "2812", "attributes": { "weight": 1 } }, { "key": "28866", "source": "2120", "target": "2822", "attributes": { "weight": 1 } }, { "key": "28864", "source": "2120", "target": "2818", "attributes": { "weight": 1 } }, { "key": "28862", "source": "2120", "target": "2815", "attributes": { "weight": 1 } }, { "key": "28867", "source": "2120", "target": "2823", "attributes": { "weight": 1 } }, { "key": "28855", "source": "2120", "target": "2797", "attributes": { "weight": 1 } }, { "key": "28852", "source": "2120", "target": "2791", "attributes": { "weight": 1 } }, { "key": "28859", "source": "2120", "target": "2809", "attributes": { "weight": 1 } }, { "key": "17528", "source": "2120", "target": "310", "attributes": { "weight": 5 } }, { "key": "28857", "source": "2120", "target": "2801", "attributes": { "weight": 1 } }, { "key": "28856", "source": "2120", "target": "2799", "attributes": { "weight": 1 } }, { "key": "28854", "source": "2120", "target": "2555", "attributes": { "weight": 1 } }, { "key": "28865", "source": "2120", "target": "2819", "attributes": { "weight": 1 } }, { "key": "25222", "source": "2120", "target": "1146", "attributes": { "weight": 2 } }, { "key": "28868", "source": "2120", "target": "2121", "attributes": { "weight": 1 } }, { "key": "25223", "source": "2120", "target": "1178", "attributes": { "weight": 2 } }, { "key": "28860", "source": "2120", "target": "2810", "attributes": { "weight": 1 } }, { "key": "25224", "source": "2121", "target": "1146", "attributes": { "weight": 2 } }, { "key": "17530", "source": "2121", "target": "310", "attributes": { "weight": 3 } }, { "key": "28872", "source": "2121", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28873", "source": "2121", "target": "2120", "attributes": { "weight": 1 } }, { "key": "17532", "source": "2122", "target": "487", "attributes": { "weight": 1 } }, { "key": "34963", "source": "2122", "target": "3", "attributes": { "weight": 1 } }, { "key": "29395", "source": "2122", "target": "232", "attributes": { "weight": 1 } }, { "key": "36906", "source": "2122", "target": "1137", "attributes": { "weight": 1 } }, { "key": "29846", "source": "2122", "target": "1024", "attributes": { "weight": 2 } }, { "key": "31587", "source": "2122", "target": "595", "attributes": { "weight": 1 } }, { "key": "29848", "source": "2122", "target": "340", "attributes": { "weight": 1 } }, { "key": "29847", "source": "2122", "target": "53", "attributes": { "weight": 1 } }, { "key": "29845", "source": "2122", "target": "791", "attributes": { "weight": 3 } }, { "key": "26432", "source": "2122", "target": "189", "attributes": { "weight": 1 } }, { "key": "22279", "source": "2122", "target": "794", "attributes": { "weight": 1 } }, { "key": "21512", "source": "2122", "target": "89", "attributes": { "weight": 1 } }, { "key": "17550", "source": "2123", "target": "339", "attributes": { "weight": 4 } }, { "key": "22281", "source": "2123", "target": "794", "attributes": { "weight": 1 } }, { "key": "31880", "source": "2123", "target": "359", "attributes": { "weight": 1 } }, { "key": "31882", "source": "2123", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31881", "source": "2123", "target": "2115", "attributes": { "weight": 1 } }, { "key": "31879", "source": "2123", "target": "1045", "attributes": { "weight": 1 } }, { "key": "32345", "source": "2123", "target": "791", "attributes": { "weight": 1 } }, { "key": "30440", "source": "2123", "target": "1046", "attributes": { "weight": 1 } }, { "key": "21569", "source": "2123", "target": "358", "attributes": { "weight": 1 } }, { "key": "32030", "source": "2124", "target": "1045", "attributes": { "weight": 2 } }, { "key": "22374", "source": "2124", "target": "794", "attributes": { "weight": 1 } }, { "key": "37124", "source": "2124", "target": "1056", "attributes": { "weight": 1 } }, { "key": "32031", "source": "2124", "target": "1060", "attributes": { "weight": 2 } }, { "key": "32611", "source": "2124", "target": "791", "attributes": { "weight": 1 } }, { "key": "21605", "source": "2124", "target": "358", "attributes": { "weight": 1 } }, { "key": "30485", "source": "2124", "target": "1046", "attributes": { "weight": 1 } }, { "key": "17551", "source": "2124", "target": "339", "attributes": { "weight": 3 } }, { "key": "32029", "source": "2124", "target": "2233", "attributes": { "weight": 1 } }, { "key": "32036", "source": "2125", "target": "359", "attributes": { "weight": 1 } }, { "key": "17552", "source": "2125", "target": "339", "attributes": { "weight": 3 } }, { "key": "21606", "source": "2125", "target": "358", "attributes": { "weight": 1 } }, { "key": "32037", "source": "2125", "target": "2115", "attributes": { "weight": 1 } }, { "key": "32038", "source": "2125", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32034", "source": "2125", "target": "2233", "attributes": { "weight": 1 } }, { "key": "32035", "source": "2125", "target": "1045", "attributes": { "weight": 1 } }, { "key": "17553", "source": "2126", "target": "339", "attributes": { "weight": 3 } }, { "key": "21609", "source": "2126", "target": "358", "attributes": { "weight": 1 } }, { "key": "37125", "source": "2126", "target": "1045", "attributes": { "weight": 1 } }, { "key": "22377", "source": "2126", "target": "794", "attributes": { "weight": 1 } }, { "key": "32046", "source": "2126", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32045", "source": "2126", "target": "359", "attributes": { "weight": 1 } }, { "key": "32630", "source": "2126", "target": "791", "attributes": { "weight": 1 } }, { "key": "17555", "source": "2127", "target": "1801", "attributes": { "weight": 1 } }, { "key": "24469", "source": "2128", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17556", "source": "2128", "target": "1806", "attributes": { "weight": 2 } }, { "key": "17557", "source": "2129", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17563", "source": "2130", "target": "358", "attributes": { "weight": 1 } }, { "key": "24475", "source": "2130", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17564", "source": "2131", "target": "1806", "attributes": { "weight": 1 } }, { "key": "24483", "source": "2132", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17573", "source": "2132", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17572", "source": "2132", "target": "358", "attributes": { "weight": 1 } }, { "key": "17574", "source": "2132", "target": "1806", "attributes": { "weight": 2 } }, { "key": "17575", "source": "2133", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17576", "source": "2134", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17589", "source": "2135", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17591", "source": "2135", "target": "1807", "attributes": { "weight": 2 } }, { "key": "31883", "source": "2135", "target": "2115", "attributes": { "weight": 1 } }, { "key": "17590", "source": "2135", "target": "1806", "attributes": { "weight": 2 } }, { "key": "17592", "source": "2136", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17594", "source": "2137", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17599", "source": "2138", "target": "1806", "attributes": { "weight": 1 } }, { "key": "21577", "source": "2139", "target": "358", "attributes": { "weight": 1 } }, { "key": "25798", "source": "2139", "target": "791", "attributes": { "weight": 2 } }, { "key": "30708", "source": "2139", "target": "889", "attributes": { "weight": 1 } }, { "key": "31534", "source": "2139", "target": "189", "attributes": { "weight": 1 } }, { "key": "31532", "source": "2139", "target": "59", "attributes": { "weight": 2 } }, { "key": "31533", "source": "2139", "target": "183", "attributes": { "weight": 1 } }, { "key": "17606", "source": "2139", "target": "790", "attributes": { "weight": 1 } }, { "key": "30453", "source": "2139", "target": "1046", "attributes": { "weight": 1 } }, { "key": "18434", "source": "2140", "target": "358", "attributes": { "weight": 1 } }, { "key": "18433", "source": "2140", "target": "419", "attributes": { "weight": 1 } }, { "key": "18435", "source": "2140", "target": "422", "attributes": { "weight": 2 } }, { "key": "17609", "source": "2140", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17610", "source": "2141", "target": "1804", "attributes": { "weight": 1 } }, { "key": "24520", "source": "2141", "target": "1798", "attributes": { "weight": 1 } }, { "key": "24521", "source": "2141", "target": "1806", "attributes": { "weight": 1 } }, { "key": "24522", "source": "2141", "target": "1807", "attributes": { "weight": 1 } }, { "key": "17611", "source": "2142", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17618", "source": "2143", "target": "1056", "attributes": { "weight": 1 } }, { "key": "17617", "source": "2143", "target": "358", "attributes": { "weight": 1 } }, { "key": "17619", "source": "2143", "target": "1804", "attributes": { "weight": 1 } }, { "key": "22298", "source": "2144", "target": "794", "attributes": { "weight": 1 } }, { "key": "24531", "source": "2144", "target": "1046", "attributes": { "weight": 1 } }, { "key": "24533", "source": "2144", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17620", "source": "2144", "target": "358", "attributes": { "weight": 1 } }, { "key": "24532", "source": "2144", "target": "1056", "attributes": { "weight": 1 } }, { "key": "17621", "source": "2144", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17639", "source": "2145", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17640", "source": "2145", "target": "1806", "attributes": { "weight": 1 } }, { "key": "31980", "source": "2146", "target": "2115", "attributes": { "weight": 1 } }, { "key": "17641", "source": "2146", "target": "1806", "attributes": { "weight": 2 } }, { "key": "17642", "source": "2147", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17647", "source": "2148", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17643", "source": "2148", "target": "1794", "attributes": { "weight": 1 } }, { "key": "17646", "source": "2148", "target": "1804", "attributes": { "weight": 1 } }, { "key": "17644", "source": "2148", "target": "1798", "attributes": { "weight": 1 } }, { "key": "17645", "source": "2148", "target": "1802", "attributes": { "weight": 1 } }, { "key": "17653", "source": "2149", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17652", "source": "2149", "target": "1801", "attributes": { "weight": 1 } }, { "key": "17654", "source": "2150", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17695", "source": "2151", "target": "1806", "attributes": { "weight": 1 } }, { "key": "17700", "source": "2152", "target": "362", "attributes": { "weight": 1 } }, { "key": "24564", "source": "2152", "target": "1796", "attributes": { "weight": 1 } }, { "key": "17701", "source": "2152", "target": "1801", "attributes": { "weight": 1 } }, { "key": "24565", "source": "2152", "target": "1807", "attributes": { "weight": 1 } }, { "key": "17702", "source": "2152", "target": "1806", "attributes": { "weight": 2 } }, { "key": "17704", "source": "2153", "target": "45", "attributes": { "weight": 1 } }, { "key": "17705", "source": "2153", "target": "48", "attributes": { "weight": 2 } }, { "key": "17708", "source": "2154", "target": "48", "attributes": { "weight": 1 } }, { "key": "17706", "source": "2154", "target": "44", "attributes": { "weight": 1 } }, { "key": "17707", "source": "2154", "target": "45", "attributes": { "weight": 1 } }, { "key": "17709", "source": "2155", "target": "48", "attributes": { "weight": 1 } }, { "key": "17710", "source": "2156", "target": "45", "attributes": { "weight": 2 } }, { "key": "17719", "source": "2158", "target": "45", "attributes": { "weight": 1 } }, { "key": "17720", "source": "2158", "target": "48", "attributes": { "weight": 1 } }, { "key": "17721", "source": "2159", "target": "45", "attributes": { "weight": 1 } }, { "key": "17722", "source": "2159", "target": "46", "attributes": { "weight": 1 } }, { "key": "17723", "source": "2160", "target": "48", "attributes": { "weight": 1 } }, { "key": "17725", "source": "2161", "target": "48", "attributes": { "weight": 1 } }, { "key": "17736", "source": "2162", "target": "2161", "attributes": { "weight": 1 } }, { "key": "17807", "source": "2163", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17811", "source": "2164", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17812", "source": "2165", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17813", "source": "2165", "target": "2175", "attributes": { "weight": 1 } }, { "key": "17819", "source": "2166", "target": "2175", "attributes": { "weight": 1 } }, { "key": "17818", "source": "2166", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17824", "source": "2167", "target": "638", "attributes": { "weight": 2 } }, { "key": "26046", "source": "2167", "target": "163", "attributes": { "weight": 1 } }, { "key": "17823", "source": "2167", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17825", "source": "2167", "target": "1548", "attributes": { "weight": 1 } }, { "key": "17845", "source": "2168", "target": "161", "attributes": { "weight": 1 } }, { "key": "17844", "source": "2168", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17846", "source": "2168", "target": "2173", "attributes": { "weight": 1 } }, { "key": "35739", "source": "2169", "target": "1516", "attributes": { "weight": 1 } }, { "key": "17855", "source": "2169", "target": "1380", "attributes": { "weight": 1 } }, { "key": "35740", "source": "2169", "target": "136", "attributes": { "weight": 1 } }, { "key": "17880", "source": "2170", "target": "2173", "attributes": { "weight": 1 } }, { "key": "17881", "source": "2171", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17882", "source": "2171", "target": "2175", "attributes": { "weight": 1 } }, { "key": "17884", "source": "2172", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17885", "source": "2172", "target": "2164", "attributes": { "weight": 1 } }, { "key": "17898", "source": "2173", "target": "2170", "attributes": { "weight": 1 } }, { "key": "17896", "source": "2173", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17897", "source": "2173", "target": "2168", "attributes": { "weight": 1 } }, { "key": "17899", "source": "2174", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17900", "source": "2174", "target": "2163", "attributes": { "weight": 1 } }, { "key": "17928", "source": "2175", "target": "1380", "attributes": { "weight": 1 } }, { "key": "17930", "source": "2175", "target": "2171", "attributes": { "weight": 1 } }, { "key": "17929", "source": "2175", "target": "2165", "attributes": { "weight": 1 } }, { "key": "17945", "source": "2176", "target": "134", "attributes": { "weight": 1 } }, { "key": "17944", "source": "2176", "target": "35", "attributes": { "weight": 1 } }, { "key": "32663", "source": "2177", "target": "3038", "attributes": { "weight": 1 } }, { "key": "32657", "source": "2177", "target": "3024", "attributes": { "weight": 1 } }, { "key": "32659", "source": "2177", "target": "1387", "attributes": { "weight": 1 } }, { "key": "26062", "source": "2177", "target": "163", "attributes": { "weight": 1 } }, { "key": "32661", "source": "2177", "target": "3035", "attributes": { "weight": 1 } }, { "key": "32662", "source": "2177", "target": "3111", "attributes": { "weight": 1 } }, { "key": "31048", "source": "2177", "target": "636", "attributes": { "weight": 1 } }, { "key": "32658", "source": "2177", "target": "3110", "attributes": { "weight": 1 } }, { "key": "17946", "source": "2177", "target": "1380", "attributes": { "weight": 1 } }, { "key": "32656", "source": "2177", "target": "2624", "attributes": { "weight": 1 } }, { "key": "32919", "source": "2177", "target": "470", "attributes": { "weight": 1 } }, { "key": "30470", "source": "2177", "target": "638", "attributes": { "weight": 3 } }, { "key": "31049", "source": "2177", "target": "1809", "attributes": { "weight": 1 } }, { "key": "32664", "source": "2177", "target": "3112", "attributes": { "weight": 1 } }, { "key": "32660", "source": "2177", "target": "2626", "attributes": { "weight": 1 } }, { "key": "17947", "source": "2178", "target": "1380", "attributes": { "weight": 1 } }, { "key": "27723", "source": "2181", "target": "359", "attributes": { "weight": 2 } }, { "key": "34905", "source": "2181", "target": "304", "attributes": { "weight": 1 } }, { "key": "18061", "source": "2181", "target": "1042", "attributes": { "weight": 3 } }, { "key": "34906", "source": "2181", "target": "305", "attributes": { "weight": 1 } }, { "key": "18081", "source": "2182", "target": "470", "attributes": { "weight": 3 } }, { "key": "18089", "source": "2183", "target": "1787", "attributes": { "weight": 1 } }, { "key": "29251", "source": "2183", "target": "1785", "attributes": { "weight": 1 } }, { "key": "18088", "source": "2183", "target": "2184", "attributes": { "weight": 2 } }, { "key": "18090", "source": "2184", "target": "2183", "attributes": { "weight": 2 } }, { "key": "29252", "source": "2184", "target": "1787", "attributes": { "weight": 1 } }, { "key": "18095", "source": "2185", "target": "1387", "attributes": { "weight": 1 } }, { "key": "18113", "source": "2186", "target": "477", "attributes": { "weight": 1 } }, { "key": "18112", "source": "2186", "target": "445", "attributes": { "weight": 1 } }, { "key": "35309", "source": "2186", "target": "494", "attributes": { "weight": 1 } }, { "key": "27274", "source": "2187", "target": "57", "attributes": { "weight": 1 } }, { "key": "18114", "source": "2187", "target": "52", "attributes": { "weight": 1 } }, { "key": "18117", "source": "2188", "target": "477", "attributes": { "weight": 1 } }, { "key": "35336", "source": "2188", "target": "494", "attributes": { "weight": 1 } }, { "key": "18118", "source": "2188", "target": "2189", "attributes": { "weight": 1 } }, { "key": "21249", "source": "2189", "target": "2251", "attributes": { "weight": 1 } }, { "key": "18121", "source": "2189", "target": "2188", "attributes": { "weight": 1 } }, { "key": "21246", "source": "2189", "target": "453", "attributes": { "weight": 1 } }, { "key": "21261", "source": "2189", "target": "235", "attributes": { "weight": 1 } }, { "key": "21254", "source": "2189", "target": "1367", "attributes": { "weight": 1 } }, { "key": "21255", "source": "2189", "target": "2260", "attributes": { "weight": 1 } }, { "key": "21257", "source": "2189", "target": "2268", "attributes": { "weight": 1 } }, { "key": "21259", "source": "2189", "target": "492", "attributes": { "weight": 1 } }, { "key": "21253", "source": "2189", "target": "472", "attributes": { "weight": 1 } }, { "key": "21251", "source": "2189", "target": "464", "attributes": { "weight": 1 } }, { "key": "21252", "source": "2189", "target": "2254", "attributes": { "weight": 1 } }, { "key": "21248", "source": "2189", "target": "1536", "attributes": { "weight": 1 } }, { "key": "21240", "source": "2189", "target": "1023", "attributes": { "weight": 1 } }, { "key": "21241", "source": "2189", "target": "441", "attributes": { "weight": 1 } }, { "key": "21256", "source": "2189", "target": "2266", "attributes": { "weight": 1 } }, { "key": "21243", "source": "2189", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21238", "source": "2189", "target": "222", "attributes": { "weight": 1 } }, { "key": "21236", "source": "2189", "target": "431", "attributes": { "weight": 1 } }, { "key": "21245", "source": "2189", "target": "2248", "attributes": { "weight": 1 } }, { "key": "21242", "source": "2189", "target": "2244", "attributes": { "weight": 1 } }, { "key": "21239", "source": "2189", "target": "2025", "attributes": { "weight": 1 } }, { "key": "21250", "source": "2189", "target": "2253", "attributes": { "weight": 1 } }, { "key": "21237", "source": "2189", "target": "221", "attributes": { "weight": 1 } }, { "key": "21260", "source": "2189", "target": "1777", "attributes": { "weight": 1 } }, { "key": "21247", "source": "2189", "target": "186", "attributes": { "weight": 1 } }, { "key": "21258", "source": "2189", "target": "480", "attributes": { "weight": 1 } }, { "key": "21244", "source": "2189", "target": "226", "attributes": { "weight": 1 } }, { "key": "21262", "source": "2189", "target": "2276", "attributes": { "weight": 1 } }, { "key": "18128", "source": "2190", "target": "2194", "attributes": { "weight": 3 } }, { "key": "18130", "source": "2191", "target": "2197", "attributes": { "weight": 3 } }, { "key": "18129", "source": "2191", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18132", "source": "2192", "target": "2203", "attributes": { "weight": 2 } }, { "key": "37492", "source": "2192", "target": "925", "attributes": { "weight": 1 } }, { "key": "36473", "source": "2193", "target": "1228", "attributes": { "weight": 1 } }, { "key": "18135", "source": "2193", "target": "1197", "attributes": { "weight": 1 } }, { "key": "36472", "source": "2193", "target": "1526", "attributes": { "weight": 1 } }, { "key": "36474", "source": "2193", "target": "1552", "attributes": { "weight": 1 } }, { "key": "18141", "source": "2194", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18154", "source": "2195", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18155", "source": "2195", "target": "2207", "attributes": { "weight": 3 } }, { "key": "18159", "source": "2196", "target": "2201", "attributes": { "weight": 3 } }, { "key": "18158", "source": "2196", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18223", "source": "2197", "target": "2204", "attributes": { "weight": 3 } }, { "key": "18221", "source": "2197", "target": "2191", "attributes": { "weight": 3 } }, { "key": "18222", "source": "2197", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18227", "source": "2198", "target": "2203", "attributes": { "weight": 3 } }, { "key": "18235", "source": "2200", "target": "218", "attributes": { "weight": 1 } }, { "key": "18233", "source": "2200", "target": "1552", "attributes": { "weight": 1 } }, { "key": "18231", "source": "2200", "target": "913", "attributes": { "weight": 1 } }, { "key": "18232", "source": "2200", "target": "208", "attributes": { "weight": 1 } }, { "key": "18234", "source": "2200", "target": "215", "attributes": { "weight": 1 } }, { "key": "18230", "source": "2200", "target": "1197", "attributes": { "weight": 1 } }, { "key": "18240", "source": "2201", "target": "2196", "attributes": { "weight": 3 } }, { "key": "18241", "source": "2201", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18264", "source": "2202", "target": "1197", "attributes": { "weight": 3 } }, { "key": "37515", "source": "2202", "target": "1294", "attributes": { "weight": 1 } }, { "key": "37380", "source": "2202", "target": "3365", "attributes": { "weight": 1 } }, { "key": "18267", "source": "2203", "target": "2192", "attributes": { "weight": 2 } }, { "key": "18268", "source": "2203", "target": "1197", "attributes": { "weight": 3 } }, { "key": "18269", "source": "2203", "target": "2198", "attributes": { "weight": 3 } }, { "key": "18287", "source": "2204", "target": "2197", "attributes": { "weight": 3 } }, { "key": "18288", "source": "2204", "target": "1294", "attributes": { "weight": 3 } }, { "key": "18307", "source": "2205", "target": "1305", "attributes": { "weight": 1 } }, { "key": "18309", "source": "2205", "target": "218", "attributes": { "weight": 1 } }, { "key": "18308", "source": "2205", "target": "215", "attributes": { "weight": 1 } }, { "key": "18301", "source": "2205", "target": "912", "attributes": { "weight": 1 } }, { "key": "18298", "source": "2205", "target": "1165", "attributes": { "weight": 1 } }, { "key": "18306", "source": "2205", "target": "1552", "attributes": { "weight": 1 } }, { "key": "18297", "source": "2205", "target": "195", "attributes": { "weight": 1 } }, { "key": "18299", "source": "2205", "target": "1182", "attributes": { "weight": 1 } }, { "key": "18304", "source": "2205", "target": "1236", "attributes": { "weight": 1 } }, { "key": "18302", "source": "2205", "target": "913", "attributes": { "weight": 1 } }, { "key": "18300", "source": "2205", "target": "779", "attributes": { "weight": 1 } }, { "key": "18305", "source": "2205", "target": "208", "attributes": { "weight": 1 } }, { "key": "18310", "source": "2205", "target": "2206", "attributes": { "weight": 1 } }, { "key": "18303", "source": "2205", "target": "199", "attributes": { "weight": 1 } }, { "key": "18312", "source": "2206", "target": "2205", "attributes": { "weight": 1 } }, { "key": "18313", "source": "2207", "target": "2195", "attributes": { "weight": 3 } }, { "key": "29058", "source": "2208", "target": "495", "attributes": { "weight": 1 } }, { "key": "18350", "source": "2208", "target": "1092", "attributes": { "weight": 1 } }, { "key": "26377", "source": "2208", "target": "1258", "attributes": { "weight": 1 } }, { "key": "23375", "source": "2208", "target": "223", "attributes": { "weight": 1 } }, { "key": "18351", "source": "2208", "target": "595", "attributes": { "weight": 1 } }, { "key": "30958", "source": "2208", "target": "3", "attributes": { "weight": 1 } }, { "key": "25395", "source": "2208", "target": "433", "attributes": { "weight": 1 } }, { "key": "36163", "source": "2208", "target": "2258", "attributes": { "weight": 1 } }, { "key": "18349", "source": "2208", "target": "2086", "attributes": { "weight": 1 } }, { "key": "18393", "source": "2209", "target": "1621", "attributes": { "weight": 1 } }, { "key": "32273", "source": "2209", "target": "164", "attributes": { "weight": 1 } }, { "key": "18399", "source": "2210", "target": "1621", "attributes": { "weight": 1 } }, { "key": "32367", "source": "2211", "target": "2862", "attributes": { "weight": 1 } }, { "key": "32353", "source": "2211", "target": "2857", "attributes": { "weight": 1 } }, { "key": "24490", "source": "2211", "target": "790", "attributes": { "weight": 2 } }, { "key": "32351", "source": "2211", "target": "3092", "attributes": { "weight": 1 } }, { "key": "29411", "source": "2211", "target": "183", "attributes": { "weight": 1 } }, { "key": "32355", "source": "2211", "target": "2112", "attributes": { "weight": 1 } }, { "key": "18425", "source": "2211", "target": "791", "attributes": { "weight": 2 } }, { "key": "32358", "source": "2211", "target": "2860", "attributes": { "weight": 1 } }, { "key": "32375", "source": "2211", "target": "2868", "attributes": { "weight": 1 } }, { "key": "32361", "source": "2211", "target": "454", "attributes": { "weight": 1 } }, { "key": "30442", "source": "2211", "target": "1046", "attributes": { "weight": 1 } }, { "key": "32363", "source": "2211", "target": "865", "attributes": { "weight": 1 } }, { "key": "32369", "source": "2211", "target": "3101", "attributes": { "weight": 1 } }, { "key": "32373", "source": "2211", "target": "3105", "attributes": { "weight": 1 } }, { "key": "29408", "source": "2211", "target": "857", "attributes": { "weight": 2 } }, { "key": "29410", "source": "2211", "target": "224", "attributes": { "weight": 1 } }, { "key": "32349", "source": "2211", "target": "856", "attributes": { "weight": 1 } }, { "key": "32376", "source": "2211", "target": "352", "attributes": { "weight": 1 } }, { "key": "29409", "source": "2211", "target": "858", "attributes": { "weight": 2 } }, { "key": "32360", "source": "2211", "target": "863", "attributes": { "weight": 1 } }, { "key": "32370", "source": "2211", "target": "867", "attributes": { "weight": 1 } }, { "key": "29412", "source": "2211", "target": "861", "attributes": { "weight": 2 } }, { "key": "32362", "source": "2211", "target": "864", "attributes": { "weight": 1 } }, { "key": "32365", "source": "2211", "target": "2861", "attributes": { "weight": 1 } }, { "key": "24667", "source": "2211", "target": "5", "attributes": { "weight": 1 } }, { "key": "30441", "source": "2211", "target": "433", "attributes": { "weight": 1 } }, { "key": "32374", "source": "2211", "target": "869", "attributes": { "weight": 1 } }, { "key": "32350", "source": "2211", "target": "3091", "attributes": { "weight": 1 } }, { "key": "32368", "source": "2211", "target": "3099", "attributes": { "weight": 1 } }, { "key": "29414", "source": "2211", "target": "490", "attributes": { "weight": 1 } }, { "key": "32354", "source": "2211", "target": "3094", "attributes": { "weight": 1 } }, { "key": "32359", "source": "2211", "target": "862", "attributes": { "weight": 1 } }, { "key": "32371", "source": "2211", "target": "2864", "attributes": { "weight": 1 } }, { "key": "29415", "source": "2211", "target": "495", "attributes": { "weight": 2 } }, { "key": "32372", "source": "2211", "target": "2865", "attributes": { "weight": 1 } }, { "key": "32366", "source": "2211", "target": "3097", "attributes": { "weight": 1 } }, { "key": "32352", "source": "2211", "target": "424", "attributes": { "weight": 1 } }, { "key": "26451", "source": "2211", "target": "189", "attributes": { "weight": 1 } }, { "key": "29413", "source": "2211", "target": "232", "attributes": { "weight": 2 } }, { "key": "32356", "source": "2211", "target": "3095", "attributes": { "weight": 1 } }, { "key": "25792", "source": "2211", "target": "2114", "attributes": { "weight": 3 } }, { "key": "32357", "source": "2211", "target": "859", "attributes": { "weight": 1 } }, { "key": "32364", "source": "2211", "target": "866", "attributes": { "weight": 1 } }, { "key": "22122", "source": "2212", "target": "2296", "attributes": { "weight": 1 } }, { "key": "22144", "source": "2212", "target": "930", "attributes": { "weight": 1 } }, { "key": "22109", "source": "2212", "target": "910", "attributes": { "weight": 1 } }, { "key": "22112", "source": "2212", "target": "912", "attributes": { "weight": 1 } }, { "key": "22121", "source": "2212", "target": "918", "attributes": { "weight": 1 } }, { "key": "22116", "source": "2212", "target": "1211", "attributes": { "weight": 1 } }, { "key": "22126", "source": "2212", "target": "2298", "attributes": { "weight": 1 } }, { "key": "22128", "source": "2212", "target": "1255", "attributes": { "weight": 1 } }, { "key": "22118", "source": "2212", "target": "916", "attributes": { "weight": 1 } }, { "key": "22119", "source": "2212", "target": "1225", "attributes": { "weight": 1 } }, { "key": "22141", "source": "2212", "target": "1339", "attributes": { "weight": 1 } }, { "key": "22106", "source": "2212", "target": "2294", "attributes": { "weight": 1 } }, { "key": "22117", "source": "2212", "target": "915", "attributes": { "weight": 1 } }, { "key": "22138", "source": "2212", "target": "1563", "attributes": { "weight": 1 } }, { "key": "22105", "source": "2212", "target": "2021", "attributes": { "weight": 1 } }, { "key": "22101", "source": "2212", "target": "1519", "attributes": { "weight": 1 } }, { "key": "22135", "source": "2212", "target": "2302", "attributes": { "weight": 1 } }, { "key": "22136", "source": "2212", "target": "2304", "attributes": { "weight": 1 } }, { "key": "22140", "source": "2212", "target": "3413", "attributes": { "weight": 1 } }, { "key": "22102", "source": "2212", "target": "1153", "attributes": { "weight": 1 } }, { "key": "22103", "source": "2212", "target": "1154", "attributes": { "weight": 1 } }, { "key": "22143", "source": "2212", "target": "1342", "attributes": { "weight": 1 } }, { "key": "22107", "source": "2212", "target": "1164", "attributes": { "weight": 1 } }, { "key": "22124", "source": "2212", "target": "2297", "attributes": { "weight": 1 } }, { "key": "22132", "source": "2212", "target": "956", "attributes": { "weight": 1 } }, { "key": "22123", "source": "2212", "target": "1230", "attributes": { "weight": 1 } }, { "key": "22113", "source": "2212", "target": "1199", "attributes": { "weight": 1 } }, { "key": "18479", "source": "2212", "target": "1738", "attributes": { "weight": 1 } }, { "key": "22134", "source": "2212", "target": "1293", "attributes": { "weight": 1 } }, { "key": "22100", "source": "2212", "target": "1138", "attributes": { "weight": 1 } }, { "key": "22115", "source": "2212", "target": "1205", "attributes": { "weight": 1 } }, { "key": "22130", "source": "2212", "target": "1271", "attributes": { "weight": 1 } }, { "key": "29016", "source": "2212", "target": "371", "attributes": { "weight": 1 } }, { "key": "22139", "source": "2212", "target": "1324", "attributes": { "weight": 1 } }, { "key": "22108", "source": "2212", "target": "1171", "attributes": { "weight": 1 } }, { "key": "22110", "source": "2212", "target": "1181", "attributes": { "weight": 1 } }, { "key": "22114", "source": "2212", "target": "1200", "attributes": { "weight": 1 } }, { "key": "22145", "source": "2212", "target": "931", "attributes": { "weight": 1 } }, { "key": "22129", "source": "2212", "target": "923", "attributes": { "weight": 1 } }, { "key": "22125", "source": "2212", "target": "919", "attributes": { "weight": 1 } }, { "key": "22131", "source": "2212", "target": "1286", "attributes": { "weight": 1 } }, { "key": "22104", "source": "2212", "target": "1160", "attributes": { "weight": 1 } }, { "key": "22133", "source": "2212", "target": "1691", "attributes": { "weight": 1 } }, { "key": "22111", "source": "2212", "target": "2295", "attributes": { "weight": 1 } }, { "key": "22142", "source": "2212", "target": "1340", "attributes": { "weight": 1 } }, { "key": "22137", "source": "2212", "target": "927", "attributes": { "weight": 1 } }, { "key": "22146", "source": "2212", "target": "2308", "attributes": { "weight": 1 } }, { "key": "22120", "source": "2212", "target": "917", "attributes": { "weight": 1 } }, { "key": "22127", "source": "2212", "target": "920", "attributes": { "weight": 1 } }, { "key": "18486", "source": "2213", "target": "1227", "attributes": { "weight": 1 } }, { "key": "18487", "source": "2213", "target": "1280", "attributes": { "weight": 1 } }, { "key": "28747", "source": "2213", "target": "1146", "attributes": { "weight": 3 } }, { "key": "18490", "source": "2214", "target": "1280", "attributes": { "weight": 2 } }, { "key": "18489", "source": "2214", "target": "1227", "attributes": { "weight": 2 } }, { "key": "18491", "source": "2215", "target": "2222", "attributes": { "weight": 1 } }, { "key": "24297", "source": "2216", "target": "2480", "attributes": { "weight": 1 } }, { "key": "24299", "source": "2216", "target": "2482", "attributes": { "weight": 1 } }, { "key": "24306", "source": "2216", "target": "2488", "attributes": { "weight": 1 } }, { "key": "24308", "source": "2216", "target": "2490", "attributes": { "weight": 1 } }, { "key": "24290", "source": "2216", "target": "2474", "attributes": { "weight": 1 } }, { "key": "24294", "source": "2216", "target": "2477", "attributes": { "weight": 1 } }, { "key": "24301", "source": "2216", "target": "1280", "attributes": { "weight": 2 } }, { "key": "24296", "source": "2216", "target": "2479", "attributes": { "weight": 1 } }, { "key": "24302", "source": "2216", "target": "2484", "attributes": { "weight": 1 } }, { "key": "24295", "source": "2216", "target": "2478", "attributes": { "weight": 1 } }, { "key": "29947", "source": "2216", "target": "1952", "attributes": { "weight": 1 } }, { "key": "18492", "source": "2216", "target": "2228", "attributes": { "weight": 3 } }, { "key": "24300", "source": "2216", "target": "2483", "attributes": { "weight": 1 } }, { "key": "24304", "source": "2216", "target": "2486", "attributes": { "weight": 1 } }, { "key": "24307", "source": "2216", "target": "2489", "attributes": { "weight": 1 } }, { "key": "24305", "source": "2216", "target": "2487", "attributes": { "weight": 1 } }, { "key": "24303", "source": "2216", "target": "2485", "attributes": { "weight": 1 } }, { "key": "24293", "source": "2216", "target": "2476", "attributes": { "weight": 1 } }, { "key": "24291", "source": "2216", "target": "1166", "attributes": { "weight": 2 } }, { "key": "18496", "source": "2217", "target": "2222", "attributes": { "weight": 1 } }, { "key": "18497", "source": "2218", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18498", "source": "2218", "target": "2222", "attributes": { "weight": 1 } }, { "key": "18500", "source": "2219", "target": "2222", "attributes": { "weight": 1 } }, { "key": "18499", "source": "2219", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18501", "source": "2220", "target": "2222", "attributes": { "weight": 1 } }, { "key": "18520", "source": "2221", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18526", "source": "2222", "target": "2220", "attributes": { "weight": 1 } }, { "key": "18531", "source": "2222", "target": "2226", "attributes": { "weight": 1 } }, { "key": "18528", "source": "2222", "target": "2223", "attributes": { "weight": 1 } }, { "key": "18525", "source": "2222", "target": "2219", "attributes": { "weight": 1 } }, { "key": "18527", "source": "2222", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18524", "source": "2222", "target": "2218", "attributes": { "weight": 1 } }, { "key": "18523", "source": "2222", "target": "2217", "attributes": { "weight": 1 } }, { "key": "18529", "source": "2222", "target": "310", "attributes": { "weight": 1 } }, { "key": "18522", "source": "2222", "target": "2215", "attributes": { "weight": 1 } }, { "key": "18532", "source": "2222", "target": "2227", "attributes": { "weight": 1 } }, { "key": "18521", "source": "2222", "target": "1146", "attributes": { "weight": 1 } }, { "key": "18530", "source": "2222", "target": "2224", "attributes": { "weight": 1 } }, { "key": "18535", "source": "2223", "target": "2226", "attributes": { "weight": 1 } }, { "key": "18533", "source": "2223", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18534", "source": "2223", "target": "2222", "attributes": { "weight": 1 } }, { "key": "35388", "source": "2224", "target": "310", "attributes": { "weight": 1 } }, { "key": "18539", "source": "2224", "target": "2222", "attributes": { "weight": 1 } }, { "key": "18538", "source": "2224", "target": "1280", "attributes": { "weight": 1 } }, { "key": "28843", "source": "2224", "target": "1146", "attributes": { "weight": 2 } }, { "key": "29001", "source": "2225", "target": "2830", "attributes": { "weight": 1 } }, { "key": "29000", "source": "2225", "target": "2829", "attributes": { "weight": 1 } }, { "key": "18540", "source": "2225", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18541", "source": "2226", "target": "1280", "attributes": { "weight": 1 } }, { "key": "18542", "source": "2226", "target": "2222", "attributes": { "weight": 1 } }, { "key": "18543", "source": "2226", "target": "2223", "attributes": { "weight": 1 } }, { "key": "18544", "source": "2227", "target": "2222", "attributes": { "weight": 1 } }, { "key": "28320", "source": "2228", "target": "2742", "attributes": { "weight": 1 } }, { "key": "28327", "source": "2228", "target": "2752", "attributes": { "weight": 1 } }, { "key": "18546", "source": "2228", "target": "1280", "attributes": { "weight": 2 } }, { "key": "28321", "source": "2228", "target": "2745", "attributes": { "weight": 2 } }, { "key": "28329", "source": "2228", "target": "2756", "attributes": { "weight": 1 } }, { "key": "28326", "source": "2228", "target": "310", "attributes": { "weight": 2 } }, { "key": "18545", "source": "2228", "target": "2216", "attributes": { "weight": 3 } }, { "key": "28323", "source": "2228", "target": "2747", "attributes": { "weight": 1 } }, { "key": "28319", "source": "2228", "target": "2740", "attributes": { "weight": 1 } }, { "key": "28315", "source": "2228", "target": "2735", "attributes": { "weight": 1 } }, { "key": "28325", "source": "2228", "target": "2751", "attributes": { "weight": 1 } }, { "key": "28313", "source": "2228", "target": "1166", "attributes": { "weight": 3 } }, { "key": "28312", "source": "2228", "target": "1146", "attributes": { "weight": 2 } }, { "key": "28322", "source": "2228", "target": "2746", "attributes": { "weight": 1 } }, { "key": "28316", "source": "2228", "target": "2736", "attributes": { "weight": 1 } }, { "key": "28328", "source": "2228", "target": "2753", "attributes": { "weight": 1 } }, { "key": "28324", "source": "2228", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28317", "source": "2228", "target": "2738", "attributes": { "weight": 1 } }, { "key": "28314", "source": "2228", "target": "2734", "attributes": { "weight": 1 } }, { "key": "28318", "source": "2228", "target": "2739", "attributes": { "weight": 1 } }, { "key": "34228", "source": "2229", "target": "1233", "attributes": { "weight": 1 } }, { "key": "36592", "source": "2229", "target": "405", "attributes": { "weight": 1 } }, { "key": "36591", "source": "2229", "target": "1526", "attributes": { "weight": 1 } }, { "key": "36590", "source": "2229", "target": "1152", "attributes": { "weight": 1 } }, { "key": "18713", "source": "2229", "target": "1260", "attributes": { "weight": 1 } }, { "key": "18712", "source": "2229", "target": "1228", "attributes": { "weight": 2 } }, { "key": "28645", "source": "2230", "target": "313", "attributes": { "weight": 1 } }, { "key": "22241", "source": "2230", "target": "268", "attributes": { "weight": 1 } }, { "key": "22242", "source": "2230", "target": "308", "attributes": { "weight": 3 } }, { "key": "19047", "source": "2230", "target": "305", "attributes": { "weight": 2 } }, { "key": "19064", "source": "2231", "target": "2118", "attributes": { "weight": 1 } }, { "key": "24595", "source": "2232", "target": "339", "attributes": { "weight": 1 } }, { "key": "24594", "source": "2232", "target": "645", "attributes": { "weight": 1 } }, { "key": "19070", "source": "2232", "target": "2118", "attributes": { "weight": 2 } }, { "key": "19066", "source": "2232", "target": "1045", "attributes": { "weight": 2 } }, { "key": "37076", "source": "2232", "target": "2579", "attributes": { "weight": 1 } }, { "key": "19065", "source": "2232", "target": "2233", "attributes": { "weight": 1 } }, { "key": "19068", "source": "2232", "target": "162", "attributes": { "weight": 1 } }, { "key": "19067", "source": "2232", "target": "2235", "attributes": { "weight": 1 } }, { "key": "24599", "source": "2232", "target": "1060", "attributes": { "weight": 1 } }, { "key": "19071", "source": "2232", "target": "794", "attributes": { "weight": 1 } }, { "key": "24593", "source": "2232", "target": "1036", "attributes": { "weight": 1 } }, { "key": "34858", "source": "2232", "target": "2511", "attributes": { "weight": 1 } }, { "key": "24598", "source": "2232", "target": "359", "attributes": { "weight": 2 } }, { "key": "24597", "source": "2232", "target": "358", "attributes": { "weight": 2 } }, { "key": "32296", "source": "2232", "target": "791", "attributes": { "weight": 1 } }, { "key": "24592", "source": "2232", "target": "889", "attributes": { "weight": 2 } }, { "key": "24596", "source": "2232", "target": "1046", "attributes": { "weight": 1 } }, { "key": "19069", "source": "2232", "target": "2237", "attributes": { "weight": 1 } }, { "key": "31836", "source": "2233", "target": "2125", "attributes": { "weight": 1 } }, { "key": "19073", "source": "2233", "target": "2118", "attributes": { "weight": 1 } }, { "key": "19072", "source": "2233", "target": "2232", "attributes": { "weight": 1 } }, { "key": "31833", "source": "2233", "target": "2115", "attributes": { "weight": 1 } }, { "key": "21501", "source": "2233", "target": "358", "attributes": { "weight": 1 } }, { "key": "31832", "source": "2233", "target": "359", "attributes": { "weight": 2 } }, { "key": "22258", "source": "2233", "target": "794", "attributes": { "weight": 1 } }, { "key": "31831", "source": "2233", "target": "1045", "attributes": { "weight": 1 } }, { "key": "31834", "source": "2233", "target": "1060", "attributes": { "weight": 2 } }, { "key": "31835", "source": "2233", "target": "2124", "attributes": { "weight": 1 } }, { "key": "27798", "source": "2233", "target": "339", "attributes": { "weight": 3 } }, { "key": "19074", "source": "2234", "target": "2118", "attributes": { "weight": 1 } }, { "key": "24621", "source": "2235", "target": "1036", "attributes": { "weight": 1 } }, { "key": "19077", "source": "2235", "target": "2232", "attributes": { "weight": 1 } }, { "key": "19078", "source": "2235", "target": "2118", "attributes": { "weight": 2 } }, { "key": "24622", "source": "2235", "target": "359", "attributes": { "weight": 1 } }, { "key": "24626", "source": "2236", "target": "359", "attributes": { "weight": 1 } }, { "key": "19079", "source": "2236", "target": "2118", "attributes": { "weight": 2 } }, { "key": "24625", "source": "2236", "target": "339", "attributes": { "weight": 1 } }, { "key": "24624", "source": "2236", "target": "889", "attributes": { "weight": 1 } }, { "key": "24639", "source": "2237", "target": "339", "attributes": { "weight": 1 } }, { "key": "19082", "source": "2237", "target": "2232", "attributes": { "weight": 2 } }, { "key": "19085", "source": "2237", "target": "794", "attributes": { "weight": 1 } }, { "key": "19083", "source": "2237", "target": "2118", "attributes": { "weight": 2 } }, { "key": "19084", "source": "2237", "target": "2238", "attributes": { "weight": 2 } }, { "key": "24642", "source": "2237", "target": "1056", "attributes": { "weight": 1 } }, { "key": "24638", "source": "2237", "target": "1036", "attributes": { "weight": 1 } }, { "key": "24641", "source": "2237", "target": "359", "attributes": { "weight": 1 } }, { "key": "24640", "source": "2237", "target": "358", "attributes": { "weight": 1 } }, { "key": "19093", "source": "2238", "target": "2237", "attributes": { "weight": 2 } }, { "key": "19097", "source": "2239", "target": "2118", "attributes": { "weight": 2 } }, { "key": "24657", "source": "2239", "target": "359", "attributes": { "weight": 1 } }, { "key": "19096", "source": "2239", "target": "161", "attributes": { "weight": 1 } }, { "key": "24656", "source": "2239", "target": "339", "attributes": { "weight": 1 } }, { "key": "19095", "source": "2239", "target": "1045", "attributes": { "weight": 1 } }, { "key": "24658", "source": "2239", "target": "1060", "attributes": { "weight": 1 } }, { "key": "19485", "source": "2240", "target": "489", "attributes": { "weight": 1 } }, { "key": "19598", "source": "2241", "target": "449", "attributes": { "weight": 1 } }, { "key": "19597", "source": "2241", "target": "435", "attributes": { "weight": 1 } }, { "key": "19599", "source": "2241", "target": "489", "attributes": { "weight": 1 } }, { "key": "19608", "source": "2242", "target": "2095", "attributes": { "weight": 1 } }, { "key": "19605", "source": "2242", "target": "472", "attributes": { "weight": 1 } }, { "key": "19606", "source": "2242", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19601", "source": "2242", "target": "51", "attributes": { "weight": 1 } }, { "key": "19604", "source": "2242", "target": "2258", "attributes": { "weight": 1 } }, { "key": "19602", "source": "2242", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19603", "source": "2242", "target": "450", "attributes": { "weight": 1 } }, { "key": "19600", "source": "2242", "target": "438", "attributes": { "weight": 1 } }, { "key": "19607", "source": "2242", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19638", "source": "2243", "target": "2267", "attributes": { "weight": 1 } }, { "key": "19639", "source": "2243", "target": "489", "attributes": { "weight": 1 } }, { "key": "19631", "source": "2243", "target": "2106", "attributes": { "weight": 1 } }, { "key": "19630", "source": "2243", "target": "1522", "attributes": { "weight": 1 } }, { "key": "19635", "source": "2243", "target": "1832", "attributes": { "weight": 1 } }, { "key": "19634", "source": "2243", "target": "2248", "attributes": { "weight": 1 } }, { "key": "19636", "source": "2243", "target": "1836", "attributes": { "weight": 1 } }, { "key": "19632", "source": "2243", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19637", "source": "2243", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19633", "source": "2243", "target": "449", "attributes": { "weight": 1 } }, { "key": "19698", "source": "2244", "target": "453", "attributes": { "weight": 1 } }, { "key": "19685", "source": "2244", "target": "439", "attributes": { "weight": 1 } }, { "key": "19718", "source": "2244", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19695", "source": "2244", "target": "450", "attributes": { "weight": 1 } }, { "key": "19689", "source": "2244", "target": "441", "attributes": { "weight": 1 } }, { "key": "19694", "source": "2244", "target": "449", "attributes": { "weight": 1 } }, { "key": "35870", "source": "2244", "target": "1026", "attributes": { "weight": 1 } }, { "key": "19719", "source": "2244", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19708", "source": "2244", "target": "2262", "attributes": { "weight": 1 } }, { "key": "19712", "source": "2244", "target": "478", "attributes": { "weight": 1 } }, { "key": "19686", "source": "2244", "target": "2025", "attributes": { "weight": 1 } }, { "key": "19700", "source": "2244", "target": "1998", "attributes": { "weight": 1 } }, { "key": "19701", "source": "2244", "target": "2253", "attributes": { "weight": 1 } }, { "key": "19704", "source": "2244", "target": "471", "attributes": { "weight": 1 } }, { "key": "19683", "source": "2244", "target": "1522", "attributes": { "weight": 1 } }, { "key": "19702", "source": "2244", "target": "459", "attributes": { "weight": 1 } }, { "key": "19690", "source": "2244", "target": "443", "attributes": { "weight": 1 } }, { "key": "19720", "source": "2244", "target": "1375", "attributes": { "weight": 1 } }, { "key": "19684", "source": "2244", "target": "50", "attributes": { "weight": 1 } }, { "key": "19707", "source": "2244", "target": "2261", "attributes": { "weight": 1 } }, { "key": "19693", "source": "2244", "target": "2245", "attributes": { "weight": 1 } }, { "key": "19688", "source": "2244", "target": "1023", "attributes": { "weight": 1 } }, { "key": "19692", "source": "2244", "target": "1759", "attributes": { "weight": 1 } }, { "key": "19682", "source": "2244", "target": "49", "attributes": { "weight": 1 } }, { "key": "19717", "source": "2244", "target": "489", "attributes": { "weight": 1 } }, { "key": "19705", "source": "2244", "target": "472", "attributes": { "weight": 1 } }, { "key": "19715", "source": "2244", "target": "2271", "attributes": { "weight": 1 } }, { "key": "19714", "source": "2244", "target": "2095", "attributes": { "weight": 1 } }, { "key": "19681", "source": "2244", "target": "130", "attributes": { "weight": 1 } }, { "key": "19723", "source": "2244", "target": "498", "attributes": { "weight": 1 } }, { "key": "35869", "source": "2244", "target": "465", "attributes": { "weight": 1 } }, { "key": "19713", "source": "2244", "target": "482", "attributes": { "weight": 1 } }, { "key": "19696", "source": "2244", "target": "2248", "attributes": { "weight": 1 } }, { "key": "19699", "source": "2244", "target": "186", "attributes": { "weight": 1 } }, { "key": "35868", "source": "2244", "target": "1025", "attributes": { "weight": 1 } }, { "key": "19679", "source": "2244", "target": "429", "attributes": { "weight": 1 } }, { "key": "19721", "source": "2244", "target": "1390", "attributes": { "weight": 1 } }, { "key": "35867", "source": "2244", "target": "1760", "attributes": { "weight": 1 } }, { "key": "19706", "source": "2244", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19711", "source": "2244", "target": "231", "attributes": { "weight": 1 } }, { "key": "19697", "source": "2244", "target": "1832", "attributes": { "weight": 1 } }, { "key": "19716", "source": "2244", "target": "487", "attributes": { "weight": 1 } }, { "key": "19703", "source": "2244", "target": "464", "attributes": { "weight": 1 } }, { "key": "19680", "source": "2244", "target": "1756", "attributes": { "weight": 1 } }, { "key": "35871", "source": "2244", "target": "1778", "attributes": { "weight": 1 } }, { "key": "19687", "source": "2244", "target": "440", "attributes": { "weight": 1 } }, { "key": "19709", "source": "2244", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19722", "source": "2244", "target": "2276", "attributes": { "weight": 1 } }, { "key": "19710", "source": "2244", "target": "2267", "attributes": { "weight": 1 } }, { "key": "19691", "source": "2244", "target": "1070", "attributes": { "weight": 1 } }, { "key": "19752", "source": "2245", "target": "449", "attributes": { "weight": 1 } }, { "key": "19738", "source": "2245", "target": "49", "attributes": { "weight": 1 } }, { "key": "19780", "source": "2245", "target": "1770", "attributes": { "weight": 1 } }, { "key": "19801", "source": "2245", "target": "1376", "attributes": { "weight": 1 } }, { "key": "19767", "source": "2245", "target": "471", "attributes": { "weight": 1 } }, { "key": "19746", "source": "2245", "target": "441", "attributes": { "weight": 1 } }, { "key": "19749", "source": "2245", "target": "1070", "attributes": { "weight": 1 } }, { "key": "19802", "source": "2245", "target": "2276", "attributes": { "weight": 1 } }, { "key": "19800", "source": "2245", "target": "1390", "attributes": { "weight": 1 } }, { "key": "19739", "source": "2245", "target": "221", "attributes": { "weight": 1 } }, { "key": "19755", "source": "2245", "target": "451", "attributes": { "weight": 1 } }, { "key": "19734", "source": "2245", "target": "1756", "attributes": { "weight": 1 } }, { "key": "19748", "source": "2245", "target": "443", "attributes": { "weight": 1 } }, { "key": "19757", "source": "2245", "target": "2249", "attributes": { "weight": 1 } }, { "key": "19777", "source": "2245", "target": "1126", "attributes": { "weight": 1 } }, { "key": "19744", "source": "2245", "target": "2025", "attributes": { "weight": 1 } }, { "key": "19772", "source": "2245", "target": "2262", "attributes": { "weight": 1 } }, { "key": "35891", "source": "2245", "target": "1026", "attributes": { "weight": 1 } }, { "key": "19733", "source": "2245", "target": "429", "attributes": { "weight": 1 } }, { "key": "19805", "source": "2245", "target": "1094", "attributes": { "weight": 1 } }, { "key": "19742", "source": "2245", "target": "50", "attributes": { "weight": 1 } }, { "key": "19750", "source": "2245", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19781", "source": "2245", "target": "481", "attributes": { "weight": 1 } }, { "key": "19776", "source": "2245", "target": "1812", "attributes": { "weight": 1 } }, { "key": "19804", "source": "2245", "target": "2278", "attributes": { "weight": 1 } }, { "key": "19774", "source": "2245", "target": "1708", "attributes": { "weight": 1 } }, { "key": "19747", "source": "2245", "target": "2243", "attributes": { "weight": 1 } }, { "key": "19803", "source": "2245", "target": "194", "attributes": { "weight": 1 } }, { "key": "19785", "source": "2245", "target": "2269", "attributes": { "weight": 1 } }, { "key": "19737", "source": "2245", "target": "130", "attributes": { "weight": 1 } }, { "key": "19788", "source": "2245", "target": "2271", "attributes": { "weight": 1 } }, { "key": "19783", "source": "2245", "target": "1560", "attributes": { "weight": 1 } }, { "key": "19768", "source": "2245", "target": "472", "attributes": { "weight": 1 } }, { "key": "19764", "source": "2245", "target": "1364", "attributes": { "weight": 1 } }, { "key": "19798", "source": "2245", "target": "235", "attributes": { "weight": 1 } }, { "key": "19758", "source": "2245", "target": "1117", "attributes": { "weight": 1 } }, { "key": "19796", "source": "2245", "target": "492", "attributes": { "weight": 1 } }, { "key": "19775", "source": "2245", "target": "2266", "attributes": { "weight": 1 } }, { "key": "19762", "source": "2245", "target": "459", "attributes": { "weight": 1 } }, { "key": "19792", "source": "2245", "target": "56", "attributes": { "weight": 1 } }, { "key": "19741", "source": "2245", "target": "222", "attributes": { "weight": 1 } }, { "key": "19794", "source": "2245", "target": "234", "attributes": { "weight": 1 } }, { "key": "19799", "source": "2245", "target": "1375", "attributes": { "weight": 1 } }, { "key": "19751", "source": "2245", "target": "1759", "attributes": { "weight": 1 } }, { "key": "19740", "source": "2245", "target": "1110", "attributes": { "weight": 1 } }, { "key": "19763", "source": "2245", "target": "464", "attributes": { "weight": 1 } }, { "key": "29388", "source": "2245", "target": "232", "attributes": { "weight": 1 } }, { "key": "35889", "source": "2245", "target": "1760", "attributes": { "weight": 1 } }, { "key": "19761", "source": "2245", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19756", "source": "2245", "target": "227", "attributes": { "weight": 1 } }, { "key": "19791", "source": "2245", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19745", "source": "2245", "target": "440", "attributes": { "weight": 2 } }, { "key": "19787", "source": "2245", "target": "2095", "attributes": { "weight": 1 } }, { "key": "19784", "source": "2245", "target": "1129", "attributes": { "weight": 1 } }, { "key": "19754", "source": "2245", "target": "1533", "attributes": { "weight": 1 } }, { "key": "19790", "source": "2245", "target": "491", "attributes": { "weight": 1 } }, { "key": "19771", "source": "2245", "target": "230", "attributes": { "weight": 1 } }, { "key": "19732", "source": "2245", "target": "1703", "attributes": { "weight": 1 } }, { "key": "35892", "source": "2245", "target": "428", "attributes": { "weight": 1 } }, { "key": "19766", "source": "2245", "target": "1122", "attributes": { "weight": 1 } }, { "key": "19795", "source": "2245", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19735", "source": "2245", "target": "1354", "attributes": { "weight": 1 } }, { "key": "19793", "source": "2245", "target": "1775", "attributes": { "weight": 1 } }, { "key": "19786", "source": "2245", "target": "483", "attributes": { "weight": 1 } }, { "key": "35888", "source": "2245", "target": "433", "attributes": { "weight": 1 } }, { "key": "19760", "source": "2245", "target": "1536", "attributes": { "weight": 1 } }, { "key": "19769", "source": "2245", "target": "229", "attributes": { "weight": 1 } }, { "key": "19743", "source": "2245", "target": "439", "attributes": { "weight": 1 } }, { "key": "19765", "source": "2245", "target": "54", "attributes": { "weight": 1 } }, { "key": "35890", "source": "2245", "target": "1547", "attributes": { "weight": 1 } }, { "key": "19773", "source": "2245", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19797", "source": "2245", "target": "1777", "attributes": { "weight": 1 } }, { "key": "19736", "source": "2245", "target": "431", "attributes": { "weight": 1 } }, { "key": "19759", "source": "2245", "target": "1358", "attributes": { "weight": 1 } }, { "key": "19731", "source": "2245", "target": "1353", "attributes": { "weight": 1 } }, { "key": "19778", "source": "2245", "target": "231", "attributes": { "weight": 1 } }, { "key": "19782", "source": "2245", "target": "482", "attributes": { "weight": 1 } }, { "key": "19753", "source": "2245", "target": "450", "attributes": { "weight": 1 } }, { "key": "19789", "source": "2245", "target": "487", "attributes": { "weight": 1 } }, { "key": "35893", "source": "2245", "target": "1092", "attributes": { "weight": 1 } }, { "key": "19770", "source": "2245", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19779", "source": "2245", "target": "480", "attributes": { "weight": 1 } }, { "key": "35894", "source": "2245", "target": "497", "attributes": { "weight": 1 } }, { "key": "19814", "source": "2246", "target": "470", "attributes": { "weight": 1 } }, { "key": "19815", "source": "2246", "target": "1744", "attributes": { "weight": 1 } }, { "key": "19816", "source": "2246", "target": "482", "attributes": { "weight": 1 } }, { "key": "22868", "source": "2247", "target": "1359", "attributes": { "weight": 1 } }, { "key": "19818", "source": "2247", "target": "489", "attributes": { "weight": 1 } }, { "key": "19817", "source": "2247", "target": "1832", "attributes": { "weight": 1 } }, { "key": "23597", "source": "2248", "target": "471", "attributes": { "weight": 1 } }, { "key": "35926", "source": "2248", "target": "695", "attributes": { "weight": 1 } }, { "key": "23593", "source": "2248", "target": "860", "attributes": { "weight": 1 } }, { "key": "23590", "source": "2248", "target": "858", "attributes": { "weight": 1 } }, { "key": "19946", "source": "2248", "target": "235", "attributes": { "weight": 1 } }, { "key": "19938", "source": "2248", "target": "1744", "attributes": { "weight": 1 } }, { "key": "35930", "source": "2248", "target": "497", "attributes": { "weight": 1 } }, { "key": "19945", "source": "2248", "target": "2189", "attributes": { "weight": 1 } }, { "key": "19931", "source": "2248", "target": "459", "attributes": { "weight": 2 } }, { "key": "23591", "source": "2248", "target": "222", "attributes": { "weight": 1 } }, { "key": "23603", "source": "2248", "target": "494", "attributes": { "weight": 1 } }, { "key": "23601", "source": "2248", "target": "232", "attributes": { "weight": 1 } }, { "key": "23587", "source": "2248", "target": "432", "attributes": { "weight": 1 } }, { "key": "19940", "source": "2248", "target": "480", "attributes": { "weight": 1 } }, { "key": "35924", "source": "2248", "target": "465", "attributes": { "weight": 1 } }, { "key": "19923", "source": "2248", "target": "443", "attributes": { "weight": 1 } }, { "key": "23589", "source": "2248", "target": "130", "attributes": { "weight": 1 } }, { "key": "19934", "source": "2248", "target": "2094", "attributes": { "weight": 1 } }, { "key": "19918", "source": "2248", "target": "1756", "attributes": { "weight": 1 } }, { "key": "23588", "source": "2248", "target": "424", "attributes": { "weight": 1 } }, { "key": "19921", "source": "2248", "target": "221", "attributes": { "weight": 1 } }, { "key": "19927", "source": "2248", "target": "449", "attributes": { "weight": 1 } }, { "key": "23592", "source": "2248", "target": "674", "attributes": { "weight": 1 } }, { "key": "19916", "source": "2248", "target": "1353", "attributes": { "weight": 1 } }, { "key": "23595", "source": "2248", "target": "1361", "attributes": { "weight": 1 } }, { "key": "23600", "source": "2248", "target": "1312", "attributes": { "weight": 1 } }, { "key": "19933", "source": "2248", "target": "54", "attributes": { "weight": 2 } }, { "key": "19937", "source": "2248", "target": "1838", "attributes": { "weight": 1 } }, { "key": "19947", "source": "2248", "target": "2276", "attributes": { "weight": 1 } }, { "key": "35919", "source": "2248", "target": "433", "attributes": { "weight": 1 } }, { "key": "35921", "source": "2248", "target": "1760", "attributes": { "weight": 1 } }, { "key": "23594", "source": "2248", "target": "2252", "attributes": { "weight": 1 } }, { "key": "19928", "source": "2248", "target": "451", "attributes": { "weight": 2 } }, { "key": "19941", "source": "2248", "target": "482", "attributes": { "weight": 1 } }, { "key": "35928", "source": "2248", "target": "1092", "attributes": { "weight": 1 } }, { "key": "19919", "source": "2248", "target": "1354", "attributes": { "weight": 2 } }, { "key": "19943", "source": "2248", "target": "489", "attributes": { "weight": 1 } }, { "key": "19935", "source": "2248", "target": "1367", "attributes": { "weight": 1 } }, { "key": "35920", "source": "2248", "target": "440", "attributes": { "weight": 1 } }, { "key": "19944", "source": "2248", "target": "1374", "attributes": { "weight": 1 } }, { "key": "19936", "source": "2248", "target": "1087", "attributes": { "weight": 1 } }, { "key": "19939", "source": "2248", "target": "231", "attributes": { "weight": 2 } }, { "key": "23596", "source": "2248", "target": "470", "attributes": { "weight": 1 } }, { "key": "19922", "source": "2248", "target": "2243", "attributes": { "weight": 1 } }, { "key": "23602", "source": "2248", "target": "193", "attributes": { "weight": 1 } }, { "key": "35925", "source": "2248", "target": "1026", "attributes": { "weight": 1 } }, { "key": "23604", "source": "2248", "target": "1375", "attributes": { "weight": 1 } }, { "key": "19929", "source": "2248", "target": "227", "attributes": { "weight": 1 } }, { "key": "19942", "source": "2248", "target": "2269", "attributes": { "weight": 1 } }, { "key": "35922", "source": "2248", "target": "3271", "attributes": { "weight": 1 } }, { "key": "23598", "source": "2248", "target": "190", "attributes": { "weight": 1 } }, { "key": "19930", "source": "2248", "target": "2251", "attributes": { "weight": 1 } }, { "key": "19917", "source": "2248", "target": "429", "attributes": { "weight": 2 } }, { "key": "23599", "source": "2248", "target": "474", "attributes": { "weight": 1 } }, { "key": "35927", "source": "2248", "target": "428", "attributes": { "weight": 1 } }, { "key": "19926", "source": "2248", "target": "445", "attributes": { "weight": 1 } }, { "key": "19920", "source": "2248", "target": "49", "attributes": { "weight": 1 } }, { "key": "19924", "source": "2248", "target": "1070", "attributes": { "weight": 1 } }, { "key": "19925", "source": "2248", "target": "2244", "attributes": { "weight": 1 } }, { "key": "19932", "source": "2248", "target": "464", "attributes": { "weight": 1 } }, { "key": "35929", "source": "2248", "target": "1390", "attributes": { "weight": 1 } }, { "key": "35923", "source": "2248", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20056", "source": "2249", "target": "1836", "attributes": { "weight": 1 } }, { "key": "20054", "source": "2249", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20057", "source": "2249", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20055", "source": "2249", "target": "227", "attributes": { "weight": 1 } }, { "key": "37000", "source": "2250", "target": "183", "attributes": { "weight": 1 } }, { "key": "37001", "source": "2250", "target": "454", "attributes": { "weight": 1 } }, { "key": "20093", "source": "2250", "target": "1812", "attributes": { "weight": 1 } }, { "key": "20134", "source": "2251", "target": "1750", "attributes": { "weight": 1 } }, { "key": "20125", "source": "2251", "target": "231", "attributes": { "weight": 1 } }, { "key": "20115", "source": "2251", "target": "459", "attributes": { "weight": 1 } }, { "key": "20103", "source": "2251", "target": "441", "attributes": { "weight": 1 } }, { "key": "20114", "source": "2251", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20104", "source": "2251", "target": "224", "attributes": { "weight": 1 } }, { "key": "20095", "source": "2251", "target": "49", "attributes": { "weight": 1 } }, { "key": "20108", "source": "2251", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20094", "source": "2251", "target": "1756", "attributes": { "weight": 1 } }, { "key": "20101", "source": "2251", "target": "2025", "attributes": { "weight": 1 } }, { "key": "20123", "source": "2251", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20130", "source": "2251", "target": "1560", "attributes": { "weight": 1 } }, { "key": "20117", "source": "2251", "target": "1247", "attributes": { "weight": 1 } }, { "key": "20099", "source": "2251", "target": "438", "attributes": { "weight": 1 } }, { "key": "20107", "source": "2251", "target": "449", "attributes": { "weight": 1 } }, { "key": "20118", "source": "2251", "target": "2257", "attributes": { "weight": 1 } }, { "key": "20129", "source": "2251", "target": "482", "attributes": { "weight": 1 } }, { "key": "20126", "source": "2251", "target": "478", "attributes": { "weight": 1 } }, { "key": "20110", "source": "2251", "target": "453", "attributes": { "weight": 1 } }, { "key": "20120", "source": "2251", "target": "472", "attributes": { "weight": 1 } }, { "key": "20121", "source": "2251", "target": "1367", "attributes": { "weight": 1 } }, { "key": "36911", "source": "2251", "target": "1072", "attributes": { "weight": 1 } }, { "key": "20096", "source": "2251", "target": "221", "attributes": { "weight": 1 } }, { "key": "20098", "source": "2251", "target": "2106", "attributes": { "weight": 1 } }, { "key": "23614", "source": "2251", "target": "1312", "attributes": { "weight": 1 } }, { "key": "20122", "source": "2251", "target": "2260", "attributes": { "weight": 1 } }, { "key": "20100", "source": "2251", "target": "51", "attributes": { "weight": 1 } }, { "key": "20113", "source": "2251", "target": "2252", "attributes": { "weight": 1 } }, { "key": "36912", "source": "2251", "target": "2647", "attributes": { "weight": 1 } }, { "key": "23613", "source": "2251", "target": "220", "attributes": { "weight": 1 } }, { "key": "20097", "source": "2251", "target": "1522", "attributes": { "weight": 1 } }, { "key": "20132", "source": "2251", "target": "487", "attributes": { "weight": 1 } }, { "key": "20131", "source": "2251", "target": "2272", "attributes": { "weight": 1 } }, { "key": "20137", "source": "2251", "target": "498", "attributes": { "weight": 1 } }, { "key": "23337", "source": "2251", "target": "223", "attributes": { "weight": 1 } }, { "key": "20133", "source": "2251", "target": "489", "attributes": { "weight": 1 } }, { "key": "20109", "source": "2251", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20135", "source": "2251", "target": "1751", "attributes": { "weight": 1 } }, { "key": "20106", "source": "2251", "target": "448", "attributes": { "weight": 1 } }, { "key": "20136", "source": "2251", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20128", "source": "2251", "target": "1770", "attributes": { "weight": 1 } }, { "key": "20119", "source": "2251", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20111", "source": "2251", "target": "186", "attributes": { "weight": 1 } }, { "key": "20102", "source": "2251", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20127", "source": "2251", "target": "480", "attributes": { "weight": 1 } }, { "key": "20105", "source": "2251", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20124", "source": "2251", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20112", "source": "2251", "target": "1356", "attributes": { "weight": 1 } }, { "key": "20116", "source": "2251", "target": "464", "attributes": { "weight": 1 } }, { "key": "20139", "source": "2252", "target": "231", "attributes": { "weight": 2 } }, { "key": "20138", "source": "2252", "target": "2251", "attributes": { "weight": 1 } }, { "key": "23615", "source": "2252", "target": "451", "attributes": { "weight": 1 } }, { "key": "23616", "source": "2252", "target": "54", "attributes": { "weight": 1 } }, { "key": "23617", "source": "2252", "target": "2260", "attributes": { "weight": 1 } }, { "key": "20192", "source": "2253", "target": "489", "attributes": { "weight": 1 } }, { "key": "20188", "source": "2253", "target": "695", "attributes": { "weight": 1 } }, { "key": "20159", "source": "2253", "target": "1353", "attributes": { "weight": 1 } }, { "key": "20176", "source": "2253", "target": "2254", "attributes": { "weight": 1 } }, { "key": "20182", "source": "2253", "target": "231", "attributes": { "weight": 1 } }, { "key": "20199", "source": "2253", "target": "1376", "attributes": { "weight": 1 } }, { "key": "20180", "source": "2253", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20187", "source": "2253", "target": "2269", "attributes": { "weight": 1 } }, { "key": "20160", "source": "2253", "target": "429", "attributes": { "weight": 1 } }, { "key": "35969", "source": "2253", "target": "465", "attributes": { "weight": 1 } }, { "key": "20193", "source": "2253", "target": "491", "attributes": { "weight": 1 } }, { "key": "20190", "source": "2253", "target": "2271", "attributes": { "weight": 1 } }, { "key": "20183", "source": "2253", "target": "480", "attributes": { "weight": 1 } }, { "key": "20168", "source": "2253", "target": "1759", "attributes": { "weight": 1 } }, { "key": "20185", "source": "2253", "target": "481", "attributes": { "weight": 1 } }, { "key": "20195", "source": "2253", "target": "1751", "attributes": { "weight": 1 } }, { "key": "20173", "source": "2253", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20172", "source": "2253", "target": "227", "attributes": { "weight": 1 } }, { "key": "35971", "source": "2253", "target": "1092", "attributes": { "weight": 1 } }, { "key": "35970", "source": "2253", "target": "428", "attributes": { "weight": 1 } }, { "key": "20184", "source": "2253", "target": "1770", "attributes": { "weight": 1 } }, { "key": "20200", "source": "2253", "target": "499", "attributes": { "weight": 1 } }, { "key": "20178", "source": "2253", "target": "229", "attributes": { "weight": 1 } }, { "key": "20186", "source": "2253", "target": "482", "attributes": { "weight": 1 } }, { "key": "20163", "source": "2253", "target": "221", "attributes": { "weight": 1 } }, { "key": "20166", "source": "2253", "target": "1070", "attributes": { "weight": 1 } }, { "key": "35968", "source": "2253", "target": "440", "attributes": { "weight": 1 } }, { "key": "20162", "source": "2253", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20194", "source": "2253", "target": "56", "attributes": { "weight": 1 } }, { "key": "20174", "source": "2253", "target": "459", "attributes": { "weight": 1 } }, { "key": "20161", "source": "2253", "target": "1756", "attributes": { "weight": 1 } }, { "key": "20191", "source": "2253", "target": "487", "attributes": { "weight": 1 } }, { "key": "20201", "source": "2253", "target": "194", "attributes": { "weight": 1 } }, { "key": "20169", "source": "2253", "target": "449", "attributes": { "weight": 1 } }, { "key": "20196", "source": "2253", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20175", "source": "2253", "target": "2107", "attributes": { "weight": 1 } }, { "key": "20197", "source": "2253", "target": "235", "attributes": { "weight": 1 } }, { "key": "20170", "source": "2253", "target": "450", "attributes": { "weight": 1 } }, { "key": "20189", "source": "2253", "target": "2109", "attributes": { "weight": 1 } }, { "key": "20177", "source": "2253", "target": "470", "attributes": { "weight": 1 } }, { "key": "20181", "source": "2253", "target": "2265", "attributes": { "weight": 1 } }, { "key": "20198", "source": "2253", "target": "1375", "attributes": { "weight": 1 } }, { "key": "20164", "source": "2253", "target": "439", "attributes": { "weight": 1 } }, { "key": "20179", "source": "2253", "target": "230", "attributes": { "weight": 1 } }, { "key": "20171", "source": "2253", "target": "451", "attributes": { "weight": 1 } }, { "key": "20165", "source": "2253", "target": "441", "attributes": { "weight": 1 } }, { "key": "20167", "source": "2253", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20273", "source": "2254", "target": "449", "attributes": { "weight": 1 } }, { "key": "20283", "source": "2254", "target": "483", "attributes": { "weight": 1 } }, { "key": "20277", "source": "2254", "target": "135", "attributes": { "weight": 1 } }, { "key": "20272", "source": "2254", "target": "1759", "attributes": { "weight": 1 } }, { "key": "20270", "source": "2254", "target": "51", "attributes": { "weight": 1 } }, { "key": "20274", "source": "2254", "target": "450", "attributes": { "weight": 1 } }, { "key": "20279", "source": "2254", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20281", "source": "2254", "target": "1812", "attributes": { "weight": 1 } }, { "key": "20275", "source": "2254", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20269", "source": "2254", "target": "435", "attributes": { "weight": 1 } }, { "key": "20271", "source": "2254", "target": "441", "attributes": { "weight": 1 } }, { "key": "20284", "source": "2254", "target": "2095", "attributes": { "weight": 1 } }, { "key": "20286", "source": "2254", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20278", "source": "2254", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20282", "source": "2254", "target": "231", "attributes": { "weight": 1 } }, { "key": "20276", "source": "2254", "target": "462", "attributes": { "weight": 1 } }, { "key": "20268", "source": "2254", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20285", "source": "2254", "target": "489", "attributes": { "weight": 1 } }, { "key": "20280", "source": "2254", "target": "1838", "attributes": { "weight": 1 } }, { "key": "36000", "source": "2255", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20310", "source": "2255", "target": "231", "attributes": { "weight": 1 } }, { "key": "20311", "source": "2255", "target": "480", "attributes": { "weight": 1 } }, { "key": "20309", "source": "2255", "target": "221", "attributes": { "weight": 1 } }, { "key": "20316", "source": "2256", "target": "1836", "attributes": { "weight": 1 } }, { "key": "20315", "source": "2256", "target": "451", "attributes": { "weight": 1 } }, { "key": "20314", "source": "2256", "target": "435", "attributes": { "weight": 1 } }, { "key": "20318", "source": "2256", "target": "489", "attributes": { "weight": 1 } }, { "key": "20317", "source": "2256", "target": "2267", "attributes": { "weight": 1 } }, { "key": "20403", "source": "2257", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20402", "source": "2257", "target": "221", "attributes": { "weight": 1 } }, { "key": "20404", "source": "2257", "target": "2261", "attributes": { "weight": 1 } }, { "key": "33533", "source": "2258", "target": "473", "attributes": { "weight": 1 } }, { "key": "36013", "source": "2258", "target": "2042", "attributes": { "weight": 1 } }, { "key": "32765", "source": "2258", "target": "424", "attributes": { "weight": 2 } }, { "key": "33512", "source": "2258", "target": "1141", "attributes": { "weight": 1 } }, { "key": "20416", "source": "2258", "target": "1358", "attributes": { "weight": 2 } }, { "key": "33518", "source": "2258", "target": "440", "attributes": { "weight": 2 } }, { "key": "33521", "source": "2258", "target": "445", "attributes": { "weight": 1 } }, { "key": "33537", "source": "2258", "target": "494", "attributes": { "weight": 1 } }, { "key": "36017", "source": "2258", "target": "1026", "attributes": { "weight": 1 } }, { "key": "33536", "source": "2258", "target": "672", "attributes": { "weight": 1 } }, { "key": "33524", "source": "2258", "target": "1219", "attributes": { "weight": 1 } }, { "key": "33529", "source": "2258", "target": "1738", "attributes": { "weight": 1 } }, { "key": "20414", "source": "2258", "target": "449", "attributes": { "weight": 1 } }, { "key": "20411", "source": "2258", "target": "1756", "attributes": { "weight": 1 } }, { "key": "36026", "source": "2258", "target": "1390", "attributes": { "weight": 1 } }, { "key": "20422", "source": "2258", "target": "1367", "attributes": { "weight": 1 } }, { "key": "36006", "source": "2258", "target": "433", "attributes": { "weight": 1 } }, { "key": "37458", "source": "2258", "target": "1366", "attributes": { "weight": 1 } }, { "key": "36008", "source": "2258", "target": "1760", "attributes": { "weight": 1 } }, { "key": "20415", "source": "2258", "target": "2249", "attributes": { "weight": 1 } }, { "key": "32770", "source": "2258", "target": "1812", "attributes": { "weight": 2 } }, { "key": "33526", "source": "2258", "target": "188", "attributes": { "weight": 1 } }, { "key": "33517", "source": "2258", "target": "50", "attributes": { "weight": 1 } }, { "key": "20418", "source": "2258", "target": "2107", "attributes": { "weight": 1 } }, { "key": "33523", "source": "2258", "target": "450", "attributes": { "weight": 1 } }, { "key": "36028", "source": "2258", "target": "498", "attributes": { "weight": 1 } }, { "key": "36018", "source": "2258", "target": "478", "attributes": { "weight": 1 } }, { "key": "36024", "source": "2258", "target": "1778", "attributes": { "weight": 1 } }, { "key": "33513", "source": "2258", "target": "1354", "attributes": { "weight": 2 } }, { "key": "33528", "source": "2258", "target": "1834", "attributes": { "weight": 1 } }, { "key": "32764", "source": "2258", "target": "429", "attributes": { "weight": 3 } }, { "key": "36012", "source": "2258", "target": "1072", "attributes": { "weight": 1 } }, { "key": "36022", "source": "2258", "target": "1092", "attributes": { "weight": 1 } }, { "key": "32772", "source": "2258", "target": "2670", "attributes": { "weight": 3 } }, { "key": "33531", "source": "2258", "target": "471", "attributes": { "weight": 1 } }, { "key": "33538", "source": "2258", "target": "57", "attributes": { "weight": 1 } }, { "key": "36010", "source": "2258", "target": "3271", "attributes": { "weight": 1 } }, { "key": "32768", "source": "2258", "target": "459", "attributes": { "weight": 2 } }, { "key": "32771", "source": "2258", "target": "231", "attributes": { "weight": 3 } }, { "key": "27368", "source": "2258", "target": "340", "attributes": { "weight": 2 } }, { "key": "32766", "source": "2258", "target": "860", "attributes": { "weight": 2 } }, { "key": "20426", "source": "2258", "target": "2270", "attributes": { "weight": 1 } }, { "key": "33534", "source": "2258", "target": "474", "attributes": { "weight": 1 } }, { "key": "20412", "source": "2258", "target": "2025", "attributes": { "weight": 1 } }, { "key": "33525", "source": "2258", "target": "52", "attributes": { "weight": 1 } }, { "key": "20427", "source": "2258", "target": "56", "attributes": { "weight": 3 } }, { "key": "33519", "source": "2258", "target": "442", "attributes": { "weight": 1 } }, { "key": "20420", "source": "2258", "target": "54", "attributes": { "weight": 2 } }, { "key": "36009", "source": "2258", "target": "3270", "attributes": { "weight": 1 } }, { "key": "20425", "source": "2258", "target": "2269", "attributes": { "weight": 2 } }, { "key": "30730", "source": "2258", "target": "1762", "attributes": { "weight": 1 } }, { "key": "20417", "source": "2258", "target": "2251", "attributes": { "weight": 1 } }, { "key": "36027", "source": "2258", "target": "497", "attributes": { "weight": 1 } }, { "key": "36015", "source": "2258", "target": "1547", "attributes": { "weight": 1 } }, { "key": "36014", "source": "2258", "target": "465", "attributes": { "weight": 1 } }, { "key": "36025", "source": "2258", "target": "2208", "attributes": { "weight": 1 } }, { "key": "37457", "source": "2258", "target": "1217", "attributes": { "weight": 1 } }, { "key": "33520", "source": "2258", "target": "443", "attributes": { "weight": 1 } }, { "key": "33532", "source": "2258", "target": "229", "attributes": { "weight": 1 } }, { "key": "37459", "source": "2258", "target": "190", "attributes": { "weight": 1 } }, { "key": "36021", "source": "2258", "target": "428", "attributes": { "weight": 1 } }, { "key": "36011", "source": "2258", "target": "1360", "attributes": { "weight": 1 } }, { "key": "37455", "source": "2258", "target": "858", "attributes": { "weight": 1 } }, { "key": "33514", "source": "2258", "target": "220", "attributes": { "weight": 1 } }, { "key": "36020", "source": "2258", "target": "695", "attributes": { "weight": 1 } }, { "key": "20413", "source": "2258", "target": "2242", "attributes": { "weight": 1 } }, { "key": "36007", "source": "2258", "target": "2086", "attributes": { "weight": 1 } }, { "key": "33527", "source": "2258", "target": "458", "attributes": { "weight": 1 } }, { "key": "36016", "source": "2258", "target": "2259", "attributes": { "weight": 1 } }, { "key": "37456", "source": "2258", "target": "452", "attributes": { "weight": 1 } }, { "key": "20423", "source": "2258", "target": "1838", "attributes": { "weight": 1 } }, { "key": "33516", "source": "2258", "target": "2645", "attributes": { "weight": 1 } }, { "key": "36023", "source": "2258", "target": "1776", "attributes": { "weight": 1 } }, { "key": "33535", "source": "2258", "target": "480", "attributes": { "weight": 1 } }, { "key": "32767", "source": "2258", "target": "451", "attributes": { "weight": 3 } }, { "key": "32769", "source": "2258", "target": "53", "attributes": { "weight": 2 } }, { "key": "33522", "source": "2258", "target": "448", "attributes": { "weight": 1 } }, { "key": "25799", "source": "2258", "target": "791", "attributes": { "weight": 1 } }, { "key": "20419", "source": "2258", "target": "2254", "attributes": { "weight": 1 } }, { "key": "20410", "source": "2258", "target": "1353", "attributes": { "weight": 3 } }, { "key": "33530", "source": "2258", "target": "470", "attributes": { "weight": 1 } }, { "key": "33515", "source": "2258", "target": "130", "attributes": { "weight": 1 } }, { "key": "36019", "source": "2258", "target": "479", "attributes": { "weight": 1 } }, { "key": "20421", "source": "2258", "target": "2094", "attributes": { "weight": 1 } }, { "key": "20424", "source": "2258", "target": "482", "attributes": { "weight": 1 } }, { "key": "36030", "source": "2259", "target": "73", "attributes": { "weight": 1 } }, { "key": "35268", "source": "2259", "target": "452", "attributes": { "weight": 1 } }, { "key": "25480", "source": "2259", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20428", "source": "2259", "target": "489", "attributes": { "weight": 1 } }, { "key": "25481", "source": "2259", "target": "473", "attributes": { "weight": 1 } }, { "key": "36029", "source": "2259", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20556", "source": "2260", "target": "1354", "attributes": { "weight": 1 } }, { "key": "23641", "source": "2260", "target": "458", "attributes": { "weight": 1 } }, { "key": "20558", "source": "2260", "target": "451", "attributes": { "weight": 1 } }, { "key": "23640", "source": "2260", "target": "424", "attributes": { "weight": 1 } }, { "key": "20563", "source": "2260", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20559", "source": "2260", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20560", "source": "2260", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20557", "source": "2260", "target": "439", "attributes": { "weight": 1 } }, { "key": "20561", "source": "2260", "target": "231", "attributes": { "weight": 1 } }, { "key": "20562", "source": "2260", "target": "56", "attributes": { "weight": 1 } }, { "key": "20600", "source": "2261", "target": "459", "attributes": { "weight": 1 } }, { "key": "20588", "source": "2261", "target": "222", "attributes": { "weight": 1 } }, { "key": "20613", "source": "2261", "target": "487", "attributes": { "weight": 1 } }, { "key": "20587", "source": "2261", "target": "221", "attributes": { "weight": 1 } }, { "key": "20589", "source": "2261", "target": "439", "attributes": { "weight": 1 } }, { "key": "20616", "source": "2261", "target": "56", "attributes": { "weight": 1 } }, { "key": "20599", "source": "2261", "target": "2251", "attributes": { "weight": 1 } }, { "key": "20614", "source": "2261", "target": "489", "attributes": { "weight": 1 } }, { "key": "20602", "source": "2261", "target": "54", "attributes": { "weight": 1 } }, { "key": "20597", "source": "2261", "target": "227", "attributes": { "weight": 1 } }, { "key": "20595", "source": "2261", "target": "450", "attributes": { "weight": 1 } }, { "key": "20594", "source": "2261", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20608", "source": "2261", "target": "480", "attributes": { "weight": 1 } }, { "key": "20593", "source": "2261", "target": "1070", "attributes": { "weight": 1 } }, { "key": "20584", "source": "2261", "target": "1756", "attributes": { "weight": 1 } }, { "key": "20617", "source": "2261", "target": "235", "attributes": { "weight": 1 } }, { "key": "20586", "source": "2261", "target": "431", "attributes": { "weight": 1 } }, { "key": "20611", "source": "2261", "target": "695", "attributes": { "weight": 1 } }, { "key": "20609", "source": "2261", "target": "1770", "attributes": { "weight": 1 } }, { "key": "20583", "source": "2261", "target": "429", "attributes": { "weight": 1 } }, { "key": "20604", "source": "2261", "target": "1744", "attributes": { "weight": 1 } }, { "key": "20619", "source": "2261", "target": "194", "attributes": { "weight": 1 } }, { "key": "20582", "source": "2261", "target": "1353", "attributes": { "weight": 1 } }, { "key": "20615", "source": "2261", "target": "491", "attributes": { "weight": 1 } }, { "key": "20590", "source": "2261", "target": "2242", "attributes": { "weight": 1 } }, { "key": "20596", "source": "2261", "target": "451", "attributes": { "weight": 1 } }, { "key": "20591", "source": "2261", "target": "441", "attributes": { "weight": 1 } }, { "key": "20598", "source": "2261", "target": "1358", "attributes": { "weight": 1 } }, { "key": "20585", "source": "2261", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20606", "source": "2261", "target": "231", "attributes": { "weight": 1 } }, { "key": "20603", "source": "2261", "target": "2257", "attributes": { "weight": 1 } }, { "key": "20601", "source": "2261", "target": "1364", "attributes": { "weight": 1 } }, { "key": "20612", "source": "2261", "target": "2271", "attributes": { "weight": 1 } }, { "key": "20607", "source": "2261", "target": "477", "attributes": { "weight": 1 } }, { "key": "20605", "source": "2261", "target": "1708", "attributes": { "weight": 1 } }, { "key": "20610", "source": "2261", "target": "482", "attributes": { "weight": 1 } }, { "key": "20618", "source": "2261", "target": "1375", "attributes": { "weight": 1 } }, { "key": "20592", "source": "2261", "target": "443", "attributes": { "weight": 1 } }, { "key": "20634", "source": "2262", "target": "1070", "attributes": { "weight": 1 } }, { "key": "36054", "source": "2262", "target": "428", "attributes": { "weight": 1 } }, { "key": "20638", "source": "2262", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20646", "source": "2262", "target": "235", "attributes": { "weight": 1 } }, { "key": "20639", "source": "2262", "target": "1812", "attributes": { "weight": 1 } }, { "key": "20635", "source": "2262", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20630", "source": "2262", "target": "1110", "attributes": { "weight": 1 } }, { "key": "20631", "source": "2262", "target": "438", "attributes": { "weight": 1 } }, { "key": "20645", "source": "2262", "target": "489", "attributes": { "weight": 1 } }, { "key": "36050", "source": "2262", "target": "440", "attributes": { "weight": 1 } }, { "key": "36052", "source": "2262", "target": "465", "attributes": { "weight": 1 } }, { "key": "20627", "source": "2262", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20642", "source": "2262", "target": "483", "attributes": { "weight": 1 } }, { "key": "20632", "source": "2262", "target": "1023", "attributes": { "weight": 1 } }, { "key": "36055", "source": "2262", "target": "497", "attributes": { "weight": 1 } }, { "key": "20648", "source": "2262", "target": "194", "attributes": { "weight": 1 } }, { "key": "20626", "source": "2262", "target": "1756", "attributes": { "weight": 1 } }, { "key": "20637", "source": "2262", "target": "464", "attributes": { "weight": 1 } }, { "key": "20629", "source": "2262", "target": "221", "attributes": { "weight": 1 } }, { "key": "20640", "source": "2262", "target": "231", "attributes": { "weight": 1 } }, { "key": "20628", "source": "2262", "target": "130", "attributes": { "weight": 1 } }, { "key": "36053", "source": "2262", "target": "478", "attributes": { "weight": 1 } }, { "key": "20643", "source": "2262", "target": "484", "attributes": { "weight": 1 } }, { "key": "20633", "source": "2262", "target": "2242", "attributes": { "weight": 1 } }, { "key": "20641", "source": "2262", "target": "480", "attributes": { "weight": 1 } }, { "key": "20625", "source": "2262", "target": "429", "attributes": { "weight": 1 } }, { "key": "36051", "source": "2262", "target": "1360", "attributes": { "weight": 1 } }, { "key": "20644", "source": "2262", "target": "487", "attributes": { "weight": 1 } }, { "key": "36049", "source": "2262", "target": "433", "attributes": { "weight": 1 } }, { "key": "20636", "source": "2262", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20647", "source": "2262", "target": "2276", "attributes": { "weight": 1 } }, { "key": "29133", "source": "2263", "target": "488", "attributes": { "weight": 1 } }, { "key": "29134", "source": "2263", "target": "500", "attributes": { "weight": 1 } }, { "key": "29132", "source": "2263", "target": "447", "attributes": { "weight": 1 } }, { "key": "20695", "source": "2263", "target": "489", "attributes": { "weight": 1 } }, { "key": "28945", "source": "2264", "target": "479", "attributes": { "weight": 2 } }, { "key": "20696", "source": "2264", "target": "489", "attributes": { "weight": 1 } }, { "key": "30498", "source": "2264", "target": "442", "attributes": { "weight": 1 } }, { "key": "20704", "source": "2265", "target": "489", "attributes": { "weight": 1 } }, { "key": "20703", "source": "2265", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20706", "source": "2266", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20707", "source": "2266", "target": "489", "attributes": { "weight": 1 } }, { "key": "20708", "source": "2266", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20705", "source": "2266", "target": "441", "attributes": { "weight": 1 } }, { "key": "36078", "source": "2266", "target": "1026", "attributes": { "weight": 1 } }, { "key": "20724", "source": "2267", "target": "130", "attributes": { "weight": 1 } }, { "key": "20721", "source": "2267", "target": "1353", "attributes": { "weight": 1 } }, { "key": "20730", "source": "2267", "target": "1358", "attributes": { "weight": 1 } }, { "key": "20737", "source": "2267", "target": "2269", "attributes": { "weight": 1 } }, { "key": "20723", "source": "2267", "target": "1354", "attributes": { "weight": 1 } }, { "key": "20740", "source": "2267", "target": "2276", "attributes": { "weight": 1 } }, { "key": "20736", "source": "2267", "target": "231", "attributes": { "weight": 1 } }, { "key": "20725", "source": "2267", "target": "2243", "attributes": { "weight": 1 } }, { "key": "20722", "source": "2267", "target": "429", "attributes": { "weight": 1 } }, { "key": "20726", "source": "2267", "target": "443", "attributes": { "weight": 1 } }, { "key": "20727", "source": "2267", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20735", "source": "2267", "target": "1367", "attributes": { "weight": 1 } }, { "key": "20741", "source": "2267", "target": "498", "attributes": { "weight": 1 } }, { "key": "20733", "source": "2267", "target": "54", "attributes": { "weight": 1 } }, { "key": "20729", "source": "2267", "target": "451", "attributes": { "weight": 1 } }, { "key": "20734", "source": "2267", "target": "2094", "attributes": { "weight": 1 } }, { "key": "20732", "source": "2267", "target": "2256", "attributes": { "weight": 1 } }, { "key": "20739", "source": "2267", "target": "56", "attributes": { "weight": 1 } }, { "key": "20731", "source": "2267", "target": "459", "attributes": { "weight": 1 } }, { "key": "20728", "source": "2267", "target": "449", "attributes": { "weight": 1 } }, { "key": "20738", "source": "2267", "target": "695", "attributes": { "weight": 1 } }, { "key": "20746", "source": "2268", "target": "489", "attributes": { "weight": 1 } }, { "key": "20745", "source": "2268", "target": "441", "attributes": { "weight": 1 } }, { "key": "20747", "source": "2268", "target": "2189", "attributes": { "weight": 1 } }, { "key": "20744", "source": "2268", "target": "1756", "attributes": { "weight": 1 } }, { "key": "27171", "source": "2269", "target": "2645", "attributes": { "weight": 1 } }, { "key": "20888", "source": "2269", "target": "2248", "attributes": { "weight": 1 } }, { "key": "20894", "source": "2269", "target": "2267", "attributes": { "weight": 1 } }, { "key": "20892", "source": "2269", "target": "2258", "attributes": { "weight": 1 } }, { "key": "20895", "source": "2269", "target": "231", "attributes": { "weight": 1 } }, { "key": "20891", "source": "2269", "target": "1836", "attributes": { "weight": 1 } }, { "key": "20889", "source": "2269", "target": "1832", "attributes": { "weight": 1 } }, { "key": "27172", "source": "2269", "target": "1282", "attributes": { "weight": 1 } }, { "key": "20890", "source": "2269", "target": "2253", "attributes": { "weight": 1 } }, { "key": "23368", "source": "2269", "target": "223", "attributes": { "weight": 1 } }, { "key": "20886", "source": "2269", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20887", "source": "2269", "target": "449", "attributes": { "weight": 1 } }, { "key": "20884", "source": "2269", "target": "435", "attributes": { "weight": 1 } }, { "key": "20896", "source": "2269", "target": "489", "attributes": { "weight": 1 } }, { "key": "20885", "source": "2269", "target": "51", "attributes": { "weight": 2 } }, { "key": "20893", "source": "2269", "target": "472", "attributes": { "weight": 3 } }, { "key": "20952", "source": "2270", "target": "1832", "attributes": { "weight": 1 } }, { "key": "20953", "source": "2270", "target": "2258", "attributes": { "weight": 1 } }, { "key": "26926", "source": "2270", "target": "497", "attributes": { "weight": 1 } }, { "key": "20954", "source": "2270", "target": "472", "attributes": { "weight": 1 } }, { "key": "20950", "source": "2270", "target": "51", "attributes": { "weight": 1 } }, { "key": "26744", "source": "2270", "target": "454", "attributes": { "weight": 1 } }, { "key": "20951", "source": "2270", "target": "449", "attributes": { "weight": 1 } }, { "key": "25483", "source": "2270", "target": "1023", "attributes": { "weight": 1 } }, { "key": "20956", "source": "2270", "target": "489", "attributes": { "weight": 1 } }, { "key": "25484", "source": "2270", "target": "452", "attributes": { "weight": 1 } }, { "key": "20955", "source": "2270", "target": "2095", "attributes": { "weight": 1 } }, { "key": "20985", "source": "2271", "target": "1375", "attributes": { "weight": 1 } }, { "key": "20977", "source": "2271", "target": "450", "attributes": { "weight": 1 } }, { "key": "20980", "source": "2271", "target": "2261", "attributes": { "weight": 1 } }, { "key": "20983", "source": "2271", "target": "1374", "attributes": { "weight": 1 } }, { "key": "20974", "source": "2271", "target": "2244", "attributes": { "weight": 1 } }, { "key": "20979", "source": "2271", "target": "54", "attributes": { "weight": 1 } }, { "key": "20984", "source": "2271", "target": "56", "attributes": { "weight": 1 } }, { "key": "20976", "source": "2271", "target": "449", "attributes": { "weight": 1 } }, { "key": "20981", "source": "2271", "target": "231", "attributes": { "weight": 1 } }, { "key": "20973", "source": "2271", "target": "221", "attributes": { "weight": 1 } }, { "key": "20970", "source": "2271", "target": "1353", "attributes": { "weight": 1 } }, { "key": "24226", "source": "2271", "target": "471", "attributes": { "weight": 1 } }, { "key": "20975", "source": "2271", "target": "2245", "attributes": { "weight": 1 } }, { "key": "20972", "source": "2271", "target": "130", "attributes": { "weight": 3 } }, { "key": "20978", "source": "2271", "target": "2253", "attributes": { "weight": 1 } }, { "key": "20982", "source": "2271", "target": "489", "attributes": { "weight": 1 } }, { "key": "20971", "source": "2271", "target": "429", "attributes": { "weight": 1 } }, { "key": "20987", "source": "2272", "target": "489", "attributes": { "weight": 1 } }, { "key": "20986", "source": "2272", "target": "2251", "attributes": { "weight": 1 } }, { "key": "31362", "source": "2272", "target": "59", "attributes": { "weight": 1 } }, { "key": "21309", "source": "2273", "target": "449", "attributes": { "weight": 1 } }, { "key": "21310", "source": "2273", "target": "1087", "attributes": { "weight": 1 } }, { "key": "21312", "source": "2273", "target": "482", "attributes": { "weight": 1 } }, { "key": "21311", "source": "2273", "target": "1744", "attributes": { "weight": 1 } }, { "key": "21313", "source": "2273", "target": "489", "attributes": { "weight": 1 } }, { "key": "21339", "source": "2274", "target": "130", "attributes": { "weight": 3 } }, { "key": "35221", "source": "2274", "target": "231", "attributes": { "weight": 1 } }, { "key": "21356", "source": "2275", "target": "489", "attributes": { "weight": 1 } }, { "key": "21355", "source": "2275", "target": "1354", "attributes": { "weight": 1 } }, { "key": "21354", "source": "2275", "target": "429", "attributes": { "weight": 1 } }, { "key": "21365", "source": "2276", "target": "2244", "attributes": { "weight": 1 } }, { "key": "21376", "source": "2276", "target": "231", "attributes": { "weight": 1 } }, { "key": "21374", "source": "2276", "target": "2262", "attributes": { "weight": 1 } }, { "key": "21377", "source": "2276", "target": "480", "attributes": { "weight": 1 } }, { "key": "21362", "source": "2276", "target": "51", "attributes": { "weight": 1 } }, { "key": "21372", "source": "2276", "target": "472", "attributes": { "weight": 1 } }, { "key": "21358", "source": "2276", "target": "1354", "attributes": { "weight": 1 } }, { "key": "21363", "source": "2276", "target": "1023", "attributes": { "weight": 1 } }, { "key": "21359", "source": "2276", "target": "130", "attributes": { "weight": 1 } }, { "key": "21368", "source": "2276", "target": "2248", "attributes": { "weight": 1 } }, { "key": "21369", "source": "2276", "target": "1832", "attributes": { "weight": 1 } }, { "key": "21375", "source": "2276", "target": "2267", "attributes": { "weight": 1 } }, { "key": "21371", "source": "2276", "target": "1836", "attributes": { "weight": 1 } }, { "key": "21367", "source": "2276", "target": "449", "attributes": { "weight": 1 } }, { "key": "21366", "source": "2276", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21382", "source": "2276", "target": "2189", "attributes": { "weight": 1 } }, { "key": "21379", "source": "2276", "target": "487", "attributes": { "weight": 1 } }, { "key": "21373", "source": "2276", "target": "1087", "attributes": { "weight": 1 } }, { "key": "21380", "source": "2276", "target": "2111", "attributes": { "weight": 1 } }, { "key": "21383", "source": "2276", "target": "498", "attributes": { "weight": 1 } }, { "key": "21370", "source": "2276", "target": "1360", "attributes": { "weight": 1 } }, { "key": "21381", "source": "2276", "target": "489", "attributes": { "weight": 1 } }, { "key": "21360", "source": "2276", "target": "221", "attributes": { "weight": 1 } }, { "key": "21378", "source": "2276", "target": "2095", "attributes": { "weight": 1 } }, { "key": "21361", "source": "2276", "target": "222", "attributes": { "weight": 1 } }, { "key": "21364", "source": "2276", "target": "1070", "attributes": { "weight": 1 } }, { "key": "21402", "source": "2277", "target": "1744", "attributes": { "weight": 1 } }, { "key": "21403", "source": "2277", "target": "482", "attributes": { "weight": 1 } }, { "key": "35222", "source": "2278", "target": "231", "attributes": { "weight": 1 } }, { "key": "21425", "source": "2278", "target": "489", "attributes": { "weight": 1 } }, { "key": "36199", "source": "2278", "target": "1760", "attributes": { "weight": 1 } }, { "key": "21424", "source": "2278", "target": "2245", "attributes": { "weight": 1 } }, { "key": "21421", "source": "2278", "target": "1353", "attributes": { "weight": 1 } }, { "key": "21422", "source": "2278", "target": "221", "attributes": { "weight": 1 } }, { "key": "36200", "source": "2278", "target": "1026", "attributes": { "weight": 1 } }, { "key": "21423", "source": "2278", "target": "1023", "attributes": { "weight": 1 } }, { "key": "23218", "source": "2279", "target": "1191", "attributes": { "weight": 2 } }, { "key": "21438", "source": "2279", "target": "1240", "attributes": { "weight": 2 } }, { "key": "21460", "source": "2280", "target": "579", "attributes": { "weight": 2 } }, { "key": "25750", "source": "2280", "target": "278", "attributes": { "weight": 1 } }, { "key": "22704", "source": "2280", "target": "580", "attributes": { "weight": 1 } }, { "key": "21459", "source": "2280", "target": "1240", "attributes": { "weight": 3 } }, { "key": "25051", "source": "2280", "target": "707", "attributes": { "weight": 2 } }, { "key": "25257", "source": "2281", "target": "1630", "attributes": { "weight": 2 } }, { "key": "25261", "source": "2281", "target": "2335", "attributes": { "weight": 1 } }, { "key": "22402", "source": "2281", "target": "567", "attributes": { "weight": 4 } }, { "key": "25252", "source": "2281", "target": "1618", "attributes": { "weight": 1 } }, { "key": "25262", "source": "2281", "target": "1636", "attributes": { "weight": 1 } }, { "key": "25258", "source": "2281", "target": "2332", "attributes": { "weight": 1 } }, { "key": "25253", "source": "2281", "target": "2321", "attributes": { "weight": 2 } }, { "key": "25256", "source": "2281", "target": "2575", "attributes": { "weight": 1 } }, { "key": "25259", "source": "2281", "target": "1631", "attributes": { "weight": 2 } }, { "key": "25260", "source": "2281", "target": "1632", "attributes": { "weight": 2 } }, { "key": "22403", "source": "2281", "target": "2339", "attributes": { "weight": 2 } }, { "key": "25255", "source": "2281", "target": "1624", "attributes": { "weight": 1 } }, { "key": "21466", "source": "2281", "target": "2285", "attributes": { "weight": 2 } }, { "key": "25251", "source": "2281", "target": "2319", "attributes": { "weight": 1 } }, { "key": "25250", "source": "2281", "target": "1617", "attributes": { "weight": 1 } }, { "key": "25263", "source": "2281", "target": "1637", "attributes": { "weight": 2 } }, { "key": "25254", "source": "2281", "target": "572", "attributes": { "weight": 1 } }, { "key": "21469", "source": "2282", "target": "178", "attributes": { "weight": 2 } }, { "key": "21473", "source": "2283", "target": "2285", "attributes": { "weight": 2 } }, { "key": "27599", "source": "2284", "target": "171", "attributes": { "weight": 1 } }, { "key": "21475", "source": "2284", "target": "178", "attributes": { "weight": 2 } }, { "key": "21474", "source": "2284", "target": "172", "attributes": { "weight": 2 } }, { "key": "21497", "source": "2285", "target": "1966", "attributes": { "weight": 2 } }, { "key": "21492", "source": "2285", "target": "1252", "attributes": { "weight": 3 } }, { "key": "21489", "source": "2285", "target": "1623", "attributes": { "weight": 3 } }, { "key": "24744", "source": "2285", "target": "2527", "attributes": { "weight": 1 } }, { "key": "21491", "source": "2285", "target": "2283", "attributes": { "weight": 2 } }, { "key": "21488", "source": "2285", "target": "2281", "attributes": { "weight": 2 } }, { "key": "21496", "source": "2285", "target": "1638", "attributes": { "weight": 3 } }, { "key": "21490", "source": "2285", "target": "1625", "attributes": { "weight": 3 } }, { "key": "21494", "source": "2285", "target": "1631", "attributes": { "weight": 2 } }, { "key": "21495", "source": "2285", "target": "178", "attributes": { "weight": 2 } }, { "key": "21487", "source": "2285", "target": "1616", "attributes": { "weight": 3 } }, { "key": "21493", "source": "2285", "target": "172", "attributes": { "weight": 3 } }, { "key": "22284", "source": "2286", "target": "794", "attributes": { "weight": 1 } }, { "key": "21573", "source": "2286", "target": "358", "attributes": { "weight": 1 } }, { "key": "31890", "source": "2286", "target": "359", "attributes": { "weight": 1 } }, { "key": "31889", "source": "2286", "target": "1045", "attributes": { "weight": 1 } }, { "key": "31891", "source": "2286", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31606", "source": "2287", "target": "595", "attributes": { "weight": 1 } }, { "key": "29853", "source": "2287", "target": "1024", "attributes": { "weight": 1 } }, { "key": "29854", "source": "2287", "target": "53", "attributes": { "weight": 1 } }, { "key": "22288", "source": "2287", "target": "794", "attributes": { "weight": 1 } }, { "key": "36913", "source": "2287", "target": "1137", "attributes": { "weight": 1 } }, { "key": "29428", "source": "2287", "target": "232", "attributes": { "weight": 1 } }, { "key": "35972", "source": "2287", "target": "497", "attributes": { "weight": 1 } }, { "key": "29028", "source": "2287", "target": "495", "attributes": { "weight": 2 } }, { "key": "21575", "source": "2287", "target": "358", "attributes": { "weight": 1 } }, { "key": "28630", "source": "2288", "target": "2115", "attributes": { "weight": 2 } }, { "key": "29717", "source": "2288", "target": "1253", "attributes": { "weight": 1 } }, { "key": "23895", "source": "2288", "target": "1763", "attributes": { "weight": 3 } }, { "key": "29719", "source": "2288", "target": "2465", "attributes": { "weight": 1 } }, { "key": "29716", "source": "2288", "target": "359", "attributes": { "weight": 1 } }, { "key": "21593", "source": "2288", "target": "358", "attributes": { "weight": 2 } }, { "key": "29718", "source": "2288", "target": "794", "attributes": { "weight": 1 } }, { "key": "29715", "source": "2288", "target": "421", "attributes": { "weight": 1 } }, { "key": "32581", "source": "2289", "target": "791", "attributes": { "weight": 1 } }, { "key": "30723", "source": "2289", "target": "889", "attributes": { "weight": 1 } }, { "key": "30474", "source": "2289", "target": "1046", "attributes": { "weight": 1 } }, { "key": "24539", "source": "2289", "target": "790", "attributes": { "weight": 2 } }, { "key": "24760", "source": "2289", "target": "1056", "attributes": { "weight": 2 } }, { "key": "21594", "source": "2289", "target": "358", "attributes": { "weight": 1 } }, { "key": "22683", "source": "2289", "target": "1037", "attributes": { "weight": 1 } }, { "key": "22304", "source": "2289", "target": "794", "attributes": { "weight": 1 } }, { "key": "27544", "source": "2289", "target": "1520", "attributes": { "weight": 1 } }, { "key": "21597", "source": "2290", "target": "1765", "attributes": { "weight": 3 } }, { "key": "31116", "source": "2290", "target": "339", "attributes": { "weight": 1 } }, { "key": "31117", "source": "2290", "target": "359", "attributes": { "weight": 1 } }, { "key": "24589", "source": "2291", "target": "1041", "attributes": { "weight": 1 } }, { "key": "22371", "source": "2291", "target": "794", "attributes": { "weight": 1 } }, { "key": "36981", "source": "2291", "target": "359", "attributes": { "weight": 1 } }, { "key": "21602", "source": "2291", "target": "358", "attributes": { "weight": 2 } }, { "key": "36982", "source": "2291", "target": "362", "attributes": { "weight": 1 } }, { "key": "30484", "source": "2291", "target": "1046", "attributes": { "weight": 1 } }, { "key": "21677", "source": "2292", "target": "1491", "attributes": { "weight": 1 } }, { "key": "21848", "source": "2293", "target": "1324", "attributes": { "weight": 1 } }, { "key": "21828", "source": "2293", "target": "915", "attributes": { "weight": 1 } }, { "key": "21829", "source": "2293", "target": "916", "attributes": { "weight": 1 } }, { "key": "21822", "source": "2293", "target": "1681", "attributes": { "weight": 1 } }, { "key": "21840", "source": "2293", "target": "2299", "attributes": { "weight": 1 } }, { "key": "21826", "source": "2293", "target": "1205", "attributes": { "weight": 1 } }, { "key": "21846", "source": "2293", "target": "1311", "attributes": { "weight": 1 } }, { "key": "21839", "source": "2293", "target": "1284", "attributes": { "weight": 1 } }, { "key": "21831", "source": "2293", "target": "1225", "attributes": { "weight": 1 } }, { "key": "21830", "source": "2293", "target": "1223", "attributes": { "weight": 1 } }, { "key": "21827", "source": "2293", "target": "1211", "attributes": { "weight": 1 } }, { "key": "21835", "source": "2293", "target": "337", "attributes": { "weight": 1 } }, { "key": "21845", "source": "2293", "target": "2304", "attributes": { "weight": 1 } }, { "key": "21847", "source": "2293", "target": "1563", "attributes": { "weight": 1 } }, { "key": "21832", "source": "2293", "target": "1686", "attributes": { "weight": 1 } }, { "key": "21844", "source": "2293", "target": "1303", "attributes": { "weight": 1 } }, { "key": "21841", "source": "2293", "target": "1295", "attributes": { "weight": 1 } }, { "key": "21825", "source": "2293", "target": "1203", "attributes": { "weight": 1 } }, { "key": "21849", "source": "2293", "target": "2307", "attributes": { "weight": 1 } }, { "key": "21833", "source": "2293", "target": "1234", "attributes": { "weight": 1 } }, { "key": "21820", "source": "2293", "target": "2021", "attributes": { "weight": 1 } }, { "key": "21838", "source": "2293", "target": "1690", "attributes": { "weight": 1 } }, { "key": "21836", "source": "2293", "target": "1271", "attributes": { "weight": 1 } }, { "key": "21823", "source": "2293", "target": "1181", "attributes": { "weight": 1 } }, { "key": "21821", "source": "2293", "target": "1680", "attributes": { "weight": 1 } }, { "key": "21834", "source": "2293", "target": "2037", "attributes": { "weight": 1 } }, { "key": "21824", "source": "2293", "target": "2032", "attributes": { "weight": 1 } }, { "key": "21837", "source": "2293", "target": "2044", "attributes": { "weight": 1 } }, { "key": "21843", "source": "2293", "target": "2303", "attributes": { "weight": 1 } }, { "key": "21819", "source": "2293", "target": "937", "attributes": { "weight": 1 } }, { "key": "21842", "source": "2293", "target": "1693", "attributes": { "weight": 1 } }, { "key": "21818", "source": "2293", "target": "1519", "attributes": { "weight": 1 } }, { "key": "21862", "source": "2294", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21875", "source": "2295", "target": "2212", "attributes": { "weight": 1 } }, { "key": "33929", "source": "2295", "target": "1232", "attributes": { "weight": 1 } }, { "key": "33930", "source": "2295", "target": "3152", "attributes": { "weight": 1 } }, { "key": "27204", "source": "2296", "target": "1232", "attributes": { "weight": 1 } }, { "key": "21929", "source": "2296", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21934", "source": "2297", "target": "2300", "attributes": { "weight": 1 } }, { "key": "28574", "source": "2297", "target": "1279", "attributes": { "weight": 1 } }, { "key": "21935", "source": "2297", "target": "2301", "attributes": { "weight": 1 } }, { "key": "28573", "source": "2297", "target": "199", "attributes": { "weight": 1 } }, { "key": "21936", "source": "2297", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21987", "source": "2298", "target": "2212", "attributes": { "weight": 1 } }, { "key": "21986", "source": "2298", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22015", "source": "2299", "target": "2293", "attributes": { "weight": 1 } }, { "key": "22028", "source": "2300", "target": "2297", "attributes": { "weight": 1 } }, { "key": "22037", "source": "2300", "target": "930", "attributes": { "weight": 1 } }, { "key": "22033", "source": "2300", "target": "1563", "attributes": { "weight": 1 } }, { "key": "22026", "source": "2300", "target": "915", "attributes": { "weight": 1 } }, { "key": "22038", "source": "2300", "target": "2308", "attributes": { "weight": 1 } }, { "key": "22032", "source": "2300", "target": "2304", "attributes": { "weight": 1 } }, { "key": "22027", "source": "2300", "target": "918", "attributes": { "weight": 1 } }, { "key": "22021", "source": "2300", "target": "1138", "attributes": { "weight": 1 } }, { "key": "22029", "source": "2300", "target": "1238", "attributes": { "weight": 1 } }, { "key": "22034", "source": "2300", "target": "1324", "attributes": { "weight": 1 } }, { "key": "22035", "source": "2300", "target": "3413", "attributes": { "weight": 1 } }, { "key": "22030", "source": "2300", "target": "920", "attributes": { "weight": 1 } }, { "key": "22024", "source": "2300", "target": "912", "attributes": { "weight": 1 } }, { "key": "22023", "source": "2300", "target": "1181", "attributes": { "weight": 1 } }, { "key": "22031", "source": "2300", "target": "1295", "attributes": { "weight": 1 } }, { "key": "22025", "source": "2300", "target": "1199", "attributes": { "weight": 1 } }, { "key": "22036", "source": "2300", "target": "1339", "attributes": { "weight": 1 } }, { "key": "22022", "source": "2300", "target": "1153", "attributes": { "weight": 1 } }, { "key": "22068", "source": "2301", "target": "1324", "attributes": { "weight": 1 } }, { "key": "22063", "source": "2301", "target": "1691", "attributes": { "weight": 1 } }, { "key": "22069", "source": "2301", "target": "1338", "attributes": { "weight": 1 } }, { "key": "22055", "source": "2301", "target": "917", "attributes": { "weight": 1 } }, { "key": "22052", "source": "2301", "target": "1211", "attributes": { "weight": 1 } }, { "key": "22067", "source": "2301", "target": "1563", "attributes": { "weight": 1 } }, { "key": "22058", "source": "2301", "target": "2297", "attributes": { "weight": 1 } }, { "key": "22045", "source": "2301", "target": "1153", "attributes": { "weight": 1 } }, { "key": "22056", "source": "2301", "target": "918", "attributes": { "weight": 1 } }, { "key": "22046", "source": "2301", "target": "1160", "attributes": { "weight": 1 } }, { "key": "22048", "source": "2301", "target": "1181", "attributes": { "weight": 1 } }, { "key": "22071", "source": "2301", "target": "1339", "attributes": { "weight": 1 } }, { "key": "22062", "source": "2301", "target": "1271", "attributes": { "weight": 1 } }, { "key": "22057", "source": "2301", "target": "1230", "attributes": { "weight": 1 } }, { "key": "22064", "source": "2301", "target": "1295", "attributes": { "weight": 1 } }, { "key": "22066", "source": "2301", "target": "927", "attributes": { "weight": 1 } }, { "key": "22053", "source": "2301", "target": "915", "attributes": { "weight": 1 } }, { "key": "22049", "source": "2301", "target": "1199", "attributes": { "weight": 1 } }, { "key": "22051", "source": "2301", "target": "1205", "attributes": { "weight": 1 } }, { "key": "22050", "source": "2301", "target": "1200", "attributes": { "weight": 1 } }, { "key": "22074", "source": "2301", "target": "2308", "attributes": { "weight": 1 } }, { "key": "22044", "source": "2301", "target": "1138", "attributes": { "weight": 1 } }, { "key": "22061", "source": "2301", "target": "923", "attributes": { "weight": 1 } }, { "key": "22065", "source": "2301", "target": "2304", "attributes": { "weight": 1 } }, { "key": "22054", "source": "2301", "target": "1225", "attributes": { "weight": 1 } }, { "key": "22059", "source": "2301", "target": "2298", "attributes": { "weight": 1 } }, { "key": "22070", "source": "2301", "target": "928", "attributes": { "weight": 1 } }, { "key": "22047", "source": "2301", "target": "910", "attributes": { "weight": 1 } }, { "key": "22073", "source": "2301", "target": "930", "attributes": { "weight": 1 } }, { "key": "22072", "source": "2301", "target": "1340", "attributes": { "weight": 1 } }, { "key": "22060", "source": "2301", "target": "920", "attributes": { "weight": 1 } }, { "key": "22077", "source": "2302", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22081", "source": "2303", "target": "1284", "attributes": { "weight": 1 } }, { "key": "22080", "source": "2303", "target": "338", "attributes": { "weight": 1 } }, { "key": "22079", "source": "2303", "target": "2293", "attributes": { "weight": 1 } }, { "key": "22087", "source": "2304", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22085", "source": "2304", "target": "337", "attributes": { "weight": 1 } }, { "key": "22084", "source": "2304", "target": "2293", "attributes": { "weight": 1 } }, { "key": "22088", "source": "2304", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22086", "source": "2304", "target": "2300", "attributes": { "weight": 1 } }, { "key": "22099", "source": "2305", "target": "337", "attributes": { "weight": 1 } }, { "key": "34797", "source": "2306", "target": "338", "attributes": { "weight": 1 } }, { "key": "22153", "source": "2306", "target": "337", "attributes": { "weight": 1 } }, { "key": "22154", "source": "2307", "target": "2293", "attributes": { "weight": 1 } }, { "key": "34803", "source": "2307", "target": "123", "attributes": { "weight": 1 } }, { "key": "22171", "source": "2308", "target": "2301", "attributes": { "weight": 1 } }, { "key": "22169", "source": "2308", "target": "1279", "attributes": { "weight": 1 } }, { "key": "22172", "source": "2308", "target": "2212", "attributes": { "weight": 1 } }, { "key": "22170", "source": "2308", "target": "2300", "attributes": { "weight": 1 } }, { "key": "22175", "source": "2309", "target": "262", "attributes": { "weight": 1 } }, { "key": "23397", "source": "2309", "target": "259", "attributes": { "weight": 1 } }, { "key": "22176", "source": "2309", "target": "290", "attributes": { "weight": 1 } }, { "key": "23420", "source": "2310", "target": "277", "attributes": { "weight": 1 } }, { "key": "23419", "source": "2310", "target": "259", "attributes": { "weight": 1 } }, { "key": "23421", "source": "2310", "target": "304", "attributes": { "weight": 1 } }, { "key": "22208", "source": "2310", "target": "262", "attributes": { "weight": 1 } }, { "key": "23272", "source": "2310", "target": "305", "attributes": { "weight": 1 } }, { "key": "22209", "source": "2310", "target": "268", "attributes": { "weight": 1 } }, { "key": "22248", "source": "2311", "target": "301", "attributes": { "weight": 1 } }, { "key": "22247", "source": "2311", "target": "289", "attributes": { "weight": 1 } }, { "key": "22249", "source": "2311", "target": "336", "attributes": { "weight": 1 } }, { "key": "37094", "source": "2312", "target": "1060", "attributes": { "weight": 1 } }, { "key": "24746", "source": "2312", "target": "1056", "attributes": { "weight": 1 } }, { "key": "37093", "source": "2312", "target": "359", "attributes": { "weight": 1 } }, { "key": "27392", "source": "2312", "target": "339", "attributes": { "weight": 2 } }, { "key": "22262", "source": "2312", "target": "794", "attributes": { "weight": 1 } }, { "key": "22286", "source": "2313", "target": "794", "attributes": { "weight": 1 } }, { "key": "27402", "source": "2313", "target": "339", "attributes": { "weight": 2 } }, { "key": "24749", "source": "2313", "target": "1056", "attributes": { "weight": 3 } }, { "key": "37097", "source": "2313", "target": "1060", "attributes": { "weight": 1 } }, { "key": "27403", "source": "2313", "target": "359", "attributes": { "weight": 2 } }, { "key": "31892", "source": "2314", "target": "359", "attributes": { "weight": 1 } }, { "key": "31893", "source": "2314", "target": "1060", "attributes": { "weight": 1 } }, { "key": "22287", "source": "2314", "target": "794", "attributes": { "weight": 1 } }, { "key": "22378", "source": "2315", "target": "567", "attributes": { "weight": 3 } }, { "key": "25234", "source": "2315", "target": "2574", "attributes": { "weight": 1 } }, { "key": "25231", "source": "2315", "target": "2565", "attributes": { "weight": 1 } }, { "key": "24385", "source": "2315", "target": "2497", "attributes": { "weight": 1 } }, { "key": "25235", "source": "2315", "target": "2336", "attributes": { "weight": 1 } }, { "key": "25232", "source": "2315", "target": "2494", "attributes": { "weight": 1 } }, { "key": "22380", "source": "2315", "target": "1640", "attributes": { "weight": 3 } }, { "key": "22379", "source": "2315", "target": "1637", "attributes": { "weight": 2 } }, { "key": "25233", "source": "2315", "target": "2330", "attributes": { "weight": 1 } }, { "key": "22381", "source": "2316", "target": "567", "attributes": { "weight": 4 } }, { "key": "25238", "source": "2316", "target": "1624", "attributes": { "weight": 1 } }, { "key": "25240", "source": "2316", "target": "1636", "attributes": { "weight": 1 } }, { "key": "25236", "source": "2316", "target": "1617", "attributes": { "weight": 1 } }, { "key": "25237", "source": "2316", "target": "1618", "attributes": { "weight": 2 } }, { "key": "24386", "source": "2316", "target": "2496", "attributes": { "weight": 1 } }, { "key": "22382", "source": "2316", "target": "1637", "attributes": { "weight": 4 } }, { "key": "22386", "source": "2317", "target": "1618", "attributes": { "weight": 3 } }, { "key": "22387", "source": "2318", "target": "2322", "attributes": { "weight": 2 } }, { "key": "22388", "source": "2318", "target": "1640", "attributes": { "weight": 2 } }, { "key": "25245", "source": "2319", "target": "2281", "attributes": { "weight": 1 } }, { "key": "22390", "source": "2319", "target": "567", "attributes": { "weight": 4 } }, { "key": "22391", "source": "2320", "target": "572", "attributes": { "weight": 2 } }, { "key": "22392", "source": "2320", "target": "1628", "attributes": { "weight": 1 } }, { "key": "25268", "source": "2321", "target": "2281", "attributes": { "weight": 2 } }, { "key": "22444", "source": "2321", "target": "567", "attributes": { "weight": 4 } }, { "key": "25269", "source": "2322", "target": "2574", "attributes": { "weight": 1 } }, { "key": "22446", "source": "2322", "target": "567", "attributes": { "weight": 2 } }, { "key": "22448", "source": "2322", "target": "2330", "attributes": { "weight": 2 } }, { "key": "22450", "source": "2322", "target": "1640", "attributes": { "weight": 3 } }, { "key": "24389", "source": "2322", "target": "2498", "attributes": { "weight": 1 } }, { "key": "24388", "source": "2322", "target": "2495", "attributes": { "weight": 1 } }, { "key": "22449", "source": "2322", "target": "2337", "attributes": { "weight": 2 } }, { "key": "22445", "source": "2322", "target": "2318", "attributes": { "weight": 2 } }, { "key": "22447", "source": "2322", "target": "2329", "attributes": { "weight": 3 } }, { "key": "22473", "source": "2323", "target": "2326", "attributes": { "weight": 2 } }, { "key": "22474", "source": "2323", "target": "2327", "attributes": { "weight": 2 } }, { "key": "22475", "source": "2324", "target": "1640", "attributes": { "weight": 3 } }, { "key": "25277", "source": "2324", "target": "2328", "attributes": { "weight": 1 } }, { "key": "22488", "source": "2325", "target": "1640", "attributes": { "weight": 3 } }, { "key": "25287", "source": "2325", "target": "567", "attributes": { "weight": 1 } }, { "key": "25292", "source": "2326", "target": "1637", "attributes": { "weight": 3 } }, { "key": "22492", "source": "2326", "target": "2323", "attributes": { "weight": 2 } }, { "key": "22491", "source": "2326", "target": "572", "attributes": { "weight": 2 } }, { "key": "22494", "source": "2326", "target": "2340", "attributes": { "weight": 1 } }, { "key": "25291", "source": "2326", "target": "2572", "attributes": { "weight": 1 } }, { "key": "22493", "source": "2326", "target": "1628", "attributes": { "weight": 1 } }, { "key": "22496", "source": "2327", "target": "2323", "attributes": { "weight": 2 } }, { "key": "22495", "source": "2327", "target": "572", "attributes": { "weight": 2 } }, { "key": "25300", "source": "2328", "target": "1637", "attributes": { "weight": 3 } }, { "key": "22504", "source": "2328", "target": "1618", "attributes": { "weight": 2 } }, { "key": "22508", "source": "2328", "target": "1640", "attributes": { "weight": 2 } }, { "key": "22505", "source": "2328", "target": "567", "attributes": { "weight": 3 } }, { "key": "22506", "source": "2328", "target": "178", "attributes": { "weight": 3 } }, { "key": "25296", "source": "2328", "target": "2566", "attributes": { "weight": 1 } }, { "key": "22507", "source": "2328", "target": "2343", "attributes": { "weight": 3 } }, { "key": "25298", "source": "2328", "target": "2573", "attributes": { "weight": 1 } }, { "key": "25295", "source": "2328", "target": "2324", "attributes": { "weight": 1 } }, { "key": "25297", "source": "2328", "target": "2571", "attributes": { "weight": 1 } }, { "key": "25299", "source": "2328", "target": "2336", "attributes": { "weight": 1 } }, { "key": "22511", "source": "2329", "target": "2322", "attributes": { "weight": 3 } }, { "key": "25302", "source": "2330", "target": "2315", "attributes": { "weight": 1 } }, { "key": "22512", "source": "2330", "target": "2322", "attributes": { "weight": 2 } }, { "key": "25303", "source": "2330", "target": "2565", "attributes": { "weight": 1 } }, { "key": "22513", "source": "2330", "target": "2336", "attributes": { "weight": 2 } }, { "key": "31203", "source": "2330", "target": "1640", "attributes": { "weight": 1 } }, { "key": "25304", "source": "2331", "target": "572", "attributes": { "weight": 1 } }, { "key": "22514", "source": "2331", "target": "567", "attributes": { "weight": 2 } }, { "key": "25314", "source": "2332", "target": "2281", "attributes": { "weight": 1 } }, { "key": "25315", "source": "2332", "target": "2338", "attributes": { "weight": 1 } }, { "key": "22520", "source": "2332", "target": "567", "attributes": { "weight": 4 } }, { "key": "31204", "source": "2332", "target": "1632", "attributes": { "weight": 1 } }, { "key": "22523", "source": "2333", "target": "567", "attributes": { "weight": 2 } }, { "key": "25319", "source": "2333", "target": "1637", "attributes": { "weight": 1 } }, { "key": "25323", "source": "2334", "target": "1637", "attributes": { "weight": 1 } }, { "key": "25322", "source": "2334", "target": "1618", "attributes": { "weight": 2 } }, { "key": "22527", "source": "2334", "target": "567", "attributes": { "weight": 2 } }, { "key": "22528", "source": "2334", "target": "1640", "attributes": { "weight": 3 } }, { "key": "24403", "source": "2335", "target": "2493", "attributes": { "weight": 1 } }, { "key": "25324", "source": "2335", "target": "2281", "attributes": { "weight": 1 } }, { "key": "22529", "source": "2335", "target": "567", "attributes": { "weight": 3 } }, { "key": "27654", "source": "2335", "target": "1626", "attributes": { "weight": 1 } }, { "key": "25329", "source": "2336", "target": "2565", "attributes": { "weight": 1 } }, { "key": "25327", "source": "2336", "target": "2315", "attributes": { "weight": 1 } }, { "key": "22546", "source": "2336", "target": "2330", "attributes": { "weight": 2 } }, { "key": "22547", "source": "2336", "target": "1640", "attributes": { "weight": 2 } }, { "key": "25328", "source": "2336", "target": "2564", "attributes": { "weight": 1 } }, { "key": "25330", "source": "2336", "target": "2328", "attributes": { "weight": 1 } }, { "key": "22564", "source": "2337", "target": "2322", "attributes": { "weight": 2 } }, { "key": "31206", "source": "2337", "target": "1640", "attributes": { "weight": 1 } }, { "key": "22565", "source": "2337", "target": "572", "attributes": { "weight": 1 } }, { "key": "22566", "source": "2338", "target": "567", "attributes": { "weight": 3 } }, { "key": "25340", "source": "2338", "target": "2332", "attributes": { "weight": 1 } }, { "key": "22567", "source": "2339", "target": "2281", "attributes": { "weight": 2 } }, { "key": "22568", "source": "2339", "target": "567", "attributes": { "weight": 3 } }, { "key": "22570", "source": "2340", "target": "2326", "attributes": { "weight": 1 } }, { "key": "22569", "source": "2340", "target": "572", "attributes": { "weight": 2 } }, { "key": "22571", "source": "2341", "target": "567", "attributes": { "weight": 3 } }, { "key": "25343", "source": "2342", "target": "1640", "attributes": { "weight": 1 } }, { "key": "25341", "source": "2342", "target": "567", "attributes": { "weight": 1 } }, { "key": "27663", "source": "2342", "target": "1639", "attributes": { "weight": 1 } }, { "key": "22572", "source": "2342", "target": "1618", "attributes": { "weight": 3 } }, { "key": "25342", "source": "2342", "target": "1637", "attributes": { "weight": 1 } }, { "key": "22575", "source": "2343", "target": "1640", "attributes": { "weight": 3 } }, { "key": "22574", "source": "2343", "target": "2328", "attributes": { "weight": 3 } }, { "key": "22573", "source": "2343", "target": "567", "attributes": { "weight": 2 } }, { "key": "23227", "source": "2344", "target": "707", "attributes": { "weight": 3 } }, { "key": "22606", "source": "2344", "target": "180", "attributes": { "weight": 1 } }, { "key": "28426", "source": "2344", "target": "1191", "attributes": { "weight": 1 } }, { "key": "25025", "source": "2345", "target": "707", "attributes": { "weight": 2 } }, { "key": "25027", "source": "2345", "target": "305", "attributes": { "weight": 2 } }, { "key": "28434", "source": "2345", "target": "579", "attributes": { "weight": 1 } }, { "key": "28435", "source": "2345", "target": "1512", "attributes": { "weight": 1 } }, { "key": "27755", "source": "2345", "target": "170", "attributes": { "weight": 1 } }, { "key": "25026", "source": "2345", "target": "1240", "attributes": { "weight": 2 } }, { "key": "28433", "source": "2345", "target": "278", "attributes": { "weight": 2 } }, { "key": "22697", "source": "2345", "target": "580", "attributes": { "weight": 1 } }, { "key": "22714", "source": "2348", "target": "2374", "attributes": { "weight": 1 } }, { "key": "22717", "source": "2349", "target": "2356", "attributes": { "weight": 1 } }, { "key": "22716", "source": "2349", "target": "2354", "attributes": { "weight": 1 } }, { "key": "22718", "source": "2349", "target": "2357", "attributes": { "weight": 1 } }, { "key": "22722", "source": "2349", "target": "2382", "attributes": { "weight": 1 } }, { "key": "22720", "source": "2349", "target": "1738", "attributes": { "weight": 1 } }, { "key": "22719", "source": "2349", "target": "2362", "attributes": { "weight": 1 } }, { "key": "22723", "source": "2349", "target": "2389", "attributes": { "weight": 1 } }, { "key": "28714", "source": "2349", "target": "2789", "attributes": { "weight": 1 } }, { "key": "22733", "source": "2354", "target": "2361", "attributes": { "weight": 1 } }, { "key": "22732", "source": "2354", "target": "2355", "attributes": { "weight": 1 } }, { "key": "22731", "source": "2354", "target": "2349", "attributes": { "weight": 1 } }, { "key": "22734", "source": "2354", "target": "2365", "attributes": { "weight": 1 } }, { "key": "22735", "source": "2354", "target": "2382", "attributes": { "weight": 1 } }, { "key": "22738", "source": "2355", "target": "2382", "attributes": { "weight": 1 } }, { "key": "22736", "source": "2355", "target": "2354", "attributes": { "weight": 1 } }, { "key": "22737", "source": "2355", "target": "2357", "attributes": { "weight": 1 } }, { "key": "22739", "source": "2356", "target": "2349", "attributes": { "weight": 1 } }, { "key": "22740", "source": "2356", "target": "2389", "attributes": { "weight": 1 } }, { "key": "22743", "source": "2357", "target": "2382", "attributes": { "weight": 1 } }, { "key": "22742", "source": "2357", "target": "2355", "attributes": { "weight": 1 } }, { "key": "22741", "source": "2357", "target": "2349", "attributes": { "weight": 1 } }, { "key": "22747", "source": "2358", "target": "2375", "attributes": { "weight": 1 } }, { "key": "22744", "source": "2358", "target": "2359", "attributes": { "weight": 1 } }, { "key": "22750", "source": "2358", "target": "2389", "attributes": { "weight": 1 } }, { "key": "22746", "source": "2358", "target": "2370", "attributes": { "weight": 1 } }, { "key": "22745", "source": "2358", "target": "2360", "attributes": { "weight": 1 } }, { "key": "22752", "source": "2359", "target": "2370", "attributes": { "weight": 1 } }, { "key": "22751", "source": "2359", "target": "2358", "attributes": { "weight": 1 } }, { "key": "22757", "source": "2360", "target": "2389", "attributes": { "weight": 1 } }, { "key": "22755", "source": "2360", "target": "2358", "attributes": { "weight": 1 } }, { "key": "22758", "source": "2361", "target": "2354", "attributes": { "weight": 1 } }, { "key": "22759", "source": "2361", "target": "2390", "attributes": { "weight": 1 } }, { "key": "22761", "source": "2362", "target": "2382", "attributes": { "weight": 1 } }, { "key": "22760", "source": "2362", "target": "2349", "attributes": { "weight": 1 } }, { "key": "22770", "source": "2365", "target": "2371", "attributes": { "weight": 1 } }, { "key": "22767", "source": "2365", "target": "2354", "attributes": { "weight": 1 } }, { "key": "22785", "source": "2370", "target": "2359", "attributes": { "weight": 1 } }, { "key": "22784", "source": "2370", "target": "2358", "attributes": { "weight": 1 } }, { "key": "22786", "source": "2371", "target": "2365", "attributes": { "weight": 1 } }, { "key": "22788", "source": "2371", "target": "2386", "attributes": { "weight": 1 } }, { "key": "22792", "source": "2374", "target": "2348", "attributes": { "weight": 1 } }, { "key": "22804", "source": "2382", "target": "2354", "attributes": { "weight": 1 } }, { "key": "22802", "source": "2382", "target": "674", "attributes": { "weight": 1 } }, { "key": "22807", "source": "2382", "target": "2362", "attributes": { "weight": 1 } }, { "key": "22809", "source": "2382", "target": "2389", "attributes": { "weight": 1 } }, { "key": "22805", "source": "2382", "target": "2355", "attributes": { "weight": 1 } }, { "key": "22803", "source": "2382", "target": "2349", "attributes": { "weight": 1 } }, { "key": "22806", "source": "2382", "target": "2357", "attributes": { "weight": 1 } }, { "key": "22813", "source": "2386", "target": "2371", "attributes": { "weight": 1 } }, { "key": "22818", "source": "2389", "target": "2349", "attributes": { "weight": 1 } }, { "key": "22820", "source": "2389", "target": "2358", "attributes": { "weight": 1 } }, { "key": "22822", "source": "2389", "target": "2382", "attributes": { "weight": 1 } }, { "key": "22821", "source": "2389", "target": "2360", "attributes": { "weight": 1 } }, { "key": "22819", "source": "2389", "target": "2356", "attributes": { "weight": 1 } }, { "key": "22825", "source": "2390", "target": "2361", "attributes": { "weight": 1 } }, { "key": "22847", "source": "2393", "target": "432", "attributes": { "weight": 1 } }, { "key": "22866", "source": "2394", "target": "1564", "attributes": { "weight": 1 } }, { "key": "22865", "source": "2394", "target": "1359", "attributes": { "weight": 1 } }, { "key": "22887", "source": "2395", "target": "319", "attributes": { "weight": 1 } }, { "key": "24780", "source": "2396", "target": "304", "attributes": { "weight": 1 } }, { "key": "22915", "source": "2396", "target": "275", "attributes": { "weight": 1 } }, { "key": "22962", "source": "2397", "target": "291", "attributes": { "weight": 3 } }, { "key": "22963", "source": "2397", "target": "326", "attributes": { "weight": 1 } }, { "key": "25977", "source": "2397", "target": "2622", "attributes": { "weight": 2 } }, { "key": "25980", "source": "2398", "target": "2622", "attributes": { "weight": 2 } }, { "key": "25979", "source": "2398", "target": "280", "attributes": { "weight": 2 } }, { "key": "22966", "source": "2398", "target": "326", "attributes": { "weight": 1 } }, { "key": "22965", "source": "2398", "target": "291", "attributes": { "weight": 1 } }, { "key": "23079", "source": "2399", "target": "291", "attributes": { "weight": 1 } }, { "key": "23080", "source": "2399", "target": "326", "attributes": { "weight": 2 } }, { "key": "23091", "source": "2400", "target": "2401", "attributes": { "weight": 1 } }, { "key": "23102", "source": "2401", "target": "2400", "attributes": { "weight": 1 } }, { "key": "23103", "source": "2401", "target": "2404", "attributes": { "weight": 1 } }, { "key": "23104", "source": "2401", "target": "2411", "attributes": { "weight": 1 } }, { "key": "23105", "source": "2402", "target": "1678", "attributes": { "weight": 1 } }, { "key": "23107", "source": "2403", "target": "1678", "attributes": { "weight": 1 } }, { "key": "23108", "source": "2404", "target": "2401", "attributes": { "weight": 1 } }, { "key": "23112", "source": "2408", "target": "1682", "attributes": { "weight": 1 } }, { "key": "23114", "source": "2410", "target": "1678", "attributes": { "weight": 1 } }, { "key": "23115", "source": "2411", "target": "2401", "attributes": { "weight": 1 } }, { "key": "23116", "source": "2412", "target": "1682", "attributes": { "weight": 1 } }, { "key": "23117", "source": "2413", "target": "1682", "attributes": { "weight": 1 } }, { "key": "23119", "source": "2415", "target": "1678", "attributes": { "weight": 1 } }, { "key": "23121", "source": "2417", "target": "2402", "attributes": { "weight": 1 } }, { "key": "23125", "source": "2418", "target": "2423", "attributes": { "weight": 2 } }, { "key": "23124", "source": "2418", "target": "2419", "attributes": { "weight": 1 } }, { "key": "23126", "source": "2419", "target": "2423", "attributes": { "weight": 1 } }, { "key": "23127", "source": "2420", "target": "2423", "attributes": { "weight": 1 } }, { "key": "23128", "source": "2421", "target": "2423", "attributes": { "weight": 1 } }, { "key": "23129", "source": "2422", "target": "2423", "attributes": { "weight": 1 } }, { "key": "28831", "source": "2423", "target": "338", "attributes": { "weight": 2 } }, { "key": "23136", "source": "2423", "target": "1299", "attributes": { "weight": 2 } }, { "key": "23133", "source": "2423", "target": "2420", "attributes": { "weight": 1 } }, { "key": "23135", "source": "2423", "target": "2422", "attributes": { "weight": 1 } }, { "key": "28830", "source": "2423", "target": "1146", "attributes": { "weight": 3 } }, { "key": "23134", "source": "2423", "target": "2421", "attributes": { "weight": 1 } }, { "key": "28832", "source": "2423", "target": "310", "attributes": { "weight": 1 } }, { "key": "23131", "source": "2423", "target": "2418", "attributes": { "weight": 2 } }, { "key": "23132", "source": "2423", "target": "2419", "attributes": { "weight": 1 } }, { "key": "23141", "source": "2424", "target": "1099", "attributes": { "weight": 1 } }, { "key": "26196", "source": "2424", "target": "601", "attributes": { "weight": 1 } }, { "key": "23139", "source": "2424", "target": "598", "attributes": { "weight": 1 } }, { "key": "23140", "source": "2424", "target": "600", "attributes": { "weight": 2 } }, { "key": "23142", "source": "2425", "target": "1297", "attributes": { "weight": 2 } }, { "key": "26198", "source": "2425", "target": "601", "attributes": { "weight": 1 } }, { "key": "23143", "source": "2425", "target": "2429", "attributes": { "weight": 1 } }, { "key": "23150", "source": "2426", "target": "601", "attributes": { "weight": 2 } }, { "key": "23147", "source": "2426", "target": "598", "attributes": { "weight": 1 } }, { "key": "23149", "source": "2426", "target": "2428", "attributes": { "weight": 2 } }, { "key": "23148", "source": "2426", "target": "2427", "attributes": { "weight": 1 } }, { "key": "23151", "source": "2427", "target": "2426", "attributes": { "weight": 1 } }, { "key": "23153", "source": "2427", "target": "601", "attributes": { "weight": 2 } }, { "key": "23152", "source": "2427", "target": "2428", "attributes": { "weight": 1 } }, { "key": "23161", "source": "2428", "target": "601", "attributes": { "weight": 2 } }, { "key": "23159", "source": "2428", "target": "2426", "attributes": { "weight": 2 } }, { "key": "23158", "source": "2428", "target": "598", "attributes": { "weight": 2 } }, { "key": "23160", "source": "2428", "target": "2427", "attributes": { "weight": 1 } }, { "key": "26250", "source": "2429", "target": "881", "attributes": { "weight": 1 } }, { "key": "24895", "source": "2429", "target": "601", "attributes": { "weight": 2 } }, { "key": "23166", "source": "2429", "target": "1297", "attributes": { "weight": 3 } }, { "key": "23165", "source": "2429", "target": "2425", "attributes": { "weight": 1 } }, { "key": "26276", "source": "2430", "target": "601", "attributes": { "weight": 1 } }, { "key": "23174", "source": "2430", "target": "599", "attributes": { "weight": 1 } }, { "key": "23176", "source": "2431", "target": "601", "attributes": { "weight": 2 } }, { "key": "23175", "source": "2431", "target": "599", "attributes": { "weight": 1 } }, { "key": "23178", "source": "2432", "target": "1133", "attributes": { "weight": 1 } }, { "key": "34450", "source": "2433", "target": "338", "attributes": { "weight": 1 } }, { "key": "23195", "source": "2433", "target": "1285", "attributes": { "weight": 1 } }, { "key": "23194", "source": "2433", "target": "1227", "attributes": { "weight": 2 } }, { "key": "28220", "source": "2434", "target": "1285", "attributes": { "weight": 1 } }, { "key": "28219", "source": "2434", "target": "2435", "attributes": { "weight": 1 } }, { "key": "23202", "source": "2434", "target": "1227", "attributes": { "weight": 2 } }, { "key": "23203", "source": "2435", "target": "1227", "attributes": { "weight": 2 } }, { "key": "28221", "source": "2435", "target": "1285", "attributes": { "weight": 1 } }, { "key": "23208", "source": "2436", "target": "1227", "attributes": { "weight": 1 } }, { "key": "23228", "source": "2437", "target": "707", "attributes": { "weight": 3 } }, { "key": "28430", "source": "2437", "target": "579", "attributes": { "weight": 1 } }, { "key": "25022", "source": "2437", "target": "1191", "attributes": { "weight": 2 } }, { "key": "23229", "source": "2438", "target": "707", "attributes": { "weight": 3 } }, { "key": "23261", "source": "2441", "target": "1772", "attributes": { "weight": 1 } }, { "key": "23279", "source": "2442", "target": "839", "attributes": { "weight": 1 } }, { "key": "23298", "source": "2443", "target": "305", "attributes": { "weight": 1 } }, { "key": "23364", "source": "2444", "target": "1545", "attributes": { "weight": 1 } }, { "key": "23379", "source": "2445", "target": "1118", "attributes": { "weight": 1 } }, { "key": "23380", "source": "2445", "target": "2446", "attributes": { "weight": 1 } }, { "key": "23391", "source": "2446", "target": "1741", "attributes": { "weight": 1 } }, { "key": "23390", "source": "2446", "target": "2445", "attributes": { "weight": 1 } }, { "key": "23392", "source": "2447", "target": "1752", "attributes": { "weight": 1 } }, { "key": "32241", "source": "2447", "target": "1733", "attributes": { "weight": 1 } }, { "key": "31343", "source": "2447", "target": "59", "attributes": { "weight": 1 } }, { "key": "23423", "source": "2448", "target": "304", "attributes": { "weight": 1 } }, { "key": "23422", "source": "2448", "target": "262", "attributes": { "weight": 1 } }, { "key": "25970", "source": "2448", "target": "2622", "attributes": { "weight": 2 } }, { "key": "27948", "source": "2448", "target": "326", "attributes": { "weight": 1 } }, { "key": "23494", "source": "2449", "target": "304", "attributes": { "weight": 1 } }, { "key": "23493", "source": "2449", "target": "299", "attributes": { "weight": 1 } }, { "key": "23495", "source": "2449", "target": "305", "attributes": { "weight": 1 } }, { "key": "23490", "source": "2449", "target": "259", "attributes": { "weight": 1 } }, { "key": "23492", "source": "2449", "target": "167", "attributes": { "weight": 1 } }, { "key": "23496", "source": "2449", "target": "307", "attributes": { "weight": 1 } }, { "key": "23491", "source": "2449", "target": "268", "attributes": { "weight": 1 } }, { "key": "32933", "source": "2450", "target": "470", "attributes": { "weight": 2 } }, { "key": "23688", "source": "2450", "target": "220", "attributes": { "weight": 2 } }, { "key": "32842", "source": "2450", "target": "135", "attributes": { "weight": 2 } }, { "key": "37021", "source": "2450", "target": "224", "attributes": { "weight": 1 } }, { "key": "35553", "source": "2450", "target": "2644", "attributes": { "weight": 1 } }, { "key": "37024", "source": "2450", "target": "189", "attributes": { "weight": 1 } }, { "key": "35556", "source": "2450", "target": "3114", "attributes": { "weight": 1 } }, { "key": "26374", "source": "2450", "target": "1258", "attributes": { "weight": 1 } }, { "key": "35555", "source": "2450", "target": "3213", "attributes": { "weight": 1 } }, { "key": "37022", "source": "2450", "target": "454", "attributes": { "weight": 1 } }, { "key": "31138", "source": "2450", "target": "442", "attributes": { "weight": 2 } }, { "key": "37025", "source": "2450", "target": "490", "attributes": { "weight": 1 } }, { "key": "35554", "source": "2450", "target": "1710", "attributes": { "weight": 1 } }, { "key": "32843", "source": "2450", "target": "472", "attributes": { "weight": 2 } }, { "key": "37023", "source": "2450", "target": "455", "attributes": { "weight": 1 } }, { "key": "23711", "source": "2451", "target": "624", "attributes": { "weight": 1 } }, { "key": "23710", "source": "2451", "target": "614", "attributes": { "weight": 1 } }, { "key": "23714", "source": "2452", "target": "378", "attributes": { "weight": 1 } }, { "key": "23715", "source": "2452", "target": "2453", "attributes": { "weight": 1 } }, { "key": "23717", "source": "2453", "target": "624", "attributes": { "weight": 1 } }, { "key": "23718", "source": "2453", "target": "2452", "attributes": { "weight": 1 } }, { "key": "23734", "source": "2454", "target": "8", "attributes": { "weight": 1 } }, { "key": "23733", "source": "2454", "target": "3", "attributes": { "weight": 1 } }, { "key": "23735", "source": "2454", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23850", "source": "2455", "target": "3", "attributes": { "weight": 1 } }, { "key": "23851", "source": "2455", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23856", "source": "2456", "target": "8", "attributes": { "weight": 2 } }, { "key": "23854", "source": "2456", "target": "241", "attributes": { "weight": 1 } }, { "key": "23855", "source": "2456", "target": "3", "attributes": { "weight": 2 } }, { "key": "23858", "source": "2456", "target": "828", "attributes": { "weight": 1 } }, { "key": "23857", "source": "2456", "target": "1774", "attributes": { "weight": 1 } }, { "key": "23863", "source": "2458", "target": "2461", "attributes": { "weight": 1 } }, { "key": "23864", "source": "2459", "target": "2461", "attributes": { "weight": 1 } }, { "key": "31816", "source": "2461", "target": "595", "attributes": { "weight": 1 } }, { "key": "23872", "source": "2461", "target": "1191", "attributes": { "weight": 1 } }, { "key": "23874", "source": "2461", "target": "2459", "attributes": { "weight": 1 } }, { "key": "23873", "source": "2461", "target": "2458", "attributes": { "weight": 1 } }, { "key": "29224", "source": "2461", "target": "278", "attributes": { "weight": 2 } }, { "key": "23876", "source": "2461", "target": "580", "attributes": { "weight": 1 } }, { "key": "30956", "source": "2461", "target": "1965", "attributes": { "weight": 2 } }, { "key": "30957", "source": "2461", "target": "1967", "attributes": { "weight": 2 } }, { "key": "23875", "source": "2461", "target": "277", "attributes": { "weight": 2 } }, { "key": "35045", "source": "2461", "target": "3", "attributes": { "weight": 1 } }, { "key": "23878", "source": "2462", "target": "128", "attributes": { "weight": 2 } }, { "key": "29606", "source": "2463", "target": "421", "attributes": { "weight": 1 } }, { "key": "23881", "source": "2463", "target": "1253", "attributes": { "weight": 2 } }, { "key": "23880", "source": "2463", "target": "1763", "attributes": { "weight": 2 } }, { "key": "23894", "source": "2464", "target": "1763", "attributes": { "weight": 2 } }, { "key": "23897", "source": "2465", "target": "421", "attributes": { "weight": 3 } }, { "key": "29764", "source": "2465", "target": "794", "attributes": { "weight": 1 } }, { "key": "29762", "source": "2465", "target": "2288", "attributes": { "weight": 1 } }, { "key": "23898", "source": "2465", "target": "1763", "attributes": { "weight": 3 } }, { "key": "29761", "source": "2465", "target": "1801", "attributes": { "weight": 1 } }, { "key": "29763", "source": "2465", "target": "2890", "attributes": { "weight": 1 } }, { "key": "23899", "source": "2465", "target": "1253", "attributes": { "weight": 3 } }, { "key": "29765", "source": "2465", "target": "2892", "attributes": { "weight": 1 } }, { "key": "24043", "source": "2466", "target": "471", "attributes": { "weight": 1 } }, { "key": "24042", "source": "2466", "target": "130", "attributes": { "weight": 2 } }, { "key": "24070", "source": "2467", "target": "231", "attributes": { "weight": 1 } }, { "key": "24084", "source": "2468", "target": "130", "attributes": { "weight": 1 } }, { "key": "24163", "source": "2469", "target": "471", "attributes": { "weight": 1 } }, { "key": "24161", "source": "2469", "target": "1810", "attributes": { "weight": 1 } }, { "key": "24160", "source": "2469", "target": "429", "attributes": { "weight": 2 } }, { "key": "24162", "source": "2469", "target": "1364", "attributes": { "weight": 1 } }, { "key": "24202", "source": "2470", "target": "1374", "attributes": { "weight": 2 } }, { "key": "24200", "source": "2470", "target": "471", "attributes": { "weight": 2 } }, { "key": "35212", "source": "2470", "target": "56", "attributes": { "weight": 1 } }, { "key": "33629", "source": "2470", "target": "489", "attributes": { "weight": 1 } }, { "key": "24198", "source": "2470", "target": "130", "attributes": { "weight": 2 } }, { "key": "24203", "source": "2470", "target": "1375", "attributes": { "weight": 2 } }, { "key": "24201", "source": "2470", "target": "231", "attributes": { "weight": 2 } }, { "key": "24197", "source": "2470", "target": "429", "attributes": { "weight": 2 } }, { "key": "24199", "source": "2470", "target": "442", "attributes": { "weight": 2 } }, { "key": "35211", "source": "2470", "target": "1353", "attributes": { "weight": 1 } }, { "key": "24218", "source": "2471", "target": "130", "attributes": { "weight": 1 } }, { "key": "24219", "source": "2472", "target": "471", "attributes": { "weight": 1 } }, { "key": "24228", "source": "2473", "target": "130", "attributes": { "weight": 1 } }, { "key": "24275", "source": "2474", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24279", "source": "2476", "target": "2479", "attributes": { "weight": 1 } }, { "key": "24283", "source": "2477", "target": "2490", "attributes": { "weight": 1 } }, { "key": "24280", "source": "2477", "target": "2479", "attributes": { "weight": 1 } }, { "key": "24281", "source": "2477", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24282", "source": "2477", "target": "2485", "attributes": { "weight": 1 } }, { "key": "24284", "source": "2478", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24285", "source": "2478", "target": "2490", "attributes": { "weight": 1 } }, { "key": "24289", "source": "2479", "target": "2483", "attributes": { "weight": 1 } }, { "key": "24286", "source": "2479", "target": "2476", "attributes": { "weight": 1 } }, { "key": "24288", "source": "2479", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24287", "source": "2479", "target": "2477", "attributes": { "weight": 1 } }, { "key": "24311", "source": "2480", "target": "2486", "attributes": { "weight": 1 } }, { "key": "24309", "source": "2480", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24310", "source": "2480", "target": "2484", "attributes": { "weight": 1 } }, { "key": "24314", "source": "2482", "target": "2483", "attributes": { "weight": 1 } }, { "key": "24313", "source": "2482", "target": "2479", "attributes": { "weight": 1 } }, { "key": "24318", "source": "2483", "target": "2482", "attributes": { "weight": 1 } }, { "key": "24317", "source": "2483", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24316", "source": "2483", "target": "2479", "attributes": { "weight": 1 } }, { "key": "24315", "source": "2483", "target": "2477", "attributes": { "weight": 1 } }, { "key": "24321", "source": "2484", "target": "2480", "attributes": { "weight": 1 } }, { "key": "24320", "source": "2484", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24322", "source": "2485", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24323", "source": "2485", "target": "2483", "attributes": { "weight": 1 } }, { "key": "24325", "source": "2486", "target": "2480", "attributes": { "weight": 1 } }, { "key": "24324", "source": "2486", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24327", "source": "2487", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24328", "source": "2488", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24329", "source": "2489", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24330", "source": "2490", "target": "2216", "attributes": { "weight": 1 } }, { "key": "24372", "source": "2491", "target": "221", "attributes": { "weight": 1 } }, { "key": "24390", "source": "2492", "target": "2494", "attributes": { "weight": 1 } }, { "key": "24391", "source": "2493", "target": "2496", "attributes": { "weight": 1 } }, { "key": "24392", "source": "2493", "target": "2335", "attributes": { "weight": 1 } }, { "key": "24393", "source": "2494", "target": "2315", "attributes": { "weight": 2 } }, { "key": "24394", "source": "2494", "target": "2492", "attributes": { "weight": 1 } }, { "key": "24395", "source": "2495", "target": "2322", "attributes": { "weight": 1 } }, { "key": "24397", "source": "2496", "target": "567", "attributes": { "weight": 1 } }, { "key": "24396", "source": "2496", "target": "2316", "attributes": { "weight": 1 } }, { "key": "24398", "source": "2496", "target": "2493", "attributes": { "weight": 1 } }, { "key": "24401", "source": "2496", "target": "1636", "attributes": { "weight": 1 } }, { "key": "24400", "source": "2496", "target": "1635", "attributes": { "weight": 1 } }, { "key": "24399", "source": "2496", "target": "2496", "attributes": { "weight": 1 } }, { "key": "24402", "source": "2496", "target": "1637", "attributes": { "weight": 1 } }, { "key": "24407", "source": "2497", "target": "2494", "attributes": { "weight": 1 } }, { "key": "24408", "source": "2498", "target": "2322", "attributes": { "weight": 1 } }, { "key": "30815", "source": "2499", "target": "3", "attributes": { "weight": 1 } }, { "key": "37214", "source": "2499", "target": "3017", "attributes": { "weight": 1 } }, { "key": "31565", "source": "2499", "target": "595", "attributes": { "weight": 1 } }, { "key": "24409", "source": "2499", "target": "19", "attributes": { "weight": 1 } }, { "key": "24410", "source": "2500", "target": "18", "attributes": { "weight": 1 } }, { "key": "30574", "source": "2500", "target": "25", "attributes": { "weight": 1 } }, { "key": "30573", "source": "2500", "target": "1965", "attributes": { "weight": 1 } }, { "key": "34928", "source": "2500", "target": "3", "attributes": { "weight": 1 } }, { "key": "24411", "source": "2500", "target": "1967", "attributes": { "weight": 1 } }, { "key": "24417", "source": "2501", "target": "1965", "attributes": { "weight": 3 } }, { "key": "30884", "source": "2501", "target": "19", "attributes": { "weight": 1 } }, { "key": "24418", "source": "2501", "target": "25", "attributes": { "weight": 1 } }, { "key": "34972", "source": "2501", "target": "3", "attributes": { "weight": 1 } }, { "key": "24429", "source": "2502", "target": "2504", "attributes": { "weight": 1 } }, { "key": "24430", "source": "2502", "target": "475", "attributes": { "weight": 1 } }, { "key": "24428", "source": "2502", "target": "1535", "attributes": { "weight": 1 } }, { "key": "24439", "source": "2503", "target": "19", "attributes": { "weight": 1 } }, { "key": "24440", "source": "2504", "target": "2502", "attributes": { "weight": 1 } }, { "key": "24454", "source": "2505", "target": "12", "attributes": { "weight": 1 } }, { "key": "29445", "source": "2505", "target": "232", "attributes": { "weight": 1 } }, { "key": "24456", "source": "2505", "target": "1774", "attributes": { "weight": 1 } }, { "key": "35010", "source": "2505", "target": "89", "attributes": { "weight": 1 } }, { "key": "31683", "source": "2505", "target": "0", "attributes": { "weight": 1 } }, { "key": "24455", "source": "2505", "target": "13", "attributes": { "weight": 1 } }, { "key": "24450", "source": "2505", "target": "788", "attributes": { "weight": 1 } }, { "key": "24453", "source": "2505", "target": "11", "attributes": { "weight": 1 } }, { "key": "24449", "source": "2505", "target": "3", "attributes": { "weight": 3 } }, { "key": "24451", "source": "2505", "target": "693", "attributes": { "weight": 1 } }, { "key": "31685", "source": "2505", "target": "595", "attributes": { "weight": 1 } }, { "key": "25631", "source": "2505", "target": "1780", "attributes": { "weight": 1 } }, { "key": "35139", "source": "2505", "target": "3085", "attributes": { "weight": 1 } }, { "key": "31684", "source": "2505", "target": "8", "attributes": { "weight": 1 } }, { "key": "24452", "source": "2505", "target": "5", "attributes": { "weight": 1 } }, { "key": "37294", "source": "2506", "target": "3352", "attributes": { "weight": 1 } }, { "key": "37292", "source": "2506", "target": "14", "attributes": { "weight": 1 } }, { "key": "37291", "source": "2506", "target": "347", "attributes": { "weight": 1 } }, { "key": "37289", "source": "2506", "target": "3351", "attributes": { "weight": 1 } }, { "key": "24462", "source": "2506", "target": "13", "attributes": { "weight": 1 } }, { "key": "37290", "source": "2506", "target": "12", "attributes": { "weight": 1 } }, { "key": "37293", "source": "2506", "target": "349", "attributes": { "weight": 1 } }, { "key": "37288", "source": "2506", "target": "3", "attributes": { "weight": 1 } }, { "key": "31815", "source": "2507", "target": "595", "attributes": { "weight": 1 } }, { "key": "24464", "source": "2507", "target": "19", "attributes": { "weight": 1 } }, { "key": "24466", "source": "2507", "target": "303", "attributes": { "weight": 1 } }, { "key": "30955", "source": "2507", "target": "304", "attributes": { "weight": 1 } }, { "key": "24465", "source": "2507", "target": "1965", "attributes": { "weight": 1 } }, { "key": "37255", "source": "2507", "target": "18", "attributes": { "weight": 1 } }, { "key": "30953", "source": "2507", "target": "3", "attributes": { "weight": 2 } }, { "key": "30954", "source": "2507", "target": "13", "attributes": { "weight": 1 } }, { "key": "30621", "source": "2507", "target": "25", "attributes": { "weight": 1 } }, { "key": "37256", "source": "2507", "target": "681", "attributes": { "weight": 1 } }, { "key": "24523", "source": "2508", "target": "1806", "attributes": { "weight": 1 } }, { "key": "24561", "source": "2509", "target": "1806", "attributes": { "weight": 1 } }, { "key": "24560", "source": "2509", "target": "1801", "attributes": { "weight": 1 } }, { "key": "24566", "source": "2510", "target": "1041", "attributes": { "weight": 1 } }, { "key": "28611", "source": "2510", "target": "2116", "attributes": { "weight": 1 } }, { "key": "34860", "source": "2511", "target": "359", "attributes": { "weight": 1 } }, { "key": "27800", "source": "2511", "target": "339", "attributes": { "weight": 1 } }, { "key": "34863", "source": "2511", "target": "163", "attributes": { "weight": 1 } }, { "key": "34862", "source": "2511", "target": "1765", "attributes": { "weight": 1 } }, { "key": "34859", "source": "2511", "target": "2232", "attributes": { "weight": 1 } }, { "key": "34861", "source": "2511", "target": "556", "attributes": { "weight": 1 } }, { "key": "24604", "source": "2511", "target": "2118", "attributes": { "weight": 1 } }, { "key": "24662", "source": "2512", "target": "671", "attributes": { "weight": 1 } }, { "key": "24661", "source": "2512", "target": "670", "attributes": { "weight": 1 } }, { "key": "24690", "source": "2513", "target": "8", "attributes": { "weight": 1 } }, { "key": "24689", "source": "2513", "target": "5", "attributes": { "weight": 1 } }, { "key": "33789", "source": "2513", "target": "3", "attributes": { "weight": 1 } }, { "key": "32546", "source": "2513", "target": "791", "attributes": { "weight": 1 } }, { "key": "24710", "source": "2514", "target": "1401", "attributes": { "weight": 1 } }, { "key": "24711", "source": "2514", "target": "2515", "attributes": { "weight": 1 } }, { "key": "24717", "source": "2515", "target": "378", "attributes": { "weight": 1 } }, { "key": "24715", "source": "2515", "target": "704", "attributes": { "weight": 1 } }, { "key": "24714", "source": "2515", "target": "373", "attributes": { "weight": 1 } }, { "key": "24716", "source": "2515", "target": "2514", "attributes": { "weight": 1 } }, { "key": "24719", "source": "2516", "target": "1765", "attributes": { "weight": 2 } }, { "key": "24720", "source": "2517", "target": "1765", "attributes": { "weight": 2 } }, { "key": "24725", "source": "2518", "target": "1765", "attributes": { "weight": 2 } }, { "key": "24727", "source": "2520", "target": "1243", "attributes": { "weight": 1 } }, { "key": "24728", "source": "2521", "target": "1243", "attributes": { "weight": 2 } }, { "key": "25517", "source": "2521", "target": "2522", "attributes": { "weight": 1 } }, { "key": "24729", "source": "2522", "target": "1243", "attributes": { "weight": 2 } }, { "key": "25518", "source": "2522", "target": "2521", "attributes": { "weight": 1 } }, { "key": "24731", "source": "2523", "target": "2525", "attributes": { "weight": 2 } }, { "key": "24730", "source": "2523", "target": "1243", "attributes": { "weight": 2 } }, { "key": "24739", "source": "2525", "target": "1243", "attributes": { "weight": 2 } }, { "key": "25538", "source": "2525", "target": "2523", "attributes": { "weight": 1 } }, { "key": "24741", "source": "2527", "target": "178", "attributes": { "weight": 1 } }, { "key": "24742", "source": "2527", "target": "2285", "attributes": { "weight": 1 } }, { "key": "24759", "source": "2528", "target": "1056", "attributes": { "weight": 2 } }, { "key": "30463", "source": "2528", "target": "1046", "attributes": { "weight": 1 } }, { "key": "27878", "source": "2528", "target": "468", "attributes": { "weight": 1 } }, { "key": "27876", "source": "2528", "target": "442", "attributes": { "weight": 1 } }, { "key": "37110", "source": "2528", "target": "1060", "attributes": { "weight": 1 } }, { "key": "27407", "source": "2528", "target": "339", "attributes": { "weight": 2 } }, { "key": "27877", "source": "2528", "target": "359", "attributes": { "weight": 2 } }, { "key": "24764", "source": "2529", "target": "486", "attributes": { "weight": 1 } }, { "key": "25373", "source": "2529", "target": "433", "attributes": { "weight": 1 } }, { "key": "24765", "source": "2529", "target": "57", "attributes": { "weight": 1 } }, { "key": "24773", "source": "2530", "target": "2531", "attributes": { "weight": 1 } }, { "key": "24774", "source": "2531", "target": "2530", "attributes": { "weight": 1 } }, { "key": "24821", "source": "2532", "target": "275", "attributes": { "weight": 1 } }, { "key": "24825", "source": "2533", "target": "636", "attributes": { "weight": 2 } }, { "key": "30972", "source": "2533", "target": "1809", "attributes": { "weight": 1 } }, { "key": "30973", "source": "2533", "target": "638", "attributes": { "weight": 1 } }, { "key": "31001", "source": "2534", "target": "636", "attributes": { "weight": 1 } }, { "key": "31002", "source": "2534", "target": "1809", "attributes": { "weight": 1 } }, { "key": "24828", "source": "2534", "target": "638", "attributes": { "weight": 3 } }, { "key": "27760", "source": "2535", "target": "1809", "attributes": { "weight": 1 } }, { "key": "24829", "source": "2535", "target": "636", "attributes": { "weight": 3 } }, { "key": "24833", "source": "2536", "target": "2542", "attributes": { "weight": 1 } }, { "key": "25662", "source": "2536", "target": "278", "attributes": { "weight": 1 } }, { "key": "24905", "source": "2536", "target": "1191", "attributes": { "weight": 1 } }, { "key": "24907", "source": "2536", "target": "1240", "attributes": { "weight": 1 } }, { "key": "24906", "source": "2536", "target": "707", "attributes": { "weight": 1 } }, { "key": "24842", "source": "2537", "target": "2542", "attributes": { "weight": 1 } }, { "key": "24940", "source": "2537", "target": "707", "attributes": { "weight": 1 } }, { "key": "24941", "source": "2537", "target": "1240", "attributes": { "weight": 1 } }, { "key": "24950", "source": "2538", "target": "1191", "attributes": { "weight": 1 } }, { "key": "24951", "source": "2538", "target": "698", "attributes": { "weight": 1 } }, { "key": "24952", "source": "2538", "target": "1240", "attributes": { "weight": 1 } }, { "key": "24843", "source": "2538", "target": "2542", "attributes": { "weight": 1 } }, { "key": "28408", "source": "2539", "target": "1240", "attributes": { "weight": 1 } }, { "key": "24998", "source": "2539", "target": "707", "attributes": { "weight": 2 } }, { "key": "24844", "source": "2539", "target": "2542", "attributes": { "weight": 1 } }, { "key": "28423", "source": "2540", "target": "579", "attributes": { "weight": 1 } }, { "key": "24847", "source": "2540", "target": "2542", "attributes": { "weight": 1 } }, { "key": "28422", "source": "2540", "target": "278", "attributes": { "weight": 2 } }, { "key": "25015", "source": "2540", "target": "1240", "attributes": { "weight": 2 } }, { "key": "25014", "source": "2540", "target": "707", "attributes": { "weight": 2 } }, { "key": "28424", "source": "2540", "target": "1512", "attributes": { "weight": 1 } }, { "key": "24849", "source": "2541", "target": "1191", "attributes": { "weight": 1 } }, { "key": "24850", "source": "2541", "target": "698", "attributes": { "weight": 1 } }, { "key": "24851", "source": "2542", "target": "2536", "attributes": { "weight": 1 } }, { "key": "24854", "source": "2542", "target": "2539", "attributes": { "weight": 1 } }, { "key": "24853", "source": "2542", "target": "2538", "attributes": { "weight": 1 } }, { "key": "24856", "source": "2542", "target": "2540", "attributes": { "weight": 1 } }, { "key": "24852", "source": "2542", "target": "2537", "attributes": { "weight": 1 } }, { "key": "24855", "source": "2542", "target": "1979", "attributes": { "weight": 1 } }, { "key": "24857", "source": "2543", "target": "603", "attributes": { "weight": 2 } }, { "key": "24858", "source": "2543", "target": "109", "attributes": { "weight": 2 } }, { "key": "24908", "source": "2545", "target": "707", "attributes": { "weight": 1 } }, { "key": "24909", "source": "2545", "target": "1240", "attributes": { "weight": 1 } }, { "key": "24911", "source": "2546", "target": "707", "attributes": { "weight": 2 } }, { "key": "24910", "source": "2546", "target": "1191", "attributes": { "weight": 2 } }, { "key": "24912", "source": "2546", "target": "1240", "attributes": { "weight": 2 } }, { "key": "28337", "source": "2546", "target": "579", "attributes": { "weight": 1 } }, { "key": "25663", "source": "2546", "target": "278", "attributes": { "weight": 1 } }, { "key": "24997", "source": "2547", "target": "707", "attributes": { "weight": 1 } }, { "key": "25024", "source": "2548", "target": "1240", "attributes": { "weight": 1 } }, { "key": "25023", "source": "2548", "target": "707", "attributes": { "weight": 1 } }, { "key": "25071", "source": "2549", "target": "707", "attributes": { "weight": 1 } }, { "key": "25077", "source": "2550", "target": "707", "attributes": { "weight": 2 } }, { "key": "29223", "source": "2551", "target": "278", "attributes": { "weight": 1 } }, { "key": "25079", "source": "2551", "target": "707", "attributes": { "weight": 2 } }, { "key": "25135", "source": "2552", "target": "310", "attributes": { "weight": 1 } }, { "key": "25136", "source": "2553", "target": "310", "attributes": { "weight": 2 } }, { "key": "30151", "source": "2553", "target": "1151", "attributes": { "weight": 1 } }, { "key": "30152", "source": "2553", "target": "1187", "attributes": { "weight": 1 } }, { "key": "25145", "source": "2554", "target": "310", "attributes": { "weight": 3 } }, { "key": "25144", "source": "2554", "target": "297", "attributes": { "weight": 1 } }, { "key": "37537", "source": "2554", "target": "2561", "attributes": { "weight": 1 } }, { "key": "28776", "source": "2555", "target": "2120", "attributes": { "weight": 1 } }, { "key": "25162", "source": "2555", "target": "1146", "attributes": { "weight": 2 } }, { "key": "28775", "source": "2555", "target": "1178", "attributes": { "weight": 1 } }, { "key": "25164", "source": "2556", "target": "297", "attributes": { "weight": 4 } }, { "key": "25163", "source": "2556", "target": "1166", "attributes": { "weight": 2 } }, { "key": "25165", "source": "2556", "target": "310", "attributes": { "weight": 3 } }, { "key": "25170", "source": "2557", "target": "297", "attributes": { "weight": 2 } }, { "key": "25169", "source": "2557", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30207", "source": "2557", "target": "1187", "attributes": { "weight": 1 } }, { "key": "25171", "source": "2557", "target": "310", "attributes": { "weight": 2 } }, { "key": "25174", "source": "2558", "target": "297", "attributes": { "weight": 3 } }, { "key": "31182", "source": "2558", "target": "3046", "attributes": { "weight": 1 } }, { "key": "25173", "source": "2558", "target": "1166", "attributes": { "weight": 1 } }, { "key": "25175", "source": "2558", "target": "310", "attributes": { "weight": 2 } }, { "key": "31183", "source": "2558", "target": "3047", "attributes": { "weight": 1 } }, { "key": "25176", "source": "2559", "target": "297", "attributes": { "weight": 3 } }, { "key": "25177", "source": "2559", "target": "310", "attributes": { "weight": 2 } }, { "key": "30235", "source": "2560", "target": "2117", "attributes": { "weight": 1 } }, { "key": "35379", "source": "2560", "target": "310", "attributes": { "weight": 1 } }, { "key": "25194", "source": "2560", "target": "1166", "attributes": { "weight": 3 } }, { "key": "30236", "source": "2560", "target": "1341", "attributes": { "weight": 1 } }, { "key": "33020", "source": "2560", "target": "297", "attributes": { "weight": 1 } }, { "key": "25196", "source": "2561", "target": "1166", "attributes": { "weight": 3 } }, { "key": "37571", "source": "2561", "target": "310", "attributes": { "weight": 1 } }, { "key": "37570", "source": "2561", "target": "2554", "attributes": { "weight": 1 } }, { "key": "25198", "source": "2561", "target": "1996", "attributes": { "weight": 1 } }, { "key": "25197", "source": "2561", "target": "297", "attributes": { "weight": 2 } }, { "key": "25209", "source": "2562", "target": "1166", "attributes": { "weight": 2 } }, { "key": "33021", "source": "2562", "target": "310", "attributes": { "weight": 1 } }, { "key": "25264", "source": "2563", "target": "1640", "attributes": { "weight": 1 } }, { "key": "25265", "source": "2564", "target": "2336", "attributes": { "weight": 1 } }, { "key": "25274", "source": "2565", "target": "2568", "attributes": { "weight": 1 } }, { "key": "25276", "source": "2565", "target": "2336", "attributes": { "weight": 1 } }, { "key": "25275", "source": "2565", "target": "2330", "attributes": { "weight": 1 } }, { "key": "25284", "source": "2566", "target": "2328", "attributes": { "weight": 1 } }, { "key": "25289", "source": "2568", "target": "2565", "attributes": { "weight": 1 } }, { "key": "25288", "source": "2568", "target": "2315", "attributes": { "weight": 1 } }, { "key": "25290", "source": "2568", "target": "2574", "attributes": { "weight": 1 } }, { "key": "25294", "source": "2569", "target": "1640", "attributes": { "weight": 2 } }, { "key": "25305", "source": "2571", "target": "2328", "attributes": { "weight": 1 } }, { "key": "25307", "source": "2572", "target": "2326", "attributes": { "weight": 2 } }, { "key": "25306", "source": "2572", "target": "572", "attributes": { "weight": 1 } }, { "key": "25308", "source": "2573", "target": "2328", "attributes": { "weight": 1 } }, { "key": "25310", "source": "2574", "target": "2322", "attributes": { "weight": 1 } }, { "key": "25309", "source": "2574", "target": "2315", "attributes": { "weight": 1 } }, { "key": "25311", "source": "2574", "target": "2568", "attributes": { "weight": 1 } }, { "key": "25312", "source": "2575", "target": "2281", "attributes": { "weight": 1 } }, { "key": "25325", "source": "2576", "target": "1640", "attributes": { "weight": 1 } }, { "key": "25351", "source": "2578", "target": "572", "attributes": { "weight": 1 } }, { "key": "37078", "source": "2579", "target": "358", "attributes": { "weight": 1 } }, { "key": "37077", "source": "2579", "target": "2232", "attributes": { "weight": 1 } }, { "key": "25352", "source": "2579", "target": "2580", "attributes": { "weight": 2 } }, { "key": "37079", "source": "2579", "target": "162", "attributes": { "weight": 1 } }, { "key": "37080", "source": "2579", "target": "794", "attributes": { "weight": 1 } }, { "key": "25353", "source": "2579", "target": "161", "attributes": { "weight": 1 } }, { "key": "25375", "source": "2580", "target": "2579", "attributes": { "weight": 2 } }, { "key": "25376", "source": "2580", "target": "2581", "attributes": { "weight": 2 } }, { "key": "37081", "source": "2581", "target": "162", "attributes": { "weight": 1 } }, { "key": "25379", "source": "2581", "target": "2580", "attributes": { "weight": 2 } }, { "key": "37082", "source": "2581", "target": "1788", "attributes": { "weight": 1 } }, { "key": "25399", "source": "2582", "target": "2586", "attributes": { "weight": 1 } }, { "key": "25400", "source": "2582", "target": "1408", "attributes": { "weight": 1 } }, { "key": "27763", "source": "2583", "target": "625", "attributes": { "weight": 1 } }, { "key": "27762", "source": "2583", "target": "621", "attributes": { "weight": 1 } }, { "key": "25403", "source": "2583", "target": "2585", "attributes": { "weight": 2 } }, { "key": "25406", "source": "2584", "target": "2587", "attributes": { "weight": 1 } }, { "key": "25404", "source": "2584", "target": "2586", "attributes": { "weight": 1 } }, { "key": "25407", "source": "2584", "target": "2588", "attributes": { "weight": 1 } }, { "key": "25405", "source": "2584", "target": "1408", "attributes": { "weight": 1 } }, { "key": "27766", "source": "2585", "target": "621", "attributes": { "weight": 1 } }, { "key": "25408", "source": "2585", "target": "2583", "attributes": { "weight": 2 } }, { "key": "25409", "source": "2585", "target": "625", "attributes": { "weight": 2 } }, { "key": "25411", "source": "2586", "target": "2584", "attributes": { "weight": 1 } }, { "key": "25412", "source": "2586", "target": "625", "attributes": { "weight": 1 } }, { "key": "25410", "source": "2586", "target": "2582", "attributes": { "weight": 1 } }, { "key": "25418", "source": "2587", "target": "625", "attributes": { "weight": 1 } }, { "key": "36874", "source": "2587", "target": "3333", "attributes": { "weight": 1 } }, { "key": "36875", "source": "2587", "target": "3335", "attributes": { "weight": 1 } }, { "key": "36876", "source": "2587", "target": "3339", "attributes": { "weight": 1 } }, { "key": "25417", "source": "2587", "target": "2584", "attributes": { "weight": 1 } }, { "key": "25419", "source": "2587", "target": "2588", "attributes": { "weight": 2 } }, { "key": "36889", "source": "2588", "target": "3324", "attributes": { "weight": 1 } }, { "key": "36888", "source": "2588", "target": "3323", "attributes": { "weight": 1 } }, { "key": "36884", "source": "2588", "target": "3318", "attributes": { "weight": 1 } }, { "key": "36893", "source": "2588", "target": "3337", "attributes": { "weight": 1 } }, { "key": "36890", "source": "2588", "target": "3325", "attributes": { "weight": 1 } }, { "key": "36892", "source": "2588", "target": "3334", "attributes": { "weight": 1 } }, { "key": "36885", "source": "2588", "target": "3319", "attributes": { "weight": 1 } }, { "key": "25432", "source": "2588", "target": "1408", "attributes": { "weight": 2 } }, { "key": "25431", "source": "2588", "target": "2584", "attributes": { "weight": 1 } }, { "key": "25430", "source": "2588", "target": "2582", "attributes": { "weight": 1 } }, { "key": "36895", "source": "2588", "target": "3339", "attributes": { "weight": 1 } }, { "key": "36894", "source": "2588", "target": "3338", "attributes": { "weight": 1 } }, { "key": "36886", "source": "2588", "target": "3321", "attributes": { "weight": 1 } }, { "key": "36887", "source": "2588", "target": "3322", "attributes": { "weight": 1 } }, { "key": "36891", "source": "2588", "target": "3326", "attributes": { "weight": 1 } }, { "key": "25433", "source": "2588", "target": "2587", "attributes": { "weight": 2 } }, { "key": "25436", "source": "2589", "target": "1414", "attributes": { "weight": 1 } }, { "key": "25435", "source": "2589", "target": "1408", "attributes": { "weight": 1 } }, { "key": "30812", "source": "2590", "target": "783", "attributes": { "weight": 1 } }, { "key": "25438", "source": "2590", "target": "990", "attributes": { "weight": 2 } }, { "key": "25459", "source": "2591", "target": "989", "attributes": { "weight": 1 } }, { "key": "25460", "source": "2591", "target": "990", "attributes": { "weight": 1 } }, { "key": "25499", "source": "2593", "target": "128", "attributes": { "weight": 1 } }, { "key": "25510", "source": "2599", "target": "1165", "attributes": { "weight": 1 } }, { "key": "25516", "source": "2600", "target": "2601", "attributes": { "weight": 1 } }, { "key": "25515", "source": "2600", "target": "1526", "attributes": { "weight": 1 } }, { "key": "25519", "source": "2601", "target": "2600", "attributes": { "weight": 1 } }, { "key": "25520", "source": "2601", "target": "924", "attributes": { "weight": 1 } }, { "key": "25521", "source": "2602", "target": "1263", "attributes": { "weight": 1 } }, { "key": "25522", "source": "2602", "target": "924", "attributes": { "weight": 1 } }, { "key": "25524", "source": "2603", "target": "1315", "attributes": { "weight": 1 } }, { "key": "25523", "source": "2603", "target": "1173", "attributes": { "weight": 1 } }, { "key": "25532", "source": "2604", "target": "924", "attributes": { "weight": 1 } }, { "key": "25531", "source": "2604", "target": "1165", "attributes": { "weight": 1 } }, { "key": "25533", "source": "2605", "target": "1291", "attributes": { "weight": 1 } }, { "key": "34633", "source": "2605", "target": "1323", "attributes": { "weight": 1 } }, { "key": "25534", "source": "2606", "target": "1291", "attributes": { "weight": 1 } }, { "key": "25539", "source": "2607", "target": "1263", "attributes": { "weight": 1 } }, { "key": "25543", "source": "2608", "target": "175", "attributes": { "weight": 1 } }, { "key": "25560", "source": "2609", "target": "830", "attributes": { "weight": 1 } }, { "key": "25563", "source": "2610", "target": "830", "attributes": { "weight": 1 } }, { "key": "25583", "source": "2611", "target": "361", "attributes": { "weight": 1 } }, { "key": "25581", "source": "2611", "target": "649", "attributes": { "weight": 1 } }, { "key": "25582", "source": "2611", "target": "655", "attributes": { "weight": 1 } }, { "key": "25580", "source": "2611", "target": "357", "attributes": { "weight": 1 } }, { "key": "25579", "source": "2611", "target": "354", "attributes": { "weight": 1 } }, { "key": "25635", "source": "2612", "target": "1780", "attributes": { "weight": 1 } }, { "key": "25634", "source": "2612", "target": "787", "attributes": { "weight": 1 } }, { "key": "30940", "source": "2612", "target": "3", "attributes": { "weight": 1 } }, { "key": "25693", "source": "2613", "target": "699", "attributes": { "weight": 1 } }, { "key": "25692", "source": "2613", "target": "697", "attributes": { "weight": 2 } }, { "key": "25739", "source": "2614", "target": "699", "attributes": { "weight": 2 } }, { "key": "29207", "source": "2614", "target": "697", "attributes": { "weight": 1 } }, { "key": "25741", "source": "2615", "target": "697", "attributes": { "weight": 2 } }, { "key": "25743", "source": "2616", "target": "699", "attributes": { "weight": 2 } }, { "key": "25742", "source": "2616", "target": "697", "attributes": { "weight": 2 } }, { "key": "25762", "source": "2617", "target": "697", "attributes": { "weight": 1 } }, { "key": "25763", "source": "2617", "target": "699", "attributes": { "weight": 2 } }, { "key": "25776", "source": "2618", "target": "697", "attributes": { "weight": 1 } }, { "key": "25777", "source": "2618", "target": "699", "attributes": { "weight": 2 } }, { "key": "25779", "source": "2619", "target": "697", "attributes": { "weight": 1 } }, { "key": "25876", "source": "2620", "target": "220", "attributes": { "weight": 1 } }, { "key": "31332", "source": "2620", "target": "674", "attributes": { "weight": 1 } }, { "key": "25971", "source": "2621", "target": "2622", "attributes": { "weight": 2 } }, { "key": "26002", "source": "2622", "target": "1906", "attributes": { "weight": 2 } }, { "key": "26003", "source": "2622", "target": "1907", "attributes": { "weight": 2 } }, { "key": "25999", "source": "2622", "target": "2448", "attributes": { "weight": 2 } }, { "key": "26011", "source": "2622", "target": "1984", "attributes": { "weight": 2 } }, { "key": "25992", "source": "2622", "target": "1898", "attributes": { "weight": 2 } }, { "key": "26007", "source": "2622", "target": "2398", "attributes": { "weight": 2 } }, { "key": "25998", "source": "2622", "target": "270", "attributes": { "weight": 2 } }, { "key": "26009", "source": "2622", "target": "1916", "attributes": { "weight": 2 } }, { "key": "25986", "source": "2622", "target": "1969", "attributes": { "weight": 2 } }, { "key": "26020", "source": "2622", "target": "321", "attributes": { "weight": 2 } }, { "key": "26008", "source": "2622", "target": "1977", "attributes": { "weight": 2 } }, { "key": "26017", "source": "2622", "target": "839", "attributes": { "weight": 2 } }, { "key": "26016", "source": "2622", "target": "303", "attributes": { "weight": 2 } }, { "key": "26025", "source": "2622", "target": "334", "attributes": { "weight": 2 } }, { "key": "25994", "source": "2622", "target": "263", "attributes": { "weight": 2 } }, { "key": "26000", "source": "2622", "target": "2621", "attributes": { "weight": 2 } }, { "key": "25990", "source": "2622", "target": "259", "attributes": { "weight": 2 } }, { "key": "26022", "source": "2622", "target": "1929", "attributes": { "weight": 2 } }, { "key": "25997", "source": "2622", "target": "266", "attributes": { "weight": 2 } }, { "key": "26006", "source": "2622", "target": "2397", "attributes": { "weight": 2 } }, { "key": "25996", "source": "2622", "target": "265", "attributes": { "weight": 2 } }, { "key": "25995", "source": "2622", "target": "264", "attributes": { "weight": 2 } }, { "key": "26019", "source": "2622", "target": "320", "attributes": { "weight": 2 } }, { "key": "26023", "source": "2622", "target": "1930", "attributes": { "weight": 2 } }, { "key": "26018", "source": "2622", "target": "312", "attributes": { "weight": 2 } }, { "key": "26024", "source": "2622", "target": "327", "attributes": { "weight": 2 } }, { "key": "25989", "source": "2622", "target": "1973", "attributes": { "weight": 2 } }, { "key": "26005", "source": "2622", "target": "1909", "attributes": { "weight": 2 } }, { "key": "26015", "source": "2622", "target": "1987", "attributes": { "weight": 2 } }, { "key": "25993", "source": "2622", "target": "262", "attributes": { "weight": 2 } }, { "key": "26013", "source": "2622", "target": "1922", "attributes": { "weight": 2 } }, { "key": "26012", "source": "2622", "target": "295", "attributes": { "weight": 2 } }, { "key": "25991", "source": "2622", "target": "1897", "attributes": { "weight": 2 } }, { "key": "26001", "source": "2622", "target": "275", "attributes": { "weight": 2 } }, { "key": "25988", "source": "2622", "target": "836", "attributes": { "weight": 2 } }, { "key": "26014", "source": "2622", "target": "299", "attributes": { "weight": 2 } }, { "key": "26010", "source": "2622", "target": "286", "attributes": { "weight": 2 } }, { "key": "25987", "source": "2622", "target": "1972", "attributes": { "weight": 2 } }, { "key": "26021", "source": "2622", "target": "1927", "attributes": { "weight": 2 } }, { "key": "26004", "source": "2622", "target": "277", "attributes": { "weight": 2 } }, { "key": "26040", "source": "2623", "target": "711", "attributes": { "weight": 1 } }, { "key": "26043", "source": "2624", "target": "163", "attributes": { "weight": 1 } }, { "key": "32641", "source": "2624", "target": "3024", "attributes": { "weight": 1 } }, { "key": "26044", "source": "2624", "target": "2626", "attributes": { "weight": 2 } }, { "key": "30970", "source": "2624", "target": "638", "attributes": { "weight": 2 } }, { "key": "32643", "source": "2624", "target": "3035", "attributes": { "weight": 1 } }, { "key": "32644", "source": "2624", "target": "3113", "attributes": { "weight": 1 } }, { "key": "32642", "source": "2624", "target": "2177", "attributes": { "weight": 1 } }, { "key": "29937", "source": "2625", "target": "1527", "attributes": { "weight": 1 } }, { "key": "29936", "source": "2625", "target": "2904", "attributes": { "weight": 1 } }, { "key": "26064", "source": "2625", "target": "1541", "attributes": { "weight": 2 } }, { "key": "26065", "source": "2625", "target": "163", "attributes": { "weight": 2 } }, { "key": "32666", "source": "2626", "target": "1527", "attributes": { "weight": 1 } }, { "key": "31059", "source": "2626", "target": "638", "attributes": { "weight": 1 } }, { "key": "26091", "source": "2626", "target": "2624", "attributes": { "weight": 2 } }, { "key": "26092", "source": "2626", "target": "163", "attributes": { "weight": 2 } }, { "key": "32665", "source": "2626", "target": "3024", "attributes": { "weight": 1 } }, { "key": "32667", "source": "2626", "target": "2177", "attributes": { "weight": 1 } }, { "key": "26148", "source": "2627", "target": "1214", "attributes": { "weight": 1 } }, { "key": "26149", "source": "2627", "target": "2629", "attributes": { "weight": 1 } }, { "key": "29257", "source": "2628", "target": "634", "attributes": { "weight": 1 } }, { "key": "26159", "source": "2628", "target": "1214", "attributes": { "weight": 2 } }, { "key": "29259", "source": "2628", "target": "3422", "attributes": { "weight": 1 } }, { "key": "29258", "source": "2628", "target": "635", "attributes": { "weight": 1 } }, { "key": "29256", "source": "2628", "target": "633", "attributes": { "weight": 1 } }, { "key": "29254", "source": "2628", "target": "2842", "attributes": { "weight": 1 } }, { "key": "29255", "source": "2628", "target": "1935", "attributes": { "weight": 1 } }, { "key": "26160", "source": "2629", "target": "2627", "attributes": { "weight": 1 } }, { "key": "26161", "source": "2629", "target": "1214", "attributes": { "weight": 1 } }, { "key": "26186", "source": "2630", "target": "2631", "attributes": { "weight": 1 } }, { "key": "26184", "source": "2630", "target": "54", "attributes": { "weight": 2 } }, { "key": "26185", "source": "2630", "target": "1556", "attributes": { "weight": 1 } }, { "key": "26192", "source": "2631", "target": "1556", "attributes": { "weight": 1 } }, { "key": "26191", "source": "2631", "target": "2630", "attributes": { "weight": 1 } }, { "key": "26190", "source": "2631", "target": "225", "attributes": { "weight": 1 } }, { "key": "26201", "source": "2632", "target": "30", "attributes": { "weight": 1 } }, { "key": "26202", "source": "2633", "target": "30", "attributes": { "weight": 2 } }, { "key": "26218", "source": "2634", "target": "1299", "attributes": { "weight": 1 } }, { "key": "26219", "source": "2634", "target": "601", "attributes": { "weight": 1 } }, { "key": "26240", "source": "2635", "target": "1297", "attributes": { "weight": 1 } }, { "key": "26241", "source": "2636", "target": "2429", "attributes": { "weight": 1 } }, { "key": "26245", "source": "2637", "target": "30", "attributes": { "weight": 2 } }, { "key": "26268", "source": "2638", "target": "30", "attributes": { "weight": 1 } }, { "key": "26269", "source": "2639", "target": "30", "attributes": { "weight": 1 } }, { "key": "29297", "source": "2639", "target": "1149", "attributes": { "weight": 1 } }, { "key": "26270", "source": "2640", "target": "30", "attributes": { "weight": 1 } }, { "key": "26277", "source": "2641", "target": "2430", "attributes": { "weight": 1 } }, { "key": "26279", "source": "2642", "target": "1524", "attributes": { "weight": 1 } }, { "key": "26290", "source": "2643", "target": "1117", "attributes": { "weight": 1 } }, { "key": "35539", "source": "2644", "target": "1710", "attributes": { "weight": 1 } }, { "key": "32705", "source": "2644", "target": "435", "attributes": { "weight": 2 } }, { "key": "32707", "source": "2644", "target": "472", "attributes": { "weight": 2 } }, { "key": "32706", "source": "2644", "target": "135", "attributes": { "weight": 1 } }, { "key": "32866", "source": "2644", "target": "470", "attributes": { "weight": 2 } }, { "key": "26294", "source": "2644", "target": "2450", "attributes": { "weight": 4 } }, { "key": "33204", "source": "2645", "target": "442", "attributes": { "weight": 1 } }, { "key": "33213", "source": "2645", "target": "474", "attributes": { "weight": 1 } }, { "key": "33201", "source": "2645", "target": "130", "attributes": { "weight": 1 } }, { "key": "26993", "source": "2645", "target": "447", "attributes": { "weight": 1 } }, { "key": "32191", "source": "2645", "target": "53", "attributes": { "weight": 1 } }, { "key": "33203", "source": "2645", "target": "51", "attributes": { "weight": 1 } }, { "key": "33210", "source": "2645", "target": "2258", "attributes": { "weight": 1 } }, { "key": "26990", "source": "2645", "target": "1353", "attributes": { "weight": 1 } }, { "key": "33200", "source": "2645", "target": "220", "attributes": { "weight": 1 } }, { "key": "33215", "source": "2645", "target": "489", "attributes": { "weight": 1 } }, { "key": "32190", "source": "2645", "target": "860", "attributes": { "weight": 1 } }, { "key": "26998", "source": "2645", "target": "56", "attributes": { "weight": 2 } }, { "key": "33205", "source": "2645", "target": "450", "attributes": { "weight": 1 } }, { "key": "26994", "source": "2645", "target": "451", "attributes": { "weight": 2 } }, { "key": "33212", "source": "2645", "target": "1367", "attributes": { "weight": 1 } }, { "key": "26997", "source": "2645", "target": "2269", "attributes": { "weight": 1 } }, { "key": "33209", "source": "2645", "target": "1836", "attributes": { "weight": 1 } }, { "key": "33214", "source": "2645", "target": "1282", "attributes": { "weight": 1 } }, { "key": "33208", "source": "2645", "target": "135", "attributes": { "weight": 1 } }, { "key": "26996", "source": "2645", "target": "231", "attributes": { "weight": 3 } }, { "key": "26393", "source": "2645", "target": "1047", "attributes": { "weight": 2 } }, { "key": "33207", "source": "2645", "target": "464", "attributes": { "weight": 1 } }, { "key": "26991", "source": "2645", "target": "429", "attributes": { "weight": 2 } }, { "key": "32192", "source": "2645", "target": "1368", "attributes": { "weight": 1 } }, { "key": "33202", "source": "2645", "target": "435", "attributes": { "weight": 1 } }, { "key": "26995", "source": "2645", "target": "2094", "attributes": { "weight": 1 } }, { "key": "33211", "source": "2645", "target": "472", "attributes": { "weight": 1 } }, { "key": "26992", "source": "2645", "target": "1354", "attributes": { "weight": 2 } }, { "key": "33206", "source": "2645", "target": "1219", "attributes": { "weight": 1 } }, { "key": "35119", "source": "2646", "target": "817", "attributes": { "weight": 1 } }, { "key": "33769", "source": "2646", "target": "89", "attributes": { "weight": 1 } }, { "key": "33771", "source": "2646", "target": "792", "attributes": { "weight": 1 } }, { "key": "35121", "source": "2646", "target": "352", "attributes": { "weight": 1 } }, { "key": "33773", "source": "2646", "target": "1774", "attributes": { "weight": 1 } }, { "key": "31597", "source": "2646", "target": "595", "attributes": { "weight": 1 } }, { "key": "35120", "source": "2646", "target": "14", "attributes": { "weight": 1 } }, { "key": "33772", "source": "2646", "target": "244", "attributes": { "weight": 1 } }, { "key": "28934", "source": "2646", "target": "479", "attributes": { "weight": 2 } }, { "key": "30886", "source": "2646", "target": "3", "attributes": { "weight": 2 } }, { "key": "30326", "source": "2646", "target": "693", "attributes": { "weight": 2 } }, { "key": "37219", "source": "2646", "target": "4", "attributes": { "weight": 1 } }, { "key": "37220", "source": "2646", "target": "3017", "attributes": { "weight": 1 } }, { "key": "33770", "source": "2646", "target": "788", "attributes": { "weight": 1 } }, { "key": "26563", "source": "2646", "target": "454", "attributes": { "weight": 1 } }, { "key": "36936", "source": "2647", "target": "235", "attributes": { "weight": 1 } }, { "key": "29898", "source": "2647", "target": "53", "attributes": { "weight": 1 } }, { "key": "32559", "source": "2647", "target": "791", "attributes": { "weight": 1 } }, { "key": "36935", "source": "2647", "target": "340", "attributes": { "weight": 1 } }, { "key": "29042", "source": "2647", "target": "495", "attributes": { "weight": 2 } }, { "key": "26917", "source": "2647", "target": "497", "attributes": { "weight": 1 } }, { "key": "36932", "source": "2647", "target": "452", "attributes": { "weight": 1 } }, { "key": "36933", "source": "2647", "target": "2251", "attributes": { "weight": 1 } }, { "key": "36931", "source": "2647", "target": "448", "attributes": { "weight": 1 } }, { "key": "36934", "source": "2647", "target": "190", "attributes": { "weight": 1 } }, { "key": "29897", "source": "2647", "target": "1024", "attributes": { "weight": 1 } }, { "key": "36930", "source": "2647", "target": "221", "attributes": { "weight": 1 } }, { "key": "29436", "source": "2647", "target": "232", "attributes": { "weight": 1 } }, { "key": "26620", "source": "2647", "target": "189", "attributes": { "weight": 1 } }, { "key": "30506", "source": "2647", "target": "352", "attributes": { "weight": 1 } }, { "key": "36937", "source": "2647", "target": "1375", "attributes": { "weight": 1 } }, { "key": "29051", "source": "2648", "target": "495", "attributes": { "weight": 2 } }, { "key": "30741", "source": "2648", "target": "1026", "attributes": { "weight": 1 } }, { "key": "26745", "source": "2648", "target": "189", "attributes": { "weight": 2 } }, { "key": "26817", "source": "2649", "target": "1158", "attributes": { "weight": 1 } }, { "key": "26832", "source": "2650", "target": "256", "attributes": { "weight": 1 } }, { "key": "26830", "source": "2650", "target": "1220", "attributes": { "weight": 1 } }, { "key": "26831", "source": "2650", "target": "785", "attributes": { "weight": 1 } }, { "key": "26829", "source": "2650", "target": "1158", "attributes": { "weight": 1 } }, { "key": "26849", "source": "2651", "target": "1835", "attributes": { "weight": 1 } }, { "key": "26856", "source": "2652", "target": "1835", "attributes": { "weight": 1 } }, { "key": "26857", "source": "2652", "target": "2655", "attributes": { "weight": 1 } }, { "key": "26861", "source": "2653", "target": "2654", "attributes": { "weight": 1 } }, { "key": "26859", "source": "2653", "target": "1835", "attributes": { "weight": 1 } }, { "key": "26860", "source": "2653", "target": "2652", "attributes": { "weight": 1 } }, { "key": "26858", "source": "2653", "target": "2651", "attributes": { "weight": 1 } }, { "key": "26864", "source": "2654", "target": "2656", "attributes": { "weight": 1 } }, { "key": "26862", "source": "2654", "target": "1835", "attributes": { "weight": 1 } }, { "key": "26863", "source": "2654", "target": "2653", "attributes": { "weight": 1 } }, { "key": "26865", "source": "2655", "target": "1835", "attributes": { "weight": 1 } }, { "key": "26866", "source": "2655", "target": "2652", "attributes": { "weight": 1 } }, { "key": "26867", "source": "2656", "target": "1835", "attributes": { "weight": 1 } }, { "key": "26868", "source": "2656", "target": "2654", "attributes": { "weight": 1 } }, { "key": "26873", "source": "2657", "target": "894", "attributes": { "weight": 1 } }, { "key": "26878", "source": "2658", "target": "493", "attributes": { "weight": 2 } }, { "key": "26877", "source": "2658", "target": "894", "attributes": { "weight": 1 } }, { "key": "26879", "source": "2659", "target": "894", "attributes": { "weight": 1 } }, { "key": "26887", "source": "2661", "target": "493", "attributes": { "weight": 1 } }, { "key": "26886", "source": "2661", "target": "894", "attributes": { "weight": 1 } }, { "key": "26897", "source": "2662", "target": "894", "attributes": { "weight": 1 } }, { "key": "26898", "source": "2662", "target": "493", "attributes": { "weight": 2 } }, { "key": "26896", "source": "2662", "target": "891", "attributes": { "weight": 1 } }, { "key": "27203", "source": "2663", "target": "1140", "attributes": { "weight": 1 } }, { "key": "27208", "source": "2664", "target": "1140", "attributes": { "weight": 1 } }, { "key": "27209", "source": "2665", "target": "1232", "attributes": { "weight": 1 } }, { "key": "27210", "source": "2666", "target": "1233", "attributes": { "weight": 1 } }, { "key": "27387", "source": "2667", "target": "70", "attributes": { "weight": 1 } }, { "key": "27390", "source": "2668", "target": "70", "attributes": { "weight": 1 } }, { "key": "27391", "source": "2669", "target": "339", "attributes": { "weight": 2 } }, { "key": "37092", "source": "2669", "target": "359", "attributes": { "weight": 1 } }, { "key": "27801", "source": "2669", "target": "2718", "attributes": { "weight": 1 } }, { "key": "27889", "source": "2670", "target": "1056", "attributes": { "weight": 1 } }, { "key": "27890", "source": "2670", "target": "1060", "attributes": { "weight": 3 } }, { "key": "33669", "source": "2670", "target": "473", "attributes": { "weight": 1 } }, { "key": "32845", "source": "2670", "target": "489", "attributes": { "weight": 2 } }, { "key": "30720", "source": "2670", "target": "889", "attributes": { "weight": 1 } }, { "key": "27409", "source": "2670", "target": "891", "attributes": { "weight": 2 } }, { "key": "32231", "source": "2670", "target": "472", "attributes": { "weight": 5 } }, { "key": "27408", "source": "2670", "target": "339", "attributes": { "weight": 2 } }, { "key": "27888", "source": "2670", "target": "359", "attributes": { "weight": 2 } }, { "key": "35028", "source": "2670", "target": "14", "attributes": { "weight": 1 } }, { "key": "32844", "source": "2670", "target": "2258", "attributes": { "weight": 3 } }, { "key": "32232", "source": "2670", "target": "1282", "attributes": { "weight": 1 } }, { "key": "35029", "source": "2670", "target": "352", "attributes": { "weight": 1 } }, { "key": "35026", "source": "2670", "target": "3", "attributes": { "weight": 1 } }, { "key": "32229", "source": "2670", "target": "435", "attributes": { "weight": 4 } }, { "key": "32230", "source": "2670", "target": "135", "attributes": { "weight": 5 } }, { "key": "27887", "source": "2670", "target": "791", "attributes": { "weight": 2 } }, { "key": "35027", "source": "2670", "target": "595", "attributes": { "weight": 1 } }, { "key": "27411", "source": "2671", "target": "2674", "attributes": { "weight": 1 } }, { "key": "27410", "source": "2671", "target": "2672", "attributes": { "weight": 1 } }, { "key": "27412", "source": "2672", "target": "2671", "attributes": { "weight": 1 } }, { "key": "27415", "source": "2674", "target": "2676", "attributes": { "weight": 1 } }, { "key": "27418", "source": "2676", "target": "2671", "attributes": { "weight": 1 } }, { "key": "27432", "source": "2681", "target": "3418", "attributes": { "weight": 1 } }, { "key": "27433", "source": "2681", "target": "1499", "attributes": { "weight": 1 } }, { "key": "27431", "source": "2681", "target": "1437", "attributes": { "weight": 1 } }, { "key": "27439", "source": "2682", "target": "1072", "attributes": { "weight": 1 } }, { "key": "27440", "source": "2682", "target": "352", "attributes": { "weight": 1 } }, { "key": "27441", "source": "2683", "target": "1072", "attributes": { "weight": 1 } }, { "key": "27445", "source": "2684", "target": "2694", "attributes": { "weight": 1 } }, { "key": "27443", "source": "2684", "target": "2693", "attributes": { "weight": 1 } }, { "key": "27444", "source": "2684", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27448", "source": "2685", "target": "2689", "attributes": { "weight": 1 } }, { "key": "27450", "source": "2685", "target": "2691", "attributes": { "weight": 1 } }, { "key": "27447", "source": "2685", "target": "1530", "attributes": { "weight": 1 } }, { "key": "27449", "source": "2685", "target": "1562", "attributes": { "weight": 1 } }, { "key": "27451", "source": "2685", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27455", "source": "2686", "target": "2692", "attributes": { "weight": 1 } }, { "key": "27456", "source": "2686", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27459", "source": "2687", "target": "1530", "attributes": { "weight": 2 } }, { "key": "27460", "source": "2687", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27461", "source": "2688", "target": "2692", "attributes": { "weight": 1 } }, { "key": "27462", "source": "2688", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27466", "source": "2689", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27465", "source": "2689", "target": "2685", "attributes": { "weight": 1 } }, { "key": "37471", "source": "2689", "target": "1530", "attributes": { "weight": 1 } }, { "key": "35190", "source": "2689", "target": "1562", "attributes": { "weight": 1 } }, { "key": "27472", "source": "2690", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27471", "source": "2690", "target": "2693", "attributes": { "weight": 1 } }, { "key": "27470", "source": "2690", "target": "1562", "attributes": { "weight": 1 } }, { "key": "27475", "source": "2691", "target": "2694", "attributes": { "weight": 1 } }, { "key": "27474", "source": "2691", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27473", "source": "2691", "target": "2685", "attributes": { "weight": 1 } }, { "key": "27478", "source": "2692", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27476", "source": "2692", "target": "2686", "attributes": { "weight": 1 } }, { "key": "27477", "source": "2692", "target": "2688", "attributes": { "weight": 1 } }, { "key": "27484", "source": "2693", "target": "2695", "attributes": { "weight": 1 } }, { "key": "27483", "source": "2693", "target": "2694", "attributes": { "weight": 1 } }, { "key": "27479", "source": "2693", "target": "2684", "attributes": { "weight": 1 } }, { "key": "27480", "source": "2693", "target": "1562", "attributes": { "weight": 2 } }, { "key": "27482", "source": "2693", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27481", "source": "2693", "target": "2690", "attributes": { "weight": 1 } }, { "key": "27504", "source": "2694", "target": "2691", "attributes": { "weight": 1 } }, { "key": "27503", "source": "2694", "target": "2684", "attributes": { "weight": 1 } }, { "key": "27505", "source": "2694", "target": "2693", "attributes": { "weight": 1 } }, { "key": "27506", "source": "2694", "target": "1567", "attributes": { "weight": 1 } }, { "key": "27507", "source": "2695", "target": "2693", "attributes": { "weight": 1 } }, { "key": "27542", "source": "2696", "target": "1520", "attributes": { "weight": 1 } }, { "key": "35749", "source": "2696", "target": "136", "attributes": { "weight": 1 } }, { "key": "35748", "source": "2696", "target": "1516", "attributes": { "weight": 1 } }, { "key": "27870", "source": "2696", "target": "339", "attributes": { "weight": 1 } }, { "key": "31110", "source": "2696", "target": "1765", "attributes": { "weight": 1 } }, { "key": "31955", "source": "2696", "target": "359", "attributes": { "weight": 1 } }, { "key": "32533", "source": "2696", "target": "1555", "attributes": { "weight": 1 } }, { "key": "27569", "source": "2697", "target": "2707", "attributes": { "weight": 1 } }, { "key": "27570", "source": "2697", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27583", "source": "2698", "target": "2705", "attributes": { "weight": 1 } }, { "key": "27600", "source": "2699", "target": "564", "attributes": { "weight": 1 } }, { "key": "27601", "source": "2699", "target": "1634", "attributes": { "weight": 1 } }, { "key": "27616", "source": "2701", "target": "564", "attributes": { "weight": 1 } }, { "key": "27617", "source": "2702", "target": "2707", "attributes": { "weight": 1 } }, { "key": "27618", "source": "2702", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27620", "source": "2703", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27619", "source": "2703", "target": "2707", "attributes": { "weight": 1 } }, { "key": "27621", "source": "2704", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27624", "source": "2705", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27623", "source": "2705", "target": "2698", "attributes": { "weight": 1 } }, { "key": "27622", "source": "2705", "target": "564", "attributes": { "weight": 1 } }, { "key": "27627", "source": "2706", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27626", "source": "2706", "target": "1626", "attributes": { "weight": 1 } }, { "key": "27633", "source": "2707", "target": "2703", "attributes": { "weight": 1 } }, { "key": "27630", "source": "2707", "target": "2697", "attributes": { "weight": 1 } }, { "key": "27632", "source": "2707", "target": "2702", "attributes": { "weight": 1 } }, { "key": "27635", "source": "2707", "target": "2708", "attributes": { "weight": 1 } }, { "key": "27634", "source": "2707", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27650", "source": "2708", "target": "2707", "attributes": { "weight": 1 } }, { "key": "27651", "source": "2708", "target": "1629", "attributes": { "weight": 1 } }, { "key": "27675", "source": "2710", "target": "178", "attributes": { "weight": 1 } }, { "key": "30192", "source": "2710", "target": "165", "attributes": { "weight": 2 } }, { "key": "31201", "source": "2710", "target": "572", "attributes": { "weight": 1 } }, { "key": "27747", "source": "2711", "target": "1553", "attributes": { "weight": 1 } }, { "key": "27759", "source": "2712", "target": "638", "attributes": { "weight": 2 } }, { "key": "30999", "source": "2712", "target": "1813", "attributes": { "weight": 1 } }, { "key": "30998", "source": "2712", "target": "1809", "attributes": { "weight": 1 } }, { "key": "30997", "source": "2712", "target": "636", "attributes": { "weight": 1 } }, { "key": "27764", "source": "2713", "target": "621", "attributes": { "weight": 1 } }, { "key": "27765", "source": "2713", "target": "625", "attributes": { "weight": 1 } }, { "key": "27779", "source": "2714", "target": "2716", "attributes": { "weight": 1 } }, { "key": "27780", "source": "2714", "target": "1926", "attributes": { "weight": 1 } }, { "key": "27785", "source": "2715", "target": "1926", "attributes": { "weight": 1 } }, { "key": "27786", "source": "2716", "target": "2714", "attributes": { "weight": 1 } }, { "key": "27794", "source": "2717", "target": "1926", "attributes": { "weight": 1 } }, { "key": "27795", "source": "2718", "target": "2669", "attributes": { "weight": 1 } }, { "key": "27950", "source": "2719", "target": "328", "attributes": { "weight": 1 } }, { "key": "27949", "source": "2719", "target": "326", "attributes": { "weight": 1 } }, { "key": "28000", "source": "2720", "target": "264", "attributes": { "weight": 1 } }, { "key": "28079", "source": "2721", "target": "285", "attributes": { "weight": 1 } }, { "key": "33123", "source": "2721", "target": "294", "attributes": { "weight": 1 } }, { "key": "29574", "source": "2722", "target": "164", "attributes": { "weight": 1 } }, { "key": "28097", "source": "2722", "target": "287", "attributes": { "weight": 1 } }, { "key": "28209", "source": "2723", "target": "328", "attributes": { "weight": 2 } }, { "key": "28211", "source": "2724", "target": "308", "attributes": { "weight": 2 } }, { "key": "28215", "source": "2725", "target": "1285", "attributes": { "weight": 1 } }, { "key": "28217", "source": "2726", "target": "1245", "attributes": { "weight": 1 } }, { "key": "28216", "source": "2726", "target": "1227", "attributes": { "weight": 1 } }, { "key": "28222", "source": "2727", "target": "1285", "attributes": { "weight": 1 } }, { "key": "28243", "source": "2731", "target": "783", "attributes": { "weight": 2 } }, { "key": "28242", "source": "2731", "target": "236", "attributes": { "weight": 1 } }, { "key": "28246", "source": "2732", "target": "2752", "attributes": { "weight": 1 } }, { "key": "28248", "source": "2733", "target": "2752", "attributes": { "weight": 1 } }, { "key": "28247", "source": "2733", "target": "2737", "attributes": { "weight": 1 } }, { "key": "28251", "source": "2734", "target": "2739", "attributes": { "weight": 1 } }, { "key": "28252", "source": "2734", "target": "2746", "attributes": { "weight": 1 } }, { "key": "28253", "source": "2734", "target": "2755", "attributes": { "weight": 1 } }, { "key": "28254", "source": "2735", "target": "2738", "attributes": { "weight": 1 } }, { "key": "28255", "source": "2735", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28256", "source": "2736", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28257", "source": "2737", "target": "2733", "attributes": { "weight": 1 } }, { "key": "28258", "source": "2737", "target": "2752", "attributes": { "weight": 1 } }, { "key": "28259", "source": "2738", "target": "2735", "attributes": { "weight": 1 } }, { "key": "28260", "source": "2738", "target": "2752", "attributes": { "weight": 1 } }, { "key": "28261", "source": "2738", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28262", "source": "2739", "target": "2734", "attributes": { "weight": 1 } }, { "key": "28263", "source": "2739", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28264", "source": "2740", "target": "2741", "attributes": { "weight": 1 } }, { "key": "28266", "source": "2740", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28265", "source": "2740", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28267", "source": "2741", "target": "2740", "attributes": { "weight": 1 } }, { "key": "28268", "source": "2741", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28269", "source": "2742", "target": "2746", "attributes": { "weight": 1 } }, { "key": "28270", "source": "2742", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28272", "source": "2743", "target": "2754", "attributes": { "weight": 1 } }, { "key": "28273", "source": "2743", "target": "2758", "attributes": { "weight": 1 } }, { "key": "28271", "source": "2743", "target": "2748", "attributes": { "weight": 1 } }, { "key": "28274", "source": "2744", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28799", "source": "2745", "target": "1146", "attributes": { "weight": 2 } }, { "key": "30242", "source": "2745", "target": "310", "attributes": { "weight": 2 } }, { "key": "31076", "source": "2745", "target": "1280", "attributes": { "weight": 1 } }, { "key": "31075", "source": "2745", "target": "170", "attributes": { "weight": 1 } }, { "key": "31079", "source": "2745", "target": "3041", "attributes": { "weight": 1 } }, { "key": "31078", "source": "2745", "target": "1299", "attributes": { "weight": 1 } }, { "key": "31077", "source": "2745", "target": "580", "attributes": { "weight": 1 } }, { "key": "28275", "source": "2745", "target": "2228", "attributes": { "weight": 2 } }, { "key": "30241", "source": "2745", "target": "1166", "attributes": { "weight": 2 } }, { "key": "28279", "source": "2746", "target": "2751", "attributes": { "weight": 1 } }, { "key": "28280", "source": "2746", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28276", "source": "2746", "target": "2734", "attributes": { "weight": 1 } }, { "key": "28278", "source": "2746", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28277", "source": "2746", "target": "2742", "attributes": { "weight": 1 } }, { "key": "28281", "source": "2747", "target": "2755", "attributes": { "weight": 1 } }, { "key": "28282", "source": "2747", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28283", "source": "2748", "target": "2743", "attributes": { "weight": 1 } }, { "key": "28285", "source": "2748", "target": "2754", "attributes": { "weight": 1 } }, { "key": "28284", "source": "2748", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28294", "source": "2749", "target": "2757", "attributes": { "weight": 1 } }, { "key": "28289", "source": "2749", "target": "2744", "attributes": { "weight": 1 } }, { "key": "28287", "source": "2749", "target": "2740", "attributes": { "weight": 1 } }, { "key": "28292", "source": "2749", "target": "2750", "attributes": { "weight": 1 } }, { "key": "28291", "source": "2749", "target": "2748", "attributes": { "weight": 1 } }, { "key": "28293", "source": "2749", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28288", "source": "2749", "target": "2741", "attributes": { "weight": 1 } }, { "key": "28295", "source": "2749", "target": "2758", "attributes": { "weight": 1 } }, { "key": "28286", "source": "2749", "target": "1166", "attributes": { "weight": 2 } }, { "key": "28290", "source": "2749", "target": "2746", "attributes": { "weight": 1 } }, { "key": "28296", "source": "2750", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28298", "source": "2751", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28297", "source": "2751", "target": "2746", "attributes": { "weight": 1 } }, { "key": "28304", "source": "2752", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28300", "source": "2752", "target": "2732", "attributes": { "weight": 1 } }, { "key": "28302", "source": "2752", "target": "2737", "attributes": { "weight": 1 } }, { "key": "28303", "source": "2752", "target": "2738", "attributes": { "weight": 1 } }, { "key": "28301", "source": "2752", "target": "2733", "attributes": { "weight": 1 } }, { "key": "28305", "source": "2753", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28306", "source": "2754", "target": "2743", "attributes": { "weight": 1 } }, { "key": "28307", "source": "2754", "target": "2748", "attributes": { "weight": 1 } }, { "key": "28308", "source": "2754", "target": "2758", "attributes": { "weight": 1 } }, { "key": "28310", "source": "2755", "target": "2747", "attributes": { "weight": 1 } }, { "key": "28309", "source": "2755", "target": "2734", "attributes": { "weight": 1 } }, { "key": "28311", "source": "2755", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28330", "source": "2756", "target": "2228", "attributes": { "weight": 1 } }, { "key": "28331", "source": "2757", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28332", "source": "2758", "target": "2743", "attributes": { "weight": 1 } }, { "key": "28333", "source": "2758", "target": "2749", "attributes": { "weight": 1 } }, { "key": "28334", "source": "2758", "target": "2754", "attributes": { "weight": 1 } }, { "key": "28352", "source": "2759", "target": "1822", "attributes": { "weight": 2 } }, { "key": "28351", "source": "2759", "target": "698", "attributes": { "weight": 2 } }, { "key": "28363", "source": "2760", "target": "707", "attributes": { "weight": 1 } }, { "key": "28398", "source": "2761", "target": "1822", "attributes": { "weight": 2 } }, { "key": "28406", "source": "2762", "target": "707", "attributes": { "weight": 1 } }, { "key": "28407", "source": "2763", "target": "707", "attributes": { "weight": 1 } }, { "key": "28427", "source": "2764", "target": "707", "attributes": { "weight": 1 } }, { "key": "28465", "source": "2765", "target": "707", "attributes": { "weight": 1 } }, { "key": "28466", "source": "2766", "target": "707", "attributes": { "weight": 1 } }, { "key": "28479", "source": "2767", "target": "707", "attributes": { "weight": 1 } }, { "key": "28488", "source": "2768", "target": "1191", "attributes": { "weight": 1 } }, { "key": "28489", "source": "2768", "target": "707", "attributes": { "weight": 1 } }, { "key": "28494", "source": "2769", "target": "707", "attributes": { "weight": 1 } }, { "key": "28499", "source": "2770", "target": "698", "attributes": { "weight": 1 } }, { "key": "28500", "source": "2770", "target": "1822", "attributes": { "weight": 2 } }, { "key": "28501", "source": "2771", "target": "707", "attributes": { "weight": 1 } }, { "key": "28503", "source": "2772", "target": "1191", "attributes": { "weight": 1 } }, { "key": "28504", "source": "2772", "target": "707", "attributes": { "weight": 1 } }, { "key": "28508", "source": "2773", "target": "604", "attributes": { "weight": 1 } }, { "key": "28509", "source": "2773", "target": "2777", "attributes": { "weight": 1 } }, { "key": "28515", "source": "2774", "target": "1484", "attributes": { "weight": 1 } }, { "key": "28514", "source": "2774", "target": "2777", "attributes": { "weight": 1 } }, { "key": "28519", "source": "2775", "target": "607", "attributes": { "weight": 1 } }, { "key": "28520", "source": "2775", "target": "1492", "attributes": { "weight": 1 } }, { "key": "28521", "source": "2776", "target": "604", "attributes": { "weight": 1 } }, { "key": "28524", "source": "2777", "target": "1454", "attributes": { "weight": 1 } }, { "key": "28523", "source": "2777", "target": "2774", "attributes": { "weight": 1 } }, { "key": "28522", "source": "2777", "target": "2773", "attributes": { "weight": 1 } }, { "key": "28532", "source": "2778", "target": "2775", "attributes": { "weight": 1 } }, { "key": "28533", "source": "2779", "target": "1492", "attributes": { "weight": 1 } }, { "key": "28540", "source": "2780", "target": "123", "attributes": { "weight": 2 } }, { "key": "28537", "source": "2780", "target": "199", "attributes": { "weight": 1 } }, { "key": "28541", "source": "2780", "target": "215", "attributes": { "weight": 1 } }, { "key": "28542", "source": "2780", "target": "218", "attributes": { "weight": 1 } }, { "key": "33849", "source": "2780", "target": "1233", "attributes": { "weight": 1 } }, { "key": "28539", "source": "2780", "target": "1279", "attributes": { "weight": 1 } }, { "key": "28536", "source": "2780", "target": "913", "attributes": { "weight": 1 } }, { "key": "28538", "source": "2780", "target": "208", "attributes": { "weight": 1 } }, { "key": "28535", "source": "2780", "target": "938", "attributes": { "weight": 1 } }, { "key": "28579", "source": "2781", "target": "199", "attributes": { "weight": 1 } }, { "key": "28580", "source": "2781", "target": "208", "attributes": { "weight": 1 } }, { "key": "28581", "source": "2781", "target": "1279", "attributes": { "weight": 1 } }, { "key": "29753", "source": "2782", "target": "1253", "attributes": { "weight": 1 } }, { "key": "28638", "source": "2782", "target": "421", "attributes": { "weight": 2 } }, { "key": "29752", "source": "2782", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29751", "source": "2782", "target": "2463", "attributes": { "weight": 1 } }, { "key": "29754", "source": "2782", "target": "2888", "attributes": { "weight": 1 } }, { "key": "28663", "source": "2783", "target": "1711", "attributes": { "weight": 1 } }, { "key": "28690", "source": "2784", "target": "1711", "attributes": { "weight": 1 } }, { "key": "28691", "source": "2784", "target": "56", "attributes": { "weight": 1 } }, { "key": "28689", "source": "2784", "target": "54", "attributes": { "weight": 1 } }, { "key": "28699", "source": "2785", "target": "1512", "attributes": { "weight": 1 } }, { "key": "28712", "source": "2786", "target": "2789", "attributes": { "weight": 1 } }, { "key": "28713", "source": "2787", "target": "2789", "attributes": { "weight": 1 } }, { "key": "28715", "source": "2788", "target": "2789", "attributes": { "weight": 1 } }, { "key": "28719", "source": "2789", "target": "2349", "attributes": { "weight": 1 } }, { "key": "28720", "source": "2789", "target": "2788", "attributes": { "weight": 1 } }, { "key": "28717", "source": "2789", "target": "2786", "attributes": { "weight": 1 } }, { "key": "28718", "source": "2789", "target": "2787", "attributes": { "weight": 1 } }, { "key": "35365", "source": "2790", "target": "2792", "attributes": { "weight": 1 } }, { "key": "28746", "source": "2790", "target": "173", "attributes": { "weight": 2 } }, { "key": "28748", "source": "2791", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28749", "source": "2791", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28750", "source": "2791", "target": "2120", "attributes": { "weight": 1 } }, { "key": "35368", "source": "2792", "target": "2790", "attributes": { "weight": 1 } }, { "key": "28757", "source": "2792", "target": "173", "attributes": { "weight": 2 } }, { "key": "28772", "source": "2793", "target": "1166", "attributes": { "weight": 3 } }, { "key": "30182", "source": "2793", "target": "2934", "attributes": { "weight": 1 } }, { "key": "30183", "source": "2793", "target": "1341", "attributes": { "weight": 1 } }, { "key": "28774", "source": "2794", "target": "173", "attributes": { "weight": 2 } }, { "key": "28777", "source": "2795", "target": "173", "attributes": { "weight": 2 } }, { "key": "35373", "source": "2795", "target": "2816", "attributes": { "weight": 1 } }, { "key": "28778", "source": "2796", "target": "173", "attributes": { "weight": 3 } }, { "key": "28780", "source": "2797", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28779", "source": "2797", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28781", "source": "2798", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28783", "source": "2799", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28785", "source": "2799", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28782", "source": "2799", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28784", "source": "2799", "target": "2812", "attributes": { "weight": 1 } }, { "key": "28786", "source": "2800", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28788", "source": "2801", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28787", "source": "2801", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28789", "source": "2802", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28790", "source": "2803", "target": "173", "attributes": { "weight": 3 } }, { "key": "35376", "source": "2803", "target": "297", "attributes": { "weight": 1 } }, { "key": "30216", "source": "2803", "target": "1143", "attributes": { "weight": 1 } }, { "key": "28791", "source": "2804", "target": "1146", "attributes": { "weight": 1 } }, { "key": "30217", "source": "2805", "target": "2958", "attributes": { "weight": 2 } }, { "key": "28792", "source": "2805", "target": "173", "attributes": { "weight": 4 } }, { "key": "30218", "source": "2805", "target": "165", "attributes": { "weight": 2 } }, { "key": "28795", "source": "2806", "target": "173", "attributes": { "weight": 3 } }, { "key": "28797", "source": "2807", "target": "1166", "attributes": { "weight": 1 } }, { "key": "28798", "source": "2807", "target": "310", "attributes": { "weight": 1 } }, { "key": "28796", "source": "2807", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28802", "source": "2808", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28801", "source": "2808", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28800", "source": "2808", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28804", "source": "2809", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28805", "source": "2809", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28803", "source": "2809", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28808", "source": "2810", "target": "2812", "attributes": { "weight": 1 } }, { "key": "28806", "source": "2810", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28809", "source": "2810", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28807", "source": "2810", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28810", "source": "2811", "target": "173", "attributes": { "weight": 3 } }, { "key": "28823", "source": "2812", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28822", "source": "2812", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28826", "source": "2812", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28825", "source": "2812", "target": "2810", "attributes": { "weight": 1 } }, { "key": "28824", "source": "2812", "target": "2799", "attributes": { "weight": 1 } }, { "key": "28828", "source": "2813", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28827", "source": "2813", "target": "1146", "attributes": { "weight": 1 } }, { "key": "30257", "source": "2814", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30258", "source": "2814", "target": "2968", "attributes": { "weight": 1 } }, { "key": "28829", "source": "2814", "target": "310", "attributes": { "weight": 3 } }, { "key": "28834", "source": "2815", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28833", "source": "2815", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28835", "source": "2815", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28836", "source": "2816", "target": "173", "attributes": { "weight": 2 } }, { "key": "28844", "source": "2817", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28847", "source": "2818", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28846", "source": "2818", "target": "1178", "attributes": { "weight": 1 } }, { "key": "28845", "source": "2818", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28849", "source": "2819", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28848", "source": "2819", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28850", "source": "2820", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28851", "source": "2821", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28870", "source": "2822", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28869", "source": "2822", "target": "1146", "attributes": { "weight": 1 } }, { "key": "28871", "source": "2823", "target": "2120", "attributes": { "weight": 1 } }, { "key": "28876", "source": "2824", "target": "35", "attributes": { "weight": 1 } }, { "key": "28877", "source": "2825", "target": "35", "attributes": { "weight": 2 } }, { "key": "37424", "source": "2826", "target": "1105", "attributes": { "weight": 1 } }, { "key": "28912", "source": "2826", "target": "1349", "attributes": { "weight": 2 } }, { "key": "28911", "source": "2826", "target": "1099", "attributes": { "weight": 2 } }, { "key": "28910", "source": "2826", "target": "1096", "attributes": { "weight": 1 } }, { "key": "28938", "source": "2827", "target": "595", "attributes": { "weight": 2 } }, { "key": "33779", "source": "2827", "target": "14", "attributes": { "weight": 1 } }, { "key": "28937", "source": "2827", "target": "8", "attributes": { "weight": 2 } }, { "key": "28947", "source": "2828", "target": "479", "attributes": { "weight": 1 } }, { "key": "33811", "source": "2828", "target": "89", "attributes": { "weight": 1 } }, { "key": "31689", "source": "2828", "target": "595", "attributes": { "weight": 1 } }, { "key": "30930", "source": "2828", "target": "3", "attributes": { "weight": 2 } }, { "key": "31688", "source": "2828", "target": "8", "attributes": { "weight": 1 } }, { "key": "28996", "source": "2829", "target": "2830", "attributes": { "weight": 1 } }, { "key": "28997", "source": "2829", "target": "2225", "attributes": { "weight": 1 } }, { "key": "28995", "source": "2829", "target": "1166", "attributes": { "weight": 1 } }, { "key": "34515", "source": "2830", "target": "3149", "attributes": { "weight": 1 } }, { "key": "28998", "source": "2830", "target": "2829", "attributes": { "weight": 1 } }, { "key": "34514", "source": "2830", "target": "1227", "attributes": { "weight": 1 } }, { "key": "28999", "source": "2830", "target": "2225", "attributes": { "weight": 1 } }, { "key": "34962", "source": "2831", "target": "3", "attributes": { "weight": 2 } }, { "key": "29842", "source": "2831", "target": "791", "attributes": { "weight": 3 } }, { "key": "37409", "source": "2831", "target": "693", "attributes": { "weight": 1 } }, { "key": "37408", "source": "2831", "target": "1136", "attributes": { "weight": 1 } }, { "key": "29024", "source": "2831", "target": "495", "attributes": { "weight": 2 } }, { "key": "31586", "source": "2831", "target": "595", "attributes": { "weight": 1 } }, { "key": "29843", "source": "2831", "target": "1024", "attributes": { "weight": 2 } }, { "key": "29844", "source": "2831", "target": "340", "attributes": { "weight": 1 } }, { "key": "37410", "source": "2831", "target": "673", "attributes": { "weight": 1 } }, { "key": "29115", "source": "2832", "target": "500", "attributes": { "weight": 1 } }, { "key": "29190", "source": "2833", "target": "602", "attributes": { "weight": 1 } }, { "key": "29225", "source": "2834", "target": "1550", "attributes": { "weight": 1 } }, { "key": "29226", "source": "2835", "target": "1995", "attributes": { "weight": 1 } }, { "key": "29234", "source": "2836", "target": "1550", "attributes": { "weight": 1 } }, { "key": "29235", "source": "2837", "target": "1550", "attributes": { "weight": 1 } }, { "key": "29244", "source": "2839", "target": "1552", "attributes": { "weight": 1 } }, { "key": "29245", "source": "2839", "target": "2841", "attributes": { "weight": 1 } }, { "key": "29243", "source": "2839", "target": "779", "attributes": { "weight": 1 } }, { "key": "29246", "source": "2840", "target": "1552", "attributes": { "weight": 1 } }, { "key": "29250", "source": "2841", "target": "2839", "attributes": { "weight": 1 } }, { "key": "29249", "source": "2841", "target": "912", "attributes": { "weight": 1 } }, { "key": "29253", "source": "2842", "target": "2628", "attributes": { "weight": 1 } }, { "key": "30108", "source": "2843", "target": "2947", "attributes": { "weight": 1 } }, { "key": "29271", "source": "2843", "target": "160", "attributes": { "weight": 2 } }, { "key": "29274", "source": "2844", "target": "1416", "attributes": { "weight": 1 } }, { "key": "29275", "source": "2844", "target": "160", "attributes": { "weight": 1 } }, { "key": "29272", "source": "2844", "target": "1393", "attributes": { "weight": 1 } }, { "key": "29273", "source": "2844", "target": "149", "attributes": { "weight": 1 } }, { "key": "29282", "source": "2845", "target": "1400", "attributes": { "weight": 1 } }, { "key": "29284", "source": "2845", "target": "1428", "attributes": { "weight": 1 } }, { "key": "29283", "source": "2845", "target": "1425", "attributes": { "weight": 1 } }, { "key": "29300", "source": "2846", "target": "1424", "attributes": { "weight": 1 } }, { "key": "29299", "source": "2846", "target": "1423", "attributes": { "weight": 1 } }, { "key": "29298", "source": "2846", "target": "2847", "attributes": { "weight": 1 } }, { "key": "29301", "source": "2847", "target": "2846", "attributes": { "weight": 1 } }, { "key": "36417", "source": "2847", "target": "2945", "attributes": { "weight": 1 } }, { "key": "29302", "source": "2847", "target": "1423", "attributes": { "weight": 1 } }, { "key": "29304", "source": "2848", "target": "158", "attributes": { "weight": 1 } }, { "key": "29303", "source": "2848", "target": "1350", "attributes": { "weight": 1 } }, { "key": "29305", "source": "2849", "target": "2853", "attributes": { "weight": 2 } }, { "key": "29306", "source": "2849", "target": "1423", "attributes": { "weight": 2 } }, { "key": "29308", "source": "2850", "target": "2853", "attributes": { "weight": 2 } }, { "key": "36418", "source": "2850", "target": "2854", "attributes": { "weight": 1 } }, { "key": "29307", "source": "2850", "target": "2852", "attributes": { "weight": 1 } }, { "key": "29310", "source": "2851", "target": "1396", "attributes": { "weight": 1 } }, { "key": "29311", "source": "2852", "target": "2850", "attributes": { "weight": 1 } }, { "key": "36426", "source": "2852", "target": "3308", "attributes": { "weight": 1 } }, { "key": "29312", "source": "2852", "target": "2854", "attributes": { "weight": 2 } }, { "key": "29313", "source": "2853", "target": "2849", "attributes": { "weight": 2 } }, { "key": "29314", "source": "2853", "target": "2850", "attributes": { "weight": 2 } }, { "key": "29315", "source": "2854", "target": "2852", "attributes": { "weight": 2 } }, { "key": "29316", "source": "2854", "target": "1423", "attributes": { "weight": 1 } }, { "key": "36431", "source": "2854", "target": "2850", "attributes": { "weight": 1 } }, { "key": "29328", "source": "2855", "target": "158", "attributes": { "weight": 1 } }, { "key": "29329", "source": "2855", "target": "1423", "attributes": { "weight": 1 } }, { "key": "29359", "source": "2856", "target": "857", "attributes": { "weight": 2 } }, { "key": "29361", "source": "2856", "target": "232", "attributes": { "weight": 2 } }, { "key": "32305", "source": "2856", "target": "791", "attributes": { "weight": 1 } }, { "key": "37059", "source": "2856", "target": "220", "attributes": { "weight": 1 } }, { "key": "29360", "source": "2856", "target": "183", "attributes": { "weight": 1 } }, { "key": "32311", "source": "2857", "target": "791", "attributes": { "weight": 1 } }, { "key": "29372", "source": "2857", "target": "232", "attributes": { "weight": 1 } }, { "key": "32310", "source": "2857", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32339", "source": "2858", "target": "791", "attributes": { "weight": 1 } }, { "key": "29393", "source": "2858", "target": "232", "attributes": { "weight": 1 } }, { "key": "29405", "source": "2859", "target": "232", "attributes": { "weight": 1 } }, { "key": "32346", "source": "2860", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32347", "source": "2860", "target": "791", "attributes": { "weight": 1 } }, { "key": "29406", "source": "2860", "target": "232", "attributes": { "weight": 1 } }, { "key": "29429", "source": "2861", "target": "857", "attributes": { "weight": 1 } }, { "key": "29430", "source": "2861", "target": "861", "attributes": { "weight": 1 } }, { "key": "37100", "source": "2861", "target": "1060", "attributes": { "weight": 1 } }, { "key": "29431", "source": "2861", "target": "232", "attributes": { "weight": 2 } }, { "key": "37099", "source": "2861", "target": "2115", "attributes": { "weight": 1 } }, { "key": "32392", "source": "2861", "target": "2211", "attributes": { "weight": 1 } }, { "key": "37098", "source": "2861", "target": "359", "attributes": { "weight": 1 } }, { "key": "32393", "source": "2861", "target": "791", "attributes": { "weight": 1 } }, { "key": "29433", "source": "2862", "target": "232", "attributes": { "weight": 1 } }, { "key": "32536", "source": "2862", "target": "791", "attributes": { "weight": 1 } }, { "key": "32535", "source": "2862", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32547", "source": "2863", "target": "791", "attributes": { "weight": 1 } }, { "key": "29435", "source": "2863", "target": "232", "attributes": { "weight": 2 } }, { "key": "29439", "source": "2864", "target": "857", "attributes": { "weight": 1 } }, { "key": "32568", "source": "2864", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29440", "source": "2864", "target": "232", "attributes": { "weight": 2 } }, { "key": "32569", "source": "2864", "target": "791", "attributes": { "weight": 1 } }, { "key": "29442", "source": "2865", "target": "232", "attributes": { "weight": 1 } }, { "key": "32570", "source": "2865", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32571", "source": "2865", "target": "791", "attributes": { "weight": 1 } }, { "key": "32574", "source": "2866", "target": "791", "attributes": { "weight": 1 } }, { "key": "29443", "source": "2866", "target": "232", "attributes": { "weight": 1 } }, { "key": "32578", "source": "2867", "target": "791", "attributes": { "weight": 1 } }, { "key": "29444", "source": "2867", "target": "232", "attributes": { "weight": 1 } }, { "key": "29528", "source": "2868", "target": "232", "attributes": { "weight": 2 } }, { "key": "32622", "source": "2868", "target": "791", "attributes": { "weight": 1 } }, { "key": "29527", "source": "2868", "target": "856", "attributes": { "weight": 1 } }, { "key": "32621", "source": "2868", "target": "2211", "attributes": { "weight": 1 } }, { "key": "29529", "source": "2869", "target": "857", "attributes": { "weight": 1 } }, { "key": "29530", "source": "2869", "target": "232", "attributes": { "weight": 2 } }, { "key": "32623", "source": "2869", "target": "791", "attributes": { "weight": 1 } }, { "key": "29572", "source": "2870", "target": "164", "attributes": { "weight": 1 } }, { "key": "29575", "source": "2871", "target": "164", "attributes": { "weight": 1 } }, { "key": "29576", "source": "2872", "target": "164", "attributes": { "weight": 1 } }, { "key": "29584", "source": "2873", "target": "1966", "attributes": { "weight": 1 } }, { "key": "29583", "source": "2873", "target": "169", "attributes": { "weight": 1 } }, { "key": "29585", "source": "2874", "target": "25", "attributes": { "weight": 2 } }, { "key": "29586", "source": "2875", "target": "25", "attributes": { "weight": 2 } }, { "key": "29587", "source": "2876", "target": "25", "attributes": { "weight": 2 } }, { "key": "29588", "source": "2877", "target": "25", "attributes": { "weight": 2 } }, { "key": "30610", "source": "2878", "target": "352", "attributes": { "weight": 1 } }, { "key": "30608", "source": "2878", "target": "19", "attributes": { "weight": 1 } }, { "key": "30609", "source": "2878", "target": "1965", "attributes": { "weight": 1 } }, { "key": "29589", "source": "2878", "target": "25", "attributes": { "weight": 2 } }, { "key": "29590", "source": "2879", "target": "25", "attributes": { "weight": 1 } }, { "key": "29599", "source": "2880", "target": "1424", "attributes": { "weight": 1 } }, { "key": "29598", "source": "2880", "target": "154", "attributes": { "weight": 1 } }, { "key": "29597", "source": "2880", "target": "1350", "attributes": { "weight": 1 } }, { "key": "29613", "source": "2881", "target": "2116", "attributes": { "weight": 1 } }, { "key": "29612", "source": "2881", "target": "421", "attributes": { "weight": 1 } }, { "key": "29616", "source": "2882", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29617", "source": "2883", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29618", "source": "2883", "target": "794", "attributes": { "weight": 1 } }, { "key": "29624", "source": "2884", "target": "2116", "attributes": { "weight": 1 } }, { "key": "29625", "source": "2884", "target": "2890", "attributes": { "weight": 1 } }, { "key": "29626", "source": "2885", "target": "421", "attributes": { "weight": 1 } }, { "key": "29629", "source": "2886", "target": "2892", "attributes": { "weight": 1 } }, { "key": "29627", "source": "2886", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29628", "source": "2886", "target": "362", "attributes": { "weight": 1 } }, { "key": "29656", "source": "2887", "target": "421", "attributes": { "weight": 1 } }, { "key": "29713", "source": "2888", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29714", "source": "2888", "target": "2782", "attributes": { "weight": 1 } }, { "key": "29731", "source": "2889", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29732", "source": "2890", "target": "2884", "attributes": { "weight": 1 } }, { "key": "29733", "source": "2890", "target": "2465", "attributes": { "weight": 1 } }, { "key": "29737", "source": "2891", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29736", "source": "2891", "target": "1036", "attributes": { "weight": 1 } }, { "key": "29738", "source": "2891", "target": "1253", "attributes": { "weight": 1 } }, { "key": "29760", "source": "2892", "target": "2465", "attributes": { "weight": 1 } }, { "key": "29758", "source": "2892", "target": "362", "attributes": { "weight": 1 } }, { "key": "29757", "source": "2892", "target": "1763", "attributes": { "weight": 1 } }, { "key": "29759", "source": "2892", "target": "794", "attributes": { "weight": 1 } }, { "key": "29756", "source": "2892", "target": "2886", "attributes": { "weight": 1 } }, { "key": "29755", "source": "2892", "target": "2882", "attributes": { "weight": 1 } }, { "key": "30098", "source": "2893", "target": "2898", "attributes": { "weight": 1 } }, { "key": "29769", "source": "2893", "target": "1281", "attributes": { "weight": 2 } }, { "key": "29772", "source": "2894", "target": "1281", "attributes": { "weight": 2 } }, { "key": "29782", "source": "2895", "target": "1281", "attributes": { "weight": 1 } }, { "key": "29783", "source": "2896", "target": "1281", "attributes": { "weight": 2 } }, { "key": "29784", "source": "2897", "target": "1281", "attributes": { "weight": 2 } }, { "key": "29785", "source": "2898", "target": "1281", "attributes": { "weight": 2 } }, { "key": "30105", "source": "2898", "target": "2893", "attributes": { "weight": 1 } }, { "key": "29800", "source": "2899", "target": "93", "attributes": { "weight": 1 } }, { "key": "29807", "source": "2900", "target": "100", "attributes": { "weight": 1 } }, { "key": "29812", "source": "2901", "target": "93", "attributes": { "weight": 1 } }, { "key": "29855", "source": "2902", "target": "1024", "attributes": { "weight": 2 } }, { "key": "29922", "source": "2903", "target": "562", "attributes": { "weight": 1 } }, { "key": "29923", "source": "2904", "target": "2625", "attributes": { "weight": 1 } }, { "key": "29935", "source": "2905", "target": "1527", "attributes": { "weight": 1 } }, { "key": "29938", "source": "2906", "target": "1527", "attributes": { "weight": 1 } }, { "key": "29941", "source": "2907", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29943", "source": "2908", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29959", "source": "2909", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29989", "source": "2910", "target": "1952", "attributes": { "weight": 1 } }, { "key": "29990", "source": "2910", "target": "1958", "attributes": { "weight": 1 } }, { "key": "29988", "source": "2910", "target": "1947", "attributes": { "weight": 1 } }, { "key": "29991", "source": "2911", "target": "1952", "attributes": { "weight": 1 } }, { "key": "30011", "source": "2912", "target": "1611", "attributes": { "weight": 1 } }, { "key": "30010", "source": "2912", "target": "2916", "attributes": { "weight": 1 } }, { "key": "30014", "source": "2914", "target": "2917", "attributes": { "weight": 1 } }, { "key": "30013", "source": "2914", "target": "1042", "attributes": { "weight": 1 } }, { "key": "30015", "source": "2914", "target": "1611", "attributes": { "weight": 1 } }, { "key": "30017", "source": "2915", "target": "1611", "attributes": { "weight": 1 } }, { "key": "30016", "source": "2915", "target": "2918", "attributes": { "weight": 1 } }, { "key": "30018", "source": "2916", "target": "2912", "attributes": { "weight": 1 } }, { "key": "30019", "source": "2916", "target": "667", "attributes": { "weight": 1 } }, { "key": "30020", "source": "2917", "target": "2914", "attributes": { "weight": 1 } }, { "key": "30021", "source": "2917", "target": "1611", "attributes": { "weight": 1 } }, { "key": "30023", "source": "2918", "target": "1611", "attributes": { "weight": 1 } }, { "key": "30022", "source": "2918", "target": "2915", "attributes": { "weight": 1 } }, { "key": "30040", "source": "2922", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30041", "source": "2923", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30042", "source": "2923", "target": "2930", "attributes": { "weight": 1 } }, { "key": "30043", "source": "2924", "target": "2925", "attributes": { "weight": 1 } }, { "key": "30044", "source": "2924", "target": "2927", "attributes": { "weight": 1 } }, { "key": "30048", "source": "2925", "target": "2934", "attributes": { "weight": 1 } }, { "key": "30047", "source": "2925", "target": "2924", "attributes": { "weight": 1 } }, { "key": "30049", "source": "2926", "target": "2931", "attributes": { "weight": 1 } }, { "key": "30050", "source": "2926", "target": "2937", "attributes": { "weight": 1 } }, { "key": "30052", "source": "2927", "target": "2943", "attributes": { "weight": 1 } }, { "key": "30051", "source": "2927", "target": "2924", "attributes": { "weight": 1 } }, { "key": "30053", "source": "2928", "target": "2939", "attributes": { "weight": 1 } }, { "key": "30054", "source": "2928", "target": "2944", "attributes": { "weight": 1 } }, { "key": "30190", "source": "2929", "target": "2938", "attributes": { "weight": 1 } }, { "key": "30064", "source": "2929", "target": "2940", "attributes": { "weight": 1 } }, { "key": "30065", "source": "2929", "target": "2941", "attributes": { "weight": 1 } }, { "key": "30189", "source": "2929", "target": "1166", "attributes": { "weight": 1 } }, { "key": "30066", "source": "2930", "target": "2933", "attributes": { "weight": 1 } }, { "key": "30068", "source": "2931", "target": "2934", "attributes": { "weight": 1 } }, { "key": "30067", "source": "2931", "target": "2926", "attributes": { "weight": 1 } }, { "key": "30069", "source": "2931", "target": "2937", "attributes": { "weight": 1 } }, { "key": "30071", "source": "2932", "target": "2935", "attributes": { "weight": 1 } }, { "key": "30070", "source": "2932", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30073", "source": "2933", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30072", "source": "2933", "target": "2923", "attributes": { "weight": 1 } }, { "key": "30074", "source": "2934", "target": "2925", "attributes": { "weight": 1 } }, { "key": "30211", "source": "2934", "target": "165", "attributes": { "weight": 2 } }, { "key": "30076", "source": "2934", "target": "2931", "attributes": { "weight": 1 } }, { "key": "30075", "source": "2934", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30209", "source": "2934", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30213", "source": "2934", "target": "1341", "attributes": { "weight": 2 } }, { "key": "37545", "source": "2934", "target": "3396", "attributes": { "weight": 1 } }, { "key": "30210", "source": "2934", "target": "2793", "attributes": { "weight": 1 } }, { "key": "30212", "source": "2934", "target": "1996", "attributes": { "weight": 2 } }, { "key": "30077", "source": "2935", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30078", "source": "2935", "target": "2932", "attributes": { "weight": 1 } }, { "key": "30079", "source": "2936", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30080", "source": "2936", "target": "2937", "attributes": { "weight": 1 } }, { "key": "30083", "source": "2937", "target": "2936", "attributes": { "weight": 1 } }, { "key": "30081", "source": "2937", "target": "2926", "attributes": { "weight": 1 } }, { "key": "30082", "source": "2937", "target": "2931", "attributes": { "weight": 1 } }, { "key": "30259", "source": "2938", "target": "2929", "attributes": { "weight": 1 } }, { "key": "30084", "source": "2938", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30085", "source": "2939", "target": "2928", "attributes": { "weight": 1 } }, { "key": "30086", "source": "2939", "target": "2940", "attributes": { "weight": 1 } }, { "key": "30088", "source": "2940", "target": "1166", "attributes": { "weight": 1 } }, { "key": "30091", "source": "2940", "target": "310", "attributes": { "weight": 1 } }, { "key": "30089", "source": "2940", "target": "2929", "attributes": { "weight": 1 } }, { "key": "30090", "source": "2940", "target": "2939", "attributes": { "weight": 1 } }, { "key": "30093", "source": "2941", "target": "2943", "attributes": { "weight": 1 } }, { "key": "30092", "source": "2941", "target": "2929", "attributes": { "weight": 1 } }, { "key": "30094", "source": "2942", "target": "1187", "attributes": { "weight": 2 } }, { "key": "30096", "source": "2943", "target": "2941", "attributes": { "weight": 1 } }, { "key": "30095", "source": "2943", "target": "2927", "attributes": { "weight": 1 } }, { "key": "30097", "source": "2944", "target": "2928", "attributes": { "weight": 1 } }, { "key": "36425", "source": "2945", "target": "3310", "attributes": { "weight": 1 } }, { "key": "36423", "source": "2945", "target": "2847", "attributes": { "weight": 1 } }, { "key": "36424", "source": "2945", "target": "3307", "attributes": { "weight": 1 } }, { "key": "30109", "source": "2945", "target": "2948", "attributes": { "weight": 1 } }, { "key": "30110", "source": "2946", "target": "160", "attributes": { "weight": 2 } }, { "key": "36427", "source": "2946", "target": "3307", "attributes": { "weight": 1 } }, { "key": "36428", "source": "2946", "target": "3309", "attributes": { "weight": 1 } }, { "key": "30111", "source": "2946", "target": "2948", "attributes": { "weight": 2 } }, { "key": "30113", "source": "2947", "target": "160", "attributes": { "weight": 1 } }, { "key": "30112", "source": "2947", "target": "2843", "attributes": { "weight": 1 } }, { "key": "30118", "source": "2948", "target": "2945", "attributes": { "weight": 1 } }, { "key": "36434", "source": "2948", "target": "3307", "attributes": { "weight": 1 } }, { "key": "30119", "source": "2948", "target": "2946", "attributes": { "weight": 2 } }, { "key": "36435", "source": "2948", "target": "160", "attributes": { "weight": 1 } }, { "key": "36436", "source": "2948", "target": "3309", "attributes": { "weight": 1 } }, { "key": "30124", "source": "2949", "target": "1804", "attributes": { "weight": 1 } }, { "key": "30129", "source": "2950", "target": "1555", "attributes": { "weight": 1 } }, { "key": "30130", "source": "2950", "target": "1557", "attributes": { "weight": 1 } }, { "key": "30132", "source": "2951", "target": "1557", "attributes": { "weight": 1 } }, { "key": "30135", "source": "2952", "target": "1557", "attributes": { "weight": 1 } }, { "key": "37523", "source": "2953", "target": "297", "attributes": { "weight": 1 } }, { "key": "30137", "source": "2953", "target": "310", "attributes": { "weight": 3 } }, { "key": "30143", "source": "2954", "target": "310", "attributes": { "weight": 2 } }, { "key": "30153", "source": "2955", "target": "2969", "attributes": { "weight": 1 } }, { "key": "30154", "source": "2956", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30155", "source": "2957", "target": "2969", "attributes": { "weight": 1 } }, { "key": "30157", "source": "2958", "target": "165", "attributes": { "weight": 2 } }, { "key": "30161", "source": "2958", "target": "173", "attributes": { "weight": 2 } }, { "key": "30156", "source": "2958", "target": "1166", "attributes": { "weight": 1 } }, { "key": "30158", "source": "2958", "target": "2805", "attributes": { "weight": 2 } }, { "key": "30159", "source": "2958", "target": "2967", "attributes": { "weight": 2 } }, { "key": "30162", "source": "2958", "target": "310", "attributes": { "weight": 1 } }, { "key": "30160", "source": "2958", "target": "297", "attributes": { "weight": 1 } }, { "key": "35366", "source": "2958", "target": "2974", "attributes": { "weight": 1 } }, { "key": "30181", "source": "2959", "target": "310", "attributes": { "weight": 3 } }, { "key": "35371", "source": "2959", "target": "297", "attributes": { "weight": 1 } }, { "key": "30191", "source": "2960", "target": "310", "attributes": { "weight": 2 } }, { "key": "37541", "source": "2960", "target": "3390", "attributes": { "weight": 1 } }, { "key": "30193", "source": "2961", "target": "297", "attributes": { "weight": 1 } }, { "key": "30200", "source": "2962", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30202", "source": "2963", "target": "2117", "attributes": { "weight": 1 } }, { "key": "30201", "source": "2963", "target": "1166", "attributes": { "weight": 2 } }, { "key": "30203", "source": "2963", "target": "310", "attributes": { "weight": 1 } }, { "key": "30205", "source": "2964", "target": "165", "attributes": { "weight": 2 } }, { "key": "32634", "source": "2964", "target": "1843", "attributes": { "weight": 1 } }, { "key": "30204", "source": "2964", "target": "1187", "attributes": { "weight": 1 } }, { "key": "30206", "source": "2965", "target": "1187", "attributes": { "weight": 1 } }, { "key": "35375", "source": "2966", "target": "310", "attributes": { "weight": 1 } }, { "key": "30208", "source": "2966", "target": "1166", "attributes": { "weight": 1 } }, { "key": "30223", "source": "2967", "target": "310", "attributes": { "weight": 1 } }, { "key": "30221", "source": "2967", "target": "173", "attributes": { "weight": 2 } }, { "key": "30219", "source": "2967", "target": "1166", "attributes": { "weight": 1 } }, { "key": "30222", "source": "2967", "target": "2974", "attributes": { "weight": 2 } }, { "key": "30220", "source": "2967", "target": "297", "attributes": { "weight": 1 } }, { "key": "30224", "source": "2968", "target": "1166", "attributes": { "weight": 1 } }, { "key": "30225", "source": "2968", "target": "2814", "attributes": { "weight": 1 } }, { "key": "30226", "source": "2968", "target": "310", "attributes": { "weight": 1 } }, { "key": "30227", "source": "2969", "target": "1166", "attributes": { "weight": 1 } }, { "key": "37550", "source": "2969", "target": "3407", "attributes": { "weight": 1 } }, { "key": "30238", "source": "2970", "target": "1341", "attributes": { "weight": 1 } }, { "key": "30237", "source": "2970", "target": "1166", "attributes": { "weight": 2 } }, { "key": "37565", "source": "2971", "target": "310", "attributes": { "weight": 1 } }, { "key": "37564", "source": "2971", "target": "3390", "attributes": { "weight": 1 } }, { "key": "30239", "source": "2971", "target": "297", "attributes": { "weight": 3 } }, { "key": "37563", "source": "2971", "target": "1143", "attributes": { "weight": 1 } }, { "key": "30240", "source": "2972", "target": "310", "attributes": { "weight": 1 } }, { "key": "30243", "source": "2973", "target": "1143", "attributes": { "weight": 1 } }, { "key": "30252", "source": "2974", "target": "2958", "attributes": { "weight": 3 } }, { "key": "30254", "source": "2974", "target": "297", "attributes": { "weight": 1 } }, { "key": "30253", "source": "2974", "target": "1166", "attributes": { "weight": 1 } }, { "key": "35383", "source": "2974", "target": "572", "attributes": { "weight": 1 } }, { "key": "30255", "source": "2974", "target": "173", "attributes": { "weight": 2 } }, { "key": "30256", "source": "2975", "target": "1143", "attributes": { "weight": 2 } }, { "key": "30278", "source": "2976", "target": "310", "attributes": { "weight": 1 } }, { "key": "30285", "source": "2977", "target": "310", "attributes": { "weight": 2 } }, { "key": "37591", "source": "2977", "target": "297", "attributes": { "weight": 1 } }, { "key": "30287", "source": "2979", "target": "173", "attributes": { "weight": 2 } }, { "key": "30314", "source": "2980", "target": "778", "attributes": { "weight": 3 } }, { "key": "35264", "source": "2980", "target": "1030", "attributes": { "weight": 1 } }, { "key": "35266", "source": "2981", "target": "1030", "attributes": { "weight": 1 } }, { "key": "30315", "source": "2981", "target": "778", "attributes": { "weight": 2 } }, { "key": "30514", "source": "2982", "target": "1642", "attributes": { "weight": 1 } }, { "key": "30521", "source": "2983", "target": "1642", "attributes": { "weight": 1 } }, { "key": "30522", "source": "2984", "target": "1642", "attributes": { "weight": 1 } }, { "key": "30523", "source": "2985", "target": "1549", "attributes": { "weight": 1 } }, { "key": "30527", "source": "2985", "target": "2987", "attributes": { "weight": 1 } }, { "key": "30525", "source": "2985", "target": "177", "attributes": { "weight": 1 } }, { "key": "30526", "source": "2985", "target": "1642", "attributes": { "weight": 1 } }, { "key": "30524", "source": "2985", "target": "175", "attributes": { "weight": 1 } }, { "key": "30543", "source": "2986", "target": "1642", "attributes": { "weight": 1 } }, { "key": "30545", "source": "2987", "target": "2985", "attributes": { "weight": 1 } }, { "key": "30544", "source": "2987", "target": "164", "attributes": { "weight": 1 } }, { "key": "30546", "source": "2987", "target": "1642", "attributes": { "weight": 1 } }, { "key": "30567", "source": "2988", "target": "3", "attributes": { "weight": 1 } }, { "key": "34970", "source": "2989", "target": "3", "attributes": { "weight": 1 } }, { "key": "30576", "source": "2989", "target": "1965", "attributes": { "weight": 1 } }, { "key": "30611", "source": "2990", "target": "1965", "attributes": { "weight": 1 } }, { "key": "30616", "source": "2991", "target": "352", "attributes": { "weight": 1 } }, { "key": "30617", "source": "2992", "target": "682", "attributes": { "weight": 1 } }, { "key": "33813", "source": "2992", "target": "3", "attributes": { "weight": 2 } }, { "key": "35245", "source": "2993", "target": "1030", "attributes": { "weight": 1 } }, { "key": "30642", "source": "2993", "target": "778", "attributes": { "weight": 3 } }, { "key": "30653", "source": "2994", "target": "1522", "attributes": { "weight": 1 } }, { "key": "30655", "source": "2994", "target": "1337", "attributes": { "weight": 1 } }, { "key": "30652", "source": "2994", "target": "434", "attributes": { "weight": 1 } }, { "key": "30654", "source": "2994", "target": "674", "attributes": { "weight": 1 } }, { "key": "30657", "source": "2995", "target": "358", "attributes": { "weight": 1 } }, { "key": "30658", "source": "2995", "target": "2996", "attributes": { "weight": 1 } }, { "key": "30659", "source": "2995", "target": "2997", "attributes": { "weight": 1 } }, { "key": "30663", "source": "2996", "target": "2995", "attributes": { "weight": 1 } }, { "key": "30664", "source": "2997", "target": "2995", "attributes": { "weight": 1 } }, { "key": "30665", "source": "2997", "target": "358", "attributes": { "weight": 1 } }, { "key": "30697", "source": "2999", "target": "889", "attributes": { "weight": 1 } }, { "key": "32303", "source": "2999", "target": "791", "attributes": { "weight": 1 } }, { "key": "32585", "source": "3000", "target": "791", "attributes": { "weight": 1 } }, { "key": "30717", "source": "3000", "target": "889", "attributes": { "weight": 2 } }, { "key": "30759", "source": "3001", "target": "470", "attributes": { "weight": 2 } }, { "key": "31441", "source": "3001", "target": "3052", "attributes": { "weight": 1 } }, { "key": "31442", "source": "3001", "target": "3053", "attributes": { "weight": 1 } }, { "key": "31444", "source": "3001", "target": "3004", "attributes": { "weight": 1 } }, { "key": "31443", "source": "3001", "target": "1370", "attributes": { "weight": 1 } }, { "key": "31451", "source": "3002", "target": "1370", "attributes": { "weight": 1 } }, { "key": "30791", "source": "3002", "target": "3004", "attributes": { "weight": 3 } }, { "key": "30792", "source": "3003", "target": "1370", "attributes": { "weight": 3 } }, { "key": "31459", "source": "3004", "target": "3055", "attributes": { "weight": 1 } }, { "key": "31454", "source": "3004", "target": "3053", "attributes": { "weight": 1 } }, { "key": "31458", "source": "3004", "target": "3002", "attributes": { "weight": 1 } }, { "key": "31457", "source": "3004", "target": "1370", "attributes": { "weight": 1 } }, { "key": "31455", "source": "3004", "target": "3054", "attributes": { "weight": 1 } }, { "key": "31456", "source": "3004", "target": "3001", "attributes": { "weight": 1 } }, { "key": "30794", "source": "3004", "target": "470", "attributes": { "weight": 2 } }, { "key": "30795", "source": "3004", "target": "1744", "attributes": { "weight": 2 } }, { "key": "30800", "source": "3005", "target": "3423", "attributes": { "weight": 1 } }, { "key": "30801", "source": "3006", "target": "3007", "attributes": { "weight": 1 } }, { "key": "30806", "source": "3007", "target": "103", "attributes": { "weight": 1 } }, { "key": "30807", "source": "3008", "target": "1447", "attributes": { "weight": 1 } }, { "key": "30808", "source": "3009", "target": "3005", "attributes": { "weight": 1 } }, { "key": "30809", "source": "3010", "target": "3011", "attributes": { "weight": 1 } }, { "key": "30810", "source": "3011", "target": "3006", "attributes": { "weight": 1 } }, { "key": "30811", "source": "3012", "target": "3008", "attributes": { "weight": 1 } }, { "key": "30814", "source": "3013", "target": "3", "attributes": { "weight": 1 } }, { "key": "31564", "source": "3013", "target": "595", "attributes": { "weight": 1 } }, { "key": "31563", "source": "3013", "target": "8", "attributes": { "weight": 1 } }, { "key": "30819", "source": "3014", "target": "3", "attributes": { "weight": 2 } }, { "key": "31576", "source": "3014", "target": "595", "attributes": { "weight": 1 } }, { "key": "30895", "source": "3015", "target": "3", "attributes": { "weight": 2 } }, { "key": "31616", "source": "3015", "target": "595", "attributes": { "weight": 1 } }, { "key": "31679", "source": "3016", "target": "595", "attributes": { "weight": 1 } }, { "key": "30907", "source": "3016", "target": "3", "attributes": { "weight": 1 } }, { "key": "37241", "source": "3017", "target": "0", "attributes": { "weight": 1 } }, { "key": "30909", "source": "3017", "target": "13", "attributes": { "weight": 3 } }, { "key": "37242", "source": "3017", "target": "2646", "attributes": { "weight": 1 } }, { "key": "37244", "source": "3017", "target": "817", "attributes": { "weight": 1 } }, { "key": "37245", "source": "3017", "target": "8", "attributes": { "weight": 1 } }, { "key": "30908", "source": "3017", "target": "3", "attributes": { "weight": 2 } }, { "key": "37240", "source": "3017", "target": "2499", "attributes": { "weight": 1 } }, { "key": "35008", "source": "3017", "target": "352", "attributes": { "weight": 1 } }, { "key": "37246", "source": "3017", "target": "351", "attributes": { "weight": 1 } }, { "key": "37243", "source": "3017", "target": "681", "attributes": { "weight": 1 } }, { "key": "33808", "source": "3017", "target": "14", "attributes": { "weight": 2 } }, { "key": "30912", "source": "3018", "target": "3", "attributes": { "weight": 1 } }, { "key": "35019", "source": "3019", "target": "3", "attributes": { "weight": 1 } }, { "key": "30936", "source": "3019", "target": "1965", "attributes": { "weight": 2 } }, { "key": "31690", "source": "3019", "target": "595", "attributes": { "weight": 1 } }, { "key": "30937", "source": "3019", "target": "1967", "attributes": { "weight": 2 } }, { "key": "30941", "source": "3020", "target": "3", "attributes": { "weight": 1 } }, { "key": "31705", "source": "3021", "target": "8", "attributes": { "weight": 1 } }, { "key": "31707", "source": "3021", "target": "595", "attributes": { "weight": 1 } }, { "key": "30944", "source": "3021", "target": "3", "attributes": { "weight": 3 } }, { "key": "34887", "source": "3021", "target": "1024", "attributes": { "weight": 1 } }, { "key": "31706", "source": "3021", "target": "823", "attributes": { "weight": 1 } }, { "key": "30945", "source": "3022", "target": "3", "attributes": { "weight": 2 } }, { "key": "32603", "source": "3022", "target": "232", "attributes": { "weight": 1 } }, { "key": "31710", "source": "3022", "target": "595", "attributes": { "weight": 1 } }, { "key": "31812", "source": "3023", "target": "595", "attributes": { "weight": 1 } }, { "key": "37252", "source": "3023", "target": "793", "attributes": { "weight": 1 } }, { "key": "30950", "source": "3023", "target": "3", "attributes": { "weight": 2 } }, { "key": "37251", "source": "3023", "target": "681", "attributes": { "weight": 1 } }, { "key": "32645", "source": "3024", "target": "2624", "attributes": { "weight": 1 } }, { "key": "30971", "source": "3024", "target": "638", "attributes": { "weight": 2 } }, { "key": "32646", "source": "3024", "target": "2177", "attributes": { "weight": 1 } }, { "key": "32648", "source": "3024", "target": "3035", "attributes": { "weight": 1 } }, { "key": "32647", "source": "3024", "target": "2626", "attributes": { "weight": 1 } }, { "key": "32649", "source": "3024", "target": "3111", "attributes": { "weight": 1 } }, { "key": "30975", "source": "3025", "target": "638", "attributes": { "weight": 2 } }, { "key": "34917", "source": "3025", "target": "1815", "attributes": { "weight": 1 } }, { "key": "34916", "source": "3025", "target": "1539", "attributes": { "weight": 1 } }, { "key": "31004", "source": "3026", "target": "638", "attributes": { "weight": 1 } }, { "key": "31003", "source": "3026", "target": "636", "attributes": { "weight": 1 } }, { "key": "31041", "source": "3027", "target": "638", "attributes": { "weight": 1 } }, { "key": "31040", "source": "3027", "target": "636", "attributes": { "weight": 1 } }, { "key": "31052", "source": "3028", "target": "638", "attributes": { "weight": 1 } }, { "key": "31053", "source": "3028", "target": "1551", "attributes": { "weight": 1 } }, { "key": "31050", "source": "3028", "target": "636", "attributes": { "weight": 1 } }, { "key": "31051", "source": "3028", "target": "1809", "attributes": { "weight": 1 } }, { "key": "31054", "source": "3029", "target": "638", "attributes": { "weight": 1 } }, { "key": "31055", "source": "3030", "target": "638", "attributes": { "weight": 1 } }, { "key": "31056", "source": "3031", "target": "638", "attributes": { "weight": 1 } }, { "key": "31060", "source": "3032", "target": "638", "attributes": { "weight": 1 } }, { "key": "31061", "source": "3033", "target": "638", "attributes": { "weight": 1 } }, { "key": "31062", "source": "3034", "target": "638", "attributes": { "weight": 1 } }, { "key": "32672", "source": "3035", "target": "3113", "attributes": { "weight": 1 } }, { "key": "31063", "source": "3035", "target": "638", "attributes": { "weight": 2 } }, { "key": "32670", "source": "3035", "target": "2177", "attributes": { "weight": 1 } }, { "key": "32668", "source": "3035", "target": "2624", "attributes": { "weight": 1 } }, { "key": "32669", "source": "3035", "target": "3024", "attributes": { "weight": 1 } }, { "key": "32671", "source": "3035", "target": "3111", "attributes": { "weight": 1 } }, { "key": "31064", "source": "3036", "target": "636", "attributes": { "weight": 1 } }, { "key": "31065", "source": "3036", "target": "638", "attributes": { "weight": 1 } }, { "key": "31066", "source": "3037", "target": "638", "attributes": { "weight": 1 } }, { "key": "32677", "source": "3038", "target": "2177", "attributes": { "weight": 1 } }, { "key": "31067", "source": "3038", "target": "638", "attributes": { "weight": 2 } }, { "key": "32676", "source": "3038", "target": "3110", "attributes": { "weight": 1 } }, { "key": "31070", "source": "3039", "target": "638", "attributes": { "weight": 1 } }, { "key": "32072", "source": "3039", "target": "1816", "attributes": { "weight": 1 } }, { "key": "31069", "source": "3039", "target": "636", "attributes": { "weight": 1 } }, { "key": "31071", "source": "3040", "target": "3041", "attributes": { "weight": 1 } }, { "key": "31084", "source": "3041", "target": "2745", "attributes": { "weight": 1 } }, { "key": "31082", "source": "3041", "target": "3040", "attributes": { "weight": 1 } }, { "key": "31083", "source": "3041", "target": "1280", "attributes": { "weight": 1 } }, { "key": "31156", "source": "3042", "target": "644", "attributes": { "weight": 1 } }, { "key": "31157", "source": "3042", "target": "645", "attributes": { "weight": 1 } }, { "key": "31163", "source": "3043", "target": "644", "attributes": { "weight": 1 } }, { "key": "31170", "source": "3044", "target": "644", "attributes": { "weight": 1 } }, { "key": "31179", "source": "3046", "target": "2558", "attributes": { "weight": 1 } }, { "key": "37538", "source": "3046", "target": "297", "attributes": { "weight": 1 } }, { "key": "31178", "source": "3046", "target": "3048", "attributes": { "weight": 1 } }, { "key": "31180", "source": "3047", "target": "2558", "attributes": { "weight": 1 } }, { "key": "31181", "source": "3048", "target": "3046", "attributes": { "weight": 1 } }, { "key": "37549", "source": "3048", "target": "297", "attributes": { "weight": 1 } }, { "key": "31184", "source": "3049", "target": "3047", "attributes": { "weight": 1 } }, { "key": "31185", "source": "3050", "target": "3049", "attributes": { "weight": 1 } }, { "key": "31186", "source": "3051", "target": "1143", "attributes": { "weight": 1 } }, { "key": "31435", "source": "3052", "target": "3001", "attributes": { "weight": 1 } }, { "key": "31434", "source": "3052", "target": "3053", "attributes": { "weight": 1 } }, { "key": "31436", "source": "3053", "target": "3052", "attributes": { "weight": 1 } }, { "key": "31438", "source": "3053", "target": "1370", "attributes": { "weight": 1 } }, { "key": "31439", "source": "3053", "target": "3004", "attributes": { "weight": 1 } }, { "key": "31437", "source": "3053", "target": "3001", "attributes": { "weight": 1 } }, { "key": "31440", "source": "3054", "target": "3004", "attributes": { "weight": 1 } }, { "key": "31453", "source": "3055", "target": "3004", "attributes": { "weight": 1 } }, { "key": "31452", "source": "3055", "target": "1370", "attributes": { "weight": 1 } }, { "key": "31492", "source": "3056", "target": "1087", "attributes": { "weight": 1 } }, { "key": "31511", "source": "3057", "target": "233", "attributes": { "weight": 1 } }, { "key": "31510", "source": "3057", "target": "51", "attributes": { "weight": 1 } }, { "key": "31525", "source": "3058", "target": "231", "attributes": { "weight": 1 } }, { "key": "31524", "source": "3058", "target": "54", "attributes": { "weight": 1 } }, { "key": "31521", "source": "3058", "target": "424", "attributes": { "weight": 1 } }, { "key": "31523", "source": "3058", "target": "135", "attributes": { "weight": 1 } }, { "key": "31526", "source": "3058", "target": "56", "attributes": { "weight": 1 } }, { "key": "31522", "source": "3058", "target": "1358", "attributes": { "weight": 1 } }, { "key": "31535", "source": "3059", "target": "424", "attributes": { "weight": 1 } }, { "key": "31536", "source": "3059", "target": "231", "attributes": { "weight": 1 } }, { "key": "31547", "source": "3060", "target": "183", "attributes": { "weight": 1 } }, { "key": "31546", "source": "3060", "target": "448", "attributes": { "weight": 1 } }, { "key": "31562", "source": "3061", "target": "233", "attributes": { "weight": 1 } }, { "key": "31596", "source": "3062", "target": "595", "attributes": { "weight": 1 } }, { "key": "31828", "source": "3063", "target": "1045", "attributes": { "weight": 1 } }, { "key": "31829", "source": "3063", "target": "359", "attributes": { "weight": 1 } }, { "key": "31830", "source": "3063", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31837", "source": "3064", "target": "359", "attributes": { "weight": 1 } }, { "key": "31838", "source": "3064", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31841", "source": "3065", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31840", "source": "3065", "target": "359", "attributes": { "weight": 1 } }, { "key": "31844", "source": "3066", "target": "1045", "attributes": { "weight": 1 } }, { "key": "31846", "source": "3066", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31845", "source": "3066", "target": "359", "attributes": { "weight": 1 } }, { "key": "31873", "source": "3067", "target": "359", "attributes": { "weight": 1 } }, { "key": "31874", "source": "3067", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31877", "source": "3068", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31875", "source": "3068", "target": "1045", "attributes": { "weight": 1 } }, { "key": "31876", "source": "3068", "target": "359", "attributes": { "weight": 1 } }, { "key": "31878", "source": "3069", "target": "359", "attributes": { "weight": 1 } }, { "key": "37096", "source": "3070", "target": "2115", "attributes": { "weight": 1 } }, { "key": "31886", "source": "3070", "target": "1060", "attributes": { "weight": 2 } }, { "key": "31884", "source": "3070", "target": "1045", "attributes": { "weight": 1 } }, { "key": "31885", "source": "3070", "target": "359", "attributes": { "weight": 2 } }, { "key": "31982", "source": "3071", "target": "359", "attributes": { "weight": 1 } }, { "key": "31983", "source": "3071", "target": "1060", "attributes": { "weight": 1 } }, { "key": "31984", "source": "3072", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32024", "source": "3073", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32023", "source": "3073", "target": "359", "attributes": { "weight": 1 } }, { "key": "32032", "source": "3074", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32040", "source": "3075", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32039", "source": "3075", "target": "2115", "attributes": { "weight": 1 } }, { "key": "32041", "source": "3076", "target": "359", "attributes": { "weight": 1 } }, { "key": "32042", "source": "3076", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32044", "source": "3077", "target": "1060", "attributes": { "weight": 1 } }, { "key": "32043", "source": "3077", "target": "359", "attributes": { "weight": 1 } }, { "key": "32050", "source": "3078", "target": "3081", "attributes": { "weight": 1 } }, { "key": "32049", "source": "3078", "target": "3080", "attributes": { "weight": 1 } }, { "key": "32051", "source": "3078", "target": "3083", "attributes": { "weight": 1 } }, { "key": "32054", "source": "3079", "target": "3082", "attributes": { "weight": 1 } }, { "key": "32055", "source": "3080", "target": "3078", "attributes": { "weight": 1 } }, { "key": "32056", "source": "3080", "target": "3081", "attributes": { "weight": 1 } }, { "key": "32059", "source": "3081", "target": "3078", "attributes": { "weight": 1 } }, { "key": "32060", "source": "3081", "target": "3080", "attributes": { "weight": 1 } }, { "key": "32061", "source": "3082", "target": "1816", "attributes": { "weight": 1 } }, { "key": "32062", "source": "3083", "target": "3078", "attributes": { "weight": 1 } }, { "key": "32075", "source": "3084", "target": "220", "attributes": { "weight": 1 } }, { "key": "32077", "source": "3084", "target": "224", "attributes": { "weight": 1 } }, { "key": "32080", "source": "3084", "target": "459", "attributes": { "weight": 1 } }, { "key": "32085", "source": "3084", "target": "193", "attributes": { "weight": 1 } }, { "key": "32081", "source": "3084", "target": "1363", "attributes": { "weight": 1 } }, { "key": "32083", "source": "3084", "target": "191", "attributes": { "weight": 1 } }, { "key": "32078", "source": "3084", "target": "184", "attributes": { "weight": 1 } }, { "key": "32082", "source": "3084", "target": "189", "attributes": { "weight": 1 } }, { "key": "32076", "source": "3084", "target": "130", "attributes": { "weight": 1 } }, { "key": "32086", "source": "3084", "target": "495", "attributes": { "weight": 1 } }, { "key": "32084", "source": "3084", "target": "231", "attributes": { "weight": 1 } }, { "key": "32079", "source": "3084", "target": "188", "attributes": { "weight": 1 } }, { "key": "35124", "source": "3085", "target": "13", "attributes": { "weight": 1 } }, { "key": "35126", "source": "3085", "target": "349", "attributes": { "weight": 1 } }, { "key": "35125", "source": "3085", "target": "14", "attributes": { "weight": 1 } }, { "key": "34981", "source": "3085", "target": "3", "attributes": { "weight": 1 } }, { "key": "35123", "source": "3085", "target": "2505", "attributes": { "weight": 1 } }, { "key": "35122", "source": "3085", "target": "11", "attributes": { "weight": 1 } }, { "key": "35127", "source": "3085", "target": "826", "attributes": { "weight": 1 } }, { "key": "32107", "source": "3085", "target": "792", "attributes": { "weight": 1 } }, { "key": "32133", "source": "3086", "target": "233", "attributes": { "weight": 1 } }, { "key": "32166", "source": "3087", "target": "228", "attributes": { "weight": 1 } }, { "key": "32179", "source": "3088", "target": "1533", "attributes": { "weight": 1 } }, { "key": "32180", "source": "3088", "target": "1125", "attributes": { "weight": 1 } }, { "key": "32233", "source": "3089", "target": "442", "attributes": { "weight": 1 } }, { "key": "32289", "source": "3090", "target": "932", "attributes": { "weight": 1 } }, { "key": "32297", "source": "3091", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32298", "source": "3091", "target": "791", "attributes": { "weight": 1 } }, { "key": "32301", "source": "3092", "target": "791", "attributes": { "weight": 1 } }, { "key": "32300", "source": "3092", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32302", "source": "3093", "target": "223", "attributes": { "weight": 1 } }, { "key": "32314", "source": "3094", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32315", "source": "3094", "target": "791", "attributes": { "weight": 1 } }, { "key": "32332", "source": "3095", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32333", "source": "3096", "target": "791", "attributes": { "weight": 1 } }, { "key": "32398", "source": "3097", "target": "791", "attributes": { "weight": 1 } }, { "key": "32397", "source": "3097", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32400", "source": "3098", "target": "791", "attributes": { "weight": 1 } }, { "key": "32537", "source": "3099", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32538", "source": "3100", "target": "791", "attributes": { "weight": 1 } }, { "key": "32542", "source": "3101", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32543", "source": "3101", "target": "791", "attributes": { "weight": 1 } }, { "key": "32544", "source": "3101", "target": "232", "attributes": { "weight": 1 } }, { "key": "32549", "source": "3102", "target": "791", "attributes": { "weight": 1 } }, { "key": "32576", "source": "3103", "target": "2513", "attributes": { "weight": 1 } }, { "key": "32582", "source": "3104", "target": "791", "attributes": { "weight": 1 } }, { "key": "32608", "source": "3105", "target": "2211", "attributes": { "weight": 1 } }, { "key": "32633", "source": "3106", "target": "3109", "attributes": { "weight": 1 } }, { "key": "32636", "source": "3107", "target": "165", "attributes": { "weight": 1 } }, { "key": "32637", "source": "3108", "target": "3109", "attributes": { "weight": 1 } }, { "key": "32638", "source": "3109", "target": "165", "attributes": { "weight": 1 } }, { "key": "32640", "source": "3109", "target": "3108", "attributes": { "weight": 1 } }, { "key": "32639", "source": "3109", "target": "3106", "attributes": { "weight": 1 } }, { "key": "32652", "source": "3110", "target": "2177", "attributes": { "weight": 1 } }, { "key": "32653", "source": "3110", "target": "3038", "attributes": { "weight": 1 } }, { "key": "32651", "source": "3110", "target": "638", "attributes": { "weight": 1 } }, { "key": "32675", "source": "3111", "target": "3035", "attributes": { "weight": 1 } }, { "key": "32673", "source": "3111", "target": "3024", "attributes": { "weight": 1 } }, { "key": "32674", "source": "3111", "target": "2177", "attributes": { "weight": 1 } }, { "key": "32678", "source": "3112", "target": "2177", "attributes": { "weight": 1 } }, { "key": "32679", "source": "3113", "target": "2624", "attributes": { "weight": 1 } }, { "key": "32680", "source": "3113", "target": "3035", "attributes": { "weight": 1 } }, { "key": "35561", "source": "3114", "target": "3213", "attributes": { "weight": 1 } }, { "key": "35559", "source": "3114", "target": "1710", "attributes": { "weight": 1 } }, { "key": "35560", "source": "3114", "target": "2450", "attributes": { "weight": 1 } }, { "key": "32940", "source": "3114", "target": "470", "attributes": { "weight": 2 } }, { "key": "34877", "source": "3115", "target": "493", "attributes": { "weight": 1 } }, { "key": "33078", "source": "3115", "target": "1125", "attributes": { "weight": 1 } }, { "key": "33132", "source": "3116", "target": "3120", "attributes": { "weight": 1 } }, { "key": "33131", "source": "3116", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33135", "source": "3117", "target": "3120", "attributes": { "weight": 1 } }, { "key": "33134", "source": "3117", "target": "3119", "attributes": { "weight": 1 } }, { "key": "33140", "source": "3117", "target": "3125", "attributes": { "weight": 1 } }, { "key": "33138", "source": "3117", "target": "3123", "attributes": { "weight": 1 } }, { "key": "33136", "source": "3117", "target": "3121", "attributes": { "weight": 1 } }, { "key": "33133", "source": "3117", "target": "3118", "attributes": { "weight": 1 } }, { "key": "33137", "source": "3117", "target": "3122", "attributes": { "weight": 1 } }, { "key": "33139", "source": "3117", "target": "3124", "attributes": { "weight": 1 } }, { "key": "33141", "source": "3118", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33142", "source": "3119", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33144", "source": "3120", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33143", "source": "3120", "target": "3116", "attributes": { "weight": 1 } }, { "key": "33145", "source": "3121", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33147", "source": "3121", "target": "3125", "attributes": { "weight": 1 } }, { "key": "33146", "source": "3121", "target": "3123", "attributes": { "weight": 1 } }, { "key": "33148", "source": "3122", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33150", "source": "3123", "target": "3121", "attributes": { "weight": 1 } }, { "key": "33149", "source": "3123", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33151", "source": "3124", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33153", "source": "3125", "target": "3121", "attributes": { "weight": 1 } }, { "key": "33152", "source": "3125", "target": "3117", "attributes": { "weight": 1 } }, { "key": "33768", "source": "3126", "target": "3", "attributes": { "weight": 1 } }, { "key": "33796", "source": "3127", "target": "3", "attributes": { "weight": 1 } }, { "key": "33797", "source": "3127", "target": "8", "attributes": { "weight": 1 } }, { "key": "33798", "source": "3128", "target": "3", "attributes": { "weight": 1 } }, { "key": "33846", "source": "3129", "target": "3134", "attributes": { "weight": 1 } }, { "key": "33848", "source": "3129", "target": "1331", "attributes": { "weight": 1 } }, { "key": "33847", "source": "3129", "target": "1323", "attributes": { "weight": 1 } }, { "key": "33859", "source": "3130", "target": "3147", "attributes": { "weight": 1 } }, { "key": "33858", "source": "3130", "target": "1232", "attributes": { "weight": 1 } }, { "key": "33860", "source": "3131", "target": "1197", "attributes": { "weight": 1 } }, { "key": "33861", "source": "3131", "target": "338", "attributes": { "weight": 1 } }, { "key": "33873", "source": "3132", "target": "1182", "attributes": { "weight": 1 } }, { "key": "33874", "source": "3132", "target": "3146", "attributes": { "weight": 1 } }, { "key": "33885", "source": "3133", "target": "1232", "attributes": { "weight": 1 } }, { "key": "33886", "source": "3133", "target": "3162", "attributes": { "weight": 1 } }, { "key": "33921", "source": "3134", "target": "1323", "attributes": { "weight": 1 } }, { "key": "33920", "source": "3134", "target": "3129", "attributes": { "weight": 1 } }, { "key": "33928", "source": "3135", "target": "1323", "attributes": { "weight": 1 } }, { "key": "33931", "source": "3136", "target": "338", "attributes": { "weight": 1 } }, { "key": "33979", "source": "3137", "target": "123", "attributes": { "weight": 1 } }, { "key": "34074", "source": "3138", "target": "3141", "attributes": { "weight": 1 } }, { "key": "34073", "source": "3138", "target": "1182", "attributes": { "weight": 1 } }, { "key": "34075", "source": "3139", "target": "123", "attributes": { "weight": 1 } }, { "key": "34076", "source": "3140", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34170", "source": "3141", "target": "1182", "attributes": { "weight": 1 } }, { "key": "34171", "source": "3141", "target": "3138", "attributes": { "weight": 1 } }, { "key": "34176", "source": "3142", "target": "123", "attributes": { "weight": 1 } }, { "key": "34208", "source": "3143", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34217", "source": "3144", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34227", "source": "3145", "target": "1233", "attributes": { "weight": 1 } }, { "key": "34458", "source": "3146", "target": "1182", "attributes": { "weight": 1 } }, { "key": "34457", "source": "3146", "target": "3132", "attributes": { "weight": 1 } }, { "key": "34459", "source": "3147", "target": "3130", "attributes": { "weight": 1 } }, { "key": "34460", "source": "3147", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34464", "source": "3148", "target": "3158", "attributes": { "weight": 1 } }, { "key": "34463", "source": "3148", "target": "3149", "attributes": { "weight": 1 } }, { "key": "34466", "source": "3149", "target": "2830", "attributes": { "weight": 1 } }, { "key": "34467", "source": "3149", "target": "3158", "attributes": { "weight": 1 } }, { "key": "34465", "source": "3149", "target": "3148", "attributes": { "weight": 1 } }, { "key": "34470", "source": "3150", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34505", "source": "3151", "target": "1291", "attributes": { "weight": 1 } }, { "key": "34506", "source": "3151", "target": "1323", "attributes": { "weight": 1 } }, { "key": "34536", "source": "3152", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34535", "source": "3152", "target": "2295", "attributes": { "weight": 1 } }, { "key": "34543", "source": "3153", "target": "123", "attributes": { "weight": 1 } }, { "key": "34550", "source": "3154", "target": "1323", "attributes": { "weight": 1 } }, { "key": "34557", "source": "3155", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34634", "source": "3156", "target": "123", "attributes": { "weight": 1 } }, { "key": "34651", "source": "3157", "target": "1182", "attributes": { "weight": 1 } }, { "key": "34654", "source": "3158", "target": "3149", "attributes": { "weight": 1 } }, { "key": "34653", "source": "3158", "target": "3148", "attributes": { "weight": 1 } }, { "key": "34655", "source": "3158", "target": "3163", "attributes": { "weight": 1 } }, { "key": "34666", "source": "3159", "target": "1197", "attributes": { "weight": 1 } }, { "key": "34677", "source": "3160", "target": "1323", "attributes": { "weight": 1 } }, { "key": "34694", "source": "3161", "target": "700", "attributes": { "weight": 1 } }, { "key": "34695", "source": "3161", "target": "309", "attributes": { "weight": 1 } }, { "key": "34778", "source": "3162", "target": "1232", "attributes": { "weight": 1 } }, { "key": "34820", "source": "3163", "target": "700", "attributes": { "weight": 1 } }, { "key": "34821", "source": "3163", "target": "3158", "attributes": { "weight": 1 } }, { "key": "34845", "source": "3164", "target": "1561", "attributes": { "weight": 1 } }, { "key": "34844", "source": "3164", "target": "700", "attributes": { "weight": 1 } }, { "key": "34856", "source": "3165", "target": "1125", "attributes": { "weight": 1 } }, { "key": "34867", "source": "3166", "target": "2511", "attributes": { "weight": 1 } }, { "key": "34870", "source": "3167", "target": "3115", "attributes": { "weight": 1 } }, { "key": "34871", "source": "3167", "target": "493", "attributes": { "weight": 1 } }, { "key": "34872", "source": "3168", "target": "3167", "attributes": { "weight": 1 } }, { "key": "34873", "source": "3168", "target": "3115", "attributes": { "weight": 1 } }, { "key": "34888", "source": "3169", "target": "3171", "attributes": { "weight": 1 } }, { "key": "34902", "source": "3171", "target": "3169", "attributes": { "weight": 1 } }, { "key": "34903", "source": "3171", "target": "1042", "attributes": { "weight": 1 } }, { "key": "34904", "source": "3171", "target": "3173", "attributes": { "weight": 1 } }, { "key": "34907", "source": "3172", "target": "1042", "attributes": { "weight": 1 } }, { "key": "34914", "source": "3173", "target": "3171", "attributes": { "weight": 1 } }, { "key": "35015", "source": "3174", "target": "3", "attributes": { "weight": 1 } }, { "key": "35016", "source": "3174", "target": "8", "attributes": { "weight": 1 } }, { "key": "35091", "source": "3175", "target": "3176", "attributes": { "weight": 1 } }, { "key": "35092", "source": "3175", "target": "1281", "attributes": { "weight": 1 } }, { "key": "35097", "source": "3176", "target": "1281", "attributes": { "weight": 1 } }, { "key": "35096", "source": "3176", "target": "3175", "attributes": { "weight": 1 } }, { "key": "35104", "source": "3177", "target": "3178", "attributes": { "weight": 1 } }, { "key": "35105", "source": "3177", "target": "1281", "attributes": { "weight": 1 } }, { "key": "35106", "source": "3178", "target": "3177", "attributes": { "weight": 1 } }, { "key": "35107", "source": "3178", "target": "1281", "attributes": { "weight": 1 } }, { "key": "35137", "source": "3179", "target": "345", "attributes": { "weight": 1 } }, { "key": "37282", "source": "3179", "target": "14", "attributes": { "weight": 1 } }, { "key": "35138", "source": "3179", "target": "349", "attributes": { "weight": 2 } }, { "key": "35157", "source": "3180", "target": "352", "attributes": { "weight": 1 } }, { "key": "35172", "source": "3181", "target": "352", "attributes": { "weight": 1 } }, { "key": "35174", "source": "3182", "target": "594", "attributes": { "weight": 1 } }, { "key": "35201", "source": "3183", "target": "130", "attributes": { "weight": 1 } }, { "key": "35202", "source": "3183", "target": "471", "attributes": { "weight": 1 } }, { "key": "35228", "source": "3184", "target": "1032", "attributes": { "weight": 1 } }, { "key": "35237", "source": "3186", "target": "778", "attributes": { "weight": 1 } }, { "key": "35238", "source": "3187", "target": "778", "attributes": { "weight": 1 } }, { "key": "35241", "source": "3188", "target": "778", "attributes": { "weight": 1 } }, { "key": "35247", "source": "3189", "target": "1030", "attributes": { "weight": 1 } }, { "key": "35246", "source": "3189", "target": "240", "attributes": { "weight": 1 } }, { "key": "35258", "source": "3190", "target": "778", "attributes": { "weight": 1 } }, { "key": "35262", "source": "3191", "target": "1032", "attributes": { "weight": 1 } }, { "key": "35263", "source": "3192", "target": "778", "attributes": { "weight": 1 } }, { "key": "35265", "source": "3193", "target": "778", "attributes": { "weight": 1 } }, { "key": "35358", "source": "3194", "target": "1811", "attributes": { "weight": 1 } }, { "key": "35364", "source": "3195", "target": "446", "attributes": { "weight": 1 } }, { "key": "35370", "source": "3196", "target": "3197", "attributes": { "weight": 1 } }, { "key": "35390", "source": "3197", "target": "173", "attributes": { "weight": 1 } }, { "key": "35389", "source": "3197", "target": "3196", "attributes": { "weight": 1 } }, { "key": "35478", "source": "3198", "target": "1857", "attributes": { "weight": 1 } }, { "key": "35448", "source": "3198", "target": "177", "attributes": { "weight": 2 } }, { "key": "35447", "source": "3198", "target": "574", "attributes": { "weight": 2 } }, { "key": "35454", "source": "3199", "target": "177", "attributes": { "weight": 2 } }, { "key": "35453", "source": "3199", "target": "574", "attributes": { "weight": 2 } }, { "key": "35520", "source": "3200", "target": "574", "attributes": { "weight": 1 } }, { "key": "35458", "source": "3200", "target": "177", "attributes": { "weight": 2 } }, { "key": "35460", "source": "3201", "target": "177", "attributes": { "weight": 1 } }, { "key": "35477", "source": "3202", "target": "574", "attributes": { "weight": 1 } }, { "key": "35500", "source": "3203", "target": "1857", "attributes": { "weight": 1 } }, { "key": "35501", "source": "3203", "target": "574", "attributes": { "weight": 1 } }, { "key": "35502", "source": "3203", "target": "177", "attributes": { "weight": 1 } }, { "key": "35517", "source": "3204", "target": "574", "attributes": { "weight": 1 } }, { "key": "35518", "source": "3204", "target": "177", "attributes": { "weight": 1 } }, { "key": "35521", "source": "3206", "target": "574", "attributes": { "weight": 1 } }, { "key": "35522", "source": "3206", "target": "1859", "attributes": { "weight": 1 } }, { "key": "35523", "source": "3206", "target": "3208", "attributes": { "weight": 1 } }, { "key": "35524", "source": "3207", "target": "574", "attributes": { "weight": 1 } }, { "key": "35525", "source": "3207", "target": "177", "attributes": { "weight": 1 } }, { "key": "35526", "source": "3208", "target": "177", "attributes": { "weight": 1 } }, { "key": "35527", "source": "3208", "target": "3206", "attributes": { "weight": 1 } }, { "key": "35529", "source": "3209", "target": "177", "attributes": { "weight": 1 } }, { "key": "35528", "source": "3209", "target": "574", "attributes": { "weight": 1 } }, { "key": "35533", "source": "3210", "target": "177", "attributes": { "weight": 1 } }, { "key": "35543", "source": "3211", "target": "1710", "attributes": { "weight": 1 } }, { "key": "35552", "source": "3212", "target": "1710", "attributes": { "weight": 1 } }, { "key": "35558", "source": "3213", "target": "3114", "attributes": { "weight": 1 } }, { "key": "35557", "source": "3213", "target": "2450", "attributes": { "weight": 1 } }, { "key": "35570", "source": "3214", "target": "3242", "attributes": { "weight": 1 } }, { "key": "35569", "source": "3214", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35573", "source": "3215", "target": "3240", "attributes": { "weight": 1 } }, { "key": "35571", "source": "3215", "target": "3229", "attributes": { "weight": 1 } }, { "key": "35572", "source": "3215", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35574", "source": "3215", "target": "3241", "attributes": { "weight": 1 } }, { "key": "35575", "source": "3216", "target": "3223", "attributes": { "weight": 1 } }, { "key": "35576", "source": "3217", "target": "3221", "attributes": { "weight": 1 } }, { "key": "35579", "source": "3217", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35581", "source": "3217", "target": "3231", "attributes": { "weight": 1 } }, { "key": "35580", "source": "3217", "target": "3230", "attributes": { "weight": 1 } }, { "key": "35577", "source": "3217", "target": "3225", "attributes": { "weight": 1 } }, { "key": "35578", "source": "3217", "target": "3227", "attributes": { "weight": 1 } }, { "key": "35582", "source": "3217", "target": "3236", "attributes": { "weight": 1 } }, { "key": "35583", "source": "3218", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35584", "source": "3218", "target": "3231", "attributes": { "weight": 1 } }, { "key": "35585", "source": "3219", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35586", "source": "3220", "target": "3219", "attributes": { "weight": 1 } }, { "key": "35587", "source": "3220", "target": "3226", "attributes": { "weight": 1 } }, { "key": "35590", "source": "3221", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35589", "source": "3221", "target": "3227", "attributes": { "weight": 1 } }, { "key": "35591", "source": "3221", "target": "3230", "attributes": { "weight": 1 } }, { "key": "35588", "source": "3221", "target": "3217", "attributes": { "weight": 1 } }, { "key": "35593", "source": "3223", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35595", "source": "3225", "target": "3217", "attributes": { "weight": 1 } }, { "key": "35597", "source": "3225", "target": "3230", "attributes": { "weight": 1 } }, { "key": "35596", "source": "3225", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35598", "source": "3226", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35602", "source": "3227", "target": "3230", "attributes": { "weight": 1 } }, { "key": "35601", "source": "3227", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35600", "source": "3227", "target": "3221", "attributes": { "weight": 1 } }, { "key": "35599", "source": "3227", "target": "3217", "attributes": { "weight": 1 } }, { "key": "35603", "source": "3228", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35604", "source": "3228", "target": "3231", "attributes": { "weight": 1 } }, { "key": "35608", "source": "3229", "target": "3241", "attributes": { "weight": 1 } }, { "key": "35606", "source": "3229", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35607", "source": "3229", "target": "3240", "attributes": { "weight": 1 } }, { "key": "35605", "source": "3229", "target": "3215", "attributes": { "weight": 1 } }, { "key": "35632", "source": "3230", "target": "3225", "attributes": { "weight": 1 } }, { "key": "35630", "source": "3230", "target": "3217", "attributes": { "weight": 1 } }, { "key": "35633", "source": "3230", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35631", "source": "3230", "target": "3221", "attributes": { "weight": 1 } }, { "key": "35637", "source": "3231", "target": "3236", "attributes": { "weight": 1 } }, { "key": "35635", "source": "3231", "target": "3228", "attributes": { "weight": 1 } }, { "key": "35636", "source": "3231", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35638", "source": "3231", "target": "3242", "attributes": { "weight": 1 } }, { "key": "35634", "source": "3231", "target": "3218", "attributes": { "weight": 1 } }, { "key": "35641", "source": "3233", "target": "3234", "attributes": { "weight": 1 } }, { "key": "35640", "source": "3233", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35642", "source": "3234", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35643", "source": "3234", "target": "3233", "attributes": { "weight": 1 } }, { "key": "35645", "source": "3235", "target": "3239", "attributes": { "weight": 1 } }, { "key": "35644", "source": "3235", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35647", "source": "3236", "target": "3231", "attributes": { "weight": 1 } }, { "key": "35646", "source": "3236", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35648", "source": "3237", "target": "3238", "attributes": { "weight": 1 } }, { "key": "35649", "source": "3238", "target": "3214", "attributes": { "weight": 1 } }, { "key": "35651", "source": "3238", "target": "3237", "attributes": { "weight": 1 } }, { "key": "35650", "source": "3238", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35653", "source": "3239", "target": "3234", "attributes": { "weight": 1 } }, { "key": "35652", "source": "3239", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35654", "source": "3239", "target": "3235", "attributes": { "weight": 1 } }, { "key": "35657", "source": "3240", "target": "3241", "attributes": { "weight": 1 } }, { "key": "35655", "source": "3240", "target": "3215", "attributes": { "weight": 1 } }, { "key": "35656", "source": "3240", "target": "3229", "attributes": { "weight": 1 } }, { "key": "35659", "source": "3241", "target": "3229", "attributes": { "weight": 1 } }, { "key": "35660", "source": "3241", "target": "3240", "attributes": { "weight": 1 } }, { "key": "35658", "source": "3241", "target": "3215", "attributes": { "weight": 1 } }, { "key": "35662", "source": "3242", "target": "1299", "attributes": { "weight": 1 } }, { "key": "35663", "source": "3242", "target": "3231", "attributes": { "weight": 1 } }, { "key": "35661", "source": "3242", "target": "3214", "attributes": { "weight": 1 } }, { "key": "35681", "source": "3243", "target": "3247", "attributes": { "weight": 1 } }, { "key": "35680", "source": "3243", "target": "59", "attributes": { "weight": 1 } }, { "key": "35690", "source": "3244", "target": "59", "attributes": { "weight": 1 } }, { "key": "35691", "source": "3244", "target": "3249", "attributes": { "weight": 1 } }, { "key": "35694", "source": "3245", "target": "59", "attributes": { "weight": 1 } }, { "key": "35696", "source": "3246", "target": "193", "attributes": { "weight": 1 } }, { "key": "35697", "source": "3247", "target": "59", "attributes": { "weight": 1 } }, { "key": "35698", "source": "3247", "target": "3243", "attributes": { "weight": 1 } }, { "key": "35700", "source": "3248", "target": "1750", "attributes": { "weight": 1 } }, { "key": "35699", "source": "3248", "target": "2092", "attributes": { "weight": 1 } }, { "key": "35712", "source": "3249", "target": "1750", "attributes": { "weight": 1 } }, { "key": "35711", "source": "3249", "target": "3244", "attributes": { "weight": 1 } }, { "key": "35713", "source": "3250", "target": "1750", "attributes": { "weight": 1 } }, { "key": "35714", "source": "3251", "target": "340", "attributes": { "weight": 1 } }, { "key": "35718", "source": "3252", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35719", "source": "3252", "target": "136", "attributes": { "weight": 1 } }, { "key": "35736", "source": "3253", "target": "136", "attributes": { "weight": 1 } }, { "key": "35735", "source": "3253", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35738", "source": "3254", "target": "136", "attributes": { "weight": 1 } }, { "key": "35737", "source": "3254", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35742", "source": "3255", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35743", "source": "3256", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35744", "source": "3257", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35746", "source": "3258", "target": "136", "attributes": { "weight": 1 } }, { "key": "35747", "source": "3259", "target": "136", "attributes": { "weight": 1 } }, { "key": "35764", "source": "3260", "target": "136", "attributes": { "weight": 1 } }, { "key": "35763", "source": "3260", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35765", "source": "3261", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35766", "source": "3261", "target": "136", "attributes": { "weight": 1 } }, { "key": "35767", "source": "3262", "target": "136", "attributes": { "weight": 1 } }, { "key": "35768", "source": "3263", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35769", "source": "3264", "target": "1516", "attributes": { "weight": 1 } }, { "key": "35770", "source": "3265", "target": "30", "attributes": { "weight": 1 } }, { "key": "35771", "source": "3266", "target": "30", "attributes": { "weight": 1 } }, { "key": "35772", "source": "3267", "target": "30", "attributes": { "weight": 1 } }, { "key": "35777", "source": "3268", "target": "30", "attributes": { "weight": 1 } }, { "key": "35796", "source": "3269", "target": "221", "attributes": { "weight": 1 } }, { "key": "35886", "source": "3270", "target": "221", "attributes": { "weight": 1 } }, { "key": "35887", "source": "3270", "target": "2258", "attributes": { "weight": 1 } }, { "key": "35898", "source": "3271", "target": "2248", "attributes": { "weight": 1 } }, { "key": "35899", "source": "3271", "target": "2258", "attributes": { "weight": 1 } }, { "key": "36162", "source": "3272", "target": "1741", "attributes": { "weight": 1 } }, { "key": "36160", "source": "3272", "target": "1998", "attributes": { "weight": 1 } }, { "key": "36203", "source": "3273", "target": "176", "attributes": { "weight": 1 } }, { "key": "36204", "source": "3274", "target": "176", "attributes": { "weight": 1 } }, { "key": "36207", "source": "3275", "target": "687", "attributes": { "weight": 2 } }, { "key": "36209", "source": "3275", "target": "176", "attributes": { "weight": 1 } }, { "key": "36208", "source": "3275", "target": "3276", "attributes": { "weight": 1 } }, { "key": "36211", "source": "3276", "target": "3275", "attributes": { "weight": 1 } }, { "key": "36237", "source": "3277", "target": "1386", "attributes": { "weight": 1 } }, { "key": "36249", "source": "3278", "target": "596", "attributes": { "weight": 1 } }, { "key": "36248", "source": "3278", "target": "1862", "attributes": { "weight": 1 } }, { "key": "36247", "source": "3278", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36262", "source": "3279", "target": "3281", "attributes": { "weight": 1 } }, { "key": "36263", "source": "3279", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36266", "source": "3279", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36264", "source": "3279", "target": "3290", "attributes": { "weight": 1 } }, { "key": "36265", "source": "3279", "target": "3305", "attributes": { "weight": 1 } }, { "key": "36269", "source": "3280", "target": "70", "attributes": { "weight": 1 } }, { "key": "36268", "source": "3280", "target": "3292", "attributes": { "weight": 1 } }, { "key": "36267", "source": "3280", "target": "434", "attributes": { "weight": 1 } }, { "key": "36270", "source": "3280", "target": "3303", "attributes": { "weight": 1 } }, { "key": "36271", "source": "3280", "target": "1389", "attributes": { "weight": 1 } }, { "key": "36286", "source": "3281", "target": "3290", "attributes": { "weight": 1 } }, { "key": "36285", "source": "3281", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36287", "source": "3281", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36284", "source": "3281", "target": "3279", "attributes": { "weight": 1 } }, { "key": "36297", "source": "3283", "target": "1863", "attributes": { "weight": 1 } }, { "key": "36294", "source": "3283", "target": "434", "attributes": { "weight": 1 } }, { "key": "36298", "source": "3283", "target": "70", "attributes": { "weight": 1 } }, { "key": "36296", "source": "3283", "target": "3286", "attributes": { "weight": 1 } }, { "key": "36299", "source": "3284", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36300", "source": "3284", "target": "596", "attributes": { "weight": 1 } }, { "key": "36308", "source": "3285", "target": "596", "attributes": { "weight": 1 } }, { "key": "36306", "source": "3285", "target": "3290", "attributes": { "weight": 1 } }, { "key": "36304", "source": "3285", "target": "3284", "attributes": { "weight": 1 } }, { "key": "36307", "source": "3285", "target": "3302", "attributes": { "weight": 1 } }, { "key": "36302", "source": "3285", "target": "2084", "attributes": { "weight": 1 } }, { "key": "36305", "source": "3285", "target": "3287", "attributes": { "weight": 1 } }, { "key": "36303", "source": "3285", "target": "3281", "attributes": { "weight": 1 } }, { "key": "36311", "source": "3286", "target": "70", "attributes": { "weight": 1 } }, { "key": "36310", "source": "3286", "target": "3283", "attributes": { "weight": 1 } }, { "key": "36309", "source": "3286", "target": "434", "attributes": { "weight": 1 } }, { "key": "36312", "source": "3286", "target": "3301", "attributes": { "weight": 1 } }, { "key": "36313", "source": "3287", "target": "3281", "attributes": { "weight": 1 } }, { "key": "36314", "source": "3287", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36315", "source": "3287", "target": "3290", "attributes": { "weight": 1 } }, { "key": "36327", "source": "3288", "target": "596", "attributes": { "weight": 1 } }, { "key": "36329", "source": "3289", "target": "3295", "attributes": { "weight": 1 } }, { "key": "36330", "source": "3289", "target": "3304", "attributes": { "weight": 1 } }, { "key": "36328", "source": "3289", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36334", "source": "3290", "target": "3287", "attributes": { "weight": 1 } }, { "key": "36332", "source": "3290", "target": "3281", "attributes": { "weight": 1 } }, { "key": "36335", "source": "3290", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36331", "source": "3290", "target": "2084", "attributes": { "weight": 1 } }, { "key": "36333", "source": "3290", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36338", "source": "3291", "target": "3294", "attributes": { "weight": 1 } }, { "key": "36339", "source": "3291", "target": "3303", "attributes": { "weight": 1 } }, { "key": "36340", "source": "3291", "target": "1389", "attributes": { "weight": 1 } }, { "key": "36337", "source": "3291", "target": "3292", "attributes": { "weight": 1 } }, { "key": "36336", "source": "3291", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36347", "source": "3292", "target": "1389", "attributes": { "weight": 1 } }, { "key": "36346", "source": "3292", "target": "3297", "attributes": { "weight": 1 } }, { "key": "36344", "source": "3292", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36345", "source": "3292", "target": "3291", "attributes": { "weight": 1 } }, { "key": "36348", "source": "3293", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36357", "source": "3294", "target": "3291", "attributes": { "weight": 1 } }, { "key": "36359", "source": "3294", "target": "1389", "attributes": { "weight": 1 } }, { "key": "36358", "source": "3294", "target": "3297", "attributes": { "weight": 1 } }, { "key": "36360", "source": "3295", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36361", "source": "3295", "target": "3289", "attributes": { "weight": 1 } }, { "key": "36362", "source": "3296", "target": "70", "attributes": { "weight": 1 } }, { "key": "36364", "source": "3297", "target": "3294", "attributes": { "weight": 1 } }, { "key": "36363", "source": "3297", "target": "3292", "attributes": { "weight": 1 } }, { "key": "36365", "source": "3297", "target": "1389", "attributes": { "weight": 1 } }, { "key": "36367", "source": "3298", "target": "3301", "attributes": { "weight": 1 } }, { "key": "36366", "source": "3298", "target": "70", "attributes": { "weight": 1 } }, { "key": "36368", "source": "3299", "target": "434", "attributes": { "weight": 1 } }, { "key": "36372", "source": "3300", "target": "596", "attributes": { "weight": 1 } }, { "key": "36371", "source": "3300", "target": "3304", "attributes": { "weight": 1 } }, { "key": "36370", "source": "3300", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36369", "source": "3300", "target": "3278", "attributes": { "weight": 1 } }, { "key": "36374", "source": "3301", "target": "3286", "attributes": { "weight": 1 } }, { "key": "36375", "source": "3301", "target": "70", "attributes": { "weight": 1 } }, { "key": "36376", "source": "3301", "target": "3298", "attributes": { "weight": 1 } }, { "key": "36373", "source": "3301", "target": "434", "attributes": { "weight": 1 } }, { "key": "36378", "source": "3302", "target": "596", "attributes": { "weight": 1 } }, { "key": "36377", "source": "3302", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36380", "source": "3303", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36382", "source": "3303", "target": "1389", "attributes": { "weight": 1 } }, { "key": "36379", "source": "3303", "target": "3280", "attributes": { "weight": 1 } }, { "key": "36381", "source": "3303", "target": "70", "attributes": { "weight": 1 } }, { "key": "36387", "source": "3304", "target": "3289", "attributes": { "weight": 1 } }, { "key": "36388", "source": "3304", "target": "3300", "attributes": { "weight": 1 } }, { "key": "36386", "source": "3304", "target": "2087", "attributes": { "weight": 1 } }, { "key": "36407", "source": "3305", "target": "3279", "attributes": { "weight": 1 } }, { "key": "36409", "source": "3305", "target": "3306", "attributes": { "weight": 1 } }, { "key": "36408", "source": "3305", "target": "2089", "attributes": { "weight": 1 } }, { "key": "36412", "source": "3306", "target": "3285", "attributes": { "weight": 1 } }, { "key": "36413", "source": "3306", "target": "2089", "attributes": { "weight": 1 } }, { "key": "36415", "source": "3306", "target": "596", "attributes": { "weight": 1 } }, { "key": "36416", "source": "3306", "target": "3305", "attributes": { "weight": 1 } }, { "key": "36410", "source": "3306", "target": "2084", "attributes": { "weight": 1 } }, { "key": "36411", "source": "3306", "target": "3279", "attributes": { "weight": 1 } }, { "key": "36414", "source": "3306", "target": "3290", "attributes": { "weight": 1 } }, { "key": "36419", "source": "3307", "target": "2945", "attributes": { "weight": 1 } }, { "key": "36422", "source": "3307", "target": "3311", "attributes": { "weight": 1 } }, { "key": "36420", "source": "3307", "target": "2946", "attributes": { "weight": 1 } }, { "key": "36421", "source": "3307", "target": "2948", "attributes": { "weight": 1 } }, { "key": "36429", "source": "3308", "target": "2852", "attributes": { "weight": 1 } }, { "key": "36430", "source": "3308", "target": "1423", "attributes": { "weight": 1 } }, { "key": "36437", "source": "3309", "target": "2946", "attributes": { "weight": 1 } }, { "key": "36438", "source": "3309", "target": "2948", "attributes": { "weight": 1 } }, { "key": "36439", "source": "3310", "target": "2945", "attributes": { "weight": 1 } }, { "key": "36440", "source": "3310", "target": "3311", "attributes": { "weight": 1 } }, { "key": "36442", "source": "3311", "target": "3310", "attributes": { "weight": 1 } }, { "key": "36441", "source": "3311", "target": "3307", "attributes": { "weight": 1 } }, { "key": "36443", "source": "3312", "target": "257", "attributes": { "weight": 1 } }, { "key": "36445", "source": "3313", "target": "257", "attributes": { "weight": 1 } }, { "key": "36773", "source": "3314", "target": "377", "attributes": { "weight": 1 } }, { "key": "36786", "source": "3315", "target": "377", "attributes": { "weight": 1 } }, { "key": "36783", "source": "3315", "target": "373", "attributes": { "weight": 1 } }, { "key": "36785", "source": "3315", "target": "1406", "attributes": { "weight": 1 } }, { "key": "36784", "source": "3315", "target": "1350", "attributes": { "weight": 1 } }, { "key": "36812", "source": "3316", "target": "377", "attributes": { "weight": 1 } }, { "key": "36811", "source": "3316", "target": "373", "attributes": { "weight": 1 } }, { "key": "36832", "source": "3317", "target": "2587", "attributes": { "weight": 1 } }, { "key": "36834", "source": "3318", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36833", "source": "3318", "target": "3321", "attributes": { "weight": 1 } }, { "key": "36835", "source": "3319", "target": "3322", "attributes": { "weight": 1 } }, { "key": "36836", "source": "3319", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36838", "source": "3319", "target": "3338", "attributes": { "weight": 1 } }, { "key": "36837", "source": "3319", "target": "3337", "attributes": { "weight": 1 } }, { "key": "36839", "source": "3320", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36840", "source": "3321", "target": "3318", "attributes": { "weight": 1 } }, { "key": "36841", "source": "3321", "target": "3320", "attributes": { "weight": 1 } }, { "key": "36842", "source": "3321", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36843", "source": "3322", "target": "3319", "attributes": { "weight": 1 } }, { "key": "36846", "source": "3322", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36845", "source": "3322", "target": "3334", "attributes": { "weight": 1 } }, { "key": "36844", "source": "3322", "target": "3325", "attributes": { "weight": 1 } }, { "key": "36848", "source": "3323", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36847", "source": "3323", "target": "3334", "attributes": { "weight": 1 } }, { "key": "36849", "source": "3324", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36850", "source": "3324", "target": "3338", "attributes": { "weight": 1 } }, { "key": "36852", "source": "3325", "target": "3334", "attributes": { "weight": 1 } }, { "key": "36851", "source": "3325", "target": "3322", "attributes": { "weight": 1 } }, { "key": "36853", "source": "3326", "target": "3325", "attributes": { "weight": 1 } }, { "key": "36854", "source": "3326", "target": "3334", "attributes": { "weight": 1 } }, { "key": "36855", "source": "3326", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36856", "source": "3327", "target": "3329", "attributes": { "weight": 1 } }, { "key": "36857", "source": "3327", "target": "3331", "attributes": { "weight": 1 } }, { "key": "36858", "source": "3327", "target": "1408", "attributes": { "weight": 1 } }, { "key": "36860", "source": "3328", "target": "2587", "attributes": { "weight": 1 } }, { "key": "36859", "source": "3328", "target": "3330", "attributes": { "weight": 1 } }, { "key": "36862", "source": "3329", "target": "3336", "attributes": { "weight": 1 } }, { "key": "36861", "source": "3329", "target": "3327", "attributes": { "weight": 1 } }, { "key": "36864", "source": "3330", "target": "2587", "attributes": { "weight": 1 } }, { "key": "36863", "source": "3330", "target": "3328", "attributes": { "weight": 1 } }, { "key": "36865", "source": "3331", "target": "3327", "attributes": { "weight": 1 } }, { "key": "36866", "source": "3332", "target": "1408", "attributes": { "weight": 1 } }, { "key": "36869", "source": "3333", "target": "2587", "attributes": { "weight": 1 } }, { "key": "36868", "source": "3333", "target": "3330", "attributes": { "weight": 1 } }, { "key": "36867", "source": "3333", "target": "3328", "attributes": { "weight": 1 } }, { "key": "36870", "source": "3333", "target": "3335", "attributes": { "weight": 1 } }, { "key": "36871", "source": "3333", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36878", "source": "3334", "target": "3323", "attributes": { "weight": 1 } }, { "key": "36879", "source": "3334", "target": "3326", "attributes": { "weight": 1 } }, { "key": "36877", "source": "3334", "target": "3322", "attributes": { "weight": 1 } }, { "key": "36880", "source": "3334", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36881", "source": "3335", "target": "3339", "attributes": { "weight": 1 } }, { "key": "36883", "source": "3336", "target": "3332", "attributes": { "weight": 1 } }, { "key": "36882", "source": "3336", "target": "3329", "attributes": { "weight": 1 } }, { "key": "36897", "source": "3337", "target": "2588", "attributes": { "weight": 1 } }, { "key": "36896", "source": "3337", "target": "3319", "attributes": { "weight": 1 } }, { "key": "36898", "source": "3338", "target": "3319", "attributes": { "weight": 1 } }, { "key": "36899", "source": "3338", "target": "3324", "attributes": { "weight": 1 } }, { "key": "36902", "source": "3339", "target": "2587", "attributes": { "weight": 1 } }, { "key": "36900", "source": "3339", "target": "3317", "attributes": { "weight": 1 } }, { "key": "36901", "source": "3339", "target": "3333", "attributes": { "weight": 1 } }, { "key": "36955", "source": "3340", "target": "362", "attributes": { "weight": 1 } }, { "key": "37032", "source": "3341", "target": "1358", "attributes": { "weight": 1 } }, { "key": "37035", "source": "3341", "target": "56", "attributes": { "weight": 1 } }, { "key": "37033", "source": "3341", "target": "54", "attributes": { "weight": 1 } }, { "key": "37031", "source": "3341", "target": "424", "attributes": { "weight": 1 } }, { "key": "37034", "source": "3341", "target": "231", "attributes": { "weight": 1 } }, { "key": "37040", "source": "3344", "target": "371", "attributes": { "weight": 1 } }, { "key": "37208", "source": "3345", "target": "411", "attributes": { "weight": 1 } }, { "key": "37207", "source": "3345", "target": "338", "attributes": { "weight": 1 } }, { "key": "37224", "source": "3346", "target": "681", "attributes": { "weight": 1 } }, { "key": "37249", "source": "3347", "target": "681", "attributes": { "weight": 1 } }, { "key": "37250", "source": "3348", "target": "681", "attributes": { "weight": 1 } }, { "key": "37270", "source": "3349", "target": "1806", "attributes": { "weight": 1 } }, { "key": "37269", "source": "3349", "target": "1798", "attributes": { "weight": 1 } }, { "key": "37275", "source": "3350", "target": "14", "attributes": { "weight": 1 } }, { "key": "37277", "source": "3351", "target": "2506", "attributes": { "weight": 1 } }, { "key": "37278", "source": "3351", "target": "14", "attributes": { "weight": 1 } }, { "key": "37279", "source": "3351", "target": "349", "attributes": { "weight": 1 } }, { "key": "37276", "source": "3351", "target": "3", "attributes": { "weight": 1 } }, { "key": "37280", "source": "3351", "target": "351", "attributes": { "weight": 1 } }, { "key": "37305", "source": "3352", "target": "2506", "attributes": { "weight": 1 } }, { "key": "37334", "source": "3353", "target": "3363", "attributes": { "weight": 1 } }, { "key": "37333", "source": "3353", "target": "3361", "attributes": { "weight": 1 } }, { "key": "37336", "source": "3354", "target": "3363", "attributes": { "weight": 1 } }, { "key": "37335", "source": "3354", "target": "3357", "attributes": { "weight": 1 } }, { "key": "37340", "source": "3355", "target": "3358", "attributes": { "weight": 1 } }, { "key": "37341", "source": "3355", "target": "3360", "attributes": { "weight": 1 } }, { "key": "37343", "source": "3355", "target": "3362", "attributes": { "weight": 1 } }, { "key": "37338", "source": "3355", "target": "3356", "attributes": { "weight": 1 } }, { "key": "37342", "source": "3355", "target": "1416", "attributes": { "weight": 1 } }, { "key": "37339", "source": "3355", "target": "3357", "attributes": { "weight": 1 } }, { "key": "37346", "source": "3356", "target": "3359", "attributes": { "weight": 1 } }, { "key": "37347", "source": "3356", "target": "1416", "attributes": { "weight": 1 } }, { "key": "37345", "source": "3356", "target": "3355", "attributes": { "weight": 1 } }, { "key": "37344", "source": "3356", "target": "142", "attributes": { "weight": 1 } }, { "key": "37350", "source": "3357", "target": "1414", "attributes": { "weight": 1 } }, { "key": "37348", "source": "3357", "target": "3354", "attributes": { "weight": 1 } }, { "key": "37349", "source": "3357", "target": "3355", "attributes": { "weight": 1 } }, { "key": "37351", "source": "3358", "target": "3355", "attributes": { "weight": 1 } }, { "key": "37352", "source": "3358", "target": "3360", "attributes": { "weight": 1 } }, { "key": "37353", "source": "3358", "target": "154", "attributes": { "weight": 1 } }, { "key": "37355", "source": "3359", "target": "3362", "attributes": { "weight": 1 } }, { "key": "37354", "source": "3359", "target": "3356", "attributes": { "weight": 1 } }, { "key": "37356", "source": "3360", "target": "3355", "attributes": { "weight": 1 } }, { "key": "37357", "source": "3360", "target": "3358", "attributes": { "weight": 1 } }, { "key": "37358", "source": "3361", "target": "3353", "attributes": { "weight": 1 } }, { "key": "37364", "source": "3362", "target": "3359", "attributes": { "weight": 1 } }, { "key": "37363", "source": "3362", "target": "3355", "attributes": { "weight": 1 } }, { "key": "37366", "source": "3363", "target": "3354", "attributes": { "weight": 1 } }, { "key": "37365", "source": "3363", "target": "3353", "attributes": { "weight": 1 } }, { "key": "37379", "source": "3365", "target": "2202", "attributes": { "weight": 1 } }, { "key": "37381", "source": "3366", "target": "361", "attributes": { "weight": 1 } }, { "key": "37382", "source": "3367", "target": "361", "attributes": { "weight": 1 } }, { "key": "37383", "source": "3368", "target": "361", "attributes": { "weight": 1 } }, { "key": "37384", "source": "3369", "target": "361", "attributes": { "weight": 1 } }, { "key": "37385", "source": "3370", "target": "361", "attributes": { "weight": 1 } }, { "key": "37386", "source": "3371", "target": "361", "attributes": { "weight": 1 } }, { "key": "37387", "source": "3372", "target": "361", "attributes": { "weight": 1 } }, { "key": "37397", "source": "3373", "target": "361", "attributes": { "weight": 1 } }, { "key": "37398", "source": "3374", "target": "361", "attributes": { "weight": 1 } }, { "key": "37415", "source": "3376", "target": "1024", "attributes": { "weight": 1 } }, { "key": "37414", "source": "3376", "target": "3", "attributes": { "weight": 1 } }, { "key": "37422", "source": "3377", "target": "1099", "attributes": { "weight": 1 } }, { "key": "37423", "source": "3377", "target": "1104", "attributes": { "weight": 1 } }, { "key": "37427", "source": "3378", "target": "1099", "attributes": { "weight": 1 } }, { "key": "37493", "source": "3379", "target": "1197", "attributes": { "weight": 1 } }, { "key": "37494", "source": "3380", "target": "1197", "attributes": { "weight": 1 } }, { "key": "37510", "source": "3382", "target": "1197", "attributes": { "weight": 1 } }, { "key": "37511", "source": "3383", "target": "338", "attributes": { "weight": 1 } }, { "key": "37512", "source": "3384", "target": "1197", "attributes": { "weight": 1 } }, { "key": "37518", "source": "3385", "target": "338", "attributes": { "weight": 1 } }, { "key": "37519", "source": "3386", "target": "1197", "attributes": { "weight": 1 } }, { "key": "37520", "source": "3387", "target": "1197", "attributes": { "weight": 1 } }, { "key": "37522", "source": "3389", "target": "338", "attributes": { "weight": 1 } }, { "key": "37533", "source": "3390", "target": "2971", "attributes": { "weight": 1 } }, { "key": "37531", "source": "3390", "target": "1143", "attributes": { "weight": 1 } }, { "key": "37532", "source": "3390", "target": "2960", "attributes": { "weight": 1 } }, { "key": "37534", "source": "3390", "target": "310", "attributes": { "weight": 1 } }, { "key": "37536", "source": "3391", "target": "310", "attributes": { "weight": 1 } }, { "key": "37535", "source": "3391", "target": "3404", "attributes": { "weight": 1 } }, { "key": "37539", "source": "3392", "target": "1143", "attributes": { "weight": 1 } }, { "key": "37540", "source": "3393", "target": "1143", "attributes": { "weight": 1 } }, { "key": "37542", "source": "3394", "target": "3402", "attributes": { "weight": 1 } }, { "key": "37543", "source": "3394", "target": "310", "attributes": { "weight": 1 } }, { "key": "37544", "source": "3395", "target": "3406", "attributes": { "weight": 1 } }, { "key": "37546", "source": "3396", "target": "2934", "attributes": { "weight": 1 } }, { "key": "37547", "source": "3396", "target": "3405", "attributes": { "weight": 1 } }, { "key": "37548", "source": "3397", "target": "1143", "attributes": { "weight": 1 } }, { "key": "37551", "source": "3398", "target": "310", "attributes": { "weight": 1 } }, { "key": "37558", "source": "3399", "target": "1143", "attributes": { "weight": 1 } }, { "key": "37559", "source": "3399", "target": "297", "attributes": { "weight": 1 } }, { "key": "37561", "source": "3400", "target": "3401", "attributes": { "weight": 1 } }, { "key": "37562", "source": "3400", "target": "310", "attributes": { "weight": 1 } }, { "key": "37560", "source": "3400", "target": "297", "attributes": { "weight": 1 } }, { "key": "37566", "source": "3401", "target": "3400", "attributes": { "weight": 1 } }, { "key": "37567", "source": "3401", "target": "310", "attributes": { "weight": 1 } }, { "key": "37568", "source": "3402", "target": "3394", "attributes": { "weight": 1 } }, { "key": "37569", "source": "3402", "target": "310", "attributes": { "weight": 1 } }, { "key": "37572", "source": "3403", "target": "310", "attributes": { "weight": 1 } }, { "key": "37574", "source": "3404", "target": "310", "attributes": { "weight": 1 } }, { "key": "37573", "source": "3404", "target": "3391", "attributes": { "weight": 1 } }, { "key": "37575", "source": "3405", "target": "3396", "attributes": { "weight": 1 } }, { "key": "37588", "source": "3406", "target": "3395", "attributes": { "weight": 1 } }, { "key": "37589", "source": "3406", "target": "310", "attributes": { "weight": 1 } }, { "key": "37592", "source": "3407", "target": "2969", "attributes": { "weight": 1 } }, { "key": "37593", "source": "3407", "target": "1341", "attributes": { "weight": 1 } }, { "key": "37594", "source": "3408", "target": "1143", "attributes": { "weight": 1 } } ], "options": { "type": "mixed", "multi": false, "allowSelfLoops": true } } ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-maplibre/data/sample-geojson.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [-105.00341892242432, 39.75383843460583], [-105.0008225440979, 39.751891803969535] ] }, "properties": { "popupContent": "This is a free bus line that will take you across downtown.", "underConstruction": false, "color": "red" }, "id": 1 }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [-105.0008225440979, 39.751891803969535], [-104.99820470809937, 39.74979664004068] ] }, "properties": { "popupContent": "This is a free bus line that will take you across downtown.", "underConstruction": true }, "id": 2 }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [-104.99820470809937, 39.74979664004068], [-104.98689651489258, 39.741052354709055] ] }, "properties": { "popupContent": "This is a free bus line that will take you across downtown.", "underConstruction": false }, "id": 3 } ] } ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-maplibre/geojson.ts ================================================ /** * This story shows how to handle custom interactions with MapLibre when using @sigma/layer-maplibre. */ import bindMaplibreLayer, { graphToLatlng } from "@sigma/layer-maplibre"; import { FeatureCollection } from "geojson"; import Graph from "graphology"; import { Marker } from "maplibre-gl"; import Sigma from "sigma"; import geojson from "./data/sample-geojson.json"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.addNode("b-cycle-51", { x: 0, y: 0, lat: 39.7471494, lng: -104.9998241, size: 20, color: "#e22352" }); graph.addNode("b-cycle-52", { x: 0, y: 0, lat: 39.7502833, lng: -104.9983545, size: 20, color: "#e22352" }); graph.addEdge("b-cycle-51", "b-cycle-52"); // Initiate sigma const renderer = new Sigma(graph, container); const { map } = bindMaplibreLayer(renderer); // Add a geojson on the map map.once("load", () => { map.addSource("my_custom_source", { type: "geojson", data: geojson as FeatureCollection }).addLayer({ id: "my_custom_layer", type: "line", source: "my_custom_source", paint: { "line-color": "#e22352", "line-width": 5, }, }); // When clicking on the stage of sigma, // create a marker on the map let markerOnClick: null | Marker = null; renderer.on("clickStage", (e) => { const graphCoords = renderer.viewportToGraph({ x: e.event.x, y: e.event.y }); const geoCoords = graphToLatlng(map, graphCoords); if (!markerOnClick) { markerOnClick = new Marker(); markerOnClick.setLngLat(geoCoords); markerOnClick.addTo(map); } else { markerOnClick.setLngLat(geoCoords); } }); }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-maplibre/index.html ================================================
================================================ FILE: packages/storybook/stories/3-additional-packages/layer-maplibre/resize.ts ================================================ /** * This story shows how to handle resizing with @sigma/layer-maplibre. */ import bindMapLayer from "@sigma/layer-maplibre"; import Graph from "graphology"; import { Attributes, SerializedGraph } from "graphology-types"; import Sigma from "sigma"; import data from "./data/airports.json"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = Graph.from(data as SerializedGraph); graph.updateEachNodeAttributes((_node, attributes) => ({ ...attributes, label: attributes.fullName, x: 0, y: 0, })); // initiate sigma const renderer = new Sigma(graph, container, { labelRenderedSizeThreshold: 20, defaultNodeColor: "#e22352", defaultEdgeColor: "#ffaeaf", minEdgeThickness: 1, nodeReducer: (node, attrs) => { return { ...attrs, size: Math.sqrt(graph.degree(node)) / 2, }; }, }); bindMapLayer(renderer, { getNodeLatLng: (attrs: Attributes) => ({ lat: attrs.latitude, lng: attrs.longitude }), }); let isSmall = false; const toggleButton = document.createElement("button"); toggleButton.innerText = "Toggle fullscreen"; toggleButton.style.position = "absolute"; toggleButton.style.zIndex = "1"; toggleButton.onclick = () => { container.style.width = isSmall ? "100%" : "50%"; container.style.height = isSmall ? "100%" : "50%"; renderer.refresh({ schedule: false }); isSmall = !isSmall; }; container.appendChild(toggleButton); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-maplibre/stories.ts ================================================ import { Meta, StoryObj } from "@storybook/html"; import { wrapStory } from "../../utils"; import basicPlay from "./basic"; import basicSource from "./basic?raw"; import geojsonPlay from "./geojson"; import geojsonSource from "./geojson?raw"; import template from "./index.html?raw"; import resizePlay from "./resize"; import resizeSource from "./resize?raw"; const meta: Meta = { id: "@sigma/layer-maplibre", title: "Satellite packages/@sigma--layer-maplibre", }; export default meta; type Story = StoryObj; export const story: Story = { name: "Basic example", render: () => template, play: wrapStory(basicPlay), parameters: { storySource: { source: basicSource, }, }, }; export const withAGeoJson: Story = { name: "Map interactions", render: () => template, play: wrapStory(geojsonPlay), parameters: { storySource: { source: geojsonSource, }, }, }; export const resize: Story = { name: "Change dimensions", render: () => template, play: wrapStory(resizePlay), parameters: { storySource: { source: resizeSource, }, }, }; ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-webgl/contours-highlight-group.ts ================================================ import { bindWebGLLayer, createContoursProgram } from "@sigma/layer-webgl"; import Graph from "graphology"; import louvain from "graphology-communities-louvain"; import iwanthue from "iwanthue"; import Sigma from "sigma"; import data from "../../_data/data.json"; export default () => { const graph = new Graph(); graph.import(data); // Detect communities louvain.assign(graph, { nodeCommunityAttribute: "community" }); const communities = new Set(); graph.forEachNode((_, attrs) => communities.add(attrs.community)); const communitiesArray = Array.from(communities); // Determine colors, and color each node accordingly const palette: Record = iwanthue(communities.size).reduce( (iter, color, i) => ({ ...iter, [communitiesArray[i]]: color, }), {}, ); graph.forEachNode((node, attr) => graph.setNodeAttribute(node, "color", palette[attr.community])); // Retrieve some useful DOM elements const container = document.getElementById("sigma-container") as HTMLElement; // Instantiate sigma const renderer = new Sigma(graph, container); // Add checkboxes const checkboxesContainer = document.createElement("div"); checkboxesContainer.style.position = "absolute"; checkboxesContainer.style.right = "10px"; checkboxesContainer.style.bottom = "10px"; document.body.append(checkboxesContainer); communitiesArray.forEach((community, i) => { const id = `cb-${community}`; const checkboxContainer = document.createElement("div"); checkboxContainer.innerHTML += ` `; checkboxesContainer.append(checkboxContainer); const checkbox = checkboxesContainer.querySelector(`#${id}`) as HTMLInputElement; let clean: null | (() => void) = null; const toggle = () => { if (clean) { clean(); clean = null; } else { clean = bindWebGLLayer( `community-${community}`, renderer, createContoursProgram( graph.filterNodes((_, attr) => attr.community === community), { radius: 150, border: { color: palette[community], thickness: 8, }, levels: [ { color: "#00000000", threshold: 0.5, }, ], }, ), ); } }; checkbox.addEventListener("change", toggle); if (!i) { checkbox.checked = true; toggle(); } }); return () => { renderer?.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-webgl/contours-metaballs.ts ================================================ import { bindWebGLLayer, createContoursProgram } from "@sigma/layer-webgl"; import Graph from "graphology"; import louvain from "graphology-communities-louvain"; import { parse } from "graphology-gexf/browser"; import Sigma from "sigma"; export default () => { let globalRenderer: Sigma | null = null; // Load external GEXF file: fetch("./arctic.gexf") .then((res) => res.text()) .then((gexf) => { // Parse GEXF string: const graph = parse(Graph, gexf); louvain.assign(graph, { nodeCommunityAttribute: "community" }); const communities = new Set(); graph.forEachNode((_, attrs) => communities.add(attrs.community)); const communitiesArray = Array.from(communities); // Retrieve some useful DOM elements: const container = document.getElementById("sigma-container") as HTMLElement; // Instantiate sigma: const renderer = new Sigma(graph, container); globalRenderer = renderer; // Add Select const select = document.createElement("select"); select.innerHTML = `` + communitiesArray.map((str) => ``).join(""); select.style.position = "absolute"; select.style.right = "10px"; select.style.bottom = "10px"; document.body.append(select); // Handle metaballs layer: let cleanWebGLLayer: null | (() => void) = null; const checkSelectedOption = () => { if (cleanWebGLLayer) cleanWebGLLayer(); const community = select.value; if (community) { cleanWebGLLayer = bindWebGLLayer( "metaball", renderer, createContoursProgram(graph.filterNodes((_node, attributes) => attributes.community === +community)), ); } else { cleanWebGLLayer = null; } }; select.addEventListener("change", checkSelectedOption); // Select first community: select.value = communitiesArray[0]; checkSelectedOption(); }); return () => { globalRenderer?.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-webgl/contours-multi-levels.ts ================================================ import { bindWebGLLayer, createContoursProgram } from "@sigma/layer-webgl"; import Graph from "graphology"; import Sigma from "sigma"; import data from "../../_data/data.json"; export default () => { const graph = new Graph(); graph.import(data); // Retrieve some useful DOM elements: const container = document.getElementById("sigma-container") as HTMLElement; // Instantiate sigma: const renderer = new Sigma(graph, container); bindWebGLLayer( "metaball", renderer, createContoursProgram(graph.nodes(), { radius: 150, feather: 1, border: { color: "#000000", thickness: 4, }, levels: [ { color: "#fff7f3", threshold: 0.9, }, { color: "#fde0dd", threshold: 0.8, }, { color: "#fcc5c0", threshold: 0.7, }, { color: "#fa9fb5", threshold: 0.6, }, { color: "#f768a1", threshold: 0.5, }, { color: "#dd3497", threshold: 0.4, }, { color: "#ae017e", threshold: 0.3, }, { color: "#7a0177", threshold: 0.2, }, { color: "#49006a", threshold: -0.1, }, ], }), ); return () => { renderer?.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/layer-webgl/index.html ================================================
================================================ FILE: packages/storybook/stories/3-additional-packages/layer-webgl/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import ContourLinePlay from "./contours-highlight-group"; import ContourLineSource from "./contours-highlight-group?raw"; import metaballsPlay from "./contours-metaballs"; import metaballsSource from "./contours-metaballs?raw"; import plainContourLinePlay from "./contours-multi-levels"; import plainContourLineSource from "./contours-multi-levels?raw"; import template from "./index.html?raw"; const meta: Meta = { id: "@sigma/layer-webgl", title: "Satellite packages/@sigma--layer-webgl", }; export default meta; type Story = StoryObj; export const metaballs: Story = { name: "Metaballs", render: () => template, play: wrapStory(metaballsPlay), args: {}, parameters: { storySource: { source: metaballsSource, }, }, }; export const ContourLine: Story = { name: "Highlight groups of nodes", render: () => template, play: wrapStory(ContourLinePlay), args: {}, parameters: { storySource: { source: ContourLineSource, }, }, }; export const plainContourLine: Story = { name: "Multiple levels", render: () => template, play: wrapStory(plainContourLinePlay), args: {}, parameters: { storySource: { source: plainContourLineSource, }, }, }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-border/index.html ================================================
================================================ FILE: packages/storybook/stories/3-additional-packages/node-border/node-border.ts ================================================ import { NodeBorderProgram } from "@sigma/node-border"; import Graph from "graphology"; import Sigma from "sigma"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.addNode("a", { x: 0, y: 0, size: 20, label: "A", color: "pink", borderColor: "red", }); graph.addNode("b", { x: 1, y: -1, size: 40, label: "B", color: "yellow", borderColor: "red", }); graph.addNode("c", { x: 3, y: -2, size: 20, label: "C", color: "yellow", borderColor: "red", }); graph.addNode("d", { x: 1, y: -3, size: 20, label: "D", color: "pink", borderColor: "blue", }); graph.addNode("e", { x: 3, y: -4, size: 40, label: "E", color: "pink", borderColor: "blue", }); graph.addNode("f", { x: 4, y: -5, size: 20, label: "F", color: "yellow", borderColor: "blue", }); graph.addEdge("a", "b", { size: 10 }); graph.addEdge("b", "c", { size: 10 }); graph.addEdge("b", "d", { size: 10 }); graph.addEdge("c", "b", { size: 10 }); graph.addEdge("c", "e", { size: 10 }); graph.addEdge("d", "c", { size: 10 }); graph.addEdge("d", "e", { size: 10 }); graph.addEdge("e", "d", { size: 10 }); graph.addEdge("f", "e", { size: 10 }); const renderer = new Sigma(graph, container, { defaultNodeType: "bordered", nodeProgramClasses: { bordered: NodeBorderProgram, }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-border/pixels-border.ts ================================================ import { createNodeBorderProgram } from "@sigma/node-border"; import Graph from "graphology"; import Sigma from "sigma"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.addNode("a", { x: 0, y: 0, size: 20, label: "A", borderColor: "blue", fillColor: "white", dotColor: "red", }); graph.addNode("b", { x: 1, y: -1, size: 40, label: "B", borderColor: "purple", fillColor: "white", dotColor: "red", }); graph.addNode("c", { x: 3, y: -2, size: 20, label: "C", borderColor: "purple", fillColor: "white", dotColor: "red", }); graph.addNode("d", { x: 1, y: -3, size: 20, label: "D", borderColor: "blue", fillColor: "white", dotColor: "green", }); graph.addNode("e", { x: 3, y: -4, size: 40, label: "E", borderColor: "blue", fillColor: "white", dotColor: "green", }); graph.addNode("f", { x: 4, y: -5, size: 20, label: "F", borderColor: "purple", fillColor: "white", dotColor: "green", }); graph.addEdge("a", "b", { size: 10 }); graph.addEdge("b", "c", { size: 10 }); graph.addEdge("b", "d", { size: 10 }); graph.addEdge("c", "b", { size: 10 }); graph.addEdge("c", "e", { size: 10 }); graph.addEdge("d", "c", { size: 10 }); graph.addEdge("d", "e", { size: 10 }); graph.addEdge("e", "d", { size: 10 }); graph.addEdge("f", "e", { size: 10 }); const renderer = new Sigma(graph, container, { defaultNodeType: "bordered", nodeProgramClasses: { bordered: createNodeBorderProgram({ borders: [ { size: { value: 10, mode: "pixels" }, color: { attribute: "borderColor" } }, { size: { fill: true }, color: { attribute: "fillColor" } }, { size: { value: 20, mode: "pixels" }, color: { attribute: "dotColor" } }, ], }), }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-border/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import template from "./index.html?raw"; import nodeBorderPlay from "./node-border"; import nodeBorderSource from "./node-border?raw"; import pixelsBorderPlay from "./pixels-border"; import pixelsBorderSource from "./pixels-border?raw"; import variableSizesPlay from "./variable-sizes"; import variableSizesSource from "./variable-sizes?raw"; import withImagesPlay from "./with-images"; import withImagesSource from "./with-images?raw"; const meta: Meta = { id: "@sigma/node-border", title: "Satellite packages/@sigma--node-border", }; export default meta; type Story = StoryObj; export const nodeBorder: Story = { name: "NodeBorderProgram", render: () => template, play: wrapStory(nodeBorderPlay), args: {}, parameters: { storySource: { source: nodeBorderSource, }, }, }; export const pixelsBorder: Story = { name: '"pixels" mode for border sizes', render: () => template, play: wrapStory(pixelsBorderPlay), args: {}, parameters: { storySource: { source: pixelsBorderSource, }, }, }; export const withImages: Story = { name: "Combined with images", render: () => template, play: wrapStory(withImagesPlay), args: {}, parameters: { storySource: { source: withImagesSource, }, }, }; export const variableSizes: Story = { name: "Variable border sizes", render: () => template, play: wrapStory(variableSizesPlay), args: {}, parameters: { storySource: { source: variableSizesSource, }, }, }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-border/variable-sizes.ts ================================================ import { createNodeBorderProgram } from "@sigma/node-border"; import Graph from "graphology"; import Sigma from "sigma"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.addNode("a", { x: 0, y: 0, size: 20, label: "A", color: "pink", borderColor: "red", }); graph.addNode("b", { x: 1, y: -1, size: 40, label: "B", color: "yellow", borderColor: "red", }); graph.addNode("c", { x: 3, y: -2, size: 20, borderSize: 0.8, label: "C", color: "yellow", borderColor: "red", }); graph.addNode("d", { x: 1, y: -3, size: 20, borderSize: 0.8, label: "D", color: "pink", borderColor: "blue", }); graph.addNode("e", { x: 3, y: -4, size: 40, borderSize: 0.2, label: "E", color: "pink", borderColor: "blue", }); graph.addNode("f", { x: 4, y: -5, size: 20, borderSize: 0.2, label: "F", color: "yellow", borderColor: "blue", }); graph.addEdge("a", "b", { size: 10 }); graph.addEdge("b", "c", { size: 10 }); graph.addEdge("b", "d", { size: 10 }); graph.addEdge("c", "b", { size: 10 }); graph.addEdge("c", "e", { size: 10 }); graph.addEdge("d", "c", { size: 10 }); graph.addEdge("d", "e", { size: 10 }); graph.addEdge("e", "d", { size: 10 }); graph.addEdge("f", "e", { size: 10 }); const renderer = new Sigma(graph, container, { defaultNodeType: "bordered", nodeProgramClasses: { bordered: createNodeBorderProgram({ borders: [ { size: { attribute: "borderSize", defaultValue: 0.5 }, color: { attribute: "borderColor" } }, { size: { fill: true }, color: { attribute: "color" } }, ], }), }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-border/with-images.ts ================================================ import { createNodeBorderProgram } from "@sigma/node-border"; import { createNodeImageProgram } from "@sigma/node-image"; import Graph from "graphology"; import Sigma from "sigma"; import { createNodeCompoundProgram } from "sigma/rendering"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.addNode("a", { x: 0, y: 0, size: 20, label: "A", color: "pink", pictoColor: "red", image: "https://icons.getbootstrap.com/assets/icons/person.svg", }); graph.addNode("b", { x: 1, y: -1, size: 40, label: "B", color: "yellow", pictoColor: "red", image: "https://icons.getbootstrap.com/assets/icons/building.svg", }); graph.addNode("c", { x: 3, y: -2, size: 20, label: "C", color: "yellow", pictoColor: "red", image: "https://icons.getbootstrap.com/assets/icons/chat.svg", }); graph.addNode("d", { x: 1, y: -3, size: 20, label: "D", color: "pink", pictoColor: "blue", image: "https://icons.getbootstrap.com/assets/icons/database.svg", }); graph.addNode("e", { x: 3, y: -4, size: 40, label: "E", color: "pink", pictoColor: "blue", image: "https://icons.getbootstrap.com/assets/icons/building.svg", }); graph.addNode("f", { x: 4, y: -5, size: 20, label: "F", color: "yellow", pictoColor: "blue", image: "https://icons.getbootstrap.com/assets/icons/database.svg", }); graph.addEdge("a", "b", { size: 10 }); graph.addEdge("b", "c", { size: 10 }); graph.addEdge("b", "d", { size: 10 }); graph.addEdge("c", "b", { size: 10 }); graph.addEdge("c", "e", { size: 10 }); graph.addEdge("d", "c", { size: 10 }); graph.addEdge("d", "e", { size: 10 }); graph.addEdge("e", "d", { size: 10 }); graph.addEdge("f", "e", { size: 10 }); const NodeBorderCustomProgram = createNodeBorderProgram({ borders: [ { size: { value: 0.1 }, color: { attribute: "pictoColor" } }, { size: { fill: true }, color: { attribute: "color" } }, ], }); const NodePictogramCustomProgram = createNodeImageProgram({ padding: 0.3, size: { mode: "force", value: 256 }, drawingMode: "color", colorAttribute: "pictoColor", }); const NodeProgram = createNodeCompoundProgram([NodeBorderCustomProgram, NodePictogramCustomProgram]); const renderer = new Sigma(graph, container, { defaultNodeType: "pictogram", nodeProgramClasses: { pictogram: NodeProgram, }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-image/index.html ================================================
================================================ FILE: packages/storybook/stories/3-additional-packages/node-image/local-images.ts ================================================ import { NodeImageProgram, NodePictogramProgram } from "@sigma/node-image"; import Graph from "graphology"; import Sigma from "sigma"; // Gives a URL usable at runtime import PNG_IMAGE from "./images/dice.png"; // Gives a URL usable at runtime import JPG_IMAGE from "./images/flower.jpg"; // Gives a URL usable at runtime import SVG_ICON from "./images/icon-0.svg"; // Gives the string content of the SVG image import RAW_SVG_ICON from "./images/icon-1.svg?raw"; const STRING_SVG_ICON = ` `; const BASE_64_IMAGE = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAApgAAAKYB3X3/OAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAANCSURBVEiJtZZPbBtFFMZ/M7ubXdtdb1xSFyeilBapySVU8h8OoFaooFSqiihIVIpQBKci6KEg9Q6H9kovIHoCIVQJJCKE1ENFjnAgcaSGC6rEnxBwA04Tx43t2FnvDAfjkNibxgHxnWb2e/u992bee7tCa00YFsffekFY+nUzFtjW0LrvjRXrCDIAaPLlW0nHL0SsZtVoaF98mLrx3pdhOqLtYPHChahZcYYO7KvPFxvRl5XPp1sN3adWiD1ZAqD6XYK1b/dvE5IWryTt2udLFedwc1+9kLp+vbbpoDh+6TklxBeAi9TL0taeWpdmZzQDry0AcO+jQ12RyohqqoYoo8RDwJrU+qXkjWtfi8Xxt58BdQuwQs9qC/afLwCw8tnQbqYAPsgxE1S6F3EAIXux2oQFKm0ihMsOF71dHYx+f3NND68ghCu1YIoePPQN1pGRABkJ6Bus96CutRZMydTl+TvuiRW1m3n0eDl0vRPcEysqdXn+jsQPsrHMquGeXEaY4Yk4wxWcY5V/9scqOMOVUFthatyTy8QyqwZ+kDURKoMWxNKr2EeqVKcTNOajqKoBgOE28U4tdQl5p5bwCw7BWquaZSzAPlwjlithJtp3pTImSqQRrb2Z8PHGigD4RZuNX6JYj6wj7O4TFLbCO/Mn/m8R+h6rYSUb3ekokRY6f/YukArN979jcW+V/S8g0eT/N3VN3kTqWbQ428m9/8k0P/1aIhF36PccEl6EhOcAUCrXKZXXWS3XKd2vc/TRBG9O5ELC17MmWubD2nKhUKZa26Ba2+D3P+4/MNCFwg59oWVeYhkzgN/JDR8deKBoD7Y+ljEjGZ0sosXVTvbc6RHirr2reNy1OXd6pJsQ+gqjk8VWFYmHrwBzW/n+uMPFiRwHB2I7ih8ciHFxIkd/3Omk5tCDV1t+2nNu5sxxpDFNx+huNhVT3/zMDz8usXC3ddaHBj1GHj/As08fwTS7Kt1HBTmyN29vdwAw+/wbwLVOJ3uAD1wi/dUH7Qei66PfyuRj4Ik9is+hglfbkbfR3cnZm7chlUWLdwmprtCohX4HUtlOcQjLYCu+fzGJH2QRKvP3UNz8bWk1qMxjGTOMThZ3kvgLI5AzFfo379UAAAAASUVORK5CYII="; function svgToDataURI(svg: string): string { const blob = new Blob([svg], { type: "image/svg+xml" }); return URL.createObjectURL(blob); } export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.addNode("a", { x: 0, y: 0, size: 20, label: "A", color: "red", image: PNG_IMAGE, type: "image", }); graph.addNode("b", { x: 1, y: -1, size: 40, label: "B", color: "red", image: JPG_IMAGE, type: "image", }); graph.addNode("c", { x: 3, y: -2, size: 20, label: "C", color: "red", image: SVG_ICON, type: "pictogram", }); graph.addNode("d", { x: 1, y: -3, size: 20, label: "D", color: "blue", image: svgToDataURI(RAW_SVG_ICON), type: "pictogram", }); graph.addNode("e", { x: 3, y: -4, size: 40, label: "E", color: "blue", image: svgToDataURI(STRING_SVG_ICON), type: "pictogram", }); graph.addNode("f", { x: 4, y: -5, size: 20, label: "F", color: "blue", image: BASE_64_IMAGE, type: "image", }); graph.addEdge("a", "b", { size: 10 }); graph.addEdge("b", "c", { size: 10 }); graph.addEdge("b", "d", { size: 10 }); graph.addEdge("c", "b", { size: 10 }); graph.addEdge("c", "e", { size: 10 }); graph.addEdge("d", "c", { size: 10 }); graph.addEdge("d", "e", { size: 10 }); graph.addEdge("e", "d", { size: 10 }); graph.addEdge("f", "e", { size: 10 }); const renderer = new Sigma(graph, container, { nodeProgramClasses: { image: NodeImageProgram, pictogram: NodePictogramProgram, }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-image/node-images.ts ================================================ import { NodeImageProgram } from "@sigma/node-image"; import Graph from "graphology"; import Sigma from "sigma"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.addNode("a", { x: 0, y: 0, size: 20, label: "Jim", image: "https://upload.wikimedia.org/wikipedia/commons/7/7f/Jim_Morrison_1969.JPG", }); graph.addNode("b", { x: 1, y: -1, size: 40, label: "Johnny", image: "https://upload.wikimedia.org/wikipedia/commons/a/a8/Johnny_Hallyday_%E2%80%94_Milan%2C_1973.jpg", }); graph.addNode("c", { x: 3, y: -2, size: 20, label: "Jimi", image: "https://upload.wikimedia.org/wikipedia/commons/6/6c/Jimi-Hendrix-1967-Helsinki-d.jpg", }); graph.addNode("d", { x: 1, y: -3, size: 20, label: "Bob", image: "https://upload.wikimedia.org/wikipedia/commons/c/c5/Bob-Dylan-arrived-at-Arlanda-surrounded-by-twenty-bodyguards-and-assistants-391770740297_%28cropped%29.jpg", }); graph.addNode("e", { x: 3, y: -4, size: 40, label: "Eric", image: "https://upload.wikimedia.org/wikipedia/commons/b/b1/Eric_Clapton_1.jpg", }); graph.addNode("f", { x: 4, y: -5, size: 20, label: "Mick", image: "https://upload.wikimedia.org/wikipedia/commons/6/66/Mick-Jagger-1965b.jpg", }); graph.addEdge("a", "b", { size: 10 }); graph.addEdge("b", "c", { size: 10 }); graph.addEdge("b", "d", { size: 10 }); graph.addEdge("c", "b", { size: 10 }); graph.addEdge("c", "e", { size: 10 }); graph.addEdge("d", "c", { size: 10 }); graph.addEdge("d", "e", { size: 10 }); graph.addEdge("e", "d", { size: 10 }); graph.addEdge("f", "e", { size: 10 }); const renderer = new Sigma(graph, container, { defaultNodeType: "image", nodeProgramClasses: { image: NodeImageProgram, }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-image/node-pictograms-background.ts ================================================ import { createNodeImageProgram } from "@sigma/node-image"; import Graph from "graphology"; import Sigma from "sigma"; import { NodeCircleProgram, createNodeCompoundProgram } from "sigma/rendering"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.addNode("a", { x: 0, y: 0, size: 20, label: "A", color: "pink", pictoColor: "red", image: "https://icons.getbootstrap.com/assets/icons/person.svg", }); graph.addNode("b", { x: 1, y: -1, size: 40, label: "B", color: "yellow", pictoColor: "red", image: "https://icons.getbootstrap.com/assets/icons/building.svg", }); graph.addNode("c", { x: 3, y: -2, size: 20, label: "C", color: "yellow", pictoColor: "red", image: "https://icons.getbootstrap.com/assets/icons/chat.svg", }); graph.addNode("d", { x: 1, y: -3, size: 20, label: "D", color: "pink", pictoColor: "blue", image: "https://icons.getbootstrap.com/assets/icons/database.svg", }); graph.addNode("e", { x: 3, y: -4, size: 40, label: "E", color: "pink", pictoColor: "blue", image: "https://icons.getbootstrap.com/assets/icons/building.svg", }); graph.addNode("f", { x: 4, y: -5, size: 20, label: "F", color: "yellow", pictoColor: "blue", image: "https://icons.getbootstrap.com/assets/icons/database.svg", }); graph.addEdge("a", "b", { size: 10 }); graph.addEdge("b", "c", { size: 10 }); graph.addEdge("b", "d", { size: 10 }); graph.addEdge("c", "b", { size: 10 }); graph.addEdge("c", "e", { size: 10 }); graph.addEdge("d", "c", { size: 10 }); graph.addEdge("d", "e", { size: 10 }); graph.addEdge("e", "d", { size: 10 }); graph.addEdge("f", "e", { size: 10 }); const NodePictogramCustomProgram = createNodeImageProgram({ padding: 0.15, size: { mode: "force", value: 256 }, drawingMode: "color", colorAttribute: "pictoColor", }); const NodeProgram = createNodeCompoundProgram([NodeCircleProgram, NodePictogramCustomProgram]); const renderer = new Sigma(graph, container, { defaultNodeType: "pictogram", nodeProgramClasses: { pictogram: NodeProgram, }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-image/node-pictograms.ts ================================================ import { NodePictogramProgram } from "@sigma/node-image"; import Graph from "graphology"; import Sigma from "sigma"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.addNode("a", { x: 0, y: 0, size: 20, label: "A", color: "red", image: "https://icons.getbootstrap.com/assets/icons/person.svg", }); graph.addNode("b", { x: 1, y: -1, size: 40, label: "B", color: "red", image: "https://icons.getbootstrap.com/assets/icons/building.svg", }); graph.addNode("c", { x: 3, y: -2, size: 20, label: "C", color: "red", image: "https://icons.getbootstrap.com/assets/icons/chat.svg", }); graph.addNode("d", { x: 1, y: -3, size: 20, label: "D", color: "blue", image: "https://icons.getbootstrap.com/assets/icons/database.svg", }); graph.addNode("e", { x: 3, y: -4, size: 40, label: "E", color: "blue", image: "https://icons.getbootstrap.com/assets/icons/building.svg", }); graph.addNode("f", { x: 4, y: -5, size: 20, label: "F", color: "blue", image: "https://icons.getbootstrap.com/assets/icons/database.svg", }); graph.addEdge("a", "b", { size: 10 }); graph.addEdge("b", "c", { size: 10 }); graph.addEdge("b", "d", { size: 10 }); graph.addEdge("c", "b", { size: 10 }); graph.addEdge("c", "e", { size: 10 }); graph.addEdge("d", "c", { size: 10 }); graph.addEdge("d", "e", { size: 10 }); graph.addEdge("e", "d", { size: 10 }); graph.addEdge("f", "e", { size: 10 }); const renderer = new Sigma(graph, container, { defaultNodeType: "pictogram", nodeProgramClasses: { pictogram: NodePictogramProgram, }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-image/options-showcase.ts ================================================ import { createNodeImageProgram } from "@sigma/node-image"; import chroma from "chroma-js"; import Graph from "graphology"; import Sigma from "sigma"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const IMAGES = [ // Images "https://upload.wikimedia.org/wikipedia/commons/5/5b/6n-graf.svg", "https://upload.wikimedia.org/wikipedia/commons/a/ae/R%C3%A9seaux_d%C3%A9centralis%C3%A9s.png", "https://upload.wikimedia.org/wikipedia/commons/4/49/Confluence_of_Erdre_and_Loire%2C_Nantes%2C_France%2C_1890s.jpg", "https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Johnny_Hallyday_en_2009_%C3%A0_Bruxelles.jpg/640px-Johnny_Hallyday_en_2009_%C3%A0_Bruxelles.jpg", // Icons "https://icons.getbootstrap.com/assets/icons/person.svg", "https://icons.getbootstrap.com/assets/icons/building.svg", "https://icons.getbootstrap.com/assets/icons/chat.svg", "https://icons.getbootstrap.com/assets/icons/database.svg", // Weird cases: undefined, 123, "/404.png", ]; const COLORS = chroma.scale(["yellow", "red", "teal"]).mode("lch").colors(IMAGES.length); const RENDERERS = [ { type: "default", renderer: createNodeImageProgram() }, { type: "color", renderer: createNodeImageProgram() }, { type: "padding", renderer: createNodeImageProgram({ padding: 0.25, }), }, { type: "padding-color", renderer: createNodeImageProgram({ padding: 0.25, drawingMode: "color", }), }, { type: "center", renderer: createNodeImageProgram({ keepWithinCircle: true, correctCentering: true, }), }, { type: "scaled-no-crop", renderer: createNodeImageProgram({ size: { mode: "force", value: 256 }, drawingMode: "color", keepWithinCircle: false, }), }, { type: "scaled-no-crop-centered", renderer: createNodeImageProgram({ size: { mode: "force", value: 256 }, drawingMode: "color", keepWithinCircle: false, correctCentering: true, }), }, { type: "center-color", renderer: createNodeImageProgram({ keepWithinCircle: true, correctCentering: true, drawingMode: "color", }), }, { type: "scaled", renderer: createNodeImageProgram({ size: { mode: "force", value: 256 }, }), }, { type: "scaled-color", renderer: createNodeImageProgram({ size: { mode: "force", value: 256 }, drawingMode: "color", }), }, { type: "center-scaled", renderer: createNodeImageProgram({ size: { mode: "force", value: 256 }, correctCentering: true, }), }, { type: "center-scaled-color", renderer: createNodeImageProgram({ size: { mode: "force", value: 256 }, correctCentering: true, drawingMode: "color", }), }, ]; const graph = new Graph(); IMAGES.forEach((image, i) => { RENDERERS.forEach(({ type }, j) => { graph.addNode(`${i}-${j}`, { x: 10 * i, y: -10 * j, size: 3, color: COLORS[i], type, image, }); if (i) graph.addEdge(`${i - 1}-${j}`, `${i}-${j}`, { color: COLORS[i - 1], }); if (j) graph.addEdge(`${i}-${j - 1}`, `${i}-${j}`, { color: COLORS[i], }); }); }); const renderer = new Sigma(graph, container, { allowInvalidContainer: true, stagePadding: 50, itemSizesReference: "positions", zoomToSizeRatioFunction: (x) => x, nodeProgramClasses: RENDERERS.reduce( (iter, { type, renderer }) => ({ ...iter, [type]: renderer, }), {}, ), }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-image/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import template from "./index.html?raw"; import localImagesPlay from "./local-images"; import localImagesSource from "./local-images?raw"; import nodeImagesPlay from "./node-images"; import nodeImagesSource from "./node-images?raw"; import nodePictogramsPlay from "./node-pictograms"; import nodePictogramsBackgroundPlay from "./node-pictograms-background"; import nodePictogramsBackgroundSource from "./node-pictograms-background?raw"; import nodePictogramsSource from "./node-pictograms?raw"; import optionsShowcasePlay from "./options-showcase"; import optionsShowcaseSource from "./options-showcase?raw"; const meta: Meta = { id: "@sigma/node-image", title: "Satellite packages/@sigma--node-image", }; export default meta; type Story = StoryObj; export const nodeImages: Story = { name: "NodeImageRenderer", render: () => template, play: wrapStory(nodeImagesPlay), args: {}, parameters: { storySource: { source: nodeImagesSource, }, }, }; export const nodePictograms: Story = { name: "NodePictogramRenderer", render: () => template, play: wrapStory(nodePictogramsPlay), args: {}, parameters: { storySource: { source: nodePictogramsSource, }, }, }; export const nodePictogramsWithBackground: Story = { name: "NodePictogramRenderer with background colors", render: () => template, play: wrapStory(nodePictogramsBackgroundPlay), args: {}, parameters: { storySource: { source: nodePictogramsBackgroundSource, }, }, }; export const localImages: Story = { name: "Displaying local images", render: () => template, play: wrapStory(localImagesPlay), args: {}, parameters: { storySource: { source: localImagesSource, }, }, }; export const optionsShowcase: Story = { name: "Options showcase", render: () => template, play: wrapStory(optionsShowcasePlay), args: {}, parameters: { storySource: { source: optionsShowcaseSource, }, }, }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-piechart/fixed-colors.ts ================================================ import { createNodePiechartProgram } from "@sigma/node-piechart"; import Graph from "graphology"; import Sigma from "sigma"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.addNode("a", { x: 0, y: 0, size: 20, label: "A", positive: 10, neutral: 17, negative: 14, }); graph.addNode("b", { x: 1, y: -1, size: 40, label: "B", positive: 2, neutral: 4, negative: 1, }); graph.addNode("c", { x: 3, y: -2, size: 20, label: "C", positive: 0, neutral: 8, negative: 3, }); graph.addNode("d", { x: 1, y: -3, size: 20, label: "D", positive: 0, negative: 0, }); graph.addNode("e", { x: 3, y: -4, size: 40, label: "E", positive: 17, neutral: 1, negative: 3, }); graph.addNode("f", { x: 4, y: -5, size: 20, label: "F", neutral: 8, negative: 4, }); graph.addEdge("a", "b", { size: 10 }); graph.addEdge("b", "c", { size: 10 }); graph.addEdge("b", "d", { size: 10 }); graph.addEdge("c", "b", { size: 10 }); graph.addEdge("c", "e", { size: 10 }); graph.addEdge("d", "c", { size: 10 }); graph.addEdge("d", "e", { size: 10 }); graph.addEdge("e", "d", { size: 10 }); graph.addEdge("f", "e", { size: 10 }); const NodePiechartProgram = createNodePiechartProgram({ defaultColor: "#BCB7C4", slices: [ { color: { value: "#F05454" }, value: { attribute: "negative" } }, { color: { value: "#7798FA" }, value: { attribute: "neutral" } }, { color: { value: "#6DDB55" }, value: { attribute: "positive" } }, ], }); const renderer = new Sigma(graph, container, { defaultNodeType: "piechart", nodeProgramClasses: { piechart: NodePiechartProgram, }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-piechart/fixed-values.ts ================================================ import { CreateNodePiechartProgramOptions, createNodePiechartProgram } from "@sigma/node-piechart"; import Graph from "graphology"; import Sigma from "sigma"; import { DEFAULT_NODE_PROGRAM_CLASSES } from "sigma/settings"; import { NodeDisplayData } from "sigma/types"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph & { colors: string[] }>(); const COLOR_1 = "#956b5e"; const COLOR_2 = "#ff44de"; const COLOR_3 = "#71db97"; const COLOR_4 = "#ff813b"; // This example shows how to render nodes that have multiple colors: graph.addNode("a", { x: 0, y: 0, size: 20, label: "A", colors: [COLOR_1], }); graph.addNode("b", { x: 1, y: -1, size: 40, label: "B", colors: [COLOR_1, COLOR_2, COLOR_3], }); graph.addNode("c", { x: 3, y: -2, size: 20, label: "C", colors: [COLOR_2], }); graph.addNode("d", { x: 1, y: -3, size: 20, label: "D", colors: [COLOR_2, COLOR_3], }); graph.addNode("e", { x: 3, y: -4, size: 40, label: "E", colors: [COLOR_2, COLOR_3, COLOR_4], }); graph.addNode("f", { x: 4, y: -5, size: 20, label: "F", colors: [COLOR_4], }); graph.addEdge("a", "b", { size: 10 }); graph.addEdge("b", "c", { size: 10 }); graph.addEdge("b", "d", { size: 10 }); graph.addEdge("c", "b", { size: 10 }); graph.addEdge("c", "e", { size: 10 }); graph.addEdge("d", "c", { size: 10 }); graph.addEdge("d", "e", { size: 10 }); graph.addEdge("e", "d", { size: 10 }); graph.addEdge("f", "e", { size: 10 }); const maxCount = Math.max(...graph.mapNodes((_, { colors }) => colors.length)); const nodeProgramClasses = { ...DEFAULT_NODE_PROGRAM_CLASSES }; for (let i = 2; i <= maxCount; i++) { const slices: CreateNodePiechartProgramOptions["slices"] = [{ color: { attribute: "color" }, value: { value: 1 } }]; for (let j = 1; j < i; j++) slices.push({ color: { attribute: `color-${j}` }, value: { value: 1 } }); nodeProgramClasses[`pie-${i}`] = createNodePiechartProgram({ slices, }); } const renderer = new Sigma(graph, container, { nodeProgramClasses, nodeReducer: (_, data) => { const colors = data.colors as string[]; data.type = colors.length <= 1 ? "circle" : `pie-${colors.length}`; data.color = colors[0]; for (let i = 1; i < colors.length; i++) data[`color-${i}` as "color"] = colors[i]; return data; }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-piechart/index.html ================================================
================================================ FILE: packages/storybook/stories/3-additional-packages/node-piechart/offsets.ts ================================================ import { createNodePiechartProgram } from "@sigma/node-piechart"; import Graph from "graphology"; import Sigma from "sigma"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.addNode("a", { x: 0, y: 0, size: 20, label: "A", }); graph.addNode("b", { x: 1, y: -1, size: 40, label: "B", offset: Math.PI / 3, }); graph.addNode("c", { x: 3, y: -2, size: 20, label: "C", offset: Math.PI / 2, }); graph.addNode("d", { x: 1, y: -3, size: 20, label: "D", offset: Math.PI, }); graph.addNode("e", { x: 3, y: -4, size: 40, label: "E", offset: (Math.PI * 2) / 3, }); graph.addNode("f", { x: 4, y: -5, size: 20, label: "F", offset: (Math.PI * 3) / 2, }); graph.addEdge("a", "b", { size: 10 }); graph.addEdge("b", "c", { size: 10 }); graph.addEdge("b", "d", { size: 10 }); graph.addEdge("c", "b", { size: 10 }); graph.addEdge("c", "e", { size: 10 }); graph.addEdge("d", "c", { size: 10 }); graph.addEdge("d", "e", { size: 10 }); graph.addEdge("e", "d", { size: 10 }); graph.addEdge("f", "e", { size: 10 }); const NodePiechartProgram = createNodePiechartProgram({ defaultColor: "#BCB7C4", offset: { attribute: "offset" }, slices: [ { color: { value: "yellow" }, value: { value: 1 } }, { color: { value: "orange" }, value: { value: 1 } }, ], }); const renderer = new Sigma(graph, container, { defaultNodeType: "piechart", nodeProgramClasses: { piechart: NodePiechartProgram, }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-piechart/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import fixedColorsPlay from "./fixed-colors"; import fixedColorsSource from "./fixed-colors?raw"; import fixedValuesPlay from "./fixed-values"; import fixedValuesSource from "./fixed-values?raw"; import template from "./index.html?raw"; import offsetsPlay from "./offsets"; import offsetsSource from "./offsets?raw"; const meta: Meta = { id: "@sigma/node-piechart", title: "Satellite packages/@sigma--node-piechart", }; export default meta; type Story = StoryObj; export const fixedColors: Story = { name: "Fixed colors, varying values", render: () => template, play: wrapStory(fixedColorsPlay), args: {}, parameters: { storySource: { source: fixedColorsSource, }, }, }; export const fixedValues: Story = { name: "Fixed values, varying colors", render: () => template, play: wrapStory(fixedValuesPlay), args: {}, parameters: { storySource: { source: fixedValuesSource, }, }, }; export const offsets: Story = { name: "Varying offsets", render: () => template, play: wrapStory(offsetsPlay), args: {}, parameters: { storySource: { source: offsetsSource, }, }, }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-square/index.html ================================================
================================================ FILE: packages/storybook/stories/3-additional-packages/node-square/mixed-programs.ts ================================================ import { NodeSquareProgram } from "@sigma/node-square"; import Graph from "graphology"; import Sigma from "sigma"; import { DEFAULT_NODE_PROGRAM_CLASSES } from "sigma/settings"; export default () => { const container = document.getElementById("sigma-container") as HTMLElement; const graph = new Graph(); graph.addNode("a", { x: 0, y: 0, size: 20, label: "A", }); graph.addNode("b", { x: 1, y: -1, size: 40, label: "B", type: "square", }); graph.addNode("c", { x: 3, y: -2, size: 20, label: "C", type: "square", }); graph.addNode("d", { x: 1, y: -3, size: 20, label: "D", }); graph.addNode("e", { x: 3, y: -4, size: 40, label: "E", type: "square", }); graph.addNode("f", { x: 4, y: -5, size: 20, label: "F", }); graph.addEdge("a", "b", { size: 10 }); graph.addEdge("b", "c", { size: 10 }); graph.addEdge("b", "d", { size: 10 }); graph.addEdge("c", "b", { size: 10 }); graph.addEdge("c", "e", { size: 10 }); graph.addEdge("d", "c", { size: 10 }); graph.addEdge("d", "e", { size: 10 }); graph.addEdge("e", "d", { size: 10 }); graph.addEdge("f", "e", { size: 10 }); const renderer = new Sigma(graph, container, { nodeProgramClasses: { ...DEFAULT_NODE_PROGRAM_CLASSES, square: NodeSquareProgram, }, }); return () => { renderer.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/node-square/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import template from "./index.html?raw"; import mixedProgramsPlay from "./mixed-programs"; import mixedProgramsSource from "./mixed-programs?raw"; const meta: Meta = { id: "@sigma/node-square", title: "Satellite packages/@sigma--node-square", }; export default meta; type Story = StoryObj; export const mixedPrograms: Story = { name: "Mixed programs", render: () => template, play: wrapStory(mixedProgramsPlay), args: {}, parameters: { storySource: { source: mixedProgramsSource, }, }, }; ================================================ FILE: packages/storybook/stories/3-additional-packages/utils/fit-viewport-to-nodes.ts ================================================ import { fitViewportToNodes } from "@sigma/utils"; import Graph from "graphology"; import louvain from "graphology-communities-louvain"; import iwanthue from "iwanthue"; import Sigma from "sigma"; import data from "../../_data/data.json"; export default () => { const graph = new Graph(); graph.import(data); // Detect communities louvain.assign(graph, { nodeCommunityAttribute: "community" }); const communities = new Set(); graph.forEachNode((_, attrs) => communities.add(attrs.community)); const communitiesArray = Array.from(communities); // Determine colors, and color each node accordingly const palette: Record = iwanthue(communities.size).reduce( (iter, color, i) => ({ ...iter, [communitiesArray[i]]: color, }), {}, ); graph.forEachNode((node, attr) => graph.setNodeAttribute(node, "color", palette[attr.community])); // Retrieve some useful DOM elements const container = document.getElementById("sigma-container") as HTMLElement; // Instantiate sigma const renderer = new Sigma(graph, container); // Add buttons const buttonsContainer = document.createElement("div"); buttonsContainer.style.position = "absolute"; buttonsContainer.style.right = "10px"; buttonsContainer.style.bottom = "10px"; document.body.append(buttonsContainer); communitiesArray.forEach((community) => { const id = `cb-${community}`; const buttonContainer = document.createElement("div"); buttonContainer.innerHTML += ` `; buttonsContainer.append(buttonContainer); const button = buttonsContainer.querySelector(`#${id}`) as HTMLButtonElement; button.addEventListener("click", () => { fitViewportToNodes( renderer, graph.filterNodes((_, attr) => attr.community === community), { animate: true }, ); }); }); return () => { renderer?.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/utils/get-nodes-in-viewport.ts ================================================ import { getNodesInViewport } from "@sigma/utils"; import Graph from "graphology"; import Sigma from "sigma"; import data from "../../_data/data.json"; export default () => { const graph = new Graph(); graph.import(data); // Retrieve some useful DOM elements const container = document.getElementById("sigma-container") as HTMLElement; // Instantiate sigma const renderer = new Sigma(graph, container); // Add buttons const logsContainer = document.createElement("div"); logsContainer.style.position = "absolute"; logsContainer.style.left = "10px"; logsContainer.style.top = "10px"; document.body.append(logsContainer); setInterval(() => { const nodesInViewport = getNodesInViewport(renderer); const count = nodesInViewport.length; logsContainer.innerHTML = count === 0 ? "No visible node" : count === 1 ? "One visible node" : `${count} visible nodes`; }, 200); return () => { renderer?.kill(); }; }; ================================================ FILE: packages/storybook/stories/3-additional-packages/utils/index.html ================================================
================================================ FILE: packages/storybook/stories/3-additional-packages/utils/stories.ts ================================================ import type { Meta, StoryObj } from "@storybook/web-components"; import { wrapStory } from "../../utils"; import FitViewportToNodesPlay from "./fit-viewport-to-nodes"; import FitViewportToNodesSource from "./fit-viewport-to-nodes?raw"; import GetNodesInViewportPlay from "./get-nodes-in-viewport"; import GetNodesInViewportSource from "./get-nodes-in-viewport?raw"; import template from "./index.html?raw"; const meta: Meta = { id: "@sigma/utils", title: "Satellite packages/@sigma--utils", }; export default meta; type Story = StoryObj; export const FitViewportToNodes: Story = { name: "Fit viewport to nodes", render: () => template, play: wrapStory(FitViewportToNodesPlay), args: {}, parameters: { storySource: { source: FitViewportToNodesSource, }, }, }; export const GetNodesInViewport: Story = { name: "Get nodes in viewport", render: () => template, play: wrapStory(GetNodesInViewportPlay), args: {}, parameters: { storySource: { source: GetNodesInViewportSource, }, }, }; ================================================ FILE: packages/storybook/stories/_data/data.json ================================================ { "nodes": [ { "key": "0.0", "attributes": { "x": 268.72385, "y": 91.18155, "size": 22.714287, "label": "Myriel", "color": "#D8482D" } }, { "key": "1.0", "attributes": { "x": 296.39902, "y": 57.118374, "size": 15, "label": "Napoleon", "color": "#B30000" } }, { "key": "2.0", "attributes": { "x": 248.45229, "y": 52.22656, "size": 16.714285, "label": "MlleBaptistine", "color": "#BB100A" } }, { "key": "3.0", "attributes": { "x": 224.83313, "y": 98.01885, "size": 16.714285, "label": "MmeMagloire", "color": "#BB100A" } }, { "key": "4.0", "attributes": { "x": 270.9098, "y": 149.2961, "size": 15, "label": "CountessDeLo", "color": "#B30000" } }, { "key": "5.0", "attributes": { "x": 318.6509, "y": 85.41602, "size": 15, "label": "Geborand", "color": "#B30000" } }, { "key": "6.0", "attributes": { "x": 330.3126, "y": 117.94921, "size": 15, "label": "Champtercier", "color": "#B30000" } }, { "key": "7.0", "attributes": { "x": 310.513, "y": 155.66956, "size": 15, "label": "Cravatte", "color": "#B30000" } }, { "key": "8.0", "attributes": { "x": 295.74683, "y": 124.78035, "size": 15, "label": "Count", "color": "#B30000" } }, { "key": "9.0", "attributes": { "x": 241.03372, "y": 131.8897, "size": 15, "label": "OldMan", "color": "#B30000" } }, { "key": "10.0", "attributes": { "x": -55.532795, "y": -246.75798, "size": 15, "label": "Labarre", "color": "#B30000" } }, { "key": "11.0", "attributes": { "x": -8.81755, "y": -60.480377, "size": 45, "label": "Valjean", "color": "#FEF0D9" } }, { "key": "12.0", "attributes": { "x": 116.85369, "y": -100.77216, "size": 15.857142, "label": "Marguerite", "color": "#B70805" } }, { "key": "13.0", "attributes": { "x": 78.10812, "y": -16.99423, "size": 15, "label": "MmeDeR", "color": "#B30000" } }, { "key": "14.0", "attributes": { "x": 47.669666, "y": -96.23158, "size": 15, "label": "Isabeau", "color": "#B30000" } }, { "key": "15.0", "attributes": { "x": 20.945133, "y": -118.35298, "size": 15, "label": "Gervais", "color": "#B30000" } }, { "key": "16.0", "attributes": { "x": 232.50653, "y": -165.75543, "size": 21.857143, "label": "Tholomyes", "color": "#D44028" } }, { "key": "17.0", "attributes": { "x": 322.50223, "y": -210.94756, "size": 20.142857, "label": "Listolier", "color": "#CC301E" } }, { "key": "18.0", "attributes": { "x": 322.0389, "y": -162.5361, "size": 20.142857, "label": "Fameuil", "color": "#CC301E" } }, { "key": "19.0", "attributes": { "x": 282.84045, "y": -234.37758, "size": 20.142857, "label": "Blacheville", "color": "#CC301E" } }, { "key": "20.0", "attributes": { "x": 282.14212, "y": -141.3707, "size": 20.142857, "label": "Favourite", "color": "#CC301E" } }, { "key": "21.0", "attributes": { "x": 279.24896, "y": -186.69917, "size": 20.142857, "label": "Dahlia", "color": "#CC301E" } }, { "key": "22.0", "attributes": { "x": 240.49136, "y": -212.45226, "size": 20.142857, "label": "Zephine", "color": "#CC301E" } }, { "key": "23.0", "attributes": { "x": 185.86234, "y": -128.47615, "size": 27, "label": "Fantine", "color": "#ED7047" } }, { "key": "24.0", "attributes": { "x": -15.730793, "y": 46.37429, "size": 23.57143, "label": "MmeThenardier", "color": "#DC5032" } }, { "key": "25.0", "attributes": { "x": 3.6068764, "y": 98.60965, "size": 27.857143, "label": "Thenardier", "color": "#F1784C" } }, { "key": "26.0", "attributes": { "x": -69.92912, "y": -15.777599, "size": 23.57143, "label": "Cosette", "color": "#DC5032" } }, { "key": "27.0", "attributes": { "x": 54.198936, "y": 49.115128, "size": 28.714287, "label": "Javert", "color": "#F58051" } }, { "key": "28.0", "attributes": { "x": 58.138313, "y": -56.714897, "size": 17.571428, "label": "Fauchelevent", "color": "#BF180F" } }, { "key": "29.0", "attributes": { "x": 97.39532, "y": -157.35661, "size": 21, "label": "Bamatabois", "color": "#D03823" } }, { "key": "30.0", "attributes": { "x": 157.66608, "y": -88.86034, "size": 15.857142, "label": "Perpetue", "color": "#B70805" } }, { "key": "31.0", "attributes": { "x": 130.24326, "y": -62.113045, "size": 17.571428, "label": "Simplice", "color": "#BF180F" } }, { "key": "32.0", "attributes": { "x": -31.725157, "y": -124.8531, "size": 15, "label": "Scaufflaire", "color": "#B30000" } }, { "key": "33.0", "attributes": { "x": 45.4282, "y": -2.6807823, "size": 15.857142, "label": "Woman1", "color": "#B70805" } }, { "key": "34.0", "attributes": { "x": -2.146402, "y": -152.7878, "size": 19.285715, "label": "Judge", "color": "#C72819" } }, { "key": "35.0", "attributes": { "x": 54.183117, "y": -142.10239, "size": 19.285715, "label": "Champmathieu", "color": "#C72819" } }, { "key": "36.0", "attributes": { "x": -21.096437, "y": -192.47128, "size": 19.285715, "label": "Brevet", "color": "#C72819" } }, { "key": "37.0", "attributes": { "x": 56.919018, "y": -184.99847, "size": 19.285715, "label": "Chenildieu", "color": "#C72819" } }, { "key": "38.0", "attributes": { "x": 21.456747, "y": -211.19899, "size": 19.285715, "label": "Cochepaille", "color": "#C72819" } }, { "key": "39.0", "attributes": { "x": -69.42261, "y": 66.22773, "size": 16.714285, "label": "Pontmercy", "color": "#BB100A" } }, { "key": "40.0", "attributes": { "x": 52.13746, "y": 97.863976, "size": 15, "label": "Boulatruelle", "color": "#B30000" } }, { "key": "41.0", "attributes": { "x": -84.15585, "y": 140.50175, "size": 23.57143, "label": "Eponine", "color": "#DC5032" } }, { "key": "42.0", "attributes": { "x": -47.696083, "y": 112.90357, "size": 16.714285, "label": "Anzelma", "color": "#BB100A" } }, { "key": "43.0", "attributes": { "x": 10.037987, "y": 7.8234367, "size": 16.714285, "label": "Woman2", "color": "#BB100A" } }, { "key": "44.0", "attributes": { "x": 82.99555, "y": -87.651726, "size": 15.857142, "label": "MotherInnocent", "color": "#B70805" } }, { "key": "45.0", "attributes": { "x": 94.93769, "y": -47.799778, "size": 15, "label": "Gribier", "color": "#B30000" } }, { "key": "46.0", "attributes": { "x": -293.23438, "y": -146.10257, "size": 15, "label": "Jondrette", "color": "#B30000" } }, { "key": "47.0", "attributes": { "x": -294.94247, "y": -108.07895, "size": 15.857142, "label": "MmeBurgon", "color": "#B70805" } }, { "key": "48.0", "attributes": { "x": -215.57619, "y": 34.40003, "size": 33, "label": "Gavroche", "color": "#FCA072" } }, { "key": "49.0", "attributes": { "x": -119.18742, "y": -17.39732, "size": 20.142857, "label": "Gillenormand", "color": "#CC301E" } }, { "key": "50.0", "attributes": { "x": -57.473045, "y": 29.63873, "size": 15.857142, "label": "Magnon", "color": "#B70805" } }, { "key": "51.0", "attributes": { "x": -93.255005, "y": -60.657784, "size": 20.142857, "label": "MlleGillenormand", "color": "#CC301E" } }, { "key": "52.0", "attributes": { "x": -93.764046, "y": 22.565668, "size": 15.857142, "label": "MmePontmercy", "color": "#B70805" } }, { "key": "53.0", "attributes": { "x": -132.14008, "y": -66.85538, "size": 15, "label": "MlleVaubois", "color": "#B30000" } }, { "key": "54.0", "attributes": { "x": -95.75337, "y": -102.71505, "size": 17.571428, "label": "LtGillenormand", "color": "#BF180F" } }, { "key": "55.0", "attributes": { "x": -142.15263, "y": 36.388676, "size": 30.428574, "label": "Marius", "color": "#FC8F5C" } }, { "key": "56.0", "attributes": { "x": -160.2533, "y": -24.29684, "size": 15.857142, "label": "BaronessT", "color": "#B70805" } }, { "key": "57.0", "attributes": { "x": -267.16248, "y": 196.98003, "size": 23.57143, "label": "Mabeuf", "color": "#DC5032" } }, { "key": "58.0", "attributes": { "x": -190.88988, "y": 96.44671, "size": 27, "label": "Enjolras", "color": "#ED7047" } }, { "key": "59.0", "attributes": { "x": -222.5417, "y": 144.66484, "size": 23.57143, "label": "Combeferre", "color": "#DC5032" } }, { "key": "60.0", "attributes": { "x": -325.61102, "y": 166.71417, "size": 21.857143, "label": "Prouvaire", "color": "#D44028" } }, { "key": "61.0", "attributes": { "x": -276.3468, "y": 145.79153, "size": 23.57143, "label": "Feuilly", "color": "#DC5032" } }, { "key": "62.0", "attributes": { "x": -251.45561, "y": 97.83937, "size": 25.285713, "label": "Courfeyrac", "color": "#E5603D" } }, { "key": "63.0", "attributes": { "x": -318.40936, "y": 114.202415, "size": 24.428572, "label": "Bahorel", "color": "#E05837" } }, { "key": "64.0", "attributes": { "x": -278.9682, "y": 45.932438, "size": 25.285713, "label": "Bossuet", "color": "#E5603D" } }, { "key": "65.0", "attributes": { "x": -333.04984, "y": 62.438156, "size": 24.428572, "label": "Joly", "color": "#E05837" } }, { "key": "66.0", "attributes": { "x": -370.2446, "y": 101.73884, "size": 22.714287, "label": "Grantaire", "color": "#D8482D" } }, { "key": "67.0", "attributes": { "x": -253.54378, "y": 237.9443, "size": 15, "label": "MotherPlutarch", "color": "#B30000" } }, { "key": "68.0", "attributes": { "x": -16.550194, "y": 152.69055, "size": 22.714287, "label": "Gueulemer", "color": "#D8482D" } }, { "key": "69.0", "attributes": { "x": 35.653145, "y": 144.49445, "size": 22.714287, "label": "Babet", "color": "#D8482D" } }, { "key": "70.0", "attributes": { "x": 58.97649, "y": 188.46011, "size": 22.714287, "label": "Claquesous", "color": "#D8482D" } }, { "key": "71.0", "attributes": { "x": -2.9325058, "y": 200.66508, "size": 21.857143, "label": "Montparnasse", "color": "#D44028" } }, { "key": "72.0", "attributes": { "x": -30.056648, "y": 3.5053203, "size": 16.714285, "label": "Toussaint", "color": "#BB100A" } }, { "key": "73.0", "attributes": { "x": -244.859, "y": -11.3161335, "size": 15.857142, "label": "Child1", "color": "#B70805" } }, { "key": "74.0", "attributes": { "x": -280.33203, "y": -1.466383, "size": 15.857142, "label": "Child2", "color": "#B70805" } }, { "key": "75.0", "attributes": { "x": -56.819256, "y": 182.0544, "size": 20.142857, "label": "Brujon", "color": "#CC301E" } }, { "key": "76.0", "attributes": { "x": -382.06223, "y": 47.045475, "size": 20.142857, "label": "MmeHucheloup", "color": "#CC301E" } } ], "edges": [ { "key": "0", "source": "1.0", "target": "0.0", "attributes": { "size": 1 } }, { "key": "1", "source": "2.0", "target": "0.0", "attributes": { "size": 8 } }, { "key": "2", "source": "3.0", "target": "0.0", "attributes": { "size": 10 } }, { "key": "3", "source": "3.0", "target": "2.0", "attributes": { "size": 6 } }, { "key": "4", "source": "4.0", "target": "0.0", "attributes": { "size": 1 } }, { "key": "5", "source": "5.0", "target": "0.0", "attributes": { "size": 1 } }, { "key": "6", "source": "6.0", "target": "0.0", "attributes": { "size": 1 } }, { "key": "7", "source": "7.0", "target": "0.0", "attributes": { "size": 1 } }, { "key": "8", "source": "8.0", "target": "0.0", "attributes": { "size": 2 } }, { "key": "9", "source": "9.0", "target": "0.0", "attributes": { "size": 1 } }, { "key": "13", "source": "11.0", "target": "0.0", "attributes": { "size": 5 } }, { "key": "12", "source": "11.0", "target": "2.0", "attributes": { "size": 3 } }, { "key": "11", "source": "11.0", "target": "3.0", "attributes": { "size": 3 } }, { "key": "10", "source": "11.0", "target": "10.0", "attributes": { "size": 1 } }, { "key": "14", "source": "12.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "15", "source": "13.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "16", "source": "14.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "17", "source": "15.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "18", "source": "17.0", "target": "16.0", "attributes": { "size": 4 } }, { "key": "19", "source": "18.0", "target": "16.0", "attributes": { "size": 4 } }, { "key": "20", "source": "18.0", "target": "17.0", "attributes": { "size": 4 } }, { "key": "21", "source": "19.0", "target": "16.0", "attributes": { "size": 4 } }, { "key": "22", "source": "19.0", "target": "17.0", "attributes": { "size": 4 } }, { "key": "23", "source": "19.0", "target": "18.0", "attributes": { "size": 4 } }, { "key": "24", "source": "20.0", "target": "16.0", "attributes": { "size": 3 } }, { "key": "25", "source": "20.0", "target": "17.0", "attributes": { "size": 3 } }, { "key": "26", "source": "20.0", "target": "18.0", "attributes": { "size": 3 } }, { "key": "27", "source": "20.0", "target": "19.0", "attributes": { "size": 4 } }, { "key": "28", "source": "21.0", "target": "16.0", "attributes": { "size": 3 } }, { "key": "29", "source": "21.0", "target": "17.0", "attributes": { "size": 3 } }, { "key": "30", "source": "21.0", "target": "18.0", "attributes": { "size": 3 } }, { "key": "31", "source": "21.0", "target": "19.0", "attributes": { "size": 3 } }, { "key": "32", "source": "21.0", "target": "20.0", "attributes": { "size": 5 } }, { "key": "33", "source": "22.0", "target": "16.0", "attributes": { "size": 3 } }, { "key": "34", "source": "22.0", "target": "17.0", "attributes": { "size": 3 } }, { "key": "35", "source": "22.0", "target": "18.0", "attributes": { "size": 3 } }, { "key": "36", "source": "22.0", "target": "19.0", "attributes": { "size": 3 } }, { "key": "37", "source": "22.0", "target": "20.0", "attributes": { "size": 4 } }, { "key": "38", "source": "22.0", "target": "21.0", "attributes": { "size": 4 } }, { "key": "47", "source": "23.0", "target": "11.0", "attributes": { "size": 9 } }, { "key": "46", "source": "23.0", "target": "12.0", "attributes": { "size": 2 } }, { "key": "39", "source": "23.0", "target": "16.0", "attributes": { "size": 3 } }, { "key": "40", "source": "23.0", "target": "17.0", "attributes": { "size": 3 } }, { "key": "41", "source": "23.0", "target": "18.0", "attributes": { "size": 3 } }, { "key": "42", "source": "23.0", "target": "19.0", "attributes": { "size": 3 } }, { "key": "43", "source": "23.0", "target": "20.0", "attributes": { "size": 4 } }, { "key": "44", "source": "23.0", "target": "21.0", "attributes": { "size": 4 } }, { "key": "45", "source": "23.0", "target": "22.0", "attributes": { "size": 4 } }, { "key": "49", "source": "24.0", "target": "11.0", "attributes": { "size": 7 } }, { "key": "48", "source": "24.0", "target": "23.0", "attributes": { "size": 2 } }, { "key": "52", "source": "25.0", "target": "11.0", "attributes": { "size": 12 } }, { "key": "51", "source": "25.0", "target": "23.0", "attributes": { "size": 1 } }, { "key": "50", "source": "25.0", "target": "24.0", "attributes": { "size": 13 } }, { "key": "54", "source": "26.0", "target": "11.0", "attributes": { "size": 31 } }, { "key": "55", "source": "26.0", "target": "16.0", "attributes": { "size": 1 } }, { "key": "53", "source": "26.0", "target": "24.0", "attributes": { "size": 4 } }, { "key": "56", "source": "26.0", "target": "25.0", "attributes": { "size": 1 } }, { "key": "57", "source": "27.0", "target": "11.0", "attributes": { "size": 17 } }, { "key": "58", "source": "27.0", "target": "23.0", "attributes": { "size": 5 } }, { "key": "60", "source": "27.0", "target": "24.0", "attributes": { "size": 1 } }, { "key": "59", "source": "27.0", "target": "25.0", "attributes": { "size": 5 } }, { "key": "61", "source": "27.0", "target": "26.0", "attributes": { "size": 1 } }, { "key": "62", "source": "28.0", "target": "11.0", "attributes": { "size": 8 } }, { "key": "63", "source": "28.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "66", "source": "29.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "64", "source": "29.0", "target": "23.0", "attributes": { "size": 1 } }, { "key": "65", "source": "29.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "67", "source": "30.0", "target": "23.0", "attributes": { "size": 1 } }, { "key": "69", "source": "31.0", "target": "11.0", "attributes": { "size": 3 } }, { "key": "70", "source": "31.0", "target": "23.0", "attributes": { "size": 2 } }, { "key": "71", "source": "31.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "68", "source": "31.0", "target": "30.0", "attributes": { "size": 2 } }, { "key": "72", "source": "32.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "73", "source": "33.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "74", "source": "33.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "75", "source": "34.0", "target": "11.0", "attributes": { "size": 3 } }, { "key": "76", "source": "34.0", "target": "29.0", "attributes": { "size": 2 } }, { "key": "77", "source": "35.0", "target": "11.0", "attributes": { "size": 3 } }, { "key": "79", "source": "35.0", "target": "29.0", "attributes": { "size": 2 } }, { "key": "78", "source": "35.0", "target": "34.0", "attributes": { "size": 3 } }, { "key": "82", "source": "36.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "83", "source": "36.0", "target": "29.0", "attributes": { "size": 1 } }, { "key": "80", "source": "36.0", "target": "34.0", "attributes": { "size": 2 } }, { "key": "81", "source": "36.0", "target": "35.0", "attributes": { "size": 2 } }, { "key": "87", "source": "37.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "88", "source": "37.0", "target": "29.0", "attributes": { "size": 1 } }, { "key": "84", "source": "37.0", "target": "34.0", "attributes": { "size": 2 } }, { "key": "85", "source": "37.0", "target": "35.0", "attributes": { "size": 2 } }, { "key": "86", "source": "37.0", "target": "36.0", "attributes": { "size": 2 } }, { "key": "93", "source": "38.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "94", "source": "38.0", "target": "29.0", "attributes": { "size": 1 } }, { "key": "89", "source": "38.0", "target": "34.0", "attributes": { "size": 2 } }, { "key": "90", "source": "38.0", "target": "35.0", "attributes": { "size": 2 } }, { "key": "91", "source": "38.0", "target": "36.0", "attributes": { "size": 2 } }, { "key": "92", "source": "38.0", "target": "37.0", "attributes": { "size": 2 } }, { "key": "95", "source": "39.0", "target": "25.0", "attributes": { "size": 1 } }, { "key": "96", "source": "40.0", "target": "25.0", "attributes": { "size": 1 } }, { "key": "97", "source": "41.0", "target": "24.0", "attributes": { "size": 2 } }, { "key": "98", "source": "41.0", "target": "25.0", "attributes": { "size": 3 } }, { "key": "101", "source": "42.0", "target": "24.0", "attributes": { "size": 1 } }, { "key": "100", "source": "42.0", "target": "25.0", "attributes": { "size": 2 } }, { "key": "99", "source": "42.0", "target": "41.0", "attributes": { "size": 2 } }, { "key": "102", "source": "43.0", "target": "11.0", "attributes": { "size": 3 } }, { "key": "103", "source": "43.0", "target": "26.0", "attributes": { "size": 1 } }, { "key": "104", "source": "43.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "106", "source": "44.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "105", "source": "44.0", "target": "28.0", "attributes": { "size": 3 } }, { "key": "107", "source": "45.0", "target": "28.0", "attributes": { "size": 2 } }, { "key": "108", "source": "47.0", "target": "46.0", "attributes": { "size": 1 } }, { "key": "112", "source": "48.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "110", "source": "48.0", "target": "25.0", "attributes": { "size": 1 } }, { "key": "111", "source": "48.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "109", "source": "48.0", "target": "47.0", "attributes": { "size": 2 } }, { "key": "114", "source": "49.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "113", "source": "49.0", "target": "26.0", "attributes": { "size": 3 } }, { "key": "116", "source": "50.0", "target": "24.0", "attributes": { "size": 1 } }, { "key": "115", "source": "50.0", "target": "49.0", "attributes": { "size": 1 } }, { "key": "119", "source": "51.0", "target": "11.0", "attributes": { "size": 2 } }, { "key": "118", "source": "51.0", "target": "26.0", "attributes": { "size": 2 } }, { "key": "117", "source": "51.0", "target": "49.0", "attributes": { "size": 9 } }, { "key": "121", "source": "52.0", "target": "39.0", "attributes": { "size": 1 } }, { "key": "120", "source": "52.0", "target": "51.0", "attributes": { "size": 1 } }, { "key": "122", "source": "53.0", "target": "51.0", "attributes": { "size": 1 } }, { "key": "125", "source": "54.0", "target": "26.0", "attributes": { "size": 1 } }, { "key": "124", "source": "54.0", "target": "49.0", "attributes": { "size": 1 } }, { "key": "123", "source": "54.0", "target": "51.0", "attributes": { "size": 2 } }, { "key": "131", "source": "55.0", "target": "11.0", "attributes": { "size": 19 } }, { "key": "132", "source": "55.0", "target": "16.0", "attributes": { "size": 1 } }, { "key": "133", "source": "55.0", "target": "25.0", "attributes": { "size": 2 } }, { "key": "130", "source": "55.0", "target": "26.0", "attributes": { "size": 21 } }, { "key": "128", "source": "55.0", "target": "39.0", "attributes": { "size": 1 } }, { "key": "134", "source": "55.0", "target": "41.0", "attributes": { "size": 5 } }, { "key": "135", "source": "55.0", "target": "48.0", "attributes": { "size": 4 } }, { "key": "127", "source": "55.0", "target": "49.0", "attributes": { "size": 12 } }, { "key": "126", "source": "55.0", "target": "51.0", "attributes": { "size": 6 } }, { "key": "129", "source": "55.0", "target": "54.0", "attributes": { "size": 1 } }, { "key": "136", "source": "56.0", "target": "49.0", "attributes": { "size": 1 } }, { "key": "137", "source": "56.0", "target": "55.0", "attributes": { "size": 1 } }, { "key": "139", "source": "57.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "140", "source": "57.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "138", "source": "57.0", "target": "55.0", "attributes": { "size": 1 } }, { "key": "145", "source": "58.0", "target": "11.0", "attributes": { "size": 4 } }, { "key": "143", "source": "58.0", "target": "27.0", "attributes": { "size": 6 } }, { "key": "142", "source": "58.0", "target": "48.0", "attributes": { "size": 7 } }, { "key": "141", "source": "58.0", "target": "55.0", "attributes": { "size": 7 } }, { "key": "144", "source": "58.0", "target": "57.0", "attributes": { "size": 1 } }, { "key": "148", "source": "59.0", "target": "48.0", "attributes": { "size": 6 } }, { "key": "147", "source": "59.0", "target": "55.0", "attributes": { "size": 5 } }, { "key": "149", "source": "59.0", "target": "57.0", "attributes": { "size": 2 } }, { "key": "146", "source": "59.0", "target": "58.0", "attributes": { "size": 15 } }, { "key": "150", "source": "60.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "151", "source": "60.0", "target": "58.0", "attributes": { "size": 4 } }, { "key": "152", "source": "60.0", "target": "59.0", "attributes": { "size": 2 } }, { "key": "153", "source": "61.0", "target": "48.0", "attributes": { "size": 2 } }, { "key": "158", "source": "61.0", "target": "55.0", "attributes": { "size": 1 } }, { "key": "157", "source": "61.0", "target": "57.0", "attributes": { "size": 1 } }, { "key": "154", "source": "61.0", "target": "58.0", "attributes": { "size": 6 } }, { "key": "156", "source": "61.0", "target": "59.0", "attributes": { "size": 5 } }, { "key": "155", "source": "61.0", "target": "60.0", "attributes": { "size": 2 } }, { "key": "164", "source": "62.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "162", "source": "62.0", "target": "48.0", "attributes": { "size": 7 } }, { "key": "159", "source": "62.0", "target": "55.0", "attributes": { "size": 9 } }, { "key": "163", "source": "62.0", "target": "57.0", "attributes": { "size": 2 } }, { "key": "160", "source": "62.0", "target": "58.0", "attributes": { "size": 17 } }, { "key": "161", "source": "62.0", "target": "59.0", "attributes": { "size": 13 } }, { "key": "166", "source": "62.0", "target": "60.0", "attributes": { "size": 3 } }, { "key": "165", "source": "62.0", "target": "61.0", "attributes": { "size": 6 } }, { "key": "168", "source": "63.0", "target": "48.0", "attributes": { "size": 5 } }, { "key": "174", "source": "63.0", "target": "55.0", "attributes": { "size": 1 } }, { "key": "170", "source": "63.0", "target": "57.0", "attributes": { "size": 2 } }, { "key": "171", "source": "63.0", "target": "58.0", "attributes": { "size": 4 } }, { "key": "167", "source": "63.0", "target": "59.0", "attributes": { "size": 5 } }, { "key": "173", "source": "63.0", "target": "60.0", "attributes": { "size": 2 } }, { "key": "172", "source": "63.0", "target": "61.0", "attributes": { "size": 3 } }, { "key": "169", "source": "63.0", "target": "62.0", "attributes": { "size": 6 } }, { "key": "184", "source": "64.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "177", "source": "64.0", "target": "48.0", "attributes": { "size": 5 } }, { "key": "175", "source": "64.0", "target": "55.0", "attributes": { "size": 5 } }, { "key": "183", "source": "64.0", "target": "57.0", "attributes": { "size": 1 } }, { "key": "179", "source": "64.0", "target": "58.0", "attributes": { "size": 10 } }, { "key": "182", "source": "64.0", "target": "59.0", "attributes": { "size": 9 } }, { "key": "181", "source": "64.0", "target": "60.0", "attributes": { "size": 2 } }, { "key": "180", "source": "64.0", "target": "61.0", "attributes": { "size": 6 } }, { "key": "176", "source": "64.0", "target": "62.0", "attributes": { "size": 12 } }, { "key": "178", "source": "64.0", "target": "63.0", "attributes": { "size": 4 } }, { "key": "187", "source": "65.0", "target": "48.0", "attributes": { "size": 3 } }, { "key": "194", "source": "65.0", "target": "55.0", "attributes": { "size": 2 } }, { "key": "193", "source": "65.0", "target": "57.0", "attributes": { "size": 1 } }, { "key": "189", "source": "65.0", "target": "58.0", "attributes": { "size": 5 } }, { "key": "192", "source": "65.0", "target": "59.0", "attributes": { "size": 5 } }, { "key": "191", "source": "65.0", "target": "60.0", "attributes": { "size": 2 } }, { "key": "190", "source": "65.0", "target": "61.0", "attributes": { "size": 5 } }, { "key": "188", "source": "65.0", "target": "62.0", "attributes": { "size": 5 } }, { "key": "185", "source": "65.0", "target": "63.0", "attributes": { "size": 5 } }, { "key": "186", "source": "65.0", "target": "64.0", "attributes": { "size": 7 } }, { "key": "200", "source": "66.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "196", "source": "66.0", "target": "58.0", "attributes": { "size": 3 } }, { "key": "197", "source": "66.0", "target": "59.0", "attributes": { "size": 1 } }, { "key": "203", "source": "66.0", "target": "60.0", "attributes": { "size": 1 } }, { "key": "202", "source": "66.0", "target": "61.0", "attributes": { "size": 1 } }, { "key": "198", "source": "66.0", "target": "62.0", "attributes": { "size": 2 } }, { "key": "201", "source": "66.0", "target": "63.0", "attributes": { "size": 1 } }, { "key": "195", "source": "66.0", "target": "64.0", "attributes": { "size": 3 } }, { "key": "199", "source": "66.0", "target": "65.0", "attributes": { "size": 2 } }, { "key": "204", "source": "67.0", "target": "57.0", "attributes": { "size": 3 } }, { "key": "206", "source": "68.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "207", "source": "68.0", "target": "24.0", "attributes": { "size": 1 } }, { "key": "205", "source": "68.0", "target": "25.0", "attributes": { "size": 5 } }, { "key": "208", "source": "68.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "210", "source": "68.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "209", "source": "68.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "213", "source": "69.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "214", "source": "69.0", "target": "24.0", "attributes": { "size": 1 } }, { "key": "211", "source": "69.0", "target": "25.0", "attributes": { "size": 6 } }, { "key": "215", "source": "69.0", "target": "27.0", "attributes": { "size": 2 } }, { "key": "217", "source": "69.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "216", "source": "69.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "212", "source": "69.0", "target": "68.0", "attributes": { "size": 6 } }, { "key": "221", "source": "70.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "222", "source": "70.0", "target": "24.0", "attributes": { "size": 1 } }, { "key": "218", "source": "70.0", "target": "25.0", "attributes": { "size": 4 } }, { "key": "223", "source": "70.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "224", "source": "70.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "225", "source": "70.0", "target": "58.0", "attributes": { "size": 1 } }, { "key": "220", "source": "70.0", "target": "68.0", "attributes": { "size": 4 } }, { "key": "219", "source": "70.0", "target": "69.0", "attributes": { "size": 4 } }, { "key": "230", "source": "71.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "233", "source": "71.0", "target": "25.0", "attributes": { "size": 1 } }, { "key": "226", "source": "71.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "232", "source": "71.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "231", "source": "71.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "228", "source": "71.0", "target": "68.0", "attributes": { "size": 2 } }, { "key": "227", "source": "71.0", "target": "69.0", "attributes": { "size": 2 } }, { "key": "229", "source": "71.0", "target": "70.0", "attributes": { "size": 2 } }, { "key": "236", "source": "72.0", "target": "11.0", "attributes": { "size": 1 } }, { "key": "234", "source": "72.0", "target": "26.0", "attributes": { "size": 2 } }, { "key": "235", "source": "72.0", "target": "27.0", "attributes": { "size": 1 } }, { "key": "237", "source": "73.0", "target": "48.0", "attributes": { "size": 2 } }, { "key": "238", "source": "74.0", "target": "48.0", "attributes": { "size": 2 } }, { "key": "239", "source": "74.0", "target": "73.0", "attributes": { "size": 3 } }, { "key": "242", "source": "75.0", "target": "25.0", "attributes": { "size": 3 } }, { "key": "244", "source": "75.0", "target": "41.0", "attributes": { "size": 1 } }, { "key": "243", "source": "75.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "241", "source": "75.0", "target": "68.0", "attributes": { "size": 3 } }, { "key": "240", "source": "75.0", "target": "69.0", "attributes": { "size": 3 } }, { "key": "245", "source": "75.0", "target": "70.0", "attributes": { "size": 1 } }, { "key": "246", "source": "75.0", "target": "71.0", "attributes": { "size": 1 } }, { "key": "252", "source": "76.0", "target": "48.0", "attributes": { "size": 1 } }, { "key": "253", "source": "76.0", "target": "58.0", "attributes": { "size": 1 } }, { "key": "251", "source": "76.0", "target": "62.0", "attributes": { "size": 1 } }, { "key": "250", "source": "76.0", "target": "63.0", "attributes": { "size": 1 } }, { "key": "247", "source": "76.0", "target": "64.0", "attributes": { "size": 1 } }, { "key": "248", "source": "76.0", "target": "65.0", "attributes": { "size": 1 } }, { "key": "249", "source": "76.0", "target": "66.0", "attributes": { "size": 1 } } ] } ================================================ FILE: packages/storybook/stories/utils.ts ================================================ export function onStoryDown(cleanFn: () => void) { const storyRoot = document.getElementById("storybook-root"); if (storyRoot) { // Create an observer instance linked to the callback function const observer = new MutationObserver((_records, observer) => { cleanFn(); observer.disconnect(); }); // Start observing the target node for configured mutations observer.observe(storyRoot, { childList: true }); } } export function wrapStory(story: () => void | (() => void)) { return () => { const cleanFn = story(); if (cleanFn) onStoryDown(cleanFn); }; } ================================================ FILE: packages/storybook/tsconfig.json ================================================ { "extends": "../../tsconfig.base.json", "include": ["./types", ".storybook/*.tsx", "stories"] } ================================================ FILE: packages/storybook/types/images.d.ts ================================================ declare module "*.jpg" { const value: string; export default value; } declare module "*.png" { const value: string; export default value; } declare module "*.svg" { const value: string; export default value; } ================================================ FILE: packages/storybook/types/raw.d.ts ================================================ declare module "*?raw" { const value: string; export default value; } ================================================ FILE: packages/template/.gitignore ================================================ node_modules dist ================================================ FILE: packages/template/.npmignore ================================================ .gitignore node_modules src tsconfig.json ================================================ FILE: packages/template/README.md ================================================ # Sigma.js - Template package This package contains a template to start a new package in the sigma.js monorepo. ================================================ FILE: packages/template/package.json ================================================ { "name": "@sigma/template", "private": true, "version": "0.0.1-alpha.0", "description": "A template to start a new package in the sigma.js monorepo", "main": "dist/sigma-template.cjs.js", "module": "dist/sigma-template.esm.js", "files": [ "/dist" ], "sideEffects": false, "homepage": "https://www.sigmajs.org", "bugs": "http://github.com/jacomyal/sigma.js/issues", "repository": { "type": "git", "url": "http://github.com/jacomyal/sigma.js.git", "directory": "packages/template" }, "preconstruct": { "entrypoints": [ "index.ts" ] }, "license": "MIT", "exports": { ".": { "module": "./dist/sigma-template.esm.js", "import": "./dist/sigma-template.cjs.mjs", "default": "./dist/sigma-template.cjs.js" }, "./package.json": "./package.json" } } ================================================ FILE: packages/template/src/index.ts ================================================ export default function template() { // eslint-disable-next-line no-console console.log("Hello world!"); } ================================================ FILE: packages/template/tsconfig.json ================================================ { "extends": "../../tsconfig.base.json", "compilerOptions": { "target": "ESNext", "useDefineForClassFields": true, "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, "moduleResolution": "node", "allowSyntheticDefaultImports": true, "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "declaration": true }, "include": ["src"], "exclude": ["src/**/__docs__", "src/**/__test__"] } ================================================ FILE: packages/test/.gitignore ================================================ coverage playwright-report test-results **/__screenshots__ ================================================ FILE: packages/test/README.md ================================================ # Sigma.js - Tests This package contains everything to test sigma.js and its related sub-packages. ## Files structure - The `./datasets` folder contains useful datasets, used both for end-to-end testing and benchmarking. - The `./app` folder contains a minimal web application, used for end-to-end testing. It exposes various dependencies, datasets and helpers, so that it is easy to write end-to-end test scenarii. - The `./e2e` folder contains everything related to end-to-end testing (scenarii and snapshots). - The `./unit` folder contains the unit tests. ## End-to-end testing End-to-end testing is done using [Playwright](https://playwright.dev/). Basically, it runs some short scenarii before taking a screenshot, and compare these screenshots to committed reference ones. To invalidate some snapshots, simply delete them and run the tests again. This will regenerate them, and you will be able to simply commit them then. ## Unit testing Unit testing is performed using [Vitest](https://vitest.dev/), using the [browser mode](https://vitest.dev/guide/browser.html) (and [Playwright](https://playwright.dev/) under the hood) to properly test things in an actual browser environment. This allows testing not only sigma's simplest helpers, but also its lifecycle and other features as well. ## Benchmarking Benchmarking scenarii have been written to run using the `vitest bench` command. ================================================ FILE: packages/test/app/index.html ================================================ Sigma e2e test page
================================================ FILE: packages/test/app/index.ts ================================================ import { createNodeImageProgram } from "@sigma/node-image"; import Graph from "graphology"; import { SerializedGraph } from "graphology-types"; import Sigma from "sigma"; import { EdgeArrowProgram, EdgeLineProgram, EdgeRectangleProgram, EdgeTriangleProgram, NodeCircleProgram, NodePointProgram, } from "sigma/rendering"; // Useful data import ARCTIC from "../datasets/arctic.json"; import LARGE_GRAPH from "../datasets/large-graph.json"; import LES_MISERABLES from "../datasets/les-miserables.json"; import { BrowserTestDependencies } from "../helpers"; // Utils: const rafNTimes = (fn: (step: number) => void, n: number): Promise => { return new Promise((globalResolve) => { let count = 0; function executeAndRequestFrame() { fn(count); count++; if (count < n) { requestAnimationFrame(() => executeAndRequestFrame()); } else { globalResolve(undefined); } } executeAndRequestFrame(); }); }; // Data: const arctic = Graph.from(ARCTIC as SerializedGraph); const lesMiserables = Graph.from(LES_MISERABLES as SerializedGraph); const largeGraph = Graph.from(LARGE_GRAPH as SerializedGraph); const container = document.getElementById("container") as HTMLElement; function globalize(variables: Record): void { for (const key in variables) { // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore window[key] = variables[key]; } } const dependencies: BrowserTestDependencies = { Graph, Sigma, data: { arctic, lesMiserables, largeGraph }, nodePrograms: { NodeCircleProgram, NodePointProgram, NodeImageProgram: createNodeImageProgram({ debounceTimeout: null }), }, edgePrograms: { EdgeLineProgram, EdgeRectangleProgram, EdgeArrowProgram, EdgeTriangleProgram, }, container, // Utils: rafNTimes, }; globalize({ dependencies, }); ================================================ FILE: packages/test/benchmarks/suite.bench.ts ================================================ import { MultiGraph } from "graphology"; import { SerializedGraph } from "graphology-types"; import Sigma from "sigma"; import { bench, describe } from "vitest"; import MEDIUM_GRAPH from "../datasets/arctic.json"; import LARGE_GRAPH from "../datasets/large-graph.json"; import SMALL_GRAPH from "../datasets/les-miserables.json"; const ITERATIONS = 20; const METHODS = ["refresh", "render"] as const; const SIZES = ["small", "medium", "large"] as const; type Size = (typeof SIZES)[number]; const SCREEN_SIZES: Record = { small: 600, medium: 1600, large: 2600, }; const GRAPHS = { small: SMALL_GRAPH as SerializedGraph, medium: MEDIUM_GRAPH as SerializedGraph, large: LARGE_GRAPH as SerializedGraph, }; METHODS.forEach((method) => { describe(`Benchmarking method "${method}"`, () => { SIZES.forEach((screenSize) => SIZES.forEach((graphSize) => { const size = SCREEN_SIZES[screenSize]; const container = document.createElement("div"); document.body.append(container); container.style.width = `${size}px`; container.style.height = `${size}px`; const graph = new MultiGraph(); graph.import(GRAPHS[graphSize] as SerializedGraph); const sigma = new Sigma(graph, container); const camera = sigma.getCamera(); bench( `${screenSize} scene, ${graphSize} graph`, () => { switch (method) { case "refresh": // This simulates a layout iteration, that triggers a full reindex of the graph: graph.forEachNode((node) => graph.mergeNodeAttributes(node, { x: Math.random(), y: Math.random() })); break; case "render": // This simulates a user interaction, that triggers a render of the graph: camera.setState({ angle: camera.angle + 0.1 }); break; } }, { iterations: ITERATIONS }, ); }), ); }); }); ================================================ FILE: packages/test/datasets/arctic.json ================================================ { "attributes": {}, "nodes": [ { "key": "0", "attributes": { "label": "1831", "nodedef": "n0", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -113.203964, "y": 30.300962, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1", "attributes": { "label": "New York", "nodedef": "n1", "occurrences": 143, "color": "rgb(255,51,51)", "size": 10.138098, "x": -81.7245, "y": 25.771425, "z": 0, "nansi-louvain": 0, "nansi-degree": 142 } }, { "key": "2", "attributes": { "label": "1893", "nodedef": "n2", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -115.22559, "y": 28.346638, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "3", "attributes": { "label": "Frontier In American History", "nodedef": "n3", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.600933, "x": -123.03194, "y": 33.00843, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "4", "attributes": { "label": "1926", "nodedef": "n4", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -114.62498, "y": 49.445946, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "5", "attributes": { "label": "San Francisco", "nodedef": "n5", "occurrences": 14, "color": "rgb(255,51,51)", "size": 3.7195435, "x": -120.99793, "y": 63.12548, "z": 0, "nansi-louvain": 0, "nansi-degree": 13 } }, { "key": "6", "attributes": { "label": "1927", "nodedef": "n6", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -129.64749, "y": 45.982162, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "7", "attributes": { "label": "Radio Commission", "nodedef": "n7", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6, "x": -144.23775, "y": 47.882298, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "8", "attributes": { "label": "1937", "nodedef": "n8", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -100.14781, "y": 23.726124, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "9", "attributes": { "label": "1958", "nodedef": "n9", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -100.260956, "y": 32.712933, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "10", "attributes": { "label": "1969", "nodedef": "n10", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -115.39432, "y": 45.59863, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "11", "attributes": { "label": "1978", "nodedef": "n11", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -117.98709, "y": 30.771664, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "12", "attributes": { "label": "New England", "nodedef": "n12", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -124.61263, "y": 28.672318, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "13", "attributes": { "label": "1986", "nodedef": "n13", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -105.058495, "y": 23.629133, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "14", "attributes": { "label": "1988", "nodedef": "n14", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -118.98926, "y": 47.566803, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "15", "attributes": { "label": "1993", "nodedef": "n15", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.600933, "x": 3.7129924, "y": 62.988205, "z": 0, "nansi-louvain": 1, "nansi-degree": 2 } }, { "key": "16", "attributes": { "label": "National Institute", "nodedef": "n16", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 95.67597, "y": 82.82772, "z": 0, "nansi-louvain": 1, "nansi-degree": 4 } }, { "key": "17", "attributes": { "label": "21-Avr-08", "nodedef": "n17", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6, "x": -249.59615, "y": -119.80488, "z": 0, "nansi-louvain": 2, "nansi-degree": 1 } }, { "key": "18", "attributes": { "label": "Fibre Optique", "nodedef": "n18", "occurrences": 5, "color": "rgb(204,204,255)", "size": 3.6144404, "x": -240.1543, "y": -117.69849, "z": 0, "nansi-louvain": 2, "nansi-degree": 5 } }, { "key": "19", "attributes": { "label": "6-Avr-09", "nodedef": "n19", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.600933, "x": -92.45961, "y": -49.047523, "z": 0, "nansi-louvain": 3, "nansi-degree": 2 } }, { "key": "20", "attributes": { "label": "Agence De Voyages", "nodedef": "n20", "occurrences": 12, "color": "rgb(0,204,204)", "size": 3.701466, "x": -61.669888, "y": -43.184402, "z": 0, "nansi-louvain": 3, "nansi-degree": 12 } }, { "key": "21", "attributes": { "label": "Compagnie Aérienne", "nodedef": "n21", "occurrences": 6, "color": "rgb(153,0,0)", "size": 3.6223197, "x": -80.04082, "y": -45.849594, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "22", "attributes": { "label": "Risques Naturels", "nodedef": "n22", "occurrences": 1, "color": "rgb(102,102,0)", "size": 3.6428227, "x": 190.3612, "y": -193.70375, "z": 0, "nansi-louvain": 4, "nansi-degree": 8 } }, { "key": "23", "attributes": { "label": "Risque Majeur", "nodedef": "n23", "occurrences": 6, "color": "rgb(102,102,0)", "size": 3.6693263, "x": 191.17575, "y": -196.10255, "z": 0, "nansi-louvain": 4, "nansi-degree": 10 } }, { "key": "24", "attributes": { "label": "Risque Technologique", "nodedef": "n24", "occurrences": 8, "color": "rgb(102,102,0)", "size": 3.6847134, "x": 178.63846, "y": -198.8214, "z": 0, "nansi-louvain": 4, "nansi-degree": 11 } }, { "key": "25", "attributes": { "label": "Catastrophe Naturelle", "nodedef": "n25", "occurrences": 13, "color": "rgb(102,102,0)", "size": 3.7813334, "x": 158.77385, "y": -152.2074, "z": 0, "nansi-louvain": 4, "nansi-degree": 16 } }, { "key": "26", "attributes": { "label": "Gestion Des Risques", "nodedef": "n26", "occurrences": 5, "color": "rgb(102,102,0)", "size": 3.655348, "x": 171.00418, "y": -191.31535, "z": 0, "nansi-louvain": 4, "nansi-degree": 9 } }, { "key": "27", "attributes": { "label": "Glissement De Terrain", "nodedef": "n27", "occurrences": 9, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 125.35982, "y": -144.58945, "z": 0, "nansi-louvain": 4, "nansi-degree": 10 } }, { "key": "28", "attributes": { "label": "Plan De Prevention", "nodedef": "n28", "occurrences": 4, "color": "rgb(102,102,0)", "size": 3.6223197, "x": 200.5114, "y": -198.36298, "z": 0, "nansi-louvain": 4, "nansi-degree": 6 } }, { "key": "29", "attributes": { "label": "Plan De Prévention De Risque Naturel", "nodedef": "n29", "occurrences": 2, "color": "rgb(102,102,0)", "size": 3.6, "x": 201.20938, "y": -204.88795, "z": 0, "nansi-louvain": 4, "nansi-degree": 1 } }, { "key": "30", "attributes": { "label": "Plan De Prévention Des Risques", "nodedef": "n30", "occurrences": 4, "color": "rgb(102,102,0)", "size": 3.6317973, "x": 193.56952, "y": -188.94383, "z": 0, "nansi-louvain": 4, "nansi-degree": 7 } }, { "key": "31", "attributes": { "label": "Urss", "nodedef": "n31", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -117.52698, "y": -196.41893, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "32", "attributes": { "label": "Union Pour La Republique", "nodedef": "n32", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6, "x": -129.76659, "y": -206.34999, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "33", "attributes": { "label": "Union Soviétique", "nodedef": "n33", "occurrences": 10, "color": "rgb(255,51,51)", "size": 3.655348, "x": -82.988655, "y": -166.98717, "z": 0, "nansi-louvain": 5, "nansi-degree": 9 } }, { "key": "34", "attributes": { "label": "1002 Area", "nodedef": "n34", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.655348, "x": -290.44608, "y": 108.038956, "z": 0, "nansi-louvain": 6, "nansi-degree": 9 } }, { "key": "35", "attributes": { "label": "Arctic National Wildlife Refuge", "nodedef": "n35", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6317973, "x": -299.69208, "y": 105.892006, "z": 0, "nansi-louvain": 6, "nansi-degree": 7 } }, { "key": "36", "attributes": { "label": "Arctic Refuge", "nodedef": "n36", "occurrences": 10, "color": "rgb(153,255,0)", "size": 3.7813334, "x": -285.3167, "y": 92.27745, "z": 0, "nansi-louvain": 6, "nansi-degree": 16 } }, { "key": "37", "attributes": { "label": "Barrel Of Oil", "nodedef": "n37", "occurrences": 16, "color": "rgb(102,0,102)", "size": 3.8800173, "x": -224.44983, "y": 86.48012, "z": 0, "nansi-louvain": 6, "nansi-degree": 20 } }, { "key": "38", "attributes": { "label": "Coastal Plain", "nodedef": "n38", "occurrences": 11, "color": "rgb(153,255,0)", "size": 3.701466, "x": -295.55557, "y": 102.18477, "z": 0, "nansi-louvain": 6, "nansi-degree": 12 } }, { "key": "39", "attributes": { "label": "National Interest Lands", "nodedef": "n39", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6223197, "x": -274.71252, "y": 118.26101, "z": 0, "nansi-louvain": 6, "nansi-degree": 6 } }, { "key": "40", "attributes": { "label": "Oil Drill", "nodedef": "n40", "occurrences": 10, "color": "rgb(102,0,102)", "size": 3.6693263, "x": -280.90048, "y": 95.79655, "z": 0, "nansi-louvain": 6, "nansi-degree": 10 } }, { "key": "41", "attributes": { "label": "1er Juillet 1909", "nodedef": "n41", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.600933, "x": -54.401966, "y": 25.404884, "z": 0, "nansi-louvain": 3, "nansi-degree": 2 } }, { "key": "42", "attributes": { "label": "Archipel Arctique", "nodedef": "n42", "occurrences": 10, "color": "rgb(0,204,204)", "size": 3.804327, "x": -27.946346, "y": 8.071507, "z": 0, "nansi-louvain": 3, "nansi-degree": 17 } }, { "key": "43", "attributes": { "label": "Bleriot Xi", "nodedef": "n43", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6, "x": -65.0778, "y": 30.76231, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "44", "attributes": { "label": "25% Inférieure", "nodedef": "n44", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.655348, "x": 40.775856, "y": 27.979546, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "45", "attributes": { "label": "Ice Data", "nodedef": "n45", "occurrences": 15, "color": "rgb(153,255,255)", "size": 3.9073772, "x": -1.4867498, "y": 155.61017, "z": 0, "nansi-louvain": 7, "nansi-degree": 21 } }, { "key": "46", "attributes": { "label": "National Snow", "nodedef": "n46", "occurrences": 11, "color": "rgb(153,255,255)", "size": 3.7389054, "x": 7.4724064, "y": 153.55391, "z": 0, "nansi-louvain": 7, "nansi-degree": 14 } }, { "key": "47", "attributes": { "label": "Nord Géographique", "nodedef": "n47", "occurrences": 13, "color": "rgb(153,255,255)", "size": 3.8800173, "x": 49.249706, "y": 55.297237, "z": 0, "nansi-louvain": 8, "nansi-degree": 20 } }, { "key": "48", "attributes": { "label": "Océan Arctique", "nodedef": "n48", "occurrences": 73, "color": "rgb(0,204,204)", "size": 6.7346573, "x": 2.79345, "y": -15.812569, "z": 0, "nansi-louvain": 3, "nansi-degree": 82 } }, { "key": "49", "attributes": { "label": "Pole Nord", "nodedef": "n49", "occurrences": 78, "color": "rgb(0,204,204)", "size": 6.6225677, "x": 15.212202, "y": 10.8002205, "z": 0, "nansi-louvain": 3, "nansi-degree": 80 } }, { "key": "50", "attributes": { "label": "Réchauffement Climatique", "nodedef": "n50", "occurrences": 118, "color": "rgb(102,255,102)", "size": 9.301798, "x": 51.805546, "y": -51.451633, "z": 0, "nansi-louvain": 9, "nansi-degree": 127 } }, { "key": "51", "attributes": { "label": "Region Polaire", "nodedef": "n51", "occurrences": 47, "color": "rgb(0,204,204)", "size": 5.18996, "x": 50.921463, "y": -8.845099, "z": 0, "nansi-louvain": 3, "nansi-degree": 53 } }, { "key": "52", "attributes": { "label": "Rétroaction Positive", "nodedef": "n52", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6693263, "x": 106.74457, "y": -51.87078, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "53", "attributes": { "label": "Changement Climatique", "nodedef": "n53", "occurrences": 209, "color": "rgb(102,255,102)", "size": 14, "x": 68.96944, "y": -76.0735, "z": 0, "nansi-louvain": 9, "nansi-degree": 218 } }, { "key": "54", "attributes": { "label": "-4200 M", "nodedef": "n54", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -131.67456, "y": 248.811, "z": 0, "nansi-louvain": 10, "nansi-degree": 3 } }, { "key": "55", "attributes": { "label": "Atacama Large", "nodedef": "n55", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6, "x": -137.16072, "y": 260.94278, "z": 0, "nansi-louvain": 10, "nansi-degree": 1 } }, { "key": "56", "attributes": { "label": "High Altitude", "nodedef": "n56", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.600933, "x": -83.937126, "y": 224.64355, "z": 0, "nansi-louvain": 10, "nansi-degree": 2 } }, { "key": "57", "attributes": { "label": "Highest Mountain", "nodedef": "n57", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -155.8306, "y": 224.97762, "z": 0, "nansi-louvain": 10, "nansi-degree": 4 } }, { "key": "58", "attributes": { "label": "62.809 Km²", "nodedef": "n58", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": -399.6992, "y": -162.15797, "z": 0, "nansi-louvain": 11, "nansi-degree": 1 } }, { "key": "59", "attributes": { "label": "University Institute Of Technology", "nodedef": "n59", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6, "x": -400.77597, "y": -159.47484, "z": 0, "nansi-louvain": 11, "nansi-degree": 1 } }, { "key": "60", "attributes": { "label": "650 000 Ans", "nodedef": "n60", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 100.71721, "y": -61.060863, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "61", "attributes": { "label": "Calotte Glaciaire", "nodedef": "n61", "occurrences": 45, "color": "rgb(153,255,255)", "size": 5.2392035, "x": 63.844, "y": -13.265548, "z": 0, "nansi-louvain": 3, "nansi-degree": 54 } }, { "key": "62", "attributes": { "label": "Carotte De Glace", "nodedef": "n62", "occurrences": 20, "color": "rgb(153,255,255)", "size": 4.1604505, "x": 108.66731, "y": -26.353434, "z": 0, "nansi-louvain": 9, "nansi-degree": 29 } }, { "key": "63", "attributes": { "label": "Carottes Glaciaires", "nodedef": "n63", "occurrences": 8, "color": "rgb(255,255,51)", "size": 3.7595146, "x": 104.78771, "y": -46.73383, "z": 0, "nansi-louvain": 9, "nansi-degree": 15 } }, { "key": "64", "attributes": { "label": "Dioxyde De Carbone", "nodedef": "n64", "occurrences": 31, "color": "rgb(102,255,102)", "size": 4.5483475, "x": 116.40958, "y": -90.68923, "z": 0, "nansi-louvain": 9, "nansi-degree": 39 } }, { "key": "65", "attributes": { "label": "Effet De Serre", "nodedef": "n65", "occurrences": 143, "color": "rgb(102,255,102)", "size": 10.682548, "x": 93.54092, "y": -97.69309, "z": 0, "nansi-louvain": 9, "nansi-degree": 152 } }, { "key": "66", "attributes": { "label": "Fonte Des Glaces", "nodedef": "n66", "occurrences": 31, "color": "rgb(102,255,102)", "size": 4.5907726, "x": 49.531677, "y": -21.5393, "z": 0, "nansi-louvain": 3, "nansi-degree": 40 } }, { "key": "67", "attributes": { "label": "Gaz Carbonique", "nodedef": "n67", "occurrences": 23, "color": "rgb(102,255,102)", "size": 4.195968, "x": 119.38459, "y": -85.68396, "z": 0, "nansi-louvain": 9, "nansi-degree": 30 } }, { "key": "68", "attributes": { "label": "Activité Humaine", "nodedef": "n68", "occurrences": 88, "color": "rgb(102,255,102)", "size": 7.41568, "x": 110.29548, "y": -107.890274, "z": 0, "nansi-louvain": 9, "nansi-degree": 94 } }, { "key": "69", "attributes": { "label": "Absolute Zero", "nodedef": "n69", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 119.08079, "y": 253.6447, "z": 0, "nansi-louvain": 12, "nansi-degree": 8 } }, { "key": "70", "attributes": { "label": "Fahrenheit Scale", "nodedef": "n70", "occurrences": 8, "color": "rgb(255,255,51)", "size": 3.6693263, "x": 111.01426, "y": 275.61844, "z": 0, "nansi-louvain": 12, "nansi-degree": 10 } }, { "key": "71", "attributes": { "label": "Kelvin Scale", "nodedef": "n71", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 124.01802, "y": 277.55502, "z": 0, "nansi-louvain": 12, "nansi-degree": 6 } }, { "key": "72", "attributes": { "label": "Celsius Scale", "nodedef": "n72", "occurrences": 8, "color": "rgb(255,255,51)", "size": 3.6693263, "x": 113.57003, "y": 282.07675, "z": 0, "nansi-louvain": 12, "nansi-degree": 10 } }, { "key": "73", "attributes": { "label": "Degree Celsius", "nodedef": "n73", "occurrences": 9, "color": "rgb(255,255,51)", "size": 3.6847134, "x": 103.74344, "y": 264.03793, "z": 0, "nansi-louvain": 12, "nansi-degree": 11 } }, { "key": "74", "attributes": { "label": "Degree Fahrenheit", "nodedef": "n74", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 85.60099, "y": 256.32263, "z": 0, "nansi-louvain": 12, "nansi-degree": 8 } }, { "key": "75", "attributes": { "label": "Accessibles", "nodedef": "n75", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6036906, "x": 15.99613, "y": -58.732742, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "76", "attributes": { "label": "Base De Donnée", "nodedef": "n76", "occurrences": 45, "color": "rgb(255,255,51)", "size": 4.7661777, "x": 140.77444, "y": -132.76547, "z": 0, "nansi-louvain": 5, "nansi-degree": 44 } }, { "key": "77", "attributes": { "label": "Égalité De Droit", "nodedef": "n77", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6, "x": 5.7736487, "y": -50.460194, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "78", "attributes": { "label": "Accord Canada", "nodedef": "n78", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.600933, "x": 1.265272, "y": 30.87262, "z": 0, "nansi-louvain": 4, "nansi-degree": 2 } }, { "key": "79", "attributes": { "label": "Climatic Change", "nodedef": "n79", "occurrences": 170, "color": "rgb(102,255,102)", "size": 11.786932, "x": -33.626568, "y": 132.44574, "z": 0, "nansi-louvain": 7, "nansi-degree": 173 } }, { "key": "80", "attributes": { "label": "Grands Lacs", "nodedef": "n80", "occurrences": 5, "color": "rgb(102,255,102)", "size": 3.6082125, "x": 38.744778, "y": -98.68034, "z": 0, "nansi-louvain": 4, "nansi-degree": 4 } }, { "key": "81", "attributes": { "label": "Accord De Marrakech", "nodedef": "n81", "occurrences": 2, "color": "rgb(153,0,0)", "size": 3.600933, "x": -2.8126671, "y": -199.34373, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "82", "attributes": { "label": "Union Européenne", "nodedef": "n82", "occurrences": 104, "color": "rgb(255,51,51)", "size": 7.9891057, "x": 8.102614, "y": -141.1017, "z": 0, "nansi-louvain": 5, "nansi-degree": 104 } }, { "key": "83", "attributes": { "label": "Accord International", "nodedef": "n83", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6223197, "x": 21.506575, "y": -156.87576, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "84", "attributes": { "label": "Commission Européenne", "nodedef": "n84", "occurrences": 14, "color": "rgb(255,51,51)", "size": 3.7595146, "x": 43.230576, "y": -163.68697, "z": 0, "nansi-louvain": 5, "nansi-degree": 15 } }, { "key": "85", "attributes": { "label": "Droit International", "nodedef": "n85", "occurrences": 23, "color": "rgb(255,51,51)", "size": 4.0266757, "x": -28.257124, "y": -176.47557, "z": 0, "nansi-louvain": 5, "nansi-degree": 25 } }, { "key": "86", "attributes": { "label": "Accumulateur De Froid", "nodedef": "n86", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.600933, "x": 272.2951, "y": -41.721363, "z": 0, "nansi-louvain": 1, "nansi-degree": 2 } }, { "key": "87", "attributes": { "label": "Température Ambiante", "nodedef": "n87", "occurrences": 8, "color": "rgb(255,255,51)", "size": 3.6693263, "x": 230.77887, "y": -41.69897, "z": 0, "nansi-louvain": 1, "nansi-degree": 10 } }, { "key": "88", "attributes": { "label": "Achim Steiner", "nodedef": "n88", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6144404, "x": 7.936443, "y": 28.803406, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "89", "attributes": { "label": "Environment Programme", "nodedef": "n89", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -33.502987, "y": 60.505337, "z": 0, "nansi-louvain": 13, "nansi-degree": 6 } }, { "key": "90", "attributes": { "label": "Acide Éthanoïque", "nodedef": "n90", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 257.38828, "y": -117.25546, "z": 0, "nansi-louvain": 1, "nansi-degree": 4 } }, { "key": "91", "attributes": { "label": "Quantite De Matiere", "nodedef": "n91", "occurrences": 8, "color": "rgb(255,255,51)", "size": 3.655348, "x": 285.3261, "y": -95.294, "z": 0, "nansi-louvain": 1, "nansi-degree": 9 } }, { "key": "92", "attributes": { "label": "Acidification Des Océans", "nodedef": "n92", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.655348, "x": 102.5896, "y": -83.469215, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "93", "attributes": { "label": "Emissions De Co2", "nodedef": "n93", "occurrences": 21, "color": "rgb(102,255,102)", "size": 4.1604505, "x": 75.59424, "y": -111.53292, "z": 0, "nansi-louvain": 9, "nansi-degree": 29 } }, { "key": "94", "attributes": { "label": "Acteur Économique", "nodedef": "n94", "occurrences": 4, "color": "rgb(153,0,0)", "size": 3.6223197, "x": 52.711926, "y": -214.40945, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "95", "attributes": { "label": "Activité Économique", "nodedef": "n95", "occurrences": 15, "color": "rgb(153,0,0)", "size": 3.7813334, "x": 53.392776, "y": -192.1, "z": 0, "nansi-louvain": 5, "nansi-degree": 16 } }, { "key": "96", "attributes": { "label": "Developpement Economique", "nodedef": "n96", "occurrences": 27, "color": "rgb(153,0,0)", "size": 4.125738, "x": 38.124172, "y": -196.21404, "z": 0, "nansi-louvain": 5, "nansi-degree": 28 } }, { "key": "97", "attributes": { "label": "Pouvoir Public", "nodedef": "n97", "occurrences": 12, "color": "rgb(153,255,0)", "size": 3.7195435, "x": 80.62474, "y": -168.808, "z": 0, "nansi-louvain": 5, "nansi-degree": 13 } }, { "key": "98", "attributes": { "label": "Action 21", "nodedef": "n98", "occurrences": 4, "color": "rgb(102,255,102)", "size": 3.6144404, "x": 32.30506, "y": -123.43781, "z": 0, "nansi-louvain": 13, "nansi-degree": 5 } }, { "key": "99", "attributes": { "label": "Agenda 21", "nodedef": "n99", "occurrences": 10, "color": "rgb(102,255,102)", "size": 3.6693263, "x": 8.346409, "y": -53.946445, "z": 0, "nansi-louvain": 13, "nansi-degree": 10 } }, { "key": "100", "attributes": { "label": "Diversité Biologique", "nodedef": "n100", "occurrences": 6, "color": "rgb(153,255,0)", "size": 3.6428227, "x": 41.57149, "y": -121.012146, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "101", "attributes": { "label": "Gestion Des Ressources", "nodedef": "n101", "occurrences": 13, "color": "rgb(0,153,0)", "size": 3.7195435, "x": 58.24777, "y": -182.14644, "z": 0, "nansi-louvain": 5, "nansi-degree": 13 } }, { "key": "102", "attributes": { "label": "Action Climat", "nodedef": "n102", "occurrences": 4, "color": "rgb(102,255,102)", "size": 3.6428227, "x": 81.44599, "y": -107.22689, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "103", "attributes": { "label": "Amis De La Terre", "nodedef": "n103", "occurrences": 5, "color": "rgb(0,153,0)", "size": 3.655348, "x": 43.23911, "y": -132.41507, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "104", "attributes": { "label": "Energie Renouvelable", "nodedef": "n104", "occurrences": 53, "color": "rgb(0,153,0)", "size": 5.2392035, "x": 88.25337, "y": -126.477104, "z": 0, "nansi-louvain": 9, "nansi-degree": 54 } }, { "key": "105", "attributes": { "label": "Protocole De Kyoto", "nodedef": "n105", "occurrences": 16, "color": "rgb(102,255,102)", "size": 3.9357517, "x": 86.91879, "y": -102.3703, "z": 0, "nansi-louvain": 9, "nansi-degree": 22 } }, { "key": "106", "attributes": { "label": "Environnement Canada", "nodedef": "n106", "occurrences": 7, "color": "rgb(102,255,102)", "size": 3.6223197, "x": 143.0778, "y": -99.226746, "z": 0, "nansi-louvain": 1, "nansi-degree": 6 } }, { "key": "107", "attributes": { "label": "Espèce Humaine", "nodedef": "n107", "occurrences": 5, "color": "rgb(102,255,102)", "size": 3.6223197, "x": 81.9611, "y": -113.94411, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "108", "attributes": { "label": "Réchauffement Global", "nodedef": "n108", "occurrences": 6, "color": "rgb(255,204,102)", "size": 3.7195435, "x": 107.261475, "y": -70.40018, "z": 0, "nansi-louvain": 9, "nansi-degree": 13 } }, { "key": "109", "attributes": { "label": "Ressource Naturelle", "nodedef": "n109", "occurrences": 62, "color": "rgb(0,153,0)", "size": 5.7507973, "x": 40.121937, "y": -144.76022, "z": 0, "nansi-louvain": 9, "nansi-degree": 64 } }, { "key": "110", "attributes": { "label": "Activité Physique", "nodedef": "n110", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6082125, "x": 1.8200616, "y": -160.99698, "z": 0, "nansi-louvain": 14, "nansi-degree": 4 } }, { "key": "111", "attributes": { "label": "Mode De Vie", "nodedef": "n111", "occurrences": 21, "color": "rgb(153,255,0)", "size": 3.8800173, "x": -12.780138, "y": -101.711945, "z": 0, "nansi-louvain": 9, "nansi-degree": 20 } }, { "key": "112", "attributes": { "label": "Activité Solaire", "nodedef": "n112", "occurrences": 7, "color": "rgb(255,255,51)", "size": 3.6847134, "x": 110.15552, "y": -6.9406853, "z": 0, "nansi-louvain": 8, "nansi-degree": 11 } }, { "key": "113", "attributes": { "label": "Champ Magnétique", "nodedef": "n113", "occurrences": 23, "color": "rgb(255,255,51)", "size": 4.195968, "x": 90.46194, "y": 48.347385, "z": 0, "nansi-louvain": 8, "nansi-degree": 30 } }, { "key": "114", "attributes": { "label": "Energie Solaire", "nodedef": "n114", "occurrences": 25, "color": "rgb(0,153,0)", "size": 4.091856, "x": 134.36267, "y": -104.2932, "z": 0, "nansi-louvain": 9, "nansi-degree": 27 } }, { "key": "115", "attributes": { "label": "Eruption Solaire", "nodedef": "n115", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.6847134, "x": 87.828224, "y": 24.016247, "z": 0, "nansi-louvain": 8, "nansi-degree": 11 } }, { "key": "116", "attributes": { "label": "Vent Solaire", "nodedef": "n116", "occurrences": 13, "color": "rgb(255,153,153)", "size": 3.7813334, "x": 97.73283, "y": 34.52555, "z": 0, "nansi-louvain": 8, "nansi-degree": 16 } }, { "key": "117", "attributes": { "label": "Activités Humaines", "nodedef": "n117", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6693263, "x": 101.48369, "y": -114.053856, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "118", "attributes": { "label": "Combustible Fossile", "nodedef": "n118", "occurrences": 20, "color": "rgb(0,153,0)", "size": 4.125738, "x": 88.07471, "y": -132.56985, "z": 0, "nansi-louvain": 9, "nansi-degree": 28 } }, { "key": "119", "attributes": { "label": "Hemisphere Nord", "nodedef": "n119", "occurrences": 30, "color": "rgb(255,204,102)", "size": 4.384874, "x": 88.799324, "y": -12.419462, "z": 0, "nansi-louvain": 9, "nansi-degree": 35 } }, { "key": "120", "attributes": { "label": "Matiere Organique", "nodedef": "n120", "occurrences": 30, "color": "rgb(153,255,0)", "size": 4.3071337, "x": 134.571, "y": -168.67946, "z": 0, "nansi-louvain": 4, "nansi-degree": 33 } }, { "key": "121", "attributes": { "label": "Administration Bush", "nodedef": "n121", "occurrences": 6, "color": "rgb(255,51,51)", "size": 3.6223197, "x": -123.35279, "y": -46.29773, "z": 0, "nansi-louvain": 0, "nansi-degree": 6 } }, { "key": "122", "attributes": { "label": "Bush Administration", "nodedef": "n122", "occurrences": 7, "color": "rgb(255,51,51)", "size": 3.6317973, "x": -166.01524, "y": 23.500431, "z": 0, "nansi-louvain": 0, "nansi-degree": 7 } }, { "key": "123", "attributes": { "label": "Adverse Effect", "nodedef": "n123", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -280.8506, "y": -14.357272, "z": 0, "nansi-louvain": 0, "nansi-degree": 4 } }, { "key": "124", "attributes": { "label": "Adverse Event", "nodedef": "n124", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6144404, "x": -284.07852, "y": -16.397394, "z": 0, "nansi-louvain": 0, "nansi-degree": 5 } }, { "key": "125", "attributes": { "label": "Adverse Reaction", "nodedef": "n125", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -280.13354, "y": -18.41333, "z": 0, "nansi-louvain": 0, "nansi-degree": 4 } }, { "key": "126", "attributes": { "label": "Affaiblissement", "nodedef": "n126", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.600933, "x": -13.494583, "y": -164.21832, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "127", "attributes": { "label": "Esperance De Vie", "nodedef": "n127", "occurrences": 5, "color": "rgb(255,51,51)", "size": 3.6223197, "x": -22.28897, "y": -149.6507, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "128", "attributes": { "label": "Affaires Étrangères", "nodedef": "n128", "occurrences": 35, "color": "rgb(255,51,51)", "size": 4.384874, "x": -45.393368, "y": -150.26659, "z": 0, "nansi-louvain": 5, "nansi-degree": 35 } }, { "key": "129", "attributes": { "label": "Affaires Maritimes", "nodedef": "n129", "occurrences": 4, "color": "rgb(153,0,0)", "size": 3.6082125, "x": -7.854268, "y": -195.56541, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "130", "attributes": { "label": "Agence Internationale", "nodedef": "n130", "occurrences": 6, "color": "rgb(255,51,51)", "size": 3.6428227, "x": 10.785448, "y": -128.09052, "z": 0, "nansi-louvain": 15, "nansi-degree": 8 } }, { "key": "131", "attributes": { "label": "Energie Fossile", "nodedef": "n131", "occurrences": 20, "color": "rgb(0,153,0)", "size": 4.091856, "x": 61.24001, "y": -125.80153, "z": 0, "nansi-louvain": 9, "nansi-degree": 27 } }, { "key": "132", "attributes": { "label": "Programme Des Nations", "nodedef": "n132", "occurrences": 10, "color": "rgb(102,255,102)", "size": 3.6847134, "x": 19.665848, "y": -96.559166, "z": 0, "nansi-louvain": 9, "nansi-degree": 11 } }, { "key": "133", "attributes": { "label": "Agence Spatiale", "nodedef": "n133", "occurrences": 10, "color": "rgb(255,153,153)", "size": 3.7595146, "x": 101.45006, "y": 45.662666, "z": 0, "nansi-louvain": 12, "nansi-degree": 15 } }, { "key": "134", "attributes": { "label": "Agence Spatiale Européenne", "nodedef": "n134", "occurrences": 2, "color": "rgb(255,153,153)", "size": 3.6428227, "x": 87.68519, "y": 31.538296, "z": 0, "nansi-louvain": 12, "nansi-degree": 8 } }, { "key": "135", "attributes": { "label": "Centre Spatial", "nodedef": "n135", "occurrences": 6, "color": "rgb(255,153,153)", "size": 3.6428227, "x": 94.658485, "y": 66.991135, "z": 0, "nansi-louvain": 12, "nansi-degree": 8 } }, { "key": "136", "attributes": { "label": "European Space", "nodedef": "n136", "occurrences": 13, "color": "rgb(255,153,153)", "size": 3.7195435, "x": 73.30927, "y": 133.52025, "z": 0, "nansi-louvain": 12, "nansi-degree": 13 } }, { "key": "137", "attributes": { "label": "Space Agencies", "nodedef": "n137", "occurrences": 12, "color": "rgb(255,153,153)", "size": 3.7195435, "x": 77.70585, "y": 130.26492, "z": 0, "nansi-louvain": 12, "nansi-degree": 13 } }, { "key": "138", "attributes": { "label": "Station Spatiale", "nodedef": "n138", "occurrences": 4, "color": "rgb(255,153,153)", "size": 3.6082125, "x": 110.16877, "y": 60.09916, "z": 0, "nansi-louvain": 12, "nansi-degree": 4 } }, { "key": "139", "attributes": { "label": "Agence Spatiale Russe", "nodedef": "n139", "occurrences": 3, "color": "rgb(255,153,153)", "size": 3.6036906, "x": 107.68974, "y": 64.56931, "z": 0, "nansi-louvain": 12, "nansi-degree": 3 } }, { "key": "140", "attributes": { "label": "Space Agency", "nodedef": "n140", "occurrences": 2, "color": "rgb(255,153,153)", "size": 3.600933, "x": 89.43839, "y": 94.09796, "z": 0, "nansi-louvain": 12, "nansi-degree": 2 } }, { "key": "141", "attributes": { "label": "Sustainable Development", "nodedef": "n141", "occurrences": 7, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -39.53535, "y": 45.579334, "z": 0, "nansi-louvain": 13, "nansi-degree": 7 } }, { "key": "142", "attributes": { "label": "Agent D'Érosion,1", "nodedef": "n142", "color": "rgb(102,255,102)", "size": 3.6317973, "x": 139.83403, "y": -91.4137, "z": 0, "nansi-louvain": 1, "nansi-degree": 7 } }, { "key": "143", "attributes": { "label": "Azote Kjeldahl", "nodedef": "n143", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6082125, "x": 135.07076, "y": -173.6778, "z": 0, "nansi-louvain": 4, "nansi-degree": 4 } }, { "key": "144", "attributes": { "label": "Bassin Sédimentaire", "nodedef": "n144", "occurrences": 5, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 117.5669, "y": -101.914566, "z": 0, "nansi-louvain": 1, "nansi-degree": 7 } }, { "key": "145", "attributes": { "label": "Carte Géographie", "nodedef": "n145", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6082125, "x": 65.13172, "y": -105.328285, "z": 0, "nansi-louvain": 1, "nansi-degree": 4 } }, { "key": "146", "attributes": { "label": "Cristal De Glace", "nodedef": "n146", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 133.25394, "y": -10.979678, "z": 0, "nansi-louvain": 1, "nansi-degree": 6 } }, { "key": "147", "attributes": { "label": "Vallee Glaciaire", "nodedef": "n147", "occurrences": 5, "color": "rgb(255,204,102)", "size": 3.6036906, "x": 88.578705, "y": -62.96597, "z": 0, "nansi-louvain": 3, "nansi-degree": 3 } }, { "key": "148", "attributes": { "label": "Agricultural Land", "nodedef": "n148", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6223197, "x": -54.823086, "y": 117.68389, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "149", "attributes": { "label": "British Columbia", "nodedef": "n149", "occurrences": 8, "color": "rgb(102,255,102)", "size": 3.6317973, "x": -74.013336, "y": 127.44684, "z": 0, "nansi-louvain": 16, "nansi-degree": 7 } }, { "key": "150", "attributes": { "label": "Natural Resource", "nodedef": "n150", "occurrences": 20, "color": "rgb(0,153,0)", "size": 3.8800173, "x": -36.981384, "y": 65.24656, "z": 0, "nansi-louvain": 7, "nansi-degree": 20 } }, { "key": "151", "attributes": { "label": "Agricultural Science", "nodedef": "n151", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6, "x": -41.926064, "y": 71.96111, "z": 0, "nansi-louvain": 7, "nansi-degree": 1 } }, { "key": "152", "attributes": { "label": "Agriculture Biologique", "nodedef": "n152", "occurrences": 7, "color": "rgb(153,255,0)", "size": 3.655348, "x": 150.32199, "y": -204.59464, "z": 0, "nansi-louvain": 4, "nansi-degree": 9 } }, { "key": "153", "attributes": { "label": "Engrais Chimique", "nodedef": "n153", "occurrences": 4, "color": "rgb(102,102,0)", "size": 3.655348, "x": 156.01869, "y": -199.17804, "z": 0, "nansi-louvain": 4, "nansi-degree": 9 } }, { "key": "154", "attributes": { "label": "Exploitation Agricole", "nodedef": "n154", "occurrences": 7, "color": "rgb(153,255,0)", "size": 3.6317973, "x": 136.77686, "y": -206.95612, "z": 0, "nansi-louvain": 4, "nansi-degree": 7 } }, { "key": "155", "attributes": { "label": "Produit Chimique", "nodedef": "n155", "occurrences": 12, "color": "rgb(102,102,0)", "size": 3.6847134, "x": 164.49692, "y": -167.40256, "z": 0, "nansi-louvain": 4, "nansi-degree": 11 } }, { "key": "156", "attributes": { "label": "Agriculture Durable", "nodedef": "n156", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6317973, "x": 96.3345, "y": -181.89757, "z": 0, "nansi-louvain": 4, "nansi-degree": 7 } }, { "key": "157", "attributes": { "label": "Agriculture Intensive", "nodedef": "n157", "occurrences": 4, "color": "rgb(102,102,0)", "size": 3.6036906, "x": 129.10211, "y": -195.82751, "z": 0, "nansi-louvain": 9, "nansi-degree": 3 } }, { "key": "158", "attributes": { "label": "Agroalimentaire Canada", "nodedef": "n158", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6036906, "x": 133.12955, "y": -121.461334, "z": 0, "nansi-louvain": 4, "nansi-degree": 3 } }, { "key": "159", "attributes": { "label": "Centre De Recherche", "nodedef": "n159", "occurrences": 27, "color": "rgb(255,204,102)", "size": 4.0266757, "x": 159.55566, "y": -77.203255, "z": 0, "nansi-louvain": 17, "nansi-degree": 25 } }, { "key": "160", "attributes": { "label": "Air Humide", "nodedef": "n160", "occurrences": 6, "color": "rgb(255,204,102)", "size": 3.6223197, "x": 196.04442, "y": -48.697674, "z": 0, "nansi-louvain": 1, "nansi-degree": 6 } }, { "key": "161", "attributes": { "label": "Pression Atmosphérique", "nodedef": "n161", "occurrences": 14, "color": "rgb(255,204,102)", "size": 3.8284607, "x": 215.11195, "y": -61.049625, "z": 0, "nansi-louvain": 1, "nansi-degree": 18 } }, { "key": "162", "attributes": { "label": "Air Quality", "nodedef": "n162", "occurrences": 6, "color": "rgb(102,255,102)", "size": 3.6317973, "x": -131.28079, "y": 115.120995, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "163", "attributes": { "label": "Environmental Protection", "nodedef": "n163", "occurrences": 12, "color": "rgb(102,255,102)", "size": 3.7389054, "x": -120.85718, "y": 94.67263, "z": 0, "nansi-louvain": 7, "nansi-degree": 14 } }, { "key": "164", "attributes": { "label": "Protection Agency", "nodedef": "n164", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6144404, "x": -136.2817, "y": 112.61331, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "165", "attributes": { "label": "Aire De Répartition", "nodedef": "n165", "occurrences": 4, "color": "rgb(102,255,102)", "size": 3.6317973, "x": 9.323195, "y": -106.14036, "z": 0, "nansi-louvain": 14, "nansi-degree": 7 } }, { "key": "166", "attributes": { "label": "Amérique Du Nord", "nodedef": "n166", "occurrences": 51, "color": "rgb(255,51,51)", "size": 5.0446563, "x": -15.5951, "y": -70.99995, "z": 0, "nansi-louvain": 3, "nansi-degree": 50 } }, { "key": "167", "attributes": { "label": "Espece Menacee", "nodedef": "n167", "occurrences": 23, "color": "rgb(153,255,0)", "size": 4.125738, "x": 20.318104, "y": -113.60013, "z": 0, "nansi-louvain": 14, "nansi-degree": 28 } }, { "key": "168", "attributes": { "label": "Tigre De Siberie", "nodedef": "n168", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6082125, "x": -8.057831, "y": -108.49691, "z": 0, "nansi-louvain": 14, "nansi-degree": 4 } }, { "key": "169", "attributes": { "label": "Aire Marine Protégée", "nodedef": "n169", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6144404, "x": 31.34712, "y": -149.70459, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "170", "attributes": { "label": "Parc National", "nodedef": "n170", "occurrences": 25, "color": "rgb(153,255,0)", "size": 4.058827, "x": -30.850708, "y": -65.585205, "z": 0, "nansi-louvain": 3, "nansi-degree": 26 } }, { "key": "171", "attributes": { "label": "Port Méthanier", "nodedef": "n171", "occurrences": 5, "color": "rgb(102,0,102)", "size": 3.655348, "x": -9.711485, "y": -176.35077, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "172", "attributes": { "label": "Ressources Halieutiques", "nodedef": "n172", "occurrences": 7, "color": "rgb(0,153,0)", "size": 3.7389054, "x": 22.371199, "y": -193.59839, "z": 0, "nansi-louvain": 5, "nansi-degree": 14 } }, { "key": "173", "attributes": { "label": "Ajustement Structurel", "nodedef": "n173", "occurrences": 2, "color": "rgb(153,0,0)", "size": 3.6082125, "x": 62.330505, "y": -186.74092, "z": 0, "nansi-louvain": 9, "nansi-degree": 4 } }, { "key": "174", "attributes": { "label": "Court Terme", "nodedef": "n174", "occurrences": 12, "color": "rgb(0,153,0)", "size": 3.7195435, "x": 54.086452, "y": -149.3213, "z": 0, "nansi-louvain": 9, "nansi-degree": 13 } }, { "key": "175", "attributes": { "label": "Banque Mondiale", "nodedef": "n175", "occurrences": 19, "color": "rgb(153,0,0)", "size": 3.804327, "x": 22.261864, "y": -182.39842, "z": 0, "nansi-louvain": 9, "nansi-degree": 17 } }, { "key": "176", "attributes": { "label": "Al Gore", "nodedef": "n176", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -62.334923, "y": 99.12342, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "177", "attributes": { "label": "Carbon Dioxide", "nodedef": "n177", "occurrences": 41, "color": "rgb(102,255,102)", "size": 4.7661777, "x": -55.47324, "y": 125.11609, "z": 0, "nansi-louvain": 7, "nansi-degree": 44 } }, { "key": "178", "attributes": { "label": "Climate Crisis", "nodedef": "n178", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6428227, "x": -60.82279, "y": 106.278145, "z": 0, "nansi-louvain": 7, "nansi-degree": 8 } }, { "key": "179", "attributes": { "label": "Inconvenient Truth", "nodedef": "n179", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -34.581684, "y": 96.97511, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "180", "attributes": { "label": "Alain Hubert", "nodedef": "n180", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6317973, "x": -16.196047, "y": 143.98354, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "181", "attributes": { "label": "International Polar", "nodedef": "n181", "occurrences": 16, "color": "rgb(153,255,255)", "size": 3.9073772, "x": -9.027923, "y": 141.83066, "z": 0, "nansi-louvain": 7, "nansi-degree": 21 } }, { "key": "182", "attributes": { "label": "North Pole", "nodedef": "n182", "occurrences": 40, "color": "rgb(0,204,204)", "size": 4.7661777, "x": -55.8565, "y": 171.90884, "z": 0, "nansi-louvain": 18, "nansi-degree": 44 } }, { "key": "183", "attributes": { "label": "Polar Explorer", "nodedef": "n183", "occurrences": 10, "color": "rgb(153,255,255)", "size": 3.7595146, "x": -58.83079, "y": 186.69232, "z": 0, "nansi-louvain": 18, "nansi-degree": 15 } }, { "key": "184", "attributes": { "label": "Polar Foundation", "nodedef": "n184", "occurrences": 5, "color": "rgb(153,255,255)", "size": 3.6317973, "x": -11.981268, "y": 147.11038, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "185", "attributes": { "label": "Sea Of Ice", "nodedef": "n185", "occurrences": 44, "color": "rgb(153,255,255)", "size": 4.7215033, "x": -43.91012, "y": 184.19289, "z": 0, "nansi-louvain": 7, "nansi-degree": 43 } }, { "key": "186", "attributes": { "label": "Alaska", "nodedef": "n186", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -335.87674, "y": 271.785, "z": 0, "nansi-louvain": 16, "nansi-degree": 6 } }, { "key": "187", "attributes": { "label": "Alaska Halibut", "nodedef": "n187", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -331.9837, "y": 276.51868, "z": 0, "nansi-louvain": 16, "nansi-degree": 6 } }, { "key": "188", "attributes": { "label": "Alaska Salmon", "nodedef": "n188", "occurrences": 6, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -331.75302, "y": 268.96106, "z": 0, "nansi-louvain": 16, "nansi-degree": 7 } }, { "key": "189", "attributes": { "label": "Alaska State", "nodedef": "n189", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6, "x": -341.2595, "y": 274.59564, "z": 0, "nansi-louvain": 16, "nansi-degree": 1 } }, { "key": "190", "attributes": { "label": "Fishing Alaska", "nodedef": "n190", "occurrences": 7, "color": "rgb(0,204,204)", "size": 3.655348, "x": -327.06616, "y": 273.94238, "z": 0, "nansi-louvain": 16, "nansi-degree": 9 } }, { "key": "191", "attributes": { "label": "Salmon Fishing", "nodedef": "n191", "occurrences": 6, "color": "rgb(0,204,204)", "size": 3.6428227, "x": -315.93274, "y": 271.08054, "z": 0, "nansi-louvain": 16, "nansi-degree": 8 } }, { "key": "192", "attributes": { "label": "Alaska Fishing", "nodedef": "n192", "occurrences": 8, "color": "rgb(0,204,204)", "size": 3.6693263, "x": -316.6231, "y": 256.39114, "z": 0, "nansi-louvain": 16, "nansi-degree": 10 } }, { "key": "193", "attributes": { "label": "Alaska Pipeline", "nodedef": "n193", "occurrences": 3, "color": "rgb(102,0,102)", "size": 3.6144404, "x": -237.4198, "y": 107.65163, "z": 0, "nansi-louvain": 6, "nansi-degree": 5 } }, { "key": "194", "attributes": { "label": "North Slope", "nodedef": "n194", "occurrences": 6, "color": "rgb(102,0,102)", "size": 3.6428227, "x": -219.62532, "y": 100.35476, "z": 0, "nansi-louvain": 6, "nansi-degree": 8 } }, { "key": "195", "attributes": { "label": "Prudhoe Bay", "nodedef": "n195", "occurrences": 5, "color": "rgb(102,0,102)", "size": 3.6847134, "x": -238.55441, "y": 116.0038, "z": 0, "nansi-louvain": 6, "nansi-degree": 11 } }, { "key": "196", "attributes": { "label": "Alenia Space", "nodedef": "n196", "occurrences": 4, "color": "rgb(255,153,153)", "size": 3.6036906, "x": 90.396576, "y": 135.07115, "z": 0, "nansi-louvain": 12, "nansi-degree": 3 } }, { "key": "197", "attributes": { "label": "Aléoutiennes", "nodedef": "n197", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6223197, "x": -9.177194, "y": -52.399147, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "198", "attributes": { "label": "Aleutian Island", "nodedef": "n198", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -65.21715, "y": 33.476093, "z": 0, "nansi-louvain": 16, "nansi-degree": 5 } }, { "key": "199", "attributes": { "label": "Iles Aleoutiennes", "nodedef": "n199", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.655348, "x": -27.585207, "y": -85.09149, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "200", "attributes": { "label": "Ocean Pacifique", "nodedef": "n200", "occurrences": 14, "color": "rgb(255,51,51)", "size": 3.7813334, "x": -20.703178, "y": -57.3704, "z": 0, "nansi-louvain": 3, "nansi-degree": 16 } }, { "key": "201", "attributes": { "label": "Pacifique Nord", "nodedef": "n201", "occurrences": 9, "color": "rgb(255,51,51)", "size": 3.7195435, "x": -7.7832313, "y": -80.22035, "z": 0, "nansi-louvain": 3, "nansi-degree": 13 } }, { "key": "202", "attributes": { "label": "Zone De Subduction", "nodedef": "n202", "occurrences": 8, "color": "rgb(255,204,102)", "size": 3.701466, "x": 175.17549, "y": -63.39597, "z": 0, "nansi-louvain": 1, "nansi-degree": 12 } }, { "key": "203", "attributes": { "label": "Bering Sea", "nodedef": "n203", "occurrences": 4, "color": "rgb(102,255,102)", "size": 3.6317973, "x": -93.04061, "y": 113.73422, "z": 0, "nansi-louvain": 16, "nansi-degree": 7 } }, { "key": "204", "attributes": { "label": "Alexei Miller", "nodedef": "n204", "occurrences": 9, "color": "rgb(255,51,51)", "size": 3.701466, "x": -189.61142, "y": 26.57744, "z": 0, "nansi-louvain": 6, "nansi-degree": 12 } }, { "key": "205", "attributes": { "label": "Gas Giants", "nodedef": "n205", "occurrences": 4, "color": "rgb(102,0,102)", "size": 3.6082125, "x": -166.21169, "y": 98.2658, "z": 0, "nansi-louvain": 6, "nansi-degree": 4 } }, { "key": "206", "attributes": { "label": "Gas Pipeline", "nodedef": "n206", "occurrences": 18, "color": "rgb(102,0,102)", "size": 3.9651115, "x": -225.5377, "y": 75.32106, "z": 0, "nansi-louvain": 6, "nansi-degree": 23 } }, { "key": "207", "attributes": { "label": "Gas Price", "nodedef": "n207", "occurrences": 10, "color": "rgb(102,0,102)", "size": 3.6693263, "x": -200.47496, "y": 60.168285, "z": 0, "nansi-louvain": 6, "nansi-degree": 10 } }, { "key": "208", "attributes": { "label": "Russian Gas", "nodedef": "n208", "occurrences": 9, "color": "rgb(102,0,102)", "size": 3.7195435, "x": -199.72371, "y": 53.06446, "z": 0, "nansi-louvain": 6, "nansi-degree": 13 } }, { "key": "209", "attributes": { "label": "Gas Company", "nodedef": "n209", "occurrences": 19, "color": "rgb(102,0,102)", "size": 3.8537014, "x": -218.79456, "y": 67.846054, "z": 0, "nansi-louvain": 6, "nansi-degree": 19 } }, { "key": "210", "attributes": { "label": "Alfred Wegener", "nodedef": "n210", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 15.00172, "y": 131.04428, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "211", "attributes": { "label": "Earth Science", "nodedef": "n211", "occurrences": 16, "color": "rgb(255,204,102)", "size": 3.804327, "x": 32.90166, "y": 122.29744, "z": 0, "nansi-louvain": 7, "nansi-degree": 17 } }, { "key": "212", "attributes": { "label": "Marine Research", "nodedef": "n212", "occurrences": 5, "color": "rgb(153,255,255)", "size": 3.6223197, "x": 11.911555, "y": 74.68962, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "213", "attributes": { "label": "Alliage Métallique", "nodedef": "n213", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.600933, "x": 257.434, "y": -35.680717, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "214", "attributes": { "label": "Alliance Atlantique", "nodedef": "n214", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6428227, "x": -39.934994, "y": -125.71489, "z": 0, "nansi-louvain": 5, "nansi-degree": 8 } }, { "key": "215", "attributes": { "label": "Secretaire General", "nodedef": "n215", "occurrences": 13, "color": "rgb(255,51,51)", "size": 3.7389054, "x": -41.43826, "y": -144.65887, "z": 0, "nansi-louvain": 5, "nansi-degree": 14 } }, { "key": "216", "attributes": { "label": "Atlantique Nord", "nodedef": "n216", "occurrences": 27, "color": "rgb(255,51,51)", "size": 4.269332, "x": -1.6801682, "y": -57.740322, "z": 0, "nansi-louvain": 5, "nansi-degree": 32 } }, { "key": "217", "attributes": { "label": "Guerre Froide", "nodedef": "n217", "occurrences": 9, "color": "rgb(255,51,51)", "size": 3.701466, "x": -68.49608, "y": -159.41794, "z": 0, "nansi-louvain": 5, "nansi-degree": 12 } }, { "key": "218", "attributes": { "label": "Alopex Lagopus", "nodedef": "n218", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -78.20123, "y": 9.323242, "z": 0, "nansi-louvain": 14, "nansi-degree": 3 } }, { "key": "219", "attributes": { "label": "Arctic Region", "nodedef": "n219", "occurrences": 21, "color": "rgb(0,204,204)", "size": 4.0266757, "x": -99.799706, "y": 187.88002, "z": 0, "nansi-louvain": 18, "nansi-degree": 25 } }, { "key": "220", "attributes": { "label": "Alta", "nodedef": "n220", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6, "x": -197.4808, "y": 223.2079, "z": 0, "nansi-louvain": 10, "nansi-degree": 1 } }, { "key": "221", "attributes": { "label": "International Airports", "nodedef": "n221", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.600933, "x": -188.97466, "y": 214.70929, "z": 0, "nansi-louvain": 10, "nansi-degree": 2 } }, { "key": "222", "attributes": { "label": "Américains Du Nord", "nodedef": "n222", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6082125, "x": 4.6196346, "y": -68.271065, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "223", "attributes": { "label": "American Geophysical", "nodedef": "n223", "occurrences": 5, "color": "rgb(153,255,255)", "size": 3.655348, "x": 1.2567267, "y": 97.28115, "z": 0, "nansi-louvain": 7, "nansi-degree": 9 } }, { "key": "224", "attributes": { "label": "Geophysical Research", "nodedef": "n224", "occurrences": 11, "color": "rgb(255,204,102)", "size": 3.7389054, "x": 25.073666, "y": 127.86718, "z": 0, "nansi-louvain": 7, "nansi-degree": 14 } }, { "key": "225", "attributes": { "label": "Solid Earth", "nodedef": "n225", "occurrences": 5, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 27.373497, "y": 137.12082, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "226", "attributes": { "label": "American Physical Society", "nodedef": "n226", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6, "x": -41.715275, "y": 150.24199, "z": 0, "nansi-louvain": 7, "nansi-degree": 1 } }, { "key": "227", "attributes": { "label": "American Scientist", "nodedef": "n227", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.600933, "x": -139.39792, "y": 107.20272, "z": 0, "nansi-louvain": 10, "nansi-degree": 2 } }, { "key": "228", "attributes": { "label": "American University", "nodedef": "n228", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.600933, "x": -66.0597, "y": 93.93784, "z": 0, "nansi-louvain": 18, "nansi-degree": 2 } }, { "key": "229", "attributes": { "label": "Amérique Du Sud", "nodedef": "n229", "occurrences": 5, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -38.86054, "y": -70.56831, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "230", "attributes": { "label": "Carnet De Voyage", "nodedef": "n230", "occurrences": 8, "color": "rgb(204,204,255)", "size": 3.6223197, "x": -88.62595, "y": -72.87346, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "231", "attributes": { "label": "Amirauté Britannique", "nodedef": "n231", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.600933, "x": 13.064561, "y": -94.058495, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "232", "attributes": { "label": "Navire De Guerre", "nodedef": "n232", "occurrences": 7, "color": "rgb(255,51,51)", "size": 3.6428227, "x": -50.81818, "y": -168.48856, "z": 0, "nansi-louvain": 5, "nansi-degree": 8 } }, { "key": "233", "attributes": { "label": "Carte Marine", "nodedef": "n233", "occurrences": 6, "color": "rgb(255,204,102)", "size": 3.6223197, "x": 87.726135, "y": 1.6453468, "z": 0, "nansi-louvain": 17, "nansi-degree": 6 } }, { "key": "234", "attributes": { "label": "Droit Humain", "nodedef": "n234", "occurrences": 8, "color": "rgb(255,51,51)", "size": 3.655348, "x": 6.183718, "y": -131.93776, "z": 0, "nansi-louvain": 5, "nansi-degree": 9 } }, { "key": "235", "attributes": { "label": "Amplitude Thermique", "nodedef": "n235", "occurrences": 5, "color": "rgb(255,204,102)", "size": 3.6223197, "x": 135.643, "y": -75.64238, "z": 0, "nansi-louvain": 1, "nansi-degree": 6 } }, { "key": "236", "attributes": { "label": "Climat Continental", "nodedef": "n236", "occurrences": 5, "color": "rgb(255,204,102)", "size": 3.6144404, "x": 133.87773, "y": -78.25943, "z": 0, "nansi-louvain": 1, "nansi-degree": 5 } }, { "key": "237", "attributes": { "label": "Analyse De Données", "nodedef": "n237", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.6223197, "x": 154.12535, "y": -96.907555, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "238", "attributes": { "label": "Science Humaine", "nodedef": "n238", "occurrences": 19, "color": "rgb(255,255,51)", "size": 3.8537014, "x": 160.291, "y": -47.19645, "z": 0, "nansi-louvain": 17, "nansi-degree": 19 } }, { "key": "239", "attributes": { "label": "Université De Québec", "nodedef": "n239", "occurrences": 11, "color": "rgb(255,255,51)", "size": 3.701466, "x": 120.21439, "y": -19.814877, "z": 0, "nansi-louvain": 17, "nansi-degree": 12 } }, { "key": "240", "attributes": { "label": "Analyse De Sol", "nodedef": "n240", "occurrences": 2, "color": "rgb(102,102,0)", "size": 3.6144404, "x": 160.36038, "y": -188.96693, "z": 0, "nansi-louvain": 4, "nansi-degree": 5 } }, { "key": "241", "attributes": { "label": "Élément Nutritif", "nodedef": "n241", "occurrences": 8, "color": "rgb(153,255,0)", "size": 3.6223197, "x": 124.02254, "y": -184.91066, "z": 0, "nansi-louvain": 4, "nansi-degree": 6 } }, { "key": "242", "attributes": { "label": "Engrais Azoté", "nodedef": "n242", "occurrences": 4, "color": "rgb(102,102,0)", "size": 3.6223197, "x": 145.18445, "y": -189.71812, "z": 0, "nansi-louvain": 4, "nansi-degree": 6 } }, { "key": "243", "attributes": { "label": "Analyse Qualitative Globale Simplifiée Des Impacts", "nodedef": "n243", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6223197, "x": 37.117363, "y": -154.41173, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "244", "attributes": { "label": "Decroissance Soutenable", "nodedef": "n244", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6223197, "x": 45.78917, "y": -157.13383, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "245", "attributes": { "label": "Dérèglement Climatique", "nodedef": "n245", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.655348, "x": 88.41255, "y": -116.5716, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "246", "attributes": { "label": "Fragmentation Écologique", "nodedef": "n246", "occurrences": 4, "color": "rgb(102,255,102)", "size": 3.6317973, "x": 70.92576, "y": -143.68958, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "247", "attributes": { "label": "Objectifs Du Millénaire", "nodedef": "n247", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6082125, "x": 12.4458685, "y": -165.5086, "z": 0, "nansi-louvain": 9, "nansi-degree": 4 } }, { "key": "248", "attributes": { "label": "Programme Des Nations Unies", "nodedef": "n248", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6428227, "x": 9.056396, "y": -123.401535, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "249", "attributes": { "label": "Analyses De Cycle De Vie", "nodedef": "n249", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6693263, "x": 109.0696, "y": -152.85701, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "250", "attributes": { "label": "Impact Environnemental", "nodedef": "n250", "occurrences": 13, "color": "rgb(153,255,0)", "size": 3.8800173, "x": 97.254196, "y": -157.21738, "z": 0, "nansi-louvain": 9, "nansi-degree": 20 } }, { "key": "251", "attributes": { "label": "Management Environnemental", "nodedef": "n251", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6317973, "x": 91.11483, "y": -179.4232, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "252", "attributes": { "label": "Bilan Environnemental", "nodedef": "n252", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.655348, "x": 89.022064, "y": -150.6653, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "253", "attributes": { "label": "Bonne Pratique", "nodedef": "n253", "occurrences": 6, "color": "rgb(153,255,0)", "size": 3.6317973, "x": 102.633675, "y": -176.08763, "z": 0, "nansi-louvain": 5, "nansi-degree": 7 } }, { "key": "254", "attributes": { "label": "Ann Bancroft", "nodedef": "n254", "occurrences": 9, "color": "rgb(255,255,51)", "size": 3.7195435, "x": -22.485003, "y": 139.81525, "z": 0, "nansi-louvain": 8, "nansi-degree": 13 } }, { "key": "255", "attributes": { "label": "Liv Arnesen", "nodedef": "n255", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6036906, "x": -23.124985, "y": 158.08711, "z": 0, "nansi-louvain": 8, "nansi-degree": 3 } }, { "key": "256", "attributes": { "label": "Pole Expedition", "nodedef": "n256", "occurrences": 6, "color": "rgb(0,204,204)", "size": 3.6693263, "x": -58.390255, "y": 199.47104, "z": 0, "nansi-louvain": 18, "nansi-degree": 10 } }, { "key": "257", "attributes": { "label": "Année Polaire Internationale", "nodedef": "n257", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6223197, "x": 103.003006, "y": -23.960472, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "258", "attributes": { "label": "Communaute Scientifique", "nodedef": "n258", "occurrences": 7, "color": "rgb(255,204,102)", "size": 3.655348, "x": 150.47658, "y": -55.86362, "z": 0, "nansi-louvain": 17, "nansi-degree": 9 } }, { "key": "259", "attributes": { "label": "Emile Victor", "nodedef": "n259", "occurrences": 10, "color": "rgb(153,255,255)", "size": 3.6847134, "x": 52.9865, "y": 19.471155, "z": 0, "nansi-louvain": 3, "nansi-degree": 11 } }, { "key": "260", "attributes": { "label": "Annuaire Sciences", "nodedef": "n260", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 164.51122, "y": -17.858986, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "261", "attributes": { "label": "Science De La Nature", "nodedef": "n261", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 154.6033, "y": -40.537548, "z": 0, "nansi-louvain": 17, "nansi-degree": 7 } }, { "key": "262", "attributes": { "label": "Sciences De La Terre", "nodedef": "n262", "occurrences": 25, "color": "rgb(255,204,102)", "size": 4.091856, "x": 152.73366, "y": -0.066033475, "z": 0, "nansi-louvain": 17, "nansi-degree": 27 } }, { "key": "263", "attributes": { "label": "Anomalie Magnétique", "nodedef": "n263", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 150.07298, "y": -15.702199, "z": 0, "nansi-louvain": 1, "nansi-degree": 6 } }, { "key": "264", "attributes": { "label": "Croûte Océanique", "nodedef": "n264", "occurrences": 10, "color": "rgb(255,204,102)", "size": 3.7389054, "x": 178.68779, "y": -65.692856, "z": 0, "nansi-louvain": 1, "nansi-degree": 14 } }, { "key": "265", "attributes": { "label": "Dorsale Océanique", "nodedef": "n265", "occurrences": 8, "color": "rgb(255,204,102)", "size": 3.6847134, "x": 191.68584, "y": -58.511658, "z": 0, "nansi-louvain": 1, "nansi-degree": 11 } }, { "key": "266", "attributes": { "label": "Marge Continentale", "nodedef": "n266", "occurrences": 8, "color": "rgb(255,204,102)", "size": 3.6847134, "x": 141.21425, "y": -67.624016, "z": 0, "nansi-louvain": 1, "nansi-degree": 11 } }, { "key": "267", "attributes": { "label": "Nord Magnétique", "nodedef": "n267", "occurrences": 13, "color": "rgb(153,255,255)", "size": 3.8800173, "x": 60.190495, "y": 63.161922, "z": 0, "nansi-louvain": 8, "nansi-degree": 20 } }, { "key": "268", "attributes": { "label": "Anwr", "nodedef": "n268", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6693263, "x": -291.7128, "y": 97.115425, "z": 0, "nansi-louvain": 6, "nansi-degree": 10 } }, { "key": "269", "attributes": { "label": "Anwr Oil", "nodedef": "n269", "occurrences": 3, "color": "rgb(102,0,102)", "size": 3.6847134, "x": -279.8924, "y": 103.712296, "z": 0, "nansi-louvain": 6, "nansi-degree": 11 } }, { "key": "270", "attributes": { "label": "Arctic National", "nodedef": "n270", "occurrences": 12, "color": "rgb(153,255,0)", "size": 3.7813334, "x": -267.39056, "y": 92.25091, "z": 0, "nansi-louvain": 6, "nansi-degree": 16 } }, { "key": "271", "attributes": { "label": "National Wildlife Refuge", "nodedef": "n271", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6428227, "x": -283.95236, "y": 88.35038, "z": 0, "nansi-louvain": 6, "nansi-degree": 8 } }, { "key": "272", "attributes": { "label": "Oil Companies", "nodedef": "n272", "occurrences": 18, "color": "rgb(102,0,102)", "size": 3.8800173, "x": -243.50465, "y": 88.31894, "z": 0, "nansi-louvain": 6, "nansi-degree": 20 } }, { "key": "273", "attributes": { "label": "Refuge To Oil", "nodedef": "n273", "occurrences": 6, "color": "rgb(102,0,102)", "size": 3.6847134, "x": -292.62045, "y": 94.92121, "z": 0, "nansi-louvain": 6, "nansi-degree": 11 } }, { "key": "274", "attributes": { "label": "Anwr Drilling", "nodedef": "n274", "occurrences": 4, "color": "rgb(102,0,102)", "size": 3.701466, "x": -284.91733, "y": 99.35841, "z": 0, "nansi-louvain": 6, "nansi-degree": 12 } }, { "key": "275", "attributes": { "label": "National Wildlife", "nodedef": "n275", "occurrences": 9, "color": "rgb(153,255,0)", "size": 3.6847134, "x": -278.74994, "y": 110.035324, "z": 0, "nansi-louvain": 6, "nansi-degree": 11 } }, { "key": "276", "attributes": { "label": "Wildlife Refuge", "nodedef": "n276", "occurrences": 7, "color": "rgb(153,255,0)", "size": 3.6847134, "x": -269.86737, "y": 101.480644, "z": 0, "nansi-louvain": 6, "nansi-degree": 11 } }, { "key": "277", "attributes": { "label": "Aptenodytes Forsteri", "nodedef": "n277", "occurrences": 5, "color": "rgb(153,255,255)", "size": 3.6082125, "x": 31.055836, "y": 99.80726, "z": 0, "nansi-louvain": 19, "nansi-degree": 4 } }, { "key": "278", "attributes": { "label": "Archéologie", "nodedef": "n278", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": 183.63559, "y": -45.625885, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "279", "attributes": { "label": "Arctique Canadien", "nodedef": "n279", "occurrences": 25, "color": "rgb(0,204,204)", "size": 4.3456545, "x": -3.9445589, "y": -4.471882, "z": 0, "nansi-louvain": 3, "nansi-degree": 34 } }, { "key": "280", "attributes": { "label": "Bris De Glace", "nodedef": "n280", "occurrences": 31, "color": "rgb(0,204,204)", "size": 4.195968, "x": -5.8347754, "y": -21.578403, "z": 0, "nansi-louvain": 3, "nansi-degree": 30 } }, { "key": "281", "attributes": { "label": "Grand Nord", "nodedef": "n281", "occurrences": 51, "color": "rgb(0,204,204)", "size": 5.18996, "x": -39.57299, "y": -27.606646, "z": 0, "nansi-louvain": 3, "nansi-degree": 53 } }, { "key": "282", "attributes": { "label": "Ile De Baffin", "nodedef": "n282", "occurrences": 8, "color": "rgb(0,204,204)", "size": 3.6693263, "x": -59.04784, "y": 52.553104, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "283", "attributes": { "label": "Terre De Baffin", "nodedef": "n283", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.655348, "x": -45.948204, "y": 47.96359, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "284", "attributes": { "label": "Territoires Du Nord", "nodedef": "n284", "occurrences": 13, "color": "rgb(0,204,204)", "size": 3.7195435, "x": -43.98641, "y": -3.272884, "z": 0, "nansi-louvain": 3, "nansi-degree": 13 } }, { "key": "285", "attributes": { "label": "Archives Climatiques", "nodedef": "n285", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6693263, "x": 102.780754, "y": -42.972824, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "286", "attributes": { "label": "Laboratoire Des Sciences", "nodedef": "n286", "occurrences": 7, "color": "rgb(255,255,51)", "size": 3.6693263, "x": 148.07843, "y": -12.8848715, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "287", "attributes": { "label": "Période Glaciaire", "nodedef": "n287", "occurrences": 20, "color": "rgb(153,255,255)", "size": 4.058827, "x": 127.866875, "y": -28.618502, "z": 0, "nansi-louvain": 9, "nansi-degree": 26 } }, { "key": "288", "attributes": { "label": "Archives Du Climat", "nodedef": "n288", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 101.5711, "y": -44.95117, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "289", "attributes": { "label": "Laboratoire Des Sciences Du Climat", "nodedef": "n289", "occurrences": 5, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 96.76218, "y": -9.049139, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "290", "attributes": { "label": "Dominique Raynaud", "nodedef": "n290", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6428227, "x": 96.9847, "y": -15.121114, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "291", "attributes": { "label": "Arctic Bay", "nodedef": "n291", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -119.66502, "y": 213.10405, "z": 0, "nansi-louvain": 18, "nansi-degree": 7 } }, { "key": "292", "attributes": { "label": "Arctic Circle", "nodedef": "n292", "occurrences": 25, "color": "rgb(0,204,204)", "size": 4.125738, "x": -126.737595, "y": 202.34866, "z": 0, "nansi-louvain": 18, "nansi-degree": 28 } }, { "key": "293", "attributes": { "label": "Baffin Island", "nodedef": "n293", "occurrences": 14, "color": "rgb(0,204,204)", "size": 3.7813334, "x": -111.485565, "y": 192.40678, "z": 0, "nansi-louvain": 18, "nansi-degree": 16 } }, { "key": "294", "attributes": { "label": "Canadian Arctic", "nodedef": "n294", "occurrences": 21, "color": "rgb(255,51,51)", "size": 4.0266757, "x": -94.57012, "y": 208.20892, "z": 0, "nansi-louvain": 18, "nansi-degree": 25 } }, { "key": "295", "attributes": { "label": "High Arctic", "nodedef": "n295", "occurrences": 10, "color": "rgb(0,204,204)", "size": 3.7195435, "x": -108.33184, "y": 210.53252, "z": 0, "nansi-louvain": 18, "nansi-degree": 13 } }, { "key": "296", "attributes": { "label": "Arctic Ocean", "nodedef": "n296", "occurrences": 47, "color": "rgb(0,204,204)", "size": 5.18996, "x": -93.28997, "y": 190.84187, "z": 0, "nansi-louvain": 18, "nansi-degree": 53 } }, { "key": "297", "attributes": { "label": "Midnight Sun", "nodedef": "n297", "occurrences": 8, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -151.48566, "y": 222.3814, "z": 0, "nansi-louvain": 18, "nansi-degree": 7 } }, { "key": "298", "attributes": { "label": "Arctic Climate", "nodedef": "n298", "occurrences": 7, "color": "rgb(153,255,255)", "size": 3.701466, "x": -71.06557, "y": 172.55275, "z": 0, "nansi-louvain": 18, "nansi-degree": 12 } }, { "key": "299", "attributes": { "label": "Climate System", "nodedef": "n299", "occurrences": 7, "color": "rgb(102,255,102)", "size": 3.6693263, "x": -31.028963, "y": 145.8912, "z": 0, "nansi-louvain": 7, "nansi-degree": 10 } }, { "key": "300", "attributes": { "label": "Global Climate", "nodedef": "n300", "occurrences": 15, "color": "rgb(102,255,102)", "size": 3.804327, "x": -21.659771, "y": 123.040016, "z": 0, "nansi-louvain": 7, "nansi-degree": 17 } }, { "key": "301", "attributes": { "label": "Arctic Expedition", "nodedef": "n301", "occurrences": 8, "color": "rgb(0,204,204)", "size": 3.7195435, "x": -75.893456, "y": 197.4442, "z": 0, "nansi-louvain": 18, "nansi-degree": 13 } }, { "key": "302", "attributes": { "label": "Polar Expedition", "nodedef": "n302", "occurrences": 10, "color": "rgb(153,255,255)", "size": 3.7195435, "x": -69.1988, "y": 207.21591, "z": 0, "nansi-louvain": 18, "nansi-degree": 13 } }, { "key": "303", "attributes": { "label": "Arctic Explorer", "nodedef": "n303", "occurrences": 7, "color": "rgb(0,204,204)", "size": 3.701466, "x": -86.27269, "y": 199.84595, "z": 0, "nansi-louvain": 18, "nansi-degree": 12 } }, { "key": "304", "attributes": { "label": "Northwest Passage", "nodedef": "n304", "occurrences": 4, "color": "rgb(153,0,0)", "size": 3.6317973, "x": -75.07605, "y": 211.81693, "z": 0, "nansi-louvain": 18, "nansi-degree": 7 } }, { "key": "305", "attributes": { "label": "Arctic Haze", "nodedef": "n305", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6317973, "x": -35.80109, "y": 195.26086, "z": 0, "nansi-louvain": 12, "nansi-degree": 7 } }, { "key": "306", "attributes": { "label": "Arctic Research", "nodedef": "n306", "occurrences": 8, "color": "rgb(153,255,255)", "size": 3.701466, "x": -64.82288, "y": 192.68219, "z": 0, "nansi-louvain": 18, "nansi-degree": 12 } }, { "key": "307", "attributes": { "label": "Atmospheric Administration", "nodedef": "n307", "occurrences": 8, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 22.788795, "y": 198.62018, "z": 0, "nansi-louvain": 12, "nansi-degree": 8 } }, { "key": "308", "attributes": { "label": "Atmospheric Chemistry", "nodedef": "n308", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6317973, "x": -49.887466, "y": 159.8329, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "309", "attributes": { "label": "National Oceanic", "nodedef": "n309", "occurrences": 10, "color": "rgb(255,255,51)", "size": 3.655348, "x": 16.61615, "y": 206.01147, "z": 0, "nansi-louvain": 12, "nansi-degree": 9 } }, { "key": "310", "attributes": { "label": "Arctic Ice", "nodedef": "n310", "occurrences": 12, "color": "rgb(0,204,204)", "size": 3.8284607, "x": -27.917944, "y": 188.4113, "z": 0, "nansi-louvain": 7, "nansi-degree": 18 } }, { "key": "311", "attributes": { "label": "Arctic Sea", "nodedef": "n311", "occurrences": 12, "color": "rgb(153,255,255)", "size": 3.7813334, "x": -10.068048, "y": 179.75276, "z": 0, "nansi-louvain": 7, "nansi-degree": 16 } }, { "key": "312", "attributes": { "label": "Ice Sheet", "nodedef": "n312", "occurrences": 28, "color": "rgb(153,255,255)", "size": 4.2322693, "x": -16.38151, "y": 182.17133, "z": 0, "nansi-louvain": 7, "nansi-degree": 31 } }, { "key": "313", "attributes": { "label": "National Parks", "nodedef": "n313", "occurrences": 31, "color": "rgb(153,255,0)", "size": 4.195968, "x": -170.17097, "y": 161.3763, "z": 0, "nansi-louvain": 10, "nansi-degree": 30 } }, { "key": "314", "attributes": { "label": "Arctic Norway", "nodedef": "n314", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.655348, "x": -110.29215, "y": 200.05023, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "315", "attributes": { "label": "International Arctic", "nodedef": "n315", "occurrences": 6, "color": "rgb(153,255,255)", "size": 3.6847134, "x": -76.86737, "y": 186.35866, "z": 0, "nansi-louvain": 18, "nansi-degree": 11 } }, { "key": "316", "attributes": { "label": "Northern Light", "nodedef": "n316", "occurrences": 7, "color": "rgb(153,255,255)", "size": 3.6317973, "x": -117.78721, "y": 154.91376, "z": 0, "nansi-louvain": 18, "nansi-degree": 7 } }, { "key": "317", "attributes": { "label": "Norwegian Polar", "nodedef": "n317", "occurrences": 5, "color": "rgb(153,255,255)", "size": 3.6428227, "x": -56.37995, "y": 181.46701, "z": 0, "nansi-louvain": 18, "nansi-degree": 8 } }, { "key": "318", "attributes": { "label": "Atlantic Ocean", "nodedef": "n318", "occurrences": 7, "color": "rgb(102,255,102)", "size": 3.655348, "x": -97.00306, "y": 147.84337, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "319", "attributes": { "label": "Lomonosov Ridge", "nodedef": "n319", "occurrences": 5, "color": "rgb(153,255,255)", "size": 3.655348, "x": -50.756573, "y": 155.02829, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "320", "attributes": { "label": "Arctic Red", "nodedef": "n320", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -156.28389, "y": 183.47563, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "321", "attributes": { "label": "Beaufort Sea", "nodedef": "n321", "occurrences": 7, "color": "rgb(0,204,204)", "size": 3.6847134, "x": -142.64174, "y": 161.16742, "z": 0, "nansi-louvain": 18, "nansi-degree": 11 } }, { "key": "322", "attributes": { "label": "Mackenzie River", "nodedef": "n322", "occurrences": 8, "color": "rgb(0,204,204)", "size": 3.7389054, "x": -183.5263, "y": 174.83626, "z": 0, "nansi-louvain": 18, "nansi-degree": 14 } }, { "key": "323", "attributes": { "label": "Northwest Territories", "nodedef": "n323", "occurrences": 13, "color": "rgb(0,204,204)", "size": 3.701466, "x": -156.98174, "y": 163.5819, "z": 0, "nansi-louvain": 18, "nansi-degree": 12 } }, { "key": "324", "attributes": { "label": "Geological Survey", "nodedef": "n324", "occurrences": 12, "color": "rgb(102,255,102)", "size": 3.7195435, "x": -41.72142, "y": 110.47517, "z": 0, "nansi-louvain": 7, "nansi-degree": 13 } }, { "key": "325", "attributes": { "label": "Polar Research", "nodedef": "n325", "occurrences": 13, "color": "rgb(153,255,255)", "size": 3.7389054, "x": -24.83641, "y": 162.25723, "z": 0, "nansi-louvain": 7, "nansi-degree": 14 } }, { "key": "326", "attributes": { "label": "Arctic Science", "nodedef": "n326", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6317973, "x": -73.76362, "y": 190.57797, "z": 0, "nansi-louvain": 18, "nansi-degree": 7 } }, { "key": "327", "attributes": { "label": "Arctic Resources", "nodedef": "n327", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6223197, "x": -81.83812, "y": 184.4488, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "328", "attributes": { "label": "Arctic Summer", "nodedef": "n328", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6428227, "x": -27.644634, "y": 184.24844, "z": 0, "nansi-louvain": 7, "nansi-degree": 8 } }, { "key": "329", "attributes": { "label": "Ice Records", "nodedef": "n329", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6428227, "x": -16.24161, "y": 186.46007, "z": 0, "nansi-louvain": 7, "nansi-degree": 8 } }, { "key": "330", "attributes": { "label": "Arcticnet", "nodedef": "n330", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.655348, "x": -69.9575, "y": 182.43434, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "331", "attributes": { "label": "Centre Of Excellence", "nodedef": "n331", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.600933, "x": -89.95464, "y": 177.64325, "z": 0, "nansi-louvain": 18, "nansi-degree": 2 } }, { "key": "332", "attributes": { "label": "Network Of Centres Of Excellence", "nodedef": "n332", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -95.11385, "y": 158.78987, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "333", "attributes": { "label": "Arctique", "nodedef": "n333", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6693263, "x": 11.449857, "y": -19.621204, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "334", "attributes": { "label": "Ours Polaire", "nodedef": "n334", "occurrences": 26, "color": "rgb(153,255,0)", "size": 4.269332, "x": -17.325356, "y": -33.27089, "z": 0, "nansi-louvain": 3, "nansi-degree": 32 } }, { "key": "335", "attributes": { "label": "Cercle Polaire", "nodedef": "n335", "occurrences": 40, "color": "rgb(0,204,204)", "size": 4.7661777, "x": -48.095364, "y": -36.490795, "z": 0, "nansi-louvain": 3, "nansi-degree": 44 } }, { "key": "336", "attributes": { "label": "Haut Arctique", "nodedef": "n336", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6693263, "x": -21.528183, "y": -16.880508, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "337", "attributes": { "label": "Arktika 2007", "nodedef": "n337", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.655348, "x": -13.903978, "y": 58.9643, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "338", "attributes": { "label": "Law Of Sea", "nodedef": "n338", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.600933, "x": -49.472965, "y": 21.847624, "z": 0, "nansi-louvain": 20, "nansi-degree": 2 } }, { "key": "339", "attributes": { "label": "Mission Arctique", "nodedef": "n339", "occurrences": 10, "color": "rgb(153,255,255)", "size": 3.7813334, "x": 33.099888, "y": -33.06869, "z": 0, "nansi-louvain": 3, "nansi-degree": 16 } }, { "key": "340", "attributes": { "label": "Natural Resources Ministry", "nodedef": "n340", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6036906, "x": -64.134834, "y": 76.44806, "z": 0, "nansi-louvain": 7, "nansi-degree": 3 } }, { "key": "341", "attributes": { "label": "Armée Américaine", "nodedef": "n341", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -120.0226, "y": -12.212815, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "342", "attributes": { "label": "Arthur Chilingarov", "nodedef": "n342", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6082125, "x": -42.612797, "y": 209.39426, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "343", "attributes": { "label": "Helge Sander", "nodedef": "n343", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6, "x": -40.501266, "y": 229.61453, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "344", "attributes": { "label": "Asie Centrale", "nodedef": "n344", "occurrences": 15, "color": "rgb(255,51,51)", "size": 3.7389054, "x": -34.89877, "y": -120.127, "z": 0, "nansi-louvain": 3, "nansi-degree": 14 } }, { "key": "345", "attributes": { "label": "Astrophysique", "nodedef": "n345", "occurrences": 1, "color": "rgb(255,153,153)", "size": 3.6144404, "x": 192.97144, "y": -15.115118, "z": 0, "nansi-louvain": 17, "nansi-degree": 5 } }, { "key": "346", "attributes": { "label": "Cnrs Umr", "nodedef": "n346", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 211.2819, "y": 6.151988, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "347", "attributes": { "label": "Mecanique Celeste", "nodedef": "n347", "occurrences": 4, "color": "rgb(255,153,153)", "size": 3.6082125, "x": 189.8597, "y": -2.4442487, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "348", "attributes": { "label": "Observatoire De Paris", "nodedef": "n348", "occurrences": 9, "color": "rgb(255,255,51)", "size": 3.6847134, "x": 178.01636, "y": -20.110973, "z": 0, "nansi-louvain": 17, "nansi-degree": 11 } }, { "key": "349", "attributes": { "label": "Telescope Spatial", "nodedef": "n349", "occurrences": 4, "color": "rgb(255,153,153)", "size": 3.6082125, "x": 160.5798, "y": -8.242595, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "350", "attributes": { "label": "Atlantic Drift", "nodedef": "n350", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -99.43756, "y": 167.53937, "z": 0, "nansi-louvain": 18, "nansi-degree": 3 } }, { "key": "351", "attributes": { "label": "North Atlantic", "nodedef": "n351", "occurrences": 10, "color": "rgb(0,204,204)", "size": 3.6847134, "x": -64.40833, "y": 104.184166, "z": 0, "nansi-louvain": 18, "nansi-degree": 11 } }, { "key": "352", "attributes": { "label": "Atlantique Au Pacifique", "nodedef": "n352", "occurrences": 4, "color": "rgb(153,0,0)", "size": 3.655348, "x": -47.839554, "y": -106.264366, "z": 0, "nansi-louvain": 5, "nansi-degree": 9 } }, { "key": "353", "attributes": { "label": "Canal De Panama", "nodedef": "n353", "occurrences": 5, "color": "rgb(153,0,0)", "size": 3.6036906, "x": -50.865807, "y": -194.60582, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "354", "attributes": { "label": "Chemin De Fer", "nodedef": "n354", "occurrences": 6, "color": "rgb(153,0,0)", "size": 3.6223197, "x": -35.73194, "y": -87.048325, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "355", "attributes": { "label": "Marine Soviétique", "nodedef": "n355", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -60.67849, "y": -155.855, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "356", "attributes": { "label": "Bruno Peyron", "nodedef": "n356", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -10.747266, "y": -7.0994005, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "357", "attributes": { "label": "Cap Lizard", "nodedef": "n357", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -34.374657, "y": -17.676392, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "358", "attributes": { "label": "Atmosphère", "nodedef": "n358", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6223197, "x": -35.732864, "y": 157.42235, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "359", "attributes": { "label": "Atmosphere Composition", "nodedef": "n359", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6082125, "x": -57.718567, "y": 152.6606, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "360", "attributes": { "label": "Atmospheric Research", "nodedef": "n360", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6082125, "x": -41.769897, "y": 164.66273, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "361", "attributes": { "label": "Earth System", "nodedef": "n361", "occurrences": 11, "color": "rgb(255,255,51)", "size": 3.7389054, "x": -3.845854, "y": 139.00998, "z": 0, "nansi-louvain": 7, "nansi-degree": 14 } }, { "key": "362", "attributes": { "label": "Upper Atmosphere", "nodedef": "n362", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6223197, "x": -31.719908, "y": 169.38554, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "363", "attributes": { "label": "Atmosphère Terrestre", "nodedef": "n363", "occurrences": 6, "color": "rgb(255,255,0)", "size": 3.7389054, "x": 122.939224, "y": -40.128826, "z": 0, "nansi-louvain": 8, "nansi-degree": 14 } }, { "key": "364", "attributes": { "label": "Aurore Boréale", "nodedef": "n364", "occurrences": 15, "color": "rgb(0,204,204)", "size": 3.8800173, "x": -4.432619, "y": 16.882296, "z": 0, "nansi-louvain": 8, "nansi-degree": 20 } }, { "key": "365", "attributes": { "label": "Composition Chimique", "nodedef": "n365", "occurrences": 5, "color": "rgb(255,204,102)", "size": 3.655348, "x": 170.05028, "y": -113.44334, "z": 0, "nansi-louvain": 1, "nansi-degree": 9 } }, { "key": "366", "attributes": { "label": "Rayonnement Solaire", "nodedef": "n366", "occurrences": 6, "color": "rgb(255,204,102)", "size": 3.6847134, "x": 154.5624, "y": -106.82185, "z": 0, "nansi-louvain": 9, "nansi-degree": 11 } }, { "key": "367", "attributes": { "label": "National Weather", "nodedef": "n367", "occurrences": 10, "color": "rgb(255,255,51)", "size": 3.6847134, "x": 5.08101, "y": 227.72704, "z": 0, "nansi-louvain": 12, "nansi-degree": 11 } }, { "key": "368", "attributes": { "label": "Global Change", "nodedef": "n368", "occurrences": 8, "color": "rgb(153,255,255)", "size": 3.6847134, "x": -35.831654, "y": 152.65, "z": 0, "nansi-louvain": 7, "nansi-degree": 11 } }, { "key": "369", "attributes": { "label": "August Peterman", "nodedef": "n369", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6223197, "x": 4.8993335, "y": 105.2187, "z": 0, "nansi-louvain": 8, "nansi-degree": 6 } }, { "key": "370", "attributes": { "label": "Nuit Polaire", "nodedef": "n370", "occurrences": 13, "color": "rgb(0,204,204)", "size": 3.8537014, "x": -11.027645, "y": 24.769274, "z": 0, "nansi-louvain": 3, "nansi-degree": 19 } }, { "key": "371", "attributes": { "label": "Aurora Borealis", "nodedef": "n371", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6144404, "x": -97.41561, "y": 155.59187, "z": 0, "nansi-louvain": 18, "nansi-degree": 5 } }, { "key": "372", "attributes": { "label": "Magnetic Field", "nodedef": "n372", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.6223197, "x": -2.8049726, "y": 149.24353, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "373", "attributes": { "label": "Aurore Polaire", "nodedef": "n373", "occurrences": 6, "color": "rgb(153,255,255)", "size": 3.701466, "x": 77.101395, "y": 33.875526, "z": 0, "nansi-louvain": 8, "nansi-degree": 12 } }, { "key": "374", "attributes": { "label": "Pole Magnetique", "nodedef": "n374", "occurrences": 12, "color": "rgb(153,255,255)", "size": 3.8537014, "x": 73.325775, "y": 60.481773, "z": 0, "nansi-louvain": 8, "nansi-degree": 19 } }, { "key": "375", "attributes": { "label": "Aurores Boréales", "nodedef": "n375", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.655348, "x": 100.03674, "y": 21.777388, "z": 0, "nansi-louvain": 8, "nansi-degree": 9 } }, { "key": "376", "attributes": { "label": "Axel Heiberg", "nodedef": "n376", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -95.12263, "y": 219.29913, "z": 0, "nansi-louvain": 18, "nansi-degree": 7 } }, { "key": "377", "attributes": { "label": "Ellesmere Island", "nodedef": "n377", "occurrences": 9, "color": "rgb(0,204,204)", "size": 3.6847134, "x": -86.02097, "y": 214.66623, "z": 0, "nansi-louvain": 18, "nansi-degree": 11 } }, { "key": "378", "attributes": { "label": "Hydrocarbure Aromatique", "nodedef": "n378", "occurrences": 7, "color": "rgb(102,102,0)", "size": 3.6693263, "x": 109.989365, "y": -188.51434, "z": 0, "nansi-louvain": 4, "nansi-degree": 10 } }, { "key": "379", "attributes": { "label": "Métaux Lourds", "nodedef": "n379", "occurrences": 7, "color": "rgb(102,102,0)", "size": 3.6693263, "x": 131.66563, "y": -187.17117, "z": 0, "nansi-louvain": 4, "nansi-degree": 10 } }, { "key": "380", "attributes": { "label": "Azote Liquide", "nodedef": "n380", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 222.25716, "y": -13.575581, "z": 0, "nansi-louvain": 1, "nansi-degree": 3 } }, { "key": "381", "attributes": { "label": "Baffin Bay", "nodedef": "n381", "occurrences": 8, "color": "rgb(102,255,102)", "size": 3.655348, "x": -79.369484, "y": 151.77296, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "382", "attributes": { "label": "Baie De Baffin", "nodedef": "n382", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6847134, "x": -19.066738, "y": 10.270861, "z": 0, "nansi-louvain": 3, "nansi-degree": 11 } }, { "key": "383", "attributes": { "label": "Baie De Disko", "nodedef": "n383", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -13.535161, "y": 14.788718, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "385", "attributes": { "label": "Knud Rasmussen", "nodedef": "n385", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6082125, "x": -78.57332, "y": 111.59102, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "386", "attributes": { "label": "Universités Canadiennes", "nodedef": "n386", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.600933, "x": 56.770393, "y": 11.248558, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "387", "attributes": { "label": "Baie Disko", "nodedef": "n387", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -32.4329, "y": -38.737713, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "388", "attributes": { "label": "Europe Du Nord", "nodedef": "n388", "occurrences": 9, "color": "rgb(255,51,51)", "size": 3.701466, "x": -89.12617, "y": -88.50067, "z": 0, "nansi-louvain": 3, "nansi-degree": 12 } }, { "key": "389", "attributes": { "label": "Balbuzard Pêcheur", "nodedef": "n389", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6036906, "x": -28.54275, "y": -93.02308, "z": 0, "nansi-louvain": 14, "nansi-degree": 3 } }, { "key": "390", "attributes": { "label": "Baleine Bleue", "nodedef": "n390", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6144404, "x": 2.9959354, "y": -113.29308, "z": 0, "nansi-louvain": 14, "nansi-degree": 5 } }, { "key": "391", "attributes": { "label": "Mammifere Marin", "nodedef": "n391", "occurrences": 17, "color": "rgb(153,255,0)", "size": 3.9073772, "x": -10.603199, "y": -129.96988, "z": 0, "nansi-louvain": 14, "nansi-degree": 21 } }, { "key": "392", "attributes": { "label": "Nageoire Caudale", "nodedef": "n392", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6223197, "x": 23.112679, "y": -135.34761, "z": 0, "nansi-louvain": 14, "nansi-degree": 6 } }, { "key": "393", "attributes": { "label": "Baleine Grise", "nodedef": "n393", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6223197, "x": -19.350264, "y": -106.0015, "z": 0, "nansi-louvain": 14, "nansi-degree": 6 } }, { "key": "394", "attributes": { "label": "Petit Rorqual", "nodedef": "n394", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6144404, "x": -10.847951, "y": -112.97877, "z": 0, "nansi-louvain": 14, "nansi-degree": 5 } }, { "key": "395", "attributes": { "label": "Balises", "nodedef": "n395", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": 159.80191, "y": -145.55705, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "396", "attributes": { "label": "Ballon Dirigeable", "nodedef": "n396", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6144404, "x": 26.310966, "y": 13.946579, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "397", "attributes": { "label": "Louis Etienne", "nodedef": "n397", "occurrences": 18, "color": "rgb(0,204,204)", "size": 4.058827, "x": 28.13527, "y": -1.3279884, "z": 0, "nansi-louvain": 3, "nansi-degree": 26 } }, { "key": "398", "attributes": { "label": "Pole Airship", "nodedef": "n398", "occurrences": 5, "color": "rgb(153,255,255)", "size": 3.6847134, "x": 22.873318, "y": 3.2718608, "z": 0, "nansi-louvain": 3, "nansi-degree": 11 } }, { "key": "399", "attributes": { "label": "Ballon Stratosphérique", "nodedef": "n399", "occurrences": 2, "color": "rgb(255,153,153)", "size": 3.600933, "x": 148.19206, "y": 54.038837, "z": 0, "nansi-louvain": 12, "nansi-degree": 2 } }, { "key": "400", "attributes": { "label": "Etudes Spatiales", "nodedef": "n400", "occurrences": 4, "color": "rgb(255,153,153)", "size": 3.6223197, "x": 111.13378, "y": 53.390965, "z": 0, "nansi-louvain": 12, "nansi-degree": 6 } }, { "key": "401", "attributes": { "label": "Baltic Sea", "nodedef": "n401", "occurrences": 7, "color": "rgb(102,255,102)", "size": 3.6317973, "x": -146.42409, "y": 84.8764, "z": 0, "nansi-louvain": 6, "nansi-degree": 7 } }, { "key": "402", "attributes": { "label": "Bande Côtière", "nodedef": "n402", "occurrences": 4, "color": "rgb(102,255,102)", "size": 3.6082125, "x": 27.035393, "y": -103.89623, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "403", "attributes": { "label": "Chaîne De Montagnes", "nodedef": "n403", "occurrences": 18, "color": "rgb(255,204,102)", "size": 3.7813334, "x": 131.35992, "y": -70.13891, "z": 0, "nansi-louvain": 1, "nansi-degree": 16 } }, { "key": "404", "attributes": { "label": "Banquise", "nodedef": "n404", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6693263, "x": 25.10112, "y": -25.959925, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "405", "attributes": { "label": "Glacial Arctique", "nodedef": "n405", "occurrences": 20, "color": "rgb(0,204,204)", "size": 4.1604505, "x": -10.968628, "y": -12.03476, "z": 0, "nansi-louvain": 3, "nansi-degree": 29 } }, { "key": "406", "attributes": { "label": "Ours Blanc", "nodedef": "n406", "occurrences": 9, "color": "rgb(153,255,0)", "size": 3.655348, "x": -10.544866, "y": -42.540047, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "407", "attributes": { "label": "Banquise Continentale", "nodedef": "n407", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6223197, "x": 53.320606, "y": -3.7276556, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "408", "attributes": { "label": "Calotte Polaire", "nodedef": "n408", "occurrences": 23, "color": "rgb(153,255,255)", "size": 4.269332, "x": 77.350136, "y": -6.895287, "z": 0, "nansi-louvain": 3, "nansi-degree": 32 } }, { "key": "409", "attributes": { "label": "Océan Glacial", "nodedef": "n409", "occurrences": 23, "color": "rgb(0,204,204)", "size": 4.058827, "x": -17.56222, "y": -19.361746, "z": 0, "nansi-louvain": 3, "nansi-degree": 26 } }, { "key": "410", "attributes": { "label": "Banquise Permanente", "nodedef": "n410", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6693263, "x": 4.7878776, "y": 1.2775079, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "411", "attributes": { "label": "Détroit De Béring", "nodedef": "n411", "occurrences": 16, "color": "rgb(0,204,204)", "size": 3.9954286, "x": -35.338623, "y": -42.67936, "z": 0, "nansi-louvain": 3, "nansi-degree": 24 } }, { "key": "412", "attributes": { "label": "Frédéric Lasserre", "nodedef": "n412", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -41.367714, "y": -11.191591, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "413", "attributes": { "label": "Barents", "nodedef": "n413", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6428227, "x": -143.28409, "y": 209.46739, "z": 0, "nansi-louvain": 18, "nansi-degree": 8 } }, { "key": "414", "attributes": { "label": "Barents Region", "nodedef": "n414", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -166.21114, "y": 191.34964, "z": 0, "nansi-louvain": 18, "nansi-degree": 5 } }, { "key": "415", "attributes": { "label": "Josef Land", "nodedef": "n415", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -95.72454, "y": 232.41396, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "416", "attributes": { "label": "Kara Sea", "nodedef": "n416", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.655348, "x": -120.43739, "y": 208.5851, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "417", "attributes": { "label": "North Norway", "nodedef": "n417", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6693263, "x": -148.41727, "y": 214.55252, "z": 0, "nansi-louvain": 18, "nansi-degree": 10 } }, { "key": "418", "attributes": { "label": "Novaya Zemlya", "nodedef": "n418", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -129.0915, "y": 170.75887, "z": 0, "nansi-louvain": 18, "nansi-degree": 5 } }, { "key": "419", "attributes": { "label": "Admiral Scheer", "nodedef": "n419", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6, "x": -156.23521, "y": 219.09123, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "420", "attributes": { "label": "Barent Sea", "nodedef": "n420", "occurrences": 8, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -187.14664, "y": 184.4735, "z": 0, "nansi-louvain": 6, "nansi-degree": 6 } }, { "key": "421", "attributes": { "label": "Kola Peninsula", "nodedef": "n421", "occurrences": 7, "color": "rgb(204,204,255)", "size": 3.6693263, "x": -203.64352, "y": 249.29506, "z": 0, "nansi-louvain": 10, "nansi-degree": 10 } }, { "key": "422", "attributes": { "label": "Baril De Pétrole", "nodedef": "n422", "occurrences": 13, "color": "rgb(102,0,102)", "size": 3.7813334, "x": -40.765606, "y": -154.20474, "z": 0, "nansi-louvain": 15, "nansi-degree": 16 } }, { "key": "423", "attributes": { "label": "Hausse Des Prix", "nodedef": "n423", "occurrences": 8, "color": "rgb(153,0,0)", "size": 3.6428227, "x": -36.36143, "y": -166.57997, "z": 0, "nansi-louvain": 15, "nansi-degree": 8 } }, { "key": "424", "attributes": { "label": "Petrole Brut", "nodedef": "n424", "occurrences": 15, "color": "rgb(102,0,102)", "size": 3.8800173, "x": -33.19895, "y": -158.61313, "z": 0, "nansi-louvain": 15, "nansi-degree": 20 } }, { "key": "425", "attributes": { "label": "Barrage Hydroélectrique", "nodedef": "n425", "occurrences": 1, "color": "rgb(0,153,0)", "size": 3.6223197, "x": 59.168156, "y": -177.78139, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "426", "attributes": { "label": "Centrale Electrique", "nodedef": "n426", "occurrences": 6, "color": "rgb(0,153,0)", "size": 3.655348, "x": 49.589497, "y": -166.27478, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "427", "attributes": { "label": "Centrale Nucléaire", "nodedef": "n427", "occurrences": 12, "color": "rgb(0,153,0)", "size": 3.7389054, "x": 22.703867, "y": -158.97726, "z": 0, "nansi-louvain": 17, "nansi-degree": 14 } }, { "key": "428", "attributes": { "label": "Metre Cube", "nodedef": "n428", "occurrences": 12, "color": "rgb(102,0,102)", "size": 3.6847134, "x": 19.015085, "y": -179.41298, "z": 0, "nansi-louvain": 9, "nansi-degree": 11 } }, { "key": "429", "attributes": { "label": "Oil Price", "nodedef": "n429", "occurrences": 13, "color": "rgb(102,0,102)", "size": 3.7595146, "x": -207.08775, "y": 74.73017, "z": 0, "nansi-louvain": 6, "nansi-degree": 15 } }, { "key": "430", "attributes": { "label": "Peak Oil", "nodedef": "n430", "occurrences": 5, "color": "rgb(102,0,102)", "size": 3.655348, "x": -126.7081, "y": 57.006065, "z": 0, "nansi-louvain": 6, "nansi-degree": 9 } }, { "key": "431", "attributes": { "label": "Barriere De Glace", "nodedef": "n431", "occurrences": 8, "color": "rgb(153,255,255)", "size": 3.6693263, "x": 81.15972, "y": 9.338229, "z": 0, "nansi-louvain": 19, "nansi-degree": 10 } }, { "key": "432", "attributes": { "label": "Bas Niveau", "nodedef": "n432", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.600933, "x": -41.10987, "y": 10.37062, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "433", "attributes": { "label": "Basse Pression", "nodedef": "n433", "occurrences": 9, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 205.54623, "y": -54.838284, "z": 0, "nansi-louvain": 1, "nansi-degree": 10 } }, { "key": "434", "attributes": { "label": "Capteur De Pression", "nodedef": "n434", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.6223197, "x": 232.74602, "y": -63.458157, "z": 0, "nansi-louvain": 1, "nansi-degree": 6 } }, { "key": "435", "attributes": { "label": "Haute Pression", "nodedef": "n435", "occurrences": 6, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 191.11574, "y": -114.793045, "z": 0, "nansi-louvain": 4, "nansi-degree": 7 } }, { "key": "436", "attributes": { "label": "Carte Géologique", "nodedef": "n436", "occurrences": 10, "color": "rgb(255,204,102)", "size": 3.7195435, "x": 147.21048, "y": -80.48178, "z": 0, "nansi-louvain": 1, "nansi-degree": 13 } }, { "key": "437", "attributes": { "label": "Compagnie Pétrolière", "nodedef": "n437", "occurrences": 16, "color": "rgb(102,0,102)", "size": 3.9357517, "x": -34.14809, "y": -179.04109, "z": 0, "nansi-louvain": 15, "nansi-degree": 22 } }, { "key": "438", "attributes": { "label": "Croûte Continentale", "nodedef": "n438", "occurrences": 10, "color": "rgb(255,204,102)", "size": 3.7389054, "x": 183.9422, "y": -75.21974, "z": 0, "nansi-louvain": 1, "nansi-degree": 14 } }, { "key": "439", "attributes": { "label": "Bateau De Pêche", "nodedef": "n439", "occurrences": 7, "color": "rgb(153,0,0)", "size": 3.6428227, "x": 44.173386, "y": -204.78471, "z": 0, "nansi-louvain": 5, "nansi-degree": 8 } }, { "key": "440", "attributes": { "label": "Libre De Droit", "nodedef": "n440", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 159.09518, "y": -135.1882, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "441", "attributes": { "label": "Navire De Pêche", "nodedef": "n441", "occurrences": 5, "color": "rgb(153,0,0)", "size": 3.6693263, "x": 11.837637, "y": -206.09175, "z": 0, "nansi-louvain": 5, "nansi-degree": 10 } }, { "key": "442", "attributes": { "label": "Bathymétrie", "nodedef": "n442", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6144404, "x": 34.909325, "y": 83.251366, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "443", "attributes": { "label": "Coastal Zone", "nodedef": "n443", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6144404, "x": -6.4859943, "y": 124.4449, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "444", "attributes": { "label": "Fond Marin", "nodedef": "n444", "occurrences": 25, "color": "rgb(255,51,51)", "size": 4.058827, "x": 17.204386, "y": -75.43884, "z": 0, "nansi-louvain": 5, "nansi-degree": 26 } }, { "key": "445", "attributes": { "label": "Geophysical Data", "nodedef": "n445", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 37.98542, "y": 156.4542, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "446", "attributes": { "label": "Canadian Hydrographic", "nodedef": "n446", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 19.862669, "y": 163.26822, "z": 0, "nansi-louvain": 16, "nansi-degree": 4 } }, { "key": "447", "attributes": { "label": "Cartes Shom", "nodedef": "n447", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6082125, "x": 83.64585, "y": 4.9812284, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "448", "attributes": { "label": "Bay Alaska", "nodedef": "n448", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -249.95671, "y": 166.7797, "z": 0, "nansi-louvain": 6, "nansi-degree": 4 } }, { "key": "449", "attributes": { "label": "Bay Oil", "nodedef": "n449", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.6082125, "x": -214.16371, "y": 103.91077, "z": 0, "nansi-louvain": 6, "nansi-degree": 4 } }, { "key": "450", "attributes": { "label": "Oil Field", "nodedef": "n450", "occurrences": 5, "color": "rgb(102,0,102)", "size": 3.6223197, "x": -226.9742, "y": 105.216705, "z": 0, "nansi-louvain": 6, "nansi-degree": 6 } }, { "key": "451", "attributes": { "label": "Bilan Carbone", "nodedef": "n451", "occurrences": 7, "color": "rgb(102,255,102)", "size": 3.7595146, "x": 81.63801, "y": -118.86459, "z": 0, "nansi-louvain": 9, "nansi-degree": 15 } }, { "key": "452", "attributes": { "label": "Equivalent Co2", "nodedef": "n452", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 37.754116, "y": -37.71268, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "453", "attributes": { "label": "Cycle De Vie", "nodedef": "n453", "occurrences": 10, "color": "rgb(153,255,0)", "size": 3.7195435, "x": 124.23212, "y": -161.74812, "z": 0, "nansi-louvain": 9, "nansi-degree": 13 } }, { "key": "454", "attributes": { "label": "Bilan De Masse Glaciaire", "nodedef": "n454", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 85.76359, "y": -22.019499, "z": 0, "nansi-louvain": 19, "nansi-degree": 8 } }, { "key": "455", "attributes": { "label": "Clark Ross", "nodedef": "n455", "occurrences": 9, "color": "rgb(153,255,255)", "size": 3.6847134, "x": 61.3171, "y": 72.87103, "z": 0, "nansi-louvain": 19, "nansi-degree": 11 } }, { "key": "456", "attributes": { "label": "Risque Naturel", "nodedef": "n456", "occurrences": 9, "color": "rgb(102,102,0)", "size": 3.7389054, "x": 178.42004, "y": -176.16869, "z": 0, "nansi-louvain": 4, "nansi-degree": 14 } }, { "key": "457", "attributes": { "label": "Terre Adelie", "nodedef": "n457", "occurrences": 11, "color": "rgb(255,204,102)", "size": 3.7195435, "x": 79.94074, "y": 26.22889, "z": 0, "nansi-louvain": 19, "nansi-degree": 13 } }, { "key": "458", "attributes": { "label": "Protection De La Nature", "nodedef": "n458", "occurrences": 8, "color": "rgb(153,255,0)", "size": 3.701466, "x": 69.823006, "y": -161.99498, "z": 0, "nansi-louvain": 14, "nansi-degree": 12 } }, { "key": "459", "attributes": { "label": "Bilan Radiatif", "nodedef": "n459", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 124.07555, "y": -81.07613, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "460", "attributes": { "label": "Circulation Atmosphérique", "nodedef": "n460", "occurrences": 7, "color": "rgb(255,255,51)", "size": 3.7595146, "x": 147.71547, "y": -42.991055, "z": 0, "nansi-louvain": 9, "nansi-degree": 15 } }, { "key": "461", "attributes": { "label": "Forcage Radiatif", "nodedef": "n461", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6847134, "x": 92.26332, "y": -88.31502, "z": 0, "nansi-louvain": 9, "nansi-degree": 11 } }, { "key": "462", "attributes": { "label": "Biogeochemical Cycle", "nodedef": "n462", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6223197, "x": -78.27921, "y": 125.217575, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "463", "attributes": { "label": "Fossil Fuel", "nodedef": "n463", "occurrences": 21, "color": "rgb(0,153,0)", "size": 4.058827, "x": -74.39737, "y": 120.56222, "z": 0, "nansi-louvain": 7, "nansi-degree": 26 } }, { "key": "464", "attributes": { "label": "Living Organism", "nodedef": "n464", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6036906, "x": -99.77965, "y": 104.11883, "z": 0, "nansi-louvain": 7, "nansi-degree": 3 } }, { "key": "465", "attributes": { "label": "Carbon Cycle", "nodedef": "n465", "occurrences": 5, "color": "rgb(102,255,102)", "size": 3.655348, "x": -60.68, "y": 141.0575, "z": 0, "nansi-louvain": 7, "nansi-degree": 9 } }, { "key": "466", "attributes": { "label": "Biological Invasions", "nodedef": "n466", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6036906, "x": -32.00605, "y": -54.659523, "z": 0, "nansi-louvain": 9, "nansi-degree": 3 } }, { "key": "467", "attributes": { "label": "Invasive Species", "nodedef": "n467", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.600933, "x": -4.4008265, "y": -87.570435, "z": 0, "nansi-louvain": 9, "nansi-degree": 2 } }, { "key": "468", "attributes": { "label": "Biologie Marine", "nodedef": "n468", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 122.780975, "y": -67.55721, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "469", "attributes": { "label": "Histoire Naturelle", "nodedef": "n469", "occurrences": 10, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 79.07554, "y": -61.151848, "z": 0, "nansi-louvain": 17, "nansi-degree": 10 } }, { "key": "470", "attributes": { "label": "Biomes Of The World", "nodedef": "n470", "occurrences": 3, "color": "rgb(204,204,255)", "size": 3.600933, "x": -108.79275, "y": 255.31097, "z": 0, "nansi-louvain": 10, "nansi-degree": 2 } }, { "key": "471", "attributes": { "label": "Boreal Forest", "nodedef": "n471", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -102.65517, "y": 238.57388, "z": 0, "nansi-louvain": 10, "nansi-degree": 6 } }, { "key": "472", "attributes": { "label": "Biosphère", "nodedef": "n472", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6428227, "x": -109.00426, "y": 152.46007, "z": 0, "nansi-louvain": 7, "nansi-degree": 8 } }, { "key": "473", "attributes": { "label": "Unesco Biosphere", "nodedef": "n473", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -141.73677, "y": 173.09775, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "474", "attributes": { "label": "World Biosphere", "nodedef": "n474", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -149.79973, "y": 170.54303, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "475", "attributes": { "label": "Biosphere Reserve", "nodedef": "n475", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -137.85042, "y": 168.1342, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "476", "attributes": { "label": "Biosphere Programme", "nodedef": "n476", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6317973, "x": -81.51529, "y": 165.39622, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "477", "attributes": { "label": "International Geosphere", "nodedef": "n477", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6144404, "x": -66.293274, "y": 162.98517, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "478", "attributes": { "label": "Birds Of North", "nodedef": "n478", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6, "x": -165.60274, "y": 124.96221, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "479", "attributes": { "label": "National Geographic", "nodedef": "n479", "occurrences": 8, "color": "rgb(153,255,0)", "size": 3.7195435, "x": -151.67918, "y": 122.74399, "z": 0, "nansi-louvain": 0, "nansi-degree": 13 } }, { "key": "480", "attributes": { "label": "Bloc Erratique", "nodedef": "n480", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6036906, "x": 48.372036, "y": -45.074894, "z": 0, "nansi-louvain": 3, "nansi-degree": 3 } }, { "key": "481", "attributes": { "label": "Bœuf Musqué", "nodedef": "n481", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6317973, "x": -28.002087, "y": -35.691505, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "482", "attributes": { "label": "Lièvre Arctique", "nodedef": "n482", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6428227, "x": -49.65462, "y": -45.55826, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "483", "attributes": { "label": "Loup Arctique", "nodedef": "n483", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6847134, "x": -21.950285, "y": -23.762115, "z": 0, "nansi-louvain": 3, "nansi-degree": 11 } }, { "key": "484", "attributes": { "label": "Régions Arctiques", "nodedef": "n484", "occurrences": 15, "color": "rgb(0,204,204)", "size": 3.9073772, "x": 5.922357, "y": -43.04267, "z": 0, "nansi-louvain": 3, "nansi-degree": 21 } }, { "key": "485", "attributes": { "label": "Canadian Boreal", "nodedef": "n485", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -86.50778, "y": 221.42963, "z": 0, "nansi-louvain": 10, "nansi-degree": 3 } }, { "key": "486", "attributes": { "label": "Far North", "nodedef": "n486", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -140.76205, "y": 225.08432, "z": 0, "nansi-louvain": 10, "nansi-degree": 5 } }, { "key": "487", "attributes": { "label": "Boreogadus Saida", "nodedef": "n487", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -45.21583, "y": 0.24102971, "z": 0, "nansi-louvain": 14, "nansi-degree": 4 } }, { "key": "488", "attributes": { "label": "Fisheries Research", "nodedef": "n488", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6036906, "x": -54.99161, "y": 97.23923, "z": 0, "nansi-louvain": 14, "nansi-degree": 3 } }, { "key": "489", "attributes": { "label": "Gadus Morhua", "nodedef": "n489", "occurrences": 5, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -29.022581, "y": -73.91799, "z": 0, "nansi-louvain": 14, "nansi-degree": 3 } }, { "key": "490", "attributes": { "label": "Boris Gryzlov", "nodedef": "n490", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -105.16471, "y": -75.2077, "z": 0, "nansi-louvain": 6, "nansi-degree": 3 } }, { "key": "491", "attributes": { "label": "Vladimir Putin", "nodedef": "n491", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.600933, "x": -170.36725, "y": -14.164149, "z": 0, "nansi-louvain": 6, "nansi-degree": 2 } }, { "key": "492", "attributes": { "label": "Bouclier Antimissile", "nodedef": "n492", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6317973, "x": -80.26435, "y": -133.6778, "z": 0, "nansi-louvain": 5, "nansi-degree": 7 } }, { "key": "493", "attributes": { "label": "Dmitri Medvedev", "nodedef": "n493", "occurrences": 8, "color": "rgb(255,51,51)", "size": 3.655348, "x": -81.48239, "y": -152.02992, "z": 0, "nansi-louvain": 5, "nansi-degree": 9 } }, { "key": "494", "attributes": { "label": "Missile Balistique", "nodedef": "n494", "occurrences": 7, "color": "rgb(255,51,51)", "size": 3.6317973, "x": 7.512925, "y": -73.08438, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "495", "attributes": { "label": "Vladimir Poutine", "nodedef": "n495", "occurrences": 15, "color": "rgb(255,51,51)", "size": 3.804327, "x": -77.317245, "y": -146.26772, "z": 0, "nansi-louvain": 5, "nansi-degree": 17 } }, { "key": "496", "attributes": { "label": "Bouclier Canadien", "nodedef": "n496", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6144404, "x": 33.3086, "y": -91.143616, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "497", "attributes": { "label": "Forêt Boréale", "nodedef": "n497", "occurrences": 8, "color": "rgb(0,153,0)", "size": 3.6693263, "x": -1.0352039, "y": -99.25935, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "498", "attributes": { "label": "Eau Douce", "nodedef": "n498", "occurrences": 38, "color": "rgb(102,255,102)", "size": 4.677367, "x": 97.88906, "y": -111.56336, "z": 0, "nansi-louvain": 4, "nansi-degree": 42 } }, { "key": "499", "attributes": { "label": "Brent Boddy", "nodedef": "n499", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6317973, "x": -6.490277, "y": 107.57498, "z": 0, "nansi-louvain": 8, "nansi-degree": 7 } }, { "key": "500", "attributes": { "label": "Richard Weber", "nodedef": "n500", "occurrences": 7, "color": "rgb(153,255,255)", "size": 3.6317973, "x": -29.691254, "y": 160.20241, "z": 0, "nansi-louvain": 18, "nansi-degree": 7 } }, { "key": "501", "attributes": { "label": "Brise-Glace Nucléaire", "nodedef": "n501", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.655348, "x": -1.7740644, "y": -66.14966, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "502", "attributes": { "label": "Plateau Continental", "nodedef": "n502", "occurrences": 22, "color": "rgb(102,255,102)", "size": 4.058827, "x": -4.913478, "y": -97.13884, "z": 0, "nansi-louvain": 5, "nansi-degree": 26 } }, { "key": "503", "attributes": { "label": "200 Metres", "nodedef": "n503", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6, "x": -16.09078, "y": -77.83837, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "504", "attributes": { "label": "Déchet Nucléaire", "nodedef": "n504", "occurrences": 12, "color": "rgb(102,102,0)", "size": 3.7595146, "x": 40.996166, "y": -180.05772, "z": 0, "nansi-louvain": 17, "nansi-degree": 15 } }, { "key": "505", "attributes": { "label": "Marine Russe", "nodedef": "n505", "occurrences": 9, "color": "rgb(255,51,51)", "size": 3.701466, "x": -58.521927, "y": -125.97707, "z": 0, "nansi-louvain": 5, "nansi-degree": 12 } }, { "key": "506", "attributes": { "label": "Brise-Glace Russe", "nodedef": "n506", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 33.7876, "y": -6.056961, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "507", "attributes": { "label": "Brume Légère", "nodedef": "n507", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6, "x": 218.01897, "y": -44.12393, "z": 0, "nansi-louvain": 1, "nansi-degree": 1 } }, { "key": "508", "attributes": { "label": "Jules Verne", "nodedef": "n508", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6036906, "x": 31.455957, "y": 68.274254, "z": 0, "nansi-louvain": 12, "nansi-degree": 3 } }, { "key": "509", "attributes": { "label": "Bulles De Gaz Emprisonnées", "nodedef": "n509", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6428227, "x": 121.70205, "y": -56.795902, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "510", "attributes": { "label": "Temps Géologique", "nodedef": "n510", "occurrences": 8, "color": "rgb(255,204,102)", "size": 3.6847134, "x": 156.57741, "y": -53.376427, "z": 0, "nansi-louvain": 1, "nansi-degree": 11 } }, { "key": "511", "attributes": { "label": "Variation Climatique", "nodedef": "n511", "occurrences": 12, "color": "rgb(255,204,102)", "size": 3.7389054, "x": 118.13572, "y": -62.619797, "z": 0, "nansi-louvain": 9, "nansi-degree": 14 } }, { "key": "512", "attributes": { "label": "Degre Celsius", "nodedef": "n512", "occurrences": 10, "color": "rgb(255,255,51)", "size": 3.655348, "x": 154.9319, "y": -33.536896, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "513", "attributes": { "label": "Pole Sud", "nodedef": "n513", "occurrences": 31, "color": "rgb(153,255,255)", "size": 4.3071337, "x": 56.75266, "y": 32.941185, "z": 0, "nansi-louvain": 3, "nansi-degree": 33 } }, { "key": "514", "attributes": { "label": "Calottes Glaciaires", "nodedef": "n514", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 87.61527, "y": -59.170044, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "515", "attributes": { "label": "Circulation Océanique", "nodedef": "n515", "occurrences": 17, "color": "rgb(255,255,51)", "size": 3.8800173, "x": 95.19509, "y": -40.297474, "z": 0, "nansi-louvain": 9, "nansi-degree": 20 } }, { "key": "516", "attributes": { "label": "Cambridge Bay", "nodedef": "n516", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -133.01428, "y": 142.89021, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "517", "attributes": { "label": "Government Of Nunavut", "nodedef": "n517", "occurrences": 6, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -156.54333, "y": 178.75804, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "518", "attributes": { "label": "Cambrien Moyen", "nodedef": "n518", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6082125, "x": 54.290367, "y": -98.53827, "z": 0, "nansi-louvain": 1, "nansi-degree": 4 } }, { "key": "519", "attributes": { "label": "Chaine Alimentaire", "nodedef": "n519", "occurrences": 14, "color": "rgb(153,255,0)", "size": 3.8537014, "x": 111.42585, "y": -150.45306, "z": 0, "nansi-louvain": 4, "nansi-degree": 19 } }, { "key": "520", "attributes": { "label": "Canada", "nodedef": "n520", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.600933, "x": -109.16078, "y": 73.91147, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "521", "attributes": { "label": "Council Of Canada", "nodedef": "n521", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.600933, "x": -111.80225, "y": 118.21503, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "522", "attributes": { "label": "Canada Lynx", "nodedef": "n522", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.600933, "x": -108.80483, "y": 274.54285, "z": 0, "nansi-louvain": 10, "nansi-degree": 2 } }, { "key": "523", "attributes": { "label": "Canadian Inuit", "nodedef": "n523", "occurrences": 6, "color": "rgb(204,204,255)", "size": 3.6847134, "x": -122.87207, "y": 240.34895, "z": 0, "nansi-louvain": 18, "nansi-degree": 11 } }, { "key": "524", "attributes": { "label": "Northern Quebec", "nodedef": "n524", "occurrences": 9, "color": "rgb(0,204,204)", "size": 3.6847134, "x": -135.48871, "y": 288.73755, "z": 0, "nansi-louvain": 18, "nansi-degree": 11 } }, { "key": "525", "attributes": { "label": "Cape Dorset", "nodedef": "n525", "occurrences": 7, "color": "rgb(0,204,204)", "size": 3.6428227, "x": -121.2565, "y": 168.41785, "z": 0, "nansi-louvain": 18, "nansi-degree": 8 } }, { "key": "526", "attributes": { "label": "Inuit Circumpolar", "nodedef": "n526", "occurrences": 5, "color": "rgb(204,204,255)", "size": 3.6847134, "x": -112.76871, "y": 235.5684, "z": 0, "nansi-louvain": 18, "nansi-degree": 11 } }, { "key": "527", "attributes": { "label": "Inuit Eskimo", "nodedef": "n527", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -123.93674, "y": 233.3654, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "528", "attributes": { "label": "Inuit People", "nodedef": "n528", "occurrences": 5, "color": "rgb(204,204,255)", "size": 3.6693263, "x": -121.5493, "y": 245.66493, "z": 0, "nansi-louvain": 18, "nansi-degree": 10 } }, { "key": "529", "attributes": { "label": "Canal De Suez", "nodedef": "n529", "occurrences": 2, "color": "rgb(204,0,0)", "size": 3.6082125, "x": -21.679745, "y": -261.7919, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "530", "attributes": { "label": "Ferdinand De Lesseps", "nodedef": "n530", "occurrences": 3, "color": "rgb(204,0,0)", "size": 3.600933, "x": -26.169043, "y": -274.80466, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "531", "attributes": { "label": "Voie Navigable", "nodedef": "n531", "occurrences": 5, "color": "rgb(153,0,0)", "size": 3.6036906, "x": 32.606987, "y": -251.5194, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "532", "attributes": { "label": "Cap Nord", "nodedef": "n532", "occurrences": 14, "color": "rgb(0,204,204)", "size": 3.9073772, "x": -75.42066, "y": -32.980324, "z": 0, "nansi-louvain": 3, "nansi-degree": 21 } }, { "key": "533", "attributes": { "label": "Soleil De Minuit", "nodedef": "n533", "occurrences": 16, "color": "rgb(0,204,204)", "size": 3.8537014, "x": -81.20916, "y": -41.334705, "z": 0, "nansi-louvain": 3, "nansi-degree": 19 } }, { "key": "534", "attributes": { "label": "Voyage Au Cap", "nodedef": "n534", "occurrences": 2, "color": "rgb(153,0,0)", "size": 3.600933, "x": -92.44086, "y": -30.962975, "z": 0, "nansi-louvain": 3, "nansi-degree": 2 } }, { "key": "535", "attributes": { "label": "Express Côtier", "nodedef": "n535", "occurrences": 8, "color": "rgb(0,204,204)", "size": 3.7389054, "x": -81.90167, "y": -23.537132, "z": 0, "nansi-louvain": 3, "nansi-degree": 14 } }, { "key": "536", "attributes": { "label": "Fjord Norvégien", "nodedef": "n536", "occurrences": 7, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -96.103615, "y": -33.41182, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "537", "attributes": { "label": "Iles Lofoten", "nodedef": "n537", "occurrences": 10, "color": "rgb(0,204,204)", "size": 3.7595146, "x": -88.36166, "y": -43.471027, "z": 0, "nansi-louvain": 3, "nansi-degree": 15 } }, { "key": "538", "attributes": { "label": "Océan Glacial Arctique", "nodedef": "n538", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6847134, "x": 7.9066005, "y": -23.902601, "z": 0, "nansi-louvain": 3, "nansi-degree": 11 } }, { "key": "539", "attributes": { "label": "Capacité Calorifique", "nodedef": "n539", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 305.32745, "y": -74.27046, "z": 0, "nansi-louvain": 1, "nansi-degree": 6 } }, { "key": "540", "attributes": { "label": "Energie Interne", "nodedef": "n540", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 308.9007, "y": -76.966675, "z": 0, "nansi-louvain": 1, "nansi-degree": 6 } }, { "key": "541", "attributes": { "label": "Gaz Parfait", "nodedef": "n541", "occurrences": 8, "color": "rgb(255,255,51)", "size": 3.7195435, "x": 284.47354, "y": -69.73749, "z": 0, "nansi-louvain": 1, "nansi-degree": 13 } }, { "key": "542", "attributes": { "label": "Capelan", "nodedef": "n542", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -105.11293, "y": 35.343567, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "543", "attributes": { "label": "Capitale De La Norvège", "nodedef": "n543", "occurrences": 6, "color": "rgb(153,0,0)", "size": 3.6693263, "x": -77.6244, "y": -35.901134, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "544", "attributes": { "label": "Sonde De Temperature", "nodedef": "n544", "occurrences": 5, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 249.72887, "y": -59.63564, "z": 0, "nansi-louvain": 1, "nansi-degree": 7 } }, { "key": "545", "attributes": { "label": "Cara", "nodedef": "n545", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -134.3509, "y": 28.420305, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "546", "attributes": { "label": "Radio Association", "nodedef": "n546", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6, "x": -149.70007, "y": 29.25913, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "547", "attributes": { "label": "Carbon Capture", "nodedef": "n547", "occurrences": 4, "color": "rgb(102,255,102)", "size": 3.6428227, "x": -75.19188, "y": 132.46771, "z": 0, "nansi-louvain": 7, "nansi-degree": 8 } }, { "key": "548", "attributes": { "label": "Carbon Sequestration", "nodedef": "n548", "occurrences": 4, "color": "rgb(102,255,102)", "size": 3.6317973, "x": -85.66309, "y": 138.82304, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "549", "attributes": { "label": "Co2 Emission", "nodedef": "n549", "occurrences": 8, "color": "rgb(102,255,102)", "size": 3.6693263, "x": -62.182003, "y": 112.9305, "z": 0, "nansi-louvain": 7, "nansi-degree": 10 } }, { "key": "550", "attributes": { "label": "Carburant Fossile", "nodedef": "n550", "occurrences": 2, "color": "rgb(0,153,0)", "size": 3.6223197, "x": 89.85036, "y": -123.73451, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "551", "attributes": { "label": "Caribou Des Bois", "nodedef": "n551", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6082125, "x": 14.196902, "y": -108.49593, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "552", "attributes": { "label": "Periode Interglaciaire", "nodedef": "n552", "occurrences": 8, "color": "rgb(255,255,51)", "size": 3.7595146, "x": 111.746704, "y": -54.35936, "z": 0, "nansi-louvain": 9, "nansi-degree": 15 } }, { "key": "553", "attributes": { "label": "Carottes De Glace", "nodedef": "n553", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 127.87867, "y": -65.40417, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "554", "attributes": { "label": "Echelle De Temps", "nodedef": "n554", "occurrences": 7, "color": "rgb(255,204,102)", "size": 3.6428227, "x": 161.02779, "y": -68.209656, "z": 0, "nansi-louvain": 1, "nansi-degree": 8 } }, { "key": "555", "attributes": { "label": "Histoire Géologique", "nodedef": "n555", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.6428227, "x": 131.2721, "y": -72.449196, "z": 0, "nansi-louvain": 1, "nansi-degree": 8 } }, { "key": "556", "attributes": { "label": "Information Géographique", "nodedef": "n556", "occurrences": 7, "color": "rgb(255,204,102)", "size": 3.655348, "x": 178.8051, "y": -130.62141, "z": 0, "nansi-louvain": 5, "nansi-degree": 9 } }, { "key": "557", "attributes": { "label": "Cartes", "nodedef": "n557", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": 168.77068, "y": -139.18716, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "558", "attributes": { "label": "Cartographier", "nodedef": "n558", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.600933, "x": 177.75119, "y": -136.54893, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "559", "attributes": { "label": "Eruption Volcanique", "nodedef": "n559", "occurrences": 5, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 169.27652, "y": -70.69856, "z": 0, "nansi-louvain": 19, "nansi-degree": 4 } }, { "key": "560", "attributes": { "label": "Cellule Photovoltaïque", "nodedef": "n560", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6144404, "x": 170.2312, "y": -99.51719, "z": 0, "nansi-louvain": 9, "nansi-degree": 5 } }, { "key": "561", "attributes": { "label": "Celsius Temperature", "nodedef": "n561", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 117.31124, "y": 285.03616, "z": 0, "nansi-louvain": 12, "nansi-degree": 7 } }, { "key": "562", "attributes": { "label": "Cendre Volcanique", "nodedef": "n562", "occurrences": 2, "color": "rgb(255,204,102)", "size": 3.600933, "x": 174.10703, "y": -60.8976, "z": 0, "nansi-louvain": 19, "nansi-degree": 2 } }, { "key": "563", "attributes": { "label": "Center For Coastal And Ocean Mapping", "nodedef": "n563", "occurrences": 1, "color": "rgb(255,153,153)", "size": 3.6036906, "x": 92.07818, "y": 202.96669, "z": 0, "nansi-louvain": 16, "nansi-degree": 3 } }, { "key": "564", "attributes": { "label": "Hydrographic Survey", "nodedef": "n564", "occurrences": 2, "color": "rgb(255,153,153)", "size": 3.600933, "x": 63.305996, "y": 194.14592, "z": 0, "nansi-louvain": 16, "nansi-degree": 2 } }, { "key": "565", "attributes": { "label": "Ocean Engineering", "nodedef": "n565", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 93.25121, "y": 174.13698, "z": 0, "nansi-louvain": 16, "nansi-degree": 3 } }, { "key": "566", "attributes": { "label": "Colin Ware", "nodedef": "n566", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6, "x": 100.08755, "y": 213.05421, "z": 0, "nansi-louvain": 16, "nansi-degree": 1 } }, { "key": "567", "attributes": { "label": "Gaz Naturel", "nodedef": "n567", "occurrences": 35, "color": "rgb(0,153,0)", "size": 4.633785, "x": 2.9591236, "y": -153.98979, "z": 0, "nansi-louvain": 9, "nansi-degree": 41 } }, { "key": "568", "attributes": { "label": "Dechet Radioactif", "nodedef": "n568", "occurrences": 12, "color": "rgb(102,102,0)", "size": 3.7813334, "x": 35.024815, "y": -177.86584, "z": 0, "nansi-louvain": 17, "nansi-degree": 16 } }, { "key": "569", "attributes": { "label": "Energie Nucléaire", "nodedef": "n569", "occurrences": 9, "color": "rgb(0,153,0)", "size": 3.7389054, "x": 28.33479, "y": -152.03627, "z": 0, "nansi-louvain": 17, "nansi-degree": 14 } }, { "key": "570", "attributes": { "label": "Centre National", "nodedef": "n570", "occurrences": 11, "color": "rgb(255,204,102)", "size": 3.701466, "x": 146.29778, "y": -60.730835, "z": 0, "nansi-louvain": 17, "nansi-degree": 12 } }, { "key": "571", "attributes": { "label": "Recherche Scientifique", "nodedef": "n571", "occurrences": 15, "color": "rgb(255,204,102)", "size": 3.7595146, "x": 156.01476, "y": -58.419464, "z": 0, "nansi-louvain": 17, "nansi-degree": 15 } }, { "key": "572", "attributes": { "label": "Fusee Ariane", "nodedef": "n572", "occurrences": 2, "color": "rgb(255,153,153)", "size": 3.6036906, "x": 102.06293, "y": 100.38955, "z": 0, "nansi-louvain": 12, "nansi-degree": 3 } }, { "key": "573", "attributes": { "label": "Cercle Arctique", "nodedef": "n573", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6847134, "x": -12.648043, "y": -26.292545, "z": 0, "nansi-louvain": 3, "nansi-degree": 11 } }, { "key": "574", "attributes": { "label": "Cercle Polaire Arctique", "nodedef": "n574", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6693263, "x": -28.144634, "y": 12.571481, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "575", "attributes": { "label": "Najwa Nimri", "nodedef": "n575", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6, "x": -59.646294, "y": -40.818794, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "576", "attributes": { "label": "Êtres Vivants", "nodedef": "n576", "occurrences": 11, "color": "rgb(153,255,0)", "size": 3.7195435, "x": 138.45549, "y": -163.0018, "z": 0, "nansi-louvain": 4, "nansi-degree": 13 } }, { "key": "577", "attributes": { "label": "Niveau Trophique", "nodedef": "n577", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.701466, "x": 120.211754, "y": -176.06378, "z": 0, "nansi-louvain": 4, "nansi-degree": 12 } }, { "key": "578", "attributes": { "label": "Reseau Trophique", "nodedef": "n578", "occurrences": 6, "color": "rgb(153,255,0)", "size": 3.701466, "x": 119.82963, "y": -178.5241, "z": 0, "nansi-louvain": 4, "nansi-degree": 12 } }, { "key": "579", "attributes": { "label": "Securite Alimentaire", "nodedef": "n579", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6223197, "x": 40.803635, "y": -169.41653, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "580", "attributes": { "label": "Chaîne Trophique", "nodedef": "n580", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.701466, "x": 135.82802, "y": -180.91064, "z": 0, "nansi-louvain": 4, "nansi-degree": 12 } }, { "key": "581", "attributes": { "label": "Milieu Aquatique", "nodedef": "n581", "occurrences": 8, "color": "rgb(153,255,0)", "size": 3.6847134, "x": 126.25013, "y": -166.03941, "z": 0, "nansi-louvain": 4, "nansi-degree": 11 } }, { "key": "582", "attributes": { "label": "Organisme Vivant", "nodedef": "n582", "occurrences": 7, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 163.0502, "y": -155.2352, "z": 0, "nansi-louvain": 4, "nansi-degree": 7 } }, { "key": "583", "attributes": { "label": "Chaînes Alimentaires", "nodedef": "n583", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.655348, "x": 124.482956, "y": -171.32698, "z": 0, "nansi-louvain": 4, "nansi-degree": 9 } }, { "key": "584", "attributes": { "label": "Plantes Vertes", "nodedef": "n584", "occurrences": 4, "color": "rgb(102,102,0)", "size": 3.6036906, "x": 151.08374, "y": -186.69221, "z": 0, "nansi-louvain": 4, "nansi-degree": 3 } }, { "key": "585", "attributes": { "label": "Regime Alimentaire", "nodedef": "n585", "occurrences": 8, "color": "rgb(153,255,0)", "size": 3.6428227, "x": 21.273415, "y": -137.66597, "z": 0, "nansi-louvain": 14, "nansi-degree": 8 } }, { "key": "586", "attributes": { "label": "Champ", "nodedef": "n586", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -101.39203, "y": 26.05654, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "587", "attributes": { "label": "Champ Magnetique Terrestre", "nodedef": "n587", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6693263, "x": 66.58705, "y": 65.671875, "z": 0, "nansi-louvain": 8, "nansi-degree": 10 } }, { "key": "588", "attributes": { "label": "Effet Dynamo", "nodedef": "n588", "occurrences": 2, "color": "rgb(255,153,153)", "size": 3.6036906, "x": 103.922295, "y": 55.75887, "z": 0, "nansi-louvain": 8, "nansi-degree": 3 } }, { "key": "589", "attributes": { "label": "Déclinaison Magnétique", "nodedef": "n589", "occurrences": 8, "color": "rgb(153,255,255)", "size": 3.7389054, "x": 67.63762, "y": 57.953472, "z": 0, "nansi-louvain": 8, "nansi-degree": 14 } }, { "key": "590", "attributes": { "label": "Pole Geographique", "nodedef": "n590", "occurrences": 5, "color": "rgb(153,255,255)", "size": 3.7195435, "x": 70.528145, "y": 52.676525, "z": 0, "nansi-louvain": 8, "nansi-degree": 13 } }, { "key": "591", "attributes": { "label": "Climate Change", "nodedef": "n591", "occurrences": 13, "color": "rgb(102,255,102)", "size": 3.7595146, "x": 61.9745, "y": -26.363234, "z": 0, "nansi-louvain": 9, "nansi-degree": 15 } }, { "key": "592", "attributes": { "label": "Pays Industrialise", "nodedef": "n592", "occurrences": 9, "color": "rgb(0,153,0)", "size": 3.701466, "x": 61.88606, "y": -135.06197, "z": 0, "nansi-louvain": 9, "nansi-degree": 12 } }, { "key": "593", "attributes": { "label": "Changement Climatique Global", "nodedef": "n593", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 65.21751, "y": -56.626457, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "594", "attributes": { "label": "Periode Geologique", "nodedef": "n594", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.6428227, "x": 128.1124, "y": -24.041624, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "595", "attributes": { "label": "Changements Climatiques", "nodedef": "n595", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6693263, "x": 60.694916, "y": -86.49017, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "596", "attributes": { "label": "Charge De Recherche", "nodedef": "n596", "occurrences": 5, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 183.62527, "y": -90.0684, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "597", "attributes": { "label": "Chauffage Solaire", "nodedef": "n597", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.655348, "x": 137.78467, "y": -101.37691, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "598", "attributes": { "label": "Eau Chaude", "nodedef": "n598", "occurrences": 17, "color": "rgb(255,204,102)", "size": 3.8537014, "x": 143.46294, "y": -109.080345, "z": 0, "nansi-louvain": 9, "nansi-degree": 19 } }, { "key": "599", "attributes": { "label": "Chef De Gouvernement", "nodedef": "n599", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.600933, "x": -70.43985, "y": -149.25372, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "600", "attributes": { "label": "Chien De Traineau", "nodedef": "n600", "occurrences": 15, "color": "rgb(204,204,255)", "size": 3.7813334, "x": -78.47189, "y": -56.950916, "z": 0, "nansi-louvain": 3, "nansi-degree": 16 } }, { "key": "601", "attributes": { "label": "Chiens", "nodedef": "n601", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6, "x": -96.5703, "y": -61.418472, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "602", "attributes": { "label": "Christophe Colomb", "nodedef": "n602", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.600933, "x": -53.56652, "y": -85.56801, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "603", "attributes": { "label": "Continent Américain", "nodedef": "n603", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6317973, "x": -56.446632, "y": -50.51715, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "604", "attributes": { "label": "Chtokman", "nodedef": "n604", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6317973, "x": -63.945625, "y": -136.74088, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "605", "attributes": { "label": "Gisement De Chtokman", "nodedef": "n605", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.6428227, "x": -83.6301, "y": -125.250694, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "606", "attributes": { "label": "Groupe Pétrolier", "nodedef": "n606", "occurrences": 10, "color": "rgb(102,0,102)", "size": 3.7195435, "x": -44.222153, "y": -173.88199, "z": 0, "nansi-louvain": 15, "nansi-degree": 13 } }, { "key": "607", "attributes": { "label": "Courant Marin", "nodedef": "n607", "occurrences": 24, "color": "rgb(255,204,102)", "size": 4.125738, "x": 64.52222, "y": -47.272095, "z": 0, "nansi-louvain": 3, "nansi-degree": 28 } }, { "key": "608", "attributes": { "label": "Courant Océanique", "nodedef": "n608", "occurrences": 10, "color": "rgb(255,204,102)", "size": 3.7813334, "x": 90.229805, "y": -48.753513, "z": 0, "nansi-louvain": 9, "nansi-degree": 16 } }, { "key": "609", "attributes": { "label": "Gradient De Pression", "nodedef": "n609", "occurrences": 6, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 188.77667, "y": -37.280792, "z": 0, "nansi-louvain": 1, "nansi-degree": 7 } }, { "key": "610", "attributes": { "label": "Circulation Thermohaline", "nodedef": "n610", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.6428227, "x": 63.18314, "y": -28.778925, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "611", "attributes": { "label": "Circulation Océanique Mondiale", "nodedef": "n611", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.655348, "x": 59.19115, "y": -42.595802, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "612", "attributes": { "label": "Circum-Arctic Resource Appraisal", "nodedef": "n612", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -153.85434, "y": 146.04613, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "613", "attributes": { "label": "East Greenland", "nodedef": "n613", "occurrences": 7, "color": "rgb(0,204,204)", "size": 3.6693263, "x": -102.59778, "y": 169.49907, "z": 0, "nansi-louvain": 18, "nansi-degree": 10 } }, { "key": "614", "attributes": { "label": "Geologic Province", "nodedef": "n614", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.600933, "x": -107.94266, "y": 129.07162, "z": 0, "nansi-louvain": 7, "nansi-degree": 2 } }, { "key": "615", "attributes": { "label": "Natural Gas Liquids", "nodedef": "n615", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.6082125, "x": -219.55466, "y": 95.46819, "z": 0, "nansi-louvain": 6, "nansi-degree": 4 } }, { "key": "616", "attributes": { "label": "West Siberian", "nodedef": "n616", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -93.18664, "y": 153.60341, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "617", "attributes": { "label": "Circumpolar Conference", "nodedef": "n617", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6428227, "x": -114.674805, "y": 222.73817, "z": 0, "nansi-louvain": 18, "nansi-degree": 8 } }, { "key": "618", "attributes": { "label": "Indigenous Peoples", "nodedef": "n618", "occurrences": 15, "color": "rgb(204,204,255)", "size": 3.7389054, "x": -181.57336, "y": 245.0985, "z": 0, "nansi-louvain": 10, "nansi-degree": 14 } }, { "key": "619", "attributes": { "label": "Sheila Watt", "nodedef": "n619", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.655348, "x": -100.223885, "y": 212.74124, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "620", "attributes": { "label": "Cirque Glaciaire", "nodedef": "n620", "occurrences": 2, "color": "rgb(204,204,255)", "size": 3.6, "x": -45.143333, "y": -73.075485, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "621", "attributes": { "label": "Magnetic Pole", "nodedef": "n621", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.655348, "x": -6.8819118, "y": 166.684, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "622", "attributes": { "label": "North Magnetic", "nodedef": "n622", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6317973, "x": -1.3557836, "y": 162.19028, "z": 0, "nansi-louvain": 18, "nansi-degree": 7 } }, { "key": "623", "attributes": { "label": "Classification Périodique", "nodedef": "n623", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.600933, "x": 179.78976, "y": -165.062, "z": 0, "nansi-louvain": 1, "nansi-degree": 2 } }, { "key": "624", "attributes": { "label": "Element Chimique", "nodedef": "n624", "occurrences": 6, "color": "rgb(102,102,0)", "size": 3.6317973, "x": 146.63463, "y": -144.42465, "z": 0, "nansi-louvain": 1, "nansi-degree": 7 } }, { "key": "625", "attributes": { "label": "Clathrates", "nodedef": "n625", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6428227, "x": -29.898321, "y": 148.09604, "z": 0, "nansi-louvain": 7, "nansi-degree": 8 } }, { "key": "626", "attributes": { "label": "Ice Cores", "nodedef": "n626", "occurrences": 14, "color": "rgb(153,255,255)", "size": 3.8284607, "x": -16.643745, "y": 169.29863, "z": 0, "nansi-louvain": 7, "nansi-degree": 18 } }, { "key": "627", "attributes": { "label": "Liquid Water", "nodedef": "n627", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 83.79232, "y": 159.21884, "z": 0, "nansi-louvain": 12, "nansi-degree": 4 } }, { "key": "628", "attributes": { "label": "Methane Hydrate", "nodedef": "n628", "occurrences": 5, "color": "rgb(102,255,102)", "size": 3.701466, "x": -73.30065, "y": 143.46008, "z": 0, "nansi-louvain": 7, "nansi-degree": 12 } }, { "key": "629", "attributes": { "label": "Gas Hydrates", "nodedef": "n629", "occurrences": 3, "color": "rgb(0,153,0)", "size": 3.6223197, "x": -57.256115, "y": 145.84, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "630", "attributes": { "label": "Claude Bourguignon", "nodedef": "n630", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 183.0097, "y": -144.28722, "z": 0, "nansi-louvain": 4, "nansi-degree": 3 } }, { "key": "631", "attributes": { "label": "Claude Gascard", "nodedef": "n631", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6847134, "x": 42.57959, "y": -19.2765, "z": 0, "nansi-louvain": 3, "nansi-degree": 11 } }, { "key": "632", "attributes": { "label": "Environmental Studies", "nodedef": "n632", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6036906, "x": 33.5256, "y": -23.761608, "z": 0, "nansi-louvain": 3, "nansi-degree": 3 } }, { "key": "633", "attributes": { "label": "Climat", "nodedef": "n633", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.655348, "x": 68.44751, "y": -44.9711, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "634", "attributes": { "label": "Climat Polaire", "nodedef": "n634", "occurrences": 8, "color": "rgb(153,255,255)", "size": 3.655348, "x": 25.25794, "y": -19.810629, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "635", "attributes": { "label": "Nobel De La Paix", "nodedef": "n635", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 71.01096, "y": -40.280216, "z": 0, "nansi-louvain": 9, "nansi-degree": 5 } }, { "key": "636", "attributes": { "label": "Hemisphere Sud", "nodedef": "n636", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 108.98824, "y": -11.219891, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "637", "attributes": { "label": "Climate Variation", "nodedef": "n637", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6082125, "x": -21.794317, "y": 137.74098, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "638", "attributes": { "label": "Greenland Ice", "nodedef": "n638", "occurrences": 11, "color": "rgb(153,255,255)", "size": 3.701466, "x": -13.990662, "y": 164.3936, "z": 0, "nansi-louvain": 7, "nansi-degree": 12 } }, { "key": "639", "attributes": { "label": "Climatologie", "nodedef": "n639", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.655348, "x": 150.00949, "y": -70.709, "z": 0, "nansi-louvain": 1, "nansi-degree": 9 } }, { "key": "640", "attributes": { "label": "Prévision Météorologique", "nodedef": "n640", "occurrences": 7, "color": "rgb(255,204,102)", "size": 3.6847134, "x": 181.14847, "y": -82.1311, "z": 0, "nansi-louvain": 1, "nansi-degree": 11 } }, { "key": "641", "attributes": { "label": "Prévisions Météo", "nodedef": "n641", "occurrences": 9, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 196.87547, "y": -63.339222, "z": 0, "nansi-louvain": 1, "nansi-degree": 10 } }, { "key": "642", "attributes": { "label": "Station Météo", "nodedef": "n642", "occurrences": 7, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 206.01726, "y": -70.63429, "z": 0, "nansi-louvain": 1, "nansi-degree": 7 } }, { "key": "643", "attributes": { "label": "Club De Rome", "nodedef": "n643", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6317973, "x": 68.38774, "y": -150.69373, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "644", "attributes": { "label": "Croissance Démographique", "nodedef": "n644", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6317973, "x": 70.876884, "y": -195.29323, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "645", "attributes": { "label": "Croissance Economique", "nodedef": "n645", "occurrences": 9, "color": "rgb(153,0,0)", "size": 3.6847134, "x": 51.89487, "y": -184.3356, "z": 0, "nansi-louvain": 9, "nansi-degree": 11 } }, { "key": "646", "attributes": { "label": "Ecole Polytechnique", "nodedef": "n646", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 218.69693, "y": 19.090603, "z": 0, "nansi-louvain": 17, "nansi-degree": 5 } }, { "key": "647", "attributes": { "label": "Laboratoire De Physique", "nodedef": "n647", "occurrences": 10, "color": "rgb(255,255,51)", "size": 3.6693263, "x": 180.03604, "y": 12.186318, "z": 0, "nansi-louvain": 17, "nansi-degree": 10 } }, { "key": "648", "attributes": { "label": "Universite De Paris", "nodedef": "n648", "occurrences": 11, "color": "rgb(255,255,51)", "size": 3.655348, "x": 197.60924, "y": -12.900554, "z": 0, "nansi-louvain": 17, "nansi-degree": 9 } }, { "key": "649", "attributes": { "label": "Co2 Sequestration", "nodedef": "n649", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6223197, "x": -75.34734, "y": 136.3035, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "650", "attributes": { "label": "Coastal Erosion", "nodedef": "n650", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6144404, "x": -23.242178, "y": 111.104935, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "651", "attributes": { "label": "Commission Océanographique Intergouvernementale", "nodedef": "n651", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6144404, "x": 47.75137, "y": -63.802376, "z": 0, "nansi-louvain": 9, "nansi-degree": 5 } }, { "key": "652", "attributes": { "label": "Communication Satellite", "nodedef": "n652", "occurrences": 6, "color": "rgb(255,153,153)", "size": 3.6223197, "x": 4.4652705, "y": 271.67856, "z": 0, "nansi-louvain": 12, "nansi-degree": 6 } }, { "key": "653", "attributes": { "label": "Geostationary Satellite", "nodedef": "n653", "occurrences": 7, "color": "rgb(255,153,153)", "size": 3.6693263, "x": 30.339075, "y": 260.11758, "z": 0, "nansi-louvain": 12, "nansi-degree": 10 } }, { "key": "654", "attributes": { "label": "Industrie Pétrolière", "nodedef": "n654", "occurrences": 8, "color": "rgb(102,0,102)", "size": 3.701466, "x": -35.310726, "y": -192.59389, "z": 0, "nansi-louvain": 15, "nansi-degree": 12 } }, { "key": "655", "attributes": { "label": "Plateforme Pétrolière", "nodedef": "n655", "occurrences": 4, "color": "rgb(102,0,102)", "size": 3.600933, "x": -28.452824, "y": -203.25288, "z": 0, "nansi-louvain": 15, "nansi-degree": 2 } }, { "key": "656", "attributes": { "label": "Produits Pétroliers", "nodedef": "n656", "occurrences": 9, "color": "rgb(102,0,102)", "size": 3.701466, "x": -35.850243, "y": -181.70802, "z": 0, "nansi-louvain": 15, "nansi-degree": 12 } }, { "key": "657", "attributes": { "label": "Secteur Pétrolier", "nodedef": "n657", "occurrences": 5, "color": "rgb(102,0,102)", "size": 3.6847134, "x": -39.70909, "y": -190.51521, "z": 0, "nansi-louvain": 15, "nansi-degree": 11 } }, { "key": "658", "attributes": { "label": "Comportement Mécanique", "nodedef": "n658", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 291.40973, "y": 39.50002, "z": 0, "nansi-louvain": 17, "nansi-degree": 6 } }, { "key": "659", "attributes": { "label": "Loi De Comportement", "nodedef": "n659", "occurrences": 5, "color": "rgb(255,255,0)", "size": 3.6144404, "x": 280.96048, "y": 27.984623, "z": 0, "nansi-louvain": 17, "nansi-degree": 5 } }, { "key": "660", "attributes": { "label": "Mécanique Des Solides", "nodedef": "n660", "occurrences": 4, "color": "rgb(255,255,0)", "size": 3.6428227, "x": 297.48953, "y": 49.26788, "z": 0, "nansi-louvain": 17, "nansi-degree": 8 } }, { "key": "661", "attributes": { "label": "Simulation Numérique", "nodedef": "n661", "occurrences": 7, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 251.70052, "y": 24.584482, "z": 0, "nansi-louvain": 17, "nansi-degree": 7 } }, { "key": "662", "attributes": { "label": "Genie Civil", "nodedef": "n662", "occurrences": 9, "color": "rgb(255,255,51)", "size": 3.655348, "x": 284.4446, "y": 53.241592, "z": 0, "nansi-louvain": 17, "nansi-degree": 9 } }, { "key": "663", "attributes": { "label": "Genie Mecanique", "nodedef": "n663", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 292.59305, "y": 46.572163, "z": 0, "nansi-louvain": 17, "nansi-degree": 7 } }, { "key": "664", "attributes": { "label": "Laboratoire De Mécanique", "nodedef": "n664", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 284.58737, "y": 44.16256, "z": 0, "nansi-louvain": 17, "nansi-degree": 8 } }, { "key": "665", "attributes": { "label": "Comportement Mécanique Du Matériau Glace", "nodedef": "n665", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 96.18807, "y": 19.526917, "z": 0, "nansi-louvain": 19, "nansi-degree": 8 } }, { "key": "666", "attributes": { "label": "Instrument Scientifique", "nodedef": "n666", "occurrences": 7, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 123.26934, "y": 26.738035, "z": 0, "nansi-louvain": 19, "nansi-degree": 6 } }, { "key": "667", "attributes": { "label": "James Forbes", "nodedef": "n667", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 68.663956, "y": 28.16849, "z": 0, "nansi-louvain": 19, "nansi-degree": 5 } }, { "key": "668", "attributes": { "label": "Compose Organique", "nodedef": "n668", "occurrences": 9, "color": "rgb(102,102,0)", "size": 3.6693263, "x": 138.37418, "y": -193.36118, "z": 0, "nansi-louvain": 4, "nansi-degree": 10 } }, { "key": "669", "attributes": { "label": "Compose Organique Volatil", "nodedef": "n669", "occurrences": 4, "color": "rgb(102,102,0)", "size": 3.6144404, "x": 154.13136, "y": -171.27144, "z": 0, "nansi-louvain": 4, "nansi-degree": 5 } }, { "key": "670", "attributes": { "label": "Compréhension Du Système Climatique", "nodedef": "n670", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6144404, "x": 86.59361, "y": -93.225235, "z": 0, "nansi-louvain": 9, "nansi-degree": 5 } }, { "key": "671", "attributes": { "label": "Concentration Atmosphérique En Gaz À Effet De Serre", "nodedef": "n671", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6144404, "x": 119.98044, "y": -130.01036, "z": 0, "nansi-louvain": 9, "nansi-degree": 5 } }, { "key": "672", "attributes": { "label": "Puits De Carbone", "nodedef": "n672", "occurrences": 2, "color": "rgb(0,153,0)", "size": 3.6693263, "x": 102.57844, "y": -104.6321, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "673", "attributes": { "label": "Condensat De Bose-Einstein", "nodedef": "n673", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 185.84184, "y": 9.17875, "z": 0, "nansi-louvain": 1, "nansi-degree": 5 } }, { "key": "674", "attributes": { "label": "Laboratoire Kastler", "nodedef": "n674", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 193.35065, "y": 7.273209, "z": 0, "nansi-louvain": 1, "nansi-degree": 3 } }, { "key": "675", "attributes": { "label": "Zero Absolu", "nodedef": "n675", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 132.00774, "y": 56.533424, "z": 0, "nansi-louvain": 12, "nansi-degree": 5 } }, { "key": "676", "attributes": { "label": "Condensats", "nodedef": "n676", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 163.05983, "y": -22.032373, "z": 0, "nansi-louvain": 1, "nansi-degree": 4 } }, { "key": "677", "attributes": { "label": "Conditions Extrêmes", "nodedef": "n677", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6223197, "x": 153.34976, "y": -89.00495, "z": 0, "nansi-louvain": 4, "nansi-degree": 6 } }, { "key": "678", "attributes": { "label": "Lost Planet", "nodedef": "n678", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6, "x": 166.53304, "y": -92.36742, "z": 0, "nansi-louvain": 4, "nansi-degree": 1 } }, { "key": "679", "attributes": { "label": "Natural Repair", "nodedef": "n679", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6, "x": 172.51678, "y": -97.0645, "z": 0, "nansi-louvain": 4, "nansi-degree": 1 } }, { "key": "680", "attributes": { "label": "Rayonnement Ultraviolet", "nodedef": "n680", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6, "x": 167.13646, "y": -94.52675, "z": 0, "nansi-louvain": 4, "nansi-degree": 1 } }, { "key": "681", "attributes": { "label": "Conditions Météorologiques", "nodedef": "n681", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 161.91292, "y": -84.59136, "z": 0, "nansi-louvain": 1, "nansi-degree": 7 } }, { "key": "682", "attributes": { "label": "Station Météorologique", "nodedef": "n682", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6223197, "x": 196.75195, "y": -79.57893, "z": 0, "nansi-louvain": 1, "nansi-degree": 6 } }, { "key": "683", "attributes": { "label": "Convention De Varsovie", "nodedef": "n683", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6036906, "x": 19.341225, "y": -98.78386, "z": 0, "nansi-louvain": 3, "nansi-degree": 3 } }, { "key": "684", "attributes": { "label": "Conférence", "nodedef": "n684", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6082125, "x": -121.83492, "y": 68.741585, "z": 0, "nansi-louvain": 0, "nansi-degree": 4 } }, { "key": "685", "attributes": { "label": "International Conference", "nodedef": "n685", "occurrences": 5, "color": "rgb(102,255,102)", "size": 3.6082125, "x": -111.7804, "y": 92.667305, "z": 0, "nansi-louvain": 0, "nansi-degree": 4 } }, { "key": "686", "attributes": { "label": "Technology Conference", "nodedef": "n686", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.600933, "x": -127.51585, "y": 82.27467, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "687", "attributes": { "label": "Conférence De Rio", "nodedef": "n687", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.655348, "x": 42.016724, "y": -125.41207, "z": 0, "nansi-louvain": 13, "nansi-degree": 9 } }, { "key": "688", "attributes": { "label": "Déclaration De Rio", "nodedef": "n688", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6317973, "x": 66.14435, "y": -116.24796, "z": 0, "nansi-louvain": 13, "nansi-degree": 7 } }, { "key": "689", "attributes": { "label": "Sommet De La Terre", "nodedef": "n689", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6317973, "x": 30.042974, "y": -106.18135, "z": 0, "nansi-louvain": 13, "nansi-degree": 7 } }, { "key": "690", "attributes": { "label": "Conference On Environment", "nodedef": "n690", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6144404, "x": -79.69603, "y": 78.79561, "z": 0, "nansi-louvain": 13, "nansi-degree": 5 } }, { "key": "691", "attributes": { "label": "Conflits", "nodedef": "n691", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6317973, "x": -50.0983, "y": -146.80722, "z": 0, "nansi-louvain": 5, "nansi-degree": 7 } }, { "key": "692", "attributes": { "label": "Resolution De Conflit", "nodedef": "n692", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.600933, "x": -87.15796, "y": -66.38087, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "693", "attributes": { "label": "Connaissance Scientifique", "nodedef": "n693", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 119.41061, "y": -111.399635, "z": 0, "nansi-louvain": 17, "nansi-degree": 7 } }, { "key": "694", "attributes": { "label": "Conseil De L'Arctique,1", "nodedef": "n694", "color": "rgb(255,51,51)", "size": 3.6693263, "x": -9.385765, "y": -54.80676, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "695", "attributes": { "label": "Peuple Autochtone", "nodedef": "n695", "occurrences": 7, "color": "rgb(204,204,255)", "size": 3.6693263, "x": -26.057545, "y": -50.27682, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "696", "attributes": { "label": "Conservation De La Nature", "nodedef": "n696", "occurrences": 6, "color": "rgb(153,255,0)", "size": 3.6847134, "x": 36.766163, "y": -127.91372, "z": 0, "nansi-louvain": 14, "nansi-degree": 11 } }, { "key": "697", "attributes": { "label": "Reserve Naturelle", "nodedef": "n697", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6428227, "x": 46.828514, "y": -175.52783, "z": 0, "nansi-louvain": 14, "nansi-degree": 8 } }, { "key": "698", "attributes": { "label": "Union Internationale", "nodedef": "n698", "occurrences": 9, "color": "rgb(102,255,102)", "size": 3.6428227, "x": 61.430122, "y": -103.13128, "z": 0, "nansi-louvain": 14, "nansi-degree": 8 } }, { "key": "699", "attributes": { "label": "Consommation", "nodedef": "n699", "occurrences": 1, "color": "rgb(204,0,0)", "size": 3.6, "x": -408.40356, "y": -139.17337, "z": 0, "nansi-louvain": 21, "nansi-degree": 1 } }, { "key": "700", "attributes": { "label": "Centre Technique Régional", "nodedef": "n700", "occurrences": 2, "color": "rgb(204,0,0)", "size": 3.6, "x": -407.43222, "y": -141.89677, "z": 0, "nansi-louvain": 21, "nansi-degree": 1 } }, { "key": "701", "attributes": { "label": "Constante Des Gaz Parfaits", "nodedef": "n701", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.655348, "x": 299.32526, "y": -80.733116, "z": 0, "nansi-louvain": 1, "nansi-degree": 9 } }, { "key": "702", "attributes": { "label": "Loi De Mariotte", "nodedef": "n702", "occurrences": 8, "color": "rgb(255,204,102)", "size": 3.655348, "x": 252.27394, "y": -67.76462, "z": 0, "nansi-louvain": 1, "nansi-degree": 9 } }, { "key": "703", "attributes": { "label": "Loi Des Gaz Parfaits", "nodedef": "n703", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6693263, "x": 290.0505, "y": -78.54428, "z": 0, "nansi-louvain": 1, "nansi-degree": 10 } }, { "key": "704", "attributes": { "label": "Volume Molaire", "nodedef": "n704", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 278.51328, "y": -84.197205, "z": 0, "nansi-louvain": 1, "nansi-degree": 8 } }, { "key": "705", "attributes": { "label": "Contamination Radioactive", "nodedef": "n705", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.600933, "x": -59.63734, "y": -109.43337, "z": 0, "nansi-louvain": 20, "nansi-degree": 2 } }, { "key": "706", "attributes": { "label": "Convention De Bâle", "nodedef": "n706", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.6317973, "x": 40.26651, "y": -211.08865, "z": 0, "nansi-louvain": 17, "nansi-degree": 7 } }, { "key": "707", "attributes": { "label": "Dechet Dangereux", "nodedef": "n707", "occurrences": 7, "color": "rgb(102,102,0)", "size": 3.701466, "x": 61.834133, "y": -232.77502, "z": 0, "nansi-louvain": 17, "nansi-degree": 12 } }, { "key": "708", "attributes": { "label": "Gestion Des Déchets", "nodedef": "n708", "occurrences": 16, "color": "rgb(102,102,0)", "size": 3.8800173, "x": 69.288216, "y": -223.05225, "z": 0, "nansi-louvain": 17, "nansi-degree": 20 } }, { "key": "709", "attributes": { "label": "Convention De Genève", "nodedef": "n709", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -2.9048069, "y": -174.2285, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "710", "attributes": { "label": "Convention Internationale", "nodedef": "n710", "occurrences": 8, "color": "rgb(153,0,0)", "size": 3.655348, "x": 2.7315416, "y": -188.21317, "z": 0, "nansi-louvain": 5, "nansi-degree": 9 } }, { "key": "711", "attributes": { "label": "Convention De Montego", "nodedef": "n711", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.6847134, "x": -20.192936, "y": -161.75531, "z": 0, "nansi-louvain": 5, "nansi-degree": 11 } }, { "key": "712", "attributes": { "label": "Eaux Territoriales", "nodedef": "n712", "occurrences": 11, "color": "rgb(153,0,0)", "size": 3.804327, "x": -20.757126, "y": -188.8572, "z": 0, "nansi-louvain": 5, "nansi-degree": 17 } }, { "key": "713", "attributes": { "label": "Zone Économique", "nodedef": "n713", "occurrences": 8, "color": "rgb(153,0,0)", "size": 3.7389054, "x": -25.319233, "y": -173.86949, "z": 0, "nansi-louvain": 5, "nansi-degree": 14 } }, { "key": "714", "attributes": { "label": "Zone Économique Exclusive", "nodedef": "n714", "occurrences": 7, "color": "rgb(153,0,0)", "size": 3.7195435, "x": -21.851797, "y": -169.0556, "z": 0, "nansi-louvain": 5, "nansi-degree": 13 } }, { "key": "715", "attributes": { "label": "Convention Des Nations", "nodedef": "n715", "occurrences": 9, "color": "rgb(255,51,51)", "size": 3.6847134, "x": -29.742476, "y": -133.99895, "z": 0, "nansi-louvain": 5, "nansi-degree": 11 } }, { "key": "716", "attributes": { "label": "Convention Des Nations Unies Sur Le Droit De La Mer", "nodedef": "n716", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.655348, "x": -17.73833, "y": -156.26024, "z": 0, "nansi-louvain": 5, "nansi-degree": 9 } }, { "key": "717", "attributes": { "label": "Convention Des Nations Unies Sur Le Droit De La Mer De 1982", "nodedef": "n717", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6428227, "x": -30.902071, "y": -186.2753, "z": 0, "nansi-louvain": 5, "nansi-degree": 8 } }, { "key": "718", "attributes": { "label": "Convention On Climate", "nodedef": "n718", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6036906, "x": -66.879944, "y": 70.31145, "z": 0, "nansi-louvain": 13, "nansi-degree": 3 } }, { "key": "719", "attributes": { "label": "Coopération", "nodedef": "n719", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -60.72319, "y": 40.968204, "z": 0, "nansi-louvain": 13, "nansi-degree": 4 } }, { "key": "720", "attributes": { "label": "International Cooperation", "nodedef": "n720", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -39.578094, "y": 32.47109, "z": 0, "nansi-louvain": 13, "nansi-degree": 4 } }, { "key": "721", "attributes": { "label": "International Organization", "nodedef": "n721", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.600933, "x": -47.392315, "y": 35.695564, "z": 0, "nansi-louvain": 14, "nansi-degree": 2 } }, { "key": "722", "attributes": { "label": "Coopération Internationale", "nodedef": "n722", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6223197, "x": 12.293242, "y": -110.90361, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "723", "attributes": { "label": "Cooperative Institute For Research", "nodedef": "n723", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.655348, "x": 10.343129, "y": 172.62207, "z": 0, "nansi-louvain": 7, "nansi-degree": 9 } }, { "key": "724", "attributes": { "label": "Geophysical Union", "nodedef": "n724", "occurrences": 6, "color": "rgb(153,255,255)", "size": 3.655348, "x": 8.100718, "y": 94.81285, "z": 0, "nansi-louvain": 7, "nansi-degree": 9 } }, { "key": "725", "attributes": { "label": "Courants Marins", "nodedef": "n725", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6428227, "x": 79.91367, "y": -83.52748, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "726", "attributes": { "label": "Energie Marine", "nodedef": "n726", "occurrences": 2, "color": "rgb(0,153,0)", "size": 3.6317973, "x": 82.22798, "y": -104.94305, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "727", "attributes": { "label": "Courants Marins Chauds", "nodedef": "n727", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.655348, "x": 36.77767, "y": -28.19615, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "728", "attributes": { "label": "Rayon Solaire", "nodedef": "n728", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 129.48923, "y": -49.379208, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "729", "attributes": { "label": "Courants Marins Froids", "nodedef": "n729", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.600933, "x": -22.714336, "y": -95.07324, "z": 0, "nansi-louvain": 3, "nansi-degree": 2 } }, { "key": "730", "attributes": { "label": "Courbe Isotherme", "nodedef": "n730", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.655348, "x": 63.2309, "y": -23.937544, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "731", "attributes": { "label": "Peuple Indigène", "nodedef": "n731", "occurrences": 6, "color": "rgb(255,51,51)", "size": 3.6428227, "x": -13.349658, "y": -82.81359, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "732", "attributes": { "label": "Science Naturelle", "nodedef": "n732", "occurrences": 10, "color": "rgb(255,204,102)", "size": 3.7389054, "x": 131.71928, "y": -33.319416, "z": 0, "nansi-louvain": 17, "nansi-degree": 14 } }, { "key": "733", "attributes": { "label": "Cout De Production", "nodedef": "n733", "occurrences": 2, "color": "rgb(153,0,0)", "size": 3.600933, "x": 78.74421, "y": -190.2988, "z": 0, "nansi-louvain": 9, "nansi-degree": 2 } }, { "key": "734", "attributes": { "label": "Coûts Supplémentaires", "nodedef": "n734", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.600933, "x": 77.0238, "y": -184.28424, "z": 0, "nansi-louvain": 9, "nansi-degree": 2 } }, { "key": "735", "attributes": { "label": "Couverture Végétale", "nodedef": "n735", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6036906, "x": 135.19527, "y": -200.11278, "z": 0, "nansi-louvain": 4, "nansi-degree": 3 } }, { "key": "736", "attributes": { "label": "Terre Agricole", "nodedef": "n736", "occurrences": 6, "color": "rgb(153,255,0)", "size": 3.6223197, "x": 114.11686, "y": -181.83147, "z": 0, "nansi-louvain": 4, "nansi-degree": 6 } }, { "key": "737", "attributes": { "label": "Crépuscule Nautique", "nodedef": "n737", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": 213.95967, "y": -146.44943, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "738", "attributes": { "label": "Lever De Soleil", "nodedef": "n738", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 197.03763, "y": -138.81877, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "739", "attributes": { "label": "Crevasses", "nodedef": "n739", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6, "x": -181.58629, "y": 164.75209, "z": 0, "nansi-louvain": 10, "nansi-degree": 1 } }, { "key": "740", "attributes": { "label": "Crise Ecologique", "nodedef": "n740", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6317973, "x": 61.039497, "y": -120.97116, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "741", "attributes": { "label": "Croisiere Arctique", "nodedef": "n741", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -66.62704, "y": 4.8015614, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "742", "attributes": { "label": "Polar Star", "nodedef": "n742", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6036906, "x": -141.39766, "y": 103.32398, "z": 0, "nansi-louvain": 16, "nansi-degree": 3 } }, { "key": "743", "attributes": { "label": "Croissance De La Population", "nodedef": "n743", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6082125, "x": 68.54918, "y": -203.07622, "z": 0, "nansi-louvain": 9, "nansi-degree": 4 } }, { "key": "744", "attributes": { "label": "Croissance Végétale", "nodedef": "n744", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6317973, "x": 111.99759, "y": -134.8616, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "745", "attributes": { "label": "Croyances Animistes Traditionnelles", "nodedef": "n745", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6223197, "x": -67.06014, "y": -70.543816, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "746", "attributes": { "label": "Perdrix Des Neiges", "nodedef": "n746", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6223197, "x": -60.571205, "y": -54.64168, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "747", "attributes": { "label": "Laponie Finlandaise", "nodedef": "n747", "occurrences": 9, "color": "rgb(204,204,255)", "size": 3.7595146, "x": -68.37747, "y": -59.32782, "z": 0, "nansi-louvain": 3, "nansi-degree": 15 } }, { "key": "748", "attributes": { "label": "Laponie Suédoise", "nodedef": "n748", "occurrences": 6, "color": "rgb(204,204,255)", "size": 3.7389054, "x": -73.55738, "y": -48.30083, "z": 0, "nansi-louvain": 3, "nansi-degree": 14 } }, { "key": "749", "attributes": { "label": "Ours Brun", "nodedef": "n749", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6082125, "x": -59.48362, "y": -61.6491, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "750", "attributes": { "label": "Cryosat 2", "nodedef": "n750", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6693263, "x": 5.722161, "y": 167.9762, "z": 0, "nansi-louvain": 12, "nansi-degree": 10 } }, { "key": "751", "attributes": { "label": "Earth Explorer", "nodedef": "n751", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6036906, "x": -114.96387, "y": 147.31326, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "752", "attributes": { "label": "Earth Observation", "nodedef": "n752", "occurrences": 6, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 51.36721, "y": 130.81984, "z": 0, "nansi-louvain": 12, "nansi-degree": 10 } }, { "key": "753", "attributes": { "label": "Polar Ice", "nodedef": "n753", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6428227, "x": -12.25438, "y": 184.30421, "z": 0, "nansi-louvain": 7, "nansi-degree": 8 } }, { "key": "754", "attributes": { "label": "Radar Altimeter", "nodedef": "n754", "occurrences": 2, "color": "rgb(255,204,102)", "size": 3.6223197, "x": 21.379436, "y": 170.49101, "z": 0, "nansi-louvain": 12, "nansi-degree": 6 } }, { "key": "755", "attributes": { "label": "Cryosphère", "nodedef": "n755", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6428227, "x": -15.607028, "y": 155.37567, "z": 0, "nansi-louvain": 7, "nansi-degree": 8 } }, { "key": "756", "attributes": { "label": "Cyberdocumentaire", "nodedef": "n756", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6428227, "x": 20.800661, "y": -47.603615, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "757", "attributes": { "label": "Roger Brunet", "nodedef": "n757", "occurrences": 8, "color": "rgb(102,255,102)", "size": 3.6428227, "x": 38.819298, "y": -68.37569, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "758", "attributes": { "label": "Route Commerciale", "nodedef": "n758", "occurrences": 8, "color": "rgb(102,255,102)", "size": 3.6428227, "x": 30.28192, "y": -85.728874, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "759", "attributes": { "label": "Revendication Territoriale", "nodedef": "n759", "occurrences": 11, "color": "rgb(255,51,51)", "size": 3.701466, "x": 8.855694, "y": -83.48118, "z": 0, "nansi-louvain": 3, "nansi-degree": 12 } }, { "key": "760", "attributes": { "label": "Cycle Biogéochimique", "nodedef": "n760", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6847134, "x": 133.18228, "y": -116.4676, "z": 0, "nansi-louvain": 4, "nansi-degree": 11 } }, { "key": "761", "attributes": { "label": "Cycle De Doha", "nodedef": "n761", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.6082125, "x": 8.915166, "y": -201.50029, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "762", "attributes": { "label": "Danemark", "nodedef": "n762", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -175.21513, "y": -166.12798, "z": 0, "nansi-louvain": 22, "nansi-degree": 3 } }, { "key": "763", "attributes": { "label": "Insel Fünen", "nodedef": "n763", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -201.37614, "y": -181.42183, "z": 0, "nansi-louvain": 22, "nansi-degree": 3 } }, { "key": "764", "attributes": { "label": "Insel Seeland", "nodedef": "n764", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -199.81836, "y": -184.15172, "z": 0, "nansi-louvain": 22, "nansi-degree": 3 } }, { "key": "765", "attributes": { "label": "Pays Scandinave", "nodedef": "n765", "occurrences": 7, "color": "rgb(255,51,51)", "size": 3.6693263, "x": -95.676704, "y": -113.60478, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "766", "attributes": { "label": "Danger", "nodedef": "n766", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.600933, "x": -113.498535, "y": 60.928207, "z": 0, "nansi-louvain": 7, "nansi-degree": 2 } }, { "key": "767", "attributes": { "label": "Décennie", "nodedef": "n767", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -107.33428, "y": 12.979818, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "768", "attributes": { "label": "Traitement Des Déchets", "nodedef": "n768", "occurrences": 8, "color": "rgb(102,102,0)", "size": 3.6847134, "x": 75.72075, "y": -250.85735, "z": 0, "nansi-louvain": 17, "nansi-degree": 11 } }, { "key": "769", "attributes": { "label": "Déchet Industriel", "nodedef": "n769", "occurrences": 7, "color": "rgb(102,102,0)", "size": 3.6847134, "x": 70.97853, "y": -258.26083, "z": 0, "nansi-louvain": 17, "nansi-degree": 11 } }, { "key": "770", "attributes": { "label": "Recyclage Des Déchets", "nodedef": "n770", "occurrences": 4, "color": "rgb(102,102,0)", "size": 3.6428227, "x": 70.67164, "y": -263.0822, "z": 0, "nansi-louvain": 17, "nansi-degree": 8 } }, { "key": "771", "attributes": { "label": "Tri Selectif", "nodedef": "n771", "occurrences": 5, "color": "rgb(102,102,0)", "size": 3.655348, "x": 69.520134, "y": -252.84091, "z": 0, "nansi-louvain": 17, "nansi-degree": 9 } }, { "key": "772", "attributes": { "label": "Agence Nationale", "nodedef": "n772", "occurrences": 7, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 154.52783, "y": -127.43115, "z": 0, "nansi-louvain": 17, "nansi-degree": 5 } }, { "key": "773", "attributes": { "label": "Déchets", "nodedef": "n773", "occurrences": 1, "color": "rgb(102,102,0)", "size": 3.6317973, "x": 63.81986, "y": -244.14682, "z": 0, "nansi-louvain": 17, "nansi-degree": 7 } }, { "key": "774", "attributes": { "label": "Declaration De Doha", "nodedef": "n774", "occurrences": 2, "color": "rgb(153,0,0)", "size": 3.600933, "x": 2.1963513, "y": -197.44995, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "775", "attributes": { "label": "Déformations", "nodedef": "n775", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 20.778921, "y": 143.187, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "776", "attributes": { "label": "Geodetic Surveying", "nodedef": "n776", "occurrences": 3, "color": "rgb(255,153,153)", "size": 3.600933, "x": 22.787306, "y": 256.44968, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "777", "attributes": { "label": "Institutes Of Technology", "nodedef": "n777", "occurrences": 4, "color": "rgb(255,153,153)", "size": 3.6082125, "x": 108.25207, "y": 119.42958, "z": 0, "nansi-louvain": 4, "nansi-degree": 4 } }, { "key": "778", "attributes": { "label": "Dégradation De L'Environnement,1", "nodedef": "n778", "color": "rgb(102,102,0)", "size": 3.6428227, "x": 78.002335, "y": -166.57123, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "779", "attributes": { "label": "Dégradation Des Sols", "nodedef": "n779", "occurrences": 4, "color": "rgb(102,102,0)", "size": 3.6847134, "x": 101.62584, "y": -170.43292, "z": 0, "nansi-louvain": 9, "nansi-degree": 11 } }, { "key": "780", "attributes": { "label": "Dégradations Écologiques", "nodedef": "n780", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6428227, "x": 46.50808, "y": -159.57059, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "781", "attributes": { "label": "Générations Futures", "nodedef": "n781", "occurrences": 6, "color": "rgb(102,255,102)", "size": 3.7195435, "x": 48.68833, "y": -130.23868, "z": 0, "nansi-louvain": 9, "nansi-degree": 13 } }, { "key": "782", "attributes": { "label": "Gilles Labarthe", "nodedef": "n782", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.600933, "x": 34.1384, "y": -191.4039, "z": 0, "nansi-louvain": 9, "nansi-degree": 2 } }, { "key": "783", "attributes": { "label": "Dégradations Sanitaires", "nodedef": "n783", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.600933, "x": -30.717054, "y": -5.6482596, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "784", "attributes": { "label": "Degre Centigrade", "nodedef": "n784", "occurrences": 5, "color": "rgb(255,204,102)", "size": 3.655348, "x": 91.80559, "y": -54.688114, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "785", "attributes": { "label": "Deh Cho", "nodedef": "n785", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -201.40286, "y": 166.71332, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "786", "attributes": { "label": "Mackenzie Valley", "nodedef": "n786", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6428227, "x": -205.86168, "y": 155.85452, "z": 0, "nansi-louvain": 18, "nansi-degree": 8 } }, { "key": "787", "attributes": { "label": "Valley Pipeline", "nodedef": "n787", "occurrences": 4, "color": "rgb(102,0,102)", "size": 3.6693263, "x": -208.26807, "y": 149.94714, "z": 0, "nansi-louvain": 18, "nansi-degree": 10 } }, { "key": "788", "attributes": { "label": "Delta De La Léna", "nodedef": "n788", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6317973, "x": 31.135117, "y": -58.630207, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "789", "attributes": { "label": "Goélette Tara", "nodedef": "n789", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6847134, "x": 26.71245, "y": -17.648607, "z": 0, "nansi-louvain": 3, "nansi-degree": 11 } }, { "key": "790", "attributes": { "label": "Department Of Physics", "nodedef": "n790", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.600933, "x": 12.174031, "y": 86.10851, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "791", "attributes": { "label": "Graduate Student", "nodedef": "n791", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.600933, "x": -40.54152, "y": 94.71225, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "792", "attributes": { "label": "Dépôts Rocheux", "nodedef": "n792", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 122.68339, "y": -44.98089, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "793", "attributes": { "label": "Glacier Rocheux", "nodedef": "n793", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6144404, "x": 77.11172, "y": -15.679613, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "794", "attributes": { "label": "Dérèglements Climatiques", "nodedef": "n794", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6317973, "x": 110.23258, "y": -118.973274, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "795", "attributes": { "label": "Dérèglements Écologiques", "nodedef": "n795", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6082125, "x": 37.039272, "y": -101.13818, "z": 0, "nansi-louvain": 9, "nansi-degree": 4 } }, { "key": "796", "attributes": { "label": "Classe Dominante", "nodedef": "n796", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6, "x": 35.597485, "y": -109.27895, "z": 0, "nansi-louvain": 9, "nansi-degree": 1 } }, { "key": "797", "attributes": { "label": "Dérive Arctique", "nodedef": "n797", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.655348, "x": 15.027658, "y": -10.642487, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "798", "attributes": { "label": "Pont Alexandre", "nodedef": "n798", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6036906, "x": 16.136503, "y": -6.105955, "z": 0, "nansi-louvain": 3, "nansi-degree": 3 } }, { "key": "799", "attributes": { "label": "Dérive Transpolaire", "nodedef": "n799", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6693263, "x": 9.530531, "y": -8.245452, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "800", "attributes": { "label": "Eaux Libres", "nodedef": "n800", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6036906, "x": 67.54322, "y": -101.41988, "z": 0, "nansi-louvain": 4, "nansi-degree": 3 } }, { "key": "801", "attributes": { "label": "Mission Banquise", "nodedef": "n801", "occurrences": 7, "color": "rgb(153,255,255)", "size": 3.7195435, "x": 10.026979, "y": -1.1967485, "z": 0, "nansi-louvain": 3, "nansi-degree": 13 } }, { "key": "802", "attributes": { "label": "Désertification", "nodedef": "n802", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6082125, "x": -37.75751, "y": 113.044426, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "803", "attributes": { "label": "Land Degradation", "nodedef": "n803", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6144404, "x": -52.08292, "y": 115.212395, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "804", "attributes": { "label": "Destruction", "nodedef": "n804", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -111.14598, "y": 25.675028, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "805", "attributes": { "label": "Détroit De Behring", "nodedef": "n805", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6428227, "x": -47.759315, "y": -57.11927, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "806", "attributes": { "label": "Sibérie Orientale", "nodedef": "n806", "occurrences": 10, "color": "rgb(255,51,51)", "size": 3.701466, "x": -29.470104, "y": -75.87666, "z": 0, "nansi-louvain": 3, "nansi-degree": 12 } }, { "key": "807", "attributes": { "label": "Vitus Bering", "nodedef": "n807", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -56.028717, "y": -23.50201, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "808", "attributes": { "label": "Détroit De Fram", "nodedef": "n808", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6693263, "x": -6.220417, "y": -35.586487, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "809", "attributes": { "label": "Détroit De Nares", "nodedef": "n809", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6223197, "x": 7.2388062, "y": 23.048285, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "810", "attributes": { "label": "Aperture Radar", "nodedef": "n810", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.600933, "x": 44.31361, "y": 93.85906, "z": 0, "nansi-louvain": 12, "nansi-degree": 2 } }, { "key": "811", "attributes": { "label": "Dette Écologique.", "nodedef": "n811", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6223197, "x": 51.723442, "y": -151.76697, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "812", "attributes": { "label": "Qualite De Vie", "nodedef": "n812", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6144404, "x": 5.574284, "y": -177.29112, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "813", "attributes": { "label": "Developpement Humain", "nodedef": "n813", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6082125, "x": 25.24227, "y": -175.58377, "z": 0, "nansi-louvain": 9, "nansi-degree": 4 } }, { "key": "814", "attributes": { "label": "Developpement Local", "nodedef": "n814", "occurrences": 2, "color": "rgb(153,0,0)", "size": 3.6082125, "x": 35.17026, "y": -186.86665, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "815", "attributes": { "label": "Différence De Densité", "nodedef": "n815", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6223197, "x": 155.67677, "y": -86.86745, "z": 0, "nansi-louvain": 1, "nansi-degree": 6 } }, { "key": "816", "attributes": { "label": "Eau Froide", "nodedef": "n816", "occurrences": 11, "color": "rgb(255,204,102)", "size": 3.701466, "x": 166.76927, "y": -118.24211, "z": 0, "nansi-louvain": 4, "nansi-degree": 12 } }, { "key": "817", "attributes": { "label": "Eau Salée", "nodedef": "n817", "occurrences": 6, "color": "rgb(255,204,102)", "size": 3.6223197, "x": 139.16997, "y": -86.839165, "z": 0, "nansi-louvain": 4, "nansi-degree": 6 } }, { "key": "818", "attributes": { "label": "Discover North", "nodedef": "n818", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -161.207, "y": 193.45311, "z": 0, "nansi-louvain": 10, "nansi-degree": 3 } }, { "key": "819", "attributes": { "label": "Disko Bay", "nodedef": "n819", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -76.76011, "y": 179.91618, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "820", "attributes": { "label": "Disparition", "nodedef": "n820", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6, "x": 26.462664, "y": -125.76172, "z": 0, "nansi-louvain": 14, "nansi-degree": 1 } }, { "key": "821", "attributes": { "label": "Disparition De La Banquise D'Été,1", "nodedef": "n821", "color": "rgb(102,255,102)", "size": 3.6144404, "x": 51.90621, "y": -61.165367, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "822", "attributes": { "label": "Tara Expéditions", "nodedef": "n822", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6847134, "x": 17.375713, "y": -3.8585522, "z": 0, "nansi-louvain": 3, "nansi-degree": 11 } }, { "key": "823", "attributes": { "label": "Diversite Culturelle", "nodedef": "n823", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6144404, "x": 65.36968, "y": -180.09264, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "824", "attributes": { "label": "Identité Culturelle", "nodedef": "n824", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6223197, "x": 80.365425, "y": -170.8904, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "825", "attributes": { "label": "Russie Unie", "nodedef": "n825", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6144404, "x": -97.96596, "y": -142.18752, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "826", "attributes": { "label": "Project For Ice", "nodedef": "n826", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6223197, "x": 0.54255176, "y": 126.68907, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "827", "attributes": { "label": "Domm", "nodedef": "n827", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -109.09103, "y": 19.570175, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "828", "attributes": { "label": "Données Climatiques", "nodedef": "n828", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.655348, "x": 129.11292, "y": -96.719284, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "829", "attributes": { "label": "Données Environnementales", "nodedef": "n829", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6317973, "x": 145.63068, "y": -159.54759, "z": 0, "nansi-louvain": 5, "nansi-degree": 7 } }, { "key": "830", "attributes": { "label": "Données Géographiques", "nodedef": "n830", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 179.40852, "y": -141.37683, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "831", "attributes": { "label": "Gestion Des Données", "nodedef": "n831", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 178.22528, "y": -159.42949, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "832", "attributes": { "label": "Données Scientifiques", "nodedef": "n832", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 123.72653, "y": -113.9477, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "833", "attributes": { "label": "Dorsale De Lomonossov", "nodedef": "n833", "occurrences": 7, "color": "rgb(255,51,51)", "size": 3.7595146, "x": 2.9201856, "y": -78.01184, "z": 0, "nansi-louvain": 3, "nansi-degree": 15 } }, { "key": "834", "attributes": { "label": "Plaque Tectonique", "nodedef": "n834", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.6144404, "x": 175.02483, "y": -55.98623, "z": 0, "nansi-louvain": 1, "nansi-degree": 5 } }, { "key": "835", "attributes": { "label": "Plaque Continentale", "nodedef": "n835", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.655348, "x": 190.27965, "y": -68.29249, "z": 0, "nansi-louvain": 1, "nansi-degree": 9 } }, { "key": "836", "attributes": { "label": "Dorsales Lomonossov", "nodedef": "n836", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6082125, "x": 3.9735816, "y": -45.558617, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "837", "attributes": { "label": "Drapeau De La Russie", "nodedef": "n837", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6428227, "x": -1.9269056, "y": -60.467316, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "838", "attributes": { "label": "Exploration Polaire", "nodedef": "n838", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 9.070678, "y": 5.685348, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "839", "attributes": { "label": "Navire De Recherche", "nodedef": "n839", "occurrences": 6, "color": "rgb(0,204,204)", "size": 3.6082125, "x": 7.384124, "y": -26.281437, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "840", "attributes": { "label": "Drapeau Russe En Titane", "nodedef": "n840", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6428227, "x": -26.547232, "y": -68.05379, "z": 0, "nansi-louvain": 5, "nansi-degree": 8 } }, { "key": "841", "attributes": { "label": "Explorateur Polaire", "nodedef": "n841", "occurrences": 5, "color": "rgb(153,255,255)", "size": 3.6693263, "x": 5.152131, "y": 48.412567, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "842", "attributes": { "label": "Droit", "nodedef": "n842", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6, "x": -37.650738, "y": -197.6607, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "843", "attributes": { "label": "Droit De La Mer", "nodedef": "n843", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6223197, "x": -23.03955, "y": -145.45616, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "844", "attributes": { "label": "Droit De Passage", "nodedef": "n844", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6, "x": 147.37573, "y": -225.11084, "z": 0, "nansi-louvain": 4, "nansi-degree": 1 } }, { "key": "845", "attributes": { "label": "Durablement Pollué", "nodedef": "n845", "occurrences": 1, "color": "rgb(102,102,0)", "size": 3.6082125, "x": 80.86123, "y": -226.87175, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "846", "attributes": { "label": "Reserve Naturelle Regionale", "nodedef": "n846", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6082125, "x": 75.02886, "y": -211.81967, "z": 0, "nansi-louvain": 14, "nansi-degree": 4 } }, { "key": "847", "attributes": { "label": "Observation System", "nodedef": "n847", "occurrences": 3, "color": "rgb(255,153,153)", "size": 3.600933, "x": 68.11775, "y": 147.90143, "z": 0, "nansi-louvain": 12, "nansi-degree": 2 } }, { "key": "848", "attributes": { "label": "Earth Observing", "nodedef": "n848", "occurrences": 2, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 35.65285, "y": 141.03775, "z": 0, "nansi-louvain": 12, "nansi-degree": 4 } }, { "key": "849", "attributes": { "label": "Earth Sciences", "nodedef": "n849", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6082125, "x": 14.9169855, "y": 102.99505, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "850", "attributes": { "label": "Earth Summit", "nodedef": "n850", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -47.285645, "y": 54.47885, "z": 0, "nansi-louvain": 13, "nansi-degree": 6 } }, { "key": "851", "attributes": { "label": "East Antarctica", "nodedef": "n851", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6082125, "x": -9.807365, "y": 174.98557, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "852", "attributes": { "label": "Ice Shelf", "nodedef": "n852", "occurrences": 12, "color": "rgb(153,255,255)", "size": 3.804327, "x": -20.910875, "y": 192.31764, "z": 0, "nansi-louvain": 7, "nansi-degree": 17 } }, { "key": "853", "attributes": { "label": "East Iceland", "nodedef": "n853", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -155.4933, "y": 189.1732, "z": 0, "nansi-louvain": 10, "nansi-degree": 4 } }, { "key": "854", "attributes": { "label": "East Oil", "nodedef": "n854", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.6036906, "x": -189.00587, "y": 62.662277, "z": 0, "nansi-louvain": 6, "nansi-degree": 3 } }, { "key": "855", "attributes": { "label": "East Siberian", "nodedef": "n855", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -110.81129, "y": 225.40796, "z": 0, "nansi-louvain": 18, "nansi-degree": 3 } }, { "key": "856", "attributes": { "label": "Eastern Arctic", "nodedef": "n856", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6428227, "x": -91.620155, "y": 195.27538, "z": 0, "nansi-louvain": 18, "nansi-degree": 8 } }, { "key": "857", "attributes": { "label": "Eaux Douces", "nodedef": "n857", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 101.13671, "y": -146.24721, "z": 0, "nansi-louvain": 4, "nansi-degree": 8 } }, { "key": "858", "attributes": { "label": "Plante Aquatique", "nodedef": "n858", "occurrences": 8, "color": "rgb(153,255,0)", "size": 3.6847134, "x": 139.03444, "y": -157.33931, "z": 0, "nansi-louvain": 4, "nansi-degree": 11 } }, { "key": "859", "attributes": { "label": "Eau Liquide", "nodedef": "n859", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 155.82997, "y": -5.7764835, "z": 0, "nansi-louvain": 12, "nansi-degree": 8 } }, { "key": "860", "attributes": { "label": "Sonde Voyager", "nodedef": "n860", "occurrences": 3, "color": "rgb(255,153,153)", "size": 3.6144404, "x": 154.62616, "y": 19.848589, "z": 0, "nansi-louvain": 17, "nansi-degree": 5 } }, { "key": "861", "attributes": { "label": "Space Science", "nodedef": "n861", "occurrences": 5, "color": "rgb(255,153,153)", "size": 3.6144404, "x": 112.92149, "y": 112.6525, "z": 0, "nansi-louvain": 12, "nansi-degree": 5 } }, { "key": "862", "attributes": { "label": "Formation Géologique", "nodedef": "n862", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.6428227, "x": 122.24764, "y": -141.43163, "z": 0, "nansi-louvain": 17, "nansi-degree": 8 } }, { "key": "863", "attributes": { "label": "Global Surveyor", "nodedef": "n863", "occurrences": 6, "color": "rgb(255,153,153)", "size": 3.6082125, "x": 121.062225, "y": 70.328384, "z": 0, "nansi-louvain": 12, "nansi-degree": 4 } }, { "key": "864", "attributes": { "label": "Eaux De Fonte", "nodedef": "n864", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.655348, "x": 83.76388, "y": -42.55187, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "865", "attributes": { "label": "Ère Quaternaire", "nodedef": "n865", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 139.94081, "y": -36.073387, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "866", "attributes": { "label": "Fonte Des Neiges", "nodedef": "n866", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6317973, "x": 82.30643, "y": -44.7361, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "867", "attributes": { "label": "Lac Glaciaire", "nodedef": "n867", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6, "x": 110.84691, "y": -21.93367, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "868", "attributes": { "label": "Eaux Intérieures", "nodedef": "n868", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6317973, "x": 27.332901, "y": -173.31288, "z": 0, "nansi-louvain": 5, "nansi-degree": 7 } }, { "key": "869", "attributes": { "label": "Eaux Internationales", "nodedef": "n869", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6428227, "x": -5.1327734, "y": -171.45468, "z": 0, "nansi-louvain": 5, "nansi-degree": 8 } }, { "key": "870", "attributes": { "label": "Ligne De Base", "nodedef": "n870", "occurrences": 5, "color": "rgb(153,0,0)", "size": 3.6036906, "x": -29.122618, "y": -164.37231, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "871", "attributes": { "label": "Échantillons De Glace", "nodedef": "n871", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6693263, "x": 113.428604, "y": -35.62047, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "872", "attributes": { "label": "Ecological Footprint", "nodedef": "n872", "occurrences": 4, "color": "rgb(102,255,102)", "size": 3.6082125, "x": 18.693914, "y": -56.448235, "z": 0, "nansi-louvain": 9, "nansi-degree": 4 } }, { "key": "873", "attributes": { "label": "Ecologie", "nodedef": "n873", "occurrences": 1, "color": "rgb(0,204,51)", "size": 3.655348, "x": 75.064766, "y": -121.18708, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "874", "attributes": { "label": "Écologie Pratique", "nodedef": "n874", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6144404, "x": 115.14588, "y": -124.128716, "z": 0, "nansi-louvain": 9, "nansi-degree": 5 } }, { "key": "875", "attributes": { "label": "Écologie Des Populations", "nodedef": "n875", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6082125, "x": 135.21071, "y": -149.51874, "z": 0, "nansi-louvain": 4, "nansi-degree": 4 } }, { "key": "876", "attributes": { "label": "Habitat Écologique", "nodedef": "n876", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6223197, "x": 95.073494, "y": -173.32501, "z": 0, "nansi-louvain": 14, "nansi-degree": 6 } }, { "key": "877", "attributes": { "label": "Ecologie Profonde", "nodedef": "n877", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6144404, "x": 64.3064, "y": -118.6398, "z": 0, "nansi-louvain": 9, "nansi-degree": 5 } }, { "key": "878", "attributes": { "label": "Écologisme", "nodedef": "n878", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6144404, "x": 77.89612, "y": -135.1429, "z": 0, "nansi-louvain": 9, "nansi-degree": 5 } }, { "key": "879", "attributes": { "label": "Economie Gestion", "nodedef": "n879", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6, "x": 215.9291, "y": -5.96012, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "880", "attributes": { "label": "Écosystème", "nodedef": "n880", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 104.98737, "y": -138.01811, "z": 0, "nansi-louvain": 4, "nansi-degree": 5 } }, { "key": "881", "attributes": { "label": "Écosystèmes", "nodedef": "n881", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.655348, "x": 64.835464, "y": -137.61786, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "882", "attributes": { "label": "Gestion Durable", "nodedef": "n882", "occurrences": 4, "color": "rgb(153,0,0)", "size": 3.6428227, "x": 57.75469, "y": -200.93199, "z": 0, "nansi-louvain": 5, "nansi-degree": 8 } }, { "key": "883", "attributes": { "label": "Milieu Naturel", "nodedef": "n883", "occurrences": 15, "color": "rgb(153,255,0)", "size": 3.9073772, "x": 74.04148, "y": -175.50519, "z": 0, "nansi-louvain": 14, "nansi-degree": 21 } }, { "key": "884", "attributes": { "label": "Écosystèmes Marins", "nodedef": "n884", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.655348, "x": 58.37052, "y": -83.98966, "z": 0, "nansi-louvain": 5, "nansi-degree": 9 } }, { "key": "885", "attributes": { "label": "Marine Science", "nodedef": "n885", "occurrences": 6, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 46.841347, "y": 40.260735, "z": 0, "nansi-louvain": 17, "nansi-degree": 8 } }, { "key": "886", "attributes": { "label": "Écotourisme Québec", "nodedef": "n886", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -45.964718, "y": -95.81033, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "887", "attributes": { "label": "Écoulement", "nodedef": "n887", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 210.55989, "y": -22.050102, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "888", "attributes": { "label": "Mecanique Des Fluides", "nodedef": "n888", "occurrences": 9, "color": "rgb(255,255,0)", "size": 3.655348, "x": 278.5342, "y": 33.96362, "z": 0, "nansi-louvain": 17, "nansi-degree": 9 } }, { "key": "889", "attributes": { "label": "Nombre De Reynolds", "nodedef": "n889", "occurrences": 4, "color": "rgb(255,255,0)", "size": 3.6082125, "x": 265.90732, "y": 19.444027, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "890", "attributes": { "label": "Edp Sciences", "nodedef": "n890", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6036906, "x": 67.00736, "y": 70.53533, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "891", "attributes": { "label": "Educapoles", "nodedef": "n891", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 11.144131, "y": 90.69534, "z": 0, "nansi-louvain": 7, "nansi-degree": 8 } }, { "key": "892", "attributes": { "label": "Polar Science", "nodedef": "n892", "occurrences": 6, "color": "rgb(153,255,255)", "size": 3.6693263, "x": -14.627259, "y": 160.04025, "z": 0, "nansi-louvain": 7, "nansi-degree": 10 } }, { "key": "893", "attributes": { "label": "Fondation Polaire Internationale", "nodedef": "n893", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.655348, "x": 59.461113, "y": 5.7854533, "z": 0, "nansi-louvain": 7, "nansi-degree": 9 } }, { "key": "894", "attributes": { "label": "Effect Of Global Warming", "nodedef": "n894", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6223197, "x": -27.734083, "y": 167.0516, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "895", "attributes": { "label": "Effet De Serre Anthropique", "nodedef": "n895", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6693263, "x": 93.9755, "y": -121.45745, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "896", "attributes": { "label": "Pays Nordique", "nodedef": "n896", "occurrences": 9, "color": "rgb(255,51,51)", "size": 3.6693263, "x": -71.66175, "y": -118.37368, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "897", "attributes": { "label": "Reaction Chimique", "nodedef": "n897", "occurrences": 7, "color": "rgb(255,204,102)", "size": 3.655348, "x": 216.23396, "y": -123.268616, "z": 0, "nansi-louvain": 1, "nansi-degree": 9 } }, { "key": "898", "attributes": { "label": "Élévation Température", "nodedef": "n898", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6036906, "x": -27.196436, "y": 171.9694, "z": 0, "nansi-louvain": 12, "nansi-degree": 3 } }, { "key": "899", "attributes": { "label": "Weather Services", "nodedef": "n899", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6144404, "x": -14.640592, "y": 232.97093, "z": 0, "nansi-louvain": 12, "nansi-degree": 5 } }, { "key": "900", "attributes": { "label": "Elliptic Orbit", "nodedef": "n900", "occurrences": 7, "color": "rgb(255,153,153)", "size": 3.6223197, "x": -19.202227, "y": 252.2542, "z": 0, "nansi-louvain": 12, "nansi-degree": 6 } }, { "key": "901", "attributes": { "label": "Empreinte Écologique", "nodedef": "n901", "occurrences": 5, "color": "rgb(102,255,102)", "size": 3.7195435, "x": 81.85977, "y": -129.94612, "z": 0, "nansi-louvain": 9, "nansi-degree": 13 } }, { "key": "902", "attributes": { "label": "Hectares Globaux", "nodedef": "n902", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6317973, "x": 60.629135, "y": -128.16586, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "903", "attributes": { "label": "Empreinte Energetique", "nodedef": "n903", "occurrences": 4, "color": "rgb(0,153,0)", "size": 3.6693263, "x": 61.166225, "y": -113.82703, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "904", "attributes": { "label": "Energie Primaire", "nodedef": "n904", "occurrences": 3, "color": "rgb(0,153,0)", "size": 3.6693263, "x": 57.8311, "y": -147.20485, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "905", "attributes": { "label": "Energy Conference", "nodedef": "n905", "occurrences": 2, "color": "rgb(0,153,0)", "size": 3.6082125, "x": -117.16386, "y": 133.87375, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "906", "attributes": { "label": "Energy Source", "nodedef": "n906", "occurrences": 8, "color": "rgb(0,153,0)", "size": 3.655348, "x": -103.12554, "y": 136.29105, "z": 0, "nansi-louvain": 7, "nansi-degree": 9 } }, { "key": "907", "attributes": { "label": "Energy Technology", "nodedef": "n907", "occurrences": 4, "color": "rgb(0,153,0)", "size": 3.6223197, "x": -127.45953, "y": 131.4192, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "908", "attributes": { "label": "International Energy", "nodedef": "n908", "occurrences": 6, "color": "rgb(0,153,0)", "size": 3.6317973, "x": -144.46208, "y": 110.12537, "z": 0, "nansi-louvain": 6, "nansi-degree": 7 } }, { "key": "909", "attributes": { "label": "Solar Energy", "nodedef": "n909", "occurrences": 2, "color": "rgb(0,153,0)", "size": 3.600933, "x": -123.50092, "y": 138.78441, "z": 0, "nansi-louvain": 7, "nansi-degree": 2 } }, { "key": "910", "attributes": { "label": "Energy Technology Laboratory", "nodedef": "n910", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6, "x": -57.999554, "y": 138.66016, "z": 0, "nansi-louvain": 7, "nansi-degree": 1 } }, { "key": "911", "attributes": { "label": "Environmental Satellite", "nodedef": "n911", "occurrences": 5, "color": "rgb(255,153,153)", "size": 3.6428227, "x": 34.208244, "y": 236.64723, "z": 0, "nansi-louvain": 12, "nansi-degree": 8 } }, { "key": "912", "attributes": { "label": "Geostationary Operational", "nodedef": "n912", "occurrences": 4, "color": "rgb(255,153,153)", "size": 3.6428227, "x": 30.567636, "y": 244.06238, "z": 0, "nansi-louvain": 12, "nansi-degree": 8 } }, { "key": "913", "attributes": { "label": "Polar Orbit", "nodedef": "n913", "occurrences": 6, "color": "rgb(255,153,153)", "size": 3.655348, "x": 42.05073, "y": 238.71724, "z": 0, "nansi-louvain": 12, "nansi-degree": 9 } }, { "key": "914", "attributes": { "label": "Environnement", "nodedef": "n914", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.655348, "x": 48.848263, "y": -107.35811, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "915", "attributes": { "label": "Espace Naturel", "nodedef": "n915", "occurrences": 9, "color": "rgb(153,255,0)", "size": 3.701466, "x": 61.34805, "y": -171.41649, "z": 0, "nansi-louvain": 14, "nansi-degree": 12 } }, { "key": "916", "attributes": { "label": "Environnement De Basse", "nodedef": "n916", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.600933, "x": 100.14473, "y": -186.37665, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "917", "attributes": { "label": "Environnement De Développement", "nodedef": "n917", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 160.63605, "y": -173.79478, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "918", "attributes": { "label": "Environnement Protection", "nodedef": "n918", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6428227, "x": 80.22689, "y": -148.74123, "z": 0, "nansi-louvain": 14, "nansi-degree": 8 } }, { "key": "919", "attributes": { "label": "Protection Animale", "nodedef": "n919", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.600933, "x": 20.83134, "y": -161.25204, "z": 0, "nansi-louvain": 14, "nansi-degree": 2 } }, { "key": "920", "attributes": { "label": "Epfl Lausanne", "nodedef": "n920", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 189.5787, "y": 38.054188, "z": 0, "nansi-louvain": 4, "nansi-degree": 3 } }, { "key": "921", "attributes": { "label": "Équilibre Biologique", "nodedef": "n921", "occurrences": 1, "color": "rgb(102,102,0)", "size": 3.6317973, "x": 142.88905, "y": -183.56615, "z": 0, "nansi-louvain": 4, "nansi-degree": 7 } }, { "key": "922", "attributes": { "label": "Équilibre Chimique", "nodedef": "n922", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6036906, "x": 265.33017, "y": -114.19521, "z": 0, "nansi-louvain": 1, "nansi-degree": 3 } }, { "key": "923", "attributes": { "label": "Équilibre Physique", "nodedef": "n923", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": 13.283469, "y": -168.52492, "z": 0, "nansi-louvain": 14, "nansi-degree": 2 } }, { "key": "924", "attributes": { "label": "Prise De Conscience", "nodedef": "n924", "occurrences": 5, "color": "rgb(0,153,0)", "size": 3.6428227, "x": 42.184834, "y": -137.6623, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "925", "attributes": { "label": "Ère Glaciaire", "nodedef": "n925", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 90.339836, "y": -57.05534, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "926", "attributes": { "label": "Etude Du Quaternaire", "nodedef": "n926", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.6223197, "x": 150.34695, "y": -65.1993, "z": 0, "nansi-louvain": 14, "nansi-degree": 6 } }, { "key": "927", "attributes": { "label": "Erosion", "nodedef": "n927", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6082125, "x": -38.781963, "y": 103.9926, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "928", "attributes": { "label": "Soil Erosion", "nodedef": "n928", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6082125, "x": -49.642742, "y": 102.69727, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "929", "attributes": { "label": "Érosion Des Sols", "nodedef": "n929", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6693263, "x": 120.04345, "y": -155.30327, "z": 0, "nansi-louvain": 4, "nansi-degree": 10 } }, { "key": "930", "attributes": { "label": "Soil Science", "nodedef": "n930", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6036906, "x": 71.4921, "y": -90.872955, "z": 0, "nansi-louvain": 4, "nansi-degree": 3 } }, { "key": "931", "attributes": { "label": "Érosion Glaciaire", "nodedef": "n931", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 80.162384, "y": -37.780632, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "932", "attributes": { "label": "Grandes Rousses", "nodedef": "n932", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6, "x": 95.66878, "y": -20.060335, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "933", "attributes": { "label": "Erosion Marine", "nodedef": "n933", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6036906, "x": -9.229599, "y": 68.31807, "z": 0, "nansi-louvain": 7, "nansi-degree": 3 } }, { "key": "934", "attributes": { "label": "Marine Sediment", "nodedef": "n934", "occurrences": 4, "color": "rgb(0,153,0)", "size": 3.6082125, "x": -72.54487, "y": 118.237595, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "935", "attributes": { "label": "Parc Naturel", "nodedef": "n935", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6082125, "x": 69.99037, "y": -205.21725, "z": 0, "nansi-louvain": 14, "nansi-degree": 4 } }, { "key": "936", "attributes": { "label": "Espece Disparue", "nodedef": "n936", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6144404, "x": 61.263016, "y": -132.36128, "z": 0, "nansi-louvain": 17, "nansi-degree": 5 } }, { "key": "937", "attributes": { "label": "Espèce Rare", "nodedef": "n937", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6428227, "x": 42.21828, "y": -104.06557, "z": 0, "nansi-louvain": 14, "nansi-degree": 8 } }, { "key": "938", "attributes": { "label": "Extinction Des Espèces", "nodedef": "n938", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6428227, "x": 43.009552, "y": -111.49417, "z": 0, "nansi-louvain": 14, "nansi-degree": 8 } }, { "key": "939", "attributes": { "label": "Espèces", "nodedef": "n939", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6317973, "x": 40.706245, "y": -96.389626, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "940", "attributes": { "label": "Essai Historique", "nodedef": "n940", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -125.59925, "y": 19.413881, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "941", "attributes": { "label": "Wentworth Higginson", "nodedef": "n941", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -128.44035, "y": 26.202095, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "942", "attributes": { "label": "Estimation Précise", "nodedef": "n942", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": 163.51877, "y": -147.66496, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "943", "attributes": { "label": "Estuaires", "nodedef": "n943", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6082125, "x": 99.17397, "y": -159.53157, "z": 0, "nansi-louvain": 4, "nansi-degree": 4 } }, { "key": "944", "attributes": { "label": "Etats Arctiques", "nodedef": "n944", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.655348, "x": 23.615108, "y": -68.35029, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "945", "attributes": { "label": "Etats-Unis", "nodedef": "n945", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.600933, "x": -72.244255, "y": -16.895475, "z": 0, "nansi-louvain": 3, "nansi-degree": 2 } }, { "key": "946", "attributes": { "label": "Etude D'Impact,2", "nodedef": "n946", "color": "rgb(102,102,0)", "size": 3.6317973, "x": 106.93279, "y": -198.396, "z": 0, "nansi-louvain": 5, "nansi-degree": 7 } }, { "key": "947", "attributes": { "label": "Evaluation Des Risques", "nodedef": "n947", "occurrences": 4, "color": "rgb(102,102,0)", "size": 3.6144404, "x": 170.6026, "y": -201.63857, "z": 0, "nansi-louvain": 4, "nansi-degree": 5 } }, { "key": "948", "attributes": { "label": "Installations Classées", "nodedef": "n948", "occurrences": 2, "color": "rgb(153,0,0)", "size": 3.6082125, "x": 132.18959, "y": -222.88649, "z": 0, "nansi-louvain": 4, "nansi-degree": 4 } }, { "key": "949", "attributes": { "label": "Europe Via", "nodedef": "n949", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -139.81448, "y": -14.29986, "z": 0, "nansi-louvain": 6, "nansi-degree": 4 } }, { "key": "950", "attributes": { "label": "European Energy", "nodedef": "n950", "occurrences": 2, "color": "rgb(0,153,0)", "size": 3.6036906, "x": -146.0597, "y": 101.12242, "z": 0, "nansi-louvain": 6, "nansi-degree": 3 } }, { "key": "951", "attributes": { "label": "Évolution De La Glace", "nodedef": "n951", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6317973, "x": 92.413826, "y": -2.3672986, "z": 0, "nansi-louvain": 19, "nansi-degree": 7 } }, { "key": "952", "attributes": { "label": "Évolution Des Galaxies", "nodedef": "n952", "occurrences": 3, "color": "rgb(255,153,153)", "size": 3.6036906, "x": 176.66473, "y": -5.794433, "z": 0, "nansi-louvain": 17, "nansi-degree": 3 } }, { "key": "953", "attributes": { "label": "Évolution Dynamique", "nodedef": "n953", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 143.14812, "y": -18.63513, "z": 0, "nansi-louvain": 17, "nansi-degree": 5 } }, { "key": "954", "attributes": { "label": "Laboratoire De Géologie", "nodedef": "n954", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 172.96944, "y": -24.25539, "z": 0, "nansi-louvain": 17, "nansi-degree": 5 } }, { "key": "955", "attributes": { "label": "Expédition Arctique", "nodedef": "n955", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.655348, "x": -21.775705, "y": -9.47056, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "956", "attributes": { "label": "Documentaires Reportages", "nodedef": "n956", "occurrences": 7, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -15.374488, "y": -1.25556, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "957", "attributes": { "label": "Expédition Polaire Russe", "nodedef": "n957", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6317973, "x": -98.878456, "y": -21.154354, "z": 0, "nansi-louvain": 20, "nansi-degree": 7 } }, { "key": "958", "attributes": { "label": "Geographie De La Russie", "nodedef": "n958", "occurrences": 5, "color": "rgb(255,51,51)", "size": 3.6428227, "x": -109.99595, "y": -16.31158, "z": 0, "nansi-louvain": 20, "nansi-degree": 8 } }, { "key": "959", "attributes": { "label": "Hazardous Waste", "nodedef": "n959", "occurrences": 6, "color": "rgb(102,102,0)", "size": 3.6223197, "x": -126.500145, "y": 12.84441, "z": 0, "nansi-louvain": 20, "nansi-degree": 6 } }, { "key": "960", "attributes": { "label": "Law Of The Sea", "nodedef": "n960", "occurrences": 5, "color": "rgb(255,51,51)", "size": 3.6144404, "x": -110.28498, "y": -25.323826, "z": 0, "nansi-louvain": 20, "nansi-degree": 5 } }, { "key": "961", "attributes": { "label": "Nuclear Test", "nodedef": "n961", "occurrences": 7, "color": "rgb(255,51,51)", "size": 3.6317973, "x": -125.337326, "y": 5.7560062, "z": 0, "nansi-louvain": 20, "nansi-degree": 7 } }, { "key": "962", "attributes": { "label": "Test Ban", "nodedef": "n962", "occurrences": 6, "color": "rgb(255,51,51)", "size": 3.6223197, "x": -125.562294, "y": -14.156158, "z": 0, "nansi-louvain": 20, "nansi-degree": 6 } }, { "key": "963", "attributes": { "label": "Experience Scientifique", "nodedef": "n963", "occurrences": 2, "color": "rgb(255,204,102)", "size": 3.600933, "x": 84.255745, "y": -32.902298, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "964", "attributes": { "label": "Exploitation Des Ressources Naturelles", "nodedef": "n964", "occurrences": 5, "color": "rgb(153,0,0)", "size": 3.655348, "x": 47.679157, "y": -189.23827, "z": 0, "nansi-louvain": 5, "nansi-degree": 9 } }, { "key": "965", "attributes": { "label": "Exploitation Des Richesses", "nodedef": "n965", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6223197, "x": 33.504692, "y": -198.89534, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "966", "attributes": { "label": "Roald Amundsen", "nodedef": "n966", "occurrences": 8, "color": "rgb(153,255,255)", "size": 3.7195435, "x": -57.00881, "y": 188.92262, "z": 0, "nansi-louvain": 18, "nansi-degree": 13 } }, { "key": "967", "attributes": { "label": "Frederick Cook", "nodedef": "n967", "occurrences": 8, "color": "rgb(102,255,102)", "size": 3.6693263, "x": -92.09284, "y": 133.99028, "z": 0, "nansi-louvain": 18, "nansi-degree": 10 } }, { "key": "968", "attributes": { "label": "Exploration Well", "nodedef": "n968", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.600933, "x": -250.78955, "y": 90.75182, "z": 0, "nansi-louvain": 6, "nansi-degree": 2 } }, { "key": "969", "attributes": { "label": "Extension De Sa Zee", "nodedef": "n969", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -28.285883, "y": -113.841156, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "970", "attributes": { "label": "Grande Puissance", "nodedef": "n970", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6144404, "x": -46.110386, "y": -140.48837, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "971", "attributes": { "label": "Extent Minimum", "nodedef": "n971", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6144404, "x": -21.229578, "y": 196.80101, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "972", "attributes": { "label": "New values", "nodedef": "n972", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6, "x": -16.943527, "y": 214.02863, "z": 0, "nansi-louvain": 7, "nansi-degree": 1 } }, { "key": "973", "attributes": { "label": "Extinction", "nodedef": "n973", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6036906, "x": -67.82668, "y": 82.92679, "z": 0, "nansi-louvain": 7, "nansi-degree": 3 } }, { "key": "974", "attributes": { "label": "Natural Histories", "nodedef": "n974", "occurrences": 8, "color": "rgb(102,255,102)", "size": 3.6693263, "x": -49.7037, "y": 83.633156, "z": 0, "nansi-louvain": 7, "nansi-degree": 10 } }, { "key": "975", "attributes": { "label": "Extinction Massive", "nodedef": "n975", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.655348, "x": 63.20324, "y": -88.8781, "z": 0, "nansi-louvain": 14, "nansi-degree": 9 } }, { "key": "976", "attributes": { "label": "Habitat Naturel", "nodedef": "n976", "occurrences": 7, "color": "rgb(153,255,0)", "size": 3.655348, "x": 77.34685, "y": -173.39488, "z": 0, "nansi-louvain": 14, "nansi-degree": 9 } }, { "key": "977", "attributes": { "label": "Faible Superficie", "nodedef": "n977", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 28.10143, "y": -15.438551, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "978", "attributes": { "label": "Farthest North", "nodedef": "n978", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6082125, "x": -53.272995, "y": 216.23885, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "979", "attributes": { "label": "Fridtjof Nansen", "nodedef": "n979", "occurrences": 8, "color": "rgb(0,204,204)", "size": 3.701466, "x": -69.68144, "y": 221.24622, "z": 0, "nansi-louvain": 18, "nansi-degree": 12 } }, { "key": "980", "attributes": { "label": "Fermentation Bactérienne", "nodedef": "n980", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6082125, "x": 131.5034, "y": -126.60105, "z": 0, "nansi-louvain": 9, "nansi-degree": 4 } }, { "key": "981", "attributes": { "label": "Longue Distance", "nodedef": "n981", "occurrences": 3, "color": "rgb(204,204,255)", "size": 3.6036906, "x": -205.21637, "y": -103.38819, "z": 0, "nansi-louvain": 2, "nansi-degree": 3 } }, { "key": "982", "attributes": { "label": "Filet De Pêche", "nodedef": "n982", "occurrences": 2, "color": "rgb(153,0,0)", "size": 3.6082125, "x": 31.46701, "y": -184.63156, "z": 0, "nansi-louvain": 14, "nansi-degree": 4 } }, { "key": "983", "attributes": { "label": "Oiseau Marin", "nodedef": "n983", "occurrences": 9, "color": "rgb(153,255,0)", "size": 3.701466, "x": -8.769896, "y": -110.72691, "z": 0, "nansi-louvain": 14, "nansi-degree": 12 } }, { "key": "984", "attributes": { "label": "Finlande", "nodedef": "n984", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6223197, "x": -76.076706, "y": -155.70631, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "985", "attributes": { "label": "Finnish Companies", "nodedef": "n985", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.600933, "x": -104.003265, "y": -176.27101, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "986", "attributes": { "label": "Finnish Economy", "nodedef": "n986", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.600933, "x": -102.27499, "y": -178.88002, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "987", "attributes": { "label": "Golfe De Finlande", "nodedef": "n987", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6693263, "x": -74.995316, "y": -107.20958, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "988", "attributes": { "label": "Finnish Lapland", "nodedef": "n988", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -145.6016, "y": 227.69078, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "989", "attributes": { "label": "Fishing Ship", "nodedef": "n989", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.600933, "x": -238.15277, "y": 184.21484, "z": 0, "nansi-louvain": 16, "nansi-degree": 2 } }, { "key": "990", "attributes": { "label": "Fjell", "nodedef": "n990", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6036906, "x": -164.63628, "y": 114.63324, "z": 0, "nansi-louvain": 6, "nansi-degree": 3 } }, { "key": "991", "attributes": { "label": "Petroleum Congress", "nodedef": "n991", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.6082125, "x": -198.80421, "y": 99.98989, "z": 0, "nansi-louvain": 6, "nansi-degree": 4 } }, { "key": "992", "attributes": { "label": "Fjord", "nodedef": "n992", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -186.79683, "y": 166.89519, "z": 0, "nansi-louvain": 10, "nansi-degree": 6 } }, { "key": "993", "attributes": { "label": "Norwegian Fjords", "nodedef": "n993", "occurrences": 6, "color": "rgb(0,204,204)", "size": 3.6693263, "x": -197.39606, "y": 210.50949, "z": 0, "nansi-louvain": 10, "nansi-degree": 10 } }, { "key": "994", "attributes": { "label": "Fjord Du Saguenay", "nodedef": "n994", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -87.79442, "y": 7.0019746, "z": 0, "nansi-louvain": 10, "nansi-degree": 3 } }, { "key": "995", "attributes": { "label": "Fjord Horse", "nodedef": "n995", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -203.7074, "y": 200.56421, "z": 0, "nansi-louvain": 10, "nansi-degree": 3 } }, { "key": "996", "attributes": { "label": "Fjords Of Norway", "nodedef": "n996", "occurrences": 7, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -204.98781, "y": 207.87749, "z": 0, "nansi-louvain": 10, "nansi-degree": 7 } }, { "key": "997", "attributes": { "label": "Fjords Tours", "nodedef": "n997", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -196.65358, "y": 186.59409, "z": 0, "nansi-louvain": 10, "nansi-degree": 3 } }, { "key": "998", "attributes": { "label": "Flam Railway", "nodedef": "n998", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -201.98775, "y": 218.4114, "z": 0, "nansi-louvain": 10, "nansi-degree": 4 } }, { "key": "999", "attributes": { "label": "Fleuve Amour", "nodedef": "n999", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.600933, "x": -57.593853, "y": -115.6403, "z": 0, "nansi-louvain": 3, "nansi-degree": 2 } }, { "key": "1000", "attributes": { "label": "Île De Sakhaline", "nodedef": "n1000", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -45.902386, "y": -131.20715, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "1001", "attributes": { "label": "Flux Zonal", "nodedef": "n1001", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 138.8182, "y": -8.52224, "z": 0, "nansi-louvain": 1, "nansi-degree": 7 } }, { "key": "1002", "attributes": { "label": "Bass Temperature", "nodedef": "n1002", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 123.575874, "y": -42.56313, "z": 0, "nansi-louvain": 1, "nansi-degree": 3 } }, { "key": "1003", "attributes": { "label": "Physique Des Particules", "nodedef": "n1003", "occurrences": 8, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 156.26482, "y": -10.695087, "z": 0, "nansi-louvain": 17, "nansi-degree": 7 } }, { "key": "1004", "attributes": { "label": "Fonds Côtiers", "nodedef": "n1004", "occurrences": 1, "color": "rgb(0,153,0)", "size": 3.6428227, "x": 44.000443, "y": -134.49663, "z": 0, "nansi-louvain": 5, "nansi-degree": 8 } }, { "key": "1005", "attributes": { "label": "Ifremer Brest", "nodedef": "n1005", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.600933, "x": 55.18673, "y": -40.219112, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "1006", "attributes": { "label": "Fonds Marins", "nodedef": "n1006", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 138.05156, "y": -47.22257, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "1007", "attributes": { "label": "Fonds Marins Du Pôle", "nodedef": "n1007", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6144404, "x": -22.645544, "y": -89.73847, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "1008", "attributes": { "label": "Reserve Petroliere", "nodedef": "n1008", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.6317973, "x": -62.95449, "y": -111.68696, "z": 0, "nansi-louvain": 15, "nansi-degree": 7 } }, { "key": "1009", "attributes": { "label": "Stephen Harper", "nodedef": "n1009", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.600933, "x": -14.604505, "y": -63.890865, "z": 0, "nansi-louvain": 3, "nansi-degree": 2 } }, { "key": "1010", "attributes": { "label": "Fonte", "nodedef": "n1010", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6, "x": -103.64831, "y": 17.052528, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1011", "attributes": { "label": "Fonte Annuelle", "nodedef": "n1011", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 39.269947, "y": -13.260152, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "1012", "attributes": { "label": "Réfugié Climatique", "nodedef": "n1012", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.655348, "x": 34.025978, "y": -93.97843, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "1013", "attributes": { "label": "Goddard Institute", "nodedef": "n1013", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -46.925995, "y": 74.30354, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "1014", "attributes": { "label": "James Hansen", "nodedef": "n1014", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6317973, "x": -52.071064, "y": 79.758224, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "1015", "attributes": { "label": "Kilometre Carre", "nodedef": "n1015", "occurrences": 11, "color": "rgb(102,255,102)", "size": 3.7195435, "x": 18.52327, "y": -61.359478, "z": 0, "nansi-louvain": 3, "nansi-degree": 13 } }, { "key": "1016", "attributes": { "label": "Fonte Banquise", "nodedef": "n1016", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.655348, "x": 43.514587, "y": 15.136065, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1017", "attributes": { "label": "Manchot Empereur", "nodedef": "n1017", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6082125, "x": 63.55571, "y": 50.193047, "z": 0, "nansi-louvain": 19, "nansi-degree": 4 } }, { "key": "1018", "attributes": { "label": "Neige Au Sol", "nodedef": "n1018", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 140.85014, "y": -31.188803, "z": 0, "nansi-louvain": 1, "nansi-degree": 3 } }, { "key": "1019", "attributes": { "label": "Forage", "nodedef": "n1019", "occurrences": 1, "color": "rgb(102,102,0)", "size": 3.600933, "x": 308.79312, "y": 359.84082, "z": 0, "nansi-louvain": 23, "nansi-degree": 2 } }, { "key": "1020", "attributes": { "label": "Forage Research", "nodedef": "n1020", "occurrences": 3, "color": "rgb(102,102,0)", "size": 3.6, "x": 307.84824, "y": 354.8162, "z": 0, "nansi-louvain": 23, "nansi-degree": 1 } }, { "key": "1021", "attributes": { "label": "Forage Seed", "nodedef": "n1021", "occurrences": 2, "color": "rgb(102,102,0)", "size": 3.6, "x": 304.77554, "y": 357.18753, "z": 0, "nansi-louvain": 23, "nansi-degree": 1 } }, { "key": "1022", "attributes": { "label": "Impact Écologique", "nodedef": "n1022", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6693263, "x": 88.8486, "y": -138.18254, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "1023", "attributes": { "label": "Nature Bassin", "nodedef": "n1023", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6036906, "x": 113.96315, "y": -168.16637, "z": 0, "nansi-louvain": 4, "nansi-degree": 3 } }, { "key": "1024", "attributes": { "label": "Frappes Nucléaires", "nodedef": "n1024", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -142.3258, "y": -50.140312, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1025", "attributes": { "label": "Observatoire De Recherche", "nodedef": "n1025", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 124.533165, "y": -93.656944, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "1026", "attributes": { "label": "Frederick Albert", "nodedef": "n1026", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6082125, "x": -89.54547, "y": 118.13765, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "1027", "attributes": { "label": "Race To The Pole", "nodedef": "n1027", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -82.86374, "y": 160.81151, "z": 0, "nansi-louvain": 18, "nansi-degree": 3 } }, { "key": "1028", "attributes": { "label": "Commission For Refugees", "nodedef": "n1028", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6, "x": -68.08869, "y": 239.49724, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1029", "attributes": { "label": "Institute Affiliate", "nodedef": "n1029", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6, "x": -72.89531, "y": 237.22447, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1030", "attributes": { "label": "King Haakon", "nodedef": "n1030", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6, "x": -72.25579, "y": 242.32996, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1031", "attributes": { "label": "Froid", "nodedef": "n1031", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.600933, "x": 129.80669, "y": -139.21411, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "1032", "attributes": { "label": "Frontière Terrestre", "nodedef": "n1032", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -43.005745, "y": -161.07913, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "1033", "attributes": { "label": "Gas Condensate", "nodedef": "n1033", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.6223197, "x": -205.3024, "y": 92.97198, "z": 0, "nansi-louvain": 6, "nansi-degree": 6 } }, { "key": "1034", "attributes": { "label": "Gas Field", "nodedef": "n1034", "occurrences": 9, "color": "rgb(102,0,102)", "size": 3.6847134, "x": -234.94615, "y": 97.34775, "z": 0, "nansi-louvain": 6, "nansi-degree": 11 } }, { "key": "1035", "attributes": { "label": "Gas Liquefaction", "nodedef": "n1035", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.6223197, "x": -234.84146, "y": 93.12056, "z": 0, "nansi-louvain": 6, "nansi-degree": 6 } }, { "key": "1036", "attributes": { "label": "Liquefied Natural Gas", "nodedef": "n1036", "occurrences": 5, "color": "rgb(102,0,102)", "size": 3.6223197, "x": -216.60739, "y": 84.23991, "z": 0, "nansi-louvain": 6, "nansi-degree": 6 } }, { "key": "1037", "attributes": { "label": "Pipeline Company", "nodedef": "n1037", "occurrences": 6, "color": "rgb(102,0,102)", "size": 3.655348, "x": -230.60622, "y": 78.900024, "z": 0, "nansi-louvain": 6, "nansi-degree": 9 } }, { "key": "1038", "attributes": { "label": "Pipeline Safety", "nodedef": "n1038", "occurrences": 3, "color": "rgb(102,0,102)", "size": 3.6144404, "x": -246.43402, "y": 74.98459, "z": 0, "nansi-louvain": 6, "nansi-degree": 5 } }, { "key": "1039", "attributes": { "label": "Gas Transmission", "nodedef": "n1039", "occurrences": 7, "color": "rgb(102,0,102)", "size": 3.655348, "x": -249.90715, "y": 83.094376, "z": 0, "nansi-louvain": 6, "nansi-degree": 9 } }, { "key": "1040", "attributes": { "label": "Gas Storage", "nodedef": "n1040", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.6036906, "x": -256.83627, "y": 85.83114, "z": 0, "nansi-louvain": 6, "nansi-degree": 3 } }, { "key": "1041", "attributes": { "label": "Gaz", "nodedef": "n1041", "occurrences": 1, "color": "rgb(0,153,0)", "size": 3.6317973, "x": 55.17977, "y": -137.74486, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "1042", "attributes": { "label": "Gaz De France", "nodedef": "n1042", "occurrences": 10, "color": "rgb(102,0,102)", "size": 3.6693263, "x": -29.909842, "y": -142.63037, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "1043", "attributes": { "label": "Reseau De Distribution", "nodedef": "n1043", "occurrences": 2, "color": "rgb(153,0,0)", "size": 3.600933, "x": 17.605442, "y": -163.22975, "z": 0, "nansi-louvain": 9, "nansi-degree": 2 } }, { "key": "1044", "attributes": { "label": "Gaz Naturel Liquéfié", "nodedef": "n1044", "occurrences": 2, "color": "rgb(0,153,0)", "size": 3.655348, "x": -10.13736, "y": -166.35992, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "1045", "attributes": { "label": "Gaz Naturel Pour Véhicules", "nodedef": "n1045", "occurrences": 3, "color": "rgb(0,153,0)", "size": 3.6223197, "x": 3.4302144, "y": -103.929726, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "1046", "attributes": { "label": "Terminal Méthanier", "nodedef": "n1046", "occurrences": 5, "color": "rgb(102,0,102)", "size": 3.655348, "x": -42.76443, "y": -188.28865, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "1047", "attributes": { "label": "Natural Gas", "nodedef": "n1047", "occurrences": 2, "color": "rgb(0,153,0)", "size": 3.6144404, "x": -152.91248, "y": 45.998966, "z": 0, "nansi-louvain": 6, "nansi-degree": 5 } }, { "key": "1048", "attributes": { "label": "Gaz Parfaits", "nodedef": "n1048", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 299.44098, "y": -83.49448, "z": 0, "nansi-louvain": 1, "nansi-degree": 7 } }, { "key": "1049", "attributes": { "label": "Gazoduc Nord Stream", "nodedef": "n1049", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.6317973, "x": -66.97033, "y": -129.31104, "z": 0, "nansi-louvain": 5, "nansi-degree": 7 } }, { "key": "1050", "attributes": { "label": "Nord Stream", "nodedef": "n1050", "occurrences": 5, "color": "rgb(255,51,51)", "size": 3.6317973, "x": -169.20381, "y": 3.9789262, "z": 0, "nansi-louvain": 6, "nansi-degree": 7 } }, { "key": "1051", "attributes": { "label": "Gazoducs", "nodedef": "n1051", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.6428227, "x": -27.00493, "y": -152.1494, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "1052", "attributes": { "label": "Gazprom", "nodedef": "n1052", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.6428227, "x": -210.1996, "y": 50.88749, "z": 0, "nansi-louvain": 6, "nansi-degree": 8 } }, { "key": "1053", "attributes": { "label": "Oao Gazprom", "nodedef": "n1053", "occurrences": 3, "color": "rgb(102,0,102)", "size": 3.6223197, "x": -223.50766, "y": 59.680275, "z": 0, "nansi-louvain": 6, "nansi-degree": 6 } }, { "key": "1054", "attributes": { "label": "Gbep", "nodedef": "n1054", "occurrences": 1, "color": "rgb(0,153,0)", "size": 3.6144404, "x": -97.53926, "y": 87.67932, "z": 0, "nansi-louvain": 13, "nansi-degree": 5 } }, { "key": "1055", "attributes": { "label": "Galveston Bay", "nodedef": "n1055", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6, "x": -108.031555, "y": 88.00658, "z": 0, "nansi-louvain": 13, "nansi-degree": 1 } }, { "key": "1056", "attributes": { "label": "Gédéon Programmes", "nodedef": "n1056", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -54.902153, "y": 38.41842, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "1057", "attributes": { "label": "Film Documentaire", "nodedef": "n1057", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.600933, "x": -17.070274, "y": 5.893407, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1058", "attributes": { "label": "Gel", "nodedef": "n1058", "occurrences": 1, "color": "rgb(51,153,255)", "size": 3.6, "x": -376.82135, "y": -210.36017, "z": 0, "nansi-louvain": 24, "nansi-degree": 1 } }, { "key": "1059", "attributes": { "label": "Afge Local", "nodedef": "n1059", "occurrences": 2, "color": "rgb(51,153,255)", "size": 3.6, "x": -375.45572, "y": -212.91014, "z": 0, "nansi-louvain": 24, "nansi-degree": 1 } }, { "key": "1060", "attributes": { "label": "Global positioning", "nodedef": "n1060", "occurrences": 7, "color": "rgb(255,255,51)", "size": 3.655348, "x": 18.134483, "y": 347.81546, "z": 0, "nansi-louvain": 0, "nansi-degree": 9 } }, { "key": "1061", "attributes": { "label": "Geographic Adventure", "nodedef": "n1061", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.600933, "x": -185.89278, "y": 141.31622, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1062", "attributes": { "label": "Geographical Society", "nodedef": "n1062", "occurrences": 9, "color": "rgb(153,255,0)", "size": 3.6428227, "x": -174.25351, "y": 143.69589, "z": 0, "nansi-louvain": 0, "nansi-degree": 8 } }, { "key": "1063", "attributes": { "label": "National Geographic Society", "nodedef": "n1063", "occurrences": 7, "color": "rgb(153,255,0)", "size": 3.6693263, "x": -177.68814, "y": 127.0909, "z": 0, "nansi-louvain": 0, "nansi-degree": 10 } }, { "key": "1064", "attributes": { "label": "Geographic Channel", "nodedef": "n1064", "occurrences": 6, "color": "rgb(153,255,0)", "size": 3.6223197, "x": -178.20935, "y": 136.54375, "z": 0, "nansi-louvain": 0, "nansi-degree": 6 } }, { "key": "1065", "attributes": { "label": "Geographic Explorer", "nodedef": "n1065", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6223197, "x": -166.4054, "y": 138.89792, "z": 0, "nansi-louvain": 0, "nansi-degree": 6 } }, { "key": "1066", "attributes": { "label": "Geographic Magazine", "nodedef": "n1066", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6223197, "x": -152.79343, "y": 135.99675, "z": 0, "nansi-louvain": 0, "nansi-degree": 6 } }, { "key": "1067", "attributes": { "label": "Geographic Traveler", "nodedef": "n1067", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.600933, "x": -189.3801, "y": 138.88069, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1068", "attributes": { "label": "Geographic Video", "nodedef": "n1068", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.600933, "x": -175.71262, "y": 131.84937, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1069", "attributes": { "label": "Geographic World", "nodedef": "n1069", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6036906, "x": -188.60373, "y": 134.18477, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "1070", "attributes": { "label": "Géologie", "nodedef": "n1070", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 133.80481, "y": -62.96446, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "1071", "attributes": { "label": "Géophysique", "nodedef": "n1071", "occurrences": 1, "color": "rgb(255,204,51)", "size": 3.6223197, "x": 176.5453, "y": 68.23207, "z": 0, "nansi-louvain": 17, "nansi-degree": 6 } }, { "key": "1072", "attributes": { "label": "Geophysical Services", "nodedef": "n1072", "occurrences": 2, "color": "rgb(255,204,51)", "size": 3.6, "x": 189.09958, "y": 79.95026, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "1073", "attributes": { "label": "Geophysique Appliquee", "nodedef": "n1073", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 210.16277, "y": 58.651287, "z": 0, "nansi-louvain": 17, "nansi-degree": 6 } }, { "key": "1074", "attributes": { "label": "Geophysique Interne", "nodedef": "n1074", "occurrences": 5, "color": "rgb(255,204,51)", "size": 3.6693263, "x": 180.7894, "y": 61.794193, "z": 0, "nansi-louvain": 17, "nansi-degree": 10 } }, { "key": "1075", "attributes": { "label": "Institute Of Geophysics", "nodedef": "n1075", "occurrences": 2, "color": "rgb(255,204,102)", "size": 3.6036906, "x": 80.64952, "y": 105.079605, "z": 0, "nansi-louvain": 7, "nansi-degree": 3 } }, { "key": "1076", "attributes": { "label": "Laboratoire De Géophysique", "nodedef": "n1076", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.6428227, "x": 189.24965, "y": 50.751053, "z": 0, "nansi-louvain": 17, "nansi-degree": 8 } }, { "key": "1077", "attributes": { "label": "Institut De Physique", "nodedef": "n1077", "occurrences": 7, "color": "rgb(255,255,51)", "size": 3.655348, "x": 189.11049, "y": 14.608364, "z": 0, "nansi-louvain": 17, "nansi-degree": 9 } }, { "key": "1078", "attributes": { "label": "Joseph Fourier", "nodedef": "n1078", "occurrences": 7, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 189.65927, "y": 57.27051, "z": 0, "nansi-louvain": 17, "nansi-degree": 6 } }, { "key": "1079", "attributes": { "label": "Université Joseph", "nodedef": "n1079", "occurrences": 7, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 175.67433, "y": 54.93793, "z": 0, "nansi-louvain": 17, "nansi-degree": 7 } }, { "key": "1080", "attributes": { "label": "George Hubert Wilkins", "nodedef": "n1080", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -96.73339, "y": 150.08437, "z": 0, "nansi-louvain": 18, "nansi-degree": 3 } }, { "key": "1081", "attributes": { "label": "Géosphère", "nodedef": "n1081", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6223197, "x": -58.156826, "y": 157.49628, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "1082", "attributes": { "label": "Weather Satellite", "nodedef": "n1082", "occurrences": 5, "color": "rgb(255,153,153)", "size": 3.701466, "x": 38.010437, "y": 234.1475, "z": 0, "nansi-louvain": 12, "nansi-degree": 12 } }, { "key": "1083", "attributes": { "label": "Satellite Image", "nodedef": "n1083", "occurrences": 8, "color": "rgb(255,153,153)", "size": 3.6847134, "x": 32.45033, "y": 231.79265, "z": 0, "nansi-louvain": 12, "nansi-degree": 11 } }, { "key": "1084", "attributes": { "label": "Gérard Jugie", "nodedef": "n1084", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6144404, "x": 70.08814, "y": 2.7837873, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "1085", "attributes": { "label": "Accès De Base", "nodedef": "n1085", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6, "x": 195.8872, "y": -169.43822, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1086", "attributes": { "label": "Giec", "nodedef": "n1086", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 78.03675, "y": -63.35173, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "1087", "attributes": { "label": "Rajendra Pachauri", "nodedef": "n1087", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6082125, "x": 52.982414, "y": 1.6913036, "z": 0, "nansi-louvain": 9, "nansi-degree": 4 } }, { "key": "1088", "attributes": { "label": "Glace", "nodedef": "n1088", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.600933, "x": 50.43437, "y": 115.9042, "z": 0, "nansi-louvain": 18, "nansi-degree": 2 } }, { "key": "1090", "attributes": { "label": "Ice Hotel", "nodedef": "n1090", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -64.49955, "y": 204.44814, "z": 0, "nansi-louvain": 18, "nansi-degree": 3 } }, { "key": "1091", "attributes": { "label": "Glace Continentale", "nodedef": "n1091", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6693263, "x": 83.257706, "y": -46.666317, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "1092", "attributes": { "label": "Glace Pérenne", "nodedef": "n1092", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6428227, "x": 35.69373, "y": 0.857531, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "1093", "attributes": { "label": "Glacial Erosion", "nodedef": "n1093", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6082125, "x": -21.214285, "y": 200.80583, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "1094", "attributes": { "label": "Glacial Lake", "nodedef": "n1094", "occurrences": 6, "color": "rgb(153,255,255)", "size": 3.6223197, "x": -35.506916, "y": 200.64854, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "1095", "attributes": { "label": "Glacial Moraine", "nodedef": "n1095", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6036906, "x": -80.97169, "y": 188.39722, "z": 0, "nansi-louvain": 7, "nansi-degree": 3 } }, { "key": "1096", "attributes": { "label": "Glacial Outwash", "nodedef": "n1096", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6144404, "x": -50.019043, "y": 168.88234, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "1097", "attributes": { "label": "Glacial Till", "nodedef": "n1097", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -33.914646, "y": 181.96614, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "1098", "attributes": { "label": "Glacial Period", "nodedef": "n1098", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6317973, "x": -29.627876, "y": 198.72252, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "1099", "attributes": { "label": "Glacial Retreat", "nodedef": "n1099", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6082125, "x": -68.90047, "y": 177.8156, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "1100", "attributes": { "label": "Glacial Valley", "nodedef": "n1100", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.600933, "x": -19.924963, "y": 217.89133, "z": 0, "nansi-louvain": 7, "nansi-degree": 2 } }, { "key": "1101", "attributes": { "label": "Glaciation", "nodedef": "n1101", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6317973, "x": -25.747955, "y": 202.87668, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "1102", "attributes": { "label": "Interglacial Period", "nodedef": "n1102", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6317973, "x": -31.175037, "y": 179.857, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "1103", "attributes": { "label": "Glaciers Of Iceland", "nodedef": "n1103", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -120.08829, "y": 173.55348, "z": 0, "nansi-louvain": 10, "nansi-degree": 3 } }, { "key": "1104", "attributes": { "label": "Glaciologie", "nodedef": "n1104", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.655348, "x": 47.082443, "y": 85.68284, "z": 0, "nansi-louvain": 7, "nansi-degree": 9 } }, { "key": "1105", "attributes": { "label": "Glaciologie Océanographie", "nodedef": "n1105", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 132.3188, "y": -51.889362, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "1106", "attributes": { "label": "Discipline Scientifique", "nodedef": "n1106", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.600933, "x": 201.23639, "y": -18.191076, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "1107", "attributes": { "label": "Glaciologues", "nodedef": "n1107", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.655348, "x": 65.11797, "y": -30.983059, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "1108", "attributes": { "label": "Global Average Temperature", "nodedef": "n1108", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 5.089423, "y": 186.47092, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "1109", "attributes": { "label": "Global Carbon", "nodedef": "n1109", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6144404, "x": -43.8347, "y": 100.73068, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "1110", "attributes": { "label": "Global Concern Expedition", "nodedef": "n1110", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.600933, "x": 56.026844, "y": 107.421814, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "1111", "attributes": { "label": "Science & Vie", "nodedef": "n1111", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 127.877655, "y": 30.520279, "z": 0, "nansi-louvain": 17, "nansi-degree": 3 } }, { "key": "1112", "attributes": { "label": "Global Exploration", "nodedef": "n1112", "occurrences": 2, "color": "rgb(255,153,153)", "size": 3.6036906, "x": 86.120804, "y": 139.35532, "z": 0, "nansi-louvain": 12, "nansi-degree": 3 } }, { "key": "1113", "attributes": { "label": "Global Ocean", "nodedef": "n1113", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.600933, "x": 14.827738, "y": 65.18302, "z": 0, "nansi-louvain": 7, "nansi-degree": 2 } }, { "key": "1114", "attributes": { "label": "Gps Navigation", "nodedef": "n1114", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 20.848894, "y": 367.30676, "z": 0, "nansi-louvain": 0, "nansi-degree": 6 } }, { "key": "1115", "attributes": { "label": "Gps Satellite", "nodedef": "n1115", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 23.63809, "y": 358.64844, "z": 0, "nansi-louvain": 0, "nansi-degree": 8 } }, { "key": "1116", "attributes": { "label": "Satellite Navigation", "nodedef": "n1116", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 25.107119, "y": 364.983, "z": 0, "nansi-louvain": 0, "nansi-degree": 6 } }, { "key": "1117", "attributes": { "label": "Global Warning", "nodedef": "n1117", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6223197, "x": -26.670753, "y": 105.00892, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "1118", "attributes": { "label": "Glouton", "nodedef": "n1118", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6, "x": -32.315304, "y": -80.87205, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "1119", "attributes": { "label": "Tara Arctic", "nodedef": "n1119", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6847134, "x": 25.364477, "y": -12.806184, "z": 0, "nansi-louvain": 3, "nansi-degree": 11 } }, { "key": "1120", "attributes": { "label": "Gold Rush", "nodedef": "n1120", "occurrences": 5, "color": "rgb(153,0,0)", "size": 3.6317973, "x": -141.72993, "y": 69.56952, "z": 0, "nansi-louvain": 16, "nansi-degree": 7 } }, { "key": "1121", "attributes": { "label": "Klondike Gold", "nodedef": "n1121", "occurrences": 5, "color": "rgb(153,0,0)", "size": 3.6144404, "x": -158.62494, "y": 107.24179, "z": 0, "nansi-louvain": 16, "nansi-degree": 5 } }, { "key": "1122", "attributes": { "label": "Golfe De Botnie", "nodedef": "n1122", "occurrences": 6, "color": "rgb(255,51,51)", "size": 3.701466, "x": -62.532444, "y": -91.695114, "z": 0, "nansi-louvain": 3, "nansi-degree": 12 } }, { "key": "1123", "attributes": { "label": "Grand Port", "nodedef": "n1123", "occurrences": 7, "color": "rgb(153,0,0)", "size": 3.6317973, "x": -60.79839, "y": -192.13933, "z": 0, "nansi-louvain": 5, "nansi-degree": 7 } }, { "key": "1124", "attributes": { "label": "Péninsule Scandinave", "nodedef": "n1124", "occurrences": 8, "color": "rgb(255,51,51)", "size": 3.701466, "x": -83.609634, "y": -81.78701, "z": 0, "nansi-louvain": 3, "nansi-degree": 12 } }, { "key": "1125", "attributes": { "label": "Norvège Du Nord", "nodedef": "n1125", "occurrences": 4, "color": "rgb(153,0,0)", "size": 3.6693263, "x": -74.60003, "y": -38.38049, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "1126", "attributes": { "label": "Pays Balte", "nodedef": "n1126", "occurrences": 5, "color": "rgb(255,51,51)", "size": 3.6428227, "x": -71.66582, "y": -139.57153, "z": 0, "nansi-louvain": 5, "nansi-degree": 8 } }, { "key": "1129", "attributes": { "label": "Nunavut Land", "nodedef": "n1129", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -163.74211, "y": 185.57597, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "1130", "attributes": { "label": "Satellite Orbit", "nodedef": "n1130", "occurrences": 4, "color": "rgb(255,153,153)", "size": 3.6317973, "x": 24.784546, "y": 279.49463, "z": 0, "nansi-louvain": 12, "nansi-degree": 7 } }, { "key": "1131", "attributes": { "label": "Gradient Thermique Adiabatique", "nodedef": "n1131", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6144404, "x": 212.38321, "y": -46.562183, "z": 0, "nansi-louvain": 1, "nansi-degree": 5 } }, { "key": "1132", "attributes": { "label": "Calcul Des Variations", "nodedef": "n1132", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.600933, "x": 184.29662, "y": -77.37787, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "1133", "attributes": { "label": "Grand Dauphin", "nodedef": "n1133", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6082125, "x": -8.908156, "y": -135.8155, "z": 0, "nansi-louvain": 14, "nansi-degree": 4 } }, { "key": "1134", "attributes": { "label": "Grand Lac Des Esclaves", "nodedef": "n1134", "occurrences": 2, "color": "rgb(204,204,255)", "size": 3.6144404, "x": -37.955746, "y": -52.519592, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "1135", "attributes": { "label": "Grand Migrateur", "nodedef": "n1135", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6036906, "x": 44.55702, "y": -173.27127, "z": 0, "nansi-louvain": 14, "nansi-degree": 3 } }, { "key": "1136", "attributes": { "label": "Nicolas Vanier", "nodedef": "n1136", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -100.297424, "y": -37.12297, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "1137", "attributes": { "label": "Port Maritime", "nodedef": "n1137", "occurrences": 4, "color": "rgb(153,0,0)", "size": 3.6082125, "x": -66.40469, "y": -213.9807, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "1138", "attributes": { "label": "Port Autonome", "nodedef": "n1138", "occurrences": 7, "color": "rgb(153,0,0)", "size": 3.6428227, "x": -52.505688, "y": -208.13742, "z": 0, "nansi-louvain": 5, "nansi-degree": 8 } }, { "key": "1139", "attributes": { "label": "Grand Public", "nodedef": "n1139", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": 158.4264, "y": -139.75174, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1140", "attributes": { "label": "Grande Echelle", "nodedef": "n1140", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6144404, "x": 108.46733, "y": -132.58734, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "1141", "attributes": { "label": "Grande Odyssée", "nodedef": "n1141", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -106.914536, "y": -39.453342, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "1142", "attributes": { "label": "Yukon Quest", "nodedef": "n1142", "occurrences": 4, "color": "rgb(153,0,0)", "size": 3.6144404, "x": -131.59264, "y": 2.5135977, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "1143", "attributes": { "label": "Gravures", "nodedef": "n1143", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -111.48787, "y": 15.001554, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1144", "attributes": { "label": "Greenland Sea", "nodedef": "n1144", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.655348, "x": -90.95839, "y": 171.49483, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "1145", "attributes": { "label": "Groenland", "nodedef": "n1145", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -36.206184, "y": 86.05507, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "1146", "attributes": { "label": "Kalaallit Nunaat", "nodedef": "n1146", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6144404, "x": -81.4008, "y": 145.65776, "z": 0, "nansi-louvain": 18, "nansi-degree": 5 } }, { "key": "1147", "attributes": { "label": "Pressure Treat", "nodedef": "n1147", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6, "x": -36.563942, "y": 91.22314, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1148", "attributes": { "label": "Gulf-Stream", "nodedef": "n1148", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6082125, "x": -82.87585, "y": 147.64189, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "1149", "attributes": { "label": "Habitants Locaux", "nodedef": "n1149", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6, "x": -49.015717, "y": -68.35371, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "1150", "attributes": { "label": "Habitat Sain", "nodedef": "n1150", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6317973, "x": 88.20013, "y": -177.2659, "z": 0, "nansi-louvain": 14, "nansi-degree": 7 } }, { "key": "1151", "attributes": { "label": "Hammerfest", "nodedef": "n1151", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.600933, "x": -164.70514, "y": 221.6623, "z": 0, "nansi-louvain": 18, "nansi-degree": 2 } }, { "key": "1152", "attributes": { "label": "Northern Norway", "nodedef": "n1152", "occurrences": 8, "color": "rgb(0,204,204)", "size": 3.7389054, "x": -164.2613, "y": 210.38531, "z": 0, "nansi-louvain": 18, "nansi-degree": 14 } }, { "key": "1155", "attributes": { "label": "Haute Résolution", "nodedef": "n1155", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 105.130226, "y": -4.666499, "z": 0, "nansi-louvain": 12, "nansi-degree": 4 } }, { "key": "1156", "attributes": { "label": "Hautes Latitudes", "nodedef": "n1156", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 85.40922, "y": -28.344774, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "1157", "attributes": { "label": "Health Wealth", "nodedef": "n1157", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.600933, "x": -83.57731, "y": 88.322945, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1158", "attributes": { "label": "High Place", "nodedef": "n1158", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -149.81848, "y": 21.88913, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "1159", "attributes": { "label": "Histoire Culturelle", "nodedef": "n1159", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.600933, "x": 137.45097, "y": -118.90293, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "1160", "attributes": { "label": "Human Impact", "nodedef": "n1160", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -26.487019, "y": 34.88544, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "1161", "attributes": { "label": "Hydrate De Méthane", "nodedef": "n1161", "occurrences": 4, "color": "rgb(0,153,0)", "size": 3.6693263, "x": 54.281883, "y": -91.35416, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "1162", "attributes": { "label": "Hydrocarbures Aromatiques Polycycliques", "nodedef": "n1162", "occurrences": 3, "color": "rgb(102,102,0)", "size": 3.6317973, "x": 115.222115, "y": -191.01622, "z": 0, "nansi-louvain": 4, "nansi-degree": 7 } }, { "key": "1163", "attributes": { "label": "Hydrocarbures", "nodedef": "n1163", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.6693263, "x": 16.07162, "y": -186.07843, "z": 0, "nansi-louvain": 15, "nansi-degree": 10 } }, { "key": "1164", "attributes": { "label": "Maree Noire", "nodedef": "n1164", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.6144404, "x": -11.025002, "y": -190.8811, "z": 0, "nansi-louvain": 15, "nansi-degree": 5 } }, { "key": "1165", "attributes": { "label": "Pollution Atmosphérique", "nodedef": "n1165", "occurrences": 6, "color": "rgb(102,102,0)", "size": 3.655348, "x": 127.193, "y": -146.90213, "z": 0, "nansi-louvain": 4, "nansi-degree": 9 } }, { "key": "1166", "attributes": { "label": "Ice Patrol", "nodedef": "n1166", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.600933, "x": -59.84071, "y": 147.96361, "z": 0, "nansi-louvain": 7, "nansi-degree": 2 } }, { "key": "1167", "attributes": { "label": "Iceberg", "nodedef": "n1167", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.600933, "x": -59.353584, "y": 150.21646, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1168", "attributes": { "label": "Icebergs", "nodedef": "n1168", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6144404, "x": -43.746304, "y": 172.55003, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "1169", "attributes": { "label": "Identité Collective", "nodedef": "n1169", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 103.48866, "y": -148.4129, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "1170", "attributes": { "label": "Igloos", "nodedef": "n1170", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6036906, "x": -113.27494, "y": 242.55081, "z": 0, "nansi-louvain": 18, "nansi-degree": 3 } }, { "key": "1171", "attributes": { "label": "Igloo Building", "nodedef": "n1171", "occurrences": 2, "color": "rgb(204,204,255)", "size": 3.6, "x": -117.59392, "y": 257.47653, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1172", "attributes": { "label": "Ignace Venetz", "nodedef": "n1172", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 99.20021, "y": 51.06375, "z": 0, "nansi-louvain": 19, "nansi-degree": 3 } }, { "key": "1173", "attributes": { "label": "Île Aux Ours", "nodedef": "n1173", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6428227, "x": -23.714111, "y": -30.37403, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "1174", "attributes": { "label": "Île De Gotland", "nodedef": "n1174", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -91.91884, "y": -108.08819, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "1175", "attributes": { "label": "Iles Kouriles", "nodedef": "n1175", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6317973, "x": -30.823526, "y": -115.73786, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "1176", "attributes": { "label": "Île Hans", "nodedef": "n1176", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6144404, "x": -11.876183, "y": -47.796837, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "1177", "attributes": { "label": "Propulsion Nucléaire", "nodedef": "n1177", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6317973, "x": -41.981785, "y": -136.34735, "z": 0, "nansi-louvain": 5, "nansi-degree": 7 } }, { "key": "1178", "attributes": { "label": "Île Melville", "nodedef": "n1178", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -50.841915, "y": 6.3638916, "z": 0, "nansi-louvain": 3, "nansi-degree": 5 } }, { "key": "1179", "attributes": { "label": "Ile Victoria", "nodedef": "n1179", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6428227, "x": -53.380405, "y": 19.344086, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "1180", "attributes": { "label": "Ile Wrangel", "nodedef": "n1180", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6428227, "x": -27.836134, "y": -47.41629, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "1181", "attributes": { "label": "Iles Feroe", "nodedef": "n1181", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -69.094666, "y": -78.2466, "z": 0, "nansi-louvain": 3, "nansi-degree": 3 } }, { "key": "1182", "attributes": { "label": "Iles Pribilof", "nodedef": "n1182", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6317973, "x": -21.772535, "y": -80.01084, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "1183", "attributes": { "label": "Imagerie Satellite", "nodedef": "n1183", "occurrences": 2, "color": "rgb(255,153,153)", "size": 3.6317973, "x": 81.58129, "y": -17.82791, "z": 0, "nansi-louvain": 12, "nansi-degree": 7 } }, { "key": "1184", "attributes": { "label": "Images Satellites", "nodedef": "n1184", "occurrences": 1, "color": "rgb(255,153,153)", "size": 3.6317973, "x": 80.11012, "y": 124.08191, "z": 0, "nansi-louvain": 12, "nansi-degree": 7 } }, { "key": "1185", "attributes": { "label": "Satellite Photo", "nodedef": "n1185", "occurrences": 3, "color": "rgb(255,153,153)", "size": 3.600933, "x": 63.855404, "y": 188.44809, "z": 0, "nansi-louvain": 12, "nansi-degree": 2 } }, { "key": "1186", "attributes": { "label": "Impact Activités Humaines", "nodedef": "n1186", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": 79.55439, "y": -66.16835, "z": 0, "nansi-louvain": 9, "nansi-degree": 1 } }, { "key": "1187", "attributes": { "label": "Impacts Environnementaux", "nodedef": "n1187", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.655348, "x": 99.07761, "y": -143.88971, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "1188", "attributes": { "label": "Impacts Sociaux", "nodedef": "n1188", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 92.58539, "y": -135.29114, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "1189", "attributes": { "label": "Importance Stratégique", "nodedef": "n1189", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6317973, "x": 71.97816, "y": -155.06657, "z": 0, "nansi-louvain": 5, "nansi-degree": 7 } }, { "key": "1190", "attributes": { "label": "Planification Strategique", "nodedef": "n1190", "occurrences": 2, "color": "rgb(153,0,0)", "size": 3.6036906, "x": 66.24203, "y": -198.76262, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "1191", "attributes": { "label": "Indicateur Climatique", "nodedef": "n1191", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 111.121544, "y": -49.500248, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "1192", "attributes": { "label": "Source Lumineuse", "nodedef": "n1192", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6, "x": 144.72453, "y": -38.328453, "z": 0, "nansi-louvain": 9, "nansi-degree": 1 } }, { "key": "1193", "attributes": { "label": "Indices", "nodedef": "n1193", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -101.550674, "y": 28.506016, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1194", "attributes": { "label": "Indigènes Inuit", "nodedef": "n1194", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.655348, "x": 24.171843, "y": -45.310974, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1195", "attributes": { "label": "Indigenous Population", "nodedef": "n1195", "occurrences": 2, "color": "rgb(204,204,255)", "size": 3.6, "x": -189.10783, "y": 251.41548, "z": 0, "nansi-louvain": 10, "nansi-degree": 1 } }, { "key": "1196", "attributes": { "label": "Photographie Aerienne", "nodedef": "n1196", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 214.25209, "y": -151.9271, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "1197", "attributes": { "label": "Inland Ice", "nodedef": "n1197", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6428227, "x": -34.770523, "y": 186.42897, "z": 0, "nansi-louvain": 7, "nansi-degree": 8 } }, { "key": "1198", "attributes": { "label": "Inlandsis", "nodedef": "n1198", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 46.86988, "y": 17.469019, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "1199", "attributes": { "label": "Innovation Norway", "nodedef": "n1199", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.600933, "x": -253.25069, "y": 235.96594, "z": 0, "nansi-louvain": 10, "nansi-degree": 2 } }, { "key": "1200", "attributes": { "label": "Norwegian Ministry", "nodedef": "n1200", "occurrences": 7, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -249.62755, "y": 274.8595, "z": 0, "nansi-louvain": 10, "nansi-degree": 7 } }, { "key": "1201", "attributes": { "label": "Physique Nucléaire", "nodedef": "n1201", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 156.51923, "y": -49.500416, "z": 0, "nansi-louvain": 17, "nansi-degree": 7 } }, { "key": "1202", "attributes": { "label": "Physique Theorique", "nodedef": "n1202", "occurrences": 5, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 203.55371, "y": 11.899933, "z": 0, "nansi-louvain": 17, "nansi-degree": 5 } }, { "key": "1203", "attributes": { "label": "Institut De Recherche Agronomique", "nodedef": "n1203", "occurrences": 2, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 159.97943, "y": -73.06417, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "1204", "attributes": { "label": "Institut Des Sciences", "nodedef": "n1204", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.600933, "x": 156.79257, "y": -29.079945, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "1205", "attributes": { "label": "Institut National De Recherche", "nodedef": "n1205", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.600933, "x": 135.41293, "y": 22.342468, "z": 0, "nansi-louvain": 1, "nansi-degree": 2 } }, { "key": "1206", "attributes": { "label": "Institut Océanographique", "nodedef": "n1206", "occurrences": 5, "color": "rgb(153,255,255)", "size": 3.6082125, "x": 49.96442, "y": 9.039939, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "1207", "attributes": { "label": "Institut Royal", "nodedef": "n1207", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6, "x": 145.33142, "y": -24.20767, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "1208", "attributes": { "label": "Institute Of Meteorology", "nodedef": "n1208", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6036906, "x": 103.18085, "y": 85.1231, "z": 0, "nansi-louvain": 1, "nansi-degree": 3 } }, { "key": "1209", "attributes": { "label": "Interactions Air-Neige", "nodedef": "n1209", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 108.4934, "y": 29.133638, "z": 0, "nansi-louvain": 19, "nansi-degree": 8 } }, { "key": "1210", "attributes": { "label": "Univers De Grenoble", "nodedef": "n1210", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 168.06407, "y": 37.513844, "z": 0, "nansi-louvain": 17, "nansi-degree": 6 } }, { "key": "1211", "attributes": { "label": "Intérêt Stratégique", "nodedef": "n1211", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6082125, "x": 39.274773, "y": -147.35266, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "1212", "attributes": { "label": "Intérêts Défensifs", "nodedef": "n1212", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6223197, "x": -1.6559289, "y": -208.14784, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "1213", "attributes": { "label": "Programme De Doha", "nodedef": "n1213", "occurrences": 2, "color": "rgb(153,0,0)", "size": 3.6036906, "x": -2.606527, "y": -203.9103, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "1214", "attributes": { "label": "Intérêts Économiques", "nodedef": "n1214", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6144404, "x": 14.541774, "y": -190.69824, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "1215", "attributes": { "label": "Intérêts Scientifiques", "nodedef": "n1215", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 189.90303, "y": -52.6925, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "1216", "attributes": { "label": "Intérêts Stratégiques", "nodedef": "n1216", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -47.506393, "y": -163.7597, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "1217", "attributes": { "label": "Aker Yards", "nodedef": "n1217", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6, "x": -64.21484, "y": -180.51508, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1218", "attributes": { "label": "International Commission", "nodedef": "n1218", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -18.685696, "y": 18.909916, "z": 0, "nansi-louvain": 14, "nansi-degree": 3 } }, { "key": "1219", "attributes": { "label": "International Journal Of Technology", "nodedef": "n1219", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6036906, "x": -89.349464, "y": 122.81164, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "1220", "attributes": { "label": "International Journal Of Theoretical", "nodedef": "n1220", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -105.27546, "y": 21.632175, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1221", "attributes": { "label": "International Polar Expedition", "nodedef": "n1221", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6223197, "x": -43.94784, "y": 177.28107, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "1222", "attributes": { "label": "International Polar Year", "nodedef": "n1222", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6223197, "x": -6.611952, "y": 151.63268, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "1223", "attributes": { "label": "Inuits", "nodedef": "n1223", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.655348, "x": -117.908005, "y": 227.82422, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "1224", "attributes": { "label": "Iouri Andropov", "nodedef": "n1224", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6144404, "x": -81.5824, "y": -172.23038, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "1225", "attributes": { "label": "Leonid Brejnev", "nodedef": "n1225", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -79.58477, "y": -178.66211, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "1226", "attributes": { "label": "Isfjord", "nodedef": "n1226", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -79.51791, "y": 175.50116, "z": 0, "nansi-louvain": 18, "nansi-degree": 7 } }, { "key": "1227", "attributes": { "label": "Island Expedition", "nodedef": "n1227", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -90.13852, "y": 182.27116, "z": 0, "nansi-louvain": 18, "nansi-degree": 5 } }, { "key": "1228", "attributes": { "label": "Island Navy", "nodedef": "n1228", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -163.77809, "y": 31.349916, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "1229", "attributes": { "label": "Mare Island", "nodedef": "n1229", "occurrences": 4, "color": "rgb(255,51,51)", "size": 3.600933, "x": -174.55922, "y": 18.853043, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1230", "attributes": { "label": "Islande", "nodedef": "n1230", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6223197, "x": -69.062515, "y": -68.26531, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "1231", "attributes": { "label": "Recit De Voyage", "nodedef": "n1231", "occurrences": 3, "color": "rgb(204,204,255)", "size": 3.6082125, "x": -74.333786, "y": -61.913635, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "1232", "attributes": { "label": "Isotherme", "nodedef": "n1232", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.600933, "x": 288.60727, "y": -44.90838, "z": 0, "nansi-louvain": 1, "nansi-degree": 2 } }, { "key": "1233", "attributes": { "label": "Acier Inoxydable", "nodedef": "n1233", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.600933, "x": 281.16034, "y": -51.03637, "z": 0, "nansi-louvain": 1, "nansi-degree": 2 } }, { "key": "1234", "attributes": { "label": "Jacques Nougier", "nodedef": "n1234", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": 39.78558, "y": 111.95066, "z": 0, "nansi-louvain": 19, "nansi-degree": 1 } }, { "key": "1235", "attributes": { "label": "James Bay", "nodedef": "n1235", "occurrences": 6, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -130.70062, "y": 280.19507, "z": 0, "nansi-louvain": 18, "nansi-degree": 7 } }, { "key": "1236", "attributes": { "label": "James Clark Ross", "nodedef": "n1236", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 14.392242, "y": 156.62032, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "1237", "attributes": { "label": "Jan Mayen", "nodedef": "n1237", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -167.46341, "y": 227.30162, "z": 0, "nansi-louvain": 10, "nansi-degree": 5 } }, { "key": "1238", "attributes": { "label": "Active Volcano", "nodedef": "n1238", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -177.94188, "y": 216.87575, "z": 0, "nansi-louvain": 10, "nansi-degree": 4 } }, { "key": "1239", "attributes": { "label": "Mayen Islands", "nodedef": "n1239", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6, "x": -176.25925, "y": 234.88533, "z": 0, "nansi-louvain": 10, "nansi-degree": 1 } }, { "key": "1240", "attributes": { "label": "Meteorological Station", "nodedef": "n1240", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6, "x": -173.4815, "y": 237.24718, "z": 0, "nansi-louvain": 10, "nansi-degree": 1 } }, { "key": "1241", "attributes": { "label": "Volcanic Islands", "nodedef": "n1241", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.600933, "x": -180.88123, "y": 229.50581, "z": 0, "nansi-louvain": 10, "nansi-degree": 2 } }, { "key": "1242", "attributes": { "label": "Jaures Medvedev", "nodedef": "n1242", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6223197, "x": -12.116724, "y": -147.36925, "z": 0, "nansi-louvain": 17, "nansi-degree": 6 } }, { "key": "1243", "attributes": { "label": "Jean Lemire", "nodedef": "n1243", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6223197, "x": 44.274124, "y": 22.192984, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "1244", "attributes": { "label": "Jean-Louis Etienne", "nodedef": "n1244", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6847134, "x": 26.417501, "y": 7.8515735, "z": 0, "nansi-louvain": 3, "nansi-degree": 11 } }, { "key": "1245", "attributes": { "label": "Johannesburg 2002.", "nodedef": "n1245", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -33.710102, "y": 15.021998, "z": 0, "nansi-louvain": 13, "nansi-degree": 5 } }, { "key": "1246", "attributes": { "label": "Sommet De Johannesburg", "nodedef": "n1246", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6317973, "x": 27.72227, "y": -87.96908, "z": 0, "nansi-louvain": 13, "nansi-degree": 7 } }, { "key": "1247", "attributes": { "label": "Joik", "nodedef": "n1247", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6082125, "x": -196.90141, "y": 257.18195, "z": 0, "nansi-louvain": 10, "nansi-degree": 4 } }, { "key": "1248", "attributes": { "label": "Sami Language", "nodedef": "n1248", "occurrences": 8, "color": "rgb(204,204,255)", "size": 3.7389054, "x": -210.6946, "y": 272.3805, "z": 0, "nansi-louvain": 10, "nansi-degree": 14 } }, { "key": "1249", "attributes": { "label": "Sami People", "nodedef": "n1249", "occurrences": 11, "color": "rgb(204,204,255)", "size": 3.7813334, "x": -204.87747, "y": 275.13687, "z": 0, "nansi-louvain": 10, "nansi-degree": 16 } }, { "key": "1250", "attributes": { "label": "Josée Auclair", "nodedef": "n1250", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6428227, "x": -63.728165, "y": 218.17847, "z": 0, "nansi-louvain": 18, "nansi-degree": 8 } }, { "key": "1251", "attributes": { "label": "Adrian Flanagan", "nodedef": "n1251", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6, "x": -65.12895, "y": 234.96983, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1252", "attributes": { "label": "Team North", "nodedef": "n1252", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6, "x": -58.294, "y": 237.1975, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1253", "attributes": { "label": "Ward Hunt Island", "nodedef": "n1253", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -51.004047, "y": 202.54681, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "1254", "attributes": { "label": "Joseph-Elzéar Bernier (1852-1934)", "nodedef": "n1254", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -19.40261, "y": 3.6788108, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "1255", "attributes": { "label": "Journal De Bord", "nodedef": "n1255", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.600933, "x": -31.860699, "y": -13.219838, "z": 0, "nansi-louvain": 3, "nansi-degree": 2 } }, { "key": "1256", "attributes": { "label": "Journée Mondiale De La Biodiversité", "nodedef": "n1256", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6428227, "x": 33.464333, "y": -118.60332, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "1257", "attributes": { "label": "Kara", "nodedef": "n1257", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -111.81175, "y": 47.56672, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1258", "attributes": { "label": "Kativik School", "nodedef": "n1258", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -140.64247, "y": 300.35498, "z": 0, "nansi-louvain": 18, "nansi-degree": 5 } }, { "key": "1259", "attributes": { "label": "Makivik Corporation", "nodedef": "n1259", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -137.57477, "y": 302.51025, "z": 0, "nansi-louvain": 18, "nansi-degree": 5 } }, { "key": "1260", "attributes": { "label": "Kennedy Channel", "nodedef": "n1260", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6082125, "x": -107.55637, "y": 139.92773, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "1261", "attributes": { "label": "Konungariket Sverige", "nodedef": "n1261", "occurrences": 3, "color": "rgb(102,255,102)", "size": 3.6036906, "x": -118.35364, "y": 90.4583, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "1262", "attributes": { "label": "Observatoire Des Sciences", "nodedef": "n1262", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 181.93895, "y": 35.635715, "z": 0, "nansi-louvain": 17, "nansi-degree": 5 } }, { "key": "1263", "attributes": { "label": "Laboratoire De Météorologie", "nodedef": "n1263", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 155.07974, "y": -26.801643, "z": 0, "nansi-louvain": 1, "nansi-degree": 5 } }, { "key": "1264", "attributes": { "label": "Laboratoire De Physique Statistique", "nodedef": "n1264", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.600933, "x": 48.90405, "y": 30.309519, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "1265", "attributes": { "label": "Planck Institute", "nodedef": "n1265", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.600933, "x": 186.38322, "y": 20.100435, "z": 0, "nansi-louvain": 1, "nansi-degree": 2 } }, { "key": "1266", "attributes": { "label": "Lac Baikal", "nodedef": "n1266", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.655348, "x": -7.653023, "y": -93.14033, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1267", "attributes": { "label": "Lac Inari", "nodedef": "n1267", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.655348, "x": -56.29468, "y": -28.593369, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1268", "attributes": { "label": "Lac Vostok", "nodedef": "n1268", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 90.28125, "y": -4.798851, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "1269", "attributes": { "label": "Lacs Sous-Glaciaires", "nodedef": "n1269", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.655348, "x": 81.9069, "y": 37.771408, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1270", "attributes": { "label": "Advanced Science", "nodedef": "n1270", "occurrences": 2, "color": "rgb(255,153,153)", "size": 3.6, "x": 93.22053, "y": 57.953682, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "1271", "attributes": { "label": "Lagopède", "nodedef": "n1271", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -41.22034, "y": -47.95809, "z": 0, "nansi-louvain": 3, "nansi-degree": 2 } }, { "key": "1272", "attributes": { "label": "Langue Scandinave", "nodedef": "n1272", "occurrences": 3, "color": "rgb(204,204,255)", "size": 3.600933, "x": -95.58885, "y": -86.036545, "z": 0, "nansi-louvain": 3, "nansi-degree": 2 } }, { "key": "1273", "attributes": { "label": "Lapon", "nodedef": "n1273", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6144404, "x": -159.14148, "y": 8.6603565, "z": 0, "nansi-louvain": 0, "nansi-degree": 5 } }, { "key": "1274", "attributes": { "label": "Cargo Ship", "nodedef": "n1274", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6, "x": -176.16505, "y": 6.2932606, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1275", "attributes": { "label": "Castors Lapons", "nodedef": "n1275", "occurrences": 4, "color": "rgb(204,204,255)", "size": 3.600933, "x": -136.33653, "y": -24.56774, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1276", "attributes": { "label": "Laponie", "nodedef": "n1276", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6693263, "x": -65.30906, "y": -32.91341, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "1277", "attributes": { "label": "Lapons", "nodedef": "n1277", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6082125, "x": -82.59002, "y": -52.818867, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "1278", "attributes": { "label": "Lappland", "nodedef": "n1278", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -175.13477, "y": 182.81769, "z": 0, "nansi-louvain": 10, "nansi-degree": 3 } }, { "key": "1279", "attributes": { "label": "Reindeer Herding", "nodedef": "n1279", "occurrences": 11, "color": "rgb(204,204,255)", "size": 3.7595146, "x": -185.18922, "y": 259.35645, "z": 0, "nansi-louvain": 10, "nansi-degree": 15 } }, { "key": "1280", "attributes": { "label": "Latitude 66° 33'N,1", "nodedef": "n1280", "color": "rgb(102,255,102)", "size": 3.655348, "x": 39.013645, "y": -56.489895, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1281", "attributes": { "label": "Lávvu", "nodedef": "n1281", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6082125, "x": -219.32762, "y": 259.6753, "z": 0, "nansi-louvain": 10, "nansi-degree": 4 } }, { "key": "1282", "attributes": { "label": "Sami Culture", "nodedef": "n1282", "occurrences": 10, "color": "rgb(204,204,255)", "size": 3.7389054, "x": -210.2012, "y": 267.59824, "z": 0, "nansi-louvain": 10, "nansi-degree": 14 } }, { "key": "1283", "attributes": { "label": "Scandinavian Peninsula", "nodedef": "n1283", "occurrences": 5, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -204.97835, "y": 227.90112, "z": 0, "nansi-louvain": 10, "nansi-degree": 4 } }, { "key": "1284", "attributes": { "label": "Economic Zone", "nodedef": "n1284", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -68.44543, "y": -30.757973, "z": 0, "nansi-louvain": 20, "nansi-degree": 3 } }, { "key": "1285", "attributes": { "label": "Le Fram", "nodedef": "n1285", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6223197, "x": -0.08158698, "y": 88.9964, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "1286", "attributes": { "label": "Légendaire Passage", "nodedef": "n1286", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6223197, "x": 38.556297, "y": -30.469696, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "1287", "attributes": { "label": "Observatoire De Greenwich", "nodedef": "n1287", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.600933, "x": 121.86253, "y": -14.774884, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "1288", "attributes": { "label": "Lemming", "nodedef": "n1288", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6, "x": -105.80444, "y": 202.56387, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1289", "attributes": { "label": "Rayon De Soleil", "nodedef": "n1289", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.600933, "x": 176.30717, "y": -120.403465, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "1290", "attributes": { "label": "Lgge", "nodedef": "n1290", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6223197, "x": -8.069045, "y": 157.80217, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "1291", "attributes": { "label": "Renard Arctique", "nodedef": "n1291", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.701466, "x": -52.475925, "y": -81.091286, "z": 0, "nansi-louvain": 14, "nansi-degree": 12 } }, { "key": "1292", "attributes": { "label": "Renard Polaire", "nodedef": "n1292", "occurrences": 6, "color": "rgb(153,255,0)", "size": 3.7195435, "x": -61.59338, "y": -83.31949, "z": 0, "nansi-louvain": 14, "nansi-degree": 13 } }, { "key": "1293", "attributes": { "label": "Ligne De Champ", "nodedef": "n1293", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6223197, "x": 48.133938, "y": 60.396675, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "1294", "attributes": { "label": "Limite Des 200 Miles Marins", "nodedef": "n1294", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6223197, "x": -3.8665667, "y": -75.574, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "1295", "attributes": { "label": "Liquide De Refroidissement", "nodedef": "n1295", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 256.52844, "y": -70.19389, "z": 0, "nansi-louvain": 1, "nansi-degree": 3 } }, { "key": "1296", "attributes": { "label": "Lisière De La Glace", "nodedef": "n1296", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6223197, "x": 19.757113, "y": -66.053, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "1297", "attributes": { "label": "Lng Carrier", "nodedef": "n1297", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.600933, "x": -228.58818, "y": 110.084724, "z": 0, "nansi-louvain": 6, "nansi-degree": 2 } }, { "key": "1298", "attributes": { "label": "L'Océan Glacial Arctique,1", "nodedef": "n1298", "color": "rgb(0,204,204)", "size": 3.6693263, "x": 4.947899, "y": -33.42706, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "1299", "attributes": { "label": "Logistique", "nodedef": "n1299", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6082125, "x": 127.67177, "y": -255.75563, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "1300", "attributes": { "label": "Chaîne Logistique", "nodedef": "n1300", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.600933, "x": 129.65399, "y": -280.88092, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "1301", "attributes": { "label": "Transport De Marchandises", "nodedef": "n1301", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.6036906, "x": 97.308105, "y": -276.50626, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "1302", "attributes": { "label": "Transport Logistique", "nodedef": "n1302", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.6036906, "x": 121.97594, "y": -283.31226, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "1303", "attributes": { "label": "Mecanique Des Milieux Continus", "nodedef": "n1303", "occurrences": 3, "color": "rgb(255,255,0)", "size": 3.6144404, "x": 301.75473, "y": 41.824867, "z": 0, "nansi-louvain": 17, "nansi-degree": 5 } }, { "key": "1304", "attributes": { "label": "Lomrog", "nodedef": "n1304", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6317973, "x": -23.005623, "y": 150.73598, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "1305", "attributes": { "label": "Nuclear Icebreaker", "nodedef": "n1305", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6082125, "x": -69.91319, "y": 201.98035, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "1306", "attributes": { "label": "Longues Distances", "nodedef": "n1306", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6, "x": -251.6836, "y": -122.08058, "z": 0, "nansi-louvain": 2, "nansi-degree": 1 } }, { "key": "1307", "attributes": { "label": "Loup", "nodedef": "n1307", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6036906, "x": -15.832295, "y": -91.96168, "z": 0, "nansi-louvain": 3, "nansi-degree": 3 } }, { "key": "1308", "attributes": { "label": "Canis Lupus", "nodedef": "n1308", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.600933, "x": -36.274113, "y": -59.62677, "z": 0, "nansi-louvain": 3, "nansi-degree": 2 } }, { "key": "1309", "attributes": { "label": "Lumière Solaire", "nodedef": "n1309", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": 153.09926, "y": -116.2502, "z": 0, "nansi-louvain": 9, "nansi-degree": 1 } }, { "key": "1310", "attributes": { "label": "Lynx", "nodedef": "n1310", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6, "x": -110.32871, "y": 286.64355, "z": 0, "nansi-louvain": 10, "nansi-degree": 1 } }, { "key": "1311", "attributes": { "label": "Mackenzie Basin", "nodedef": "n1311", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -197.31569, "y": 176.8446, "z": 0, "nansi-louvain": 18, "nansi-degree": 3 } }, { "key": "1312", "attributes": { "label": "Mackenzie Delta", "nodedef": "n1312", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6847134, "x": -193.66086, "y": 162.81738, "z": 0, "nansi-louvain": 18, "nansi-degree": 11 } }, { "key": "1313", "attributes": { "label": "Magerøya", "nodedef": "n1313", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -143.00777, "y": 219.97318, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "1314", "attributes": { "label": "North Cape", "nodedef": "n1314", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -141.80214, "y": 217.17369, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "1315", "attributes": { "label": "Northern Canada", "nodedef": "n1315", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.655348, "x": -83.34312, "y": 193.2901, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "1316", "attributes": { "label": "Phoque Gris", "nodedef": "n1316", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6317973, "x": -23.616611, "y": -123.39764, "z": 0, "nansi-louvain": 14, "nansi-degree": 7 } }, { "key": "1317", "attributes": { "label": "Veau Marin", "nodedef": "n1317", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6082125, "x": -22.83617, "y": -136.17302, "z": 0, "nansi-louvain": 14, "nansi-degree": 4 } }, { "key": "1318", "attributes": { "label": "Mammifères Marins", "nodedef": "n1318", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6082125, "x": -29.87543, "y": -127.90888, "z": 0, "nansi-louvain": 14, "nansi-degree": 4 } }, { "key": "1319", "attributes": { "label": "Marcel Leroux", "nodedef": "n1319", "occurrences": 2, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 53.17835, "y": -38.005314, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "1320", "attributes": { "label": "Marine Canadienne", "nodedef": "n1320", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -97.89415, "y": -222.19522, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "1321", "attributes": { "label": "Canadian Navy", "nodedef": "n1321", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6, "x": -107.18418, "y": -234.75919, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1322", "attributes": { "label": "Marine Royale", "nodedef": "n1322", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6, "x": -109.685425, "y": -232.15579, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1323", "attributes": { "label": "Science Center", "nodedef": "n1323", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 84.80725, "y": 43.48075, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "1324", "attributes": { "label": "Ocean Floor", "nodedef": "n1324", "occurrences": 4, "color": "rgb(102,255,102)", "size": 3.6223197, "x": -89.66768, "y": 141.09703, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "1325", "attributes": { "label": "Masse Glaciaire", "nodedef": "n1325", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.655348, "x": 70.12861, "y": -20.073906, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1326", "attributes": { "label": "Mbep/J", "nodedef": "n1326", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6317973, "x": -50.45342, "y": -178.68956, "z": 0, "nansi-louvain": 15, "nansi-degree": 7 } }, { "key": "1327", "attributes": { "label": "Sable Bitumineux", "nodedef": "n1327", "occurrences": 2, "color": "rgb(0,153,0)", "size": 3.6693263, "x": -5.9566464, "y": -151.6962, "z": 0, "nansi-louvain": 15, "nansi-degree": 10 } }, { "key": "1328", "attributes": { "label": "Bénéfice Net", "nodedef": "n1328", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.600933, "x": -68.773575, "y": -197.39673, "z": 0, "nansi-louvain": 15, "nansi-degree": 2 } }, { "key": "1329", "attributes": { "label": "Régions Pétrolières", "nodedef": "n1329", "occurrences": 4, "color": "rgb(102,0,102)", "size": 3.655348, "x": -50.590828, "y": -158.52037, "z": 0, "nansi-louvain": 15, "nansi-degree": 9 } }, { "key": "1330", "attributes": { "label": "Mecanique Des Roches", "nodedef": "n1330", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 264.78763, "y": 40.578304, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "1331", "attributes": { "label": "Menace", "nodedef": "n1331", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -188.29231, "y": 2.6505294, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1332", "attributes": { "label": "Menacer", "nodedef": "n1332", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.600933, "x": 5.842285, "y": -120.904945, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "1333", "attributes": { "label": "Mendeleïev", "nodedef": "n1333", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.600933, "x": 174.28793, "y": -169.63875, "z": 0, "nansi-louvain": 1, "nansi-degree": 2 } }, { "key": "1334", "attributes": { "label": "Mer Baltique", "nodedef": "n1334", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.655348, "x": -63.328987, "y": -103.80901, "z": 0, "nansi-louvain": 5, "nansi-degree": 9 } }, { "key": "1335", "attributes": { "label": "Klavdij Sluban", "nodedef": "n1335", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6, "x": -84.0866, "y": -116.00629, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1336", "attributes": { "label": "Mer De Beaufort", "nodedef": "n1336", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.655348, "x": -24.6798, "y": -3.4702227, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1337", "attributes": { "label": "Mer De Béring", "nodedef": "n1337", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6693263, "x": -45.33215, "y": -62.892723, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "1338", "attributes": { "label": "Coast Guards", "nodedef": "n1338", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6, "x": -58.108322, "y": -66.380135, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "1339", "attributes": { "label": "Mer De Laptev", "nodedef": "n1339", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6693263, "x": 15.814945, "y": -28.404478, "z": 0, "nansi-louvain": 7, "nansi-degree": 10 } }, { "key": "1340", "attributes": { "label": "Gaz Sur Surface", "nodedef": "n1340", "occurrences": 4, "color": "rgb(102,255,102)", "size": 3.600933, "x": 23.512419, "y": -21.791773, "z": 0, "nansi-louvain": 7, "nansi-degree": 2 } }, { "key": "1341", "attributes": { "label": "Mer De Sibérie Orientale", "nodedef": "n1341", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6693263, "x": 22.573748, "y": -35.482468, "z": 0, "nansi-louvain": 7, "nansi-degree": 10 } }, { "key": "1342", "attributes": { "label": "Mer Des Tchouktches", "nodedef": "n1342", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.655348, "x": -48.88926, "y": -30.863642, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1343", "attributes": { "label": "Mer D'Okhotsk,1", "nodedef": "n1343", "color": "rgb(255,51,51)", "size": 3.6317973, "x": -43.73486, "y": -111.55367, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "1344", "attributes": { "label": "Mer Gelée", "nodedef": "n1344", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 129.15807, "y": -54.497234, "z": 0, "nansi-louvain": 19, "nansi-degree": 3 } }, { "key": "1345", "attributes": { "label": "Mer Polaire Ouverte", "nodedef": "n1345", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6223197, "x": 9.72892, "y": 109.73051, "z": 0, "nansi-louvain": 8, "nansi-degree": 6 } }, { "key": "1346", "attributes": { "label": "Mesures Conservatoires Et Compensatoires", "nodedef": "n1346", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6082125, "x": 21.550047, "y": -70.79325, "z": 0, "nansi-louvain": 9, "nansi-degree": 4 } }, { "key": "1347", "attributes": { "label": "Météorologie", "nodedef": "n1347", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 151.64095, "y": 13.154989, "z": 0, "nansi-louvain": 1, "nansi-degree": 7 } }, { "key": "1348", "attributes": { "label": "Meteorologie Aeronautique", "nodedef": "n1348", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6036906, "x": 206.31284, "y": -32.18474, "z": 0, "nansi-louvain": 1, "nansi-degree": 3 } }, { "key": "1349", "attributes": { "label": "Méthane", "nodedef": "n1349", "occurrences": 1, "color": "rgb(0,153,0)", "size": 3.6223197, "x": -78.57782, "y": 141.16943, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "1350", "attributes": { "label": "Methane Gas", "nodedef": "n1350", "occurrences": 3, "color": "rgb(0,153,0)", "size": 3.6144404, "x": -75.63095, "y": 149.5873, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "1351", "attributes": { "label": "Méthanier", "nodedef": "n1351", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.6317973, "x": 11.039822, "y": -171.93321, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "1352", "attributes": { "label": "Méthode Merise", "nodedef": "n1352", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6036906, "x": 156.3715, "y": -157.45311, "z": 0, "nansi-louvain": 9, "nansi-degree": 3 } }, { "key": "1353", "attributes": { "label": "Migration Des Rennes", "nodedef": "n1353", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.655348, "x": -64.54981, "y": -64.25144, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1354", "attributes": { "label": "Migrations", "nodedef": "n1354", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6, "x": -162.54218, "y": 129.50073, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1355", "attributes": { "label": "Mikhail Malakhov", "nodedef": "n1355", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -66.26152, "y": 209.61197, "z": 0, "nansi-louvain": 18, "nansi-degree": 5 } }, { "key": "1356", "attributes": { "label": "Naomi Uemura", "nodedef": "n1356", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.600933, "x": -117.53285, "y": 231.31998, "z": 0, "nansi-louvain": 10, "nansi-degree": 2 } }, { "key": "1357", "attributes": { "label": "Pressure Ridge", "nodedef": "n1357", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6144404, "x": -32.846313, "y": 227.16689, "z": 0, "nansi-louvain": 12, "nansi-degree": 5 } }, { "key": "1358", "attributes": { "label": "Nappe Souterraine", "nodedef": "n1358", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6144404, "x": 62.53723, "y": -209.39699, "z": 0, "nansi-louvain": 9, "nansi-degree": 5 } }, { "key": "1359", "attributes": { "label": "Milieu Polaire", "nodedef": "n1359", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.655348, "x": 32.324894, "y": -10.787503, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1360", "attributes": { "label": "Zone Polaire", "nodedef": "n1360", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6317973, "x": 38.17083, "y": 3.8396041, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "1361", "attributes": { "label": "Missiles Balistiques", "nodedef": "n1361", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -90.039215, "y": -157.87053, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "1362", "attributes": { "label": "Modèles Climatiques", "nodedef": "n1362", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 103.76931, "y": -68.32643, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "1363", "attributes": { "label": "Modèles Climatiques Informatiques", "nodedef": "n1363", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6693263, "x": 34.68364, "y": 35.325844, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "1364", "attributes": { "label": "Vitesse De Derive", "nodedef": "n1364", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6082125, "x": 58.583275, "y": 42.636482, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "1365", "attributes": { "label": "Modelés Glaciaires", "nodedef": "n1365", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.655348, "x": 55.88634, "y": -66.31708, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1366", "attributes": { "label": "Modifications Futures", "nodedef": "n1366", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -34.39453, "y": -147.41057, "z": 0, "nansi-louvain": 15, "nansi-degree": 3 } }, { "key": "1367", "attributes": { "label": "Pcgr Du Canada", "nodedef": "n1367", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.600933, "x": -65.00033, "y": -188.38902, "z": 0, "nansi-louvain": 15, "nansi-degree": 2 } }, { "key": "1368", "attributes": { "label": "Moraines", "nodedef": "n1368", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6082125, "x": -46.43062, "y": 197.21031, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "1369", "attributes": { "label": "Morses", "nodedef": "n1369", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6036906, "x": -158.65225, "y": 14.874516, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "1370", "attributes": { "label": "Natural Resources Commission", "nodedef": "n1370", "occurrences": 3, "color": "rgb(0,153,0)", "size": 3.6, "x": -175.06422, "y": 10.810171, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1371", "attributes": { "label": "Steve Morse", "nodedef": "n1371", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6, "x": -171.27527, "y": 13.794815, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1372", "attributes": { "label": "Morue De L'Atlantique,1", "nodedef": "n1372", "color": "rgb(153,255,0)", "size": 3.6144404, "x": -0.11693059, "y": -118.5008, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "1373", "attributes": { "label": "Thon Rouge", "nodedef": "n1373", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6223197, "x": 22.160717, "y": -147.17416, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "1374", "attributes": { "label": "Morue Polaire", "nodedef": "n1374", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6428227, "x": 10.004211, "y": -85.42298, "z": 0, "nansi-louvain": 14, "nansi-degree": 8 } }, { "key": "1375", "attributes": { "label": "Mourmansk", "nodedef": "n1375", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6, "x": -103.21715, "y": -50.966408, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "1376", "attributes": { "label": "Nanisivik", "nodedef": "n1376", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -130.57181, "y": 194.9872, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "1377", "attributes": { "label": "Baker Lake", "nodedef": "n1377", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6, "x": -140.2576, "y": 203.4293, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1378", "attributes": { "label": "Nanisivik Mine", "nodedef": "n1378", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.600933, "x": -124.63177, "y": 215.23793, "z": 0, "nansi-louvain": 18, "nansi-degree": 2 } }, { "key": "1379", "attributes": { "label": "Nappe Phréatique", "nodedef": "n1379", "occurrences": 7, "color": "rgb(153,255,0)", "size": 3.6428227, "x": 74.12424, "y": -192.57927, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "1380", "attributes": { "label": "Nappes", "nodedef": "n1380", "occurrences": 1, "color": "rgb(102,102,0)", "size": 3.600933, "x": 73.61884, "y": -218.31403, "z": 0, "nansi-louvain": 9, "nansi-degree": 2 } }, { "key": "1381", "attributes": { "label": "Narvik", "nodedef": "n1381", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6, "x": -175.59421, "y": 221.51042, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1382", "attributes": { "label": "National Energy Technology", "nodedef": "n1382", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6, "x": -96.18317, "y": 120.334465, "z": 0, "nansi-louvain": 7, "nansi-degree": 1 } }, { "key": "1383", "attributes": { "label": "National Snow And Ice Data Center", "nodedef": "n1383", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6317973, "x": -9.163226, "y": 190.3611, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "1384", "attributes": { "label": "Bald Eagle", "nodedef": "n1384", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6036906, "x": -215.44064, "y": 36.563663, "z": 0, "nansi-louvain": 6, "nansi-degree": 3 } }, { "key": "1385", "attributes": { "label": "Natural World", "nodedef": "n1385", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6317973, "x": -64.791725, "y": 85.54415, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "1386", "attributes": { "label": "Natural Sciences", "nodedef": "n1386", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 84.892746, "y": 29.23261, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "1387", "attributes": { "label": "Nature", "nodedef": "n1387", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6317973, "x": -76.808334, "y": 90.83092, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "1388", "attributes": { "label": "Nature Center", "nodedef": "n1388", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6036906, "x": -69.062164, "y": 88.92879, "z": 0, "nansi-louvain": 7, "nansi-degree": 3 } }, { "key": "1389", "attributes": { "label": "Nature Photography", "nodedef": "n1389", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.600933, "x": -134.02661, "y": 128.7739, "z": 0, "nansi-louvain": 7, "nansi-degree": 2 } }, { "key": "1390", "attributes": { "label": "Nature Chimique", "nodedef": "n1390", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6144404, "x": 216.63037, "y": -117.976364, "z": 0, "nansi-louvain": 1, "nansi-degree": 5 } }, { "key": "1391", "attributes": { "label": "Navigation", "nodedef": "n1391", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 24.27197, "y": 371.88556, "z": 0, "nansi-louvain": 0, "nansi-degree": 5 } }, { "key": "1392", "attributes": { "label": "Navigation Company", "nodedef": "n1392", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6, "x": 26.33214, "y": 377.86423, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1393", "attributes": { "label": "Navigation Maritime", "nodedef": "n1393", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": 102.252686, "y": 14.297058, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "1394", "attributes": { "label": "Communique De Presse", "nodedef": "n1394", "occurrences": 4, "color": "rgb(153,0,0)", "size": 3.600933, "x": 20.03123, "y": -208.89899, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "1395", "attributes": { "label": "Navire Océanographique", "nodedef": "n1395", "occurrences": 4, "color": "rgb(153,255,255)", "size": 3.6144404, "x": 88.88988, "y": -35.3106, "z": 0, "nansi-louvain": 17, "nansi-degree": 5 } }, { "key": "1396", "attributes": { "label": "Netherlands Institute", "nodedef": "n1396", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.600933, "x": 29.863768, "y": 53.033993, "z": 0, "nansi-louvain": 7, "nansi-degree": 2 } }, { "key": "1397", "attributes": { "label": "Nombreux Polluants", "nodedef": "n1397", "occurrences": 1, "color": "rgb(102,102,0)", "size": 3.6428227, "x": 115.57656, "y": -173.28294, "z": 0, "nansi-louvain": 4, "nansi-degree": 8 } }, { "key": "1398", "attributes": { "label": "Nord", "nodedef": "n1398", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6036906, "x": -122.5348, "y": -51.92808, "z": 0, "nansi-louvain": 3, "nansi-degree": 3 } }, { "key": "1399", "attributes": { "label": "Science Nord", "nodedef": "n1399", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6, "x": -140.67096, "y": -58.299454, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "1400", "attributes": { "label": "University Of Northern British", "nodedef": "n1400", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6, "x": -142.15358, "y": -55.41693, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "1401", "attributes": { "label": "Nord Du Canada", "nodedef": "n1401", "occurrences": 5, "color": "rgb(255,51,51)", "size": 3.6847134, "x": -16.45748, "y": -44.659824, "z": 0, "nansi-louvain": 3, "nansi-degree": 11 } }, { "key": "1402", "attributes": { "label": "Russia To Germany", "nodedef": "n1402", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.6144404, "x": -192.03041, "y": 43.507805, "z": 0, "nansi-louvain": 6, "nansi-degree": 5 } }, { "key": "1403", "attributes": { "label": "Norsk Hydro", "nodedef": "n1403", "occurrences": 3, "color": "rgb(102,0,102)", "size": 3.6036906, "x": -247.6109, "y": 101.73511, "z": 0, "nansi-louvain": 6, "nansi-degree": 3 } }, { "key": "1404", "attributes": { "label": "Norwegian Oil", "nodedef": "n1404", "occurrences": 4, "color": "rgb(102,0,102)", "size": 3.655348, "x": -242.53612, "y": 104.19917, "z": 0, "nansi-louvain": 6, "nansi-degree": 9 } }, { "key": "1405", "attributes": { "label": "North Greenland", "nodedef": "n1405", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6317973, "x": -41.087624, "y": 193.31119, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "1406", "attributes": { "label": "North Pole Dash", "nodedef": "n1406", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6223197, "x": -56.407387, "y": 211.51898, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "1407", "attributes": { "label": "Northern Hemisphere", "nodedef": "n1407", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -46.329853, "y": 204.7903, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "1408", "attributes": { "label": "Surface Temperature", "nodedef": "n1408", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6144404, "x": -17.435051, "y": 177.4752, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "1409", "attributes": { "label": "Northern Sami", "nodedef": "n1409", "occurrences": 6, "color": "rgb(204,204,255)", "size": 3.6223197, "x": -214.03844, "y": 282.8344, "z": 0, "nansi-louvain": 10, "nansi-degree": 6 } }, { "key": "1410", "attributes": { "label": "West Passage", "nodedef": "n1410", "occurrences": 4, "color": "rgb(153,0,0)", "size": 3.6144404, "x": -80.22615, "y": 204.17532, "z": 0, "nansi-louvain": 18, "nansi-degree": 5 } }, { "key": "1411", "attributes": { "label": "Norvège", "nodedef": "n1411", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6223197, "x": -101.444725, "y": -68.57061, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "1412", "attributes": { "label": "Norway", "nodedef": "n1412", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -242.51868, "y": 187.86623, "z": 0, "nansi-louvain": 10, "nansi-degree": 3 } }, { "key": "1413", "attributes": { "label": "Norwegian Government", "nodedef": "n1413", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.600933, "x": -256.5595, "y": 278.8505, "z": 0, "nansi-louvain": 10, "nansi-degree": 2 } }, { "key": "1414", "attributes": { "label": "Norwegian National", "nodedef": "n1414", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.600933, "x": -254.41586, "y": 281.5027, "z": 0, "nansi-louvain": 10, "nansi-degree": 2 } }, { "key": "1415", "attributes": { "label": "Norwegian Navy", "nodedef": "n1415", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.600933, "x": -61.96017, "y": 223.73154, "z": 0, "nansi-louvain": 18, "nansi-degree": 2 } }, { "key": "1416", "attributes": { "label": "Norwegian Polar Institute", "nodedef": "n1416", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6082125, "x": -61.316837, "y": 174.89146, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "1417", "attributes": { "label": "Nouvel Environnement", "nodedef": "n1417", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6, "x": 173.56642, "y": -184.67691, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1418", "attributes": { "label": "Nouvelles Routes Commerciales", "nodedef": "n1418", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6144404, "x": -27.710829, "y": -104.03358, "z": 0, "nansi-louvain": 0, "nansi-degree": 5 } }, { "key": "1419", "attributes": { "label": "Progres Technique", "nodedef": "n1419", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.600933, "x": 0.9564741, "y": -158.44106, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1420", "attributes": { "label": "Nouvelle-Zemble", "nodedef": "n1420", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6223197, "x": -22.128826, "y": -61.785393, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "1421", "attributes": { "label": "Nsidc", "nodedef": "n1421", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.655348, "x": -4.5673623, "y": 183.48824, "z": 0, "nansi-louvain": 7, "nansi-degree": 9 } }, { "key": "1422", "attributes": { "label": "Ice News", "nodedef": "n1422", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6, "x": 4.317279, "y": 200.78265, "z": 0, "nansi-louvain": 7, "nansi-degree": 1 } }, { "key": "1423", "attributes": { "label": "Nunavik", "nodedef": "n1423", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -141.7643, "y": 304.734, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "1424", "attributes": { "label": "Quebec Government", "nodedef": "n1424", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6, "x": -144.30644, "y": 314.0606, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1425", "attributes": { "label": "Ungava Bay", "nodedef": "n1425", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -134.24113, "y": 275.8498, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "1426", "attributes": { "label": "Nunavut", "nodedef": "n1426", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -146.92471, "y": 193.60275, "z": 0, "nansi-louvain": 18, "nansi-degree": 5 } }, { "key": "1427", "attributes": { "label": "Observation Satellitaire", "nodedef": "n1427", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 54.6139, "y": -33.12381, "z": 0, "nansi-louvain": 12, "nansi-degree": 7 } }, { "key": "1428", "attributes": { "label": "Observation Satellite", "nodedef": "n1428", "occurrences": 1, "color": "rgb(255,153,153)", "size": 3.6317973, "x": 68.42197, "y": 141.47429, "z": 0, "nansi-louvain": 12, "nansi-degree": 7 } }, { "key": "1429", "attributes": { "label": "Philosophie De La Science", "nodedef": "n1429", "occurrences": 4, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 84.34492, "y": -26.150179, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "1430", "attributes": { "label": "Remote Operated Vehicle", "nodedef": "n1430", "occurrences": 4, "color": "rgb(255,153,153)", "size": 3.600933, "x": 57.275898, "y": 170.78024, "z": 0, "nansi-louvain": 16, "nansi-degree": 2 } }, { "key": "1431", "attributes": { "label": "Océanographie", "nodedef": "n1431", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.655348, "x": 100.37219, "y": -17.657925, "z": 0, "nansi-louvain": 17, "nansi-degree": 9 } }, { "key": "1432", "attributes": { "label": "Oceanographie Physique", "nodedef": "n1432", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 104.446, "y": -30.525038, "z": 0, "nansi-louvain": 17, "nansi-degree": 7 } }, { "key": "1433", "attributes": { "label": "Océans", "nodedef": "n1433", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6, "x": -48.85828, "y": 148.0177, "z": 0, "nansi-louvain": 7, "nansi-degree": 1 } }, { "key": "1434", "attributes": { "label": "Petroleum Product", "nodedef": "n1434", "occurrences": 4, "color": "rgb(102,0,102)", "size": 3.6144404, "x": -245.59564, "y": 81.09109, "z": 0, "nansi-louvain": 6, "nansi-degree": 5 } }, { "key": "1435", "attributes": { "label": "Oléoducs", "nodedef": "n1435", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.655348, "x": -32.944866, "y": -138.52527, "z": 0, "nansi-louvain": 15, "nansi-degree": 9 } }, { "key": "1436", "attributes": { "label": "Onu", "nodedef": "n1436", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -133.87148, "y": 14.802994, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1437", "attributes": { "label": "Northern University", "nodedef": "n1437", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6, "x": -148.49246, "y": 12.740207, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1438", "attributes": { "label": "Opportunité", "nodedef": "n1438", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.600933, "x": -143.83434, "y": -67.54198, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1439", "attributes": { "label": "Carrefour Internet", "nodedef": "n1439", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.6, "x": -160.6235, "y": -72.57581, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1440", "attributes": { "label": "Style De Vie", "nodedef": "n1440", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -97.196594, "y": -53.259014, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "1441", "attributes": { "label": "Organisation Nations Unies", "nodedef": "n1441", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -52.5636, "y": -15.32151, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "1442", "attributes": { "label": "United Nations", "nodedef": "n1442", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -47.990803, "y": 17.130857, "z": 0, "nansi-louvain": 0, "nansi-degree": 4 } }, { "key": "1443", "attributes": { "label": "Origine Humaine", "nodedef": "n1443", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6428227, "x": 57.218586, "y": -93.83041, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "1444", "attributes": { "label": "Otan", "nodedef": "n1444", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6144404, "x": -43.990204, "y": -65.432, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "1445", "attributes": { "label": "Atlantic Treaty Organization", "nodedef": "n1445", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6, "x": -66.97815, "y": -75.40181, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1446", "attributes": { "label": "Otaries", "nodedef": "n1446", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6082125, "x": 26.334435, "y": -201.10745, "z": 0, "nansi-louvain": 14, "nansi-degree": 4 } }, { "key": "1447", "attributes": { "label": "Cape Cross", "nodedef": "n1447", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.6, "x": 22.727888, "y": -222.23883, "z": 0, "nansi-louvain": 14, "nansi-degree": 1 } }, { "key": "1448", "attributes": { "label": "Otto Neumann Sverdrup", "nodedef": "n1448", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -97.65593, "y": 227.54655, "z": 0, "nansi-louvain": 18, "nansi-degree": 5 } }, { "key": "1449", "attributes": { "label": "Brown Bear", "nodedef": "n1449", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6, "x": -82.73812, "y": -68.27696, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "1451", "attributes": { "label": "Polar Bear", "nodedef": "n1451", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -27.128325, "y": 120.691734, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "1452", "attributes": { "label": "Ouverture Du Passage Du Nord-Ouest", "nodedef": "n1452", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.655348, "x": 3.1332188, "y": -30.697699, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1453", "attributes": { "label": "Pack", "nodedef": "n1453", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -118.487595, "y": 23.645233, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1454", "attributes": { "label": "Sammy Davis", "nodedef": "n1454", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.600933, "x": -117.05306, "y": 17.108341, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1455", "attributes": { "label": "Paleoclimatologie", "nodedef": "n1455", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.655348, "x": 128.74216, "y": -59.298954, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "1456", "attributes": { "label": "Palses", "nodedef": "n1456", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.655348, "x": 30.43675, "y": -60.95661, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1457", "attributes": { "label": "Papanine", "nodedef": "n1457", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6693263, "x": 7.0527716, "y": 35.03755, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "1458", "attributes": { "label": "Parc National Wapusk", "nodedef": "n1458", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6082125, "x": 11.677731, "y": -101.46759, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "1459", "attributes": { "label": "Passage Du Nord-Ouest", "nodedef": "n1459", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.655348, "x": -11.506631, "y": -38.140316, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1460", "attributes": { "label": "Passage International", "nodedef": "n1460", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -149.51616, "y": 17.00202, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1461", "attributes": { "label": "Safe Passage", "nodedef": "n1461", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.600933, "x": -131.21599, "y": 17.082447, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1462", "attributes": { "label": "Passage Kennedy", "nodedef": "n1462", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.600933, "x": -138.12267, "y": 151.6287, "z": 0, "nansi-louvain": 18, "nansi-degree": 2 } }, { "key": "1463", "attributes": { "label": "Judd Gregg", "nodedef": "n1463", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6, "x": -149.6478, "y": 155.46066, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1464", "attributes": { "label": "Paysages Naturels", "nodedef": "n1464", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.600933, "x": 81.99139, "y": -207.35197, "z": 0, "nansi-louvain": 14, "nansi-degree": 2 } }, { "key": "1465", "attributes": { "label": "Pêche Lac", "nodedef": "n1465", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6, "x": 112.52046, "y": -126.66222, "z": 0, "nansi-louvain": 4, "nansi-degree": 1 } }, { "key": "1466", "attributes": { "label": "Peninsule De Kola", "nodedef": "n1466", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6428227, "x": -33.822605, "y": -101.9014, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "1467", "attributes": { "label": "Péninsule Tchouktche", "nodedef": "n1467", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6223197, "x": 2.2084367, "y": -89.85928, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "1468", "attributes": { "label": "Pergélisol", "nodedef": "n1468", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 65.94463, "y": -37.513824, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "1469", "attributes": { "label": "Période Du Quaternaire", "nodedef": "n1469", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 109.8324, "y": -32.931698, "z": 0, "nansi-louvain": 14, "nansi-degree": 6 } }, { "key": "1470", "attributes": { "label": "Périodes Interglaciaires", "nodedef": "n1470", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 105.71034, "y": -65.19949, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "1471", "attributes": { "label": "Perte De Glace", "nodedef": "n1471", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6693263, "x": 46.334126, "y": -35.407764, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "1472", "attributes": { "label": "Perte De Sol", "nodedef": "n1472", "occurrences": 1, "color": "rgb(102,102,0)", "size": 3.655348, "x": 107.02984, "y": -193.28893, "z": 0, "nansi-louvain": 4, "nansi-degree": 9 } }, { "key": "1473", "attributes": { "label": "Plante Fourragère", "nodedef": "n1473", "occurrences": 3, "color": "rgb(153,255,0)", "size": 3.6, "x": 116.17803, "y": -212.23016, "z": 0, "nansi-louvain": 4, "nansi-degree": 1 } }, { "key": "1474", "attributes": { "label": "Terre Arable", "nodedef": "n1474", "occurrences": 4, "color": "rgb(153,0,0)", "size": 3.600933, "x": 57.076195, "y": -207.05434, "z": 0, "nansi-louvain": 4, "nansi-degree": 2 } }, { "key": "1475", "attributes": { "label": "Perturbation", "nodedef": "n1475", "occurrences": 1, "color": "rgb(255,153,153)", "size": 3.600933, "x": -17.839191, "y": 276.73026, "z": 0, "nansi-louvain": 12, "nansi-degree": 2 } }, { "key": "1476", "attributes": { "label": "Planetary Orbit", "nodedef": "n1476", "occurrences": 3, "color": "rgb(255,153,153)", "size": 3.600933, "x": -14.490362, "y": 274.48834, "z": 0, "nansi-louvain": 12, "nansi-degree": 2 } }, { "key": "1477", "attributes": { "label": "Pétrole", "nodedef": "n1477", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.655348, "x": -41.037964, "y": -117.2791, "z": 0, "nansi-louvain": 15, "nansi-degree": 9 } }, { "key": "1478", "attributes": { "label": "Phénomène Naturel", "nodedef": "n1478", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6317973, "x": 136.92554, "y": -137.14415, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "1479", "attributes": { "label": "Phoque Moine", "nodedef": "n1479", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6317973, "x": 18.602654, "y": -120.93099, "z": 0, "nansi-louvain": 14, "nansi-degree": 7 } }, { "key": "1480", "attributes": { "label": "Phoques", "nodedef": "n1480", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6144404, "x": -19.377468, "y": -140.50021, "z": 0, "nansi-louvain": 14, "nansi-degree": 5 } }, { "key": "1481", "attributes": { "label": "Photographies", "nodedef": "n1481", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.600933, "x": 199.06314, "y": -149.51561, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "1482", "attributes": { "label": "Physical Oceanography", "nodedef": "n1482", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6, "x": 43.375854, "y": 135.01685, "z": 0, "nansi-louvain": 7, "nansi-degree": 1 } }, { "key": "1483", "attributes": { "label": "Physique", "nodedef": "n1483", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 203.79866, "y": 2.7912462, "z": 0, "nansi-louvain": 17, "nansi-degree": 7 } }, { "key": "1484", "attributes": { "label": "Physique Appliquée", "nodedef": "n1484", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 257.218, "y": 22.098316, "z": 0, "nansi-louvain": 17, "nansi-degree": 3 } }, { "key": "1485", "attributes": { "label": "Phytoplancton", "nodedef": "n1485", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6223197, "x": 61.012203, "y": -96.20949, "z": 0, "nansi-louvain": 4, "nansi-degree": 6 } }, { "key": "1486", "attributes": { "label": "Pigb", "nodedef": "n1486", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 34.935898, "y": -21.547876, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "1487", "attributes": { "label": "Pingos", "nodedef": "n1487", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6082125, "x": -47.526188, "y": 191.17053, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "1488", "attributes": { "label": "Hydrostatic Pressure", "nodedef": "n1488", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6, "x": -44.427483, "y": 213.71819, "z": 0, "nansi-louvain": 7, "nansi-degree": 1 } }, { "key": "1489", "attributes": { "label": "Pipe Line", "nodedef": "n1489", "occurrences": 2, "color": "rgb(102,0,102)", "size": 3.6144404, "x": -251.70804, "y": 77.411026, "z": 0, "nansi-louvain": 6, "nansi-degree": 5 } }, { "key": "1490", "attributes": { "label": "Pipkrakes", "nodedef": "n1490", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6428227, "x": 46.835224, "y": -88.9594, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "1491", "attributes": { "label": "Planet In Peril", "nodedef": "n1491", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.600933, "x": -73.480804, "y": 80.79087, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1492", "attributes": { "label": "Planète", "nodedef": "n1492", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 129.74605, "y": -83.04892, "z": 0, "nansi-louvain": 9, "nansi-degree": 4 } }, { "key": "1493", "attributes": { "label": "Planète Terre", "nodedef": "n1493", "occurrences": 4, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 106.02792, "y": -37.86129, "z": 0, "nansi-louvain": 17, "nansi-degree": 8 } }, { "key": "1494", "attributes": { "label": "Produit Derive", "nodedef": "n1494", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6, "x": 139.6879, "y": -84.87167, "z": 0, "nansi-louvain": 9, "nansi-degree": 1 } }, { "key": "1495", "attributes": { "label": "Plateau Continental En Arctique", "nodedef": "n1495", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.6036906, "x": -5.2124677, "y": -179.49872, "z": 0, "nansi-louvain": 4, "nansi-degree": 3 } }, { "key": "1496", "attributes": { "label": "Gabriel Wackermann", "nodedef": "n1496", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.6, "x": -9.7644615, "y": -201.30151, "z": 0, "nansi-louvain": 4, "nansi-degree": 1 } }, { "key": "1497", "attributes": { "label": "Plateformes", "nodedef": "n1497", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": 165.99457, "y": -143.58278, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1498", "attributes": { "label": "Plateformes De Forage", "nodedef": "n1498", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.6082125, "x": -3.7431407, "y": -184.14746, "z": 0, "nansi-louvain": 15, "nansi-degree": 4 } }, { "key": "1499", "attributes": { "label": "Plate-Formes Offshore", "nodedef": "n1499", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.6428227, "x": -9.514167, "y": -137.87482, "z": 0, "nansi-louvain": 15, "nansi-degree": 8 } }, { "key": "1500", "attributes": { "label": "Plongée Inédite", "nodedef": "n1500", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6223197, "x": -123.05539, "y": -27.51474, "z": 0, "nansi-louvain": 20, "nansi-degree": 6 } }, { "key": "1501", "attributes": { "label": "Plusieurs Expéditions", "nodedef": "n1501", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6082125, "x": 24.107204, "y": 32.62527, "z": 0, "nansi-louvain": 3, "nansi-degree": 4 } }, { "key": "1502", "attributes": { "label": "Ile Wake", "nodedef": "n1502", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6, "x": 26.756231, "y": 47.34407, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "1503", "attributes": { "label": "Pmrc", "nodedef": "n1503", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -105.46262, "y": 32.85705, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1504", "attributes": { "label": "Point De Non-Retour", "nodedef": "n1504", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6, "x": 65.00945, "y": -35.128075, "z": 0, "nansi-louvain": 9, "nansi-degree": 1 } }, { "key": "1505", "attributes": { "label": "Polar Bridge", "nodedef": "n1505", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6036906, "x": -43.96263, "y": 162.19989, "z": 0, "nansi-louvain": 18, "nansi-degree": 3 } }, { "key": "1506", "attributes": { "label": "Russia To Canada", "nodedef": "n1506", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -73.45472, "y": 156.6171, "z": 0, "nansi-louvain": 18, "nansi-degree": 5 } }, { "key": "1507", "attributes": { "label": "Polarstern", "nodedef": "n1507", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6144404, "x": 3.499456, "y": 136.64548, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "1508", "attributes": { "label": "German Research", "nodedef": "n1508", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6, "x": 14.125769, "y": 146.96542, "z": 0, "nansi-louvain": 7, "nansi-degree": 1 } }, { "key": "1509", "attributes": { "label": "Pôle Nord Géomagnétique", "nodedef": "n1509", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 33.416172, "y": 88.5485, "z": 0, "nansi-louvain": 8, "nansi-degree": 8 } }, { "key": "1510", "attributes": { "label": "Pôle Nord Magnétique", "nodedef": "n1510", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 53.09284, "y": 68.102234, "z": 0, "nansi-louvain": 8, "nansi-degree": 8 } }, { "key": "1511", "attributes": { "label": "Politique", "nodedef": "n1511", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -0.9065794, "y": -169.23764, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1512", "attributes": { "label": "Politique International", "nodedef": "n1512", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -54.411316, "y": -98.24991, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "1513", "attributes": { "label": "Polluant Secondaire", "nodedef": "n1513", "occurrences": 2, "color": "rgb(102,102,0)", "size": 3.6317973, "x": 157.6692, "y": -137.30602, "z": 0, "nansi-louvain": 4, "nansi-degree": 7 } }, { "key": "1514", "attributes": { "label": "Pollution", "nodedef": "n1514", "occurrences": 1, "color": "rgb(102,102,0)", "size": 3.6317973, "x": -154.81262, "y": 103.28114, "z": 0, "nansi-louvain": 7, "nansi-degree": 7 } }, { "key": "1515", "attributes": { "label": "Water Pollution", "nodedef": "n1515", "occurrences": 3, "color": "rgb(102,102,0)", "size": 3.6082125, "x": -153.86987, "y": 96.32725, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "1516", "attributes": { "label": "Light Pollution", "nodedef": "n1516", "occurrences": 2, "color": "rgb(102,102,0)", "size": 3.6, "x": -168.236, "y": 104.5713, "z": 0, "nansi-louvain": 7, "nansi-degree": 1 } }, { "key": "1517", "attributes": { "label": "Pollution Control", "nodedef": "n1517", "occurrences": 2, "color": "rgb(102,102,0)", "size": 3.6082125, "x": -149.91238, "y": 105.23246, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "1518", "attributes": { "label": "Pollution Prevention", "nodedef": "n1518", "occurrences": 3, "color": "rgb(102,102,0)", "size": 3.6082125, "x": -149.50143, "y": 77.49832, "z": 0, "nansi-louvain": 7, "nansi-degree": 4 } }, { "key": "1519", "attributes": { "label": "Pollutions Localisées", "nodedef": "n1519", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.655348, "x": 44.07951, "y": -47.28155, "z": 0, "nansi-louvain": 3, "nansi-degree": 9 } }, { "key": "1520", "attributes": { "label": "Polycristal", "nodedef": "n1520", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 257.04953, "y": -31.451788, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "1521", "attributes": { "label": "Science Des Materiaux", "nodedef": "n1521", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6, "x": 271.10553, "y": -28.067331, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "1522", "attributes": { "label": "Population", "nodedef": "n1522", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -101.745636, "y": 37.834538, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1523", "attributes": { "label": "Port En Eau Profonde", "nodedef": "n1523", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6036906, "x": 6.9530826, "y": -211.75775, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "1524", "attributes": { "label": "Port Ouest", "nodedef": "n1524", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.600933, "x": -55.65863, "y": -212.05449, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "1525", "attributes": { "label": "Poussée D'Archimède,1", "nodedef": "n1525", "color": "rgb(255,255,0)", "size": 3.6036906, "x": 330.27866, "y": 98.21726, "z": 0, "nansi-louvain": 17, "nansi-degree": 3 } }, { "key": "1526", "attributes": { "label": "Loi De Newton", "nodedef": "n1526", "occurrences": 3, "color": "rgb(255,255,0)", "size": 3.600933, "x": 299.6185, "y": 80.311935, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "1527", "attributes": { "label": "Vitesse Limite", "nodedef": "n1527", "occurrences": 2, "color": "rgb(255,255,0)", "size": 3.6, "x": 336.5227, "y": 100.72445, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "1528", "attributes": { "label": "Centre De Gravité", "nodedef": "n1528", "occurrences": 2, "color": "rgb(255,255,0)", "size": 3.6, "x": 334.68042, "y": 103.48732, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "1529", "attributes": { "label": "Præsidium Du Soviet Suprême De L'Urss,1", "nodedef": "n1529", "color": "rgb(255,51,51)", "size": 3.6144404, "x": -70.60809, "y": -176.28575, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "1530", "attributes": { "label": "Précipitations Faibles", "nodedef": "n1530", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6144404, "x": 153.06625, "y": -63.043007, "z": 0, "nansi-louvain": 1, "nansi-degree": 5 } }, { "key": "1531", "attributes": { "label": "Préfabriqués", "nodedef": "n1531", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": 293.8102, "y": 59.877686, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "1532", "attributes": { "label": "Prélèvement", "nodedef": "n1532", "occurrences": 1, "color": "rgb(102,102,0)", "size": 3.600933, "x": 52.02199, "y": -260.81873, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "1533", "attributes": { "label": "Empreinte Génétique", "nodedef": "n1533", "occurrences": 2, "color": "rgb(102,102,0)", "size": 3.6, "x": 51.309624, "y": -277.88358, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1534", "attributes": { "label": "Prélever", "nodedef": "n1534", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6, "x": -15.229454, "y": -207.24501, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1536", "attributes": { "label": "Préoccupations Environnementales", "nodedef": "n1536", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.655348, "x": 98.728615, "y": -164.13916, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "1537", "attributes": { "label": "Préservation Biodiversité", "nodedef": "n1537", "occurrences": 1, "color": "rgb(102,102,0)", "size": 3.655348, "x": 78.88222, "y": -159.51547, "z": 0, "nansi-louvain": 14, "nansi-degree": 9 } }, { "key": "1538", "attributes": { "label": "Genetic Resources", "nodedef": "n1538", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6, "x": 84.58091, "y": -188.28105, "z": 0, "nansi-louvain": 14, "nansi-degree": 1 } }, { "key": "1539", "attributes": { "label": "Président Carter", "nodedef": "n1539", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -97.176994, "y": 19.011217, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1540", "attributes": { "label": "Presqu'Île De Kola,1", "nodedef": "n1540", "color": "rgb(255,51,51)", "size": 3.6428227, "x": -42.314877, "y": -78.47489, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "1541", "attributes": { "label": "Systeme Meteo", "nodedef": "n1541", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6, "x": 231.80351, "y": -57.276638, "z": 0, "nansi-louvain": 1, "nansi-degree": 1 } }, { "key": "1542", "attributes": { "label": "Michael Llodra", "nodedef": "n1542", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6, "x": 31.84692, "y": -167.48007, "z": 0, "nansi-louvain": 9, "nansi-degree": 1 } }, { "key": "1543", "attributes": { "label": "Profil Environnemental", "nodedef": "n1543", "occurrences": 1, "color": "rgb(0,153,0)", "size": 3.6428227, "x": 71.586006, "y": -157.14708, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "1544", "attributes": { "label": "Profondeur", "nodedef": "n1544", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.600933, "x": 89.56915, "y": -154.86128, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "1545", "attributes": { "label": "Programme Pluriannuel De Recherche", "nodedef": "n1545", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 190.98694, "y": -87.37292, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "1546", "attributes": { "label": "National Maladies Rares", "nodedef": "n1546", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6, "x": 211.58363, "y": -90.72086, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "1547", "attributes": { "label": "Recherche Sciences", "nodedef": "n1547", "occurrences": 6, "color": "rgb(255,255,51)", "size": 3.6693263, "x": 176.04732, "y": -43.090748, "z": 0, "nansi-louvain": 17, "nansi-degree": 10 } }, { "key": "1548", "attributes": { "label": "Progression", "nodedef": "n1548", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -115.54283, "y": 41.37124, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1549", "attributes": { "label": "Prospection Electromagnetique", "nodedef": "n1549", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6, "x": 222.43326, "y": 67.900246, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "1550", "attributes": { "label": "Protection De L'Environnement,1", "nodedef": "n1550", "color": "rgb(153,255,0)", "size": 3.6317973, "x": 99.95114, "y": -161.63524, "z": 0, "nansi-louvain": 14, "nansi-degree": 7 } }, { "key": "1551", "attributes": { "label": "Proue Surélevée", "nodedef": "n1551", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6, "x": 43.288097, "y": -228.04108, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1552", "attributes": { "label": "Puissances Militaires", "nodedef": "n1552", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -63.833336, "y": -161.60083, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "1553", "attributes": { "label": "Pygargue", "nodedef": "n1553", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6144404, "x": -57.70553, "y": -77.71423, "z": 0, "nansi-louvain": 14, "nansi-degree": 5 } }, { "key": "1554", "attributes": { "label": "Quantité De Ressources Nécessaires", "nodedef": "n1554", "occurrences": 1, "color": "rgb(0,153,0)", "size": 3.6317973, "x": 70.76042, "y": -109.276566, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "1555", "attributes": { "label": "Quantités D'Eau,1", "nodedef": "n1555", "color": "rgb(153,255,0)", "size": 3.6144404, "x": 60.58499, "y": -168.9729, "z": 0, "nansi-louvain": 9, "nansi-degree": 5 } }, { "key": "1556", "attributes": { "label": "Quest For The North", "nodedef": "n1556", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.6317973, "x": -90.91545, "y": 163.11919, "z": 0, "nansi-louvain": 18, "nansi-degree": 7 } }, { "key": "1557", "attributes": { "label": "Robert Peary", "nodedef": "n1557", "occurrences": 4, "color": "rgb(0,204,204)", "size": 3.6317973, "x": -100.23176, "y": 179.79158, "z": 0, "nansi-louvain": 18, "nansi-degree": 7 } }, { "key": "1558", "attributes": { "label": "Ratification", "nodedef": "n1558", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -55.19777, "y": -34.04553, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "1559", "attributes": { "label": "Réactions", "nodedef": "n1559", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -243.1556, "y": -8.688685, "z": 0, "nansi-louvain": 0, "nansi-degree": 4 } }, { "key": "1560", "attributes": { "label": "Réchauffement Différentiel", "nodedef": "n1560", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 176.91805, "y": -32.0076, "z": 0, "nansi-louvain": 1, "nansi-degree": 7 } }, { "key": "1561", "attributes": { "label": "Vent Geostrophique", "nodedef": "n1561", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 180.83018, "y": -27.415653, "z": 0, "nansi-louvain": 1, "nansi-degree": 4 } }, { "key": "1562", "attributes": { "label": "Recherche", "nodedef": "n1562", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 177.96924, "y": -92.30477, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "1563", "attributes": { "label": "Recherche Aux Pôles", "nodedef": "n1563", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6223197, "x": 127.22571, "y": 24.286663, "z": 0, "nansi-louvain": 17, "nansi-degree": 6 } }, { "key": "1564", "attributes": { "label": "Astronomie De Lyon", "nodedef": "n1564", "occurrences": 3, "color": "rgb(255,153,153)", "size": 3.6, "x": 143.3892, "y": 36.67402, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "1565", "attributes": { "label": "Bruno Jacomy", "nodedef": "n1565", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6, "x": 140.83794, "y": 39.353935, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "1566", "attributes": { "label": "Institut Camille Jordan", "nodedef": "n1566", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6, "x": 144.8725, "y": 41.45145, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "1567", "attributes": { "label": "Recherche Fondamentale", "nodedef": "n1567", "occurrences": 3, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 149.49486, "y": -111.275696, "z": 0, "nansi-louvain": 17, "nansi-degree": 7 } }, { "key": "1568", "attributes": { "label": "Recherche Française", "nodedef": "n1568", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 158.26257, "y": -101.951454, "z": 0, "nansi-louvain": 17, "nansi-degree": 7 } }, { "key": "1569", "attributes": { "label": "Recherche Publique", "nodedef": "n1569", "occurrences": 2, "color": "rgb(255,204,102)", "size": 3.6082125, "x": 172.87198, "y": -109.16384, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "1570", "attributes": { "label": "Recherches Prospectives", "nodedef": "n1570", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 95.60209, "y": -141.07251, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "1571", "attributes": { "label": "Record Minimum", "nodedef": "n1571", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6693263, "x": -5.5038915, "y": 192.3069, "z": 0, "nansi-louvain": 7, "nansi-degree": 10 } }, { "key": "1572", "attributes": { "label": "Temperature Record", "nodedef": "n1572", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6223197, "x": -13.326552, "y": 194.50589, "z": 0, "nansi-louvain": 7, "nansi-degree": 6 } }, { "key": "1573", "attributes": { "label": "Recul De La Banquise", "nodedef": "n1573", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6693263, "x": 41.719532, "y": -25.997208, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "1574", "attributes": { "label": "Réfléchissement", "nodedef": "n1574", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6223197, "x": 109.57813, "y": -116.24258, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "1575", "attributes": { "label": "Régions Polaires", "nodedef": "n1575", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6223197, "x": 31.333315, "y": 19.984806, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "1576", "attributes": { "label": "Régions Subpolaires", "nodedef": "n1576", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6223197, "x": 12.027041, "y": -37.816597, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "1577", "attributes": { "label": "Règlementer La Pêche", "nodedef": "n1577", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.655348, "x": -2.9188993, "y": -193.34402, "z": 0, "nansi-louvain": 5, "nansi-degree": 9 } }, { "key": "1578", "attributes": { "label": "Règlementer La Protection De L'Environnement,1", "nodedef": "n1578", "color": "rgb(102,255,102)", "size": 3.6036906, "x": 34.315224, "y": -116.36641, "z": 0, "nansi-louvain": 9, "nansi-degree": 3 } }, { "key": "1579", "attributes": { "label": "Reindeer Husbandry", "nodedef": "n1579", "occurrences": 4, "color": "rgb(204,204,255)", "size": 3.6317973, "x": -177.8616, "y": 253.88234, "z": 0, "nansi-louvain": 10, "nansi-degree": 7 } }, { "key": "1580", "attributes": { "label": "Renard Gris", "nodedef": "n1580", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6317973, "x": -77.38303, "y": -93.63051, "z": 0, "nansi-louvain": 14, "nansi-degree": 7 } }, { "key": "1581", "attributes": { "label": "Renard Roux", "nodedef": "n1581", "occurrences": 5, "color": "rgb(153,255,0)", "size": 3.6223197, "x": -54.619476, "y": -100.63151, "z": 0, "nansi-louvain": 14, "nansi-degree": 6 } }, { "key": "1582", "attributes": { "label": "Renard Des Sables", "nodedef": "n1582", "occurrences": 4, "color": "rgb(153,255,0)", "size": 3.6144404, "x": -80.01479, "y": -96.57871, "z": 0, "nansi-louvain": 14, "nansi-degree": 5 } }, { "key": "1583", "attributes": { "label": "Renne Caribou", "nodedef": "n1583", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6317973, "x": 49.38956, "y": -123.324684, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "1584", "attributes": { "label": "Repérage Satellite", "nodedef": "n1584", "occurrences": 1, "color": "rgb(255,153,153)", "size": 3.600933, "x": -33.56125, "y": 249.8, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1585", "attributes": { "label": "Répercussions", "nodedef": "n1585", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -144.19926, "y": 19.460117, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "1586", "attributes": { "label": "War Of Iraq", "nodedef": "n1586", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -145.81854, "y": 27.107653, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "1587", "attributes": { "label": "Réseau De Communications", "nodedef": "n1587", "occurrences": 2, "color": "rgb(204,204,255)", "size": 3.6, "x": -247.95609, "y": -124.27663, "z": 0, "nansi-louvain": 2, "nansi-degree": 1 } }, { "key": "1588", "attributes": { "label": "Réserves D'Eau Potable,1", "nodedef": "n1588", "color": "rgb(0,153,0)", "size": 3.6317973, "x": 80.85915, "y": -146.38518, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "1589", "attributes": { "label": "Réserves D'Énergies Fossiles,1", "nodedef": "n1589", "color": "rgb(0,153,0)", "size": 3.655348, "x": 61.38197, "y": -140.71936, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "1590", "attributes": { "label": "Réserves Hydrocarbures", "nodedef": "n1590", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.6317973, "x": -14.562718, "y": -120.97293, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "1591", "attributes": { "label": "Ressources Fossiles", "nodedef": "n1591", "occurrences": 1, "color": "rgb(0,153,0)", "size": 3.6693263, "x": 68.66794, "y": -123.49581, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "1592", "attributes": { "label": "Ressources Naturelles", "nodedef": "n1592", "occurrences": 1, "color": "rgb(0,153,0)", "size": 3.6144404, "x": 24.806591, "y": -130.29218, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "1593", "attributes": { "label": "Ressources Pétrolières", "nodedef": "n1593", "occurrences": 3, "color": "rgb(102,0,102)", "size": 3.6693263, "x": 0.3449037, "y": -181.73943, "z": 0, "nansi-louvain": 15, "nansi-degree": 10 } }, { "key": "1594", "attributes": { "label": "Ressources Vivantes", "nodedef": "n1594", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6428227, "x": 83.62572, "y": -152.63171, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "1595", "attributes": { "label": "Revendication", "nodedef": "n1595", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6036906, "x": 28.481094, "y": -171.37143, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "1596", "attributes": { "label": "Revendications", "nodedef": "n1596", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": 9.054563, "y": -91.85817, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "1597", "attributes": { "label": "Revendications Territoriales En Arctique", "nodedef": "n1597", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6317973, "x": 25.325087, "y": -40.25403, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "1598", "attributes": { "label": "Réversiblité", "nodedef": "n1598", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6036906, "x": 117.95375, "y": -103.98313, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "1599", "attributes": { "label": "Rhéologie", "nodedef": "n1599", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 252.9806, "y": 53.038498, "z": 0, "nansi-louvain": 17, "nansi-degree": 6 } }, { "key": "1600", "attributes": { "label": "University Of Natural", "nodedef": "n1600", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6, "x": -28.632383, "y": 174.91396, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1601", "attributes": { "label": "Richesses Maritimes", "nodedef": "n1601", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6223197, "x": 31.330112, "y": -206.78526, "z": 0, "nansi-louvain": 5, "nansi-degree": 6 } }, { "key": "1602", "attributes": { "label": "Russian Mig", "nodedef": "n1602", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -416.86993, "y": -111.97346, "z": 0, "nansi-louvain": 25, "nansi-degree": 1 } }, { "key": "1603", "attributes": { "label": "Russian Jet", "nodedef": "n1603", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6, "x": -417.67944, "y": -109.19644, "z": 0, "nansi-louvain": 25, "nansi-degree": 1 } }, { "key": "1604", "attributes": { "label": "Russie", "nodedef": "n1604", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6144404, "x": -56.89953, "y": -153.1373, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "1605", "attributes": { "label": "Rythme D'Exploitation,1", "nodedef": "n1605", "color": "rgb(102,0,102)", "size": 3.6082125, "x": -10.206006, "y": -125.818214, "z": 0, "nansi-louvain": 9, "nansi-degree": 4 } }, { "key": "1606", "attributes": { "label": "Saami", "nodedef": "n1606", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6428227, "x": -202.41072, "y": 270.11215, "z": 0, "nansi-louvain": 10, "nansi-degree": 8 } }, { "key": "1607", "attributes": { "label": "Sami Parliament", "nodedef": "n1607", "occurrences": 6, "color": "rgb(204,204,255)", "size": 3.6847134, "x": -209.5277, "y": 277.45053, "z": 0, "nansi-louvain": 10, "nansi-degree": 11 } }, { "key": "1608", "attributes": { "label": "Salinisation", "nodedef": "n1608", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6144404, "x": -53.663113, "y": 108.28239, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "1609", "attributes": { "label": "Soil Salinity", "nodedef": "n1609", "occurrences": 2, "color": "rgb(255,204,102)", "size": 3.6, "x": -65.88471, "y": 109.43777, "z": 0, "nansi-louvain": 7, "nansi-degree": 1 } }, { "key": "1610", "attributes": { "label": "Same", "nodedef": "n1610", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -120.60684, "y": 43.646866, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1611", "attributes": { "label": "Samoyèdes", "nodedef": "n1611", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6082125, "x": -166.23517, "y": -90.0095, "z": 0, "nansi-louvain": 26, "nansi-degree": 4 } }, { "key": "1612", "attributes": { "label": "Carnivorous Animals", "nodedef": "n1612", "occurrences": 3, "color": "rgb(204,204,255)", "size": 3.6, "x": -178.68817, "y": -95.281685, "z": 0, "nansi-louvain": 26, "nansi-degree": 1 } }, { "key": "1613", "attributes": { "label": "Nomadic Tribe", "nodedef": "n1613", "occurrences": 3, "color": "rgb(204,204,255)", "size": 3.6, "x": -182.11742, "y": -93.06612, "z": 0, "nansi-louvain": 26, "nansi-degree": 1 } }, { "key": "1614", "attributes": { "label": "Sayan Mountains", "nodedef": "n1614", "occurrences": 3, "color": "rgb(204,204,255)", "size": 3.6, "x": -181.50636, "y": -97.46168, "z": 0, "nansi-louvain": 26, "nansi-degree": 1 } }, { "key": "1615", "attributes": { "label": "Sápmi", "nodedef": "n1615", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6317973, "x": -196.63387, "y": 264.9456, "z": 0, "nansi-louvain": 10, "nansi-degree": 7 } }, { "key": "1616", "attributes": { "label": "Satellites", "nodedef": "n1616", "occurrences": 1, "color": "rgb(255,153,153)", "size": 3.6428227, "x": 33.361706, "y": 265.86078, "z": 0, "nansi-louvain": 12, "nansi-degree": 8 } }, { "key": "1617", "attributes": { "label": "Satellite Service", "nodedef": "n1617", "occurrences": 3, "color": "rgb(255,153,153)", "size": 3.6, "x": 38.469196, "y": 277.28928, "z": 0, "nansi-louvain": 12, "nansi-degree": 1 } }, { "key": "1618", "attributes": { "label": "Scandinavie", "nodedef": "n1618", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6223197, "x": -91.76989, "y": -77.38955, "z": 0, "nansi-louvain": 3, "nansi-degree": 6 } }, { "key": "1619", "attributes": { "label": "Health Science", "nodedef": "n1619", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.600933, "x": 143.5458, "y": 26.265783, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "1620", "attributes": { "label": "Science De La Terre", "nodedef": "n1620", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 129.13684, "y": -0.51399565, "z": 0, "nansi-louvain": 17, "nansi-degree": 6 } }, { "key": "1621", "attributes": { "label": "Sciences Naturelles", "nodedef": "n1621", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6144404, "x": 139.38882, "y": -21.86202, "z": 0, "nansi-louvain": 17, "nansi-degree": 5 } }, { "key": "1622", "attributes": { "label": "Science Physique", "nodedef": "n1622", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.600933, "x": 241.86485, "y": 5.851606, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "1623", "attributes": { "label": "Sciences Santé", "nodedef": "n1623", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 174.2429, "y": -14.893029, "z": 0, "nansi-louvain": 17, "nansi-degree": 3 } }, { "key": "1624", "attributes": { "label": "Sciences Sociales", "nodedef": "n1624", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6082125, "x": 189.87495, "y": -40.924496, "z": 0, "nansi-louvain": 17, "nansi-degree": 4 } }, { "key": "1625", "attributes": { "label": "Sédiments", "nodedef": "n1625", "occurrences": 1, "color": "rgb(0,153,0)", "size": 3.6144404, "x": -101.01667, "y": 116.11181, "z": 0, "nansi-louvain": 7, "nansi-degree": 5 } }, { "key": "1626", "attributes": { "label": "Sedna Iv", "nodedef": "n1626", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6317973, "x": 25.816294, "y": 24.58893, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "1627", "attributes": { "label": "Port De Montreal", "nodedef": "n1627", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6, "x": 26.335724, "y": 41.924816, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "1628", "attributes": { "label": "Septentrional De L'Europe,1", "nodedef": "n1628", "color": "rgb(0,204,204)", "size": 3.6317973, "x": -65.197815, "y": -25.908295, "z": 0, "nansi-louvain": 3, "nansi-degree": 7 } }, { "key": "1629", "attributes": { "label": "Séquestration Co2", "nodedef": "n1629", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6428227, "x": -87.03499, "y": 130.11208, "z": 0, "nansi-louvain": 7, "nansi-degree": 8 } }, { "key": "1630", "attributes": { "label": "Séracs", "nodedef": "n1630", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6, "x": -180.3868, "y": 167.55145, "z": 0, "nansi-louvain": 10, "nansi-degree": 1 } }, { "key": "1631", "attributes": { "label": "Shtokman", "nodedef": "n1631", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.6428227, "x": -221.01178, "y": 90.36147, "z": 0, "nansi-louvain": 6, "nansi-degree": 8 } }, { "key": "1632", "attributes": { "label": "Sibérie", "nodedef": "n1632", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6428227, "x": -40.070488, "y": -82.834305, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "1633", "attributes": { "label": "Situation Anticyclonique", "nodedef": "n1633", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6223197, "x": 177.78218, "y": -149.82042, "z": 0, "nansi-louvain": 4, "nansi-degree": 6 } }, { "key": "1634", "attributes": { "label": "Brise Thermique", "nodedef": "n1634", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6, "x": 194.40106, "y": -157.2646, "z": 0, "nansi-louvain": 4, "nansi-degree": 1 } }, { "key": "1635", "attributes": { "label": "Skaller", "nodedef": "n1635", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": -109.13955, "y": 27.756178, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1636", "attributes": { "label": "Snohvit", "nodedef": "n1636", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.6317973, "x": -221.43335, "y": 124.90592, "z": 0, "nansi-louvain": 6, "nansi-degree": 7 } }, { "key": "1637", "attributes": { "label": "Sognefjorden", "nodedef": "n1637", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -173.06946, "y": 219.33209, "z": 0, "nansi-louvain": 10, "nansi-degree": 6 } }, { "key": "1638", "attributes": { "label": "Water Level", "nodedef": "n1638", "occurrences": 3, "color": "rgb(153,255,255)", "size": 3.6036906, "x": -59.410347, "y": 241.67192, "z": 0, "nansi-louvain": 12, "nansi-degree": 3 } }, { "key": "1639", "attributes": { "label": "Solifluxion", "nodedef": "n1639", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6428227, "x": 130.27153, "y": -135.1592, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "1640", "attributes": { "label": "Cone De Dejection", "nodedef": "n1640", "occurrences": 3, "color": "rgb(102,102,0)", "size": 3.6, "x": 149.04483, "y": -141.89407, "z": 0, "nansi-louvain": 9, "nansi-degree": 1 } }, { "key": "1641", "attributes": { "label": "Sols", "nodedef": "n1641", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.600933, "x": 204.19966, "y": -49.602283, "z": 0, "nansi-louvain": 4, "nansi-degree": 2 } }, { "key": "1642", "attributes": { "label": "Solstices", "nodedef": "n1642", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6, "x": -43.611423, "y": 224.17358, "z": 0, "nansi-louvain": 7, "nansi-degree": 1 } }, { "key": "1643", "attributes": { "label": "Sonde Viking", "nodedef": "n1643", "occurrences": 1, "color": "rgb(255,153,153)", "size": 3.600933, "x": 127.120865, "y": 102.43778, "z": 0, "nansi-louvain": 12, "nansi-degree": 2 } }, { "key": "1644", "attributes": { "label": "Sous-Marin Mir", "nodedef": "n1644", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6693263, "x": -0.17155644, "y": -28.442848, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "1645", "attributes": { "label": "Sous-Marins", "nodedef": "n1645", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -64.228546, "y": -142.26791, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } }, { "key": "1646", "attributes": { "label": "South Iceland", "nodedef": "n1646", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -164.00523, "y": 180.64215, "z": 0, "nansi-louvain": 10, "nansi-degree": 3 } }, { "key": "1647", "attributes": { "label": "Souveraineté", "nodedef": "n1647", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -18.925251, "y": -181.85095, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "1648", "attributes": { "label": "Souveraineté Canadienne", "nodedef": "n1648", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6428227, "x": -9.3397, "y": -40.447044, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "1649", "attributes": { "label": "Souveraineté Limitée", "nodedef": "n1649", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -47.53002, "y": -171.51587, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "1650", "attributes": { "label": "Spitzberg", "nodedef": "n1650", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6693263, "x": -44.462524, "y": -22.980768, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "1651", "attributes": { "label": "Statoilhydro", "nodedef": "n1651", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.6223197, "x": -237.97559, "y": 85.619804, "z": 0, "nansi-louvain": 6, "nansi-degree": 6 } }, { "key": "1652", "attributes": { "label": "Subarctique", "nodedef": "n1652", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6693263, "x": 19.681393, "y": -81.486855, "z": 0, "nansi-louvain": 3, "nansi-degree": 10 } }, { "key": "1653", "attributes": { "label": "Submersible Mir", "nodedef": "n1653", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.600933, "x": 5.290855, "y": 144.92424, "z": 0, "nansi-louvain": 16, "nansi-degree": 2 } }, { "key": "1654", "attributes": { "label": "Suède", "nodedef": "n1654", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6036906, "x": -109.616905, "y": 9.340475, "z": 0, "nansi-louvain": 0, "nansi-degree": 3 } }, { "key": "1655", "attributes": { "label": "Superficie", "nodedef": "n1655", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.6, "x": 5.1069527, "y": -63.505527, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "1656", "attributes": { "label": "Surface Bioproductive", "nodedef": "n1656", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6144404, "x": 35.74007, "y": -83.64972, "z": 0, "nansi-louvain": 9, "nansi-degree": 5 } }, { "key": "1657", "attributes": { "label": "Surfaces Englacées", "nodedef": "n1657", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6428227, "x": 109.93007, "y": 5.358879, "z": 0, "nansi-louvain": 19, "nansi-degree": 8 } }, { "key": "1658", "attributes": { "label": "Sverdrup", "nodedef": "n1658", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.655348, "x": -88.655815, "y": 229.88698, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "1659", "attributes": { "label": "Jacobs Engineering", "nodedef": "n1659", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6, "x": -92.023476, "y": 245.52719, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1660", "attributes": { "label": "Symboliquement Planté", "nodedef": "n1660", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.655348, "x": -87.72033, "y": -28.34866, "z": 0, "nansi-louvain": 20, "nansi-degree": 9 } }, { "key": "1661", "attributes": { "label": "Système Opérant", "nodedef": "n1661", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6223197, "x": 138.26212, "y": -154.69266, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "1662", "attributes": { "label": "Approche Systémique", "nodedef": "n1662", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6, "x": 157.14131, "y": -162.69797, "z": 0, "nansi-louvain": 9, "nansi-degree": 1 } }, { "key": "1663", "attributes": { "label": "Systèmes Glaciaires", "nodedef": "n1663", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.655348, "x": 106.48852, "y": 16.894548, "z": 0, "nansi-louvain": 19, "nansi-degree": 9 } }, { "key": "1664", "attributes": { "label": "Taïga", "nodedef": "n1664", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6223197, "x": -109.22425, "y": 244.91193, "z": 0, "nansi-louvain": 10, "nansi-degree": 6 } }, { "key": "1665", "attributes": { "label": "Technologie", "nodedef": "n1665", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 171.11726, "y": -36.323093, "z": 0, "nansi-louvain": 17, "nansi-degree": 3 } }, { "key": "1666", "attributes": { "label": "Technologie Gmbh", "nodedef": "n1666", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6, "x": 194.64037, "y": -29.777235, "z": 0, "nansi-louvain": 17, "nansi-degree": 1 } }, { "key": "1667", "attributes": { "label": "Technologies Modernes", "nodedef": "n1667", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6144404, "x": -3.748106, "y": -115.42146, "z": 0, "nansi-louvain": 5, "nansi-degree": 5 } }, { "key": "1668", "attributes": { "label": "Creation De Valeur", "nodedef": "n1668", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6, "x": -15.876973, "y": -131.9882, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1669", "attributes": { "label": "Television Show", "nodedef": "n1669", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6, "x": -102.24507, "y": 30.805376, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1670", "attributes": { "label": "Température", "nodedef": "n1670", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 118.36368, "y": 279.93985, "z": 0, "nansi-louvain": 12, "nansi-degree": 8 } }, { "key": "1671", "attributes": { "label": "Temperature Sensor", "nodedef": "n1671", "occurrences": 2, "color": "rgb(255,255,51)", "size": 3.6, "x": 124.707756, "y": 288.08344, "z": 0, "nansi-louvain": 12, "nansi-degree": 1 } }, { "key": "1672", "attributes": { "label": "Température Constante", "nodedef": "n1672", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 227.40694, "y": -86.92397, "z": 0, "nansi-louvain": 1, "nansi-degree": 7 } }, { "key": "1673", "attributes": { "label": "Température De L'Eau,1", "nodedef": "n1673", "color": "rgb(255,204,102)", "size": 3.655348, "x": 171.04572, "y": -79.63148, "z": 0, "nansi-louvain": 4, "nansi-degree": 9 } }, { "key": "1674", "attributes": { "label": "Température Moyenne Du Globe", "nodedef": "n1674", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6693263, "x": 91.86571, "y": -85.706665, "z": 0, "nansi-louvain": 9, "nansi-degree": 10 } }, { "key": "1675", "attributes": { "label": "Températures Globales", "nodedef": "n1675", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.655348, "x": 108.74146, "y": -72.640526, "z": 0, "nansi-louvain": 9, "nansi-degree": 9 } }, { "key": "1676", "attributes": { "label": "Territoire Arctique Canadien", "nodedef": "n1676", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6, "x": -59.761757, "y": -20.54515, "z": 0, "nansi-louvain": 3, "nansi-degree": 1 } }, { "key": "1677", "attributes": { "label": "Théorie Erronée De La Mer Polaire Libre De Glace", "nodedef": "n1677", "occurrences": 1, "color": "rgb(153,255,255)", "size": 3.6317973, "x": 28.453182, "y": 80.84846, "z": 0, "nansi-louvain": 8, "nansi-degree": 7 } }, { "key": "1678", "attributes": { "label": "Tonje Folkestad", "nodedef": "n1678", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6223197, "x": -32.453465, "y": 108.04645, "z": 0, "nansi-louvain": 18, "nansi-degree": 6 } }, { "key": "1679", "attributes": { "label": "Topographie", "nodedef": "n1679", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6036906, "x": 223.61755, "y": -154.39336, "z": 0, "nansi-louvain": 5, "nansi-degree": 3 } }, { "key": "1680", "attributes": { "label": "Technique De Randonnée", "nodedef": "n1680", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.6, "x": 238.01064, "y": -160.53526, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1681", "attributes": { "label": "Toundra", "nodedef": "n1681", "occurrences": 1, "color": "rgb(51,153,255)", "size": 3.6, "x": -390.46573, "y": -183.05362, "z": 0, "nansi-louvain": 27, "nansi-degree": 1 } }, { "key": "1682", "attributes": { "label": "Yves Delorme", "nodedef": "n1682", "occurrences": 2, "color": "rgb(51,153,255)", "size": 3.6, "x": -389.2569, "y": -185.68068, "z": 0, "nansi-louvain": 27, "nansi-degree": 1 } }, { "key": "1683", "attributes": { "label": "Tourisme De Masse", "nodedef": "n1683", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6036906, "x": 3.604668, "y": -133.8908, "z": 0, "nansi-louvain": 3, "nansi-degree": 3 } }, { "key": "1684", "attributes": { "label": "Traineau", "nodedef": "n1684", "occurrences": 1, "color": "rgb(204,204,255)", "size": 3.6428227, "x": -104.89781, "y": -61.11637, "z": 0, "nansi-louvain": 3, "nansi-degree": 8 } }, { "key": "1685", "attributes": { "label": "Transformations", "nodedef": "n1685", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -131.20236, "y": 30.793642, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1686", "attributes": { "label": "Template Matching", "nodedef": "n1686", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.6, "x": -147.75954, "y": 32.882477, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1687", "attributes": { "label": "Transhumance", "nodedef": "n1687", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -159.95773, "y": 19.793941, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1688", "attributes": { "label": "Valley Winter", "nodedef": "n1688", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.600933, "x": -136.13692, "y": 21.933361, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1689", "attributes": { "label": "Très Basses Températures", "nodedef": "n1689", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6428227, "x": 161.97713, "y": 31.076162, "z": 0, "nansi-louvain": 12, "nansi-degree": 8 } }, { "key": "1690", "attributes": { "label": "Tromsø", "nodedef": "n1690", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6144404, "x": -149.18419, "y": 207.48682, "z": 0, "nansi-louvain": 18, "nansi-degree": 5 } }, { "key": "1691", "attributes": { "label": "University Of Tromsø", "nodedef": "n1691", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6, "x": -158.9338, "y": 216.89633, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1692", "attributes": { "label": "Uiuc", "nodedef": "n1692", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.600933, "x": -82.32467, "y": 97.723175, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1693", "attributes": { "label": "Board Of Trustees", "nodedef": "n1693", "occurrences": 2, "color": "rgb(102,255,102)", "size": 3.6, "x": -99.81919, "y": 97.397865, "z": 0, "nansi-louvain": 0, "nansi-degree": 1 } }, { "key": "1694", "attributes": { "label": "Umberto Nobile", "nodedef": "n1694", "occurrences": 2, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -63.477303, "y": 214.24065, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "1695", "attributes": { "label": "Aeronautical Engineering", "nodedef": "n1695", "occurrences": 2, "color": "rgb(153,255,255)", "size": 3.6, "x": -61.607407, "y": 231.65402, "z": 0, "nansi-louvain": 18, "nansi-degree": 1 } }, { "key": "1696", "attributes": { "label": "Une Vérité Qui Dérange", "nodedef": "n1696", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.6223197, "x": 28.941698, "y": -42.69651, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "1697", "attributes": { "label": "Unique Plateau Continental", "nodedef": "n1697", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6, "x": -35.02953, "y": -199.86, "z": 0, "nansi-louvain": 5, "nansi-degree": 1 } }, { "key": "1698", "attributes": { "label": "Universite De Montreal", "nodedef": "n1698", "occurrences": 3, "color": "rgb(255,255,51)", "size": 3.600933, "x": 181.01709, "y": 5.34938, "z": 0, "nansi-louvain": 17, "nansi-degree": 2 } }, { "key": "1699", "attributes": { "label": "Universite De Reading", "nodedef": "n1699", "occurrences": 2, "color": "rgb(255,204,102)", "size": 3.6036906, "x": 79.22724, "y": -68.558075, "z": 0, "nansi-louvain": 17, "nansi-degree": 3 } }, { "key": "1700", "attributes": { "label": "Usgs", "nodedef": "n1700", "occurrences": 1, "color": "rgb(102,255,102)", "size": 3.600933, "x": -43.71326, "y": 89.10525, "z": 0, "nansi-louvain": 7, "nansi-degree": 2 } }, { "key": "1701", "attributes": { "label": "Variations Glaciaires", "nodedef": "n1701", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6317973, "x": 108.571884, "y": -59.02376, "z": 0, "nansi-louvain": 9, "nansi-degree": 7 } }, { "key": "1702", "attributes": { "label": "Vatnajökull", "nodedef": "n1702", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6428227, "x": -150.40474, "y": 185.80707, "z": 0, "nansi-louvain": 10, "nansi-degree": 8 } }, { "key": "1703", "attributes": { "label": "Vatnajokull Glacier", "nodedef": "n1703", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6223197, "x": -141.02289, "y": 176.60689, "z": 0, "nansi-louvain": 10, "nansi-degree": 6 } }, { "key": "1704", "attributes": { "label": "Volcanic Plateau", "nodedef": "n1704", "occurrences": 3, "color": "rgb(0,204,204)", "size": 3.6036906, "x": -176.22404, "y": 195.32599, "z": 0, "nansi-louvain": 10, "nansi-degree": 3 } }, { "key": "1705", "attributes": { "label": "Végétation Locale", "nodedef": "n1705", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.6428227, "x": 120.49048, "y": -159.24855, "z": 0, "nansi-louvain": 9, "nansi-degree": 8 } }, { "key": "1706", "attributes": { "label": "Vladimir Vladimirovitch", "nodedef": "n1706", "occurrences": 3, "color": "rgb(255,51,51)", "size": 3.6082125, "x": -93.2376, "y": -162.74384, "z": 0, "nansi-louvain": 5, "nansi-degree": 4 } }, { "key": "1707", "attributes": { "label": "Volumes D'Hydrocarbures,1", "nodedef": "n1707", "color": "rgb(102,0,102)", "size": 3.6428227, "x": -31.056797, "y": -108.60914, "z": 0, "nansi-louvain": 1, "nansi-degree": 8 } }, { "key": "1708", "attributes": { "label": "Voyages Et Aventures Du Capitaine Hatteras", "nodedef": "n1708", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.600933, "x": 23.954185, "y": 50.759125, "z": 0, "nansi-louvain": 12, "nansi-degree": 2 } }, { "key": "1709", "attributes": { "label": "Wally Herbert", "nodedef": "n1709", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6693263, "x": -105.47916, "y": 160.91496, "z": 0, "nansi-louvain": 18, "nansi-degree": 10 } }, { "key": "1710", "attributes": { "label": "War Of Terror", "nodedef": "n1710", "occurrences": 2, "color": "rgb(255,51,51)", "size": 3.600933, "x": -141.89842, "y": 24.089783, "z": 0, "nansi-louvain": 0, "nansi-degree": 2 } }, { "key": "1711", "attributes": { "label": "Wildlife Fund", "nodedef": "n1711", "occurrences": 2, "color": "rgb(153,255,0)", "size": 3.6036906, "x": -46.68344, "y": 105.93882, "z": 0, "nansi-louvain": 7, "nansi-degree": 3 } }, { "key": "1712", "attributes": { "label": "Will Steger", "nodedef": "n1712", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.655348, "x": -68.51018, "y": 194.99344, "z": 0, "nansi-louvain": 18, "nansi-degree": 9 } }, { "key": "1713", "attributes": { "label": "Wood Mackenzie", "nodedef": "n1713", "occurrences": 1, "color": "rgb(102,0,102)", "size": 3.6223197, "x": -204.71492, "y": 65.6323, "z": 0, "nansi-louvain": 6, "nansi-degree": 6 } }, { "key": "1714", "attributes": { "label": "Wwf", "nodedef": "n1714", "occurrences": 1, "color": "rgb(153,255,0)", "size": 3.600933, "x": -46.496254, "y": 120.20397, "z": 0, "nansi-louvain": 7, "nansi-degree": 2 } }, { "key": "1715", "attributes": { "label": "Yamal", "nodedef": "n1715", "occurrences": 1, "color": "rgb(0,204,204)", "size": 3.6082125, "x": -84.421776, "y": 247.86906, "z": 0, "nansi-louvain": 18, "nansi-degree": 4 } }, { "key": "1716", "attributes": { "label": "Yukon", "nodedef": "n1716", "occurrences": 1, "color": "rgb(153,0,0)", "size": 3.6144404, "x": -138.6115, "y": 98.961006, "z": 0, "nansi-louvain": 16, "nansi-degree": 5 } }, { "key": "1717", "attributes": { "label": "Yukon River", "nodedef": "n1717", "occurrences": 3, "color": "rgb(153,0,0)", "size": 3.6223197, "x": -144.32701, "y": 94.38094, "z": 0, "nansi-louvain": 16, "nansi-degree": 6 } }, { "key": "1718", "attributes": { "label": "Yukon Territories", "nodedef": "n1718", "occurrences": 5, "color": "rgb(153,0,0)", "size": 3.6317973, "x": -141.15402, "y": 87.39744, "z": 0, "nansi-louvain": 16, "nansi-degree": 7 } }, { "key": "1719", "attributes": { "label": "Yvon Le Maho", "nodedef": "n1719", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.600933, "x": 70.047485, "y": -58.874477, "z": 0, "nansi-louvain": 9, "nansi-degree": 2 } }, { "key": "1720", "attributes": { "label": "Zones De Fractures", "nodedef": "n1720", "occurrences": 1, "color": "rgb(255,255,51)", "size": 3.6317973, "x": 167.05353, "y": -45.1743, "z": 0, "nansi-louvain": 1, "nansi-degree": 7 } }, { "key": "1721", "attributes": { "label": "Zones Froides", "nodedef": "n1721", "occurrences": 1, "color": "rgb(255,204,102)", "size": 3.6223197, "x": 126.55944, "y": -88.10074, "z": 0, "nansi-louvain": 9, "nansi-degree": 6 } }, { "key": "1722", "attributes": { "label": "Zones Géographiques", "nodedef": "n1722", "occurrences": 1, "color": "rgb(255,51,51)", "size": 3.600933, "x": -23.956884, "y": -117.91388, "z": 0, "nansi-louvain": 5, "nansi-degree": 2 } } ], "edges": [ { "source": "0", "target": "1", "key": "0", "undirected": true }, { "source": "2", "target": "1", "key": "1", "undirected": true }, { "source": "2", "target": "3", "key": "2", "undirected": true }, { "source": "4", "target": "1", "key": "3", "undirected": true }, { "source": "4", "target": "5", "key": "4", "undirected": true }, { "source": "6", "target": "1", "key": "5", "undirected": true }, { "source": "6", "target": "7", "key": "6", "undirected": true }, { "source": "6", "target": "5", "key": "7", "undirected": true }, { "source": "8", "target": "1", "key": "8", "undirected": true }, { "source": "9", "target": "1", "key": "9", "undirected": true }, { "source": "10", "target": "1", "key": "10", "undirected": true }, { "source": "10", "target": "5", "key": "11", "undirected": true }, { "source": "11", "target": "12", "key": "12", "undirected": true }, { "source": "11", "target": "1", "key": "13", "undirected": true }, { "source": "13", "target": "1", "key": "14", "undirected": true }, { "source": "14", "target": "1", "key": "15", "undirected": true }, { "source": "14", "target": "5", "key": "16", "undirected": true }, { "source": "15", "target": "16", "key": "17", "undirected": true }, { "source": "15", "target": "1", "key": "18", "undirected": true }, { "source": "17", "target": "18", "key": "19", "undirected": true }, { "source": "19", "target": "20", "key": "20", "undirected": true }, { "source": "19", "target": "21", "key": "21", "undirected": true }, { "source": "22", "target": "23", "key": "22", "undirected": true }, { "source": "22", "target": "24", "key": "23", "undirected": true }, { "source": "22", "target": "25", "key": "24", "undirected": true }, { "source": "22", "target": "26", "key": "25", "undirected": true }, { "source": "22", "target": "27", "key": "26", "undirected": true }, { "source": "22", "target": "28", "key": "27", "undirected": true }, { "source": "22", "target": "29", "key": "28", "undirected": true }, { "source": "22", "target": "30", "key": "29", "undirected": true }, { "source": "31", "target": "32", "key": "30", "undirected": true }, { "source": "31", "target": "33", "key": "31", "undirected": true }, { "source": "34", "target": "35", "key": "32", "undirected": true }, { "source": "34", "target": "36", "key": "33", "undirected": true }, { "source": "34", "target": "37", "key": "34", "undirected": true }, { "source": "34", "target": "38", "key": "35", "undirected": true }, { "source": "34", "target": "39", "key": "36", "undirected": true }, { "source": "34", "target": "40", "key": "37", "undirected": true }, { "source": "41", "target": "42", "key": "38", "undirected": true }, { "source": "41", "target": "43", "key": "39", "undirected": true }, { "source": "44", "target": "45", "key": "40", "undirected": true }, { "source": "44", "target": "46", "key": "41", "undirected": true }, { "source": "44", "target": "47", "key": "42", "undirected": true }, { "source": "44", "target": "48", "key": "43", "undirected": true }, { "source": "44", "target": "49", "key": "44", "undirected": true }, { "source": "44", "target": "50", "key": "45", "undirected": true }, { "source": "44", "target": "51", "key": "46", "undirected": true }, { "source": "44", "target": "52", "key": "47", "undirected": true }, { "source": "44", "target": "53", "key": "48", "undirected": true }, { "source": "54", "target": "55", "key": "49", "undirected": true }, { "source": "54", "target": "56", "key": "50", "undirected": true }, { "source": "54", "target": "57", "key": "51", "undirected": true }, { "source": "58", "target": "59", "key": "52", "undirected": true }, { "source": "60", "target": "61", "key": "53", "undirected": true }, { "source": "60", "target": "62", "key": "54", "undirected": true }, { "source": "60", "target": "63", "key": "55", "undirected": true }, { "source": "60", "target": "53", "key": "56", "undirected": true }, { "source": "60", "target": "64", "key": "57", "undirected": true }, { "source": "60", "target": "65", "key": "58", "undirected": true }, { "source": "60", "target": "66", "key": "59", "undirected": true }, { "source": "60", "target": "67", "key": "60", "undirected": true }, { "source": "60", "target": "50", "key": "61", "undirected": true }, { "source": "60", "target": "68", "key": "62", "undirected": true }, { "source": "69", "target": "70", "key": "63", "undirected": true }, { "source": "69", "target": "71", "key": "64", "undirected": true }, { "source": "69", "target": "72", "key": "65", "undirected": true }, { "source": "69", "target": "73", "key": "66", "undirected": true }, { "source": "69", "target": "74", "key": "67", "undirected": true }, { "source": "75", "target": "76", "key": "68", "undirected": true }, { "source": "75", "target": "77", "key": "69", "undirected": true }, { "source": "75", "target": "1", "key": "70", "undirected": true }, { "source": "78", "target": "79", "key": "71", "undirected": true }, { "source": "78", "target": "80", "key": "72", "undirected": true }, { "source": "81", "target": "82", "key": "73", "undirected": true }, { "source": "83", "target": "53", "key": "74", "undirected": true }, { "source": "83", "target": "84", "key": "75", "undirected": true }, { "source": "83", "target": "85", "key": "76", "undirected": true }, { "source": "83", "target": "82", "key": "77", "undirected": true }, { "source": "86", "target": "87", "key": "78", "undirected": true }, { "source": "88", "target": "79", "key": "79", "undirected": true }, { "source": "88", "target": "89", "key": "80", "undirected": true }, { "source": "90", "target": "91", "key": "81", "undirected": true }, { "source": "92", "target": "68", "key": "82", "undirected": true }, { "source": "92", "target": "53", "key": "83", "undirected": true }, { "source": "92", "target": "64", "key": "84", "undirected": true }, { "source": "92", "target": "65", "key": "85", "undirected": true }, { "source": "92", "target": "93", "key": "86", "undirected": true }, { "source": "92", "target": "67", "key": "87", "undirected": true }, { "source": "92", "target": "50", "key": "88", "undirected": true }, { "source": "94", "target": "95", "key": "89", "undirected": true }, { "source": "94", "target": "96", "key": "90", "undirected": true }, { "source": "94", "target": "97", "key": "91", "undirected": true }, { "source": "98", "target": "99", "key": "92", "undirected": true }, { "source": "98", "target": "100", "key": "93", "undirected": true }, { "source": "98", "target": "101", "key": "94", "undirected": true }, { "source": "102", "target": "103", "key": "95", "undirected": true }, { "source": "102", "target": "53", "key": "96", "undirected": true }, { "source": "102", "target": "65", "key": "97", "undirected": true }, { "source": "102", "target": "104", "key": "98", "undirected": true }, { "source": "102", "target": "105", "key": "99", "undirected": true }, { "source": "102", "target": "50", "key": "100", "undirected": true }, { "source": "95", "target": "96", "key": "101", "undirected": true }, { "source": "95", "target": "82", "key": "102", "undirected": true }, { "source": "68", "target": "106", "key": "103", "undirected": true }, { "source": "68", "target": "107", "key": "104", "undirected": true }, { "source": "68", "target": "50", "key": "105", "undirected": true }, { "source": "68", "target": "108", "key": "106", "undirected": true }, { "source": "68", "target": "109", "key": "107", "undirected": true }, { "source": "68", "target": "53", "key": "108", "undirected": true }, { "source": "68", "target": "65", "key": "109", "undirected": true }, { "source": "110", "target": "111", "key": "110", "undirected": true }, { "source": "112", "target": "113", "key": "111", "undirected": true }, { "source": "112", "target": "65", "key": "112", "undirected": true }, { "source": "112", "target": "104", "key": "113", "undirected": true }, { "source": "112", "target": "114", "key": "114", "undirected": true }, { "source": "112", "target": "115", "key": "115", "undirected": true }, { "source": "112", "target": "116", "key": "116", "undirected": true }, { "source": "117", "target": "53", "key": "117", "undirected": true }, { "source": "117", "target": "118", "key": "118", "undirected": true }, { "source": "117", "target": "64", "key": "119", "undirected": true }, { "source": "117", "target": "65", "key": "120", "undirected": true }, { "source": "117", "target": "67", "key": "121", "undirected": true }, { "source": "117", "target": "119", "key": "122", "undirected": true }, { "source": "117", "target": "120", "key": "123", "undirected": true }, { "source": "117", "target": "105", "key": "124", "undirected": true }, { "source": "117", "target": "50", "key": "125", "undirected": true }, { "source": "117", "target": "95", "key": "126", "undirected": true }, { "source": "121", "target": "122", "key": "127", "undirected": true }, { "source": "121", "target": "1", "key": "128", "undirected": true }, { "source": "123", "target": "124", "key": "129", "undirected": true }, { "source": "124", "target": "123", "key": "130", "undirected": true }, { "source": "124", "target": "125", "key": "131", "undirected": true }, { "source": "125", "target": "123", "key": "132", "undirected": true }, { "source": "125", "target": "124", "key": "133", "undirected": true }, { "source": "126", "target": "127", "key": "134", "undirected": true }, { "source": "126", "target": "82", "key": "135", "undirected": true }, { "source": "128", "target": "85", "key": "136", "undirected": true }, { "source": "128", "target": "82", "key": "137", "undirected": true }, { "source": "129", "target": "82", "key": "138", "undirected": true }, { "source": "20", "target": "21", "key": "139", "undirected": true }, { "source": "130", "target": "131", "key": "140", "undirected": true }, { "source": "130", "target": "104", "key": "141", "undirected": true }, { "source": "130", "target": "132", "key": "142", "undirected": true }, { "source": "133", "target": "134", "key": "143", "undirected": true }, { "source": "133", "target": "135", "key": "144", "undirected": true }, { "source": "133", "target": "136", "key": "145", "undirected": true }, { "source": "133", "target": "137", "key": "146", "undirected": true }, { "source": "133", "target": "138", "key": "147", "undirected": true }, { "source": "133", "target": "82", "key": "148", "undirected": true }, { "source": "134", "target": "139", "key": "149", "undirected": true }, { "source": "134", "target": "135", "key": "150", "undirected": true }, { "source": "134", "target": "84", "key": "151", "undirected": true }, { "source": "134", "target": "136", "key": "152", "undirected": true }, { "source": "134", "target": "140", "key": "153", "undirected": true }, { "source": "134", "target": "138", "key": "154", "undirected": true }, { "source": "134", "target": "82", "key": "155", "undirected": true }, { "source": "139", "target": "135", "key": "156", "undirected": true }, { "source": "139", "target": "138", "key": "157", "undirected": true }, { "source": "99", "target": "89", "key": "158", "undirected": true }, { "source": "99", "target": "141", "key": "159", "undirected": true }, { "source": "142", "target": "143", "key": "160", "undirected": true }, { "source": "142", "target": "144", "key": "161", "undirected": true }, { "source": "142", "target": "145", "key": "162", "undirected": true }, { "source": "142", "target": "146", "key": "163", "undirected": true }, { "source": "142", "target": "27", "key": "164", "undirected": true }, { "source": "142", "target": "51", "key": "165", "undirected": true }, { "source": "142", "target": "147", "key": "166", "undirected": true }, { "source": "148", "target": "149", "key": "167", "undirected": true }, { "source": "148", "target": "150", "key": "168", "undirected": true }, { "source": "151", "target": "150", "key": "169", "undirected": true }, { "source": "152", "target": "153", "key": "170", "undirected": true }, { "source": "152", "target": "154", "key": "171", "undirected": true }, { "source": "152", "target": "155", "key": "172", "undirected": true }, { "source": "156", "target": "152", "key": "173", "undirected": true }, { "source": "156", "target": "53", "key": "174", "undirected": true }, { "source": "156", "target": "154", "key": "175", "undirected": true }, { "source": "156", "target": "109", "key": "176", "undirected": true }, { "source": "156", "target": "82", "key": "177", "undirected": true }, { "source": "157", "target": "152", "key": "178", "undirected": true }, { "source": "158", "target": "159", "key": "179", "undirected": true }, { "source": "158", "target": "53", "key": "180", "undirected": true }, { "source": "160", "target": "161", "key": "181", "undirected": true }, { "source": "162", "target": "163", "key": "182", "undirected": true }, { "source": "162", "target": "164", "key": "183", "undirected": true }, { "source": "165", "target": "68", "key": "184", "undirected": true }, { "source": "165", "target": "166", "key": "185", "undirected": true }, { "source": "165", "target": "167", "key": "186", "undirected": true }, { "source": "165", "target": "168", "key": "187", "undirected": true }, { "source": "169", "target": "68", "key": "188", "undirected": true }, { "source": "169", "target": "170", "key": "189", "undirected": true }, { "source": "169", "target": "171", "key": "190", "undirected": true }, { "source": "169", "target": "172", "key": "191", "undirected": true }, { "source": "173", "target": "174", "key": "192", "undirected": true }, { "source": "173", "target": "95", "key": "193", "undirected": true }, { "source": "173", "target": "175", "key": "194", "undirected": true }, { "source": "176", "target": "177", "key": "195", "undirected": true }, { "source": "176", "target": "178", "key": "196", "undirected": true }, { "source": "176", "target": "79", "key": "197", "undirected": true }, { "source": "176", "target": "179", "key": "198", "undirected": true }, { "source": "176", "target": "1", "key": "199", "undirected": true }, { "source": "180", "target": "79", "key": "200", "undirected": true }, { "source": "180", "target": "181", "key": "201", "undirected": true }, { "source": "180", "target": "182", "key": "202", "undirected": true }, { "source": "180", "target": "183", "key": "203", "undirected": true }, { "source": "180", "target": "184", "key": "204", "undirected": true }, { "source": "180", "target": "185", "key": "205", "undirected": true }, { "source": "186", "target": "187", "key": "206", "undirected": true }, { "source": "186", "target": "188", "key": "207", "undirected": true }, { "source": "186", "target": "189", "key": "208", "undirected": true }, { "source": "186", "target": "190", "key": "209", "undirected": true }, { "source": "186", "target": "191", "key": "210", "undirected": true }, { "source": "186", "target": "192", "key": "211", "undirected": true }, { "source": "192", "target": "188", "key": "212", "undirected": true }, { "source": "192", "target": "190", "key": "213", "undirected": true }, { "source": "192", "target": "191", "key": "214", "undirected": true }, { "source": "187", "target": "192", "key": "215", "undirected": true }, { "source": "187", "target": "188", "key": "216", "undirected": true }, { "source": "187", "target": "190", "key": "217", "undirected": true }, { "source": "187", "target": "191", "key": "218", "undirected": true }, { "source": "193", "target": "194", "key": "219", "undirected": true }, { "source": "193", "target": "195", "key": "220", "undirected": true }, { "source": "193", "target": "37", "key": "221", "undirected": true }, { "source": "188", "target": "192", "key": "222", "undirected": true }, { "source": "188", "target": "190", "key": "223", "undirected": true }, { "source": "196", "target": "136", "key": "224", "undirected": true }, { "source": "197", "target": "198", "key": "225", "undirected": true }, { "source": "197", "target": "166", "key": "226", "undirected": true }, { "source": "197", "target": "199", "key": "227", "undirected": true }, { "source": "197", "target": "200", "key": "228", "undirected": true }, { "source": "197", "target": "201", "key": "229", "undirected": true }, { "source": "197", "target": "202", "key": "230", "undirected": true }, { "source": "198", "target": "203", "key": "231", "undirected": true }, { "source": "204", "target": "205", "key": "232", "undirected": true }, { "source": "204", "target": "206", "key": "233", "undirected": true }, { "source": "204", "target": "207", "key": "234", "undirected": true }, { "source": "204", "target": "208", "key": "235", "undirected": true }, { "source": "204", "target": "209", "key": "236", "undirected": true }, { "source": "210", "target": "211", "key": "237", "undirected": true }, { "source": "210", "target": "212", "key": "238", "undirected": true }, { "source": "213", "target": "87", "key": "239", "undirected": true }, { "source": "214", "target": "128", "key": "240", "undirected": true }, { "source": "214", "target": "215", "key": "241", "undirected": true }, { "source": "214", "target": "216", "key": "242", "undirected": true }, { "source": "214", "target": "82", "key": "243", "undirected": true }, { "source": "214", "target": "217", "key": "244", "undirected": true }, { "source": "218", "target": "219", "key": "245", "undirected": true }, { "source": "220", "target": "221", "key": "246", "undirected": true }, { "source": "222", "target": "1", "key": "247", "undirected": true }, { "source": "222", "target": "97", "key": "248", "undirected": true }, { "source": "222", "target": "166", "key": "249", "undirected": true }, { "source": "223", "target": "79", "key": "250", "undirected": true }, { "source": "223", "target": "211", "key": "251", "undirected": true }, { "source": "223", "target": "224", "key": "252", "undirected": true }, { "source": "223", "target": "5", "key": "253", "undirected": true }, { "source": "223", "target": "225", "key": "254", "undirected": true }, { "source": "226", "target": "79", "key": "255", "undirected": true }, { "source": "227", "target": "1", "key": "256", "undirected": true }, { "source": "228", "target": "1", "key": "257", "undirected": true }, { "source": "166", "target": "20", "key": "258", "undirected": true }, { "source": "229", "target": "230", "key": "259", "undirected": true }, { "source": "231", "target": "232", "key": "260", "undirected": true }, { "source": "231", "target": "233", "key": "261", "undirected": true }, { "source": "103", "target": "53", "key": "262", "undirected": true }, { "source": "103", "target": "234", "key": "263", "undirected": true }, { "source": "103", "target": "65", "key": "264", "undirected": true }, { "source": "103", "target": "97", "key": "265", "undirected": true }, { "source": "103", "target": "82", "key": "266", "undirected": true }, { "source": "235", "target": "160", "key": "267", "undirected": true }, { "source": "235", "target": "53", "key": "268", "undirected": true }, { "source": "235", "target": "236", "key": "269", "undirected": true }, { "source": "237", "target": "76", "key": "270", "undirected": true }, { "source": "237", "target": "238", "key": "271", "undirected": true }, { "source": "237", "target": "239", "key": "272", "undirected": true }, { "source": "240", "target": "152", "key": "273", "undirected": true }, { "source": "240", "target": "241", "key": "274", "undirected": true }, { "source": "240", "target": "242", "key": "275", "undirected": true }, { "source": "240", "target": "120", "key": "276", "undirected": true }, { "source": "243", "target": "118", "key": "277", "undirected": true }, { "source": "243", "target": "244", "key": "278", "undirected": true }, { "source": "243", "target": "245", "key": "279", "undirected": true }, { "source": "243", "target": "246", "key": "280", "undirected": true }, { "source": "243", "target": "247", "key": "281", "undirected": true }, { "source": "243", "target": "248", "key": "282", "undirected": true }, { "source": "249", "target": "53", "key": "283", "undirected": true }, { "source": "249", "target": "65", "key": "284", "undirected": true }, { "source": "249", "target": "104", "key": "285", "undirected": true }, { "source": "249", "target": "250", "key": "286", "undirected": true }, { "source": "249", "target": "251", "key": "287", "undirected": true }, { "source": "249", "target": "76", "key": "288", "undirected": true }, { "source": "249", "target": "252", "key": "289", "undirected": true }, { "source": "249", "target": "253", "key": "290", "undirected": true }, { "source": "254", "target": "255", "key": "291", "undirected": true }, { "source": "254", "target": "1", "key": "292", "undirected": true }, { "source": "254", "target": "182", "key": "293", "undirected": true }, { "source": "254", "target": "183", "key": "294", "undirected": true }, { "source": "254", "target": "256", "key": "295", "undirected": true }, { "source": "257", "target": "50", "key": "296", "undirected": true }, { "source": "257", "target": "51", "key": "297", "undirected": true }, { "source": "257", "target": "238", "key": "298", "undirected": true }, { "source": "257", "target": "53", "key": "299", "undirected": true }, { "source": "257", "target": "258", "key": "300", "undirected": true }, { "source": "257", "target": "259", "key": "301", "undirected": true }, { "source": "260", "target": "261", "key": "302", "undirected": true }, { "source": "260", "target": "238", "key": "303", "undirected": true }, { "source": "260", "target": "262", "key": "304", "undirected": true }, { "source": "263", "target": "113", "key": "305", "undirected": true }, { "source": "263", "target": "264", "key": "306", "undirected": true }, { "source": "263", "target": "265", "key": "307", "undirected": true }, { "source": "263", "target": "266", "key": "308", "undirected": true }, { "source": "263", "target": "267", "key": "309", "undirected": true }, { "source": "268", "target": "269", "key": "310", "undirected": true }, { "source": "268", "target": "270", "key": "311", "undirected": true }, { "source": "268", "target": "36", "key": "312", "undirected": true }, { "source": "268", "target": "38", "key": "313", "undirected": true }, { "source": "268", "target": "271", "key": "314", "undirected": true }, { "source": "268", "target": "272", "key": "315", "undirected": true }, { "source": "268", "target": "40", "key": "316", "undirected": true }, { "source": "268", "target": "273", "key": "317", "undirected": true }, { "source": "268", "target": "34", "key": "318", "undirected": true }, { "source": "268", "target": "274", "key": "319", "undirected": true }, { "source": "274", "target": "275", "key": "320", "undirected": true }, { "source": "274", "target": "272", "key": "321", "undirected": true }, { "source": "274", "target": "40", "key": "322", "undirected": true }, { "source": "274", "target": "276", "key": "323", "undirected": true }, { "source": "274", "target": "269", "key": "324", "undirected": true }, { "source": "274", "target": "270", "key": "325", "undirected": true }, { "source": "274", "target": "36", "key": "326", "undirected": true }, { "source": "274", "target": "37", "key": "327", "undirected": true }, { "source": "274", "target": "38", "key": "328", "undirected": true }, { "source": "269", "target": "276", "key": "329", "undirected": true }, { "source": "269", "target": "274", "key": "330", "undirected": true }, { "source": "269", "target": "270", "key": "331", "undirected": true }, { "source": "269", "target": "37", "key": "332", "undirected": true }, { "source": "269", "target": "38", "key": "333", "undirected": true }, { "source": "269", "target": "275", "key": "334", "undirected": true }, { "source": "269", "target": "194", "key": "335", "undirected": true }, { "source": "269", "target": "40", "key": "336", "undirected": true }, { "source": "269", "target": "273", "key": "337", "undirected": true }, { "source": "277", "target": "185", "key": "338", "undirected": true }, { "source": "278", "target": "238", "key": "339", "undirected": true }, { "source": "42", "target": "279", "key": "340", "undirected": true }, { "source": "42", "target": "280", "key": "341", "undirected": true }, { "source": "42", "target": "53", "key": "342", "undirected": true }, { "source": "42", "target": "281", "key": "343", "undirected": true }, { "source": "42", "target": "282", "key": "344", "undirected": true }, { "source": "42", "target": "48", "key": "345", "undirected": true }, { "source": "42", "target": "49", "key": "346", "undirected": true }, { "source": "42", "target": "283", "key": "347", "undirected": true }, { "source": "42", "target": "284", "key": "348", "undirected": true }, { "source": "285", "target": "61", "key": "349", "undirected": true }, { "source": "285", "target": "62", "key": "350", "undirected": true }, { "source": "285", "target": "63", "key": "351", "undirected": true }, { "source": "285", "target": "53", "key": "352", "undirected": true }, { "source": "285", "target": "65", "key": "353", "undirected": true }, { "source": "285", "target": "286", "key": "354", "undirected": true }, { "source": "285", "target": "287", "key": "355", "undirected": true }, { "source": "285", "target": "50", "key": "356", "undirected": true }, { "source": "285", "target": "51", "key": "357", "undirected": true }, { "source": "285", "target": "68", "key": "358", "undirected": true }, { "source": "288", "target": "65", "key": "359", "undirected": true }, { "source": "288", "target": "289", "key": "360", "undirected": true }, { "source": "288", "target": "50", "key": "361", "undirected": true }, { "source": "288", "target": "51", "key": "362", "undirected": true }, { "source": "288", "target": "68", "key": "363", "undirected": true }, { "source": "288", "target": "62", "key": "364", "undirected": true }, { "source": "288", "target": "53", "key": "365", "undirected": true }, { "source": "288", "target": "290", "key": "366", "undirected": true }, { "source": "291", "target": "292", "key": "367", "undirected": true }, { "source": "291", "target": "219", "key": "368", "undirected": true }, { "source": "291", "target": "293", "key": "369", "undirected": true }, { "source": "291", "target": "294", "key": "370", "undirected": true }, { "source": "291", "target": "295", "key": "371", "undirected": true }, { "source": "292", "target": "296", "key": "372", "undirected": true }, { "source": "292", "target": "219", "key": "373", "undirected": true }, { "source": "292", "target": "297", "key": "374", "undirected": true }, { "source": "292", "target": "182", "key": "375", "undirected": true }, { "source": "298", "target": "296", "key": "376", "undirected": true }, { "source": "298", "target": "219", "key": "377", "undirected": true }, { "source": "298", "target": "299", "key": "378", "undirected": true }, { "source": "298", "target": "79", "key": "379", "undirected": true }, { "source": "298", "target": "300", "key": "380", "undirected": true }, { "source": "298", "target": "185", "key": "381", "undirected": true }, { "source": "301", "target": "292", "key": "382", "undirected": true }, { "source": "301", "target": "296", "key": "383", "undirected": true }, { "source": "301", "target": "294", "key": "384", "undirected": true }, { "source": "301", "target": "295", "key": "385", "undirected": true }, { "source": "301", "target": "182", "key": "386", "undirected": true }, { "source": "301", "target": "302", "key": "387", "undirected": true }, { "source": "303", "target": "296", "key": "388", "undirected": true }, { "source": "303", "target": "219", "key": "389", "undirected": true }, { "source": "303", "target": "182", "key": "390", "undirected": true }, { "source": "303", "target": "304", "key": "391", "undirected": true }, { "source": "303", "target": "185", "key": "392", "undirected": true }, { "source": "303", "target": "301", "key": "393", "undirected": true }, { "source": "305", "target": "219", "key": "394", "undirected": true }, { "source": "305", "target": "306", "key": "395", "undirected": true }, { "source": "305", "target": "307", "key": "396", "undirected": true }, { "source": "305", "target": "308", "key": "397", "undirected": true }, { "source": "305", "target": "79", "key": "398", "undirected": true }, { "source": "305", "target": "309", "key": "399", "undirected": true }, { "source": "305", "target": "185", "key": "400", "undirected": true }, { "source": "310", "target": "296", "key": "401", "undirected": true }, { "source": "310", "target": "311", "key": "402", "undirected": true }, { "source": "310", "target": "79", "key": "403", "undirected": true }, { "source": "310", "target": "45", "key": "404", "undirected": true }, { "source": "310", "target": "312", "key": "405", "undirected": true }, { "source": "310", "target": "46", "key": "406", "undirected": true }, { "source": "310", "target": "185", "key": "407", "undirected": true }, { "source": "270", "target": "36", "key": "408", "undirected": true }, { "source": "270", "target": "38", "key": "409", "undirected": true }, { "source": "270", "target": "313", "key": "410", "undirected": true }, { "source": "270", "target": "40", "key": "411", "undirected": true }, { "source": "270", "target": "273", "key": "412", "undirected": true }, { "source": "35", "target": "36", "key": "413", "undirected": true }, { "source": "35", "target": "38", "key": "414", "undirected": true }, { "source": "35", "target": "39", "key": "415", "undirected": true }, { "source": "35", "target": "40", "key": "416", "undirected": true }, { "source": "35", "target": "273", "key": "417", "undirected": true }, { "source": "35", "target": "34", "key": "418", "undirected": true }, { "source": "314", "target": "292", "key": "419", "undirected": true }, { "source": "314", "target": "296", "key": "420", "undirected": true }, { "source": "314", "target": "295", "key": "421", "undirected": true }, { "source": "314", "target": "315", "key": "422", "undirected": true }, { "source": "314", "target": "182", "key": "423", "undirected": true }, { "source": "314", "target": "316", "key": "424", "undirected": true }, { "source": "314", "target": "317", "key": "425", "undirected": true }, { "source": "296", "target": "219", "key": "426", "undirected": true }, { "source": "296", "target": "318", "key": "427", "undirected": true }, { "source": "296", "target": "79", "key": "428", "undirected": true }, { "source": "296", "target": "319", "key": "429", "undirected": true }, { "source": "296", "target": "182", "key": "430", "undirected": true }, { "source": "296", "target": "185", "key": "431", "undirected": true }, { "source": "296", "target": "292", "key": "432", "undirected": true }, { "source": "320", "target": "292", "key": "433", "undirected": true }, { "source": "320", "target": "296", "key": "434", "undirected": true }, { "source": "320", "target": "321", "key": "435", "undirected": true }, { "source": "320", "target": "322", "key": "436", "undirected": true }, { "source": "320", "target": "323", "key": "437", "undirected": true }, { "source": "36", "target": "38", "key": "438", "undirected": true }, { "source": "36", "target": "275", "key": "439", "undirected": true }, { "source": "36", "target": "40", "key": "440", "undirected": true }, { "source": "36", "target": "273", "key": "441", "undirected": true }, { "source": "36", "target": "276", "key": "442", "undirected": true }, { "source": "36", "target": "270", "key": "443", "undirected": true }, { "source": "36", "target": "122", "key": "444", "undirected": true }, { "source": "219", "target": "292", "key": "445", "undirected": true }, { "source": "219", "target": "296", "key": "446", "undirected": true }, { "source": "219", "target": "79", "key": "447", "undirected": true }, { "source": "219", "target": "324", "key": "448", "undirected": true }, { "source": "219", "target": "182", "key": "449", "undirected": true }, { "source": "306", "target": "315", "key": "450", "undirected": true }, { "source": "306", "target": "325", "key": "451", "undirected": true }, { "source": "306", "target": "219", "key": "452", "undirected": true }, { "source": "306", "target": "326", "key": "453", "undirected": true }, { "source": "306", "target": "79", "key": "454", "undirected": true }, { "source": "327", "target": "298", "key": "455", "undirected": true }, { "source": "327", "target": "296", "key": "456", "undirected": true }, { "source": "327", "target": "219", "key": "457", "undirected": true }, { "source": "327", "target": "306", "key": "458", "undirected": true }, { "source": "327", "target": "79", "key": "459", "undirected": true }, { "source": "327", "target": "315", "key": "460", "undirected": true }, { "source": "326", "target": "315", "key": "461", "undirected": true }, { "source": "326", "target": "298", "key": "462", "undirected": true }, { "source": "326", "target": "219", "key": "463", "undirected": true }, { "source": "326", "target": "306", "key": "464", "undirected": true }, { "source": "326", "target": "79", "key": "465", "undirected": true }, { "source": "311", "target": "296", "key": "466", "undirected": true }, { "source": "311", "target": "79", "key": "467", "undirected": true }, { "source": "311", "target": "224", "key": "468", "undirected": true }, { "source": "311", "target": "45", "key": "469", "undirected": true }, { "source": "311", "target": "46", "key": "470", "undirected": true }, { "source": "328", "target": "296", "key": "471", "undirected": true }, { "source": "328", "target": "311", "key": "472", "undirected": true }, { "source": "328", "target": "45", "key": "473", "undirected": true }, { "source": "328", "target": "329", "key": "474", "undirected": true }, { "source": "328", "target": "46", "key": "475", "undirected": true }, { "source": "328", "target": "182", "key": "476", "undirected": true }, { "source": "328", "target": "185", "key": "477", "undirected": true }, { "source": "330", "target": "296", "key": "478", "undirected": true }, { "source": "330", "target": "219", "key": "479", "undirected": true }, { "source": "330", "target": "306", "key": "480", "undirected": true }, { "source": "330", "target": "294", "key": "481", "undirected": true }, { "source": "330", "target": "331", "key": "482", "undirected": true }, { "source": "330", "target": "79", "key": "483", "undirected": true }, { "source": "330", "target": "181", "key": "484", "undirected": true }, { "source": "330", "target": "332", "key": "485", "undirected": true }, { "source": "330", "target": "185", "key": "486", "undirected": true }, { "source": "333", "target": "53", "key": "487", "undirected": true }, { "source": "333", "target": "66", "key": "488", "undirected": true }, { "source": "333", "target": "48", "key": "489", "undirected": true }, { "source": "333", "target": "334", "key": "490", "undirected": true }, { "source": "333", "target": "49", "key": "491", "undirected": true }, { "source": "333", "target": "50", "key": "492", "undirected": true }, { "source": "333", "target": "279", "key": "493", "undirected": true }, { "source": "333", "target": "280", "key": "494", "undirected": true }, { "source": "333", "target": "61", "key": "495", "undirected": true }, { "source": "333", "target": "335", "key": "496", "undirected": true }, { "source": "279", "target": "282", "key": "497", "undirected": true }, { "source": "279", "target": "48", "key": "498", "undirected": true }, { "source": "279", "target": "49", "key": "499", "undirected": true }, { "source": "279", "target": "42", "key": "500", "undirected": true }, { "source": "279", "target": "280", "key": "501", "undirected": true }, { "source": "279", "target": "61", "key": "502", "undirected": true }, { "source": "279", "target": "335", "key": "503", "undirected": true }, { "source": "279", "target": "53", "key": "504", "undirected": true }, { "source": "279", "target": "281", "key": "505", "undirected": true }, { "source": "279", "target": "336", "key": "506", "undirected": true }, { "source": "337", "target": "296", "key": "507", "undirected": true }, { "source": "337", "target": "53", "key": "508", "undirected": true }, { "source": "337", "target": "119", "key": "509", "undirected": true }, { "source": "337", "target": "338", "key": "510", "undirected": true }, { "source": "337", "target": "319", "key": "511", "undirected": true }, { "source": "337", "target": "339", "key": "512", "undirected": true }, { "source": "337", "target": "340", "key": "513", "undirected": true }, { "source": "337", "target": "182", "key": "514", "undirected": true }, { "source": "337", "target": "48", "key": "515", "undirected": true }, { "source": "341", "target": "121", "key": "516", "undirected": true }, { "source": "341", "target": "1", "key": "517", "undirected": true }, { "source": "342", "target": "310", "key": "518", "undirected": true }, { "source": "342", "target": "343", "key": "519", "undirected": true }, { "source": "342", "target": "182", "key": "520", "undirected": true }, { "source": "342", "target": "183", "key": "521", "undirected": true }, { "source": "344", "target": "82", "key": "522", "undirected": true }, { "source": "345", "target": "159", "key": "523", "undirected": true }, { "source": "345", "target": "346", "key": "524", "undirected": true }, { "source": "345", "target": "347", "key": "525", "undirected": true }, { "source": "345", "target": "348", "key": "526", "undirected": true }, { "source": "345", "target": "349", "key": "527", "undirected": true }, { "source": "350", "target": "318", "key": "528", "undirected": true }, { "source": "350", "target": "296", "key": "529", "undirected": true }, { "source": "318", "target": "296", "key": "530", "undirected": true }, { "source": "318", "target": "1", "key": "531", "undirected": true }, { "source": "318", "target": "351", "key": "532", "undirected": true }, { "source": "352", "target": "128", "key": "533", "undirected": true }, { "source": "352", "target": "166", "key": "534", "undirected": true }, { "source": "352", "target": "353", "key": "535", "undirected": true }, { "source": "352", "target": "354", "key": "536", "undirected": true }, { "source": "352", "target": "355", "key": "537", "undirected": true }, { "source": "352", "target": "232", "key": "538", "undirected": true }, { "source": "352", "target": "1", "key": "539", "undirected": true }, { "source": "216", "target": "356", "key": "540", "undirected": true }, { "source": "216", "target": "357", "key": "541", "undirected": true }, { "source": "216", "target": "1", "key": "542", "undirected": true }, { "source": "216", "target": "351", "key": "543", "undirected": true }, { "source": "216", "target": "214", "key": "544", "undirected": true }, { "source": "216", "target": "166", "key": "545", "undirected": true }, { "source": "358", "target": "359", "key": "546", "undirected": true }, { "source": "358", "target": "360", "key": "547", "undirected": true }, { "source": "358", "target": "177", "key": "548", "undirected": true }, { "source": "358", "target": "79", "key": "549", "undirected": true }, { "source": "358", "target": "361", "key": "550", "undirected": true }, { "source": "358", "target": "362", "key": "551", "undirected": true }, { "source": "359", "target": "177", "key": "552", "undirected": true }, { "source": "359", "target": "79", "key": "553", "undirected": true }, { "source": "363", "target": "364", "key": "554", "undirected": true }, { "source": "363", "target": "113", "key": "555", "undirected": true }, { "source": "363", "target": "365", "key": "556", "undirected": true }, { "source": "363", "target": "64", "key": "557", "undirected": true }, { "source": "363", "target": "65", "key": "558", "undirected": true }, { "source": "363", "target": "67", "key": "559", "undirected": true }, { "source": "363", "target": "161", "key": "560", "undirected": true }, { "source": "363", "target": "366", "key": "561", "undirected": true }, { "source": "363", "target": "68", "key": "562", "undirected": true }, { "source": "307", "target": "367", "key": "563", "undirected": true }, { "source": "308", "target": "211", "key": "564", "undirected": true }, { "source": "308", "target": "368", "key": "565", "undirected": true }, { "source": "308", "target": "162", "key": "566", "undirected": true }, { "source": "308", "target": "359", "key": "567", "undirected": true }, { "source": "308", "target": "360", "key": "568", "undirected": true }, { "source": "308", "target": "79", "key": "569", "undirected": true }, { "source": "360", "target": "79", "key": "570", "undirected": true }, { "source": "369", "target": "254", "key": "571", "undirected": true }, { "source": "369", "target": "181", "key": "572", "undirected": true }, { "source": "369", "target": "47", "key": "573", "undirected": true }, { "source": "369", "target": "267", "key": "574", "undirected": true }, { "source": "369", "target": "182", "key": "575", "undirected": true }, { "source": "369", "target": "370", "key": "576", "undirected": true }, { "source": "371", "target": "372", "key": "577", "undirected": true }, { "source": "371", "target": "316", "key": "578", "undirected": true }, { "source": "364", "target": "373", "key": "579", "undirected": true }, { "source": "364", "target": "113", "key": "580", "undirected": true }, { "source": "364", "target": "115", "key": "581", "undirected": true }, { "source": "364", "target": "316", "key": "582", "undirected": true }, { "source": "364", "target": "49", "key": "583", "undirected": true }, { "source": "364", "target": "116", "key": "584", "undirected": true }, { "source": "364", "target": "371", "key": "585", "undirected": true }, { "source": "373", "target": "116", "key": "586", "undirected": true }, { "source": "373", "target": "112", "key": "587", "undirected": true }, { "source": "373", "target": "364", "key": "588", "undirected": true }, { "source": "373", "target": "113", "key": "589", "undirected": true }, { "source": "373", "target": "115", "key": "590", "undirected": true }, { "source": "373", "target": "119", "key": "591", "undirected": true }, { "source": "373", "target": "374", "key": "592", "undirected": true }, { "source": "373", "target": "51", "key": "593", "undirected": true }, { "source": "375", "target": "112", "key": "594", "undirected": true }, { "source": "375", "target": "363", "key": "595", "undirected": true }, { "source": "375", "target": "373", "key": "596", "undirected": true }, { "source": "375", "target": "113", "key": "597", "undirected": true }, { "source": "375", "target": "115", "key": "598", "undirected": true }, { "source": "375", "target": "119", "key": "599", "undirected": true }, { "source": "375", "target": "374", "key": "600", "undirected": true }, { "source": "375", "target": "51", "key": "601", "undirected": true }, { "source": "375", "target": "116", "key": "602", "undirected": true }, { "source": "376", "target": "377", "key": "603", "undirected": true }, { "source": "376", "target": "295", "key": "604", "undirected": true }, { "source": "376", "target": "296", "key": "605", "undirected": true }, { "source": "376", "target": "306", "key": "606", "undirected": true }, { "source": "376", "target": "294", "key": "607", "undirected": true }, { "source": "143", "target": "378", "key": "608", "undirected": true }, { "source": "143", "target": "120", "key": "609", "undirected": true }, { "source": "143", "target": "379", "key": "610", "undirected": true }, { "source": "380", "target": "87", "key": "611", "undirected": true }, { "source": "381", "target": "296", "key": "612", "undirected": true }, { "source": "381", "target": "185", "key": "613", "undirected": true }, { "source": "293", "target": "292", "key": "614", "undirected": true }, { "source": "293", "target": "381", "key": "615", "undirected": true }, { "source": "293", "target": "294", "key": "616", "undirected": true }, { "source": "382", "target": "381", "key": "617", "undirected": true }, { "source": "382", "target": "280", "key": "618", "undirected": true }, { "source": "382", "target": "53", "key": "619", "undirected": true }, { "source": "382", "target": "281", "key": "620", "undirected": true }, { "source": "382", "target": "282", "key": "621", "undirected": true }, { "source": "382", "target": "48", "key": "622", "undirected": true }, { "source": "382", "target": "49", "key": "623", "undirected": true }, { "source": "382", "target": "284", "key": "624", "undirected": true }, { "source": "382", "target": "166", "key": "625", "undirected": true }, { "source": "382", "target": "42", "key": "626", "undirected": true }, { "source": "383", "target": "385", "key": "627", "undirected": true }, { "source": "383", "target": "386", "key": "628", "undirected": true }, { "source": "383", "target": "20", "key": "629", "undirected": true }, { "source": "383", "target": "387", "key": "630", "undirected": true }, { "source": "383", "target": "61", "key": "631", "undirected": true }, { "source": "383", "target": "335", "key": "632", "undirected": true }, { "source": "383", "target": "259", "key": "633", "undirected": true }, { "source": "387", "target": "216", "key": "634", "undirected": true }, { "source": "387", "target": "388", "key": "635", "undirected": true }, { "source": "387", "target": "48", "key": "636", "undirected": true }, { "source": "389", "target": "166", "key": "637", "undirected": true }, { "source": "389", "target": "167", "key": "638", "undirected": true }, { "source": "390", "target": "391", "key": "639", "undirected": true }, { "source": "390", "target": "392", "key": "640", "undirected": true }, { "source": "393", "target": "391", "key": "641", "undirected": true }, { "source": "393", "target": "201", "key": "642", "undirected": true }, { "source": "393", "target": "394", "key": "643", "undirected": true }, { "source": "393", "target": "216", "key": "644", "undirected": true }, { "source": "393", "target": "390", "key": "645", "undirected": true }, { "source": "395", "target": "76", "key": "646", "undirected": true }, { "source": "396", "target": "397", "key": "647", "undirected": true }, { "source": "396", "target": "398", "key": "648", "undirected": true }, { "source": "399", "target": "400", "key": "649", "undirected": true }, { "source": "401", "target": "79", "key": "650", "undirected": true }, { "source": "402", "target": "403", "key": "651", "undirected": true }, { "source": "402", "target": "82", "key": "652", "undirected": true }, { "source": "404", "target": "405", "key": "653", "undirected": true }, { "source": "404", "target": "397", "key": "654", "undirected": true }, { "source": "404", "target": "48", "key": "655", "undirected": true }, { "source": "404", "target": "406", "key": "656", "undirected": true }, { "source": "404", "target": "334", "key": "657", "undirected": true }, { "source": "404", "target": "49", "key": "658", "undirected": true }, { "source": "404", "target": "50", "key": "659", "undirected": true }, { "source": "404", "target": "53", "key": "660", "undirected": true }, { "source": "404", "target": "65", "key": "661", "undirected": true }, { "source": "404", "target": "66", "key": "662", "undirected": true }, { "source": "407", "target": "216", "key": "663", "undirected": true }, { "source": "407", "target": "61", "key": "664", "undirected": true }, { "source": "407", "target": "408", "key": "665", "undirected": true }, { "source": "407", "target": "146", "key": "666", "undirected": true }, { "source": "407", "target": "370", "key": "667", "undirected": true }, { "source": "407", "target": "409", "key": "668", "undirected": true }, { "source": "410", "target": "42", "key": "669", "undirected": true }, { "source": "410", "target": "280", "key": "670", "undirected": true }, { "source": "410", "target": "61", "key": "671", "undirected": true }, { "source": "410", "target": "53", "key": "672", "undirected": true }, { "source": "410", "target": "411", "key": "673", "undirected": true }, { "source": "410", "target": "412", "key": "674", "undirected": true }, { "source": "410", "target": "45", "key": "675", "undirected": true }, { "source": "410", "target": "48", "key": "676", "undirected": true }, { "source": "410", "target": "49", "key": "677", "undirected": true }, { "source": "410", "target": "50", "key": "678", "undirected": true }, { "source": "413", "target": "414", "key": "679", "undirected": true }, { "source": "413", "target": "415", "key": "680", "undirected": true }, { "source": "413", "target": "416", "key": "681", "undirected": true }, { "source": "413", "target": "417", "key": "682", "undirected": true }, { "source": "413", "target": "418", "key": "683", "undirected": true }, { "source": "413", "target": "419", "key": "684", "undirected": true }, { "source": "413", "target": "296", "key": "685", "undirected": true }, { "source": "413", "target": "420", "key": "686", "undirected": true }, { "source": "414", "target": "219", "key": "687", "undirected": true }, { "source": "414", "target": "401", "key": "688", "undirected": true }, { "source": "414", "target": "420", "key": "689", "undirected": true }, { "source": "414", "target": "421", "key": "690", "undirected": true }, { "source": "422", "target": "130", "key": "691", "undirected": true }, { "source": "422", "target": "423", "key": "692", "undirected": true }, { "source": "422", "target": "1", "key": "693", "undirected": true }, { "source": "422", "target": "424", "key": "694", "undirected": true }, { "source": "425", "target": "175", "key": "695", "undirected": true }, { "source": "425", "target": "426", "key": "696", "undirected": true }, { "source": "425", "target": "427", "key": "697", "undirected": true }, { "source": "425", "target": "104", "key": "698", "undirected": true }, { "source": "425", "target": "250", "key": "699", "undirected": true }, { "source": "425", "target": "428", "key": "700", "undirected": true }, { "source": "37", "target": "207", "key": "701", "undirected": true }, { "source": "37", "target": "1", "key": "702", "undirected": true }, { "source": "37", "target": "272", "key": "703", "undirected": true }, { "source": "37", "target": "429", "key": "704", "undirected": true }, { "source": "37", "target": "430", "key": "705", "undirected": true }, { "source": "431", "target": "1", "key": "706", "undirected": true }, { "source": "431", "target": "50", "key": "707", "undirected": true }, { "source": "431", "target": "53", "key": "708", "undirected": true }, { "source": "432", "target": "1", "key": "709", "undirected": true }, { "source": "433", "target": "434", "key": "710", "undirected": true }, { "source": "433", "target": "435", "key": "711", "undirected": true }, { "source": "144", "target": "436", "key": "712", "undirected": true }, { "source": "144", "target": "403", "key": "713", "undirected": true }, { "source": "144", "target": "437", "key": "714", "undirected": true }, { "source": "144", "target": "438", "key": "715", "undirected": true }, { "source": "439", "target": "440", "key": "716", "undirected": true }, { "source": "439", "target": "441", "key": "717", "undirected": true }, { "source": "442", "target": "443", "key": "718", "undirected": true }, { "source": "442", "target": "444", "key": "719", "undirected": true }, { "source": "442", "target": "445", "key": "720", "undirected": true }, { "source": "442", "target": "446", "key": "721", "undirected": true }, { "source": "442", "target": "447", "key": "722", "undirected": true }, { "source": "448", "target": "192", "key": "723", "undirected": true }, { "source": "448", "target": "313", "key": "724", "undirected": true }, { "source": "448", "target": "195", "key": "725", "undirected": true }, { "source": "449", "target": "450", "key": "726", "undirected": true }, { "source": "449", "target": "195", "key": "727", "undirected": true }, { "source": "449", "target": "5", "key": "728", "undirected": true }, { "source": "321", "target": "185", "key": "729", "undirected": true }, { "source": "321", "target": "296", "key": "730", "undirected": true }, { "source": "321", "target": "294", "key": "731", "undirected": true }, { "source": "321", "target": "322", "key": "732", "undirected": true }, { "source": "321", "target": "194", "key": "733", "undirected": true }, { "source": "203", "target": "198", "key": "734", "undirected": true }, { "source": "203", "target": "296", "key": "735", "undirected": true }, { "source": "203", "target": "79", "key": "736", "undirected": true }, { "source": "203", "target": "185", "key": "737", "undirected": true }, { "source": "451", "target": "452", "key": "738", "undirected": true }, { "source": "451", "target": "53", "key": "739", "undirected": true }, { "source": "451", "target": "118", "key": "740", "undirected": true }, { "source": "451", "target": "453", "key": "741", "undirected": true }, { "source": "451", "target": "64", "key": "742", "undirected": true }, { "source": "451", "target": "65", "key": "743", "undirected": true }, { "source": "451", "target": "93", "key": "744", "undirected": true }, { "source": "451", "target": "131", "key": "745", "undirected": true }, { "source": "451", "target": "104", "key": "746", "undirected": true }, { "source": "454", "target": "431", "key": "747", "undirected": true }, { "source": "454", "target": "62", "key": "748", "undirected": true }, { "source": "454", "target": "53", "key": "749", "undirected": true }, { "source": "454", "target": "455", "key": "750", "undirected": true }, { "source": "454", "target": "170", "key": "751", "undirected": true }, { "source": "454", "target": "287", "key": "752", "undirected": true }, { "source": "454", "target": "456", "key": "753", "undirected": true }, { "source": "454", "target": "457", "key": "754", "undirected": true }, { "source": "252", "target": "131", "key": "755", "undirected": true }, { "source": "252", "target": "104", "key": "756", "undirected": true }, { "source": "252", "target": "250", "key": "757", "undirected": true }, { "source": "252", "target": "458", "key": "758", "undirected": true }, { "source": "252", "target": "95", "key": "759", "undirected": true }, { "source": "252", "target": "53", "key": "760", "undirected": true }, { "source": "252", "target": "65", "key": "761", "undirected": true }, { "source": "459", "target": "68", "key": "762", "undirected": true }, { "source": "459", "target": "53", "key": "763", "undirected": true }, { "source": "459", "target": "460", "key": "764", "undirected": true }, { "source": "459", "target": "64", "key": "765", "undirected": true }, { "source": "459", "target": "65", "key": "766", "undirected": true }, { "source": "459", "target": "114", "key": "767", "undirected": true }, { "source": "459", "target": "461", "key": "768", "undirected": true }, { "source": "459", "target": "366", "key": "769", "undirected": true }, { "source": "462", "target": "177", "key": "770", "undirected": true }, { "source": "462", "target": "79", "key": "771", "undirected": true }, { "source": "462", "target": "463", "key": "772", "undirected": true }, { "source": "462", "target": "464", "key": "773", "undirected": true }, { "source": "462", "target": "465", "key": "774", "undirected": true }, { "source": "466", "target": "467", "key": "775", "undirected": true }, { "source": "466", "target": "1", "key": "776", "undirected": true }, { "source": "468", "target": "159", "key": "777", "undirected": true }, { "source": "468", "target": "469", "key": "778", "undirected": true }, { "source": "470", "target": "471", "key": "779", "undirected": true }, { "source": "472", "target": "464", "key": "780", "undirected": true }, { "source": "472", "target": "313", "key": "781", "undirected": true }, { "source": "472", "target": "473", "key": "782", "undirected": true }, { "source": "472", "target": "474", "key": "783", "undirected": true }, { "source": "472", "target": "475", "key": "784", "undirected": true }, { "source": "472", "target": "177", "key": "785", "undirected": true }, { "source": "472", "target": "79", "key": "786", "undirected": true }, { "source": "472", "target": "361", "key": "787", "undirected": true }, { "source": "476", "target": "475", "key": "788", "undirected": true }, { "source": "476", "target": "79", "key": "789", "undirected": true }, { "source": "476", "target": "368", "key": "790", "undirected": true }, { "source": "476", "target": "477", "key": "791", "undirected": true }, { "source": "476", "target": "473", "key": "792", "undirected": true }, { "source": "475", "target": "313", "key": "793", "undirected": true }, { "source": "475", "target": "473", "key": "794", "undirected": true }, { "source": "478", "target": "479", "key": "795", "undirected": true }, { "source": "480", "target": "170", "key": "796", "undirected": true }, { "source": "481", "target": "166", "key": "797", "undirected": true }, { "source": "481", "target": "279", "key": "798", "undirected": true }, { "source": "481", "target": "281", "key": "799", "undirected": true }, { "source": "481", "target": "482", "key": "800", "undirected": true }, { "source": "481", "target": "483", "key": "801", "undirected": true }, { "source": "481", "target": "334", "key": "802", "undirected": true }, { "source": "481", "target": "484", "key": "803", "undirected": true }, { "source": "253", "target": "76", "key": "804", "undirected": true }, { "source": "253", "target": "84", "key": "805", "undirected": true }, { "source": "471", "target": "485", "key": "806", "undirected": true }, { "source": "471", "target": "79", "key": "807", "undirected": true }, { "source": "471", "target": "486", "key": "808", "undirected": true }, { "source": "487", "target": "488", "key": "809", "undirected": true }, { "source": "487", "target": "489", "key": "810", "undirected": true }, { "source": "487", "target": "198", "key": "811", "undirected": true }, { "source": "490", "target": "491", "key": "812", "undirected": true }, { "source": "492", "target": "121", "key": "813", "undirected": true }, { "source": "492", "target": "128", "key": "814", "undirected": true }, { "source": "492", "target": "493", "key": "815", "undirected": true }, { "source": "492", "target": "217", "key": "816", "undirected": true }, { "source": "492", "target": "494", "key": "817", "undirected": true }, { "source": "492", "target": "495", "key": "818", "undirected": true }, { "source": "496", "target": "497", "key": "819", "undirected": true }, { "source": "496", "target": "166", "key": "820", "undirected": true }, { "source": "496", "target": "403", "key": "821", "undirected": true }, { "source": "496", "target": "498", "key": "822", "undirected": true }, { "source": "499", "target": "254", "key": "823", "undirected": true }, { "source": "499", "target": "181", "key": "824", "undirected": true }, { "source": "499", "target": "267", "key": "825", "undirected": true }, { "source": "499", "target": "182", "key": "826", "undirected": true }, { "source": "499", "target": "370", "key": "827", "undirected": true }, { "source": "499", "target": "49", "key": "828", "undirected": true }, { "source": "499", "target": "500", "key": "829", "undirected": true }, { "source": "501", "target": "502", "key": "830", "undirected": true }, { "source": "501", "target": "49", "key": "831", "undirected": true }, { "source": "501", "target": "50", "key": "832", "undirected": true }, { "source": "501", "target": "51", "key": "833", "undirected": true }, { "source": "501", "target": "503", "key": "834", "undirected": true }, { "source": "501", "target": "504", "key": "835", "undirected": true }, { "source": "501", "target": "281", "key": "836", "undirected": true }, { "source": "501", "target": "505", "key": "837", "undirected": true }, { "source": "501", "target": "48", "key": "838", "undirected": true }, { "source": "506", "target": "133", "key": "839", "undirected": true }, { "source": "506", "target": "53", "key": "840", "undirected": true }, { "source": "506", "target": "405", "key": "841", "undirected": true }, { "source": "506", "target": "397", "key": "842", "undirected": true }, { "source": "506", "target": "48", "key": "843", "undirected": true }, { "source": "506", "target": "409", "key": "844", "undirected": true }, { "source": "506", "target": "49", "key": "845", "undirected": true }, { "source": "506", "target": "50", "key": "846", "undirected": true }, { "source": "507", "target": "160", "key": "847", "undirected": true }, { "source": "356", "target": "216", "key": "848", "undirected": true }, { "source": "356", "target": "357", "key": "849", "undirected": true }, { "source": "356", "target": "508", "key": "850", "undirected": true }, { "source": "509", "target": "68", "key": "851", "undirected": true }, { "source": "509", "target": "61", "key": "852", "undirected": true }, { "source": "509", "target": "408", "key": "853", "undirected": true }, { "source": "509", "target": "62", "key": "854", "undirected": true }, { "source": "509", "target": "365", "key": "855", "undirected": true }, { "source": "509", "target": "65", "key": "856", "undirected": true }, { "source": "509", "target": "510", "key": "857", "undirected": true }, { "source": "509", "target": "511", "key": "858", "undirected": true }, { "source": "122", "target": "1", "key": "859", "undirected": true }, { "source": "61", "target": "279", "key": "860", "undirected": true }, { "source": "61", "target": "408", "key": "861", "undirected": true }, { "source": "61", "target": "53", "key": "862", "undirected": true }, { "source": "61", "target": "512", "key": "863", "undirected": true }, { "source": "61", "target": "65", "key": "864", "undirected": true }, { "source": "61", "target": "66", "key": "865", "undirected": true }, { "source": "61", "target": "48", "key": "866", "undirected": true }, { "source": "61", "target": "49", "key": "867", "undirected": true }, { "source": "61", "target": "50", "key": "868", "undirected": true }, { "source": "61", "target": "133", "key": "869", "undirected": true }, { "source": "408", "target": "119", "key": "870", "undirected": true }, { "source": "408", "target": "48", "key": "871", "undirected": true }, { "source": "408", "target": "49", "key": "872", "undirected": true }, { "source": "408", "target": "513", "key": "873", "undirected": true }, { "source": "408", "target": "50", "key": "874", "undirected": true }, { "source": "408", "target": "51", "key": "875", "undirected": true }, { "source": "408", "target": "61", "key": "876", "undirected": true }, { "source": "408", "target": "53", "key": "877", "undirected": true }, { "source": "408", "target": "66", "key": "878", "undirected": true }, { "source": "408", "target": "67", "key": "879", "undirected": true }, { "source": "514", "target": "65", "key": "880", "undirected": true }, { "source": "514", "target": "66", "key": "881", "undirected": true }, { "source": "514", "target": "287", "key": "882", "undirected": true }, { "source": "514", "target": "50", "key": "883", "undirected": true }, { "source": "514", "target": "68", "key": "884", "undirected": true }, { "source": "514", "target": "408", "key": "885", "undirected": true }, { "source": "514", "target": "62", "key": "886", "undirected": true }, { "source": "514", "target": "53", "key": "887", "undirected": true }, { "source": "514", "target": "515", "key": "888", "undirected": true }, { "source": "514", "target": "498", "key": "889", "undirected": true }, { "source": "516", "target": "517", "key": "890", "undirected": true }, { "source": "516", "target": "323", "key": "891", "undirected": true }, { "source": "518", "target": "166", "key": "892", "undirected": true }, { "source": "518", "target": "436", "key": "893", "undirected": true }, { "source": "518", "target": "519", "key": "894", "undirected": true }, { "source": "518", "target": "444", "key": "895", "undirected": true }, { "source": "520", "target": "521", "key": "896", "undirected": true }, { "source": "520", "target": "1", "key": "897", "undirected": true }, { "source": "522", "target": "471", "key": "898", "undirected": true }, { "source": "294", "target": "219", "key": "899", "undirected": true }, { "source": "294", "target": "376", "key": "900", "undirected": true }, { "source": "294", "target": "79", "key": "901", "undirected": true }, { "source": "294", "target": "377", "key": "902", "undirected": true }, { "source": "294", "target": "185", "key": "903", "undirected": true }, { "source": "485", "target": "79", "key": "904", "undirected": true }, { "source": "446", "target": "149", "key": "905", "undirected": true }, { "source": "446", "target": "309", "key": "906", "undirected": true }, { "source": "523", "target": "524", "key": "907", "undirected": true }, { "source": "523", "target": "294", "key": "908", "undirected": true }, { "source": "523", "target": "525", "key": "909", "undirected": true }, { "source": "523", "target": "526", "key": "910", "undirected": true }, { "source": "523", "target": "527", "key": "911", "undirected": true }, { "source": "523", "target": "528", "key": "912", "undirected": true }, { "source": "529", "target": "353", "key": "913", "undirected": true }, { "source": "529", "target": "530", "key": "914", "undirected": true }, { "source": "529", "target": "531", "key": "915", "undirected": true }, { "source": "357", "target": "216", "key": "916", "undirected": true }, { "source": "357", "target": "356", "key": "917", "undirected": true }, { "source": "357", "target": "1", "key": "918", "undirected": true }, { "source": "532", "target": "533", "key": "919", "undirected": true }, { "source": "532", "target": "534", "key": "920", "undirected": true }, { "source": "532", "target": "335", "key": "921", "undirected": true }, { "source": "532", "target": "535", "key": "922", "undirected": true }, { "source": "532", "target": "536", "key": "923", "undirected": true }, { "source": "532", "target": "537", "key": "924", "undirected": true }, { "source": "532", "target": "538", "key": "925", "undirected": true }, { "source": "532", "target": "49", "key": "926", "undirected": true }, { "source": "539", "target": "540", "key": "927", "undirected": true }, { "source": "539", "target": "541", "key": "928", "undirected": true }, { "source": "525", "target": "293", "key": "929", "undirected": true }, { "source": "525", "target": "517", "key": "930", "undirected": true }, { "source": "525", "target": "323", "key": "931", "undirected": true }, { "source": "542", "target": "1", "key": "932", "undirected": true }, { "source": "543", "target": "409", "key": "933", "undirected": true }, { "source": "543", "target": "532", "key": "934", "undirected": true }, { "source": "543", "target": "335", "key": "935", "undirected": true }, { "source": "543", "target": "535", "key": "936", "undirected": true }, { "source": "543", "target": "405", "key": "937", "undirected": true }, { "source": "543", "target": "537", "key": "938", "undirected": true }, { "source": "434", "target": "433", "key": "939", "undirected": true }, { "source": "434", "target": "161", "key": "940", "undirected": true }, { "source": "434", "target": "544", "key": "941", "undirected": true }, { "source": "545", "target": "1", "key": "942", "undirected": true }, { "source": "545", "target": "546", "key": "943", "undirected": true }, { "source": "547", "target": "177", "key": "944", "undirected": true }, { "source": "547", "target": "548", "key": "945", "undirected": true }, { "source": "547", "target": "79", "key": "946", "undirected": true }, { "source": "547", "target": "549", "key": "947", "undirected": true }, { "source": "547", "target": "463", "key": "948", "undirected": true }, { "source": "465", "target": "177", "key": "949", "undirected": true }, { "source": "465", "target": "79", "key": "950", "undirected": true }, { "source": "465", "target": "463", "key": "951", "undirected": true }, { "source": "465", "target": "368", "key": "952", "undirected": true }, { "source": "465", "target": "462", "key": "953", "undirected": true }, { "source": "177", "target": "465", "key": "954", "undirected": true }, { "source": "177", "target": "79", "key": "955", "undirected": true }, { "source": "177", "target": "549", "key": "956", "undirected": true }, { "source": "177", "target": "463", "key": "957", "undirected": true }, { "source": "548", "target": "547", "key": "958", "undirected": true }, { "source": "548", "target": "177", "key": "959", "undirected": true }, { "source": "548", "target": "79", "key": "960", "undirected": true }, { "source": "548", "target": "463", "key": "961", "undirected": true }, { "source": "550", "target": "65", "key": "962", "undirected": true }, { "source": "550", "target": "93", "key": "963", "undirected": true }, { "source": "550", "target": "131", "key": "964", "undirected": true }, { "source": "550", "target": "104", "key": "965", "undirected": true }, { "source": "550", "target": "53", "key": "966", "undirected": true }, { "source": "551", "target": "166", "key": "967", "undirected": true }, { "source": "551", "target": "167", "key": "968", "undirected": true }, { "source": "551", "target": "497", "key": "969", "undirected": true }, { "source": "62", "target": "67", "key": "970", "undirected": true }, { "source": "62", "target": "289", "key": "971", "undirected": true }, { "source": "62", "target": "552", "key": "972", "undirected": true }, { "source": "62", "target": "50", "key": "973", "undirected": true }, { "source": "62", "target": "68", "key": "974", "undirected": true }, { "source": "62", "target": "61", "key": "975", "undirected": true }, { "source": "62", "target": "63", "key": "976", "undirected": true }, { "source": "62", "target": "53", "key": "977", "undirected": true }, { "source": "62", "target": "64", "key": "978", "undirected": true }, { "source": "62", "target": "65", "key": "979", "undirected": true }, { "source": "553", "target": "287", "key": "980", "undirected": true }, { "source": "553", "target": "68", "key": "981", "undirected": true }, { "source": "553", "target": "61", "key": "982", "undirected": true }, { "source": "553", "target": "53", "key": "983", "undirected": true }, { "source": "553", "target": "460", "key": "984", "undirected": true }, { "source": "553", "target": "64", "key": "985", "undirected": true }, { "source": "553", "target": "554", "key": "986", "undirected": true }, { "source": "553", "target": "65", "key": "987", "undirected": true }, { "source": "553", "target": "67", "key": "988", "undirected": true }, { "source": "553", "target": "286", "key": "989", "undirected": true }, { "source": "63", "target": "68", "key": "990", "undirected": true }, { "source": "63", "target": "61", "key": "991", "undirected": true }, { "source": "63", "target": "62", "key": "992", "undirected": true }, { "source": "63", "target": "53", "key": "993", "undirected": true }, { "source": "63", "target": "65", "key": "994", "undirected": true }, { "source": "63", "target": "67", "key": "995", "undirected": true }, { "source": "63", "target": "287", "key": "996", "undirected": true }, { "source": "63", "target": "50", "key": "997", "undirected": true }, { "source": "63", "target": "511", "key": "998", "undirected": true }, { "source": "145", "target": "82", "key": "999", "undirected": true }, { "source": "145", "target": "166", "key": "1000", "undirected": true }, { "source": "145", "target": "436", "key": "1001", "undirected": true }, { "source": "436", "target": "264", "key": "1002", "undirected": true }, { "source": "436", "target": "555", "key": "1003", "undirected": true }, { "source": "436", "target": "556", "key": "1004", "undirected": true }, { "source": "436", "target": "266", "key": "1005", "undirected": true }, { "source": "233", "target": "447", "key": "1006", "undirected": true }, { "source": "557", "target": "76", "key": "1007", "undirected": true }, { "source": "447", "target": "233", "key": "1008", "undirected": true }, { "source": "447", "target": "498", "key": "1009", "undirected": true }, { "source": "558", "target": "76", "key": "1010", "undirected": true }, { "source": "558", "target": "556", "key": "1011", "undirected": true }, { "source": "25", "target": "27", "key": "1012", "undirected": true }, { "source": "25", "target": "456", "key": "1013", "undirected": true }, { "source": "25", "target": "53", "key": "1014", "undirected": true }, { "source": "25", "target": "559", "key": "1015", "undirected": true }, { "source": "560", "target": "104", "key": "1016", "undirected": true }, { "source": "560", "target": "114", "key": "1017", "undirected": true }, { "source": "560", "target": "366", "key": "1018", "undirected": true }, { "source": "72", "target": "561", "key": "1019", "undirected": true }, { "source": "72", "target": "73", "key": "1020", "undirected": true }, { "source": "72", "target": "70", "key": "1021", "undirected": true }, { "source": "561", "target": "72", "key": "1022", "undirected": true }, { "source": "561", "target": "73", "key": "1023", "undirected": true }, { "source": "561", "target": "70", "key": "1024", "undirected": true }, { "source": "562", "target": "559", "key": "1025", "undirected": true }, { "source": "563", "target": "564", "key": "1026", "undirected": true }, { "source": "563", "target": "565", "key": "1027", "undirected": true }, { "source": "563", "target": "566", "key": "1028", "undirected": true }, { "source": "426", "target": "427", "key": "1029", "undirected": true }, { "source": "426", "target": "104", "key": "1030", "undirected": true }, { "source": "426", "target": "114", "key": "1031", "undirected": true }, { "source": "426", "target": "567", "key": "1032", "undirected": true }, { "source": "427", "target": "504", "key": "1033", "undirected": true }, { "source": "427", "target": "568", "key": "1034", "undirected": true }, { "source": "427", "target": "569", "key": "1035", "undirected": true }, { "source": "570", "target": "76", "key": "1036", "undirected": true }, { "source": "570", "target": "159", "key": "1037", "undirected": true }, { "source": "570", "target": "571", "key": "1038", "undirected": true }, { "source": "135", "target": "572", "key": "1039", "undirected": true }, { "source": "135", "target": "494", "key": "1040", "undirected": true }, { "source": "135", "target": "137", "key": "1041", "undirected": true }, { "source": "135", "target": "133", "key": "1042", "undirected": true }, { "source": "573", "target": "279", "key": "1043", "undirected": true }, { "source": "573", "target": "335", "key": "1044", "undirected": true }, { "source": "573", "target": "53", "key": "1045", "undirected": true }, { "source": "573", "target": "66", "key": "1046", "undirected": true }, { "source": "573", "target": "281", "key": "1047", "undirected": true }, { "source": "573", "target": "48", "key": "1048", "undirected": true }, { "source": "573", "target": "49", "key": "1049", "undirected": true }, { "source": "573", "target": "50", "key": "1050", "undirected": true }, { "source": "573", "target": "484", "key": "1051", "undirected": true }, { "source": "335", "target": "574", "key": "1052", "undirected": true }, { "source": "335", "target": "281", "key": "1053", "undirected": true }, { "source": "335", "target": "575", "key": "1054", "undirected": true }, { "source": "335", "target": "51", "key": "1055", "undirected": true }, { "source": "335", "target": "533", "key": "1056", "undirected": true }, { "source": "335", "target": "532", "key": "1057", "undirected": true }, { "source": "574", "target": "49", "key": "1058", "undirected": true }, { "source": "574", "target": "51", "key": "1059", "undirected": true }, { "source": "574", "target": "292", "key": "1060", "undirected": true }, { "source": "574", "target": "573", "key": "1061", "undirected": true }, { "source": "574", "target": "405", "key": "1062", "undirected": true }, { "source": "574", "target": "281", "key": "1063", "undirected": true }, { "source": "574", "target": "48", "key": "1064", "undirected": true }, { "source": "574", "target": "409", "key": "1065", "undirected": true }, { "source": "574", "target": "334", "key": "1066", "undirected": true }, { "source": "519", "target": "114", "key": "1067", "undirected": true }, { "source": "519", "target": "576", "key": "1068", "undirected": true }, { "source": "519", "target": "120", "key": "1069", "undirected": true }, { "source": "519", "target": "577", "key": "1070", "undirected": true }, { "source": "519", "target": "578", "key": "1071", "undirected": true }, { "source": "519", "target": "579", "key": "1072", "undirected": true }, { "source": "580", "target": "581", "key": "1073", "undirected": true }, { "source": "580", "target": "577", "key": "1074", "undirected": true }, { "source": "580", "target": "582", "key": "1075", "undirected": true }, { "source": "580", "target": "578", "key": "1076", "undirected": true }, { "source": "580", "target": "519", "key": "1077", "undirected": true }, { "source": "580", "target": "498", "key": "1078", "undirected": true }, { "source": "580", "target": "576", "key": "1079", "undirected": true }, { "source": "580", "target": "120", "key": "1080", "undirected": true }, { "source": "580", "target": "379", "key": "1081", "undirected": true }, { "source": "583", "target": "68", "key": "1082", "undirected": true }, { "source": "583", "target": "580", "key": "1083", "undirected": true }, { "source": "583", "target": "114", "key": "1084", "undirected": true }, { "source": "583", "target": "576", "key": "1085", "undirected": true }, { "source": "583", "target": "120", "key": "1086", "undirected": true }, { "source": "583", "target": "577", "key": "1087", "undirected": true }, { "source": "583", "target": "584", "key": "1088", "undirected": true }, { "source": "583", "target": "585", "key": "1089", "undirected": true }, { "source": "583", "target": "578", "key": "1090", "undirected": true }, { "source": "586", "target": "1", "key": "1091", "undirected": true }, { "source": "113", "target": "112", "key": "1092", "undirected": true }, { "source": "113", "target": "587", "key": "1093", "undirected": true }, { "source": "113", "target": "588", "key": "1094", "undirected": true }, { "source": "113", "target": "372", "key": "1095", "undirected": true }, { "source": "113", "target": "267", "key": "1096", "undirected": true }, { "source": "113", "target": "374", "key": "1097", "undirected": true }, { "source": "113", "target": "49", "key": "1098", "undirected": true }, { "source": "113", "target": "116", "key": "1099", "undirected": true }, { "source": "587", "target": "374", "key": "1100", "undirected": true }, { "source": "587", "target": "49", "key": "1101", "undirected": true }, { "source": "587", "target": "513", "key": "1102", "undirected": true }, { "source": "587", "target": "116", "key": "1103", "undirected": true }, { "source": "587", "target": "589", "key": "1104", "undirected": true }, { "source": "587", "target": "47", "key": "1105", "undirected": true }, { "source": "587", "target": "267", "key": "1106", "undirected": true }, { "source": "587", "target": "590", "key": "1107", "undirected": true }, { "source": "53", "target": "82", "key": "1108", "undirected": true }, { "source": "53", "target": "68", "key": "1109", "undirected": true }, { "source": "53", "target": "591", "key": "1110", "undirected": true }, { "source": "53", "target": "79", "key": "1111", "undirected": true }, { "source": "53", "target": "64", "key": "1112", "undirected": true }, { "source": "53", "target": "65", "key": "1113", "undirected": true }, { "source": "53", "target": "93", "key": "1114", "undirected": true }, { "source": "53", "target": "104", "key": "1115", "undirected": true }, { "source": "53", "target": "592", "key": "1116", "undirected": true }, { "source": "53", "target": "50", "key": "1117", "undirected": true }, { "source": "593", "target": "68", "key": "1118", "undirected": true }, { "source": "593", "target": "61", "key": "1119", "undirected": true }, { "source": "593", "target": "591", "key": "1120", "undirected": true }, { "source": "593", "target": "65", "key": "1121", "undirected": true }, { "source": "593", "target": "131", "key": "1122", "undirected": true }, { "source": "593", "target": "300", "key": "1123", "undirected": true }, { "source": "593", "target": "594", "key": "1124", "undirected": true }, { "source": "593", "target": "105", "key": "1125", "undirected": true }, { "source": "593", "target": "50", "key": "1126", "undirected": true }, { "source": "593", "target": "82", "key": "1127", "undirected": true }, { "source": "595", "target": "53", "key": "1128", "undirected": true }, { "source": "595", "target": "591", "key": "1129", "undirected": true }, { "source": "595", "target": "79", "key": "1130", "undirected": true }, { "source": "595", "target": "65", "key": "1131", "undirected": true }, { "source": "595", "target": "104", "key": "1132", "undirected": true }, { "source": "595", "target": "592", "key": "1133", "undirected": true }, { "source": "595", "target": "105", "key": "1134", "undirected": true }, { "source": "595", "target": "50", "key": "1135", "undirected": true }, { "source": "595", "target": "109", "key": "1136", "undirected": true }, { "source": "595", "target": "68", "key": "1137", "undirected": true }, { "source": "596", "target": "76", "key": "1138", "undirected": true }, { "source": "596", "target": "159", "key": "1139", "undirected": true }, { "source": "597", "target": "104", "key": "1140", "undirected": true }, { "source": "597", "target": "114", "key": "1141", "undirected": true }, { "source": "597", "target": "598", "key": "1142", "undirected": true }, { "source": "597", "target": "65", "key": "1143", "undirected": true }, { "source": "599", "target": "128", "key": "1144", "undirected": true }, { "source": "354", "target": "166", "key": "1145", "undirected": true }, { "source": "354", "target": "1", "key": "1146", "undirected": true }, { "source": "600", "target": "497", "key": "1147", "undirected": true }, { "source": "600", "target": "281", "key": "1148", "undirected": true }, { "source": "601", "target": "600", "key": "1149", "undirected": true }, { "source": "602", "target": "603", "key": "1150", "undirected": true }, { "source": "604", "target": "428", "key": "1151", "undirected": true }, { "source": "604", "target": "82", "key": "1152", "undirected": true }, { "source": "604", "target": "495", "key": "1153", "undirected": true }, { "source": "604", "target": "204", "key": "1154", "undirected": true }, { "source": "604", "target": "567", "key": "1155", "undirected": true }, { "source": "604", "target": "605", "key": "1156", "undirected": true }, { "source": "604", "target": "606", "key": "1157", "undirected": true }, { "source": "460", "target": "160", "key": "1158", "undirected": true }, { "source": "460", "target": "433", "key": "1159", "undirected": true }, { "source": "460", "target": "53", "key": "1160", "undirected": true }, { "source": "460", "target": "515", "key": "1161", "undirected": true }, { "source": "460", "target": "607", "key": "1162", "undirected": true }, { "source": "460", "target": "608", "key": "1163", "undirected": true }, { "source": "460", "target": "65", "key": "1164", "undirected": true }, { "source": "460", "target": "609", "key": "1165", "undirected": true }, { "source": "460", "target": "119", "key": "1166", "undirected": true }, { "source": "515", "target": "53", "key": "1167", "undirected": true }, { "source": "515", "target": "610", "key": "1168", "undirected": true }, { "source": "515", "target": "607", "key": "1169", "undirected": true }, { "source": "515", "target": "608", "key": "1170", "undirected": true }, { "source": "515", "target": "216", "key": "1171", "undirected": true }, { "source": "611", "target": "222", "key": "1172", "undirected": true }, { "source": "611", "target": "166", "key": "1173", "undirected": true }, { "source": "611", "target": "216", "key": "1174", "undirected": true }, { "source": "611", "target": "53", "key": "1175", "undirected": true }, { "source": "611", "target": "608", "key": "1176", "undirected": true }, { "source": "611", "target": "66", "key": "1177", "undirected": true }, { "source": "611", "target": "119", "key": "1178", "undirected": true }, { "source": "611", "target": "287", "key": "1179", "undirected": true }, { "source": "611", "target": "552", "key": "1180", "undirected": true }, { "source": "610", "target": "216", "key": "1181", "undirected": true }, { "source": "610", "target": "53", "key": "1182", "undirected": true }, { "source": "610", "target": "515", "key": "1183", "undirected": true }, { "source": "610", "target": "79", "key": "1184", "undirected": true }, { "source": "610", "target": "608", "key": "1185", "undirected": true }, { "source": "610", "target": "498", "key": "1186", "undirected": true }, { "source": "612", "target": "292", "key": "1187", "undirected": true }, { "source": "612", "target": "37", "key": "1188", "undirected": true }, { "source": "612", "target": "613", "key": "1189", "undirected": true }, { "source": "612", "target": "614", "key": "1190", "undirected": true }, { "source": "612", "target": "615", "key": "1191", "undirected": true }, { "source": "612", "target": "616", "key": "1192", "undirected": true }, { "source": "617", "target": "219", "key": "1193", "undirected": true }, { "source": "617", "target": "79", "key": "1194", "undirected": true }, { "source": "617", "target": "618", "key": "1195", "undirected": true }, { "source": "617", "target": "619", "key": "1196", "undirected": true }, { "source": "620", "target": "170", "key": "1197", "undirected": true }, { "source": "455", "target": "301", "key": "1198", "undirected": true }, { "source": "455", "target": "621", "key": "1199", "undirected": true }, { "source": "455", "target": "622", "key": "1200", "undirected": true }, { "source": "623", "target": "624", "key": "1201", "undirected": true }, { "source": "625", "target": "300", "key": "1202", "undirected": true }, { "source": "625", "target": "626", "key": "1203", "undirected": true }, { "source": "625", "target": "627", "key": "1204", "undirected": true }, { "source": "625", "target": "628", "key": "1205", "undirected": true }, { "source": "625", "target": "177", "key": "1206", "undirected": true }, { "source": "625", "target": "79", "key": "1207", "undirected": true }, { "source": "625", "target": "463", "key": "1208", "undirected": true }, { "source": "625", "target": "629", "key": "1209", "undirected": true }, { "source": "630", "target": "240", "key": "1210", "undirected": true }, { "source": "630", "target": "120", "key": "1211", "undirected": true }, { "source": "631", "target": "49", "key": "1212", "undirected": true }, { "source": "631", "target": "50", "key": "1213", "undirected": true }, { "source": "631", "target": "280", "key": "1214", "undirected": true }, { "source": "631", "target": "53", "key": "1215", "undirected": true }, { "source": "631", "target": "65", "key": "1216", "undirected": true }, { "source": "631", "target": "632", "key": "1217", "undirected": true }, { "source": "631", "target": "66", "key": "1218", "undirected": true }, { "source": "631", "target": "397", "key": "1219", "undirected": true }, { "source": "631", "target": "48", "key": "1220", "undirected": true }, { "source": "633", "target": "53", "key": "1221", "undirected": true }, { "source": "633", "target": "634", "key": "1222", "undirected": true }, { "source": "633", "target": "79", "key": "1223", "undirected": true }, { "source": "633", "target": "65", "key": "1224", "undirected": true }, { "source": "633", "target": "93", "key": "1225", "undirected": true }, { "source": "633", "target": "104", "key": "1226", "undirected": true }, { "source": "633", "target": "635", "key": "1227", "undirected": true }, { "source": "633", "target": "50", "key": "1228", "undirected": true }, { "source": "633", "target": "511", "key": "1229", "undirected": true }, { "source": "236", "target": "235", "key": "1230", "undirected": true }, { "source": "236", "target": "403", "key": "1231", "undirected": true }, { "source": "634", "target": "335", "key": "1232", "undirected": true }, { "source": "634", "target": "281", "key": "1233", "undirected": true }, { "source": "634", "target": "636", "key": "1234", "undirected": true }, { "source": "634", "target": "51", "key": "1235", "undirected": true }, { "source": "591", "target": "177", "key": "1236", "undirected": true }, { "source": "591", "target": "300", "key": "1237", "undirected": true }, { "source": "591", "target": "1", "key": "1238", "undirected": true }, { "source": "178", "target": "1", "key": "1239", "undirected": true }, { "source": "178", "target": "177", "key": "1240", "undirected": true }, { "source": "178", "target": "79", "key": "1241", "undirected": true }, { "source": "178", "target": "549", "key": "1242", "undirected": true }, { "source": "178", "target": "463", "key": "1243", "undirected": true }, { "source": "178", "target": "300", "key": "1244", "undirected": true }, { "source": "299", "target": "177", "key": "1245", "undirected": true }, { "source": "299", "target": "79", "key": "1246", "undirected": true }, { "source": "299", "target": "361", "key": "1247", "undirected": true }, { "source": "299", "target": "300", "key": "1248", "undirected": true }, { "source": "637", "target": "299", "key": "1249", "undirected": true }, { "source": "637", "target": "79", "key": "1250", "undirected": true }, { "source": "637", "target": "300", "key": "1251", "undirected": true }, { "source": "79", "target": "177", "key": "1252", "undirected": true }, { "source": "79", "target": "299", "key": "1253", "undirected": true }, { "source": "79", "target": "300", "key": "1254", "undirected": true }, { "source": "79", "target": "638", "key": "1255", "undirected": true }, { "source": "639", "target": "53", "key": "1256", "undirected": true }, { "source": "639", "target": "554", "key": "1257", "undirected": true }, { "source": "639", "target": "65", "key": "1258", "undirected": true }, { "source": "639", "target": "106", "key": "1259", "undirected": true }, { "source": "639", "target": "640", "key": "1260", "undirected": true }, { "source": "639", "target": "641", "key": "1261", "undirected": true }, { "source": "639", "target": "50", "key": "1262", "undirected": true }, { "source": "639", "target": "642", "key": "1263", "undirected": true }, { "source": "639", "target": "112", "key": "1264", "undirected": true }, { "source": "643", "target": "109", "key": "1265", "undirected": true }, { "source": "643", "target": "68", "key": "1266", "undirected": true }, { "source": "643", "target": "53", "key": "1267", "undirected": true }, { "source": "643", "target": "644", "key": "1268", "undirected": true }, { "source": "643", "target": "645", "key": "1269", "undirected": true }, { "source": "643", "target": "65", "key": "1270", "undirected": true }, { "source": "346", "target": "646", "key": "1271", "undirected": true }, { "source": "346", "target": "647", "key": "1272", "undirected": true }, { "source": "346", "target": "648", "key": "1273", "undirected": true }, { "source": "549", "target": "177", "key": "1274", "undirected": true }, { "source": "549", "target": "79", "key": "1275", "undirected": true }, { "source": "549", "target": "463", "key": "1276", "undirected": true }, { "source": "649", "target": "547", "key": "1277", "undirected": true }, { "source": "649", "target": "177", "key": "1278", "undirected": true }, { "source": "649", "target": "548", "key": "1279", "undirected": true }, { "source": "649", "target": "79", "key": "1280", "undirected": true }, { "source": "649", "target": "549", "key": "1281", "undirected": true }, { "source": "650", "target": "443", "key": "1282", "undirected": true }, { "source": "650", "target": "324", "key": "1283", "undirected": true }, { "source": "650", "target": "79", "key": "1284", "undirected": true }, { "source": "38", "target": "270", "key": "1285", "undirected": true }, { "source": "38", "target": "275", "key": "1286", "undirected": true }, { "source": "443", "target": "79", "key": "1287", "undirected": true }, { "source": "443", "target": "309", "key": "1288", "undirected": true }, { "source": "443", "target": "150", "key": "1289", "undirected": true }, { "source": "118", "target": "104", "key": "1290", "undirected": true }, { "source": "118", "target": "567", "key": "1291", "undirected": true }, { "source": "118", "target": "82", "key": "1292", "undirected": true }, { "source": "118", "target": "53", "key": "1293", "undirected": true }, { "source": "118", "target": "64", "key": "1294", "undirected": true }, { "source": "118", "target": "598", "key": "1295", "undirected": true }, { "source": "118", "target": "65", "key": "1296", "undirected": true }, { "source": "118", "target": "93", "key": "1297", "undirected": true }, { "source": "118", "target": "131", "key": "1298", "undirected": true }, { "source": "84", "target": "53", "key": "1299", "undirected": true }, { "source": "84", "target": "82", "key": "1300", "undirected": true }, { "source": "651", "target": "216", "key": "1301", "undirected": true }, { "source": "651", "target": "570", "key": "1302", "undirected": true }, { "source": "651", "target": "53", "key": "1303", "undirected": true }, { "source": "651", "target": "132", "key": "1304", "undirected": true }, { "source": "258", "target": "570", "key": "1305", "undirected": true }, { "source": "258", "target": "53", "key": "1306", "undirected": true }, { "source": "258", "target": "571", "key": "1307", "undirected": true }, { "source": "652", "target": "653", "key": "1308", "undirected": true }, { "source": "21", "target": "20", "key": "1309", "undirected": true }, { "source": "21", "target": "1", "key": "1310", "undirected": true }, { "source": "437", "target": "422", "key": "1311", "undirected": true }, { "source": "437", "target": "606", "key": "1312", "undirected": true }, { "source": "437", "target": "423", "key": "1313", "undirected": true }, { "source": "437", "target": "654", "key": "1314", "undirected": true }, { "source": "437", "target": "655", "key": "1315", "undirected": true }, { "source": "437", "target": "656", "key": "1316", "undirected": true }, { "source": "437", "target": "657", "key": "1317", "undirected": true }, { "source": "658", "target": "659", "key": "1318", "undirected": true }, { "source": "658", "target": "660", "key": "1319", "undirected": true }, { "source": "658", "target": "661", "key": "1320", "undirected": true }, { "source": "658", "target": "662", "key": "1321", "undirected": true }, { "source": "658", "target": "663", "key": "1322", "undirected": true }, { "source": "658", "target": "664", "key": "1323", "undirected": true }, { "source": "665", "target": "431", "key": "1324", "undirected": true }, { "source": "665", "target": "408", "key": "1325", "undirected": true }, { "source": "665", "target": "515", "key": "1326", "undirected": true }, { "source": "665", "target": "455", "key": "1327", "undirected": true }, { "source": "665", "target": "666", "key": "1328", "undirected": true }, { "source": "665", "target": "667", "key": "1329", "undirected": true }, { "source": "665", "target": "287", "key": "1330", "undirected": true }, { "source": "665", "target": "457", "key": "1331", "undirected": true }, { "source": "668", "target": "669", "key": "1332", "undirected": true }, { "source": "668", "target": "378", "key": "1333", "undirected": true }, { "source": "669", "target": "65", "key": "1334", "undirected": true }, { "source": "669", "target": "378", "key": "1335", "undirected": true }, { "source": "669", "target": "155", "key": "1336", "undirected": true }, { "source": "365", "target": "438", "key": "1337", "undirected": true }, { "source": "365", "target": "264", "key": "1338", "undirected": true }, { "source": "365", "target": "624", "key": "1339", "undirected": true }, { "source": "365", "target": "120", "key": "1340", "undirected": true }, { "source": "365", "target": "155", "key": "1341", "undirected": true }, { "source": "670", "target": "159", "key": "1342", "undirected": true }, { "source": "670", "target": "53", "key": "1343", "undirected": true }, { "source": "670", "target": "591", "key": "1344", "undirected": true }, { "source": "670", "target": "504", "key": "1345", "undirected": true }, { "source": "670", "target": "65", "key": "1346", "undirected": true }, { "source": "671", "target": "131", "key": "1347", "undirected": true }, { "source": "671", "target": "67", "key": "1348", "undirected": true }, { "source": "671", "target": "120", "key": "1349", "undirected": true }, { "source": "671", "target": "105", "key": "1350", "undirected": true }, { "source": "671", "target": "672", "key": "1351", "undirected": true }, { "source": "673", "target": "113", "key": "1352", "undirected": true }, { "source": "673", "target": "541", "key": "1353", "undirected": true }, { "source": "673", "target": "674", "key": "1354", "undirected": true }, { "source": "673", "target": "675", "key": "1355", "undirected": true }, { "source": "676", "target": "673", "key": "1356", "undirected": true }, { "source": "676", "target": "646", "key": "1357", "undirected": true }, { "source": "676", "target": "567", "key": "1358", "undirected": true }, { "source": "676", "target": "674", "key": "1359", "undirected": true }, { "source": "677", "target": "53", "key": "1360", "undirected": true }, { "source": "677", "target": "678", "key": "1361", "undirected": true }, { "source": "677", "target": "679", "key": "1362", "undirected": true }, { "source": "677", "target": "582", "key": "1363", "undirected": true }, { "source": "677", "target": "680", "key": "1364", "undirected": true }, { "source": "677", "target": "51", "key": "1365", "undirected": true }, { "source": "681", "target": "682", "key": "1366", "undirected": true }, { "source": "681", "target": "53", "key": "1367", "undirected": true }, { "source": "681", "target": "683", "key": "1368", "undirected": true }, { "source": "681", "target": "106", "key": "1369", "undirected": true }, { "source": "681", "target": "161", "key": "1370", "undirected": true }, { "source": "681", "target": "640", "key": "1371", "undirected": true }, { "source": "681", "target": "641", "key": "1372", "undirected": true }, { "source": "684", "target": "685", "key": "1373", "undirected": true }, { "source": "684", "target": "1", "key": "1374", "undirected": true }, { "source": "684", "target": "5", "key": "1375", "undirected": true }, { "source": "684", "target": "686", "key": "1376", "undirected": true }, { "source": "687", "target": "82", "key": "1377", "undirected": true }, { "source": "687", "target": "98", "key": "1378", "undirected": true }, { "source": "687", "target": "99", "key": "1379", "undirected": true }, { "source": "687", "target": "53", "key": "1380", "undirected": true }, { "source": "687", "target": "688", "key": "1381", "undirected": true }, { "source": "687", "target": "96", "key": "1382", "undirected": true }, { "source": "687", "target": "65", "key": "1383", "undirected": true }, { "source": "687", "target": "109", "key": "1384", "undirected": true }, { "source": "687", "target": "689", "key": "1385", "undirected": true }, { "source": "690", "target": "79", "key": "1386", "undirected": true }, { "source": "690", "target": "163", "key": "1387", "undirected": true }, { "source": "690", "target": "685", "key": "1388", "undirected": true }, { "source": "691", "target": "128", "key": "1389", "undirected": true }, { "source": "691", "target": "85", "key": "1390", "undirected": true }, { "source": "691", "target": "217", "key": "1391", "undirected": true }, { "source": "691", "target": "248", "key": "1392", "undirected": true }, { "source": "691", "target": "692", "key": "1393", "undirected": true }, { "source": "691", "target": "215", "key": "1394", "undirected": true }, { "source": "691", "target": "82", "key": "1395", "undirected": true }, { "source": "693", "target": "571", "key": "1396", "undirected": true }, { "source": "693", "target": "258", "key": "1397", "undirected": true }, { "source": "693", "target": "97", "key": "1398", "undirected": true }, { "source": "694", "target": "128", "key": "1399", "undirected": true }, { "source": "694", "target": "53", "key": "1400", "undirected": true }, { "source": "694", "target": "281", "key": "1401", "undirected": true }, { "source": "694", "target": "111", "key": "1402", "undirected": true }, { "source": "694", "target": "48", "key": "1403", "undirected": true }, { "source": "694", "target": "334", "key": "1404", "undirected": true }, { "source": "694", "target": "695", "key": "1405", "undirected": true }, { "source": "694", "target": "49", "key": "1406", "undirected": true }, { "source": "694", "target": "50", "key": "1407", "undirected": true }, { "source": "694", "target": "484", "key": "1408", "undirected": true }, { "source": "696", "target": "458", "key": "1409", "undirected": true }, { "source": "696", "target": "697", "key": "1410", "undirected": true }, { "source": "696", "target": "109", "key": "1411", "undirected": true }, { "source": "696", "target": "698", "key": "1412", "undirected": true }, { "source": "696", "target": "100", "key": "1413", "undirected": true }, { "source": "696", "target": "167", "key": "1414", "undirected": true }, { "source": "699", "target": "700", "key": "1415", "undirected": true }, { "source": "701", "target": "539", "key": "1416", "undirected": true }, { "source": "701", "target": "540", "key": "1417", "undirected": true }, { "source": "701", "target": "702", "key": "1418", "undirected": true }, { "source": "701", "target": "703", "key": "1419", "undirected": true }, { "source": "701", "target": "91", "key": "1420", "undirected": true }, { "source": "701", "target": "704", "key": "1421", "undirected": true }, { "source": "705", "target": "568", "key": "1422", "undirected": true }, { "source": "603", "target": "411", "key": "1423", "undirected": true }, { "source": "603", "target": "1", "key": "1424", "undirected": true }, { "source": "603", "target": "200", "key": "1425", "undirected": true }, { "source": "603", "target": "166", "key": "1426", "undirected": true }, { "source": "706", "target": "707", "key": "1427", "undirected": true }, { "source": "706", "target": "85", "key": "1428", "undirected": true }, { "source": "706", "target": "708", "key": "1429", "undirected": true }, { "source": "706", "target": "132", "key": "1430", "undirected": true }, { "source": "706", "target": "82", "key": "1431", "undirected": true }, { "source": "709", "target": "710", "key": "1432", "undirected": true }, { "source": "709", "target": "85", "key": "1433", "undirected": true }, { "source": "711", "target": "85", "key": "1434", "undirected": true }, { "source": "711", "target": "712", "key": "1435", "undirected": true }, { "source": "711", "target": "444", "key": "1436", "undirected": true }, { "source": "711", "target": "502", "key": "1437", "undirected": true }, { "source": "711", "target": "82", "key": "1438", "undirected": true }, { "source": "711", "target": "713", "key": "1439", "undirected": true }, { "source": "711", "target": "714", "key": "1440", "undirected": true }, { "source": "711", "target": "715", "key": "1441", "undirected": true }, { "source": "711", "target": "710", "key": "1442", "undirected": true }, { "source": "683", "target": "21", "key": "1443", "undirected": true }, { "source": "683", "target": "82", "key": "1444", "undirected": true }, { "source": "715", "target": "710", "key": "1445", "undirected": true }, { "source": "715", "target": "85", "key": "1446", "undirected": true }, { "source": "715", "target": "1", "key": "1447", "undirected": true }, { "source": "716", "target": "711", "key": "1448", "undirected": true }, { "source": "716", "target": "710", "key": "1449", "undirected": true }, { "source": "716", "target": "85", "key": "1450", "undirected": true }, { "source": "716", "target": "444", "key": "1451", "undirected": true }, { "source": "716", "target": "502", "key": "1452", "undirected": true }, { "source": "716", "target": "109", "key": "1453", "undirected": true }, { "source": "716", "target": "713", "key": "1454", "undirected": true }, { "source": "716", "target": "714", "key": "1455", "undirected": true }, { "source": "716", "target": "128", "key": "1456", "undirected": true }, { "source": "717", "target": "502", "key": "1457", "undirected": true }, { "source": "717", "target": "713", "key": "1458", "undirected": true }, { "source": "717", "target": "714", "key": "1459", "undirected": true }, { "source": "717", "target": "128", "key": "1460", "undirected": true }, { "source": "717", "target": "710", "key": "1461", "undirected": true }, { "source": "717", "target": "85", "key": "1462", "undirected": true }, { "source": "717", "target": "712", "key": "1463", "undirected": true }, { "source": "717", "target": "441", "key": "1464", "undirected": true }, { "source": "710", "target": "83", "key": "1465", "undirected": true }, { "source": "710", "target": "85", "key": "1466", "undirected": true }, { "source": "718", "target": "89", "key": "1467", "undirected": true }, { "source": "719", "target": "720", "key": "1468", "undirected": true }, { "source": "719", "target": "721", "key": "1469", "undirected": true }, { "source": "719", "target": "1", "key": "1470", "undirected": true }, { "source": "719", "target": "141", "key": "1471", "undirected": true }, { "source": "722", "target": "720", "key": "1472", "undirected": true }, { "source": "722", "target": "82", "key": "1473", "undirected": true }, { "source": "722", "target": "239", "key": "1474", "undirected": true }, { "source": "722", "target": "128", "key": "1475", "undirected": true }, { "source": "722", "target": "96", "key": "1476", "undirected": true }, { "source": "722", "target": "234", "key": "1477", "undirected": true }, { "source": "723", "target": "223", "key": "1478", "undirected": true }, { "source": "723", "target": "307", "key": "1479", "undirected": true }, { "source": "723", "target": "361", "key": "1480", "undirected": true }, { "source": "723", "target": "724", "key": "1481", "undirected": true }, { "source": "723", "target": "309", "key": "1482", "undirected": true }, { "source": "607", "target": "598", "key": "1483", "undirected": true }, { "source": "607", "target": "65", "key": "1484", "undirected": true }, { "source": "607", "target": "216", "key": "1485", "undirected": true }, { "source": "607", "target": "53", "key": "1486", "undirected": true }, { "source": "607", "target": "515", "key": "1487", "undirected": true }, { "source": "607", "target": "608", "key": "1488", "undirected": true }, { "source": "608", "target": "216", "key": "1489", "undirected": true }, { "source": "608", "target": "53", "key": "1490", "undirected": true }, { "source": "608", "target": "515", "key": "1491", "undirected": true }, { "source": "608", "target": "607", "key": "1492", "undirected": true }, { "source": "608", "target": "498", "key": "1493", "undirected": true }, { "source": "608", "target": "65", "key": "1494", "undirected": true }, { "source": "608", "target": "50", "key": "1495", "undirected": true }, { "source": "725", "target": "498", "key": "1496", "undirected": true }, { "source": "725", "target": "65", "key": "1497", "undirected": true }, { "source": "725", "target": "726", "key": "1498", "undirected": true }, { "source": "725", "target": "104", "key": "1499", "undirected": true }, { "source": "725", "target": "216", "key": "1500", "undirected": true }, { "source": "725", "target": "515", "key": "1501", "undirected": true }, { "source": "725", "target": "610", "key": "1502", "undirected": true }, { "source": "725", "target": "608", "key": "1503", "undirected": true }, { "source": "727", "target": "229", "key": "1504", "undirected": true }, { "source": "727", "target": "307", "key": "1505", "undirected": true }, { "source": "727", "target": "390", "key": "1506", "undirected": true }, { "source": "727", "target": "53", "key": "1507", "undirected": true }, { "source": "727", "target": "65", "key": "1508", "undirected": true }, { "source": "727", "target": "119", "key": "1509", "undirected": true }, { "source": "727", "target": "200", "key": "1510", "undirected": true }, { "source": "727", "target": "728", "key": "1511", "undirected": true }, { "source": "727", "target": "50", "key": "1512", "undirected": true }, { "source": "729", "target": "229", "key": "1513", "undirected": true }, { "source": "729", "target": "402", "key": "1514", "undirected": true }, { "source": "730", "target": "634", "key": "1515", "undirected": true }, { "source": "730", "target": "607", "key": "1516", "undirected": true }, { "source": "730", "target": "702", "key": "1517", "undirected": true }, { "source": "730", "target": "48", "key": "1518", "undirected": true }, { "source": "730", "target": "731", "key": "1519", "undirected": true }, { "source": "730", "target": "49", "key": "1520", "undirected": true }, { "source": "730", "target": "51", "key": "1521", "undirected": true }, { "source": "730", "target": "484", "key": "1522", "undirected": true }, { "source": "730", "target": "732", "key": "1523", "undirected": true }, { "source": "174", "target": "423", "key": "1524", "undirected": true }, { "source": "174", "target": "1", "key": "1525", "undirected": true }, { "source": "733", "target": "174", "key": "1526", "undirected": true }, { "source": "734", "target": "733", "key": "1527", "undirected": true }, { "source": "734", "target": "592", "key": "1528", "undirected": true }, { "source": "735", "target": "154", "key": "1529", "undirected": true }, { "source": "735", "target": "120", "key": "1530", "undirected": true }, { "source": "735", "target": "736", "key": "1531", "undirected": true }, { "source": "737", "target": "738", "key": "1532", "undirected": true }, { "source": "739", "target": "313", "key": "1533", "undirected": true }, { "source": "740", "target": "53", "key": "1534", "undirected": true }, { "source": "740", "target": "174", "key": "1535", "undirected": true }, { "source": "740", "target": "65", "key": "1536", "undirected": true }, { "source": "740", "target": "50", "key": "1537", "undirected": true }, { "source": "740", "target": "109", "key": "1538", "undirected": true }, { "source": "146", "target": "161", "key": "1539", "undirected": true }, { "source": "741", "target": "20", "key": "1540", "undirected": true }, { "source": "741", "target": "364", "key": "1541", "undirected": true }, { "source": "741", "target": "280", "key": "1542", "undirected": true }, { "source": "741", "target": "535", "key": "1543", "undirected": true }, { "source": "741", "target": "536", "key": "1544", "undirected": true }, { "source": "741", "target": "370", "key": "1545", "undirected": true }, { "source": "741", "target": "742", "key": "1546", "undirected": true }, { "source": "743", "target": "174", "key": "1547", "undirected": true }, { "source": "743", "target": "644", "key": "1548", "undirected": true }, { "source": "743", "target": "645", "key": "1549", "undirected": true }, { "source": "644", "target": "645", "key": "1550", "undirected": true }, { "source": "644", "target": "96", "key": "1551", "undirected": true }, { "source": "644", "target": "592", "key": "1552", "undirected": true }, { "source": "644", "target": "743", "key": "1553", "undirected": true }, { "source": "645", "target": "95", "key": "1554", "undirected": true }, { "source": "645", "target": "96", "key": "1555", "undirected": true }, { "source": "645", "target": "82", "key": "1556", "undirected": true }, { "source": "744", "target": "53", "key": "1557", "undirected": true }, { "source": "744", "target": "65", "key": "1558", "undirected": true }, { "source": "744", "target": "241", "key": "1559", "undirected": true }, { "source": "744", "target": "131", "key": "1560", "undirected": true }, { "source": "744", "target": "67", "key": "1561", "undirected": true }, { "source": "744", "target": "120", "key": "1562", "undirected": true }, { "source": "438", "target": "264", "key": "1563", "undirected": true }, { "source": "438", "target": "265", "key": "1564", "undirected": true }, { "source": "438", "target": "266", "key": "1565", "undirected": true }, { "source": "438", "target": "202", "key": "1566", "undirected": true }, { "source": "438", "target": "403", "key": "1567", "undirected": true }, { "source": "264", "target": "403", "key": "1568", "undirected": true }, { "source": "264", "target": "438", "key": "1569", "undirected": true }, { "source": "264", "target": "265", "key": "1570", "undirected": true }, { "source": "264", "target": "266", "key": "1571", "undirected": true }, { "source": "264", "target": "202", "key": "1572", "undirected": true }, { "source": "745", "target": "170", "key": "1573", "undirected": true }, { "source": "745", "target": "746", "key": "1574", "undirected": true }, { "source": "745", "target": "747", "key": "1575", "undirected": true }, { "source": "745", "target": "748", "key": "1576", "undirected": true }, { "source": "745", "target": "111", "key": "1577", "undirected": true }, { "source": "745", "target": "749", "key": "1578", "undirected": true }, { "source": "750", "target": "311", "key": "1579", "undirected": true }, { "source": "750", "target": "79", "key": "1580", "undirected": true }, { "source": "750", "target": "751", "key": "1581", "undirected": true }, { "source": "750", "target": "752", "key": "1582", "undirected": true }, { "source": "750", "target": "136", "key": "1583", "undirected": true }, { "source": "750", "target": "312", "key": "1584", "undirected": true }, { "source": "750", "target": "753", "key": "1585", "undirected": true }, { "source": "750", "target": "754", "key": "1586", "undirected": true }, { "source": "750", "target": "185", "key": "1587", "undirected": true }, { "source": "750", "target": "137", "key": "1588", "undirected": true }, { "source": "755", "target": "79", "key": "1589", "undirected": true }, { "source": "755", "target": "211", "key": "1590", "undirected": true }, { "source": "755", "target": "368", "key": "1591", "undirected": true }, { "source": "755", "target": "300", "key": "1592", "undirected": true }, { "source": "755", "target": "45", "key": "1593", "undirected": true }, { "source": "755", "target": "312", "key": "1594", "undirected": true }, { "source": "755", "target": "185", "key": "1595", "undirected": true }, { "source": "755", "target": "299", "key": "1596", "undirected": true }, { "source": "756", "target": "757", "key": "1597", "undirected": true }, { "source": "756", "target": "758", "key": "1598", "undirected": true }, { "source": "756", "target": "279", "key": "1599", "undirected": true }, { "source": "756", "target": "53", "key": "1600", "undirected": true }, { "source": "756", "target": "607", "key": "1601", "undirected": true }, { "source": "756", "target": "339", "key": "1602", "undirected": true }, { "source": "756", "target": "51", "key": "1603", "undirected": true }, { "source": "756", "target": "759", "key": "1604", "undirected": true }, { "source": "760", "target": "68", "key": "1605", "undirected": true }, { "source": "760", "target": "519", "key": "1606", "undirected": true }, { "source": "760", "target": "53", "key": "1607", "undirected": true }, { "source": "760", "target": "65", "key": "1608", "undirected": true }, { "source": "760", "target": "624", "key": "1609", "undirected": true }, { "source": "760", "target": "576", "key": "1610", "undirected": true }, { "source": "760", "target": "120", "key": "1611", "undirected": true }, { "source": "760", "target": "262", "key": "1612", "undirected": true }, { "source": "761", "target": "175", "key": "1613", "undirected": true }, { "source": "761", "target": "82", "key": "1614", "undirected": true }, { "source": "453", "target": "249", "key": "1615", "undirected": true }, { "source": "453", "target": "76", "key": "1616", "undirected": true }, { "source": "453", "target": "65", "key": "1617", "undirected": true }, { "source": "453", "target": "250", "key": "1618", "undirected": true }, { "source": "762", "target": "763", "key": "1619", "undirected": true }, { "source": "762", "target": "764", "key": "1620", "undirected": true }, { "source": "762", "target": "765", "key": "1621", "undirected": true }, { "source": "766", "target": "163", "key": "1622", "undirected": true }, { "source": "766", "target": "1", "key": "1623", "undirected": true }, { "source": "767", "target": "1", "key": "1624", "undirected": true }, { "source": "707", "target": "708", "key": "1625", "undirected": true }, { "source": "707", "target": "768", "key": "1626", "undirected": true }, { "source": "707", "target": "82", "key": "1627", "undirected": true }, { "source": "707", "target": "706", "key": "1628", "undirected": true }, { "source": "707", "target": "769", "key": "1629", "undirected": true }, { "source": "707", "target": "568", "key": "1630", "undirected": true }, { "source": "769", "target": "707", "key": "1631", "undirected": true }, { "source": "769", "target": "708", "key": "1632", "undirected": true }, { "source": "769", "target": "770", "key": "1633", "undirected": true }, { "source": "769", "target": "768", "key": "1634", "undirected": true }, { "source": "769", "target": "771", "key": "1635", "undirected": true }, { "source": "504", "target": "427", "key": "1636", "undirected": true }, { "source": "504", "target": "568", "key": "1637", "undirected": true }, { "source": "504", "target": "569", "key": "1638", "undirected": true }, { "source": "504", "target": "708", "key": "1639", "undirected": true }, { "source": "568", "target": "427", "key": "1640", "undirected": true }, { "source": "568", "target": "504", "key": "1641", "undirected": true }, { "source": "568", "target": "569", "key": "1642", "undirected": true }, { "source": "568", "target": "708", "key": "1643", "undirected": true }, { "source": "568", "target": "772", "key": "1644", "undirected": true }, { "source": "773", "target": "769", "key": "1645", "undirected": true }, { "source": "773", "target": "504", "key": "1646", "undirected": true }, { "source": "773", "target": "568", "key": "1647", "undirected": true }, { "source": "773", "target": "708", "key": "1648", "undirected": true }, { "source": "773", "target": "770", "key": "1649", "undirected": true }, { "source": "773", "target": "768", "key": "1650", "undirected": true }, { "source": "773", "target": "771", "key": "1651", "undirected": true }, { "source": "774", "target": "82", "key": "1652", "undirected": true }, { "source": "688", "target": "99", "key": "1653", "undirected": true }, { "source": "688", "target": "25", "key": "1654", "undirected": true }, { "source": "688", "target": "53", "key": "1655", "undirected": true }, { "source": "688", "target": "693", "key": "1656", "undirected": true }, { "source": "688", "target": "83", "key": "1657", "undirected": true }, { "source": "589", "target": "233", "key": "1658", "undirected": true }, { "source": "589", "target": "113", "key": "1659", "undirected": true }, { "source": "589", "target": "47", "key": "1660", "undirected": true }, { "source": "589", "target": "267", "key": "1661", "undirected": true }, { "source": "589", "target": "590", "key": "1662", "undirected": true }, { "source": "589", "target": "374", "key": "1663", "undirected": true }, { "source": "589", "target": "49", "key": "1664", "undirected": true }, { "source": "589", "target": "513", "key": "1665", "undirected": true }, { "source": "244", "target": "645", "key": "1666", "undirected": true }, { "source": "244", "target": "104", "key": "1667", "undirected": true }, { "source": "244", "target": "111", "key": "1668", "undirected": true }, { "source": "244", "target": "109", "key": "1669", "undirected": true }, { "source": "244", "target": "643", "key": "1670", "undirected": true }, { "source": "775", "target": "776", "key": "1671", "undirected": true }, { "source": "775", "target": "777", "key": "1672", "undirected": true }, { "source": "775", "target": "1", "key": "1673", "undirected": true }, { "source": "778", "target": "96", "key": "1674", "undirected": true }, { "source": "778", "target": "65", "key": "1675", "undirected": true }, { "source": "778", "target": "109", "key": "1676", "undirected": true }, { "source": "778", "target": "175", "key": "1677", "undirected": true }, { "source": "778", "target": "25", "key": "1678", "undirected": true }, { "source": "778", "target": "53", "key": "1679", "undirected": true }, { "source": "778", "target": "84", "key": "1680", "undirected": true }, { "source": "778", "target": "645", "key": "1681", "undirected": true }, { "source": "779", "target": "68", "key": "1682", "undirected": true }, { "source": "779", "target": "157", "key": "1683", "undirected": true }, { "source": "779", "target": "175", "key": "1684", "undirected": true }, { "source": "779", "target": "53", "key": "1685", "undirected": true }, { "source": "779", "target": "84", "key": "1686", "undirected": true }, { "source": "779", "target": "174", "key": "1687", "undirected": true }, { "source": "779", "target": "120", "key": "1688", "undirected": true }, { "source": "779", "target": "736", "key": "1689", "undirected": true }, { "source": "780", "target": "174", "key": "1690", "undirected": true }, { "source": "780", "target": "740", "key": "1691", "undirected": true }, { "source": "780", "target": "234", "key": "1692", "undirected": true }, { "source": "780", "target": "781", "key": "1693", "undirected": true }, { "source": "780", "target": "782", "key": "1694", "undirected": true }, { "source": "780", "target": "109", "key": "1695", "undirected": true }, { "source": "780", "target": "68", "key": "1696", "undirected": true }, { "source": "780", "target": "175", "key": "1697", "undirected": true }, { "source": "783", "target": "1", "key": "1698", "undirected": true }, { "source": "783", "target": "50", "key": "1699", "undirected": true }, { "source": "512", "target": "784", "key": "1700", "undirected": true }, { "source": "784", "target": "50", "key": "1701", "undirected": true }, { "source": "784", "target": "68", "key": "1702", "undirected": true }, { "source": "784", "target": "53", "key": "1703", "undirected": true }, { "source": "784", "target": "512", "key": "1704", "undirected": true }, { "source": "784", "target": "65", "key": "1705", "undirected": true }, { "source": "73", "target": "72", "key": "1706", "undirected": true }, { "source": "73", "target": "561", "key": "1707", "undirected": true }, { "source": "73", "target": "70", "key": "1708", "undirected": true }, { "source": "74", "target": "72", "key": "1709", "undirected": true }, { "source": "74", "target": "73", "key": "1710", "undirected": true }, { "source": "74", "target": "70", "key": "1711", "undirected": true }, { "source": "785", "target": "322", "key": "1712", "undirected": true }, { "source": "785", "target": "786", "key": "1713", "undirected": true }, { "source": "785", "target": "323", "key": "1714", "undirected": true }, { "source": "785", "target": "787", "key": "1715", "undirected": true }, { "source": "788", "target": "114", "key": "1716", "undirected": true }, { "source": "788", "target": "632", "key": "1717", "undirected": true }, { "source": "788", "target": "789", "key": "1718", "undirected": true }, { "source": "788", "target": "48", "key": "1719", "undirected": true }, { "source": "788", "target": "411", "key": "1720", "undirected": true }, { "source": "788", "target": "498", "key": "1721", "undirected": true }, { "source": "790", "target": "791", "key": "1722", "undirected": true }, { "source": "792", "target": "68", "key": "1723", "undirected": true }, { "source": "792", "target": "61", "key": "1724", "undirected": true }, { "source": "792", "target": "159", "key": "1725", "undirected": true }, { "source": "792", "target": "793", "key": "1726", "undirected": true }, { "source": "245", "target": "65", "key": "1727", "undirected": true }, { "source": "245", "target": "131", "key": "1728", "undirected": true }, { "source": "245", "target": "104", "key": "1729", "undirected": true }, { "source": "245", "target": "105", "key": "1730", "undirected": true }, { "source": "245", "target": "50", "key": "1731", "undirected": true }, { "source": "245", "target": "102", "key": "1732", "undirected": true }, { "source": "245", "target": "68", "key": "1733", "undirected": true }, { "source": "245", "target": "53", "key": "1734", "undirected": true }, { "source": "794", "target": "102", "key": "1735", "undirected": true }, { "source": "794", "target": "25", "key": "1736", "undirected": true }, { "source": "794", "target": "53", "key": "1737", "undirected": true }, { "source": "794", "target": "65", "key": "1738", "undirected": true }, { "source": "794", "target": "104", "key": "1739", "undirected": true }, { "source": "794", "target": "50", "key": "1740", "undirected": true }, { "source": "794", "target": "109", "key": "1741", "undirected": true }, { "source": "795", "target": "234", "key": "1742", "undirected": true }, { "source": "795", "target": "65", "key": "1743", "undirected": true }, { "source": "795", "target": "50", "key": "1744", "undirected": true }, { "source": "795", "target": "796", "key": "1745", "undirected": true }, { "source": "797", "target": "53", "key": "1746", "undirected": true }, { "source": "797", "target": "405", "key": "1747", "undirected": true }, { "source": "797", "target": "397", "key": "1748", "undirected": true }, { "source": "797", "target": "370", "key": "1749", "undirected": true }, { "source": "797", "target": "48", "key": "1750", "undirected": true }, { "source": "797", "target": "409", "key": "1751", "undirected": true }, { "source": "797", "target": "49", "key": "1752", "undirected": true }, { "source": "797", "target": "798", "key": "1753", "undirected": true }, { "source": "797", "target": "50", "key": "1754", "undirected": true }, { "source": "799", "target": "631", "key": "1755", "undirected": true }, { "source": "799", "target": "800", "key": "1756", "undirected": true }, { "source": "799", "target": "405", "key": "1757", "undirected": true }, { "source": "799", "target": "397", "key": "1758", "undirected": true }, { "source": "799", "target": "801", "key": "1759", "undirected": true }, { "source": "799", "target": "370", "key": "1760", "undirected": true }, { "source": "799", "target": "48", "key": "1761", "undirected": true }, { "source": "799", "target": "409", "key": "1762", "undirected": true }, { "source": "799", "target": "49", "key": "1763", "undirected": true }, { "source": "799", "target": "280", "key": "1764", "undirected": true }, { "source": "802", "target": "637", "key": "1765", "undirected": true }, { "source": "802", "target": "79", "key": "1766", "undirected": true }, { "source": "802", "target": "803", "key": "1767", "undirected": true }, { "source": "802", "target": "150", "key": "1768", "undirected": true }, { "source": "804", "target": "1", "key": "1769", "undirected": true }, { "source": "805", "target": "166", "key": "1770", "undirected": true }, { "source": "805", "target": "344", "key": "1771", "undirected": true }, { "source": "805", "target": "603", "key": "1772", "undirected": true }, { "source": "805", "target": "411", "key": "1773", "undirected": true }, { "source": "805", "target": "281", "key": "1774", "undirected": true }, { "source": "805", "target": "48", "key": "1775", "undirected": true }, { "source": "411", "target": "409", "key": "1776", "undirected": true }, { "source": "411", "target": "806", "key": "1777", "undirected": true }, { "source": "411", "target": "807", "key": "1778", "undirected": true }, { "source": "411", "target": "166", "key": "1779", "undirected": true }, { "source": "411", "target": "532", "key": "1780", "undirected": true }, { "source": "411", "target": "603", "key": "1781", "undirected": true }, { "source": "411", "target": "805", "key": "1782", "undirected": true }, { "source": "411", "target": "1", "key": "1783", "undirected": true }, { "source": "411", "target": "48", "key": "1784", "undirected": true }, { "source": "808", "target": "50", "key": "1785", "undirected": true }, { "source": "808", "target": "216", "key": "1786", "undirected": true }, { "source": "808", "target": "280", "key": "1787", "undirected": true }, { "source": "808", "target": "411", "key": "1788", "undirected": true }, { "source": "808", "target": "65", "key": "1789", "undirected": true }, { "source": "808", "target": "405", "key": "1790", "undirected": true }, { "source": "808", "target": "48", "key": "1791", "undirected": true }, { "source": "808", "target": "409", "key": "1792", "undirected": true }, { "source": "808", "target": "406", "key": "1793", "undirected": true }, { "source": "808", "target": "49", "key": "1794", "undirected": true }, { "source": "809", "target": "810", "key": "1795", "undirected": true }, { "source": "809", "target": "42", "key": "1796", "undirected": true }, { "source": "809", "target": "279", "key": "1797", "undirected": true }, { "source": "809", "target": "382", "key": "1798", "undirected": true }, { "source": "809", "target": "61", "key": "1799", "undirected": true }, { "source": "809", "target": "48", "key": "1800", "undirected": true }, { "source": "811", "target": "173", "key": "1801", "undirected": true }, { "source": "811", "target": "175", "key": "1802", "undirected": true }, { "source": "811", "target": "53", "key": "1803", "undirected": true }, { "source": "811", "target": "65", "key": "1804", "undirected": true }, { "source": "811", "target": "592", "key": "1805", "undirected": true }, { "source": "811", "target": "109", "key": "1806", "undirected": true }, { "source": "96", "target": "95", "key": "1807", "undirected": true }, { "source": "96", "target": "812", "key": "1808", "undirected": true }, { "source": "813", "target": "645", "key": "1809", "undirected": true }, { "source": "813", "target": "96", "key": "1810", "undirected": true }, { "source": "813", "target": "127", "key": "1811", "undirected": true }, { "source": "813", "target": "132", "key": "1812", "undirected": true }, { "source": "814", "target": "95", "key": "1813", "undirected": true }, { "source": "814", "target": "96", "key": "1814", "undirected": true }, { "source": "814", "target": "97", "key": "1815", "undirected": true }, { "source": "815", "target": "816", "key": "1816", "undirected": true }, { "source": "815", "target": "817", "key": "1817", "undirected": true }, { "source": "815", "target": "403", "key": "1818", "undirected": true }, { "source": "815", "target": "607", "key": "1819", "undirected": true }, { "source": "815", "target": "438", "key": "1820", "undirected": true }, { "source": "815", "target": "598", "key": "1821", "undirected": true }, { "source": "64", "target": "68", "key": "1822", "undirected": true }, { "source": "64", "target": "53", "key": "1823", "undirected": true }, { "source": "64", "target": "118", "key": "1824", "undirected": true }, { "source": "64", "target": "65", "key": "1825", "undirected": true }, { "source": "64", "target": "93", "key": "1826", "undirected": true }, { "source": "64", "target": "67", "key": "1827", "undirected": true }, { "source": "64", "target": "105", "key": "1828", "undirected": true }, { "source": "64", "target": "50", "key": "1829", "undirected": true }, { "source": "64", "target": "349", "key": "1830", "undirected": true }, { "source": "818", "target": "221", "key": "1831", "undirected": true }, { "source": "818", "target": "313", "key": "1832", "undirected": true }, { "source": "819", "target": "292", "key": "1833", "undirected": true }, { "source": "819", "target": "79", "key": "1834", "undirected": true }, { "source": "820", "target": "167", "key": "1835", "undirected": true }, { "source": "821", "target": "88", "key": "1836", "undirected": true }, { "source": "821", "target": "53", "key": "1837", "undirected": true }, { "source": "821", "target": "498", "key": "1838", "undirected": true }, { "source": "821", "target": "109", "key": "1839", "undirected": true }, { "source": "821", "target": "822", "key": "1840", "undirected": true }, { "source": "100", "target": "68", "key": "1841", "undirected": true }, { "source": "100", "target": "53", "key": "1842", "undirected": true }, { "source": "100", "target": "248", "key": "1843", "undirected": true }, { "source": "823", "target": "82", "key": "1844", "undirected": true }, { "source": "823", "target": "84", "key": "1845", "undirected": true }, { "source": "823", "target": "824", "key": "1846", "undirected": true }, { "source": "493", "target": "825", "key": "1847", "undirected": true }, { "source": "493", "target": "82", "key": "1848", "undirected": true }, { "source": "493", "target": "495", "key": "1849", "undirected": true }, { "source": "290", "target": "62", "key": "1850", "undirected": true }, { "source": "290", "target": "53", "key": "1851", "undirected": true }, { "source": "290", "target": "65", "key": "1852", "undirected": true }, { "source": "290", "target": "67", "key": "1853", "undirected": true }, { "source": "290", "target": "826", "key": "1854", "undirected": true }, { "source": "290", "target": "50", "key": "1855", "undirected": true }, { "source": "827", "target": "1", "key": "1856", "undirected": true }, { "source": "828", "target": "237", "key": "1857", "undirected": true }, { "source": "828", "target": "76", "key": "1858", "undirected": true }, { "source": "828", "target": "53", "key": "1859", "undirected": true }, { "source": "828", "target": "591", "key": "1860", "undirected": true }, { "source": "828", "target": "65", "key": "1861", "undirected": true }, { "source": "828", "target": "109", "key": "1862", "undirected": true }, { "source": "828", "target": "682", "key": "1863", "undirected": true }, { "source": "828", "target": "511", "key": "1864", "undirected": true }, { "source": "828", "target": "68", "key": "1865", "undirected": true }, { "source": "829", "target": "556", "key": "1866", "undirected": true }, { "source": "829", "target": "109", "key": "1867", "undirected": true }, { "source": "829", "target": "76", "key": "1868", "undirected": true }, { "source": "829", "target": "453", "key": "1869", "undirected": true }, { "source": "829", "target": "830", "key": "1870", "undirected": true }, { "source": "829", "target": "831", "key": "1871", "undirected": true }, { "source": "829", "target": "101", "key": "1872", "undirected": true }, { "source": "830", "target": "237", "key": "1873", "undirected": true }, { "source": "830", "target": "76", "key": "1874", "undirected": true }, { "source": "830", "target": "831", "key": "1875", "undirected": true }, { "source": "830", "target": "556", "key": "1876", "undirected": true }, { "source": "832", "target": "82", "key": "1877", "undirected": true }, { "source": "832", "target": "68", "key": "1878", "undirected": true }, { "source": "832", "target": "237", "key": "1879", "undirected": true }, { "source": "832", "target": "76", "key": "1880", "undirected": true }, { "source": "832", "target": "53", "key": "1881", "undirected": true }, { "source": "832", "target": "693", "key": "1882", "undirected": true }, { "source": "832", "target": "65", "key": "1883", "undirected": true }, { "source": "832", "target": "571", "key": "1884", "undirected": true }, { "source": "833", "target": "280", "key": "1885", "undirected": true }, { "source": "833", "target": "403", "key": "1886", "undirected": true }, { "source": "833", "target": "715", "key": "1887", "undirected": true }, { "source": "833", "target": "444", "key": "1888", "undirected": true }, { "source": "833", "target": "281", "key": "1889", "undirected": true }, { "source": "833", "target": "505", "key": "1890", "undirected": true }, { "source": "833", "target": "48", "key": "1891", "undirected": true }, { "source": "833", "target": "50", "key": "1892", "undirected": true }, { "source": "833", "target": "109", "key": "1893", "undirected": true }, { "source": "265", "target": "834", "key": "1894", "undirected": true }, { "source": "265", "target": "202", "key": "1895", "undirected": true }, { "source": "265", "target": "438", "key": "1896", "undirected": true }, { "source": "265", "target": "264", "key": "1897", "undirected": true }, { "source": "265", "target": "835", "key": "1898", "undirected": true }, { "source": "836", "target": "490", "key": "1899", "undirected": true }, { "source": "836", "target": "837", "key": "1900", "undirected": true }, { "source": "836", "target": "838", "key": "1901", "undirected": true }, { "source": "836", "target": "266", "key": "1902", "undirected": true }, { "source": "837", "target": "280", "key": "1903", "undirected": true }, { "source": "837", "target": "444", "key": "1904", "undirected": true }, { "source": "837", "target": "781", "key": "1905", "undirected": true }, { "source": "837", "target": "839", "key": "1906", "undirected": true }, { "source": "837", "target": "48", "key": "1907", "undirected": true }, { "source": "837", "target": "49", "key": "1908", "undirected": true }, { "source": "837", "target": "495", "key": "1909", "undirected": true }, { "source": "840", "target": "280", "key": "1910", "undirected": true }, { "source": "840", "target": "335", "key": "1911", "undirected": true }, { "source": "840", "target": "715", "key": "1912", "undirected": true }, { "source": "840", "target": "841", "key": "1913", "undirected": true }, { "source": "840", "target": "444", "key": "1914", "undirected": true }, { "source": "840", "target": "48", "key": "1915", "undirected": true }, { "source": "840", "target": "502", "key": "1916", "undirected": true }, { "source": "840", "target": "713", "key": "1917", "undirected": true }, { "source": "842", "target": "85", "key": "1918", "undirected": true }, { "source": "843", "target": "444", "key": "1919", "undirected": true }, { "source": "843", "target": "502", "key": "1920", "undirected": true }, { "source": "843", "target": "714", "key": "1921", "undirected": true }, { "source": "843", "target": "711", "key": "1922", "undirected": true }, { "source": "843", "target": "715", "key": "1923", "undirected": true }, { "source": "843", "target": "85", "key": "1924", "undirected": true }, { "source": "844", "target": "154", "key": "1925", "undirected": true }, { "source": "234", "target": "85", "key": "1926", "undirected": true }, { "source": "234", "target": "215", "key": "1927", "undirected": true }, { "source": "234", "target": "82", "key": "1928", "undirected": true }, { "source": "85", "target": "128", "key": "1929", "undirected": true }, { "source": "85", "target": "709", "key": "1930", "undirected": true }, { "source": "85", "target": "82", "key": "1931", "undirected": true }, { "source": "845", "target": "846", "key": "1932", "undirected": true }, { "source": "845", "target": "706", "key": "1933", "undirected": true }, { "source": "845", "target": "707", "key": "1934", "undirected": true }, { "source": "845", "target": "379", "key": "1935", "undirected": true }, { "source": "751", "target": "479", "key": "1936", "undirected": true }, { "source": "752", "target": "79", "key": "1937", "undirected": true }, { "source": "752", "target": "211", "key": "1938", "undirected": true }, { "source": "752", "target": "136", "key": "1939", "undirected": true }, { "source": "752", "target": "847", "key": "1940", "undirected": true }, { "source": "752", "target": "137", "key": "1941", "undirected": true }, { "source": "848", "target": "79", "key": "1942", "undirected": true }, { "source": "848", "target": "752", "key": "1943", "undirected": true }, { "source": "848", "target": "211", "key": "1944", "undirected": true }, { "source": "211", "target": "361", "key": "1945", "undirected": true }, { "source": "211", "target": "225", "key": "1946", "undirected": true }, { "source": "849", "target": "361", "key": "1947", "undirected": true }, { "source": "849", "target": "324", "key": "1948", "undirected": true }, { "source": "849", "target": "79", "key": "1949", "undirected": true }, { "source": "850", "target": "99", "key": "1950", "undirected": true }, { "source": "850", "target": "79", "key": "1951", "undirected": true }, { "source": "850", "target": "690", "key": "1952", "undirected": true }, { "source": "850", "target": "718", "key": "1953", "undirected": true }, { "source": "850", "target": "141", "key": "1954", "undirected": true }, { "source": "361", "target": "299", "key": "1955", "undirected": true }, { "source": "361", "target": "79", "key": "1956", "undirected": true }, { "source": "361", "target": "211", "key": "1957", "undirected": true }, { "source": "361", "target": "368", "key": "1958", "undirected": true }, { "source": "851", "target": "852", "key": "1959", "undirected": true }, { "source": "851", "target": "79", "key": "1960", "undirected": true }, { "source": "851", "target": "312", "key": "1961", "undirected": true }, { "source": "613", "target": "292", "key": "1962", "undirected": true }, { "source": "613", "target": "296", "key": "1963", "undirected": true }, { "source": "613", "target": "79", "key": "1964", "undirected": true }, { "source": "613", "target": "313", "key": "1965", "undirected": true }, { "source": "613", "target": "351", "key": "1966", "undirected": true }, { "source": "853", "target": "292", "key": "1967", "undirected": true }, { "source": "853", "target": "313", "key": "1968", "undirected": true }, { "source": "854", "target": "1", "key": "1969", "undirected": true }, { "source": "854", "target": "272", "key": "1970", "undirected": true }, { "source": "854", "target": "429", "key": "1971", "undirected": true }, { "source": "855", "target": "296", "key": "1972", "undirected": true }, { "source": "856", "target": "310", "key": "1973", "undirected": true }, { "source": "856", "target": "219", "key": "1974", "undirected": true }, { "source": "856", "target": "293", "key": "1975", "undirected": true }, { "source": "856", "target": "321", "key": "1976", "undirected": true }, { "source": "856", "target": "294", "key": "1977", "undirected": true }, { "source": "856", "target": "79", "key": "1978", "undirected": true }, { "source": "856", "target": "295", "key": "1979", "undirected": true }, { "source": "856", "target": "185", "key": "1980", "undirected": true }, { "source": "598", "target": "597", "key": "1981", "undirected": true }, { "source": "598", "target": "816", "key": "1982", "undirected": true }, { "source": "598", "target": "104", "key": "1983", "undirected": true }, { "source": "598", "target": "114", "key": "1984", "undirected": true }, { "source": "498", "target": "857", "key": "1985", "undirected": true }, { "source": "498", "target": "80", "key": "1986", "undirected": true }, { "source": "498", "target": "581", "key": "1987", "undirected": true }, { "source": "498", "target": "858", "key": "1988", "undirected": true }, { "source": "498", "target": "816", "key": "1989", "undirected": true }, { "source": "816", "target": "598", "key": "1990", "undirected": true }, { "source": "816", "target": "498", "key": "1991", "undirected": true }, { "source": "816", "target": "435", "key": "1992", "undirected": true }, { "source": "816", "target": "858", "key": "1993", "undirected": true }, { "source": "859", "target": "860", "key": "1994", "undirected": true }, { "source": "859", "target": "861", "key": "1995", "undirected": true }, { "source": "859", "target": "87", "key": "1996", "undirected": true }, { "source": "859", "target": "817", "key": "1997", "undirected": true }, { "source": "859", "target": "862", "key": "1998", "undirected": true }, { "source": "859", "target": "863", "key": "1999", "undirected": true }, { "source": "859", "target": "513", "key": "2000", "undirected": true }, { "source": "859", "target": "161", "key": "2001", "undirected": true }, { "source": "817", "target": "598", "key": "2002", "undirected": true }, { "source": "817", "target": "498", "key": "2003", "undirected": true }, { "source": "864", "target": "50", "key": "2004", "undirected": true }, { "source": "864", "target": "480", "key": "2005", "undirected": true }, { "source": "864", "target": "61", "key": "2006", "undirected": true }, { "source": "864", "target": "53", "key": "2007", "undirected": true }, { "source": "864", "target": "498", "key": "2008", "undirected": true }, { "source": "864", "target": "865", "key": "2009", "undirected": true }, { "source": "864", "target": "66", "key": "2010", "undirected": true }, { "source": "864", "target": "866", "key": "2011", "undirected": true }, { "source": "864", "target": "867", "key": "2012", "undirected": true }, { "source": "857", "target": "816", "key": "2013", "undirected": true }, { "source": "857", "target": "80", "key": "2014", "undirected": true }, { "source": "857", "target": "581", "key": "2015", "undirected": true }, { "source": "857", "target": "858", "key": "2016", "undirected": true }, { "source": "868", "target": "84", "key": "2017", "undirected": true }, { "source": "868", "target": "498", "key": "2018", "undirected": true }, { "source": "868", "target": "109", "key": "2019", "undirected": true }, { "source": "868", "target": "82", "key": "2020", "undirected": true }, { "source": "868", "target": "531", "key": "2021", "undirected": true }, { "source": "869", "target": "232", "key": "2022", "undirected": true }, { "source": "869", "target": "132", "key": "2023", "undirected": true }, { "source": "869", "target": "172", "key": "2024", "undirected": true }, { "source": "869", "target": "82", "key": "2025", "undirected": true }, { "source": "869", "target": "53", "key": "2026", "undirected": true }, { "source": "869", "target": "85", "key": "2027", "undirected": true }, { "source": "869", "target": "712", "key": "2028", "undirected": true }, { "source": "800", "target": "498", "key": "2029", "undirected": true }, { "source": "800", "target": "581", "key": "2030", "undirected": true }, { "source": "712", "target": "82", "key": "2031", "undirected": true }, { "source": "712", "target": "713", "key": "2032", "undirected": true }, { "source": "712", "target": "128", "key": "2033", "undirected": true }, { "source": "712", "target": "85", "key": "2034", "undirected": true }, { "source": "712", "target": "868", "key": "2035", "undirected": true }, { "source": "712", "target": "869", "key": "2036", "undirected": true }, { "source": "712", "target": "870", "key": "2037", "undirected": true }, { "source": "712", "target": "232", "key": "2038", "undirected": true }, { "source": "871", "target": "68", "key": "2039", "undirected": true }, { "source": "871", "target": "61", "key": "2040", "undirected": true }, { "source": "871", "target": "408", "key": "2041", "undirected": true }, { "source": "871", "target": "62", "key": "2042", "undirected": true }, { "source": "871", "target": "53", "key": "2043", "undirected": true }, { "source": "871", "target": "64", "key": "2044", "undirected": true }, { "source": "871", "target": "65", "key": "2045", "undirected": true }, { "source": "871", "target": "289", "key": "2046", "undirected": true }, { "source": "871", "target": "287", "key": "2047", "undirected": true }, { "source": "871", "target": "513", "key": "2048", "undirected": true }, { "source": "554", "target": "510", "key": "2049", "undirected": true }, { "source": "554", "target": "348", "key": "2050", "undirected": true }, { "source": "872", "target": "150", "key": "2051", "undirected": true }, { "source": "873", "target": "53", "key": "2052", "undirected": true }, { "source": "873", "target": "874", "key": "2053", "undirected": true }, { "source": "873", "target": "65", "key": "2054", "undirected": true }, { "source": "873", "target": "131", "key": "2055", "undirected": true }, { "source": "873", "target": "104", "key": "2056", "undirected": true }, { "source": "873", "target": "114", "key": "2057", "undirected": true }, { "source": "873", "target": "458", "key": "2058", "undirected": true }, { "source": "873", "target": "50", "key": "2059", "undirected": true }, { "source": "873", "target": "109", "key": "2060", "undirected": true }, { "source": "875", "target": "858", "key": "2061", "undirected": true }, { "source": "875", "target": "760", "key": "2062", "undirected": true }, { "source": "875", "target": "576", "key": "2063", "undirected": true }, { "source": "874", "target": "104", "key": "2064", "undirected": true }, { "source": "874", "target": "114", "key": "2065", "undirected": true }, { "source": "874", "target": "876", "key": "2066", "undirected": true }, { "source": "874", "target": "50", "key": "2067", "undirected": true }, { "source": "877", "target": "740", "key": "2068", "undirected": true }, { "source": "877", "target": "65", "key": "2069", "undirected": true }, { "source": "877", "target": "107", "key": "2070", "undirected": true }, { "source": "877", "target": "111", "key": "2071", "undirected": true }, { "source": "878", "target": "781", "key": "2072", "undirected": true }, { "source": "878", "target": "68", "key": "2073", "undirected": true }, { "source": "878", "target": "53", "key": "2074", "undirected": true }, { "source": "878", "target": "645", "key": "2075", "undirected": true }, { "source": "878", "target": "877", "key": "2076", "undirected": true }, { "source": "879", "target": "648", "key": "2077", "undirected": true }, { "source": "880", "target": "68", "key": "2078", "undirected": true }, { "source": "880", "target": "519", "key": "2079", "undirected": true }, { "source": "880", "target": "53", "key": "2080", "undirected": true }, { "source": "880", "target": "167", "key": "2081", "undirected": true }, { "source": "880", "target": "576", "key": "2082", "undirected": true }, { "source": "881", "target": "882", "key": "2083", "undirected": true }, { "source": "881", "target": "883", "key": "2084", "undirected": true }, { "source": "881", "target": "109", "key": "2085", "undirected": true }, { "source": "881", "target": "68", "key": "2086", "undirected": true }, { "source": "881", "target": "53", "key": "2087", "undirected": true }, { "source": "881", "target": "100", "key": "2088", "undirected": true }, { "source": "881", "target": "498", "key": "2089", "undirected": true }, { "source": "881", "target": "65", "key": "2090", "undirected": true }, { "source": "881", "target": "167", "key": "2091", "undirected": true }, { "source": "884", "target": "68", "key": "2092", "undirected": true }, { "source": "884", "target": "216", "key": "2093", "undirected": true }, { "source": "884", "target": "468", "key": "2094", "undirected": true }, { "source": "884", "target": "53", "key": "2095", "undirected": true }, { "source": "884", "target": "515", "key": "2096", "undirected": true }, { "source": "884", "target": "498", "key": "2097", "undirected": true }, { "source": "884", "target": "444", "key": "2098", "undirected": true }, { "source": "884", "target": "885", "key": "2099", "undirected": true }, { "source": "884", "target": "82", "key": "2100", "undirected": true }, { "source": "886", "target": "600", "key": "2101", "undirected": true }, { "source": "886", "target": "883", "key": "2102", "undirected": true }, { "source": "886", "target": "170", "key": "2103", "undirected": true }, { "source": "887", "target": "608", "key": "2104", "undirected": true }, { "source": "887", "target": "598", "key": "2105", "undirected": true }, { "source": "887", "target": "888", "key": "2106", "undirected": true }, { "source": "887", "target": "889", "key": "2107", "undirected": true }, { "source": "890", "target": "790", "key": "2108", "undirected": true }, { "source": "890", "target": "1", "key": "2109", "undirected": true }, { "source": "891", "target": "184", "key": "2110", "undirected": true }, { "source": "891", "target": "325", "key": "2111", "undirected": true }, { "source": "891", "target": "892", "key": "2112", "undirected": true }, { "source": "891", "target": "51", "key": "2113", "undirected": true }, { "source": "891", "target": "53", "key": "2114", "undirected": true }, { "source": "891", "target": "79", "key": "2115", "undirected": true }, { "source": "891", "target": "893", "key": "2116", "undirected": true }, { "source": "891", "target": "181", "key": "2117", "undirected": true }, { "source": "894", "target": "177", "key": "2118", "undirected": true }, { "source": "894", "target": "79", "key": "2119", "undirected": true }, { "source": "894", "target": "74", "key": "2120", "undirected": true }, { "source": "894", "target": "463", "key": "2121", "undirected": true }, { "source": "65", "target": "131", "key": "2122", "undirected": true }, { "source": "65", "target": "104", "key": "2123", "undirected": true }, { "source": "65", "target": "67", "key": "2124", "undirected": true }, { "source": "65", "target": "105", "key": "2125", "undirected": true }, { "source": "65", "target": "50", "key": "2126", "undirected": true }, { "source": "65", "target": "68", "key": "2127", "undirected": true }, { "source": "65", "target": "53", "key": "2128", "undirected": true }, { "source": "65", "target": "118", "key": "2129", "undirected": true }, { "source": "65", "target": "64", "key": "2130", "undirected": true }, { "source": "65", "target": "93", "key": "2131", "undirected": true }, { "source": "895", "target": "567", "key": "2132", "undirected": true }, { "source": "895", "target": "50", "key": "2133", "undirected": true }, { "source": "895", "target": "68", "key": "2134", "undirected": true }, { "source": "895", "target": "53", "key": "2135", "undirected": true }, { "source": "895", "target": "118", "key": "2136", "undirected": true }, { "source": "895", "target": "64", "key": "2137", "undirected": true }, { "source": "895", "target": "93", "key": "2138", "undirected": true }, { "source": "895", "target": "131", "key": "2139", "undirected": true }, { "source": "895", "target": "242", "key": "2140", "undirected": true }, { "source": "895", "target": "67", "key": "2141", "undirected": true }, { "source": "588", "target": "113", "key": "2142", "undirected": true }, { "source": "588", "target": "116", "key": "2143", "undirected": true }, { "source": "624", "target": "896", "key": "2144", "undirected": true }, { "source": "624", "target": "897", "key": "2145", "undirected": true }, { "source": "898", "target": "367", "key": "2146", "undirected": true }, { "source": "898", "target": "1", "key": "2147", "undirected": true }, { "source": "898", "target": "899", "key": "2148", "undirected": true }, { "source": "377", "target": "294", "key": "2149", "undirected": true }, { "source": "377", "target": "295", "key": "2150", "undirected": true }, { "source": "377", "target": "852", "key": "2151", "undirected": true }, { "source": "900", "target": "652", "key": "2152", "undirected": true }, { "source": "259", "target": "841", "key": "2153", "undirected": true }, { "source": "259", "target": "457", "key": "2154", "undirected": true }, { "source": "93", "target": "53", "key": "2155", "undirected": true }, { "source": "93", "target": "84", "key": "2156", "undirected": true }, { "source": "93", "target": "64", "key": "2157", "undirected": true }, { "source": "93", "target": "65", "key": "2158", "undirected": true }, { "source": "93", "target": "104", "key": "2159", "undirected": true }, { "source": "93", "target": "67", "key": "2160", "undirected": true }, { "source": "93", "target": "105", "key": "2161", "undirected": true }, { "source": "93", "target": "50", "key": "2162", "undirected": true }, { "source": "93", "target": "82", "key": "2163", "undirected": true }, { "source": "901", "target": "451", "key": "2164", "undirected": true }, { "source": "901", "target": "872", "key": "2165", "undirected": true }, { "source": "901", "target": "65", "key": "2166", "undirected": true }, { "source": "901", "target": "93", "key": "2167", "undirected": true }, { "source": "901", "target": "902", "key": "2168", "undirected": true }, { "source": "901", "target": "250", "key": "2169", "undirected": true }, { "source": "901", "target": "111", "key": "2170", "undirected": true }, { "source": "901", "target": "109", "key": "2171", "undirected": true }, { "source": "901", "target": "68", "key": "2172", "undirected": true }, { "source": "903", "target": "104", "key": "2173", "undirected": true }, { "source": "903", "target": "109", "key": "2174", "undirected": true }, { "source": "903", "target": "451", "key": "2175", "undirected": true }, { "source": "903", "target": "53", "key": "2176", "undirected": true }, { "source": "903", "target": "65", "key": "2177", "undirected": true }, { "source": "903", "target": "93", "key": "2178", "undirected": true }, { "source": "903", "target": "901", "key": "2179", "undirected": true }, { "source": "131", "target": "53", "key": "2180", "undirected": true }, { "source": "131", "target": "118", "key": "2181", "undirected": true }, { "source": "131", "target": "65", "key": "2182", "undirected": true }, { "source": "131", "target": "104", "key": "2183", "undirected": true }, { "source": "131", "target": "114", "key": "2184", "undirected": true }, { "source": "131", "target": "567", "key": "2185", "undirected": true }, { "source": "131", "target": "111", "key": "2186", "undirected": true }, { "source": "131", "target": "50", "key": "2187", "undirected": true }, { "source": "540", "target": "541", "key": "2188", "undirected": true }, { "source": "726", "target": "607", "key": "2189", "undirected": true }, { "source": "726", "target": "65", "key": "2190", "undirected": true }, { "source": "726", "target": "104", "key": "2191", "undirected": true }, { "source": "726", "target": "114", "key": "2192", "undirected": true }, { "source": "726", "target": "426", "key": "2193", "undirected": true }, { "source": "726", "target": "53", "key": "2194", "undirected": true }, { "source": "569", "target": "130", "key": "2195", "undirected": true }, { "source": "569", "target": "427", "key": "2196", "undirected": true }, { "source": "569", "target": "504", "key": "2197", "undirected": true }, { "source": "569", "target": "568", "key": "2198", "undirected": true }, { "source": "569", "target": "65", "key": "2199", "undirected": true }, { "source": "569", "target": "82", "key": "2200", "undirected": true }, { "source": "904", "target": "93", "key": "2201", "undirected": true }, { "source": "904", "target": "131", "key": "2202", "undirected": true }, { "source": "904", "target": "569", "key": "2203", "undirected": true }, { "source": "904", "target": "104", "key": "2204", "undirected": true }, { "source": "904", "target": "567", "key": "2205", "undirected": true }, { "source": "904", "target": "427", "key": "2206", "undirected": true }, { "source": "904", "target": "118", "key": "2207", "undirected": true }, { "source": "904", "target": "65", "key": "2208", "undirected": true }, { "source": "104", "target": "597", "key": "2209", "undirected": true }, { "source": "104", "target": "598", "key": "2210", "undirected": true }, { "source": "104", "target": "114", "key": "2211", "undirected": true }, { "source": "114", "target": "597", "key": "2212", "undirected": true }, { "source": "114", "target": "598", "key": "2213", "undirected": true }, { "source": "114", "target": "104", "key": "2214", "undirected": true }, { "source": "905", "target": "906", "key": "2215", "undirected": true }, { "source": "905", "target": "907", "key": "2216", "undirected": true }, { "source": "905", "target": "79", "key": "2217", "undirected": true }, { "source": "906", "target": "177", "key": "2218", "undirected": true }, { "source": "906", "target": "463", "key": "2219", "undirected": true }, { "source": "907", "target": "906", "key": "2220", "undirected": true }, { "source": "907", "target": "908", "key": "2221", "undirected": true }, { "source": "907", "target": "909", "key": "2222", "undirected": true }, { "source": "910", "target": "177", "key": "2223", "undirected": true }, { "source": "242", "target": "241", "key": "2224", "undirected": true }, { "source": "242", "target": "153", "key": "2225", "undirected": true }, { "source": "242", "target": "120", "key": "2226", "undirected": true }, { "source": "153", "target": "120", "key": "2227", "undirected": true }, { "source": "153", "target": "379", "key": "2228", "undirected": true }, { "source": "153", "target": "584", "key": "2229", "undirected": true }, { "source": "153", "target": "155", "key": "2230", "undirected": true }, { "source": "153", "target": "152", "key": "2231", "undirected": true }, { "source": "153", "target": "242", "key": "2232", "undirected": true }, { "source": "89", "target": "79", "key": "2233", "undirected": true }, { "source": "89", "target": "141", "key": "2234", "undirected": true }, { "source": "163", "target": "162", "key": "2235", "undirected": true }, { "source": "163", "target": "79", "key": "2236", "undirected": true }, { "source": "163", "target": "164", "key": "2237", "undirected": true }, { "source": "911", "target": "307", "key": "2238", "undirected": true }, { "source": "911", "target": "912", "key": "2239", "undirected": true }, { "source": "911", "target": "309", "key": "2240", "undirected": true }, { "source": "911", "target": "913", "key": "2241", "undirected": true }, { "source": "914", "target": "253", "key": "2242", "undirected": true }, { "source": "914", "target": "53", "key": "2243", "undirected": true }, { "source": "914", "target": "79", "key": "2244", "undirected": true }, { "source": "914", "target": "65", "key": "2245", "undirected": true }, { "source": "914", "target": "104", "key": "2246", "undirected": true }, { "source": "914", "target": "915", "key": "2247", "undirected": true }, { "source": "914", "target": "251", "key": "2248", "undirected": true }, { "source": "914", "target": "50", "key": "2249", "undirected": true }, { "source": "914", "target": "109", "key": "2250", "undirected": true }, { "source": "106", "target": "53", "key": "2251", "undirected": true }, { "source": "916", "target": "96", "key": "2252", "undirected": true }, { "source": "917", "target": "76", "key": "2253", "undirected": true }, { "source": "917", "target": "453", "key": "2254", "undirected": true }, { "source": "918", "target": "53", "key": "2255", "undirected": true }, { "source": "918", "target": "65", "key": "2256", "undirected": true }, { "source": "918", "target": "104", "key": "2257", "undirected": true }, { "source": "918", "target": "915", "key": "2258", "undirected": true }, { "source": "918", "target": "781", "key": "2259", "undirected": true }, { "source": "918", "target": "919", "key": "2260", "undirected": true }, { "source": "918", "target": "458", "key": "2261", "undirected": true }, { "source": "920", "target": "646", "key": "2262", "undirected": true }, { "source": "920", "target": "777", "key": "2263", "undirected": true }, { "source": "921", "target": "883", "key": "2264", "undirected": true }, { "source": "921", "target": "858", "key": "2265", "undirected": true }, { "source": "921", "target": "155", "key": "2266", "undirected": true }, { "source": "921", "target": "152", "key": "2267", "undirected": true }, { "source": "921", "target": "498", "key": "2268", "undirected": true }, { "source": "921", "target": "153", "key": "2269", "undirected": true }, { "source": "921", "target": "120", "key": "2270", "undirected": true }, { "source": "922", "target": "90", "key": "2271", "undirected": true }, { "source": "922", "target": "91", "key": "2272", "undirected": true }, { "source": "922", "target": "897", "key": "2273", "undirected": true }, { "source": "923", "target": "110", "key": "2274", "undirected": true }, { "source": "923", "target": "924", "key": "2275", "undirected": true }, { "source": "452", "target": "65", "key": "2276", "undirected": true }, { "source": "452", "target": "93", "key": "2277", "undirected": true }, { "source": "452", "target": "50", "key": "2278", "undirected": true }, { "source": "452", "target": "451", "key": "2279", "undirected": true }, { "source": "452", "target": "53", "key": "2280", "undirected": true }, { "source": "452", "target": "79", "key": "2281", "undirected": true }, { "source": "452", "target": "549", "key": "2282", "undirected": true }, { "source": "925", "target": "53", "key": "2283", "undirected": true }, { "source": "925", "target": "65", "key": "2284", "undirected": true }, { "source": "925", "target": "119", "key": "2285", "undirected": true }, { "source": "925", "target": "287", "key": "2286", "undirected": true }, { "source": "925", "target": "552", "key": "2287", "undirected": true }, { "source": "925", "target": "50", "key": "2288", "undirected": true }, { "source": "865", "target": "511", "key": "2289", "undirected": true }, { "source": "865", "target": "436", "key": "2290", "undirected": true }, { "source": "865", "target": "926", "key": "2291", "undirected": true }, { "source": "865", "target": "287", "key": "2292", "undirected": true }, { "source": "865", "target": "262", "key": "2293", "undirected": true }, { "source": "927", "target": "79", "key": "2294", "undirected": true }, { "source": "927", "target": "650", "key": "2295", "undirected": true }, { "source": "927", "target": "150", "key": "2296", "undirected": true }, { "source": "927", "target": "928", "key": "2297", "undirected": true }, { "source": "929", "target": "930", "key": "2298", "undirected": true }, { "source": "929", "target": "736", "key": "2299", "undirected": true }, { "source": "929", "target": "68", "key": "2300", "undirected": true }, { "source": "929", "target": "25", "key": "2301", "undirected": true }, { "source": "929", "target": "53", "key": "2302", "undirected": true }, { "source": "929", "target": "779", "key": "2303", "undirected": true }, { "source": "929", "target": "154", "key": "2304", "undirected": true }, { "source": "929", "target": "27", "key": "2305", "undirected": true }, { "source": "929", "target": "120", "key": "2306", "undirected": true }, { "source": "929", "target": "109", "key": "2307", "undirected": true }, { "source": "931", "target": "480", "key": "2308", "undirected": true }, { "source": "931", "target": "61", "key": "2309", "undirected": true }, { "source": "931", "target": "403", "key": "2310", "undirected": true }, { "source": "931", "target": "932", "key": "2311", "undirected": true }, { "source": "931", "target": "170", "key": "2312", "undirected": true }, { "source": "931", "target": "287", "key": "2313", "undirected": true }, { "source": "931", "target": "147", "key": "2314", "undirected": true }, { "source": "933", "target": "650", "key": "2315", "undirected": true }, { "source": "933", "target": "607", "key": "2316", "undirected": true }, { "source": "933", "target": "934", "key": "2317", "undirected": true }, { "source": "115", "target": "363", "key": "2318", "undirected": true }, { "source": "115", "target": "364", "key": "2319", "undirected": true }, { "source": "115", "target": "373", "key": "2320", "undirected": true }, { "source": "115", "target": "113", "key": "2321", "undirected": true }, { "source": "115", "target": "116", "key": "2322", "undirected": true }, { "source": "115", "target": "112", "key": "2323", "undirected": true }, { "source": "915", "target": "883", "key": "2324", "undirected": true }, { "source": "915", "target": "935", "key": "2325", "undirected": true }, { "source": "915", "target": "458", "key": "2326", "undirected": true }, { "source": "915", "target": "697", "key": "2327", "undirected": true }, { "source": "936", "target": "498", "key": "2328", "undirected": true }, { "source": "936", "target": "167", "key": "2329", "undirected": true }, { "source": "936", "target": "469", "key": "2330", "undirected": true }, { "source": "936", "target": "883", "key": "2331", "undirected": true }, { "source": "107", "target": "53", "key": "2332", "undirected": true }, { "source": "107", "target": "50", "key": "2333", "undirected": true }, { "source": "167", "target": "68", "key": "2334", "undirected": true }, { "source": "167", "target": "53", "key": "2335", "undirected": true }, { "source": "167", "target": "65", "key": "2336", "undirected": true }, { "source": "167", "target": "334", "key": "2337", "undirected": true }, { "source": "167", "target": "50", "key": "2338", "undirected": true }, { "source": "167", "target": "698", "key": "2339", "undirected": true }, { "source": "937", "target": "698", "key": "2340", "undirected": true }, { "source": "937", "target": "167", "key": "2341", "undirected": true }, { "source": "937", "target": "938", "key": "2342", "undirected": true }, { "source": "937", "target": "469", "key": "2343", "undirected": true }, { "source": "937", "target": "458", "key": "2344", "undirected": true }, { "source": "939", "target": "68", "key": "2345", "undirected": true }, { "source": "939", "target": "466", "key": "2346", "undirected": true }, { "source": "939", "target": "53", "key": "2347", "undirected": true }, { "source": "939", "target": "107", "key": "2348", "undirected": true }, { "source": "939", "target": "167", "key": "2349", "undirected": true }, { "source": "939", "target": "937", "key": "2350", "undirected": true }, { "source": "939", "target": "467", "key": "2351", "undirected": true }, { "source": "127", "target": "111", "key": "2352", "undirected": true }, { "source": "127", "target": "812", "key": "2353", "undirected": true }, { "source": "940", "target": "1", "key": "2354", "undirected": true }, { "source": "940", "target": "941", "key": "2355", "undirected": true }, { "source": "942", "target": "76", "key": "2356", "undirected": true }, { "source": "943", "target": "169", "key": "2357", "undirected": true }, { "source": "943", "target": "498", "key": "2358", "undirected": true }, { "source": "943", "target": "857", "key": "2359", "undirected": true }, { "source": "943", "target": "120", "key": "2360", "undirected": true }, { "source": "944", "target": "53", "key": "2361", "undirected": true }, { "source": "944", "target": "715", "key": "2362", "undirected": true }, { "source": "944", "target": "607", "key": "2363", "undirected": true }, { "source": "944", "target": "339", "key": "2364", "undirected": true }, { "source": "944", "target": "48", "key": "2365", "undirected": true }, { "source": "944", "target": "502", "key": "2366", "undirected": true }, { "source": "944", "target": "49", "key": "2367", "undirected": true }, { "source": "944", "target": "484", "key": "2368", "undirected": true }, { "source": "944", "target": "109", "key": "2369", "undirected": true }, { "source": "945", "target": "1", "key": "2370", "undirected": true }, { "source": "945", "target": "170", "key": "2371", "undirected": true }, { "source": "576", "target": "107", "key": "2372", "undirected": true }, { "source": "576", "target": "120", "key": "2373", "undirected": true }, { "source": "576", "target": "582", "key": "2374", "undirected": true }, { "source": "946", "target": "95", "key": "2375", "undirected": true }, { "source": "946", "target": "76", "key": "2376", "undirected": true }, { "source": "946", "target": "96", "key": "2377", "undirected": true }, { "source": "946", "target": "947", "key": "2378", "undirected": true }, { "source": "946", "target": "250", "key": "2379", "undirected": true }, { "source": "946", "target": "948", "key": "2380", "undirected": true }, { "source": "946", "target": "883", "key": "2381", "undirected": true }, { "source": "926", "target": "436", "key": "2382", "undirected": true }, { "source": "926", "target": "262", "key": "2383", "undirected": true }, { "source": "926", "target": "698", "key": "2384", "undirected": true }, { "source": "926", "target": "76", "key": "2385", "undirected": true }, { "source": "400", "target": "133", "key": "2386", "undirected": true }, { "source": "400", "target": "570", "key": "2387", "undirected": true }, { "source": "400", "target": "136", "key": "2388", "undirected": true }, { "source": "400", "target": "137", "key": "2389", "undirected": true }, { "source": "388", "target": "20", "key": "2390", "undirected": true }, { "source": "388", "target": "537", "key": "2391", "undirected": true }, { "source": "388", "target": "896", "key": "2392", "undirected": true }, { "source": "388", "target": "533", "key": "2393", "undirected": true }, { "source": "949", "target": "208", "key": "2394", "undirected": true }, { "source": "949", "target": "204", "key": "2395", "undirected": true }, { "source": "949", "target": "1", "key": "2396", "undirected": true }, { "source": "950", "target": "79", "key": "2397", "undirected": true }, { "source": "950", "target": "208", "key": "2398", "undirected": true }, { "source": "136", "target": "752", "key": "2399", "undirected": true }, { "source": "947", "target": "26", "key": "2400", "undirected": true }, { "source": "947", "target": "155", "key": "2401", "undirected": true }, { "source": "951", "target": "457", "key": "2402", "undirected": true }, { "source": "951", "target": "431", "key": "2403", "undirected": true }, { "source": "951", "target": "408", "key": "2404", "undirected": true }, { "source": "951", "target": "53", "key": "2405", "undirected": true }, { "source": "951", "target": "455", "key": "2406", "undirected": true }, { "source": "951", "target": "65", "key": "2407", "undirected": true }, { "source": "951", "target": "287", "key": "2408", "undirected": true }, { "source": "952", "target": "348", "key": "2409", "undirected": true }, { "source": "952", "target": "349", "key": "2410", "undirected": true }, { "source": "953", "target": "76", "key": "2411", "undirected": true }, { "source": "953", "target": "952", "key": "2412", "undirected": true }, { "source": "953", "target": "954", "key": "2413", "undirected": true }, { "source": "953", "target": "1", "key": "2414", "undirected": true }, { "source": "953", "target": "661", "key": "2415", "undirected": true }, { "source": "955", "target": "324", "key": "2416", "undirected": true }, { "source": "955", "target": "48", "key": "2417", "undirected": true }, { "source": "955", "target": "502", "key": "2418", "undirected": true }, { "source": "955", "target": "49", "key": "2419", "undirected": true }, { "source": "955", "target": "279", "key": "2420", "undirected": true }, { "source": "955", "target": "280", "key": "2421", "undirected": true }, { "source": "955", "target": "335", "key": "2422", "undirected": true }, { "source": "955", "target": "956", "key": "2423", "undirected": true }, { "source": "955", "target": "444", "key": "2424", "undirected": true }, { "source": "957", "target": "958", "key": "2425", "undirected": true }, { "source": "957", "target": "959", "key": "2426", "undirected": true }, { "source": "957", "target": "960", "key": "2427", "undirected": true }, { "source": "957", "target": "961", "key": "2428", "undirected": true }, { "source": "957", "target": "48", "key": "2429", "undirected": true }, { "source": "957", "target": "502", "key": "2430", "undirected": true }, { "source": "957", "target": "962", "key": "2431", "undirected": true }, { "source": "963", "target": "571", "key": "2432", "undirected": true }, { "source": "154", "target": "152", "key": "2433", "undirected": true }, { "source": "964", "target": "95", "key": "2434", "undirected": true }, { "source": "964", "target": "175", "key": "2435", "undirected": true }, { "source": "964", "target": "96", "key": "2436", "undirected": true }, { "source": "964", "target": "101", "key": "2437", "undirected": true }, { "source": "964", "target": "882", "key": "2438", "undirected": true }, { "source": "964", "target": "109", "key": "2439", "undirected": true }, { "source": "965", "target": "95", "key": "2440", "undirected": true }, { "source": "965", "target": "96", "key": "2441", "undirected": true }, { "source": "965", "target": "964", "key": "2442", "undirected": true }, { "source": "965", "target": "109", "key": "2443", "undirected": true }, { "source": "965", "target": "82", "key": "2444", "undirected": true }, { "source": "841", "target": "48", "key": "2445", "undirected": true }, { "source": "841", "target": "49", "key": "2446", "undirected": true }, { "source": "841", "target": "513", "key": "2447", "undirected": true }, { "source": "841", "target": "51", "key": "2448", "undirected": true }, { "source": "841", "target": "966", "key": "2449", "undirected": true }, { "source": "841", "target": "259", "key": "2450", "undirected": true }, { "source": "841", "target": "967", "key": "2451", "undirected": true }, { "source": "838", "target": "259", "key": "2452", "undirected": true }, { "source": "838", "target": "281", "key": "2453", "undirected": true }, { "source": "838", "target": "48", "key": "2454", "undirected": true }, { "source": "838", "target": "49", "key": "2455", "undirected": true }, { "source": "838", "target": "513", "key": "2456", "undirected": true }, { "source": "838", "target": "51", "key": "2457", "undirected": true }, { "source": "968", "target": "272", "key": "2458", "undirected": true }, { "source": "968", "target": "37", "key": "2459", "undirected": true }, { "source": "535", "target": "364", "key": "2460", "undirected": true }, { "source": "535", "target": "532", "key": "2461", "undirected": true }, { "source": "535", "target": "543", "key": "2462", "undirected": true }, { "source": "535", "target": "335", "key": "2463", "undirected": true }, { "source": "535", "target": "536", "key": "2464", "undirected": true }, { "source": "535", "target": "537", "key": "2465", "undirected": true }, { "source": "535", "target": "533", "key": "2466", "undirected": true }, { "source": "969", "target": "85", "key": "2467", "undirected": true }, { "source": "969", "target": "444", "key": "2468", "undirected": true }, { "source": "969", "target": "970", "key": "2469", "undirected": true }, { "source": "969", "target": "48", "key": "2470", "undirected": true }, { "source": "971", "target": "311", "key": "2471", "undirected": true }, { "source": "971", "target": "224", "key": "2472", "undirected": true }, { "source": "971", "target": "972", "key": "2473", "undirected": true }, { "source": "971", "target": "185", "key": "2474", "undirected": true }, { "source": "971", "target": "296", "key": "2475", "undirected": true }, { "source": "973", "target": "79", "key": "2476", "undirected": true }, { "source": "973", "target": "974", "key": "2477", "undirected": true }, { "source": "973", "target": "1", "key": "2478", "undirected": true }, { "source": "938", "target": "165", "key": "2479", "undirected": true }, { "source": "938", "target": "53", "key": "2480", "undirected": true }, { "source": "938", "target": "167", "key": "2481", "undirected": true }, { "source": "938", "target": "975", "key": "2482", "undirected": true }, { "source": "938", "target": "976", "key": "2483", "undirected": true }, { "source": "975", "target": "53", "key": "2484", "undirected": true }, { "source": "975", "target": "696", "key": "2485", "undirected": true }, { "source": "975", "target": "167", "key": "2486", "undirected": true }, { "source": "975", "target": "938", "key": "2487", "undirected": true }, { "source": "975", "target": "510", "key": "2488", "undirected": true }, { "source": "975", "target": "68", "key": "2489", "undirected": true }, { "source": "70", "target": "72", "key": "2490", "undirected": true }, { "source": "70", "target": "73", "key": "2491", "undirected": true }, { "source": "70", "target": "74", "key": "2492", "undirected": true }, { "source": "977", "target": "46", "key": "2493", "undirected": true }, { "source": "977", "target": "48", "key": "2494", "undirected": true }, { "source": "977", "target": "82", "key": "2495", "undirected": true }, { "source": "977", "target": "279", "key": "2496", "undirected": true }, { "source": "977", "target": "432", "key": "2497", "undirected": true }, { "source": "977", "target": "61", "key": "2498", "undirected": true }, { "source": "977", "target": "570", "key": "2499", "undirected": true }, { "source": "977", "target": "937", "key": "2500", "undirected": true }, { "source": "486", "target": "313", "key": "2501", "undirected": true }, { "source": "978", "target": "310", "key": "2502", "undirected": true }, { "source": "978", "target": "979", "key": "2503", "undirected": true }, { "source": "978", "target": "182", "key": "2504", "undirected": true }, { "source": "530", "target": "529", "key": "2505", "undirected": true }, { "source": "980", "target": "365", "key": "2506", "undirected": true }, { "source": "980", "target": "65", "key": "2507", "undirected": true }, { "source": "980", "target": "916", "key": "2508", "undirected": true }, { "source": "980", "target": "67", "key": "2509", "undirected": true }, { "source": "18", "target": "981", "key": "2510", "undirected": true }, { "source": "982", "target": "439", "key": "2511", "undirected": true }, { "source": "982", "target": "250", "key": "2512", "undirected": true }, { "source": "982", "target": "983", "key": "2513", "undirected": true }, { "source": "984", "target": "127", "key": "2514", "undirected": true }, { "source": "984", "target": "985", "key": "2515", "undirected": true }, { "source": "984", "target": "986", "key": "2516", "undirected": true }, { "source": "984", "target": "987", "key": "2517", "undirected": true }, { "source": "984", "target": "765", "key": "2518", "undirected": true }, { "source": "984", "target": "82", "key": "2519", "undirected": true }, { "source": "986", "target": "985", "key": "2520", "undirected": true }, { "source": "988", "target": "292", "key": "2521", "undirected": true }, { "source": "988", "target": "316", "key": "2522", "undirected": true }, { "source": "488", "target": "150", "key": "2523", "undirected": true }, { "source": "190", "target": "192", "key": "2524", "undirected": true }, { "source": "190", "target": "187", "key": "2525", "undirected": true }, { "source": "190", "target": "188", "key": "2526", "undirected": true }, { "source": "190", "target": "191", "key": "2527", "undirected": true }, { "source": "989", "target": "192", "key": "2528", "undirected": true }, { "source": "990", "target": "905", "key": "2529", "undirected": true }, { "source": "990", "target": "950", "key": "2530", "undirected": true }, { "source": "990", "target": "991", "key": "2531", "undirected": true }, { "source": "992", "target": "313", "key": "2532", "undirected": true }, { "source": "992", "target": "993", "key": "2533", "undirected": true }, { "source": "992", "target": "994", "key": "2534", "undirected": true }, { "source": "992", "target": "995", "key": "2535", "undirected": true }, { "source": "992", "target": "996", "key": "2536", "undirected": true }, { "source": "992", "target": "997", "key": "2537", "undirected": true }, { "source": "994", "target": "166", "key": "2538", "undirected": true }, { "source": "994", "target": "170", "key": "2539", "undirected": true }, { "source": "995", "target": "993", "key": "2540", "undirected": true }, { "source": "996", "target": "993", "key": "2541", "undirected": true }, { "source": "997", "target": "313", "key": "2542", "undirected": true }, { "source": "998", "target": "996", "key": "2543", "undirected": true }, { "source": "998", "target": "993", "key": "2544", "undirected": true }, { "source": "999", "target": "1000", "key": "2545", "undirected": true }, { "source": "1001", "target": "460", "key": "2546", "undirected": true }, { "source": "1001", "target": "607", "key": "2547", "undirected": true }, { "source": "1001", "target": "361", "key": "2548", "undirected": true }, { "source": "1001", "target": "160", "key": "2549", "undirected": true }, { "source": "1001", "target": "1002", "key": "2550", "undirected": true }, { "source": "1001", "target": "433", "key": "2551", "undirected": true }, { "source": "444", "target": "1003", "key": "2552", "undirected": true }, { "source": "444", "target": "82", "key": "2553", "undirected": true }, { "source": "893", "target": "180", "key": "2554", "undirected": true }, { "source": "893", "target": "53", "key": "2555", "undirected": true }, { "source": "893", "target": "65", "key": "2556", "undirected": true }, { "source": "893", "target": "104", "key": "2557", "undirected": true }, { "source": "893", "target": "181", "key": "2558", "undirected": true }, { "source": "893", "target": "50", "key": "2559", "undirected": true }, { "source": "893", "target": "571", "key": "2560", "undirected": true }, { "source": "893", "target": "51", "key": "2561", "undirected": true }, { "source": "1004", "target": "95", "key": "2562", "undirected": true }, { "source": "1004", "target": "216", "key": "2563", "undirected": true }, { "source": "1004", "target": "76", "key": "2564", "undirected": true }, { "source": "1004", "target": "439", "key": "2565", "undirected": true }, { "source": "1004", "target": "519", "key": "2566", "undirected": true }, { "source": "1004", "target": "444", "key": "2567", "undirected": true }, { "source": "1004", "target": "1005", "key": "2568", "undirected": true }, { "source": "1004", "target": "392", "key": "2569", "undirected": true }, { "source": "1006", "target": "233", "key": "2570", "undirected": true }, { "source": "1006", "target": "1003", "key": "2571", "undirected": true }, { "source": "1006", "target": "834", "key": "2572", "undirected": true }, { "source": "1006", "target": "82", "key": "2573", "undirected": true }, { "source": "1007", "target": "502", "key": "2574", "undirected": true }, { "source": "1007", "target": "50", "key": "2575", "undirected": true }, { "source": "1007", "target": "1008", "key": "2576", "undirected": true }, { "source": "1007", "target": "1009", "key": "2577", "undirected": true }, { "source": "1007", "target": "833", "key": "2578", "undirected": true }, { "source": "1010", "target": "1", "key": "2579", "undirected": true }, { "source": "1011", "target": "1012", "key": "2580", "undirected": true }, { "source": "1011", "target": "459", "key": "2581", "undirected": true }, { "source": "1011", "target": "408", "key": "2582", "undirected": true }, { "source": "1011", "target": "53", "key": "2583", "undirected": true }, { "source": "1011", "target": "66", "key": "2584", "undirected": true }, { "source": "1011", "target": "1013", "key": "2585", "undirected": true }, { "source": "1011", "target": "1014", "key": "2586", "undirected": true }, { "source": "1011", "target": "1015", "key": "2587", "undirected": true }, { "source": "1016", "target": "277", "key": "2588", "undirected": true }, { "source": "1016", "target": "53", "key": "2589", "undirected": true }, { "source": "1016", "target": "65", "key": "2590", "undirected": true }, { "source": "1016", "target": "66", "key": "2591", "undirected": true }, { "source": "1016", "target": "45", "key": "2592", "undirected": true }, { "source": "1016", "target": "1017", "key": "2593", "undirected": true }, { "source": "1016", "target": "48", "key": "2594", "undirected": true }, { "source": "1016", "target": "49", "key": "2595", "undirected": true }, { "source": "1016", "target": "50", "key": "2596", "undirected": true }, { "source": "66", "target": "498", "key": "2597", "undirected": true }, { "source": "66", "target": "65", "key": "2598", "undirected": true }, { "source": "66", "target": "119", "key": "2599", "undirected": true }, { "source": "66", "target": "48", "key": "2600", "undirected": true }, { "source": "66", "target": "49", "key": "2601", "undirected": true }, { "source": "66", "target": "132", "key": "2602", "undirected": true }, { "source": "66", "target": "50", "key": "2603", "undirected": true }, { "source": "66", "target": "88", "key": "2604", "undirected": true }, { "source": "66", "target": "61", "key": "2605", "undirected": true }, { "source": "66", "target": "53", "key": "2606", "undirected": true }, { "source": "866", "target": "61", "key": "2607", "undirected": true }, { "source": "866", "target": "53", "key": "2608", "undirected": true }, { "source": "866", "target": "65", "key": "2609", "undirected": true }, { "source": "866", "target": "66", "key": "2610", "undirected": true }, { "source": "866", "target": "1018", "key": "2611", "undirected": true }, { "source": "866", "target": "50", "key": "2612", "undirected": true }, { "source": "1019", "target": "1020", "key": "2613", "undirected": true }, { "source": "1019", "target": "1021", "key": "2614", "undirected": true }, { "source": "461", "target": "68", "key": "2615", "undirected": true }, { "source": "461", "target": "459", "key": "2616", "undirected": true }, { "source": "461", "target": "53", "key": "2617", "undirected": true }, { "source": "461", "target": "591", "key": "2618", "undirected": true }, { "source": "461", "target": "118", "key": "2619", "undirected": true }, { "source": "461", "target": "64", "key": "2620", "undirected": true }, { "source": "461", "target": "65", "key": "2621", "undirected": true }, { "source": "461", "target": "50", "key": "2622", "undirected": true }, { "source": "461", "target": "108", "key": "2623", "undirected": true }, { "source": "497", "target": "109", "key": "2624", "undirected": true }, { "source": "497", "target": "166", "key": "2625", "undirected": true }, { "source": "497", "target": "53", "key": "2626", "undirected": true }, { "source": "862", "target": "772", "key": "2627", "undirected": true }, { "source": "862", "target": "118", "key": "2628", "undirected": true }, { "source": "862", "target": "504", "key": "2629", "undirected": true }, { "source": "862", "target": "568", "key": "2630", "undirected": true }, { "source": "862", "target": "554", "key": "2631", "undirected": true }, { "source": "862", "target": "708", "key": "2632", "undirected": true }, { "source": "463", "target": "177", "key": "2633", "undirected": true }, { "source": "463", "target": "79", "key": "2634", "undirected": true }, { "source": "463", "target": "549", "key": "2635", "undirected": true }, { "source": "463", "target": "906", "key": "2636", "undirected": true }, { "source": "463", "target": "1", "key": "2637", "undirected": true }, { "source": "463", "target": "430", "key": "2638", "undirected": true }, { "source": "246", "target": "68", "key": "2639", "undirected": true }, { "source": "246", "target": "915", "key": "2640", "undirected": true }, { "source": "246", "target": "1022", "key": "2641", "undirected": true }, { "source": "246", "target": "1023", "key": "2642", "undirected": true }, { "source": "1024", "target": "121", "key": "2643", "undirected": true }, { "source": "412", "target": "1", "key": "2644", "undirected": true }, { "source": "412", "target": "1025", "key": "2645", "undirected": true }, { "source": "412", "target": "429", "key": "2646", "undirected": true }, { "source": "1026", "target": "967", "key": "2647", "undirected": true }, { "source": "1026", "target": "1", "key": "2648", "undirected": true }, { "source": "1026", "target": "182", "key": "2649", "undirected": true }, { "source": "967", "target": "1", "key": "2650", "undirected": true }, { "source": "967", "target": "182", "key": "2651", "undirected": true }, { "source": "967", "target": "1027", "key": "2652", "undirected": true }, { "source": "967", "target": "1026", "key": "2653", "undirected": true }, { "source": "979", "target": "1028", "key": "2654", "undirected": true }, { "source": "979", "target": "978", "key": "2655", "undirected": true }, { "source": "979", "target": "488", "key": "2656", "undirected": true }, { "source": "979", "target": "1029", "key": "2657", "undirected": true }, { "source": "979", "target": "415", "key": "2658", "undirected": true }, { "source": "979", "target": "1030", "key": "2659", "undirected": true }, { "source": "1031", "target": "76", "key": "2660", "undirected": true }, { "source": "1031", "target": "104", "key": "2661", "undirected": true }, { "source": "3", "target": "1", "key": "2662", "undirected": true }, { "source": "1032", "target": "215", "key": "2663", "undirected": true }, { "source": "1032", "target": "82", "key": "2664", "undirected": true }, { "source": "1032", "target": "128", "key": "2665", "undirected": true }, { "source": "572", "target": "196", "key": "2666", "undirected": true }, { "source": "572", "target": "135", "key": "2667", "undirected": true }, { "source": "209", "target": "272", "key": "2668", "undirected": true }, { "source": "1033", "target": "37", "key": "2669", "undirected": true }, { "source": "1033", "target": "177", "key": "2670", "undirected": true }, { "source": "1033", "target": "209", "key": "2671", "undirected": true }, { "source": "1033", "target": "1034", "key": "2672", "undirected": true }, { "source": "1033", "target": "206", "key": "2673", "undirected": true }, { "source": "1034", "target": "209", "key": "2674", "undirected": true }, { "source": "1034", "target": "206", "key": "2675", "undirected": true }, { "source": "1034", "target": "272", "key": "2676", "undirected": true }, { "source": "205", "target": "900", "key": "2677", "undirected": true }, { "source": "629", "target": "177", "key": "2678", "undirected": true }, { "source": "629", "target": "79", "key": "2679", "undirected": true }, { "source": "629", "target": "324", "key": "2680", "undirected": true }, { "source": "629", "target": "628", "key": "2681", "undirected": true }, { "source": "1035", "target": "209", "key": "2682", "undirected": true }, { "source": "1035", "target": "1034", "key": "2683", "undirected": true }, { "source": "1035", "target": "206", "key": "2684", "undirected": true }, { "source": "1035", "target": "1036", "key": "2685", "undirected": true }, { "source": "1035", "target": "272", "key": "2686", "undirected": true }, { "source": "206", "target": "272", "key": "2687", "undirected": true }, { "source": "206", "target": "1037", "key": "2688", "undirected": true }, { "source": "206", "target": "1038", "key": "2689", "undirected": true }, { "source": "206", "target": "209", "key": "2690", "undirected": true }, { "source": "206", "target": "1039", "key": "2691", "undirected": true }, { "source": "206", "target": "1", "key": "2692", "undirected": true }, { "source": "207", "target": "37", "key": "2693", "undirected": true }, { "source": "207", "target": "1", "key": "2694", "undirected": true }, { "source": "1040", "target": "1034", "key": "2695", "undirected": true }, { "source": "1040", "target": "1039", "key": "2696", "undirected": true }, { "source": "1039", "target": "206", "key": "2697", "undirected": true }, { "source": "1039", "target": "1040", "key": "2698", "undirected": true }, { "source": "1039", "target": "1037", "key": "2699", "undirected": true }, { "source": "1041", "target": "104", "key": "2700", "undirected": true }, { "source": "1041", "target": "67", "key": "2701", "undirected": true }, { "source": "1041", "target": "1042", "key": "2702", "undirected": true }, { "source": "1041", "target": "567", "key": "2703", "undirected": true }, { "source": "1041", "target": "1043", "key": "2704", "undirected": true }, { "source": "1041", "target": "598", "key": "2705", "undirected": true }, { "source": "1041", "target": "65", "key": "2706", "undirected": true }, { "source": "67", "target": "92", "key": "2707", "undirected": true }, { "source": "67", "target": "68", "key": "2708", "undirected": true }, { "source": "67", "target": "53", "key": "2709", "undirected": true }, { "source": "67", "target": "118", "key": "2710", "undirected": true }, { "source": "67", "target": "64", "key": "2711", "undirected": true }, { "source": "67", "target": "65", "key": "2712", "undirected": true }, { "source": "67", "target": "93", "key": "2713", "undirected": true }, { "source": "67", "target": "50", "key": "2714", "undirected": true }, { "source": "1042", "target": "209", "key": "2715", "undirected": true }, { "source": "1042", "target": "567", "key": "2716", "undirected": true }, { "source": "567", "target": "131", "key": "2717", "undirected": true }, { "source": "567", "target": "1042", "key": "2718", "undirected": true }, { "source": "567", "target": "1044", "key": "2719", "undirected": true }, { "source": "567", "target": "1045", "key": "2720", "undirected": true }, { "source": "567", "target": "428", "key": "2721", "undirected": true }, { "source": "567", "target": "424", "key": "2722", "undirected": true }, { "source": "567", "target": "82", "key": "2723", "undirected": true }, { "source": "1044", "target": "428", "key": "2724", "undirected": true }, { "source": "1044", "target": "424", "key": "2725", "undirected": true }, { "source": "1044", "target": "171", "key": "2726", "undirected": true }, { "source": "1044", "target": "1046", "key": "2727", "undirected": true }, { "source": "1044", "target": "166", "key": "2728", "undirected": true }, { "source": "1044", "target": "426", "key": "2729", "undirected": true }, { "source": "1044", "target": "118", "key": "2730", "undirected": true }, { "source": "1044", "target": "1042", "key": "2731", "undirected": true }, { "source": "1045", "target": "65", "key": "2732", "undirected": true }, { "source": "1045", "target": "93", "key": "2733", "undirected": true }, { "source": "1045", "target": "104", "key": "2734", "undirected": true }, { "source": "1045", "target": "1042", "key": "2735", "undirected": true }, { "source": "1045", "target": "1047", "key": "2736", "undirected": true }, { "source": "541", "target": "703", "key": "2737", "undirected": true }, { "source": "541", "target": "704", "key": "2738", "undirected": true }, { "source": "541", "target": "539", "key": "2739", "undirected": true }, { "source": "541", "target": "701", "key": "2740", "undirected": true }, { "source": "541", "target": "540", "key": "2741", "undirected": true }, { "source": "541", "target": "702", "key": "2742", "undirected": true }, { "source": "1048", "target": "539", "key": "2743", "undirected": true }, { "source": "1048", "target": "701", "key": "2744", "undirected": true }, { "source": "1048", "target": "540", "key": "2745", "undirected": true }, { "source": "1048", "target": "702", "key": "2746", "undirected": true }, { "source": "1048", "target": "703", "key": "2747", "undirected": true }, { "source": "1048", "target": "91", "key": "2748", "undirected": true }, { "source": "1048", "target": "704", "key": "2749", "undirected": true }, { "source": "1049", "target": "82", "key": "2750", "undirected": true }, { "source": "1049", "target": "495", "key": "2751", "undirected": true }, { "source": "1049", "target": "128", "key": "2752", "undirected": true }, { "source": "1049", "target": "599", "key": "2753", "undirected": true }, { "source": "1049", "target": "567", "key": "2754", "undirected": true }, { "source": "1049", "target": "1050", "key": "2755", "undirected": true }, { "source": "1051", "target": "344", "key": "2756", "undirected": true }, { "source": "1051", "target": "437", "key": "2757", "undirected": true }, { "source": "1051", "target": "96", "key": "2758", "undirected": true }, { "source": "1051", "target": "949", "key": "2759", "undirected": true }, { "source": "1051", "target": "1042", "key": "2760", "undirected": true }, { "source": "1051", "target": "567", "key": "2761", "undirected": true }, { "source": "1051", "target": "428", "key": "2762", "undirected": true }, { "source": "1051", "target": "82", "key": "2763", "undirected": true }, { "source": "1052", "target": "205", "key": "2764", "undirected": true }, { "source": "1052", "target": "206", "key": "2765", "undirected": true }, { "source": "1052", "target": "207", "key": "2766", "undirected": true }, { "source": "1052", "target": "1053", "key": "2767", "undirected": true }, { "source": "1052", "target": "208", "key": "2768", "undirected": true }, { "source": "1052", "target": "491", "key": "2769", "undirected": true }, { "source": "1052", "target": "204", "key": "2770", "undirected": true }, { "source": "1052", "target": "209", "key": "2771", "undirected": true }, { "source": "1054", "target": "79", "key": "2772", "undirected": true }, { "source": "1054", "target": "718", "key": "2773", "undirected": true }, { "source": "1054", "target": "1055", "key": "2774", "undirected": true }, { "source": "1054", "target": "908", "key": "2775", "undirected": true }, { "source": "1054", "target": "1", "key": "2776", "undirected": true }, { "source": "1056", "target": "1057", "key": "2777", "undirected": true }, { "source": "1056", "target": "479", "key": "2778", "undirected": true }, { "source": "1058", "target": "1059", "key": "2779", "undirected": true }, { "source": "781", "target": "68", "key": "2780", "undirected": true }, { "source": "781", "target": "53", "key": "2781", "undirected": true }, { "source": "781", "target": "65", "key": "2782", "undirected": true }, { "source": "781", "target": "131", "key": "2783", "undirected": true }, { "source": "781", "target": "104", "key": "2784", "undirected": true }, { "source": "781", "target": "924", "key": "2785", "undirected": true }, { "source": "781", "target": "50", "key": "2786", "undirected": true }, { "source": "781", "target": "109", "key": "2787", "undirected": true }, { "source": "662", "target": "663", "key": "2788", "undirected": true }, { "source": "663", "target": "662", "key": "2789", "undirected": true }, { "source": "663", "target": "888", "key": "2790", "undirected": true }, { "source": "776", "target": "1060", "key": "2791", "undirected": true }, { "source": "1061", "target": "1062", "key": "2792", "undirected": true }, { "source": "1061", "target": "1063", "key": "2793", "undirected": true }, { "source": "1064", "target": "1062", "key": "2794", "undirected": true }, { "source": "1064", "target": "1063", "key": "2795", "undirected": true }, { "source": "1065", "target": "751", "key": "2796", "undirected": true }, { "source": "1065", "target": "1064", "key": "2797", "undirected": true }, { "source": "1065", "target": "1062", "key": "2798", "undirected": true }, { "source": "1065", "target": "479", "key": "2799", "undirected": true }, { "source": "1065", "target": "1063", "key": "2800", "undirected": true }, { "source": "1066", "target": "79", "key": "2801", "undirected": true }, { "source": "1066", "target": "1065", "key": "2802", "undirected": true }, { "source": "1066", "target": "1062", "key": "2803", "undirected": true }, { "source": "1066", "target": "479", "key": "2804", "undirected": true }, { "source": "1067", "target": "1062", "key": "2805", "undirected": true }, { "source": "1067", "target": "1063", "key": "2806", "undirected": true }, { "source": "1068", "target": "1064", "key": "2807", "undirected": true }, { "source": "1069", "target": "1062", "key": "2808", "undirected": true }, { "source": "1069", "target": "1063", "key": "2809", "undirected": true }, { "source": "958", "target": "959", "key": "2810", "undirected": true }, { "source": "958", "target": "960", "key": "2811", "undirected": true }, { "source": "958", "target": "961", "key": "2812", "undirected": true }, { "source": "958", "target": "48", "key": "2813", "undirected": true }, { "source": "958", "target": "962", "key": "2814", "undirected": true }, { "source": "614", "target": "324", "key": "2815", "undirected": true }, { "source": "324", "target": "211", "key": "2816", "undirected": true }, { "source": "324", "target": "150", "key": "2817", "undirected": true }, { "source": "1070", "target": "436", "key": "2818", "undirected": true }, { "source": "1070", "target": "109", "key": "2819", "undirected": true }, { "source": "1070", "target": "732", "key": "2820", "undirected": true }, { "source": "1070", "target": "262", "key": "2821", "undirected": true }, { "source": "445", "target": "911", "key": "2822", "undirected": true }, { "source": "445", "target": "225", "key": "2823", "undirected": true }, { "source": "224", "target": "223", "key": "2824", "undirected": true }, { "source": "224", "target": "445", "key": "2825", "undirected": true }, { "source": "224", "target": "724", "key": "2826", "undirected": true }, { "source": "224", "target": "225", "key": "2827", "undirected": true }, { "source": "724", "target": "224", "key": "2828", "undirected": true }, { "source": "724", "target": "5", "key": "2829", "undirected": true }, { "source": "724", "target": "79", "key": "2830", "undirected": true }, { "source": "724", "target": "211", "key": "2831", "undirected": true }, { "source": "1071", "target": "1072", "key": "2832", "undirected": true }, { "source": "1071", "target": "1073", "key": "2833", "undirected": true }, { "source": "1071", "target": "1074", "key": "2834", "undirected": true }, { "source": "1071", "target": "1075", "key": "2835", "undirected": true }, { "source": "1071", "target": "1076", "key": "2836", "undirected": true }, { "source": "1071", "target": "262", "key": "2837", "undirected": true }, { "source": "1073", "target": "662", "key": "2838", "undirected": true }, { "source": "1073", "target": "1074", "key": "2839", "undirected": true }, { "source": "1073", "target": "262", "key": "2840", "undirected": true }, { "source": "1074", "target": "1077", "key": "2841", "undirected": true }, { "source": "1074", "target": "1078", "key": "2842", "undirected": true }, { "source": "1074", "target": "1076", "key": "2843", "undirected": true }, { "source": "1074", "target": "262", "key": "2844", "undirected": true }, { "source": "1074", "target": "1079", "key": "2845", "undirected": true }, { "source": "1074", "target": "224", "key": "2846", "undirected": true }, { "source": "1074", "target": "1073", "key": "2847", "undirected": true }, { "source": "1080", "target": "301", "key": "2848", "undirected": true }, { "source": "1080", "target": "294", "key": "2849", "undirected": true }, { "source": "1080", "target": "1", "key": "2850", "undirected": true }, { "source": "1081", "target": "477", "key": "2851", "undirected": true }, { "source": "1081", "target": "476", "key": "2852", "undirected": true }, { "source": "1081", "target": "465", "key": "2853", "undirected": true }, { "source": "1081", "target": "79", "key": "2854", "undirected": true }, { "source": "1081", "target": "361", "key": "2855", "undirected": true }, { "source": "1081", "target": "368", "key": "2856", "undirected": true }, { "source": "912", "target": "307", "key": "2857", "undirected": true }, { "source": "912", "target": "653", "key": "2858", "undirected": true }, { "source": "912", "target": "309", "key": "2859", "undirected": true }, { "source": "912", "target": "367", "key": "2860", "undirected": true }, { "source": "912", "target": "1082", "key": "2861", "undirected": true }, { "source": "653", "target": "652", "key": "2862", "undirected": true }, { "source": "653", "target": "911", "key": "2863", "undirected": true }, { "source": "653", "target": "1083", "key": "2864", "undirected": true }, { "source": "653", "target": "1082", "key": "2865", "undirected": true }, { "source": "1084", "target": "51", "key": "2866", "undirected": true }, { "source": "1084", "target": "53", "key": "2867", "undirected": true }, { "source": "1084", "target": "259", "key": "2868", "undirected": true }, { "source": "1084", "target": "397", "key": "2869", "undirected": true }, { "source": "708", "target": "707", "key": "2870", "undirected": true }, { "source": "708", "target": "769", "key": "2871", "undirected": true }, { "source": "708", "target": "504", "key": "2872", "undirected": true }, { "source": "708", "target": "568", "key": "2873", "undirected": true }, { "source": "708", "target": "768", "key": "2874", "undirected": true }, { "source": "831", "target": "1085", "key": "2875", "undirected": true }, { "source": "831", "target": "76", "key": "2876", "undirected": true }, { "source": "101", "target": "109", "key": "2877", "undirected": true }, { "source": "26", "target": "23", "key": "2878", "undirected": true }, { "source": "26", "target": "76", "key": "2879", "undirected": true }, { "source": "26", "target": "253", "key": "2880", "undirected": true }, { "source": "26", "target": "25", "key": "2881", "undirected": true }, { "source": "26", "target": "947", "key": "2882", "undirected": true }, { "source": "882", "target": "253", "key": "2883", "undirected": true }, { "source": "882", "target": "96", "key": "2884", "undirected": true }, { "source": "882", "target": "708", "key": "2885", "undirected": true }, { "source": "882", "target": "101", "key": "2886", "undirected": true }, { "source": "882", "target": "109", "key": "2887", "undirected": true }, { "source": "1086", "target": "1087", "key": "2888", "undirected": true }, { "source": "1086", "target": "50", "key": "2889", "undirected": true }, { "source": "1086", "target": "68", "key": "2890", "undirected": true }, { "source": "1086", "target": "53", "key": "2891", "undirected": true }, { "source": "1086", "target": "65", "key": "2892", "undirected": true }, { "source": "1086", "target": "635", "key": "2893", "undirected": true }, { "source": "1086", "target": "132", "key": "2894", "undirected": true }, { "source": "1086", "target": "105", "key": "2895", "undirected": true }, { "source": "782", "target": "175", "key": "2896", "undirected": true }, { "source": "605", "target": "204", "key": "2897", "undirected": true }, { "source": "605", "target": "567", "key": "2898", "undirected": true }, { "source": "605", "target": "606", "key": "2899", "undirected": true }, { "source": "605", "target": "428", "key": "2900", "undirected": true }, { "source": "605", "target": "1050", "key": "2901", "undirected": true }, { "source": "605", "target": "1046", "key": "2902", "undirected": true }, { "source": "605", "target": "495", "key": "2903", "undirected": true }, { "source": "1088", "target": "146", "key": "2904", "undirected": true }, { "source": "1088", "target": "1090", "key": "2905", "undirected": true }, { "source": "1091", "target": "68", "key": "2906", "undirected": true }, { "source": "1091", "target": "61", "key": "2907", "undirected": true }, { "source": "1091", "target": "408", "key": "2908", "undirected": true }, { "source": "1091", "target": "53", "key": "2909", "undirected": true }, { "source": "1091", "target": "498", "key": "2910", "undirected": true }, { "source": "1091", "target": "65", "key": "2911", "undirected": true }, { "source": "1091", "target": "66", "key": "2912", "undirected": true }, { "source": "1091", "target": "119", "key": "2913", "undirected": true }, { "source": "1091", "target": "50", "key": "2914", "undirected": true }, { "source": "1091", "target": "51", "key": "2915", "undirected": true }, { "source": "1092", "target": "224", "key": "2916", "undirected": true }, { "source": "1092", "target": "48", "key": "2917", "undirected": true }, { "source": "1092", "target": "409", "key": "2918", "undirected": true }, { "source": "1092", "target": "49", "key": "2919", "undirected": true }, { "source": "1092", "target": "50", "key": "2920", "undirected": true }, { "source": "1092", "target": "61", "key": "2921", "undirected": true }, { "source": "1092", "target": "53", "key": "2922", "undirected": true }, { "source": "1092", "target": "66", "key": "2923", "undirected": true }, { "source": "405", "target": "50", "key": "2924", "undirected": true }, { "source": "405", "target": "51", "key": "2925", "undirected": true }, { "source": "405", "target": "280", "key": "2926", "undirected": true }, { "source": "405", "target": "335", "key": "2927", "undirected": true }, { "source": "405", "target": "411", "key": "2928", "undirected": true }, { "source": "405", "target": "66", "key": "2929", "undirected": true }, { "source": "405", "target": "397", "key": "2930", "undirected": true }, { "source": "405", "target": "48", "key": "2931", "undirected": true }, { "source": "405", "target": "200", "key": "2932", "undirected": true }, { "source": "405", "target": "49", "key": "2933", "undirected": true }, { "source": "1093", "target": "79", "key": "2934", "undirected": true }, { "source": "1093", "target": "312", "key": "2935", "undirected": true }, { "source": "1094", "target": "312", "key": "2936", "undirected": true }, { "source": "1095", "target": "312", "key": "2937", "undirected": true }, { "source": "1095", "target": "313", "key": "2938", "undirected": true }, { "source": "1096", "target": "148", "key": "2939", "undirected": true }, { "source": "1096", "target": "324", "key": "2940", "undirected": true }, { "source": "1096", "target": "1094", "key": "2941", "undirected": true }, { "source": "1096", "target": "1097", "key": "2942", "undirected": true }, { "source": "1098", "target": "1094", "key": "2943", "undirected": true }, { "source": "1098", "target": "626", "key": "2944", "undirected": true }, { "source": "1098", "target": "312", "key": "2945", "undirected": true }, { "source": "1098", "target": "79", "key": "2946", "undirected": true }, { "source": "1099", "target": "79", "key": "2947", "undirected": true }, { "source": "1099", "target": "1094", "key": "2948", "undirected": true }, { "source": "1099", "target": "312", "key": "2949", "undirected": true }, { "source": "1099", "target": "313", "key": "2950", "undirected": true }, { "source": "1097", "target": "324", "key": "2951", "undirected": true }, { "source": "1097", "target": "1094", "key": "2952", "undirected": true }, { "source": "1097", "target": "312", "key": "2953", "undirected": true }, { "source": "1100", "target": "1093", "key": "2954", "undirected": true }, { "source": "1101", "target": "1094", "key": "2955", "undirected": true }, { "source": "1101", "target": "1098", "key": "2956", "undirected": true }, { "source": "1101", "target": "1100", "key": "2957", "undirected": true }, { "source": "1101", "target": "312", "key": "2958", "undirected": true }, { "source": "1101", "target": "1102", "key": "2959", "undirected": true }, { "source": "1101", "target": "79", "key": "2960", "undirected": true }, { "source": "1101", "target": "1093", "key": "2961", "undirected": true }, { "source": "793", "target": "61", "key": "2962", "undirected": true }, { "source": "793", "target": "53", "key": "2963", "undirected": true }, { "source": "793", "target": "863", "key": "2964", "undirected": true }, { "source": "793", "target": "170", "key": "2965", "undirected": true }, { "source": "1103", "target": "79", "key": "2966", "undirected": true }, { "source": "1104", "target": "79", "key": "2967", "undirected": true }, { "source": "1104", "target": "224", "key": "2968", "undirected": true }, { "source": "1104", "target": "638", "key": "2969", "undirected": true }, { "source": "1104", "target": "626", "key": "2970", "undirected": true }, { "source": "1104", "target": "286", "key": "2971", "undirected": true }, { "source": "1104", "target": "262", "key": "2972", "undirected": true }, { "source": "1104", "target": "408", "key": "2973", "undirected": true }, { "source": "1104", "target": "177", "key": "2974", "undirected": true }, { "source": "1104", "target": "62", "key": "2975", "undirected": true }, { "source": "1105", "target": "68", "key": "2976", "undirected": true }, { "source": "1105", "target": "468", "key": "2977", "undirected": true }, { "source": "1105", "target": "53", "key": "2978", "undirected": true }, { "source": "1105", "target": "1106", "key": "2979", "undirected": true }, { "source": "1105", "target": "51", "key": "2980", "undirected": true }, { "source": "1105", "target": "511", "key": "2981", "undirected": true }, { "source": "1107", "target": "62", "key": "2982", "undirected": true }, { "source": "1107", "target": "53", "key": "2983", "undirected": true }, { "source": "1107", "target": "65", "key": "2984", "undirected": true }, { "source": "1107", "target": "66", "key": "2985", "undirected": true }, { "source": "1107", "target": "1015", "key": "2986", "undirected": true }, { "source": "1107", "target": "513", "key": "2987", "undirected": true }, { "source": "1107", "target": "50", "key": "2988", "undirected": true }, { "source": "1107", "target": "108", "key": "2989", "undirected": true }, { "source": "1107", "target": "61", "key": "2990", "undirected": true }, { "source": "27", "target": "25", "key": "2991", "undirected": true }, { "source": "27", "target": "428", "key": "2992", "undirected": true }, { "source": "1108", "target": "74", "key": "2993", "undirected": true }, { "source": "1108", "target": "463", "key": "2994", "undirected": true }, { "source": "1108", "target": "300", "key": "2995", "undirected": true }, { "source": "1108", "target": "177", "key": "2996", "undirected": true }, { "source": "1108", "target": "79", "key": "2997", "undirected": true }, { "source": "1108", "target": "73", "key": "2998", "undirected": true }, { "source": "1109", "target": "465", "key": "2999", "undirected": true }, { "source": "1109", "target": "177", "key": "3000", "undirected": true }, { "source": "1109", "target": "79", "key": "3001", "undirected": true }, { "source": "1109", "target": "463", "key": "3002", "undirected": true }, { "source": "368", "target": "177", "key": "3003", "undirected": true }, { "source": "368", "target": "79", "key": "3004", "undirected": true }, { "source": "368", "target": "361", "key": "3005", "undirected": true }, { "source": "368", "target": "300", "key": "3006", "undirected": true }, { "source": "300", "target": "299", "key": "3007", "undirected": true }, { "source": "300", "target": "463", "key": "3008", "undirected": true }, { "source": "300", "target": "177", "key": "3009", "undirected": true }, { "source": "1110", "target": "500", "key": "3010", "undirected": true }, { "source": "1110", "target": "1111", "key": "3011", "undirected": true }, { "source": "1112", "target": "136", "key": "3012", "undirected": true }, { "source": "1112", "target": "137", "key": "3013", "undirected": true }, { "source": "1113", "target": "79", "key": "3014", "undirected": true }, { "source": "1060", "target": "1114", "key": "3015", "undirected": true }, { "source": "1060", "target": "1115", "key": "3016", "undirected": true }, { "source": "1060", "target": "1116", "key": "3017", "undirected": true }, { "source": "1117", "target": "300", "key": "3018", "undirected": true }, { "source": "1117", "target": "177", "key": "3019", "undirected": true }, { "source": "1117", "target": "79", "key": "3020", "undirected": true }, { "source": "1117", "target": "894", "key": "3021", "undirected": true }, { "source": "1118", "target": "166", "key": "3022", "undirected": true }, { "source": "1013", "target": "177", "key": "3023", "undirected": true }, { "source": "1013", "target": "79", "key": "3024", "undirected": true }, { "source": "1013", "target": "1014", "key": "3025", "undirected": true }, { "source": "1013", "target": "1", "key": "3026", "undirected": true }, { "source": "789", "target": "798", "key": "3027", "undirected": true }, { "source": "789", "target": "50", "key": "3028", "undirected": true }, { "source": "789", "target": "1119", "key": "3029", "undirected": true }, { "source": "789", "target": "53", "key": "3030", "undirected": true }, { "source": "789", "target": "632", "key": "3031", "undirected": true }, { "source": "789", "target": "405", "key": "3032", "undirected": true }, { "source": "789", "target": "397", "key": "3033", "undirected": true }, { "source": "789", "target": "48", "key": "3034", "undirected": true }, { "source": "789", "target": "409", "key": "3035", "undirected": true }, { "source": "789", "target": "49", "key": "3036", "undirected": true }, { "source": "1120", "target": "1121", "key": "3037", "undirected": true }, { "source": "1120", "target": "1", "key": "3038", "undirected": true }, { "source": "1120", "target": "5", "key": "3039", "undirected": true }, { "source": "1122", "target": "82", "key": "3040", "undirected": true }, { "source": "1122", "target": "280", "key": "3041", "undirected": true }, { "source": "1122", "target": "335", "key": "3042", "undirected": true }, { "source": "1122", "target": "388", "key": "3043", "undirected": true }, { "source": "1122", "target": "987", "key": "3044", "undirected": true }, { "source": "1122", "target": "1123", "key": "3045", "undirected": true }, { "source": "1122", "target": "1015", "key": "3046", "undirected": true }, { "source": "1122", "target": "1124", "key": "3047", "undirected": true }, { "source": "987", "target": "335", "key": "3048", "undirected": true }, { "source": "987", "target": "388", "key": "3049", "undirected": true }, { "source": "987", "target": "1122", "key": "3050", "undirected": true }, { "source": "987", "target": "1125", "key": "3051", "undirected": true }, { "source": "987", "target": "1126", "key": "3052", "undirected": true }, { "source": "987", "target": "896", "key": "3053", "undirected": true }, { "source": "987", "target": "82", "key": "3054", "undirected": true }, { "source": "517", "target": "323", "key": "3055", "undirected": true }, { "source": "517", "target": "1129", "key": "3056", "undirected": true }, { "source": "1114", "target": "1060", "key": "3057", "undirected": true }, { "source": "1114", "target": "1115", "key": "3058", "undirected": true }, { "source": "1115", "target": "1060", "key": "3059", "undirected": true }, { "source": "1115", "target": "1114", "key": "3060", "undirected": true }, { "source": "1115", "target": "1116", "key": "3061", "undirected": true }, { "source": "1115", "target": "1130", "key": "3062", "undirected": true }, { "source": "609", "target": "433", "key": "3063", "undirected": true }, { "source": "609", "target": "119", "key": "3064", "undirected": true }, { "source": "609", "target": "161", "key": "3065", "undirected": true }, { "source": "1131", "target": "1132", "key": "3066", "undirected": true }, { "source": "1131", "target": "512", "key": "3067", "undirected": true }, { "source": "1131", "target": "541", "key": "3068", "undirected": true }, { "source": "1131", "target": "609", "key": "3069", "undirected": true }, { "source": "1133", "target": "391", "key": "3070", "undirected": true }, { "source": "1134", "target": "166", "key": "3071", "undirected": true }, { "source": "1134", "target": "497", "key": "3072", "undirected": true }, { "source": "1134", "target": "281", "key": "3073", "undirected": true }, { "source": "1134", "target": "170", "key": "3074", "undirected": true }, { "source": "1134", "target": "284", "key": "3075", "undirected": true }, { "source": "1135", "target": "857", "key": "3076", "undirected": true }, { "source": "1135", "target": "167", "key": "3077", "undirected": true }, { "source": "281", "target": "335", "key": "3078", "undirected": true }, { "source": "281", "target": "600", "key": "3079", "undirected": true }, { "source": "281", "target": "111", "key": "3080", "undirected": true }, { "source": "281", "target": "1136", "key": "3081", "undirected": true }, { "source": "281", "target": "1125", "key": "3082", "undirected": true }, { "source": "1123", "target": "1137", "key": "3083", "undirected": true }, { "source": "1123", "target": "1138", "key": "3084", "undirected": true }, { "source": "1139", "target": "76", "key": "3085", "undirected": true }, { "source": "1140", "target": "76", "key": "3086", "undirected": true }, { "source": "1140", "target": "426", "key": "3087", "undirected": true }, { "source": "1140", "target": "53", "key": "3088", "undirected": true }, { "source": "1140", "target": "82", "key": "3089", "undirected": true }, { "source": "1141", "target": "600", "key": "3090", "undirected": true }, { "source": "1141", "target": "281", "key": "3091", "undirected": true }, { "source": "1141", "target": "1136", "key": "3092", "undirected": true }, { "source": "1141", "target": "1142", "key": "3093", "undirected": true }, { "source": "970", "target": "217", "key": "3094", "undirected": true }, { "source": "970", "target": "82", "key": "3095", "undirected": true }, { "source": "80", "target": "109", "key": "3096", "undirected": true }, { "source": "1143", "target": "1", "key": "3097", "undirected": true }, { "source": "638", "target": "79", "key": "3098", "undirected": true }, { "source": "638", "target": "626", "key": "3099", "undirected": true }, { "source": "1144", "target": "296", "key": "3100", "undirected": true }, { "source": "1144", "target": "318", "key": "3101", "undirected": true }, { "source": "1144", "target": "381", "key": "3102", "undirected": true }, { "source": "1144", "target": "79", "key": "3103", "undirected": true }, { "source": "1144", "target": "613", "key": "3104", "undirected": true }, { "source": "1144", "target": "351", "key": "3105", "undirected": true }, { "source": "1144", "target": "185", "key": "3106", "undirected": true }, { "source": "1145", "target": "638", "key": "3107", "undirected": true }, { "source": "1145", "target": "1146", "key": "3108", "undirected": true }, { "source": "1145", "target": "1147", "key": "3109", "undirected": true }, { "source": "1145", "target": "20", "key": "3110", "undirected": true }, { "source": "1145", "target": "381", "key": "3111", "undirected": true }, { "source": "1145", "target": "61", "key": "3112", "undirected": true }, { "source": "606", "target": "422", "key": "3113", "undirected": true }, { "source": "606", "target": "437", "key": "3114", "undirected": true }, { "source": "606", "target": "104", "key": "3115", "undirected": true }, { "source": "606", "target": "657", "key": "3116", "undirected": true }, { "source": "217", "target": "128", "key": "3117", "undirected": true }, { "source": "217", "target": "82", "key": "3118", "undirected": true }, { "source": "217", "target": "33", "key": "3119", "undirected": true }, { "source": "217", "target": "495", "key": "3120", "undirected": true }, { "source": "1148", "target": "79", "key": "3121", "undirected": true }, { "source": "1148", "target": "351", "key": "3122", "undirected": true }, { "source": "1148", "target": "350", "key": "3123", "undirected": true }, { "source": "1148", "target": "318", "key": "3124", "undirected": true }, { "source": "1149", "target": "170", "key": "3125", "undirected": true }, { "source": "876", "target": "104", "key": "3126", "undirected": true }, { "source": "876", "target": "976", "key": "3127", "undirected": true }, { "source": "876", "target": "1150", "key": "3128", "undirected": true }, { "source": "976", "target": "104", "key": "3129", "undirected": true }, { "source": "976", "target": "876", "key": "3130", "undirected": true }, { "source": "976", "target": "1150", "key": "3131", "undirected": true }, { "source": "1150", "target": "876", "key": "3132", "undirected": true }, { "source": "1150", "target": "976", "key": "3133", "undirected": true }, { "source": "1150", "target": "65", "key": "3134", "undirected": true }, { "source": "1150", "target": "104", "key": "3135", "undirected": true }, { "source": "1150", "target": "101", "key": "3136", "undirected": true }, { "source": "1151", "target": "417", "key": "3137", "undirected": true }, { "source": "1151", "target": "1152", "key": "3138", "undirected": true }, { "source": "423", "target": "656", "key": "3139", "undirected": true }, { "source": "336", "target": "51", "key": "3140", "undirected": true }, { "source": "336", "target": "284", "key": "3141", "undirected": true }, { "source": "336", "target": "279", "key": "3142", "undirected": true }, { "source": "336", "target": "335", "key": "3143", "undirected": true }, { "source": "336", "target": "53", "key": "3144", "undirected": true }, { "source": "336", "target": "281", "key": "3145", "undirected": true }, { "source": "336", "target": "334", "key": "3146", "undirected": true }, { "source": "336", "target": "50", "key": "3147", "undirected": true }, { "source": "435", "target": "598", "key": "3148", "undirected": true }, { "source": "435", "target": "816", "key": "3149", "undirected": true }, { "source": "435", "target": "155", "key": "3150", "undirected": true }, { "source": "1155", "target": "440", "key": "3151", "undirected": true }, { "source": "1156", "target": "636", "key": "3152", "undirected": true }, { "source": "1156", "target": "51", "key": "3153", "undirected": true }, { "source": "1156", "target": "239", "key": "3154", "undirected": true }, { "source": "1156", "target": "68", "key": "3155", "undirected": true }, { "source": "1156", "target": "216", "key": "3156", "undirected": true }, { "source": "1156", "target": "364", "key": "3157", "undirected": true }, { "source": "1156", "target": "408", "key": "3158", "undirected": true }, { "source": "1156", "target": "53", "key": "3159", "undirected": true }, { "source": "1156", "target": "515", "key": "3160", "undirected": true }, { "source": "1156", "target": "65", "key": "3161", "undirected": true }, { "source": "959", "target": "163", "key": "3162", "undirected": true }, { "source": "1157", "target": "1", "key": "3163", "undirected": true }, { "source": "902", "target": "68", "key": "3164", "undirected": true }, { "source": "902", "target": "65", "key": "3165", "undirected": true }, { "source": "902", "target": "93", "key": "3166", "undirected": true }, { "source": "902", "target": "131", "key": "3167", "undirected": true }, { "source": "902", "target": "111", "key": "3168", "undirected": true }, { "source": "902", "target": "109", "key": "3169", "undirected": true }, { "source": "119", "target": "636", "key": "3170", "undirected": true }, { "source": "119", "target": "289", "key": "3171", "undirected": true }, { "source": "119", "target": "50", "key": "3172", "undirected": true }, { "source": "119", "target": "511", "key": "3173", "undirected": true }, { "source": "119", "target": "61", "key": "3174", "undirected": true }, { "source": "119", "target": "114", "key": "3175", "undirected": true }, { "source": "636", "target": "119", "key": "3176", "undirected": true }, { "source": "295", "target": "292", "key": "3177", "undirected": true }, { "source": "295", "target": "293", "key": "3178", "undirected": true }, { "source": "295", "target": "294", "key": "3179", "undirected": true }, { "source": "295", "target": "79", "key": "3180", "undirected": true }, { "source": "1158", "target": "122", "key": "3181", "undirected": true }, { "source": "1158", "target": "1", "key": "3182", "undirected": true }, { "source": "57", "target": "313", "key": "3183", "undirected": true }, { "source": "1159", "target": "238", "key": "3184", "undirected": true }, { "source": "555", "target": "436", "key": "3185", "undirected": true }, { "source": "555", "target": "403", "key": "3186", "undirected": true }, { "source": "555", "target": "554", "key": "3187", "undirected": true }, { "source": "555", "target": "469", "key": "3188", "undirected": true }, { "source": "555", "target": "510", "key": "3189", "undirected": true }, { "source": "469", "target": "974", "key": "3190", "undirected": true }, { "source": "469", "target": "732", "key": "3191", "undirected": true }, { "source": "1160", "target": "177", "key": "3192", "undirected": true }, { "source": "1160", "target": "79", "key": "3193", "undirected": true }, { "source": "1160", "target": "1", "key": "3194", "undirected": true }, { "source": "1161", "target": "65", "key": "3195", "undirected": true }, { "source": "1161", "target": "444", "key": "3196", "undirected": true }, { "source": "1161", "target": "567", "key": "3197", "undirected": true }, { "source": "1161", "target": "120", "key": "3198", "undirected": true }, { "source": "1161", "target": "502", "key": "3199", "undirected": true }, { "source": "1161", "target": "50", "key": "3200", "undirected": true }, { "source": "1161", "target": "53", "key": "3201", "undirected": true }, { "source": "1161", "target": "64", "key": "3202", "undirected": true }, { "source": "378", "target": "68", "key": "3203", "undirected": true }, { "source": "378", "target": "668", "key": "3204", "undirected": true }, { "source": "378", "target": "1162", "key": "3205", "undirected": true }, { "source": "378", "target": "120", "key": "3206", "undirected": true }, { "source": "378", "target": "424", "key": "3207", "undirected": true }, { "source": "1163", "target": "65", "key": "3208", "undirected": true }, { "source": "1163", "target": "567", "key": "3209", "undirected": true }, { "source": "1163", "target": "378", "key": "3210", "undirected": true }, { "source": "1163", "target": "1162", "key": "3211", "undirected": true }, { "source": "1163", "target": "1164", "key": "3212", "undirected": true }, { "source": "1163", "target": "428", "key": "3213", "undirected": true }, { "source": "1163", "target": "424", "key": "3214", "undirected": true }, { "source": "1163", "target": "656", "key": "3215", "undirected": true }, { "source": "1163", "target": "422", "key": "3216", "undirected": true }, { "source": "1163", "target": "437", "key": "3217", "undirected": true }, { "source": "1162", "target": "519", "key": "3218", "undirected": true }, { "source": "1162", "target": "668", "key": "3219", "undirected": true }, { "source": "1162", "target": "120", "key": "3220", "undirected": true }, { "source": "1162", "target": "379", "key": "3221", "undirected": true }, { "source": "1162", "target": "1165", "key": "3222", "undirected": true }, { "source": "564", "target": "446", "key": "3223", "undirected": true }, { "source": "626", "target": "177", "key": "3224", "undirected": true }, { "source": "626", "target": "79", "key": "3225", "undirected": true }, { "source": "626", "target": "300", "key": "3226", "undirected": true }, { "source": "626", "target": "638", "key": "3227", "undirected": true }, { "source": "626", "target": "312", "key": "3228", "undirected": true }, { "source": "45", "target": "310", "key": "3229", "undirected": true }, { "source": "45", "target": "311", "key": "3230", "undirected": true }, { "source": "45", "target": "79", "key": "3231", "undirected": true }, { "source": "45", "target": "626", "key": "3232", "undirected": true }, { "source": "45", "target": "852", "key": "3233", "undirected": true }, { "source": "45", "target": "46", "key": "3234", "undirected": true }, { "source": "45", "target": "185", "key": "3235", "undirected": true }, { "source": "1090", "target": "292", "key": "3236", "undirected": true }, { "source": "1166", "target": "351", "key": "3237", "undirected": true }, { "source": "329", "target": "310", "key": "3238", "undirected": true }, { "source": "329", "target": "311", "key": "3239", "undirected": true }, { "source": "329", "target": "79", "key": "3240", "undirected": true }, { "source": "329", "target": "626", "key": "3241", "undirected": true }, { "source": "329", "target": "45", "key": "3242", "undirected": true }, { "source": "329", "target": "185", "key": "3243", "undirected": true }, { "source": "312", "target": "79", "key": "3244", "undirected": true }, { "source": "312", "target": "638", "key": "3245", "undirected": true }, { "source": "312", "target": "852", "key": "3246", "undirected": true }, { "source": "312", "target": "185", "key": "3247", "undirected": true }, { "source": "852", "target": "79", "key": "3248", "undirected": true }, { "source": "852", "target": "45", "key": "3249", "undirected": true }, { "source": "852", "target": "312", "key": "3250", "undirected": true }, { "source": "852", "target": "46", "key": "3251", "undirected": true }, { "source": "852", "target": "1083", "key": "3252", "undirected": true }, { "source": "852", "target": "185", "key": "3253", "undirected": true }, { "source": "1167", "target": "1157", "key": "3254", "undirected": true }, { "source": "1167", "target": "852", "key": "3255", "undirected": true }, { "source": "1168", "target": "1166", "key": "3256", "undirected": true }, { "source": "1168", "target": "312", "key": "3257", "undirected": true }, { "source": "1168", "target": "852", "key": "3258", "undirected": true }, { "source": "1168", "target": "351", "key": "3259", "undirected": true }, { "source": "1168", "target": "185", "key": "3260", "undirected": true }, { "source": "1169", "target": "824", "key": "3261", "undirected": true }, { "source": "1169", "target": "238", "key": "3262", "undirected": true }, { "source": "1169", "target": "82", "key": "3263", "undirected": true }, { "source": "824", "target": "823", "key": "3264", "undirected": true }, { "source": "824", "target": "1159", "key": "3265", "undirected": true }, { "source": "824", "target": "1169", "key": "3266", "undirected": true }, { "source": "824", "target": "82", "key": "3267", "undirected": true }, { "source": "1005", "target": "885", "key": "3268", "undirected": true }, { "source": "1170", "target": "988", "key": "3269", "undirected": true }, { "source": "1170", "target": "1090", "key": "3270", "undirected": true }, { "source": "1170", "target": "1171", "key": "3271", "undirected": true }, { "source": "1172", "target": "666", "key": "3272", "undirected": true }, { "source": "1172", "target": "431", "key": "3273", "undirected": true }, { "source": "1172", "target": "455", "key": "3274", "undirected": true }, { "source": "1173", "target": "532", "key": "3275", "undirected": true }, { "source": "1173", "target": "335", "key": "3276", "undirected": true }, { "source": "1173", "target": "53", "key": "3277", "undirected": true }, { "source": "1173", "target": "281", "key": "3278", "undirected": true }, { "source": "1173", "target": "48", "key": "3279", "undirected": true }, { "source": "1173", "target": "406", "key": "3280", "undirected": true }, { "source": "1173", "target": "334", "key": "3281", "undirected": true }, { "source": "1173", "target": "49", "key": "3282", "undirected": true }, { "source": "282", "target": "293", "key": "3283", "undirected": true }, { "source": "282", "target": "525", "key": "3284", "undirected": true }, { "source": "282", "target": "283", "key": "3285", "undirected": true }, { "source": "282", "target": "284", "key": "3286", "undirected": true }, { "source": "1174", "target": "230", "key": "3287", "undirected": true }, { "source": "1174", "target": "388", "key": "3288", "undirected": true }, { "source": "1174", "target": "1126", "key": "3289", "undirected": true }, { "source": "1000", "target": "567", "key": "3290", "undirected": true }, { "source": "1000", "target": "1175", "key": "3291", "undirected": true }, { "source": "1176", "target": "279", "key": "3292", "undirected": true }, { "source": "1176", "target": "280", "key": "3293", "undirected": true }, { "source": "1176", "target": "49", "key": "3294", "undirected": true }, { "source": "1176", "target": "1177", "key": "3295", "undirected": true }, { "source": "1176", "target": "759", "key": "3296", "undirected": true }, { "source": "1178", "target": "170", "key": "3297", "undirected": true }, { "source": "1178", "target": "284", "key": "3298", "undirected": true }, { "source": "1178", "target": "42", "key": "3299", "undirected": true }, { "source": "1178", "target": "282", "key": "3300", "undirected": true }, { "source": "1178", "target": "1179", "key": "3301", "undirected": true }, { "source": "1179", "target": "42", "key": "3302", "undirected": true }, { "source": "1179", "target": "279", "key": "3303", "undirected": true }, { "source": "1179", "target": "516", "key": "3304", "undirected": true }, { "source": "1179", "target": "336", "key": "3305", "undirected": true }, { "source": "1179", "target": "282", "key": "3306", "undirected": true }, { "source": "1179", "target": "170", "key": "3307", "undirected": true }, { "source": "1179", "target": "284", "key": "3308", "undirected": true }, { "source": "1180", "target": "409", "key": "3309", "undirected": true }, { "source": "1180", "target": "983", "key": "3310", "undirected": true }, { "source": "1180", "target": "406", "key": "3311", "undirected": true }, { "source": "1180", "target": "334", "key": "3312", "undirected": true }, { "source": "1180", "target": "166", "key": "3313", "undirected": true }, { "source": "1180", "target": "411", "key": "3314", "undirected": true }, { "source": "1180", "target": "405", "key": "3315", "undirected": true }, { "source": "199", "target": "166", "key": "3316", "undirected": true }, { "source": "199", "target": "402", "key": "3317", "undirected": true }, { "source": "199", "target": "411", "key": "3318", "undirected": true }, { "source": "199", "target": "391", "key": "3319", "undirected": true }, { "source": "199", "target": "200", "key": "3320", "undirected": true }, { "source": "199", "target": "201", "key": "3321", "undirected": true }, { "source": "1181", "target": "216", "key": "3322", "undirected": true }, { "source": "1175", "target": "200", "key": "3323", "undirected": true }, { "source": "1175", "target": "284", "key": "3324", "undirected": true }, { "source": "1175", "target": "33", "key": "3325", "undirected": true }, { "source": "1175", "target": "128", "key": "3326", "undirected": true }, { "source": "1175", "target": "598", "key": "3327", "undirected": true }, { "source": "537", "target": "532", "key": "3328", "undirected": true }, { "source": "537", "target": "543", "key": "3329", "undirected": true }, { "source": "537", "target": "335", "key": "3330", "undirected": true }, { "source": "537", "target": "535", "key": "3331", "undirected": true }, { "source": "537", "target": "405", "key": "3332", "undirected": true }, { "source": "537", "target": "533", "key": "3333", "undirected": true }, { "source": "1182", "target": "200", "key": "3334", "undirected": true }, { "source": "1182", "target": "201", "key": "3335", "undirected": true }, { "source": "1182", "target": "166", "key": "3336", "undirected": true }, { "source": "1182", "target": "411", "key": "3337", "undirected": true }, { "source": "1182", "target": "199", "key": "3338", "undirected": true }, { "source": "1182", "target": "391", "key": "3339", "undirected": true }, { "source": "1183", "target": "133", "key": "3340", "undirected": true }, { "source": "1183", "target": "76", "key": "3341", "undirected": true }, { "source": "1183", "target": "1155", "key": "3342", "undirected": true }, { "source": "1183", "target": "556", "key": "3343", "undirected": true }, { "source": "1183", "target": "1", "key": "3344", "undirected": true }, { "source": "1183", "target": "82", "key": "3345", "undirected": true }, { "source": "1184", "target": "1185", "key": "3346", "undirected": true }, { "source": "1184", "target": "1082", "key": "3347", "undirected": true }, { "source": "1184", "target": "133", "key": "3348", "undirected": true }, { "source": "1184", "target": "1112", "key": "3349", "undirected": true }, { "source": "1184", "target": "1155", "key": "3350", "undirected": true }, { "source": "1184", "target": "1183", "key": "3351", "undirected": true }, { "source": "1184", "target": "1083", "key": "3352", "undirected": true }, { "source": "1186", "target": "53", "key": "3353", "undirected": true }, { "source": "1022", "target": "451", "key": "3354", "undirected": true }, { "source": "1022", "target": "65", "key": "3355", "undirected": true }, { "source": "1022", "target": "93", "key": "3356", "undirected": true }, { "source": "1022", "target": "901", "key": "3357", "undirected": true }, { "source": "1022", "target": "250", "key": "3358", "undirected": true }, { "source": "1022", "target": "924", "key": "3359", "undirected": true }, { "source": "1022", "target": "50", "key": "3360", "undirected": true }, { "source": "1022", "target": "109", "key": "3361", "undirected": true }, { "source": "250", "target": "252", "key": "3362", "undirected": true }, { "source": "250", "target": "53", "key": "3363", "undirected": true }, { "source": "250", "target": "453", "key": "3364", "undirected": true }, { "source": "250", "target": "65", "key": "3365", "undirected": true }, { "source": "250", "target": "50", "key": "3366", "undirected": true }, { "source": "250", "target": "109", "key": "3367", "undirected": true }, { "source": "250", "target": "249", "key": "3368", "undirected": true }, { "source": "250", "target": "451", "key": "3369", "undirected": true }, { "source": "1187", "target": "65", "key": "3370", "undirected": true }, { "source": "1187", "target": "708", "key": "3371", "undirected": true }, { "source": "1187", "target": "82", "key": "3372", "undirected": true }, { "source": "1187", "target": "68", "key": "3373", "undirected": true }, { "source": "1187", "target": "103", "key": "3374", "undirected": true }, { "source": "1187", "target": "76", "key": "3375", "undirected": true }, { "source": "1187", "target": "550", "key": "3376", "undirected": true }, { "source": "1187", "target": "53", "key": "3377", "undirected": true }, { "source": "1187", "target": "453", "key": "3378", "undirected": true }, { "source": "1188", "target": "103", "key": "3379", "undirected": true }, { "source": "1188", "target": "175", "key": "3380", "undirected": true }, { "source": "1188", "target": "76", "key": "3381", "undirected": true }, { "source": "1188", "target": "53", "key": "3382", "undirected": true }, { "source": "1188", "target": "250", "key": "3383", "undirected": true }, { "source": "1188", "target": "109", "key": "3384", "undirected": true }, { "source": "1188", "target": "239", "key": "3385", "undirected": true }, { "source": "1189", "target": "101", "key": "3386", "undirected": true }, { "source": "1189", "target": "1190", "key": "3387", "undirected": true }, { "source": "1189", "target": "109", "key": "3388", "undirected": true }, { "source": "1189", "target": "82", "key": "3389", "undirected": true }, { "source": "1189", "target": "344", "key": "3390", "undirected": true }, { "source": "1189", "target": "76", "key": "3391", "undirected": true }, { "source": "1189", "target": "159", "key": "3392", "undirected": true }, { "source": "179", "target": "177", "key": "3393", "undirected": true }, { "source": "179", "target": "178", "key": "3394", "undirected": true }, { "source": "179", "target": "79", "key": "3395", "undirected": true }, { "source": "179", "target": "300", "key": "3396", "undirected": true }, { "source": "179", "target": "1117", "key": "3397", "undirected": true }, { "source": "1191", "target": "1025", "key": "3398", "undirected": true }, { "source": "1191", "target": "52", "key": "3399", "undirected": true }, { "source": "1191", "target": "1192", "key": "3400", "undirected": true }, { "source": "1191", "target": "511", "key": "3401", "undirected": true }, { "source": "1191", "target": "408", "key": "3402", "undirected": true }, { "source": "1191", "target": "65", "key": "3403", "undirected": true }, { "source": "1191", "target": "259", "key": "3404", "undirected": true }, { "source": "1191", "target": "114", "key": "3405", "undirected": true }, { "source": "1193", "target": "1", "key": "3406", "undirected": true }, { "source": "1194", "target": "732", "key": "3407", "undirected": true }, { "source": "1194", "target": "634", "key": "3408", "undirected": true }, { "source": "1194", "target": "607", "key": "3409", "undirected": true }, { "source": "1194", "target": "833", "key": "3410", "undirected": true }, { "source": "1194", "target": "1182", "key": "3411", "undirected": true }, { "source": "1194", "target": "339", "key": "3412", "undirected": true }, { "source": "1194", "target": "731", "key": "3413", "undirected": true }, { "source": "1194", "target": "51", "key": "3414", "undirected": true }, { "source": "1194", "target": "484", "key": "3415", "undirected": true }, { "source": "1195", "target": "618", "key": "3416", "undirected": true }, { "source": "654", "target": "437", "key": "3417", "undirected": true }, { "source": "654", "target": "567", "key": "3418", "undirected": true }, { "source": "654", "target": "606", "key": "3419", "undirected": true }, { "source": "654", "target": "656", "key": "3420", "undirected": true }, { "source": "654", "target": "657", "key": "3421", "undirected": true }, { "source": "556", "target": "76", "key": "3422", "undirected": true }, { "source": "556", "target": "830", "key": "3423", "undirected": true }, { "source": "556", "target": "1196", "key": "3424", "undirected": true }, { "source": "1197", "target": "638", "key": "3425", "undirected": true }, { "source": "1197", "target": "626", "key": "3426", "undirected": true }, { "source": "1197", "target": "312", "key": "3427", "undirected": true }, { "source": "1197", "target": "852", "key": "3428", "undirected": true }, { "source": "1197", "target": "298", "key": "3429", "undirected": true }, { "source": "1197", "target": "79", "key": "3430", "undirected": true }, { "source": "1198", "target": "61", "key": "3431", "undirected": true }, { "source": "1198", "target": "408", "key": "3432", "undirected": true }, { "source": "1198", "target": "403", "key": "3433", "undirected": true }, { "source": "1198", "target": "79", "key": "3434", "undirected": true }, { "source": "1198", "target": "498", "key": "3435", "undirected": true }, { "source": "1198", "target": "281", "key": "3436", "undirected": true }, { "source": "1198", "target": "119", "key": "3437", "undirected": true }, { "source": "1198", "target": "312", "key": "3438", "undirected": true }, { "source": "1199", "target": "1200", "key": "3439", "undirected": true }, { "source": "763", "target": "764", "key": "3440", "undirected": true }, { "source": "764", "target": "763", "key": "3441", "undirected": true }, { "source": "948", "target": "668", "key": "3442", "undirected": true }, { "source": "948", "target": "24", "key": "3443", "undirected": true }, { "source": "948", "target": "768", "key": "3444", "undirected": true }, { "source": "1077", "target": "647", "key": "3445", "undirected": true }, { "source": "1077", "target": "1003", "key": "3446", "undirected": true }, { "source": "1077", "target": "1201", "key": "3447", "undirected": true }, { "source": "1077", "target": "1202", "key": "3448", "undirected": true }, { "source": "1203", "target": "68", "key": "3449", "undirected": true }, { "source": "1203", "target": "570", "key": "3450", "undirected": true }, { "source": "1203", "target": "571", "key": "3451", "undirected": true }, { "source": "1203", "target": "238", "key": "3452", "undirected": true }, { "source": "1204", "target": "238", "key": "3453", "undirected": true }, { "source": "1204", "target": "239", "key": "3454", "undirected": true }, { "source": "1205", "target": "16", "key": "3455", "undirected": true }, { "source": "1205", "target": "571", "key": "3456", "undirected": true }, { "source": "1206", "target": "397", "key": "3457", "undirected": true }, { "source": "1207", "target": "732", "key": "3458", "undirected": true }, { "source": "1075", "target": "211", "key": "3459", "undirected": true }, { "source": "1075", "target": "724", "key": "3460", "undirected": true }, { "source": "1208", "target": "211", "key": "3461", "undirected": true }, { "source": "1208", "target": "16", "key": "3462", "undirected": true }, { "source": "777", "target": "16", "key": "3463", "undirected": true }, { "source": "666", "target": "1003", "key": "3464", "undirected": true }, { "source": "1209", "target": "408", "key": "3465", "undirected": true }, { "source": "1209", "target": "62", "key": "3466", "undirected": true }, { "source": "1209", "target": "455", "key": "3467", "undirected": true }, { "source": "1209", "target": "666", "key": "3468", "undirected": true }, { "source": "1209", "target": "667", "key": "3469", "undirected": true }, { "source": "1209", "target": "457", "key": "3470", "undirected": true }, { "source": "1209", "target": "1210", "key": "3471", "undirected": true }, { "source": "1209", "target": "431", "key": "3472", "undirected": true }, { "source": "1211", "target": "159", "key": "3473", "undirected": true }, { "source": "1211", "target": "96", "key": "3474", "undirected": true }, { "source": "1211", "target": "215", "key": "3475", "undirected": true }, { "source": "1211", "target": "82", "key": "3476", "undirected": true }, { "source": "1212", "target": "761", "key": "3477", "undirected": true }, { "source": "1212", "target": "774", "key": "3478", "undirected": true }, { "source": "1212", "target": "1213", "key": "3479", "undirected": true }, { "source": "1212", "target": "82", "key": "3480", "undirected": true }, { "source": "1212", "target": "81", "key": "3481", "undirected": true }, { "source": "1212", "target": "175", "key": "3482", "undirected": true }, { "source": "1214", "target": "94", "key": "3483", "undirected": true }, { "source": "1214", "target": "128", "key": "3484", "undirected": true }, { "source": "1214", "target": "84", "key": "3485", "undirected": true }, { "source": "1214", "target": "96", "key": "3486", "undirected": true }, { "source": "1214", "target": "82", "key": "3487", "undirected": true }, { "source": "1215", "target": "648", "key": "3488", "undirected": true }, { "source": "1215", "target": "159", "key": "3489", "undirected": true }, { "source": "1215", "target": "596", "key": "3490", "undirected": true }, { "source": "1215", "target": "238", "key": "3491", "undirected": true }, { "source": "1216", "target": "128", "key": "3492", "undirected": true }, { "source": "1216", "target": "1217", "key": "3493", "undirected": true }, { "source": "1216", "target": "214", "key": "3494", "undirected": true }, { "source": "1216", "target": "82", "key": "3495", "undirected": true }, { "source": "1102", "target": "177", "key": "3496", "undirected": true }, { "source": "1102", "target": "79", "key": "3497", "undirected": true }, { "source": "1102", "target": "1098", "key": "3498", "undirected": true }, { "source": "1102", "target": "638", "key": "3499", "undirected": true }, { "source": "1102", "target": "626", "key": "3500", "undirected": true }, { "source": "1102", "target": "312", "key": "3501", "undirected": true }, { "source": "315", "target": "219", "key": "3502", "undirected": true }, { "source": "315", "target": "306", "key": "3503", "undirected": true }, { "source": "315", "target": "326", "key": "3504", "undirected": true }, { "source": "315", "target": "79", "key": "3505", "undirected": true }, { "source": "315", "target": "298", "key": "3506", "undirected": true }, { "source": "315", "target": "296", "key": "3507", "undirected": true }, { "source": "1218", "target": "721", "key": "3508", "undirected": true }, { "source": "1218", "target": "1", "key": "3509", "undirected": true }, { "source": "720", "target": "79", "key": "3510", "undirected": true }, { "source": "720", "target": "141", "key": "3511", "undirected": true }, { "source": "908", "target": "79", "key": "3512", "undirected": true }, { "source": "908", "target": "907", "key": "3513", "undirected": true }, { "source": "477", "target": "476", "key": "3514", "undirected": true }, { "source": "477", "target": "79", "key": "3515", "undirected": true }, { "source": "477", "target": "368", "key": "3516", "undirected": true }, { "source": "1219", "target": "685", "key": "3517", "undirected": true }, { "source": "1219", "target": "1", "key": "3518", "undirected": true }, { "source": "1220", "target": "1", "key": "3519", "undirected": true }, { "source": "181", "target": "79", "key": "3520", "undirected": true }, { "source": "181", "target": "312", "key": "3521", "undirected": true }, { "source": "181", "target": "184", "key": "3522", "undirected": true }, { "source": "181", "target": "325", "key": "3523", "undirected": true }, { "source": "181", "target": "892", "key": "3524", "undirected": true }, { "source": "181", "target": "185", "key": "3525", "undirected": true }, { "source": "1221", "target": "302", "key": "3526", "undirected": true }, { "source": "1221", "target": "183", "key": "3527", "undirected": true }, { "source": "1221", "target": "254", "key": "3528", "undirected": true }, { "source": "1221", "target": "181", "key": "3529", "undirected": true }, { "source": "1221", "target": "255", "key": "3530", "undirected": true }, { "source": "1221", "target": "182", "key": "3531", "undirected": true }, { "source": "1222", "target": "79", "key": "3532", "undirected": true }, { "source": "1222", "target": "312", "key": "3533", "undirected": true }, { "source": "1222", "target": "325", "key": "3534", "undirected": true }, { "source": "1222", "target": "892", "key": "3535", "undirected": true }, { "source": "1222", "target": "185", "key": "3536", "undirected": true }, { "source": "526", "target": "619", "key": "3537", "undirected": true }, { "source": "526", "target": "219", "key": "3538", "undirected": true }, { "source": "526", "target": "523", "key": "3539", "undirected": true }, { "source": "526", "target": "617", "key": "3540", "undirected": true }, { "source": "526", "target": "79", "key": "3541", "undirected": true }, { "source": "526", "target": "528", "key": "3542", "undirected": true }, { "source": "526", "target": "524", "key": "3543", "undirected": true }, { "source": "527", "target": "294", "key": "3544", "undirected": true }, { "source": "527", "target": "523", "key": "3545", "undirected": true }, { "source": "527", "target": "525", "key": "3546", "undirected": true }, { "source": "527", "target": "528", "key": "3547", "undirected": true }, { "source": "528", "target": "293", "key": "3548", "undirected": true }, { "source": "528", "target": "294", "key": "3549", "undirected": true }, { "source": "528", "target": "523", "key": "3550", "undirected": true }, { "source": "528", "target": "617", "key": "3551", "undirected": true }, { "source": "528", "target": "526", "key": "3552", "undirected": true }, { "source": "528", "target": "524", "key": "3553", "undirected": true }, { "source": "1223", "target": "523", "key": "3554", "undirected": true }, { "source": "1223", "target": "617", "key": "3555", "undirected": true }, { "source": "1223", "target": "79", "key": "3556", "undirected": true }, { "source": "1223", "target": "486", "key": "3557", "undirected": true }, { "source": "1223", "target": "526", "key": "3558", "undirected": true }, { "source": "1223", "target": "527", "key": "3559", "undirected": true }, { "source": "1223", "target": "528", "key": "3560", "undirected": true }, { "source": "1223", "target": "619", "key": "3561", "undirected": true }, { "source": "1223", "target": "292", "key": "3562", "undirected": true }, { "source": "1224", "target": "1225", "key": "3563", "undirected": true }, { "source": "1224", "target": "215", "key": "3564", "undirected": true }, { "source": "1224", "target": "33", "key": "3565", "undirected": true }, { "source": "1224", "target": "495", "key": "3566", "undirected": true }, { "source": "1226", "target": "381", "key": "3567", "undirected": true }, { "source": "1226", "target": "79", "key": "3568", "undirected": true }, { "source": "1226", "target": "819", "key": "3569", "undirected": true }, { "source": "1226", "target": "613", "key": "3570", "undirected": true }, { "source": "1226", "target": "1144", "key": "3571", "undirected": true }, { "source": "1226", "target": "1197", "key": "3572", "undirected": true }, { "source": "1226", "target": "296", "key": "3573", "undirected": true }, { "source": "1227", "target": "293", "key": "3574", "undirected": true }, { "source": "1227", "target": "294", "key": "3575", "undirected": true }, { "source": "1227", "target": "377", "key": "3576", "undirected": true }, { "source": "1227", "target": "974", "key": "3577", "undirected": true }, { "source": "1228", "target": "1229", "key": "3578", "undirected": true }, { "source": "1228", "target": "5", "key": "3579", "undirected": true }, { "source": "1230", "target": "230", "key": "3580", "undirected": true }, { "source": "1230", "target": "1181", "key": "3581", "undirected": true }, { "source": "1230", "target": "170", "key": "3582", "undirected": true }, { "source": "1230", "target": "1231", "key": "3583", "undirected": true }, { "source": "1230", "target": "533", "key": "3584", "undirected": true }, { "source": "1230", "target": "216", "key": "3585", "undirected": true }, { "source": "1232", "target": "86", "key": "3586", "undirected": true }, { "source": "1232", "target": "1233", "key": "3587", "undirected": true }, { "source": "1234", "target": "277", "key": "3588", "undirected": true }, { "source": "1235", "target": "149", "key": "3589", "undirected": true }, { "source": "1235", "target": "524", "key": "3590", "undirected": true }, { "source": "1236", "target": "852", "key": "3591", "undirected": true }, { "source": "1236", "target": "621", "key": "3592", "undirected": true }, { "source": "1236", "target": "622", "key": "3593", "undirected": true }, { "source": "667", "target": "1", "key": "3594", "undirected": true }, { "source": "1014", "target": "177", "key": "3595", "undirected": true }, { "source": "1014", "target": "79", "key": "3596", "undirected": true }, { "source": "1014", "target": "463", "key": "3597", "undirected": true }, { "source": "1014", "target": "1013", "key": "3598", "undirected": true }, { "source": "1014", "target": "1", "key": "3599", "undirected": true }, { "source": "1237", "target": "1238", "key": "3600", "undirected": true }, { "source": "1237", "target": "1144", "key": "3601", "undirected": true }, { "source": "1237", "target": "1239", "key": "3602", "undirected": true }, { "source": "1237", "target": "1240", "key": "3603", "undirected": true }, { "source": "1237", "target": "1241", "key": "3604", "undirected": true }, { "source": "1242", "target": "568", "key": "3605", "undirected": true }, { "source": "1242", "target": "569", "key": "3606", "undirected": true }, { "source": "1242", "target": "1", "key": "3607", "undirected": true }, { "source": "1242", "target": "427", "key": "3608", "undirected": true }, { "source": "1242", "target": "504", "key": "3609", "undirected": true }, { "source": "1243", "target": "53", "key": "3610", "undirected": true }, { "source": "1243", "target": "79", "key": "3611", "undirected": true }, { "source": "1243", "target": "513", "key": "3612", "undirected": true }, { "source": "1243", "target": "239", "key": "3613", "undirected": true }, { "source": "1244", "target": "398", "key": "3614", "undirected": true }, { "source": "1244", "target": "49", "key": "3615", "undirected": true }, { "source": "1244", "target": "50", "key": "3616", "undirected": true }, { "source": "1244", "target": "51", "key": "3617", "undirected": true }, { "source": "1244", "target": "396", "key": "3618", "undirected": true }, { "source": "1244", "target": "956", "key": "3619", "undirected": true }, { "source": "1244", "target": "1206", "key": "3620", "undirected": true }, { "source": "1244", "target": "801", "key": "3621", "undirected": true }, { "source": "1244", "target": "48", "key": "3622", "undirected": true }, { "source": "1245", "target": "99", "key": "3623", "undirected": true }, { "source": "1245", "target": "690", "key": "3624", "undirected": true }, { "source": "1245", "target": "850", "key": "3625", "undirected": true }, { "source": "1245", "target": "1246", "key": "3626", "undirected": true }, { "source": "1245", "target": "141", "key": "3627", "undirected": true }, { "source": "1247", "target": "618", "key": "3628", "undirected": true }, { "source": "1247", "target": "1152", "key": "3629", "undirected": true }, { "source": "1247", "target": "1248", "key": "3630", "undirected": true }, { "source": "1247", "target": "1249", "key": "3631", "undirected": true }, { "source": "1250", "target": "1251", "key": "3632", "undirected": true }, { "source": "1250", "target": "301", "key": "3633", "undirected": true }, { "source": "1250", "target": "294", "key": "3634", "undirected": true }, { "source": "1250", "target": "182", "key": "3635", "undirected": true }, { "source": "1250", "target": "302", "key": "3636", "undirected": true }, { "source": "1250", "target": "500", "key": "3637", "undirected": true }, { "source": "1250", "target": "1252", "key": "3638", "undirected": true }, { "source": "1250", "target": "1253", "key": "3639", "undirected": true }, { "source": "415", "target": "979", "key": "3640", "undirected": true }, { "source": "415", "target": "416", "key": "3641", "undirected": true }, { "source": "1078", "target": "1079", "key": "3642", "undirected": true }, { "source": "1254", "target": "280", "key": "3643", "undirected": true }, { "source": "1254", "target": "838", "key": "3644", "undirected": true }, { "source": "1254", "target": "42", "key": "3645", "undirected": true }, { "source": "1254", "target": "279", "key": "3646", "undirected": true }, { "source": "1255", "target": "1231", "key": "3647", "undirected": true }, { "source": "1256", "target": "53", "key": "3648", "undirected": true }, { "source": "1256", "target": "100", "key": "3649", "undirected": true }, { "source": "1256", "target": "65", "key": "3650", "undirected": true }, { "source": "1256", "target": "469", "key": "3651", "undirected": true }, { "source": "1256", "target": "170", "key": "3652", "undirected": true }, { "source": "1256", "target": "215", "key": "3653", "undirected": true }, { "source": "1256", "target": "82", "key": "3654", "undirected": true }, { "source": "508", "target": "137", "key": "3655", "undirected": true }, { "source": "1146", "target": "79", "key": "3656", "undirected": true }, { "source": "1146", "target": "613", "key": "3657", "undirected": true }, { "source": "1146", "target": "318", "key": "3658", "undirected": true }, { "source": "1146", "target": "381", "key": "3659", "undirected": true }, { "source": "1257", "target": "1", "key": "3660", "undirected": true }, { "source": "1257", "target": "5", "key": "3661", "undirected": true }, { "source": "416", "target": "296", "key": "3662", "undirected": true }, { "source": "416", "target": "420", "key": "3663", "undirected": true }, { "source": "416", "target": "855", "key": "3664", "undirected": true }, { "source": "416", "target": "418", "key": "3665", "undirected": true }, { "source": "416", "target": "185", "key": "3666", "undirected": true }, { "source": "1258", "target": "1235", "key": "3667", "undirected": true }, { "source": "1258", "target": "1259", "key": "3668", "undirected": true }, { "source": "1258", "target": "524", "key": "3669", "undirected": true }, { "source": "71", "target": "69", "key": "3670", "undirected": true }, { "source": "71", "target": "72", "key": "3671", "undirected": true }, { "source": "71", "target": "561", "key": "3672", "undirected": true }, { "source": "71", "target": "70", "key": "3673", "undirected": true }, { "source": "1260", "target": "381", "key": "3674", "undirected": true }, { "source": "1260", "target": "377", "key": "3675", "undirected": true }, { "source": "1260", "target": "1", "key": "3676", "undirected": true }, { "source": "1015", "target": "166", "key": "3677", "undirected": true }, { "source": "1015", "target": "127", "key": "3678", "undirected": true }, { "source": "1015", "target": "1", "key": "3679", "undirected": true }, { "source": "1015", "target": "736", "key": "3680", "undirected": true }, { "source": "1121", "target": "313", "key": "3681", "undirected": true }, { "source": "385", "target": "294", "key": "3682", "undirected": true }, { "source": "385", "target": "1", "key": "3683", "undirected": true }, { "source": "385", "target": "303", "key": "3684", "undirected": true }, { "source": "421", "target": "292", "key": "3685", "undirected": true }, { "source": "421", "target": "420", "key": "3686", "undirected": true }, { "source": "421", "target": "486", "key": "3687", "undirected": true }, { "source": "421", "target": "191", "key": "3688", "undirected": true }, { "source": "1261", "target": "298", "key": "3689", "undirected": true }, { "source": "1261", "target": "401", "key": "3690", "undirected": true }, { "source": "954", "target": "436", "key": "3691", "undirected": true }, { "source": "954", "target": "159", "key": "3692", "undirected": true }, { "source": "954", "target": "647", "key": "3693", "undirected": true }, { "source": "954", "target": "262", "key": "3694", "undirected": true }, { "source": "1076", "target": "1077", "key": "3695", "undirected": true }, { "source": "1076", "target": "1078", "key": "3696", "undirected": true }, { "source": "1076", "target": "1262", "key": "3697", "undirected": true }, { "source": "1076", "target": "262", "key": "3698", "undirected": true }, { "source": "1076", "target": "1079", "key": "3699", "undirected": true }, { "source": "1076", "target": "1074", "key": "3700", "undirected": true }, { "source": "664", "target": "646", "key": "3701", "undirected": true }, { "source": "664", "target": "662", "key": "3702", "undirected": true }, { "source": "664", "target": "663", "key": "3703", "undirected": true }, { "source": "664", "target": "888", "key": "3704", "undirected": true }, { "source": "664", "target": "660", "key": "3705", "undirected": true }, { "source": "1263", "target": "262", "key": "3706", "undirected": true }, { "source": "1263", "target": "570", "key": "3707", "undirected": true }, { "source": "1263", "target": "65", "key": "3708", "undirected": true }, { "source": "1263", "target": "348", "key": "3709", "undirected": true }, { "source": "647", "target": "1003", "key": "3710", "undirected": true }, { "source": "647", "target": "1202", "key": "3711", "undirected": true }, { "source": "1264", "target": "647", "key": "3712", "undirected": true }, { "source": "1264", "target": "1", "key": "3713", "undirected": true }, { "source": "286", "target": "159", "key": "3714", "undirected": true }, { "source": "286", "target": "647", "key": "3715", "undirected": true }, { "source": "286", "target": "238", "key": "3716", "undirected": true }, { "source": "286", "target": "262", "key": "3717", "undirected": true }, { "source": "286", "target": "648", "key": "3718", "undirected": true }, { "source": "289", "target": "65", "key": "3719", "undirected": true }, { "source": "289", "target": "119", "key": "3720", "undirected": true }, { "source": "289", "target": "286", "key": "3721", "undirected": true }, { "source": "289", "target": "62", "key": "3722", "undirected": true }, { "source": "289", "target": "53", "key": "3723", "undirected": true }, { "source": "289", "target": "79", "key": "3724", "undirected": true }, { "source": "674", "target": "1265", "key": "3725", "undirected": true }, { "source": "1266", "target": "498", "key": "3726", "undirected": true }, { "source": "1266", "target": "857", "key": "3727", "undirected": true }, { "source": "1266", "target": "48", "key": "3728", "undirected": true }, { "source": "1266", "target": "806", "key": "3729", "undirected": true }, { "source": "1266", "target": "495", "key": "3730", "undirected": true }, { "source": "1267", "target": "600", "key": "3731", "undirected": true }, { "source": "1267", "target": "405", "key": "3732", "undirected": true }, { "source": "1267", "target": "281", "key": "3733", "undirected": true }, { "source": "1267", "target": "747", "key": "3734", "undirected": true }, { "source": "1267", "target": "409", "key": "3735", "undirected": true }, { "source": "1267", "target": "533", "key": "3736", "undirected": true }, { "source": "1267", "target": "364", "key": "3737", "undirected": true }, { "source": "1267", "target": "532", "key": "3738", "undirected": true }, { "source": "1267", "target": "335", "key": "3739", "undirected": true }, { "source": "1268", "target": "61", "key": "3740", "undirected": true }, { "source": "1268", "target": "62", "key": "3741", "undirected": true }, { "source": "1268", "target": "63", "key": "3742", "undirected": true }, { "source": "1268", "target": "53", "key": "3743", "undirected": true }, { "source": "1268", "target": "513", "key": "3744", "undirected": true }, { "source": "1269", "target": "408", "key": "3745", "undirected": true }, { "source": "1269", "target": "62", "key": "3746", "undirected": true }, { "source": "1269", "target": "1222", "key": "3747", "undirected": true }, { "source": "1269", "target": "1268", "key": "3748", "undirected": true }, { "source": "1269", "target": "49", "key": "3749", "undirected": true }, { "source": "1269", "target": "513", "key": "3750", "undirected": true }, { "source": "1269", "target": "1079", "key": "3751", "undirected": true }, { "source": "1269", "target": "1270", "key": "3752", "undirected": true }, { "source": "1269", "target": "61", "key": "3753", "undirected": true }, { "source": "1271", "target": "746", "key": "3754", "undirected": true }, { "source": "1271", "target": "484", "key": "3755", "undirected": true }, { "source": "803", "target": "148", "key": "3756", "undirected": true }, { "source": "803", "target": "79", "key": "3757", "undirected": true }, { "source": "803", "target": "928", "key": "3758", "undirected": true }, { "source": "1272", "target": "1181", "key": "3759", "undirected": true }, { "source": "1273", "target": "1274", "key": "3760", "undirected": true }, { "source": "1273", "target": "1275", "key": "3761", "undirected": true }, { "source": "1273", "target": "1228", "key": "3762", "undirected": true }, { "source": "1273", "target": "1229", "key": "3763", "undirected": true }, { "source": "1273", "target": "1", "key": "3764", "undirected": true }, { "source": "1276", "target": "370", "key": "3765", "undirected": true }, { "source": "1276", "target": "533", "key": "3766", "undirected": true }, { "source": "1276", "target": "20", "key": "3767", "undirected": true }, { "source": "1276", "target": "364", "key": "3768", "undirected": true }, { "source": "1276", "target": "230", "key": "3769", "undirected": true }, { "source": "1276", "target": "335", "key": "3770", "undirected": true }, { "source": "1276", "target": "600", "key": "3771", "undirected": true }, { "source": "1276", "target": "281", "key": "3772", "undirected": true }, { "source": "1276", "target": "747", "key": "3773", "undirected": true }, { "source": "1276", "target": "748", "key": "3774", "undirected": true }, { "source": "747", "target": "20", "key": "3775", "undirected": true }, { "source": "747", "target": "364", "key": "3776", "undirected": true }, { "source": "747", "target": "335", "key": "3777", "undirected": true }, { "source": "747", "target": "600", "key": "3778", "undirected": true }, { "source": "747", "target": "281", "key": "3779", "undirected": true }, { "source": "747", "target": "748", "key": "3780", "undirected": true }, { "source": "747", "target": "170", "key": "3781", "undirected": true }, { "source": "748", "target": "1122", "key": "3782", "undirected": true }, { "source": "748", "target": "281", "key": "3783", "undirected": true }, { "source": "748", "target": "747", "key": "3784", "undirected": true }, { "source": "748", "target": "170", "key": "3785", "undirected": true }, { "source": "748", "target": "533", "key": "3786", "undirected": true }, { "source": "748", "target": "364", "key": "3787", "undirected": true }, { "source": "748", "target": "335", "key": "3788", "undirected": true }, { "source": "748", "target": "600", "key": "3789", "undirected": true }, { "source": "748", "target": "536", "key": "3790", "undirected": true }, { "source": "1277", "target": "1275", "key": "3791", "undirected": true }, { "source": "1277", "target": "335", "key": "3792", "undirected": true }, { "source": "1277", "target": "748", "key": "3793", "undirected": true }, { "source": "1277", "target": "731", "key": "3794", "undirected": true }, { "source": "1278", "target": "227", "key": "3795", "undirected": true }, { "source": "1278", "target": "313", "key": "3796", "undirected": true }, { "source": "1278", "target": "1279", "key": "3797", "undirected": true }, { "source": "1280", "target": "607", "key": "3798", "undirected": true }, { "source": "1280", "target": "833", "key": "3799", "undirected": true }, { "source": "1280", "target": "494", "key": "3800", "undirected": true }, { "source": "1280", "target": "339", "key": "3801", "undirected": true }, { "source": "1280", "target": "51", "key": "3802", "undirected": true }, { "source": "1280", "target": "759", "key": "3803", "undirected": true }, { "source": "1280", "target": "757", "key": "3804", "undirected": true }, { "source": "1280", "target": "758", "key": "3805", "undirected": true }, { "source": "1280", "target": "732", "key": "3806", "undirected": true }, { "source": "1281", "target": "618", "key": "3807", "undirected": true }, { "source": "1281", "target": "1200", "key": "3808", "undirected": true }, { "source": "1281", "target": "1282", "key": "3809", "undirected": true }, { "source": "1281", "target": "1283", "key": "3810", "undirected": true }, { "source": "338", "target": "1284", "key": "3811", "undirected": true }, { "source": "960", "target": "1284", "key": "3812", "undirected": true }, { "source": "1285", "target": "841", "key": "3813", "undirected": true }, { "source": "1285", "target": "979", "key": "3814", "undirected": true }, { "source": "1285", "target": "49", "key": "3815", "undirected": true }, { "source": "1285", "target": "513", "key": "3816", "undirected": true }, { "source": "1285", "target": "51", "key": "3817", "undirected": true }, { "source": "1285", "target": "966", "key": "3818", "undirected": true }, { "source": "1286", "target": "48", "key": "3819", "undirected": true }, { "source": "1286", "target": "166", "key": "3820", "undirected": true }, { "source": "1286", "target": "279", "key": "3821", "undirected": true }, { "source": "1286", "target": "53", "key": "3822", "undirected": true }, { "source": "1286", "target": "339", "key": "3823", "undirected": true }, { "source": "1286", "target": "1287", "key": "3824", "undirected": true }, { "source": "1288", "target": "219", "key": "3825", "undirected": true }, { "source": "1225", "target": "215", "key": "3826", "undirected": true }, { "source": "1225", "target": "33", "key": "3827", "undirected": true }, { "source": "738", "target": "440", "key": "3828", "undirected": true }, { "source": "738", "target": "1289", "key": "3829", "undirected": true }, { "source": "1290", "target": "210", "key": "3830", "undirected": true }, { "source": "1290", "target": "79", "key": "3831", "undirected": true }, { "source": "1290", "target": "851", "key": "3832", "undirected": true }, { "source": "1290", "target": "626", "key": "3833", "undirected": true }, { "source": "1290", "target": "325", "key": "3834", "undirected": true }, { "source": "1290", "target": "826", "key": "3835", "undirected": true }, { "source": "482", "target": "281", "key": "3836", "undirected": true }, { "source": "482", "target": "483", "key": "3837", "undirected": true }, { "source": "482", "target": "334", "key": "3838", "undirected": true }, { "source": "482", "target": "1291", "key": "3839", "undirected": true }, { "source": "482", "target": "1292", "key": "3840", "undirected": true }, { "source": "482", "target": "600", "key": "3841", "undirected": true }, { "source": "1293", "target": "113", "key": "3842", "undirected": true }, { "source": "1293", "target": "49", "key": "3843", "undirected": true }, { "source": "1293", "target": "513", "key": "3844", "undirected": true }, { "source": "1294", "target": "48", "key": "3845", "undirected": true }, { "source": "1294", "target": "61", "key": "3846", "undirected": true }, { "source": "1294", "target": "833", "key": "3847", "undirected": true }, { "source": "1294", "target": "868", "key": "3848", "undirected": true }, { "source": "1294", "target": "412", "key": "3849", "undirected": true }, { "source": "1294", "target": "970", "key": "3850", "undirected": true }, { "source": "1036", "target": "209", "key": "3851", "undirected": true }, { "source": "1036", "target": "207", "key": "3852", "undirected": true }, { "source": "627", "target": "73", "key": "3853", "undirected": true }, { "source": "627", "target": "863", "key": "3854", "undirected": true }, { "source": "627", "target": "861", "key": "3855", "undirected": true }, { "source": "1295", "target": "544", "key": "3856", "undirected": true }, { "source": "1296", "target": "484", "key": "3857", "undirected": true }, { "source": "1296", "target": "352", "key": "3858", "undirected": true }, { "source": "1296", "target": "607", "key": "3859", "undirected": true }, { "source": "1296", "target": "788", "key": "3860", "undirected": true }, { "source": "1296", "target": "498", "key": "3861", "undirected": true }, { "source": "1296", "target": "48", "key": "3862", "undirected": true }, { "source": "255", "target": "254", "key": "3863", "undirected": true }, { "source": "464", "target": "1", "key": "3864", "undirected": true }, { "source": "1297", "target": "1036", "key": "3865", "undirected": true }, { "source": "1298", "target": "50", "key": "3866", "undirected": true }, { "source": "1298", "target": "280", "key": "3867", "undirected": true }, { "source": "1298", "target": "335", "key": "3868", "undirected": true }, { "source": "1298", "target": "53", "key": "3869", "undirected": true }, { "source": "1298", "target": "411", "key": "3870", "undirected": true }, { "source": "1298", "target": "66", "key": "3871", "undirected": true }, { "source": "1298", "target": "397", "key": "3872", "undirected": true }, { "source": "1298", "target": "48", "key": "3873", "undirected": true }, { "source": "1298", "target": "502", "key": "3874", "undirected": true }, { "source": "1298", "target": "49", "key": "3875", "undirected": true }, { "source": "1299", "target": "76", "key": "3876", "undirected": true }, { "source": "1299", "target": "1300", "key": "3877", "undirected": true }, { "source": "1299", "target": "1301", "key": "3878", "undirected": true }, { "source": "1299", "target": "1302", "key": "3879", "undirected": true }, { "source": "659", "target": "1303", "key": "3880", "undirected": true }, { "source": "659", "target": "661", "key": "3881", "undirected": true }, { "source": "702", "target": "160", "key": "3882", "undirected": true }, { "source": "702", "target": "541", "key": "3883", "undirected": true }, { "source": "702", "target": "161", "key": "3884", "undirected": true }, { "source": "703", "target": "702", "key": "3885", "undirected": true }, { "source": "703", "target": "161", "key": "3886", "undirected": true }, { "source": "703", "target": "91", "key": "3887", "undirected": true }, { "source": "703", "target": "704", "key": "3888", "undirected": true }, { "source": "703", "target": "539", "key": "3889", "undirected": true }, { "source": "703", "target": "701", "key": "3890", "undirected": true }, { "source": "703", "target": "540", "key": "3891", "undirected": true }, { "source": "319", "target": "296", "key": "3892", "undirected": true }, { "source": "319", "target": "311", "key": "3893", "undirected": true }, { "source": "319", "target": "79", "key": "3894", "undirected": true }, { "source": "319", "target": "150", "key": "3895", "undirected": true }, { "source": "319", "target": "182", "key": "3896", "undirected": true }, { "source": "319", "target": "185", "key": "3897", "undirected": true }, { "source": "1304", "target": "444", "key": "3898", "undirected": true }, { "source": "1304", "target": "319", "key": "3899", "undirected": true }, { "source": "1304", "target": "1305", "key": "3900", "undirected": true }, { "source": "1304", "target": "325", "key": "3901", "undirected": true }, { "source": "1304", "target": "310", "key": "3902", "undirected": true }, { "source": "1304", "target": "311", "key": "3903", "undirected": true }, { "source": "1304", "target": "328", "key": "3904", "undirected": true }, { "source": "981", "target": "18", "key": "3905", "undirected": true }, { "source": "1306", "target": "18", "key": "3906", "undirected": true }, { "source": "397", "target": "49", "key": "3907", "undirected": true }, { "source": "397", "target": "50", "key": "3908", "undirected": true }, { "source": "397", "target": "51", "key": "3909", "undirected": true }, { "source": "397", "target": "396", "key": "3910", "undirected": true }, { "source": "397", "target": "956", "key": "3911", "undirected": true }, { "source": "397", "target": "1206", "key": "3912", "undirected": true }, { "source": "397", "target": "801", "key": "3913", "undirected": true }, { "source": "397", "target": "48", "key": "3914", "undirected": true }, { "source": "397", "target": "398", "key": "3915", "undirected": true }, { "source": "1307", "target": "166", "key": "3916", "undirected": true }, { "source": "1307", "target": "1308", "key": "3917", "undirected": true }, { "source": "1307", "target": "167", "key": "3918", "undirected": true }, { "source": "483", "target": "51", "key": "3919", "undirected": true }, { "source": "483", "target": "166", "key": "3920", "undirected": true }, { "source": "483", "target": "279", "key": "3921", "undirected": true }, { "source": "483", "target": "1308", "key": "3922", "undirected": true }, { "source": "483", "target": "482", "key": "3923", "undirected": true }, { "source": "483", "target": "397", "key": "3924", "undirected": true }, { "source": "483", "target": "801", "key": "3925", "undirected": true }, { "source": "483", "target": "334", "key": "3926", "undirected": true }, { "source": "1309", "target": "114", "key": "3927", "undirected": true }, { "source": "1310", "target": "522", "key": "3928", "undirected": true }, { "source": "1311", "target": "322", "key": "3929", "undirected": true }, { "source": "1312", "target": "296", "key": "3930", "undirected": true }, { "source": "1312", "target": "321", "key": "3931", "undirected": true }, { "source": "1312", "target": "1034", "key": "3932", "undirected": true }, { "source": "1312", "target": "1311", "key": "3933", "undirected": true }, { "source": "1312", "target": "322", "key": "3934", "undirected": true }, { "source": "1312", "target": "786", "key": "3935", "undirected": true }, { "source": "1312", "target": "323", "key": "3936", "undirected": true }, { "source": "1312", "target": "787", "key": "3937", "undirected": true }, { "source": "322", "target": "320", "key": "3938", "undirected": true }, { "source": "322", "target": "321", "key": "3939", "undirected": true }, { "source": "322", "target": "785", "key": "3940", "undirected": true }, { "source": "322", "target": "1311", "key": "3941", "undirected": true }, { "source": "322", "target": "1312", "key": "3942", "undirected": true }, { "source": "322", "target": "323", "key": "3943", "undirected": true }, { "source": "322", "target": "296", "key": "3944", "undirected": true }, { "source": "786", "target": "206", "key": "3945", "undirected": true }, { "source": "786", "target": "1312", "key": "3946", "undirected": true }, { "source": "786", "target": "322", "key": "3947", "undirected": true }, { "source": "786", "target": "323", "key": "3948", "undirected": true }, { "source": "786", "target": "787", "key": "3949", "undirected": true }, { "source": "1313", "target": "297", "key": "3950", "undirected": true }, { "source": "1313", "target": "1314", "key": "3951", "undirected": true }, { "source": "1313", "target": "417", "key": "3952", "undirected": true }, { "source": "1313", "target": "1152", "key": "3953", "undirected": true }, { "source": "1313", "target": "292", "key": "3954", "undirected": true }, { "source": "1313", "target": "296", "key": "3955", "undirected": true }, { "source": "372", "target": "621", "key": "3956", "undirected": true }, { "source": "621", "target": "372", "key": "3957", "undirected": true }, { "source": "621", "target": "622", "key": "3958", "undirected": true }, { "source": "621", "target": "182", "key": "3959", "undirected": true }, { "source": "621", "target": "1315", "key": "3960", "undirected": true }, { "source": "1259", "target": "1235", "key": "3961", "undirected": true }, { "source": "1259", "target": "524", "key": "3962", "undirected": true }, { "source": "391", "target": "883", "key": "3963", "undirected": true }, { "source": "391", "target": "983", "key": "3964", "undirected": true }, { "source": "391", "target": "1316", "key": "3965", "undirected": true }, { "source": "391", "target": "1317", "key": "3966", "undirected": true }, { "source": "391", "target": "68", "key": "3967", "undirected": true }, { "source": "391", "target": "1133", "key": "3968", "undirected": true }, { "source": "1318", "target": "1133", "key": "3969", "undirected": true }, { "source": "1318", "target": "111", "key": "3970", "undirected": true }, { "source": "1318", "target": "983", "key": "3971", "undirected": true }, { "source": "1318", "target": "1316", "key": "3972", "undirected": true }, { "source": "251", "target": "453", "key": "3973", "undirected": true }, { "source": "251", "target": "708", "key": "3974", "undirected": true }, { "source": "251", "target": "250", "key": "3975", "undirected": true }, { "source": "251", "target": "97", "key": "3976", "undirected": true }, { "source": "1017", "target": "277", "key": "3977", "undirected": true }, { "source": "1017", "target": "457", "key": "3978", "undirected": true }, { "source": "1319", "target": "68", "key": "3979", "undirected": true }, { "source": "1319", "target": "53", "key": "3980", "undirected": true }, { "source": "1319", "target": "79", "key": "3981", "undirected": true }, { "source": "1319", "target": "65", "key": "3982", "undirected": true }, { "source": "1319", "target": "50", "key": "3983", "undirected": true }, { "source": "1319", "target": "108", "key": "3984", "undirected": true }, { "source": "1164", "target": "426", "key": "3985", "undirected": true }, { "source": "1164", "target": "437", "key": "3986", "undirected": true }, { "source": "1164", "target": "606", "key": "3987", "undirected": true }, { "source": "1164", "target": "424", "key": "3988", "undirected": true }, { "source": "266", "target": "438", "key": "3989", "undirected": true }, { "source": "266", "target": "264", "key": "3990", "undirected": true }, { "source": "266", "target": "444", "key": "3991", "undirected": true }, { "source": "266", "target": "502", "key": "3992", "undirected": true }, { "source": "266", "target": "403", "key": "3993", "undirected": true }, { "source": "1320", "target": "1321", "key": "3994", "undirected": true }, { "source": "1320", "target": "1322", "key": "3995", "undirected": true }, { "source": "1320", "target": "232", "key": "3996", "undirected": true }, { "source": "212", "target": "79", "key": "3997", "undirected": true }, { "source": "212", "target": "885", "key": "3998", "undirected": true }, { "source": "505", "target": "493", "key": "3999", "undirected": true }, { "source": "505", "target": "232", "key": "4000", "undirected": true }, { "source": "505", "target": "1177", "key": "4001", "undirected": true }, { "source": "505", "target": "495", "key": "4002", "undirected": true }, { "source": "885", "target": "79", "key": "4003", "undirected": true }, { "source": "885", "target": "212", "key": "4004", "undirected": true }, { "source": "885", "target": "1323", "key": "4005", "undirected": true }, { "source": "934", "target": "1324", "key": "4006", "undirected": true }, { "source": "355", "target": "712", "key": "4007", "undirected": true }, { "source": "355", "target": "217", "key": "4008", "undirected": true }, { "source": "355", "target": "505", "key": "4009", "undirected": true }, { "source": "1325", "target": "1113", "key": "4010", "undirected": true }, { "source": "1325", "target": "513", "key": "4011", "undirected": true }, { "source": "1325", "target": "50", "key": "4012", "undirected": true }, { "source": "1325", "target": "61", "key": "4013", "undirected": true }, { "source": "1325", "target": "408", "key": "4014", "undirected": true }, { "source": "1325", "target": "53", "key": "4015", "undirected": true }, { "source": "1325", "target": "498", "key": "4016", "undirected": true }, { "source": "1325", "target": "65", "key": "4017", "undirected": true }, { "source": "1325", "target": "66", "key": "4018", "undirected": true }, { "source": "120", "target": "668", "key": "4019", "undirected": true }, { "source": "120", "target": "576", "key": "4020", "undirected": true }, { "source": "120", "target": "582", "key": "4021", "undirected": true }, { "source": "120", "target": "930", "key": "4022", "undirected": true }, { "source": "1326", "target": "1327", "key": "4023", "undirected": true }, { "source": "1326", "target": "422", "key": "4024", "undirected": true }, { "source": "1326", "target": "1328", "key": "4025", "undirected": true }, { "source": "1326", "target": "606", "key": "4026", "undirected": true }, { "source": "1326", "target": "423", "key": "4027", "undirected": true }, { "source": "1326", "target": "424", "key": "4028", "undirected": true }, { "source": "1326", "target": "1329", "key": "4029", "undirected": true }, { "source": "347", "target": "348", "key": "4030", "undirected": true }, { "source": "888", "target": "889", "key": "4031", "undirected": true }, { "source": "1303", "target": "663", "key": "4032", "undirected": true }, { "source": "1303", "target": "888", "key": "4033", "undirected": true }, { "source": "1303", "target": "660", "key": "4034", "undirected": true }, { "source": "1330", "target": "662", "key": "4035", "undirected": true }, { "source": "1330", "target": "664", "key": "4036", "undirected": true }, { "source": "1330", "target": "262", "key": "4037", "undirected": true }, { "source": "660", "target": "1303", "key": "4038", "undirected": true }, { "source": "660", "target": "1330", "key": "4039", "undirected": true }, { "source": "660", "target": "662", "key": "4040", "undirected": true }, { "source": "660", "target": "664", "key": "4041", "undirected": true }, { "source": "660", "target": "888", "key": "4042", "undirected": true }, { "source": "1331", "target": "1", "key": "4043", "undirected": true }, { "source": "1332", "target": "128", "key": "4044", "undirected": true }, { "source": "1332", "target": "53", "key": "4045", "undirected": true }, { "source": "1333", "target": "623", "key": "4046", "undirected": true }, { "source": "1333", "target": "624", "key": "4047", "undirected": true }, { "source": "1334", "target": "1123", "key": "4048", "undirected": true }, { "source": "1334", "target": "1174", "key": "4049", "undirected": true }, { "source": "1334", "target": "1335", "key": "4050", "undirected": true }, { "source": "1334", "target": "1126", "key": "4051", "undirected": true }, { "source": "1334", "target": "82", "key": "4052", "undirected": true }, { "source": "1334", "target": "401", "key": "4053", "undirected": true }, { "source": "1334", "target": "817", "key": "4054", "undirected": true }, { "source": "1334", "target": "1122", "key": "4055", "undirected": true }, { "source": "1334", "target": "987", "key": "4056", "undirected": true }, { "source": "1336", "target": "284", "key": "4057", "undirected": true }, { "source": "1336", "target": "166", "key": "4058", "undirected": true }, { "source": "1336", "target": "279", "key": "4059", "undirected": true }, { "source": "1336", "target": "321", "key": "4060", "undirected": true }, { "source": "1336", "target": "53", "key": "4061", "undirected": true }, { "source": "1336", "target": "281", "key": "4062", "undirected": true }, { "source": "1336", "target": "839", "key": "4063", "undirected": true }, { "source": "1336", "target": "48", "key": "4064", "undirected": true }, { "source": "1336", "target": "50", "key": "4065", "undirected": true }, { "source": "1337", "target": "166", "key": "4066", "undirected": true }, { "source": "1337", "target": "1338", "key": "4067", "undirected": true }, { "source": "1337", "target": "805", "key": "4068", "undirected": true }, { "source": "1337", "target": "411", "key": "4069", "undirected": true }, { "source": "1337", "target": "199", "key": "4070", "undirected": true }, { "source": "1337", "target": "48", "key": "4071", "undirected": true }, { "source": "1337", "target": "200", "key": "4072", "undirected": true }, { "source": "1337", "target": "201", "key": "4073", "undirected": true }, { "source": "1337", "target": "806", "key": "4074", "undirected": true }, { "source": "1337", "target": "807", "key": "4075", "undirected": true }, { "source": "1339", "target": "975", "key": "4076", "undirected": true }, { "source": "1339", "target": "1340", "key": "4077", "undirected": true }, { "source": "1339", "target": "724", "key": "4078", "undirected": true }, { "source": "1339", "target": "1161", "key": "4079", "undirected": true }, { "source": "1339", "target": "1015", "key": "4080", "undirected": true }, { "source": "1339", "target": "48", "key": "4081", "undirected": true }, { "source": "1339", "target": "502", "key": "4082", "undirected": true }, { "source": "1339", "target": "806", "key": "4083", "undirected": true }, { "source": "1339", "target": "223", "key": "4084", "undirected": true }, { "source": "1339", "target": "784", "key": "4085", "undirected": true }, { "source": "1341", "target": "1340", "key": "4086", "undirected": true }, { "source": "1341", "target": "724", "key": "4087", "undirected": true }, { "source": "1341", "target": "1015", "key": "4088", "undirected": true }, { "source": "1341", "target": "502", "key": "4089", "undirected": true }, { "source": "1341", "target": "806", "key": "4090", "undirected": true }, { "source": "1341", "target": "223", "key": "4091", "undirected": true }, { "source": "1341", "target": "784", "key": "4092", "undirected": true }, { "source": "1341", "target": "65", "key": "4093", "undirected": true }, { "source": "1341", "target": "975", "key": "4094", "undirected": true }, { "source": "1341", "target": "444", "key": "4095", "undirected": true }, { "source": "1342", "target": "50", "key": "4096", "undirected": true }, { "source": "1342", "target": "806", "key": "4097", "undirected": true }, { "source": "1342", "target": "166", "key": "4098", "undirected": true }, { "source": "1342", "target": "335", "key": "4099", "undirected": true }, { "source": "1342", "target": "411", "key": "4100", "undirected": true }, { "source": "1342", "target": "1180", "key": "4101", "undirected": true }, { "source": "1342", "target": "194", "key": "4102", "undirected": true }, { "source": "1342", "target": "48", "key": "4103", "undirected": true }, { "source": "1342", "target": "200", "key": "4104", "undirected": true }, { "source": "1343", "target": "344", "key": "4105", "undirected": true }, { "source": "1343", "target": "393", "key": "4106", "undirected": true }, { "source": "1343", "target": "1000", "key": "4107", "undirected": true }, { "source": "1343", "target": "1175", "key": "4108", "undirected": true }, { "source": "1343", "target": "505", "key": "4109", "undirected": true }, { "source": "1343", "target": "200", "key": "4110", "undirected": true }, { "source": "1343", "target": "201", "key": "4111", "undirected": true }, { "source": "1344", "target": "408", "key": "4112", "undirected": true }, { "source": "1344", "target": "562", "key": "4113", "undirected": true }, { "source": "1344", "target": "498", "key": "4114", "undirected": true }, { "source": "1345", "target": "587", "key": "4115", "undirected": true }, { "source": "1345", "target": "181", "key": "4116", "undirected": true }, { "source": "1345", "target": "267", "key": "4117", "undirected": true }, { "source": "1345", "target": "182", "key": "4118", "undirected": true }, { "source": "1345", "target": "370", "key": "4119", "undirected": true }, { "source": "1345", "target": "254", "key": "4120", "undirected": true }, { "source": "1346", "target": "872", "key": "4121", "undirected": true }, { "source": "1346", "target": "903", "key": "4122", "undirected": true }, { "source": "1346", "target": "246", "key": "4123", "undirected": true }, { "source": "1346", "target": "1160", "key": "4124", "undirected": true }, { "source": "379", "target": "68", "key": "4125", "undirected": true }, { "source": "379", "target": "118", "key": "4126", "undirected": true }, { "source": "379", "target": "668", "key": "4127", "undirected": true }, { "source": "379", "target": "155", "key": "4128", "undirected": true }, { "source": "1347", "target": "79", "key": "4129", "undirected": true }, { "source": "1347", "target": "1208", "key": "4130", "undirected": true }, { "source": "1347", "target": "1263", "key": "4131", "undirected": true }, { "source": "1347", "target": "1348", "key": "4132", "undirected": true }, { "source": "1347", "target": "1265", "key": "4133", "undirected": true }, { "source": "1347", "target": "640", "key": "4134", "undirected": true }, { "source": "1347", "target": "641", "key": "4135", "undirected": true }, { "source": "1348", "target": "433", "key": "4136", "undirected": true }, { "source": "1348", "target": "161", "key": "4137", "undirected": true }, { "source": "1349", "target": "1350", "key": "4138", "undirected": true }, { "source": "1349", "target": "628", "key": "4139", "undirected": true }, { "source": "1349", "target": "177", "key": "4140", "undirected": true }, { "source": "1349", "target": "79", "key": "4141", "undirected": true }, { "source": "1349", "target": "906", "key": "4142", "undirected": true }, { "source": "1349", "target": "463", "key": "4143", "undirected": true }, { "source": "1350", "target": "177", "key": "4144", "undirected": true }, { "source": "1350", "target": "79", "key": "4145", "undirected": true }, { "source": "1350", "target": "906", "key": "4146", "undirected": true }, { "source": "628", "target": "1324", "key": "4147", "undirected": true }, { "source": "628", "target": "177", "key": "4148", "undirected": true }, { "source": "628", "target": "79", "key": "4149", "undirected": true }, { "source": "628", "target": "906", "key": "4150", "undirected": true }, { "source": "628", "target": "463", "key": "4151", "undirected": true }, { "source": "628", "target": "629", "key": "4152", "undirected": true }, { "source": "628", "target": "934", "key": "4153", "undirected": true }, { "source": "628", "target": "1350", "key": "4154", "undirected": true }, { "source": "1351", "target": "65", "key": "4155", "undirected": true }, { "source": "1351", "target": "104", "key": "4156", "undirected": true }, { "source": "1351", "target": "1042", "key": "4157", "undirected": true }, { "source": "1351", "target": "567", "key": "4158", "undirected": true }, { "source": "1351", "target": "1138", "key": "4159", "undirected": true }, { "source": "1351", "target": "171", "key": "4160", "undirected": true }, { "source": "1351", "target": "1046", "key": "4161", "undirected": true }, { "source": "1352", "target": "76", "key": "4162", "undirected": true }, { "source": "1352", "target": "453", "key": "4163", "undirected": true }, { "source": "297", "target": "292", "key": "4164", "undirected": true }, { "source": "1353", "target": "747", "key": "4165", "undirected": true }, { "source": "1353", "target": "748", "key": "4166", "undirected": true }, { "source": "1353", "target": "111", "key": "4167", "undirected": true }, { "source": "1353", "target": "749", "key": "4168", "undirected": true }, { "source": "1353", "target": "170", "key": "4169", "undirected": true }, { "source": "1353", "target": "1124", "key": "4170", "undirected": true }, { "source": "1353", "target": "746", "key": "4171", "undirected": true }, { "source": "1353", "target": "335", "key": "4172", "undirected": true }, { "source": "1353", "target": "281", "key": "4173", "undirected": true }, { "source": "1354", "target": "479", "key": "4174", "undirected": true }, { "source": "1355", "target": "296", "key": "4175", "undirected": true }, { "source": "1355", "target": "1356", "key": "4176", "undirected": true }, { "source": "1355", "target": "182", "key": "4177", "undirected": true }, { "source": "1355", "target": "1357", "key": "4178", "undirected": true }, { "source": "1355", "target": "500", "key": "4179", "undirected": true }, { "source": "581", "target": "519", "key": "4180", "undirected": true }, { "source": "581", "target": "498", "key": "4181", "undirected": true }, { "source": "581", "target": "883", "key": "4182", "undirected": true }, { "source": "581", "target": "858", "key": "4183", "undirected": true }, { "source": "883", "target": "68", "key": "4184", "undirected": true }, { "source": "883", "target": "693", "key": "4185", "undirected": true }, { "source": "883", "target": "498", "key": "4186", "undirected": true }, { "source": "883", "target": "915", "key": "4187", "undirected": true }, { "source": "883", "target": "976", "key": "4188", "undirected": true }, { "source": "883", "target": "1358", "key": "4189", "undirected": true }, { "source": "883", "target": "109", "key": "4190", "undirected": true }, { "source": "1359", "target": "53", "key": "4191", "undirected": true }, { "source": "1359", "target": "696", "key": "4192", "undirected": true }, { "source": "1359", "target": "259", "key": "4193", "undirected": true }, { "source": "1359", "target": "49", "key": "4194", "undirected": true }, { "source": "1359", "target": "513", "key": "4195", "undirected": true }, { "source": "1359", "target": "51", "key": "4196", "undirected": true }, { "source": "1359", "target": "1360", "key": "4197", "undirected": true }, { "source": "1359", "target": "88", "key": "4198", "undirected": true }, { "source": "1359", "target": "335", "key": "4199", "undirected": true }, { "source": "494", "target": "128", "key": "4200", "undirected": true }, { "source": "1361", "target": "492", "key": "4201", "undirected": true }, { "source": "1361", "target": "217", "key": "4202", "undirected": true }, { "source": "339", "target": "1056", "key": "4203", "undirected": true }, { "source": "339", "target": "1243", "key": "4204", "undirected": true }, { "source": "339", "target": "334", "key": "4205", "undirected": true }, { "source": "339", "target": "50", "key": "4206", "undirected": true }, { "source": "339", "target": "280", "key": "4207", "undirected": true }, { "source": "339", "target": "53", "key": "4208", "undirected": true }, { "source": "339", "target": "65", "key": "4209", "undirected": true }, { "source": "801", "target": "956", "key": "4210", "undirected": true }, { "source": "801", "target": "1244", "key": "4211", "undirected": true }, { "source": "801", "target": "397", "key": "4212", "undirected": true }, { "source": "801", "target": "483", "key": "4213", "undirected": true }, { "source": "801", "target": "48", "key": "4214", "undirected": true }, { "source": "801", "target": "49", "key": "4215", "undirected": true }, { "source": "801", "target": "50", "key": "4216", "undirected": true }, { "source": "801", "target": "51", "key": "4217", "undirected": true }, { "source": "1362", "target": "68", "key": "4218", "undirected": true }, { "source": "1362", "target": "53", "key": "4219", "undirected": true }, { "source": "1362", "target": "460", "key": "4220", "undirected": true }, { "source": "1362", "target": "591", "key": "4221", "undirected": true }, { "source": "1362", "target": "64", "key": "4222", "undirected": true }, { "source": "1362", "target": "65", "key": "4223", "undirected": true }, { "source": "1362", "target": "119", "key": "4224", "undirected": true }, { "source": "1362", "target": "105", "key": "4225", "undirected": true }, { "source": "1362", "target": "50", "key": "4226", "undirected": true }, { "source": "1362", "target": "108", "key": "4227", "undirected": true }, { "source": "1363", "target": "47", "key": "4228", "undirected": true }, { "source": "1363", "target": "48", "key": "4229", "undirected": true }, { "source": "1363", "target": "334", "key": "4230", "undirected": true }, { "source": "1363", "target": "49", "key": "4231", "undirected": true }, { "source": "1363", "target": "51", "key": "4232", "undirected": true }, { "source": "1363", "target": "52", "key": "4233", "undirected": true }, { "source": "1363", "target": "1364", "key": "4234", "undirected": true }, { "source": "1363", "target": "53", "key": "4235", "undirected": true }, { "source": "1363", "target": "45", "key": "4236", "undirected": true }, { "source": "1363", "target": "46", "key": "4237", "undirected": true }, { "source": "1365", "target": "757", "key": "4238", "undirected": true }, { "source": "1365", "target": "758", "key": "4239", "undirected": true }, { "source": "1365", "target": "147", "key": "4240", "undirected": true }, { "source": "1365", "target": "607", "key": "4241", "undirected": true }, { "source": "1365", "target": "27", "key": "4242", "undirected": true }, { "source": "1365", "target": "494", "key": "4243", "undirected": true }, { "source": "1365", "target": "339", "key": "4244", "undirected": true }, { "source": "1365", "target": "51", "key": "4245", "undirected": true }, { "source": "1365", "target": "759", "key": "4246", "undirected": true }, { "source": "1366", "target": "166", "key": "4247", "undirected": true }, { "source": "1366", "target": "1367", "key": "4248", "undirected": true }, { "source": "1366", "target": "82", "key": "4249", "undirected": true }, { "source": "1368", "target": "1095", "key": "4250", "undirected": true }, { "source": "1368", "target": "1096", "key": "4251", "undirected": true }, { "source": "1368", "target": "1097", "key": "4252", "undirected": true }, { "source": "1368", "target": "312", "key": "4253", "undirected": true }, { "source": "1369", "target": "1370", "key": "4254", "undirected": true }, { "source": "1369", "target": "1", "key": "4255", "undirected": true }, { "source": "1369", "target": "1371", "key": "4256", "undirected": true }, { "source": "1372", "target": "216", "key": "4257", "undirected": true }, { "source": "1372", "target": "167", "key": "4258", "undirected": true }, { "source": "1372", "target": "489", "key": "4259", "undirected": true }, { "source": "1372", "target": "579", "key": "4260", "undirected": true }, { "source": "1372", "target": "1373", "key": "4261", "undirected": true }, { "source": "1374", "target": "487", "key": "4262", "undirected": true }, { "source": "1374", "target": "519", "key": "4263", "undirected": true }, { "source": "1374", "target": "53", "key": "4264", "undirected": true }, { "source": "1374", "target": "489", "key": "4265", "undirected": true }, { "source": "1374", "target": "391", "key": "4266", "undirected": true }, { "source": "1374", "target": "983", "key": "4267", "undirected": true }, { "source": "1374", "target": "406", "key": "4268", "undirected": true }, { "source": "1374", "target": "334", "key": "4269", "undirected": true }, { "source": "1375", "target": "21", "key": "4270", "undirected": true }, { "source": "392", "target": "498", "key": "4271", "undirected": true }, { "source": "392", "target": "1133", "key": "4272", "undirected": true }, { "source": "392", "target": "391", "key": "4273", "undirected": true }, { "source": "392", "target": "585", "key": "4274", "undirected": true }, { "source": "1376", "target": "291", "key": "4275", "undirected": true }, { "source": "1376", "target": "293", "key": "4276", "undirected": true }, { "source": "1376", "target": "1377", "key": "4277", "undirected": true }, { "source": "1376", "target": "516", "key": "4278", "undirected": true }, { "source": "1376", "target": "525", "key": "4279", "undirected": true }, { "source": "1376", "target": "295", "key": "4280", "undirected": true }, { "source": "1378", "target": "293", "key": "4281", "undirected": true }, { "source": "1378", "target": "291", "key": "4282", "undirected": true }, { "source": "1356", "target": "57", "key": "4283", "undirected": true }, { "source": "1379", "target": "428", "key": "4284", "undirected": true }, { "source": "1379", "target": "1358", "key": "4285", "undirected": true }, { "source": "1358", "target": "428", "key": "4286", "undirected": true }, { "source": "1358", "target": "1379", "key": "4287", "undirected": true }, { "source": "1380", "target": "1379", "key": "4288", "undirected": true }, { "source": "1380", "target": "1358", "key": "4289", "undirected": true }, { "source": "1381", "target": "1152", "key": "4290", "undirected": true }, { "source": "1382", "target": "463", "key": "4291", "undirected": true }, { "source": "479", "target": "1062", "key": "4292", "undirected": true }, { "source": "479", "target": "1063", "key": "4293", "undirected": true }, { "source": "479", "target": "1", "key": "4294", "undirected": true }, { "source": "479", "target": "1064", "key": "4295", "undirected": true }, { "source": "479", "target": "1066", "key": "4296", "undirected": true }, { "source": "479", "target": "1068", "key": "4297", "undirected": true }, { "source": "1063", "target": "1064", "key": "4298", "undirected": true }, { "source": "1063", "target": "1066", "key": "4299", "undirected": true }, { "source": "1063", "target": "1069", "key": "4300", "undirected": true }, { "source": "1063", "target": "1", "key": "4301", "undirected": true }, { "source": "39", "target": "34", "key": "4302", "undirected": true }, { "source": "39", "target": "270", "key": "4303", "undirected": true }, { "source": "39", "target": "313", "key": "4304", "undirected": true }, { "source": "39", "target": "275", "key": "4305", "undirected": true }, { "source": "46", "target": "309", "key": "4306", "undirected": true }, { "source": "46", "target": "185", "key": "4307", "undirected": true }, { "source": "46", "target": "723", "key": "4308", "undirected": true }, { "source": "46", "target": "45", "key": "4309", "undirected": true }, { "source": "1383", "target": "310", "key": "4310", "undirected": true }, { "source": "1383", "target": "311", "key": "4311", "undirected": true }, { "source": "1383", "target": "79", "key": "4312", "undirected": true }, { "source": "1383", "target": "723", "key": "4313", "undirected": true }, { "source": "1383", "target": "312", "key": "4314", "undirected": true }, { "source": "1383", "target": "852", "key": "4315", "undirected": true }, { "source": "1383", "target": "185", "key": "4316", "undirected": true }, { "source": "367", "target": "307", "key": "4317", "undirected": true }, { "source": "367", "target": "309", "key": "4318", "undirected": true }, { "source": "275", "target": "313", "key": "4319", "undirected": true }, { "source": "275", "target": "276", "key": "4320", "undirected": true }, { "source": "275", "target": "270", "key": "4321", "undirected": true }, { "source": "275", "target": "36", "key": "4322", "undirected": true }, { "source": "271", "target": "270", "key": "4323", "undirected": true }, { "source": "271", "target": "36", "key": "4324", "undirected": true }, { "source": "271", "target": "1384", "key": "4325", "undirected": true }, { "source": "271", "target": "38", "key": "4326", "undirected": true }, { "source": "271", "target": "275", "key": "4327", "undirected": true }, { "source": "271", "target": "276", "key": "4328", "undirected": true }, { "source": "1047", "target": "463", "key": "4329", "undirected": true }, { "source": "1047", "target": "209", "key": "4330", "undirected": true }, { "source": "1047", "target": "207", "key": "4331", "undirected": true }, { "source": "1047", "target": "1036", "key": "4332", "undirected": true }, { "source": "615", "target": "206", "key": "4333", "undirected": true }, { "source": "615", "target": "1039", "key": "4334", "undirected": true }, { "source": "615", "target": "209", "key": "4335", "undirected": true }, { "source": "974", "target": "313", "key": "4336", "undirected": true }, { "source": "974", "target": "150", "key": "4337", "undirected": true }, { "source": "974", "target": "1385", "key": "4338", "undirected": true }, { "source": "150", "target": "163", "key": "4339", "undirected": true }, { "source": "340", "target": "163", "key": "4340", "undirected": true }, { "source": "340", "target": "150", "key": "4341", "undirected": true }, { "source": "1386", "target": "974", "key": "4342", "undirected": true }, { "source": "1386", "target": "1323", "key": "4343", "undirected": true }, { "source": "1385", "target": "150", "key": "4344", "undirected": true }, { "source": "1385", "target": "1", "key": "4345", "undirected": true }, { "source": "1385", "target": "79", "key": "4346", "undirected": true }, { "source": "1385", "target": "974", "key": "4347", "undirected": true }, { "source": "1387", "target": "79", "key": "4348", "undirected": true }, { "source": "1387", "target": "974", "key": "4349", "undirected": true }, { "source": "1387", "target": "150", "key": "4350", "undirected": true }, { "source": "1387", "target": "1385", "key": "4351", "undirected": true }, { "source": "1387", "target": "1388", "key": "4352", "undirected": true }, { "source": "1387", "target": "1389", "key": "4353", "undirected": true }, { "source": "1387", "target": "1", "key": "4354", "undirected": true }, { "source": "1023", "target": "581", "key": "4355", "undirected": true }, { "source": "1023", "target": "858", "key": "4356", "undirected": true }, { "source": "1388", "target": "974", "key": "4357", "undirected": true }, { "source": "1388", "target": "1385", "key": "4358", "undirected": true }, { "source": "1390", "target": "90", "key": "4359", "undirected": true }, { "source": "1390", "target": "433", "key": "4360", "undirected": true }, { "source": "1390", "target": "365", "key": "4361", "undirected": true }, { "source": "1390", "target": "155", "key": "4362", "undirected": true }, { "source": "1390", "target": "897", "key": "4363", "undirected": true }, { "source": "1389", "target": "313", "key": "4364", "undirected": true }, { "source": "1391", "target": "1060", "key": "4365", "undirected": true }, { "source": "1391", "target": "1114", "key": "4366", "undirected": true }, { "source": "1391", "target": "1115", "key": "4367", "undirected": true }, { "source": "1391", "target": "1392", "key": "4368", "undirected": true }, { "source": "1391", "target": "1116", "key": "4369", "undirected": true }, { "source": "1393", "target": "233", "key": "4370", "undirected": true }, { "source": "232", "target": "353", "key": "4371", "undirected": true }, { "source": "232", "target": "128", "key": "4372", "undirected": true }, { "source": "441", "target": "129", "key": "4373", "undirected": true }, { "source": "441", "target": "439", "key": "4374", "undirected": true }, { "source": "441", "target": "1394", "key": "4375", "undirected": true }, { "source": "441", "target": "172", "key": "4376", "undirected": true }, { "source": "441", "target": "82", "key": "4377", "undirected": true }, { "source": "441", "target": "713", "key": "4378", "undirected": true }, { "source": "1395", "target": "444", "key": "4379", "undirected": true }, { "source": "1395", "target": "839", "key": "4380", "undirected": true }, { "source": "1395", "target": "571", "key": "4381", "undirected": true }, { "source": "1018", "target": "146", "key": "4382", "undirected": true }, { "source": "1396", "target": "211", "key": "4383", "undirected": true }, { "source": "332", "target": "331", "key": "4384", "undirected": true }, { "source": "332", "target": "521", "key": "4385", "undirected": true }, { "source": "332", "target": "149", "key": "4386", "undirected": true }, { "source": "12", "target": "1", "key": "4387", "undirected": true }, { "source": "1136", "target": "600", "key": "4388", "undirected": true }, { "source": "1136", "target": "281", "key": "4389", "undirected": true }, { "source": "1136", "target": "1141", "key": "4390", "undirected": true }, { "source": "1136", "target": "1142", "key": "4391", "undirected": true }, { "source": "577", "target": "581", "key": "4392", "undirected": true }, { "source": "577", "target": "585", "key": "4393", "undirected": true }, { "source": "577", "target": "578", "key": "4394", "undirected": true }, { "source": "577", "target": "68", "key": "4395", "undirected": true }, { "source": "577", "target": "519", "key": "4396", "undirected": true }, { "source": "577", "target": "580", "key": "4397", "undirected": true }, { "source": "577", "target": "576", "key": "4398", "undirected": true }, { "source": "577", "target": "120", "key": "4399", "undirected": true }, { "source": "635", "target": "53", "key": "4400", "undirected": true }, { "source": "635", "target": "50", "key": "4401", "undirected": true }, { "source": "889", "target": "888", "key": "4402", "undirected": true }, { "source": "889", "target": "661", "key": "4403", "undirected": true }, { "source": "1397", "target": "1165", "key": "4404", "undirected": true }, { "source": "1397", "target": "155", "key": "4405", "undirected": true }, { "source": "1397", "target": "68", "key": "4406", "undirected": true }, { "source": "1397", "target": "668", "key": "4407", "undirected": true }, { "source": "1397", "target": "710", "key": "4408", "undirected": true }, { "source": "1397", "target": "65", "key": "4409", "undirected": true }, { "source": "1397", "target": "378", "key": "4410", "undirected": true }, { "source": "1397", "target": "379", "key": "4411", "undirected": true }, { "source": "1398", "target": "281", "key": "4412", "undirected": true }, { "source": "1398", "target": "1399", "key": "4413", "undirected": true }, { "source": "1398", "target": "1400", "key": "4414", "undirected": true }, { "source": "1401", "target": "166", "key": "4415", "undirected": true }, { "source": "1401", "target": "279", "key": "4416", "undirected": true }, { "source": "1401", "target": "53", "key": "4417", "undirected": true }, { "source": "1401", "target": "281", "key": "4418", "undirected": true }, { "source": "1401", "target": "695", "key": "4419", "undirected": true }, { "source": "1401", "target": "49", "key": "4420", "undirected": true }, { "source": "1401", "target": "109", "key": "4421", "undirected": true }, { "source": "1401", "target": "284", "key": "4422", "undirected": true }, { "source": "47", "target": "113", "key": "4423", "undirected": true }, { "source": "47", "target": "589", "key": "4424", "undirected": true }, { "source": "47", "target": "281", "key": "4425", "undirected": true }, { "source": "47", "target": "119", "key": "4426", "undirected": true }, { "source": "47", "target": "267", "key": "4427", "undirected": true }, { "source": "47", "target": "48", "key": "4428", "undirected": true }, { "source": "47", "target": "374", "key": "4429", "undirected": true }, { "source": "47", "target": "49", "key": "4430", "undirected": true }, { "source": "47", "target": "513", "key": "4431", "undirected": true }, { "source": "267", "target": "374", "key": "4432", "undirected": true }, { "source": "267", "target": "49", "key": "4433", "undirected": true }, { "source": "267", "target": "513", "key": "4434", "undirected": true }, { "source": "267", "target": "116", "key": "4435", "undirected": true }, { "source": "267", "target": "113", "key": "4436", "undirected": true }, { "source": "267", "target": "589", "key": "4437", "undirected": true }, { "source": "267", "target": "119", "key": "4438", "undirected": true }, { "source": "267", "target": "47", "key": "4439", "undirected": true }, { "source": "1050", "target": "401", "key": "4440", "undirected": true }, { "source": "1050", "target": "206", "key": "4441", "undirected": true }, { "source": "1050", "target": "1402", "key": "4442", "undirected": true }, { "source": "1050", "target": "208", "key": "4443", "undirected": true }, { "source": "1403", "target": "1404", "key": "4444", "undirected": true }, { "source": "351", "target": "79", "key": "4445", "undirected": true }, { "source": "351", "target": "1", "key": "4446", "undirected": true }, { "source": "1314", "target": "297", "key": "4447", "undirected": true }, { "source": "1314", "target": "292", "key": "4448", "undirected": true }, { "source": "1314", "target": "296", "key": "4449", "undirected": true }, { "source": "1405", "target": "819", "key": "4450", "undirected": true }, { "source": "1405", "target": "613", "key": "4451", "undirected": true }, { "source": "1405", "target": "1098", "key": "4452", "undirected": true }, { "source": "1405", "target": "638", "key": "4453", "undirected": true }, { "source": "1405", "target": "626", "key": "4454", "undirected": true }, { "source": "1405", "target": "312", "key": "4455", "undirected": true }, { "source": "1405", "target": "1197", "key": "4456", "undirected": true }, { "source": "622", "target": "372", "key": "4457", "undirected": true }, { "source": "622", "target": "621", "key": "4458", "undirected": true }, { "source": "622", "target": "182", "key": "4459", "undirected": true }, { "source": "622", "target": "1315", "key": "4460", "undirected": true }, { "source": "417", "target": "292", "key": "4461", "undirected": true }, { "source": "417", "target": "314", "key": "4462", "undirected": true }, { "source": "417", "target": "371", "key": "4463", "undirected": true }, { "source": "417", "target": "297", "key": "4464", "undirected": true }, { "source": "417", "target": "1314", "key": "4465", "undirected": true }, { "source": "417", "target": "1152", "key": "4466", "undirected": true }, { "source": "182", "target": "296", "key": "4467", "undirected": true }, { "source": "182", "target": "79", "key": "4468", "undirected": true }, { "source": "182", "target": "621", "key": "4469", "undirected": true }, { "source": "182", "target": "256", "key": "4470", "undirected": true }, { "source": "182", "target": "185", "key": "4471", "undirected": true }, { "source": "1406", "target": "181", "key": "4472", "undirected": true }, { "source": "1406", "target": "302", "key": "4473", "undirected": true }, { "source": "1406", "target": "256", "key": "4474", "undirected": true }, { "source": "1406", "target": "1357", "key": "4475", "undirected": true }, { "source": "1406", "target": "301", "key": "4476", "undirected": true }, { "source": "1406", "target": "294", "key": "4477", "undirected": true }, { "source": "194", "target": "193", "key": "4478", "undirected": true }, { "source": "194", "target": "270", "key": "4479", "undirected": true }, { "source": "194", "target": "195", "key": "4480", "undirected": true }, { "source": "1315", "target": "292", "key": "4481", "undirected": true }, { "source": "1315", "target": "296", "key": "4482", "undirected": true }, { "source": "1315", "target": "294", "key": "4483", "undirected": true }, { "source": "1315", "target": "79", "key": "4484", "undirected": true }, { "source": "1315", "target": "486", "key": "4485", "undirected": true }, { "source": "1315", "target": "323", "key": "4486", "undirected": true }, { "source": "1407", "target": "79", "key": "4487", "undirected": true }, { "source": "1407", "target": "182", "key": "4488", "undirected": true }, { "source": "1407", "target": "185", "key": "4489", "undirected": true }, { "source": "1407", "target": "1408", "key": "4490", "undirected": true }, { "source": "316", "target": "1", "key": "4491", "undirected": true }, { "source": "1152", "target": "292", "key": "4492", "undirected": true }, { "source": "1152", "target": "371", "key": "4493", "undirected": true }, { "source": "1152", "target": "996", "key": "4494", "undirected": true }, { "source": "1152", "target": "297", "key": "4495", "undirected": true }, { "source": "1152", "target": "1314", "key": "4496", "undirected": true }, { "source": "1152", "target": "417", "key": "4497", "undirected": true }, { "source": "1152", "target": "316", "key": "4498", "undirected": true }, { "source": "524", "target": "1258", "key": "4499", "undirected": true }, { "source": "524", "target": "1259", "key": "4500", "undirected": true }, { "source": "524", "target": "1235", "key": "4501", "undirected": true }, { "source": "1409", "target": "1248", "key": "4502", "undirected": true }, { "source": "1409", "target": "1249", "key": "4503", "undirected": true }, { "source": "304", "target": "294", "key": "4504", "undirected": true }, { "source": "304", "target": "966", "key": "4505", "undirected": true }, { "source": "304", "target": "185", "key": "4506", "undirected": true }, { "source": "304", "target": "1410", "key": "4507", "undirected": true }, { "source": "1411", "target": "1124", "key": "4508", "undirected": true }, { "source": "1411", "target": "532", "key": "4509", "undirected": true }, { "source": "1411", "target": "230", "key": "4510", "undirected": true }, { "source": "1411", "target": "536", "key": "4511", "undirected": true }, { "source": "1411", "target": "537", "key": "4512", "undirected": true }, { "source": "1411", "target": "765", "key": "4513", "undirected": true }, { "source": "1125", "target": "364", "key": "4514", "undirected": true }, { "source": "1125", "target": "532", "key": "4515", "undirected": true }, { "source": "1125", "target": "543", "key": "4516", "undirected": true }, { "source": "1125", "target": "335", "key": "4517", "undirected": true }, { "source": "1125", "target": "535", "key": "4518", "undirected": true }, { "source": "1125", "target": "281", "key": "4519", "undirected": true }, { "source": "1125", "target": "537", "key": "4520", "undirected": true }, { "source": "1125", "target": "533", "key": "4521", "undirected": true }, { "source": "1412", "target": "996", "key": "4522", "undirected": true }, { "source": "1412", "target": "1199", "key": "4523", "undirected": true }, { "source": "1412", "target": "1404", "key": "4524", "undirected": true }, { "source": "993", "target": "292", "key": "4525", "undirected": true }, { "source": "993", "target": "995", "key": "4526", "undirected": true }, { "source": "993", "target": "996", "key": "4527", "undirected": true }, { "source": "993", "target": "997", "key": "4528", "undirected": true }, { "source": "993", "target": "998", "key": "4529", "undirected": true }, { "source": "1413", "target": "1200", "key": "4530", "undirected": true }, { "source": "1200", "target": "1413", "key": "4531", "undirected": true }, { "source": "1200", "target": "1414", "key": "4532", "undirected": true }, { "source": "1414", "target": "1200", "key": "4533", "undirected": true }, { "source": "1415", "target": "979", "key": "4534", "undirected": true }, { "source": "1404", "target": "272", "key": "4535", "undirected": true }, { "source": "1404", "target": "450", "key": "4536", "undirected": true }, { "source": "1404", "target": "429", "key": "4537", "undirected": true }, { "source": "1404", "target": "37", "key": "4538", "undirected": true }, { "source": "1404", "target": "209", "key": "4539", "undirected": true }, { "source": "1404", "target": "1403", "key": "4540", "undirected": true }, { "source": "317", "target": "296", "key": "4541", "undirected": true }, { "source": "317", "target": "79", "key": "4542", "undirected": true }, { "source": "317", "target": "181", "key": "4543", "undirected": true }, { "source": "317", "target": "325", "key": "4544", "undirected": true }, { "source": "317", "target": "185", "key": "4545", "undirected": true }, { "source": "1416", "target": "296", "key": "4546", "undirected": true }, { "source": "1416", "target": "79", "key": "4547", "undirected": true }, { "source": "1416", "target": "317", "key": "4548", "undirected": true }, { "source": "1416", "target": "325", "key": "4549", "undirected": true }, { "source": "1417", "target": "917", "key": "4550", "undirected": true }, { "source": "1418", "target": "95", "key": "4551", "undirected": true }, { "source": "1418", "target": "602", "key": "4552", "undirected": true }, { "source": "1418", "target": "1", "key": "4553", "undirected": true }, { "source": "1418", "target": "1419", "key": "4554", "undirected": true }, { "source": "1418", "target": "758", "key": "4555", "undirected": true }, { "source": "1420", "target": "344", "key": "4556", "undirected": true }, { "source": "1420", "target": "280", "key": "4557", "undirected": true }, { "source": "1420", "target": "335", "key": "4558", "undirected": true }, { "source": "1420", "target": "568", "key": "4559", "undirected": true }, { "source": "1420", "target": "48", "key": "4560", "undirected": true }, { "source": "1420", "target": "49", "key": "4561", "undirected": true }, { "source": "418", "target": "961", "key": "4562", "undirected": true }, { "source": "418", "target": "219", "key": "4563", "undirected": true }, { "source": "418", "target": "416", "key": "4564", "undirected": true }, { "source": "1421", "target": "310", "key": "4565", "undirected": true }, { "source": "1421", "target": "311", "key": "4566", "undirected": true }, { "source": "1421", "target": "79", "key": "4567", "undirected": true }, { "source": "1421", "target": "723", "key": "4568", "undirected": true }, { "source": "1421", "target": "45", "key": "4569", "undirected": true }, { "source": "1421", "target": "1422", "key": "4570", "undirected": true }, { "source": "1421", "target": "312", "key": "4571", "undirected": true }, { "source": "1421", "target": "46", "key": "4572", "undirected": true }, { "source": "1421", "target": "185", "key": "4573", "undirected": true }, { "source": "1305", "target": "296", "key": "4574", "undirected": true }, { "source": "1305", "target": "415", "key": "4575", "undirected": true }, { "source": "1305", "target": "182", "key": "4576", "undirected": true }, { "source": "961", "target": "962", "key": "4577", "undirected": true }, { "source": "370", "target": "364", "key": "4578", "undirected": true }, { "source": "370", "target": "335", "key": "4579", "undirected": true }, { "source": "370", "target": "634", "key": "4580", "undirected": true }, { "source": "370", "target": "281", "key": "4581", "undirected": true }, { "source": "370", "target": "334", "key": "4582", "undirected": true }, { "source": "370", "target": "51", "key": "4583", "undirected": true }, { "source": "370", "target": "533", "key": "4584", "undirected": true }, { "source": "1423", "target": "1424", "key": "4585", "undirected": true }, { "source": "1423", "target": "1425", "key": "4586", "undirected": true }, { "source": "1423", "target": "1235", "key": "4587", "undirected": true }, { "source": "1423", "target": "1258", "key": "4588", "undirected": true }, { "source": "1423", "target": "1259", "key": "4589", "undirected": true }, { "source": "1423", "target": "524", "key": "4590", "undirected": true }, { "source": "1426", "target": "293", "key": "4591", "undirected": true }, { "source": "1426", "target": "517", "key": "4592", "undirected": true }, { "source": "1426", "target": "295", "key": "4593", "undirected": true }, { "source": "1426", "target": "323", "key": "4594", "undirected": true }, { "source": "1426", "target": "1129", "key": "4595", "undirected": true }, { "source": "1129", "target": "517", "key": "4596", "undirected": true }, { "source": "1129", "target": "323", "key": "4597", "undirected": true }, { "source": "1053", "target": "208", "key": "4598", "undirected": true }, { "source": "1053", "target": "204", "key": "4599", "undirected": true }, { "source": "1053", "target": "209", "key": "4600", "undirected": true }, { "source": "1053", "target": "1034", "key": "4601", "undirected": true }, { "source": "1053", "target": "206", "key": "4602", "undirected": true }, { "source": "247", "target": "175", "key": "4603", "undirected": true }, { "source": "247", "target": "215", "key": "4604", "undirected": true }, { "source": "1427", "target": "128", "key": "4605", "undirected": true }, { "source": "1427", "target": "53", "key": "4606", "undirected": true }, { "source": "1427", "target": "752", "key": "4607", "undirected": true }, { "source": "1427", "target": "65", "key": "4608", "undirected": true }, { "source": "1427", "target": "400", "key": "4609", "undirected": true }, { "source": "1427", "target": "1155", "key": "4610", "undirected": true }, { "source": "1427", "target": "82", "key": "4611", "undirected": true }, { "source": "1428", "target": "848", "key": "4612", "undirected": true }, { "source": "1428", "target": "136", "key": "4613", "undirected": true }, { "source": "1428", "target": "847", "key": "4614", "undirected": true }, { "source": "1428", "target": "137", "key": "4615", "undirected": true }, { "source": "1428", "target": "196", "key": "4616", "undirected": true }, { "source": "1428", "target": "810", "key": "4617", "undirected": true }, { "source": "1428", "target": "752", "key": "4618", "undirected": true }, { "source": "1287", "target": "348", "key": "4619", "undirected": true }, { "source": "348", "target": "76", "key": "4620", "undirected": true }, { "source": "348", "target": "347", "key": "4621", "undirected": true }, { "source": "348", "target": "1429", "key": "4622", "undirected": true }, { "source": "348", "target": "661", "key": "4623", "undirected": true }, { "source": "1025", "target": "65", "key": "4624", "undirected": true }, { "source": "1025", "target": "120", "key": "4625", "undirected": true }, { "source": "1025", "target": "76", "key": "4626", "undirected": true }, { "source": "1025", "target": "53", "key": "4627", "undirected": true }, { "source": "1025", "target": "258", "key": "4628", "undirected": true }, { "source": "1025", "target": "760", "key": "4629", "undirected": true }, { "source": "1262", "target": "1078", "key": "4630", "undirected": true }, { "source": "1262", "target": "262", "key": "4631", "undirected": true }, { "source": "48", "target": "49", "key": "4632", "undirected": true }, { "source": "48", "target": "50", "key": "4633", "undirected": true }, { "source": "48", "target": "280", "key": "4634", "undirected": true }, { "source": "48", "target": "61", "key": "4635", "undirected": true }, { "source": "48", "target": "53", "key": "4636", "undirected": true }, { "source": "48", "target": "66", "key": "4637", "undirected": true }, { "source": "48", "target": "405", "key": "4638", "undirected": true }, { "source": "48", "target": "281", "key": "4639", "undirected": true }, { "source": "48", "target": "409", "key": "4640", "undirected": true }, { "source": "48", "target": "334", "key": "4641", "undirected": true }, { "source": "565", "target": "777", "key": "4642", "undirected": true }, { "source": "565", "target": "1430", "key": "4643", "undirected": true }, { "source": "1324", "target": "318", "key": "4644", "undirected": true }, { "source": "1324", "target": "79", "key": "4645", "undirected": true }, { "source": "1324", "target": "628", "key": "4646", "undirected": true }, { "source": "409", "target": "335", "key": "4647", "undirected": true }, { "source": "409", "target": "405", "key": "4648", "undirected": true }, { "source": "409", "target": "48", "key": "4649", "undirected": true }, { "source": "409", "target": "200", "key": "4650", "undirected": true }, { "source": "409", "target": "49", "key": "4651", "undirected": true }, { "source": "538", "target": "335", "key": "4652", "undirected": true }, { "source": "538", "target": "53", "key": "4653", "undirected": true }, { "source": "538", "target": "66", "key": "4654", "undirected": true }, { "source": "538", "target": "397", "key": "4655", "undirected": true }, { "source": "538", "target": "48", "key": "4656", "undirected": true }, { "source": "538", "target": "200", "key": "4657", "undirected": true }, { "source": "538", "target": "49", "key": "4658", "undirected": true }, { "source": "538", "target": "50", "key": "4659", "undirected": true }, { "source": "538", "target": "51", "key": "4660", "undirected": true }, { "source": "538", "target": "280", "key": "4661", "undirected": true }, { "source": "200", "target": "229", "key": "4662", "undirected": true }, { "source": "200", "target": "607", "key": "4663", "undirected": true }, { "source": "200", "target": "444", "key": "4664", "undirected": true }, { "source": "1431", "target": "607", "key": "4665", "undirected": true }, { "source": "1431", "target": "608", "key": "4666", "undirected": true }, { "source": "1431", "target": "760", "key": "4667", "undirected": true }, { "source": "1431", "target": "1206", "key": "4668", "undirected": true }, { "source": "1431", "target": "885", "key": "4669", "undirected": true }, { "source": "1431", "target": "1395", "key": "4670", "undirected": true }, { "source": "1431", "target": "1432", "key": "4671", "undirected": true }, { "source": "1431", "target": "262", "key": "4672", "undirected": true }, { "source": "1431", "target": "515", "key": "4673", "undirected": true }, { "source": "1432", "target": "262", "key": "4674", "undirected": true }, { "source": "1432", "target": "515", "key": "4675", "undirected": true }, { "source": "1432", "target": "607", "key": "4676", "undirected": true }, { "source": "1432", "target": "608", "key": "4677", "undirected": true }, { "source": "1432", "target": "444", "key": "4678", "undirected": true }, { "source": "1432", "target": "1395", "key": "4679", "undirected": true }, { "source": "1433", "target": "79", "key": "4680", "undirected": true }, { "source": "272", "target": "209", "key": "4681", "undirected": true }, { "source": "272", "target": "429", "key": "4682", "undirected": true }, { "source": "272", "target": "1434", "key": "4683", "undirected": true }, { "source": "40", "target": "272", "key": "4684", "undirected": true }, { "source": "40", "target": "429", "key": "4685", "undirected": true }, { "source": "450", "target": "37", "key": "4686", "undirected": true }, { "source": "450", "target": "908", "key": "4687", "undirected": true }, { "source": "450", "target": "272", "key": "4688", "undirected": true }, { "source": "429", "target": "37", "key": "4689", "undirected": true }, { "source": "429", "target": "207", "key": "4690", "undirected": true }, { "source": "429", "target": "1", "key": "4691", "undirected": true }, { "source": "983", "target": "216", "key": "4692", "undirected": true }, { "source": "983", "target": "937", "key": "4693", "undirected": true }, { "source": "983", "target": "444", "key": "4694", "undirected": true }, { "source": "983", "target": "391", "key": "4695", "undirected": true }, { "source": "1435", "target": "82", "key": "4696", "undirected": true }, { "source": "1435", "target": "344", "key": "4697", "undirected": true }, { "source": "1435", "target": "175", "key": "4698", "undirected": true }, { "source": "1435", "target": "354", "key": "4699", "undirected": true }, { "source": "1435", "target": "437", "key": "4700", "undirected": true }, { "source": "1435", "target": "567", "key": "4701", "undirected": true }, { "source": "1435", "target": "1", "key": "4702", "undirected": true }, { "source": "1435", "target": "424", "key": "4703", "undirected": true }, { "source": "1435", "target": "656", "key": "4704", "undirected": true }, { "source": "1436", "target": "1", "key": "4705", "undirected": true }, { "source": "1436", "target": "1437", "key": "4706", "undirected": true }, { "source": "1438", "target": "1439", "key": "4707", "undirected": true }, { "source": "1438", "target": "1440", "key": "4708", "undirected": true }, { "source": "1441", "target": "1", "key": "4709", "undirected": true }, { "source": "1441", "target": "132", "key": "4710", "undirected": true }, { "source": "1441", "target": "1442", "key": "4711", "undirected": true }, { "source": "582", "target": "576", "key": "4712", "undirected": true }, { "source": "582", "target": "897", "key": "4713", "undirected": true }, { "source": "1443", "target": "65", "key": "4714", "undirected": true }, { "source": "1443", "target": "67", "key": "4715", "undirected": true }, { "source": "1443", "target": "248", "key": "4716", "undirected": true }, { "source": "1443", "target": "50", "key": "4717", "undirected": true }, { "source": "1443", "target": "82", "key": "4718", "undirected": true }, { "source": "1443", "target": "68", "key": "4719", "undirected": true }, { "source": "1443", "target": "53", "key": "4720", "undirected": true }, { "source": "1443", "target": "591", "key": "4721", "undirected": true }, { "source": "1444", "target": "214", "key": "4722", "undirected": true }, { "source": "1444", "target": "1445", "key": "4723", "undirected": true }, { "source": "1444", "target": "216", "key": "4724", "undirected": true }, { "source": "1444", "target": "351", "key": "4725", "undirected": true }, { "source": "1444", "target": "82", "key": "4726", "undirected": true }, { "source": "1446", "target": "391", "key": "4727", "undirected": true }, { "source": "1446", "target": "1447", "key": "4728", "undirected": true }, { "source": "1446", "target": "982", "key": "4729", "undirected": true }, { "source": "1446", "target": "976", "key": "4730", "undirected": true }, { "source": "1448", "target": "294", "key": "4731", "undirected": true }, { "source": "1448", "target": "377", "key": "4732", "undirected": true }, { "source": "1448", "target": "979", "key": "4733", "undirected": true }, { "source": "1448", "target": "416", "key": "4734", "undirected": true }, { "source": "406", "target": "53", "key": "4735", "undirected": true }, { "source": "406", "target": "334", "key": "4736", "undirected": true }, { "source": "749", "target": "166", "key": "4737", "undirected": true }, { "source": "749", "target": "1449", "key": "4738", "undirected": true }, { "source": "334", "target": "66", "key": "4739", "undirected": true }, { "source": "334", "target": "406", "key": "4740", "undirected": true }, { "source": "334", "target": "1451", "key": "4741", "undirected": true }, { "source": "334", "target": "50", "key": "4742", "undirected": true }, { "source": "334", "target": "53", "key": "4743", "undirected": true }, { "source": "334", "target": "65", "key": "4744", "undirected": true }, { "source": "334", "target": "167", "key": "4745", "undirected": true }, { "source": "1452", "target": "50", "key": "4746", "undirected": true }, { "source": "1452", "target": "280", "key": "4747", "undirected": true }, { "source": "1452", "target": "61", "key": "4748", "undirected": true }, { "source": "1452", "target": "53", "key": "4749", "undirected": true }, { "source": "1452", "target": "66", "key": "4750", "undirected": true }, { "source": "1452", "target": "412", "key": "4751", "undirected": true }, { "source": "1452", "target": "281", "key": "4752", "undirected": true }, { "source": "1452", "target": "1401", "key": "4753", "undirected": true }, { "source": "1452", "target": "48", "key": "4754", "undirected": true }, { "source": "201", "target": "519", "key": "4755", "undirected": true }, { "source": "201", "target": "607", "key": "4756", "undirected": true }, { "source": "201", "target": "391", "key": "4757", "undirected": true }, { "source": "201", "target": "212", "key": "4758", "undirected": true }, { "source": "201", "target": "200", "key": "4759", "undirected": true }, { "source": "1453", "target": "1", "key": "4760", "undirected": true }, { "source": "1453", "target": "1454", "key": "4761", "undirected": true }, { "source": "1455", "target": "591", "key": "4762", "undirected": true }, { "source": "1455", "target": "65", "key": "4763", "undirected": true }, { "source": "1455", "target": "50", "key": "4764", "undirected": true }, { "source": "1455", "target": "262", "key": "4765", "undirected": true }, { "source": "1455", "target": "511", "key": "4766", "undirected": true }, { "source": "1455", "target": "76", "key": "4767", "undirected": true }, { "source": "1455", "target": "62", "key": "4768", "undirected": true }, { "source": "1455", "target": "159", "key": "4769", "undirected": true }, { "source": "1455", "target": "53", "key": "4770", "undirected": true }, { "source": "1456", "target": "758", "key": "4771", "undirected": true }, { "source": "1456", "target": "279", "key": "4772", "undirected": true }, { "source": "1456", "target": "53", "key": "4773", "undirected": true }, { "source": "1456", "target": "607", "key": "4774", "undirected": true }, { "source": "1456", "target": "494", "key": "4775", "undirected": true }, { "source": "1456", "target": "339", "key": "4776", "undirected": true }, { "source": "1456", "target": "484", "key": "4777", "undirected": true }, { "source": "1456", "target": "759", "key": "4778", "undirected": true }, { "source": "1456", "target": "757", "key": "4779", "undirected": true }, { "source": "1457", "target": "166", "key": "4780", "undirected": true }, { "source": "1457", "target": "280", "key": "4781", "undirected": true }, { "source": "1457", "target": "455", "key": "4782", "undirected": true }, { "source": "1457", "target": "405", "key": "4783", "undirected": true }, { "source": "1457", "target": "267", "key": "4784", "undirected": true }, { "source": "1457", "target": "182", "key": "4785", "undirected": true }, { "source": "1457", "target": "370", "key": "4786", "undirected": true }, { "source": "1457", "target": "409", "key": "4787", "undirected": true }, { "source": "1457", "target": "49", "key": "4788", "undirected": true }, { "source": "1457", "target": "513", "key": "4789", "undirected": true }, { "source": "170", "target": "109", "key": "4790", "undirected": true }, { "source": "170", "target": "915", "key": "4791", "undirected": true }, { "source": "170", "target": "313", "key": "4792", "undirected": true }, { "source": "1458", "target": "497", "key": "4793", "undirected": true }, { "source": "1458", "target": "976", "key": "4794", "undirected": true }, { "source": "1458", "target": "170", "key": "4795", "undirected": true }, { "source": "935", "target": "109", "key": "4796", "undirected": true }, { "source": "1459", "target": "50", "key": "4797", "undirected": true }, { "source": "1459", "target": "166", "key": "4798", "undirected": true }, { "source": "1459", "target": "279", "key": "4799", "undirected": true }, { "source": "1459", "target": "352", "key": "4800", "undirected": true }, { "source": "1459", "target": "280", "key": "4801", "undirected": true }, { "source": "1459", "target": "66", "key": "4802", "undirected": true }, { "source": "1459", "target": "281", "key": "4803", "undirected": true }, { "source": "1459", "target": "48", "key": "4804", "undirected": true }, { "source": "1459", "target": "49", "key": "4805", "undirected": true }, { "source": "1460", "target": "1461", "key": "4806", "undirected": true }, { "source": "1462", "target": "1463", "key": "4807", "undirected": true }, { "source": "1462", "target": "1260", "key": "4808", "undirected": true }, { "source": "1126", "target": "128", "key": "4809", "undirected": true }, { "source": "1126", "target": "896", "key": "4810", "undirected": true }, { "source": "1126", "target": "82", "key": "4811", "undirected": true }, { "source": "1126", "target": "33", "key": "4812", "undirected": true }, { "source": "592", "target": "53", "key": "4813", "undirected": true }, { "source": "592", "target": "96", "key": "4814", "undirected": true }, { "source": "592", "target": "65", "key": "4815", "undirected": true }, { "source": "592", "target": "105", "key": "4816", "undirected": true }, { "source": "592", "target": "82", "key": "4817", "undirected": true }, { "source": "896", "target": "128", "key": "4818", "undirected": true }, { "source": "896", "target": "388", "key": "4819", "undirected": true }, { "source": "896", "target": "765", "key": "4820", "undirected": true }, { "source": "765", "target": "388", "key": "4821", "undirected": true }, { "source": "765", "target": "747", "key": "4822", "undirected": true }, { "source": "765", "target": "896", "key": "4823", "undirected": true }, { "source": "765", "target": "1124", "key": "4824", "undirected": true }, { "source": "765", "target": "82", "key": "4825", "undirected": true }, { "source": "1464", "target": "883", "key": "4826", "undirected": true }, { "source": "1464", "target": "935", "key": "4827", "undirected": true }, { "source": "1367", "target": "1328", "key": "4828", "undirected": true }, { "source": "430", "target": "79", "key": "4829", "undirected": true }, { "source": "430", "target": "463", "key": "4830", "undirected": true }, { "source": "430", "target": "908", "key": "4831", "undirected": true }, { "source": "430", "target": "429", "key": "4832", "undirected": true }, { "source": "430", "target": "37", "key": "4833", "undirected": true }, { "source": "1465", "target": "498", "key": "4834", "undirected": true }, { "source": "1466", "target": "335", "key": "4835", "undirected": true }, { "source": "1466", "target": "504", "key": "4836", "undirected": true }, { "source": "1466", "target": "568", "key": "4837", "undirected": true }, { "source": "1466", "target": "281", "key": "4838", "undirected": true }, { "source": "1466", "target": "1266", "key": "4839", "undirected": true }, { "source": "1466", "target": "747", "key": "4840", "undirected": true }, { "source": "1466", "target": "505", "key": "4841", "undirected": true }, { "source": "1124", "target": "335", "key": "4842", "undirected": true }, { "source": "1124", "target": "388", "key": "4843", "undirected": true }, { "source": "1124", "target": "1272", "key": "4844", "undirected": true }, { "source": "1124", "target": "896", "key": "4845", "undirected": true }, { "source": "1124", "target": "82", "key": "4846", "undirected": true }, { "source": "1124", "target": "543", "key": "4847", "undirected": true }, { "source": "1467", "target": "166", "key": "4848", "undirected": true }, { "source": "1467", "target": "411", "key": "4849", "undirected": true }, { "source": "1467", "target": "925", "key": "4850", "undirected": true }, { "source": "1467", "target": "444", "key": "4851", "undirected": true }, { "source": "1467", "target": "502", "key": "4852", "undirected": true }, { "source": "1467", "target": "82", "key": "4853", "undirected": true }, { "source": "746", "target": "170", "key": "4854", "undirected": true }, { "source": "746", "target": "20", "key": "4855", "undirected": true }, { "source": "746", "target": "281", "key": "4856", "undirected": true }, { "source": "1468", "target": "68", "key": "4857", "undirected": true }, { "source": "1468", "target": "53", "key": "4858", "undirected": true }, { "source": "1468", "target": "79", "key": "4859", "undirected": true }, { "source": "1468", "target": "784", "key": "4860", "undirected": true }, { "source": "1468", "target": "65", "key": "4861", "undirected": true }, { "source": "1468", "target": "67", "key": "4862", "undirected": true }, { "source": "1468", "target": "119", "key": "4863", "undirected": true }, { "source": "1468", "target": "1161", "key": "4864", "undirected": true }, { "source": "1468", "target": "50", "key": "4865", "undirected": true }, { "source": "1468", "target": "484", "key": "4866", "undirected": true }, { "source": "1469", "target": "1218", "key": "4867", "undirected": true }, { "source": "1469", "target": "594", "key": "4868", "undirected": true }, { "source": "1469", "target": "510", "key": "4869", "undirected": true }, { "source": "1469", "target": "698", "key": "4870", "undirected": true }, { "source": "1469", "target": "926", "key": "4871", "undirected": true }, { "source": "1469", "target": "119", "key": "4872", "undirected": true }, { "source": "594", "target": "61", "key": "4873", "undirected": true }, { "source": "594", "target": "53", "key": "4874", "undirected": true }, { "source": "594", "target": "865", "key": "4875", "undirected": true }, { "source": "594", "target": "287", "key": "4876", "undirected": true }, { "source": "594", "target": "262", "key": "4877", "undirected": true }, { "source": "594", "target": "510", "key": "4878", "undirected": true }, { "source": "287", "target": "460", "key": "4879", "undirected": true }, { "source": "287", "target": "515", "key": "4880", "undirected": true }, { "source": "287", "target": "119", "key": "4881", "undirected": true }, { "source": "287", "target": "286", "key": "4882", "undirected": true }, { "source": "287", "target": "552", "key": "4883", "undirected": true }, { "source": "287", "target": "62", "key": "4884", "undirected": true }, { "source": "287", "target": "53", "key": "4885", "undirected": true }, { "source": "552", "target": "50", "key": "4886", "undirected": true }, { "source": "552", "target": "68", "key": "4887", "undirected": true }, { "source": "552", "target": "61", "key": "4888", "undirected": true }, { "source": "552", "target": "63", "key": "4889", "undirected": true }, { "source": "552", "target": "53", "key": "4890", "undirected": true }, { "source": "552", "target": "512", "key": "4891", "undirected": true }, { "source": "552", "target": "65", "key": "4892", "undirected": true }, { "source": "552", "target": "119", "key": "4893", "undirected": true }, { "source": "552", "target": "287", "key": "4894", "undirected": true }, { "source": "1470", "target": "68", "key": "4895", "undirected": true }, { "source": "1470", "target": "61", "key": "4896", "undirected": true }, { "source": "1470", "target": "62", "key": "4897", "undirected": true }, { "source": "1470", "target": "63", "key": "4898", "undirected": true }, { "source": "1470", "target": "53", "key": "4899", "undirected": true }, { "source": "1470", "target": "64", "key": "4900", "undirected": true }, { "source": "1470", "target": "65", "key": "4901", "undirected": true }, { "source": "1470", "target": "287", "key": "4902", "undirected": true }, { "source": "1470", "target": "552", "key": "4903", "undirected": true }, { "source": "1470", "target": "511", "key": "4904", "undirected": true }, { "source": "1471", "target": "408", "key": "4905", "undirected": true }, { "source": "1471", "target": "53", "key": "4906", "undirected": true }, { "source": "1471", "target": "607", "key": "4907", "undirected": true }, { "source": "1471", "target": "65", "key": "4908", "undirected": true }, { "source": "1471", "target": "66", "key": "4909", "undirected": true }, { "source": "1471", "target": "1015", "key": "4910", "undirected": true }, { "source": "1471", "target": "48", "key": "4911", "undirected": true }, { "source": "1471", "target": "50", "key": "4912", "undirected": true }, { "source": "1471", "target": "279", "key": "4913", "undirected": true }, { "source": "1471", "target": "61", "key": "4914", "undirected": true }, { "source": "1472", "target": "1473", "key": "4915", "undirected": true }, { "source": "1472", "target": "109", "key": "4916", "undirected": true }, { "source": "1472", "target": "736", "key": "4917", "undirected": true }, { "source": "1472", "target": "1474", "key": "4918", "undirected": true }, { "source": "1472", "target": "156", "key": "4919", "undirected": true }, { "source": "1472", "target": "158", "key": "4920", "undirected": true }, { "source": "1472", "target": "779", "key": "4921", "undirected": true }, { "source": "1472", "target": "241", "key": "4922", "undirected": true }, { "source": "1472", "target": "120", "key": "4923", "undirected": true }, { "source": "1475", "target": "900", "key": "4924", "undirected": true }, { "source": "1475", "target": "1476", "key": "4925", "undirected": true }, { "source": "394", "target": "216", "key": "4926", "undirected": true }, { "source": "394", "target": "390", "key": "4927", "undirected": true }, { "source": "394", "target": "167", "key": "4928", "undirected": true }, { "source": "394", "target": "391", "key": "4929", "undirected": true }, { "source": "1477", "target": "422", "key": "4930", "undirected": true }, { "source": "1477", "target": "437", "key": "4931", "undirected": true }, { "source": "1477", "target": "131", "key": "4932", "undirected": true }, { "source": "1477", "target": "567", "key": "4933", "undirected": true }, { "source": "1477", "target": "423", "key": "4934", "undirected": true }, { "source": "1477", "target": "1", "key": "4935", "undirected": true }, { "source": "1477", "target": "430", "key": "4936", "undirected": true }, { "source": "1477", "target": "424", "key": "4937", "undirected": true }, { "source": "1477", "target": "130", "key": "4938", "undirected": true }, { "source": "424", "target": "1", "key": "4939", "undirected": true }, { "source": "424", "target": "656", "key": "4940", "undirected": true }, { "source": "424", "target": "130", "key": "4941", "undirected": true }, { "source": "424", "target": "422", "key": "4942", "undirected": true }, { "source": "424", "target": "567", "key": "4943", "undirected": true }, { "source": "424", "target": "654", "key": "4944", "undirected": true }, { "source": "991", "target": "908", "key": "4945", "undirected": true }, { "source": "991", "target": "272", "key": "4946", "undirected": true }, { "source": "991", "target": "429", "key": "4947", "undirected": true }, { "source": "1434", "target": "272", "key": "4948", "undirected": true }, { "source": "1434", "target": "429", "key": "4949", "undirected": true }, { "source": "695", "target": "166", "key": "4950", "undirected": true }, { "source": "695", "target": "234", "key": "4951", "undirected": true }, { "source": "695", "target": "618", "key": "4952", "undirected": true }, { "source": "695", "target": "111", "key": "4953", "undirected": true }, { "source": "695", "target": "731", "key": "4954", "undirected": true }, { "source": "731", "target": "111", "key": "4955", "undirected": true }, { "source": "731", "target": "695", "key": "4956", "undirected": true }, { "source": "731", "target": "109", "key": "4957", "undirected": true }, { "source": "731", "target": "234", "key": "4958", "undirected": true }, { "source": "1478", "target": "68", "key": "4959", "undirected": true }, { "source": "1478", "target": "25", "key": "4960", "undirected": true }, { "source": "1478", "target": "65", "key": "4961", "undirected": true }, { "source": "1478", "target": "120", "key": "4962", "undirected": true }, { "source": "1478", "target": "582", "key": "4963", "undirected": true }, { "source": "1478", "target": "50", "key": "4964", "undirected": true }, { "source": "1478", "target": "456", "key": "4965", "undirected": true }, { "source": "1429", "target": "693", "key": "4966", "undirected": true }, { "source": "1429", "target": "1", "key": "4967", "undirected": true }, { "source": "1316", "target": "391", "key": "4968", "undirected": true }, { "source": "1316", "target": "201", "key": "4969", "undirected": true }, { "source": "1316", "target": "216", "key": "4970", "undirected": true }, { "source": "1479", "target": "68", "key": "4971", "undirected": true }, { "source": "1479", "target": "696", "key": "4972", "undirected": true }, { "source": "1479", "target": "167", "key": "4973", "undirected": true }, { "source": "1479", "target": "391", "key": "4974", "undirected": true }, { "source": "1479", "target": "983", "key": "4975", "undirected": true }, { "source": "1479", "target": "170", "key": "4976", "undirected": true }, { "source": "1480", "target": "391", "key": "4977", "undirected": true }, { "source": "1480", "target": "1316", "key": "4978", "undirected": true }, { "source": "1480", "target": "1479", "key": "4979", "undirected": true }, { "source": "1480", "target": "919", "key": "4980", "undirected": true }, { "source": "1480", "target": "1317", "key": "4981", "undirected": true }, { "source": "1481", "target": "440", "key": "4982", "undirected": true }, { "source": "1481", "target": "1196", "key": "4983", "undirected": true }, { "source": "1482", "target": "211", "key": "4984", "undirected": true }, { "source": "1483", "target": "1077", "key": "4985", "undirected": true }, { "source": "1483", "target": "647", "key": "4986", "undirected": true }, { "source": "1483", "target": "1484", "key": "4987", "undirected": true }, { "source": "1483", "target": "1003", "key": "4988", "undirected": true }, { "source": "1483", "target": "1201", "key": "4989", "undirected": true }, { "source": "1483", "target": "1202", "key": "4990", "undirected": true }, { "source": "1483", "target": "648", "key": "4991", "undirected": true }, { "source": "1484", "target": "663", "key": "4992", "undirected": true }, { "source": "1201", "target": "569", "key": "4993", "undirected": true }, { "source": "1201", "target": "1077", "key": "4994", "undirected": true }, { "source": "1201", "target": "1003", "key": "4995", "undirected": true }, { "source": "1201", "target": "427", "key": "4996", "undirected": true }, { "source": "1201", "target": "159", "key": "4997", "undirected": true }, { "source": "1202", "target": "647", "key": "4998", "undirected": true }, { "source": "1202", "target": "648", "key": "4999", "undirected": true }, { "source": "1485", "target": "519", "key": "5000", "undirected": true }, { "source": "1485", "target": "64", "key": "5001", "undirected": true }, { "source": "1485", "target": "498", "key": "5002", "undirected": true }, { "source": "1485", "target": "120", "key": "5003", "undirected": true }, { "source": "1485", "target": "1", "key": "5004", "undirected": true }, { "source": "1485", "target": "50", "key": "5005", "undirected": true }, { "source": "1486", "target": "68", "key": "5006", "undirected": true }, { "source": "1486", "target": "130", "key": "5007", "undirected": true }, { "source": "1486", "target": "53", "key": "5008", "undirected": true }, { "source": "1486", "target": "591", "key": "5009", "undirected": true }, { "source": "1486", "target": "79", "key": "5010", "undirected": true }, { "source": "1486", "target": "651", "key": "5011", "undirected": true }, { "source": "1486", "target": "1109", "key": "5012", "undirected": true }, { "source": "1486", "target": "92", "key": "5013", "undirected": true }, { "source": "1487", "target": "79", "key": "5014", "undirected": true }, { "source": "1487", "target": "1488", "key": "5015", "undirected": true }, { "source": "1487", "target": "626", "key": "5016", "undirected": true }, { "source": "1487", "target": "1315", "key": "5017", "undirected": true }, { "source": "1489", "target": "1434", "key": "5018", "undirected": true }, { "source": "1489", "target": "1037", "key": "5019", "undirected": true }, { "source": "1489", "target": "1038", "key": "5020", "undirected": true }, { "source": "1489", "target": "206", "key": "5021", "undirected": true }, { "source": "1489", "target": "1039", "key": "5022", "undirected": true }, { "source": "1037", "target": "206", "key": "5023", "undirected": true }, { "source": "1037", "target": "1039", "key": "5024", "undirected": true }, { "source": "1037", "target": "1", "key": "5025", "undirected": true }, { "source": "1037", "target": "1434", "key": "5026", "undirected": true }, { "source": "1038", "target": "206", "key": "5027", "undirected": true }, { "source": "1038", "target": "1039", "key": "5028", "undirected": true }, { "source": "1038", "target": "1037", "key": "5029", "undirected": true }, { "source": "1490", "target": "27", "key": "5030", "undirected": true }, { "source": "1490", "target": "494", "key": "5031", "undirected": true }, { "source": "1490", "target": "759", "key": "5032", "undirected": true }, { "source": "1490", "target": "757", "key": "5033", "undirected": true }, { "source": "1490", "target": "758", "key": "5034", "undirected": true }, { "source": "1490", "target": "235", "key": "5035", "undirected": true }, { "source": "1490", "target": "607", "key": "5036", "undirected": true }, { "source": "1490", "target": "833", "key": "5037", "undirected": true }, { "source": "28", "target": "30", "key": "5038", "undirected": true }, { "source": "28", "target": "456", "key": "5039", "undirected": true }, { "source": "28", "target": "24", "key": "5040", "undirected": true }, { "source": "30", "target": "25", "key": "5041", "undirected": true }, { "source": "30", "target": "23", "key": "5042", "undirected": true }, { "source": "30", "target": "456", "key": "5043", "undirected": true }, { "source": "30", "target": "24", "key": "5044", "undirected": true }, { "source": "1491", "target": "1", "key": "5045", "undirected": true }, { "source": "1491", "target": "79", "key": "5046", "undirected": true }, { "source": "1476", "target": "900", "key": "5047", "undirected": true }, { "source": "1492", "target": "53", "key": "5048", "undirected": true }, { "source": "1492", "target": "104", "key": "5049", "undirected": true }, { "source": "1492", "target": "1493", "key": "5050", "undirected": true }, { "source": "1492", "target": "1494", "key": "5051", "undirected": true }, { "source": "1493", "target": "166", "key": "5052", "undirected": true }, { "source": "1493", "target": "53", "key": "5053", "undirected": true }, { "source": "1493", "target": "50", "key": "5054", "undirected": true }, { "source": "1493", "target": "262", "key": "5055", "undirected": true }, { "source": "1493", "target": "698", "key": "5056", "undirected": true }, { "source": "1190", "target": "96", "key": "5057", "undirected": true }, { "source": "1190", "target": "101", "key": "5058", "undirected": true }, { "source": "858", "target": "76", "key": "5059", "undirected": true }, { "source": "858", "target": "498", "key": "5060", "undirected": true }, { "source": "858", "target": "581", "key": "5061", "undirected": true }, { "source": "858", "target": "584", "key": "5062", "undirected": true }, { "source": "835", "target": "403", "key": "5063", "undirected": true }, { "source": "835", "target": "438", "key": "5064", "undirected": true }, { "source": "835", "target": "264", "key": "5065", "undirected": true }, { "source": "835", "target": "265", "key": "5066", "undirected": true }, { "source": "835", "target": "559", "key": "5067", "undirected": true }, { "source": "835", "target": "202", "key": "5068", "undirected": true }, { "source": "834", "target": "202", "key": "5069", "undirected": true }, { "source": "834", "target": "403", "key": "5070", "undirected": true }, { "source": "834", "target": "835", "key": "5071", "undirected": true }, { "source": "502", "target": "85", "key": "5072", "undirected": true }, { "source": "502", "target": "1284", "key": "5073", "undirected": true }, { "source": "502", "target": "444", "key": "5074", "undirected": true }, { "source": "502", "target": "555", "key": "5075", "undirected": true }, { "source": "502", "target": "870", "key": "5076", "undirected": true }, { "source": "502", "target": "109", "key": "5077", "undirected": true }, { "source": "1495", "target": "1496", "key": "5078", "undirected": true }, { "source": "1495", "target": "806", "key": "5079", "undirected": true }, { "source": "1495", "target": "1474", "key": "5080", "undirected": true }, { "source": "1497", "target": "76", "key": "5081", "undirected": true }, { "source": "1498", "target": "781", "key": "5082", "undirected": true }, { "source": "1498", "target": "655", "key": "5083", "undirected": true }, { "source": "1498", "target": "437", "key": "5084", "undirected": true }, { "source": "1498", "target": "567", "key": "5085", "undirected": true }, { "source": "1499", "target": "422", "key": "5086", "undirected": true }, { "source": "1499", "target": "280", "key": "5087", "undirected": true }, { "source": "1499", "target": "515", "key": "5088", "undirected": true }, { "source": "1499", "target": "437", "key": "5089", "undirected": true }, { "source": "1499", "target": "174", "key": "5090", "undirected": true }, { "source": "1499", "target": "606", "key": "5091", "undirected": true }, { "source": "1499", "target": "424", "key": "5092", "undirected": true }, { "source": "1499", "target": "657", "key": "5093", "undirected": true }, { "source": "1500", "target": "960", "key": "5094", "undirected": true }, { "source": "1500", "target": "961", "key": "5095", "undirected": true }, { "source": "1500", "target": "962", "key": "5096", "undirected": true }, { "source": "1500", "target": "705", "key": "5097", "undirected": true }, { "source": "1500", "target": "958", "key": "5098", "undirected": true }, { "source": "1500", "target": "959", "key": "5099", "undirected": true }, { "source": "1501", "target": "1502", "key": "5100", "undirected": true }, { "source": "1501", "target": "48", "key": "5101", "undirected": true }, { "source": "1501", "target": "49", "key": "5102", "undirected": true }, { "source": "1501", "target": "513", "key": "5103", "undirected": true }, { "source": "1503", "target": "1", "key": "5104", "undirected": true }, { "source": "1504", "target": "50", "key": "5105", "undirected": true }, { "source": "1451", "target": "310", "key": "5106", "undirected": true }, { "source": "1451", "target": "79", "key": "5107", "undirected": true }, { "source": "1451", "target": "185", "key": "5108", "undirected": true }, { "source": "1505", "target": "500", "key": "5109", "undirected": true }, { "source": "1505", "target": "1506", "key": "5110", "undirected": true }, { "source": "1505", "target": "254", "key": "5111", "undirected": true }, { "source": "302", "target": "301", "key": "5112", "undirected": true }, { "source": "302", "target": "296", "key": "5113", "undirected": true }, { "source": "302", "target": "182", "key": "5114", "undirected": true }, { "source": "302", "target": "256", "key": "5115", "undirected": true }, { "source": "183", "target": "296", "key": "5116", "undirected": true }, { "source": "183", "target": "79", "key": "5117", "undirected": true }, { "source": "183", "target": "182", "key": "5118", "undirected": true }, { "source": "183", "target": "302", "key": "5119", "undirected": true }, { "source": "183", "target": "325", "key": "5120", "undirected": true }, { "source": "183", "target": "966", "key": "5121", "undirected": true }, { "source": "184", "target": "79", "key": "5122", "undirected": true }, { "source": "184", "target": "181", "key": "5123", "undirected": true }, { "source": "184", "target": "325", "key": "5124", "undirected": true }, { "source": "184", "target": "892", "key": "5125", "undirected": true }, { "source": "753", "target": "310", "key": "5126", "undirected": true }, { "source": "753", "target": "79", "key": "5127", "undirected": true }, { "source": "753", "target": "638", "key": "5128", "undirected": true }, { "source": "753", "target": "45", "key": "5129", "undirected": true }, { "source": "753", "target": "312", "key": "5130", "undirected": true }, { "source": "753", "target": "852", "key": "5131", "undirected": true }, { "source": "753", "target": "185", "key": "5132", "undirected": true }, { "source": "913", "target": "1130", "key": "5133", "undirected": true }, { "source": "913", "target": "137", "key": "5134", "undirected": true }, { "source": "913", "target": "900", "key": "5135", "undirected": true }, { "source": "913", "target": "136", "key": "5136", "undirected": true }, { "source": "325", "target": "79", "key": "5137", "undirected": true }, { "source": "325", "target": "181", "key": "5138", "undirected": true }, { "source": "892", "target": "306", "key": "5139", "undirected": true }, { "source": "892", "target": "79", "key": "5140", "undirected": true }, { "source": "892", "target": "312", "key": "5141", "undirected": true }, { "source": "892", "target": "181", "key": "5142", "undirected": true }, { "source": "892", "target": "325", "key": "5143", "undirected": true }, { "source": "892", "target": "185", "key": "5144", "undirected": true }, { "source": "742", "target": "203", "key": "5145", "undirected": true }, { "source": "742", "target": "989", "key": "5146", "undirected": true }, { "source": "1507", "target": "79", "key": "5147", "undirected": true }, { "source": "1507", "target": "1508", "key": "5148", "undirected": true }, { "source": "1507", "target": "212", "key": "5149", "undirected": true }, { "source": "1507", "target": "325", "key": "5150", "undirected": true }, { "source": "1507", "target": "210", "key": "5151", "undirected": true }, { "source": "398", "target": "396", "key": "5152", "undirected": true }, { "source": "398", "target": "405", "key": "5153", "undirected": true }, { "source": "398", "target": "1244", "key": "5154", "undirected": true }, { "source": "398", "target": "397", "key": "5155", "undirected": true }, { "source": "398", "target": "48", "key": "5156", "undirected": true }, { "source": "398", "target": "409", "key": "5157", "undirected": true }, { "source": "398", "target": "49", "key": "5158", "undirected": true }, { "source": "398", "target": "50", "key": "5159", "undirected": true }, { "source": "256", "target": "182", "key": "5160", "undirected": true }, { "source": "256", "target": "302", "key": "5161", "undirected": true }, { "source": "256", "target": "183", "key": "5162", "undirected": true }, { "source": "256", "target": "966", "key": "5163", "undirected": true }, { "source": "256", "target": "296", "key": "5164", "undirected": true }, { "source": "590", "target": "113", "key": "5165", "undirected": true }, { "source": "590", "target": "589", "key": "5166", "undirected": true }, { "source": "590", "target": "47", "key": "5167", "undirected": true }, { "source": "590", "target": "267", "key": "5168", "undirected": true }, { "source": "590", "target": "374", "key": "5169", "undirected": true }, { "source": "590", "target": "49", "key": "5170", "undirected": true }, { "source": "590", "target": "513", "key": "5171", "undirected": true }, { "source": "590", "target": "51", "key": "5172", "undirected": true }, { "source": "590", "target": "116", "key": "5173", "undirected": true }, { "source": "374", "target": "113", "key": "5174", "undirected": true }, { "source": "374", "target": "589", "key": "5175", "undirected": true }, { "source": "374", "target": "119", "key": "5176", "undirected": true }, { "source": "374", "target": "47", "key": "5177", "undirected": true }, { "source": "374", "target": "267", "key": "5178", "undirected": true }, { "source": "374", "target": "590", "key": "5179", "undirected": true }, { "source": "374", "target": "49", "key": "5180", "undirected": true }, { "source": "374", "target": "513", "key": "5181", "undirected": true }, { "source": "49", "target": "182", "key": "5182", "undirected": true }, { "source": "49", "target": "48", "key": "5183", "undirected": true }, { "source": "49", "target": "513", "key": "5184", "undirected": true }, { "source": "49", "target": "50", "key": "5185", "undirected": true }, { "source": "49", "target": "280", "key": "5186", "undirected": true }, { "source": "49", "target": "61", "key": "5187", "undirected": true }, { "source": "49", "target": "66", "key": "5188", "undirected": true }, { "source": "49", "target": "281", "key": "5189", "undirected": true }, { "source": "1509", "target": "254", "key": "5190", "undirected": true }, { "source": "1509", "target": "113", "key": "5191", "undirected": true }, { "source": "1509", "target": "1293", "key": "5192", "undirected": true }, { "source": "1509", "target": "47", "key": "5193", "undirected": true }, { "source": "1509", "target": "267", "key": "5194", "undirected": true }, { "source": "1509", "target": "182", "key": "5195", "undirected": true }, { "source": "1509", "target": "370", "key": "5196", "undirected": true }, { "source": "1509", "target": "374", "key": "5197", "undirected": true }, { "source": "1510", "target": "113", "key": "5198", "undirected": true }, { "source": "1510", "target": "589", "key": "5199", "undirected": true }, { "source": "1510", "target": "1236", "key": "5200", "undirected": true }, { "source": "1510", "target": "47", "key": "5201", "undirected": true }, { "source": "1510", "target": "590", "key": "5202", "undirected": true }, { "source": "1510", "target": "374", "key": "5203", "undirected": true }, { "source": "1510", "target": "513", "key": "5204", "undirected": true }, { "source": "1510", "target": "279", "key": "5205", "undirected": true }, { "source": "513", "target": "335", "key": "5206", "undirected": true }, { "source": "513", "target": "49", "key": "5207", "undirected": true }, { "source": "513", "target": "50", "key": "5208", "undirected": true }, { "source": "1511", "target": "82", "key": "5209", "undirected": true }, { "source": "1512", "target": "82", "key": "5210", "undirected": true }, { "source": "1512", "target": "128", "key": "5211", "undirected": true }, { "source": "1512", "target": "1", "key": "5212", "undirected": true }, { "source": "1513", "target": "68", "key": "5213", "undirected": true }, { "source": "1513", "target": "668", "key": "5214", "undirected": true }, { "source": "1513", "target": "65", "key": "5215", "undirected": true }, { "source": "1513", "target": "1165", "key": "5216", "undirected": true }, { "source": "1513", "target": "366", "key": "5217", "undirected": true }, { "source": "1513", "target": "897", "key": "5218", "undirected": true }, { "source": "1514", "target": "1515", "key": "5219", "undirected": true }, { "source": "1514", "target": "162", "key": "5220", "undirected": true }, { "source": "1514", "target": "163", "key": "5221", "undirected": true }, { "source": "1514", "target": "1516", "key": "5222", "undirected": true }, { "source": "1514", "target": "1517", "key": "5223", "undirected": true }, { "source": "1514", "target": "1518", "key": "5224", "undirected": true }, { "source": "1514", "target": "164", "key": "5225", "undirected": true }, { "source": "1165", "target": "53", "key": "5226", "undirected": true }, { "source": "1165", "target": "668", "key": "5227", "undirected": true }, { "source": "1165", "target": "64", "key": "5228", "undirected": true }, { "source": "1165", "target": "65", "key": "5229", "undirected": true }, { "source": "1517", "target": "162", "key": "5230", "undirected": true }, { "source": "1517", "target": "163", "key": "5231", "undirected": true }, { "source": "1517", "target": "1515", "key": "5232", "undirected": true }, { "source": "1518", "target": "163", "key": "5233", "undirected": true }, { "source": "1518", "target": "959", "key": "5234", "undirected": true }, { "source": "1519", "target": "339", "key": "5235", "undirected": true }, { "source": "1519", "target": "51", "key": "5236", "undirected": true }, { "source": "1519", "target": "484", "key": "5237", "undirected": true }, { "source": "1519", "target": "759", "key": "5238", "undirected": true }, { "source": "1519", "target": "757", "key": "5239", "undirected": true }, { "source": "1519", "target": "732", "key": "5240", "undirected": true }, { "source": "1519", "target": "53", "key": "5241", "undirected": true }, { "source": "1519", "target": "607", "key": "5242", "undirected": true }, { "source": "1519", "target": "1015", "key": "5243", "undirected": true }, { "source": "1520", "target": "213", "key": "5244", "undirected": true }, { "source": "1520", "target": "560", "key": "5245", "undirected": true }, { "source": "1520", "target": "659", "key": "5246", "undirected": true }, { "source": "1520", "target": "1521", "key": "5247", "undirected": true }, { "source": "1522", "target": "1", "key": "5248", "undirected": true }, { "source": "1138", "target": "1137", "key": "5249", "undirected": true }, { "source": "1138", "target": "1123", "key": "5250", "undirected": true }, { "source": "1523", "target": "95", "key": "5251", "undirected": true }, { "source": "1523", "target": "96", "key": "5252", "undirected": true }, { "source": "1523", "target": "1123", "key": "5253", "undirected": true }, { "source": "1137", "target": "1123", "key": "5254", "undirected": true }, { "source": "1137", "target": "1138", "key": "5255", "undirected": true }, { "source": "171", "target": "65", "key": "5256", "undirected": true }, { "source": "171", "target": "1042", "key": "5257", "undirected": true }, { "source": "171", "target": "567", "key": "5258", "undirected": true }, { "source": "171", "target": "1138", "key": "5259", "undirected": true }, { "source": "171", "target": "1046", "key": "5260", "undirected": true }, { "source": "1524", "target": "1138", "key": "5261", "undirected": true }, { "source": "1525", "target": "1526", "key": "5262", "undirected": true }, { "source": "1525", "target": "1527", "key": "5263", "undirected": true }, { "source": "1525", "target": "1528", "key": "5264", "undirected": true }, { "source": "97", "target": "94", "key": "5265", "undirected": true }, { "source": "97", "target": "82", "key": "5266", "undirected": true }, { "source": "1529", "target": "1224", "key": "5267", "undirected": true }, { "source": "1529", "target": "1242", "key": "5268", "undirected": true }, { "source": "1529", "target": "1225", "key": "5269", "undirected": true }, { "source": "1529", "target": "215", "key": "5270", "undirected": true }, { "source": "1529", "target": "33", "key": "5271", "undirected": true }, { "source": "1530", "target": "641", "key": "5272", "undirected": true }, { "source": "1530", "target": "235", "key": "5273", "undirected": true }, { "source": "1530", "target": "53", "key": "5274", "undirected": true }, { "source": "1530", "target": "236", "key": "5275", "undirected": true }, { "source": "1530", "target": "1018", "key": "5276", "undirected": true }, { "source": "1531", "target": "662", "key": "5277", "undirected": true }, { "source": "1532", "target": "94", "key": "5278", "undirected": true }, { "source": "1532", "target": "1533", "key": "5279", "undirected": true }, { "source": "1534", "target": "82", "key": "5280", "undirected": true }, { "source": "1536", "target": "97", "key": "5281", "undirected": true }, { "source": "1536", "target": "109", "key": "5282", "undirected": true }, { "source": "1536", "target": "53", "key": "5283", "undirected": true }, { "source": "1536", "target": "96", "key": "5284", "undirected": true }, { "source": "1536", "target": "65", "key": "5285", "undirected": true }, { "source": "1536", "target": "104", "key": "5286", "undirected": true }, { "source": "1536", "target": "708", "key": "5287", "undirected": true }, { "source": "1536", "target": "250", "key": "5288", "undirected": true }, { "source": "1536", "target": "1165", "key": "5289", "undirected": true }, { "source": "1537", "target": "68", "key": "5290", "undirected": true }, { "source": "1537", "target": "156", "key": "5291", "undirected": true }, { "source": "1537", "target": "823", "key": "5292", "undirected": true }, { "source": "1537", "target": "1538", "key": "5293", "undirected": true }, { "source": "1537", "target": "469", "key": "5294", "undirected": true }, { "source": "1537", "target": "1256", "key": "5295", "undirected": true }, { "source": "1537", "target": "883", "key": "5296", "undirected": true }, { "source": "1537", "target": "458", "key": "5297", "undirected": true }, { "source": "1537", "target": "109", "key": "5298", "undirected": true }, { "source": "1539", "target": "1", "key": "5299", "undirected": true }, { "source": "1540", "target": "364", "key": "5300", "undirected": true }, { "source": "1540", "target": "427", "key": "5301", "undirected": true }, { "source": "1540", "target": "335", "key": "5302", "undirected": true }, { "source": "1540", "target": "747", "key": "5303", "undirected": true }, { "source": "1540", "target": "409", "key": "5304", "undirected": true }, { "source": "1540", "target": "1466", "key": "5305", "undirected": true }, { "source": "1540", "target": "1124", "key": "5306", "undirected": true }, { "source": "1540", "target": "344", "key": "5307", "undirected": true }, { "source": "161", "target": "434", "key": "5308", "undirected": true }, { "source": "161", "target": "435", "key": "5309", "undirected": true }, { "source": "161", "target": "641", "key": "5310", "undirected": true }, { "source": "161", "target": "642", "key": "5311", "undirected": true }, { "source": "161", "target": "1541", "key": "5312", "undirected": true }, { "source": "1357", "target": "367", "key": "5313", "undirected": true }, { "source": "1357", "target": "185", "key": "5314", "undirected": true }, { "source": "1357", "target": "899", "key": "5315", "undirected": true }, { "source": "640", "target": "174", "key": "5316", "undirected": true }, { "source": "640", "target": "106", "key": "5317", "undirected": true }, { "source": "640", "target": "1140", "key": "5318", "undirected": true }, { "source": "640", "target": "161", "key": "5319", "undirected": true }, { "source": "640", "target": "641", "key": "5320", "undirected": true }, { "source": "640", "target": "642", "key": "5321", "undirected": true }, { "source": "641", "target": "640", "key": "5322", "undirected": true }, { "source": "641", "target": "642", "key": "5323", "undirected": true }, { "source": "924", "target": "1379", "key": "5324", "undirected": true }, { "source": "924", "target": "82", "key": "5325", "undirected": true }, { "source": "924", "target": "53", "key": "5326", "undirected": true }, { "source": "924", "target": "1542", "key": "5327", "undirected": true }, { "source": "656", "target": "423", "key": "5328", "undirected": true }, { "source": "656", "target": "654", "key": "5329", "undirected": true }, { "source": "656", "target": "424", "key": "5330", "undirected": true }, { "source": "656", "target": "82", "key": "5331", "undirected": true }, { "source": "1543", "target": "82", "key": "5332", "undirected": true }, { "source": "1543", "target": "99", "key": "5333", "undirected": true }, { "source": "1543", "target": "453", "key": "5334", "undirected": true }, { "source": "1543", "target": "65", "key": "5335", "undirected": true }, { "source": "1543", "target": "708", "key": "5336", "undirected": true }, { "source": "1543", "target": "250", "key": "5337", "undirected": true }, { "source": "1543", "target": "251", "key": "5338", "undirected": true }, { "source": "1543", "target": "109", "key": "5339", "undirected": true }, { "source": "1544", "target": "76", "key": "5340", "undirected": true }, { "source": "1544", "target": "82", "key": "5341", "undirected": true }, { "source": "1213", "target": "761", "key": "5342", "undirected": true }, { "source": "1213", "target": "82", "key": "5343", "undirected": true }, { "source": "132", "target": "53", "key": "5344", "undirected": true }, { "source": "132", "target": "1442", "key": "5345", "undirected": true }, { "source": "248", "target": "175", "key": "5346", "undirected": true }, { "source": "248", "target": "53", "key": "5347", "undirected": true }, { "source": "248", "target": "1", "key": "5348", "undirected": true }, { "source": "248", "target": "247", "key": "5349", "undirected": true }, { "source": "1545", "target": "1546", "key": "5350", "undirected": true }, { "source": "1545", "target": "1547", "key": "5351", "undirected": true }, { "source": "1545", "target": "772", "key": "5352", "undirected": true }, { "source": "1545", "target": "159", "key": "5353", "undirected": true }, { "source": "1419", "target": "645", "key": "5354", "undirected": true }, { "source": "1548", "target": "1", "key": "5355", "undirected": true }, { "source": "1548", "target": "5", "key": "5356", "undirected": true }, { "source": "826", "target": "177", "key": "5357", "undirected": true }, { "source": "826", "target": "79", "key": "5358", "undirected": true }, { "source": "826", "target": "626", "key": "5359", "undirected": true }, { "source": "826", "target": "312", "key": "5360", "undirected": true }, { "source": "1177", "target": "505", "key": "5361", "undirected": true }, { "source": "1177", "target": "427", "key": "5362", "undirected": true }, { "source": "1177", "target": "493", "key": "5363", "undirected": true }, { "source": "1177", "target": "569", "key": "5364", "undirected": true }, { "source": "1549", "target": "1073", "key": "5365", "undirected": true }, { "source": "164", "target": "162", "key": "5366", "undirected": true }, { "source": "458", "target": "696", "key": "5367", "undirected": true }, { "source": "458", "target": "915", "key": "5368", "undirected": true }, { "source": "458", "target": "167", "key": "5369", "undirected": true }, { "source": "458", "target": "883", "key": "5370", "undirected": true }, { "source": "458", "target": "697", "key": "5371", "undirected": true }, { "source": "1550", "target": "915", "key": "5372", "undirected": true }, { "source": "1550", "target": "883", "key": "5373", "undirected": true }, { "source": "1550", "target": "68", "key": "5374", "undirected": true }, { "source": "1550", "target": "707", "key": "5375", "undirected": true }, { "source": "1550", "target": "65", "key": "5376", "undirected": true }, { "source": "1550", "target": "106", "key": "5377", "undirected": true }, { "source": "1550", "target": "918", "key": "5378", "undirected": true }, { "source": "105", "target": "53", "key": "5379", "undirected": true }, { "source": "105", "target": "64", "key": "5380", "undirected": true }, { "source": "105", "target": "65", "key": "5381", "undirected": true }, { "source": "105", "target": "93", "key": "5382", "undirected": true }, { "source": "105", "target": "592", "key": "5383", "undirected": true }, { "source": "105", "target": "50", "key": "5384", "undirected": true }, { "source": "105", "target": "82", "key": "5385", "undirected": true }, { "source": "1551", "target": "439", "key": "5386", "undirected": true }, { "source": "195", "target": "194", "key": "5387", "undirected": true }, { "source": "195", "target": "272", "key": "5388", "undirected": true }, { "source": "195", "target": "450", "key": "5389", "undirected": true }, { "source": "195", "target": "429", "key": "5390", "undirected": true }, { "source": "195", "target": "193", "key": "5391", "undirected": true }, { "source": "195", "target": "448", "key": "5392", "undirected": true }, { "source": "195", "target": "449", "key": "5393", "undirected": true }, { "source": "1552", "target": "128", "key": "5394", "undirected": true }, { "source": "1552", "target": "970", "key": "5395", "undirected": true }, { "source": "1552", "target": "217", "key": "5396", "undirected": true }, { "source": "672", "target": "67", "key": "5397", "undirected": true }, { "source": "672", "target": "105", "key": "5398", "undirected": true }, { "source": "672", "target": "50", "key": "5399", "undirected": true }, { "source": "672", "target": "451", "key": "5400", "undirected": true }, { "source": "672", "target": "53", "key": "5401", "undirected": true }, { "source": "672", "target": "118", "key": "5402", "undirected": true }, { "source": "672", "target": "64", "key": "5403", "undirected": true }, { "source": "672", "target": "65", "key": "5404", "undirected": true }, { "source": "672", "target": "93", "key": "5405", "undirected": true }, { "source": "1553", "target": "165", "key": "5406", "undirected": true }, { "source": "1553", "target": "166", "key": "5407", "undirected": true }, { "source": "1553", "target": "389", "key": "5408", "undirected": true }, { "source": "1553", "target": "1384", "key": "5409", "undirected": true }, { "source": "1553", "target": "167", "key": "5410", "undirected": true }, { "source": "812", "target": "110", "key": "5411", "undirected": true }, { "source": "812", "target": "96", "key": "5412", "undirected": true }, { "source": "812", "target": "111", "key": "5413", "undirected": true }, { "source": "91", "target": "541", "key": "5414", "undirected": true }, { "source": "91", "target": "704", "key": "5415", "undirected": true }, { "source": "1554", "target": "68", "key": "5416", "undirected": true }, { "source": "1554", "target": "53", "key": "5417", "undirected": true }, { "source": "1554", "target": "65", "key": "5418", "undirected": true }, { "source": "1554", "target": "901", "key": "5419", "undirected": true }, { "source": "1554", "target": "903", "key": "5420", "undirected": true }, { "source": "1554", "target": "938", "key": "5421", "undirected": true }, { "source": "1554", "target": "132", "key": "5422", "undirected": true }, { "source": "1555", "target": "53", "key": "5423", "undirected": true }, { "source": "1555", "target": "644", "key": "5424", "undirected": true }, { "source": "1555", "target": "498", "key": "5425", "undirected": true }, { "source": "1555", "target": "428", "key": "5426", "undirected": true }, { "source": "1555", "target": "1379", "key": "5427", "undirected": true }, { "source": "1556", "target": "219", "key": "5428", "undirected": true }, { "source": "1556", "target": "967", "key": "5429", "undirected": true }, { "source": "1556", "target": "1", "key": "5430", "undirected": true }, { "source": "1556", "target": "182", "key": "5431", "undirected": true }, { "source": "1556", "target": "1557", "key": "5432", "undirected": true }, { "source": "1556", "target": "1410", "key": "5433", "undirected": true }, { "source": "1027", "target": "967", "key": "5434", "undirected": true }, { "source": "1027", "target": "966", "key": "5435", "undirected": true }, { "source": "754", "target": "136", "key": "5436", "undirected": true }, { "source": "754", "target": "638", "key": "5437", "undirected": true }, { "source": "754", "target": "312", "key": "5438", "undirected": true }, { "source": "754", "target": "185", "key": "5439", "undirected": true }, { "source": "754", "target": "137", "key": "5440", "undirected": true }, { "source": "1087", "target": "53", "key": "5441", "undirected": true }, { "source": "1087", "target": "79", "key": "5442", "undirected": true }, { "source": "1087", "target": "635", "key": "5443", "undirected": true }, { "source": "1558", "target": "128", "key": "5444", "undirected": true }, { "source": "1558", "target": "79", "key": "5445", "undirected": true }, { "source": "1558", "target": "1", "key": "5446", "undirected": true }, { "source": "1558", "target": "82", "key": "5447", "undirected": true }, { "source": "728", "target": "363", "key": "5448", "undirected": true }, { "source": "728", "target": "113", "key": "5449", "undirected": true }, { "source": "728", "target": "597", "key": "5450", "undirected": true }, { "source": "728", "target": "104", "key": "5451", "undirected": true }, { "source": "728", "target": "114", "key": "5452", "undirected": true }, { "source": "728", "target": "116", "key": "5453", "undirected": true }, { "source": "366", "target": "560", "key": "5454", "undirected": true }, { "source": "366", "target": "598", "key": "5455", "undirected": true }, { "source": "366", "target": "65", "key": "5456", "undirected": true }, { "source": "366", "target": "104", "key": "5457", "undirected": true }, { "source": "366", "target": "114", "key": "5458", "undirected": true }, { "source": "366", "target": "728", "key": "5459", "undirected": true }, { "source": "897", "target": "90", "key": "5460", "undirected": true }, { "source": "897", "target": "64", "key": "5461", "undirected": true }, { "source": "897", "target": "91", "key": "5462", "undirected": true }, { "source": "1559", "target": "123", "key": "5463", "undirected": true }, { "source": "1559", "target": "124", "key": "5464", "undirected": true }, { "source": "1559", "target": "125", "key": "5465", "undirected": true }, { "source": "1559", "target": "1", "key": "5466", "undirected": true }, { "source": "50", "target": "68", "key": "5467", "undirected": true }, { "source": "50", "target": "53", "key": "5468", "undirected": true }, { "source": "50", "target": "591", "key": "5469", "undirected": true }, { "source": "50", "target": "64", "key": "5470", "undirected": true }, { "source": "50", "target": "65", "key": "5471", "undirected": true }, { "source": "50", "target": "104", "key": "5472", "undirected": true }, { "source": "50", "target": "66", "key": "5473", "undirected": true }, { "source": "50", "target": "67", "key": "5474", "undirected": true }, { "source": "50", "target": "111", "key": "5475", "undirected": true }, { "source": "50", "target": "105", "key": "5476", "undirected": true }, { "source": "1560", "target": "609", "key": "5477", "undirected": true }, { "source": "1560", "target": "1131", "key": "5478", "undirected": true }, { "source": "1560", "target": "636", "key": "5479", "undirected": true }, { "source": "1560", "target": "1561", "key": "5480", "undirected": true }, { "source": "1560", "target": "1002", "key": "5481", "undirected": true }, { "source": "1560", "target": "433", "key": "5482", "undirected": true }, { "source": "1560", "target": "1001", "key": "5483", "undirected": true }, { "source": "108", "target": "68", "key": "5484", "undirected": true }, { "source": "108", "target": "61", "key": "5485", "undirected": true }, { "source": "108", "target": "53", "key": "5486", "undirected": true }, { "source": "108", "target": "591", "key": "5487", "undirected": true }, { "source": "108", "target": "118", "key": "5488", "undirected": true }, { "source": "108", "target": "64", "key": "5489", "undirected": true }, { "source": "108", "target": "65", "key": "5490", "undirected": true }, { "source": "108", "target": "50", "key": "5491", "undirected": true }, { "source": "1562", "target": "76", "key": "5492", "undirected": true }, { "source": "1562", "target": "159", "key": "5493", "undirected": true }, { "source": "1562", "target": "596", "key": "5494", "undirected": true }, { "source": "1562", "target": "571", "key": "5495", "undirected": true }, { "source": "1563", "target": "1564", "key": "5496", "undirected": true }, { "source": "1563", "target": "1565", "key": "5497", "undirected": true }, { "source": "1563", "target": "258", "key": "5498", "undirected": true }, { "source": "1563", "target": "1084", "key": "5499", "undirected": true }, { "source": "1563", "target": "1566", "key": "5500", "undirected": true }, { "source": "1563", "target": "513", "key": "5501", "undirected": true }, { "source": "1567", "target": "571", "key": "5502", "undirected": true }, { "source": "1567", "target": "238", "key": "5503", "undirected": true }, { "source": "1567", "target": "159", "key": "5504", "undirected": true }, { "source": "1567", "target": "174", "key": "5505", "undirected": true }, { "source": "1567", "target": "97", "key": "5506", "undirected": true }, { "source": "1568", "target": "772", "key": "5507", "undirected": true }, { "source": "1568", "target": "570", "key": "5508", "undirected": true }, { "source": "1568", "target": "258", "key": "5509", "undirected": true }, { "source": "1568", "target": "97", "key": "5510", "undirected": true }, { "source": "1568", "target": "1567", "key": "5511", "undirected": true }, { "source": "1568", "target": "1569", "key": "5512", "undirected": true }, { "source": "1568", "target": "571", "key": "5513", "undirected": true }, { "source": "1569", "target": "772", "key": "5514", "undirected": true }, { "source": "1569", "target": "159", "key": "5515", "undirected": true }, { "source": "1569", "target": "1567", "key": "5516", "undirected": true }, { "source": "1547", "target": "258", "key": "5517", "undirected": true }, { "source": "1547", "target": "571", "key": "5518", "undirected": true }, { "source": "1547", "target": "238", "key": "5519", "undirected": true }, { "source": "1547", "target": "648", "key": "5520", "undirected": true }, { "source": "1547", "target": "159", "key": "5521", "undirected": true }, { "source": "571", "target": "159", "key": "5522", "undirected": true }, { "source": "571", "target": "570", "key": "5523", "undirected": true }, { "source": "1570", "target": "159", "key": "5524", "undirected": true }, { "source": "1570", "target": "570", "key": "5525", "undirected": true }, { "source": "1570", "target": "96", "key": "5526", "undirected": true }, { "source": "1570", "target": "97", "key": "5527", "undirected": true }, { "source": "1570", "target": "82", "key": "5528", "undirected": true }, { "source": "1231", "target": "230", "key": "5529", "undirected": true }, { "source": "1231", "target": "354", "key": "5530", "undirected": true }, { "source": "1571", "target": "310", "key": "5531", "undirected": true }, { "source": "1571", "target": "311", "key": "5532", "undirected": true }, { "source": "1571", "target": "79", "key": "5533", "undirected": true }, { "source": "1571", "target": "723", "key": "5534", "undirected": true }, { "source": "1571", "target": "45", "key": "5535", "undirected": true }, { "source": "1571", "target": "329", "key": "5536", "undirected": true }, { "source": "1571", "target": "46", "key": "5537", "undirected": true }, { "source": "1571", "target": "367", "key": "5538", "undirected": true }, { "source": "1571", "target": "185", "key": "5539", "undirected": true }, { "source": "1571", "target": "1572", "key": "5540", "undirected": true }, { "source": "1573", "target": "66", "key": "5541", "undirected": true }, { "source": "1573", "target": "48", "key": "5542", "undirected": true }, { "source": "1573", "target": "334", "key": "5543", "undirected": true }, { "source": "1573", "target": "49", "key": "5544", "undirected": true }, { "source": "1573", "target": "50", "key": "5545", "undirected": true }, { "source": "1573", "target": "51", "key": "5546", "undirected": true }, { "source": "1573", "target": "484", "key": "5547", "undirected": true }, { "source": "1573", "target": "61", "key": "5548", "undirected": true }, { "source": "1573", "target": "53", "key": "5549", "undirected": true }, { "source": "1573", "target": "65", "key": "5550", "undirected": true }, { "source": "770", "target": "707", "key": "5551", "undirected": true }, { "source": "770", "target": "769", "key": "5552", "undirected": true }, { "source": "770", "target": "708", "key": "5553", "undirected": true }, { "source": "770", "target": "768", "key": "5554", "undirected": true }, { "source": "770", "target": "771", "key": "5555", "undirected": true }, { "source": "1574", "target": "68", "key": "5556", "undirected": true }, { "source": "1574", "target": "53", "key": "5557", "undirected": true }, { "source": "1574", "target": "174", "key": "5558", "undirected": true }, { "source": "1574", "target": "65", "key": "5559", "undirected": true }, { "source": "1574", "target": "114", "key": "5560", "undirected": true }, { "source": "1574", "target": "461", "key": "5561", "undirected": true }, { "source": "273", "target": "274", "key": "5562", "undirected": true }, { "source": "273", "target": "36", "key": "5563", "undirected": true }, { "source": "273", "target": "37", "key": "5564", "undirected": true }, { "source": "273", "target": "38", "key": "5565", "undirected": true }, { "source": "273", "target": "271", "key": "5566", "undirected": true }, { "source": "273", "target": "40", "key": "5567", "undirected": true }, { "source": "1012", "target": "53", "key": "5568", "undirected": true }, { "source": "1012", "target": "709", "key": "5569", "undirected": true }, { "source": "1012", "target": "65", "key": "5570", "undirected": true }, { "source": "1012", "target": "104", "key": "5571", "undirected": true }, { "source": "1012", "target": "111", "key": "5572", "undirected": true }, { "source": "1012", "target": "334", "key": "5573", "undirected": true }, { "source": "1012", "target": "50", "key": "5574", "undirected": true }, { "source": "1012", "target": "103", "key": "5575", "undirected": true }, { "source": "585", "target": "110", "key": "5576", "undirected": true }, { "source": "51", "target": "1015", "key": "5577", "undirected": true }, { "source": "51", "target": "49", "key": "5578", "undirected": true }, { "source": "51", "target": "513", "key": "5579", "undirected": true }, { "source": "51", "target": "50", "key": "5580", "undirected": true }, { "source": "51", "target": "61", "key": "5581", "undirected": true }, { "source": "51", "target": "408", "key": "5582", "undirected": true }, { "source": "51", "target": "53", "key": "5583", "undirected": true }, { "source": "51", "target": "281", "key": "5584", "undirected": true }, { "source": "51", "target": "119", "key": "5585", "undirected": true }, { "source": "484", "target": "166", "key": "5586", "undirected": true }, { "source": "484", "target": "411", "key": "5587", "undirected": true }, { "source": "484", "target": "281", "key": "5588", "undirected": true }, { "source": "484", "target": "119", "key": "5589", "undirected": true }, { "source": "484", "target": "1401", "key": "5590", "undirected": true }, { "source": "484", "target": "334", "key": "5591", "undirected": true }, { "source": "484", "target": "49", "key": "5592", "undirected": true }, { "source": "484", "target": "51", "key": "5593", "undirected": true }, { "source": "1329", "target": "422", "key": "5594", "undirected": true }, { "source": "1329", "target": "437", "key": "5595", "undirected": true }, { "source": "1329", "target": "567", "key": "5596", "undirected": true }, { "source": "1329", "target": "654", "key": "5597", "undirected": true }, { "source": "1329", "target": "1", "key": "5598", "undirected": true }, { "source": "1329", "target": "424", "key": "5599", "undirected": true }, { "source": "1329", "target": "128", "key": "5600", "undirected": true }, { "source": "1575", "target": "259", "key": "5601", "undirected": true }, { "source": "1575", "target": "281", "key": "5602", "undirected": true }, { "source": "1575", "target": "801", "key": "5603", "undirected": true }, { "source": "1575", "target": "49", "key": "5604", "undirected": true }, { "source": "1575", "target": "513", "key": "5605", "undirected": true }, { "source": "1575", "target": "457", "key": "5606", "undirected": true }, { "source": "1576", "target": "68", "key": "5607", "undirected": true }, { "source": "1576", "target": "216", "key": "5608", "undirected": true }, { "source": "1576", "target": "1117", "key": "5609", "undirected": true }, { "source": "1576", "target": "1319", "key": "5610", "undirected": true }, { "source": "1576", "target": "1401", "key": "5611", "undirected": true }, { "source": "1576", "target": "201", "key": "5612", "undirected": true }, { "source": "1577", "target": "1373", "key": "5613", "undirected": true }, { "source": "1577", "target": "82", "key": "5614", "undirected": true }, { "source": "1577", "target": "129", "key": "5615", "undirected": true }, { "source": "1577", "target": "715", "key": "5616", "undirected": true }, { "source": "1577", "target": "710", "key": "5617", "undirected": true }, { "source": "1577", "target": "712", "key": "5618", "undirected": true }, { "source": "1577", "target": "1135", "key": "5619", "undirected": true }, { "source": "1577", "target": "441", "key": "5620", "undirected": true }, { "source": "1577", "target": "172", "key": "5621", "undirected": true }, { "source": "1578", "target": "53", "key": "5622", "undirected": true }, { "source": "1578", "target": "105", "key": "5623", "undirected": true }, { "source": "1578", "target": "82", "key": "5624", "undirected": true }, { "source": "1279", "target": "79", "key": "5625", "undirected": true }, { "source": "1279", "target": "618", "key": "5626", "undirected": true }, { "source": "1279", "target": "1579", "key": "5627", "undirected": true }, { "source": "1279", "target": "1282", "key": "5628", "undirected": true }, { "source": "1279", "target": "1248", "key": "5629", "undirected": true }, { "source": "1279", "target": "1249", "key": "5630", "undirected": true }, { "source": "1579", "target": "1279", "key": "5631", "undirected": true }, { "source": "1579", "target": "1282", "key": "5632", "undirected": true }, { "source": "1579", "target": "1249", "key": "5633", "undirected": true }, { "source": "1579", "target": "79", "key": "5634", "undirected": true }, { "source": "1579", "target": "618", "key": "5635", "undirected": true }, { "source": "1291", "target": "218", "key": "5636", "undirected": true }, { "source": "1291", "target": "166", "key": "5637", "undirected": true }, { "source": "1291", "target": "279", "key": "5638", "undirected": true }, { "source": "1291", "target": "983", "key": "5639", "undirected": true }, { "source": "1291", "target": "334", "key": "5640", "undirected": true }, { "source": "1291", "target": "585", "key": "5641", "undirected": true }, { "source": "1291", "target": "1580", "key": "5642", "undirected": true }, { "source": "1291", "target": "1292", "key": "5643", "undirected": true }, { "source": "1291", "target": "1581", "key": "5644", "undirected": true }, { "source": "1582", "target": "1292", "key": "5645", "undirected": true }, { "source": "1582", "target": "1581", "key": "5646", "undirected": true }, { "source": "1582", "target": "1580", "key": "5647", "undirected": true }, { "source": "1580", "target": "1291", "key": "5648", "undirected": true }, { "source": "1580", "target": "1582", "key": "5649", "undirected": true }, { "source": "1580", "target": "1292", "key": "5650", "undirected": true }, { "source": "1580", "target": "1581", "key": "5651", "undirected": true }, { "source": "1292", "target": "1581", "key": "5652", "undirected": true }, { "source": "1292", "target": "218", "key": "5653", "undirected": true }, { "source": "1292", "target": "983", "key": "5654", "undirected": true }, { "source": "1292", "target": "334", "key": "5655", "undirected": true }, { "source": "1292", "target": "585", "key": "5656", "undirected": true }, { "source": "1292", "target": "1291", "key": "5657", "undirected": true }, { "source": "1292", "target": "1582", "key": "5658", "undirected": true }, { "source": "1292", "target": "1580", "key": "5659", "undirected": true }, { "source": "1581", "target": "166", "key": "5660", "undirected": true }, { "source": "1581", "target": "585", "key": "5661", "undirected": true }, { "source": "1583", "target": "166", "key": "5662", "undirected": true }, { "source": "1583", "target": "551", "key": "5663", "undirected": true }, { "source": "1583", "target": "744", "key": "5664", "undirected": true }, { "source": "1583", "target": "875", "key": "5665", "undirected": true }, { "source": "1583", "target": "241", "key": "5666", "undirected": true }, { "source": "1583", "target": "936", "key": "5667", "undirected": true }, { "source": "1583", "target": "409", "key": "5668", "undirected": true }, { "source": "1584", "target": "1060", "key": "5669", "undirected": true }, { "source": "1584", "target": "1219", "key": "5670", "undirected": true }, { "source": "1585", "target": "122", "key": "5671", "undirected": true }, { "source": "1585", "target": "1", "key": "5672", "undirected": true }, { "source": "1585", "target": "1586", "key": "5673", "undirected": true }, { "source": "1587", "target": "18", "key": "5674", "undirected": true }, { "source": "1043", "target": "567", "key": "5675", "undirected": true }, { "source": "578", "target": "68", "key": "5676", "undirected": true }, { "source": "578", "target": "519", "key": "5677", "undirected": true }, { "source": "578", "target": "580", "key": "5678", "undirected": true }, { "source": "578", "target": "241", "key": "5679", "undirected": true }, { "source": "578", "target": "576", "key": "5680", "undirected": true }, { "source": "578", "target": "120", "key": "5681", "undirected": true }, { "source": "578", "target": "577", "key": "5682", "undirected": true }, { "source": "578", "target": "585", "key": "5683", "undirected": true }, { "source": "697", "target": "915", "key": "5684", "undirected": true }, { "source": "697", "target": "883", "key": "5685", "undirected": true }, { "source": "697", "target": "170", "key": "5686", "undirected": true }, { "source": "697", "target": "846", "key": "5687", "undirected": true }, { "source": "846", "target": "883", "key": "5688", "undirected": true }, { "source": "846", "target": "935", "key": "5689", "undirected": true }, { "source": "1008", "target": "121", "key": "5690", "undirected": true }, { "source": "1008", "target": "344", "key": "5691", "undirected": true }, { "source": "1008", "target": "422", "key": "5692", "undirected": true }, { "source": "1008", "target": "437", "key": "5693", "undirected": true }, { "source": "1008", "target": "1", "key": "5694", "undirected": true }, { "source": "1008", "target": "424", "key": "5695", "undirected": true }, { "source": "1588", "target": "53", "key": "5696", "undirected": true }, { "source": "1588", "target": "96", "key": "5697", "undirected": true }, { "source": "1588", "target": "498", "key": "5698", "undirected": true }, { "source": "1588", "target": "65", "key": "5699", "undirected": true }, { "source": "1588", "target": "1379", "key": "5700", "undirected": true }, { "source": "1588", "target": "109", "key": "5701", "undirected": true }, { "source": "1588", "target": "68", "key": "5702", "undirected": true }, { "source": "1589", "target": "114", "key": "5703", "undirected": true }, { "source": "1589", "target": "567", "key": "5704", "undirected": true }, { "source": "1589", "target": "427", "key": "5705", "undirected": true }, { "source": "1589", "target": "53", "key": "5706", "undirected": true }, { "source": "1589", "target": "118", "key": "5707", "undirected": true }, { "source": "1589", "target": "65", "key": "5708", "undirected": true }, { "source": "1589", "target": "569", "key": "5709", "undirected": true }, { "source": "1589", "target": "904", "key": "5710", "undirected": true }, { "source": "1589", "target": "104", "key": "5711", "undirected": true }, { "source": "1590", "target": "422", "key": "5712", "undirected": true }, { "source": "1590", "target": "64", "key": "5713", "undirected": true }, { "source": "1590", "target": "93", "key": "5714", "undirected": true }, { "source": "1590", "target": "567", "key": "5715", "undirected": true }, { "source": "1590", "target": "606", "key": "5716", "undirected": true }, { "source": "1590", "target": "430", "key": "5717", "undirected": true }, { "source": "1590", "target": "82", "key": "5718", "undirected": true }, { "source": "692", "target": "1", "key": "5719", "undirected": true }, { "source": "109", "target": "964", "key": "5720", "undirected": true }, { "source": "109", "target": "101", "key": "5721", "undirected": true }, { "source": "109", "target": "150", "key": "5722", "undirected": true }, { "source": "1591", "target": "53", "key": "5723", "undirected": true }, { "source": "1591", "target": "118", "key": "5724", "undirected": true }, { "source": "1591", "target": "65", "key": "5725", "undirected": true }, { "source": "1591", "target": "131", "key": "5726", "undirected": true }, { "source": "1591", "target": "904", "key": "5727", "undirected": true }, { "source": "1591", "target": "104", "key": "5728", "undirected": true }, { "source": "1591", "target": "114", "key": "5729", "undirected": true }, { "source": "1591", "target": "567", "key": "5730", "undirected": true }, { "source": "1591", "target": "50", "key": "5731", "undirected": true }, { "source": "1591", "target": "109", "key": "5732", "undirected": true }, { "source": "172", "target": "712", "key": "5733", "undirected": true }, { "source": "172", "target": "101", "key": "5734", "undirected": true }, { "source": "172", "target": "882", "key": "5735", "undirected": true }, { "source": "172", "target": "441", "key": "5736", "undirected": true }, { "source": "172", "target": "109", "key": "5737", "undirected": true }, { "source": "172", "target": "579", "key": "5738", "undirected": true }, { "source": "172", "target": "82", "key": "5739", "undirected": true }, { "source": "172", "target": "439", "key": "5740", "undirected": true }, { "source": "172", "target": "84", "key": "5741", "undirected": true }, { "source": "1592", "target": "964", "key": "5742", "undirected": true }, { "source": "1592", "target": "567", "key": "5743", "undirected": true }, { "source": "1592", "target": "101", "key": "5744", "undirected": true }, { "source": "1592", "target": "150", "key": "5745", "undirected": true }, { "source": "1592", "target": "109", "key": "5746", "undirected": true }, { "source": "1593", "target": "422", "key": "5747", "undirected": true }, { "source": "1593", "target": "118", "key": "5748", "undirected": true }, { "source": "1593", "target": "437", "key": "5749", "undirected": true }, { "source": "1593", "target": "567", "key": "5750", "undirected": true }, { "source": "1593", "target": "101", "key": "5751", "undirected": true }, { "source": "1593", "target": "654", "key": "5752", "undirected": true }, { "source": "1593", "target": "1329", "key": "5753", "undirected": true }, { "source": "1593", "target": "109", "key": "5754", "undirected": true }, { "source": "1593", "target": "175", "key": "5755", "undirected": true }, { "source": "1594", "target": "101", "key": "5756", "undirected": true }, { "source": "1594", "target": "109", "key": "5757", "undirected": true }, { "source": "1594", "target": "172", "key": "5758", "undirected": true }, { "source": "1594", "target": "95", "key": "5759", "undirected": true }, { "source": "1594", "target": "68", "key": "5760", "undirected": true }, { "source": "1594", "target": "76", "key": "5761", "undirected": true }, { "source": "1594", "target": "53", "key": "5762", "undirected": true }, { "source": "1594", "target": "498", "key": "5763", "undirected": true }, { "source": "52", "target": "68", "key": "5764", "undirected": true }, { "source": "52", "target": "53", "key": "5765", "undirected": true }, { "source": "52", "target": "554", "key": "5766", "undirected": true }, { "source": "52", "target": "65", "key": "5767", "undirected": true }, { "source": "52", "target": "114", "key": "5768", "undirected": true }, { "source": "52", "target": "67", "key": "5769", "undirected": true }, { "source": "52", "target": "1429", "key": "5770", "undirected": true }, { "source": "1595", "target": "1394", "key": "5771", "undirected": true }, { "source": "1595", "target": "97", "key": "5772", "undirected": true }, { "source": "1595", "target": "759", "key": "5773", "undirected": true }, { "source": "759", "target": "695", "key": "5774", "undirected": true }, { "source": "759", "target": "109", "key": "5775", "undirected": true }, { "source": "759", "target": "284", "key": "5776", "undirected": true }, { "source": "1596", "target": "759", "key": "5777", "undirected": true }, { "source": "1597", "target": "519", "key": "5778", "undirected": true }, { "source": "1597", "target": "634", "key": "5779", "undirected": true }, { "source": "1597", "target": "66", "key": "5780", "undirected": true }, { "source": "1597", "target": "405", "key": "5781", "undirected": true }, { "source": "1597", "target": "1396", "key": "5782", "undirected": true }, { "source": "1597", "target": "409", "key": "5783", "undirected": true }, { "source": "1597", "target": "1458", "key": "5784", "undirected": true }, { "source": "1598", "target": "354", "key": "5785", "undirected": true }, { "source": "1598", "target": "76", "key": "5786", "undirected": true }, { "source": "1598", "target": "1132", "key": "5787", "undirected": true }, { "source": "1599", "target": "890", "key": "5788", "undirected": true }, { "source": "1599", "target": "662", "key": "5789", "undirected": true }, { "source": "1599", "target": "659", "key": "5790", "undirected": true }, { "source": "1599", "target": "1526", "key": "5791", "undirected": true }, { "source": "1599", "target": "888", "key": "5792", "undirected": true }, { "source": "1599", "target": "661", "key": "5793", "undirected": true }, { "source": "500", "target": "228", "key": "5794", "undirected": true }, { "source": "500", "target": "1600", "key": "5795", "undirected": true }, { "source": "1601", "target": "712", "key": "5796", "undirected": true }, { "source": "1601", "target": "965", "key": "5797", "undirected": true }, { "source": "1601", "target": "697", "key": "5798", "undirected": true }, { "source": "1601", "target": "439", "key": "5799", "undirected": true }, { "source": "1601", "target": "84", "key": "5800", "undirected": true }, { "source": "1601", "target": "96", "key": "5801", "undirected": true }, { "source": "23", "target": "25", "key": "5802", "undirected": true }, { "source": "23", "target": "26", "key": "5803", "undirected": true }, { "source": "23", "target": "28", "key": "5804", "undirected": true }, { "source": "23", "target": "456", "key": "5805", "undirected": true }, { "source": "23", "target": "24", "key": "5806", "undirected": true }, { "source": "456", "target": "24", "key": "5807", "undirected": true }, { "source": "456", "target": "25", "key": "5808", "undirected": true }, { "source": "456", "target": "27", "key": "5809", "undirected": true }, { "source": "456", "target": "28", "key": "5810", "undirected": true }, { "source": "456", "target": "30", "key": "5811", "undirected": true }, { "source": "456", "target": "23", "key": "5812", "undirected": true }, { "source": "24", "target": "68", "key": "5813", "undirected": true }, { "source": "24", "target": "947", "key": "5814", "undirected": true }, { "source": "24", "target": "26", "key": "5815", "undirected": true }, { "source": "24", "target": "23", "key": "5816", "undirected": true }, { "source": "24", "target": "456", "key": "5817", "undirected": true }, { "source": "966", "target": "304", "key": "5818", "undirected": true }, { "source": "966", "target": "1415", "key": "5819", "undirected": true }, { "source": "966", "target": "317", "key": "5820", "undirected": true }, { "source": "966", "target": "183", "key": "5821", "undirected": true }, { "source": "966", "target": "256", "key": "5822", "undirected": true }, { "source": "966", "target": "1410", "key": "5823", "undirected": true }, { "source": "1557", "target": "818", "key": "5824", "undirected": true }, { "source": "1557", "target": "967", "key": "5825", "undirected": true }, { "source": "1557", "target": "182", "key": "5826", "undirected": true }, { "source": "1557", "target": "183", "key": "5827", "undirected": true }, { "source": "1557", "target": "303", "key": "5828", "undirected": true }, { "source": "757", "target": "344", "key": "5829", "undirected": true }, { "source": "757", "target": "238", "key": "5830", "undirected": true }, { "source": "758", "target": "344", "key": "5831", "undirected": true }, { "source": "758", "target": "403", "key": "5832", "undirected": true }, { "source": "1506", "target": "296", "key": "5833", "undirected": true }, { "source": "1506", "target": "1", "key": "5834", "undirected": true }, { "source": "1506", "target": "182", "key": "5835", "undirected": true }, { "source": "1506", "target": "302", "key": "5836", "undirected": true }, { "source": "1402", "target": "206", "key": "5837", "undirected": true }, { "source": "1402", "target": "1050", "key": "5838", "undirected": true }, { "source": "1402", "target": "208", "key": "5839", "undirected": true }, { "source": "1402", "target": "401", "key": "5840", "undirected": true }, { "source": "208", "target": "204", "key": "5841", "undirected": true }, { "source": "208", "target": "209", "key": "5842", "undirected": true }, { "source": "208", "target": "205", "key": "5843", "undirected": true }, { "source": "208", "target": "206", "key": "5844", "undirected": true }, { "source": "208", "target": "207", "key": "5845", "undirected": true }, { "source": "1602", "target": "1603", "key": "5846", "undirected": true }, { "source": "1604", "target": "82", "key": "5847", "undirected": true }, { "source": "1604", "target": "495", "key": "5848", "undirected": true }, { "source": "1604", "target": "128", "key": "5849", "undirected": true }, { "source": "1604", "target": "344", "key": "5850", "undirected": true }, { "source": "1604", "target": "1126", "key": "5851", "undirected": true }, { "source": "825", "target": "490", "key": "5852", "undirected": true }, { "source": "825", "target": "493", "key": "5853", "undirected": true }, { "source": "825", "target": "495", "key": "5854", "undirected": true }, { "source": "1605", "target": "175", "key": "5855", "undirected": true }, { "source": "1605", "target": "567", "key": "5856", "undirected": true }, { "source": "1605", "target": "1", "key": "5857", "undirected": true }, { "source": "1605", "target": "109", "key": "5858", "undirected": true }, { "source": "1606", "target": "1579", "key": "5859", "undirected": true }, { "source": "1606", "target": "1282", "key": "5860", "undirected": true }, { "source": "1606", "target": "1607", "key": "5861", "undirected": true }, { "source": "1606", "target": "1249", "key": "5862", "undirected": true }, { "source": "1606", "target": "618", "key": "5863", "undirected": true }, { "source": "1606", "target": "421", "key": "5864", "undirected": true }, { "source": "1606", "target": "1409", "key": "5865", "undirected": true }, { "source": "1606", "target": "1279", "key": "5866", "undirected": true }, { "source": "1327", "target": "422", "key": "5867", "undirected": true }, { "source": "1327", "target": "53", "key": "5868", "undirected": true }, { "source": "1327", "target": "437", "key": "5869", "undirected": true }, { "source": "1327", "target": "65", "key": "5870", "undirected": true }, { "source": "1327", "target": "497", "key": "5871", "undirected": true }, { "source": "1327", "target": "567", "key": "5872", "undirected": true }, { "source": "1327", "target": "654", "key": "5873", "undirected": true }, { "source": "1327", "target": "424", "key": "5874", "undirected": true }, { "source": "1327", "target": "109", "key": "5875", "undirected": true }, { "source": "1461", "target": "1", "key": "5876", "undirected": true }, { "source": "1608", "target": "148", "key": "5877", "undirected": true }, { "source": "1608", "target": "79", "key": "5878", "undirected": true }, { "source": "1608", "target": "89", "key": "5879", "undirected": true }, { "source": "1608", "target": "803", "key": "5880", "undirected": true }, { "source": "1608", "target": "1609", "key": "5881", "undirected": true }, { "source": "191", "target": "192", "key": "5882", "undirected": true }, { "source": "191", "target": "188", "key": "5883", "undirected": true }, { "source": "191", "target": "190", "key": "5884", "undirected": true }, { "source": "1610", "target": "1", "key": "5885", "undirected": true }, { "source": "1610", "target": "5", "key": "5886", "undirected": true }, { "source": "1282", "target": "1279", "key": "5887", "undirected": true }, { "source": "1282", "target": "1248", "key": "5888", "undirected": true }, { "source": "1282", "target": "1249", "key": "5889", "undirected": true }, { "source": "1282", "target": "1283", "key": "5890", "undirected": true }, { "source": "1282", "target": "618", "key": "5891", "undirected": true }, { "source": "1282", "target": "1200", "key": "5892", "undirected": true }, { "source": "1248", "target": "618", "key": "5893", "undirected": true }, { "source": "1248", "target": "421", "key": "5894", "undirected": true }, { "source": "1248", "target": "1409", "key": "5895", "undirected": true }, { "source": "1248", "target": "1279", "key": "5896", "undirected": true }, { "source": "1248", "target": "1282", "key": "5897", "undirected": true }, { "source": "1248", "target": "1607", "key": "5898", "undirected": true }, { "source": "1248", "target": "1249", "key": "5899", "undirected": true }, { "source": "1248", "target": "1283", "key": "5900", "undirected": true }, { "source": "1607", "target": "421", "key": "5901", "undirected": true }, { "source": "1607", "target": "1409", "key": "5902", "undirected": true }, { "source": "1607", "target": "1279", "key": "5903", "undirected": true }, { "source": "1607", "target": "1282", "key": "5904", "undirected": true }, { "source": "1607", "target": "1248", "key": "5905", "undirected": true }, { "source": "1607", "target": "1249", "key": "5906", "undirected": true }, { "source": "1607", "target": "618", "key": "5907", "undirected": true }, { "source": "1249", "target": "1607", "key": "5908", "undirected": true }, { "source": "1249", "target": "618", "key": "5909", "undirected": true }, { "source": "1249", "target": "421", "key": "5910", "undirected": true }, { "source": "1249", "target": "1409", "key": "5911", "undirected": true }, { "source": "1249", "target": "1279", "key": "5912", "undirected": true }, { "source": "1249", "target": "1282", "key": "5913", "undirected": true }, { "source": "1249", "target": "1248", "key": "5914", "undirected": true }, { "source": "1454", "target": "1", "key": "5915", "undirected": true }, { "source": "1611", "target": "1612", "key": "5916", "undirected": true }, { "source": "1611", "target": "600", "key": "5917", "undirected": true }, { "source": "1611", "target": "1613", "key": "5918", "undirected": true }, { "source": "1611", "target": "1614", "key": "5919", "undirected": true }, { "source": "1615", "target": "988", "key": "5920", "undirected": true }, { "source": "1615", "target": "618", "key": "5921", "undirected": true }, { "source": "1615", "target": "421", "key": "5922", "undirected": true }, { "source": "1615", "target": "1279", "key": "5923", "undirected": true }, { "source": "1615", "target": "1282", "key": "5924", "undirected": true }, { "source": "1615", "target": "1607", "key": "5925", "undirected": true }, { "source": "1615", "target": "1249", "key": "5926", "undirected": true }, { "source": "1083", "target": "653", "key": "5927", "undirected": true }, { "source": "1083", "target": "367", "key": "5928", "undirected": true }, { "source": "1083", "target": "913", "key": "5929", "undirected": true }, { "source": "1083", "target": "1082", "key": "5930", "undirected": true }, { "source": "1083", "target": "899", "key": "5931", "undirected": true }, { "source": "1116", "target": "1060", "key": "5932", "undirected": true }, { "source": "1116", "target": "1114", "key": "5933", "undirected": true }, { "source": "1116", "target": "1115", "key": "5934", "undirected": true }, { "source": "1130", "target": "652", "key": "5935", "undirected": true }, { "source": "1130", "target": "900", "key": "5936", "undirected": true }, { "source": "1130", "target": "653", "key": "5937", "undirected": true }, { "source": "1130", "target": "913", "key": "5938", "undirected": true }, { "source": "1185", "target": "1083", "key": "5939", "undirected": true }, { "source": "1616", "target": "652", "key": "5940", "undirected": true }, { "source": "1616", "target": "911", "key": "5941", "undirected": true }, { "source": "1616", "target": "912", "key": "5942", "undirected": true }, { "source": "1616", "target": "653", "key": "5943", "undirected": true }, { "source": "1616", "target": "913", "key": "5944", "undirected": true }, { "source": "1616", "target": "1083", "key": "5945", "undirected": true }, { "source": "1616", "target": "1130", "key": "5946", "undirected": true }, { "source": "1616", "target": "1617", "key": "5947", "undirected": true }, { "source": "1283", "target": "401", "key": "5948", "undirected": true }, { "source": "1618", "target": "537", "key": "5949", "undirected": true }, { "source": "1618", "target": "896", "key": "5950", "undirected": true }, { "source": "1618", "target": "765", "key": "5951", "undirected": true }, { "source": "1618", "target": "533", "key": "5952", "undirected": true }, { "source": "1618", "target": "388", "key": "5953", "undirected": true }, { "source": "1618", "target": "281", "key": "5954", "undirected": true }, { "source": "1111", "target": "238", "key": "5955", "undirected": true }, { "source": "1323", "target": "1619", "key": "5956", "undirected": true }, { "source": "1323", "target": "885", "key": "5957", "undirected": true }, { "source": "261", "target": "68", "key": "5958", "undirected": true }, { "source": "261", "target": "238", "key": "5959", "undirected": true }, { "source": "261", "target": "732", "key": "5960", "undirected": true }, { "source": "1620", "target": "1493", "key": "5961", "undirected": true }, { "source": "1620", "target": "1111", "key": "5962", "undirected": true }, { "source": "1620", "target": "262", "key": "5963", "undirected": true }, { "source": "1620", "target": "260", "key": "5964", "undirected": true }, { "source": "1620", "target": "76", "key": "5965", "undirected": true }, { "source": "1620", "target": "849", "key": "5966", "undirected": true }, { "source": "238", "target": "261", "key": "5967", "undirected": true }, { "source": "732", "target": "469", "key": "5968", "undirected": true }, { "source": "732", "target": "1386", "key": "5969", "undirected": true }, { "source": "732", "target": "1547", "key": "5970", "undirected": true }, { "source": "732", "target": "261", "key": "5971", "undirected": true }, { "source": "732", "target": "238", "key": "5972", "undirected": true }, { "source": "732", "target": "1621", "key": "5973", "undirected": true }, { "source": "1622", "target": "1106", "key": "5974", "undirected": true }, { "source": "1622", "target": "1484", "key": "5975", "undirected": true }, { "source": "262", "target": "25", "key": "5976", "undirected": true }, { "source": "262", "target": "211", "key": "5977", "undirected": true }, { "source": "262", "target": "1262", "key": "5978", "undirected": true }, { "source": "262", "target": "1493", "key": "5979", "undirected": true }, { "source": "1621", "target": "469", "key": "5980", "undirected": true }, { "source": "1621", "target": "1386", "key": "5981", "undirected": true }, { "source": "1621", "target": "1547", "key": "5982", "undirected": true }, { "source": "1621", "target": "261", "key": "5983", "undirected": true }, { "source": "1623", "target": "1619", "key": "5984", "undirected": true }, { "source": "1623", "target": "1547", "key": "5985", "undirected": true }, { "source": "1623", "target": "238", "key": "5986", "undirected": true }, { "source": "1624", "target": "238", "key": "5987", "undirected": true }, { "source": "1624", "target": "648", "key": "5988", "undirected": true }, { "source": "1624", "target": "159", "key": "5989", "undirected": true }, { "source": "1624", "target": "1547", "key": "5990", "undirected": true }, { "source": "215", "target": "128", "key": "5991", "undirected": true }, { "source": "215", "target": "1", "key": "5992", "undirected": true }, { "source": "215", "target": "82", "key": "5993", "undirected": true }, { "source": "657", "target": "128", "key": "5994", "undirected": true }, { "source": "657", "target": "437", "key": "5995", "undirected": true }, { "source": "657", "target": "567", "key": "5996", "undirected": true }, { "source": "657", "target": "606", "key": "5997", "undirected": true }, { "source": "657", "target": "654", "key": "5998", "undirected": true }, { "source": "657", "target": "656", "key": "5999", "undirected": true }, { "source": "657", "target": "1593", "key": "6000", "undirected": true }, { "source": "579", "target": "82", "key": "6001", "undirected": true }, { "source": "579", "target": "253", "key": "6002", "undirected": true }, { "source": "1625", "target": "163", "key": "6003", "undirected": true }, { "source": "1625", "target": "324", "key": "6004", "undirected": true }, { "source": "1625", "target": "934", "key": "6005", "undirected": true }, { "source": "1625", "target": "1324", "key": "6006", "undirected": true }, { "source": "1625", "target": "164", "key": "6007", "undirected": true }, { "source": "1626", "target": "53", "key": "6008", "undirected": true }, { "source": "1626", "target": "79", "key": "6009", "undirected": true }, { "source": "1626", "target": "1243", "key": "6010", "undirected": true }, { "source": "1626", "target": "1255", "key": "6011", "undirected": true }, { "source": "1626", "target": "513", "key": "6012", "undirected": true }, { "source": "1626", "target": "1627", "key": "6013", "undirected": true }, { "source": "1626", "target": "50", "key": "6014", "undirected": true }, { "source": "1628", "target": "532", "key": "6015", "undirected": true }, { "source": "1628", "target": "335", "key": "6016", "undirected": true }, { "source": "1628", "target": "535", "key": "6017", "undirected": true }, { "source": "1628", "target": "405", "key": "6018", "undirected": true }, { "source": "1628", "target": "537", "key": "6019", "undirected": true }, { "source": "1628", "target": "409", "key": "6020", "undirected": true }, { "source": "1628", "target": "533", "key": "6021", "undirected": true }, { "source": "1629", "target": "907", "key": "6022", "undirected": true }, { "source": "1629", "target": "463", "key": "6023", "undirected": true }, { "source": "1629", "target": "547", "key": "6024", "undirected": true }, { "source": "1629", "target": "177", "key": "6025", "undirected": true }, { "source": "1629", "target": "548", "key": "6026", "undirected": true }, { "source": "1629", "target": "79", "key": "6027", "undirected": true }, { "source": "1629", "target": "549", "key": "6028", "undirected": true }, { "source": "1629", "target": "649", "key": "6029", "undirected": true }, { "source": "1630", "target": "313", "key": "6030", "undirected": true }, { "source": "619", "target": "298", "key": "6031", "undirected": true }, { "source": "619", "target": "523", "key": "6032", "undirected": true }, { "source": "619", "target": "617", "key": "6033", "undirected": true }, { "source": "619", "target": "79", "key": "6034", "undirected": true }, { "source": "619", "target": "526", "key": "6035", "undirected": true }, { "source": "1631", "target": "1034", "key": "6036", "undirected": true }, { "source": "1631", "target": "206", "key": "6037", "undirected": true }, { "source": "1631", "target": "1403", "key": "6038", "undirected": true }, { "source": "1631", "target": "208", "key": "6039", "undirected": true }, { "source": "1631", "target": "204", "key": "6040", "undirected": true }, { "source": "1631", "target": "420", "key": "6041", "undirected": true }, { "source": "1631", "target": "209", "key": "6042", "undirected": true }, { "source": "1631", "target": "1033", "key": "6043", "undirected": true }, { "source": "1632", "target": "344", "key": "6044", "undirected": true }, { "source": "1632", "target": "573", "key": "6045", "undirected": true }, { "source": "1632", "target": "335", "key": "6046", "undirected": true }, { "source": "1632", "target": "999", "key": "6047", "undirected": true }, { "source": "1632", "target": "281", "key": "6048", "undirected": true }, { "source": "1632", "target": "1266", "key": "6049", "undirected": true }, { "source": "1632", "target": "806", "key": "6050", "undirected": true }, { "source": "1632", "target": "168", "key": "6051", "undirected": true }, { "source": "806", "target": "1266", "key": "6052", "undirected": true }, { "source": "806", "target": "111", "key": "6053", "undirected": true }, { "source": "806", "target": "48", "key": "6054", "undirected": true }, { "source": "806", "target": "600", "key": "6055", "undirected": true }, { "source": "661", "target": "888", "key": "6056", "undirected": true }, { "source": "1633", "target": "1634", "key": "6057", "undirected": true }, { "source": "1633", "target": "669", "key": "6058", "undirected": true }, { "source": "1633", "target": "435", "key": "6059", "undirected": true }, { "source": "1633", "target": "1513", "key": "6060", "undirected": true }, { "source": "1633", "target": "1165", "key": "6061", "undirected": true }, { "source": "1633", "target": "366", "key": "6062", "undirected": true }, { "source": "1635", "target": "1", "key": "6063", "undirected": true }, { "source": "1636", "target": "1034", "key": "6064", "undirected": true }, { "source": "1636", "target": "1035", "key": "6065", "undirected": true }, { "source": "1636", "target": "1036", "key": "6066", "undirected": true }, { "source": "1636", "target": "1297", "key": "6067", "undirected": true }, { "source": "1636", "target": "1152", "key": "6068", "undirected": true }, { "source": "1636", "target": "420", "key": "6069", "undirected": true }, { "source": "1636", "target": "209", "key": "6070", "undirected": true }, { "source": "1637", "target": "996", "key": "6071", "undirected": true }, { "source": "1637", "target": "998", "key": "6072", "undirected": true }, { "source": "1637", "target": "57", "key": "6073", "undirected": true }, { "source": "1637", "target": "313", "key": "6074", "undirected": true }, { "source": "1637", "target": "993", "key": "6075", "undirected": true }, { "source": "1637", "target": "1638", "key": "6076", "undirected": true }, { "source": "928", "target": "148", "key": "6077", "undirected": true }, { "source": "928", "target": "150", "key": "6078", "undirected": true }, { "source": "930", "target": "150", "key": "6079", "undirected": true }, { "source": "909", "target": "906", "key": "6080", "undirected": true }, { "source": "533", "target": "532", "key": "6081", "undirected": true }, { "source": "533", "target": "335", "key": "6082", "undirected": true }, { "source": "533", "target": "956", "key": "6083", "undirected": true }, { "source": "533", "target": "1122", "key": "6084", "undirected": true }, { "source": "533", "target": "537", "key": "6085", "undirected": true }, { "source": "225", "target": "211", "key": "6086", "undirected": true }, { "source": "225", "target": "361", "key": "6087", "undirected": true }, { "source": "225", "target": "224", "key": "6088", "undirected": true }, { "source": "1639", "target": "862", "key": "6089", "undirected": true }, { "source": "1639", "target": "27", "key": "6090", "undirected": true }, { "source": "1639", "target": "1379", "key": "6091", "undirected": true }, { "source": "1639", "target": "287", "key": "6092", "undirected": true }, { "source": "1639", "target": "552", "key": "6093", "undirected": true }, { "source": "1639", "target": "456", "key": "6094", "undirected": true }, { "source": "1639", "target": "68", "key": "6095", "undirected": true }, { "source": "1639", "target": "1640", "key": "6096", "undirected": true }, { "source": "1641", "target": "630", "key": "6097", "undirected": true }, { "source": "1641", "target": "920", "key": "6098", "undirected": true }, { "source": "1642", "target": "1407", "key": "6099", "undirected": true }, { "source": "1246", "target": "100", "key": "6100", "undirected": true }, { "source": "1246", "target": "689", "key": "6101", "undirected": true }, { "source": "1246", "target": "98", "key": "6102", "undirected": true }, { "source": "1246", "target": "99", "key": "6103", "undirected": true }, { "source": "1246", "target": "53", "key": "6104", "undirected": true }, { "source": "1246", "target": "688", "key": "6105", "undirected": true }, { "source": "689", "target": "99", "key": "6106", "undirected": true }, { "source": "689", "target": "53", "key": "6107", "undirected": true }, { "source": "689", "target": "65", "key": "6108", "undirected": true }, { "source": "689", "target": "104", "key": "6109", "undirected": true }, { "source": "689", "target": "82", "key": "6110", "undirected": true }, { "source": "544", "target": "1233", "key": "6111", "undirected": true }, { "source": "544", "target": "1295", "key": "6112", "undirected": true }, { "source": "544", "target": "87", "key": "6113", "undirected": true }, { "source": "1643", "target": "863", "key": "6114", "undirected": true }, { "source": "1643", "target": "861", "key": "6115", "undirected": true }, { "source": "860", "target": "347", "key": "6116", "undirected": true }, { "source": "860", "target": "348", "key": "6117", "undirected": true }, { "source": "860", "target": "116", "key": "6118", "undirected": true }, { "source": "860", "target": "113", "key": "6119", "undirected": true }, { "source": "1644", "target": "280", "key": "6120", "undirected": true }, { "source": "1644", "target": "833", "key": "6121", "undirected": true }, { "source": "1644", "target": "963", "key": "6122", "undirected": true }, { "source": "1644", "target": "444", "key": "6123", "undirected": true }, { "source": "1644", "target": "324", "key": "6124", "undirected": true }, { "source": "1644", "target": "1266", "key": "6125", "undirected": true }, { "source": "1644", "target": "839", "key": "6126", "undirected": true }, { "source": "1644", "target": "48", "key": "6127", "undirected": true }, { "source": "1644", "target": "502", "key": "6128", "undirected": true }, { "source": "1644", "target": "49", "key": "6129", "undirected": true }, { "source": "1645", "target": "505", "key": "6130", "undirected": true }, { "source": "1645", "target": "1177", "key": "6131", "undirected": true }, { "source": "1646", "target": "313", "key": "6132", "undirected": true }, { "source": "1647", "target": "128", "key": "6133", "undirected": true }, { "source": "1647", "target": "175", "key": "6134", "undirected": true }, { "source": "1647", "target": "85", "key": "6135", "undirected": true }, { "source": "1647", "target": "82", "key": "6136", "undirected": true }, { "source": "1648", "target": "50", "key": "6137", "undirected": true }, { "source": "1648", "target": "1009", "key": "6138", "undirected": true }, { "source": "1648", "target": "166", "key": "6139", "undirected": true }, { "source": "1648", "target": "279", "key": "6140", "undirected": true }, { "source": "1648", "target": "280", "key": "6141", "undirected": true }, { "source": "1648", "target": "53", "key": "6142", "undirected": true }, { "source": "1648", "target": "281", "key": "6143", "undirected": true }, { "source": "1648", "target": "49", "key": "6144", "undirected": true }, { "source": "1649", "target": "128", "key": "6145", "undirected": true }, { "source": "1649", "target": "85", "key": "6146", "undirected": true }, { "source": "1649", "target": "217", "key": "6147", "undirected": true }, { "source": "1649", "target": "82", "key": "6148", "undirected": true }, { "source": "137", "target": "136", "key": "6149", "undirected": true }, { "source": "137", "target": "861", "key": "6150", "undirected": true }, { "source": "140", "target": "136", "key": "6151", "undirected": true }, { "source": "861", "target": "137", "key": "6152", "undirected": true }, { "source": "1650", "target": "281", "key": "6153", "undirected": true }, { "source": "1650", "target": "370", "key": "6154", "undirected": true }, { "source": "1650", "target": "406", "key": "6155", "undirected": true }, { "source": "1650", "target": "334", "key": "6156", "undirected": true }, { "source": "1650", "target": "49", "key": "6157", "undirected": true }, { "source": "1650", "target": "484", "key": "6158", "undirected": true }, { "source": "1650", "target": "1292", "key": "6159", "undirected": true }, { "source": "1650", "target": "533", "key": "6160", "undirected": true }, { "source": "1650", "target": "532", "key": "6161", "undirected": true }, { "source": "1650", "target": "535", "key": "6162", "undirected": true }, { "source": "642", "target": "161", "key": "6163", "undirected": true }, { "source": "642", "target": "641", "key": "6164", "undirected": true }, { "source": "682", "target": "642", "key": "6165", "undirected": true }, { "source": "682", "target": "161", "key": "6166", "undirected": true }, { "source": "682", "target": "640", "key": "6167", "undirected": true }, { "source": "682", "target": "641", "key": "6168", "undirected": true }, { "source": "138", "target": "133", "key": "6169", "undirected": true }, { "source": "1651", "target": "37", "key": "6170", "undirected": true }, { "source": "1651", "target": "209", "key": "6171", "undirected": true }, { "source": "1651", "target": "1034", "key": "6172", "undirected": true }, { "source": "1651", "target": "1404", "key": "6173", "undirected": true }, { "source": "1651", "target": "272", "key": "6174", "undirected": true }, { "source": "1651", "target": "429", "key": "6175", "undirected": true }, { "source": "1440", "target": "111", "key": "6176", "undirected": true }, { "source": "1440", "target": "1", "key": "6177", "undirected": true }, { "source": "1652", "target": "236", "key": "6178", "undirected": true }, { "source": "1652", "target": "498", "key": "6179", "undirected": true }, { "source": "1652", "target": "497", "key": "6180", "undirected": true }, { "source": "1652", "target": "48", "key": "6181", "undirected": true }, { "source": "1652", "target": "695", "key": "6182", "undirected": true }, { "source": "1652", "target": "109", "key": "6183", "undirected": true }, { "source": "1652", "target": "284", "key": "6184", "undirected": true }, { "source": "1652", "target": "166", "key": "6185", "undirected": true }, { "source": "1652", "target": "496", "key": "6186", "undirected": true }, { "source": "1652", "target": "53", "key": "6187", "undirected": true }, { "source": "1653", "target": "351", "key": "6188", "undirected": true }, { "source": "1653", "target": "1430", "key": "6189", "undirected": true }, { "source": "1654", "target": "1261", "key": "6190", "undirected": true }, { "source": "1654", "target": "1", "key": "6191", "undirected": true }, { "source": "1654", "target": "1124", "key": "6192", "undirected": true }, { "source": "1655", "target": "1015", "key": "6193", "undirected": true }, { "source": "1656", "target": "872", "key": "6194", "undirected": true }, { "source": "1656", "target": "65", "key": "6195", "undirected": true }, { "source": "1656", "target": "903", "key": "6196", "undirected": true }, { "source": "1656", "target": "246", "key": "6197", "undirected": true }, { "source": "1656", "target": "1160", "key": "6198", "undirected": true }, { "source": "1408", "target": "79", "key": "6199", "undirected": true }, { "source": "1408", "target": "224", "key": "6200", "undirected": true }, { "source": "1408", "target": "185", "key": "6201", "undirected": true }, { "source": "1657", "target": "667", "key": "6202", "undirected": true }, { "source": "1657", "target": "287", "key": "6203", "undirected": true }, { "source": "1657", "target": "457", "key": "6204", "undirected": true }, { "source": "1657", "target": "431", "key": "6205", "undirected": true }, { "source": "1657", "target": "455", "key": "6206", "undirected": true }, { "source": "1657", "target": "65", "key": "6207", "undirected": true }, { "source": "1657", "target": "559", "key": "6208", "undirected": true }, { "source": "1657", "target": "666", "key": "6209", "undirected": true }, { "source": "141", "target": "79", "key": "6210", "undirected": true }, { "source": "1658", "target": "302", "key": "6211", "undirected": true }, { "source": "1658", "target": "303", "key": "6212", "undirected": true }, { "source": "1658", "target": "296", "key": "6213", "undirected": true }, { "source": "1658", "target": "376", "key": "6214", "undirected": true }, { "source": "1658", "target": "377", "key": "6215", "undirected": true }, { "source": "1658", "target": "979", "key": "6216", "undirected": true }, { "source": "1658", "target": "295", "key": "6217", "undirected": true }, { "source": "1658", "target": "1659", "key": "6218", "undirected": true }, { "source": "1658", "target": "1448", "key": "6219", "undirected": true }, { "source": "1660", "target": "958", "key": "6220", "undirected": true }, { "source": "1660", "target": "959", "key": "6221", "undirected": true }, { "source": "1660", "target": "960", "key": "6222", "undirected": true }, { "source": "1660", "target": "505", "key": "6223", "undirected": true }, { "source": "1660", "target": "961", "key": "6224", "undirected": true }, { "source": "1660", "target": "48", "key": "6225", "undirected": true }, { "source": "1660", "target": "502", "key": "6226", "undirected": true }, { "source": "1660", "target": "49", "key": "6227", "undirected": true }, { "source": "1660", "target": "962", "key": "6228", "undirected": true }, { "source": "1661", "target": "453", "key": "6229", "undirected": true }, { "source": "1661", "target": "901", "key": "6230", "undirected": true }, { "source": "1661", "target": "1352", "key": "6231", "undirected": true }, { "source": "1661", "target": "68", "key": "6232", "undirected": true }, { "source": "1661", "target": "1662", "key": "6233", "undirected": true }, { "source": "1661", "target": "76", "key": "6234", "undirected": true }, { "source": "1663", "target": "431", "key": "6235", "undirected": true }, { "source": "1663", "target": "408", "key": "6236", "undirected": true }, { "source": "1663", "target": "515", "key": "6237", "undirected": true }, { "source": "1663", "target": "455", "key": "6238", "undirected": true }, { "source": "1663", "target": "666", "key": "6239", "undirected": true }, { "source": "1663", "target": "667", "key": "6240", "undirected": true }, { "source": "1663", "target": "287", "key": "6241", "undirected": true }, { "source": "1663", "target": "262", "key": "6242", "undirected": true }, { "source": "1663", "target": "457", "key": "6243", "undirected": true }, { "source": "1664", "target": "471", "key": "6244", "undirected": true }, { "source": "1664", "target": "485", "key": "6245", "undirected": true }, { "source": "1664", "target": "855", "key": "6246", "undirected": true }, { "source": "1664", "target": "618", "key": "6247", "undirected": true }, { "source": "1664", "target": "1407", "key": "6248", "undirected": true }, { "source": "1664", "target": "470", "key": "6249", "undirected": true }, { "source": "1119", "target": "51", "key": "6250", "undirected": true }, { "source": "1119", "target": "53", "key": "6251", "undirected": true }, { "source": "1119", "target": "66", "key": "6252", "undirected": true }, { "source": "1119", "target": "405", "key": "6253", "undirected": true }, { "source": "1119", "target": "397", "key": "6254", "undirected": true }, { "source": "1119", "target": "48", "key": "6255", "undirected": true }, { "source": "1119", "target": "409", "key": "6256", "undirected": true }, { "source": "1119", "target": "49", "key": "6257", "undirected": true }, { "source": "1119", "target": "50", "key": "6258", "undirected": true }, { "source": "822", "target": "53", "key": "6259", "undirected": true }, { "source": "822", "target": "405", "key": "6260", "undirected": true }, { "source": "822", "target": "181", "key": "6261", "undirected": true }, { "source": "822", "target": "397", "key": "6262", "undirected": true }, { "source": "822", "target": "48", "key": "6263", "undirected": true }, { "source": "822", "target": "409", "key": "6264", "undirected": true }, { "source": "822", "target": "49", "key": "6265", "undirected": true }, { "source": "822", "target": "798", "key": "6266", "undirected": true }, { "source": "822", "target": "50", "key": "6267", "undirected": true }, { "source": "822", "target": "1119", "key": "6268", "undirected": true }, { "source": "1665", "target": "239", "key": "6269", "undirected": true }, { "source": "1665", "target": "159", "key": "6270", "undirected": true }, { "source": "1665", "target": "1666", "key": "6271", "undirected": true }, { "source": "1667", "target": "76", "key": "6272", "undirected": true }, { "source": "1667", "target": "1668", "key": "6273", "undirected": true }, { "source": "1667", "target": "1", "key": "6274", "undirected": true }, { "source": "1667", "target": "215", "key": "6275", "undirected": true }, { "source": "1667", "target": "579", "key": "6276", "undirected": true }, { "source": "686", "target": "685", "key": "6277", "undirected": true }, { "source": "349", "target": "133", "key": "6278", "undirected": true }, { "source": "1669", "target": "1", "key": "6279", "undirected": true }, { "source": "1670", "target": "73", "key": "6280", "undirected": true }, { "source": "1670", "target": "74", "key": "6281", "undirected": true }, { "source": "1670", "target": "70", "key": "6282", "undirected": true }, { "source": "1670", "target": "71", "key": "6283", "undirected": true }, { "source": "1670", "target": "1671", "key": "6284", "undirected": true }, { "source": "1670", "target": "69", "key": "6285", "undirected": true }, { "source": "1670", "target": "72", "key": "6286", "undirected": true }, { "source": "1670", "target": "561", "key": "6287", "undirected": true }, { "source": "87", "target": "380", "key": "6288", "undirected": true }, { "source": "87", "target": "512", "key": "6289", "undirected": true }, { "source": "87", "target": "544", "key": "6290", "undirected": true }, { "source": "1672", "target": "897", "key": "6291", "undirected": true }, { "source": "1672", "target": "87", "key": "6292", "undirected": true }, { "source": "1672", "target": "434", "key": "6293", "undirected": true }, { "source": "1672", "target": "598", "key": "6294", "undirected": true }, { "source": "1672", "target": "816", "key": "6295", "undirected": true }, { "source": "1672", "target": "1295", "key": "6296", "undirected": true }, { "source": "1672", "target": "702", "key": "6297", "undirected": true }, { "source": "1673", "target": "597", "key": "6298", "undirected": true }, { "source": "1673", "target": "512", "key": "6299", "undirected": true }, { "source": "1673", "target": "598", "key": "6300", "undirected": true }, { "source": "1673", "target": "498", "key": "6301", "undirected": true }, { "source": "1673", "target": "816", "key": "6302", "undirected": true }, { "source": "1673", "target": "817", "key": "6303", "undirected": true }, { "source": "1673", "target": "544", "key": "6304", "undirected": true }, { "source": "1673", "target": "87", "key": "6305", "undirected": true }, { "source": "1673", "target": "239", "key": "6306", "undirected": true }, { "source": "1674", "target": "61", "key": "6307", "undirected": true }, { "source": "1674", "target": "53", "key": "6308", "undirected": true }, { "source": "1674", "target": "118", "key": "6309", "undirected": true }, { "source": "1674", "target": "64", "key": "6310", "undirected": true }, { "source": "1674", "target": "65", "key": "6311", "undirected": true }, { "source": "1674", "target": "131", "key": "6312", "undirected": true }, { "source": "1674", "target": "104", "key": "6313", "undirected": true }, { "source": "1674", "target": "50", "key": "6314", "undirected": true }, { "source": "1674", "target": "68", "key": "6315", "undirected": true }, { "source": "1674", "target": "363", "key": "6316", "undirected": true }, { "source": "1572", "target": "79", "key": "6317", "undirected": true }, { "source": "1572", "target": "1108", "key": "6318", "undirected": true }, { "source": "1572", "target": "626", "key": "6319", "undirected": true }, { "source": "1572", "target": "1407", "key": "6320", "undirected": true }, { "source": "1572", "target": "1408", "key": "6321", "undirected": true }, { "source": "1675", "target": "68", "key": "6322", "undirected": true }, { "source": "1675", "target": "216", "key": "6323", "undirected": true }, { "source": "1675", "target": "53", "key": "6324", "undirected": true }, { "source": "1675", "target": "512", "key": "6325", "undirected": true }, { "source": "1675", "target": "64", "key": "6326", "undirected": true }, { "source": "1675", "target": "65", "key": "6327", "undirected": true }, { "source": "1675", "target": "119", "key": "6328", "undirected": true }, { "source": "1675", "target": "592", "key": "6329", "undirected": true }, { "source": "1675", "target": "50", "key": "6330", "undirected": true }, { "source": "510", "target": "555", "key": "6331", "undirected": true }, { "source": "510", "target": "262", "key": "6332", "undirected": true }, { "source": "510", "target": "436", "key": "6333", "undirected": true }, { "source": "510", "target": "53", "key": "6334", "undirected": true }, { "source": "510", "target": "554", "key": "6335", "undirected": true }, { "source": "1046", "target": "1042", "key": "6336", "undirected": true }, { "source": "1046", "target": "567", "key": "6337", "undirected": true }, { "source": "1046", "target": "1138", "key": "6338", "undirected": true }, { "source": "1046", "target": "171", "key": "6339", "undirected": true }, { "source": "1046", "target": "1524", "key": "6340", "undirected": true }, { "source": "457", "target": "259", "key": "6341", "undirected": true }, { "source": "457", "target": "1017", "key": "6342", "undirected": true }, { "source": "457", "target": "513", "key": "6343", "undirected": true }, { "source": "457", "target": "51", "key": "6344", "undirected": true }, { "source": "736", "target": "154", "key": "6345", "undirected": true }, { "source": "283", "target": "293", "key": "6346", "undirected": true }, { "source": "283", "target": "61", "key": "6347", "undirected": true }, { "source": "283", "target": "525", "key": "6348", "undirected": true }, { "source": "283", "target": "281", "key": "6349", "undirected": true }, { "source": "283", "target": "282", "key": "6350", "undirected": true }, { "source": "283", "target": "334", "key": "6351", "undirected": true }, { "source": "283", "target": "279", "key": "6352", "undirected": true }, { "source": "1676", "target": "281", "key": "6353", "undirected": true }, { "source": "284", "target": "323", "key": "6354", "undirected": true }, { "source": "962", "target": "961", "key": "6355", "undirected": true }, { "source": "1677", "target": "370", "key": "6356", "undirected": true }, { "source": "1677", "target": "374", "key": "6357", "undirected": true }, { "source": "1677", "target": "513", "key": "6358", "undirected": true }, { "source": "1677", "target": "254", "key": "6359", "undirected": true }, { "source": "1677", "target": "181", "key": "6360", "undirected": true }, { "source": "1677", "target": "1293", "key": "6361", "undirected": true }, { "source": "1677", "target": "47", "key": "6362", "undirected": true }, { "source": "1373", "target": "84", "key": "6363", "undirected": true }, { "source": "1373", "target": "167", "key": "6364", "undirected": true }, { "source": "1373", "target": "82", "key": "6365", "undirected": true }, { "source": "1373", "target": "698", "key": "6366", "undirected": true }, { "source": "168", "target": "165", "key": "6367", "undirected": true }, { "source": "168", "target": "167", "key": "6368", "undirected": true }, { "source": "1678", "target": "185", "key": "6369", "undirected": true }, { "source": "1678", "target": "619", "key": "6370", "undirected": true }, { "source": "1678", "target": "79", "key": "6371", "undirected": true }, { "source": "1678", "target": "315", "key": "6372", "undirected": true }, { "source": "1678", "target": "334", "key": "6373", "undirected": true }, { "source": "1678", "target": "50", "key": "6374", "undirected": true }, { "source": "1679", "target": "556", "key": "6375", "undirected": true }, { "source": "1679", "target": "1196", "key": "6376", "undirected": true }, { "source": "1679", "target": "1680", "key": "6377", "undirected": true }, { "source": "1681", "target": "1682", "key": "6378", "undirected": true }, { "source": "1683", "target": "20", "key": "6379", "undirected": true }, { "source": "1683", "target": "814", "key": "6380", "undirected": true }, { "source": "1683", "target": "109", "key": "6381", "undirected": true }, { "source": "1684", "target": "981", "key": "6382", "undirected": true }, { "source": "1684", "target": "111", "key": "6383", "undirected": true }, { "source": "1684", "target": "1136", "key": "6384", "undirected": true }, { "source": "1684", "target": "1142", "key": "6385", "undirected": true }, { "source": "1684", "target": "600", "key": "6386", "undirected": true }, { "source": "1684", "target": "886", "key": "6387", "undirected": true }, { "source": "1684", "target": "281", "key": "6388", "undirected": true }, { "source": "1684", "target": "1141", "key": "6389", "undirected": true }, { "source": "768", "target": "769", "key": "6390", "undirected": true }, { "source": "768", "target": "504", "key": "6391", "undirected": true }, { "source": "768", "target": "708", "key": "6392", "undirected": true }, { "source": "768", "target": "771", "key": "6393", "undirected": true }, { "source": "1685", "target": "1", "key": "6394", "undirected": true }, { "source": "1685", "target": "1686", "key": "6395", "undirected": true }, { "source": "1687", "target": "1158", "key": "6396", "undirected": true }, { "source": "1687", "target": "1688", "key": "6397", "undirected": true }, { "source": "1301", "target": "531", "key": "6398", "undirected": true }, { "source": "1302", "target": "1300", "key": "6399", "undirected": true }, { "source": "1302", "target": "1301", "key": "6400", "undirected": true }, { "source": "1689", "target": "133", "key": "6401", "undirected": true }, { "source": "1689", "target": "380", "key": "6402", "undirected": true }, { "source": "1689", "target": "399", "key": "6403", "undirected": true }, { "source": "1689", "target": "159", "key": "6404", "undirected": true }, { "source": "1689", "target": "113", "key": "6405", "undirected": true }, { "source": "1689", "target": "647", "key": "6406", "undirected": true }, { "source": "1689", "target": "1079", "key": "6407", "undirected": true }, { "source": "1689", "target": "675", "key": "6408", "undirected": true }, { "source": "771", "target": "770", "key": "6409", "undirected": true }, { "source": "771", "target": "109", "key": "6410", "undirected": true }, { "source": "771", "target": "768", "key": "6411", "undirected": true }, { "source": "771", "target": "769", "key": "6412", "undirected": true }, { "source": "771", "target": "708", "key": "6413", "undirected": true }, { "source": "1690", "target": "314", "key": "6414", "undirected": true }, { "source": "1690", "target": "297", "key": "6415", "undirected": true }, { "source": "1690", "target": "316", "key": "6416", "undirected": true }, { "source": "1690", "target": "1152", "key": "6417", "undirected": true }, { "source": "1690", "target": "1691", "key": "6418", "undirected": true }, { "source": "1692", "target": "1693", "key": "6419", "undirected": true }, { "source": "1692", "target": "791", "key": "6420", "undirected": true }, { "source": "1694", "target": "966", "key": "6421", "undirected": true }, { "source": "1694", "target": "1695", "key": "6422", "undirected": true }, { "source": "1694", "target": "303", "key": "6423", "undirected": true }, { "source": "1694", "target": "182", "key": "6424", "undirected": true }, { "source": "1696", "target": "53", "key": "6425", "undirected": true }, { "source": "1696", "target": "65", "key": "6426", "undirected": true }, { "source": "1696", "target": "1057", "key": "6427", "undirected": true }, { "source": "1696", "target": "179", "key": "6428", "undirected": true }, { "source": "1696", "target": "924", "key": "6429", "undirected": true }, { "source": "1696", "target": "50", "key": "6430", "undirected": true }, { "source": "473", "target": "313", "key": "6431", "undirected": true }, { "source": "473", "target": "474", "key": "6432", "undirected": true }, { "source": "1425", "target": "293", "key": "6433", "undirected": true }, { "source": "1425", "target": "1235", "key": "6434", "undirected": true }, { "source": "1425", "target": "524", "key": "6435", "undirected": true }, { "source": "82", "target": "84", "key": "6436", "undirected": true }, { "source": "82", "target": "128", "key": "6437", "undirected": true }, { "source": "698", "target": "696", "key": "6438", "undirected": true }, { "source": "33", "target": "344", "key": "6439", "undirected": true }, { "source": "1697", "target": "85", "key": "6440", "undirected": true }, { "source": "1442", "target": "79", "key": "6441", "undirected": true }, { "source": "1442", "target": "1", "key": "6442", "undirected": true }, { "source": "1210", "target": "290", "key": "6443", "undirected": true }, { "source": "1210", "target": "1077", "key": "6444", "undirected": true }, { "source": "1210", "target": "1078", "key": "6445", "undirected": true }, { "source": "1210", "target": "1262", "key": "6446", "undirected": true }, { "source": "1210", "target": "1079", "key": "6447", "undirected": true }, { "source": "1698", "target": "646", "key": "6448", "undirected": true }, { "source": "239", "target": "1698", "key": "6449", "undirected": true }, { "source": "239", "target": "648", "key": "6450", "undirected": true }, { "source": "239", "target": "149", "key": "6451", "undirected": true }, { "source": "1699", "target": "159", "key": "6452", "undirected": true }, { "source": "1699", "target": "1", "key": "6453", "undirected": true }, { "source": "1699", "target": "155", "key": "6454", "undirected": true }, { "source": "1079", "target": "1078", "key": "6455", "undirected": true }, { "source": "386", "target": "239", "key": "6456", "undirected": true }, { "source": "362", "target": "360", "key": "6457", "undirected": true }, { "source": "362", "target": "177", "key": "6458", "undirected": true }, { "source": "362", "target": "224", "key": "6459", "undirected": true }, { "source": "362", "target": "56", "key": "6460", "undirected": true }, { "source": "362", "target": "372", "key": "6461", "undirected": true }, { "source": "1700", "target": "324", "key": "6462", "undirected": true }, { "source": "1700", "target": "150", "key": "6463", "undirected": true }, { "source": "787", "target": "321", "key": "6464", "undirected": true }, { "source": "787", "target": "785", "key": "6465", "undirected": true }, { "source": "787", "target": "206", "key": "6466", "undirected": true }, { "source": "787", "target": "1312", "key": "6467", "undirected": true }, { "source": "787", "target": "322", "key": "6468", "undirected": true }, { "source": "787", "target": "786", "key": "6469", "undirected": true }, { "source": "787", "target": "1037", "key": "6470", "undirected": true }, { "source": "1688", "target": "1", "key": "6471", "undirected": true }, { "source": "511", "target": "50", "key": "6472", "undirected": true }, { "source": "511", "target": "68", "key": "6473", "undirected": true }, { "source": "511", "target": "53", "key": "6474", "undirected": true }, { "source": "511", "target": "65", "key": "6475", "undirected": true }, { "source": "1701", "target": "68", "key": "6476", "undirected": true }, { "source": "1701", "target": "408", "key": "6477", "undirected": true }, { "source": "1701", "target": "53", "key": "6478", "undirected": true }, { "source": "1701", "target": "460", "key": "6479", "undirected": true }, { "source": "1701", "target": "515", "key": "6480", "undirected": true }, { "source": "1701", "target": "65", "key": "6481", "undirected": true }, { "source": "1701", "target": "287", "key": "6482", "undirected": true }, { "source": "1702", "target": "1646", "key": "6483", "undirected": true }, { "source": "1702", "target": "1703", "key": "6484", "undirected": true }, { "source": "1702", "target": "1704", "key": "6485", "undirected": true }, { "source": "1702", "target": "1238", "key": "6486", "undirected": true }, { "source": "1702", "target": "79", "key": "6487", "undirected": true }, { "source": "1702", "target": "853", "key": "6488", "undirected": true }, { "source": "1702", "target": "1103", "key": "6489", "undirected": true }, { "source": "1702", "target": "313", "key": "6490", "undirected": true }, { "source": "1703", "target": "79", "key": "6491", "undirected": true }, { "source": "1703", "target": "853", "key": "6492", "undirected": true }, { "source": "1703", "target": "1103", "key": "6493", "undirected": true }, { "source": "1703", "target": "313", "key": "6494", "undirected": true }, { "source": "1703", "target": "1646", "key": "6495", "undirected": true }, { "source": "1317", "target": "391", "key": "6496", "undirected": true }, { "source": "1317", "target": "1316", "key": "6497", "undirected": true }, { "source": "1705", "target": "174", "key": "6498", "undirected": true }, { "source": "1705", "target": "779", "key": "6499", "undirected": true }, { "source": "1705", "target": "624", "key": "6500", "undirected": true }, { "source": "1705", "target": "1022", "key": "6501", "undirected": true }, { "source": "1705", "target": "120", "key": "6502", "undirected": true }, { "source": "1705", "target": "68", "key": "6503", "undirected": true }, { "source": "1705", "target": "157", "key": "6504", "undirected": true }, { "source": "1705", "target": "53", "key": "6505", "undirected": true }, { "source": "1561", "target": "433", "key": "6506", "undirected": true }, { "source": "1561", "target": "609", "key": "6507", "undirected": true }, { "source": "1561", "target": "119", "key": "6508", "undirected": true }, { "source": "116", "target": "363", "key": "6509", "undirected": true }, { "source": "116", "target": "373", "key": "6510", "undirected": true }, { "source": "116", "target": "113", "key": "6511", "undirected": true }, { "source": "116", "target": "115", "key": "6512", "undirected": true }, { "source": "1364", "target": "631", "key": "6513", "undirected": true }, { "source": "1364", "target": "1293", "key": "6514", "undirected": true }, { "source": "1364", "target": "113", "key": "6515", "undirected": true }, { "source": "807", "target": "198", "key": "6516", "undirected": true }, { "source": "807", "target": "411", "key": "6517", "undirected": true }, { "source": "495", "target": "493", "key": "6518", "undirected": true }, { "source": "495", "target": "825", "key": "6519", "undirected": true }, { "source": "495", "target": "82", "key": "6520", "undirected": true }, { "source": "495", "target": "1706", "key": "6521", "undirected": true }, { "source": "1706", "target": "493", "key": "6522", "undirected": true }, { "source": "1706", "target": "33", "key": "6523", "undirected": true }, { "source": "1706", "target": "495", "key": "6524", "undirected": true }, { "source": "1241", "target": "1238", "key": "6525", "undirected": true }, { "source": "1704", "target": "1238", "key": "6526", "undirected": true }, { "source": "1704", "target": "313", "key": "6527", "undirected": true }, { "source": "704", "target": "64", "key": "6528", "undirected": true }, { "source": "704", "target": "541", "key": "6529", "undirected": true }, { "source": "704", "target": "91", "key": "6530", "undirected": true }, { "source": "1707", "target": "270", "key": "6531", "undirected": true }, { "source": "1707", "target": "1002", "key": "6532", "undirected": true }, { "source": "1707", "target": "144", "key": "6533", "undirected": true }, { "source": "1707", "target": "567", "key": "6534", "undirected": true }, { "source": "1707", "target": "1049", "key": "6535", "undirected": true }, { "source": "1707", "target": "423", "key": "6536", "undirected": true }, { "source": "1707", "target": "656", "key": "6537", "undirected": true }, { "source": "1707", "target": "109", "key": "6538", "undirected": true }, { "source": "534", "target": "532", "key": "6539", "undirected": true }, { "source": "1708", "target": "508", "key": "6540", "undirected": true }, { "source": "1708", "target": "49", "key": "6541", "undirected": true }, { "source": "1709", "target": "301", "key": "6542", "undirected": true }, { "source": "1709", "target": "303", "key": "6543", "undirected": true }, { "source": "1709", "target": "296", "key": "6544", "undirected": true }, { "source": "1709", "target": "967", "key": "6545", "undirected": true }, { "source": "1709", "target": "1062", "key": "6546", "undirected": true }, { "source": "1709", "target": "479", "key": "6547", "undirected": true }, { "source": "1709", "target": "1", "key": "6548", "undirected": true }, { "source": "1709", "target": "182", "key": "6549", "undirected": true }, { "source": "1709", "target": "183", "key": "6550", "undirected": true }, { "source": "1709", "target": "1557", "key": "6551", "undirected": true }, { "source": "1586", "target": "122", "key": "6552", "undirected": true }, { "source": "1586", "target": "1", "key": "6553", "undirected": true }, { "source": "1710", "target": "122", "key": "6554", "undirected": true }, { "source": "1710", "target": "1", "key": "6555", "undirected": true }, { "source": "1253", "target": "296", "key": "6556", "undirected": true }, { "source": "1253", "target": "79", "key": "6557", "undirected": true }, { "source": "1253", "target": "377", "key": "6558", "undirected": true }, { "source": "1253", "target": "852", "key": "6559", "undirected": true }, { "source": "1253", "target": "182", "key": "6560", "undirected": true }, { "source": "1253", "target": "185", "key": "6561", "undirected": true }, { "source": "1638", "target": "367", "key": "6562", "undirected": true }, { "source": "1638", "target": "899", "key": "6563", "undirected": true }, { "source": "1515", "target": "163", "key": "6564", "undirected": true }, { "source": "1515", "target": "1518", "key": "6565", "undirected": true }, { "source": "1082", "target": "307", "key": "6566", "undirected": true }, { "source": "1082", "target": "911", "key": "6567", "undirected": true }, { "source": "1082", "target": "912", "key": "6568", "undirected": true }, { "source": "1082", "target": "653", "key": "6569", "undirected": true }, { "source": "1082", "target": "309", "key": "6570", "undirected": true }, { "source": "1082", "target": "367", "key": "6571", "undirected": true }, { "source": "1082", "target": "913", "key": "6572", "undirected": true }, { "source": "1082", "target": "1083", "key": "6573", "undirected": true }, { "source": "899", "target": "367", "key": "6574", "undirected": true }, { "source": "941", "target": "1", "key": "6575", "undirected": true }, { "source": "941", "target": "12", "key": "6576", "undirected": true }, { "source": "1410", "target": "304", "key": "6577", "undirected": true }, { "source": "1410", "target": "1556", "key": "6578", "undirected": true }, { "source": "616", "target": "296", "key": "6579", "undirected": true }, { "source": "616", "target": "177", "key": "6580", "undirected": true }, { "source": "616", "target": "79", "key": "6581", "undirected": true }, { "source": "1711", "target": "79", "key": "6582", "undirected": true }, { "source": "1711", "target": "150", "key": "6583", "undirected": true }, { "source": "276", "target": "275", "key": "6584", "undirected": true }, { "source": "276", "target": "270", "key": "6585", "undirected": true }, { "source": "276", "target": "36", "key": "6586", "undirected": true }, { "source": "276", "target": "1384", "key": "6587", "undirected": true }, { "source": "276", "target": "38", "key": "6588", "undirected": true }, { "source": "276", "target": "313", "key": "6589", "undirected": true }, { "source": "1712", "target": "303", "key": "6590", "undirected": true }, { "source": "1712", "target": "293", "key": "6591", "undirected": true }, { "source": "1712", "target": "79", "key": "6592", "undirected": true }, { "source": "1712", "target": "894", "key": "6593", "undirected": true }, { "source": "1712", "target": "377", "key": "6594", "undirected": true }, { "source": "1712", "target": "1227", "key": "6595", "undirected": true }, { "source": "1712", "target": "182", "key": "6596", "undirected": true }, { "source": "1712", "target": "302", "key": "6597", "undirected": true }, { "source": "1712", "target": "183", "key": "6598", "undirected": true }, { "source": "1713", "target": "1", "key": "6599", "undirected": true }, { "source": "1713", "target": "272", "key": "6600", "undirected": true }, { "source": "1713", "target": "429", "key": "6601", "undirected": true }, { "source": "1713", "target": "37", "key": "6602", "undirected": true }, { "source": "1713", "target": "209", "key": "6603", "undirected": true }, { "source": "1713", "target": "207", "key": "6604", "undirected": true }, { "source": "474", "target": "475", "key": "6605", "undirected": true }, { "source": "474", "target": "313", "key": "6606", "undirected": true }, { "source": "474", "target": "473", "key": "6607", "undirected": true }, { "source": "1714", "target": "79", "key": "6608", "undirected": true }, { "source": "1714", "target": "1711", "key": "6609", "undirected": true }, { "source": "1715", "target": "652", "key": "6610", "undirected": true }, { "source": "1715", "target": "415", "key": "6611", "undirected": true }, { "source": "1715", "target": "182", "key": "6612", "undirected": true }, { "source": "1715", "target": "1279", "key": "6613", "undirected": true }, { "source": "1716", "target": "1120", "key": "6614", "undirected": true }, { "source": "1716", "target": "1121", "key": "6615", "undirected": true }, { "source": "1716", "target": "1717", "key": "6616", "undirected": true }, { "source": "1716", "target": "1718", "key": "6617", "undirected": true }, { "source": "1716", "target": "149", "key": "6618", "undirected": true }, { "source": "1142", "target": "1120", "key": "6619", "undirected": true }, { "source": "1142", "target": "1718", "key": "6620", "undirected": true }, { "source": "1717", "target": "203", "key": "6621", "undirected": true }, { "source": "1717", "target": "1120", "key": "6622", "undirected": true }, { "source": "1717", "target": "1121", "key": "6623", "undirected": true }, { "source": "1717", "target": "1718", "key": "6624", "undirected": true }, { "source": "1718", "target": "1717", "key": "6625", "undirected": true }, { "source": "1718", "target": "149", "key": "6626", "undirected": true }, { "source": "1718", "target": "1120", "key": "6627", "undirected": true }, { "source": "1718", "target": "1121", "key": "6628", "undirected": true }, { "source": "1719", "target": "53", "key": "6629", "undirected": true }, { "source": "1719", "target": "50", "key": "6630", "undirected": true }, { "source": "675", "target": "69", "key": "6631", "undirected": true }, { "source": "675", "target": "280", "key": "6632", "undirected": true }, { "source": "675", "target": "512", "key": "6633", "undirected": true }, { "source": "202", "target": "403", "key": "6634", "undirected": true }, { "source": "202", "target": "438", "key": "6635", "undirected": true }, { "source": "202", "target": "264", "key": "6636", "undirected": true }, { "source": "202", "target": "265", "key": "6637", "undirected": true }, { "source": "202", "target": "266", "key": "6638", "undirected": true }, { "source": "202", "target": "835", "key": "6639", "undirected": true }, { "source": "713", "target": "715", "key": "6640", "undirected": true }, { "source": "713", "target": "96", "key": "6641", "undirected": true }, { "source": "713", "target": "85", "key": "6642", "undirected": true }, { "source": "713", "target": "712", "key": "6643", "undirected": true }, { "source": "713", "target": "502", "key": "6644", "undirected": true }, { "source": "713", "target": "82", "key": "6645", "undirected": true }, { "source": "713", "target": "714", "key": "6646", "undirected": true }, { "source": "714", "target": "502", "key": "6647", "undirected": true }, { "source": "714", "target": "713", "key": "6648", "undirected": true }, { "source": "714", "target": "129", "key": "6649", "undirected": true }, { "source": "714", "target": "715", "key": "6650", "undirected": true }, { "source": "714", "target": "85", "key": "6651", "undirected": true }, { "source": "714", "target": "712", "key": "6652", "undirected": true }, { "source": "714", "target": "444", "key": "6653", "undirected": true }, { "source": "714", "target": "870", "key": "6654", "undirected": true }, { "source": "1360", "target": "408", "key": "6655", "undirected": true }, { "source": "1360", "target": "600", "key": "6656", "undirected": true }, { "source": "1360", "target": "119", "key": "6657", "undirected": true }, { "source": "1360", "target": "49", "key": "6658", "undirected": true }, { "source": "1360", "target": "513", "key": "6659", "undirected": true }, { "source": "1360", "target": "51", "key": "6660", "undirected": true }, { "source": "1720", "target": "264", "key": "6661", "undirected": true }, { "source": "1720", "target": "265", "key": "6662", "undirected": true }, { "source": "1720", "target": "263", "key": "6663", "undirected": true }, { "source": "1720", "target": "144", "key": "6664", "undirected": true }, { "source": "1720", "target": "62", "key": "6665", "undirected": true }, { "source": "1720", "target": "146", "key": "6666", "undirected": true }, { "source": "1720", "target": "438", "key": "6667", "undirected": true }, { "source": "1721", "target": "166", "key": "6668", "undirected": true }, { "source": "1721", "target": "53", "key": "6669", "undirected": true }, { "source": "1721", "target": "816", "key": "6670", "undirected": true }, { "source": "1721", "target": "114", "key": "6671", "undirected": true }, { "source": "1721", "target": "119", "key": "6672", "undirected": true }, { "source": "1721", "target": "1289", "key": "6673", "undirected": true }, { "source": "1722", "target": "166", "key": "6674", "undirected": true }, { "source": "1722", "target": "82", "key": "6675", "undirected": true } ], "options": { "type": "undirected", "multi": true, "allowSelfLoops": true } } ================================================ FILE: packages/test/datasets/large-graph.json ================================================ { "attributes": {}, "nodes": [ { "key": "0", "attributes": { "cluster": 1, "x": 60.67507866692199, "y": -35.62717576719728, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1", "attributes": { "cluster": 2, "x": -0.9219561827664906, "y": 71.17626493017593, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2", "attributes": { "cluster": 0, "x": -62.61794484645874, "y": -35.62717576719728, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3", "attributes": { "cluster": 0, "x": -60.61794484645874, "y": -35.62717576719728, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": -33.895124959628404, "size": 1, "color": "#e36d0" } }, { "key": "5", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": -37.359226574766154, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6", "attributes": { "cluster": 1, "x": 62.67507866692199, "y": -35.62717576719728, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7", "attributes": { "cluster": 0, "x": -63.61794484645874, "y": -37.359226574766154, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8", "attributes": { "cluster": 2, "x": 1.0780438172335094, "y": 71.17626493017593, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9", "attributes": { "cluster": 2, "x": 0.07804381723350934, "y": 72.90831573774481, "size": 1, "color": "#4b94db" } }, { "key": "10", "attributes": { "cluster": 0, "x": -59.61794484645874, "y": -37.359226574766154, "size": 3, "color": "#e36d0" } }, { "key": "11", "attributes": { "cluster": 2, "x": 0.07804381723350934, "y": 69.44421412260705, "size": 1, "color": "#4b94db" } }, { "key": "12", "attributes": { "cluster": 0, "x": -59.61794484645874, "y": -33.895124959628404, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "13", "attributes": { "cluster": 2, "x": -1.9219561827664906, "y": 69.44421412260705, "size": 2, "color": "#4b94db" } }, { "key": "14", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": -33.895124959628404, "size": 1, "color": "#762e2e" } }, { "key": "15", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": -37.359226574766154, "size": 2, "color": "#762e2e" } }, { "key": "16", "attributes": { "cluster": 1, "x": 59.67507866692199, "y": -37.359226574766154, "size": 1, "color": "#762e2e" } }, { "key": "17", "attributes": { "cluster": 1, "x": 63.67507866692199, "y": -37.359226574766154, "size": 2, "color": "#762e2e" } }, { "key": "18", "attributes": { "cluster": 0, "x": -63.61794484645874, "y": -33.895124959628404, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "19", "attributes": { "cluster": 2, "x": 2.0780438172335094, "y": 69.44421412260705, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "20", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -35.62717576719728, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "21", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -35.62717576719728, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "22", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -33.895124959628404, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "23", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": -37.359226574766154, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "24", "attributes": { "cluster": 2, "x": 2.0780438172335094, "y": 72.90831573774481, "size": 1, "color": "#4b94db" } }, { "key": "25", "attributes": { "cluster": 0, "x": -60.61794484645874, "y": -32.16307415205952, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "26", "attributes": { "cluster": 2, "x": -1.9219561827664906, "y": 72.90831573774481, "size": 0, "color": "#4b94db" } }, { "key": "27", "attributes": { "cluster": 2, "x": -2.9219561827664906, "y": 71.17626493017593, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "28", "attributes": { "cluster": 1, "x": 63.67507866692199, "y": -33.895124959628404, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "29", "attributes": { "cluster": 1, "x": 59.67507866692199, "y": -33.895124959628404, "size": 1, "color": "#762e2e" } }, { "key": "30", "attributes": { "cluster": 2, "x": 3.0780438172335094, "y": 71.17626493017593, "size": 1, "color": "#4b94db" } }, { "key": "31", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -35.62717576719728, "size": 1, "color": "#762e2e" } }, { "key": "32", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -35.62717576719728, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "33", "attributes": { "cluster": 2, "x": -3.9219561827664906, "y": 72.90831573774481, "size": 2, "color": "#4b94db" } }, { "key": "34", "attributes": { "cluster": 0, "x": -62.61794484645874, "y": -39.091277382335036, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "35", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -33.895124959628404, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "36", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -37.359226574766154, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "37", "attributes": { "cluster": 0, "x": -60.61794484645874, "y": -39.091277382335036, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "38", "attributes": { "cluster": 0, "x": -62.61794484645874, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "39", "attributes": { "cluster": 2, "x": 4.078043817233509, "y": 69.44421412260705, "size": 1, "color": "#4b94db" } }, { "key": "40", "attributes": { "cluster": 1, "x": 62.67507866692199, "y": -32.16307415205952, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "41", "attributes": { "cluster": 1, "x": 60.67507866692199, "y": -39.091277382335036, "size": 2, "color": "#762e2e" } }, { "key": "42", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": -30.431023344490647, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "43", "attributes": { "cluster": 2, "x": 1.0780438172335094, "y": 74.64036654531368, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "44", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -37.359226574766154, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "45", "attributes": { "cluster": 1, "x": 62.67507866692199, "y": -39.091277382335036, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "46", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": -40.82332818990391, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "47", "attributes": { "cluster": 1, "x": 60.67507866692199, "y": -32.16307415205952, "size": 2, "color": "#762e2e" } }, { "key": "48", "attributes": { "cluster": 2, "x": -0.9219561827664906, "y": 67.71216331503818, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "49", "attributes": { "cluster": 2, "x": 1.078043817233509, "y": 67.71216331503818, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "50", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": -30.431023344490647, "size": 2, "color": "#762e2e" } }, { "key": "51", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -37.359226574766154, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "52", "attributes": { "cluster": 2, "x": -0.9219561827664904, "y": 74.64036654531368, "size": 1, "color": "#4b94db" } }, { "key": "53", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": -40.82332818990391, "size": 1, "color": "#762e2e" } }, { "key": "54", "attributes": { "cluster": 2, "x": 0.07804381723350945, "y": 76.37241735288256, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "55", "attributes": { "cluster": 2, "x": -3.9219561827664906, "y": 69.44421412260705, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "56", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": -33.895124959628404, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "57", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "58", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -33.895124959628404, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "59", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "60", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -32.16307415205952, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "61", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -39.091277382335036, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "62", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -39.091277382335036, "size": 0, "color": "#e36d0" } }, { "key": "63", "attributes": { "cluster": 2, "x": 0.07804381723350923, "y": 65.9801125074693, "size": 2, "color": "#4b94db" } }, { "key": "64", "attributes": { "cluster": 2, "x": 4.078043817233509, "y": 72.90831573774481, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "65", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "66", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "67", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -39.091277382335036, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "68", "attributes": { "cluster": 2, "x": 3.0780438172335094, "y": 74.64036654531368, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "69", "attributes": { "cluster": 2, "x": -2.92195618276649, "y": 74.64036654531368, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "70", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -39.091277382335036, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "71", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -32.16307415205952, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "72", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": -39.091277382335036, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "73", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -39.091277382335036, "size": 2, "color": "#e36d0" } }, { "key": "74", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -39.091277382335036, "size": 2, "color": "#762e2e" } }, { "key": "75", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": -32.16307415205952, "size": 2, "color": "#762e2e" } }, { "key": "76", "attributes": { "cluster": 2, "x": -2.9219561827664906, "y": 67.71216331503818, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "77", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": -35.62717576719728, "size": 1, "color": "#762e2e" } }, { "key": "78", "attributes": { "cluster": 2, "x": 3.078043817233509, "y": 67.71216331503818, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "79", "attributes": { "cluster": 2, "x": 5.078043817233509, "y": 74.64036654531368, "size": 2, "color": "#4b94db" } }, { "key": "80", "attributes": { "cluster": 2, "x": -4.921956182766491, "y": 67.71216331503818, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "81", "attributes": { "cluster": 1, "x": 55.67507866692199, "y": -37.359226574766154, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "82", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": -39.091277382335036, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "83", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "84", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -35.62717576719728, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "85", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -35.62717576719728, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "86", "attributes": { "cluster": 2, "x": 5.078043817233509, "y": 67.71216331503818, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "87", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -33.895124959628404, "size": 1, "color": "#762e2e" } }, { "key": "88", "attributes": { "cluster": 2, "x": -4.921956182766491, "y": 74.64036654531368, "size": 1, "color": "#4b94db" } }, { "key": "89", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -37.359226574766154, "size": 1, "color": "#e36d0" } }, { "key": "90", "attributes": { "cluster": 1, "x": 63.67507866692199, "y": -30.431023344490647, "size": 1, "color": "#762e2e" } }, { "key": "91", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": -35.62717576719728, "size": 1, "color": "#e36d0" } }, { "key": "92", "attributes": { "cluster": 2, "x": -4.921956182766491, "y": 71.17626493017593, "size": 2, "color": "#4b94db" } }, { "key": "93", "attributes": { "cluster": 1, "x": 59.67507866692199, "y": -40.82332818990391, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "94", "attributes": { "cluster": 2, "x": -5.921956182766491, "y": 69.44421412260705, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "95", "attributes": { "cluster": 0, "x": -55.61794484645874, "y": -33.895124959628404, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "96", "attributes": { "cluster": 1, "x": 63.67507866692199, "y": -40.82332818990391, "size": 1, "color": "#762e2e" } }, { "key": "97", "attributes": { "cluster": 1, "x": 59.67507866692199, "y": -30.431023344490647, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "98", "attributes": { "cluster": 2, "x": 5.078043817233509, "y": 71.17626493017593, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "99", "attributes": { "cluster": 0, "x": -59.61794484645874, "y": -30.431023344490647, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "100", "attributes": { "cluster": 1, "x": 60.67507866692199, "y": -42.555378997472786, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "101", "attributes": { "cluster": 0, "x": -63.61794484645874, "y": -40.82332818990391, "size": 1, "color": "#e36d0" } }, { "key": "102", "attributes": { "cluster": 2, "x": 6.078043817233509, "y": 72.90831573774481, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "103", "attributes": { "cluster": 1, "x": 62.67507866692199, "y": -42.555378997472786, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "104", "attributes": { "cluster": 0, "x": -59.61794484645874, "y": -40.82332818990391, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "105", "attributes": { "cluster": 2, "x": 2.0780438172335094, "y": 76.37241735288256, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "106", "attributes": { "cluster": 2, "x": -1.9219561827664906, "y": 65.9801125074693, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "107", "attributes": { "cluster": 1, "x": 62.67507866692199, "y": -28.698972536921772, "size": 1, "color": "#762e2e" } }, { "key": "108", "attributes": { "cluster": 0, "x": -63.61794484645874, "y": -30.431023344490647, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "109", "attributes": { "cluster": 2, "x": 2.078043817233508, "y": 65.9801125074693, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "110", "attributes": { "cluster": 0, "x": -62.61794484645874, "y": -42.555378997472786, "size": 1, "color": "#e36d0" } }, { "key": "111", "attributes": { "cluster": 0, "x": -60.61794484645874, "y": -42.555378997472786, "size": 1, "color": "#e36d0" } }, { "key": "112", "attributes": { "cluster": 1, "x": 60.67507866692199, "y": -28.69897253692177, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "113", "attributes": { "cluster": 1, "x": 55.67507866692199, "y": -33.895124959628404, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "114", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -37.359226574766154, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "115", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -30.431023344490647, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "116", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -40.82332818990391, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "117", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -40.82332818990391, "size": 1, "color": "#762e2e" } }, { "key": "118", "attributes": { "cluster": 2, "x": -1.9219561827664895, "y": 76.37241735288256, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "119", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -30.431023344490647, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "120", "attributes": { "cluster": 0, "x": -60.61794484645874, "y": -28.698972536921772, "size": 2, "color": "#e36d0" } }, { "key": "121", "attributes": { "cluster": 0, "x": -62.61794484645874, "y": -28.69897253692177, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "122", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -33.895124959628404, "size": 1, "color": "#e36d0" } }, { "key": "123", "attributes": { "cluster": 2, "x": -0.9219561827664906, "y": 64.24806169990042, "size": 1, "color": "#4b94db" } }, { "key": "124", "attributes": { "cluster": 0, "x": -55.61794484645874, "y": -37.359226574766154, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "125", "attributes": { "cluster": 2, "x": 1.0780438172335087, "y": 64.24806169990042, "size": 1, "color": "#4b94db" } }, { "key": "126", "attributes": { "cluster": 1, "x": 54.67507866692199, "y": -39.091277382335036, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "127", "attributes": { "cluster": 2, "x": 1.0780438172335094, "y": 78.10446816045145, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "128", "attributes": { "cluster": 2, "x": -0.9219561827664899, "y": 78.10446816045145, "size": 1, "color": "#4b94db" } }, { "key": "129", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": -30.431023344490647, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "130", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -40.82332818990391, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "131", "attributes": { "cluster": 2, "x": -5.921956182766491, "y": 72.90831573774481, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "132", "attributes": { "cluster": 2, "x": 6.078043817233509, "y": 69.44421412260705, "size": 2, "color": "#4b94db" } }, { "key": "133", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "134", "attributes": { "cluster": 1, "x": 54.67507866692199, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "135", "attributes": { "cluster": 2, "x": 4.078043817233509, "y": 76.37241735288256, "size": 2, "color": "#4b94db" } }, { "key": "136", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -39.091277382335036, "size": 1, "color": "#762e2e" } }, { "key": "137", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": -40.82332818990391, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "138", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -30.431023344490647, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "139", "attributes": { "cluster": 1, "x": 55.67507866692199, "y": -40.82332818990391, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "140", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -40.82332818990391, "size": 2, "color": "#762e2e" } }, { "key": "141", "attributes": { "cluster": 2, "x": -3.9219561827664906, "y": 65.9801125074693, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "142", "attributes": { "cluster": 2, "x": 4.078043817233508, "y": 65.9801125074693, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "143", "attributes": { "cluster": 1, "x": 55.67507866692199, "y": -30.431023344490647, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "144", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -30.431023344490647, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "145", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -39.091277382335036, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "146", "attributes": { "cluster": 0, "x": -54.61794484645874, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "147", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -32.16307415205952, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "148", "attributes": { "cluster": 1, "x": 54.67507866692199, "y": -35.62717576719728, "size": 1, "color": "#762e2e" } }, { "key": "149", "attributes": { "cluster": 0, "x": -54.61794484645874, "y": -39.091277382335036, "size": 2, "color": "#e36d0" } }, { "key": "150", "attributes": { "cluster": 1, "x": 53.67507866692199, "y": -37.359226574766154, "size": 1, "color": "#762e2e" } }, { "key": "151", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -35.62717576719728, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "152", "attributes": { "cluster": 2, "x": -3.9219561827664893, "y": 76.37241735288256, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "153", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -33.895124959628404, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "154", "attributes": { "cluster": 0, "x": -55.61794484645874, "y": -30.431023344490647, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "155", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -40.82332818990391, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "156", "attributes": { "cluster": 2, "x": -6.921956182766491, "y": 67.71216331503818, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "157", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -28.69897253692177, "size": 1, "color": "#762e2e" } }, { "key": "158", "attributes": { "cluster": 2, "x": 7.078043817233509, "y": 74.64036654531368, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "159", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -42.555378997472786, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "160", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -28.698972536921772, "size": 2, "color": "#762e2e" } }, { "key": "161", "attributes": { "cluster": 0, "x": -55.61794484645874, "y": -40.82332818990391, "size": 1, "color": "#e36d0" } }, { "key": "162", "attributes": { "cluster": 2, "x": -6.921956182766491, "y": 74.64036654531368, "size": 0, "color": "#4b94db" } }, { "key": "163", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -42.555378997472786, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "164", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -30.431023344490647, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "165", "attributes": { "cluster": 2, "x": 7.078043817233509, "y": 67.71216331503818, "size": 1, "color": "#4b94db" } }, { "key": "166", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": -44.28742980504167, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "167", "attributes": { "cluster": 2, "x": 6.078043817233509, "y": 76.37241735288256, "size": 1, "color": "#4b94db" } }, { "key": "168", "attributes": { "cluster": 2, "x": -5.921956182766491, "y": 65.9801125074693, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "169", "attributes": { "cluster": 2, "x": 6.078043817233508, "y": 65.9801125074693, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "170", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -35.62717576719728, "size": 2, "color": "#e36d0" } }, { "key": "171", "attributes": { "cluster": 2, "x": -5.921956182766489, "y": 76.37241735288256, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "172", "attributes": { "cluster": 2, "x": -6.921956182766491, "y": 71.17626493017593, "size": 2, "color": "#4b94db" } }, { "key": "173", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": -26.966921729352894, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "174", "attributes": { "cluster": 2, "x": -7.921956182766491, "y": 69.44421412260705, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "175", "attributes": { "cluster": 2, "x": 7.078043817233509, "y": 71.17626493017593, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "176", "attributes": { "cluster": 0, "x": -69.61794484645874, "y": -37.359226574766154, "size": 1, "color": "#e36d0" } }, { "key": "177", "attributes": { "cluster": 2, "x": 8.078043817233509, "y": 72.90831573774481, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "178", "attributes": { "cluster": 0, "x": -54.61794484645874, "y": -35.62717576719728, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "179", "attributes": { "cluster": 2, "x": -2.9219561827664884, "y": 78.10446816045145, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "180", "attributes": { "cluster": 1, "x": 59.67507866692199, "y": -44.28742980504167, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "181", "attributes": { "cluster": 0, "x": -53.61794484645874, "y": -33.895124959628404, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "182", "attributes": { "cluster": 1, "x": 63.67507866692199, "y": -26.966921729352894, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "183", "attributes": { "cluster": 2, "x": 3.078043817233507, "y": 64.24806169990042, "size": 1, "color": "#4b94db" } }, { "key": "184", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -28.69897253692177, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "185", "attributes": { "cluster": 2, "x": 3.0780438172335103, "y": 78.10446816045145, "size": 1, "color": "#4b94db" } }, { "key": "186", "attributes": { "cluster": 1, "x": 59.67507866692199, "y": -26.96692172935289, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "187", "attributes": { "cluster": 2, "x": -2.9219561827664915, "y": 64.24806169990042, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "188", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -42.555378997472786, "size": 1, "color": "#e36d0" } }, { "key": "189", "attributes": { "cluster": 1, "x": 63.67507866692199, "y": -44.28742980504167, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "190", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -37.35922657476616, "size": 1, "color": "#762e2e" } }, { "key": "191", "attributes": { "cluster": 1, "x": 53.67507866692199, "y": -33.8951249596284, "size": 1, "color": "#762e2e" } }, { "key": "192", "attributes": { "cluster": 2, "x": 0.07804381723350824, "y": 62.51601089233155, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "193", "attributes": { "cluster": 2, "x": 0.07804381723351043, "y": 79.83651896802031, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "194", "attributes": { "cluster": 1, "x": 53.67507866692199, "y": -40.82332818990391, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "195", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -28.698972536921772, "size": 1, "color": "#e36d0" } }, { "key": "196", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -42.555378997472786, "size": 1, "color": "#e36d0" } }, { "key": "197", "attributes": { "cluster": 2, "x": -1.921956182766491, "y": 62.51601089233155, "size": 2, "color": "#4b94db" } }, { "key": "198", "attributes": { "cluster": 2, "x": 2.07804381723351, "y": 79.83651896802031, "size": 2, "color": "#4b94db" } }, { "key": "199", "attributes": { "cluster": 2, "x": -1.9219561827664893, "y": 79.83651896802031, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "200", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -30.431023344490647, "size": 1, "color": "#762e2e" } }, { "key": "201", "attributes": { "cluster": 1, "x": 53.67507866692199, "y": -30.431023344490647, "size": 1, "color": "#762e2e" } }, { "key": "202", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": -44.28742980504167, "size": 1, "color": "#e36d0" } }, { "key": "203", "attributes": { "cluster": 2, "x": 2.078043817233508, "y": 62.51601089233154, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "204", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -40.82332818990391, "size": 2, "color": "#762e2e" } }, { "key": "205", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": -26.966921729352894, "size": 2, "color": "#e36d0" } }, { "key": "206", "attributes": { "cluster": 2, "x": 8.078043817233509, "y": 69.44421412260705, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "207", "attributes": { "cluster": 2, "x": -7.921956182766491, "y": 72.90831573774481, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "208", "attributes": { "cluster": 2, "x": -7.921956182766491, "y": 65.9801125074693, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "209", "attributes": { "cluster": 0, "x": -63.61794484645874, "y": -44.28742980504167, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "210", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -28.698972536921772, "size": 2, "color": "#762e2e" } }, { "key": "211", "attributes": { "cluster": 0, "x": -59.61794484645874, "y": -26.966921729352894, "size": 1, "color": "#e36d0" } }, { "key": "212", "attributes": { "cluster": 2, "x": 8.078043817233509, "y": 76.37241735288256, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "213", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": -42.555378997472786, "size": 3, "color": "#762e2e" } }, { "key": "214", "attributes": { "cluster": 2, "x": -7.921956182766489, "y": 76.37241735288256, "size": 1, "color": "#4b94db" } }, { "key": "215", "attributes": { "cluster": 0, "x": -63.61794484645874, "y": -26.96692172935289, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "216", "attributes": { "cluster": 0, "x": -59.61794484645874, "y": -44.28742980504167, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "217", "attributes": { "cluster": 0, "x": -53.61794484645874, "y": -37.35922657476616, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "218", "attributes": { "cluster": 0, "x": -69.61794484645874, "y": -33.8951249596284, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "219", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -42.555378997472786, "size": 1, "color": "#762e2e" } }, { "key": "220", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -32.16307415205953, "size": 1, "color": "#762e2e" } }, { "key": "221", "attributes": { "cluster": 0, "x": -69.61794484645874, "y": -40.82332818990391, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "222", "attributes": { "cluster": 2, "x": 8.078043817233507, "y": 65.9801125074693, "size": 1, "color": "#4b94db" } }, { "key": "223", "attributes": { "cluster": 0, "x": -53.61794484645874, "y": -30.431023344490647, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "224", "attributes": { "cluster": 0, "x": -69.61794484645874, "y": -30.431023344490647, "size": 1, "color": "#e36d0" } }, { "key": "225", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": -28.69897253692177, "size": 1, "color": "#762e2e" } }, { "key": "226", "attributes": { "cluster": 1, "x": 52.67507866692199, "y": -39.09127738233503, "size": 2, "color": "#762e2e" } }, { "key": "227", "attributes": { "cluster": 0, "x": -53.61794484645874, "y": -40.82332818990391, "size": 2, "color": "#e36d0" } }, { "key": "228", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -39.091277382335036, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "229", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": -28.698972536921772, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "230", "attributes": { "cluster": 1, "x": 52.67507866692199, "y": -32.16307415205952, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "231", "attributes": { "cluster": 1, "x": 54.67507866692199, "y": -42.555378997472786, "size": 3.3333333333333335, "color": "#762e2e" } }, { "key": "232", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -28.698972536921772, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "233", "attributes": { "cluster": 1, "x": 54.67507866692199, "y": -28.69897253692177, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "234", "attributes": { "cluster": 2, "x": 5.07804381723351, "y": 78.10446816045143, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "235", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -42.55537899747279, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "236", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -35.62717576719728, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "237", "attributes": { "cluster": 1, "x": 71.67507866692199, "y": -33.895124959628404, "size": 1, "color": "#762e2e" } }, { "key": "238", "attributes": { "cluster": 1, "x": 52.67507866692199, "y": -35.62717576719728, "size": 1, "color": "#762e2e" } }, { "key": "239", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -42.555378997472786, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "240", "attributes": { "cluster": 2, "x": -4.9219561827664915, "y": 64.24806169990043, "size": 1, "color": "#4b94db" } }, { "key": "241", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": -42.555378997472786, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "242", "attributes": { "cluster": 0, "x": -52.61794484645874, "y": -32.16307415205953, "size": 2, "color": "#e36d0" } }, { "key": "243", "attributes": { "cluster": 1, "x": 51.67507866692199, "y": -37.359226574766154, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "244", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -28.69897253692177, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "245", "attributes": { "cluster": 1, "x": 60.67507866692199, "y": -46.01948061261054, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "246", "attributes": { "cluster": 1, "x": 62.67507866692199, "y": -25.234870921784015, "size": 1, "color": "#762e2e" } }, { "key": "247", "attributes": { "cluster": 2, "x": 5.078043817233507, "y": 64.24806169990042, "size": 1, "color": "#4b94db" } }, { "key": "248", "attributes": { "cluster": 2, "x": 9.078043817233509, "y": 74.64036654531368, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "249", "attributes": { "cluster": 1, "x": 60.67507866692199, "y": -25.234870921784015, "size": 2, "color": "#762e2e" } }, { "key": "250", "attributes": { "cluster": 2, "x": -4.921956182766488, "y": 78.10446816045145, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "251", "attributes": { "cluster": 0, "x": -70.61794484645874, "y": -39.09127738233503, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "252", "attributes": { "cluster": 1, "x": 62.67507866692199, "y": -46.01948061261054, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "253", "attributes": { "cluster": 2, "x": -8.921956182766491, "y": 67.71216331503818, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "254", "attributes": { "cluster": 0, "x": -52.61794484645874, "y": -39.091277382335036, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "255", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -26.966921729352894, "size": 1, "color": "#762e2e" } }, { "key": "256", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -44.28742980504167, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "257", "attributes": { "cluster": 0, "x": -70.61794484645874, "y": -32.16307415205952, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "258", "attributes": { "cluster": 2, "x": 9.078043817233509, "y": 67.71216331503818, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "259", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -42.555378997472786, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "260", "attributes": { "cluster": 2, "x": -8.921956182766491, "y": 74.64036654531368, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "261", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -44.28742980504167, "size": 1, "color": "#762e2e" } }, { "key": "262", "attributes": { "cluster": 2, "x": -6.9219561827664915, "y": 64.24806169990042, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "263", "attributes": { "cluster": 2, "x": 7.07804381723351, "y": 78.10446816045145, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "264", "attributes": { "cluster": 2, "x": -6.921956182766488, "y": 78.10446816045145, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "265", "attributes": { "cluster": 0, "x": -54.61794484645874, "y": -28.698972536921772, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "266", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -28.69897253692177, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "267", "attributes": { "cluster": 2, "x": 7.078043817233507, "y": 64.24806169990042, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "268", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -26.96692172935289, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "269", "attributes": { "cluster": 0, "x": -54.61794484645874, "y": -42.55537899747279, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "270", "attributes": { "cluster": 2, "x": 9.078043817233509, "y": 71.17626493017593, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "271", "attributes": { "cluster": 2, "x": 10.078043817233509, "y": 72.90831573774481, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "272", "attributes": { "cluster": 0, "x": -52.61794484645874, "y": -35.62717576719728, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "273", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -46.01948061261054, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "274", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -25.234870921784015, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "275", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -46.01948061261054, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "276", "attributes": { "cluster": 2, "x": -8.921956182766491, "y": 71.17626493017593, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "277", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -25.234870921784015, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "278", "attributes": { "cluster": 0, "x": -51.61794484645874, "y": -33.895124959628404, "size": 2, "color": "#e36d0" } }, { "key": "279", "attributes": { "cluster": 0, "x": -70.61794484645874, "y": -35.62717576719728, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "280", "attributes": { "cluster": 0, "x": -71.61794484645874, "y": -37.359226574766154, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "281", "attributes": { "cluster": 2, "x": -9.921956182766491, "y": 69.44421412260705, "size": 2, "color": "#4b94db" } }, { "key": "282", "attributes": { "cluster": 2, "x": -0.9219561827664913, "y": 60.78396008476267, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "283", "attributes": { "cluster": 1, "x": 51.67507866692199, "y": -33.8951249596284, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "284", "attributes": { "cluster": 1, "x": 71.67507866692199, "y": -37.35922657476616, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "285", "attributes": { "cluster": 1, "x": 71.67507866692199, "y": -30.431023344490647, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "286", "attributes": { "cluster": 0, "x": -62.61794484645874, "y": -46.01948061261054, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "287", "attributes": { "cluster": 0, "x": -60.61794484645874, "y": -25.234870921784015, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "288", "attributes": { "cluster": 2, "x": 1.07804381723351, "y": 81.5685697755892, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "289", "attributes": { "cluster": 1, "x": 51.67507866692199, "y": -30.431023344490647, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "290", "attributes": { "cluster": 0, "x": -62.61794484645874, "y": -25.234870921784015, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "291", "attributes": { "cluster": 1, "x": 51.67507866692199, "y": -40.82332818990391, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "292", "attributes": { "cluster": 2, "x": -0.9219561827664879, "y": 81.5685697755892, "size": 1, "color": "#4b94db" } }, { "key": "293", "attributes": { "cluster": 0, "x": -60.61794484645874, "y": -46.01948061261054, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "294", "attributes": { "cluster": 1, "x": 71.67507866692199, "y": -40.82332818990391, "size": 1, "color": "#762e2e" } }, { "key": "295", "attributes": { "cluster": 2, "x": 1.0780438172335065, "y": 60.78396008476267, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "296", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -28.698972536921772, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "297", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": -26.966921729352894, "size": 1, "color": "#e36d0" } }, { "key": "298", "attributes": { "cluster": 2, "x": 4.078043817233512, "y": 79.83651896802031, "size": 2, "color": "#4b94db" } }, { "key": "299", "attributes": { "cluster": 1, "x": 52.67507866692199, "y": -28.698972536921765, "size": 3, "color": "#762e2e" } }, { "key": "300", "attributes": { "cluster": 2, "x": -3.9219561827664933, "y": 62.51601089233155, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "301", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -44.28742980504167, "size": 1, "color": "#e36d0" } }, { "key": "302", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": -44.28742980504167, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "303", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -26.96692172935289, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "304", "attributes": { "cluster": 2, "x": 4.078043817233506, "y": 62.51601089233154, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "305", "attributes": { "cluster": 1, "x": 52.67507866692199, "y": -42.555378997472786, "size": 3, "color": "#762e2e" } }, { "key": "306", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -46.01948061261054, "size": 1, "color": "#e36d0" } }, { "key": "307", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -25.234870921784015, "size": 2, "color": "#e36d0" } }, { "key": "308", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -42.55537899747279, "size": 2, "color": "#762e2e" } }, { "key": "309", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -46.01948061261054, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "310", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -25.234870921784015, "size": 2, "color": "#e36d0" } }, { "key": "311", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -32.16307415205953, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "312", "attributes": { "cluster": 2, "x": -3.921956182766487, "y": 79.83651896802031, "size": 1, "color": "#4b94db" } }, { "key": "313", "attributes": { "cluster": 0, "x": -71.61794484645874, "y": -33.8951249596284, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "314", "attributes": { "cluster": 2, "x": 3.0780438172335067, "y": 60.78396008476267, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "315", "attributes": { "cluster": 0, "x": -51.61794484645874, "y": -37.35922657476616, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "316", "attributes": { "cluster": 2, "x": -2.921956182766488, "y": 81.5685697755892, "size": 3, "color": "#4b94db" } }, { "key": "317", "attributes": { "cluster": 0, "x": -51.61794484645874, "y": -30.431023344490647, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "318", "attributes": { "cluster": 1, "x": 50.67507866692199, "y": -39.09127738233503, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "319", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -39.091277382335036, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "320", "attributes": { "cluster": 0, "x": -71.61794484645874, "y": -30.431023344490647, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "321", "attributes": { "cluster": 1, "x": 50.67507866692199, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "322", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -44.28742980504167, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "323", "attributes": { "cluster": 1, "x": 55.675078666922, "y": -26.96692172935289, "size": 1, "color": "#762e2e" } }, { "key": "324", "attributes": { "cluster": 2, "x": -2.9219561827664924, "y": 60.78396008476267, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "325", "attributes": { "cluster": 2, "x": 3.078043817233511, "y": 81.5685697755892, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "326", "attributes": { "cluster": 1, "x": 55.67507866692199, "y": -44.28742980504166, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "327", "attributes": { "cluster": 0, "x": -71.61794484645874, "y": -40.82332818990391, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "328", "attributes": { "cluster": 0, "x": -51.61794484645874, "y": -40.82332818990391, "size": 1, "color": "#e36d0" } }, { "key": "329", "attributes": { "cluster": 0, "x": -52.61794484645874, "y": -28.698972536921772, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "330", "attributes": { "cluster": 0, "x": -70.61794484645874, "y": -28.698972536921765, "size": 1, "color": "#e36d0" } }, { "key": "331", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -26.966921729352897, "size": 0, "color": "#762e2e" } }, { "key": "332", "attributes": { "cluster": 0, "x": -70.61794484645874, "y": -42.555378997472786, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "333", "attributes": { "cluster": 1, "x": 53.675078666922, "y": -26.96692172935289, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "334", "attributes": { "cluster": 2, "x": -9.921956182766491, "y": 72.90831573774481, "size": 2, "color": "#4b94db" } }, { "key": "335", "attributes": { "cluster": 1, "x": 53.67507866692199, "y": -44.28742980504167, "size": 1, "color": "#762e2e" } }, { "key": "336", "attributes": { "cluster": 0, "x": -52.61794484645874, "y": -42.55537899747279, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "337", "attributes": { "cluster": 2, "x": 10.078043817233509, "y": 69.44421412260705, "size": 1, "color": "#4b94db" } }, { "key": "338", "attributes": { "cluster": 0, "x": -50.61794484645874, "y": -32.16307415205953, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "339", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -44.28742980504167, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "340", "attributes": { "cluster": 2, "x": 10.078043817233509, "y": 76.37241735288256, "size": 2, "color": "#4b94db" } }, { "key": "341", "attributes": { "cluster": 2, "x": -9.921956182766488, "y": 76.37241735288256, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "342", "attributes": { "cluster": 2, "x": -9.921956182766491, "y": 65.9801125074693, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "343", "attributes": { "cluster": 0, "x": -72.61794484645874, "y": -39.09127738233503, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "344", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -26.966921729352894, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "345", "attributes": { "cluster": 0, "x": -50.61794484645874, "y": -39.091277382335036, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "346", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": -23.50282011421514, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "347", "attributes": { "cluster": 2, "x": 10.078043817233505, "y": 65.9801125074693, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "348", "attributes": { "cluster": 0, "x": -72.61794484645874, "y": -32.16307415205952, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "349", "attributes": { "cluster": 0, "x": -55.61794484645875, "y": -44.28742980504167, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "350", "attributes": { "cluster": 2, "x": 9.07804381723351, "y": 78.10446816045143, "size": 2, "color": "#4b94db" } }, { "key": "351", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": -47.75153142017942, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "352", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -26.96692172935289, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "353", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -44.28742980504166, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "354", "attributes": { "cluster": 2, "x": -8.92195618276649, "y": 78.10446816045145, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "355", "attributes": { "cluster": 2, "x": -8.921956182766493, "y": 64.24806169990043, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "356", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -35.62717576719728, "size": 2, "color": "#762e2e" } }, { "key": "357", "attributes": { "cluster": 2, "x": 9.078043817233507, "y": 64.24806169990042, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "358", "attributes": { "cluster": 2, "x": 11.078043817233509, "y": 74.64036654531368, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "359", "attributes": { "cluster": 2, "x": -10.921956182766491, "y": 67.71216331503818, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "360", "attributes": { "cluster": 0, "x": -55.61794484645874, "y": -26.966921729352897, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "361", "attributes": { "cluster": 2, "x": 11.078043817233509, "y": 67.71216331503818, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "362", "attributes": { "cluster": 1, "x": 73.67507866692199, "y": -33.895124959628404, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "363", "attributes": { "cluster": 0, "x": -69.61794484645874, "y": -26.96692172935289, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "364", "attributes": { "cluster": 2, "x": -10.921956182766491, "y": 74.64036654531368, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "365", "attributes": { "cluster": 2, "x": 6.078043817233505, "y": 62.51601089233154, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "366", "attributes": { "cluster": 0, "x": -69.61794484645874, "y": -44.28742980504167, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "367", "attributes": { "cluster": 2, "x": -5.921956182766486, "y": 79.83651896802033, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "368", "attributes": { "cluster": 2, "x": -5.921956182766493, "y": 62.51601089233155, "size": 2, "color": "#4b94db" } }, { "key": "369", "attributes": { "cluster": 1, "x": 50.67507866692199, "y": -35.62717576719728, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "370", "attributes": { "cluster": 2, "x": 6.078043817233512, "y": 79.83651896802031, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "371", "attributes": { "cluster": 0, "x": -53.61794484645875, "y": -44.28742980504167, "size": 1, "color": "#e36d0" } }, { "key": "372", "attributes": { "cluster": 1, "x": 49.67507866692199, "y": -37.359226574766154, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "373", "attributes": { "cluster": 0, "x": -53.61794484645874, "y": -26.966921729352894, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "374", "attributes": { "cluster": 2, "x": -7.921956182766486, "y": 79.83651896802033, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "375", "attributes": { "cluster": 1, "x": 59.67507866692199, "y": -47.75153142017942, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "376", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": -23.50282011421514, "size": 1, "color": "#e36d0" } }, { "key": "377", "attributes": { "cluster": 2, "x": -7.921956182766494, "y": 62.51601089233155, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "378", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": -47.75153142017942, "size": 1, "color": "#e36d0" } }, { "key": "379", "attributes": { "cluster": 0, "x": -50.61794484645874, "y": -35.62717576719728, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "380", "attributes": { "cluster": 2, "x": 8.078043817233505, "y": 62.51601089233154, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "381", "attributes": { "cluster": 0, "x": -49.61794484645874, "y": -33.895124959628404, "size": 3, "color": "#e36d0" } }, { "key": "382", "attributes": { "cluster": 0, "x": -72.61794484645874, "y": -35.62717576719728, "size": 2, "color": "#e36d0" } }, { "key": "383", "attributes": { "cluster": 2, "x": 8.078043817233512, "y": 79.83651896802031, "size": 2, "color": "#4b94db" } }, { "key": "384", "attributes": { "cluster": 2, "x": 0.078043817233511, "y": 83.30062058315808, "size": 2, "color": "#4b94db" } }, { "key": "385", "attributes": { "cluster": 1, "x": 63.67507866692199, "y": -23.50282011421514, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "386", "attributes": { "cluster": 1, "x": 59.675078666922, "y": -23.50282011421514, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "387", "attributes": { "cluster": 0, "x": -73.61794484645874, "y": -37.359226574766154, "size": 1, "color": "#e36d0" } }, { "key": "388", "attributes": { "cluster": 0, "x": -63.61794484645874, "y": -47.75153142017942, "size": 2, "color": "#e36d0" } }, { "key": "389", "attributes": { "cluster": 1, "x": 63.67507866692198, "y": -47.75153142017942, "size": 1, "color": "#762e2e" } }, { "key": "390", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -46.01948061261055, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "391", "attributes": { "cluster": 0, "x": -59.61794484645874, "y": -23.50282011421514, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "392", "attributes": { "cluster": 1, "x": 56.675078666922, "y": -25.23487092178401, "size": 1, "color": "#762e2e" } }, { "key": "393", "attributes": { "cluster": 1, "x": 56.67507866692198, "y": -46.01948061261054, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "394", "attributes": { "cluster": 0, "x": -63.617944846458734, "y": -23.50282011421514, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "395", "attributes": { "cluster": 0, "x": -59.61794484645875, "y": -47.75153142017942, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "396", "attributes": { "cluster": 2, "x": 0.07804381723350767, "y": 59.05190927719379, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "397", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -25.234870921784015, "size": 2, "color": "#762e2e" } }, { "key": "398", "attributes": { "cluster": 0, "x": -56.61794484645875, "y": -46.01948061261055, "size": 1, "color": "#e36d0" } }, { "key": "399", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -23.50282011421514, "size": 3, "color": "#762e2e" } }, { "key": "400", "attributes": { "cluster": 2, "x": 11.078043817233509, "y": 71.17626493017593, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "401", "attributes": { "cluster": 2, "x": 12.078043817233509, "y": 72.9083157377448, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "402", "attributes": { "cluster": 2, "x": -10.921956182766491, "y": 71.17626493017593, "size": 4.333333333333333, "color": "#4b94db" } }, { "key": "403", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -47.75153142017942, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "404", "attributes": { "cluster": 2, "x": -11.921956182766491, "y": 69.44421412260706, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "405", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -25.23487092178401, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "406", "attributes": { "cluster": 2, "x": -1.9219561827664915, "y": 59.05190927719379, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "407", "attributes": { "cluster": 2, "x": 2.0780438172335103, "y": 83.30062058315806, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "408", "attributes": { "cluster": 2, "x": -1.9219561827664848, "y": 83.30062058315808, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "409", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -46.01948061261054, "size": 1, "color": "#e36d0" } }, { "key": "410", "attributes": { "cluster": 0, "x": -56.617944846458734, "y": -25.234870921784015, "size": 2, "color": "#e36d0" } }, { "key": "411", "attributes": { "cluster": 2, "x": 2.0780438172335036, "y": 59.05190927719379, "size": 1, "color": "#4b94db" } }, { "key": "412", "attributes": { "cluster": 2, "x": 5.078043817233504, "y": 60.78396008476267, "size": 1, "color": "#4b94db" } }, { "key": "413", "attributes": { "cluster": 2, "x": -4.921956182766485, "y": 81.5685697755892, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "414", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": -23.50282011421514, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "415", "attributes": { "cluster": 2, "x": -4.921956182766495, "y": 60.78396008476267, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "416", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -47.75153142017942, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "417", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -47.751531420179425, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "418", "attributes": { "cluster": 2, "x": 5.078043817233514, "y": 81.5685697755892, "size": 1, "color": "#4b94db" } }, { "key": "419", "attributes": { "cluster": 0, "x": -57.61794484645875, "y": -47.751531420179425, "size": 2, "color": "#e36d0" } }, { "key": "420", "attributes": { "cluster": 1, "x": 57.675078666922, "y": -23.502820114215133, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "421", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -23.502820114215133, "size": 1, "color": "#e36d0" } }, { "key": "422", "attributes": { "cluster": 0, "x": -72.61794484645874, "y": -28.69897253692177, "size": 1, "color": "#e36d0" } }, { "key": "423", "attributes": { "cluster": 0, "x": -50.61794484645874, "y": -42.555378997472786, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "424", "attributes": { "cluster": 2, "x": 4.078043817233513, "y": 83.30062058315806, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "425", "attributes": { "cluster": 0, "x": -50.61794484645874, "y": -28.698972536921772, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "426", "attributes": { "cluster": 2, "x": -3.921956182766494, "y": 59.05190927719379, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "427", "attributes": { "cluster": 0, "x": -72.61794484645874, "y": -42.555378997472786, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "428", "attributes": { "cluster": 1, "x": 50.67507866692199, "y": -28.69897253692177, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "429", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -42.555378997472786, "size": 1, "color": "#762e2e" } }, { "key": "430", "attributes": { "cluster": 0, "x": -49.61794484645874, "y": -40.82332818990391, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "431", "attributes": { "cluster": 0, "x": -49.61794484645874, "y": -30.43102334449065, "size": 2, "color": "#e36d0" } }, { "key": "432", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -28.698972536921772, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "433", "attributes": { "cluster": 2, "x": 4.078043817233504, "y": 59.051909277193786, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "434", "attributes": { "cluster": 1, "x": 50.67507866692199, "y": -42.555378997472786, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "435", "attributes": { "cluster": 0, "x": -73.61794484645874, "y": -30.431023344490644, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "436", "attributes": { "cluster": 2, "x": -3.9219561827664853, "y": 83.30062058315808, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "437", "attributes": { "cluster": 1, "x": 73.67507866692199, "y": -40.82332818990391, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "438", "attributes": { "cluster": 2, "x": -10.921956182766491, "y": 78.10446816045145, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "439", "attributes": { "cluster": 1, "x": 73.67507866692199, "y": -30.43102334449065, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "440", "attributes": { "cluster": 2, "x": 11.078043817233509, "y": 64.24806169990042, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "441", "attributes": { "cluster": 0, "x": -73.61794484645874, "y": -40.82332818990391, "size": 0, "color": "#e36d0" } }, { "key": "442", "attributes": { "cluster": 0, "x": -49.61794484645874, "y": -37.35922657476616, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "443", "attributes": { "cluster": 0, "x": -73.61794484645874, "y": -33.8951249596284, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "444", "attributes": { "cluster": 0, "x": -71.61794484645874, "y": -44.28742980504166, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "445", "attributes": { "cluster": 0, "x": -51.61794484645874, "y": -26.966921729352897, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "446", "attributes": { "cluster": 0, "x": -71.61794484645874, "y": -26.96692172935289, "size": 2, "color": "#e36d0" } }, { "key": "447", "attributes": { "cluster": 1, "x": 49.67507866692199, "y": -30.431023344490644, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "448", "attributes": { "cluster": 2, "x": 11.078043817233509, "y": 78.10446816045143, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "449", "attributes": { "cluster": 0, "x": -51.61794484645875, "y": -44.28742980504167, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "450", "attributes": { "cluster": 1, "x": 49.67507866692199, "y": -40.82332818990391, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "451", "attributes": { "cluster": 2, "x": -10.921956182766491, "y": 64.24806169990043, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "452", "attributes": { "cluster": 2, "x": 12.078043817233505, "y": 65.9801125074693, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "453", "attributes": { "cluster": 0, "x": -48.61794484645874, "y": -32.16307415205953, "size": 1, "color": "#e36d0" } }, { "key": "454", "attributes": { "cluster": 0, "x": -74.61794484645874, "y": -39.09127738233503, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "455", "attributes": { "cluster": 2, "x": 12.078043817233509, "y": 76.37241735288256, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "456", "attributes": { "cluster": 2, "x": -11.921956182766488, "y": 76.37241735288256, "size": 0, "color": "#4b94db" } }, { "key": "457", "attributes": { "cluster": 1, "x": 73.67507866692199, "y": -37.35922657476616, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "458", "attributes": { "cluster": 1, "x": 49.67507866692199, "y": -33.8951249596284, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "459", "attributes": { "cluster": 2, "x": -11.921956182766491, "y": 65.9801125074693, "size": 2, "color": "#4b94db" } }, { "key": "460", "attributes": { "cluster": 1, "x": 51.67507866692199, "y": -44.28742980504166, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "461", "attributes": { "cluster": 0, "x": -48.61794484645874, "y": -39.091277382335036, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "462", "attributes": { "cluster": 2, "x": 12.078043817233509, "y": 69.44421412260705, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "463", "attributes": { "cluster": 1, "x": 71.67507866692199, "y": -26.966921729352897, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "464", "attributes": { "cluster": 0, "x": -74.61794484645874, "y": -32.16307415205952, "size": 1, "color": "#e36d0" } }, { "key": "465", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -46.019480612610536, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "466", "attributes": { "cluster": 1, "x": 51.675078666922, "y": -26.96692172935289, "size": 1, "color": "#762e2e" } }, { "key": "467", "attributes": { "cluster": 1, "x": 71.67507866692199, "y": -44.28742980504167, "size": 2, "color": "#762e2e" } }, { "key": "468", "attributes": { "cluster": 2, "x": -11.921956182766491, "y": 72.90831573774481, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "469", "attributes": { "cluster": 2, "x": -9.921956182766495, "y": 62.51601089233155, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "470", "attributes": { "cluster": 1, "x": 74.67507866692199, "y": -32.16307415205953, "size": 2, "color": "#762e2e" } }, { "key": "471", "attributes": { "cluster": 1, "x": 48.67507866692199, "y": -39.09127738233503, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "472", "attributes": { "cluster": 2, "x": 10.078043817233512, "y": 79.83651896802031, "size": 1, "color": "#4b94db" } }, { "key": "473", "attributes": { "cluster": 0, "x": -54.61794484645875, "y": -46.01948061261055, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "474", "attributes": { "cluster": 1, "x": 74.67507866692199, "y": -39.091277382335036, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "475", "attributes": { "cluster": 2, "x": -9.921956182766486, "y": 79.83651896802033, "size": 1, "color": "#4b94db" } }, { "key": "476", "attributes": { "cluster": 2, "x": 10.078043817233503, "y": 62.51601089233154, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "477", "attributes": { "cluster": 2, "x": 13.078043817233509, "y": 74.64036654531368, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "478", "attributes": { "cluster": 2, "x": -12.921956182766491, "y": 67.71216331503818, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "479", "attributes": { "cluster": 0, "x": -54.617944846458734, "y": -25.23487092178402, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "480", "attributes": { "cluster": 2, "x": 13.078043817233509, "y": 67.71216331503817, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "481", "attributes": { "cluster": 2, "x": -12.921956182766491, "y": 74.6403665453137, "size": 1, "color": "#4b94db" } }, { "key": "482", "attributes": { "cluster": 2, "x": -6.921956182766495, "y": 60.78396008476267, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "483", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -25.23487092178401, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "484", "attributes": { "cluster": 1, "x": 48.67507866692199, "y": -32.16307415205952, "size": 1, "color": "#762e2e" } }, { "key": "485", "attributes": { "cluster": 2, "x": 7.078043817233503, "y": 60.78396008476267, "size": 0, "color": "#4b94db" } }, { "key": "486", "attributes": { "cluster": 1, "x": 54.67507866692198, "y": -46.019480612610536, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "487", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -46.01948061261055, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "488", "attributes": { "cluster": 2, "x": 7.078043817233514, "y": 81.5685697755892, "size": 2, "color": "#4b94db" } }, { "key": "489", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -25.23487092178402, "size": 1, "color": "#762e2e" } }, { "key": "490", "attributes": { "cluster": 1, "x": 54.675078666922, "y": -25.23487092178401, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "491", "attributes": { "cluster": 2, "x": -6.921956182766484, "y": 81.5685697755892, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "492", "attributes": { "cluster": 0, "x": -70.61794484645874, "y": -25.23487092178401, "size": 2, "color": "#e36d0" } }, { "key": "493", "attributes": { "cluster": 0, "x": -52.61794484645875, "y": -46.01948061261055, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "494", "attributes": { "cluster": 2, "x": -8.921956182766486, "y": 81.5685697755892, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "495", "attributes": { "cluster": 1, "x": 52.675078666922, "y": -25.23487092178401, "size": 1, "color": "#762e2e" } }, { "key": "496", "attributes": { "cluster": 0, "x": -52.61794484645874, "y": -25.234870921784015, "size": 1, "color": "#e36d0" } }, { "key": "497", "attributes": { "cluster": 2, "x": 9.078043817233503, "y": 60.78396008476267, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "498", "attributes": { "cluster": 2, "x": 9.078043817233512, "y": 81.5685697755892, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "499", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -46.01948061261055, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "500", "attributes": { "cluster": 0, "x": -70.61794484645874, "y": -46.01948061261054, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "501", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -25.234870921784015, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "502", "attributes": { "cluster": 0, "x": -62.61794484645874, "y": -49.4835822277483, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "503", "attributes": { "cluster": 2, "x": -8.921956182766495, "y": 60.78396008476267, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "504", "attributes": { "cluster": 0, "x": -60.61794484645875, "y": -49.4835822277483, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "505", "attributes": { "cluster": 1, "x": 52.67507866692199, "y": -46.01948061261054, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "506", "attributes": { "cluster": 0, "x": -60.61794484645874, "y": -21.77076930664626, "size": 1, "color": "#e36d0" } }, { "key": "507", "attributes": { "cluster": 1, "x": 60.67507866692199, "y": -49.4835822277483, "size": 2, "color": "#762e2e" } }, { "key": "508", "attributes": { "cluster": 1, "x": 62.67507866692198, "y": -49.4835822277483, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "509", "attributes": { "cluster": 0, "x": -62.617944846458734, "y": -21.770769306646258, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "510", "attributes": { "cluster": 0, "x": -64.61794484645873, "y": -21.770769306646258, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "511", "attributes": { "cluster": 0, "x": -74.61794484645874, "y": -35.62717576719728, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "512", "attributes": { "cluster": 1, "x": 62.67507866692199, "y": -21.77076930664626, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "513", "attributes": { "cluster": 0, "x": -75.61794484645874, "y": -37.359226574766154, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "514", "attributes": { "cluster": 2, "x": -0.9219561827664935, "y": 57.31985846962492, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "515", "attributes": { "cluster": 2, "x": 1.0780438172335056, "y": 57.31985846962491, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "516", "attributes": { "cluster": 2, "x": 1.0780438172335123, "y": 85.03267139072695, "size": 0, "color": "#4b94db" } }, { "key": "517", "attributes": { "cluster": 1, "x": 60.675078666922, "y": -21.770769306646258, "size": 1, "color": "#762e2e" } }, { "key": "518", "attributes": { "cluster": 2, "x": -0.9219561827664868, "y": 85.03267139072695, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "519", "attributes": { "cluster": 1, "x": 58.675078666922, "y": -21.770769306646258, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "520", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -49.48358222774829, "size": 1, "color": "#e36d0" } }, { "key": "521", "attributes": { "cluster": 2, "x": -2.921956182766481, "y": 85.03267139072695, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "522", "attributes": { "cluster": 1, "x": 48.67507866692199, "y": -35.62717576719728, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "523", "attributes": { "cluster": 2, "x": -12.921956182766491, "y": 71.17626493017593, "size": 1, "color": "#4b94db" } }, { "key": "524", "attributes": { "cluster": 0, "x": -58.61794484645875, "y": -49.4835822277483, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "525", "attributes": { "cluster": 0, "x": -48.61794484645874, "y": -35.62717576719728, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "526", "attributes": { "cluster": 1, "x": 47.67507866692199, "y": -37.359226574766154, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "527", "attributes": { "cluster": 0, "x": -47.61794484645874, "y": -33.895124959628404, "size": 1, "color": "#e36d0" } }, { "key": "528", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -21.770769306646265, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "529", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -47.75153142017942, "size": 1, "color": "#e36d0" } }, { "key": "530", "attributes": { "cluster": 0, "x": -55.617944846458734, "y": -23.50282011421514, "size": 2, "color": "#e36d0" } }, { "key": "531", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -49.48358222774829, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "532", "attributes": { "cluster": 2, "x": -13.921956182766491, "y": 69.44421412260706, "size": 1, "color": "#4b94db" } }, { "key": "533", "attributes": { "cluster": 2, "x": -2.921956182766493, "y": 57.31985846962492, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "534", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -23.502820114215133, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "535", "attributes": { "cluster": 0, "x": -55.61794484645875, "y": -47.751531420179425, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "536", "attributes": { "cluster": 2, "x": 3.0780438172334996, "y": 57.31985846962491, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "537", "attributes": { "cluster": 2, "x": 13.078043817233509, "y": 71.17626493017593, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "538", "attributes": { "cluster": 1, "x": 64.67507866692198, "y": -49.4835822277483, "size": 1, "color": "#762e2e" } }, { "key": "539", "attributes": { "cluster": 2, "x": 14.078043817233509, "y": 72.9083157377448, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "540", "attributes": { "cluster": 2, "x": 3.0780438172335116, "y": 85.03267139072695, "size": 1, "color": "#4b94db" } }, { "key": "541", "attributes": { "cluster": 2, "x": -5.921956182766497, "y": 59.05190927719379, "size": 3, "color": "#4b94db" } }, { "key": "542", "attributes": { "cluster": 2, "x": 6.078043817233516, "y": 83.30062058315806, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "543", "attributes": { "cluster": 1, "x": 74.67507866692199, "y": -35.62717576719728, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "544", "attributes": { "cluster": 0, "x": -48.61794484645874, "y": -42.555378997472786, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "545", "attributes": { "cluster": 0, "x": -48.61794484645874, "y": -28.698972536921772, "size": 1, "color": "#e36d0" } }, { "key": "546", "attributes": { "cluster": 1, "x": 75.67507866692199, "y": -33.895124959628404, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "547", "attributes": { "cluster": 0, "x": -74.61794484645874, "y": -28.69897253692177, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "548", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -21.770769306646265, "size": 2, "color": "#762e2e" } }, { "key": "549", "attributes": { "cluster": 1, "x": 55.67507866692198, "y": -47.75153142017942, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "550", "attributes": { "cluster": 0, "x": -74.61794484645874, "y": -42.555378997472786, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "551", "attributes": { "cluster": 0, "x": -66.61794484645876, "y": -49.48358222774829, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "552", "attributes": { "cluster": 0, "x": -56.617944846458734, "y": -21.770769306646265, "size": 1, "color": "#e36d0" } }, { "key": "553", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -23.50282011421514, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "554", "attributes": { "cluster": 1, "x": 55.675078666922, "y": -23.502820114215133, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "555", "attributes": { "cluster": 2, "x": -5.921956182766485, "y": 83.30062058315808, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "556", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -21.770769306646258, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "557", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -47.751531420179425, "size": 0, "color": "#762e2e" } }, { "key": "558", "attributes": { "cluster": 0, "x": -56.61794484645875, "y": -49.4835822277483, "size": 1, "color": "#e36d0" } }, { "key": "559", "attributes": { "cluster": 1, "x": 74.67507866692199, "y": -42.555378997472786, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "560", "attributes": { "cluster": 0, "x": -49.61794484645874, "y": -26.966921729352897, "size": 2, "color": "#e36d0" } }, { "key": "561", "attributes": { "cluster": 0, "x": -73.61794484645874, "y": -44.28742980504166, "size": 1, "color": "#e36d0" } }, { "key": "562", "attributes": { "cluster": 0, "x": -49.61794484645875, "y": -44.28742980504167, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "563", "attributes": { "cluster": 2, "x": 6.078043817233504, "y": 59.051909277193786, "size": 1, "color": "#4b94db" } }, { "key": "564", "attributes": { "cluster": 0, "x": -73.61794484645873, "y": -26.96692172935289, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "565", "attributes": { "cluster": 1, "x": 74.67507866692199, "y": -28.698972536921772, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "566", "attributes": { "cluster": 0, "x": -75.61794484645874, "y": -40.82332818990391, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "567", "attributes": { "cluster": 0, "x": -47.61794484645874, "y": -30.43102334449065, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "568", "attributes": { "cluster": 2, "x": 13.078043817233509, "y": 64.24806169990042, "size": 1, "color": "#4b94db" } }, { "key": "569", "attributes": { "cluster": 1, "x": 48.67507866692199, "y": -28.69897253692177, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "570", "attributes": { "cluster": 2, "x": 13.078043817233509, "y": 78.10446816045143, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "571", "attributes": { "cluster": 2, "x": -12.921956182766491, "y": 78.10446816045145, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "572", "attributes": { "cluster": 1, "x": 48.67507866692199, "y": -42.555378997472786, "size": 1, "color": "#762e2e" } }, { "key": "573", "attributes": { "cluster": 0, "x": -75.61794484645874, "y": -30.431023344490644, "size": 0, "color": "#e36d0" } }, { "key": "574", "attributes": { "cluster": 2, "x": -12.921956182766491, "y": 64.24806169990043, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "575", "attributes": { "cluster": 0, "x": -47.61794484645874, "y": -40.82332818990392, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "576", "attributes": { "cluster": 2, "x": -4.921956182766498, "y": 57.31985846962492, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "577", "attributes": { "cluster": 2, "x": 5.0780438172335165, "y": 85.03267139072695, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "578", "attributes": { "cluster": 1, "x": 56.67507866692198, "y": -49.48358222774829, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "579", "attributes": { "cluster": 0, "x": -72.61794484645874, "y": -25.234870921784008, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "580", "attributes": { "cluster": 0, "x": -50.61794484645875, "y": -46.01948061261055, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "581", "attributes": { "cluster": 2, "x": -4.921956182766485, "y": 85.03267139072696, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "582", "attributes": { "cluster": 2, "x": 5.078043817233504, "y": 57.31985846962491, "size": 1, "color": "#4b94db" } }, { "key": "583", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -21.770769306646265, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "584", "attributes": { "cluster": 0, "x": -50.61794484645874, "y": -25.23487092178402, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "585", "attributes": { "cluster": 0, "x": -72.61794484645874, "y": -46.019480612610536, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "586", "attributes": { "cluster": 2, "x": 12.078043817233512, "y": 79.83651896802031, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "587", "attributes": { "cluster": 1, "x": 56.675078666922, "y": -21.770769306646258, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "588", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -49.4835822277483, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "589", "attributes": { "cluster": 0, "x": -47.61794484645874, "y": -37.35922657476616, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "590", "attributes": { "cluster": 1, "x": 73.67507866692199, "y": -26.966921729352897, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "591", "attributes": { "cluster": 0, "x": -75.61794484645874, "y": -33.8951249596284, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "592", "attributes": { "cluster": 1, "x": 49.67507866692199, "y": -44.28742980504166, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "593", "attributes": { "cluster": 1, "x": 73.67507866692199, "y": -44.28742980504167, "size": 1, "color": "#762e2e" } }, { "key": "594", "attributes": { "cluster": 0, "x": -76.61794484645874, "y": -39.09127738233503, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "595", "attributes": { "cluster": 2, "x": -11.921956182766495, "y": 62.51601089233155, "size": 2, "color": "#4b94db" } }, { "key": "596", "attributes": { "cluster": 2, "x": 12.078043817233501, "y": 62.51601089233154, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "597", "attributes": { "cluster": 1, "x": 49.675078666922, "y": -26.96692172935289, "size": 0, "color": "#762e2e" } }, { "key": "598", "attributes": { "cluster": 1, "x": 47.67507866692199, "y": -40.82332818990391, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "599", "attributes": { "cluster": 0, "x": -46.61794484645874, "y": -39.091277382335036, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "600", "attributes": { "cluster": 2, "x": -11.921956182766484, "y": 79.83651896802033, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "601", "attributes": { "cluster": 1, "x": 75.67507866692199, "y": -30.43102334449065, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "602", "attributes": { "cluster": 1, "x": 47.67507866692199, "y": -30.431023344490644, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "603", "attributes": { "cluster": 0, "x": -46.61794484645874, "y": -32.16307415205953, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "604", "attributes": { "cluster": 2, "x": -13.921956182766491, "y": 65.9801125074693, "size": 1, "color": "#4b94db" } }, { "key": "605", "attributes": { "cluster": 0, "x": -76.61794484645874, "y": -32.16307415205952, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "606", "attributes": { "cluster": 2, "x": 14.078043817233509, "y": 76.37241735288256, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "607", "attributes": { "cluster": 2, "x": -13.921956182766488, "y": 76.37241735288256, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "608", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -47.75153142017942, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "609", "attributes": { "cluster": 0, "x": -53.617944846458734, "y": -23.502820114215144, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "610", "attributes": { "cluster": 1, "x": 75.67507866692199, "y": -40.82332818990392, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "611", "attributes": { "cluster": 1, "x": 50.675078666922, "y": -25.234870921784008, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "612", "attributes": { "cluster": 0, "x": -61.617944846458734, "y": -20.038718499077383, "size": 1, "color": "#e36d0" } }, { "key": "613", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -46.01948061261055, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "614", "attributes": { "cluster": 0, "x": -61.61794484645875, "y": -51.215633035317175, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "615", "attributes": { "cluster": 2, "x": 14.078043817233505, "y": 65.9801125074693, "size": 2, "color": "#4b94db" } }, { "key": "616", "attributes": { "cluster": 0, "x": -53.61794484645875, "y": -47.751531420179425, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "617", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -25.23487092178402, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "618", "attributes": { "cluster": 0, "x": -69.61794484645874, "y": -23.502820114215133, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "619", "attributes": { "cluster": 0, "x": -63.61794484645875, "y": -51.215633035317175, "size": 2, "color": "#e36d0" } }, { "key": "620", "attributes": { "cluster": 0, "x": -59.61794484645875, "y": -51.215633035317175, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "621", "attributes": { "cluster": 2, "x": -10.921956182766486, "y": 81.5685697755892, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "622", "attributes": { "cluster": 1, "x": 50.67507866692199, "y": -46.019480612610536, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "623", "attributes": { "cluster": 0, "x": -59.617944846458734, "y": -20.038718499077383, "size": 1, "color": "#e36d0" } }, { "key": "624", "attributes": { "cluster": 0, "x": -63.617944846458734, "y": -20.038718499077383, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "625", "attributes": { "cluster": 1, "x": 75.67507866692199, "y": -37.35922657476616, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "626", "attributes": { "cluster": 2, "x": 11.078043817233503, "y": 60.78396008476266, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "627", "attributes": { "cluster": 2, "x": 11.078043817233512, "y": 81.5685697755892, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "628", "attributes": { "cluster": 2, "x": -10.921956182766495, "y": 60.78396008476267, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "629", "attributes": { "cluster": 0, "x": -71.61794484645874, "y": -23.502820114215133, "size": 1, "color": "#e36d0" } }, { "key": "630", "attributes": { "cluster": 2, "x": 14.078043817233509, "y": 69.44421412260705, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "631", "attributes": { "cluster": 2, "x": -13.921956182766491, "y": 72.90831573774481, "size": 0, "color": "#4b94db" } }, { "key": "632", "attributes": { "cluster": 1, "x": 47.67507866692199, "y": -33.8951249596284, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "633", "attributes": { "cluster": 1, "x": 46.67507866692199, "y": -39.09127738233503, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "634", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -47.75153142017942, "size": 1, "color": "#e36d0" } }, { "key": "635", "attributes": { "cluster": 1, "x": 76.67507866692199, "y": -39.091277382335036, "size": 2, "color": "#762e2e" } }, { "key": "636", "attributes": { "cluster": 0, "x": -51.61794484645875, "y": -47.751531420179425, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "637", "attributes": { "cluster": 2, "x": -14.921956182766491, "y": 67.71216331503818, "size": 2, "color": "#4b94db" } }, { "key": "638", "attributes": { "cluster": 2, "x": 15.078043817233509, "y": 67.71216331503817, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "639", "attributes": { "cluster": 2, "x": 15.078043817233509, "y": 74.64036654531368, "size": 1, "color": "#4b94db" } }, { "key": "640", "attributes": { "cluster": 2, "x": -14.921956182766491, "y": 74.6403665453137, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "641", "attributes": { "cluster": 1, "x": 76.67507866692199, "y": -32.16307415205953, "size": 2, "color": "#762e2e" } }, { "key": "642", "attributes": { "cluster": 1, "x": 46.67507866692199, "y": -32.16307415205952, "size": 0, "color": "#762e2e" } }, { "key": "643", "attributes": { "cluster": 1, "x": 53.67507866692198, "y": -47.75153142017942, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "644", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -23.502820114215144, "size": 1, "color": "#762e2e" } }, { "key": "645", "attributes": { "cluster": 0, "x": -51.617944846458734, "y": -23.50282011421514, "size": 1, "color": "#e36d0" } }, { "key": "646", "attributes": { "cluster": 2, "x": -7.921956182766498, "y": 59.0519092771938, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "647", "attributes": { "cluster": 2, "x": 8.078043817233516, "y": 83.30062058315806, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "648", "attributes": { "cluster": 1, "x": 61.675078666922, "y": -20.038718499077383, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "649", "attributes": { "cluster": 2, "x": 0.07804381723351421, "y": 86.76472219829583, "size": 2, "color": "#4b94db" } }, { "key": "650", "attributes": { "cluster": 0, "x": -57.617944846458734, "y": -20.038718499077387, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "651", "attributes": { "cluster": 2, "x": 0.07804381723350447, "y": 55.587807662056036, "size": 2, "color": "#4b94db" } }, { "key": "652", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -51.21563303531717, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "653", "attributes": { "cluster": 2, "x": 8.078043817233503, "y": 59.051909277193786, "size": 1, "color": "#4b94db" } }, { "key": "654", "attributes": { "cluster": 0, "x": -57.617944846458755, "y": -51.215633035317175, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "655", "attributes": { "cluster": 1, "x": 61.67507866692198, "y": -51.215633035317175, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "656", "attributes": { "cluster": 0, "x": -65.61794484645873, "y": -20.038718499077383, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "657", "attributes": { "cluster": 2, "x": -7.921956182766484, "y": 83.30062058315808, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "658", "attributes": { "cluster": 2, "x": -1.9219561827664946, "y": 55.587807662056036, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "659", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -47.751531420179425, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "660", "attributes": { "cluster": 0, "x": -76.61794484645874, "y": -35.62717576719728, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "661", "attributes": { "cluster": 0, "x": -77.61794484645874, "y": -37.359226574766154, "size": 1, "color": "#e36d0" } }, { "key": "662", "attributes": { "cluster": 2, "x": 2.0780438172335027, "y": 55.587807662056036, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "663", "attributes": { "cluster": 1, "x": 53.675078666922, "y": -23.502820114215133, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "664", "attributes": { "cluster": 2, "x": 2.0780438172335134, "y": 86.76472219829583, "size": 1, "color": "#4b94db" } }, { "key": "665", "attributes": { "cluster": 1, "x": 59.67507866692198, "y": -51.215633035317175, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "666", "attributes": { "cluster": 0, "x": -46.61794484645874, "y": -35.62717576719728, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "667", "attributes": { "cluster": 0, "x": -45.61794484645874, "y": -33.895124959628404, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "668", "attributes": { "cluster": 2, "x": -1.921956182766484, "y": 86.76472219829583, "size": 1, "color": "#4b94db" } }, { "key": "669", "attributes": { "cluster": 0, "x": -47.61794484645874, "y": -26.966921729352897, "size": 1, "color": "#e36d0" } }, { "key": "670", "attributes": { "cluster": 2, "x": -9.921956182766486, "y": 83.30062058315808, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "671", "attributes": { "cluster": 1, "x": 63.67507866692198, "y": -51.215633035317175, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "672", "attributes": { "cluster": 0, "x": -75.61794484645874, "y": -44.28742980504166, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "673", "attributes": { "cluster": 2, "x": -9.921956182766499, "y": 59.05190927719379, "size": 1, "color": "#4b94db" } }, { "key": "674", "attributes": { "cluster": 0, "x": -47.61794484645875, "y": -44.28742980504167, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "675", "attributes": { "cluster": 0, "x": -75.61794484645873, "y": -26.96692172935289, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "676", "attributes": { "cluster": 1, "x": 63.675078666922, "y": -20.038718499077383, "size": 1, "color": "#762e2e" } }, { "key": "677", "attributes": { "cluster": 2, "x": 10.078043817233503, "y": 59.051909277193786, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "678", "attributes": { "cluster": 2, "x": 10.078043817233516, "y": 83.30062058315806, "size": 1, "color": "#4b94db" } }, { "key": "679", "attributes": { "cluster": 1, "x": 59.675078666922, "y": -20.038718499077383, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "680", "attributes": { "cluster": 2, "x": 4.078043817233514, "y": 86.76472219829583, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "681", "attributes": { "cluster": 0, "x": -76.61794484645874, "y": -28.69897253692177, "size": 2, "color": "#e36d0" } }, { "key": "682", "attributes": { "cluster": 0, "x": -76.61794484645874, "y": -42.555378997472786, "size": 1, "color": "#e36d0" } }, { "key": "683", "attributes": { "cluster": 1, "x": 51.675078666922, "y": -23.502820114215133, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "684", "attributes": { "cluster": 0, "x": -46.61794484645874, "y": -42.55537899747279, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "685", "attributes": { "cluster": 2, "x": -3.921956182766495, "y": 55.587807662056036, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "686", "attributes": { "cluster": 1, "x": 51.67507866692198, "y": -47.75153142017942, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "687", "attributes": { "cluster": 0, "x": -46.61794484645874, "y": -28.698972536921772, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "688", "attributes": { "cluster": 2, "x": 4.078043817233499, "y": 55.587807662056036, "size": 2, "color": "#4b94db" } }, { "key": "689", "attributes": { "cluster": 1, "x": 71.67507866692199, "y": -47.751531420179425, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "690", "attributes": { "cluster": 2, "x": -3.92195618276648, "y": 86.76472219829583, "size": 1, "color": "#4b94db" } }, { "key": "691", "attributes": { "cluster": 2, "x": -14.921956182766491, "y": 71.17626493017593, "size": 1, "color": "#4b94db" } }, { "key": "692", "attributes": { "cluster": 2, "x": -15.921956182766491, "y": 69.44421412260706, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "693", "attributes": { "cluster": 2, "x": 15.078043817233509, "y": 71.17626493017593, "size": 2, "color": "#4b94db" } }, { "key": "694", "attributes": { "cluster": 2, "x": 16.07804381723351, "y": 72.9083157377448, "size": 2, "color": "#4b94db" } }, { "key": "695", "attributes": { "cluster": 1, "x": 71.67507866692199, "y": -23.50282011421514, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "696", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -20.038718499077387, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "697", "attributes": { "cluster": 1, "x": 57.67507866692198, "y": -51.21563303531717, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "698", "attributes": { "cluster": 0, "x": -74.61794484645874, "y": -25.23487092178401, "size": 2, "color": "#e36d0" } }, { "key": "699", "attributes": { "cluster": 2, "x": 14.078043817233512, "y": 79.83651896802031, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "700", "attributes": { "cluster": 1, "x": 65.67507866692198, "y": -51.215633035317175, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "701", "attributes": { "cluster": 0, "x": -48.61794484645874, "y": -46.01948061261055, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "702", "attributes": { "cluster": 1, "x": 57.675078666922005, "y": -20.038718499077383, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "703", "attributes": { "cluster": 2, "x": -13.921956182766495, "y": 62.51601089233155, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "704", "attributes": { "cluster": 1, "x": 46.67507866692199, "y": -35.62717576719728, "size": 2, "color": "#762e2e" } }, { "key": "705", "attributes": { "cluster": 2, "x": 14.078043817233501, "y": 62.51601089233154, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "706", "attributes": { "cluster": 2, "x": -13.921956182766484, "y": 79.83651896802033, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "707", "attributes": { "cluster": 2, "x": -14.921956182766491, "y": 78.10446816045145, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "708", "attributes": { "cluster": 2, "x": -14.921956182766491, "y": 64.24806169990043, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "709", "attributes": { "cluster": 0, "x": -54.617944846458734, "y": -21.770769306646265, "size": 1, "color": "#e36d0" } }, { "key": "710", "attributes": { "cluster": 2, "x": 15.078043817233509, "y": 64.24806169990042, "size": 1, "color": "#4b94db" } }, { "key": "711", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": -49.48358222774829, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "712", "attributes": { "cluster": 0, "x": -48.61794484645874, "y": -25.234870921784022, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "713", "attributes": { "cluster": 1, "x": 45.67507866692199, "y": -37.359226574766154, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "714", "attributes": { "cluster": 0, "x": -74.61794484645874, "y": -46.019480612610536, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "715", "attributes": { "cluster": 2, "x": 15.078043817233509, "y": 78.10446816045143, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "716", "attributes": { "cluster": 2, "x": -12.921956182766488, "y": 81.5685697755892, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "717", "attributes": { "cluster": 2, "x": 13.078043817233505, "y": 60.78396008476267, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "718", "attributes": { "cluster": 0, "x": -54.61794484645874, "y": -49.4835822277483, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "719", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -21.770769306646255, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "720", "attributes": { "cluster": 2, "x": 7.078043817233518, "y": 85.03267139072695, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "721", "attributes": { "cluster": 2, "x": -6.9219561827664995, "y": 57.31985846962492, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "722", "attributes": { "cluster": 1, "x": 76.67507866692199, "y": -35.62717576719728, "size": 2, "color": "#762e2e" } }, { "key": "723", "attributes": { "cluster": 1, "x": 77.67507866692199, "y": -33.895124959628404, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "724", "attributes": { "cluster": 2, "x": 13.078043817233512, "y": 81.5685697755892, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "725", "attributes": { "cluster": 0, "x": -67.61794484645876, "y": -51.21563303531717, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "726", "attributes": { "cluster": 0, "x": -55.61794484645873, "y": -20.03871849907739, "size": 2, "color": "#e36d0" } }, { "key": "727", "attributes": { "cluster": 2, "x": -12.921956182766495, "y": 60.783960084762676, "size": 1, "color": "#4b94db" } }, { "key": "728", "attributes": { "cluster": 2, "x": 7.078043817233506, "y": 57.319858469624904, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "729", "attributes": { "cluster": 1, "x": 75.67507866692199, "y": -26.966921729352897, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "730", "attributes": { "cluster": 2, "x": -6.921956182766487, "y": 85.03267139072696, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "731", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -20.038718499077376, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "732", "attributes": { "cluster": 2, "x": -5.921956182766501, "y": 55.58780766205604, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "733", "attributes": { "cluster": 0, "x": -55.61794484645875, "y": -51.21563303531718, "size": 2, "color": "#e36d0" } }, { "key": "734", "attributes": { "cluster": 0, "x": -45.61794484645874, "y": -40.82332818990392, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "735", "attributes": { "cluster": 2, "x": 6.07804381723352, "y": 86.76472219829583, "size": 1, "color": "#4b94db" } }, { "key": "736", "attributes": { "cluster": 0, "x": -45.61794484645874, "y": -30.43102334449065, "size": 1, "color": "#e36d0" } }, { "key": "737", "attributes": { "cluster": 0, "x": -77.61794484645874, "y": -30.43102334449064, "size": 1, "color": "#e36d0" } }, { "key": "738", "attributes": { "cluster": 1, "x": 47.67507866692199, "y": -44.28742980504166, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "739", "attributes": { "cluster": 0, "x": -77.61794484645874, "y": -40.82332818990391, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "740", "attributes": { "cluster": 1, "x": 75.67507866692199, "y": -44.28742980504167, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "741", "attributes": { "cluster": 1, "x": 47.675078666922, "y": -26.96692172935289, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "742", "attributes": { "cluster": 1, "x": 46.67507866692199, "y": -28.69897253692177, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "743", "attributes": { "cluster": 2, "x": -5.921956182766484, "y": 86.76472219829583, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "744", "attributes": { "cluster": 1, "x": 46.67507866692199, "y": -42.555378997472786, "size": 1, "color": "#762e2e" } }, { "key": "745", "attributes": { "cluster": 1, "x": 76.67507866692199, "y": -42.55537899747279, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "746", "attributes": { "cluster": 1, "x": 76.67507866692199, "y": -28.698972536921772, "size": 1, "color": "#762e2e" } }, { "key": "747", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -47.75153142017942, "size": 2, "color": "#e36d0" } }, { "key": "748", "attributes": { "cluster": 1, "x": 48.67507866692199, "y": -25.23487092178401, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "749", "attributes": { "cluster": 2, "x": 6.078043817233503, "y": 55.58780766205603, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "750", "attributes": { "cluster": 2, "x": 16.078043817233507, "y": 65.9801125074693, "size": 1, "color": "#4b94db" } }, { "key": "751", "attributes": { "cluster": 0, "x": -49.61794484645875, "y": -47.751531420179425, "size": 3, "color": "#e36d0" } }, { "key": "752", "attributes": { "cluster": 0, "x": -49.617944846458734, "y": -23.502820114215144, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "753", "attributes": { "cluster": 1, "x": 74.67507866692199, "y": -46.01948061261055, "size": 2, "color": "#762e2e" } }, { "key": "754", "attributes": { "cluster": 2, "x": 16.07804381723351, "y": 76.37241735288256, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "755", "attributes": { "cluster": 0, "x": -73.61794484645874, "y": -23.502820114215133, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "756", "attributes": { "cluster": 0, "x": -77.61794484645874, "y": -33.8951249596284, "size": 1, "color": "#e36d0" } }, { "key": "757", "attributes": { "cluster": 1, "x": 68.675078666922, "y": -21.770769306646265, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "758", "attributes": { "cluster": 0, "x": -45.61794484645874, "y": -37.35922657476616, "size": 1, "color": "#e36d0" } }, { "key": "759", "attributes": { "cluster": 2, "x": -15.921956182766488, "y": 76.37241735288256, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "760", "attributes": { "cluster": 0, "x": -44.61794484645874, "y": -32.16307415205953, "size": 0, "color": "#e36d0" } }, { "key": "761", "attributes": { "cluster": 2, "x": -15.921956182766491, "y": 65.9801125074693, "size": 1, "color": "#4b94db" } }, { "key": "762", "attributes": { "cluster": 1, "x": 54.67507866692198, "y": -49.48358222774829, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "763", "attributes": { "cluster": 1, "x": 74.67507866692199, "y": -25.234870921784022, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "764", "attributes": { "cluster": 0, "x": -60.617944846458734, "y": -18.306667691508505, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "765", "attributes": { "cluster": 1, "x": 48.67507866692199, "y": -46.019480612610536, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "766", "attributes": { "cluster": 2, "x": -11.921956182766499, "y": 59.0519092771938, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "767", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -49.4835822277483, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "768", "attributes": { "cluster": 1, "x": 54.67507866692199, "y": -21.770769306646255, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "769", "attributes": { "cluster": 1, "x": 55.675078666921976, "y": -51.21563303531717, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "770", "attributes": { "cluster": 1, "x": 67.675078666922, "y": -20.03871849907739, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "771", "attributes": { "cluster": 2, "x": 12.078043817233503, "y": 59.051909277193786, "size": 2, "color": "#4b94db" } }, { "key": "772", "attributes": { "cluster": 1, "x": 55.675078666922, "y": -20.038718499077376, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "773", "attributes": { "cluster": 2, "x": 12.078043817233516, "y": 83.30062058315806, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "774", "attributes": { "cluster": 0, "x": -78.61794484645874, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "775", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -51.21563303531718, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "776", "attributes": { "cluster": 2, "x": -11.921956182766486, "y": 83.30062058315808, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "777", "attributes": { "cluster": 2, "x": -15.921956182766491, "y": 72.90831573774481, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "778", "attributes": { "cluster": 1, "x": 77.67507866692199, "y": -40.82332818990392, "size": 1, "color": "#762e2e" } }, { "key": "779", "attributes": { "cluster": 0, "x": -78.61794484645874, "y": -39.09127738233503, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "780", "attributes": { "cluster": 0, "x": -62.61794484645875, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "781", "attributes": { "cluster": 0, "x": -44.61794484645874, "y": -39.091277382335036, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "782", "attributes": { "cluster": 0, "x": -62.617944846458734, "y": -18.306667691508505, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "783", "attributes": { "cluster": 0, "x": -60.61794484645875, "y": -52.94768384288605, "size": 1, "color": "#e36d0" } }, { "key": "784", "attributes": { "cluster": 0, "x": -58.617944846458734, "y": -18.30666769150851, "size": 1, "color": "#e36d0" } }, { "key": "785", "attributes": { "cluster": 2, "x": 16.07804381723351, "y": 69.44421412260705, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "786", "attributes": { "cluster": 1, "x": 77.67507866692199, "y": -30.43102334449065, "size": 0, "color": "#762e2e" } }, { "key": "787", "attributes": { "cluster": 2, "x": 17.07804381723351, "y": 74.64036654531368, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "788", "attributes": { "cluster": 1, "x": 45.67507866692199, "y": -30.43102334449064, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "789", "attributes": { "cluster": 1, "x": 45.67507866692199, "y": -40.82332818990391, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "790", "attributes": { "cluster": 2, "x": 1.0780438172335154, "y": 88.49677300586471, "size": 1, "color": "#4b94db" } }, { "key": "791", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "792", "attributes": { "cluster": 2, "x": -16.92195618276649, "y": 74.6403665453137, "size": 2, "color": "#4b94db" } }, { "key": "793", "attributes": { "cluster": 2, "x": -16.92195618276649, "y": 67.71216331503818, "size": 0, "color": "#4b94db" } }, { "key": "794", "attributes": { "cluster": 2, "x": -0.9219561827664966, "y": 53.855756854487154, "size": 2, "color": "#4b94db" } }, { "key": "795", "attributes": { "cluster": 1, "x": 49.67507866692198, "y": -47.75153142017942, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "796", "attributes": { "cluster": 0, "x": -58.61794484645875, "y": -52.94768384288605, "size": 0, "color": "#e36d0" } }, { "key": "797", "attributes": { "cluster": 2, "x": 17.07804381723351, "y": 67.71216331503817, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "798", "attributes": { "cluster": 1, "x": 73.67507866692199, "y": -47.751531420179425, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "799", "attributes": { "cluster": 2, "x": -0.9219561827664833, "y": 88.49677300586471, "size": 1, "color": "#4b94db" } }, { "key": "800", "attributes": { "cluster": 0, "x": -64.61794484645873, "y": -18.306667691508505, "size": 2, "color": "#e36d0" } }, { "key": "801", "attributes": { "cluster": 2, "x": 1.078043817233502, "y": 53.855756854487154, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "802", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -49.483582227748286, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "803", "attributes": { "cluster": 0, "x": -52.617944846458734, "y": -21.77076930664627, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "804", "attributes": { "cluster": 1, "x": 73.67507866692199, "y": -23.502820114215144, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "805", "attributes": { "cluster": 0, "x": -70.61794484645874, "y": -21.770769306646258, "size": 2, "color": "#e36d0" } }, { "key": "806", "attributes": { "cluster": 0, "x": -52.61794484645874, "y": -49.4835822277483, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "807", "attributes": { "cluster": 0, "x": -50.61794484645874, "y": -49.4835822277483, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "808", "attributes": { "cluster": 0, "x": -50.617944846458734, "y": -21.770769306646265, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "809", "attributes": { "cluster": 2, "x": 3.078043817233515, "y": 88.4967730058647, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "810", "attributes": { "cluster": 0, "x": -72.61794484645874, "y": -21.770769306646258, "size": 1, "color": "#e36d0" } }, { "key": "811", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -49.48358222774829, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "812", "attributes": { "cluster": 1, "x": 49.675078666922, "y": -23.502820114215133, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "813", "attributes": { "cluster": 1, "x": 45.67507866692199, "y": -33.8951249596284, "size": 1, "color": "#762e2e" } }, { "key": "814", "attributes": { "cluster": 1, "x": 77.67507866692199, "y": -37.35922657476616, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "815", "attributes": { "cluster": 1, "x": 78.67507866692199, "y": -32.16307415205953, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "816", "attributes": { "cluster": 2, "x": -2.9219561827664964, "y": 53.85575685448716, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "817", "attributes": { "cluster": 0, "x": -66.61794484645876, "y": -52.94768384288605, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "818", "attributes": { "cluster": 0, "x": -56.617944846458755, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "819", "attributes": { "cluster": 2, "x": 3.078043817233502, "y": 53.855756854487154, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "820", "attributes": { "cluster": 1, "x": 62.675078666922, "y": -18.306667691508505, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "821", "attributes": { "cluster": 2, "x": -2.921956182766483, "y": 88.49677300586471, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "822", "attributes": { "cluster": 2, "x": -8.9219561827665, "y": 57.31985846962492, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "823", "attributes": { "cluster": 0, "x": -56.617944846458734, "y": -18.306667691508512, "size": 0, "color": "#e36d0" } }, { "key": "824", "attributes": { "cluster": 0, "x": -66.61794484645873, "y": -18.306667691508505, "size": 1, "color": "#e36d0" } }, { "key": "825", "attributes": { "cluster": 1, "x": 44.67507866692199, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "826", "attributes": { "cluster": 0, "x": -78.61794484645874, "y": -35.62717576719728, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "827", "attributes": { "cluster": 1, "x": 44.67507866692199, "y": -39.09127738233503, "size": 1, "color": "#762e2e" } }, { "key": "828", "attributes": { "cluster": 1, "x": 60.67507866692198, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "829", "attributes": { "cluster": 0, "x": -79.61794484645874, "y": -37.359226574766154, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "830", "attributes": { "cluster": 1, "x": 78.67507866692199, "y": -39.091277382335036, "size": 2, "color": "#762e2e" } }, { "key": "831", "attributes": { "cluster": 1, "x": 60.675078666922, "y": -18.306667691508505, "size": 2, "color": "#762e2e" } }, { "key": "832", "attributes": { "cluster": 0, "x": -44.61794484645874, "y": -35.62717576719728, "size": 1, "color": "#e36d0" } }, { "key": "833", "attributes": { "cluster": 1, "x": 62.67507866692198, "y": -52.94768384288605, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "834", "attributes": { "cluster": 2, "x": 9.078043817233517, "y": 85.03267139072695, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "835", "attributes": { "cluster": 0, "x": -43.61794484645874, "y": -33.895124959628404, "size": 2, "color": "#e36d0" } }, { "key": "836", "attributes": { "cluster": 2, "x": -8.921956182766488, "y": 85.03267139072695, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "837", "attributes": { "cluster": 0, "x": -77.61794484645873, "y": -26.966921729352887, "size": 1, "color": "#e36d0" } }, { "key": "838", "attributes": { "cluster": 0, "x": -45.61794484645875, "y": -44.28742980504167, "size": 1, "color": "#e36d0" } }, { "key": "839", "attributes": { "cluster": 0, "x": -45.61794484645874, "y": -26.966921729352897, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "840", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -18.30666769150851, "size": 1, "color": "#762e2e" } }, { "key": "841", "attributes": { "cluster": 1, "x": 58.67507866692198, "y": -52.94768384288605, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "842", "attributes": { "cluster": 1, "x": 64.67507866692198, "y": -52.94768384288605, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "843", "attributes": { "cluster": 0, "x": -77.61794484645874, "y": -44.28742980504166, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "844", "attributes": { "cluster": 2, "x": 9.078043817233505, "y": 57.31985846962491, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "845", "attributes": { "cluster": 1, "x": 58.675078666922, "y": -18.306667691508505, "size": 1, "color": "#762e2e" } }, { "key": "846", "attributes": { "cluster": 0, "x": -46.61794484645874, "y": -46.01948061261055, "size": 2, "color": "#e36d0" } }, { "key": "847", "attributes": { "cluster": 0, "x": -76.61794484645874, "y": -25.23487092178401, "size": 2, "color": "#e36d0" } }, { "key": "848", "attributes": { "cluster": 1, "x": 52.67507866692198, "y": -49.483582227748286, "size": 2, "color": "#762e2e" } }, { "key": "849", "attributes": { "cluster": 2, "x": 11.078043817233505, "y": 57.31985846962491, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "850", "attributes": { "cluster": 0, "x": -76.61794484645874, "y": -46.019480612610536, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "851", "attributes": { "cluster": 1, "x": 70.675078666922, "y": -21.77076930664627, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "852", "attributes": { "cluster": 1, "x": 52.67507866692199, "y": -21.770769306646258, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "853", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -49.4835822277483, "size": 1, "color": "#762e2e" } }, { "key": "854", "attributes": { "cluster": 2, "x": 11.078043817233516, "y": 85.03267139072695, "size": 1, "color": "#4b94db" } }, { "key": "855", "attributes": { "cluster": 2, "x": -10.921956182766488, "y": 85.03267139072696, "size": 1, "color": "#4b94db" } }, { "key": "856", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -49.4835822277483, "size": 1, "color": "#762e2e" } }, { "key": "857", "attributes": { "cluster": 2, "x": -10.921956182766499, "y": 57.31985846962492, "size": 3, "color": "#4b94db" } }, { "key": "858", "attributes": { "cluster": 0, "x": -46.61794484645874, "y": -25.234870921784022, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "859", "attributes": { "cluster": 0, "x": -78.61794484645874, "y": -42.555378997472786, "size": 2, "color": "#e36d0" } }, { "key": "860", "attributes": { "cluster": 2, "x": -4.9219561827664995, "y": 53.85575685448717, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "861", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -21.770769306646265, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "862", "attributes": { "cluster": 1, "x": 50.67507866692199, "y": -21.770769306646258, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "863", "attributes": { "cluster": 1, "x": 50.67507866692198, "y": -49.48358222774829, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "864", "attributes": { "cluster": 2, "x": 5.078043817233496, "y": 53.855756854487154, "size": 2, "color": "#4b94db" } }, { "key": "865", "attributes": { "cluster": 0, "x": -44.61794484645874, "y": -28.698972536921772, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "866", "attributes": { "cluster": 1, "x": 56.67507866692198, "y": -52.94768384288605, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "867", "attributes": { "cluster": 1, "x": 66.67507866692198, "y": -52.94768384288605, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "868", "attributes": { "cluster": 1, "x": 66.675078666922, "y": -18.306667691508512, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "869", "attributes": { "cluster": 0, "x": -78.61794484645874, "y": -28.698972536921765, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "870", "attributes": { "cluster": 1, "x": 56.675078666922005, "y": -18.306667691508505, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "871", "attributes": { "cluster": 2, "x": 5.078043817233518, "y": 88.4967730058647, "size": 0, "color": "#4b94db" } }, { "key": "872", "attributes": { "cluster": 2, "x": -4.921956182766477, "y": 88.49677300586471, "size": 1, "color": "#4b94db" } }, { "key": "873", "attributes": { "cluster": 0, "x": -44.61794484645874, "y": -42.55537899747279, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "874", "attributes": { "cluster": 2, "x": -16.92195618276649, "y": 71.17626493017593, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "875", "attributes": { "cluster": 0, "x": -47.617944846458734, "y": -23.502820114215147, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "876", "attributes": { "cluster": 0, "x": -75.61794484645874, "y": -23.502820114215133, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "877", "attributes": { "cluster": 1, "x": 44.67507866692199, "y": -35.62717576719728, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "878", "attributes": { "cluster": 1, "x": 43.67507866692199, "y": -37.359226574766154, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "879", "attributes": { "cluster": 1, "x": 78.67507866692199, "y": -35.62717576719728, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "880", "attributes": { "cluster": 1, "x": 79.67507866692199, "y": -33.895124959628404, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "881", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -47.75153142017941, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "882", "attributes": { "cluster": 2, "x": -17.92195618276649, "y": 69.44421412260706, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "883", "attributes": { "cluster": 1, "x": 45.675078666922, "y": -26.966921729352887, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "884", "attributes": { "cluster": 0, "x": -47.61794484645874, "y": -47.751531420179425, "size": 1, "color": "#e36d0" } }, { "key": "885", "attributes": { "cluster": 1, "x": 77.67507866692199, "y": -44.28742980504167, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "886", "attributes": { "cluster": 1, "x": 77.67507866692199, "y": -26.966921729352897, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "887", "attributes": { "cluster": 2, "x": 17.07804381723351, "y": 71.17626493017593, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "888", "attributes": { "cluster": 1, "x": 45.67507866692199, "y": -44.28742980504166, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "889", "attributes": { "cluster": 2, "x": 18.07804381723351, "y": 72.9083157377448, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "890", "attributes": { "cluster": 1, "x": 76.67507866692199, "y": -46.01948061261055, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "891", "attributes": { "cluster": 2, "x": -15.921956182766484, "y": 79.83651896802033, "size": 2, "color": "#4b94db" } }, { "key": "892", "attributes": { "cluster": 1, "x": 46.67507866692199, "y": -25.23487092178401, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "893", "attributes": { "cluster": 2, "x": 16.078043817233503, "y": 62.516010892331536, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "894", "attributes": { "cluster": 2, "x": 16.078043817233514, "y": 79.83651896802031, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "895", "attributes": { "cluster": 2, "x": -15.921956182766495, "y": 62.51601089233155, "size": 1, "color": "#4b94db" } }, { "key": "896", "attributes": { "cluster": 0, "x": -53.61794484645873, "y": -20.03871849907739, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "897", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -51.21563303531717, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "898", "attributes": { "cluster": 2, "x": 15.078043817233505, "y": 60.78396008476267, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "899", "attributes": { "cluster": 0, "x": -53.61794484645874, "y": -51.215633035317175, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "900", "attributes": { "cluster": 2, "x": -14.921956182766488, "y": 81.5685697755892, "size": 0, "color": "#4b94db" } }, { "key": "901", "attributes": { "cluster": 2, "x": -14.921956182766495, "y": 60.783960084762676, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "902", "attributes": { "cluster": 1, "x": 46.67507866692199, "y": -46.019480612610536, "size": 2, "color": "#762e2e" } }, { "key": "903", "attributes": { "cluster": 0, "x": -69.61794484645874, "y": -20.038718499077383, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "904", "attributes": { "cluster": 2, "x": 15.078043817233512, "y": 81.5685697755892, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "905", "attributes": { "cluster": 1, "x": 76.67507866692199, "y": -25.234870921784022, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "906", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": -52.94768384288605, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "907", "attributes": { "cluster": 0, "x": -54.61794484645873, "y": -18.306667691508512, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "908", "attributes": { "cluster": 1, "x": 44.67507866692199, "y": -42.555378997472786, "size": 1, "color": "#762e2e" } }, { "key": "909", "attributes": { "cluster": 0, "x": -79.61794484645874, "y": -30.431023344490644, "size": 1, "color": "#e36d0" } }, { "key": "910", "attributes": { "cluster": 1, "x": 78.67507866692199, "y": -28.698972536921772, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "911", "attributes": { "cluster": 2, "x": -16.92195618276649, "y": 64.24806169990043, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "912", "attributes": { "cluster": 2, "x": 17.07804381723351, "y": 78.10446816045143, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "913", "attributes": { "cluster": 2, "x": -16.92195618276649, "y": 78.10446816045145, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "914", "attributes": { "cluster": 1, "x": 44.67507866692199, "y": -28.698972536921765, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "915", "attributes": { "cluster": 0, "x": -79.61794484645874, "y": -40.823328189903904, "size": 1, "color": "#e36d0" } }, { "key": "916", "attributes": { "cluster": 2, "x": 17.07804381723351, "y": 64.24806169990042, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "917", "attributes": { "cluster": 0, "x": -43.61794484645874, "y": -40.82332818990392, "size": 3, "color": "#e36d0" } }, { "key": "918", "attributes": { "cluster": 0, "x": -43.61794484645874, "y": -30.43102334449065, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "919", "attributes": { "cluster": 1, "x": 78.67507866692199, "y": -42.55537899747279, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "920", "attributes": { "cluster": 2, "x": 14.078043817233516, "y": 83.30062058315806, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "921", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -18.306667691508505, "size": 2, "color": "#e36d0" } }, { "key": "922", "attributes": { "cluster": 1, "x": 75.67507866692199, "y": -23.502820114215147, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "923", "attributes": { "cluster": 0, "x": -54.61794484645874, "y": -52.94768384288605, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "924", "attributes": { "cluster": 1, "x": 47.67507866692199, "y": -23.502820114215133, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "925", "attributes": { "cluster": 1, "x": 47.67507866692198, "y": -47.75153142017941, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "926", "attributes": { "cluster": 0, "x": -48.61794484645874, "y": -49.4835822277483, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "927", "attributes": { "cluster": 1, "x": 75.67507866692199, "y": -47.751531420179425, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "928", "attributes": { "cluster": 2, "x": -13.921956182766488, "y": 83.30062058315808, "size": 2, "color": "#4b94db" } }, { "key": "929", "attributes": { "cluster": 1, "x": 69.675078666922, "y": -20.03871849907739, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "930", "attributes": { "cluster": 1, "x": 53.675078666921976, "y": -51.21563303531717, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "931", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -51.215633035317175, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "932", "attributes": { "cluster": 2, "x": -13.921956182766499, "y": 59.0519092771938, "size": 1, "color": "#4b94db" } }, { "key": "933", "attributes": { "cluster": 2, "x": 14.078043817233505, "y": 59.051909277193786, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "934", "attributes": { "cluster": 0, "x": -48.617944846458734, "y": -21.770769306646265, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "935", "attributes": { "cluster": 0, "x": -74.61794484645874, "y": -21.770769306646258, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "936", "attributes": { "cluster": 2, "x": 8.07804381723352, "y": 86.76472219829581, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "937", "attributes": { "cluster": 1, "x": 53.67507866692199, "y": -20.038718499077383, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "938", "attributes": { "cluster": 1, "x": 54.675078666921976, "y": -52.94768384288605, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "939", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -49.48358222774829, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "940", "attributes": { "cluster": 0, "x": -61.61794484645875, "y": -54.67973465045493, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "941", "attributes": { "cluster": 0, "x": -61.617944846458734, "y": -16.574616883939626, "size": 2, "color": "#e36d0" } }, { "key": "942", "attributes": { "cluster": 0, "x": -79.61794484645874, "y": -33.8951249596284, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "943", "attributes": { "cluster": 2, "x": -7.921956182766501, "y": 55.58780766205604, "size": 1, "color": "#4b94db" } }, { "key": "944", "attributes": { "cluster": 2, "x": 8.07804381723351, "y": 55.587807662056036, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "945", "attributes": { "cluster": 1, "x": 68.675078666922, "y": -18.306667691508512, "size": 1, "color": "#762e2e" } }, { "key": "946", "attributes": { "cluster": 0, "x": -63.61794484645875, "y": -54.67973465045493, "size": 1, "color": "#e36d0" } }, { "key": "947", "attributes": { "cluster": 0, "x": -43.61794484645874, "y": -37.35922657476616, "size": 2, "color": "#e36d0" } }, { "key": "948", "attributes": { "cluster": 1, "x": 43.67507866692199, "y": -30.431023344490644, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "949", "attributes": { "cluster": 0, "x": -59.617944846458734, "y": -16.57461688393963, "size": 2, "color": "#e36d0" } }, { "key": "950", "attributes": { "cluster": 2, "x": -7.921956182766492, "y": 86.76472219829583, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "951", "attributes": { "cluster": 1, "x": 43.67507866692199, "y": -40.823328189903904, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "952", "attributes": { "cluster": 0, "x": -63.617944846458734, "y": -16.574616883939626, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "953", "attributes": { "cluster": 2, "x": -6.921956182766504, "y": 53.85575685448717, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "954", "attributes": { "cluster": 1, "x": 79.67507866692199, "y": -40.82332818990392, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "955", "attributes": { "cluster": 1, "x": 79.67507866692199, "y": -30.43102334449065, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "956", "attributes": { "cluster": 0, "x": -59.61794484645875, "y": -54.67973465045493, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "957", "attributes": { "cluster": 1, "x": 54.67507866692199, "y": -18.306667691508505, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "958", "attributes": { "cluster": 0, "x": -42.61794484645874, "y": -39.091277382335036, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "959", "attributes": { "cluster": 0, "x": -42.61794484645874, "y": -32.16307415205953, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "960", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -52.94768384288605, "size": 2, "color": "#762e2e" } }, { "key": "961", "attributes": { "cluster": 2, "x": 7.078043817233523, "y": 88.4967730058647, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "962", "attributes": { "cluster": 0, "x": -80.61794484645874, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "963", "attributes": { "cluster": 0, "x": -80.61794484645874, "y": -39.09127738233503, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "964", "attributes": { "cluster": 2, "x": -17.92195618276649, "y": 76.37241735288256, "size": 1, "color": "#4b94db" } }, { "key": "965", "attributes": { "cluster": 1, "x": 74.67507866692199, "y": -49.4835822277483, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "966", "attributes": { "cluster": 1, "x": 74.67507866692199, "y": -21.770769306646265, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "967", "attributes": { "cluster": 0, "x": -65.61794484645876, "y": -54.679734650454925, "size": 1, "color": "#e36d0" } }, { "key": "968", "attributes": { "cluster": 1, "x": 48.67507866692199, "y": -21.770769306646258, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "969", "attributes": { "cluster": 2, "x": -17.92195618276649, "y": 65.9801125074693, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "970", "attributes": { "cluster": 0, "x": -57.617944846458734, "y": -16.574616883939633, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "971", "attributes": { "cluster": 1, "x": 48.67507866692198, "y": -49.48358222774829, "size": 1, "color": "#762e2e" } }, { "key": "972", "attributes": { "cluster": 2, "x": 18.07804381723351, "y": 65.9801125074693, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "973", "attributes": { "cluster": 2, "x": 18.07804381723351, "y": 76.37241735288256, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "974", "attributes": { "cluster": 0, "x": -65.61794484645873, "y": -16.574616883939626, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "975", "attributes": { "cluster": 0, "x": -57.617944846458755, "y": -54.67973465045493, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "976", "attributes": { "cluster": 2, "x": -6.9219561827664915, "y": 88.49677300586471, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "977", "attributes": { "cluster": 2, "x": 7.07804381723351, "y": 53.855756854487154, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "978", "attributes": { "cluster": 1, "x": 61.67507866692198, "y": -54.67973465045493, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "979", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": -20.038718499077394, "size": 1, "color": "#e36d0" } }, { "key": "980", "attributes": { "cluster": 2, "x": 13.078043817233505, "y": 57.31985846962491, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "981", "attributes": { "cluster": 2, "x": 13.078043817233516, "y": 85.03267139072695, "size": 2, "color": "#4b94db" } }, { "key": "982", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -51.21563303531717, "size": 3, "color": "#e36d0" } }, { "key": "983", "attributes": { "cluster": 1, "x": 61.675078666922, "y": -16.574616883939626, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "984", "attributes": { "cluster": 0, "x": -51.61794484645874, "y": -51.215633035317175, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "985", "attributes": { "cluster": 0, "x": -71.61794484645874, "y": -20.038718499077383, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "986", "attributes": { "cluster": 2, "x": -12.921956182766488, "y": 85.03267139072696, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "987", "attributes": { "cluster": 1, "x": 43.67507866692199, "y": -33.8951249596284, "size": 1, "color": "#762e2e" } }, { "key": "988", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -51.21563303531717, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "989", "attributes": { "cluster": 1, "x": 59.67507866692198, "y": -54.67973465045493, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "990", "attributes": { "cluster": 1, "x": 79.67507866692199, "y": -37.35922657476616, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "991", "attributes": { "cluster": 2, "x": -12.921956182766499, "y": 57.31985846962492, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "992", "attributes": { "cluster": 2, "x": 0.07804381723350268, "y": 52.12370604691828, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "993", "attributes": { "cluster": 0, "x": -49.61794484645873, "y": -20.03871849907739, "size": 1, "color": "#e36d0" } }, { "key": "994", "attributes": { "cluster": 2, "x": 0.078043817233516, "y": 90.22882381343359, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "995", "attributes": { "cluster": 0, "x": -73.61794484645874, "y": -20.038718499077383, "size": 1, "color": "#e36d0" } }, { "key": "996", "attributes": { "cluster": 2, "x": -17.92195618276649, "y": 72.90831573774481, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "997", "attributes": { "cluster": 2, "x": -1.9219561827664995, "y": 52.12370604691829, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "998", "attributes": { "cluster": 2, "x": 18.07804381723351, "y": 69.44421412260705, "size": 1, "color": "#4b94db" } }, { "key": "999", "attributes": { "cluster": 2, "x": 2.0780438172335183, "y": 90.22882381343358, "size": 2, "color": "#4b94db" } }, { "key": "1000", "attributes": { "cluster": 1, "x": 63.675078666922, "y": -16.57461688393963, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1001", "attributes": { "cluster": 2, "x": -1.921956182766483, "y": 90.22882381343359, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1002", "attributes": { "cluster": 2, "x": 2.078043817233502, "y": 52.12370604691828, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "1003", "attributes": { "cluster": 0, "x": -49.61794484645874, "y": -51.215633035317175, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1004", "attributes": { "cluster": 1, "x": 59.675078666922, "y": -16.574616883939626, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1005", "attributes": { "cluster": 2, "x": 19.07804381723351, "y": 67.71216331503817, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "1006", "attributes": { "cluster": 1, "x": 63.67507866692198, "y": -54.67973465045493, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1007", "attributes": { "cluster": 0, "x": -44.61794484645874, "y": -46.01948061261055, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1008", "attributes": { "cluster": 2, "x": 19.07804381723351, "y": 74.64036654531368, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1009", "attributes": { "cluster": 0, "x": -78.61794484645874, "y": -25.23487092178401, "size": 1, "color": "#e36d0" } }, { "key": "1010", "attributes": { "cluster": 2, "x": -18.92195618276649, "y": 74.6403665453137, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1011", "attributes": { "cluster": 0, "x": -78.61794484645874, "y": -46.019480612610536, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1012", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": -39.091277382335036, "size": 0, "color": "#762e2e" } }, { "key": "1013", "attributes": { "cluster": 2, "x": -18.92195618276649, "y": 67.71216331503818, "size": 1, "color": "#4b94db" } }, { "key": "1014", "attributes": { "cluster": 0, "x": -44.61794484645874, "y": -25.234870921784022, "size": 2, "color": "#e36d0" } }, { "key": "1015", "attributes": { "cluster": 2, "x": -3.9219561827665004, "y": 52.12370604691829, "size": 2, "color": "#4b94db" } }, { "key": "1016", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": -32.16307415205953, "size": 1, "color": "#762e2e" } }, { "key": "1017", "attributes": { "cluster": 2, "x": 4.078043817233519, "y": 90.22882381343358, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1018", "attributes": { "cluster": 2, "x": -3.92195618276648, "y": 90.22882381343359, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1019", "attributes": { "cluster": 0, "x": -79.61794484645873, "y": -26.966921729352883, "size": 2, "color": "#e36d0" } }, { "key": "1020", "attributes": { "cluster": 2, "x": 4.078043817233499, "y": 52.12370604691828, "size": 1, "color": "#4b94db" } }, { "key": "1021", "attributes": { "cluster": 0, "x": -43.61794484645875, "y": -44.287429805041675, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1022", "attributes": { "cluster": 0, "x": -43.61794484645874, "y": -26.966921729352897, "size": 2, "color": "#e36d0" } }, { "key": "1023", "attributes": { "cluster": 1, "x": 42.67507866692199, "y": -32.16307415205952, "size": 1, "color": "#762e2e" } }, { "key": "1024", "attributes": { "cluster": 2, "x": 10.07804381723352, "y": 86.76472219829581, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1025", "attributes": { "cluster": 2, "x": -9.921956182766502, "y": 55.58780766205605, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1026", "attributes": { "cluster": 2, "x": 10.078043817233512, "y": 55.587807662056036, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1027", "attributes": { "cluster": 0, "x": -55.61794484645873, "y": -16.574616883939637, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1028", "attributes": { "cluster": 2, "x": -9.921956182766495, "y": 86.76472219829583, "size": 2, "color": "#4b94db" } }, { "key": "1029", "attributes": { "cluster": 2, "x": -11.921956182766502, "y": 55.58780766205604, "size": 1, "color": "#4b94db" } }, { "key": "1030", "attributes": { "cluster": 2, "x": 12.07804381723352, "y": 86.76472219829581, "size": 1, "color": "#4b94db" } }, { "key": "1031", "attributes": { "cluster": 1, "x": 42.67507866692199, "y": -39.09127738233503, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1032", "attributes": { "cluster": 1, "x": 57.67507866692198, "y": -54.679734650454925, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1033", "attributes": { "cluster": 2, "x": -11.921956182766495, "y": 86.76472219829583, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1034", "attributes": { "cluster": 1, "x": 65.675078666922, "y": -16.574616883939633, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1035", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -16.574616883939633, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1036", "attributes": { "cluster": 0, "x": -79.61794484645874, "y": -44.28742980504166, "size": 1, "color": "#e36d0" } }, { "key": "1037", "attributes": { "cluster": 0, "x": -67.61794484645876, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1038", "attributes": { "cluster": 0, "x": -55.61794484645875, "y": -54.679734650454925, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1039", "attributes": { "cluster": 2, "x": 12.078043817233512, "y": 55.587807662056036, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1040", "attributes": { "cluster": 2, "x": 17.078043817233507, "y": 60.78396008476267, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1041", "attributes": { "cluster": 0, "x": -45.61794484645874, "y": -47.751531420179425, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1042", "attributes": { "cluster": 1, "x": 57.675078666922005, "y": -16.574616883939626, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1043", "attributes": { "cluster": 2, "x": -16.921956182766486, "y": 81.5685697755892, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1044", "attributes": { "cluster": 2, "x": -16.921956182766493, "y": 60.783960084762676, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1045", "attributes": { "cluster": 2, "x": 17.078043817233514, "y": 81.5685697755892, "size": 0, "color": "#4b94db" } }, { "key": "1046", "attributes": { "cluster": 0, "x": -45.617944846458734, "y": -23.502820114215147, "size": 2, "color": "#e36d0" } }, { "key": "1047", "attributes": { "cluster": 2, "x": -17.921956182766483, "y": 79.83651896802033, "size": 1, "color": "#4b94db" } }, { "key": "1048", "attributes": { "cluster": 1, "x": 65.67507866692198, "y": -54.67973465045493, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1049", "attributes": { "cluster": 1, "x": 71.675078666922, "y": -20.038718499077394, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1050", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": -51.21563303531717, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1051", "attributes": { "cluster": 1, "x": 71.67507866692199, "y": -51.215633035317175, "size": 1, "color": "#762e2e" } }, { "key": "1052", "attributes": { "cluster": 1, "x": 51.67507866692199, "y": -20.038718499077383, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1053", "attributes": { "cluster": 0, "x": -77.61794484645874, "y": -23.502820114215133, "size": 2, "color": "#e36d0" } }, { "key": "1054", "attributes": { "cluster": 2, "x": 18.078043817233503, "y": 62.516010892331536, "size": 1, "color": "#4b94db" } }, { "key": "1055", "attributes": { "cluster": 2, "x": 18.07804381723351, "y": 79.83651896802031, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1056", "attributes": { "cluster": 0, "x": -77.61794484645876, "y": -47.75153142017941, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1057", "attributes": { "cluster": 1, "x": 49.675078666921976, "y": -51.21563303531717, "size": 2, "color": "#762e2e" } }, { "key": "1058", "attributes": { "cluster": 0, "x": -42.61794484645874, "y": -35.627175767197286, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1059", "attributes": { "cluster": 1, "x": 73.675078666922, "y": -20.03871849907739, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1060", "attributes": { "cluster": 0, "x": -41.61794484645874, "y": -33.895124959628404, "size": 1, "color": "#e36d0" } }, { "key": "1061", "attributes": { "cluster": 2, "x": 6.07804381723352, "y": 90.22882381343358, "size": 1, "color": "#4b94db" } }, { "key": "1062", "attributes": { "cluster": 2, "x": -5.921956182766484, "y": 90.22882381343358, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1063", "attributes": { "cluster": 2, "x": -17.92195618276649, "y": 62.51601089233155, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1064", "attributes": { "cluster": 2, "x": -5.921956182766501, "y": 52.12370604691829, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1065", "attributes": { "cluster": 2, "x": 6.078043817233503, "y": 52.12370604691829, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1066", "attributes": { "cluster": 2, "x": 16.078043817233507, "y": 59.051909277193786, "size": 2, "color": "#4b94db" } }, { "key": "1067", "attributes": { "cluster": 2, "x": 16.078043817233517, "y": 83.30062058315806, "size": 1, "color": "#4b94db" } }, { "key": "1068", "attributes": { "cluster": 1, "x": 49.67507866692199, "y": -20.038718499077383, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1069", "attributes": { "cluster": 1, "x": 73.67507866692199, "y": -51.215633035317175, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1070", "attributes": { "cluster": 1, "x": 78.67507866692199, "y": -46.01948061261055, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1071", "attributes": { "cluster": 1, "x": 44.67507866692199, "y": -25.23487092178401, "size": 2, "color": "#762e2e" } }, { "key": "1072", "attributes": { "cluster": 0, "x": -80.61794484645874, "y": -35.62717576719727, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1073", "attributes": { "cluster": 1, "x": 44.67507866692199, "y": -46.019480612610536, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1074", "attributes": { "cluster": 1, "x": 78.67507866692199, "y": -25.234870921784022, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1075", "attributes": { "cluster": 0, "x": -81.61794484645874, "y": -37.359226574766154, "size": 2, "color": "#e36d0" } }, { "key": "1076", "attributes": { "cluster": 1, "x": 43.675078666922, "y": -26.966921729352883, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1077", "attributes": { "cluster": 1, "x": 79.67507866692199, "y": -44.287429805041675, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1078", "attributes": { "cluster": 1, "x": 79.67507866692199, "y": -26.966921729352897, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1079", "attributes": { "cluster": 1, "x": 67.675078666922, "y": -16.574616883939637, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1080", "attributes": { "cluster": 2, "x": -15.921956182766488, "y": 83.30062058315808, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1081", "attributes": { "cluster": 0, "x": -80.61794484645874, "y": -42.555378997472786, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1082", "attributes": { "cluster": 2, "x": -15.921956182766499, "y": 59.0519092771938, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1083", "attributes": { "cluster": 1, "x": 55.675078666922, "y": -16.574616883939633, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1084", "attributes": { "cluster": 1, "x": 43.67507866692199, "y": -44.28742980504166, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1085", "attributes": { "cluster": 0, "x": -42.61794484645874, "y": -28.698972536921772, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1086", "attributes": { "cluster": 0, "x": -80.61794484645874, "y": -28.698972536921765, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "1087", "attributes": { "cluster": 2, "x": 19.07804381723351, "y": 71.17626493017593, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1088", "attributes": { "cluster": 0, "x": -42.61794484645874, "y": -42.55537899747279, "size": 1, "color": "#e36d0" } }, { "key": "1089", "attributes": { "cluster": 1, "x": 55.675078666921976, "y": -54.67973465045492, "size": 1, "color": "#762e2e" } }, { "key": "1090", "attributes": { "cluster": 2, "x": 20.07804381723351, "y": 72.9083157377448, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1091", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -54.679734650454925, "size": 1, "color": "#762e2e" } }, { "key": "1092", "attributes": { "cluster": 1, "x": 77.67507866692199, "y": -47.751531420179425, "size": 1, "color": "#762e2e" } }, { "key": "1093", "attributes": { "cluster": 2, "x": -18.92195618276649, "y": 71.17626493017593, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1094", "attributes": { "cluster": 1, "x": 77.67507866692199, "y": -23.502820114215147, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1095", "attributes": { "cluster": 0, "x": -46.617944846458734, "y": -21.77076930664627, "size": 0, "color": "#e36d0" } }, { "key": "1096", "attributes": { "cluster": 1, "x": 45.67507866692199, "y": -23.502820114215133, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1097", "attributes": { "cluster": 0, "x": -76.61794484645874, "y": -21.770769306646258, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1098", "attributes": { "cluster": 2, "x": -19.92195618276649, "y": 69.44421412260706, "size": 2, "color": "#4b94db" } }, { "key": "1099", "attributes": { "cluster": 0, "x": -76.61794484645876, "y": -49.483582227748286, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1100", "attributes": { "cluster": 0, "x": -46.61794484645874, "y": -49.4835822277483, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1101", "attributes": { "cluster": 1, "x": 45.67507866692198, "y": -47.75153142017941, "size": 1, "color": "#762e2e" } }, { "key": "1102", "attributes": { "cluster": 2, "x": -18.92195618276649, "y": 64.24806169990043, "size": 1, "color": "#4b94db" } }, { "key": "1103", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": -35.627175767197286, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1104", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": -33.895124959628404, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1105", "attributes": { "cluster": 1, "x": 42.67507866692199, "y": -35.62717576719727, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1106", "attributes": { "cluster": 0, "x": -52.61794484645873, "y": -18.306667691508515, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1107", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -52.94768384288604, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1108", "attributes": { "cluster": 0, "x": -52.617944846458734, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1109", "attributes": { "cluster": 2, "x": 19.07804381723351, "y": 78.10446816045143, "size": 1, "color": "#4b94db" } }, { "key": "1110", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -18.30666769150851, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1111", "attributes": { "cluster": 0, "x": -81.61794484645874, "y": -40.823328189903904, "size": 2, "color": "#e36d0" } }, { "key": "1112", "attributes": { "cluster": 1, "x": 41.67507866692199, "y": -37.359226574766154, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1113", "attributes": { "cluster": 1, "x": 42.67507866692199, "y": -42.555378997472786, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1114", "attributes": { "cluster": 0, "x": -41.61794484645874, "y": -30.43102334449065, "size": 1, "color": "#e36d0" } }, { "key": "1115", "attributes": { "cluster": 0, "x": -81.61794484645874, "y": -30.431023344490644, "size": 1, "color": "#e36d0" } }, { "key": "1116", "attributes": { "cluster": 2, "x": -18.92195618276649, "y": 78.10446816045145, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1117", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": -28.698972536921772, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1118", "attributes": { "cluster": 1, "x": 42.67507866692199, "y": -28.698972536921765, "size": 1, "color": "#762e2e" } }, { "key": "1119", "attributes": { "cluster": 0, "x": -41.61794484645874, "y": -40.82332818990392, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1120", "attributes": { "cluster": 2, "x": 19.07804381723351, "y": 64.24806169990042, "size": 2, "color": "#4b94db" } }, { "key": "1121", "attributes": { "cluster": 2, "x": 15.078043817233516, "y": 85.03267139072695, "size": 1, "color": "#4b94db" } }, { "key": "1122", "attributes": { "cluster": 2, "x": -14.921956182766488, "y": 85.03267139072696, "size": 1, "color": "#4b94db" } }, { "key": "1123", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": -42.55537899747279, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1124", "attributes": { "cluster": 2, "x": -14.921956182766499, "y": 57.31985846962492, "size": 1, "color": "#4b94db" } }, { "key": "1125", "attributes": { "cluster": 0, "x": -53.61794484645873, "y": -16.574616883939637, "size": 1, "color": "#e36d0" } }, { "key": "1126", "attributes": { "cluster": 2, "x": 15.078043817233505, "y": 57.31985846962491, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1127", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -54.67973465045492, "size": 1, "color": "#e36d0" } }, { "key": "1128", "attributes": { "cluster": 1, "x": 76.67507866692199, "y": -21.77076930664627, "size": 1, "color": "#762e2e" } }, { "key": "1129", "attributes": { "cluster": 1, "x": 46.67507866692199, "y": -21.770769306646258, "size": 2, "color": "#762e2e" } }, { "key": "1130", "attributes": { "cluster": 1, "x": 46.67507866692198, "y": -49.483582227748286, "size": 2, "color": "#762e2e" } }, { "key": "1131", "attributes": { "cluster": 2, "x": 9.078043817233521, "y": 88.4967730058647, "size": 1, "color": "#4b94db" } }, { "key": "1132", "attributes": { "cluster": 2, "x": -8.921956182766504, "y": 53.85575685448717, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1133", "attributes": { "cluster": 2, "x": 9.078043817233516, "y": 53.85575685448716, "size": 1, "color": "#4b94db" } }, { "key": "1134", "attributes": { "cluster": 1, "x": 76.67507866692199, "y": -49.4835822277483, "size": 2, "color": "#762e2e" } }, { "key": "1135", "attributes": { "cluster": 1, "x": 70.675078666922, "y": -18.306667691508515, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1136", "attributes": { "cluster": 1, "x": 52.675078666921976, "y": -52.94768384288604, "size": 2, "color": "#762e2e" } }, { "key": "1137", "attributes": { "cluster": 2, "x": -8.921956182766499, "y": 88.4967730058647, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1138", "attributes": { "cluster": 0, "x": -53.617944846458734, "y": -54.679734650454925, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1139", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -52.94768384288605, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1140", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -16.574616883939633, "size": 1, "color": "#e36d0" } }, { "key": "1141", "attributes": { "cluster": 2, "x": -19.92195618276649, "y": 65.9801125074693, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1142", "attributes": { "cluster": 1, "x": 52.67507866692198, "y": -18.30666769150851, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1143", "attributes": { "cluster": 1, "x": 41.67507866692199, "y": -40.823328189903904, "size": 1, "color": "#762e2e" } }, { "key": "1144", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": -30.43102334449065, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1145", "attributes": { "cluster": 0, "x": -62.617944846458755, "y": -56.41178545802381, "size": 1, "color": "#e36d0" } }, { "key": "1146", "attributes": { "cluster": 2, "x": 20.07804381723351, "y": 76.37241735288256, "size": 2, "color": "#4b94db" } }, { "key": "1147", "attributes": { "cluster": 2, "x": -19.92195618276649, "y": 76.37241735288256, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1148", "attributes": { "cluster": 1, "x": 41.67507866692199, "y": -30.431023344490644, "size": 2, "color": "#762e2e" } }, { "key": "1149", "attributes": { "cluster": 0, "x": -60.61794484645875, "y": -56.411785458023814, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1150", "attributes": { "cluster": 0, "x": -60.61794484645873, "y": -14.842566076370751, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1151", "attributes": { "cluster": 0, "x": -62.617944846458734, "y": -14.842566076370748, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1152", "attributes": { "cluster": 2, "x": 20.07804381723351, "y": 65.9801125074693, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1153", "attributes": { "cluster": 0, "x": -75.61794484645874, "y": -20.038718499077383, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "1154", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -51.21563303531717, "size": 1, "color": "#e36d0" } }, { "key": "1155", "attributes": { "cluster": 2, "x": 8.078043817233524, "y": 90.22882381343358, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1156", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": -40.82332818990392, "size": 1, "color": "#762e2e" } }, { "key": "1157", "attributes": { "cluster": 0, "x": -47.61794484645874, "y": -51.215633035317175, "size": 2, "color": "#e36d0" } }, { "key": "1158", "attributes": { "cluster": 1, "x": 69.675078666922, "y": -16.574616883939637, "size": 3, "color": "#762e2e" } }, { "key": "1159", "attributes": { "cluster": 2, "x": -7.921956182766507, "y": 52.12370604691829, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1160", "attributes": { "cluster": 0, "x": -47.61794484645873, "y": -20.03871849907739, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1161", "attributes": { "cluster": 2, "x": 8.078043817233516, "y": 52.12370604691829, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1162", "attributes": { "cluster": 0, "x": -64.61794484645873, "y": -14.842566076370748, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1163", "attributes": { "cluster": 1, "x": 53.675078666921976, "y": -54.67973465045492, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1164", "attributes": { "cluster": 0, "x": -58.61794484645875, "y": -56.411785458023814, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1165", "attributes": { "cluster": 2, "x": -7.921956182766498, "y": 90.22882381343358, "size": 3, "color": "#4b94db" } }, { "key": "1166", "attributes": { "cluster": 2, "x": -0.9219561827665015, "y": 50.391655239349404, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1167", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -54.679734650454925, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1168", "attributes": { "cluster": 2, "x": 1.0780438172335023, "y": 50.391655239349404, "size": 1, "color": "#4b94db" } }, { "key": "1169", "attributes": { "cluster": 0, "x": -58.61794484645873, "y": -14.842566076370755, "size": 2, "color": "#e36d0" } }, { "key": "1170", "attributes": { "cluster": 2, "x": 1.0780438172335203, "y": 91.96087462100246, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1171", "attributes": { "cluster": 1, "x": 53.67507866692198, "y": -16.574616883939633, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1172", "attributes": { "cluster": 0, "x": -64.61794484645876, "y": -56.4117854580238, "size": 1, "color": "#e36d0" } }, { "key": "1173", "attributes": { "cluster": 1, "x": 60.675078666921976, "y": -56.41178545802381, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1174", "attributes": { "cluster": 1, "x": 62.67507866692198, "y": -56.411785458023814, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1175", "attributes": { "cluster": 1, "x": 62.675078666922005, "y": -14.842566076370751, "size": 1, "color": "#762e2e" } }, { "key": "1176", "attributes": { "cluster": 1, "x": 60.675078666922, "y": -14.842566076370748, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1177", "attributes": { "cluster": 0, "x": -41.61794484645874, "y": -37.35922657476616, "size": 1, "color": "#e36d0" } }, { "key": "1178", "attributes": { "cluster": 2, "x": -0.9219561827664835, "y": 91.96087462100246, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1179", "attributes": { "cluster": 2, "x": -13.921956182766495, "y": 86.76472219829583, "size": 2, "color": "#4b94db" } }, { "key": "1180", "attributes": { "cluster": 1, "x": 47.67507866692199, "y": -20.038718499077383, "size": 1, "color": "#762e2e" } }, { "key": "1181", "attributes": { "cluster": 0, "x": -81.61794484645874, "y": -33.8951249596284, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1182", "attributes": { "cluster": 0, "x": -82.61794484645874, "y": -39.09127738233503, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "1183", "attributes": { "cluster": 2, "x": -13.921956182766502, "y": 55.58780766205604, "size": 1, "color": "#4b94db" } }, { "key": "1184", "attributes": { "cluster": 0, "x": -40.61794484645874, "y": -39.091277382335036, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1185", "attributes": { "cluster": 0, "x": -40.61794484645874, "y": -32.16307415205953, "size": 2, "color": "#e36d0" } }, { "key": "1186", "attributes": { "cluster": 0, "x": -82.61794484645874, "y": -32.16307415205952, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1187", "attributes": { "cluster": 0, "x": -66.61794484645876, "y": -56.4117854580238, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "1188", "attributes": { "cluster": 0, "x": -56.61794484645873, "y": -14.842566076370755, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1189", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -14.842566076370755, "size": 2, "color": "#e36d0" } }, { "key": "1190", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": -56.4117854580238, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1191", "attributes": { "cluster": 1, "x": 47.675078666921976, "y": -51.21563303531717, "size": 1, "color": "#762e2e" } }, { "key": "1192", "attributes": { "cluster": 2, "x": 14.078043817233512, "y": 55.587807662056036, "size": 1, "color": "#4b94db" } }, { "key": "1193", "attributes": { "cluster": 0, "x": -50.61794484645873, "y": -18.306667691508515, "size": 1, "color": "#e36d0" } }, { "key": "1194", "attributes": { "cluster": 1, "x": 75.67507866692199, "y": -51.215633035317175, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "1195", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -52.94768384288604, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "1196", "attributes": { "cluster": 2, "x": 14.07804381723352, "y": 86.76472219829581, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1197", "attributes": { "cluster": 2, "x": -2.9219561827664817, "y": 91.96087462100246, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1198", "attributes": { "cluster": 0, "x": -50.617944846458734, "y": -52.94768384288605, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1199", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -18.30666769150851, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1200", "attributes": { "cluster": 1, "x": 75.675078666922, "y": -20.03871849907739, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1201", "attributes": { "cluster": 0, "x": -80.61794484645873, "y": -25.234870921784008, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1202", "attributes": { "cluster": 1, "x": 58.675078666922, "y": -14.842566076370748, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1203", "attributes": { "cluster": 2, "x": 3.0780438172335005, "y": 50.391655239349404, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1204", "attributes": { "cluster": 2, "x": 3.078043817233522, "y": 91.96087462100246, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1205", "attributes": { "cluster": 2, "x": -2.921956182766503, "y": 50.391655239349404, "size": 1, "color": "#4b94db" } }, { "key": "1206", "attributes": { "cluster": 2, "x": 20.07804381723351, "y": 69.44421412260705, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1207", "attributes": { "cluster": 1, "x": 64.67507866692198, "y": -56.411785458023814, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1208", "attributes": { "cluster": 1, "x": 64.675078666922, "y": -14.842566076370755, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1209", "attributes": { "cluster": 1, "x": 58.675078666921976, "y": -56.4117854580238, "size": 2, "color": "#762e2e" } }, { "key": "1210", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": -37.35922657476616, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1211", "attributes": { "cluster": 1, "x": 41.67507866692199, "y": -33.8951249596284, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1212", "attributes": { "cluster": 1, "x": 40.67507866692199, "y": -39.09127738233503, "size": 2, "color": "#762e2e" } }, { "key": "1213", "attributes": { "cluster": 2, "x": -19.92195618276649, "y": 72.90831573774481, "size": 2, "color": "#4b94db" } }, { "key": "1214", "attributes": { "cluster": 2, "x": -20.92195618276649, "y": 67.71216331503818, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1215", "attributes": { "cluster": 2, "x": 21.07804381723351, "y": 67.71216331503817, "size": 2, "color": "#4b94db" } }, { "key": "1216", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": -39.091277382335036, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1217", "attributes": { "cluster": 2, "x": 21.07804381723351, "y": 74.64036654531368, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1218", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": -32.16307415205953, "size": 1, "color": "#762e2e" } }, { "key": "1219", "attributes": { "cluster": 1, "x": 40.67507866692199, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1220", "attributes": { "cluster": 1, "x": 56.675078666921976, "y": -56.4117854580238, "size": 1, "color": "#762e2e" } }, { "key": "1221", "attributes": { "cluster": 1, "x": 66.675078666922, "y": -14.842566076370755, "size": 1, "color": "#762e2e" } }, { "key": "1222", "attributes": { "cluster": 0, "x": -42.61794484645875, "y": -46.01948061261055, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1223", "attributes": { "cluster": 2, "x": -20.92195618276649, "y": 74.6403665453137, "size": 1, "color": "#4b94db" } }, { "key": "1224", "attributes": { "cluster": 0, "x": -42.61794484645874, "y": -25.234870921784022, "size": 0, "color": "#e36d0" } }, { "key": "1225", "attributes": { "cluster": 2, "x": -4.921956182766504, "y": 50.391655239349404, "size": 2, "color": "#4b94db" } }, { "key": "1226", "attributes": { "cluster": 0, "x": -80.61794484645874, "y": -46.019480612610536, "size": 2, "color": "#e36d0" } }, { "key": "1227", "attributes": { "cluster": 2, "x": 5.078043817233523, "y": 91.96087462100246, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1228", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": -14.842566076370755, "size": 1, "color": "#762e2e" } }, { "key": "1229", "attributes": { "cluster": 2, "x": -4.921956182766488, "y": 91.96087462100246, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1230", "attributes": { "cluster": 2, "x": 5.078043817233507, "y": 50.391655239349404, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1231", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -52.94768384288604, "size": 1, "color": "#e36d0" } }, { "key": "1232", "attributes": { "cluster": 2, "x": 11.07804381723352, "y": 88.4967730058647, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "1233", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": -18.306667691508515, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1234", "attributes": { "cluster": 2, "x": -10.921956182766502, "y": 53.85575685448717, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1235", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -56.4117854580238, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1236", "attributes": { "cluster": 1, "x": 72.675078666922, "y": -18.306667691508515, "size": 2, "color": "#762e2e" } }, { "key": "1237", "attributes": { "cluster": 2, "x": 11.078043817233516, "y": 53.85575685448716, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1238", "attributes": { "cluster": 0, "x": -79.61794484645874, "y": -23.502820114215133, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1239", "attributes": { "cluster": 1, "x": 50.675078666921976, "y": -52.94768384288604, "size": 2, "color": "#762e2e" } }, { "key": "1240", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -52.94768384288605, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1241", "attributes": { "cluster": 1, "x": 50.67507866692198, "y": -18.30666769150851, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1242", "attributes": { "cluster": 2, "x": -10.921956182766499, "y": 88.4967730058647, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1243", "attributes": { "cluster": 1, "x": 42.675078666922, "y": -25.234870921784008, "size": 3, "color": "#762e2e" } }, { "key": "1244", "attributes": { "cluster": 0, "x": -79.61794484645876, "y": -47.75153142017941, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1245", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": -46.01948061261055, "size": 1, "color": "#762e2e" } }, { "key": "1246", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": -25.234870921784022, "size": 2, "color": "#762e2e" } }, { "key": "1247", "attributes": { "cluster": 1, "x": 42.67507866692199, "y": -46.019480612610536, "size": 3, "color": "#762e2e" } }, { "key": "1248", "attributes": { "cluster": 2, "x": -18.921956182766483, "y": 81.5685697755892, "size": 0, "color": "#4b94db" } }, { "key": "1249", "attributes": { "cluster": 2, "x": 19.078043817233503, "y": 60.78396008476266, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1250", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -52.94768384288604, "size": 1, "color": "#762e2e" } }, { "key": "1251", "attributes": { "cluster": 1, "x": 74.675078666922, "y": -18.306667691508515, "size": 2, "color": "#762e2e" } }, { "key": "1252", "attributes": { "cluster": 2, "x": 19.07804381723351, "y": 81.5685697755892, "size": 1, "color": "#4b94db" } }, { "key": "1253", "attributes": { "cluster": 0, "x": -43.61794484645874, "y": -47.751531420179425, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1254", "attributes": { "cluster": 2, "x": -18.92195618276649, "y": 60.783960084762676, "size": 1, "color": "#4b94db" } }, { "key": "1255", "attributes": { "cluster": 0, "x": -43.617944846458734, "y": -23.502820114215147, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "1256", "attributes": { "cluster": 2, "x": -12.921956182766502, "y": 53.85575685448717, "size": 1, "color": "#4b94db" } }, { "key": "1257", "attributes": { "cluster": 1, "x": 43.67507866692199, "y": -23.502820114215133, "size": 2, "color": "#762e2e" } }, { "key": "1258", "attributes": { "cluster": 2, "x": 13.07804381723352, "y": 88.4967730058647, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1259", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -18.30666769150851, "size": 2, "color": "#e36d0" } }, { "key": "1260", "attributes": { "cluster": 0, "x": -48.617944846458734, "y": -52.94768384288605, "size": 1, "color": "#e36d0" } }, { "key": "1261", "attributes": { "cluster": 2, "x": -17.921956182766486, "y": 83.30062058315808, "size": 2, "color": "#4b94db" } }, { "key": "1262", "attributes": { "cluster": 1, "x": 43.67507866692198, "y": -47.75153142017941, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1263", "attributes": { "cluster": 1, "x": 79.67507866692199, "y": -47.751531420179425, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1264", "attributes": { "cluster": 0, "x": -41.61794484645874, "y": -26.966921729352897, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1265", "attributes": { "cluster": 0, "x": -81.61794484645874, "y": -44.28742980504166, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1266", "attributes": { "cluster": 0, "x": -41.61794484645875, "y": -44.287429805041675, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1267", "attributes": { "cluster": 0, "x": -81.61794484645873, "y": -26.966921729352883, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1268", "attributes": { "cluster": 2, "x": -17.921956182766497, "y": 59.0519092771938, "size": 2, "color": "#4b94db" } }, { "key": "1269", "attributes": { "cluster": 0, "x": -78.61794484645876, "y": -49.48358222774829, "size": 1, "color": "#e36d0" } }, { "key": "1270", "attributes": { "cluster": 0, "x": -44.61794484645874, "y": -49.4835822277483, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1271", "attributes": { "cluster": 0, "x": -44.617944846458734, "y": -21.770769306646265, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1272", "attributes": { "cluster": 0, "x": -78.61794484645874, "y": -21.770769306646258, "size": 1, "color": "#e36d0" } }, { "key": "1273", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": -56.4117854580238, "size": 1, "color": "#e36d0" } }, { "key": "1274", "attributes": { "cluster": 2, "x": 18.078043817233507, "y": 59.051909277193786, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1275", "attributes": { "cluster": 0, "x": -54.61794484645874, "y": -56.4117854580238, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1276", "attributes": { "cluster": 1, "x": 79.67507866692199, "y": -23.502820114215147, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1277", "attributes": { "cluster": 2, "x": 18.078043817233517, "y": 83.30062058315806, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1278", "attributes": { "cluster": 2, "x": -12.921956182766499, "y": 88.4967730058647, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1279", "attributes": { "cluster": 1, "x": 48.67507866692198, "y": -18.30666769150851, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1280", "attributes": { "cluster": 1, "x": 74.67507866692199, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1281", "attributes": { "cluster": 0, "x": -54.61794484645873, "y": -14.842566076370762, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1282", "attributes": { "cluster": 2, "x": 13.078043817233516, "y": 53.85575685448716, "size": 1, "color": "#4b94db" } }, { "key": "1283", "attributes": { "cluster": 2, "x": 20.07804381723351, "y": 79.83651896802031, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1284", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -14.842566076370758, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1285", "attributes": { "cluster": 0, "x": -82.61794484645874, "y": -42.555378997472786, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1286", "attributes": { "cluster": 2, "x": -19.92195618276649, "y": 62.51601089233155, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1287", "attributes": { "cluster": 0, "x": -40.61794484645874, "y": -28.698972536921772, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1288", "attributes": { "cluster": 2, "x": 20.078043817233503, "y": 62.516010892331536, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1289", "attributes": { "cluster": 2, "x": -19.921956182766483, "y": 79.83651896802033, "size": 2, "color": "#4b94db" } }, { "key": "1290", "attributes": { "cluster": 0, "x": -82.61794484645874, "y": -28.698972536921765, "size": 1, "color": "#e36d0" } }, { "key": "1291", "attributes": { "cluster": 0, "x": -40.61794484645874, "y": -42.55537899747279, "size": 0, "color": "#e36d0" } }, { "key": "1292", "attributes": { "cluster": 2, "x": -16.921956182766497, "y": 57.31985846962492, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1293", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": -26.966921729352897, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1294", "attributes": { "cluster": 1, "x": 41.67507866692199, "y": -44.28742980504166, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1295", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": -44.287429805041675, "size": 1, "color": "#762e2e" } }, { "key": "1296", "attributes": { "cluster": 1, "x": 41.675078666922, "y": -26.966921729352883, "size": 2, "color": "#762e2e" } }, { "key": "1297", "attributes": { "cluster": 2, "x": 17.078043817233507, "y": 57.31985846962491, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1298", "attributes": { "cluster": 1, "x": 44.67507866692198, "y": -49.48358222774829, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1299", "attributes": { "cluster": 0, "x": -40.61794484645874, "y": -35.627175767197286, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1300", "attributes": { "cluster": 1, "x": 78.67507866692199, "y": -49.4835822277483, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1301", "attributes": { "cluster": 2, "x": 17.078043817233517, "y": 85.03267139072695, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1302", "attributes": { "cluster": 0, "x": -39.61794484645874, "y": -33.895124959628404, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1303", "attributes": { "cluster": 2, "x": -16.921956182766486, "y": 85.03267139072696, "size": 3, "color": "#4b94db" } }, { "key": "1304", "attributes": { "cluster": 1, "x": 78.67507866692199, "y": -21.770769306646265, "size": 1, "color": "#762e2e" } }, { "key": "1305", "attributes": { "cluster": 0, "x": -82.61794484645874, "y": -35.62717576719727, "size": 1, "color": "#e36d0" } }, { "key": "1306", "attributes": { "cluster": 0, "x": -83.61794484645874, "y": -37.359226574766154, "size": 1, "color": "#e36d0" } }, { "key": "1307", "attributes": { "cluster": 2, "x": -6.921956182766504, "y": 50.39165523934942, "size": 1, "color": "#4b94db" } }, { "key": "1308", "attributes": { "cluster": 2, "x": 7.078043817233509, "y": 50.39165523934941, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1309", "attributes": { "cluster": 2, "x": 7.078043817233523, "y": 91.96087462100245, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1310", "attributes": { "cluster": 1, "x": 44.67507866692199, "y": -21.770769306646258, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "1311", "attributes": { "cluster": 0, "x": -77.61794484645876, "y": -51.21563303531717, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1312", "attributes": { "cluster": 1, "x": 54.675078666921976, "y": -56.4117854580238, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1313", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -56.4117854580238, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1314", "attributes": { "cluster": 2, "x": -6.921956182766491, "y": 91.96087462100246, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1315", "attributes": { "cluster": 0, "x": -45.61794484645874, "y": -51.215633035317175, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1316", "attributes": { "cluster": 1, "x": 68.675078666922, "y": -14.842566076370762, "size": 2, "color": "#762e2e" } }, { "key": "1317", "attributes": { "cluster": 2, "x": -20.92195618276649, "y": 64.24806169990043, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1318", "attributes": { "cluster": 1, "x": 54.67507866692199, "y": -14.842566076370758, "size": 3, "color": "#762e2e" } }, { "key": "1319", "attributes": { "cluster": 0, "x": -45.61794484645873, "y": -20.038718499077394, "size": 2, "color": "#e36d0" } }, { "key": "1320", "attributes": { "cluster": 0, "x": -77.61794484645874, "y": -20.038718499077383, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1321", "attributes": { "cluster": 0, "x": -61.617944846458755, "y": -58.14383626559268, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1322", "attributes": { "cluster": 1, "x": 40.67507866692199, "y": -42.555378997472786, "size": 1, "color": "#762e2e" } }, { "key": "1323", "attributes": { "cluster": 0, "x": -61.61794484645873, "y": -13.110515268801876, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1324", "attributes": { "cluster": 0, "x": -83.61794484645874, "y": -40.823328189903904, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1325", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": -28.698972536921772, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1326", "attributes": { "cluster": 1, "x": 40.67507866692199, "y": -28.698972536921765, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1327", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": -42.55537899747279, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "1328", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": -35.627175767197286, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1329", "attributes": { "cluster": 0, "x": -39.61794484645874, "y": -30.43102334449065, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1330", "attributes": { "cluster": 2, "x": 21.07804381723351, "y": 78.10446816045143, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1331", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": -33.895124959628404, "size": 1, "color": "#762e2e" } }, { "key": "1332", "attributes": { "cluster": 0, "x": -59.61794484645873, "y": -13.110515268801876, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1333", "attributes": { "cluster": 2, "x": -20.92195618276649, "y": 78.10446816045145, "size": 2, "color": "#4b94db" } }, { "key": "1334", "attributes": { "cluster": 0, "x": -83.61794484645874, "y": -30.431023344490644, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1335", "attributes": { "cluster": 0, "x": -63.617944846458755, "y": -58.14383626559268, "size": 1, "color": "#e36d0" } }, { "key": "1336", "attributes": { "cluster": 1, "x": 40.67507866692199, "y": -35.62717576719727, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1337", "attributes": { "cluster": 0, "x": -39.61794484645874, "y": -40.82332818990392, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1338", "attributes": { "cluster": 1, "x": 39.67507866692199, "y": -37.359226574766154, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1339", "attributes": { "cluster": 2, "x": 21.07804381723351, "y": 64.24806169990042, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1340", "attributes": { "cluster": 2, "x": 21.07804381723351, "y": 71.17626493017593, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1341", "attributes": { "cluster": 0, "x": -63.617944846458734, "y": -13.11051526880187, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1342", "attributes": { "cluster": 2, "x": 22.07804381723351, "y": 72.9083157377448, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1343", "attributes": { "cluster": 2, "x": -20.92195618276649, "y": 71.17626493017593, "size": 1, "color": "#4b94db" } }, { "key": "1344", "attributes": { "cluster": 1, "x": 45.675078666921976, "y": -51.21563303531717, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1345", "attributes": { "cluster": 1, "x": 77.67507866692199, "y": -51.215633035317175, "size": 1, "color": "#762e2e" } }, { "key": "1346", "attributes": { "cluster": 0, "x": -59.61794484645875, "y": -58.14383626559269, "size": 1, "color": "#e36d0" } }, { "key": "1347", "attributes": { "cluster": 1, "x": 77.675078666922, "y": -20.038718499077394, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1348", "attributes": { "cluster": 2, "x": -21.92195618276649, "y": 69.44421412260706, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1349", "attributes": { "cluster": 1, "x": 45.67507866692199, "y": -20.038718499077383, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1350", "attributes": { "cluster": 2, "x": -15.921956182766502, "y": 55.58780766205605, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1351", "attributes": { "cluster": 2, "x": 16.078043817233514, "y": 55.587807662056036, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1352", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": -16.574616883939637, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1353", "attributes": { "cluster": 2, "x": 16.07804381723352, "y": 86.76472219829581, "size": 2, "color": "#4b94db" } }, { "key": "1354", "attributes": { "cluster": 1, "x": 61.675078666921976, "y": -58.14383626559268, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1355", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1356", "attributes": { "cluster": 2, "x": -15.921956182766495, "y": 86.76472219829583, "size": 2, "color": "#4b94db" } }, { "key": "1357", "attributes": { "cluster": 1, "x": 61.675078666922005, "y": -13.110515268801876, "size": 1, "color": "#762e2e" } }, { "key": "1358", "attributes": { "cluster": 1, "x": 39.67507866692199, "y": -40.823328189903904, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1359", "attributes": { "cluster": 0, "x": -51.617944846458734, "y": -54.67973465045493, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1360", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -16.57461688393963, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1361", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -56.4117854580238, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1362", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": -30.43102334449065, "size": 2, "color": "#762e2e" } }, { "key": "1363", "attributes": { "cluster": 0, "x": -52.61794484645874, "y": -56.4117854580238, "size": 2, "color": "#e36d0" } }, { "key": "1364", "attributes": { "cluster": 2, "x": 0.07804381723349738, "y": 48.65960443178053, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1365", "attributes": { "cluster": 2, "x": 0.0780438172335213, "y": 93.69292542857133, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1366", "attributes": { "cluster": 1, "x": 63.675078666922005, "y": -13.110515268801876, "size": 2, "color": "#762e2e" } }, { "key": "1367", "attributes": { "cluster": 1, "x": 39.67507866692199, "y": -30.431023344490644, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1368", "attributes": { "cluster": 0, "x": -52.61794484645873, "y": -14.842566076370758, "size": 1, "color": "#e36d0" } }, { "key": "1369", "attributes": { "cluster": 0, "x": -70.61794484645874, "y": -14.842566076370755, "size": 2, "color": "#e36d0" } }, { "key": "1370", "attributes": { "cluster": 0, "x": -65.61794484645876, "y": -58.14383626559268, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1371", "attributes": { "cluster": 1, "x": 59.675078666921976, "y": -58.14383626559268, "size": 1, "color": "#762e2e" } }, { "key": "1372", "attributes": { "cluster": 2, "x": -21.92195618276649, "y": 65.9801125074693, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1373", "attributes": { "cluster": 0, "x": -57.61794484645873, "y": -13.110515268801876, "size": 0, "color": "#e36d0" } }, { "key": "1374", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": -40.82332818990392, "size": 2, "color": "#762e2e" } }, { "key": "1375", "attributes": { "cluster": 1, "x": 59.675078666922, "y": -13.11051526880187, "size": 1, "color": "#762e2e" } }, { "key": "1376", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -13.110515268801876, "size": 2, "color": "#e36d0" } }, { "key": "1377", "attributes": { "cluster": 1, "x": 63.67507866692198, "y": -58.14383626559269, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1378", "attributes": { "cluster": 2, "x": 22.07804381723351, "y": 76.37241735288256, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1379", "attributes": { "cluster": 2, "x": 2.078043817233524, "y": 93.69292542857133, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1380", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": -58.14383626559268, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1381", "attributes": { "cluster": 2, "x": -21.92195618276649, "y": 76.37241735288256, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1382", "attributes": { "cluster": 0, "x": -46.61794484645873, "y": -18.306667691508515, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1383", "attributes": { "cluster": 2, "x": -1.9219561827665053, "y": 48.65960443178053, "size": 1, "color": "#4b94db" } }, { "key": "1384", "attributes": { "cluster": 0, "x": -76.61794484645876, "y": -52.94768384288604, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1385", "attributes": { "cluster": 0, "x": -46.617944846458734, "y": -52.94768384288605, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1386", "attributes": { "cluster": 0, "x": -76.61794484645876, "y": -18.30666769150851, "size": 2, "color": "#e36d0" } }, { "key": "1387", "attributes": { "cluster": 1, "x": 71.675078666922, "y": -16.574616883939637, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1388", "attributes": { "cluster": 0, "x": -83.61794484645874, "y": -33.8951249596284, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1389", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1390", "attributes": { "cluster": 0, "x": -39.61794484645874, "y": -37.35922657476616, "size": 2, "color": "#e36d0" } }, { "key": "1391", "attributes": { "cluster": 0, "x": -55.61794484645872, "y": -13.11051526880188, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1392", "attributes": { "cluster": 2, "x": 22.07804381723351, "y": 65.9801125074693, "size": 2, "color": "#4b94db" } }, { "key": "1393", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -13.110515268801883, "size": 2, "color": "#e36d0" } }, { "key": "1394", "attributes": { "cluster": 0, "x": -67.61794484645876, "y": -58.14383626559268, "size": 1, "color": "#e36d0" } }, { "key": "1395", "attributes": { "cluster": 1, "x": 71.67507866692199, "y": -54.67973465045493, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1396", "attributes": { "cluster": 1, "x": 51.67507866692198, "y": -16.57461688393963, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1397", "attributes": { "cluster": 2, "x": -1.9219561827664826, "y": 93.69292542857134, "size": 1, "color": "#4b94db" } }, { "key": "1398", "attributes": { "cluster": 1, "x": 52.675078666921976, "y": -56.4117854580238, "size": 2, "color": "#762e2e" } }, { "key": "1399", "attributes": { "cluster": 2, "x": 2.0780438172335014, "y": 48.65960443178052, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1400", "attributes": { "cluster": 0, "x": -55.61794484645874, "y": -58.143836265592675, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1401", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -56.4117854580238, "size": 3.6666666666666665, "color": "#762e2e" } }, { "key": "1402", "attributes": { "cluster": 0, "x": -38.61794484645874, "y": -39.091277382335036, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1403", "attributes": { "cluster": 1, "x": 70.675078666922, "y": -14.842566076370758, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1404", "attributes": { "cluster": 0, "x": -38.61794484645874, "y": -32.16307415205953, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "1405", "attributes": { "cluster": 2, "x": 10.07804381723352, "y": 90.22882381343358, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1406", "attributes": { "cluster": 0, "x": -84.61794484645874, "y": -32.16307415205952, "size": 1, "color": "#e36d0" } }, { "key": "1407", "attributes": { "cluster": 1, "x": 52.67507866692199, "y": -14.842566076370755, "size": 1, "color": "#762e2e" } }, { "key": "1408", "attributes": { "cluster": 2, "x": -9.921956182766502, "y": 52.12370604691829, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1409", "attributes": { "cluster": 1, "x": 57.675078666921976, "y": -58.14383626559268, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1410", "attributes": { "cluster": 0, "x": -84.61794484645874, "y": -39.09127738233503, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1411", "attributes": { "cluster": 2, "x": 10.078043817233516, "y": 52.12370604691829, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1412", "attributes": { "cluster": 0, "x": -81.61794484645876, "y": -47.751531420179404, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1413", "attributes": { "cluster": 1, "x": 65.675078666922, "y": -13.110515268801876, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1414", "attributes": { "cluster": 0, "x": -41.61794484645875, "y": -47.751531420179425, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1415", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -13.110515268801876, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1416", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -58.14383626559268, "size": 1, "color": "#762e2e" } }, { "key": "1417", "attributes": { "cluster": 1, "x": 76.675078666922, "y": -18.306667691508515, "size": 3.3333333333333335, "color": "#762e2e" } }, { "key": "1418", "attributes": { "cluster": 1, "x": 46.675078666921976, "y": -52.94768384288604, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1419", "attributes": { "cluster": 0, "x": -41.617944846458734, "y": -23.50282011421515, "size": 2, "color": "#e36d0" } }, { "key": "1420", "attributes": { "cluster": 0, "x": -81.61794484645873, "y": -23.502820114215133, "size": 0, "color": "#e36d0" } }, { "key": "1421", "attributes": { "cluster": 0, "x": -82.61794484645873, "y": -25.234870921784005, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1422", "attributes": { "cluster": 1, "x": 76.67507866692199, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1423", "attributes": { "cluster": 2, "x": -9.921956182766499, "y": 90.22882381343358, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1424", "attributes": { "cluster": 0, "x": -40.61794484645875, "y": -46.01948061261055, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1425", "attributes": { "cluster": 1, "x": 46.67507866692198, "y": -18.30666769150851, "size": 1, "color": "#762e2e" } }, { "key": "1426", "attributes": { "cluster": 2, "x": -8.921956182766506, "y": 50.39165523934941, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1427", "attributes": { "cluster": 2, "x": 9.078043817233512, "y": 50.391655239349404, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1428", "attributes": { "cluster": 2, "x": 9.078043817233523, "y": 91.96087462100246, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1429", "attributes": { "cluster": 1, "x": 39.67507866692199, "y": -33.8951249596284, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1430", "attributes": { "cluster": 0, "x": -40.61794484645874, "y": -25.23487092178402, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1431", "attributes": { "cluster": 2, "x": -8.921956182766495, "y": 91.96087462100246, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1432", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": -37.35922657476616, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1433", "attributes": { "cluster": 0, "x": -82.61794484645874, "y": -46.019480612610536, "size": 1, "color": "#e36d0" } }, { "key": "1434", "attributes": { "cluster": 2, "x": -3.921956182766503, "y": 48.65960443178053, "size": 2, "color": "#4b94db" } }, { "key": "1435", "attributes": { "cluster": 1, "x": 67.675078666922, "y": -13.11051526880188, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1436", "attributes": { "cluster": 2, "x": 4.078043817233522, "y": 93.69292542857133, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1437", "attributes": { "cluster": 1, "x": 55.67507866692199, "y": -13.110515268801883, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1438", "attributes": { "cluster": 0, "x": -42.61794484645874, "y": -49.4835822277483, "size": 1, "color": "#e36d0" } }, { "key": "1439", "attributes": { "cluster": 1, "x": 55.67507866692197, "y": -58.14383626559268, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1440", "attributes": { "cluster": 0, "x": -80.61794484645874, "y": -21.770769306646258, "size": 2, "color": "#e36d0" } }, { "key": "1441", "attributes": { "cluster": 0, "x": -80.61794484645876, "y": -49.483582227748286, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1442", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -58.143836265592675, "size": 2, "color": "#762e2e" } }, { "key": "1443", "attributes": { "cluster": 2, "x": -3.9219561827664906, "y": 93.69292542857133, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1444", "attributes": { "cluster": 2, "x": 4.078043817233509, "y": 48.65960443178053, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1445", "attributes": { "cluster": 2, "x": 15.07804381723352, "y": 88.4967730058647, "size": 2, "color": "#4b94db" } }, { "key": "1446", "attributes": { "cluster": 2, "x": -14.921956182766502, "y": 53.85575685448717, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1447", "attributes": { "cluster": 2, "x": 15.078043817233516, "y": 53.85575685448716, "size": 1, "color": "#4b94db" } }, { "key": "1448", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": -39.091277382335036, "size": 1, "color": "#762e2e" } }, { "key": "1449", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": -32.16307415205953, "size": 1, "color": "#762e2e" } }, { "key": "1450", "attributes": { "cluster": 0, "x": -42.617944846458734, "y": -21.77076930664627, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1451", "attributes": { "cluster": 0, "x": -83.61794484645874, "y": -44.28742980504166, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1452", "attributes": { "cluster": 0, "x": -39.61794484645874, "y": -26.966921729352897, "size": 1, "color": "#e36d0" } }, { "key": "1453", "attributes": { "cluster": 1, "x": 38.67507866692199, "y": -32.16307415205952, "size": 1, "color": "#762e2e" } }, { "key": "1454", "attributes": { "cluster": 1, "x": 38.67507866692199, "y": -39.09127738233503, "size": 2, "color": "#762e2e" } }, { "key": "1455", "attributes": { "cluster": 0, "x": -49.61794484645873, "y": -16.574616883939637, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1456", "attributes": { "cluster": 1, "x": 41.67507866692198, "y": -47.751531420179404, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1457", "attributes": { "cluster": 2, "x": -14.921956182766499, "y": 88.4967730058647, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1458", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": -47.751531420179425, "size": 1, "color": "#762e2e" } }, { "key": "1459", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": -23.50282011421515, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1460", "attributes": { "cluster": 1, "x": 41.675078666922, "y": -23.502820114215133, "size": 1, "color": "#762e2e" } }, { "key": "1461", "attributes": { "cluster": 0, "x": -83.61794484645873, "y": -26.966921729352883, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1462", "attributes": { "cluster": 2, "x": -21.92195618276649, "y": 72.90831573774481, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1463", "attributes": { "cluster": 1, "x": 40.675078666922, "y": -25.234870921784005, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1464", "attributes": { "cluster": 2, "x": 22.07804381723351, "y": 69.44421412260705, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "1465", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": -46.01948061261055, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1466", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1467", "attributes": { "cluster": 0, "x": -39.61794484645875, "y": -44.287429805041675, "size": 1, "color": "#e36d0" } }, { "key": "1468", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -16.574616883939633, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1469", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": -25.23487092178402, "size": 2, "color": "#762e2e" } }, { "key": "1470", "attributes": { "cluster": 0, "x": -49.617944846458734, "y": -54.679734650454925, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1471", "attributes": { "cluster": 0, "x": -47.61794484645873, "y": -16.574616883939637, "size": 1, "color": "#e36d0" } }, { "key": "1472", "attributes": { "cluster": 2, "x": 6.078043817233529, "y": 93.69292542857133, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1473", "attributes": { "cluster": 2, "x": -5.9219561827664915, "y": 93.69292542857133, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1474", "attributes": { "cluster": 1, "x": 40.67507866692199, "y": -46.019480612610536, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1475", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": -49.4835822277483, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1476", "attributes": { "cluster": 2, "x": -5.92195618276651, "y": 48.65960443178054, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1477", "attributes": { "cluster": 1, "x": 42.67507866692199, "y": -21.770769306646258, "size": 1, "color": "#762e2e" } }, { "key": "1478", "attributes": { "cluster": 2, "x": 6.07804381723351, "y": 48.65960443178054, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1479", "attributes": { "cluster": 2, "x": 23.07804381723351, "y": 67.71216331503817, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1480", "attributes": { "cluster": 1, "x": 42.67507866692198, "y": -49.483582227748286, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1481", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -54.67973465045492, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "1482", "attributes": { "cluster": 0, "x": -47.617944846458734, "y": -54.67973465045493, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1483", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -16.57461688393963, "size": 1, "color": "#e36d0" } }, { "key": "1484", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": -21.77076930664627, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1485", "attributes": { "cluster": 1, "x": 39.67507866692199, "y": -44.28742980504166, "size": 2, "color": "#762e2e" } }, { "key": "1486", "attributes": { "cluster": 0, "x": -79.61794484645874, "y": -20.038718499077383, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1487", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": -26.966921729352897, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1488", "attributes": { "cluster": 2, "x": 23.07804381723351, "y": 74.64036654531368, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1489", "attributes": { "cluster": 1, "x": 73.675078666922, "y": -16.574616883939637, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1490", "attributes": { "cluster": 1, "x": 39.675078666922, "y": -26.966921729352883, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1491", "attributes": { "cluster": 0, "x": -79.61794484645876, "y": -51.21563303531717, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1492", "attributes": { "cluster": 2, "x": -22.92195618276649, "y": 74.6403665453137, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1493", "attributes": { "cluster": 2, "x": -22.92195618276649, "y": 67.71216331503818, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1494", "attributes": { "cluster": 2, "x": -19.921956182766497, "y": 59.0519092771938, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "1495", "attributes": { "cluster": 0, "x": -43.61794484645874, "y": -51.215633035317175, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1496", "attributes": { "cluster": 1, "x": 49.675078666921976, "y": -54.67973465045492, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1497", "attributes": { "cluster": 2, "x": 20.078043817233503, "y": 59.051909277193786, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1498", "attributes": { "cluster": 0, "x": -43.617944846458734, "y": -20.03871849907739, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1499", "attributes": { "cluster": 2, "x": 20.078043817233517, "y": 83.30062058315806, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1500", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": -44.287429805041675, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1501", "attributes": { "cluster": 1, "x": 49.67507866692198, "y": -16.574616883939633, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1502", "attributes": { "cluster": 2, "x": -19.921956182766483, "y": 83.30062058315808, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1503", "attributes": { "cluster": 2, "x": -20.921956182766483, "y": 81.56856977558921, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1504", "attributes": { "cluster": 2, "x": 21.078043817233503, "y": 60.783960084762654, "size": 1, "color": "#4b94db" } }, { "key": "1505", "attributes": { "cluster": 2, "x": 21.07804381723351, "y": 81.5685697755892, "size": 1, "color": "#4b94db" } }, { "key": "1506", "attributes": { "cluster": 0, "x": -69.61794484645874, "y": -13.110515268801883, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1507", "attributes": { "cluster": 2, "x": -20.92195618276649, "y": 60.78396008476267, "size": 1, "color": "#4b94db" } }, { "key": "1508", "attributes": { "cluster": 2, "x": 19.078043817233507, "y": 57.31985846962491, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1509", "attributes": { "cluster": 0, "x": -53.61794484645874, "y": -58.143836265592675, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1510", "attributes": { "cluster": 2, "x": -18.921956182766486, "y": 85.03267139072696, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1511", "attributes": { "cluster": 1, "x": 73.67507866692199, "y": -54.679734650454925, "size": 0, "color": "#762e2e" } }, { "key": "1512", "attributes": { "cluster": 1, "x": 75.675078666922, "y": -16.574616883939637, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1513", "attributes": { "cluster": 0, "x": -53.61794484645873, "y": -13.11051526880188, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "1514", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -58.14383626559268, "size": 1, "color": "#e36d0" } }, { "key": "1515", "attributes": { "cluster": 2, "x": -18.921956182766497, "y": 57.31985846962492, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1516", "attributes": { "cluster": 0, "x": -38.61794484645874, "y": -28.698972536921776, "size": 1, "color": "#e36d0" } }, { "key": "1517", "attributes": { "cluster": 1, "x": 47.675078666921976, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1518", "attributes": { "cluster": 2, "x": 19.078043817233517, "y": 85.03267139072695, "size": 1, "color": "#4b94db" } }, { "key": "1519", "attributes": { "cluster": 0, "x": -84.61794484645874, "y": -42.555378997472786, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1520", "attributes": { "cluster": 2, "x": -21.92195618276649, "y": 62.51601089233155, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1521", "attributes": { "cluster": 2, "x": 22.07804381723351, "y": 79.83651896802031, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1522", "attributes": { "cluster": 1, "x": 75.67507866692199, "y": -54.67973465045493, "size": 0, "color": "#762e2e" } }, { "key": "1523", "attributes": { "cluster": 0, "x": -38.61794484645874, "y": -42.55537899747279, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1524", "attributes": { "cluster": 1, "x": 47.67507866692198, "y": -16.57461688393963, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1525", "attributes": { "cluster": 1, "x": 43.67507866692199, "y": -20.038718499077383, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1526", "attributes": { "cluster": 2, "x": 12.07804381723352, "y": 90.22882381343358, "size": 1, "color": "#4b94db" } }, { "key": "1527", "attributes": { "cluster": 2, "x": -21.921956182766483, "y": 79.83651896802033, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1528", "attributes": { "cluster": 1, "x": 43.67507866692198, "y": -51.21563303531717, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1529", "attributes": { "cluster": 2, "x": -11.921956182766502, "y": 52.12370604691829, "size": 2, "color": "#4b94db" } }, { "key": "1530", "attributes": { "cluster": 2, "x": 22.078043817233503, "y": 62.516010892331536, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1531", "attributes": { "cluster": 1, "x": 79.67507866692199, "y": -51.215633035317175, "size": 1, "color": "#762e2e" } }, { "key": "1532", "attributes": { "cluster": 2, "x": -11.921956182766499, "y": 90.22882381343358, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1533", "attributes": { "cluster": 2, "x": 12.078043817233516, "y": 52.12370604691829, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1534", "attributes": { "cluster": 0, "x": -84.61794484645874, "y": -28.698972536921765, "size": 1, "color": "#e36d0" } }, { "key": "1535", "attributes": { "cluster": 2, "x": 14.07804381723352, "y": 90.22882381343358, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1536", "attributes": { "cluster": 2, "x": -13.921956182766502, "y": 52.12370604691829, "size": 0, "color": "#4b94db" } }, { "key": "1537", "attributes": { "cluster": 0, "x": -84.61794484645874, "y": -35.62717576719727, "size": 2, "color": "#e36d0" } }, { "key": "1538", "attributes": { "cluster": 2, "x": 14.078043817233516, "y": 52.12370604691829, "size": 1, "color": "#4b94db" } }, { "key": "1539", "attributes": { "cluster": 1, "x": 79.67507866692199, "y": -20.03871849907739, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1540", "attributes": { "cluster": 2, "x": -13.921956182766499, "y": 90.22882381343358, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1541", "attributes": { "cluster": 2, "x": -17.921956182766493, "y": 86.76472219829583, "size": 1, "color": "#4b94db" } }, { "key": "1542", "attributes": { "cluster": 2, "x": -17.921956182766497, "y": 55.58780766205604, "size": 2, "color": "#4b94db" } }, { "key": "1543", "attributes": { "cluster": 0, "x": -85.61794484645874, "y": -37.359226574766154, "size": 1, "color": "#e36d0" } }, { "key": "1544", "attributes": { "cluster": 2, "x": 18.078043817233514, "y": 55.587807662056036, "size": 1, "color": "#4b94db" } }, { "key": "1545", "attributes": { "cluster": 0, "x": -38.61794484645874, "y": -35.627175767197286, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1546", "attributes": { "cluster": 2, "x": 18.078043817233517, "y": 86.76472219829581, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1547", "attributes": { "cluster": 2, "x": -7.92195618276649, "y": 93.69292542857133, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1548", "attributes": { "cluster": 0, "x": -37.61794484645874, "y": -33.895124959628404, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1549", "attributes": { "cluster": 2, "x": 8.078043817233509, "y": 48.65960443178054, "size": 0, "color": "#4b94db" } }, { "key": "1550", "attributes": { "cluster": 2, "x": 8.07804381723352, "y": 93.69292542857133, "size": 1, "color": "#4b94db" } }, { "key": "1551", "attributes": { "cluster": 0, "x": -44.61794484645873, "y": -18.306667691508515, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1552", "attributes": { "cluster": 2, "x": -7.921956182766501, "y": 48.65960443178054, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1553", "attributes": { "cluster": 0, "x": -78.61794484645876, "y": -52.94768384288604, "size": 1, "color": "#e36d0" } }, { "key": "1554", "attributes": { "cluster": 1, "x": 53.67507866692199, "y": -13.110515268801883, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1555", "attributes": { "cluster": 0, "x": -44.617944846458734, "y": -52.94768384288605, "size": 2, "color": "#e36d0" } }, { "key": "1556", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -58.143836265592675, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1557", "attributes": { "cluster": 0, "x": -78.61794484645876, "y": -18.30666769150851, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1558", "attributes": { "cluster": 0, "x": -62.617944846458755, "y": -59.87588707316156, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1559", "attributes": { "cluster": 1, "x": 69.675078666922, "y": -13.11051526880188, "size": 1, "color": "#762e2e" } }, { "key": "1560", "attributes": { "cluster": 2, "x": 23.07804381723351, "y": 78.10446816045143, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1561", "attributes": { "cluster": 1, "x": 53.675078666921976, "y": -58.14383626559268, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1562", "attributes": { "cluster": 0, "x": -60.61794484645873, "y": -11.378464461233001, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1563", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": -28.698972536921776, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1564", "attributes": { "cluster": 2, "x": -22.92195618276649, "y": 64.24806169990043, "size": 2, "color": "#4b94db" } }, { "key": "1565", "attributes": { "cluster": 0, "x": -62.61794484645873, "y": -11.378464461232998, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1566", "attributes": { "cluster": 0, "x": -60.617944846458755, "y": -59.875887073161564, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1567", "attributes": { "cluster": 2, "x": 23.07804381723351, "y": 64.24806169990042, "size": 1, "color": "#4b94db" } }, { "key": "1568", "attributes": { "cluster": 2, "x": -22.92195618276649, "y": 78.10446816045145, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1569", "attributes": { "cluster": 0, "x": -58.61794484645873, "y": -11.378464461232998, "size": 1, "color": "#e36d0" } }, { "key": "1570", "attributes": { "cluster": 0, "x": -64.61794484645876, "y": -59.875887073161564, "size": 2, "color": "#e36d0" } }, { "key": "1571", "attributes": { "cluster": 2, "x": -22.92195618276649, "y": 71.17626493017593, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "1572", "attributes": { "cluster": 1, "x": 38.67507866692199, "y": -42.555378997472786, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1573", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": -42.55537899747279, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1574", "attributes": { "cluster": 1, "x": 38.67507866692199, "y": -28.698972536921765, "size": 1, "color": "#762e2e" } }, { "key": "1575", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -59.875887073161564, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1576", "attributes": { "cluster": 2, "x": -23.92195618276649, "y": 69.44421412260706, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1577", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -11.378464461232998, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1578", "attributes": { "cluster": 2, "x": 23.07804381723351, "y": 71.17626493017593, "size": 1, "color": "#4b94db" } }, { "key": "1579", "attributes": { "cluster": 2, "x": 24.07804381723351, "y": 72.9083157377448, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1580", "attributes": { "cluster": 2, "x": 17.07804381723352, "y": 88.4967730058647, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1581", "attributes": { "cluster": 0, "x": -85.61794484645874, "y": -40.823328189903904, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1582", "attributes": { "cluster": 1, "x": 38.67507866692199, "y": -35.62717576719727, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1583", "attributes": { "cluster": 1, "x": 37.67507866692199, "y": -37.359226574766154, "size": 3, "color": "#762e2e" } }, { "key": "1584", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": -35.627175767197286, "size": 0, "color": "#762e2e" } }, { "key": "1585", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -33.895124959628404, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1586", "attributes": { "cluster": 0, "x": -37.61794484645874, "y": -30.43102334449065, "size": 2, "color": "#e36d0" } }, { "key": "1587", "attributes": { "cluster": 1, "x": 78.675078666922, "y": -18.306667691508515, "size": 1, "color": "#762e2e" } }, { "key": "1588", "attributes": { "cluster": 0, "x": -85.61794484645874, "y": -30.431023344490644, "size": 1, "color": "#e36d0" } }, { "key": "1589", "attributes": { "cluster": 1, "x": 44.675078666921976, "y": -52.94768384288604, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1590", "attributes": { "cluster": 1, "x": 78.67507866692199, "y": -52.94768384288605, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1591", "attributes": { "cluster": 0, "x": -37.61794484645874, "y": -40.82332818990392, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1592", "attributes": { "cluster": 2, "x": -16.9219561827665, "y": 53.85575685448717, "size": 1, "color": "#4b94db" } }, { "key": "1593", "attributes": { "cluster": 0, "x": -50.61794484645873, "y": -14.842566076370758, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1594", "attributes": { "cluster": 1, "x": 44.67507866692198, "y": -18.30666769150851, "size": 1, "color": "#762e2e" } }, { "key": "1595", "attributes": { "cluster": 1, "x": 60.675078666921976, "y": -59.87588707316156, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1596", "attributes": { "cluster": 2, "x": 17.078043817233517, "y": 53.85575685448716, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1597", "attributes": { "cluster": 1, "x": 62.675078666922005, "y": -11.378464461233001, "size": 0, "color": "#762e2e" } }, { "key": "1598", "attributes": { "cluster": 2, "x": -16.921956182766497, "y": 88.4967730058647, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1599", "attributes": { "cluster": 2, "x": -0.9219561827665039, "y": 46.927553624211654, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1600", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -56.4117854580238, "size": 1, "color": "#e36d0" } }, { "key": "1601", "attributes": { "cluster": 0, "x": -50.61794484645873, "y": -56.4117854580238, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1602", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -14.842566076370755, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1603", "attributes": { "cluster": 2, "x": 1.0780438172335227, "y": 95.42497623614021, "size": 1, "color": "#4b94db" } }, { "key": "1604", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -58.14383626559268, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1605", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": -13.11051526880188, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1606", "attributes": { "cluster": 2, "x": -0.9219561827664746, "y": 95.42497623614021, "size": 2, "color": "#4b94db" } }, { "key": "1607", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -13.11051526880188, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1608", "attributes": { "cluster": 1, "x": 60.675078666922005, "y": -11.378464461232998, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1609", "attributes": { "cluster": 0, "x": -51.617944846458734, "y": -58.14383626559268, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1610", "attributes": { "cluster": 2, "x": 1.0780438172334932, "y": 46.927553624211654, "size": 1, "color": "#4b94db" } }, { "key": "1611", "attributes": { "cluster": 1, "x": 62.675078666921976, "y": -59.875887073161564, "size": 2, "color": "#762e2e" } }, { "key": "1612", "attributes": { "cluster": 2, "x": 3.0780438172335227, "y": 95.42497623614021, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1613", "attributes": { "cluster": 1, "x": 64.675078666922, "y": -11.378464461232998, "size": 2, "color": "#762e2e" } }, { "key": "1614", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -11.378464461233001, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1615", "attributes": { "cluster": 1, "x": 58.675078666921976, "y": -59.875887073161564, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1616", "attributes": { "cluster": 2, "x": -2.921956182766504, "y": 46.927553624211654, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "1617", "attributes": { "cluster": 0, "x": -56.617944846458734, "y": -59.87588707316156, "size": 2, "color": "#e36d0" } }, { "key": "1618", "attributes": { "cluster": 2, "x": 3.0780438172335116, "y": 46.927553624211654, "size": 1, "color": "#4b94db" } }, { "key": "1619", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -59.875887073161564, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1620", "attributes": { "cluster": 2, "x": -2.921956182766493, "y": 95.42497623614021, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1621", "attributes": { "cluster": 2, "x": -23.92195618276649, "y": 65.9801125074693, "size": 1, "color": "#4b94db" } }, { "key": "1622", "attributes": { "cluster": 2, "x": 24.07804381723351, "y": 76.37241735288256, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1623", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -11.378464461232998, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1624", "attributes": { "cluster": 0, "x": -56.61794484645872, "y": -11.378464461233001, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1625", "attributes": { "cluster": 1, "x": 37.67507866692199, "y": -40.823328189903904, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "1626", "attributes": { "cluster": 0, "x": -66.61794484645876, "y": -59.87588707316156, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1627", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -30.43102334449065, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1628", "attributes": { "cluster": 0, "x": -45.61794484645873, "y": -16.574616883939637, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1629", "attributes": { "cluster": 1, "x": 37.67507866692199, "y": -30.431023344490644, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1630", "attributes": { "cluster": 0, "x": -77.61794484645876, "y": -54.67973465045492, "size": 1, "color": "#e36d0" } }, { "key": "1631", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -40.82332818990392, "size": 1, "color": "#762e2e" } }, { "key": "1632", "attributes": { "cluster": 2, "x": -23.92195618276649, "y": 76.37241735288256, "size": 1, "color": "#4b94db" } }, { "key": "1633", "attributes": { "cluster": 0, "x": -45.617944846458734, "y": -54.679734650454925, "size": 1, "color": "#e36d0" } }, { "key": "1634", "attributes": { "cluster": 2, "x": 24.07804381723351, "y": 65.9801125074693, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1635", "attributes": { "cluster": 2, "x": 11.07804381723352, "y": 91.96087462100246, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1636", "attributes": { "cluster": 0, "x": -77.61794484645876, "y": -16.574616883939633, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1637", "attributes": { "cluster": 2, "x": -10.921956182766502, "y": 50.39165523934941, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "1638", "attributes": { "cluster": 2, "x": 11.07804381723352, "y": 50.391655239349404, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1639", "attributes": { "cluster": 2, "x": -10.921956182766502, "y": 91.96087462100246, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1640", "attributes": { "cluster": 1, "x": 72.675078666922, "y": -14.842566076370758, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1641", "attributes": { "cluster": 2, "x": -9.921956182766504, "y": 48.65960443178054, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1642", "attributes": { "cluster": 0, "x": -83.61794484645873, "y": -23.502820114215126, "size": 2, "color": "#e36d0" } }, { "key": "1643", "attributes": { "cluster": 2, "x": 10.078043817233521, "y": 93.69292542857133, "size": 1, "color": "#4b94db" } }, { "key": "1644", "attributes": { "cluster": 1, "x": 50.675078666921976, "y": -56.4117854580238, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1645", "attributes": { "cluster": 1, "x": 72.675078666922, "y": -56.4117854580238, "size": 2, "color": "#762e2e" } }, { "key": "1646", "attributes": { "cluster": 2, "x": -9.921956182766499, "y": 93.69292542857133, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1647", "attributes": { "cluster": 1, "x": 50.675078666921976, "y": -14.842566076370755, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "1648", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": -58.14383626559268, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1649", "attributes": { "cluster": 1, "x": 71.675078666922, "y": -13.11051526880188, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1650", "attributes": { "cluster": 2, "x": 10.078043817233516, "y": 48.65960443178054, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1651", "attributes": { "cluster": 1, "x": 51.67507866692198, "y": -13.11051526880188, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1652", "attributes": { "cluster": 2, "x": -4.921956182766497, "y": 95.42497623614021, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "1653", "attributes": { "cluster": 2, "x": 5.078043817233516, "y": 46.927553624211654, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1654", "attributes": { "cluster": 2, "x": 5.078043817233528, "y": 95.42497623614021, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1655", "attributes": { "cluster": 2, "x": -4.921956182766509, "y": 46.927553624211654, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "1656", "attributes": { "cluster": 0, "x": -39.61794484645875, "y": -47.75153142017943, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "1657", "attributes": { "cluster": 2, "x": 16.07804381723352, "y": 90.22882381343358, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1658", "attributes": { "cluster": 1, "x": 71.67507866692199, "y": -58.14383626559268, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1659", "attributes": { "cluster": 1, "x": 56.67507866692198, "y": -11.378464461233001, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1660", "attributes": { "cluster": 0, "x": -39.617944846458734, "y": -23.502820114215147, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1661", "attributes": { "cluster": 0, "x": -83.61794484645876, "y": -47.75153142017941, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1662", "attributes": { "cluster": 2, "x": -15.921956182766502, "y": 52.12370604691829, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1663", "attributes": { "cluster": 2, "x": 16.078043817233517, "y": 52.12370604691829, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1664", "attributes": { "cluster": 2, "x": -15.921956182766499, "y": 90.22882381343358, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "1665", "attributes": { "cluster": 2, "x": -21.921956182766483, "y": 83.30062058315808, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1666", "attributes": { "cluster": 0, "x": -37.61794484645874, "y": -37.35922657476616, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1667", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -59.87588707316156, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "1668", "attributes": { "cluster": 0, "x": -85.61794484645874, "y": -33.8951249596284, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1669", "attributes": { "cluster": 1, "x": 66.675078666922, "y": -11.378464461233001, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1670", "attributes": { "cluster": 1, "x": 56.67507866692197, "y": -59.87588707316156, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1671", "attributes": { "cluster": 0, "x": -40.61794484645875, "y": -49.4835822277483, "size": 1, "color": "#e36d0" } }, { "key": "1672", "attributes": { "cluster": 0, "x": -82.61794484645873, "y": -21.770769306646258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1673", "attributes": { "cluster": 1, "x": 77.675078666922, "y": -16.574616883939637, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1674", "attributes": { "cluster": 0, "x": -82.61794484645876, "y": -49.483582227748286, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1675", "attributes": { "cluster": 1, "x": 45.675078666921976, "y": -54.67973465045492, "size": 1, "color": "#762e2e" } }, { "key": "1676", "attributes": { "cluster": 1, "x": 77.67507866692199, "y": -54.679734650454925, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1677", "attributes": { "cluster": 1, "x": 45.67507866692198, "y": -16.574616883939633, "size": 2, "color": "#762e2e" } }, { "key": "1678", "attributes": { "cluster": 1, "x": 39.675078666922, "y": -23.502820114215126, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1679", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": -47.75153142017943, "size": 3, "color": "#762e2e" } }, { "key": "1680", "attributes": { "cluster": 0, "x": -40.617944846458734, "y": -21.770769306646272, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "1681", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": -23.502820114215147, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1682", "attributes": { "cluster": 2, "x": 22.078043817233503, "y": 59.05190927719378, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1683", "attributes": { "cluster": 1, "x": 39.67507866692198, "y": -47.75153142017941, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1684", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -37.35922657476616, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1685", "attributes": { "cluster": 2, "x": 22.078043817233517, "y": 83.30062058315806, "size": 1, "color": "#4b94db" } }, { "key": "1686", "attributes": { "cluster": 1, "x": 37.67507866692199, "y": -33.8951249596284, "size": 1, "color": "#762e2e" } }, { "key": "1687", "attributes": { "cluster": 2, "x": -21.921956182766497, "y": 59.0519092771938, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1688", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": -49.4835822277483, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1689", "attributes": { "cluster": 1, "x": 40.675078666922, "y": -21.770769306646258, "size": 2, "color": "#762e2e" } }, { "key": "1690", "attributes": { "cluster": 2, "x": 24.07804381723351, "y": 69.44421412260705, "size": 1, "color": "#4b94db" } }, { "key": "1691", "attributes": { "cluster": 2, "x": -23.92195618276649, "y": 72.90831573774481, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1692", "attributes": { "cluster": 1, "x": 40.67507866692198, "y": -49.483582227748286, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "1693", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": -21.770769306646272, "size": 3, "color": "#762e2e" } }, { "key": "1694", "attributes": { "cluster": 2, "x": 21.078043817233503, "y": 57.31985846962491, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1695", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -11.378464461233005, "size": 1, "color": "#e36d0" } }, { "key": "1696", "attributes": { "cluster": 0, "x": -54.61794484645874, "y": -59.87588707316155, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1697", "attributes": { "cluster": 1, "x": 54.67507866692199, "y": -11.378464461233005, "size": 1, "color": "#762e2e" } }, { "key": "1698", "attributes": { "cluster": 2, "x": -20.921956182766483, "y": 85.03267139072695, "size": 1, "color": "#4b94db" } }, { "key": "1699", "attributes": { "cluster": 2, "x": -20.921956182766497, "y": 57.319858469624926, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1700", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -59.87588707316155, "size": 1, "color": "#762e2e" } }, { "key": "1701", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": -46.01948061261055, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1702", "attributes": { "cluster": 2, "x": 21.078043817233517, "y": 85.03267139072693, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1703", "attributes": { "cluster": 1, "x": 68.675078666922, "y": -11.378464461233001, "size": 1, "color": "#762e2e" } }, { "key": "1704", "attributes": { "cluster": 1, "x": 38.675078666922, "y": -25.234870921784008, "size": 2, "color": "#762e2e" } }, { "key": "1705", "attributes": { "cluster": 2, "x": -6.921956182766491, "y": 95.42497623614021, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1706", "attributes": { "cluster": 0, "x": -38.61794484645875, "y": -46.01948061261055, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1707", "attributes": { "cluster": 0, "x": -54.61794484645873, "y": -11.378464461233001, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "1708", "attributes": { "cluster": 0, "x": -84.61794484645873, "y": -25.234870921784008, "size": 1, "color": "#e36d0" } }, { "key": "1709", "attributes": { "cluster": 1, "x": 54.675078666921976, "y": -59.87588707316156, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1710", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": -59.87588707316156, "size": 1, "color": "#e36d0" } }, { "key": "1711", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": -25.234870921784022, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1712", "attributes": { "cluster": 0, "x": -38.61794484645874, "y": -25.234870921784022, "size": 2, "color": "#e36d0" } }, { "key": "1713", "attributes": { "cluster": 2, "x": 7.078043817233509, "y": 46.927553624211654, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1714", "attributes": { "cluster": 1, "x": 38.67507866692199, "y": -46.019480612610536, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1715", "attributes": { "cluster": 2, "x": 23.078043817233503, "y": 60.78396008476266, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1716", "attributes": { "cluster": 0, "x": -84.61794484645874, "y": -46.019480612610536, "size": 1, "color": "#e36d0" } }, { "key": "1717", "attributes": { "cluster": 2, "x": 7.0780438172335245, "y": 95.42497623614021, "size": 1, "color": "#4b94db" } }, { "key": "1718", "attributes": { "cluster": 2, "x": -22.921956182766483, "y": 81.5685697755892, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1719", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -39.091277382335036, "size": 1, "color": "#762e2e" } }, { "key": "1720", "attributes": { "cluster": 0, "x": -36.61794484645874, "y": -39.091277382335036, "size": 1, "color": "#e36d0" } }, { "key": "1721", "attributes": { "cluster": 2, "x": -6.921956182766506, "y": 46.927553624211654, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1722", "attributes": { "cluster": 0, "x": -36.61794484645874, "y": -32.16307415205953, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1723", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -32.16307415205953, "size": 2, "color": "#762e2e" } }, { "key": "1724", "attributes": { "cluster": 2, "x": 23.07804381723351, "y": 81.5685697755892, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1725", "attributes": { "cluster": 2, "x": -22.92195618276649, "y": 60.783960084762676, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1726", "attributes": { "cluster": 0, "x": -86.61794484645874, "y": -32.16307415205952, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1727", "attributes": { "cluster": 1, "x": 36.67507866692199, "y": -32.16307415205952, "size": 3.6666666666666665, "color": "#762e2e" } }, { "key": "1728", "attributes": { "cluster": 2, "x": 25.07804381723351, "y": 67.71216331503817, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1729", "attributes": { "cluster": 1, "x": 36.67507866692199, "y": -39.09127738233503, "size": 2, "color": "#762e2e" } }, { "key": "1730", "attributes": { "cluster": 2, "x": 25.07804381723351, "y": 74.64036654531368, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1731", "attributes": { "cluster": 2, "x": -24.92195618276649, "y": 74.6403665453137, "size": 1, "color": "#4b94db" } }, { "key": "1732", "attributes": { "cluster": 1, "x": 41.67507866692198, "y": -51.21563303531717, "size": 1, "color": "#762e2e" } }, { "key": "1733", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": -51.215633035317175, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1734", "attributes": { "cluster": 0, "x": -86.61794484645874, "y": -39.09127738233503, "size": 1, "color": "#e36d0" } }, { "key": "1735", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": -20.03871849907739, "size": 2, "color": "#762e2e" } }, { "key": "1736", "attributes": { "cluster": 0, "x": -81.61794484645876, "y": -51.21563303531717, "size": 1, "color": "#e36d0" } }, { "key": "1737", "attributes": { "cluster": 1, "x": 41.67507866692199, "y": -20.038718499077383, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1738", "attributes": { "cluster": 0, "x": -41.61794484645874, "y": -51.215633035317175, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1739", "attributes": { "cluster": 2, "x": -24.92195618276649, "y": 67.71216331503818, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1740", "attributes": { "cluster": 0, "x": -41.617944846458734, "y": -20.03871849907739, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1741", "attributes": { "cluster": 0, "x": -81.61794484645874, "y": -20.038718499077383, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1742", "attributes": { "cluster": 2, "x": -19.921956182766497, "y": 55.58780766205604, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1743", "attributes": { "cluster": 1, "x": 37.675078666922, "y": -26.966921729352883, "size": 1, "color": "#762e2e" } }, { "key": "1744", "attributes": { "cluster": 0, "x": -85.61794484645873, "y": -26.966921729352883, "size": 0, "color": "#e36d0" } }, { "key": "1745", "attributes": { "cluster": 0, "x": -85.61794484645874, "y": -44.28742980504166, "size": 1, "color": "#e36d0" } }, { "key": "1746", "attributes": { "cluster": 1, "x": 37.67507866692199, "y": -44.28742980504166, "size": 1, "color": "#762e2e" } }, { "key": "1747", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -44.287429805041675, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1748", "attributes": { "cluster": 0, "x": -37.61794484645875, "y": -44.287429805041675, "size": 1, "color": "#e36d0" } }, { "key": "1749", "attributes": { "cluster": 2, "x": 20.078043817233514, "y": 55.587807662056036, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1750", "attributes": { "cluster": 0, "x": -37.61794484645874, "y": -26.966921729352897, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1751", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": -14.842566076370758, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1752", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -26.966921729352897, "size": 1, "color": "#762e2e" } }, { "key": "1753", "attributes": { "cluster": 1, "x": 74.675078666922, "y": -14.842566076370758, "size": 3, "color": "#762e2e" } }, { "key": "1754", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -56.4117854580238, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1755", "attributes": { "cluster": 2, "x": 20.078043817233517, "y": 86.76472219829581, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1756", "attributes": { "cluster": 1, "x": 74.675078666922, "y": -56.4117854580238, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1757", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -56.4117854580238, "size": 1, "color": "#e36d0" } }, { "key": "1758", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -14.842566076370755, "size": 1, "color": "#762e2e" } }, { "key": "1759", "attributes": { "cluster": 1, "x": 42.67507866692198, "y": -52.94768384288604, "size": 2, "color": "#762e2e" } }, { "key": "1760", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": -18.306667691508515, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1761", "attributes": { "cluster": 1, "x": 76.675078666922, "y": -14.842566076370758, "size": 2, "color": "#762e2e" } }, { "key": "1762", "attributes": { "cluster": 2, "x": -19.921956182766493, "y": 86.76472219829583, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1763", "attributes": { "cluster": 2, "x": -23.921956182766483, "y": 79.83651896802033, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1764", "attributes": { "cluster": 2, "x": -23.92195618276649, "y": 62.51601089233155, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1765", "attributes": { "cluster": 1, "x": 46.675078666921976, "y": -14.842566076370755, "size": 2, "color": "#762e2e" } }, { "key": "1766", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": -56.4117854580238, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1767", "attributes": { "cluster": 2, "x": 24.078043817233503, "y": 62.516010892331536, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1768", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -14.842566076370755, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1769", "attributes": { "cluster": 0, "x": -80.61794484645876, "y": -52.94768384288604, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1770", "attributes": { "cluster": 0, "x": -42.617944846458734, "y": -18.306667691508515, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1771", "attributes": { "cluster": 2, "x": 24.07804381723351, "y": 79.83651896802031, "size": 1, "color": "#4b94db" } }, { "key": "1772", "attributes": { "cluster": 0, "x": -46.61794484645873, "y": -14.842566076370758, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1773", "attributes": { "cluster": 1, "x": 46.675078666921976, "y": -56.4117854580238, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1774", "attributes": { "cluster": 2, "x": 13.07804381723352, "y": 91.96087462100246, "size": 1, "color": "#4b94db" } }, { "key": "1775", "attributes": { "cluster": 0, "x": -76.61794484645876, "y": -14.842566076370755, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1776", "attributes": { "cluster": 0, "x": -76.61794484645876, "y": -56.4117854580238, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1777", "attributes": { "cluster": 2, "x": -12.921956182766502, "y": 50.39165523934941, "size": 1, "color": "#4b94db" } }, { "key": "1778", "attributes": { "cluster": 0, "x": -46.61794484645873, "y": -56.4117854580238, "size": 2, "color": "#e36d0" } }, { "key": "1779", "attributes": { "cluster": 1, "x": 76.675078666922, "y": -56.4117854580238, "size": 1, "color": "#762e2e" } }, { "key": "1780", "attributes": { "cluster": 0, "x": -42.617944846458734, "y": -52.94768384288605, "size": 1, "color": "#e36d0" } }, { "key": "1781", "attributes": { "cluster": 0, "x": -80.61794484645876, "y": -18.30666769150851, "size": 1, "color": "#e36d0" } }, { "key": "1782", "attributes": { "cluster": 0, "x": -52.61794484645874, "y": -59.87588707316155, "size": 1, "color": "#e36d0" } }, { "key": "1783", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": -52.94768384288605, "size": 1, "color": "#762e2e" } }, { "key": "1784", "attributes": { "cluster": 1, "x": 42.67507866692198, "y": -18.30666769150851, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1785", "attributes": { "cluster": 0, "x": -70.61794484645874, "y": -11.378464461233008, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1786", "attributes": { "cluster": 2, "x": 13.07804381723352, "y": 50.391655239349404, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1787", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -59.87588707316156, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1788", "attributes": { "cluster": 0, "x": -52.61794484645873, "y": -11.378464461233001, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1789", "attributes": { "cluster": 2, "x": -12.921956182766502, "y": 91.96087462100246, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1790", "attributes": { "cluster": 0, "x": -86.61794484645874, "y": -28.698972536921765, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1791", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -59.87588707316155, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1792", "attributes": { "cluster": 2, "x": -18.921956182766497, "y": 53.85575685448717, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1793", "attributes": { "cluster": 2, "x": 19.078043817233517, "y": 88.4967730058647, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1794", "attributes": { "cluster": 1, "x": 52.67507866692199, "y": -11.378464461233008, "size": 1, "color": "#762e2e" } }, { "key": "1795", "attributes": { "cluster": 2, "x": 15.07804381723352, "y": 91.96087462100246, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1796", "attributes": { "cluster": 0, "x": -86.61794484645874, "y": -42.555378997472786, "size": 1, "color": "#e36d0" } }, { "key": "1797", "attributes": { "cluster": 1, "x": 52.675078666921976, "y": -59.87588707316156, "size": 1, "color": "#762e2e" } }, { "key": "1798", "attributes": { "cluster": 1, "x": 70.675078666922, "y": -11.378464461233001, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1799", "attributes": { "cluster": 0, "x": -36.61794484645874, "y": -42.55537899747279, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1800", "attributes": { "cluster": 2, "x": -14.921956182766502, "y": 91.96087462100246, "size": 0, "color": "#4b94db" } }, { "key": "1801", "attributes": { "cluster": 1, "x": 36.67507866692199, "y": -28.698972536921765, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1802", "attributes": { "cluster": 2, "x": -14.921956182766502, "y": 50.39165523934941, "size": 1, "color": "#4b94db" } }, { "key": "1803", "attributes": { "cluster": 1, "x": 36.67507866692199, "y": -42.555378997472786, "size": 1, "color": "#762e2e" } }, { "key": "1804", "attributes": { "cluster": 0, "x": -36.61794484645874, "y": -28.698972536921772, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1805", "attributes": { "cluster": 0, "x": -61.61794484645872, "y": -9.646413653664123, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1806", "attributes": { "cluster": 0, "x": -61.61794484645876, "y": -61.60793788073043, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1807", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -42.55537899747279, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1808", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -28.698972536921772, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1809", "attributes": { "cluster": 2, "x": 15.07804381723352, "y": 50.391655239349404, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1810", "attributes": { "cluster": 1, "x": 61.67507866692201, "y": -9.646413653664123, "size": 1, "color": "#762e2e" } }, { "key": "1811", "attributes": { "cluster": 0, "x": -59.617944846458734, "y": -9.646413653664123, "size": 1, "color": "#e36d0" } }, { "key": "1812", "attributes": { "cluster": 0, "x": -63.61794484645875, "y": -61.60793788073043, "size": 1, "color": "#e36d0" } }, { "key": "1813", "attributes": { "cluster": 1, "x": 61.67507866692197, "y": -61.60793788073043, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1814", "attributes": { "cluster": 0, "x": -59.61794484645875, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1815", "attributes": { "cluster": 2, "x": 19.078043817233517, "y": 53.85575685448716, "size": 2, "color": "#4b94db" } }, { "key": "1816", "attributes": { "cluster": 2, "x": -18.921956182766497, "y": 88.4967730058647, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1817", "attributes": { "cluster": 2, "x": 9.078043817233509, "y": 46.92755362421166, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1818", "attributes": { "cluster": 1, "x": 63.675078666922, "y": -9.646413653664123, "size": 2, "color": "#762e2e" } }, { "key": "1819", "attributes": { "cluster": 2, "x": -8.921956182766491, "y": 95.4249762361402, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1820", "attributes": { "cluster": 2, "x": -8.921956182766502, "y": 46.927553624211654, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1821", "attributes": { "cluster": 0, "x": -63.617944846458734, "y": -9.646413653664126, "size": 1, "color": "#e36d0" } }, { "key": "1822", "attributes": { "cluster": 0, "x": -86.61794484645874, "y": -35.62717576719727, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1823", "attributes": { "cluster": 0, "x": -87.61794484645874, "y": -37.359226574766154, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1824", "attributes": { "cluster": 2, "x": 9.07804381723352, "y": 95.42497623614021, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1825", "attributes": { "cluster": 2, "x": -24.92195618276649, "y": 78.10446816045145, "size": 1, "color": "#4b94db" } }, { "key": "1826", "attributes": { "cluster": 1, "x": 59.67507866692198, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1827", "attributes": { "cluster": 0, "x": -36.61794484645874, "y": -35.627175767197286, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1828", "attributes": { "cluster": 0, "x": -35.61794484645874, "y": -33.895124959628404, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1829", "attributes": { "cluster": 0, "x": -43.61794484645873, "y": -16.574616883939637, "size": 1, "color": "#e36d0" } }, { "key": "1830", "attributes": { "cluster": 2, "x": -24.92195618276649, "y": 64.24806169990043, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1831", "attributes": { "cluster": 2, "x": 25.07804381723351, "y": 64.24806169990042, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1832", "attributes": { "cluster": 1, "x": 63.67507866692198, "y": -61.60793788073043, "size": 2, "color": "#762e2e" } }, { "key": "1833", "attributes": { "cluster": 2, "x": 25.07804381723351, "y": 78.10446816045143, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1834", "attributes": { "cluster": 2, "x": 0.07804381723352719, "y": 97.15702704370909, "size": 2, "color": "#4b94db" } }, { "key": "1835", "attributes": { "cluster": 0, "x": -79.61794484645876, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1836", "attributes": { "cluster": 0, "x": -43.617944846458734, "y": -54.67973465045493, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1837", "attributes": { "cluster": 0, "x": -79.61794484645876, "y": -16.57461688393963, "size": 3, "color": "#e36d0" } }, { "key": "1838", "attributes": { "cluster": 1, "x": 59.675078666922, "y": -9.646413653664126, "size": 1, "color": "#762e2e" } }, { "key": "1839", "attributes": { "cluster": 0, "x": -57.617944846458734, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1840", "attributes": { "cluster": 0, "x": -65.61794484645876, "y": -9.646413653664126, "size": 1, "color": "#e36d0" } }, { "key": "1841", "attributes": { "cluster": 0, "x": -65.61794484645876, "y": -61.60793788073043, "size": 3, "color": "#e36d0" } }, { "key": "1842", "attributes": { "cluster": 0, "x": -57.61794484645872, "y": -9.646413653664126, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1843", "attributes": { "cluster": 1, "x": 36.67507866692199, "y": -35.62717576719727, "size": 2, "color": "#762e2e" } }, { "key": "1844", "attributes": { "cluster": 0, "x": -87.61794484645874, "y": -30.431023344490644, "size": 2, "color": "#e36d0" } }, { "key": "1845", "attributes": { "cluster": 0, "x": -87.61794484645874, "y": -40.823328189903904, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1846", "attributes": { "cluster": 2, "x": 0.07804381723349149, "y": 45.19550281664277, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1847", "attributes": { "cluster": 2, "x": 2.0780438172335196, "y": 97.15702704370909, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1848", "attributes": { "cluster": 2, "x": -1.9219561827665008, "y": 45.19550281664277, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1849", "attributes": { "cluster": 2, "x": 2.0780438172335023, "y": 45.19550281664278, "size": 2, "color": "#4b94db" } }, { "key": "1850", "attributes": { "cluster": 2, "x": -1.9219561827664837, "y": 97.15702704370909, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1851", "attributes": { "cluster": 2, "x": -24.92195618276649, "y": 71.17626493017593, "size": 1, "color": "#4b94db" } }, { "key": "1852", "attributes": { "cluster": 0, "x": -35.61794484645874, "y": -40.82332818990392, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1853", "attributes": { "cluster": 2, "x": -25.92195618276649, "y": 69.44421412260706, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1854", "attributes": { "cluster": 2, "x": 25.07804381723351, "y": 71.17626493017593, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1855", "attributes": { "cluster": 1, "x": 35.67507866692199, "y": -37.359226574766154, "size": 1, "color": "#762e2e" } }, { "key": "1856", "attributes": { "cluster": 0, "x": -35.61794484645874, "y": -30.431023344490654, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1857", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -35.627175767197286, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1858", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -33.895124959628404, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1859", "attributes": { "cluster": 1, "x": 79.675078666922, "y": -16.574616883939637, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1860", "attributes": { "cluster": 2, "x": 26.07804381723351, "y": 72.9083157377448, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1861", "attributes": { "cluster": 2, "x": 18.07804381723352, "y": 90.22882381343358, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1862", "attributes": { "cluster": 2, "x": -17.9219561827665, "y": 52.12370604691829, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1863", "attributes": { "cluster": 0, "x": -49.61794484645873, "y": -13.11051526880188, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1864", "attributes": { "cluster": 1, "x": 43.675078666921976, "y": -54.67973465045492, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1865", "attributes": { "cluster": 1, "x": 79.67507866692199, "y": -54.67973465045493, "size": 2, "color": "#762e2e" } }, { "key": "1866", "attributes": { "cluster": 1, "x": 43.67507866692198, "y": -16.57461688393963, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1867", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -61.60793788073043, "size": 3, "color": "#762e2e" } }, { "key": "1868", "attributes": { "cluster": 1, "x": 57.67507866692198, "y": -9.646413653664126, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1869", "attributes": { "cluster": 2, "x": 18.078043817233517, "y": 52.12370604691829, "size": 1, "color": "#4b94db" } }, { "key": "1870", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -58.14383626559268, "size": 2, "color": "#e36d0" } }, { "key": "1871", "attributes": { "cluster": 1, "x": 57.67507866692197, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1872", "attributes": { "cluster": 0, "x": -49.61794484645873, "y": -58.14383626559268, "size": 1, "color": "#e36d0" } }, { "key": "1873", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -13.110515268801876, "size": 1, "color": "#e36d0" } }, { "key": "1874", "attributes": { "cluster": 1, "x": 65.675078666922, "y": -9.646413653664126, "size": 2, "color": "#762e2e" } }, { "key": "1875", "attributes": { "cluster": 2, "x": -17.921956182766497, "y": 90.22882381343358, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1876", "attributes": { "cluster": 2, "x": 4.0780438172335165, "y": 45.19550281664278, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "1877", "attributes": { "cluster": 2, "x": -3.9219561827664977, "y": 97.15702704370909, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1878", "attributes": { "cluster": 2, "x": -3.9219561827665093, "y": 45.19550281664278, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1879", "attributes": { "cluster": 2, "x": 4.078043817233528, "y": 97.15702704370909, "size": 1, "color": "#4b94db" } }, { "key": "1880", "attributes": { "cluster": 1, "x": 35.67507866692199, "y": -30.431023344490644, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1881", "attributes": { "cluster": 2, "x": -25.92195618276649, "y": 76.37241735288256, "size": 1, "color": "#4b94db" } }, { "key": "1882", "attributes": { "cluster": 1, "x": 35.67507866692199, "y": -40.823328189903904, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1883", "attributes": { "cluster": 0, "x": -55.617944846458734, "y": -61.60793788073043, "size": 1, "color": "#e36d0" } }, { "key": "1884", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -40.82332818990392, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1885", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -9.646413653664123, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1886", "attributes": { "cluster": 0, "x": -67.61794484645876, "y": -61.60793788073043, "size": 1, "color": "#e36d0" } }, { "key": "1887", "attributes": { "cluster": 0, "x": -55.61794484645873, "y": -9.646413653664123, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1888", "attributes": { "cluster": 2, "x": -25.92195618276649, "y": 65.9801125074693, "size": 2, "color": "#4b94db" } }, { "key": "1889", "attributes": { "cluster": 2, "x": 26.07804381723351, "y": 65.9801125074693, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1890", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -30.431023344490654, "size": 1, "color": "#762e2e" } }, { "key": "1891", "attributes": { "cluster": 1, "x": 73.675078666922, "y": -13.11051526880188, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1892", "attributes": { "cluster": 0, "x": -72.61794484645874, "y": -11.378464461233001, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1893", "attributes": { "cluster": 1, "x": 49.675078666921976, "y": -58.14383626559268, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1894", "attributes": { "cluster": 2, "x": 26.07804381723351, "y": 76.37241735288256, "size": 1, "color": "#4b94db" } }, { "key": "1895", "attributes": { "cluster": 1, "x": 73.675078666922, "y": -58.14383626559268, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1896", "attributes": { "cluster": 2, "x": 12.07804381723352, "y": 93.69292542857133, "size": 2, "color": "#4b94db" } }, { "key": "1897", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -59.87588707316156, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1898", "attributes": { "cluster": 2, "x": -11.921956182766502, "y": 48.65960443178054, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1899", "attributes": { "cluster": 0, "x": -50.617944846458734, "y": -59.87588707316156, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1900", "attributes": { "cluster": 0, "x": -50.61794484645873, "y": -11.378464461233001, "size": 1, "color": "#e36d0" } }, { "key": "1901", "attributes": { "cluster": 0, "x": -84.61794484645873, "y": -21.77076930664625, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1902", "attributes": { "cluster": 2, "x": 12.07804381723352, "y": 48.65960443178053, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1903", "attributes": { "cluster": 0, "x": -38.61794484645875, "y": -49.48358222774831, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1904", "attributes": { "cluster": 1, "x": 49.675078666921976, "y": -13.110515268801876, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1905", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -61.60793788073043, "size": 2, "color": "#762e2e" } }, { "key": "1906", "attributes": { "cluster": 2, "x": -11.921956182766502, "y": 93.69292542857133, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1907", "attributes": { "cluster": 0, "x": -38.617944846458734, "y": -21.77076930664627, "size": 1, "color": "#e36d0" } }, { "key": "1908", "attributes": { "cluster": 2, "x": 6.078043817233516, "y": 45.19550281664277, "size": 1, "color": "#4b94db" } }, { "key": "1909", "attributes": { "cluster": 2, "x": -5.921956182766497, "y": 97.15702704370909, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1910", "attributes": { "cluster": 0, "x": -44.61794484645873, "y": -14.842566076370758, "size": 2, "color": "#e36d0" } }, { "key": "1911", "attributes": { "cluster": 2, "x": -5.9219561827665075, "y": 45.19550281664277, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1912", "attributes": { "cluster": 1, "x": 55.67507866692198, "y": -9.646413653664123, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1913", "attributes": { "cluster": 0, "x": -78.61794484645876, "y": -14.842566076370755, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1914", "attributes": { "cluster": 0, "x": -84.61794484645876, "y": -49.483582227748286, "size": 1, "color": "#e36d0" } }, { "key": "1915", "attributes": { "cluster": 2, "x": 6.078043817233526, "y": 97.15702704370909, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1916", "attributes": { "cluster": 0, "x": -78.61794484645876, "y": -56.4117854580238, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1917", "attributes": { "cluster": 1, "x": 55.675078666921976, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1918", "attributes": { "cluster": 0, "x": -44.61794484645873, "y": -56.4117854580238, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1919", "attributes": { "cluster": 1, "x": 67.675078666922, "y": -9.646413653664123, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1920", "attributes": { "cluster": 0, "x": -37.61794484645875, "y": -47.75153142017943, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "1921", "attributes": { "cluster": 1, "x": 50.67507866692198, "y": -11.378464461233001, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1922", "attributes": { "cluster": 1, "x": 50.675078666921976, "y": -59.87588707316156, "size": 2, "color": "#762e2e" } }, { "key": "1923", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -59.87588707316156, "size": 2, "color": "#762e2e" } }, { "key": "1924", "attributes": { "cluster": 0, "x": -85.61794484645873, "y": -23.50282011421513, "size": 1, "color": "#e36d0" } }, { "key": "1925", "attributes": { "cluster": 1, "x": 72.675078666922, "y": -11.378464461233001, "size": 2, "color": "#762e2e" } }, { "key": "1926", "attributes": { "cluster": 1, "x": 38.675078666922, "y": -21.77076930664625, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1927", "attributes": { "cluster": 0, "x": -85.61794484645876, "y": -47.75153142017941, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1928", "attributes": { "cluster": 2, "x": -10.921956182766497, "y": 95.42497623614021, "size": 2, "color": "#4b94db" } }, { "key": "1929", "attributes": { "cluster": 2, "x": -10.921956182766502, "y": 46.927553624211654, "size": 1, "color": "#4b94db" } }, { "key": "1930", "attributes": { "cluster": 0, "x": -37.617944846458734, "y": -23.502820114215147, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "1931", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": -49.48358222774831, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1932", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": -21.77076930664627, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "1933", "attributes": { "cluster": 2, "x": 11.078043817233514, "y": 46.927553624211654, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1934", "attributes": { "cluster": 0, "x": -83.61794484645874, "y": -20.03871849907739, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1935", "attributes": { "cluster": 0, "x": -39.61794484645874, "y": -51.21563303531717, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1936", "attributes": { "cluster": 0, "x": -39.617944846458734, "y": -20.038718499077397, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1937", "attributes": { "cluster": 1, "x": 78.675078666922, "y": -14.842566076370758, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "1938", "attributes": { "cluster": 2, "x": 11.07804381723352, "y": 95.42497623614021, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1939", "attributes": { "cluster": 0, "x": -83.61794484645876, "y": -51.21563303531716, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1940", "attributes": { "cluster": 0, "x": -36.61794484645875, "y": -46.01948061261055, "size": 1, "color": "#e36d0" } }, { "key": "1941", "attributes": { "cluster": 1, "x": 44.675078666921976, "y": -14.842566076370755, "size": 1, "color": "#762e2e" } }, { "key": "1942", "attributes": { "cluster": 0, "x": -86.61794484645873, "y": -25.234870921784008, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1943", "attributes": { "cluster": 1, "x": 38.67507866692198, "y": -49.483582227748286, "size": 1, "color": "#762e2e" } }, { "key": "1944", "attributes": { "cluster": 1, "x": 44.675078666921976, "y": -56.4117854580238, "size": 1, "color": "#762e2e" } }, { "key": "1945", "attributes": { "cluster": 0, "x": -86.61794484645874, "y": -46.019480612610536, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1946", "attributes": { "cluster": 0, "x": -36.61794484645874, "y": -25.234870921784022, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1947", "attributes": { "cluster": 2, "x": -22.921956182766483, "y": 85.03267139072696, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1948", "attributes": { "cluster": 1, "x": 78.675078666922, "y": -56.4117854580238, "size": 3, "color": "#762e2e" } }, { "key": "1949", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -47.75153142017943, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1950", "attributes": { "cluster": 1, "x": 37.675078666922, "y": -23.50282011421513, "size": 1, "color": "#762e2e" } }, { "key": "1951", "attributes": { "cluster": 0, "x": -87.61794484645874, "y": -33.8951249596284, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1952", "attributes": { "cluster": 0, "x": -35.61794484645874, "y": -37.35922657476616, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1953", "attributes": { "cluster": 0, "x": -69.61794484645874, "y": -9.64641365366413, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1954", "attributes": { "cluster": 0, "x": -53.61794484645874, "y": -61.60793788073043, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1955", "attributes": { "cluster": 1, "x": 37.67507866692198, "y": -47.75153142017941, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1956", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -23.502820114215147, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1957", "attributes": { "cluster": 2, "x": 23.078043817233503, "y": 57.319858469624904, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1958", "attributes": { "cluster": 2, "x": 23.078043817233517, "y": 85.03267139072695, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1959", "attributes": { "cluster": 2, "x": 17.07804381723352, "y": 91.96087462100246, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "1960", "attributes": { "cluster": 1, "x": 39.67507866692199, "y": -20.03871849907739, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "1961", "attributes": { "cluster": 0, "x": -53.61794484645873, "y": -9.646413653664123, "size": 2, "color": "#e36d0" } }, { "key": "1962", "attributes": { "cluster": 2, "x": -16.9219561827665, "y": 91.96087462100246, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1963", "attributes": { "cluster": 2, "x": -22.921956182766497, "y": 57.31985846962492, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "1964", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -61.60793788073043, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1965", "attributes": { "cluster": 2, "x": -16.9219561827665, "y": 50.39165523934941, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1966", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": -51.21563303531717, "size": 1, "color": "#762e2e" } }, { "key": "1967", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": -20.038718499077397, "size": 2, "color": "#762e2e" } }, { "key": "1968", "attributes": { "cluster": 1, "x": 39.67507866692198, "y": -51.21563303531716, "size": 1, "color": "#762e2e" } }, { "key": "1969", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -46.01948061261055, "size": 2, "color": "#762e2e" } }, { "key": "1970", "attributes": { "cluster": 1, "x": 36.675078666922, "y": -25.234870921784008, "size": 1, "color": "#762e2e" } }, { "key": "1971", "attributes": { "cluster": 2, "x": 17.07804381723352, "y": 50.391655239349404, "size": 1, "color": "#4b94db" } }, { "key": "1972", "attributes": { "cluster": 1, "x": 36.67507866692199, "y": -46.019480612610536, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1973", "attributes": { "cluster": 2, "x": 24.078043817233503, "y": 59.051909277193786, "size": 2, "color": "#4b94db" } }, { "key": "1974", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -25.234870921784022, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "1975", "attributes": { "cluster": 2, "x": -23.921956182766483, "y": 83.30062058315808, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "1976", "attributes": { "cluster": 2, "x": -23.921956182766497, "y": 59.0519092771938, "size": 1, "color": "#4b94db" } }, { "key": "1977", "attributes": { "cluster": 2, "x": 24.078043817233517, "y": 83.30062058315806, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1978", "attributes": { "cluster": 0, "x": -40.617944846458734, "y": -18.306667691508515, "size": 1, "color": "#e36d0" } }, { "key": "1979", "attributes": { "cluster": 2, "x": -21.921956182766493, "y": 86.76472219829583, "size": 1, "color": "#4b94db" } }, { "key": "1980", "attributes": { "cluster": 0, "x": -82.61794484645876, "y": -52.94768384288604, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "1981", "attributes": { "cluster": 0, "x": -40.617944846458734, "y": -52.94768384288605, "size": 1, "color": "#e36d0" } }, { "key": "1982", "attributes": { "cluster": 1, "x": 35.67507866692199, "y": -33.8951249596284, "size": 2, "color": "#762e2e" } }, { "key": "1983", "attributes": { "cluster": 2, "x": 22.078043817233514, "y": 55.58780766205604, "size": 1, "color": "#4b94db" } }, { "key": "1984", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -37.35922657476616, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "1985", "attributes": { "cluster": 1, "x": 53.67507866692199, "y": -9.64641365366413, "size": 1, "color": "#762e2e" } }, { "key": "1986", "attributes": { "cluster": 2, "x": 22.078043817233517, "y": 86.76472219829581, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1987", "attributes": { "cluster": 0, "x": -82.61794484645876, "y": -18.30666769150851, "size": 2, "color": "#e36d0" } }, { "key": "1988", "attributes": { "cluster": 0, "x": -88.61794484645874, "y": -32.16307415205952, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "1989", "attributes": { "cluster": 0, "x": -88.61794484645874, "y": -39.09127738233503, "size": 1, "color": "#e36d0" } }, { "key": "1990", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "1991", "attributes": { "cluster": 1, "x": 69.675078666922, "y": -9.646413653664123, "size": 1, "color": "#762e2e" } }, { "key": "1992", "attributes": { "cluster": 2, "x": -21.921956182766497, "y": 55.58780766205605, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "1993", "attributes": { "cluster": 2, "x": 25.078043817233503, "y": 60.78396008476266, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1994", "attributes": { "cluster": 0, "x": -34.61794484645874, "y": -39.091277382335036, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "1995", "attributes": { "cluster": 0, "x": -34.61794484645874, "y": -32.16307415205953, "size": 2, "color": "#e36d0" } }, { "key": "1996", "attributes": { "cluster": 2, "x": -24.921956182766483, "y": 81.56856977558921, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "1997", "attributes": { "cluster": 0, "x": -35.61794484645874, "y": -26.966921729352897, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "1998", "attributes": { "cluster": 2, "x": -24.92195618276649, "y": 60.783960084762676, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "1999", "attributes": { "cluster": 1, "x": 53.675078666921976, "y": -61.60793788073043, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2000", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": -18.306667691508515, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2001", "attributes": { "cluster": 1, "x": 40.67507866692198, "y": -52.94768384288604, "size": 2, "color": "#762e2e" } }, { "key": "2002", "attributes": { "cluster": 2, "x": 25.07804381723351, "y": 81.5685697755892, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2003", "attributes": { "cluster": 0, "x": -87.61794484645874, "y": -44.28742980504166, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2004", "attributes": { "cluster": 0, "x": -35.61794484645875, "y": -44.287429805041675, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2005", "attributes": { "cluster": 0, "x": -87.61794484645873, "y": -26.966921729352883, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2006", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": -52.94768384288605, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2007", "attributes": { "cluster": 1, "x": 40.67507866692198, "y": -18.30666769150851, "size": 1, "color": "#762e2e" } }, { "key": "2008", "attributes": { "cluster": 2, "x": -25.92195618276649, "y": 72.90831573774481, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2009", "attributes": { "cluster": 2, "x": 26.07804381723351, "y": 69.44421412260705, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2010", "attributes": { "cluster": 2, "x": -7.921956182766494, "y": 97.15702704370908, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2011", "attributes": { "cluster": 0, "x": -81.61794484645876, "y": -54.67973465045492, "size": 3, "color": "#e36d0" } }, { "key": "2012", "attributes": { "cluster": 2, "x": 8.078043817233512, "y": 45.19550281664279, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2013", "attributes": { "cluster": 0, "x": -41.617944846458734, "y": -16.574616883939637, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2014", "attributes": { "cluster": 0, "x": -81.61794484645876, "y": -16.574616883939633, "size": 1, "color": "#e36d0" } }, { "key": "2015", "attributes": { "cluster": 1, "x": 34.67507866692199, "y": -32.16307415205952, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2016", "attributes": { "cluster": 2, "x": 8.078043817233521, "y": 97.15702704370909, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2017", "attributes": { "cluster": 2, "x": -7.921956182766503, "y": 45.19550281664277, "size": 1, "color": "#4b94db" } }, { "key": "2018", "attributes": { "cluster": 2, "x": 21.078043817233517, "y": 88.4967730058647, "size": 1, "color": "#4b94db" } }, { "key": "2019", "attributes": { "cluster": 0, "x": -41.617944846458734, "y": -54.679734650454925, "size": 2, "color": "#e36d0" } }, { "key": "2020", "attributes": { "cluster": 1, "x": 34.67507866692199, "y": -39.09127738233503, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2021", "attributes": { "cluster": 2, "x": -20.921956182766497, "y": 53.85575685448717, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2022", "attributes": { "cluster": 0, "x": -47.61794484645873, "y": -13.11051526880188, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2023", "attributes": { "cluster": 2, "x": 21.078043817233517, "y": 53.85575685448716, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2024", "attributes": { "cluster": 2, "x": -20.921956182766497, "y": 88.4967730058647, "size": 1, "color": "#4b94db" } }, { "key": "2025", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -39.091277382335036, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2026", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -13.11051526880188, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2027", "attributes": { "cluster": 2, "x": -26.92195618276649, "y": 74.6403665453137, "size": 1, "color": "#4b94db" } }, { "key": "2028", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -58.14383626559268, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2029", "attributes": { "cluster": 0, "x": -47.61794484645873, "y": -58.14383626559268, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2030", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -32.16307415205953, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2031", "attributes": { "cluster": 2, "x": -26.92195618276649, "y": 67.71216331503818, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2032", "attributes": { "cluster": 0, "x": -45.61794484645873, "y": -13.11051526880188, "size": 1, "color": "#e36d0" } }, { "key": "2033", "attributes": { "cluster": 2, "x": 27.07804381723351, "y": 67.71216331503817, "size": 1, "color": "#4b94db" } }, { "key": "2034", "attributes": { "cluster": 2, "x": 27.07804381723351, "y": 74.64036654531368, "size": 1, "color": "#4b94db" } }, { "key": "2035", "attributes": { "cluster": 0, "x": -77.61794484645876, "y": -58.14383626559268, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2036", "attributes": { "cluster": 2, "x": 26.07804381723351, "y": 79.83651896802031, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2037", "attributes": { "cluster": 0, "x": -45.61794484645873, "y": -58.14383626559268, "size": 1, "color": "#e36d0" } }, { "key": "2038", "attributes": { "cluster": 0, "x": -77.61794484645876, "y": -13.110515268801876, "size": 2, "color": "#e36d0" } }, { "key": "2039", "attributes": { "cluster": 0, "x": -62.617944846458755, "y": -63.339988688299314, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2040", "attributes": { "cluster": 2, "x": -25.92195618276649, "y": 62.51601089233155, "size": 2, "color": "#4b94db" } }, { "key": "2041", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -26.966921729352897, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2042", "attributes": { "cluster": 1, "x": 35.67507866692199, "y": -44.28742980504166, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2043", "attributes": { "cluster": 0, "x": -60.61794484645875, "y": -63.33998868829931, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2044", "attributes": { "cluster": 2, "x": 26.078043817233503, "y": 62.516010892331536, "size": 2, "color": "#4b94db" } }, { "key": "2045", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -44.287429805041675, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2046", "attributes": { "cluster": 2, "x": -25.921956182766483, "y": 79.83651896802033, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2047", "attributes": { "cluster": 2, "x": -19.921956182766497, "y": 52.12370604691829, "size": 2, "color": "#4b94db" } }, { "key": "2048", "attributes": { "cluster": 2, "x": 20.078043817233517, "y": 90.22882381343358, "size": 1, "color": "#4b94db" } }, { "key": "2049", "attributes": { "cluster": 0, "x": -60.61794484645873, "y": -7.914362846095244, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2050", "attributes": { "cluster": 0, "x": -62.617944846458734, "y": -7.914362846095251, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2051", "attributes": { "cluster": 2, "x": -19.921956182766497, "y": 90.22882381343358, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2052", "attributes": { "cluster": 1, "x": 35.675078666922, "y": -26.966921729352883, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2053", "attributes": { "cluster": 1, "x": 41.67507866692198, "y": -54.67973465045492, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "2054", "attributes": { "cluster": 2, "x": 20.078043817233517, "y": 52.12370604691829, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2055", "attributes": { "cluster": 0, "x": -71.61794484645874, "y": -9.64641365366413, "size": 2, "color": "#e36d0" } }, { "key": "2056", "attributes": { "cluster": 0, "x": -51.61794484645874, "y": -61.60793788073043, "size": 0, "color": "#e36d0" } }, { "key": "2057", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": -16.574616883939637, "size": 1, "color": "#762e2e" } }, { "key": "2058", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": -9.646413653664123, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "2059", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -7.914362846095251, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2060", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -61.60793788073043, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2061", "attributes": { "cluster": 2, "x": 14.07804381723352, "y": 93.69292542857133, "size": 3, "color": "#4b94db" } }, { "key": "2062", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -63.33998868829931, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2063", "attributes": { "cluster": 1, "x": 41.67507866692198, "y": -16.574616883939633, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2064", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": -54.679734650454925, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2065", "attributes": { "cluster": 2, "x": -13.921956182766502, "y": 93.69292542857133, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2066", "attributes": { "cluster": 2, "x": -13.921956182766502, "y": 48.65960443178054, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2067", "attributes": { "cluster": 0, "x": -34.61794484645874, "y": -42.55537899747279, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2068", "attributes": { "cluster": 0, "x": -34.61794484645874, "y": -28.698972536921776, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2069", "attributes": { "cluster": 1, "x": 75.675078666922, "y": -13.11051526880188, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2070", "attributes": { "cluster": 2, "x": 14.07804381723352, "y": 48.65960443178054, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2071", "attributes": { "cluster": 1, "x": 47.675078666921976, "y": -13.11051526880188, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2072", "attributes": { "cluster": 2, "x": 16.07804381723352, "y": 93.69292542857133, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2073", "attributes": { "cluster": 1, "x": 47.675078666921976, "y": -58.14383626559268, "size": 1, "color": "#762e2e" } }, { "key": "2074", "attributes": { "cluster": 2, "x": -15.921956182766502, "y": 48.65960443178054, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2075", "attributes": { "cluster": 1, "x": 75.675078666922, "y": -58.14383626559268, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2076", "attributes": { "cluster": 0, "x": -58.61794484645873, "y": -7.914362846095251, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2077", "attributes": { "cluster": 0, "x": -88.61794484645874, "y": -28.698972536921765, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2078", "attributes": { "cluster": 2, "x": 16.07804381723352, "y": 48.65960443178053, "size": 2, "color": "#4b94db" } }, { "key": "2079", "attributes": { "cluster": 0, "x": -88.61794484645874, "y": -42.555378997472786, "size": 2, "color": "#e36d0" } }, { "key": "2080", "attributes": { "cluster": 0, "x": -64.61794484645876, "y": -63.33998868829931, "size": 1, "color": "#e36d0" } }, { "key": "2081", "attributes": { "cluster": 2, "x": -15.921956182766502, "y": 93.69292542857133, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2082", "attributes": { "cluster": 1, "x": 77.675078666922, "y": -13.11051526880188, "size": 1, "color": "#762e2e" } }, { "key": "2083", "attributes": { "cluster": 2, "x": -0.9219561827665046, "y": 43.4634520090739, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2084", "attributes": { "cluster": 2, "x": 1.0780438172335, "y": 43.463452009073904, "size": 1, "color": "#4b94db" } }, { "key": "2085", "attributes": { "cluster": 0, "x": -56.617944846458734, "y": -63.339988688299314, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2086", "attributes": { "cluster": 1, "x": 45.675078666921976, "y": -58.14383626559268, "size": 1, "color": "#762e2e" } }, { "key": "2087", "attributes": { "cluster": 1, "x": 77.675078666922, "y": -58.14383626559268, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2088", "attributes": { "cluster": 0, "x": -56.61794484645873, "y": -7.914362846095248, "size": 1, "color": "#e36d0" } }, { "key": "2089", "attributes": { "cluster": 2, "x": 1.0780438172335234, "y": 98.88907785127796, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2090", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -7.914362846095248, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2091", "attributes": { "cluster": 0, "x": -66.61794484645876, "y": -63.339988688299314, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2092", "attributes": { "cluster": 1, "x": 45.675078666921976, "y": -13.110515268801876, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2093", "attributes": { "cluster": 0, "x": -34.61794484645874, "y": -35.627175767197286, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2094", "attributes": { "cluster": 0, "x": -33.61794484645874, "y": -33.895124959628404, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2095", "attributes": { "cluster": 1, "x": 60.675078666921976, "y": -63.339988688299314, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2096", "attributes": { "cluster": 2, "x": -0.9219561827664813, "y": 98.88907785127796, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2097", "attributes": { "cluster": 1, "x": 62.67507866692198, "y": -63.33998868829931, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2098", "attributes": { "cluster": 2, "x": -9.92195618276649, "y": 97.15702704370908, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2099", "attributes": { "cluster": 1, "x": 62.675078666922005, "y": -7.914362846095244, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2100", "attributes": { "cluster": 0, "x": -88.61794484645874, "y": -35.62717576719727, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2101", "attributes": { "cluster": 1, "x": 60.675078666922, "y": -7.914362846095251, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2102", "attributes": { "cluster": 1, "x": 51.67507866692199, "y": -9.64641365366413, "size": 1, "color": "#762e2e" } }, { "key": "2103", "attributes": { "cluster": 2, "x": 10.078043817233507, "y": 45.19550281664279, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "2104", "attributes": { "cluster": 0, "x": -89.61794484645874, "y": -37.359226574766154, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2105", "attributes": { "cluster": 2, "x": 10.07804381723352, "y": 97.15702704370909, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2106", "attributes": { "cluster": 2, "x": -2.9219561827664906, "y": 98.88907785127796, "size": 3.6666666666666665, "color": "#4b94db" } }, { "key": "2107", "attributes": { "cluster": 1, "x": 71.67507866692199, "y": -61.60793788073043, "size": 2, "color": "#762e2e" } }, { "key": "2108", "attributes": { "cluster": 1, "x": 71.675078666922, "y": -9.646413653664123, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2109", "attributes": { "cluster": 0, "x": -80.61794484645876, "y": -56.4117854580238, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2110", "attributes": { "cluster": 2, "x": -9.921956182766502, "y": 45.19550281664277, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2111", "attributes": { "cluster": 0, "x": -42.617944846458734, "y": -56.4117854580238, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2112", "attributes": { "cluster": 2, "x": 3.0780438172335094, "y": 43.463452009073904, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2113", "attributes": { "cluster": 2, "x": 27.07804381723351, "y": 64.24806169990042, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2114", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -7.914362846095251, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2115", "attributes": { "cluster": 2, "x": 27.07804381723351, "y": 78.10446816045143, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "2116", "attributes": { "cluster": 0, "x": -42.61794484645873, "y": -14.842566076370758, "size": 2, "color": "#e36d0" } }, { "key": "2117", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2118", "attributes": { "cluster": 0, "x": -80.61794484645876, "y": -14.842566076370755, "size": 3, "color": "#e36d0" } }, { "key": "2119", "attributes": { "cluster": 2, "x": 3.0780438172335267, "y": 98.88907785127796, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2120", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -63.33998868829931, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2121", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -42.55537899747279, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2122", "attributes": { "cluster": 2, "x": -26.92195618276649, "y": 78.10446816045145, "size": 2, "color": "#4b94db" } }, { "key": "2123", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -28.698972536921776, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2124", "attributes": { "cluster": 2, "x": -26.92195618276649, "y": 64.24806169990043, "size": 2, "color": "#4b94db" } }, { "key": "2125", "attributes": { "cluster": 1, "x": 64.675078666922, "y": -7.914362846095251, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2126", "attributes": { "cluster": 0, "x": -89.61794484645874, "y": -30.43102334449064, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2127", "attributes": { "cluster": 0, "x": -89.61794484645874, "y": -40.823328189903904, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2128", "attributes": { "cluster": 2, "x": -2.921956182766508, "y": 43.463452009073904, "size": 2, "color": "#4b94db" } }, { "key": "2129", "attributes": { "cluster": 1, "x": 34.67507866692199, "y": -28.698972536921765, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2130", "attributes": { "cluster": 0, "x": -33.61794484645874, "y": -40.82332818990392, "size": 1, "color": "#e36d0" } }, { "key": "2131", "attributes": { "cluster": 1, "x": 34.67507866692199, "y": -42.555378997472786, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2132", "attributes": { "cluster": 0, "x": -33.61794484645874, "y": -30.431023344490654, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2133", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": -7.914362846095248, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2134", "attributes": { "cluster": 2, "x": 5.078043817233514, "y": 43.463452009073904, "size": 1, "color": "#4b94db" } }, { "key": "2135", "attributes": { "cluster": 1, "x": 58.675078666921976, "y": -63.33998868829931, "size": 2, "color": "#762e2e" } }, { "key": "2136", "attributes": { "cluster": 0, "x": -54.61794484645873, "y": -63.339988688299314, "size": 1, "color": "#e36d0" } }, { "key": "2137", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -63.339988688299314, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2138", "attributes": { "cluster": 0, "x": -54.61794484645873, "y": -7.914362846095244, "size": 0, "color": "#e36d0" } }, { "key": "2139", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": -63.339988688299314, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2140", "attributes": { "cluster": 2, "x": 5.0780438172335245, "y": 98.88907785127796, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2141", "attributes": { "cluster": 0, "x": -36.61794484645875, "y": -49.48358222774831, "size": 0, "color": "#e36d0" } }, { "key": "2142", "attributes": { "cluster": 2, "x": -4.921956182766495, "y": 98.88907785127796, "size": 2, "color": "#4b94db" } }, { "key": "2143", "attributes": { "cluster": 1, "x": 66.675078666922, "y": -7.914362846095248, "size": 1, "color": "#762e2e" } }, { "key": "2144", "attributes": { "cluster": 0, "x": -86.61794484645873, "y": -21.77076930664625, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2145", "attributes": { "cluster": 1, "x": 56.67507866692198, "y": -7.914362846095248, "size": 1, "color": "#762e2e" } }, { "key": "2146", "attributes": { "cluster": 0, "x": -86.61794484645876, "y": -49.483582227748286, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "2147", "attributes": { "cluster": 1, "x": 56.675078666921976, "y": -63.339988688299314, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2148", "attributes": { "cluster": 2, "x": -4.921956182766506, "y": 43.463452009073904, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2149", "attributes": { "cluster": 2, "x": 27.07804381723351, "y": 71.17626493017593, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2150", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -35.627175767197286, "size": 2, "color": "#762e2e" } }, { "key": "2151", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -33.895124959628404, "size": 1, "color": "#762e2e" } }, { "key": "2152", "attributes": { "cluster": 2, "x": 28.07804381723351, "y": 72.9083157377448, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2153", "attributes": { "cluster": 2, "x": -26.92195618276649, "y": 71.17626493017593, "size": 1, "color": "#4b94db" } }, { "key": "2154", "attributes": { "cluster": 2, "x": -27.92195618276649, "y": 69.44421412260706, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2155", "attributes": { "cluster": 1, "x": 34.67507866692199, "y": -35.62717576719727, "size": 1, "color": "#762e2e" } }, { "key": "2156", "attributes": { "cluster": 2, "x": -18.9219561827665, "y": 50.39165523934941, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2157", "attributes": { "cluster": 1, "x": 33.67507866692199, "y": -37.359226574766154, "size": 1, "color": "#762e2e" } }, { "key": "2158", "attributes": { "cluster": 2, "x": 19.078043817233517, "y": 50.391655239349404, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2159", "attributes": { "cluster": 2, "x": 19.07804381723352, "y": 91.96087462100246, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2160", "attributes": { "cluster": 2, "x": -18.921956182766497, "y": 91.96087462100246, "size": 1, "color": "#4b94db" } }, { "key": "2161", "attributes": { "cluster": 1, "x": 42.675078666921976, "y": -56.4117854580238, "size": 1, "color": "#762e2e" } }, { "key": "2162", "attributes": { "cluster": 0, "x": -36.617944846458734, "y": -21.770769306646272, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2163", "attributes": { "cluster": 2, "x": -27.92195618276649, "y": 76.37241735288256, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2164", "attributes": { "cluster": 2, "x": -27.92195618276649, "y": 65.9801125074693, "size": 1, "color": "#4b94db" } }, { "key": "2165", "attributes": { "cluster": 0, "x": -85.61794484645876, "y": -20.038718499077383, "size": 2, "color": "#e36d0" } }, { "key": "2166", "attributes": { "cluster": 0, "x": -37.617944846458734, "y": -51.215633035317175, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2167", "attributes": { "cluster": 0, "x": -37.617944846458734, "y": -20.03871849907739, "size": 2, "color": "#e36d0" } }, { "key": "2168", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": -11.378464461233001, "size": 1, "color": "#e36d0" } }, { "key": "2169", "attributes": { "cluster": 2, "x": 28.07804381723351, "y": 65.9801125074693, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2170", "attributes": { "cluster": 0, "x": -85.61794484645876, "y": -51.21563303531717, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2171", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": -56.4117854580238, "size": 1, "color": "#762e2e" } }, { "key": "2172", "attributes": { "cluster": 2, "x": 28.07804381723351, "y": 76.37241735288256, "size": 1, "color": "#4b94db" } }, { "key": "2173", "attributes": { "cluster": 2, "x": -6.921956182766502, "y": 98.88907785127796, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2174", "attributes": { "cluster": 2, "x": 7.078043817233521, "y": 43.463452009073904, "size": 1, "color": "#4b94db" } }, { "key": "2175", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -59.87588707316156, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2176", "attributes": { "cluster": 1, "x": 80.675078666922, "y": -14.842566076370758, "size": 2, "color": "#762e2e" } }, { "key": "2177", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": -59.875887073161564, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2178", "attributes": { "cluster": 2, "x": 7.078043817233524, "y": 98.88907785127796, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2179", "attributes": { "cluster": 1, "x": 42.67507866692198, "y": -14.842566076370755, "size": 1, "color": "#762e2e" } }, { "key": "2180", "attributes": { "cluster": 2, "x": -6.921956182766505, "y": 43.4634520090739, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2181", "attributes": { "cluster": 1, "x": 33.67507866692199, "y": -30.43102334449064, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2182", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -11.378464461232998, "size": 2, "color": "#e36d0" } }, { "key": "2183", "attributes": { "cluster": 1, "x": 33.67507866692199, "y": -40.823328189903904, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2184", "attributes": { "cluster": 2, "x": 25.078043817233503, "y": 57.319858469624904, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "2185", "attributes": { "cluster": 0, "x": -87.61794484645873, "y": -23.502820114215126, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2186", "attributes": { "cluster": 0, "x": -87.61794484645876, "y": -47.75153142017941, "size": 2, "color": "#e36d0" } }, { "key": "2187", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -40.82332818990392, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2188", "attributes": { "cluster": 2, "x": -24.921956182766483, "y": 85.03267139072696, "size": 1, "color": "#4b94db" } }, { "key": "2189", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -30.431023344490654, "size": 1, "color": "#762e2e" } }, { "key": "2190", "attributes": { "cluster": 2, "x": -24.921956182766497, "y": 57.319858469624926, "size": 1, "color": "#4b94db" } }, { "key": "2191", "attributes": { "cluster": 1, "x": 54.675078666921976, "y": -7.914362846095248, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2192", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -61.60793788073043, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2193", "attributes": { "cluster": 2, "x": 25.078043817233517, "y": 85.03267139072695, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2194", "attributes": { "cluster": 0, "x": -35.61794484645875, "y": -47.75153142017943, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "2195", "attributes": { "cluster": 2, "x": -23.921956182766497, "y": 86.76472219829583, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2196", "attributes": { "cluster": 1, "x": 68.675078666922, "y": -63.339988688299314, "size": 1, "color": "#762e2e" } }, { "key": "2197", "attributes": { "cluster": 0, "x": -35.617944846458734, "y": -23.502820114215147, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2198", "attributes": { "cluster": 2, "x": 24.078043817233517, "y": 55.587807662056036, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2199", "attributes": { "cluster": 0, "x": -49.61794484645873, "y": -9.646413653664123, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2200", "attributes": { "cluster": 1, "x": 68.675078666922, "y": -7.914362846095244, "size": 1, "color": "#762e2e" } }, { "key": "2201", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -9.646413653664126, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2202", "attributes": { "cluster": 1, "x": 54.675078666921976, "y": -63.339988688299314, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2203", "attributes": { "cluster": 2, "x": 24.078043817233517, "y": 86.76472219829581, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2204", "attributes": { "cluster": 2, "x": 13.07804381723352, "y": 95.42497623614021, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2205", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -49.48358222774831, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2206", "attributes": { "cluster": 1, "x": 36.675078666922, "y": -21.77076930664625, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2207", "attributes": { "cluster": 0, "x": -49.617944846458734, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2208", "attributes": { "cluster": 2, "x": -23.921956182766497, "y": 55.58780766205604, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2209", "attributes": { "cluster": 0, "x": -38.617944846458734, "y": -18.30666769150852, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2210", "attributes": { "cluster": 0, "x": -84.61794484645876, "y": -52.947683842886036, "size": 1, "color": "#e36d0" } }, { "key": "2211", "attributes": { "cluster": 0, "x": -38.617944846458734, "y": -52.94768384288604, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2212", "attributes": { "cluster": 0, "x": -84.61794484645876, "y": -18.306667691508515, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2213", "attributes": { "cluster": 0, "x": -79.61794484645876, "y": -58.14383626559268, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2214", "attributes": { "cluster": 0, "x": -43.61794484645873, "y": -13.11051526880188, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "2215", "attributes": { "cluster": 0, "x": -79.61794484645876, "y": -13.11051526880188, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2216", "attributes": { "cluster": 1, "x": 36.67507866692198, "y": -49.483582227748286, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2217", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -21.770769306646272, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2218", "attributes": { "cluster": 2, "x": -12.921956182766502, "y": 46.927553624211654, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2219", "attributes": { "cluster": 1, "x": 37.67507866692198, "y": -20.038718499077383, "size": 3, "color": "#762e2e" } }, { "key": "2220", "attributes": { "cluster": 2, "x": 13.078043817233523, "y": 46.927553624211654, "size": 3, "color": "#4b94db" } }, { "key": "2221", "attributes": { "cluster": 2, "x": -12.921956182766506, "y": 95.42497623614021, "size": 2, "color": "#4b94db" } }, { "key": "2222", "attributes": { "cluster": 2, "x": -25.921956182766483, "y": 83.30062058315808, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2223", "attributes": { "cluster": 2, "x": -25.921956182766497, "y": 59.0519092771938, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2224", "attributes": { "cluster": 0, "x": -43.61794484645873, "y": -58.14383626559268, "size": 1, "color": "#e36d0" } }, { "key": "2225", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -51.215633035317175, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2226", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -20.03871849907739, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2227", "attributes": { "cluster": 0, "x": -34.61794484645875, "y": -46.01948061261055, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2228", "attributes": { "cluster": 0, "x": -88.61794484645873, "y": -25.234870921784008, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2229", "attributes": { "cluster": 0, "x": -88.61794484645874, "y": -46.019480612610536, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2230", "attributes": { "cluster": 0, "x": -34.61794484645874, "y": -25.234870921784022, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2231", "attributes": { "cluster": 0, "x": -39.617944846458734, "y": -16.574616883939637, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2232", "attributes": { "cluster": 0, "x": -83.61794484645876, "y": -54.67973465045492, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2233", "attributes": { "cluster": 0, "x": -39.617944846458734, "y": -54.67973465045493, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "2234", "attributes": { "cluster": 1, "x": 74.675078666922, "y": -11.378464461233001, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2235", "attributes": { "cluster": 0, "x": -83.61794484645876, "y": -16.57461688393963, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "2236", "attributes": { "cluster": 0, "x": -52.61794484645874, "y": -63.33998868829931, "size": 1, "color": "#e36d0" } }, { "key": "2237", "attributes": { "cluster": 0, "x": -70.61794484645874, "y": -7.914362846095251, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2238", "attributes": { "cluster": 2, "x": -11.921956182766502, "y": 45.19550281664277, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2239", "attributes": { "cluster": 2, "x": 26.078043817233503, "y": 59.05190927719378, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2240", "attributes": { "cluster": 0, "x": -89.61794484645874, "y": -33.8951249596284, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2241", "attributes": { "cluster": 2, "x": 26.078043817233517, "y": 83.30062058315806, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2242", "attributes": { "cluster": 1, "x": 37.67507866692198, "y": -51.21563303531717, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2243", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -59.87588707316156, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2244", "attributes": { "cluster": 2, "x": 12.07804381723352, "y": 97.15702704370909, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2245", "attributes": { "cluster": 2, "x": -11.921956182766499, "y": 97.15702704370909, "size": 1, "color": "#4b94db" } }, { "key": "2246", "attributes": { "cluster": 0, "x": -33.61794484645874, "y": -37.35922657476616, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "2247", "attributes": { "cluster": 1, "x": 74.675078666922, "y": -59.875887073161564, "size": 0, "color": "#762e2e" } }, { "key": "2248", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -11.378464461232998, "size": 2, "color": "#762e2e" } }, { "key": "2249", "attributes": { "cluster": 1, "x": 35.675078666922, "y": -23.502820114215126, "size": 2, "color": "#762e2e" } }, { "key": "2250", "attributes": { "cluster": 2, "x": 12.078043817233516, "y": 45.19550281664278, "size": 2, "color": "#4b94db" } }, { "key": "2251", "attributes": { "cluster": 2, "x": 23.078043817233517, "y": 88.4967730058647, "size": 1, "color": "#4b94db" } }, { "key": "2252", "attributes": { "cluster": 0, "x": -52.61794484645873, "y": -7.914362846095244, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2253", "attributes": { "cluster": 2, "x": -22.921956182766497, "y": 53.85575685448717, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2254", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -63.339988688299314, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2255", "attributes": { "cluster": 2, "x": 23.078043817233517, "y": 53.85575685448717, "size": 1, "color": "#4b94db" } }, { "key": "2256", "attributes": { "cluster": 0, "x": -32.61794484645874, "y": -39.091277382335036, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2257", "attributes": { "cluster": 2, "x": -22.921956182766497, "y": 88.4967730058647, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "2258", "attributes": { "cluster": 2, "x": -17.9219561827665, "y": 48.65960443178054, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2259", "attributes": { "cluster": 0, "x": -32.61794484645874, "y": -32.16307415205953, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2260", "attributes": { "cluster": 1, "x": 35.67507866692198, "y": -47.75153142017941, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2261", "attributes": { "cluster": 2, "x": 18.07804381723352, "y": 93.69292542857133, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2262", "attributes": { "cluster": 0, "x": -90.61794484645874, "y": -32.16307415205952, "size": 1, "color": "#e36d0" } }, { "key": "2263", "attributes": { "cluster": 0, "x": -90.61794484645874, "y": -39.09127738233503, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2264", "attributes": { "cluster": 1, "x": 49.675078666921976, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2265", "attributes": { "cluster": 2, "x": -17.9219561827665, "y": 93.69292542857133, "size": 1, "color": "#4b94db" } }, { "key": "2266", "attributes": { "cluster": 2, "x": 18.07804381723352, "y": 48.65960443178054, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2267", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -47.75153142017943, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2268", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -23.502820114215147, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2269", "attributes": { "cluster": 2, "x": 27.078043817233503, "y": 60.78396008476266, "size": 1, "color": "#4b94db" } }, { "key": "2270", "attributes": { "cluster": 1, "x": 73.675078666922, "y": -9.646413653664123, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2271", "attributes": { "cluster": 2, "x": -26.921956182766483, "y": 81.5685697755892, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2272", "attributes": { "cluster": 1, "x": 49.67507866692198, "y": -9.646413653664126, "size": 1, "color": "#762e2e" } }, { "key": "2273", "attributes": { "cluster": 1, "x": 73.67507866692199, "y": -61.60793788073043, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2274", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": -18.30666769150852, "size": 2, "color": "#762e2e" } }, { "key": "2275", "attributes": { "cluster": 0, "x": -89.61794484645874, "y": -44.28742980504166, "size": 1, "color": "#e36d0" } }, { "key": "2276", "attributes": { "cluster": 1, "x": 38.67507866692198, "y": -52.947683842886036, "size": 1, "color": "#762e2e" } }, { "key": "2277", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": -52.94768384288604, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2278", "attributes": { "cluster": 1, "x": 38.67507866692198, "y": -18.306667691508515, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2279", "attributes": { "cluster": 1, "x": 43.675078666921976, "y": -58.14383626559268, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2280", "attributes": { "cluster": 1, "x": 79.675078666922, "y": -13.11051526880188, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2281", "attributes": { "cluster": 0, "x": -33.61794484645875, "y": -44.287429805041675, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2282", "attributes": { "cluster": 1, "x": 43.675078666921976, "y": -13.11051526880188, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2283", "attributes": { "cluster": 1, "x": 79.675078666922, "y": -58.14383626559268, "size": 2, "color": "#762e2e" } }, { "key": "2284", "attributes": { "cluster": 0, "x": -33.61794484645874, "y": -26.966921729352897, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2285", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -46.01948061261055, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2286", "attributes": { "cluster": 0, "x": -89.61794484645873, "y": -26.966921729352883, "size": 3, "color": "#e36d0" } }, { "key": "2287", "attributes": { "cluster": 0, "x": -61.61794484645875, "y": -65.07203949586818, "size": 4.333333333333333, "color": "#e36d0" } }, { "key": "2288", "attributes": { "cluster": 1, "x": 34.675078666922, "y": -25.234870921784008, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2289", "attributes": { "cluster": 0, "x": -61.617944846458734, "y": -6.182312038526373, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "2290", "attributes": { "cluster": 1, "x": 34.67507866692199, "y": -46.019480612610536, "size": 1, "color": "#762e2e" } }, { "key": "2291", "attributes": { "cluster": 2, "x": -26.92195618276649, "y": 60.783960084762676, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2292", "attributes": { "cluster": 2, "x": 27.07804381723351, "y": 81.5685697755892, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2293", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -25.234870921784022, "size": 1, "color": "#762e2e" } }, { "key": "2294", "attributes": { "cluster": 0, "x": -63.617944846458734, "y": -6.182312038526376, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2295", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": -16.574616883939637, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2296", "attributes": { "cluster": 2, "x": 22.078043817233517, "y": 90.22882381343358, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2297", "attributes": { "cluster": 0, "x": -59.61794484645875, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2298", "attributes": { "cluster": 1, "x": 39.67507866692198, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2299", "attributes": { "cluster": 2, "x": -21.921956182766497, "y": 52.12370604691829, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2300", "attributes": { "cluster": 0, "x": -59.61794484645872, "y": -6.182312038526373, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2301", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": -54.67973465045493, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2302", "attributes": { "cluster": 0, "x": -63.61794484645876, "y": -65.07203949586818, "size": 1, "color": "#e36d0" } }, { "key": "2303", "attributes": { "cluster": 0, "x": -40.617944846458734, "y": -14.842566076370762, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2304", "attributes": { "cluster": 2, "x": 22.078043817233517, "y": 52.12370604691829, "size": 1, "color": "#4b94db" } }, { "key": "2305", "attributes": { "cluster": 1, "x": 39.67507866692198, "y": -16.57461688393963, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2306", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -63.33998868829931, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2307", "attributes": { "cluster": 2, "x": -21.921956182766497, "y": 90.22882381343358, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2308", "attributes": { "cluster": 2, "x": 9.078043817233509, "y": 43.463452009073904, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2309", "attributes": { "cluster": 1, "x": 52.67507866692199, "y": -7.914362846095251, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2310", "attributes": { "cluster": 0, "x": -82.61794484645876, "y": -56.4117854580238, "size": 1, "color": "#e36d0" } }, { "key": "2311", "attributes": { "cluster": 1, "x": 33.67507866692199, "y": -33.8951249596284, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2312", "attributes": { "cluster": 0, "x": -40.617944846458734, "y": -56.4117854580238, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2313", "attributes": { "cluster": 0, "x": -82.61794484645876, "y": -14.842566076370758, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2314", "attributes": { "cluster": 0, "x": -76.61794484645876, "y": -59.87588707316156, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2315", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -37.35922657476616, "size": 1, "color": "#762e2e" } }, { "key": "2316", "attributes": { "cluster": 0, "x": -46.61794484645873, "y": -11.378464461233001, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "2317", "attributes": { "cluster": 1, "x": 70.675078666922, "y": -7.914362846095244, "size": 0, "color": "#762e2e" } }, { "key": "2318", "attributes": { "cluster": 2, "x": -8.921956182766491, "y": 98.88907785127796, "size": 2, "color": "#4b94db" } }, { "key": "2319", "attributes": { "cluster": 1, "x": 52.675078666921976, "y": -63.339988688299314, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2320", "attributes": { "cluster": 0, "x": -76.61794484645876, "y": -11.378464461233005, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2321", "attributes": { "cluster": 2, "x": -27.92195618276649, "y": 72.90831573774481, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "2322", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -39.091277382335036, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2323", "attributes": { "cluster": 2, "x": 28.07804381723351, "y": 69.44421412260705, "size": 1, "color": "#4b94db" } }, { "key": "2324", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -32.16307415205953, "size": 2, "color": "#762e2e" } }, { "key": "2325", "attributes": { "cluster": 2, "x": 9.07804381723352, "y": 98.88907785127796, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2326", "attributes": { "cluster": 2, "x": -8.921956182766502, "y": 43.4634520090739, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2327", "attributes": { "cluster": 2, "x": 29.07804381723351, "y": 67.71216331503817, "size": 1, "color": "#4b94db" } }, { "key": "2328", "attributes": { "cluster": 0, "x": -46.61794484645873, "y": -59.87588707316155, "size": 1, "color": "#e36d0" } }, { "key": "2329", "attributes": { "cluster": 0, "x": -44.61794484645873, "y": -11.378464461233001, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2330", "attributes": { "cluster": 1, "x": 32.67507866692199, "y": -32.16307415205952, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2331", "attributes": { "cluster": 0, "x": -78.61794484645876, "y": -59.87588707316156, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2332", "attributes": { "cluster": 2, "x": 29.07804381723351, "y": 74.64036654531368, "size": 1, "color": "#4b94db" } }, { "key": "2333", "attributes": { "cluster": 1, "x": 32.67507866692199, "y": -39.09127738233503, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2334", "attributes": { "cluster": 1, "x": 33.67507866692199, "y": -44.28742980504166, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2335", "attributes": { "cluster": 0, "x": -44.61794484645873, "y": -59.87588707316156, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2336", "attributes": { "cluster": 0, "x": -78.61794484645876, "y": -11.378464461233001, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2337", "attributes": { "cluster": 2, "x": -28.92195618276649, "y": 74.6403665453137, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2338", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -44.287429805041675, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2339", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -26.966921729352897, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2340", "attributes": { "cluster": 1, "x": 33.675078666922, "y": -26.966921729352883, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2341", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": -65.07203949586818, "size": 2, "color": "#e36d0" } }, { "key": "2342", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -6.182312038526376, "size": 1, "color": "#e36d0" } }, { "key": "2343", "attributes": { "cluster": 1, "x": 61.67507866692198, "y": -65.07203949586818, "size": 3, "color": "#762e2e" } }, { "key": "2344", "attributes": { "cluster": 2, "x": -28.92195618276649, "y": 67.71216331503818, "size": 2, "color": "#4b94db" } }, { "key": "2345", "attributes": { "cluster": 1, "x": 61.675078666922, "y": -6.182312038526373, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2346", "attributes": { "cluster": 2, "x": -27.92195618276649, "y": 62.51601089233155, "size": 1, "color": "#4b94db" } }, { "key": "2347", "attributes": { "cluster": 2, "x": 28.078043817233503, "y": 62.516010892331536, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "2348", "attributes": { "cluster": 2, "x": 28.07804381723351, "y": 79.83651896802031, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2349", "attributes": { "cluster": 0, "x": -65.61794484645876, "y": -65.07203949586818, "size": 3, "color": "#e36d0" } }, { "key": "2350", "attributes": { "cluster": 2, "x": -27.921956182766483, "y": 79.83651896802033, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2351", "attributes": { "cluster": 2, "x": 0.07804381723350394, "y": 41.73140120150502, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2352", "attributes": { "cluster": 1, "x": 59.675078666922, "y": -6.182312038526376, "size": 1, "color": "#762e2e" } }, { "key": "2353", "attributes": { "cluster": 2, "x": 0.07804381723351474, "y": 100.62112865884684, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2354", "attributes": { "cluster": 0, "x": -57.61794484645873, "y": -6.182312038526373, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2355", "attributes": { "cluster": 1, "x": 63.67507866692198, "y": -65.07203949586818, "size": 2, "color": "#762e2e" } }, { "key": "2356", "attributes": { "cluster": 2, "x": -1.921956182766486, "y": 100.62112865884683, "size": 3, "color": "#4b94db" } }, { "key": "2357", "attributes": { "cluster": 2, "x": 2.0780438172335045, "y": 41.73140120150503, "size": 1, "color": "#4b94db" } }, { "key": "2358", "attributes": { "cluster": 0, "x": -90.61794484645874, "y": -28.698972536921765, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2359", "attributes": { "cluster": 2, "x": 2.0780438172335316, "y": 100.62112865884684, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2360", "attributes": { "cluster": 0, "x": -90.61794484645874, "y": -42.555378997472786, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2361", "attributes": { "cluster": 1, "x": 63.67507866692201, "y": -6.182312038526373, "size": 2, "color": "#762e2e" } }, { "key": "2362", "attributes": { "cluster": 2, "x": -1.9219561827665128, "y": 41.73140120150502, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2363", "attributes": { "cluster": 0, "x": -32.61794484645874, "y": -42.55537899747279, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2364", "attributes": { "cluster": 1, "x": 59.67507866692197, "y": -65.07203949586818, "size": 0, "color": "#762e2e" } }, { "key": "2365", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": -14.842566076370762, "size": 1, "color": "#762e2e" } }, { "key": "2366", "attributes": { "cluster": 1, "x": 40.67507866692198, "y": -56.4117854580238, "size": 1, "color": "#762e2e" } }, { "key": "2367", "attributes": { "cluster": 2, "x": 21.078043817233517, "y": 91.96087462100245, "size": 1, "color": "#4b94db" } }, { "key": "2368", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": -56.4117854580238, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2369", "attributes": { "cluster": 0, "x": -32.61794484645874, "y": -28.698972536921776, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2370", "attributes": { "cluster": 1, "x": 40.67507866692198, "y": -14.842566076370758, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2371", "attributes": { "cluster": 2, "x": -20.921956182766497, "y": 50.39165523934942, "size": 1, "color": "#4b94db" } }, { "key": "2372", "attributes": { "cluster": 1, "x": 46.675078666921976, "y": -59.87588707316156, "size": 1, "color": "#762e2e" } }, { "key": "2373", "attributes": { "cluster": 0, "x": -72.61794484645874, "y": -7.914362846095251, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2374", "attributes": { "cluster": 2, "x": 21.078043817233517, "y": 50.39165523934941, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2375", "attributes": { "cluster": 0, "x": -50.61794484645874, "y": -63.33998868829931, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2376", "attributes": { "cluster": 0, "x": -50.61794484645873, "y": -7.914362846095244, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2377", "attributes": { "cluster": 2, "x": -20.921956182766497, "y": 91.96087462100246, "size": 1, "color": "#4b94db" } }, { "key": "2378", "attributes": { "cluster": 1, "x": 76.675078666922, "y": -11.378464461233001, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2379", "attributes": { "cluster": 2, "x": -14.921956182766502, "y": 46.927553624211654, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2380", "attributes": { "cluster": 1, "x": 46.675078666921976, "y": -11.378464461233005, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2381", "attributes": { "cluster": 2, "x": 15.07804381723352, "y": 95.42497623614021, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2382", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -63.339988688299314, "size": 1, "color": "#e36d0" } }, { "key": "2383", "attributes": { "cluster": 0, "x": -55.617944846458734, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2384", "attributes": { "cluster": 1, "x": 76.675078666922, "y": -59.87588707316155, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2385", "attributes": { "cluster": 2, "x": -14.921956182766506, "y": 95.42497623614021, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2386", "attributes": { "cluster": 2, "x": 15.078043817233523, "y": 46.927553624211654, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2387", "attributes": { "cluster": 0, "x": -67.61794484645876, "y": -6.182312038526373, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2388", "attributes": { "cluster": 2, "x": 17.07804381723352, "y": 95.42497623614021, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2389", "attributes": { "cluster": 1, "x": 78.675078666922, "y": -11.378464461233001, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2390", "attributes": { "cluster": 2, "x": -16.9219561827665, "y": 46.927553624211654, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2391", "attributes": { "cluster": 0, "x": -67.61794484645876, "y": -65.0720394958682, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2392", "attributes": { "cluster": 1, "x": 44.675078666921976, "y": -59.87588707316156, "size": 3, "color": "#762e2e" } }, { "key": "2393", "attributes": { "cluster": 0, "x": -55.61794484645873, "y": -6.182312038526366, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2394", "attributes": { "cluster": 2, "x": 17.078043817233524, "y": 46.927553624211654, "size": 1, "color": "#4b94db" } }, { "key": "2395", "attributes": { "cluster": 2, "x": -16.921956182766504, "y": 95.42497623614021, "size": 1, "color": "#4b94db" } }, { "key": "2396", "attributes": { "cluster": 1, "x": 78.675078666922, "y": -59.87588707316156, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2397", "attributes": { "cluster": 2, "x": 4.078043817233508, "y": 41.73140120150503, "size": 0, "color": "#4b94db" } }, { "key": "2398", "attributes": { "cluster": 2, "x": -3.9219561827664893, "y": 100.62112865884683, "size": 1, "color": "#4b94db" } }, { "key": "2399", "attributes": { "cluster": 1, "x": 44.675078666921976, "y": -11.378464461233001, "size": 1, "color": "#762e2e" } }, { "key": "2400", "attributes": { "cluster": 2, "x": -3.921956182766504, "y": 41.73140120150502, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2401", "attributes": { "cluster": 2, "x": 4.078043817233523, "y": 100.62112865884684, "size": 1, "color": "#4b94db" } }, { "key": "2402", "attributes": { "cluster": 2, "x": -28.92195618276649, "y": 78.10446816045145, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2403", "attributes": { "cluster": 0, "x": -81.61794484645876, "y": -58.14383626559268, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2404", "attributes": { "cluster": 2, "x": -28.92195618276649, "y": 64.24806169990043, "size": 1, "color": "#4b94db" } }, { "key": "2405", "attributes": { "cluster": 0, "x": -41.61794484645873, "y": -13.11051526880188, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2406", "attributes": { "cluster": 2, "x": 29.07804381723351, "y": 64.24806169990042, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2407", "attributes": { "cluster": 2, "x": 29.07804381723351, "y": 78.10446816045143, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2408", "attributes": { "cluster": 0, "x": -81.61794484645876, "y": -13.11051526880188, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2409", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -65.07203949586818, "size": 1, "color": "#762e2e" } }, { "key": "2410", "attributes": { "cluster": 0, "x": -41.617944846458734, "y": -58.14383626559268, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2411", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -6.182312038526376, "size": 1, "color": "#762e2e" } }, { "key": "2412", "attributes": { "cluster": 0, "x": -32.61794484645874, "y": -35.627175767197286, "size": 2, "color": "#e36d0" } }, { "key": "2413", "attributes": { "cluster": 2, "x": -10.921956182766491, "y": 98.88907785127796, "size": 2, "color": "#4b94db" } }, { "key": "2414", "attributes": { "cluster": 1, "x": 57.675078666921976, "y": -65.07203949586818, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2415", "attributes": { "cluster": 1, "x": 65.675078666922, "y": -6.182312038526373, "size": 3, "color": "#762e2e" } }, { "key": "2416", "attributes": { "cluster": 2, "x": 11.078043817233509, "y": 43.463452009073904, "size": 2, "color": "#4b94db" } }, { "key": "2417", "attributes": { "cluster": 1, "x": 32.67507866692199, "y": -28.698972536921765, "size": 1, "color": "#762e2e" } }, { "key": "2418", "attributes": { "cluster": 0, "x": -31.61794484645874, "y": -33.89512495962841, "size": 0, "color": "#e36d0" } }, { "key": "2419", "attributes": { "cluster": 0, "x": -90.61794484645874, "y": -35.62717576719727, "size": 1, "color": "#e36d0" } }, { "key": "2420", "attributes": { "cluster": 2, "x": 11.07804381723352, "y": 98.88907785127796, "size": 1, "color": "#4b94db" } }, { "key": "2421", "attributes": { "cluster": 2, "x": -10.921956182766502, "y": 43.4634520090739, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2422", "attributes": { "cluster": 1, "x": 32.67507866692199, "y": -42.555378997472786, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2423", "attributes": { "cluster": 2, "x": 6.078043817233517, "y": 41.73140120150502, "size": 1, "color": "#4b94db" } }, { "key": "2424", "attributes": { "cluster": 0, "x": -91.61794484645874, "y": -37.35922657476615, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2425", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -42.55537899747279, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2426", "attributes": { "cluster": 2, "x": -5.921956182766499, "y": 100.62112865884684, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2427", "attributes": { "cluster": 0, "x": -35.617944846458734, "y": -51.215633035317175, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2428", "attributes": { "cluster": 0, "x": -87.61794484645876, "y": -20.038718499077383, "size": 1, "color": "#e36d0" } }, { "key": "2429", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -28.698972536921776, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2430", "attributes": { "cluster": 0, "x": -87.61794484645876, "y": -51.21563303531717, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2431", "attributes": { "cluster": 1, "x": 50.67507866692199, "y": -7.914362846095251, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2432", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -63.33998868829931, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2433", "attributes": { "cluster": 0, "x": -35.617944846458734, "y": -20.038718499077394, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2434", "attributes": { "cluster": 0, "x": -88.61794484645873, "y": -21.77076930664625, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2435", "attributes": { "cluster": 1, "x": 72.675078666922, "y": -7.914362846095244, "size": 1, "color": "#762e2e" } }, { "key": "2436", "attributes": { "cluster": 2, "x": -5.921956182766502, "y": 41.73140120150502, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2437", "attributes": { "cluster": 1, "x": 50.675078666921976, "y": -63.339988688299314, "size": 1, "color": "#762e2e" } }, { "key": "2438", "attributes": { "cluster": 2, "x": 6.078043817233521, "y": 100.62112865884684, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2439", "attributes": { "cluster": 0, "x": -34.61794484645875, "y": -49.48358222774831, "size": 1, "color": "#e36d0" } }, { "key": "2440", "attributes": { "cluster": 1, "x": 67.675078666922, "y": -65.07203949586818, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "2441", "attributes": { "cluster": 2, "x": -19.9219561827665, "y": 48.65960443178054, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2442", "attributes": { "cluster": 1, "x": 55.67507866692198, "y": -6.182312038526373, "size": 0, "color": "#762e2e" } }, { "key": "2443", "attributes": { "cluster": 0, "x": -34.617944846458734, "y": -21.770769306646272, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2444", "attributes": { "cluster": 2, "x": 20.07804381723352, "y": 93.69292542857133, "size": 1, "color": "#4b94db" } }, { "key": "2445", "attributes": { "cluster": 1, "x": 55.675078666921976, "y": -65.0720394958682, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2446", "attributes": { "cluster": 1, "x": 67.675078666922, "y": -6.182312038526366, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2447", "attributes": { "cluster": 2, "x": -19.921956182766497, "y": 93.69292542857133, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "2448", "attributes": { "cluster": 2, "x": 20.078043817233517, "y": 48.65960443178054, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2449", "attributes": { "cluster": 0, "x": -88.61794484645876, "y": -49.483582227748286, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2450", "attributes": { "cluster": 2, "x": 29.07804381723351, "y": 71.17626493017593, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2451", "attributes": { "cluster": 1, "x": 41.675078666921976, "y": -58.14383626559268, "size": 1, "color": "#762e2e" } }, { "key": "2452", "attributes": { "cluster": 2, "x": 30.07804381723351, "y": 72.9083157377448, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2453", "attributes": { "cluster": 1, "x": 81.675078666922, "y": -13.11051526880188, "size": 1, "color": "#762e2e" } }, { "key": "2454", "attributes": { "cluster": 2, "x": -28.92195618276649, "y": 71.17626493017593, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2455", "attributes": { "cluster": 0, "x": -86.61794484645876, "y": -52.94768384288604, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2456", "attributes": { "cluster": 2, "x": -29.92195618276649, "y": 69.44421412260706, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2457", "attributes": { "cluster": 2, "x": 26.078043817233517, "y": 55.587807662056036, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "2458", "attributes": { "cluster": 1, "x": 41.67507866692198, "y": -13.11051526880188, "size": 1, "color": "#762e2e" } }, { "key": "2459", "attributes": { "cluster": 2, "x": -25.921956182766497, "y": 86.76472219829583, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2460", "attributes": { "cluster": 2, "x": -25.921956182766497, "y": 55.58780766205605, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2461", "attributes": { "cluster": 0, "x": -36.617944846458734, "y": -18.306667691508515, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2462", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": -58.14383626559268, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2463", "attributes": { "cluster": 2, "x": 26.078043817233517, "y": 86.76472219829581, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2464", "attributes": { "cluster": 0, "x": -86.61794484645876, "y": -18.306667691508505, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2465", "attributes": { "cluster": 0, "x": -36.617944846458734, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2466", "attributes": { "cluster": 0, "x": -31.61794484645874, "y": -40.82332818990392, "size": 1, "color": "#e36d0" } }, { "key": "2467", "attributes": { "cluster": 0, "x": -31.61794484645874, "y": -30.431023344490654, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2468", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -35.627175767197286, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2469", "attributes": { "cluster": 0, "x": -91.61794484645874, "y": -30.43102334449064, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2470", "attributes": { "cluster": 0, "x": -91.61794484645874, "y": -40.823328189903904, "size": 1, "color": "#e36d0" } }, { "key": "2471", "attributes": { "cluster": 0, "x": -53.617944846458734, "y": -65.07203949586818, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2472", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -33.89512495962841, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2473", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -6.182312038526369, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2474", "attributes": { "cluster": 2, "x": -26.921956182766483, "y": 85.03267139072696, "size": 2, "color": "#4b94db" } }, { "key": "2475", "attributes": { "cluster": 1, "x": 32.67507866692199, "y": -35.62717576719727, "size": 1, "color": "#762e2e" } }, { "key": "2476", "attributes": { "cluster": 2, "x": 27.078043817233503, "y": 57.319858469624904, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2477", "attributes": { "cluster": 0, "x": -89.61794484645873, "y": -23.50282011421513, "size": 1, "color": "#e36d0" } }, { "key": "2478", "attributes": { "cluster": 1, "x": 31.67507866692199, "y": -37.35922657476615, "size": 1, "color": "#762e2e" } }, { "key": "2479", "attributes": { "cluster": 0, "x": -33.61794484645875, "y": -47.75153142017943, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2480", "attributes": { "cluster": 2, "x": 27.078043817233517, "y": 85.03267139072695, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2481", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -51.215633035317175, "size": 1, "color": "#762e2e" } }, { "key": "2482", "attributes": { "cluster": 2, "x": -26.921956182766497, "y": 57.319858469624926, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2483", "attributes": { "cluster": 2, "x": -24.921956182766497, "y": 53.85575685448717, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2484", "attributes": { "cluster": 0, "x": -33.617944846458734, "y": -23.502820114215147, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2485", "attributes": { "cluster": 1, "x": 35.67507866692198, "y": -20.038718499077383, "size": 2, "color": "#762e2e" } }, { "key": "2486", "attributes": { "cluster": 0, "x": -53.61794484645873, "y": -6.182312038526366, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2487", "attributes": { "cluster": 1, "x": 35.67507866692198, "y": -51.21563303531717, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2488", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -20.038718499077394, "size": 1, "color": "#762e2e" } }, { "key": "2489", "attributes": { "cluster": 1, "x": 34.675078666922, "y": -21.77076930664625, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2490", "attributes": { "cluster": 2, "x": 25.078043817233517, "y": 88.4967730058647, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2491", "attributes": { "cluster": 2, "x": -24.921956182766497, "y": 88.49677300586471, "size": 1, "color": "#4b94db" } }, { "key": "2492", "attributes": { "cluster": 0, "x": -89.61794484645876, "y": -47.75153142017941, "size": 1, "color": "#e36d0" } }, { "key": "2493", "attributes": { "cluster": 2, "x": 25.078043817233517, "y": 53.855756854487154, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2494", "attributes": { "cluster": 2, "x": 30.07804381723351, "y": 65.9801125074693, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2495", "attributes": { "cluster": 2, "x": 30.07804381723351, "y": 76.37241735288256, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2496", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -49.48358222774831, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2497", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -65.0720394958682, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2498", "attributes": { "cluster": 0, "x": -37.617944846458734, "y": -16.57461688393964, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2499", "attributes": { "cluster": 0, "x": -85.61794484645876, "y": -54.67973465045492, "size": 2, "color": "#e36d0" } }, { "key": "2500", "attributes": { "cluster": 2, "x": -29.92195618276649, "y": 76.37241735288256, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2501", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2502", "attributes": { "cluster": 0, "x": -47.61794484645873, "y": -9.646413653664123, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2503", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -21.770769306646272, "size": 2, "color": "#762e2e" } }, { "key": "2504", "attributes": { "cluster": 2, "x": -29.92195618276649, "y": 65.9801125074693, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2505", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -9.646413653664123, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2506", "attributes": { "cluster": 1, "x": 34.67507866692198, "y": -49.483582227748286, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2507", "attributes": { "cluster": 0, "x": -85.61794484645876, "y": -16.57461688393964, "size": 1, "color": "#e36d0" } }, { "key": "2508", "attributes": { "cluster": 0, "x": -47.61794484645872, "y": -61.60793788073043, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2509", "attributes": { "cluster": 1, "x": 36.67507866692198, "y": -52.94768384288604, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2510", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -18.306667691508515, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2511", "attributes": { "cluster": 1, "x": 36.67507866692198, "y": -18.306667691508505, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2512", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2513", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -40.82332818990392, "size": 1, "color": "#762e2e" } }, { "key": "2514", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -30.431023344490654, "size": 0, "color": "#762e2e" } }, { "key": "2515", "attributes": { "cluster": 1, "x": 31.67507866692199, "y": -30.43102334449064, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2516", "attributes": { "cluster": 2, "x": 8.078043817233517, "y": 41.73140120150502, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2517", "attributes": { "cluster": 2, "x": -7.9219561827664995, "y": 100.62112865884684, "size": 1, "color": "#4b94db" } }, { "key": "2518", "attributes": { "cluster": 2, "x": -27.921956182766483, "y": 83.30062058315808, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2519", "attributes": { "cluster": 1, "x": 31.67507866692199, "y": -40.823328189903904, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2520", "attributes": { "cluster": 0, "x": -37.617944846458734, "y": -54.67973465045492, "size": 1, "color": "#e36d0" } }, { "key": "2521", "attributes": { "cluster": 2, "x": 28.078043817233503, "y": 59.051909277193786, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2522", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": -7.914362846095244, "size": 1, "color": "#e36d0" } }, { "key": "2523", "attributes": { "cluster": 1, "x": 69.675078666922, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2524", "attributes": { "cluster": 1, "x": 53.67507866692198, "y": -6.182312038526369, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2525", "attributes": { "cluster": 1, "x": 33.675078666922, "y": -23.50282011421513, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2526", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -7.914362846095251, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2527", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -63.339988688299314, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2528", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -47.75153142017943, "size": 1, "color": "#762e2e" } }, { "key": "2529", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -23.502820114215147, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2530", "attributes": { "cluster": 1, "x": 69.675078666922, "y": -6.182312038526366, "size": 1, "color": "#762e2e" } }, { "key": "2531", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": -63.33998868829931, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "2532", "attributes": { "cluster": 2, "x": 28.078043817233517, "y": 83.30062058315806, "size": 2, "color": "#4b94db" } }, { "key": "2533", "attributes": { "cluster": 2, "x": 8.078043817233521, "y": 100.62112865884684, "size": 1, "color": "#4b94db" } }, { "key": "2534", "attributes": { "cluster": 2, "x": -27.921956182766497, "y": 59.0519092771938, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2535", "attributes": { "cluster": 2, "x": -7.921956182766503, "y": 41.73140120150502, "size": 1, "color": "#4b94db" } }, { "key": "2536", "attributes": { "cluster": 2, "x": 24.078043817233517, "y": 90.22882381343356, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2537", "attributes": { "cluster": 0, "x": -32.61794484645875, "y": -46.01948061261055, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2538", "attributes": { "cluster": 1, "x": 33.67507866692198, "y": -47.75153142017941, "size": 2, "color": "#762e2e" } }, { "key": "2539", "attributes": { "cluster": 0, "x": -90.61794484645873, "y": -25.234870921784008, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2540", "attributes": { "cluster": 0, "x": -90.61794484645874, "y": -46.019480612610536, "size": 2, "color": "#e36d0" } }, { "key": "2541", "attributes": { "cluster": 0, "x": -32.61794484645874, "y": -25.234870921784022, "size": 1, "color": "#e36d0" } }, { "key": "2542", "attributes": { "cluster": 0, "x": -42.61794484645873, "y": -11.378464461233001, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2543", "attributes": { "cluster": 1, "x": 53.675078666921976, "y": -65.0720394958682, "size": 1, "color": "#762e2e" } }, { "key": "2544", "attributes": { "cluster": 0, "x": -80.61794484645876, "y": -59.87588707316156, "size": 3.6666666666666665, "color": "#e36d0" } }, { "key": "2545", "attributes": { "cluster": 0, "x": -42.61794484645873, "y": -59.87588707316155, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2546", "attributes": { "cluster": 0, "x": -80.61794484645876, "y": -11.378464461233005, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2547", "attributes": { "cluster": 2, "x": -23.921956182766497, "y": 52.123706046918294, "size": 1, "color": "#4b94db" } }, { "key": "2548", "attributes": { "cluster": 2, "x": -13.921956182766502, "y": 45.19550281664277, "size": 2, "color": "#4b94db" } }, { "key": "2549", "attributes": { "cluster": 0, "x": -84.61794484645876, "y": -56.4117854580238, "size": 1, "color": "#e36d0" } }, { "key": "2550", "attributes": { "cluster": 0, "x": -38.617944846458734, "y": -14.842566076370758, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2551", "attributes": { "cluster": 0, "x": -84.61794484645876, "y": -14.842566076370751, "size": 2, "color": "#e36d0" } }, { "key": "2552", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -16.57461688393964, "size": 2, "color": "#762e2e" } }, { "key": "2553", "attributes": { "cluster": 1, "x": 37.67507866692198, "y": -54.67973465045492, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2554", "attributes": { "cluster": 2, "x": 14.07804381723352, "y": 97.15702704370909, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2555", "attributes": { "cluster": 0, "x": -38.617944846458734, "y": -56.41178545802381, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2556", "attributes": { "cluster": 2, "x": -13.921956182766511, "y": 97.15702704370909, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2557", "attributes": { "cluster": 0, "x": -71.61794484645874, "y": -6.182312038526373, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2558", "attributes": { "cluster": 2, "x": -23.921956182766497, "y": 90.22882381343356, "size": 3, "color": "#4b94db" } }, { "key": "2559", "attributes": { "cluster": 2, "x": 14.078043817233528, "y": 45.19550281664277, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "2560", "attributes": { "cluster": 1, "x": 47.675078666921976, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2561", "attributes": { "cluster": 1, "x": 75.675078666922, "y": -9.646413653664123, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "2562", "attributes": { "cluster": 2, "x": 24.078043817233517, "y": 52.123706046918294, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2563", "attributes": { "cluster": 1, "x": 47.67507866692197, "y": -9.646413653664123, "size": 1, "color": "#762e2e" } }, { "key": "2564", "attributes": { "cluster": 2, "x": 13.07804381723352, "y": 98.88907785127796, "size": 2, "color": "#4b94db" } }, { "key": "2565", "attributes": { "cluster": 1, "x": 37.67507866692198, "y": -16.57461688393964, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2566", "attributes": { "cluster": 2, "x": -12.921956182766502, "y": 98.88907785127796, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2567", "attributes": { "cluster": 0, "x": -51.61794484645874, "y": -65.07203949586818, "size": 1, "color": "#e36d0" } }, { "key": "2568", "attributes": { "cluster": 1, "x": 75.675078666922, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2569", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": -6.182312038526366, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2570", "attributes": { "cluster": 2, "x": -12.921956182766502, "y": 43.4634520090739, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2571", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2572", "attributes": { "cluster": 1, "x": 74.675078666922, "y": -7.914362846095244, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2573", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -65.0720394958682, "size": 2, "color": "#e36d0" } }, { "key": "2574", "attributes": { "cluster": 0, "x": -31.61794484645874, "y": -37.35922657476616, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2575", "attributes": { "cluster": 2, "x": 13.07804381723352, "y": 43.463452009073904, "size": 0, "color": "#4b94db" } }, { "key": "2576", "attributes": { "cluster": 2, "x": 29.078043817233503, "y": 60.78396008476266, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2577", "attributes": { "cluster": 0, "x": -91.61794484645874, "y": -33.8951249596284, "size": 1, "color": "#e36d0" } }, { "key": "2578", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -7.914362846095251, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2579", "attributes": { "cluster": 0, "x": -62.617944846458755, "y": -66.80409030343705, "size": 1, "color": "#e36d0" } }, { "key": "2580", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -63.339988688299314, "size": 2, "color": "#762e2e" } }, { "key": "2581", "attributes": { "cluster": 1, "x": 74.675078666922, "y": -63.33998868829931, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2582", "attributes": { "cluster": 2, "x": -28.921956182766483, "y": 81.56856977558921, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2583", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -46.01948061261055, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2584", "attributes": { "cluster": 0, "x": -60.61794484645874, "y": -66.80409030343706, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2585", "attributes": { "cluster": 0, "x": -60.61794484645873, "y": -4.450261230957501, "size": 1, "color": "#e36d0" } }, { "key": "2586", "attributes": { "cluster": 1, "x": 32.675078666922, "y": -25.234870921784008, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2587", "attributes": { "cluster": 0, "x": -62.61794484645874, "y": -4.450261230957498, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2588", "attributes": { "cluster": 0, "x": -91.61794484645873, "y": -26.966921729352883, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2589", "attributes": { "cluster": 0, "x": -91.61794484645874, "y": -44.28742980504166, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2590", "attributes": { "cluster": 1, "x": 32.67507866692199, "y": -46.019480612610536, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2591", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -25.234870921784022, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2592", "attributes": { "cluster": 2, "x": -28.92195618276649, "y": 60.783960084762676, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2593", "attributes": { "cluster": 1, "x": 80.675078666922, "y": -11.378464461233001, "size": 1, "color": "#762e2e" } }, { "key": "2594", "attributes": { "cluster": 0, "x": -31.617944846458748, "y": -44.287429805041675, "size": 1, "color": "#e36d0" } }, { "key": "2595", "attributes": { "cluster": 2, "x": 29.07804381723351, "y": 81.5685697755892, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2596", "attributes": { "cluster": 0, "x": -31.61794484645874, "y": -26.966921729352897, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2597", "attributes": { "cluster": 2, "x": 19.07804381723352, "y": 95.42497623614021, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2598", "attributes": { "cluster": 2, "x": -18.9219561827665, "y": 46.927553624211654, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "2599", "attributes": { "cluster": 1, "x": 42.675078666921976, "y": -59.87588707316156, "size": 1, "color": "#762e2e" } }, { "key": "2600", "attributes": { "cluster": 2, "x": 19.078043817233524, "y": 46.927553624211654, "size": 1, "color": "#4b94db" } }, { "key": "2601", "attributes": { "cluster": 0, "x": -92.61794484645874, "y": -32.163074152059515, "size": 1, "color": "#e36d0" } }, { "key": "2602", "attributes": { "cluster": 1, "x": 80.675078666922, "y": -59.87588707316155, "size": 2, "color": "#762e2e" } }, { "key": "2603", "attributes": { "cluster": 0, "x": -92.61794484645874, "y": -39.09127738233503, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2604", "attributes": { "cluster": 2, "x": -18.921956182766504, "y": 95.42497623614021, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2605", "attributes": { "cluster": 0, "x": -30.61794484645874, "y": -39.09127738233504, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2606", "attributes": { "cluster": 0, "x": -30.61794484645874, "y": -32.16307415205953, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2607", "attributes": { "cluster": 2, "x": -22.921956182766497, "y": 50.39165523934941, "size": 2, "color": "#4b94db" } }, { "key": "2608", "attributes": { "cluster": 2, "x": 23.078043817233517, "y": 91.96087462100246, "size": 1, "color": "#4b94db" } }, { "key": "2609", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -4.450261230957501, "size": 2, "color": "#e36d0" } }, { "key": "2610", "attributes": { "cluster": 1, "x": 42.675078666921976, "y": -11.378464461233005, "size": 2, "color": "#762e2e" } }, { "key": "2611", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -66.80409030343705, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2612", "attributes": { "cluster": 1, "x": 38.67507866692198, "y": -56.4117854580238, "size": 1, "color": "#762e2e" } }, { "key": "2613", "attributes": { "cluster": 2, "x": -22.921956182766497, "y": 91.96087462100246, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2614", "attributes": { "cluster": 2, "x": 23.078043817233517, "y": 50.391655239349404, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2615", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": -14.842566076370758, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2616", "attributes": { "cluster": 1, "x": 38.67507866692198, "y": -14.842566076370751, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2617", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": -56.41178545802381, "size": 3.3333333333333335, "color": "#762e2e" } }, { "key": "2618", "attributes": { "cluster": 0, "x": -58.61794484645873, "y": -4.450261230957494, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2619", "attributes": { "cluster": 2, "x": -9.921956182766491, "y": 100.62112865884684, "size": 1, "color": "#4b94db" } }, { "key": "2620", "attributes": { "cluster": 2, "x": 10.078043817233509, "y": 41.73140120150502, "size": 3, "color": "#4b94db" } }, { "key": "2621", "attributes": { "cluster": 1, "x": 51.67507866692199, "y": -6.182312038526373, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2622", "attributes": { "cluster": 0, "x": -64.61794484645876, "y": -66.80409030343706, "size": 1, "color": "#e36d0" } }, { "key": "2623", "attributes": { "cluster": 2, "x": 10.07804381723352, "y": 100.62112865884684, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2624", "attributes": { "cluster": 2, "x": -9.921956182766502, "y": 41.73140120150502, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2625", "attributes": { "cluster": 2, "x": 30.07804381723351, "y": 69.44421412260705, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2626", "attributes": { "cluster": 2, "x": -29.92195618276649, "y": 72.90831573774481, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2627", "attributes": { "cluster": 0, "x": -39.617944846458734, "y": -58.143836265592675, "size": 1, "color": "#e36d0" } }, { "key": "2628", "attributes": { "cluster": 1, "x": 71.67507866692199, "y": -65.07203949586818, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2629", "attributes": { "cluster": 1, "x": 71.675078666922, "y": -6.182312038526366, "size": 2, "color": "#762e2e" } }, { "key": "2630", "attributes": { "cluster": 0, "x": -39.61794484645873, "y": -13.110515268801887, "size": 1, "color": "#e36d0" } }, { "key": "2631", "attributes": { "cluster": 0, "x": -83.61794484645876, "y": -13.110515268801883, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2632", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": -65.0720394958682, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2633", "attributes": { "cluster": 0, "x": -83.61794484645876, "y": -58.14383626559267, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2634", "attributes": { "cluster": 2, "x": -0.9219561827665044, "y": 39.999350393936155, "size": 0, "color": "#4b94db" } }, { "key": "2635", "attributes": { "cluster": 2, "x": 1.0780438172335074, "y": 39.999350393936155, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2636", "attributes": { "cluster": 2, "x": 1.0780438172335232, "y": 102.35317946641571, "size": 1, "color": "#4b94db" } }, { "key": "2637", "attributes": { "cluster": 2, "x": -0.9219561827664886, "y": 102.35317946641571, "size": 1, "color": "#4b94db" } }, { "key": "2638", "attributes": { "cluster": 2, "x": -29.921956182766483, "y": 79.83651896802033, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2639", "attributes": { "cluster": 2, "x": -29.92195618276649, "y": 62.51601089233155, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2640", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": -66.80409030343705, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2641", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -37.35922657476616, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2642", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -4.450261230957501, "size": 1, "color": "#e36d0" } }, { "key": "2643", "attributes": { "cluster": 2, "x": 30.078043817233503, "y": 62.516010892331536, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2644", "attributes": { "cluster": 2, "x": 30.07804381723351, "y": 79.83651896802031, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2645", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -66.80409030343706, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2646", "attributes": { "cluster": 1, "x": 31.67507866692199, "y": -33.8951249596284, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2647", "attributes": { "cluster": 0, "x": -56.617944846458734, "y": -4.450261230957491, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2648", "attributes": { "cluster": 1, "x": 60.675078666921976, "y": -66.80409030343705, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2649", "attributes": { "cluster": 2, "x": -30.92195618276649, "y": 74.6403665453137, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2650", "attributes": { "cluster": 2, "x": -30.92195618276649, "y": 67.71216331503818, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "2651", "attributes": { "cluster": 0, "x": -77.61794484645876, "y": -9.64641365366413, "size": 2, "color": "#e36d0" } }, { "key": "2652", "attributes": { "cluster": 2, "x": 31.07804381723351, "y": 67.71216331503817, "size": 2, "color": "#4b94db" } }, { "key": "2653", "attributes": { "cluster": 0, "x": -77.61794484645876, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2654", "attributes": { "cluster": 1, "x": 62.67507866692199, "y": -66.80409030343706, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2655", "attributes": { "cluster": 2, "x": 31.07804381723351, "y": 74.64036654531368, "size": 2, "color": "#4b94db" } }, { "key": "2656", "attributes": { "cluster": 1, "x": 62.675078666922005, "y": -4.450261230957501, "size": 1, "color": "#762e2e" } }, { "key": "2657", "attributes": { "cluster": 0, "x": -45.61794484645872, "y": -61.60793788073043, "size": 1, "color": "#e36d0" } }, { "key": "2658", "attributes": { "cluster": 2, "x": -2.9219561827664875, "y": 102.35317946641571, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2659", "attributes": { "cluster": 0, "x": -45.61794484645873, "y": -9.646413653664123, "size": 1, "color": "#e36d0" } }, { "key": "2660", "attributes": { "cluster": 2, "x": 3.0780438172335063, "y": 39.999350393936155, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2661", "attributes": { "cluster": 1, "x": 60.67507866692199, "y": -4.450261230957498, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2662", "attributes": { "cluster": 0, "x": -79.61794484645876, "y": -61.60793788073043, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2663", "attributes": { "cluster": 2, "x": 3.078043817233527, "y": 102.35317946641572, "size": 2, "color": "#4b94db" } }, { "key": "2664", "attributes": { "cluster": 2, "x": -2.9219561827665084, "y": 39.99935039393615, "size": 2, "color": "#4b94db" } }, { "key": "2665", "attributes": { "cluster": 1, "x": 31.675078666921998, "y": -26.966921729352883, "size": 1, "color": "#762e2e" } }, { "key": "2666", "attributes": { "cluster": 1, "x": 31.67507866692199, "y": -44.28742980504166, "size": 1, "color": "#762e2e" } }, { "key": "2667", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -44.287429805041675, "size": 1, "color": "#762e2e" } }, { "key": "2668", "attributes": { "cluster": 0, "x": -43.61794484645873, "y": -9.646413653664123, "size": 2, "color": "#e36d0" } }, { "key": "2669", "attributes": { "cluster": 0, "x": -79.61794484645876, "y": -9.64641365366413, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2670", "attributes": { "cluster": 2, "x": 22.078043817233517, "y": 48.65960443178054, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2671", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -26.966921729352897, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2672", "attributes": { "cluster": 1, "x": 30.67507866692199, "y": -32.163074152059515, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2673", "attributes": { "cluster": 1, "x": 30.67507866692199, "y": -39.09127738233503, "size": 1, "color": "#762e2e" } }, { "key": "2674", "attributes": { "cluster": 0, "x": -43.61794484645872, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2675", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -39.09127738233504, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2676", "attributes": { "cluster": 2, "x": 22.07804381723352, "y": 93.69292542857133, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2677", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -32.16307415205953, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2678", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -4.450261230957501, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "2679", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -66.80409030343705, "size": 1, "color": "#762e2e" } }, { "key": "2680", "attributes": { "cluster": 0, "x": -30.61794484645874, "y": -28.698972536921776, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2681", "attributes": { "cluster": 1, "x": 64.675078666922, "y": -4.450261230957494, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2682", "attributes": { "cluster": 1, "x": 58.675078666921976, "y": -66.80409030343706, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2683", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": -58.143836265592675, "size": 1, "color": "#762e2e" } }, { "key": "2684", "attributes": { "cluster": 1, "x": 83.675078666922, "y": -13.110515268801887, "size": 2, "color": "#762e2e" } }, { "key": "2685", "attributes": { "cluster": 1, "x": 39.67507866692198, "y": -13.110515268801883, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "2686", "attributes": { "cluster": 0, "x": -92.61794484645874, "y": -42.55537899747278, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2687", "attributes": { "cluster": 0, "x": -30.61794484645874, "y": -42.55537899747279, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2688", "attributes": { "cluster": 0, "x": -92.61794484645874, "y": -28.698972536921765, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2689", "attributes": { "cluster": 2, "x": -21.921956182766497, "y": 93.69292542857133, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2690", "attributes": { "cluster": 2, "x": -21.9219561827665, "y": 48.65960443178054, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "2691", "attributes": { "cluster": 2, "x": 5.07804381723351, "y": 39.999350393936155, "size": 2, "color": "#4b94db" } }, { "key": "2692", "attributes": { "cluster": 2, "x": -4.9219561827664915, "y": 102.35317946641571, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2693", "attributes": { "cluster": 1, "x": 39.675078666921976, "y": -58.14383626559267, "size": 1, "color": "#762e2e" } }, { "key": "2694", "attributes": { "cluster": 2, "x": -4.921956182766497, "y": 39.99935039393614, "size": 1, "color": "#4b94db" } }, { "key": "2695", "attributes": { "cluster": 2, "x": 5.078043817233516, "y": 102.35317946641572, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2696", "attributes": { "cluster": 0, "x": -49.617944846458734, "y": -65.07203949586818, "size": 1, "color": "#e36d0" } }, { "key": "2697", "attributes": { "cluster": 0, "x": -73.61794484645874, "y": -6.182312038526376, "size": 1, "color": "#e36d0" } }, { "key": "2698", "attributes": { "cluster": 2, "x": -15.921956182766513, "y": 97.15702704370908, "size": 1, "color": "#4b94db" } }, { "key": "2699", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -65.0720394958682, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2700", "attributes": { "cluster": 0, "x": -49.61794484645873, "y": -6.182312038526366, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2701", "attributes": { "cluster": 2, "x": -15.921956182766502, "y": 45.19550281664277, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2702", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -4.450261230957491, "size": 1, "color": "#e36d0" } }, { "key": "2703", "attributes": { "cluster": 0, "x": -54.617944846458734, "y": -66.80409030343706, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2704", "attributes": { "cluster": 2, "x": 16.07804381723353, "y": 45.19550281664279, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2705", "attributes": { "cluster": 2, "x": 16.07804381723352, "y": 97.15702704370909, "size": 2, "color": "#4b94db" } }, { "key": "2706", "attributes": { "cluster": 0, "x": -54.61794484645873, "y": -4.450261230957487, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2707", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": -66.80409030343708, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2708", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -66.80409030343705, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2709", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": -4.450261230957501, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2710", "attributes": { "cluster": 2, "x": -17.9219561827665, "y": 45.19550281664277, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2711", "attributes": { "cluster": 1, "x": 56.67507866692198, "y": -66.80409030343706, "size": 1, "color": "#762e2e" } }, { "key": "2712", "attributes": { "cluster": 0, "x": -33.617944846458734, "y": -51.215633035317175, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2713", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -4.450261230957491, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "2714", "attributes": { "cluster": 0, "x": -33.617944846458734, "y": -20.03871849907739, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2715", "attributes": { "cluster": 1, "x": 45.67507866692197, "y": -9.64641365366413, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2716", "attributes": { "cluster": 0, "x": -89.61794484645876, "y": -20.038718499077383, "size": 1, "color": "#e36d0" } }, { "key": "2717", "attributes": { "cluster": 2, "x": 18.07804381723352, "y": 97.15702704370909, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2718", "attributes": { "cluster": 1, "x": 45.675078666921976, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2719", "attributes": { "cluster": 0, "x": -89.61794484645876, "y": -51.21563303531717, "size": 1, "color": "#e36d0" } }, { "key": "2720", "attributes": { "cluster": 0, "x": -88.61794484645876, "y": -52.94768384288604, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2721", "attributes": { "cluster": 1, "x": 77.67507866692202, "y": -61.60793788073043, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2722", "attributes": { "cluster": 1, "x": 77.675078666922, "y": -9.646413653664123, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2723", "attributes": { "cluster": 2, "x": -17.92195618276651, "y": 97.15702704370908, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2724", "attributes": { "cluster": 1, "x": 43.675078666921976, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2725", "attributes": { "cluster": 0, "x": -40.61794484645873, "y": -59.87588707316155, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2726", "attributes": { "cluster": 0, "x": -34.617944846458734, "y": -18.306667691508515, "size": 1, "color": "#e36d0" } }, { "key": "2727", "attributes": { "cluster": 1, "x": 79.675078666922, "y": -9.646413653664123, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2728", "attributes": { "cluster": 1, "x": 43.67507866692197, "y": -9.64641365366413, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "2729", "attributes": { "cluster": 2, "x": 18.07804381723353, "y": 45.19550281664279, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2730", "attributes": { "cluster": 1, "x": 79.67507866692202, "y": -61.60793788073043, "size": 1, "color": "#762e2e" } }, { "key": "2731", "attributes": { "cluster": 2, "x": 31.07804381723351, "y": 78.10446816045143, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2732", "attributes": { "cluster": 2, "x": -30.92195618276649, "y": 64.24806169990043, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2733", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -28.698972536921776, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2734", "attributes": { "cluster": 1, "x": 30.67507866692199, "y": -42.55537899747278, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2735", "attributes": { "cluster": 2, "x": 31.07804381723351, "y": 64.24806169990042, "size": 1, "color": "#4b94db" } }, { "key": "2736", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -42.55537899747279, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2737", "attributes": { "cluster": 1, "x": 30.67507866692199, "y": -28.698972536921765, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2738", "attributes": { "cluster": 1, "x": 73.67507866692199, "y": -65.07203949586818, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2739", "attributes": { "cluster": 0, "x": -82.61794484645876, "y": -11.378464461233008, "size": 2, "color": "#e36d0" } }, { "key": "2740", "attributes": { "cluster": 0, "x": -82.61794484645876, "y": -59.87588707316156, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2741", "attributes": { "cluster": 2, "x": -30.92195618276649, "y": 78.10446816045145, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2742", "attributes": { "cluster": 0, "x": -40.61794484645873, "y": -11.378464461233001, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2743", "attributes": { "cluster": 1, "x": 49.67507866692198, "y": -6.182312038526376, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2744", "attributes": { "cluster": 1, "x": 49.675078666921976, "y": -65.0720394958682, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2745", "attributes": { "cluster": 2, "x": 12.078043817233514, "y": 41.73140120150503, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2746", "attributes": { "cluster": 0, "x": -88.61794484645876, "y": -18.30666769150851, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2747", "attributes": { "cluster": 2, "x": -11.921956182766497, "y": 100.62112865884683, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2748", "attributes": { "cluster": 0, "x": -34.617944846458734, "y": -52.94768384288605, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2749", "attributes": { "cluster": 2, "x": -11.921956182766502, "y": 41.73140120150502, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2750", "attributes": { "cluster": 2, "x": 12.07804381723352, "y": 100.62112865884684, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2751", "attributes": { "cluster": 0, "x": -32.61794484645875, "y": -49.48358222774831, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2752", "attributes": { "cluster": 1, "x": 73.675078666922, "y": -6.182312038526366, "size": 1, "color": "#762e2e" } }, { "key": "2753", "attributes": { "cluster": 1, "x": 54.67507866692198, "y": -4.450261230957491, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2754", "attributes": { "cluster": 0, "x": -30.61794484645874, "y": -35.627175767197286, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2755", "attributes": { "cluster": 2, "x": -6.921956182766497, "y": 102.35317946641572, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2756", "attributes": { "cluster": 2, "x": 7.078043817233516, "y": 39.99935039393614, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2757", "attributes": { "cluster": 2, "x": 7.078043817233522, "y": 102.35317946641572, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2758", "attributes": { "cluster": 0, "x": -29.61794484645874, "y": -33.89512495962841, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "2759", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -66.80409030343706, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2760", "attributes": { "cluster": 2, "x": -6.921956182766503, "y": 39.99935039393614, "size": 2, "color": "#4b94db" } }, { "key": "2761", "attributes": { "cluster": 1, "x": 68.675078666922, "y": -4.450261230957487, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2762", "attributes": { "cluster": 1, "x": 54.675078666921976, "y": -66.80409030343708, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2763", "attributes": { "cluster": 2, "x": 28.078043817233517, "y": 55.587807662056036, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2764", "attributes": { "cluster": 2, "x": 28.078043817233517, "y": 86.76472219829581, "size": 1, "color": "#4b94db" } }, { "key": "2765", "attributes": { "cluster": 0, "x": -90.61794484645873, "y": -21.77076930664625, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2766", "attributes": { "cluster": 0, "x": -92.61794484645874, "y": -35.62717576719727, "size": 0, "color": "#e36d0" } }, { "key": "2767", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -51.215633035317175, "size": 3, "color": "#762e2e" } }, { "key": "2768", "attributes": { "cluster": 0, "x": -93.61794484645874, "y": -37.35922657476615, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2769", "attributes": { "cluster": 2, "x": -27.921956182766497, "y": 86.76472219829583, "size": 1, "color": "#4b94db" } }, { "key": "2770", "attributes": { "cluster": 2, "x": -27.921956182766497, "y": 55.58780766205604, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2771", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -20.03871849907739, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2772", "attributes": { "cluster": 2, "x": -26.921956182766497, "y": 53.85575685448717, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2773", "attributes": { "cluster": 2, "x": 21.078043817233524, "y": 46.92755362421166, "size": 2, "color": "#4b94db" } }, { "key": "2774", "attributes": { "cluster": 0, "x": -90.61794484645876, "y": -49.483582227748286, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2775", "attributes": { "cluster": 0, "x": -32.617944846458734, "y": -21.770769306646272, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2776", "attributes": { "cluster": 1, "x": 33.67507866692198, "y": -20.038718499077383, "size": 1, "color": "#762e2e" } }, { "key": "2777", "attributes": { "cluster": 1, "x": 33.67507866692198, "y": -51.21563303531717, "size": 2, "color": "#762e2e" } }, { "key": "2778", "attributes": { "cluster": 1, "x": 34.67507866692198, "y": -52.94768384288604, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2779", "attributes": { "cluster": 0, "x": -35.617944846458734, "y": -16.574616883939637, "size": 1, "color": "#e36d0" } }, { "key": "2780", "attributes": { "cluster": 2, "x": 27.078043817233517, "y": 88.4967730058647, "size": 1, "color": "#4b94db" } }, { "key": "2781", "attributes": { "cluster": 1, "x": 82.675078666922, "y": -59.87588707316155, "size": 1, "color": "#762e2e" } }, { "key": "2782", "attributes": { "cluster": 2, "x": -20.921956182766504, "y": 95.4249762361402, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2783", "attributes": { "cluster": 2, "x": -20.9219561827665, "y": 46.927553624211654, "size": 2, "color": "#4b94db" } }, { "key": "2784", "attributes": { "cluster": 0, "x": -87.61794484645876, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2785", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -18.306667691508515, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2786", "attributes": { "cluster": 1, "x": 40.675078666921976, "y": -11.378464461233008, "size": 1, "color": "#762e2e" } }, { "key": "2787", "attributes": { "cluster": 2, "x": 21.07804381723352, "y": 95.42497623614021, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2788", "attributes": { "cluster": 1, "x": 40.675078666921976, "y": -59.87588707316156, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "2789", "attributes": { "cluster": 0, "x": -35.617944846458734, "y": -54.67973465045493, "size": 2, "color": "#e36d0" } }, { "key": "2790", "attributes": { "cluster": 1, "x": 82.675078666922, "y": -11.378464461233001, "size": 1, "color": "#762e2e" } }, { "key": "2791", "attributes": { "cluster": 1, "x": 34.67507866692198, "y": -18.30666769150851, "size": 1, "color": "#762e2e" } }, { "key": "2792", "attributes": { "cluster": 0, "x": -87.61794484645876, "y": -16.574616883939626, "size": 1, "color": "#e36d0" } }, { "key": "2793", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2794", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -49.48358222774831, "size": 1, "color": "#762e2e" } }, { "key": "2795", "attributes": { "cluster": 2, "x": -26.921956182766497, "y": 88.4967730058647, "size": 2, "color": "#4b94db" } }, { "key": "2796", "attributes": { "cluster": 0, "x": -91.61794484645873, "y": -23.502820114215126, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2797", "attributes": { "cluster": 2, "x": 27.078043817233517, "y": 53.85575685448716, "size": 1, "color": "#4b94db" } }, { "key": "2798", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -35.627175767197286, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2799", "attributes": { "cluster": 0, "x": -31.617944846458748, "y": -47.75153142017943, "size": 3, "color": "#e36d0" } }, { "key": "2800", "attributes": { "cluster": 2, "x": 29.078043817233503, "y": 57.319858469624904, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2801", "attributes": { "cluster": 0, "x": -31.617944846458734, "y": -23.502820114215147, "size": 1, "color": "#e36d0" } }, { "key": "2802", "attributes": { "cluster": 2, "x": 31.07804381723351, "y": 71.17626493017593, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2803", "attributes": { "cluster": 0, "x": -91.61794484645876, "y": -47.75153142017941, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2804", "attributes": { "cluster": 0, "x": -52.617944846458734, "y": -66.80409030343706, "size": 1, "color": "#e36d0" } }, { "key": "2805", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -4.450261230957491, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2806", "attributes": { "cluster": 0, "x": -93.61794484645874, "y": -30.43102334449064, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2807", "attributes": { "cluster": 2, "x": 32.07804381723351, "y": 72.9083157377448, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2808", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -33.89512495962841, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2809", "attributes": { "cluster": 0, "x": -93.61794484645874, "y": -40.823328189903904, "size": 1, "color": "#e36d0" } }, { "key": "2810", "attributes": { "cluster": 0, "x": -29.61794484645874, "y": -40.82332818990392, "size": 3, "color": "#e36d0" } }, { "key": "2811", "attributes": { "cluster": 1, "x": 32.675078666922, "y": -21.77076930664625, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2812", "attributes": { "cluster": 2, "x": -28.921956182766483, "y": 85.03267139072696, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2813", "attributes": { "cluster": 1, "x": 30.67507866692199, "y": -35.62717576719727, "size": 1, "color": "#762e2e" } }, { "key": "2814", "attributes": { "cluster": 0, "x": -29.61794484645874, "y": -30.431023344490654, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2815", "attributes": { "cluster": 0, "x": -52.61794484645873, "y": -4.450261230957487, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2816", "attributes": { "cluster": 1, "x": 29.67507866692199, "y": -37.35922657476615, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2817", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -66.80409030343708, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2818", "attributes": { "cluster": 0, "x": -36.617944846458734, "y": -14.842566076370762, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2819", "attributes": { "cluster": 0, "x": -86.61794484645876, "y": -56.4117854580238, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2820", "attributes": { "cluster": 0, "x": -36.617944846458734, "y": -56.4117854580238, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2821", "attributes": { "cluster": 1, "x": 32.67507866692198, "y": -49.483582227748286, "size": 1, "color": "#762e2e" } }, { "key": "2822", "attributes": { "cluster": 0, "x": -86.61794484645876, "y": -14.842566076370762, "size": 1, "color": "#e36d0" } }, { "key": "2823", "attributes": { "cluster": 2, "x": -30.92195618276649, "y": 71.17626493017593, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2824", "attributes": { "cluster": 0, "x": -76.61794484645876, "y": -63.339988688299314, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2825", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -21.770769306646272, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2826", "attributes": { "cluster": 0, "x": -46.61794484645873, "y": -7.914362846095244, "size": 1, "color": "#e36d0" } }, { "key": "2827", "attributes": { "cluster": 0, "x": -76.61794484645877, "y": -7.914362846095251, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2828", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -16.574616883939637, "size": 2, "color": "#762e2e" } }, { "key": "2829", "attributes": { "cluster": 0, "x": -46.61794484645871, "y": -63.33998868829931, "size": 1, "color": "#e36d0" } }, { "key": "2830", "attributes": { "cluster": 0, "x": -30.617944846458748, "y": -46.01948061261055, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2831", "attributes": { "cluster": 0, "x": -92.61794484645873, "y": -25.234870921784008, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2832", "attributes": { "cluster": 0, "x": -92.61794484645874, "y": -46.019480612610536, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2833", "attributes": { "cluster": 1, "x": 35.67507866692198, "y": -54.67973465045492, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2834", "attributes": { "cluster": 0, "x": -30.61794484645874, "y": -25.234870921784022, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2835", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -54.67973465045493, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2836", "attributes": { "cluster": 1, "x": 35.67507866692198, "y": -16.574616883939626, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2837", "attributes": { "cluster": 0, "x": -47.61794484645873, "y": -6.182312038526366, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2838", "attributes": { "cluster": 1, "x": 31.675078666921998, "y": -23.502820114215126, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2839", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -65.0720394958682, "size": 2, "color": "#e36d0" } }, { "key": "2840", "attributes": { "cluster": 2, "x": -31.92195618276649, "y": 69.44421412260706, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2841", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -47.75153142017943, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2842", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -23.502820114215147, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2843", "attributes": { "cluster": 1, "x": 31.675078666921983, "y": -47.75153142017941, "size": 1, "color": "#762e2e" } }, { "key": "2844", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -66.80409030343706, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2845", "attributes": { "cluster": 0, "x": -47.61794484645873, "y": -65.07203949586818, "size": 2, "color": "#e36d0" } }, { "key": "2846", "attributes": { "cluster": 2, "x": -28.921956182766497, "y": 57.319858469624926, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2847", "attributes": { "cluster": 1, "x": 52.67507866692198, "y": -4.450261230957491, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "2848", "attributes": { "cluster": 1, "x": 29.67507866692199, "y": -30.43102334449064, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2849", "attributes": { "cluster": 1, "x": 29.67507866692199, "y": -40.823328189903904, "size": 1, "color": "#762e2e" } }, { "key": "2850", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -6.18231203852638, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2851", "attributes": { "cluster": 0, "x": -81.61794484645876, "y": -9.646413653664133, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "2852", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -40.82332818990392, "size": 1, "color": "#762e2e" } }, { "key": "2853", "attributes": { "cluster": 2, "x": 29.078043817233517, "y": 85.03267139072695, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2854", "attributes": { "cluster": 0, "x": -81.61794484645876, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2855", "attributes": { "cluster": 0, "x": -41.61794484645872, "y": -61.607937880730425, "size": 2, "color": "#e36d0" } }, { "key": "2856", "attributes": { "cluster": 0, "x": -41.61794484645873, "y": -9.646413653664123, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2857", "attributes": { "cluster": 0, "x": -85.61794484645876, "y": -58.143836265592675, "size": 1, "color": "#e36d0" } }, { "key": "2858", "attributes": { "cluster": 0, "x": -37.617944846458734, "y": -13.110515268801883, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2859", "attributes": { "cluster": 2, "x": 26.078043817233517, "y": 90.22882381343358, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2860", "attributes": { "cluster": 2, "x": -25.921956182766497, "y": 52.12370604691829, "size": 2, "color": "#4b94db" } }, { "key": "2861", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -30.431023344490654, "size": 1, "color": "#762e2e" } }, { "key": "2862", "attributes": { "cluster": 0, "x": -85.61794484645876, "y": -13.110515268801873, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2863", "attributes": { "cluster": 0, "x": -37.617944846458734, "y": -58.14383626559268, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2864", "attributes": { "cluster": 0, "x": -61.61794484645873, "y": -2.7182104233886264, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2865", "attributes": { "cluster": 2, "x": 26.078043817233517, "y": 52.12370604691828, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "2866", "attributes": { "cluster": 0, "x": -61.617944846458755, "y": -68.53614111100593, "size": 1, "color": "#e36d0" } }, { "key": "2867", "attributes": { "cluster": 0, "x": -59.61794484645874, "y": -68.53614111100593, "size": 1, "color": "#e36d0" } }, { "key": "2868", "attributes": { "cluster": 2, "x": -25.921956182766497, "y": 90.22882381343359, "size": 2, "color": "#4b94db" } }, { "key": "2869", "attributes": { "cluster": 2, "x": -29.921956182766483, "y": 83.30062058315808, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2870", "attributes": { "cluster": 0, "x": -59.617944846458734, "y": -2.7182104233886193, "size": 1, "color": "#e36d0" } }, { "key": "2871", "attributes": { "cluster": 1, "x": 70.675078666922, "y": -4.450261230957487, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2872", "attributes": { "cluster": 0, "x": -63.61794484645874, "y": -2.7182104233886264, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2873", "attributes": { "cluster": 0, "x": -63.61794484645875, "y": -68.53614111100595, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2874", "attributes": { "cluster": 0, "x": -50.617944846458734, "y": -66.80409030343705, "size": 2, "color": "#e36d0" } }, { "key": "2875", "attributes": { "cluster": 2, "x": 30.078043817233503, "y": 59.05190927719378, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2876", "attributes": { "cluster": 2, "x": 30.078043817233517, "y": 83.30062058315806, "size": 2, "color": "#4b94db" } }, { "key": "2877", "attributes": { "cluster": 2, "x": -29.921956182766497, "y": 59.0519092771938, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2878", "attributes": { "cluster": 1, "x": 52.675078666921976, "y": -66.80409030343708, "size": 3, "color": "#762e2e" } }, { "key": "2879", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -4.450261230957501, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2880", "attributes": { "cluster": 2, "x": 9.078043817233516, "y": 39.99935039393614, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2881", "attributes": { "cluster": 2, "x": -8.921956182766499, "y": 102.35317946641572, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2882", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -14.842566076370762, "size": 1, "color": "#762e2e" } }, { "key": "2883", "attributes": { "cluster": 1, "x": 36.67507866692198, "y": -56.4117854580238, "size": 2, "color": "#762e2e" } }, { "key": "2884", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -66.80409030343708, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "2885", "attributes": { "cluster": 2, "x": -31.92195618276649, "y": 76.37241735288256, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2886", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -56.4117854580238, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2887", "attributes": { "cluster": 1, "x": 36.67507866692198, "y": -14.842566076370762, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2888", "attributes": { "cluster": 0, "x": -50.61794484645873, "y": -4.450261230957487, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2889", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -2.7182104233886264, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2890", "attributes": { "cluster": 1, "x": 46.675078666921976, "y": -63.339988688299314, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2891", "attributes": { "cluster": 1, "x": 76.675078666922, "y": -7.914362846095244, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2892", "attributes": { "cluster": 2, "x": -31.92195618276649, "y": 65.9801125074693, "size": 1, "color": "#4b94db" } }, { "key": "2893", "attributes": { "cluster": 2, "x": 32.07804381723351, "y": 65.9801125074693, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2894", "attributes": { "cluster": 1, "x": 46.67507866692196, "y": -7.914362846095251, "size": 0, "color": "#762e2e" } }, { "key": "2895", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": -68.53614111100593, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2896", "attributes": { "cluster": 2, "x": 32.07804381723351, "y": 76.37241735288256, "size": 1, "color": "#4b94db" } }, { "key": "2897", "attributes": { "cluster": 2, "x": 9.07804381723352, "y": 102.35317946641572, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2898", "attributes": { "cluster": 0, "x": -57.617944846458734, "y": -2.718210423388612, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2899", "attributes": { "cluster": 2, "x": -8.921956182766502, "y": 39.99935039393614, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2900", "attributes": { "cluster": 2, "x": 25.078043817233517, "y": 91.96087462100245, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2901", "attributes": { "cluster": 1, "x": 76.67507866692202, "y": -63.33998868829931, "size": 1, "color": "#762e2e" } }, { "key": "2902", "attributes": { "cluster": 0, "x": -65.61794484645876, "y": -68.53614111100595, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2903", "attributes": { "cluster": 0, "x": -29.617944846458748, "y": -44.287429805041675, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2904", "attributes": { "cluster": 2, "x": -24.921956182766497, "y": 50.39165523934942, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2905", "attributes": { "cluster": 2, "x": 25.078043817233517, "y": 50.39165523934942, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2906", "attributes": { "cluster": 0, "x": -29.61794484645874, "y": -26.9669217293529, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2907", "attributes": { "cluster": 0, "x": -93.61794484645873, "y": -26.966921729352883, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2908", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -46.01948061261055, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2909", "attributes": { "cluster": 2, "x": -24.921956182766497, "y": 91.96087462100245, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2910", "attributes": { "cluster": 1, "x": 30.675078666921998, "y": -25.234870921784008, "size": 2, "color": "#762e2e" } }, { "key": "2911", "attributes": { "cluster": 2, "x": -14.921956182766502, "y": 43.4634520090739, "size": 2, "color": "#4b94db" } }, { "key": "2912", "attributes": { "cluster": 1, "x": 30.67507866692199, "y": -46.019480612610536, "size": 1, "color": "#762e2e" } }, { "key": "2913", "attributes": { "cluster": 2, "x": 15.07804381723352, "y": 98.88907785127796, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2914", "attributes": { "cluster": 2, "x": -14.921956182766518, "y": 98.88907785127796, "size": 0, "color": "#4b94db" } }, { "key": "2915", "attributes": { "cluster": 0, "x": -93.61794484645874, "y": -44.287429805041654, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2916", "attributes": { "cluster": 2, "x": 15.078043817233535, "y": 43.463452009073904, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2917", "attributes": { "cluster": 2, "x": 31.078043817233503, "y": 60.78396008476266, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2918", "attributes": { "cluster": 2, "x": -30.921956182766483, "y": 81.56856977558921, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2919", "attributes": { "cluster": 2, "x": -30.92195618276649, "y": 60.783960084762676, "size": 2, "color": "#4b94db" } }, { "key": "2920", "attributes": { "cluster": 0, "x": -29.61794484645874, "y": -37.35922657476616, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "2921", "attributes": { "cluster": 2, "x": 31.07804381723351, "y": 81.5685697755892, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2922", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -25.234870921784022, "size": 1, "color": "#762e2e" } }, { "key": "2923", "attributes": { "cluster": 2, "x": 14.07804381723352, "y": 100.62112865884684, "size": 1, "color": "#4b94db" } }, { "key": "2924", "attributes": { "cluster": 0, "x": -93.61794484645874, "y": -33.8951249596284, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2925", "attributes": { "cluster": 2, "x": -13.921956182766502, "y": 41.73140120150502, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2926", "attributes": { "cluster": 1, "x": 75.675078666922, "y": -6.182312038526366, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "2927", "attributes": { "cluster": 2, "x": 14.078043817233526, "y": 41.73140120150504, "size": 1, "color": "#4b94db" } }, { "key": "2928", "attributes": { "cluster": 0, "x": -94.61794484645874, "y": -39.09127738233503, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2929", "attributes": { "cluster": 1, "x": 47.675078666921976, "y": -65.0720394958682, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2930", "attributes": { "cluster": 2, "x": -13.92195618276651, "y": 100.62112865884683, "size": 1, "color": "#4b94db" } }, { "key": "2931", "attributes": { "cluster": 2, "x": -19.92195618276651, "y": 97.15702704370908, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2932", "attributes": { "cluster": 2, "x": -19.9219561827665, "y": 45.19550281664277, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2933", "attributes": { "cluster": 0, "x": -28.61794484645874, "y": -39.09127738233504, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2934", "attributes": { "cluster": 2, "x": 20.07804381723353, "y": 45.19550281664279, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2935", "attributes": { "cluster": 0, "x": -28.61794484645874, "y": -32.16307415205953, "size": 1, "color": "#e36d0" } }, { "key": "2936", "attributes": { "cluster": 1, "x": 75.675078666922, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2937", "attributes": { "cluster": 2, "x": 20.07804381723352, "y": 97.15702704370909, "size": 1, "color": "#4b94db" } }, { "key": "2938", "attributes": { "cluster": 2, "x": -23.921956182766497, "y": 48.65960443178054, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2939", "attributes": { "cluster": 2, "x": 24.078043817233517, "y": 93.69292542857133, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2940", "attributes": { "cluster": 0, "x": -94.61794484645874, "y": -32.163074152059515, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2941", "attributes": { "cluster": 2, "x": -23.921956182766497, "y": 93.69292542857134, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2942", "attributes": { "cluster": 2, "x": 24.078043817233517, "y": 48.65960443178052, "size": 2, "color": "#4b94db" } }, { "key": "2943", "attributes": { "cluster": 1, "x": 47.675078666921976, "y": -6.18231203852638, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2944", "attributes": { "cluster": 2, "x": 0.07804381723352019, "y": 104.08523027398459, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2945", "attributes": { "cluster": 2, "x": 0.07804381723349849, "y": 38.26729958636728, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "2946", "attributes": { "cluster": 2, "x": 2.07804381723351, "y": 38.26729958636728, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2947", "attributes": { "cluster": 0, "x": -38.61794484645873, "y": -59.87588707316155, "size": 0, "color": "#e36d0" } }, { "key": "2948", "attributes": { "cluster": 0, "x": -84.61794484645876, "y": -11.378464461233008, "size": 2, "color": "#e36d0" } }, { "key": "2949", "attributes": { "cluster": 0, "x": -84.61794484645876, "y": -59.87588707316155, "size": 2, "color": "#e36d0" } }, { "key": "2950", "attributes": { "cluster": 2, "x": 2.078043817233519, "y": 104.08523027398459, "size": 1, "color": "#4b94db" } }, { "key": "2951", "attributes": { "cluster": 2, "x": -1.921956182766491, "y": 104.08523027398459, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2952", "attributes": { "cluster": 1, "x": 41.67507866692197, "y": -9.646413653664133, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "2953", "attributes": { "cluster": 0, "x": -38.61794484645873, "y": -11.378464461233008, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2954", "attributes": { "cluster": 1, "x": 41.675078666921976, "y": -61.60793788073043, "size": 1, "color": "#762e2e" } }, { "key": "2955", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -2.7182104233886193, "size": 1, "color": "#e36d0" } }, { "key": "2956", "attributes": { "cluster": 2, "x": -1.9219561827665004, "y": 38.26729958636727, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "2957", "attributes": { "cluster": 2, "x": 11.078043817233516, "y": 39.999350393936155, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2958", "attributes": { "cluster": 0, "x": -55.61794484645875, "y": -68.53614111100595, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "2959", "attributes": { "cluster": 0, "x": -55.617944846458734, "y": -2.718210423388612, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2960", "attributes": { "cluster": 1, "x": 81.67507866692202, "y": -61.607937880730425, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2961", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -68.53614111100595, "size": 2, "color": "#e36d0" } }, { "key": "2962", "attributes": { "cluster": 0, "x": -44.61794484645873, "y": -7.914362846095244, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2963", "attributes": { "cluster": 0, "x": -78.61794484645876, "y": -63.339988688299314, "size": 2, "color": "#e36d0" } }, { "key": "2964", "attributes": { "cluster": 2, "x": -10.921956182766499, "y": 102.35317946641571, "size": 1, "color": "#4b94db" } }, { "key": "2965", "attributes": { "cluster": 2, "x": -10.921956182766502, "y": 39.99935039393614, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2966", "attributes": { "cluster": 2, "x": 11.07804381723352, "y": 102.35317946641572, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2967", "attributes": { "cluster": 0, "x": -44.61794484645871, "y": -63.3399886882993, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2968", "attributes": { "cluster": 2, "x": -3.9219561827664897, "y": 104.08523027398459, "size": 2, "color": "#4b94db" } }, { "key": "2969", "attributes": { "cluster": 1, "x": 81.675078666922, "y": -9.646413653664123, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2970", "attributes": { "cluster": 0, "x": -78.61794484645877, "y": -7.914362846095258, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2971", "attributes": { "cluster": 0, "x": -80.61794484645877, "y": -7.914362846095255, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2972", "attributes": { "cluster": 1, "x": 37.67507866692198, "y": -58.143836265592675, "size": 1, "color": "#762e2e" } }, { "key": "2973", "attributes": { "cluster": 2, "x": 4.0780438172335085, "y": 38.26729958636728, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "2974", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -13.110515268801883, "size": 1, "color": "#762e2e" } }, { "key": "2975", "attributes": { "cluster": 2, "x": 4.078043817233519, "y": 104.08523027398459, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "2976", "attributes": { "cluster": 1, "x": 37.67507866692198, "y": -13.110515268801873, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2977", "attributes": { "cluster": 0, "x": -80.61794484645876, "y": -63.339988688299314, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2978", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": -58.14383626559268, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "2979", "attributes": { "cluster": 1, "x": 61.675078666922005, "y": -2.7182104233886264, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "2980", "attributes": { "cluster": 0, "x": -42.61794484645871, "y": -63.3399886882993, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2981", "attributes": { "cluster": 0, "x": -42.61794484645873, "y": -7.914362846095244, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2982", "attributes": { "cluster": 2, "x": -3.9219561827665004, "y": 38.267299586367265, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "2983", "attributes": { "cluster": 0, "x": -94.61794484645874, "y": -42.555378997472786, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "2984", "attributes": { "cluster": 1, "x": 61.675078666921976, "y": -68.53614111100593, "size": 2, "color": "#762e2e" } }, { "key": "2985", "attributes": { "cluster": 0, "x": -28.61794484645874, "y": -28.698972536921776, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2986", "attributes": { "cluster": 0, "x": -94.61794484645874, "y": -28.698972536921765, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2987", "attributes": { "cluster": 1, "x": 63.67507866692199, "y": -68.53614111100593, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "2988", "attributes": { "cluster": 0, "x": -28.61794484645874, "y": -42.55537899747279, "size": 1, "color": "#e36d0" } }, { "key": "2989", "attributes": { "cluster": 0, "x": -32.617944846458734, "y": -18.306667691508515, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "2990", "attributes": { "cluster": 1, "x": 63.675078666922, "y": -2.7182104233886193, "size": 2, "color": "#762e2e" } }, { "key": "2991", "attributes": { "cluster": 0, "x": -90.61794484645876, "y": -52.94768384288604, "size": 2, "color": "#e36d0" } }, { "key": "2992", "attributes": { "cluster": 0, "x": -32.617944846458734, "y": -52.94768384288605, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2993", "attributes": { "cluster": 2, "x": 32.0780438172335, "y": 62.516010892331536, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2994", "attributes": { "cluster": 0, "x": -90.61794484645876, "y": -18.306667691508505, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "2995", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": -66.80409030343705, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "2996", "attributes": { "cluster": 2, "x": 32.07804381723351, "y": 79.83651896802031, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "2997", "attributes": { "cluster": 2, "x": -31.921956182766483, "y": 79.83651896802033, "size": 1, "color": "#4b94db" } }, { "key": "2998", "attributes": { "cluster": 2, "x": -31.92195618276649, "y": 62.51601089233155, "size": 1, "color": "#4b94db" } }, { "key": "2999", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -4.450261230957501, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3000", "attributes": { "cluster": 1, "x": 59.67507866692199, "y": -2.7182104233886264, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3001", "attributes": { "cluster": 1, "x": 59.67507866692198, "y": -68.53614111100595, "size": 2, "color": "#762e2e" } }, { "key": "3002", "attributes": { "cluster": 0, "x": -91.61794484645876, "y": -20.038718499077383, "size": 1, "color": "#e36d0" } }, { "key": "3003", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -66.80409030343705, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3004", "attributes": { "cluster": 0, "x": -91.61794484645876, "y": -51.21563303531717, "size": 1, "color": "#e36d0" } }, { "key": "3005", "attributes": { "cluster": 0, "x": -31.617944846458734, "y": -51.215633035317175, "size": 1, "color": "#e36d0" } }, { "key": "3006", "attributes": { "cluster": 2, "x": 32.07804381723351, "y": 69.44421412260705, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3007", "attributes": { "cluster": 0, "x": -31.617944846458734, "y": -20.038718499077394, "size": 1, "color": "#e36d0" } }, { "key": "3008", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": -4.450261230957487, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3009", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -66.80409030343708, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3010", "attributes": { "cluster": 0, "x": -53.617944846458734, "y": -68.53614111100595, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3011", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -2.718210423388612, "size": 1, "color": "#e36d0" } }, { "key": "3012", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -68.53614111100595, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3013", "attributes": { "cluster": 1, "x": 50.67507866692198, "y": -4.450261230957501, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3014", "attributes": { "cluster": 2, "x": -31.92195618276649, "y": 72.90831573774481, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3015", "attributes": { "cluster": 2, "x": -32.92195618276649, "y": 67.71216331503818, "size": 1, "color": "#4b94db" } }, { "key": "3016", "attributes": { "cluster": 2, "x": 33.07804381723351, "y": 67.71216331503817, "size": 2, "color": "#4b94db" } }, { "key": "3017", "attributes": { "cluster": 1, "x": 50.675078666921976, "y": -66.80409030343708, "size": 2, "color": "#762e2e" } }, { "key": "3018", "attributes": { "cluster": 2, "x": 33.07804381723351, "y": 74.64036654531368, "size": 1, "color": "#4b94db" } }, { "key": "3019", "attributes": { "cluster": 0, "x": -53.61794484645873, "y": -2.718210423388612, "size": 1, "color": "#e36d0" } }, { "key": "3020", "attributes": { "cluster": 1, "x": 72.675078666922, "y": -4.450261230957487, "size": 1, "color": "#762e2e" } }, { "key": "3021", "attributes": { "cluster": 2, "x": -32.92195618276649, "y": 74.6403665453137, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3022", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -2.7182104233886264, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3023", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -68.53614111100593, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3024", "attributes": { "cluster": 0, "x": -89.61794484645876, "y": -54.67973465045492, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "3025", "attributes": { "cluster": 1, "x": 65.675078666922, "y": -2.718210423388612, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3026", "attributes": { "cluster": 0, "x": -33.617944846458734, "y": -16.574616883939637, "size": 1, "color": "#e36d0" } }, { "key": "3027", "attributes": { "cluster": 1, "x": 57.67507866692198, "y": -68.53614111100595, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3028", "attributes": { "cluster": 2, "x": 23.078043817233524, "y": 46.92755362421166, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3029", "attributes": { "cluster": 2, "x": -22.921956182766504, "y": 95.4249762361402, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3030", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -44.287429805041675, "size": 2, "color": "#762e2e" } }, { "key": "3031", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -26.9669217293529, "size": 1, "color": "#762e2e" } }, { "key": "3032", "attributes": { "cluster": 2, "x": -22.9219561827665, "y": 46.92755362421166, "size": 1, "color": "#4b94db" } }, { "key": "3033", "attributes": { "cluster": 1, "x": 29.675078666921998, "y": -26.966921729352883, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3034", "attributes": { "cluster": 0, "x": -89.61794484645876, "y": -16.57461688393963, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3035", "attributes": { "cluster": 0, "x": -33.617944846458734, "y": -54.67973465045493, "size": 1, "color": "#e36d0" } }, { "key": "3036", "attributes": { "cluster": 2, "x": 23.07804381723352, "y": 95.4249762361402, "size": 1, "color": "#4b94db" } }, { "key": "3037", "attributes": { "cluster": 0, "x": -30.617944846458748, "y": -49.48358222774831, "size": 2, "color": "#e36d0" } }, { "key": "3038", "attributes": { "cluster": 0, "x": -92.61794484645873, "y": -21.77076930664625, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3039", "attributes": { "cluster": 2, "x": -5.921956182766485, "y": 104.08523027398459, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3040", "attributes": { "cluster": 1, "x": 29.67507866692199, "y": -44.287429805041654, "size": 1, "color": "#762e2e" } }, { "key": "3041", "attributes": { "cluster": 0, "x": -92.61794484645876, "y": -49.483582227748286, "size": 1, "color": "#e36d0" } }, { "key": "3042", "attributes": { "cluster": 2, "x": 6.078043817233504, "y": 38.26729958636727, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3043", "attributes": { "cluster": 0, "x": -30.617944846458734, "y": -21.770769306646272, "size": 1, "color": "#e36d0" } }, { "key": "3044", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -37.35922657476616, "size": 2, "color": "#762e2e" } }, { "key": "3045", "attributes": { "cluster": 2, "x": 6.078043817233516, "y": 104.08523027398459, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3046", "attributes": { "cluster": 0, "x": -34.617944846458734, "y": -14.842566076370758, "size": 1, "color": "#e36d0" } }, { "key": "3047", "attributes": { "cluster": 2, "x": -5.921956182766497, "y": 38.267299586367265, "size": 3, "color": "#4b94db" } }, { "key": "3048", "attributes": { "cluster": 1, "x": 29.67507866692199, "y": -33.8951249596284, "size": 1, "color": "#762e2e" } }, { "key": "3049", "attributes": { "cluster": 1, "x": 28.67507866692199, "y": -39.09127738233503, "size": 1, "color": "#762e2e" } }, { "key": "3050", "attributes": { "cluster": 2, "x": 17.07804381723352, "y": 98.88907785127796, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3051", "attributes": { "cluster": 0, "x": -88.61794484645876, "y": -56.4117854580238, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3052", "attributes": { "cluster": 2, "x": -16.9219561827665, "y": 43.4634520090739, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3053", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -39.09127738233504, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3054", "attributes": { "cluster": 2, "x": 17.07804381723354, "y": 43.46345200907391, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3055", "attributes": { "cluster": 2, "x": -16.921956182766518, "y": 98.88907785127796, "size": 1, "color": "#4b94db" } }, { "key": "3056", "attributes": { "cluster": 2, "x": -18.921956182766518, "y": 98.88907785127796, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3057", "attributes": { "cluster": 2, "x": -18.9219561827665, "y": 43.4634520090739, "size": 1, "color": "#4b94db" } }, { "key": "3058", "attributes": { "cluster": 2, "x": 19.07804381723354, "y": 43.463452009073904, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3059", "attributes": { "cluster": 0, "x": -39.61794484645872, "y": -61.607937880730425, "size": 1, "color": "#e36d0" } }, { "key": "3060", "attributes": { "cluster": 2, "x": 19.07804381723352, "y": 98.88907785127796, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3061", "attributes": { "cluster": 0, "x": -83.61794484645876, "y": -9.646413653664133, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3062", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -32.16307415205953, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3063", "attributes": { "cluster": 2, "x": -32.92195618276649, "y": 64.24806169990043, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3064", "attributes": { "cluster": 0, "x": -88.61794484645876, "y": -14.842566076370748, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3065", "attributes": { "cluster": 2, "x": 33.07804381723351, "y": 78.10446816045143, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3066", "attributes": { "cluster": 0, "x": -83.61794484645876, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3067", "attributes": { "cluster": 2, "x": -32.92195618276649, "y": 78.10446816045145, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3068", "attributes": { "cluster": 1, "x": 28.67507866692199, "y": -32.163074152059515, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3069", "attributes": { "cluster": 0, "x": -34.617944846458734, "y": -56.411785458023814, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3070", "attributes": { "cluster": 0, "x": -39.61794484645873, "y": -9.646413653664123, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3071", "attributes": { "cluster": 0, "x": -94.61794484645874, "y": -35.62717576719727, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3072", "attributes": { "cluster": 0, "x": -95.61794484645874, "y": -37.35922657476615, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3073", "attributes": { "cluster": 0, "x": -28.61794484645874, "y": -35.627175767197286, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3074", "attributes": { "cluster": 1, "x": 84.675078666922, "y": -59.87588707316155, "size": 2, "color": "#762e2e" } }, { "key": "3075", "attributes": { "cluster": 0, "x": -27.61794484645874, "y": -33.89512495962841, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3076", "attributes": { "cluster": 0, "x": -93.61794484645873, "y": -23.50282011421513, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3077", "attributes": { "cluster": 1, "x": 38.675078666921976, "y": -11.378464461233008, "size": 1, "color": "#762e2e" } }, { "key": "3078", "attributes": { "cluster": 1, "x": 38.675078666921976, "y": -59.87588707316155, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3079", "attributes": { "cluster": 1, "x": 84.675078666922, "y": -11.378464461233008, "size": 2, "color": "#762e2e" } }, { "key": "3080", "attributes": { "cluster": 0, "x": -29.617944846458748, "y": -47.75153142017943, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3081", "attributes": { "cluster": 1, "x": 55.675078666922, "y": -2.7182104233886193, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3082", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -68.53614111100595, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3083", "attributes": { "cluster": 0, "x": -29.617944846458734, "y": -23.502820114215147, "size": 1, "color": "#e36d0" } }, { "key": "3084", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -2.718210423388612, "size": 2, "color": "#762e2e" } }, { "key": "3085", "attributes": { "cluster": 2, "x": 33.07804381723351, "y": 64.24806169990042, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3086", "attributes": { "cluster": 0, "x": -93.61794484645876, "y": -47.75153142017941, "size": 1, "color": "#e36d0" } }, { "key": "3087", "attributes": { "cluster": 1, "x": 55.67507866692198, "y": -68.53614111100595, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3088", "attributes": { "cluster": 2, "x": 29.078043817233517, "y": 88.4967730058647, "size": 1, "color": "#4b94db" } }, { "key": "3089", "attributes": { "cluster": 1, "x": 78.675078666922, "y": -7.914362846095244, "size": 1, "color": "#762e2e" } }, { "key": "3090", "attributes": { "cluster": 2, "x": -28.921956182766497, "y": 53.85575685448717, "size": 2, "color": "#4b94db" } }, { "key": "3091", "attributes": { "cluster": 1, "x": 44.675078666921976, "y": -63.339988688299314, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "3092", "attributes": { "cluster": 0, "x": -87.61794484645876, "y": -58.143836265592675, "size": 3, "color": "#e36d0" } }, { "key": "3093", "attributes": { "cluster": 1, "x": 78.67507866692202, "y": -63.3399886882993, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "3094", "attributes": { "cluster": 1, "x": 44.67507866692196, "y": -7.914362846095258, "size": 1, "color": "#762e2e" } }, { "key": "3095", "attributes": { "cluster": 0, "x": -35.617944846458734, "y": -58.143836265592675, "size": 1, "color": "#e36d0" } }, { "key": "3096", "attributes": { "cluster": 1, "x": 42.67507866692196, "y": -7.914362846095255, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3097", "attributes": { "cluster": 1, "x": 42.675078666921976, "y": -63.339988688299314, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3098", "attributes": { "cluster": 0, "x": -35.617944846458734, "y": -13.110515268801883, "size": 2, "color": "#e36d0" } }, { "key": "3099", "attributes": { "cluster": 1, "x": 80.67507866692202, "y": -63.3399886882993, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3100", "attributes": { "cluster": 1, "x": 80.675078666922, "y": -7.914362846095244, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3101", "attributes": { "cluster": 1, "x": 28.67507866692199, "y": -42.555378997472786, "size": 1, "color": "#762e2e" } }, { "key": "3102", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -28.698972536921776, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3103", "attributes": { "cluster": 0, "x": -87.61794484645876, "y": -13.110515268801883, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3104", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": -68.53614111100595, "size": 1, "color": "#e36d0" } }, { "key": "3105", "attributes": { "cluster": 1, "x": 28.67507866692199, "y": -28.698972536921765, "size": 0, "color": "#762e2e" } }, { "key": "3106", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -42.55537899747279, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3107", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -18.306667691508515, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3108", "attributes": { "cluster": 2, "x": 29.078043817233517, "y": 53.855756854487154, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3109", "attributes": { "cluster": 1, "x": 32.67507866692198, "y": -52.94768384288604, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3110", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3111", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -2.7182104233886193, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3112", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -68.53614111100595, "size": 1, "color": "#e36d0" } }, { "key": "3113", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": -2.718210423388612, "size": 1, "color": "#e36d0" } }, { "key": "3114", "attributes": { "cluster": 1, "x": 32.67507866692198, "y": -18.306667691508505, "size": 1, "color": "#762e2e" } }, { "key": "3115", "attributes": { "cluster": 2, "x": -28.921956182766497, "y": 88.49677300586471, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3116", "attributes": { "cluster": 0, "x": -95.61794484645874, "y": -30.43102334449064, "size": 1, "color": "#e36d0" } }, { "key": "3117", "attributes": { "cluster": 2, "x": 13.078043817233523, "y": 39.999350393936155, "size": 1, "color": "#4b94db" } }, { "key": "3118", "attributes": { "cluster": 1, "x": 74.675078666922, "y": -66.80409030343705, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3119", "attributes": { "cluster": 2, "x": -12.921956182766506, "y": 102.35317946641571, "size": 2, "color": "#4b94db" } }, { "key": "3120", "attributes": { "cluster": 0, "x": -95.61794484645874, "y": -40.823328189903904, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3121", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -4.450261230957501, "size": 1, "color": "#762e2e" } }, { "key": "3122", "attributes": { "cluster": 2, "x": -29.921956182766497, "y": 86.76472219829583, "size": 3, "color": "#4b94db" } }, { "key": "3123", "attributes": { "cluster": 2, "x": -29.921956182766497, "y": 55.58780766205605, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3124", "attributes": { "cluster": 2, "x": 30.078043817233517, "y": 55.587807662056036, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3125", "attributes": { "cluster": 0, "x": -27.61794484645874, "y": -40.82332818990392, "size": 2, "color": "#e36d0" } }, { "key": "3126", "attributes": { "cluster": 2, "x": 30.078043817233517, "y": 86.76472219829581, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3127", "attributes": { "cluster": 2, "x": 13.07804381723352, "y": 102.35317946641572, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3128", "attributes": { "cluster": 2, "x": -12.921956182766502, "y": 39.99935039393614, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3129", "attributes": { "cluster": 0, "x": -27.61794484645874, "y": -30.431023344490654, "size": 1, "color": "#e36d0" } }, { "key": "3130", "attributes": { "cluster": 1, "x": 31.675078666921983, "y": -20.038718499077383, "size": 1, "color": "#762e2e" } }, { "key": "3131", "attributes": { "cluster": 1, "x": 31.675078666921983, "y": -51.21563303531717, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3132", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -51.215633035317175, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3133", "attributes": { "cluster": 0, "x": -94.61794484645873, "y": -25.234870921784005, "size": 1, "color": "#e36d0" } }, { "key": "3134", "attributes": { "cluster": 0, "x": -28.617944846458748, "y": -46.01948061261055, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3135", "attributes": { "cluster": 0, "x": -28.61794484645874, "y": -25.234870921784022, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3136", "attributes": { "cluster": 0, "x": -94.61794484645874, "y": -46.019480612610536, "size": 1, "color": "#e36d0" } }, { "key": "3137", "attributes": { "cluster": 2, "x": 8.078043817233516, "y": 38.267299586367265, "size": 1, "color": "#4b94db" } }, { "key": "3138", "attributes": { "cluster": 2, "x": -7.921956182766498, "y": 104.08523027398459, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3139", "attributes": { "cluster": 2, "x": -7.921956182766501, "y": 38.267299586367265, "size": 1, "color": "#4b94db" } }, { "key": "3140", "attributes": { "cluster": 2, "x": 8.07804381723352, "y": 104.08523027398459, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3141", "attributes": { "cluster": 0, "x": -77.61794484645876, "y": -65.0720394958682, "size": 1, "color": "#e36d0" } }, { "key": "3142", "attributes": { "cluster": 2, "x": -27.921956182766497, "y": 52.12370604691829, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3143", "attributes": { "cluster": 2, "x": 28.078043817233517, "y": 90.22882381343358, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3144", "attributes": { "cluster": 0, "x": -45.617944846458705, "y": -65.07203949586818, "size": 1, "color": "#e36d0" } }, { "key": "3145", "attributes": { "cluster": 2, "x": -27.921956182766497, "y": 90.22882381343358, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3146", "attributes": { "cluster": 0, "x": -45.61794484645873, "y": -6.182312038526366, "size": 2, "color": "#e36d0" } }, { "key": "3147", "attributes": { "cluster": 2, "x": 28.078043817233517, "y": 52.12370604691829, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3148", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -20.038718499077394, "size": 1, "color": "#762e2e" } }, { "key": "3149", "attributes": { "cluster": 0, "x": -77.61794484645878, "y": -6.182312038526376, "size": 2, "color": "#e36d0" } }, { "key": "3150", "attributes": { "cluster": 2, "x": 31.078043817233503, "y": 57.319858469624904, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3151", "attributes": { "cluster": 0, "x": -62.61794484645875, "y": -70.26819191857481, "size": 2, "color": "#e36d0" } }, { "key": "3152", "attributes": { "cluster": 1, "x": 74.675078666922, "y": -4.450261230957487, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3153", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -66.80409030343708, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "3154", "attributes": { "cluster": 0, "x": -60.617944846458734, "y": -0.9861596158197443, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3155", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -68.53614111100595, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3156", "attributes": { "cluster": 1, "x": 53.67507866692198, "y": -2.718210423388612, "size": 1, "color": "#762e2e" } }, { "key": "3157", "attributes": { "cluster": 2, "x": -30.921956182766483, "y": 85.03267139072696, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3158", "attributes": { "cluster": 2, "x": -30.921956182766497, "y": 57.319858469624926, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3159", "attributes": { "cluster": 1, "x": 53.675078666921976, "y": -68.53614111100595, "size": 1, "color": "#762e2e" } }, { "key": "3160", "attributes": { "cluster": 2, "x": 31.078043817233517, "y": 85.03267139072695, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3161", "attributes": { "cluster": 1, "x": 69.675078666922, "y": -2.718210423388612, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3162", "attributes": { "cluster": 1, "x": 33.67507866692198, "y": -54.67973465045492, "size": 2, "color": "#762e2e" } }, { "key": "3163", "attributes": { "cluster": 2, "x": 27.078043817233517, "y": 91.96087462100246, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3164", "attributes": { "cluster": 2, "x": -26.921956182766497, "y": 50.39165523934941, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3165", "attributes": { "cluster": 0, "x": -62.617944846458734, "y": -0.9861596158197514, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3166", "attributes": { "cluster": 0, "x": -60.61794484645875, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3167", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -16.574616883939637, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3168", "attributes": { "cluster": 0, "x": -46.61794484645872, "y": -66.80409030343705, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3169", "attributes": { "cluster": 0, "x": -76.61794484645877, "y": -4.450261230957505, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "3170", "attributes": { "cluster": 2, "x": 22.07804381723353, "y": 45.19550281664279, "size": 1, "color": "#4b94db" } }, { "key": "3171", "attributes": { "cluster": 0, "x": -76.61794484645876, "y": -66.80409030343708, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3172", "attributes": { "cluster": 0, "x": -46.61794484645873, "y": -4.450261230957487, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3173", "attributes": { "cluster": 1, "x": 33.67507866692198, "y": -16.57461688393963, "size": 1, "color": "#762e2e" } }, { "key": "3174", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -0.9861596158197514, "size": 2, "color": "#e36d0" } }, { "key": "3175", "attributes": { "cluster": 2, "x": -21.92195618276651, "y": 97.15702704370908, "size": 2, "color": "#4b94db" } }, { "key": "3176", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -54.67973465045493, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3177", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -49.48358222774831, "size": 1, "color": "#762e2e" } }, { "key": "3178", "attributes": { "cluster": 2, "x": -26.921956182766497, "y": 91.96087462100246, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3179", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3180", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -0.9861596158197443, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3181", "attributes": { "cluster": 1, "x": 30.675078666921998, "y": -21.77076930664625, "size": 1, "color": "#762e2e" } }, { "key": "3182", "attributes": { "cluster": 2, "x": -21.9219561827665, "y": 45.19550281664277, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3183", "attributes": { "cluster": 2, "x": 27.078043817233517, "y": 50.391655239349404, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3184", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -70.26819191857481, "size": 1, "color": "#e36d0" } }, { "key": "3185", "attributes": { "cluster": 1, "x": 30.675078666921983, "y": -49.483582227748286, "size": 1, "color": "#762e2e" } }, { "key": "3186", "attributes": { "cluster": 2, "x": 22.07804381723352, "y": 97.15702704370909, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3187", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -21.770769306646272, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3188", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -14.842566076370758, "size": 2, "color": "#762e2e" } }, { "key": "3189", "attributes": { "cluster": 0, "x": -40.61794484645871, "y": -63.3399886882993, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3190", "attributes": { "cluster": 2, "x": -32.92195618276649, "y": 71.17626493017593, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3191", "attributes": { "cluster": 1, "x": 34.67507866692198, "y": -56.4117854580238, "size": 2, "color": "#762e2e" } }, { "key": "3192", "attributes": { "cluster": 1, "x": 83.67507866692202, "y": -61.607937880730425, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3193", "attributes": { "cluster": 2, "x": -33.92195618276649, "y": 69.44421412260706, "size": 1, "color": "#4b94db" } }, { "key": "3194", "attributes": { "cluster": 2, "x": 33.07804381723351, "y": 71.17626493017593, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3195", "attributes": { "cluster": 2, "x": 34.07804381723351, "y": 72.9083157377448, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3196", "attributes": { "cluster": 1, "x": 39.67507866692197, "y": -9.646413653664133, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3197", "attributes": { "cluster": 1, "x": 34.67507866692198, "y": -14.842566076370748, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3198", "attributes": { "cluster": 2, "x": -31.921956182766483, "y": 83.30062058315808, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3199", "attributes": { "cluster": 1, "x": 39.675078666921976, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3200", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -56.411785458023814, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3201", "attributes": { "cluster": 2, "x": 32.0780438172335, "y": 59.051909277193786, "size": 0, "color": "#4b94db" } }, { "key": "3202", "attributes": { "cluster": 1, "x": 83.675078666922, "y": -9.646413653664123, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3203", "attributes": { "cluster": 1, "x": 28.67507866692199, "y": -35.62717576719727, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3204", "attributes": { "cluster": 1, "x": 27.67507866692199, "y": -37.35922657476615, "size": 2, "color": "#762e2e" } }, { "key": "3205", "attributes": { "cluster": 0, "x": -36.617944846458734, "y": -11.378464461233008, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3206", "attributes": { "cluster": 0, "x": -82.61794484645877, "y": -7.914362846095258, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3207", "attributes": { "cluster": 0, "x": -86.61794484645876, "y": -59.87588707316155, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3208", "attributes": { "cluster": 2, "x": 32.078043817233514, "y": 83.30062058315806, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3209", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -35.627175767197286, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "3210", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -33.89512495962841, "size": 1, "color": "#762e2e" } }, { "key": "3211", "attributes": { "cluster": 0, "x": -82.61794484645876, "y": -63.339988688299314, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3212", "attributes": { "cluster": 2, "x": -31.921956182766497, "y": 59.0519092771938, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3213", "attributes": { "cluster": 1, "x": 29.675078666921998, "y": -23.50282011421513, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3214", "attributes": { "cluster": 0, "x": -36.61794484645873, "y": -59.875887073161564, "size": 3, "color": "#e36d0" } }, { "key": "3215", "attributes": { "cluster": 0, "x": -40.61794484645873, "y": -7.914362846095244, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3216", "attributes": { "cluster": 0, "x": -86.61794484645876, "y": -11.378464461232998, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3217", "attributes": { "cluster": 0, "x": -56.61794484645875, "y": -70.26819191857481, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3218", "attributes": { "cluster": 0, "x": -66.61794484645873, "y": -0.9861596158197372, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3219", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -47.75153142017943, "size": 1, "color": "#762e2e" } }, { "key": "3220", "attributes": { "cluster": 2, "x": -25.921956182766497, "y": 48.65960443178054, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3221", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -23.502820114215147, "size": 1, "color": "#762e2e" } }, { "key": "3222", "attributes": { "cluster": 2, "x": 26.078043817233517, "y": 48.65960443178054, "size": 1, "color": "#4b94db" } }, { "key": "3223", "attributes": { "cluster": 2, "x": 26.078043817233517, "y": 93.69292542857133, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3224", "attributes": { "cluster": 2, "x": -25.921956182766497, "y": 93.69292542857133, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3225", "attributes": { "cluster": 1, "x": 29.675078666921983, "y": -47.75153142017941, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3226", "attributes": { "cluster": 1, "x": 35.67507866692198, "y": -58.143836265592675, "size": 1, "color": "#762e2e" } }, { "key": "3227", "attributes": { "cluster": 2, "x": 10.078043817233524, "y": 38.26729958636727, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3228", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -58.143836265592675, "size": 2, "color": "#762e2e" } }, { "key": "3229", "attributes": { "cluster": 0, "x": -66.61794484645876, "y": -70.26819191857481, "size": 2, "color": "#e36d0" } }, { "key": "3230", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -13.110515268801883, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3231", "attributes": { "cluster": 0, "x": -56.617944846458734, "y": -0.9861596158197372, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3232", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -2.7182104233886264, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3233", "attributes": { "cluster": 1, "x": 35.67507866692198, "y": -13.110515268801883, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3234", "attributes": { "cluster": 0, "x": -49.61794484645873, "y": -68.53614111100593, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "3235", "attributes": { "cluster": 0, "x": -49.61794484645873, "y": -2.718210423388612, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3236", "attributes": { "cluster": 1, "x": 71.675078666922, "y": -68.53614111100595, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3237", "attributes": { "cluster": 2, "x": -9.921956182766507, "y": 104.08523027398459, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3238", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": -2.7182104233886193, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3239", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": -68.53614111100595, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3240", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -68.53614111100595, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3241", "attributes": { "cluster": 2, "x": -9.921956182766502, "y": 38.267299586367265, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3242", "attributes": { "cluster": 1, "x": 71.675078666922, "y": -2.718210423388612, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3243", "attributes": { "cluster": 1, "x": 27.67507866692199, "y": -30.43102334449064, "size": 1, "color": "#762e2e" } }, { "key": "3244", "attributes": { "cluster": 2, "x": 10.07804381723352, "y": 104.08523027398459, "size": 1, "color": "#4b94db" } }, { "key": "3245", "attributes": { "cluster": 2, "x": -33.92195618276649, "y": 76.37241735288256, "size": 2, "color": "#4b94db" } }, { "key": "3246", "attributes": { "cluster": 2, "x": -33.92195618276649, "y": 65.9801125074693, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3247", "attributes": { "cluster": 0, "x": -27.61794484645874, "y": -44.287429805041675, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3248", "attributes": { "cluster": 1, "x": 27.67507866692199, "y": -40.823328189903904, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3249", "attributes": { "cluster": 0, "x": -27.61794484645874, "y": -26.966921729352897, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3250", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -40.82332818990392, "size": 0, "color": "#762e2e" } }, { "key": "3251", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -30.431023344490654, "size": 1, "color": "#762e2e" } }, { "key": "3252", "attributes": { "cluster": 0, "x": -95.61794484645874, "y": -26.966921729352883, "size": 2, "color": "#e36d0" } }, { "key": "3253", "attributes": { "cluster": 1, "x": 28.675078666921998, "y": -25.234870921784005, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3254", "attributes": { "cluster": 2, "x": 34.07804381723351, "y": 65.9801125074693, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3255", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -46.01948061261055, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3256", "attributes": { "cluster": 2, "x": 34.07804381723351, "y": 76.37241735288256, "size": 1, "color": "#4b94db" } }, { "key": "3257", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -25.234870921784022, "size": 1, "color": "#762e2e" } }, { "key": "3258", "attributes": { "cluster": 1, "x": 28.67507866692199, "y": -46.019480612610536, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3259", "attributes": { "cluster": 1, "x": 45.675078666921976, "y": -65.0720394958682, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3260", "attributes": { "cluster": 2, "x": -32.921956182766486, "y": 81.56856977558921, "size": 2, "color": "#4b94db" } }, { "key": "3261", "attributes": { "cluster": 1, "x": 77.67507866692202, "y": -65.07203949586818, "size": 3, "color": "#762e2e" } }, { "key": "3262", "attributes": { "cluster": 0, "x": -95.61794484645874, "y": -44.28742980504166, "size": 0, "color": "#e36d0" } }, { "key": "3263", "attributes": { "cluster": 0, "x": -27.61794484645874, "y": -37.35922657476616, "size": 1, "color": "#e36d0" } }, { "key": "3264", "attributes": { "cluster": 1, "x": 77.675078666922, "y": -6.182312038526366, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3265", "attributes": { "cluster": 1, "x": 45.675078666921955, "y": -6.182312038526376, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3266", "attributes": { "cluster": 1, "x": 60.67507866692198, "y": -70.26819191857481, "size": 0, "color": "#762e2e" } }, { "key": "3267", "attributes": { "cluster": 2, "x": 33.0780438172335, "y": 60.783960084762654, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3268", "attributes": { "cluster": 0, "x": -95.61794484645874, "y": -33.8951249596284, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3269", "attributes": { "cluster": 1, "x": 62.675078666922, "y": -0.9861596158197443, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3270", "attributes": { "cluster": 2, "x": 33.07804381723351, "y": 81.56856977558918, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3271", "attributes": { "cluster": 1, "x": 60.675078666922, "y": -0.9861596158197514, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3272", "attributes": { "cluster": 2, "x": -32.92195618276649, "y": 60.783960084762676, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3273", "attributes": { "cluster": 2, "x": -15.921956182766502, "y": 41.73140120150502, "size": 1, "color": "#4b94db" } }, { "key": "3274", "attributes": { "cluster": 0, "x": -96.61794484645874, "y": -39.09127738233503, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3275", "attributes": { "cluster": 1, "x": 62.67507866692198, "y": -70.26819191857481, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3276", "attributes": { "cluster": 2, "x": 16.078043817233546, "y": 41.73140120150503, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3277", "attributes": { "cluster": 0, "x": -26.61794484645874, "y": -39.09127738233504, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3278", "attributes": { "cluster": 1, "x": 76.67507866692202, "y": -66.80409030343705, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3279", "attributes": { "cluster": 0, "x": -26.61794484645874, "y": -32.16307415205953, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3280", "attributes": { "cluster": 1, "x": 46.67507866692197, "y": -4.450261230957505, "size": 1, "color": "#762e2e" } }, { "key": "3281", "attributes": { "cluster": 1, "x": 46.675078666921976, "y": -66.80409030343708, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3282", "attributes": { "cluster": 0, "x": -96.61794484645874, "y": -32.163074152059515, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3283", "attributes": { "cluster": 2, "x": 16.07804381723352, "y": 100.62112865884684, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3284", "attributes": { "cluster": 0, "x": -54.61794484645875, "y": -70.26819191857481, "size": 2, "color": "#e36d0" } }, { "key": "3285", "attributes": { "cluster": 1, "x": 76.675078666922, "y": -4.450261230957487, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3286", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -0.9861596158197514, "size": 0, "color": "#762e2e" } }, { "key": "3287", "attributes": { "cluster": 2, "x": -15.921956182766527, "y": 100.62112865884683, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3288", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -0.9861596158197443, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3289", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -70.26819191857481, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3290", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -0.9861596158197443, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3291", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -70.26819191857481, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3292", "attributes": { "cluster": 1, "x": 82.67507866692202, "y": -63.3399886882993, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3293", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": -11.378464461233008, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3294", "attributes": { "cluster": 1, "x": 40.67507866692196, "y": -7.914362846095258, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3295", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": -70.26819191857481, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3296", "attributes": { "cluster": 2, "x": -0.9219561827664946, "y": 36.5352487787984, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3297", "attributes": { "cluster": 2, "x": 1.0780438172335134, "y": 105.81728108155346, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3298", "attributes": { "cluster": 0, "x": -54.617944846458734, "y": -0.9861596158197372, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3299", "attributes": { "cluster": 2, "x": -0.9219561827664855, "y": 105.81728108155346, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3300", "attributes": { "cluster": 0, "x": -85.61794484645876, "y": -9.646413653664133, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3301", "attributes": { "cluster": 0, "x": -85.61794484645876, "y": -61.607937880730425, "size": 2, "color": "#e36d0" } }, { "key": "3302", "attributes": { "cluster": 2, "x": 1.0780438172335043, "y": 36.535248778798405, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3303", "attributes": { "cluster": 1, "x": 36.67507866692198, "y": -59.87588707316155, "size": 2, "color": "#762e2e" } }, { "key": "3304", "attributes": { "cluster": 0, "x": -37.61794484645872, "y": -61.607937880730425, "size": 1, "color": "#e36d0" } }, { "key": "3305", "attributes": { "cluster": 2, "x": 15.078043817233532, "y": 39.999350393936155, "size": 2, "color": "#4b94db" } }, { "key": "3306", "attributes": { "cluster": 2, "x": -14.921956182766515, "y": 102.35317946641571, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3307", "attributes": { "cluster": 0, "x": -37.61794484645873, "y": -9.646413653664133, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3308", "attributes": { "cluster": 2, "x": -14.921956182766502, "y": 39.99935039393614, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3309", "attributes": { "cluster": 1, "x": 40.675078666921976, "y": -63.339988688299314, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3310", "attributes": { "cluster": 1, "x": 86.675078666922, "y": -59.875887073161564, "size": 2, "color": "#762e2e" } }, { "key": "3311", "attributes": { "cluster": 1, "x": 82.675078666922, "y": -7.914362846095244, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3312", "attributes": { "cluster": 0, "x": -92.61794484645876, "y": -52.94768384288604, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3313", "attributes": { "cluster": 2, "x": 15.07804381723352, "y": 102.35317946641572, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3314", "attributes": { "cluster": 1, "x": 36.675078666921976, "y": -11.378464461232998, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "3315", "attributes": { "cluster": 2, "x": -2.9219561827664906, "y": 105.81728108155346, "size": 1, "color": "#4b94db" } }, { "key": "3316", "attributes": { "cluster": 1, "x": 66.67507866692198, "y": -70.26819191857481, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3317", "attributes": { "cluster": 0, "x": -30.617944846458734, "y": -18.306667691508515, "size": 1, "color": "#e36d0" } }, { "key": "3318", "attributes": { "cluster": 1, "x": 56.675078666922, "y": -0.9861596158197372, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3319", "attributes": { "cluster": 1, "x": 56.67507866692198, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3320", "attributes": { "cluster": 2, "x": 3.0780438172335094, "y": 36.535248778798405, "size": 2, "color": "#4b94db" } }, { "key": "3321", "attributes": { "cluster": 2, "x": 3.078043817233513, "y": 105.81728108155346, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3322", "attributes": { "cluster": 1, "x": 66.675078666922, "y": -0.9861596158197372, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3323", "attributes": { "cluster": 1, "x": 49.675078666921976, "y": -2.7182104233886264, "size": 3, "color": "#762e2e" } }, { "key": "3324", "attributes": { "cluster": 0, "x": -92.61794484645876, "y": -18.30666769150851, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3325", "attributes": { "cluster": 1, "x": 73.675078666922, "y": -68.53614111100593, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3326", "attributes": { "cluster": 0, "x": -30.617944846458734, "y": -52.94768384288605, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3327", "attributes": { "cluster": 0, "x": -31.617944846458734, "y": -16.574616883939637, "size": 2, "color": "#e36d0" } }, { "key": "3328", "attributes": { "cluster": 0, "x": -91.61794484645876, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3329", "attributes": { "cluster": 0, "x": -31.617944846458734, "y": -54.67973465045493, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3330", "attributes": { "cluster": 1, "x": 73.675078666922, "y": -2.718210423388612, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3331", "attributes": { "cluster": 1, "x": 49.675078666921976, "y": -68.53614111100595, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3332", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -44.287429805041675, "size": 2, "color": "#762e2e" } }, { "key": "3333", "attributes": { "cluster": 2, "x": -2.921956182766494, "y": 36.5352487787984, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3334", "attributes": { "cluster": 0, "x": -91.61794484645876, "y": -16.574616883939626, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3335", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -26.966921729352897, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3336", "attributes": { "cluster": 0, "x": -93.61794484645876, "y": -20.038718499077383, "size": 2, "color": "#e36d0" } }, { "key": "3337", "attributes": { "cluster": 0, "x": -93.61794484645876, "y": -51.21563303531717, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3338", "attributes": { "cluster": 2, "x": 21.07804381723354, "y": 43.46345200907391, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3339", "attributes": { "cluster": 2, "x": 25.078043817233517, "y": 95.4249762361402, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3340", "attributes": { "cluster": 2, "x": -20.921956182766518, "y": 98.88907785127796, "size": 1, "color": "#4b94db" } }, { "key": "3341", "attributes": { "cluster": 0, "x": -29.617944846458734, "y": -51.215633035317175, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3342", "attributes": { "cluster": 0, "x": -29.617944846458734, "y": -20.03871849907739, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3343", "attributes": { "cluster": 1, "x": 27.67507866692199, "y": -26.966921729352883, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3344", "attributes": { "cluster": 2, "x": -24.921956182766497, "y": 46.92755362421166, "size": 1, "color": "#4b94db" } }, { "key": "3345", "attributes": { "cluster": 0, "x": -79.61794484645878, "y": -6.1823120385263834, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3346", "attributes": { "cluster": 2, "x": -20.9219561827665, "y": 43.4634520090739, "size": 2, "color": "#4b94db" } }, { "key": "3347", "attributes": { "cluster": 2, "x": 25.078043817233524, "y": 46.927553624211654, "size": 1, "color": "#4b94db" } }, { "key": "3348", "attributes": { "cluster": 1, "x": 27.67507866692199, "y": -44.28742980504166, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3349", "attributes": { "cluster": 0, "x": -43.617944846458705, "y": -65.07203949586818, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "3350", "attributes": { "cluster": 0, "x": -43.61794484645873, "y": -6.182312038526366, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3351", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -37.35922657476616, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3352", "attributes": { "cluster": 2, "x": 21.07804381723352, "y": 98.88907785127796, "size": 0, "color": "#4b94db" } }, { "key": "3353", "attributes": { "cluster": 1, "x": 27.67507866692199, "y": -33.8951249596284, "size": 1, "color": "#762e2e" } }, { "key": "3354", "attributes": { "cluster": 0, "x": -79.61794484645876, "y": -65.0720394958682, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3355", "attributes": { "cluster": 0, "x": -41.617944846458705, "y": -65.07203949586818, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3356", "attributes": { "cluster": 0, "x": -32.617944846458734, "y": -14.842566076370758, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3357", "attributes": { "cluster": 0, "x": -81.61794484645878, "y": -6.18231203852638, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3358", "attributes": { "cluster": 2, "x": -24.921956182766504, "y": 95.42497623614021, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3359", "attributes": { "cluster": 1, "x": 26.67507866692199, "y": -39.09127738233503, "size": 2, "color": "#762e2e" } }, { "key": "3360", "attributes": { "cluster": 2, "x": 5.0780438172335, "y": 36.53524877879839, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3361", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -39.09127738233504, "size": 1, "color": "#762e2e" } }, { "key": "3362", "attributes": { "cluster": 2, "x": -4.921956182766481, "y": 105.81728108155347, "size": 1, "color": "#4b94db" } }, { "key": "3363", "attributes": { "cluster": 2, "x": -4.921956182766499, "y": 36.53524877879839, "size": 0, "color": "#4b94db" } }, { "key": "3364", "attributes": { "cluster": 0, "x": -90.61794484645876, "y": -56.4117854580238, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3365", "attributes": { "cluster": 0, "x": -81.61794484645876, "y": -65.0720394958682, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3366", "attributes": { "cluster": 2, "x": 5.078043817233517, "y": 105.81728108155347, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3367", "attributes": { "cluster": 0, "x": -41.61794484645873, "y": -6.182312038526366, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3368", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -32.16307415205953, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3369", "attributes": { "cluster": 2, "x": -11.921956182766502, "y": 104.08523027398459, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3370", "attributes": { "cluster": 2, "x": 12.07804381723352, "y": 38.26729958636728, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3371", "attributes": { "cluster": 0, "x": -90.61794484645876, "y": -14.842566076370751, "size": 2, "color": "#e36d0" } }, { "key": "3372", "attributes": { "cluster": 2, "x": 12.07804381723352, "y": 104.08523027398459, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3373", "attributes": { "cluster": 1, "x": 26.67507866692199, "y": -32.163074152059515, "size": 1, "color": "#762e2e" } }, { "key": "3374", "attributes": { "cluster": 0, "x": -32.617944846458734, "y": -56.41178545802381, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3375", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -70.26819191857481, "size": 1, "color": "#762e2e" } }, { "key": "3376", "attributes": { "cluster": 2, "x": -11.921956182766502, "y": 38.267299586367265, "size": 1, "color": "#4b94db" } }, { "key": "3377", "attributes": { "cluster": 0, "x": -26.61794484645874, "y": -42.55537899747279, "size": 1, "color": "#e36d0" } }, { "key": "3378", "attributes": { "cluster": 0, "x": -26.61794484645874, "y": -28.698972536921776, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3379", "attributes": { "cluster": 1, "x": 54.675078666922, "y": -0.9861596158197443, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3380", "attributes": { "cluster": 1, "x": 54.67507866692198, "y": -70.26819191857481, "size": 2, "color": "#762e2e" } }, { "key": "3381", "attributes": { "cluster": 0, "x": -96.61794484645874, "y": -28.698972536921765, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3382", "attributes": { "cluster": 1, "x": 68.675078666922, "y": -0.9861596158197372, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3383", "attributes": { "cluster": 1, "x": 37.67507866692197, "y": -9.646413653664133, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3384", "attributes": { "cluster": 2, "x": 34.07804381723351, "y": 62.516010892331536, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3385", "attributes": { "cluster": 2, "x": 34.07804381723351, "y": 79.83651896802031, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3386", "attributes": { "cluster": 0, "x": -96.61794484645874, "y": -42.55537899747278, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3387", "attributes": { "cluster": 2, "x": -33.92195618276649, "y": 79.83651896802033, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3388", "attributes": { "cluster": 2, "x": -33.92195618276649, "y": 62.51601089233155, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3389", "attributes": { "cluster": 0, "x": -28.617944846458748, "y": -49.48358222774831, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3390", "attributes": { "cluster": 0, "x": -94.61794484645873, "y": -21.77076930664625, "size": 1, "color": "#e36d0" } }, { "key": "3391", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -70.26819191857481, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3392", "attributes": { "cluster": 2, "x": 34.07804381723351, "y": 69.44421412260705, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3393", "attributes": { "cluster": 0, "x": -52.61794484645873, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3394", "attributes": { "cluster": 2, "x": -33.92195618276649, "y": 72.90831573774481, "size": 1, "color": "#4b94db" } }, { "key": "3395", "attributes": { "cluster": 1, "x": 37.675078666921976, "y": -61.607937880730425, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3396", "attributes": { "cluster": 2, "x": -34.92195618276649, "y": 67.71216331503818, "size": 2, "color": "#4b94db" } }, { "key": "3397", "attributes": { "cluster": 1, "x": 85.67507866692202, "y": -61.607937880730425, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3398", "attributes": { "cluster": 0, "x": -52.61794484645873, "y": -0.9861596158197372, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3399", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -0.9861596158197443, "size": 0, "color": "#e36d0" } }, { "key": "3400", "attributes": { "cluster": 0, "x": -94.61794484645876, "y": -49.483582227748286, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3401", "attributes": { "cluster": 0, "x": -28.617944846458734, "y": -21.770769306646272, "size": 1, "color": "#e36d0" } }, { "key": "3402", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -2.7182104233886264, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3403", "attributes": { "cluster": 1, "x": 85.675078666922, "y": -9.646413653664133, "size": 1, "color": "#762e2e" } }, { "key": "3404", "attributes": { "cluster": 1, "x": 30.675078666921983, "y": -52.94768384288604, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3405", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -18.306667691508515, "size": 0, "color": "#762e2e" } }, { "key": "3406", "attributes": { "cluster": 0, "x": -47.61794484645872, "y": -68.53614111100593, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3407", "attributes": { "cluster": 2, "x": 35.07804381723351, "y": 67.71216331503817, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3408", "attributes": { "cluster": 1, "x": 30.675078666921983, "y": -18.30666769150851, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3409", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -52.94768384288605, "size": 2, "color": "#762e2e" } }, { "key": "3410", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -16.574616883939637, "size": 2, "color": "#762e2e" } }, { "key": "3411", "attributes": { "cluster": 2, "x": 35.07804381723351, "y": 74.64036654531368, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3412", "attributes": { "cluster": 1, "x": 31.675078666921983, "y": -54.67973465045492, "size": 1, "color": "#762e2e" } }, { "key": "3413", "attributes": { "cluster": 2, "x": -34.92195618276649, "y": 74.6403665453137, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3414", "attributes": { "cluster": 0, "x": -47.61794484645873, "y": -2.718210423388612, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3415", "attributes": { "cluster": 2, "x": 7.078043817233504, "y": 36.5352487787984, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3416", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -54.67973465045493, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3417", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -68.53614111100595, "size": 2, "color": "#e36d0" } }, { "key": "3418", "attributes": { "cluster": 0, "x": -33.617944846458734, "y": -13.11051526880188, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3419", "attributes": { "cluster": 1, "x": 31.675078666921983, "y": -16.574616883939626, "size": 2, "color": "#762e2e" } }, { "key": "3420", "attributes": { "cluster": 2, "x": -6.921956182766485, "y": 105.81728108155346, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3421", "attributes": { "cluster": 0, "x": -89.61794484645876, "y": -58.14383626559268, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3422", "attributes": { "cluster": 0, "x": -33.617944846458734, "y": -58.14383626559269, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3423", "attributes": { "cluster": 1, "x": 29.675078666921983, "y": -20.038718499077383, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3424", "attributes": { "cluster": 2, "x": -6.9219561827664995, "y": 36.53524877879839, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3425", "attributes": { "cluster": 0, "x": -89.61794484645876, "y": -13.11051526880187, "size": 1, "color": "#e36d0" } }, { "key": "3426", "attributes": { "cluster": 1, "x": 29.675078666921983, "y": -51.21563303531717, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3427", "attributes": { "cluster": 2, "x": 7.078043817233518, "y": 105.81728108155347, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3428", "attributes": { "cluster": 2, "x": -23.92195618276651, "y": 97.15702704370908, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3429", "attributes": { "cluster": 0, "x": -38.61794484645871, "y": -63.3399886882993, "size": 1, "color": "#e36d0" } }, { "key": "3430", "attributes": { "cluster": 2, "x": -23.9219561827665, "y": 45.19550281664279, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3431", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -51.215633035317175, "size": 2, "color": "#762e2e" } }, { "key": "3432", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -20.03871849907739, "size": 2, "color": "#762e2e" } }, { "key": "3433", "attributes": { "cluster": 0, "x": -84.61794484645877, "y": -7.914362846095258, "size": 1, "color": "#e36d0" } }, { "key": "3434", "attributes": { "cluster": 0, "x": -84.61794484645876, "y": -63.339988688299314, "size": 2, "color": "#e36d0" } }, { "key": "3435", "attributes": { "cluster": 0, "x": -38.61794484645873, "y": -7.914362846095244, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3436", "attributes": { "cluster": 2, "x": 24.07804381723353, "y": 45.19550281664279, "size": 1, "color": "#4b94db" } }, { "key": "3437", "attributes": { "cluster": 1, "x": 43.675078666921955, "y": -6.1823120385263834, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3438", "attributes": { "cluster": 0, "x": -95.61794484645873, "y": -23.502820114215126, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3439", "attributes": { "cluster": 1, "x": 79.67507866692202, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3440", "attributes": { "cluster": 2, "x": 24.07804381723352, "y": 97.15702704370908, "size": 2, "color": "#4b94db" } }, { "key": "3441", "attributes": { "cluster": 2, "x": -30.921956182766497, "y": 53.85575685448717, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3442", "attributes": { "cluster": 0, "x": -27.617944846458748, "y": -47.75153142017943, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3443", "attributes": { "cluster": 2, "x": 31.078043817233517, "y": 88.4967730058647, "size": 1, "color": "#4b94db" } }, { "key": "3444", "attributes": { "cluster": 1, "x": 79.675078666922, "y": -6.182312038526366, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3445", "attributes": { "cluster": 2, "x": -30.921956182766497, "y": 88.4967730058647, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3446", "attributes": { "cluster": 1, "x": 43.675078666921976, "y": -65.0720394958682, "size": 2, "color": "#762e2e" } }, { "key": "3447", "attributes": { "cluster": 2, "x": 31.078043817233517, "y": 53.85575685448716, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3448", "attributes": { "cluster": 1, "x": 81.67507866692202, "y": -65.07203949586818, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3449", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -14.842566076370758, "size": 1, "color": "#762e2e" } }, { "key": "3450", "attributes": { "cluster": 0, "x": -27.61794484645874, "y": -23.50282011421515, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3451", "attributes": { "cluster": 0, "x": -95.61794484645874, "y": -47.751531420179404, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3452", "attributes": { "cluster": 0, "x": -26.61794484645874, "y": -35.627175767197286, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3453", "attributes": { "cluster": 1, "x": 41.675078666921955, "y": -6.18231203852638, "size": 2, "color": "#762e2e" } }, { "key": "3454", "attributes": { "cluster": 1, "x": 32.67507866692198, "y": -56.4117854580238, "size": 1, "color": "#762e2e" } }, { "key": "3455", "attributes": { "cluster": 2, "x": 30.078043817233517, "y": 90.22882381343358, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3456", "attributes": { "cluster": 1, "x": 41.675078666921976, "y": -65.0720394958682, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3457", "attributes": { "cluster": 0, "x": -25.61794484645874, "y": -33.89512495962841, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3458", "attributes": { "cluster": 1, "x": 81.675078666922, "y": -6.182312038526366, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3459", "attributes": { "cluster": 2, "x": -29.921956182766497, "y": 52.12370604691829, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3460", "attributes": { "cluster": 1, "x": 32.67507866692198, "y": -14.842566076370751, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3461", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -56.41178545802381, "size": 1, "color": "#762e2e" } }, { "key": "3462", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -42.55537899747279, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3463", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -28.698972536921776, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3464", "attributes": { "cluster": 2, "x": 30.078043817233517, "y": 52.12370604691828, "size": 1, "color": "#4b94db" } }, { "key": "3465", "attributes": { "cluster": 0, "x": -96.61794484645874, "y": -35.62717576719727, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3466", "attributes": { "cluster": 0, "x": -97.61794484645874, "y": -37.35922657476615, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3467", "attributes": { "cluster": 2, "x": -29.921956182766497, "y": 90.22882381343359, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3468", "attributes": { "cluster": 1, "x": 26.67507866692199, "y": -28.698972536921765, "size": 3, "color": "#762e2e" } }, { "key": "3469", "attributes": { "cluster": 1, "x": 26.67507866692199, "y": -42.55537899747278, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3470", "attributes": { "cluster": 0, "x": -88.61794484645876, "y": -59.87588707316155, "size": 2, "color": "#e36d0" } }, { "key": "3471", "attributes": { "cluster": 2, "x": -31.921956182766497, "y": 86.76472219829583, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3472", "attributes": { "cluster": 2, "x": -31.921956182766497, "y": 55.58780766205604, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3473", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -49.48358222774831, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3474", "attributes": { "cluster": 1, "x": 28.675078666921998, "y": -21.77076930664625, "size": 2, "color": "#762e2e" } }, { "key": "3475", "attributes": { "cluster": 1, "x": 52.675078666921976, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3476", "attributes": { "cluster": 2, "x": 32.078043817233514, "y": 55.587807662056036, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3477", "attributes": { "cluster": 0, "x": -34.617944846458734, "y": -11.378464461233005, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3478", "attributes": { "cluster": 1, "x": 70.675078666922, "y": -70.26819191857481, "size": 0, "color": "#762e2e" } }, { "key": "3479", "attributes": { "cluster": 1, "x": 70.675078666922, "y": -0.9861596158197372, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3480", "attributes": { "cluster": 2, "x": 32.078043817233514, "y": 86.76472219829581, "size": 1, "color": "#4b94db" } }, { "key": "3481", "attributes": { "cluster": 2, "x": -17.921956182766525, "y": 100.62112865884683, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3482", "attributes": { "cluster": 1, "x": 52.675078666921976, "y": -0.9861596158197443, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3483", "attributes": { "cluster": 1, "x": 28.675078666921983, "y": -49.483582227748286, "size": 1, "color": "#762e2e" } }, { "key": "3484", "attributes": { "cluster": 2, "x": 18.078043817233546, "y": 41.73140120150504, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3485", "attributes": { "cluster": 2, "x": 18.07804381723352, "y": 100.62112865884684, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3486", "attributes": { "cluster": 2, "x": -17.9219561827665, "y": 41.73140120150502, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3487", "attributes": { "cluster": 0, "x": -88.61794484645876, "y": -11.378464461233012, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3488", "attributes": { "cluster": 2, "x": 20.078043817233546, "y": 41.73140120150504, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3489", "attributes": { "cluster": 0, "x": -34.61794484645873, "y": -59.87588707316155, "size": 1, "color": "#e36d0" } }, { "key": "3490", "attributes": { "cluster": 2, "x": 29.078043817233517, "y": 91.96087462100246, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3491", "attributes": { "cluster": 2, "x": -19.921956182766525, "y": 100.62112865884683, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3492", "attributes": { "cluster": 2, "x": -28.921956182766497, "y": 50.39165523934941, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3493", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -21.770769306646272, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3494", "attributes": { "cluster": 2, "x": -19.9219561827665, "y": 41.73140120150502, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3495", "attributes": { "cluster": 2, "x": 20.07804381723352, "y": 100.62112865884684, "size": 2, "color": "#4b94db" } }, { "key": "3496", "attributes": { "cluster": 1, "x": 47.67507866692197, "y": -2.7182104233886264, "size": 0, "color": "#762e2e" } }, { "key": "3497", "attributes": { "cluster": 1, "x": 75.67507866692202, "y": -68.53614111100593, "size": 1, "color": "#762e2e" } }, { "key": "3498", "attributes": { "cluster": 1, "x": 75.675078666922, "y": -2.718210423388612, "size": 1, "color": "#762e2e" } }, { "key": "3499", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -0.9861596158197372, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3500", "attributes": { "cluster": 0, "x": -50.61794484645872, "y": -70.26819191857481, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3501", "attributes": { "cluster": 2, "x": -28.921956182766497, "y": 91.96087462100246, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3502", "attributes": { "cluster": 0, "x": -50.61794484645873, "y": -0.9861596158197372, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3503", "attributes": { "cluster": 1, "x": 47.675078666921976, "y": -68.53614111100595, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3504", "attributes": { "cluster": 2, "x": 29.078043817233517, "y": 50.391655239349404, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3505", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -70.26819191857481, "size": 1, "color": "#e36d0" } }, { "key": "3506", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3507", "attributes": { "cluster": 2, "x": 35.07804381723351, "y": 64.24806169990042, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3508", "attributes": { "cluster": 2, "x": 35.07804381723351, "y": 78.10446816045143, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3509", "attributes": { "cluster": 2, "x": -34.92195618276649, "y": 78.10446816045145, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3510", "attributes": { "cluster": 2, "x": -34.92195618276649, "y": 64.24806169990043, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3511", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -13.11051526880188, "size": 2, "color": "#762e2e" } }, { "key": "3512", "attributes": { "cluster": 2, "x": 33.0780438172335, "y": 57.319858469624904, "size": 1, "color": "#4b94db" } }, { "key": "3513", "attributes": { "cluster": 1, "x": 33.67507866692198, "y": -58.14383626559268, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "3514", "attributes": { "cluster": 2, "x": -32.921956182766486, "y": 85.03267139072696, "size": 2, "color": "#4b94db" } }, { "key": "3515", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -58.14383626559269, "size": 1, "color": "#762e2e" } }, { "key": "3516", "attributes": { "cluster": 2, "x": -8.921956182766502, "y": 36.53524877879839, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3517", "attributes": { "cluster": 2, "x": 9.078043817233524, "y": 36.5352487787984, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3518", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": 0.7458911917491235, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "3519", "attributes": { "cluster": 2, "x": 9.07804381723352, "y": 105.81728108155347, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3520", "attributes": { "cluster": 1, "x": 33.67507866692198, "y": -13.11051526880187, "size": 2, "color": "#762e2e" } }, { "key": "3521", "attributes": { "cluster": 0, "x": -97.61794484645874, "y": -30.43102334449064, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3522", "attributes": { "cluster": 0, "x": -97.61794484645874, "y": -40.823328189903904, "size": 1, "color": "#e36d0" } }, { "key": "3523", "attributes": { "cluster": 1, "x": 84.67507866692202, "y": -63.3399886882993, "size": 2, "color": "#762e2e" } }, { "key": "3524", "attributes": { "cluster": 1, "x": 38.67507866692196, "y": -7.914362846095258, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3525", "attributes": { "cluster": 2, "x": -8.921956182766507, "y": 105.81728108155346, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3526", "attributes": { "cluster": 2, "x": -32.9219561827665, "y": 57.319858469624926, "size": 2, "color": "#4b94db" } }, { "key": "3527", "attributes": { "cluster": 2, "x": 33.078043817233514, "y": 85.03267139072693, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3528", "attributes": { "cluster": 1, "x": 38.675078666921976, "y": -63.339988688299314, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3529", "attributes": { "cluster": 0, "x": -25.61794484645874, "y": -40.82332818990392, "size": 4.333333333333333, "color": "#e36d0" } }, { "key": "3530", "attributes": { "cluster": 2, "x": -13.921956182766513, "y": 104.08523027398459, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3531", "attributes": { "cluster": 0, "x": -25.61794484645874, "y": -30.431023344490654, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "3532", "attributes": { "cluster": 2, "x": 14.07804381723353, "y": 38.26729958636728, "size": 1, "color": "#4b94db" } }, { "key": "3533", "attributes": { "cluster": 1, "x": 84.675078666922, "y": -7.914362846095244, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3534", "attributes": { "cluster": 0, "x": -59.61794484645874, "y": 0.7458911917491307, "size": 2, "color": "#e36d0" } }, { "key": "3535", "attributes": { "cluster": 0, "x": -63.61794484645874, "y": 0.7458911917491235, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3536", "attributes": { "cluster": 2, "x": 14.07804381723352, "y": 104.08523027398459, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3537", "attributes": { "cluster": 1, "x": 27.675078666921998, "y": -23.502820114215126, "size": 1, "color": "#762e2e" } }, { "key": "3538", "attributes": { "cluster": 2, "x": -13.921956182766502, "y": 38.267299586367265, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3539", "attributes": { "cluster": 0, "x": -63.61794484645874, "y": -72.00024272614368, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3540", "attributes": { "cluster": 0, "x": -59.61794484645874, "y": -72.00024272614368, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3541", "attributes": { "cluster": 0, "x": -26.61794484645874, "y": -46.01948061261056, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3542", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -47.75153142017943, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3543", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -23.50282011421515, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3544", "attributes": { "cluster": 1, "x": 27.67507866692199, "y": -47.751531420179404, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3545", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -35.627175767197286, "size": 1, "color": "#762e2e" } }, { "key": "3546", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -33.89512495962841, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3547", "attributes": { "cluster": 1, "x": 26.67507866692199, "y": -35.62717576719727, "size": 1, "color": "#762e2e" } }, { "key": "3548", "attributes": { "cluster": 0, "x": -26.61794484645874, "y": -25.234870921784022, "size": 1, "color": "#e36d0" } }, { "key": "3549", "attributes": { "cluster": 0, "x": -96.61794484645874, "y": -25.234870921784, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3550", "attributes": { "cluster": 2, "x": 28.078043817233517, "y": 93.69292542857133, "size": 1, "color": "#4b94db" } }, { "key": "3551", "attributes": { "cluster": 0, "x": -96.61794484645874, "y": -46.019480612610536, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3552", "attributes": { "cluster": 0, "x": -57.617944846458755, "y": -72.0002427261437, "size": 2, "color": "#e36d0" } }, { "key": "3553", "attributes": { "cluster": 2, "x": -27.921956182766497, "y": 48.65960443178054, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3554", "attributes": { "cluster": 2, "x": 28.078043817233517, "y": 48.65960443178052, "size": 2, "color": "#4b94db" } }, { "key": "3555", "attributes": { "cluster": 2, "x": -27.921956182766497, "y": 93.69292542857134, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3556", "attributes": { "cluster": 2, "x": 23.07804381723354, "y": 43.46345200907391, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3557", "attributes": { "cluster": 2, "x": -22.921956182766518, "y": 98.88907785127796, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3558", "attributes": { "cluster": 1, "x": 25.67507866692199, "y": -37.35922657476615, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3559", "attributes": { "cluster": 2, "x": -22.9219561827665, "y": 43.4634520090739, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3560", "attributes": { "cluster": 2, "x": 23.07804381723352, "y": 98.88907785127796, "size": 1, "color": "#4b94db" } }, { "key": "3561", "attributes": { "cluster": 0, "x": -65.61794484645873, "y": 0.7458911917491378, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3562", "attributes": { "cluster": 2, "x": -33.921956182766486, "y": 83.30062058315808, "size": 2, "color": "#4b94db" } }, { "key": "3563", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -72.0002427261437, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3564", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": 0.7458911917491378, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3565", "attributes": { "cluster": 2, "x": 34.0780438172335, "y": 59.05190927719378, "size": 3, "color": "#4b94db" } }, { "key": "3566", "attributes": { "cluster": 1, "x": 34.67507866692198, "y": -59.87588707316155, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3567", "attributes": { "cluster": 2, "x": 34.07804381723351, "y": 83.30062058315806, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3568", "attributes": { "cluster": 0, "x": -78.61794484645878, "y": -4.450261230957501, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3569", "attributes": { "cluster": 0, "x": -44.6179448464587, "y": -66.80409030343705, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3570", "attributes": { "cluster": 2, "x": -33.92195618276649, "y": 59.0519092771938, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3571", "attributes": { "cluster": 0, "x": -44.61794484645873, "y": -4.450261230957487, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3572", "attributes": { "cluster": 2, "x": 35.07804381723351, "y": 71.17626493017592, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3573", "attributes": { "cluster": 0, "x": -78.61794484645876, "y": -66.80409030343708, "size": 1, "color": "#e36d0" } }, { "key": "3574", "attributes": { "cluster": 0, "x": -45.61794484645871, "y": -68.53614111100593, "size": 1, "color": "#e36d0" } }, { "key": "3575", "attributes": { "cluster": 2, "x": 36.07804381723351, "y": 72.9083157377448, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3576", "attributes": { "cluster": 2, "x": -34.92195618276649, "y": 71.17626493017595, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3577", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -11.378464461233005, "size": 1, "color": "#762e2e" } }, { "key": "3578", "attributes": { "cluster": 0, "x": -77.61794484645877, "y": -2.7182104233886264, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3579", "attributes": { "cluster": 2, "x": -35.92195618276649, "y": 69.44421412260706, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3580", "attributes": { "cluster": 1, "x": 34.675078666921976, "y": -11.378464461233012, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3581", "attributes": { "cluster": 1, "x": 88.675078666922, "y": -59.87588707316155, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3582", "attributes": { "cluster": 0, "x": -77.61794484645876, "y": -68.53614111100595, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3583", "attributes": { "cluster": 0, "x": -45.61794484645873, "y": -2.718210423388612, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3584", "attributes": { "cluster": 0, "x": -87.61794484645876, "y": -61.607937880730425, "size": 1, "color": "#e36d0" } }, { "key": "3585", "attributes": { "cluster": 1, "x": 50.67507866692197, "y": -0.9861596158197372, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3586", "attributes": { "cluster": 0, "x": -35.617944846458734, "y": -9.646413653664133, "size": 1, "color": "#e36d0" } }, { "key": "3587", "attributes": { "cluster": 1, "x": 72.675078666922, "y": -70.26819191857481, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3588", "attributes": { "cluster": 1, "x": 72.675078666922, "y": -0.9861596158197372, "size": 1, "color": "#762e2e" } }, { "key": "3589", "attributes": { "cluster": 0, "x": -87.61794484645876, "y": -9.646413653664123, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3590", "attributes": { "cluster": 2, "x": -26.921956182766497, "y": 46.927553624211654, "size": 1, "color": "#4b94db" } }, { "key": "3591", "attributes": { "cluster": 2, "x": 27.078043817233517, "y": 95.42497623614021, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3592", "attributes": { "cluster": 2, "x": -26.921956182766504, "y": 95.4249762361402, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3593", "attributes": { "cluster": 0, "x": -35.61794484645872, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3594", "attributes": { "cluster": 1, "x": 50.675078666921976, "y": -70.26819191857481, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3595", "attributes": { "cluster": 2, "x": 27.078043817233524, "y": 46.92755362421167, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3596", "attributes": { "cluster": 0, "x": -83.61794484645878, "y": -6.1823120385263834, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3597", "attributes": { "cluster": 2, "x": -10.921956182766511, "y": 105.81728108155347, "size": 1, "color": "#4b94db" } }, { "key": "3598", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3599", "attributes": { "cluster": 2, "x": 11.078043817233528, "y": 36.53524877879839, "size": 1, "color": "#4b94db" } }, { "key": "3600", "attributes": { "cluster": 2, "x": 11.07804381723352, "y": 105.81728108155347, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3601", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": 0.7458911917491235, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3602", "attributes": { "cluster": 0, "x": -39.617944846458705, "y": -65.07203949586818, "size": 1, "color": "#e36d0" } }, { "key": "3603", "attributes": { "cluster": 1, "x": 25.67507866692199, "y": -30.43102334449064, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3604", "attributes": { "cluster": 1, "x": 25.67507866692199, "y": -40.823328189903904, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3605", "attributes": { "cluster": 0, "x": -39.61794484645873, "y": -6.182312038526366, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "3606", "attributes": { "cluster": 0, "x": -83.61794484645876, "y": -65.0720394958682, "size": 1, "color": "#e36d0" } }, { "key": "3607", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -40.82332818990392, "size": 1, "color": "#762e2e" } }, { "key": "3608", "attributes": { "cluster": 0, "x": -55.61794484645874, "y": -72.0002427261437, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3609", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -30.431023344490654, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3610", "attributes": { "cluster": 1, "x": 63.67507866692199, "y": 0.7458911917491307, "size": 1, "color": "#762e2e" } }, { "key": "3611", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": 0.7458911917491378, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3612", "attributes": { "cluster": 0, "x": -67.61794484645876, "y": -72.0002427261437, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "3613", "attributes": { "cluster": 0, "x": -55.617944846458734, "y": 0.7458911917491378, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3614", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -0.9861596158197514, "size": 1, "color": "#e36d0" } }, { "key": "3615", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": -70.26819191857481, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "3616", "attributes": { "cluster": 2, "x": -10.921956182766502, "y": 36.53524877879839, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3617", "attributes": { "cluster": 2, "x": 0.07804381723351093, "y": 34.80319797122953, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3618", "attributes": { "cluster": 2, "x": 0.07804381723350774, "y": 107.54933188912233, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3619", "attributes": { "cluster": 0, "x": -25.61794484645874, "y": -44.28742980504167, "size": 1, "color": "#e36d0" } }, { "key": "3620", "attributes": { "cluster": 1, "x": 59.67507866692199, "y": 0.7458911917491235, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3621", "attributes": { "cluster": 0, "x": -25.61794484645874, "y": -26.9669217293529, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3622", "attributes": { "cluster": 1, "x": 59.67507866692199, "y": -72.00024272614368, "size": 0, "color": "#762e2e" } }, { "key": "3623", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": -0.9861596158197372, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3624", "attributes": { "cluster": 0, "x": -97.61794484645874, "y": -26.966921729352887, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3625", "attributes": { "cluster": 1, "x": 63.67507866692199, "y": -72.00024272614368, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3626", "attributes": { "cluster": 0, "x": -97.61794484645874, "y": -44.287429805041654, "size": 1, "color": "#e36d0" } }, { "key": "3627", "attributes": { "cluster": 2, "x": -35.92195618276649, "y": 76.37241735288256, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3628", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -46.01948061261056, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3629", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -70.26819191857481, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3630", "attributes": { "cluster": 2, "x": -35.92195618276649, "y": 65.98011250746931, "size": 2, "color": "#4b94db" } }, { "key": "3631", "attributes": { "cluster": 2, "x": 36.07804381723351, "y": 65.9801125074693, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3632", "attributes": { "cluster": 0, "x": -25.61794484645874, "y": -37.35922657476616, "size": 2, "color": "#e36d0" } }, { "key": "3633", "attributes": { "cluster": 0, "x": -97.61794484645874, "y": -33.8951249596284, "size": 1, "color": "#e36d0" } }, { "key": "3634", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -25.234870921784022, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3635", "attributes": { "cluster": 0, "x": -53.617944846458734, "y": -72.00024272614368, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3636", "attributes": { "cluster": 2, "x": 36.07804381723351, "y": 76.37241735288255, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3637", "attributes": { "cluster": 0, "x": -69.61794484645874, "y": 0.7458911917491235, "size": 1, "color": "#e36d0" } }, { "key": "3638", "attributes": { "cluster": 1, "x": 26.67507866692199, "y": -25.234870921784, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3639", "attributes": { "cluster": 2, "x": 2.078043817233513, "y": 107.54933188912234, "size": 2, "color": "#4b94db" } }, { "key": "3640", "attributes": { "cluster": 0, "x": -98.61794484645874, "y": -32.163074152059515, "size": 0, "color": "#e36d0" } }, { "key": "3641", "attributes": { "cluster": 1, "x": 26.67507866692199, "y": -46.019480612610536, "size": 2, "color": "#762e2e" } }, { "key": "3642", "attributes": { "cluster": 0, "x": -98.61794484645874, "y": -39.09127738233503, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3643", "attributes": { "cluster": 0, "x": -24.61794484645874, "y": -39.09127738233504, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "3644", "attributes": { "cluster": 0, "x": -24.61794484645874, "y": -32.16307415205953, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3645", "attributes": { "cluster": 1, "x": 65.67507866692198, "y": -72.0002427261437, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3646", "attributes": { "cluster": 0, "x": -53.61794484645873, "y": 0.7458911917491378, "size": 1, "color": "#e36d0" } }, { "key": "3647", "attributes": { "cluster": 2, "x": -1.921956182766488, "y": 107.54933188912233, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3648", "attributes": { "cluster": 1, "x": 57.675078666922005, "y": 0.7458911917491378, "size": 2, "color": "#762e2e" } }, { "key": "3649", "attributes": { "cluster": 2, "x": -1.9219561827664942, "y": 34.80319797122952, "size": 1, "color": "#4b94db" } }, { "key": "3650", "attributes": { "cluster": 2, "x": 2.0780438172335067, "y": 34.80319797122953, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3651", "attributes": { "cluster": 2, "x": 35.07804381723351, "y": 60.783960084762654, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3652", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -72.0002427261437, "size": 1, "color": "#e36d0" } }, { "key": "3653", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -72.0002427261437, "size": 1, "color": "#762e2e" } }, { "key": "3654", "attributes": { "cluster": 2, "x": 35.07804381723351, "y": 81.5685697755892, "size": 1, "color": "#4b94db" } }, { "key": "3655", "attributes": { "cluster": 2, "x": -34.92195618276649, "y": 81.56856977558921, "size": 2, "color": "#4b94db" } }, { "key": "3656", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": 0.7458911917491378, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3657", "attributes": { "cluster": 2, "x": -34.92195618276649, "y": 60.783960084762676, "size": 1, "color": "#4b94db" } }, { "key": "3658", "attributes": { "cluster": 2, "x": 4.078043817233492, "y": 34.803197971229515, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3659", "attributes": { "cluster": 1, "x": 44.67507866692195, "y": -4.450261230957501, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3660", "attributes": { "cluster": 0, "x": -29.617944846458734, "y": -16.574616883939637, "size": 1, "color": "#e36d0" } }, { "key": "3661", "attributes": { "cluster": 2, "x": -3.9219561827664733, "y": 107.54933188912236, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3662", "attributes": { "cluster": 1, "x": 78.67507866692203, "y": -66.80409030343705, "size": 2, "color": "#762e2e" } }, { "key": "3663", "attributes": { "cluster": 1, "x": 78.675078666922, "y": -4.450261230957487, "size": 1, "color": "#762e2e" } }, { "key": "3664", "attributes": { "cluster": 2, "x": -3.9219561827664897, "y": 34.803197971229515, "size": 2, "color": "#4b94db" } }, { "key": "3665", "attributes": { "cluster": 2, "x": 4.0780438172335085, "y": 107.54933188912236, "size": 1, "color": "#4b94db" } }, { "key": "3666", "attributes": { "cluster": 2, "x": -16.921956182766532, "y": 102.35317946641571, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3667", "attributes": { "cluster": 1, "x": 44.675078666921976, "y": -66.80409030343708, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "3668", "attributes": { "cluster": 0, "x": -93.61794484645876, "y": -54.67973465045492, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3669", "attributes": { "cluster": 0, "x": -29.617944846458734, "y": -54.67973465045493, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3670", "attributes": { "cluster": 0, "x": -93.61794484645876, "y": -16.57461688393963, "size": 0, "color": "#e36d0" } }, { "key": "3671", "attributes": { "cluster": 1, "x": 77.67507866692202, "y": -68.53614111100593, "size": 3, "color": "#762e2e" } }, { "key": "3672", "attributes": { "cluster": 1, "x": 45.67507866692196, "y": -2.7182104233886264, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3673", "attributes": { "cluster": 2, "x": 17.078043817233553, "y": 39.999350393936155, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3674", "attributes": { "cluster": 1, "x": 45.675078666921976, "y": -68.53614111100595, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3675", "attributes": { "cluster": 2, "x": 17.07804381723352, "y": 102.35317946641572, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3676", "attributes": { "cluster": 0, "x": -94.61794484645876, "y": -52.94768384288604, "size": 1, "color": "#e36d0" } }, { "key": "3677", "attributes": { "cluster": 2, "x": -16.9219561827665, "y": 39.99935039393614, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "3678", "attributes": { "cluster": 1, "x": 77.675078666922, "y": -2.718210423388612, "size": 1, "color": "#762e2e" } }, { "key": "3679", "attributes": { "cluster": 1, "x": 35.67507866692198, "y": -61.607937880730425, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3680", "attributes": { "cluster": 0, "x": -28.617944846458734, "y": -18.306667691508515, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3681", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": -9.646413653664133, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "3682", "attributes": { "cluster": 1, "x": 35.67507866692197, "y": -9.646413653664123, "size": 0, "color": "#762e2e" } }, { "key": "3683", "attributes": { "cluster": 2, "x": 16.07804381723354, "y": 38.26729958636728, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3684", "attributes": { "cluster": 0, "x": -94.61794484645876, "y": -18.306667691508505, "size": 1, "color": "#e36d0" } }, { "key": "3685", "attributes": { "cluster": 0, "x": -28.617944846458734, "y": -52.94768384288605, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3686", "attributes": { "cluster": 2, "x": -15.92195618276652, "y": 104.08523027398459, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3687", "attributes": { "cluster": 1, "x": 87.67507866692202, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3688", "attributes": { "cluster": 0, "x": -36.61794484645873, "y": -7.914362846095255, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3689", "attributes": { "cluster": 1, "x": 39.675078666921955, "y": -6.1823120385263834, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3690", "attributes": { "cluster": 1, "x": 83.67507866692202, "y": -65.07203949586818, "size": 1, "color": "#762e2e" } }, { "key": "3691", "attributes": { "cluster": 2, "x": -15.921956182766502, "y": 38.267299586367265, "size": 0, "color": "#4b94db" } }, { "key": "3692", "attributes": { "cluster": 2, "x": 16.07804381723352, "y": 104.08523027398459, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3693", "attributes": { "cluster": 0, "x": -86.61794484645876, "y": -63.3399886882993, "size": 1, "color": "#e36d0" } }, { "key": "3694", "attributes": { "cluster": 1, "x": 83.675078666922, "y": -6.182312038526366, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3695", "attributes": { "cluster": 1, "x": 39.675078666921976, "y": -65.0720394958682, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3696", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -72.0002427261437, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3697", "attributes": { "cluster": 2, "x": -25.921956182766497, "y": 45.19550281664279, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3698", "attributes": { "cluster": 0, "x": -30.617944846458734, "y": -14.842566076370758, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3699", "attributes": { "cluster": 1, "x": 55.67507866692199, "y": 0.7458911917491378, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3700", "attributes": { "cluster": 1, "x": 55.67507866692198, "y": -72.0002427261437, "size": 2, "color": "#762e2e" } }, { "key": "3701", "attributes": { "cluster": 1, "x": 67.675078666922, "y": 0.7458911917491378, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3702", "attributes": { "cluster": 2, "x": 26.078043817233517, "y": 97.15702704370908, "size": 2, "color": "#4b94db" } }, { "key": "3703", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -0.9861596158197514, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3704", "attributes": { "cluster": 1, "x": 74.675078666922, "y": -70.26819191857481, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3705", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -44.28742980504167, "size": 1, "color": "#762e2e" } }, { "key": "3706", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -26.9669217293529, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3707", "attributes": { "cluster": 2, "x": -25.92195618276651, "y": 97.15702704370909, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3708", "attributes": { "cluster": 1, "x": 74.675078666922, "y": -0.9861596158197372, "size": 1, "color": "#762e2e" } }, { "key": "3709", "attributes": { "cluster": 1, "x": 25.67507866692199, "y": -26.966921729352887, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3710", "attributes": { "cluster": 0, "x": -92.61794484645876, "y": -56.4117854580238, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3711", "attributes": { "cluster": 1, "x": 25.67507866692199, "y": -44.287429805041654, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3712", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -70.26819191857481, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3713", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -37.35922657476616, "size": 1, "color": "#762e2e" } }, { "key": "3714", "attributes": { "cluster": 1, "x": 25.67507866692199, "y": -33.8951249596284, "size": 3.6666666666666665, "color": "#762e2e" } }, { "key": "3715", "attributes": { "cluster": 2, "x": 26.07804381723353, "y": 45.19550281664277, "size": 1, "color": "#4b94db" } }, { "key": "3716", "attributes": { "cluster": 2, "x": -21.921956182766525, "y": 100.62112865884683, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3717", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3718", "attributes": { "cluster": 1, "x": 53.67507866692198, "y": 0.7458911917491235, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3719", "attributes": { "cluster": 2, "x": 22.078043817233546, "y": 41.73140120150504, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3720", "attributes": { "cluster": 2, "x": 22.07804381723352, "y": 100.62112865884684, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3721", "attributes": { "cluster": 2, "x": -21.9219561827665, "y": 41.73140120150502, "size": 1, "color": "#4b94db" } }, { "key": "3722", "attributes": { "cluster": 1, "x": 24.67507866692199, "y": -32.163074152059515, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3723", "attributes": { "cluster": 2, "x": 6.0780438172335085, "y": 34.803197971229515, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3724", "attributes": { "cluster": 0, "x": -36.61794484645871, "y": -63.3399886882993, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3725", "attributes": { "cluster": 1, "x": 24.67507866692199, "y": -39.09127738233503, "size": 3.3333333333333335, "color": "#762e2e" } }, { "key": "3726", "attributes": { "cluster": 0, "x": -30.617944846458734, "y": -56.411785458023814, "size": 1, "color": "#e36d0" } }, { "key": "3727", "attributes": { "cluster": 2, "x": -5.92195618276649, "y": 107.54933188912236, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3728", "attributes": { "cluster": 2, "x": -5.9219561827664995, "y": 34.803197971229515, "size": 1, "color": "#4b94db" } }, { "key": "3729", "attributes": { "cluster": 0, "x": -86.61794484645877, "y": -7.914362846095258, "size": 2, "color": "#e36d0" } }, { "key": "3730", "attributes": { "cluster": 0, "x": -92.61794484645876, "y": -14.842566076370748, "size": 1, "color": "#e36d0" } }, { "key": "3731", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -39.09127738233504, "size": 1, "color": "#762e2e" } }, { "key": "3732", "attributes": { "cluster": 0, "x": -95.61794484645876, "y": -20.038718499077383, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3733", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -32.16307415205953, "size": 3, "color": "#762e2e" } }, { "key": "3734", "attributes": { "cluster": 1, "x": 69.675078666922, "y": 0.7458911917491378, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3735", "attributes": { "cluster": 0, "x": -95.61794484645876, "y": -51.21563303531717, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3736", "attributes": { "cluster": 2, "x": 6.078043817233518, "y": 107.54933188912236, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3737", "attributes": { "cluster": 0, "x": -27.617944846458734, "y": -51.215633035317175, "size": 2, "color": "#e36d0" } }, { "key": "3738", "attributes": { "cluster": 0, "x": -27.617944846458734, "y": -20.038718499077394, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3739", "attributes": { "cluster": 2, "x": -12.921956182766507, "y": 105.81728108155346, "size": 2, "color": "#4b94db" } }, { "key": "3740", "attributes": { "cluster": 0, "x": -31.617944846458734, "y": -13.11051526880188, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3741", "attributes": { "cluster": 0, "x": -91.61794484645876, "y": -58.14383626559268, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3742", "attributes": { "cluster": 0, "x": -31.617944846458734, "y": -58.14383626559268, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "3743", "attributes": { "cluster": 1, "x": 53.675078666921976, "y": -72.0002427261437, "size": 2, "color": "#762e2e" } }, { "key": "3744", "attributes": { "cluster": 0, "x": -91.61794484645876, "y": -13.110515268801873, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3745", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -16.574616883939637, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3746", "attributes": { "cluster": 1, "x": 29.675078666921983, "y": -54.67973465045492, "size": 1, "color": "#762e2e" } }, { "key": "3747", "attributes": { "cluster": 2, "x": 13.078043817233524, "y": 36.535248778798405, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3748", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -54.67973465045493, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3749", "attributes": { "cluster": 0, "x": -96.61794484645873, "y": -21.77076930664625, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3750", "attributes": { "cluster": 1, "x": 29.675078666921983, "y": -16.57461688393963, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3751", "attributes": { "cluster": 1, "x": 28.675078666921983, "y": -52.94768384288604, "size": 1, "color": "#762e2e" } }, { "key": "3752", "attributes": { "cluster": 0, "x": -26.617944846458748, "y": -49.48358222774831, "size": 1, "color": "#e36d0" } }, { "key": "3753", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -18.306667691508515, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3754", "attributes": { "cluster": 0, "x": -26.61794484645874, "y": -21.77076930664628, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3755", "attributes": { "cluster": 2, "x": 36.07804381723351, "y": 62.516010892331536, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3756", "attributes": { "cluster": 0, "x": -42.61794484645873, "y": -4.450261230957487, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3757", "attributes": { "cluster": 0, "x": -96.61794484645874, "y": -49.48358222774828, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3758", "attributes": { "cluster": 0, "x": -80.61794484645876, "y": -66.80409030343708, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3759", "attributes": { "cluster": 2, "x": 36.07804381723351, "y": 79.83651896802031, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3760", "attributes": { "cluster": 1, "x": 28.675078666921983, "y": -18.306667691508505, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3761", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -52.94768384288605, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3762", "attributes": { "cluster": 1, "x": 86.675078666922, "y": -7.914362846095255, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3763", "attributes": { "cluster": 0, "x": -42.6179448464587, "y": -66.80409030343705, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3764", "attributes": { "cluster": 0, "x": -80.61794484645878, "y": -4.4502612309575085, "size": 2, "color": "#e36d0" } }, { "key": "3765", "attributes": { "cluster": 0, "x": -98.61794484645874, "y": -28.69897253692176, "size": 3, "color": "#e36d0" } }, { "key": "3766", "attributes": { "cluster": 0, "x": -98.61794484645874, "y": -42.55537899747278, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3767", "attributes": { "cluster": 0, "x": -24.61794484645874, "y": -42.55537899747279, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3768", "attributes": { "cluster": 1, "x": 36.675078666921976, "y": -63.3399886882993, "size": 1, "color": "#762e2e" } }, { "key": "3769", "attributes": { "cluster": 2, "x": 13.07804381723352, "y": 105.81728108155347, "size": 1, "color": "#4b94db" } }, { "key": "3770", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -14.842566076370758, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3771", "attributes": { "cluster": 1, "x": 30.675078666921983, "y": -56.4117854580238, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "3772", "attributes": { "cluster": 1, "x": 86.67507866692202, "y": -63.3399886882993, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3773", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -56.411785458023814, "size": 1, "color": "#762e2e" } }, { "key": "3774", "attributes": { "cluster": 0, "x": -24.61794484645874, "y": -28.69897253692178, "size": 1, "color": "#e36d0" } }, { "key": "3775", "attributes": { "cluster": 2, "x": -35.92195618276649, "y": 79.83651896802033, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3776", "attributes": { "cluster": 2, "x": -35.92195618276649, "y": 62.51601089233155, "size": 2, "color": "#4b94db" } }, { "key": "3777", "attributes": { "cluster": 0, "x": -40.61794484645873, "y": -4.450261230957487, "size": 1, "color": "#e36d0" } }, { "key": "3778", "attributes": { "cluster": 2, "x": -12.921956182766502, "y": 36.53524877879839, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3779", "attributes": { "cluster": 1, "x": 36.67507866692196, "y": -7.914362846095258, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3780", "attributes": { "cluster": 0, "x": -82.61794484645878, "y": -4.450261230957505, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3781", "attributes": { "cluster": 1, "x": 30.675078666921983, "y": -14.842566076370748, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3782", "attributes": { "cluster": 1, "x": 27.675078666921983, "y": -20.038718499077383, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3783", "attributes": { "cluster": 2, "x": 36.07804381723351, "y": 69.44421412260705, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3784", "attributes": { "cluster": 1, "x": 27.675078666921983, "y": -51.21563303531717, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3785", "attributes": { "cluster": 0, "x": -82.61794484645876, "y": -66.80409030343708, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3786", "attributes": { "cluster": 0, "x": -40.6179448464587, "y": -66.80409030343705, "size": 2, "color": "#e36d0" } }, { "key": "3787", "attributes": { "cluster": 2, "x": -35.92195618276649, "y": 72.90831573774481, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3788", "attributes": { "cluster": 2, "x": 8.078043817233514, "y": 34.80319797122953, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3789", "attributes": { "cluster": 2, "x": -7.921956182766496, "y": 107.54933188912233, "size": 2, "color": "#4b94db" } }, { "key": "3790", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": 0.7458911917491378, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3791", "attributes": { "cluster": 2, "x": -36.92195618276649, "y": 74.6403665453137, "size": 2, "color": "#4b94db" } }, { "key": "3792", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -51.215633035317175, "size": 2, "color": "#762e2e" } }, { "key": "3793", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": -72.0002427261437, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3794", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -20.038718499077394, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3795", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -13.11051526880188, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3796", "attributes": { "cluster": 1, "x": 31.675078666921983, "y": -58.14383626559268, "size": 2, "color": "#762e2e" } }, { "key": "3797", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -58.14383626559268, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3798", "attributes": { "cluster": 1, "x": 31.675078666921983, "y": -13.110515268801873, "size": 1, "color": "#762e2e" } }, { "key": "3799", "attributes": { "cluster": 2, "x": -36.92195618276649, "y": 67.71216331503818, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3800", "attributes": { "cluster": 2, "x": 37.07804381723351, "y": 67.71216331503817, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3801", "attributes": { "cluster": 2, "x": 37.07804381723351, "y": 74.64036654531368, "size": 1, "color": "#4b94db" } }, { "key": "3802", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": 0.7458911917491378, "size": 2, "color": "#e36d0" } }, { "key": "3803", "attributes": { "cluster": 2, "x": 8.07804381723352, "y": 107.54933188912236, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3804", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -72.0002427261437, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3805", "attributes": { "cluster": 1, "x": 26.675078666921998, "y": -21.77076930664625, "size": 1, "color": "#762e2e" } }, { "key": "3806", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -49.48358222774831, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3807", "attributes": { "cluster": 2, "x": -7.921956182766501, "y": 34.803197971229515, "size": 2, "color": "#4b94db" } }, { "key": "3808", "attributes": { "cluster": 0, "x": -32.617944846458734, "y": -11.378464461233001, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3809", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -21.77076930664628, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3810", "attributes": { "cluster": 1, "x": 80.675078666922, "y": -4.450261230957487, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3811", "attributes": { "cluster": 2, "x": 32.078043817233514, "y": 90.22882381343358, "size": 2, "color": "#4b94db" } }, { "key": "3812", "attributes": { "cluster": 0, "x": -90.61794484645876, "y": -59.87588707316156, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3813", "attributes": { "cluster": 1, "x": 26.67507866692199, "y": -49.48358222774828, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3814", "attributes": { "cluster": 2, "x": -31.921956182766497, "y": 52.12370604691829, "size": 2, "color": "#4b94db" } }, { "key": "3815", "attributes": { "cluster": 2, "x": 32.078043817233514, "y": 52.12370604691829, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3816", "attributes": { "cluster": 2, "x": -31.921956182766497, "y": 90.22882381343358, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3817", "attributes": { "cluster": 0, "x": -32.61794484645873, "y": -59.875887073161564, "size": 1, "color": "#e36d0" } }, { "key": "3818", "attributes": { "cluster": 1, "x": 42.675078666921976, "y": -66.80409030343708, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "3819", "attributes": { "cluster": 0, "x": -90.61794484645876, "y": -11.378464461232994, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3820", "attributes": { "cluster": 1, "x": 80.67507866692203, "y": -66.80409030343705, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3821", "attributes": { "cluster": 1, "x": 42.67507866692195, "y": -4.4502612309575085, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3822", "attributes": { "cluster": 1, "x": 24.67507866692199, "y": -28.69897253692176, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3823", "attributes": { "cluster": 2, "x": -32.9219561827665, "y": 53.85575685448717, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3824", "attributes": { "cluster": 1, "x": 24.67507866692199, "y": -42.55537899747278, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3825", "attributes": { "cluster": 0, "x": -46.61794484645871, "y": -70.26819191857481, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3826", "attributes": { "cluster": 2, "x": 33.078043817233514, "y": 88.4967730058647, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3827", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -42.55537899747279, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3828", "attributes": { "cluster": 0, "x": -76.61794484645877, "y": -0.9861596158197514, "size": 1, "color": "#e36d0" } }, { "key": "3829", "attributes": { "cluster": 2, "x": -32.9219561827665, "y": 88.49677300586471, "size": 2, "color": "#4b94db" } }, { "key": "3830", "attributes": { "cluster": 2, "x": 33.078043817233514, "y": 53.855756854487154, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3831", "attributes": { "cluster": 0, "x": -76.61794484645876, "y": -70.26819191857481, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3832", "attributes": { "cluster": 2, "x": 25.07804381723352, "y": 98.88907785127796, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3833", "attributes": { "cluster": 2, "x": -24.9219561827665, "y": 43.463452009073904, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3834", "attributes": { "cluster": 2, "x": 31.078043817233517, "y": 91.96087462100246, "size": 1, "color": "#4b94db" } }, { "key": "3835", "attributes": { "cluster": 0, "x": -46.61794484645873, "y": -0.9861596158197372, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3836", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -28.69897253692178, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3837", "attributes": { "cluster": 2, "x": -30.921956182766497, "y": 50.39165523934941, "size": 3, "color": "#4b94db" } }, { "key": "3838", "attributes": { "cluster": 2, "x": 25.07804381723354, "y": 43.46345200907391, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "3839", "attributes": { "cluster": 0, "x": -97.61794484645874, "y": -23.50282011421512, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "3840", "attributes": { "cluster": 2, "x": 31.078043817233517, "y": 50.391655239349404, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3841", "attributes": { "cluster": 2, "x": -24.921956182766518, "y": 98.88907785127796, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3842", "attributes": { "cluster": 2, "x": -30.921956182766497, "y": 91.96087462100246, "size": 1, "color": "#4b94db" } }, { "key": "3843", "attributes": { "cluster": 0, "x": -97.61794484645874, "y": -47.75153142017941, "size": 2, "color": "#e36d0" } }, { "key": "3844", "attributes": { "cluster": 2, "x": -33.9219561827665, "y": 86.76472219829583, "size": 1, "color": "#4b94db" } }, { "key": "3845", "attributes": { "cluster": 0, "x": -25.61794484645874, "y": -47.75153142017944, "size": 2, "color": "#e36d0" } }, { "key": "3846", "attributes": { "cluster": 2, "x": -33.9219561827665, "y": 55.58780766205605, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3847", "attributes": { "cluster": 0, "x": -25.61794484645874, "y": -23.502820114215147, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3848", "attributes": { "cluster": 2, "x": 34.078043817233514, "y": 55.587807662056036, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3849", "attributes": { "cluster": 1, "x": 82.675078666922, "y": -4.450261230957487, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3850", "attributes": { "cluster": 0, "x": -37.61794484645873, "y": -6.182312038526366, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3851", "attributes": { "cluster": 2, "x": 34.078043817233514, "y": 86.76472219829581, "size": 2, "color": "#4b94db" } }, { "key": "3852", "attributes": { "cluster": 1, "x": 40.67507866692195, "y": -4.450261230957505, "size": 3, "color": "#762e2e" } }, { "key": "3853", "attributes": { "cluster": 1, "x": 40.675078666921976, "y": -66.80409030343708, "size": 2, "color": "#762e2e" } }, { "key": "3854", "attributes": { "cluster": 1, "x": 82.67507866692203, "y": -66.80409030343705, "size": 2, "color": "#762e2e" } }, { "key": "3855", "attributes": { "cluster": 0, "x": -85.61794484645878, "y": -6.1823120385263834, "size": 1, "color": "#e36d0" } }, { "key": "3856", "attributes": { "cluster": 2, "x": 30.078043817233517, "y": 93.69292542857133, "size": 1, "color": "#4b94db" } }, { "key": "3857", "attributes": { "cluster": 0, "x": -85.61794484645876, "y": -65.0720394958682, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3858", "attributes": { "cluster": 0, "x": -37.617944846458705, "y": -65.07203949586818, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3859", "attributes": { "cluster": 2, "x": -29.921956182766497, "y": 48.65960443178054, "size": 1, "color": "#4b94db" } }, { "key": "3860", "attributes": { "cluster": 2, "x": 30.078043817233517, "y": 48.65960443178052, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3861", "attributes": { "cluster": 0, "x": -62.61794484645874, "y": 2.4779419993179985, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3862", "attributes": { "cluster": 2, "x": -29.921956182766497, "y": 93.69292542857134, "size": 1, "color": "#4b94db" } }, { "key": "3863", "attributes": { "cluster": 2, "x": -34.921956182766486, "y": 85.03267139072696, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3864", "attributes": { "cluster": 2, "x": 35.0780438172335, "y": 57.319858469624904, "size": 1, "color": "#4b94db" } }, { "key": "3865", "attributes": { "cluster": 2, "x": 35.07804381723351, "y": 85.03267139072693, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3866", "attributes": { "cluster": 0, "x": -60.61794484645874, "y": -73.73229353371255, "size": 0, "color": "#e36d0" } }, { "key": "3867", "attributes": { "cluster": 2, "x": 19.07804381723352, "y": 102.35317946641572, "size": 0, "color": "#4b94db" } }, { "key": "3868", "attributes": { "cluster": 0, "x": -60.61794484645875, "y": 2.4779419993180056, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3869", "attributes": { "cluster": 0, "x": -62.617944846458734, "y": -73.73229353371256, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3870", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": 0.7458911917491378, "size": 1, "color": "#762e2e" } }, { "key": "3871", "attributes": { "cluster": 1, "x": 71.675078666922, "y": -72.0002427261437, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3872", "attributes": { "cluster": 2, "x": -34.92195618276649, "y": 57.31985846962493, "size": 2, "color": "#4b94db" } }, { "key": "3873", "attributes": { "cluster": 1, "x": 71.675078666922, "y": 0.7458911917491378, "size": 1, "color": "#762e2e" } }, { "key": "3874", "attributes": { "cluster": 0, "x": -24.61794484645874, "y": -35.627175767197286, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3875", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": -72.0002427261437, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3876", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -11.378464461233001, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3877", "attributes": { "cluster": 0, "x": -23.61794484645874, "y": -33.89512495962841, "size": 1, "color": "#e36d0" } }, { "key": "3878", "attributes": { "cluster": 0, "x": -98.61794484645874, "y": -35.62717576719727, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3879", "attributes": { "cluster": 2, "x": -18.9219561827665, "y": 39.99935039393614, "size": 3, "color": "#4b94db" } }, { "key": "3880", "attributes": { "cluster": 1, "x": 32.67507866692198, "y": -59.87588707316156, "size": 1, "color": "#762e2e" } }, { "key": "3881", "attributes": { "cluster": 2, "x": 19.078043817233553, "y": 39.99935039393616, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3882", "attributes": { "cluster": 0, "x": -99.61794484645874, "y": -37.35922657476615, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3883", "attributes": { "cluster": 1, "x": 90.675078666922, "y": -59.875887073161564, "size": 2, "color": "#762e2e" } }, { "key": "3884", "attributes": { "cluster": 1, "x": 32.675078666921976, "y": -11.378464461232994, "size": 1, "color": "#762e2e" } }, { "key": "3885", "attributes": { "cluster": 2, "x": -18.921956182766532, "y": 102.3531794664157, "size": 1, "color": "#4b94db" } }, { "key": "3886", "attributes": { "cluster": 0, "x": -89.61794484645876, "y": -61.60793788073043, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3887", "attributes": { "cluster": 1, "x": 76.67507866692202, "y": -70.26819191857481, "size": 1, "color": "#762e2e" } }, { "key": "3888", "attributes": { "cluster": 1, "x": 46.67507866692196, "y": -0.9861596158197514, "size": 1, "color": "#762e2e" } }, { "key": "3889", "attributes": { "cluster": 1, "x": 46.675078666921976, "y": -70.26819191857481, "size": 1, "color": "#762e2e" } }, { "key": "3890", "attributes": { "cluster": 1, "x": 76.675078666922, "y": -0.9861596158197372, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3891", "attributes": { "cluster": 1, "x": 25.67507866692199, "y": -23.50282011421512, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3892", "attributes": { "cluster": 2, "x": -36.92195618276649, "y": 78.10446816045145, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3893", "attributes": { "cluster": 2, "x": -36.92195618276649, "y": 64.24806169990043, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3894", "attributes": { "cluster": 0, "x": -33.617944846458734, "y": -9.646413653664126, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3895", "attributes": { "cluster": 0, "x": -89.61794484645876, "y": -9.646413653664137, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3896", "attributes": { "cluster": 1, "x": 25.67507866692199, "y": -47.75153142017941, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3897", "attributes": { "cluster": 2, "x": 37.07804381723351, "y": 64.24806169990042, "size": 2, "color": "#4b94db" } }, { "key": "3898", "attributes": { "cluster": 2, "x": 37.07804381723351, "y": 78.10446816045143, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3899", "attributes": { "cluster": 0, "x": -33.61794484645872, "y": -61.60793788073042, "size": 3, "color": "#e36d0" } }, { "key": "3900", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -47.75153142017944, "size": 2, "color": "#762e2e" } }, { "key": "3901", "attributes": { "cluster": 0, "x": -64.61794484645871, "y": 2.4779419993180127, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3902", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -23.502820114215147, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "3903", "attributes": { "cluster": 0, "x": -58.61794484645876, "y": -73.73229353371258, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "3904", "attributes": { "cluster": 0, "x": -58.61794484645875, "y": 2.4779419993180127, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3905", "attributes": { "cluster": 2, "x": 21.07804381723352, "y": 102.35317946641572, "size": 3, "color": "#4b94db" } }, { "key": "3906", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -73.73229353371258, "size": 1, "color": "#e36d0" } }, { "key": "3907", "attributes": { "cluster": 0, "x": -49.61794484645871, "y": -72.00024272614368, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3908", "attributes": { "cluster": 2, "x": -20.921956182766532, "y": 102.35317946641571, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3909", "attributes": { "cluster": 1, "x": 85.675078666922, "y": -6.182312038526366, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3910", "attributes": { "cluster": 0, "x": -73.61794484645877, "y": 0.7458911917491307, "size": 2, "color": "#e36d0" } }, { "key": "3911", "attributes": { "cluster": 2, "x": -20.9219561827665, "y": 39.99935039393614, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3912", "attributes": { "cluster": 2, "x": 21.078043817233553, "y": 39.999350393936155, "size": 1, "color": "#4b94db" } }, { "key": "3913", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -72.0002427261437, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3914", "attributes": { "cluster": 0, "x": -49.61794484645873, "y": 0.7458911917491378, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3915", "attributes": { "cluster": 2, "x": -9.921956182766504, "y": 107.54933188912236, "size": 1, "color": "#4b94db" } }, { "key": "3916", "attributes": { "cluster": 2, "x": 10.078043817233521, "y": 34.803197971229515, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3917", "attributes": { "cluster": 0, "x": -99.61794484645874, "y": -30.43102334449064, "size": 1, "color": "#e36d0" } }, { "key": "3918", "attributes": { "cluster": 0, "x": -99.61794484645874, "y": -40.823328189903904, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3919", "attributes": { "cluster": 0, "x": -23.61794484645874, "y": -40.82332818990392, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3920", "attributes": { "cluster": 1, "x": 37.675078666921955, "y": -6.1823120385263834, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "3921", "attributes": { "cluster": 1, "x": 37.675078666921976, "y": -65.0720394958682, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3922", "attributes": { "cluster": 1, "x": 85.67507866692202, "y": -65.07203949586818, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3923", "attributes": { "cluster": 0, "x": -23.61794484645874, "y": -30.431023344490654, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3924", "attributes": { "cluster": 1, "x": 60.67507866692199, "y": 2.4779419993179985, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3925", "attributes": { "cluster": 0, "x": -66.61794484645873, "y": 2.4779419993180127, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3926", "attributes": { "cluster": 1, "x": 62.67507866692199, "y": -73.73229353371255, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3927", "attributes": { "cluster": 2, "x": 10.07804381723352, "y": 107.54933188912236, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3928", "attributes": { "cluster": 0, "x": -56.61794484645875, "y": -73.73229353371258, "size": 2, "color": "#e36d0" } }, { "key": "3929", "attributes": { "cluster": 1, "x": 62.67507866692198, "y": 2.4779419993180056, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3930", "attributes": { "cluster": 1, "x": 60.675078666922, "y": -73.73229353371256, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3931", "attributes": { "cluster": 2, "x": -9.921956182766502, "y": 34.803197971229515, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3932", "attributes": { "cluster": 2, "x": 29.078043817233517, "y": 95.42497623614021, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3933", "attributes": { "cluster": 2, "x": -28.921956182766497, "y": 46.927553624211654, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3934", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": 2.4779419993180127, "size": 1, "color": "#e36d0" } }, { "key": "3935", "attributes": { "cluster": 2, "x": 29.078043817233524, "y": 46.92755362421165, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3936", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3937", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -35.627175767197286, "size": 1, "color": "#762e2e" } }, { "key": "3938", "attributes": { "cluster": 0, "x": -24.61794484645874, "y": -25.234870921784022, "size": 1, "color": "#e36d0" } }, { "key": "3939", "attributes": { "cluster": 2, "x": -28.921956182766504, "y": 95.42497623614022, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3940", "attributes": { "cluster": 2, "x": 15.078043817233533, "y": 36.535248778798405, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3941", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -33.89512495962841, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3942", "attributes": { "cluster": 2, "x": -14.921956182766516, "y": 105.81728108155346, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3943", "attributes": { "cluster": 2, "x": -14.921956182766502, "y": 36.53524877879839, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3944", "attributes": { "cluster": 0, "x": -98.61794484645874, "y": -46.019480612610536, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3945", "attributes": { "cluster": 0, "x": -24.61794484645874, "y": -46.01948061261055, "size": 1, "color": "#e36d0" } }, { "key": "3946", "attributes": { "cluster": 0, "x": -98.61794484645874, "y": -25.234870921784008, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3947", "attributes": { "cluster": 0, "x": -79.61794484645876, "y": -68.53614111100595, "size": 1, "color": "#e36d0" } }, { "key": "3948", "attributes": { "cluster": 0, "x": -43.61794484645869, "y": -68.53614111100593, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3949", "attributes": { "cluster": 0, "x": -43.61794484645873, "y": -2.718210423388612, "size": 1, "color": "#e36d0" } }, { "key": "3950", "attributes": { "cluster": 1, "x": 24.67507866692199, "y": -35.62717576719727, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3951", "attributes": { "cluster": 0, "x": -79.61794484645878, "y": -2.7182104233886264, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3952", "attributes": { "cluster": 0, "x": -78.61794484645876, "y": -70.26819191857481, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3953", "attributes": { "cluster": 2, "x": 15.07804381723352, "y": 105.81728108155347, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3954", "attributes": { "cluster": 2, "x": -35.92195618276649, "y": 83.30062058315809, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3955", "attributes": { "cluster": 0, "x": -44.6179448464587, "y": -70.2681919185748, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3956", "attributes": { "cluster": 2, "x": -35.92195618276649, "y": 59.0519092771938, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3957", "attributes": { "cluster": 2, "x": 36.07804381723351, "y": 59.05190927719377, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3958", "attributes": { "cluster": 2, "x": 36.07804381723351, "y": 83.30062058315806, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "3959", "attributes": { "cluster": 0, "x": -44.61794484645873, "y": -0.9861596158197372, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3960", "attributes": { "cluster": 0, "x": -78.61794484645878, "y": -0.9861596158197585, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3961", "attributes": { "cluster": 1, "x": 23.67507866692199, "y": -37.35922657476615, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3962", "attributes": { "cluster": 0, "x": -88.61794484645876, "y": -63.3399886882993, "size": 2, "color": "#e36d0" } }, { "key": "3963", "attributes": { "cluster": 0, "x": -34.617944846458734, "y": -7.914362846095255, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3964", "attributes": { "cluster": 2, "x": 24.07804381723352, "y": 100.62112865884684, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3965", "attributes": { "cluster": 0, "x": -88.61794484645877, "y": -7.914362846095248, "size": 2, "color": "#e36d0" } }, { "key": "3966", "attributes": { "cluster": 0, "x": -34.61794484645871, "y": -63.339988688299314, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3967", "attributes": { "cluster": 2, "x": -23.921956182766525, "y": 100.62112865884683, "size": 1, "color": "#4b94db" } }, { "key": "3968", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": 2.4779419993180056, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3969", "attributes": { "cluster": 1, "x": 33.67507866692198, "y": -61.60793788073043, "size": 2, "color": "#762e2e" } }, { "key": "3970", "attributes": { "cluster": 0, "x": -54.61794484645873, "y": -73.73229353371256, "size": 1, "color": "#e36d0" } }, { "key": "3971", "attributes": { "cluster": 0, "x": -54.617944846458734, "y": 2.4779419993180127, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3972", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -9.646413653664126, "size": 2, "color": "#762e2e" } }, { "key": "3973", "attributes": { "cluster": 1, "x": 33.67507866692197, "y": -9.646413653664137, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "3974", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": -73.73229353371258, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "3975", "attributes": { "cluster": 2, "x": -23.9219561827665, "y": 41.73140120150502, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "3976", "attributes": { "cluster": 2, "x": 24.078043817233546, "y": 41.73140120150504, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "3977", "attributes": { "cluster": 1, "x": 89.67507866692202, "y": -61.60793788073042, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "3978", "attributes": { "cluster": 2, "x": -0.9219561827664902, "y": 109.28138269669121, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "3979", "attributes": { "cluster": 2, "x": 1.0780438172335087, "y": 33.071147163660655, "size": 1, "color": "#4b94db" } }, { "key": "3980", "attributes": { "cluster": 0, "x": -38.6179448464587, "y": -66.80409030343705, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "3981", "attributes": { "cluster": 0, "x": -38.61794484645873, "y": -4.450261230957487, "size": 1, "color": "#e36d0" } }, { "key": "3982", "attributes": { "cluster": 2, "x": 1.0780438172335043, "y": 109.28138269669122, "size": 1, "color": "#4b94db" } }, { "key": "3983", "attributes": { "cluster": 0, "x": -84.61794484645878, "y": -4.4502612309575085, "size": 1, "color": "#e36d0" } }, { "key": "3984", "attributes": { "cluster": 2, "x": -0.9219561827664857, "y": 33.07114716366065, "size": 1, "color": "#4b94db" } }, { "key": "3985", "attributes": { "cluster": 0, "x": -84.61794484645876, "y": -66.80409030343708, "size": 2, "color": "#e36d0" } }, { "key": "3986", "attributes": { "cluster": 1, "x": 58.67507866692201, "y": 2.4779419993180127, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3987", "attributes": { "cluster": 2, "x": 37.07804381723351, "y": 71.17626493017592, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "3988", "attributes": { "cluster": 0, "x": -23.61794484645874, "y": -44.287429805041675, "size": 1, "color": "#e36d0" } }, { "key": "3989", "attributes": { "cluster": 0, "x": -23.61794484645874, "y": -26.9669217293529, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3990", "attributes": { "cluster": 1, "x": 64.67507866692196, "y": -73.73229353371258, "size": 1, "color": "#762e2e" } }, { "key": "3991", "attributes": { "cluster": 0, "x": -99.61794484645874, "y": -26.966921729352883, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3992", "attributes": { "cluster": 0, "x": -99.61794484645874, "y": -44.287429805041654, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3993", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": 2.4779419993180127, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3994", "attributes": { "cluster": 2, "x": 38.07804381723351, "y": 72.9083157377448, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "3995", "attributes": { "cluster": 0, "x": -47.61794484645872, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "3996", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": 0.7458911917491235, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "3997", "attributes": { "cluster": 0, "x": -95.61794484645876, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "3998", "attributes": { "cluster": 1, "x": 58.675078666922, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "3999", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -72.0002427261437, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4000", "attributes": { "cluster": 0, "x": -27.617944846458734, "y": -16.574616883939637, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4001", "attributes": { "cluster": 0, "x": -47.61794484645873, "y": 0.7458911917491378, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4002", "attributes": { "cluster": 0, "x": -95.61794484645876, "y": -16.574616883939626, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4003", "attributes": { "cluster": 1, "x": 73.67507866692202, "y": -72.00024272614368, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4004", "attributes": { "cluster": 2, "x": -36.92195618276649, "y": 71.17626493017595, "size": 0, "color": "#4b94db" } }, { "key": "4005", "attributes": { "cluster": 0, "x": -27.617944846458734, "y": -54.67973465045493, "size": 0, "color": "#e36d0" } }, { "key": "4006", "attributes": { "cluster": 2, "x": -37.92195618276649, "y": 69.44421412260706, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4007", "attributes": { "cluster": 0, "x": -28.617944846458734, "y": -14.842566076370758, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4008", "attributes": { "cluster": 1, "x": 49.67507866692196, "y": 0.7458911917491307, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "4009", "attributes": { "cluster": 2, "x": -27.921956182766497, "y": 45.19550281664278, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4010", "attributes": { "cluster": 1, "x": 49.675078666921976, "y": -72.0002427261437, "size": 1, "color": "#762e2e" } }, { "key": "4011", "attributes": { "cluster": 2, "x": 28.078043817233517, "y": 97.15702704370909, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4012", "attributes": { "cluster": 2, "x": -27.92195618276651, "y": 97.15702704370908, "size": 2, "color": "#4b94db" } }, { "key": "4013", "attributes": { "cluster": 2, "x": 28.07804381723353, "y": 45.19550281664279, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4014", "attributes": { "cluster": 1, "x": 73.675078666922, "y": 0.7458911917491378, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4015", "attributes": { "cluster": 2, "x": -2.9219561827664684, "y": 109.28138269669122, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4016", "attributes": { "cluster": 1, "x": 23.67507866692199, "y": -30.43102334449064, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4017", "attributes": { "cluster": 2, "x": 3.078043817233487, "y": 33.07114716366064, "size": 1, "color": "#4b94db" } }, { "key": "4018", "attributes": { "cluster": 0, "x": -94.61794484645876, "y": -56.4117854580238, "size": 1, "color": "#e36d0" } }, { "key": "4019", "attributes": { "cluster": 1, "x": 23.67507866692199, "y": -40.823328189903904, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4020", "attributes": { "cluster": 0, "x": -28.617944846458734, "y": -56.41178545802381, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4021", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -40.82332818990392, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4022", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -30.431023344490654, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4023", "attributes": { "cluster": 1, "x": 56.675078666922, "y": 2.4779419993180127, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "4024", "attributes": { "cluster": 0, "x": -94.61794484645876, "y": -14.842566076370751, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4025", "attributes": { "cluster": 2, "x": 3.0780438172335045, "y": 109.28138269669122, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4026", "attributes": { "cluster": 1, "x": 66.67507866692198, "y": -73.73229353371258, "size": 1, "color": "#762e2e" } }, { "key": "4027", "attributes": { "cluster": 0, "x": -96.61794484645876, "y": -52.94768384288604, "size": 1, "color": "#e36d0" } }, { "key": "4028", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": 2.4779419993180127, "size": 1, "color": "#762e2e" } }, { "key": "4029", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": -73.73229353371258, "size": 1, "color": "#762e2e" } }, { "key": "4030", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -25.234870921784022, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4031", "attributes": { "cluster": 1, "x": 24.67507866692199, "y": -46.019480612610536, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4032", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -46.01948061261055, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4033", "attributes": { "cluster": 2, "x": -2.9219561827664857, "y": 33.07114716366064, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4034", "attributes": { "cluster": 1, "x": 24.67507866692199, "y": -25.234870921784008, "size": 1, "color": "#762e2e" } }, { "key": "4035", "attributes": { "cluster": 1, "x": 43.675078666921976, "y": -68.53614111100595, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4036", "attributes": { "cluster": 0, "x": -26.617944846458734, "y": -18.306667691508515, "size": 1, "color": "#e36d0" } }, { "key": "4037", "attributes": { "cluster": 1, "x": 79.67507866692205, "y": -68.53614111100593, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4038", "attributes": { "cluster": 2, "x": 12.078043817233539, "y": 34.80319797122952, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4039", "attributes": { "cluster": 0, "x": -96.61794484645876, "y": -18.30666769150851, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4040", "attributes": { "cluster": 0, "x": -26.617944846458734, "y": -52.94768384288605, "size": 1, "color": "#e36d0" } }, { "key": "4041", "attributes": { "cluster": 1, "x": 79.675078666922, "y": -2.718210423388612, "size": 3, "color": "#762e2e" } }, { "key": "4042", "attributes": { "cluster": 0, "x": -29.617944846458734, "y": -13.11051526880188, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "4043", "attributes": { "cluster": 2, "x": -11.921956182766522, "y": 107.54933188912234, "size": 1, "color": "#4b94db" } }, { "key": "4044", "attributes": { "cluster": 1, "x": 43.67507866692194, "y": -2.7182104233886264, "size": 1, "color": "#762e2e" } }, { "key": "4045", "attributes": { "cluster": 1, "x": 44.675078666921976, "y": -70.26819191857481, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4046", "attributes": { "cluster": 0, "x": -93.61794484645876, "y": -58.14383626559268, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "4047", "attributes": { "cluster": 0, "x": -29.617944846458734, "y": -58.14383626559269, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4048", "attributes": { "cluster": 2, "x": -11.921956182766502, "y": 34.803197971229515, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4049", "attributes": { "cluster": 1, "x": 78.67507866692203, "y": -70.2681919185748, "size": 2, "color": "#762e2e" } }, { "key": "4050", "attributes": { "cluster": 2, "x": 12.07804381723352, "y": 107.54933188912236, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4051", "attributes": { "cluster": 0, "x": -93.61794484645876, "y": -13.11051526880187, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4052", "attributes": { "cluster": 2, "x": -37.92195618276649, "y": 76.37241735288258, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4053", "attributes": { "cluster": 1, "x": 78.675078666922, "y": -0.9861596158197372, "size": 1, "color": "#762e2e" } }, { "key": "4054", "attributes": { "cluster": 2, "x": -37.92195618276649, "y": 65.98011250746931, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4055", "attributes": { "cluster": 0, "x": -52.61794484645874, "y": -73.73229353371256, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4056", "attributes": { "cluster": 1, "x": 44.67507866692195, "y": -0.9861596158197585, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4057", "attributes": { "cluster": 2, "x": 38.07804381723351, "y": 65.98011250746929, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4058", "attributes": { "cluster": 2, "x": 38.07804381723351, "y": 76.37241735288255, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4059", "attributes": { "cluster": 2, "x": -4.921956182766482, "y": 109.28138269669122, "size": 1, "color": "#4b94db" } }, { "key": "4060", "attributes": { "cluster": 0, "x": -70.61794484645874, "y": 2.4779419993180056, "size": 2, "color": "#e36d0" } }, { "key": "4061", "attributes": { "cluster": 2, "x": 5.0780438172335005, "y": 33.07114716366064, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4062", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -73.73229353371258, "size": 3, "color": "#e36d0" } }, { "key": "4063", "attributes": { "cluster": 0, "x": -52.61794484645873, "y": 2.4779419993180127, "size": 1, "color": "#e36d0" } }, { "key": "4064", "attributes": { "cluster": 2, "x": 5.078043817233513, "y": 109.28138269669122, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4065", "attributes": { "cluster": 1, "x": 34.67507866692198, "y": -63.3399886882993, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4066", "attributes": { "cluster": 0, "x": -99.61794484645874, "y": -33.8951249596284, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4067", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": -7.914362846095255, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4068", "attributes": { "cluster": 1, "x": 34.67507866692196, "y": -7.914362846095248, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4069", "attributes": { "cluster": 0, "x": -23.61794484645874, "y": -37.35922657476616, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4070", "attributes": { "cluster": 2, "x": -4.921956182766494, "y": 33.07114716366064, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4071", "attributes": { "cluster": 2, "x": 37.07804381723351, "y": 81.56856977558918, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4072", "attributes": { "cluster": 0, "x": -22.61794484645874, "y": -32.16307415205954, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "4073", "attributes": { "cluster": 2, "x": -36.92195618276649, "y": 60.783960084762676, "size": 1, "color": "#4b94db" } }, { "key": "4074", "attributes": { "cluster": 2, "x": 37.07804381723351, "y": 60.78396008476266, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4075", "attributes": { "cluster": 2, "x": -36.92195618276649, "y": 81.5685697755892, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4076", "attributes": { "cluster": 1, "x": 88.67507866692202, "y": -63.339988688299314, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4077", "attributes": { "cluster": 1, "x": 54.675078666921976, "y": 2.4779419993180056, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4078", "attributes": { "cluster": 1, "x": 68.675078666922, "y": -73.73229353371256, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4079", "attributes": { "cluster": 1, "x": 68.675078666922, "y": 2.4779419993180127, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4080", "attributes": { "cluster": 0, "x": -100.61794484645874, "y": -32.163074152059515, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4081", "attributes": { "cluster": 1, "x": 54.67507866692198, "y": -73.73229353371258, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4082", "attributes": { "cluster": 0, "x": -100.61794484645874, "y": -39.09127738233502, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4083", "attributes": { "cluster": 1, "x": 84.67507866692203, "y": -66.80409030343705, "size": 1, "color": "#762e2e" } }, { "key": "4084", "attributes": { "cluster": 0, "x": -22.61794484645874, "y": -39.09127738233504, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4085", "attributes": { "cluster": 1, "x": 84.675078666922, "y": -4.450261230957487, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4086", "attributes": { "cluster": 2, "x": -17.9219561827665, "y": 38.267299586367265, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4087", "attributes": { "cluster": 2, "x": 18.07804381723356, "y": 38.26729958636728, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4088", "attributes": { "cluster": 1, "x": 38.67507866692195, "y": -4.4502612309575085, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4089", "attributes": { "cluster": 0, "x": -25.61794484645874, "y": -20.038718499077405, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4090", "attributes": { "cluster": 0, "x": -97.61794484645876, "y": -20.038718499077383, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4091", "attributes": { "cluster": 0, "x": -97.61794484645874, "y": -51.215633035317154, "size": 1, "color": "#e36d0" } }, { "key": "4092", "attributes": { "cluster": 0, "x": -25.617944846458734, "y": -51.215633035317175, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4093", "attributes": { "cluster": 1, "x": 38.675078666921976, "y": -66.80409030343708, "size": 2, "color": "#762e2e" } }, { "key": "4094", "attributes": { "cluster": 0, "x": -35.61794484645873, "y": -6.182312038526376, "size": 2, "color": "#e36d0" } }, { "key": "4095", "attributes": { "cluster": 0, "x": -87.61794484645876, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4096", "attributes": { "cluster": 0, "x": -35.617944846458705, "y": -65.07203949586818, "size": 1, "color": "#e36d0" } }, { "key": "4097", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -44.287429805041675, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4098", "attributes": { "cluster": 0, "x": -87.61794484645878, "y": -6.1823120385263834, "size": 2, "color": "#e36d0" } }, { "key": "4099", "attributes": { "cluster": 0, "x": -92.61794484645876, "y": -59.87588707316156, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4100", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -26.9669217293529, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4101", "attributes": { "cluster": 0, "x": -30.617944846458734, "y": -11.378464461233001, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4102", "attributes": { "cluster": 2, "x": 18.07804381723352, "y": 104.08523027398459, "size": 1, "color": "#4b94db" } }, { "key": "4103", "attributes": { "cluster": 0, "x": -92.61794484645876, "y": -11.378464461233001, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4104", "attributes": { "cluster": 2, "x": -17.92195618276654, "y": 104.08523027398459, "size": 1, "color": "#4b94db" } }, { "key": "4105", "attributes": { "cluster": 1, "x": 23.67507866692199, "y": -26.966921729352883, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4106", "attributes": { "cluster": 2, "x": -16.9219561827665, "y": 36.53524877879839, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4107", "attributes": { "cluster": 0, "x": -30.617944846458727, "y": -59.87588707316156, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4108", "attributes": { "cluster": 2, "x": 17.07804381723355, "y": 36.53524877879841, "size": 1, "color": "#4b94db" } }, { "key": "4109", "attributes": { "cluster": 0, "x": -24.61794484645874, "y": -21.77076930664627, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4110", "attributes": { "cluster": 2, "x": 17.07804381723352, "y": 105.81728108155347, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4111", "attributes": { "cluster": 1, "x": 23.67507866692199, "y": -44.287429805041654, "size": 1, "color": "#762e2e" } }, { "key": "4112", "attributes": { "cluster": 2, "x": -16.92195618276653, "y": 105.81728108155346, "size": 2, "color": "#4b94db" } }, { "key": "4113", "attributes": { "cluster": 2, "x": -26.921956182766497, "y": 43.463452009073904, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4114", "attributes": { "cluster": 1, "x": 75.67507866692202, "y": -72.00024272614368, "size": 2, "color": "#762e2e" } }, { "key": "4115", "attributes": { "cluster": 1, "x": 47.67507866692197, "y": 0.7458911917491235, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4116", "attributes": { "cluster": 2, "x": 27.078043817233517, "y": 98.88907785127796, "size": 4, "color": "#4b94db" } }, { "key": "4117", "attributes": { "cluster": 0, "x": -98.61794484645874, "y": -49.483582227748286, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4118", "attributes": { "cluster": 0, "x": -24.61794484645874, "y": -49.48358222774832, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4119", "attributes": { "cluster": 1, "x": 27.675078666921983, "y": -54.67973465045492, "size": 2, "color": "#762e2e" } }, { "key": "4120", "attributes": { "cluster": 2, "x": -26.921956182766518, "y": 98.88907785127796, "size": 2, "color": "#4b94db" } }, { "key": "4121", "attributes": { "cluster": 0, "x": -98.61794484645874, "y": -21.770769306646237, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4122", "attributes": { "cluster": 0, "x": -100.61794484645874, "y": -28.69897253692176, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4123", "attributes": { "cluster": 2, "x": 27.07804381723354, "y": 43.463452009073904, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4124", "attributes": { "cluster": 0, "x": -100.61794484645874, "y": -42.55537899747278, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4125", "attributes": { "cluster": 0, "x": -22.61794484645874, "y": -42.5553789974728, "size": 1, "color": "#e36d0" } }, { "key": "4126", "attributes": { "cluster": 1, "x": 47.675078666921976, "y": -72.0002427261437, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "4127", "attributes": { "cluster": 0, "x": -22.61794484645874, "y": -28.69897253692178, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4128", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -16.574616883939637, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4129", "attributes": { "cluster": 1, "x": 75.675078666922, "y": 0.7458911917491378, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4130", "attributes": { "cluster": 0, "x": -41.61794484645873, "y": -2.718210423388612, "size": 1, "color": "#e36d0" } }, { "key": "4131", "attributes": { "cluster": 1, "x": 27.675078666921983, "y": -16.574616883939626, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4132", "attributes": { "cluster": 0, "x": -81.61794484645876, "y": -68.53614111100595, "size": 3.6666666666666665, "color": "#e36d0" } }, { "key": "4133", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -54.67973465045493, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4134", "attributes": { "cluster": 0, "x": -41.61794484645869, "y": -68.53614111100592, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4135", "attributes": { "cluster": 2, "x": -6.921956182766505, "y": 109.28138269669122, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4136", "attributes": { "cluster": 2, "x": 7.078043817233524, "y": 33.07114716366065, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4137", "attributes": { "cluster": 0, "x": -81.61794484645878, "y": -2.7182104233886335, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4138", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4139", "attributes": { "cluster": 0, "x": -50.61794484645871, "y": -73.73229353371256, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4140", "attributes": { "cluster": 0, "x": -50.61794484645873, "y": 2.4779419993180127, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4141", "attributes": { "cluster": 0, "x": -72.61794484645877, "y": 2.4779419993180056, "size": 2, "color": "#e36d0" } }, { "key": "4142", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -14.842566076370758, "size": 1, "color": "#762e2e" } }, { "key": "4143", "attributes": { "cluster": 1, "x": 28.675078666921983, "y": -56.4117854580238, "size": 1, "color": "#762e2e" } }, { "key": "4144", "attributes": { "cluster": 0, "x": -91.61794484645876, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4145", "attributes": { "cluster": 2, "x": 7.078043817233519, "y": 109.28138269669122, "size": 0, "color": "#4b94db" } }, { "key": "4146", "attributes": { "cluster": 2, "x": -6.9219561827665, "y": 33.07114716366064, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4147", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -56.41178545802381, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4148", "attributes": { "cluster": 1, "x": 28.675078666921983, "y": -14.842566076370751, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4149", "attributes": { "cluster": 1, "x": 26.675078666921983, "y": -52.94768384288604, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4150", "attributes": { "cluster": 0, "x": -31.617944846458734, "y": -9.646413653664123, "size": 3, "color": "#e36d0" } }, { "key": "4151", "attributes": { "cluster": 0, "x": -39.61794484645873, "y": -2.718210423388612, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4152", "attributes": { "cluster": 0, "x": -83.61794484645878, "y": -2.7182104233886335, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4153", "attributes": { "cluster": 2, "x": 23.078043817233553, "y": 39.99935039393616, "size": 1, "color": "#4b94db" } }, { "key": "4154", "attributes": { "cluster": 0, "x": -91.61794484645876, "y": -9.64641365366412, "size": 1, "color": "#e36d0" } }, { "key": "4155", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -18.306667691508515, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4156", "attributes": { "cluster": 0, "x": -83.61794484645876, "y": -68.53614111100595, "size": 2, "color": "#e36d0" } }, { "key": "4157", "attributes": { "cluster": 1, "x": 26.675078666921983, "y": -18.30666769150851, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4158", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4159", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -13.11051526880188, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4160", "attributes": { "cluster": 1, "x": 29.675078666921983, "y": -58.14383626559268, "size": 1, "color": "#762e2e" } }, { "key": "4161", "attributes": { "cluster": 2, "x": 23.07804381723352, "y": 102.35317946641572, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4162", "attributes": { "cluster": 0, "x": -39.61794484645869, "y": -68.53614111100592, "size": 1, "color": "#e36d0" } }, { "key": "4163", "attributes": { "cluster": 2, "x": -22.921956182766532, "y": 102.3531794664157, "size": 0, "color": "#4b94db" } }, { "key": "4164", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -58.14383626559269, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4165", "attributes": { "cluster": 0, "x": -31.61794484645872, "y": -61.60793788073044, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4166", "attributes": { "cluster": 0, "x": -77.61794484645878, "y": 0.7458911917491235, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4167", "attributes": { "cluster": 0, "x": -45.6179448464587, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4168", "attributes": { "cluster": 1, "x": 29.675078666921983, "y": -13.11051526880187, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4169", "attributes": { "cluster": 2, "x": -22.9219561827665, "y": 39.99935039393614, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4170", "attributes": { "cluster": 2, "x": 38.07804381723351, "y": 62.516010892331536, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "4171", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -73.73229353371256, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4172", "attributes": { "cluster": 2, "x": 38.07804381723351, "y": 79.83651896802031, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4173", "attributes": { "cluster": 0, "x": -45.61794484645873, "y": 0.7458911917491378, "size": 1, "color": "#e36d0" } }, { "key": "4174", "attributes": { "cluster": 0, "x": -77.61794484645876, "y": -72.0002427261437, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4175", "attributes": { "cluster": 0, "x": -61.617944846458734, "y": -75.46434434128145, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4176", "attributes": { "cluster": 1, "x": 52.67507866692199, "y": 2.4779419993180056, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4177", "attributes": { "cluster": 2, "x": -37.92195618276649, "y": 79.83651896802033, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4178", "attributes": { "cluster": 0, "x": -61.61794484645875, "y": 4.209992806886881, "size": 1, "color": "#e36d0" } }, { "key": "4179", "attributes": { "cluster": 0, "x": -99.61794484645874, "y": -47.75153142017941, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4180", "attributes": { "cluster": 1, "x": 52.675078666921976, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4181", "attributes": { "cluster": 2, "x": -37.92195618276649, "y": 62.51601089233155, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4182", "attributes": { "cluster": 0, "x": -23.61794484645874, "y": -23.502820114215147, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4183", "attributes": { "cluster": 1, "x": 70.675078666922, "y": 2.4779419993180127, "size": 1, "color": "#762e2e" } }, { "key": "4184", "attributes": { "cluster": 0, "x": -99.61794484645874, "y": -23.502820114215133, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4185", "attributes": { "cluster": 0, "x": -23.61794484645874, "y": -47.751531420179425, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4186", "attributes": { "cluster": 2, "x": 14.07804381723353, "y": 34.80319797122953, "size": 2, "color": "#4b94db" } }, { "key": "4187", "attributes": { "cluster": 0, "x": -59.617944846458755, "y": 4.209992806886888, "size": 1, "color": "#e36d0" } }, { "key": "4188", "attributes": { "cluster": 2, "x": -13.921956182766513, "y": 107.54933188912233, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4189", "attributes": { "cluster": 2, "x": -33.9219561827665, "y": 52.12370604691829, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4190", "attributes": { "cluster": 0, "x": -63.61794484645872, "y": 4.209992806886888, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4191", "attributes": { "cluster": 0, "x": -63.61794484645873, "y": -75.46434434128145, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "4192", "attributes": { "cluster": 1, "x": 23.67507866692199, "y": -33.8951249596284, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4193", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -37.35922657476616, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4194", "attributes": { "cluster": 2, "x": -13.921956182766502, "y": 34.803197971229515, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4195", "attributes": { "cluster": 0, "x": -59.61794484645876, "y": -75.46434434128145, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4196", "attributes": { "cluster": 2, "x": 34.078043817233514, "y": 90.22882381343358, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4197", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -32.16307415205954, "size": 1, "color": "#762e2e" } }, { "key": "4198", "attributes": { "cluster": 2, "x": 14.07804381723352, "y": 107.54933188912236, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4199", "attributes": { "cluster": 2, "x": -33.9219561827665, "y": 90.22882381343359, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4200", "attributes": { "cluster": 1, "x": 22.67507866692199, "y": -32.163074152059515, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4201", "attributes": { "cluster": 2, "x": 34.078043817233514, "y": 52.12370604691828, "size": 1, "color": "#4b94db" } }, { "key": "4202", "attributes": { "cluster": 0, "x": -36.6179448464587, "y": -66.80409030343705, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4203", "attributes": { "cluster": 0, "x": -36.61794484645873, "y": -4.450261230957487, "size": 1, "color": "#e36d0" } }, { "key": "4204", "attributes": { "cluster": 0, "x": -86.61794484645878, "y": -4.4502612309575085, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4205", "attributes": { "cluster": 0, "x": -86.61794484645876, "y": -66.80409030343708, "size": 0, "color": "#e36d0" } }, { "key": "4206", "attributes": { "cluster": 2, "x": 33.078043817233514, "y": 91.96087462100246, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4207", "attributes": { "cluster": 1, "x": 22.67507866692199, "y": -39.09127738233502, "size": 3.6666666666666665, "color": "#762e2e" } }, { "key": "4208", "attributes": { "cluster": 0, "x": -57.617944846458755, "y": -75.46434434128145, "size": 1, "color": "#e36d0" } }, { "key": "4209", "attributes": { "cluster": 0, "x": -65.61794484645873, "y": 4.209992806886888, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "4210", "attributes": { "cluster": 2, "x": -32.9219561827665, "y": 50.39165523934941, "size": 1, "color": "#4b94db" } }, { "key": "4211", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -75.46434434128145, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4212", "attributes": { "cluster": 2, "x": 33.078043817233514, "y": 50.391655239349404, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4213", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": 4.209992806886888, "size": 1, "color": "#e36d0" } }, { "key": "4214", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -39.09127738233504, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4215", "attributes": { "cluster": 0, "x": -90.61794484645876, "y": -63.33998868829931, "size": 2, "color": "#e36d0" } }, { "key": "4216", "attributes": { "cluster": 2, "x": -32.9219561827665, "y": 91.96087462100246, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4217", "attributes": { "cluster": 0, "x": -32.617944846458734, "y": -7.914362846095251, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4218", "attributes": { "cluster": 2, "x": -34.9219561827665, "y": 53.85575685448717, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4219", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -20.038718499077405, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4220", "attributes": { "cluster": 2, "x": 35.078043817233514, "y": 88.4967730058647, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4221", "attributes": { "cluster": 0, "x": -90.61794484645877, "y": -7.914362846095262, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4222", "attributes": { "cluster": 1, "x": 25.675078666921983, "y": -20.038718499077383, "size": 1, "color": "#762e2e" } }, { "key": "4223", "attributes": { "cluster": 1, "x": 25.67507866692199, "y": -51.215633035317154, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4224", "attributes": { "cluster": 2, "x": -34.9219561827665, "y": 88.4967730058647, "size": 1, "color": "#4b94db" } }, { "key": "4225", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -51.215633035317175, "size": 1, "color": "#762e2e" } }, { "key": "4226", "attributes": { "cluster": 2, "x": 35.078043817233514, "y": 53.85575685448716, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4227", "attributes": { "cluster": 0, "x": -32.61794484645871, "y": -63.3399886882993, "size": 3, "color": "#e36d0" } }, { "key": "4228", "attributes": { "cluster": 1, "x": 87.675078666922, "y": -6.182312038526376, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4229", "attributes": { "cluster": 0, "x": -22.61794484645874, "y": -35.627175767197286, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4230", "attributes": { "cluster": 2, "x": 32.078043817233514, "y": 93.69292542857133, "size": 2, "color": "#4b94db" } }, { "key": "4231", "attributes": { "cluster": 2, "x": -31.921956182766497, "y": 48.65960443178054, "size": 0, "color": "#4b94db" } }, { "key": "4232", "attributes": { "cluster": 1, "x": 35.675078666921976, "y": -65.07203949586818, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4233", "attributes": { "cluster": 1, "x": 87.67507866692202, "y": -65.07203949586818, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4234", "attributes": { "cluster": 2, "x": 32.078043817233514, "y": 48.65960443178052, "size": 1, "color": "#4b94db" } }, { "key": "4235", "attributes": { "cluster": 1, "x": 35.675078666921955, "y": -6.1823120385263834, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4236", "attributes": { "cluster": 2, "x": -31.921956182766497, "y": 93.69292542857134, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4237", "attributes": { "cluster": 2, "x": 9.078043817233505, "y": 33.07114716366065, "size": 1, "color": "#4b94db" } }, { "key": "4238", "attributes": { "cluster": 2, "x": -8.921956182766488, "y": 109.28138269669122, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4239", "attributes": { "cluster": 2, "x": -8.921956182766502, "y": 33.07114716366064, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "4240", "attributes": { "cluster": 1, "x": 30.675078666921983, "y": -59.87588707316156, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4241", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -11.378464461233001, "size": 2, "color": "#762e2e" } }, { "key": "4242", "attributes": { "cluster": 1, "x": 30.675078666921976, "y": -11.378464461233001, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4243", "attributes": { "cluster": 0, "x": -21.61794484645874, "y": -33.89512495962841, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4244", "attributes": { "cluster": 1, "x": 92.675078666922, "y": -59.87588707316156, "size": 1, "color": "#762e2e" } }, { "key": "4245", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -21.77076930664627, "size": 3.3333333333333335, "color": "#762e2e" } }, { "key": "4246", "attributes": { "cluster": 1, "x": 24.67507866692199, "y": -49.483582227748286, "size": 2, "color": "#762e2e" } }, { "key": "4247", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -49.48358222774832, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4248", "attributes": { "cluster": 0, "x": -100.61794484645874, "y": -35.62717576719727, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4249", "attributes": { "cluster": 2, "x": 9.07804381723352, "y": 109.28138269669122, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4250", "attributes": { "cluster": 1, "x": 24.67507866692199, "y": -21.770769306646237, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4251", "attributes": { "cluster": 2, "x": -37.92195618276649, "y": 72.90831573774481, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4252", "attributes": { "cluster": 1, "x": 22.67507866692199, "y": -28.69897253692176, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4253", "attributes": { "cluster": 1, "x": 22.67507866692199, "y": -42.55537899747278, "size": 1, "color": "#762e2e" } }, { "key": "4254", "attributes": { "cluster": 0, "x": -101.61794484645874, "y": -37.35922657476615, "size": 1, "color": "#e36d0" } }, { "key": "4255", "attributes": { "cluster": 2, "x": 38.07804381723351, "y": 69.44421412260705, "size": 1, "color": "#4b94db" } }, { "key": "4256", "attributes": { "cluster": 2, "x": 39.07804381723351, "y": 74.64036654531368, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "4257", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4258", "attributes": { "cluster": 0, "x": -48.61794484645871, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4259", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": 2.4779419993180127, "size": 1, "color": "#e36d0" } }, { "key": "4260", "attributes": { "cluster": 2, "x": -38.92195618276649, "y": 74.6403665453137, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4261", "attributes": { "cluster": 2, "x": -38.92195618276649, "y": 67.71216331503818, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4262", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -42.5553789974728, "size": 2, "color": "#762e2e" } }, { "key": "4263", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -28.69897253692178, "size": 0, "color": "#762e2e" } }, { "key": "4264", "attributes": { "cluster": 1, "x": 81.675078666922, "y": -2.718210423388612, "size": 1, "color": "#762e2e" } }, { "key": "4265", "attributes": { "cluster": 0, "x": -74.61794484645877, "y": 2.4779419993180127, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4266", "attributes": { "cluster": 1, "x": 41.675078666921976, "y": -68.53614111100595, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4267", "attributes": { "cluster": 0, "x": -67.61794484645876, "y": -75.46434434128145, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4268", "attributes": { "cluster": 1, "x": 81.67507866692205, "y": -68.53614111100592, "size": 1, "color": "#762e2e" } }, { "key": "4269", "attributes": { "cluster": 0, "x": -55.617944846458734, "y": -75.46434434128145, "size": 1, "color": "#e36d0" } }, { "key": "4270", "attributes": { "cluster": 0, "x": -55.617944846458734, "y": 4.209992806886888, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4271", "attributes": { "cluster": 1, "x": 41.67507866692194, "y": -2.7182104233886335, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4272", "attributes": { "cluster": 0, "x": -67.61794484645876, "y": 4.209992806886881, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4273", "attributes": { "cluster": 0, "x": -100.61794484645874, "y": -46.019480612610536, "size": 1, "color": "#e36d0" } }, { "key": "4274", "attributes": { "cluster": 1, "x": 50.675078666921976, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4275", "attributes": { "cluster": 0, "x": -22.61794484645874, "y": -25.234870921784022, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4276", "attributes": { "cluster": 0, "x": -100.61794484645874, "y": -25.234870921784008, "size": 1, "color": "#e36d0" } }, { "key": "4277", "attributes": { "cluster": 1, "x": 72.67507866692202, "y": -73.73229353371256, "size": 3, "color": "#762e2e" } }, { "key": "4278", "attributes": { "cluster": 0, "x": -22.61794484645874, "y": -46.01948061261055, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4279", "attributes": { "cluster": 2, "x": 39.07804381723351, "y": 67.71216331503817, "size": 3, "color": "#4b94db" } }, { "key": "4280", "attributes": { "cluster": 2, "x": 36.07804381723351, "y": 86.7647221982958, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4281", "attributes": { "cluster": 2, "x": -35.9219561827665, "y": 86.76472219829583, "size": 2, "color": "#4b94db" } }, { "key": "4282", "attributes": { "cluster": 1, "x": 72.675078666922, "y": 2.4779419993180127, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4283", "attributes": { "cluster": 0, "x": -21.61794484645874, "y": -40.82332818990392, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4284", "attributes": { "cluster": 1, "x": 50.67507866692196, "y": 2.4779419993180056, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4285", "attributes": { "cluster": 1, "x": 31.675078666921983, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4286", "attributes": { "cluster": 0, "x": -21.61794484645874, "y": -30.431023344490654, "size": 2, "color": "#e36d0" } }, { "key": "4287", "attributes": { "cluster": 0, "x": -101.61794484645874, "y": -30.43102334449064, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4288", "attributes": { "cluster": 0, "x": -101.61794484645874, "y": -40.823328189903904, "size": 1, "color": "#e36d0" } }, { "key": "4289", "attributes": { "cluster": 2, "x": -35.92195618276649, "y": 55.58780766205606, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4290", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -9.646413653664123, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4291", "attributes": { "cluster": 2, "x": 36.078043817233514, "y": 55.587807662056036, "size": 1, "color": "#4b94db" } }, { "key": "4292", "attributes": { "cluster": 1, "x": 83.675078666922, "y": -2.718210423388612, "size": 1, "color": "#762e2e" } }, { "key": "4293", "attributes": { "cluster": 1, "x": 39.67507866692194, "y": -2.7182104233886335, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4294", "attributes": { "cluster": 0, "x": -53.617944846458734, "y": -75.46434434128145, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4295", "attributes": { "cluster": 1, "x": 31.67507866692197, "y": -9.64641365366412, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4296", "attributes": { "cluster": 0, "x": -69.61794484645874, "y": 4.209992806886888, "size": 1, "color": "#e36d0" } }, { "key": "4297", "attributes": { "cluster": 1, "x": 39.675078666921976, "y": -68.53614111100595, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4298", "attributes": { "cluster": 1, "x": 83.67507866692205, "y": -68.53614111100592, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4299", "attributes": { "cluster": 1, "x": 91.67507866692202, "y": -61.60793788073044, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4300", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -75.46434434128145, "size": 2, "color": "#e36d0" } }, { "key": "4301", "attributes": { "cluster": 0, "x": -53.61794484645873, "y": 4.209992806886888, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4302", "attributes": { "cluster": 2, "x": 26.07804381723352, "y": 100.62112865884683, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4303", "attributes": { "cluster": 2, "x": -25.9219561827665, "y": 41.73140120150503, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4304", "attributes": { "cluster": 0, "x": -89.61794484645876, "y": -65.07203949586818, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4305", "attributes": { "cluster": 0, "x": -33.617944846458734, "y": -6.18231203852638, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4306", "attributes": { "cluster": 1, "x": 45.67507866692195, "y": 0.7458911917491235, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4307", "attributes": { "cluster": 0, "x": -80.6179448464588, "y": -0.9861596158197585, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4308", "attributes": { "cluster": 1, "x": 77.67507866692203, "y": -72.00024272614368, "size": 1, "color": "#762e2e" } }, { "key": "4309", "attributes": { "cluster": 0, "x": -42.617944846458684, "y": -70.2681919185748, "size": 2, "color": "#e36d0" } }, { "key": "4310", "attributes": { "cluster": 2, "x": 26.078043817233546, "y": 41.73140120150504, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4311", "attributes": { "cluster": 0, "x": -42.61794484645873, "y": -0.9861596158197372, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4312", "attributes": { "cluster": 0, "x": -80.61794484645876, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4313", "attributes": { "cluster": 0, "x": -33.617944846458705, "y": -65.07203949586818, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4314", "attributes": { "cluster": 0, "x": -89.61794484645878, "y": -6.182312038526373, "size": 1, "color": "#e36d0" } }, { "key": "4315", "attributes": { "cluster": 1, "x": 77.675078666922, "y": 0.7458911917491378, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4316", "attributes": { "cluster": 1, "x": 45.675078666921976, "y": -72.0002427261437, "size": 1, "color": "#762e2e" } }, { "key": "4317", "attributes": { "cluster": 1, "x": 61.675078666922, "y": -75.46434434128145, "size": 1, "color": "#762e2e" } }, { "key": "4318", "attributes": { "cluster": 1, "x": 61.67507866692198, "y": 4.209992806886881, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4319", "attributes": { "cluster": 0, "x": -43.61794484645869, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4320", "attributes": { "cluster": 0, "x": -79.61794484645878, "y": 0.7458911917491164, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4321", "attributes": { "cluster": 2, "x": -25.921956182766525, "y": 100.62112865884683, "size": 2, "color": "#4b94db" } }, { "key": "4322", "attributes": { "cluster": 1, "x": 23.67507866692199, "y": -47.75153142017941, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4323", "attributes": { "cluster": 2, "x": -30.921956182766497, "y": 46.927553624211654, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4324", "attributes": { "cluster": 2, "x": 31.078043817233517, "y": 95.42497623614021, "size": 1, "color": "#4b94db" } }, { "key": "4325", "attributes": { "cluster": 2, "x": -30.921956182766504, "y": 95.42497623614021, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4326", "attributes": { "cluster": 2, "x": 31.078043817233524, "y": 46.927553624211654, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4327", "attributes": { "cluster": 2, "x": 37.07804381723351, "y": 85.03267139072695, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4328", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -23.502820114215147, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4329", "attributes": { "cluster": 0, "x": -79.61794484645876, "y": -72.0002427261437, "size": 1, "color": "#e36d0" } }, { "key": "4330", "attributes": { "cluster": 1, "x": 23.67507866692199, "y": -23.502820114215133, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4331", "attributes": { "cluster": 0, "x": -43.61794484645873, "y": 0.7458911917491378, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4332", "attributes": { "cluster": 2, "x": -36.92195618276649, "y": 57.31985846962492, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4333", "attributes": { "cluster": 2, "x": 37.07804381723351, "y": 57.31985846962489, "size": 2, "color": "#4b94db" } }, { "key": "4334", "attributes": { "cluster": 2, "x": -36.92195618276649, "y": 85.03267139072697, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4335", "attributes": { "cluster": 2, "x": -38.92195618276649, "y": 78.10446816045145, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4336", "attributes": { "cluster": 0, "x": -96.61794484645876, "y": -56.4117854580238, "size": 1, "color": "#e36d0" } }, { "key": "4337", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -47.751531420179425, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4338", "attributes": { "cluster": 2, "x": -38.92195618276649, "y": 64.24806169990043, "size": 1, "color": "#4b94db" } }, { "key": "4339", "attributes": { "cluster": 0, "x": -26.617944846458734, "y": -14.842566076370758, "size": 1, "color": "#e36d0" } }, { "key": "4340", "attributes": { "cluster": 1, "x": 63.675078666921976, "y": 4.209992806886888, "size": 1, "color": "#762e2e" } }, { "key": "4341", "attributes": { "cluster": 0, "x": -96.61794484645876, "y": -14.842566076370748, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4342", "attributes": { "cluster": 2, "x": 39.07804381723351, "y": 64.24806169990042, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4343", "attributes": { "cluster": 2, "x": 39.07804381723351, "y": 78.10446816045143, "size": 2, "color": "#4b94db" } }, { "key": "4344", "attributes": { "cluster": 1, "x": 59.67507866692201, "y": 4.209992806886888, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4345", "attributes": { "cluster": 2, "x": 20.07804381723352, "y": 104.08523027398459, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4346", "attributes": { "cluster": 1, "x": 59.675078666922005, "y": -75.46434434128145, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4347", "attributes": { "cluster": 1, "x": 63.67507866692197, "y": -75.46434434128145, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4348", "attributes": { "cluster": 2, "x": -19.9219561827665, "y": 38.267299586367265, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4349", "attributes": { "cluster": 0, "x": -26.617944846458734, "y": -56.411785458023814, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4350", "attributes": { "cluster": 2, "x": 20.07804381723356, "y": 38.26729958636729, "size": 1, "color": "#4b94db" } }, { "key": "4351", "attributes": { "cluster": 2, "x": -19.92195618276654, "y": 104.08523027398458, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4352", "attributes": { "cluster": 1, "x": 86.67507866692203, "y": -66.80409030343705, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4353", "attributes": { "cluster": 0, "x": -25.617944846458734, "y": -16.574616883939637, "size": 2, "color": "#e36d0" } }, { "key": "4354", "attributes": { "cluster": 2, "x": -10.921956182766502, "y": 33.07114716366064, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4355", "attributes": { "cluster": 0, "x": -97.61794484645876, "y": -54.67973465045492, "size": 1, "color": "#e36d0" } }, { "key": "4356", "attributes": { "cluster": 0, "x": -25.617944846458734, "y": -54.67973465045493, "size": 3, "color": "#e36d0" } }, { "key": "4357", "attributes": { "cluster": 2, "x": 11.078043817233535, "y": 33.07114716366065, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4358", "attributes": { "cluster": 2, "x": 11.07804381723352, "y": 109.28138269669122, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4359", "attributes": { "cluster": 2, "x": -10.921956182766518, "y": 109.28138269669122, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4360", "attributes": { "cluster": 0, "x": -97.61794484645876, "y": -16.57461688393963, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4361", "attributes": { "cluster": 1, "x": 86.675078666922, "y": -4.450261230957487, "size": 2, "color": "#762e2e" } }, { "key": "4362", "attributes": { "cluster": 1, "x": 36.67507866692195, "y": -4.4502612309575085, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4363", "attributes": { "cluster": 2, "x": -29.921956182766497, "y": 45.19550281664277, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4364", "attributes": { "cluster": 2, "x": 30.078043817233517, "y": 97.15702704370909, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4365", "attributes": { "cluster": 0, "x": -95.61794484645876, "y": -58.14383626559268, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4366", "attributes": { "cluster": 2, "x": 22.07804381723352, "y": 104.08523027398459, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4367", "attributes": { "cluster": 2, "x": -21.92195618276654, "y": 104.08523027398458, "size": 1, "color": "#4b94db" } }, { "key": "4368", "attributes": { "cluster": 2, "x": -29.92195618276651, "y": 97.15702704370909, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4369", "attributes": { "cluster": 1, "x": 36.675078666921976, "y": -66.80409030343708, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4370", "attributes": { "cluster": 2, "x": -21.9219561827665, "y": 38.267299586367265, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4371", "attributes": { "cluster": 0, "x": -27.617944846458734, "y": -13.11051526880188, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4372", "attributes": { "cluster": 0, "x": -37.61794484645873, "y": -2.718210423388612, "size": 1, "color": "#e36d0" } }, { "key": "4373", "attributes": { "cluster": 2, "x": 22.07804381723356, "y": 38.26729958636729, "size": 1, "color": "#4b94db" } }, { "key": "4374", "attributes": { "cluster": 0, "x": -95.61794484645876, "y": -13.110515268801873, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4375", "attributes": { "cluster": 1, "x": 65.67507866692198, "y": -75.46434434128145, "size": 2, "color": "#762e2e" } }, { "key": "4376", "attributes": { "cluster": 2, "x": 30.07804381723353, "y": 45.19550281664277, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4377", "attributes": { "cluster": 0, "x": -85.61794484645876, "y": -68.53614111100595, "size": 0, "color": "#e36d0" } }, { "key": "4378", "attributes": { "cluster": 1, "x": 57.675078666922005, "y": 4.209992806886888, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4379", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -75.46434434128145, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4380", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": 4.209992806886888, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4381", "attributes": { "cluster": 1, "x": 32.67507866692198, "y": -63.33998868829931, "size": 2, "color": "#762e2e" } }, { "key": "4382", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": -7.914362846095251, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "4383", "attributes": { "cluster": 0, "x": -27.617944846458734, "y": -58.14383626559268, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4384", "attributes": { "cluster": 1, "x": 32.67507866692196, "y": -7.914362846095262, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4385", "attributes": { "cluster": 0, "x": -85.61794484645878, "y": -2.7182104233886335, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4386", "attributes": { "cluster": 0, "x": -37.61794484645869, "y": -68.53614111100592, "size": 3, "color": "#e36d0" } }, { "key": "4387", "attributes": { "cluster": 2, "x": -15.92195618276653, "y": 107.54933188912233, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4388", "attributes": { "cluster": 0, "x": -24.617944846458734, "y": -18.30666769150853, "size": 2, "color": "#e36d0" } }, { "key": "4389", "attributes": { "cluster": 1, "x": 90.67507866692202, "y": -63.3399886882993, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4390", "attributes": { "cluster": 0, "x": -98.61794484645876, "y": -52.94768384288603, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4391", "attributes": { "cluster": 2, "x": 16.07804381723355, "y": 34.80319797122953, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4392", "attributes": { "cluster": 0, "x": -24.617944846458734, "y": -52.94768384288605, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4393", "attributes": { "cluster": 2, "x": 16.07804381723352, "y": 107.54933188912236, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4394", "attributes": { "cluster": 0, "x": -98.61794484645876, "y": -18.306667691508505, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4395", "attributes": { "cluster": 2, "x": -15.921956182766502, "y": 34.803197971229515, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4396", "attributes": { "cluster": 2, "x": 0.0780438172335177, "y": 31.339096356091773, "size": 2, "color": "#4b94db" } }, { "key": "4397", "attributes": { "cluster": 2, "x": 0.07804381723350097, "y": 111.01343350426009, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4398", "attributes": { "cluster": 0, "x": -101.61794484645874, "y": -44.287429805041654, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4399", "attributes": { "cluster": 2, "x": -37.92195618276649, "y": 59.0519092771938, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4400", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -35.627175767197286, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4401", "attributes": { "cluster": 2, "x": 38.07804381723351, "y": 83.30062058315806, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4402", "attributes": { "cluster": 2, "x": -37.92195618276649, "y": 83.30062058315808, "size": 1, "color": "#4b94db" } }, { "key": "4403", "attributes": { "cluster": 2, "x": 38.07804381723351, "y": 59.051909277193786, "size": 1, "color": "#4b94db" } }, { "key": "4404", "attributes": { "cluster": 2, "x": 2.0780438172334983, "y": 111.01343350426009, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4405", "attributes": { "cluster": 2, "x": -1.921956182766467, "y": 111.01343350426009, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4406", "attributes": { "cluster": 2, "x": -1.9219561827664795, "y": 31.339096356091765, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4407", "attributes": { "cluster": 2, "x": 2.078043817233486, "y": 31.339096356091765, "size": 1, "color": "#4b94db" } }, { "key": "4408", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -33.89512495962841, "size": 1, "color": "#762e2e" } }, { "key": "4409", "attributes": { "cluster": 0, "x": -21.61794484645874, "y": -26.9669217293529, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4410", "attributes": { "cluster": 0, "x": -101.61794484645874, "y": -26.966921729352883, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4411", "attributes": { "cluster": 1, "x": 22.67507866692199, "y": -35.62717576719727, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4412", "attributes": { "cluster": 0, "x": -21.61794484645874, "y": -44.287429805041675, "size": 1, "color": "#e36d0" } }, { "key": "4413", "attributes": { "cluster": 1, "x": 21.67507866692199, "y": -37.35922657476615, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4414", "attributes": { "cluster": 2, "x": 25.078043817233553, "y": 39.99935039393616, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4415", "attributes": { "cluster": 0, "x": -28.617944846458734, "y": -11.378464461233001, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4416", "attributes": { "cluster": 0, "x": -94.61794484645876, "y": -59.87588707316156, "size": 2, "color": "#e36d0" } }, { "key": "4417", "attributes": { "cluster": 0, "x": -28.617944846458727, "y": -59.875887073161564, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4418", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -73.73229353371258, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4419", "attributes": { "cluster": 0, "x": -94.61794484645876, "y": -11.378464461232994, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4420", "attributes": { "cluster": 1, "x": 74.67507866692202, "y": -73.73229353371258, "size": 2, "color": "#762e2e" } }, { "key": "4421", "attributes": { "cluster": 2, "x": 25.07804381723352, "y": 102.35317946641572, "size": 2, "color": "#4b94db" } }, { "key": "4422", "attributes": { "cluster": 2, "x": -24.921956182766532, "y": 102.3531794664157, "size": 1, "color": "#4b94db" } }, { "key": "4423", "attributes": { "cluster": 0, "x": -46.61794484645871, "y": -73.73229353371255, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4424", "attributes": { "cluster": 2, "x": -24.9219561827665, "y": 39.99935039393614, "size": 1, "color": "#4b94db" } }, { "key": "4425", "attributes": { "cluster": 0, "x": -76.61794484645877, "y": 2.4779419993179985, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4426", "attributes": { "cluster": 0, "x": -76.61794484645876, "y": -73.73229353371258, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4427", "attributes": { "cluster": 1, "x": 74.675078666922, "y": 2.4779419993180127, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4428", "attributes": { "cluster": 2, "x": 4.078043817233493, "y": 31.339096356091765, "size": 1, "color": "#4b94db" } }, { "key": "4429", "attributes": { "cluster": 1, "x": 48.67507866692196, "y": 2.4779419993180127, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4430", "attributes": { "cluster": 1, "x": 55.67507866692198, "y": -75.46434434128145, "size": 1, "color": "#762e2e" } }, { "key": "4431", "attributes": { "cluster": 0, "x": -46.61794484645873, "y": 2.4779419993180127, "size": 1, "color": "#e36d0" } }, { "key": "4432", "attributes": { "cluster": 1, "x": 67.675078666922, "y": -75.46434434128145, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4433", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": 4.2099928068868735, "size": 1, "color": "#e36d0" } }, { "key": "4434", "attributes": { "cluster": 2, "x": -3.921956182766475, "y": 111.01343350426009, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4435", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": 4.209992806886888, "size": 2, "color": "#762e2e" } }, { "key": "4436", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": -75.46434434128143, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4437", "attributes": { "cluster": 0, "x": -23.61794484645874, "y": -20.03871849907739, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4438", "attributes": { "cluster": 2, "x": -3.9219561827664897, "y": 31.339096356091765, "size": 1, "color": "#4b94db" } }, { "key": "4439", "attributes": { "cluster": 1, "x": 55.67507866692198, "y": 4.209992806886881, "size": 1, "color": "#762e2e" } }, { "key": "4440", "attributes": { "cluster": 0, "x": -99.61794484645874, "y": -51.21563303531717, "size": 1, "color": "#e36d0" } }, { "key": "4441", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -75.46434434128145, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4442", "attributes": { "cluster": 2, "x": 4.0780438172335085, "y": 111.01343350426009, "size": 3.6666666666666665, "color": "#4b94db" } }, { "key": "4443", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": 4.209992806886888, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "4444", "attributes": { "cluster": 2, "x": -28.921956182766497, "y": 43.463452009073904, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4445", "attributes": { "cluster": 2, "x": 29.078043817233517, "y": 98.88907785127796, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4446", "attributes": { "cluster": 2, "x": -28.921956182766518, "y": 98.88907785127795, "size": 3, "color": "#4b94db" } }, { "key": "4447", "attributes": { "cluster": 0, "x": -99.61794484645876, "y": -20.038718499077362, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4448", "attributes": { "cluster": 0, "x": -23.617944846458727, "y": -51.2156330353172, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4449", "attributes": { "cluster": 2, "x": 29.07804381723354, "y": 43.46345200907392, "size": 2, "color": "#4b94db" } }, { "key": "4450", "attributes": { "cluster": 2, "x": 39.07804381723351, "y": 71.17626493017592, "size": 1, "color": "#4b94db" } }, { "key": "4451", "attributes": { "cluster": 0, "x": -21.61794484645874, "y": -37.35922657476617, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4452", "attributes": { "cluster": 0, "x": -101.61794484645874, "y": -33.89512495962839, "size": 2, "color": "#e36d0" } }, { "key": "4453", "attributes": { "cluster": 1, "x": 22.67507866692199, "y": -46.019480612610536, "size": 1, "color": "#762e2e" } }, { "key": "4454", "attributes": { "cluster": 0, "x": -93.61794484645876, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4455", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -25.234870921784022, "size": 0, "color": "#762e2e" } }, { "key": "4456", "attributes": { "cluster": 1, "x": 22.67507866692199, "y": -25.234870921784008, "size": 1, "color": "#762e2e" } }, { "key": "4457", "attributes": { "cluster": 2, "x": 40.07804381723351, "y": 72.9083157377448, "size": 1, "color": "#4b94db" } }, { "key": "4458", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -46.01948061261055, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4459", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -40.82332818990392, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4460", "attributes": { "cluster": 2, "x": -38.92195618276649, "y": 71.17626493017595, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4461", "attributes": { "cluster": 0, "x": -29.617944846458734, "y": -9.646413653664123, "size": 2, "color": "#e36d0" } }, { "key": "4462", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -30.431023344490654, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4463", "attributes": { "cluster": 0, "x": -93.61794484645876, "y": -9.646413653664126, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4464", "attributes": { "cluster": 0, "x": -29.61794484645872, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4465", "attributes": { "cluster": 1, "x": 21.67507866692199, "y": -30.43102334449064, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4466", "attributes": { "cluster": 1, "x": 21.67507866692199, "y": -40.823328189903904, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4467", "attributes": { "cluster": 2, "x": -39.92195618276649, "y": 69.44421412260706, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4468", "attributes": { "cluster": 2, "x": -12.921956182766502, "y": 33.07114716366064, "size": 2, "color": "#4b94db" } }, { "key": "4469", "attributes": { "cluster": 0, "x": -20.61794484645874, "y": -39.09127738233504, "size": 1, "color": "#e36d0" } }, { "key": "4470", "attributes": { "cluster": 2, "x": 13.078043817233539, "y": 33.07114716366064, "size": 1, "color": "#4b94db" } }, { "key": "4471", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -75.46434434128145, "size": 1, "color": "#762e2e" } }, { "key": "4472", "attributes": { "cluster": 1, "x": 53.67507866692198, "y": 4.209992806886888, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4473", "attributes": { "cluster": 2, "x": 13.07804381723352, "y": 109.28138269669122, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4474", "attributes": { "cluster": 1, "x": 53.675078666921976, "y": -75.46434434128145, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4475", "attributes": { "cluster": 1, "x": 69.675078666922, "y": 4.209992806886888, "size": 1, "color": "#762e2e" } }, { "key": "4476", "attributes": { "cluster": 2, "x": -12.921956182766522, "y": 109.28138269669122, "size": 2, "color": "#4b94db" } }, { "key": "4477", "attributes": { "cluster": 1, "x": 33.67507866692198, "y": -65.07203949586818, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4478", "attributes": { "cluster": 0, "x": -20.61794484645874, "y": -32.16307415205954, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4479", "attributes": { "cluster": 2, "x": -5.921956182766498, "y": 31.339096356091765, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4480", "attributes": { "cluster": 0, "x": -102.61794484645874, "y": -32.163074152059515, "size": 1, "color": "#e36d0" } }, { "key": "4481", "attributes": { "cluster": 0, "x": -102.61794484645874, "y": -39.09127738233502, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4482", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": -6.18231203852638, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4483", "attributes": { "cluster": 2, "x": 6.078043817233518, "y": 31.339096356091773, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4484", "attributes": { "cluster": 0, "x": -88.61794484645876, "y": -66.80409030343706, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4485", "attributes": { "cluster": 2, "x": 6.0780438172335165, "y": 111.01343350426009, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4486", "attributes": { "cluster": 1, "x": 42.675078666921934, "y": -0.9861596158197585, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4487", "attributes": { "cluster": 1, "x": 80.67507866692205, "y": -70.2681919185748, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4488", "attributes": { "cluster": 1, "x": 80.675078666922, "y": -0.9861596158197372, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4489", "attributes": { "cluster": 2, "x": -5.9219561827664995, "y": 111.01343350426009, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4490", "attributes": { "cluster": 1, "x": 42.675078666921976, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4491", "attributes": { "cluster": 2, "x": -38.92195618276649, "y": 60.783960084762676, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4492", "attributes": { "cluster": 0, "x": -34.61794484645873, "y": -4.450261230957498, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4493", "attributes": { "cluster": 2, "x": 39.07804381723351, "y": 81.56856977558918, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4494", "attributes": { "cluster": 0, "x": -88.61794484645878, "y": -4.4502612309575085, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4495", "attributes": { "cluster": 2, "x": -38.92195618276649, "y": 81.5685697755892, "size": 2, "color": "#4b94db" } }, { "key": "4496", "attributes": { "cluster": 1, "x": 89.67507866692202, "y": -65.07203949586818, "size": 1, "color": "#762e2e" } }, { "key": "4497", "attributes": { "cluster": 1, "x": 33.675078666921955, "y": -6.182312038526373, "size": 2, "color": "#762e2e" } }, { "key": "4498", "attributes": { "cluster": 1, "x": 79.67507866692205, "y": -72.00024272614368, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4499", "attributes": { "cluster": 2, "x": 39.07804381723351, "y": 60.78396008476266, "size": 2, "color": "#4b94db" } }, { "key": "4500", "attributes": { "cluster": 2, "x": 40.07804381723351, "y": 65.98011250746929, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4501", "attributes": { "cluster": 2, "x": 40.07804381723351, "y": 76.37241735288255, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4502", "attributes": { "cluster": 0, "x": -34.6179448464587, "y": -66.80409030343705, "size": 3, "color": "#e36d0" } }, { "key": "4503", "attributes": { "cluster": 0, "x": -22.61794484645874, "y": -21.770769306646272, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4504", "attributes": { "cluster": 0, "x": -100.61794484645874, "y": -49.483582227748286, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4505", "attributes": { "cluster": 1, "x": 43.67507866692194, "y": 0.7458911917491164, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4506", "attributes": { "cluster": 0, "x": -22.61794484645874, "y": -49.48358222774831, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4507", "attributes": { "cluster": 2, "x": -39.92195618276649, "y": 76.37241735288258, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4508", "attributes": { "cluster": 2, "x": -39.92195618276649, "y": 65.98011250746931, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4509", "attributes": { "cluster": 1, "x": 43.675078666921976, "y": -72.0002427261437, "size": 1, "color": "#762e2e" } }, { "key": "4510", "attributes": { "cluster": 0, "x": -100.61794484645874, "y": -21.77076930664625, "size": 1, "color": "#e36d0" } }, { "key": "4511", "attributes": { "cluster": 2, "x": 8.078043817233514, "y": 31.339096356091765, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4512", "attributes": { "cluster": 1, "x": 79.675078666922, "y": 0.7458911917491378, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4513", "attributes": { "cluster": 0, "x": -92.61794484645876, "y": -63.339988688299314, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4514", "attributes": { "cluster": 2, "x": -7.921956182766496, "y": 111.01343350426009, "size": 3.6666666666666665, "color": "#4b94db" } }, { "key": "4515", "attributes": { "cluster": 2, "x": -7.921956182766501, "y": 31.339096356091765, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4516", "attributes": { "cluster": 1, "x": 26.675078666921983, "y": -56.4117854580238, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4517", "attributes": { "cluster": 2, "x": 8.07804381723352, "y": 111.01343350426009, "size": 2, "color": "#4b94db" } }, { "key": "4518", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -14.842566076370758, "size": 0, "color": "#762e2e" } }, { "key": "4519", "attributes": { "cluster": 0, "x": -30.617944846458734, "y": -7.914362846095244, "size": 1, "color": "#e36d0" } }, { "key": "4520", "attributes": { "cluster": 0, "x": -92.61794484645877, "y": -7.914362846095244, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4521", "attributes": { "cluster": 2, "x": -27.921956182766497, "y": 41.73140120150504, "size": 1, "color": "#4b94db" } }, { "key": "4522", "attributes": { "cluster": 1, "x": 26.675078666921983, "y": -14.842566076370748, "size": 2, "color": "#762e2e" } }, { "key": "4523", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -56.411785458023814, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4524", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -16.574616883939637, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4525", "attributes": { "cluster": 2, "x": 28.078043817233517, "y": 100.62112865884683, "size": 1, "color": "#4b94db" } }, { "key": "4526", "attributes": { "cluster": 2, "x": -18.921956182766547, "y": 105.81728108155346, "size": 2, "color": "#4b94db" } }, { "key": "4527", "attributes": { "cluster": 1, "x": 25.675078666921983, "y": -54.67973465045492, "size": 1, "color": "#762e2e" } }, { "key": "4528", "attributes": { "cluster": 0, "x": -30.617944846458713, "y": -63.339988688299314, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4529", "attributes": { "cluster": 2, "x": 19.078043817233567, "y": 36.53524877879841, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4530", "attributes": { "cluster": 0, "x": -62.61794484645873, "y": 5.94204361445577, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4531", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -54.67973465045493, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4532", "attributes": { "cluster": 2, "x": 19.07804381723352, "y": 105.81728108155347, "size": 1, "color": "#4b94db" } }, { "key": "4533", "attributes": { "cluster": 1, "x": 25.675078666921983, "y": -16.57461688393963, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4534", "attributes": { "cluster": 2, "x": -18.9219561827665, "y": 36.53524877879839, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4535", "attributes": { "cluster": 1, "x": 27.675078666921983, "y": -58.14383626559268, "size": 1, "color": "#762e2e" } }, { "key": "4536", "attributes": { "cluster": 0, "x": -60.617944846458755, "y": -77.19639514885033, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4537", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -13.11051526880188, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4538", "attributes": { "cluster": 0, "x": -60.617944846458755, "y": 5.942043614455756, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4539", "attributes": { "cluster": 2, "x": 28.078043817233546, "y": 41.73140120150502, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4540", "attributes": { "cluster": 2, "x": -27.921956182766525, "y": 100.62112865884684, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4541", "attributes": { "cluster": 0, "x": -62.61794484645873, "y": -77.19639514885031, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4542", "attributes": { "cluster": 2, "x": 18.07804381723356, "y": 34.80319797122954, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4543", "attributes": { "cluster": 2, "x": -17.92195618276654, "y": 107.54933188912233, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4544", "attributes": { "cluster": 0, "x": -49.61794484645872, "y": -75.46434434128145, "size": 1, "color": "#e36d0" } }, { "key": "4545", "attributes": { "cluster": 0, "x": -73.61794484645877, "y": 4.209992806886888, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4546", "attributes": { "cluster": 0, "x": -102.61794484645874, "y": -28.69897253692176, "size": 1, "color": "#e36d0" } }, { "key": "4547", "attributes": { "cluster": 0, "x": -102.61794484645874, "y": -42.55537899747278, "size": 2, "color": "#e36d0" } }, { "key": "4548", "attributes": { "cluster": 2, "x": -17.9219561827665, "y": 34.803197971229515, "size": 2, "color": "#4b94db" } }, { "key": "4549", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -75.46434434128145, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4550", "attributes": { "cluster": 1, "x": 85.675078666922, "y": -2.718210423388612, "size": 1, "color": "#762e2e" } }, { "key": "4551", "attributes": { "cluster": 1, "x": 27.675078666921983, "y": -13.110515268801873, "size": 1, "color": "#762e2e" } }, { "key": "4552", "attributes": { "cluster": 1, "x": 37.675078666921976, "y": -68.53614111100595, "size": 1, "color": "#762e2e" } }, { "key": "4553", "attributes": { "cluster": 0, "x": -20.61794484645874, "y": -42.55537899747279, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4554", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -58.14383626559268, "size": 1, "color": "#762e2e" } }, { "key": "4555", "attributes": { "cluster": 2, "x": 18.07804381723352, "y": 107.54933188912236, "size": 1, "color": "#4b94db" } }, { "key": "4556", "attributes": { "cluster": 0, "x": -20.61794484645874, "y": -28.69897253692178, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4557", "attributes": { "cluster": 1, "x": 37.67507866692194, "y": -2.7182104233886335, "size": 1, "color": "#762e2e" } }, { "key": "4558", "attributes": { "cluster": 2, "x": -34.9219561827665, "y": 50.39165523934941, "size": 1, "color": "#4b94db" } }, { "key": "4559", "attributes": { "cluster": 1, "x": 85.67507866692205, "y": -68.53614111100592, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4560", "attributes": { "cluster": 0, "x": -49.61794484645873, "y": 4.209992806886888, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4561", "attributes": { "cluster": 0, "x": -82.6179448464588, "y": -0.9861596158197656, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4562", "attributes": { "cluster": 2, "x": 35.078043817233514, "y": 91.96087462100246, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4563", "attributes": { "cluster": 0, "x": -40.617944846458684, "y": -70.26819191857479, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4564", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -18.30666769150853, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4565", "attributes": { "cluster": 0, "x": -40.61794484645873, "y": -0.9861596158197301, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4566", "attributes": { "cluster": 0, "x": -82.61794484645876, "y": -70.26819191857483, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4567", "attributes": { "cluster": 1, "x": 24.675078666921983, "y": -52.94768384288603, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4568", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4569", "attributes": { "cluster": 2, "x": -34.9219561827665, "y": 91.96087462100246, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4570", "attributes": { "cluster": 2, "x": 35.078043817233514, "y": 50.391655239349404, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4571", "attributes": { "cluster": 1, "x": 24.675078666921983, "y": -18.306667691508505, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4572", "attributes": { "cluster": 1, "x": 21.67507866692199, "y": -44.287429805041654, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4573", "attributes": { "cluster": 0, "x": -38.617944846458684, "y": -70.2681919185748, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4574", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -26.9669217293529, "size": 1, "color": "#762e2e" } }, { "key": "4575", "attributes": { "cluster": 2, "x": 36.078043817233514, "y": 90.22882381343358, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4576", "attributes": { "cluster": 0, "x": -38.61794484645873, "y": -0.9861596158197372, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4577", "attributes": { "cluster": 2, "x": -35.9219561827665, "y": 52.12370604691829, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4578", "attributes": { "cluster": 1, "x": 21.67507866692199, "y": -26.966921729352883, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4579", "attributes": { "cluster": 0, "x": -84.6179448464588, "y": -0.9861596158197585, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4580", "attributes": { "cluster": 0, "x": -84.61794484645876, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4581", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -44.287429805041675, "size": 0, "color": "#762e2e" } }, { "key": "4582", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -11.378464461233001, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4583", "attributes": { "cluster": 2, "x": 36.078043817233514, "y": 52.12370604691829, "size": 2, "color": "#4b94db" } }, { "key": "4584", "attributes": { "cluster": 0, "x": -58.61794484645876, "y": -77.19639514885031, "size": 1, "color": "#e36d0" } }, { "key": "4585", "attributes": { "cluster": 1, "x": 28.675078666921983, "y": -59.87588707316156, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "4586", "attributes": { "cluster": 2, "x": -35.9219561827665, "y": 90.22882381343358, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4587", "attributes": { "cluster": 2, "x": -33.9219561827665, "y": 48.65960443178054, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4588", "attributes": { "cluster": 1, "x": 94.675078666922, "y": -59.875887073161564, "size": 1, "color": "#762e2e" } }, { "key": "4589", "attributes": { "cluster": 1, "x": 28.675078666921976, "y": -11.378464461232994, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4590", "attributes": { "cluster": 0, "x": -64.61794484645873, "y": 5.942043614455763, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4591", "attributes": { "cluster": 1, "x": 76.67507866692202, "y": -73.73229353371255, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4592", "attributes": { "cluster": 1, "x": 46.67507866692196, "y": 2.4779419993179985, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4593", "attributes": { "cluster": 1, "x": 46.675078666921976, "y": -73.73229353371258, "size": 1, "color": "#762e2e" } }, { "key": "4594", "attributes": { "cluster": 1, "x": 76.675078666922, "y": 2.4779419993180127, "size": 1, "color": "#762e2e" } }, { "key": "4595", "attributes": { "cluster": 2, "x": 34.078043817233514, "y": 93.69292542857133, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4596", "attributes": { "cluster": 2, "x": 24.07804381723352, "y": 104.08523027398459, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4597", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": 4.2099928068868735, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4598", "attributes": { "cluster": 2, "x": -33.9219561827665, "y": 93.69292542857134, "size": 1, "color": "#4b94db" } }, { "key": "4599", "attributes": { "cluster": 1, "x": 71.675078666922, "y": -75.46434434128143, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4600", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -20.03871849907739, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4601", "attributes": { "cluster": 1, "x": 23.67507866692199, "y": -51.21563303531717, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4602", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -77.19639514885031, "size": 1, "color": "#e36d0" } }, { "key": "4603", "attributes": { "cluster": 2, "x": -23.9219561827665, "y": 38.267299586367265, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4604", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": -75.46434434128145, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4605", "attributes": { "cluster": 0, "x": -58.61794484645875, "y": 5.942043614455763, "size": 1, "color": "#e36d0" } }, { "key": "4606", "attributes": { "cluster": 1, "x": 71.675078666922, "y": 4.209992806886888, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4607", "attributes": { "cluster": 2, "x": 34.078043817233514, "y": 48.65960443178052, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4608", "attributes": { "cluster": 2, "x": -23.92195618276654, "y": 104.08523027398458, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4609", "attributes": { "cluster": 2, "x": 24.07804381723356, "y": 38.26729958636729, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4610", "attributes": { "cluster": 1, "x": 23.675078666921976, "y": -20.038718499077362, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4611", "attributes": { "cluster": 2, "x": 37.078043817233514, "y": 88.49677300586468, "size": 1, "color": "#4b94db" } }, { "key": "4612", "attributes": { "cluster": 1, "x": 99.675078666922, "y": -51.2156330353172, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4613", "attributes": { "cluster": 2, "x": -36.9219561827665, "y": 53.85575685448718, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4614", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -37.35922657476617, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4615", "attributes": { "cluster": 1, "x": 21.67507866692199, "y": -33.89512495962839, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4616", "attributes": { "cluster": 2, "x": 37.078043817233514, "y": 53.855756854487154, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4617", "attributes": { "cluster": 2, "x": -36.9219561827665, "y": 88.49677300586471, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4618", "attributes": { "cluster": 0, "x": -78.61794484645876, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4619", "attributes": { "cluster": 0, "x": -44.61794484645873, "y": 2.4779419993180127, "size": 2, "color": "#e36d0" } }, { "key": "4620", "attributes": { "cluster": 2, "x": -39.92195618276649, "y": 62.51601089233155, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "4621", "attributes": { "cluster": 0, "x": -78.61794484645878, "y": 2.4779419993179914, "size": 1, "color": "#e36d0" } }, { "key": "4622", "attributes": { "cluster": 0, "x": -101.61794484645874, "y": -47.75153142017941, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4623", "attributes": { "cluster": 1, "x": 29.675078666921983, "y": -61.60793788073043, "size": 1, "color": "#762e2e" } }, { "key": "4624", "attributes": { "cluster": 2, "x": 40.07804381723351, "y": 79.83651896802031, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4625", "attributes": { "cluster": 0, "x": -44.61794484645869, "y": -73.73229353371255, "size": 1, "color": "#e36d0" } }, { "key": "4626", "attributes": { "cluster": 0, "x": -21.61794484645874, "y": -23.502820114215147, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "4627", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -9.646413653664123, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4628", "attributes": { "cluster": 1, "x": 29.67507866692197, "y": -9.646413653664126, "size": 1, "color": "#762e2e" } }, { "key": "4629", "attributes": { "cluster": 1, "x": 93.67507866692202, "y": -61.60793788073043, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4630", "attributes": { "cluster": 0, "x": -101.61794484645874, "y": -23.502820114215133, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4631", "attributes": { "cluster": 0, "x": -21.61794484645874, "y": -47.751531420179425, "size": 1, "color": "#e36d0" } }, { "key": "4632", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": 5.942043614455763, "size": 1, "color": "#e36d0" } }, { "key": "4633", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -39.09127738233504, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4634", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": 5.9420436144557485, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4635", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -32.16307415205954, "size": 1, "color": "#762e2e" } }, { "key": "4636", "attributes": { "cluster": 2, "x": -39.92195618276649, "y": 79.83651896802033, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4637", "attributes": { "cluster": 1, "x": 20.67507866692199, "y": -32.163074152059515, "size": 1, "color": "#762e2e" } }, { "key": "4638", "attributes": { "cluster": 2, "x": 40.07804381723351, "y": 62.516010892331536, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4639", "attributes": { "cluster": 2, "x": 33.078043817233514, "y": 95.42497623614021, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4640", "attributes": { "cluster": 2, "x": -32.9219561827665, "y": 46.927553624211654, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4641", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -77.19639514885031, "size": 0, "color": "#e36d0" } }, { "key": "4642", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": -77.19639514885031, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4643", "attributes": { "cluster": 2, "x": 33.07804381723352, "y": 46.92755362421165, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "4644", "attributes": { "cluster": 0, "x": -35.61794484645873, "y": -2.718210423388612, "size": 1, "color": "#e36d0" } }, { "key": "4645", "attributes": { "cluster": 2, "x": -32.92195618276651, "y": 95.42497623614022, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4646", "attributes": { "cluster": 0, "x": -87.61794484645876, "y": -68.53614111100595, "size": 2, "color": "#e36d0" } }, { "key": "4647", "attributes": { "cluster": 1, "x": 20.67507866692199, "y": -39.09127738233502, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "4648", "attributes": { "cluster": 1, "x": 34.675078666921976, "y": -66.80409030343706, "size": 2, "color": "#762e2e" } }, { "key": "4649", "attributes": { "cluster": 1, "x": 88.675078666922, "y": -4.450261230957498, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4650", "attributes": { "cluster": 2, "x": 15.078043817233539, "y": 33.071147163660655, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4651", "attributes": { "cluster": 0, "x": -35.61794484645869, "y": -68.53614111100592, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "4652", "attributes": { "cluster": 0, "x": -87.61794484645878, "y": -2.7182104233886335, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4653", "attributes": { "cluster": 2, "x": -14.921956182766522, "y": 109.28138269669121, "size": 1, "color": "#4b94db" } }, { "key": "4654", "attributes": { "cluster": 0, "x": -91.61794484645876, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4655", "attributes": { "cluster": 2, "x": -14.921956182766502, "y": 33.07114716366064, "size": 1, "color": "#4b94db" } }, { "key": "4656", "attributes": { "cluster": 2, "x": 15.07804381723352, "y": 109.28138269669122, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4657", "attributes": { "cluster": 1, "x": 34.67507866692195, "y": -4.4502612309575085, "size": 0, "color": "#762e2e" } }, { "key": "4658", "attributes": { "cluster": 0, "x": -31.617944846458734, "y": -6.182312038526376, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4659", "attributes": { "cluster": 2, "x": -9.921956182766502, "y": 111.01343350426009, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4660", "attributes": { "cluster": 2, "x": 10.07804381723352, "y": 31.33909635609178, "size": 2, "color": "#4b94db" } }, { "key": "4661", "attributes": { "cluster": 1, "x": 88.67507866692203, "y": -66.80409030343705, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4662", "attributes": { "cluster": 0, "x": -91.61794484645878, "y": -6.182312038526387, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4663", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -21.770769306646272, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4664", "attributes": { "cluster": 1, "x": 22.67507866692199, "y": -49.483582227748286, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4665", "attributes": { "cluster": 2, "x": 38.07804381723351, "y": 86.76472219829581, "size": 2, "color": "#4b94db" } }, { "key": "4666", "attributes": { "cluster": 0, "x": -31.617944846458705, "y": -65.07203949586817, "size": 1, "color": "#e36d0" } }, { "key": "4667", "attributes": { "cluster": 0, "x": -54.617944846458734, "y": 5.942043614455763, "size": 1, "color": "#e36d0" } }, { "key": "4668", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -49.48358222774831, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "4669", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": 5.942043614455756, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4670", "attributes": { "cluster": 1, "x": 22.67507866692199, "y": -21.77076930664625, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4671", "attributes": { "cluster": 2, "x": -37.92195618276649, "y": 55.58780766205604, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4672", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": -77.19639514885031, "size": 1, "color": "#e36d0" } }, { "key": "4673", "attributes": { "cluster": 0, "x": -54.61794484645874, "y": -77.19639514885031, "size": 1, "color": "#e36d0" } }, { "key": "4674", "attributes": { "cluster": 1, "x": 30.675078666921983, "y": -63.339988688299314, "size": 1, "color": "#762e2e" } }, { "key": "4675", "attributes": { "cluster": 2, "x": -9.921956182766502, "y": 31.339096356091765, "size": 1, "color": "#4b94db" } }, { "key": "4676", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -7.914362846095244, "size": 3.3333333333333335, "color": "#762e2e" } }, { "key": "4677", "attributes": { "cluster": 0, "x": -20.61794484645874, "y": -35.627175767197286, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4678", "attributes": { "cluster": 2, "x": 10.07804381723352, "y": 111.01343350426009, "size": 2, "color": "#4b94db" } }, { "key": "4679", "attributes": { "cluster": 0, "x": -19.61794484645874, "y": -33.89512495962841, "size": 2, "color": "#e36d0" } }, { "key": "4680", "attributes": { "cluster": 1, "x": 30.675078666921962, "y": -7.914362846095244, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4681", "attributes": { "cluster": 2, "x": -37.92195618276651, "y": 86.76472219829584, "size": 1, "color": "#4b94db" } }, { "key": "4682", "attributes": { "cluster": 1, "x": 92.67507866692202, "y": -63.339988688299314, "size": 1, "color": "#762e2e" } }, { "key": "4683", "attributes": { "cluster": 0, "x": -102.61794484645874, "y": -35.62717576719727, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4684", "attributes": { "cluster": 1, "x": 60.675078666922005, "y": 5.94204361445577, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4685", "attributes": { "cluster": 1, "x": 62.675078666921976, "y": -77.19639514885033, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4686", "attributes": { "cluster": 1, "x": 62.675078666921976, "y": 5.942043614455756, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4687", "attributes": { "cluster": 0, "x": -103.61794484645874, "y": -37.35922657476615, "size": 3, "color": "#e36d0" } }, { "key": "4688", "attributes": { "cluster": 2, "x": 38.07804381723352, "y": 55.587807662056015, "size": 1, "color": "#4b94db" } }, { "key": "4689", "attributes": { "cluster": 2, "x": 40.07804381723351, "y": 69.44421412260705, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4690", "attributes": { "cluster": 1, "x": 60.675078666922005, "y": -77.19639514885031, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4691", "attributes": { "cluster": 0, "x": -47.6179448464587, "y": -75.46434434128145, "size": 2, "color": "#e36d0" } }, { "key": "4692", "attributes": { "cluster": 0, "x": -75.61794484645878, "y": 4.209992806886881, "size": 1, "color": "#e36d0" } }, { "key": "4693", "attributes": { "cluster": 1, "x": 73.67507866692202, "y": -75.46434434128145, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4694", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -75.46434434128145, "size": 1, "color": "#e36d0" } }, { "key": "4695", "attributes": { "cluster": 2, "x": -39.92195618276649, "y": 72.90831573774481, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4696", "attributes": { "cluster": 0, "x": -47.61794484645873, "y": 4.209992806886888, "size": 1, "color": "#e36d0" } }, { "key": "4697", "attributes": { "cluster": 2, "x": -31.921956182766497, "y": 45.19550281664277, "size": 1, "color": "#4b94db" } }, { "key": "4698", "attributes": { "cluster": 1, "x": 49.67507866692197, "y": 4.209992806886888, "size": 2, "color": "#762e2e" } }, { "key": "4699", "attributes": { "cluster": 1, "x": 20.67507866692199, "y": -28.69897253692176, "size": 1, "color": "#762e2e" } }, { "key": "4700", "attributes": { "cluster": 2, "x": 32.078043817233514, "y": 97.15702704370909, "size": 3, "color": "#4b94db" } }, { "key": "4701", "attributes": { "cluster": 2, "x": -31.92195618276651, "y": 97.15702704370909, "size": 2, "color": "#4b94db" } }, { "key": "4702", "attributes": { "cluster": 1, "x": 20.67507866692199, "y": -42.55537899747278, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4703", "attributes": { "cluster": 2, "x": 32.07804381723353, "y": 45.19550281664278, "size": 2, "color": "#4b94db" } }, { "key": "4704", "attributes": { "cluster": 0, "x": -102.61794484645874, "y": -46.019480612610536, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4705", "attributes": { "cluster": 1, "x": 49.675078666921976, "y": -75.46434434128145, "size": 2, "color": "#762e2e" } }, { "key": "4706", "attributes": { "cluster": 2, "x": 41.07804381723351, "y": 67.71216331503817, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4707", "attributes": { "cluster": 2, "x": 41.07804381723351, "y": 74.64036654531368, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4708", "attributes": { "cluster": 2, "x": -40.92195618276649, "y": 74.6403665453137, "size": 1, "color": "#4b94db" } }, { "key": "4709", "attributes": { "cluster": 2, "x": -40.92195618276649, "y": 67.71216331503818, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4710", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -42.55537899747279, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4711", "attributes": { "cluster": 2, "x": -26.9219561827665, "y": 39.999350393936155, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4712", "attributes": { "cluster": 0, "x": -20.61794484645874, "y": -25.234870921784022, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4713", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -28.69897253692178, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4714", "attributes": { "cluster": 1, "x": 73.675078666922, "y": 4.209992806886888, "size": 2, "color": "#762e2e" } }, { "key": "4715", "attributes": { "cluster": 2, "x": 27.07804381723352, "y": 102.35317946641571, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4716", "attributes": { "cluster": 0, "x": -102.61794484645874, "y": -25.234870921784008, "size": 1, "color": "#e36d0" } }, { "key": "4717", "attributes": { "cluster": 2, "x": -26.921956182766532, "y": 102.3531794664157, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4718", "attributes": { "cluster": 0, "x": -20.61794484645874, "y": -46.01948061261055, "size": 1, "color": "#e36d0" } }, { "key": "4719", "attributes": { "cluster": 2, "x": 27.078043817233553, "y": 39.99935039393616, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4720", "attributes": { "cluster": 2, "x": 39.07804381723351, "y": 85.03267139072695, "size": 2, "color": "#4b94db" } }, { "key": "4721", "attributes": { "cluster": 1, "x": 40.675078666921934, "y": -0.9861596158197656, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4722", "attributes": { "cluster": 0, "x": -19.61794484645874, "y": -40.82332818990392, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "4723", "attributes": { "cluster": 2, "x": -38.92195618276649, "y": 57.319858469624926, "size": 1, "color": "#4b94db" } }, { "key": "4724", "attributes": { "cluster": 2, "x": 39.07804381723351, "y": 57.319858469624904, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4725", "attributes": { "cluster": 1, "x": 82.67507866692205, "y": -70.26819191857479, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4726", "attributes": { "cluster": 0, "x": -19.61794484645874, "y": -30.431023344490654, "size": 1, "color": "#e36d0" } }, { "key": "4727", "attributes": { "cluster": 1, "x": 82.675078666922, "y": -0.9861596158197301, "size": 2, "color": "#762e2e" } }, { "key": "4728", "attributes": { "cluster": 2, "x": -38.92195618276649, "y": 85.03267139072696, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4729", "attributes": { "cluster": 1, "x": 40.675078666921976, "y": -70.26819191857483, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4730", "attributes": { "cluster": 2, "x": -30.921956182766497, "y": 43.4634520090739, "size": 0, "color": "#4b94db" } }, { "key": "4731", "attributes": { "cluster": 1, "x": 84.67507866692205, "y": -70.2681919185748, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4732", "attributes": { "cluster": 1, "x": 84.675078666922, "y": -0.9861596158197372, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4733", "attributes": { "cluster": 0, "x": -103.61794484645874, "y": -30.43102334449064, "size": 2, "color": "#e36d0" } }, { "key": "4734", "attributes": { "cluster": 0, "x": -103.61794484645874, "y": -40.823328189903904, "size": 2, "color": "#e36d0" } }, { "key": "4735", "attributes": { "cluster": 0, "x": -98.61794484645876, "y": -56.4117854580238, "size": 0, "color": "#e36d0" } }, { "key": "4736", "attributes": { "cluster": 0, "x": -24.617944846458734, "y": -14.842566076370758, "size": 1, "color": "#e36d0" } }, { "key": "4737", "attributes": { "cluster": 1, "x": 38.675078666921934, "y": -0.9861596158197585, "size": 1, "color": "#762e2e" } }, { "key": "4738", "attributes": { "cluster": 0, "x": -98.61794484645876, "y": -14.842566076370751, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4739", "attributes": { "cluster": 0, "x": -24.617944846458734, "y": -56.41178545802381, "size": 1, "color": "#e36d0" } }, { "key": "4740", "attributes": { "cluster": 2, "x": 31.078043817233517, "y": 98.88907785127796, "size": 1, "color": "#4b94db" } }, { "key": "4741", "attributes": { "cluster": 1, "x": 38.675078666921976, "y": -70.26819191857481, "size": 2, "color": "#762e2e" } }, { "key": "4742", "attributes": { "cluster": 0, "x": -25.617944846458734, "y": -13.11051526880188, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4743", "attributes": { "cluster": 2, "x": -30.921956182766518, "y": 98.88907785127796, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "4744", "attributes": { "cluster": 1, "x": 64.67507866692198, "y": -77.19639514885031, "size": 2, "color": "#762e2e" } }, { "key": "4745", "attributes": { "cluster": 1, "x": 58.67507866692201, "y": 5.942043614455763, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4746", "attributes": { "cluster": 2, "x": 31.07804381723354, "y": 43.4634520090739, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4747", "attributes": { "cluster": 0, "x": -97.61794484645876, "y": -58.14383626559268, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4748", "attributes": { "cluster": 1, "x": 58.675078666922, "y": -77.19639514885031, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4749", "attributes": { "cluster": 0, "x": -25.617944846458734, "y": -58.14383626559269, "size": 2, "color": "#e36d0" } }, { "key": "4750", "attributes": { "cluster": 2, "x": -0.9219561827664771, "y": 112.74548431182899, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4751", "attributes": { "cluster": 2, "x": 1.0780438172334956, "y": 29.607045548522883, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4752", "attributes": { "cluster": 2, "x": 1.0780438172334936, "y": 112.74548431182896, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4753", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": 5.942043614455763, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4754", "attributes": { "cluster": 2, "x": -0.9219561827664748, "y": 29.607045548522898, "size": 3.6666666666666665, "color": "#4b94db" } }, { "key": "4755", "attributes": { "cluster": 1, "x": 44.675078666921976, "y": -73.73229353371258, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4756", "attributes": { "cluster": 1, "x": 78.675078666922, "y": 2.4779419993180127, "size": 2, "color": "#762e2e" } }, { "key": "4757", "attributes": { "cluster": 0, "x": -97.61794484645876, "y": -13.11051526880187, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4758", "attributes": { "cluster": 2, "x": 12.078043817233532, "y": 31.339096356091765, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4759", "attributes": { "cluster": 0, "x": -52.61794484645872, "y": -77.19639514885031, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4760", "attributes": { "cluster": 1, "x": 44.67507866692194, "y": 2.4779419993179914, "size": 1, "color": "#762e2e" } }, { "key": "4761", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": 5.942043614455756, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4762", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -77.19639514885031, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4763", "attributes": { "cluster": 1, "x": 21.67507866692199, "y": -47.75153142017941, "size": 1, "color": "#762e2e" } }, { "key": "4764", "attributes": { "cluster": 2, "x": -11.921956182766515, "y": 111.01343350426009, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4765", "attributes": { "cluster": 2, "x": -40.92195618276649, "y": 78.10446816045145, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4766", "attributes": { "cluster": 2, "x": -40.92195618276649, "y": 64.24806169990043, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4767", "attributes": { "cluster": 0, "x": -52.61794484645873, "y": 5.942043614455763, "size": 1, "color": "#e36d0" } }, { "key": "4768", "attributes": { "cluster": 2, "x": -11.921956182766502, "y": 31.339096356091765, "size": 2, "color": "#4b94db" } }, { "key": "4769", "attributes": { "cluster": 2, "x": 41.07804381723351, "y": 64.24806169990042, "size": 2, "color": "#4b94db" } }, { "key": "4770", "attributes": { "cluster": 1, "x": 78.67507866692205, "y": -73.73229353371255, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4771", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -23.502820114215147, "size": 2, "color": "#762e2e" } }, { "key": "4772", "attributes": { "cluster": 2, "x": 41.07804381723351, "y": 78.10446816045143, "size": 1, "color": "#4b94db" } }, { "key": "4773", "attributes": { "cluster": 1, "x": 21.67507866692199, "y": -23.502820114215133, "size": 2, "color": "#762e2e" } }, { "key": "4774", "attributes": { "cluster": 2, "x": 12.07804381723352, "y": 111.01343350426009, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4775", "attributes": { "cluster": 2, "x": -20.921956182766547, "y": 105.81728108155345, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "4776", "attributes": { "cluster": 0, "x": -99.61794484645876, "y": -54.679734650454904, "size": 1, "color": "#e36d0" } }, { "key": "4777", "attributes": { "cluster": 0, "x": -23.617944846458734, "y": -16.57461688393965, "size": 3, "color": "#e36d0" } }, { "key": "4778", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -47.751531420179425, "size": 1, "color": "#762e2e" } }, { "key": "4779", "attributes": { "cluster": 0, "x": -99.61794484645876, "y": -16.574616883939626, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4780", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": 5.942043614455763, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4781", "attributes": { "cluster": 0, "x": -23.617944846458734, "y": -54.67973465045493, "size": 0, "color": "#e36d0" } }, { "key": "4782", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": 5.9420436144557485, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4783", "attributes": { "cluster": 0, "x": -32.61794484645873, "y": -4.450261230957505, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4784", "attributes": { "cluster": 0, "x": -90.61794484645876, "y": -66.80409030343705, "size": 2, "color": "#e36d0" } }, { "key": "4785", "attributes": { "cluster": 0, "x": -26.617944846458734, "y": -11.378464461233001, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "4786", "attributes": { "cluster": 2, "x": 21.078043817233567, "y": 36.53524877879842, "size": 1, "color": "#4b94db" } }, { "key": "4787", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": -77.19639514885031, "size": 2, "color": "#762e2e" } }, { "key": "4788", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -77.19639514885031, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "4789", "attributes": { "cluster": 1, "x": 87.675078666922, "y": -2.718210423388612, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4790", "attributes": { "cluster": 2, "x": 21.07804381723352, "y": 105.81728108155349, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4791", "attributes": { "cluster": 2, "x": -20.9219561827665, "y": 36.53524877879838, "size": 1, "color": "#4b94db" } }, { "key": "4792", "attributes": { "cluster": 2, "x": 23.078043817233567, "y": 36.53524877879841, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4793", "attributes": { "cluster": 1, "x": 35.675078666921976, "y": -68.53614111100595, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4794", "attributes": { "cluster": 0, "x": -96.61794484645876, "y": -59.87588707316156, "size": 1, "color": "#e36d0" } }, { "key": "4795", "attributes": { "cluster": 2, "x": 23.07804381723352, "y": 105.81728108155347, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4796", "attributes": { "cluster": 2, "x": -22.921956182766547, "y": 105.81728108155346, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4797", "attributes": { "cluster": 1, "x": 87.67507866692205, "y": -68.53614111100592, "size": 2, "color": "#762e2e" } }, { "key": "4798", "attributes": { "cluster": 2, "x": -22.9219561827665, "y": 36.53524877879839, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4799", "attributes": { "cluster": 0, "x": -26.617944846458727, "y": -59.87588707316156, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4800", "attributes": { "cluster": 2, "x": 3.07804381723349, "y": 29.60704554852289, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4801", "attributes": { "cluster": 0, "x": -96.61794484645876, "y": -11.378464461233001, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4802", "attributes": { "cluster": 1, "x": 35.67507866692194, "y": -2.7182104233886335, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4803", "attributes": { "cluster": 2, "x": -2.921956182766471, "y": 112.74548431182897, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4804", "attributes": { "cluster": 1, "x": 31.675078666921983, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4805", "attributes": { "cluster": 0, "x": -32.6179448464587, "y": -66.80409030343706, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4806", "attributes": { "cluster": 2, "x": -2.9219561827664844, "y": 29.60704554852289, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4807", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": -6.182312038526376, "size": 2, "color": "#762e2e" } }, { "key": "4808", "attributes": { "cluster": 0, "x": -90.61794484645878, "y": -4.450261230957498, "size": 1, "color": "#e36d0" } }, { "key": "4809", "attributes": { "cluster": 0, "x": -41.61794484645868, "y": -72.00024272614367, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4810", "attributes": { "cluster": 0, "x": -81.61794484645881, "y": 0.7458911917491093, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4811", "attributes": { "cluster": 0, "x": -81.61794484645874, "y": -72.0002427261437, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4812", "attributes": { "cluster": 2, "x": 3.078043817233503, "y": 112.74548431182897, "size": 0, "color": "#4b94db" } }, { "key": "4813", "attributes": { "cluster": 1, "x": 31.675078666921955, "y": -6.182312038526387, "size": 1, "color": "#762e2e" } }, { "key": "4814", "attributes": { "cluster": 2, "x": -16.9219561827665, "y": 33.07114716366064, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4815", "attributes": { "cluster": 1, "x": 91.67507866692202, "y": -65.07203949586817, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4816", "attributes": { "cluster": 0, "x": -41.61794484645874, "y": 0.7458911917491378, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4817", "attributes": { "cluster": 1, "x": 68.675078666922, "y": 5.942043614455763, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4818", "attributes": { "cluster": 1, "x": 54.67507866692199, "y": 5.942043614455756, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4819", "attributes": { "cluster": 1, "x": 54.67507866692198, "y": -77.19639514885031, "size": 1, "color": "#762e2e" } }, { "key": "4820", "attributes": { "cluster": 2, "x": 17.07804381723352, "y": 109.28138269669122, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4821", "attributes": { "cluster": 2, "x": -16.92195618276654, "y": 109.2813826966912, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4822", "attributes": { "cluster": 2, "x": -39.92195618276649, "y": 59.0519092771938, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4823", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -77.19639514885031, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4824", "attributes": { "cluster": 0, "x": -100.61794484645876, "y": -52.947683842886036, "size": 1, "color": "#e36d0" } }, { "key": "4825", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -35.627175767197286, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4826", "attributes": { "cluster": 2, "x": 17.07804381723356, "y": 33.07114716366066, "size": 1, "color": "#4b94db" } }, { "key": "4827", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -33.89512495962841, "size": 1, "color": "#762e2e" } }, { "key": "4828", "attributes": { "cluster": 0, "x": -22.617944846458734, "y": -18.30666769150852, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "4829", "attributes": { "cluster": 2, "x": 40.07804381723351, "y": 83.30062058315806, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "4830", "attributes": { "cluster": 0, "x": -42.617944846458734, "y": 2.47794199931802, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4831", "attributes": { "cluster": 1, "x": 20.67507866692199, "y": -35.62717576719727, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4832", "attributes": { "cluster": 1, "x": 19.67507866692199, "y": -37.35922657476615, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4833", "attributes": { "cluster": 0, "x": -80.61794484645876, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4834", "attributes": { "cluster": 0, "x": -42.61794484645868, "y": -73.73229353371255, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4835", "attributes": { "cluster": 1, "x": 75.67507866692203, "y": -75.46434434128145, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4836", "attributes": { "cluster": 1, "x": 47.67507866692195, "y": 4.209992806886881, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4837", "attributes": { "cluster": 1, "x": 47.675078666921976, "y": -75.46434434128145, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4838", "attributes": { "cluster": 1, "x": 75.675078666922, "y": 4.209992806886888, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4839", "attributes": { "cluster": 1, "x": 20.67507866692199, "y": -46.019480612610536, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4840", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -25.234870921784022, "size": 1, "color": "#762e2e" } }, { "key": "4841", "attributes": { "cluster": 1, "x": 20.67507866692199, "y": -25.234870921784008, "size": 1, "color": "#762e2e" } }, { "key": "4842", "attributes": { "cluster": 0, "x": -22.617944846458727, "y": -52.94768384288608, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4843", "attributes": { "cluster": 0, "x": -80.61794484645881, "y": 2.4779419993179914, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4844", "attributes": { "cluster": 2, "x": -39.92195618276649, "y": 83.30062058315808, "size": 2, "color": "#4b94db" } }, { "key": "4845", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -46.01948061261055, "size": 1, "color": "#762e2e" } }, { "key": "4846", "attributes": { "cluster": 0, "x": -100.61794484645876, "y": -18.306667691508483, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4847", "attributes": { "cluster": 0, "x": -95.61794484645876, "y": -61.60793788073043, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4848", "attributes": { "cluster": 0, "x": -27.617944846458734, "y": -9.646413653664123, "size": 1, "color": "#e36d0" } }, { "key": "4849", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -40.82332818990392, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4850", "attributes": { "cluster": 2, "x": 40.07804381723351, "y": 59.051909277193786, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4851", "attributes": { "cluster": 2, "x": 5.078043817233513, "y": 112.74548431182897, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4852", "attributes": { "cluster": 2, "x": -4.921956182766493, "y": 112.74548431182896, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4853", "attributes": { "cluster": 0, "x": -36.61794484645873, "y": -0.9861596158197301, "size": 0, "color": "#e36d0" } }, { "key": "4854", "attributes": { "cluster": 2, "x": -4.921956182766494, "y": 29.60704554852289, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4855", "attributes": { "cluster": 0, "x": -86.61794484645876, "y": -70.26819191857483, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4856", "attributes": { "cluster": 0, "x": -36.617944846458684, "y": -70.26819191857479, "size": 1, "color": "#e36d0" } }, { "key": "4857", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -30.431023344490654, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4858", "attributes": { "cluster": 2, "x": 5.078043817233512, "y": 29.607045548522905, "size": 1, "color": "#4b94db" } }, { "key": "4859", "attributes": { "cluster": 0, "x": -86.6179448464588, "y": -0.9861596158197656, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4860", "attributes": { "cluster": 0, "x": -95.61794484645876, "y": -9.64641365366412, "size": 1, "color": "#e36d0" } }, { "key": "4861", "attributes": { "cluster": 1, "x": 19.67507866692199, "y": -30.43102334449064, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4862", "attributes": { "cluster": 0, "x": -27.61794484645872, "y": -61.60793788073044, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4863", "attributes": { "cluster": 0, "x": -19.61794484645874, "y": -26.9669217293529, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4864", "attributes": { "cluster": 1, "x": 19.67507866692199, "y": -40.823328189903904, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4865", "attributes": { "cluster": 0, "x": -103.61794484645874, "y": -44.287429805041654, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4866", "attributes": { "cluster": 2, "x": 26.07804381723352, "y": 104.08523027398459, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4867", "attributes": { "cluster": 2, "x": -25.9219561827665, "y": 38.267299586367265, "size": 2, "color": "#4b94db" } }, { "key": "4868", "attributes": { "cluster": 1, "x": 24.675078666921983, "y": -56.4117854580238, "size": 2, "color": "#762e2e" } }, { "key": "4869", "attributes": { "cluster": 2, "x": 26.07804381723356, "y": 38.26729958636729, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4870", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -14.842566076370758, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4871", "attributes": { "cluster": 0, "x": -19.61794484645874, "y": -44.28742980504167, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4872", "attributes": { "cluster": 1, "x": 24.675078666921983, "y": -14.842566076370751, "size": 2, "color": "#762e2e" } }, { "key": "4873", "attributes": { "cluster": 0, "x": -103.61794484645874, "y": -26.966921729352887, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4874", "attributes": { "cluster": 2, "x": -25.92195618276654, "y": 104.08523027398458, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4875", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -56.41178545802381, "size": 2, "color": "#762e2e" } }, { "key": "4876", "attributes": { "cluster": 2, "x": -29.921956182766497, "y": 41.73140120150503, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "4877", "attributes": { "cluster": 2, "x": 30.078043817233517, "y": 100.62112865884683, "size": 2, "color": "#4b94db" } }, { "key": "4878", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -13.11051526880188, "size": 2, "color": "#762e2e" } }, { "key": "4879", "attributes": { "cluster": 1, "x": 25.675078666921983, "y": -58.14383626559268, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4880", "attributes": { "cluster": 0, "x": -101.61794484645874, "y": -51.21563303531717, "size": 1, "color": "#e36d0" } }, { "key": "4881", "attributes": { "cluster": 0, "x": -21.61794484645874, "y": -20.038718499077394, "size": 1, "color": "#e36d0" } }, { "key": "4882", "attributes": { "cluster": 0, "x": -101.61794484645876, "y": -20.038718499077383, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4883", "attributes": { "cluster": 2, "x": -29.921956182766525, "y": 100.62112865884683, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4884", "attributes": { "cluster": 2, "x": 30.078043817233546, "y": 41.73140120150504, "size": 2, "color": "#4b94db" } }, { "key": "4885", "attributes": { "cluster": 0, "x": -21.617944846458727, "y": -51.215633035317175, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "4886", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -58.14383626559269, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4887", "attributes": { "cluster": 0, "x": -77.61794484645878, "y": 4.2099928068868735, "size": 3, "color": "#e36d0" } }, { "key": "4888", "attributes": { "cluster": 0, "x": -45.6179448464587, "y": -75.46434434128143, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4889", "attributes": { "cluster": 1, "x": 25.675078666921983, "y": -13.11051526880187, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4890", "attributes": { "cluster": 0, "x": -45.61794484645873, "y": 4.209992806886888, "size": 2, "color": "#e36d0" } }, { "key": "4891", "attributes": { "cluster": 2, "x": 7.078043817233518, "y": 112.74548431182897, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4892", "attributes": { "cluster": 1, "x": 70.675078666922, "y": -77.19639514885031, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4893", "attributes": { "cluster": 1, "x": 52.67507866692197, "y": 5.942043614455756, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4894", "attributes": { "cluster": 0, "x": -77.61794484645876, "y": -75.46434434128145, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4895", "attributes": { "cluster": 1, "x": 52.675078666921976, "y": -77.19639514885031, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4896", "attributes": { "cluster": 1, "x": 70.675078666922, "y": 5.942043614455763, "size": 1, "color": "#762e2e" } }, { "key": "4897", "attributes": { "cluster": 1, "x": 23.675078666921983, "y": -54.679734650454904, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4898", "attributes": { "cluster": 0, "x": -50.617944846458734, "y": -77.19639514885031, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4899", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -16.57461688393965, "size": 1, "color": "#762e2e" } }, { "key": "4900", "attributes": { "cluster": 2, "x": -6.9219561827664915, "y": 112.74548431182896, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4901", "attributes": { "cluster": 2, "x": -6.9219561827664995, "y": 29.60704554852289, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4902", "attributes": { "cluster": 2, "x": 7.07804381723351, "y": 29.607045548522898, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4903", "attributes": { "cluster": 0, "x": -72.61794484645874, "y": 5.942043614455756, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4904", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -77.19639514885031, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4905", "attributes": { "cluster": 2, "x": 41.07804381723351, "y": 71.17626493017592, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4906", "attributes": { "cluster": 2, "x": 42.07804381723351, "y": 72.9083157377448, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4907", "attributes": { "cluster": 2, "x": -40.92195618276649, "y": 71.17626493017595, "size": 1, "color": "#4b94db" } }, { "key": "4908", "attributes": { "cluster": 2, "x": -41.92195618276649, "y": 69.44421412260706, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "4909", "attributes": { "cluster": 2, "x": 14.078043817233551, "y": 31.339096356091773, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4910", "attributes": { "cluster": 0, "x": -50.61794484645873, "y": 5.942043614455763, "size": 2, "color": "#e36d0" } }, { "key": "4911", "attributes": { "cluster": 2, "x": -13.921956182766534, "y": 111.01343350426009, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "4912", "attributes": { "cluster": 0, "x": -94.61794484645876, "y": -63.339988688299314, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4913", "attributes": { "cluster": 1, "x": 23.675078666921983, "y": -16.574616883939626, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4914", "attributes": { "cluster": 2, "x": -13.921956182766502, "y": 31.339096356091765, "size": 2, "color": "#4b94db" } }, { "key": "4915", "attributes": { "cluster": 2, "x": 14.07804381723352, "y": 111.01343350426009, "size": 1, "color": "#4b94db" } }, { "key": "4916", "attributes": { "cluster": 2, "x": -40.92195618276649, "y": 60.783960084762676, "size": 1, "color": "#4b94db" } }, { "key": "4917", "attributes": { "cluster": 2, "x": 41.07804381723351, "y": 81.56856977558918, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4918", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -54.67973465045493, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "4919", "attributes": { "cluster": 0, "x": -28.617944846458734, "y": -7.914362846095244, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4920", "attributes": { "cluster": 2, "x": -40.92195618276649, "y": 81.56856977558921, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4921", "attributes": { "cluster": 1, "x": 90.675078666922, "y": -4.450261230957505, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4922", "attributes": { "cluster": 0, "x": -94.61794484645877, "y": -7.914362846095251, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4923", "attributes": { "cluster": 1, "x": 32.675078666921976, "y": -66.80409030343705, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "4924", "attributes": { "cluster": 2, "x": 41.07804381723351, "y": 60.78396008476266, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4925", "attributes": { "cluster": 0, "x": -28.617944846458713, "y": -63.33998868829931, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "4926", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -11.378464461233001, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4927", "attributes": { "cluster": 1, "x": 26.675078666921983, "y": -59.87588707316156, "size": 1, "color": "#762e2e" } }, { "key": "4928", "attributes": { "cluster": 2, "x": 42.07804381723351, "y": 65.98011250746929, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4929", "attributes": { "cluster": 2, "x": 42.07804381723351, "y": 76.37241735288255, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4930", "attributes": { "cluster": 1, "x": 96.675078666922, "y": -59.87588707316156, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4931", "attributes": { "cluster": 2, "x": -41.92195618276649, "y": 76.37241735288258, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4932", "attributes": { "cluster": 2, "x": -41.92195618276649, "y": 65.98011250746931, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "4933", "attributes": { "cluster": 0, "x": -19.61794484645874, "y": -37.35922657476617, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4934", "attributes": { "cluster": 1, "x": 26.675078666921976, "y": -11.378464461233001, "size": 2, "color": "#762e2e" } }, { "key": "4935", "attributes": { "cluster": 2, "x": -36.9219561827665, "y": 50.39165523934941, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4936", "attributes": { "cluster": 2, "x": 37.078043817233514, "y": 91.96087462100246, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4937", "attributes": { "cluster": 0, "x": -103.61794484645874, "y": -33.89512495962839, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4938", "attributes": { "cluster": 0, "x": -104.61794484645874, "y": -39.09127738233502, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4939", "attributes": { "cluster": 1, "x": 90.67507866692203, "y": -66.80409030343706, "size": 1, "color": "#762e2e" } }, { "key": "4940", "attributes": { "cluster": 2, "x": -36.9219561827665, "y": 91.96087462100246, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4941", "attributes": { "cluster": 0, "x": -18.61794484645874, "y": -39.09127738233504, "size": 1, "color": "#e36d0" } }, { "key": "4942", "attributes": { "cluster": 0, "x": -18.61794484645874, "y": -32.16307415205954, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4943", "attributes": { "cluster": 2, "x": 37.078043817233514, "y": 50.391655239349404, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4944", "attributes": { "cluster": 2, "x": 36.078043817233514, "y": 93.69292542857133, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4945", "attributes": { "cluster": 2, "x": -35.9219561827665, "y": 48.65960443178054, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4946", "attributes": { "cluster": 0, "x": -104.61794484645874, "y": -32.163074152059515, "size": 2, "color": "#e36d0" } }, { "key": "4947", "attributes": { "cluster": 2, "x": 36.078043817233514, "y": 48.65960443178052, "size": 2, "color": "#4b94db" } }, { "key": "4948", "attributes": { "cluster": 0, "x": -89.61794484645876, "y": -68.53614111100595, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4949", "attributes": { "cluster": 0, "x": -33.61794484645873, "y": -2.7182104233886193, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4950", "attributes": { "cluster": 0, "x": -89.61794484645878, "y": -2.7182104233886335, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "4951", "attributes": { "cluster": 1, "x": 32.67507866692195, "y": -4.450261230957498, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4952", "attributes": { "cluster": 1, "x": 81.67507866692205, "y": -72.00024272614367, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "4953", "attributes": { "cluster": 1, "x": 41.67507866692193, "y": 0.7458911917491093, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4954", "attributes": { "cluster": 0, "x": -33.61794484645869, "y": -68.53614111100592, "size": 1, "color": "#e36d0" } }, { "key": "4955", "attributes": { "cluster": 2, "x": -35.9219561827665, "y": 93.69292542857134, "size": 1, "color": "#4b94db" } }, { "key": "4956", "attributes": { "cluster": 0, "x": -20.61794484645874, "y": -21.77076930664627, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "4957", "attributes": { "cluster": 1, "x": 41.67507866692199, "y": -72.0002427261437, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "4958", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": 0.7458911917491378, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "4959", "attributes": { "cluster": 2, "x": 9.078043817233528, "y": 29.607045548522898, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4960", "attributes": { "cluster": 2, "x": -8.921956182766511, "y": 112.74548431182896, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "4961", "attributes": { "cluster": 1, "x": 22.675078666921983, "y": -52.947683842886036, "size": 3, "color": "#762e2e" } }, { "key": "4962", "attributes": { "cluster": 0, "x": -102.61794484645874, "y": -49.483582227748286, "size": 0, "color": "#e36d0" } }, { "key": "4963", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -18.30666769150852, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4964", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": 2.47794199931802, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4965", "attributes": { "cluster": 0, "x": -20.61794484645874, "y": -49.4835822277483, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4966", "attributes": { "cluster": 2, "x": -8.921956182766502, "y": 29.60704554852289, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4967", "attributes": { "cluster": 0, "x": -102.61794484645874, "y": -21.770769306646255, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "4968", "attributes": { "cluster": 1, "x": 42.67507866692198, "y": -73.73229353371258, "size": 2, "color": "#762e2e" } }, { "key": "4969", "attributes": { "cluster": 0, "x": -61.617944846458755, "y": -78.92844595641921, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4970", "attributes": { "cluster": 0, "x": -61.61794484645873, "y": 7.674094422024652, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4971", "attributes": { "cluster": 0, "x": -63.61794484645873, "y": -78.9284459564192, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "4972", "attributes": { "cluster": 1, "x": 80.67507866692205, "y": -73.73229353371255, "size": 1, "color": "#762e2e" } }, { "key": "4973", "attributes": { "cluster": 2, "x": 9.07804381723352, "y": 112.74548431182897, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4974", "attributes": { "cluster": 2, "x": -37.9219561827665, "y": 52.1237060469183, "size": 1, "color": "#4b94db" } }, { "key": "4975", "attributes": { "cluster": 2, "x": 38.078043817233514, "y": 90.22882381343356, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4976", "attributes": { "cluster": 1, "x": 100.675078666922, "y": -52.94768384288608, "size": 1, "color": "#762e2e" } }, { "key": "4977", "attributes": { "cluster": 2, "x": -37.9219561827665, "y": 90.22882381343359, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "4978", "attributes": { "cluster": 1, "x": 42.67507866692193, "y": 2.4779419993179914, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4979", "attributes": { "cluster": 2, "x": 38.078043817233514, "y": 52.12370604691828, "size": 1, "color": "#4b94db" } }, { "key": "4980", "attributes": { "cluster": 0, "x": -59.617944846458755, "y": 7.674094422024638, "size": 0, "color": "#e36d0" } }, { "key": "4981", "attributes": { "cluster": 1, "x": 22.675078666921976, "y": -18.306667691508483, "size": 1, "color": "#762e2e" } }, { "key": "4982", "attributes": { "cluster": 2, "x": 29.07804381723352, "y": 102.35317946641571, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "4983", "attributes": { "cluster": 1, "x": 27.675078666921983, "y": -61.60793788073043, "size": 2, "color": "#762e2e" } }, { "key": "4984", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -9.646413653664123, "size": 2, "color": "#762e2e" } }, { "key": "4985", "attributes": { "cluster": 2, "x": -28.9219561827665, "y": 39.999350393936155, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4986", "attributes": { "cluster": 0, "x": -63.617944846458734, "y": 7.674094422024645, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4987", "attributes": { "cluster": 2, "x": 35.078043817233514, "y": 95.42497623614021, "size": 2, "color": "#4b94db" } }, { "key": "4988", "attributes": { "cluster": 2, "x": -34.9219561827665, "y": 46.927553624211654, "size": 2, "color": "#4b94db" } }, { "key": "4989", "attributes": { "cluster": 1, "x": 86.675078666922, "y": -0.9861596158197301, "size": 2, "color": "#762e2e" } }, { "key": "4990", "attributes": { "cluster": 1, "x": 36.675078666921976, "y": -70.26819191857483, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4991", "attributes": { "cluster": 0, "x": -59.61794484645875, "y": -78.92844595641921, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "4992", "attributes": { "cluster": 1, "x": 86.67507866692205, "y": -70.26819191857479, "size": 2, "color": "#762e2e" } }, { "key": "4993", "attributes": { "cluster": 1, "x": 36.675078666921934, "y": -0.9861596158197656, "size": 1, "color": "#762e2e" } }, { "key": "4994", "attributes": { "cluster": 1, "x": 27.67507866692197, "y": -9.64641365366412, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4995", "attributes": { "cluster": 1, "x": 95.67507866692202, "y": -61.60793788073044, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "4996", "attributes": { "cluster": 2, "x": 35.07804381723352, "y": 46.927553624211654, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "4997", "attributes": { "cluster": 0, "x": -29.617944846458734, "y": -6.182312038526366, "size": 1, "color": "#e36d0" } }, { "key": "4998", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -26.9669217293529, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "4999", "attributes": { "cluster": 0, "x": -93.61794484645876, "y": -65.0720394958682, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "5000", "attributes": { "cluster": 2, "x": -34.92195618276651, "y": 95.42497623614021, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5001", "attributes": { "cluster": 1, "x": 19.67507866692199, "y": -44.287429805041654, "size": 0, "color": "#762e2e" } }, { "key": "5002", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -44.28742980504167, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5003", "attributes": { "cluster": 1, "x": 19.67507866692199, "y": -26.966921729352887, "size": 3, "color": "#762e2e" } }, { "key": "5004", "attributes": { "cluster": 1, "x": 21.67507866692199, "y": -51.21563303531717, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5005", "attributes": { "cluster": 0, "x": -29.617944846458705, "y": -65.07203949586818, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5006", "attributes": { "cluster": 0, "x": -93.61794484645878, "y": -6.182312038526369, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5007", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -20.038718499077394, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5008", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": -78.92844595641918, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5009", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": 7.674094422024623, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5010", "attributes": { "cluster": 2, "x": 29.078043817233553, "y": 39.999350393936155, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5011", "attributes": { "cluster": 1, "x": 21.675078666921976, "y": -20.038718499077383, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5012", "attributes": { "cluster": 2, "x": -28.921956182766532, "y": 102.35317946641571, "size": 1, "color": "#4b94db" } }, { "key": "5013", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -78.9284459564192, "size": 2, "color": "#e36d0" } }, { "key": "5014", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": 7.674094422024638, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5015", "attributes": { "cluster": 1, "x": 101.675078666922, "y": -51.215633035317175, "size": 2, "color": "#762e2e" } }, { "key": "5016", "attributes": { "cluster": 2, "x": 20.078043817233574, "y": 34.803197971229544, "size": 1, "color": "#4b94db" } }, { "key": "5017", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -77.19639514885031, "size": 2, "color": "#e36d0" } }, { "key": "5018", "attributes": { "cluster": 1, "x": 45.67507866692195, "y": 4.2099928068868735, "size": 1, "color": "#762e2e" } }, { "key": "5019", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": 5.942043614455763, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5020", "attributes": { "cluster": 0, "x": -74.61794484645878, "y": 5.942043614455756, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5021", "attributes": { "cluster": 0, "x": -48.617944846458705, "y": -77.19639514885031, "size": 1, "color": "#e36d0" } }, { "key": "5022", "attributes": { "cluster": 2, "x": -19.921956182766554, "y": 107.54933188912233, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5023", "attributes": { "cluster": 1, "x": 77.67507866692203, "y": -75.46434434128143, "size": 2, "color": "#762e2e" } }, { "key": "5024", "attributes": { "cluster": 1, "x": 77.675078666922, "y": 4.209992806886888, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5025", "attributes": { "cluster": 2, "x": -19.921956182766493, "y": 34.803197971229515, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5026", "attributes": { "cluster": 1, "x": 45.675078666921976, "y": -75.46434434128145, "size": 2, "color": "#762e2e" } }, { "key": "5027", "attributes": { "cluster": 2, "x": 20.078043817233514, "y": 107.54933188912236, "size": 3, "color": "#4b94db" } }, { "key": "5028", "attributes": { "cluster": 0, "x": -18.61794484645874, "y": -42.5553789974728, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5029", "attributes": { "cluster": 0, "x": -18.61794484645874, "y": -28.69897253692178, "size": 1, "color": "#e36d0" } }, { "key": "5030", "attributes": { "cluster": 2, "x": -38.9219561827665, "y": 53.85575685448717, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5031", "attributes": { "cluster": 0, "x": -104.61794484645874, "y": -28.69897253692176, "size": 2, "color": "#e36d0" } }, { "key": "5032", "attributes": { "cluster": 1, "x": 72.67507866692199, "y": -77.19639514885031, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5033", "attributes": { "cluster": 0, "x": -104.61794484645874, "y": -42.55537899747278, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5034", "attributes": { "cluster": 2, "x": 39.078043817233514, "y": 88.4967730058647, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5035", "attributes": { "cluster": 0, "x": -39.61794484645868, "y": -72.00024272614365, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5036", "attributes": { "cluster": 2, "x": 19.078043817233517, "y": 109.28138269669122, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5037", "attributes": { "cluster": 2, "x": -18.921956182766497, "y": 33.07114716366063, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5038", "attributes": { "cluster": 0, "x": -83.61794484645881, "y": 0.7458911917491022, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5039", "attributes": { "cluster": 2, "x": 19.078043817233574, "y": 33.07114716366066, "size": 1, "color": "#4b94db" } }, { "key": "5040", "attributes": { "cluster": 0, "x": -83.61794484645874, "y": -72.00024272614371, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5041", "attributes": { "cluster": 2, "x": 39.07804381723352, "y": 53.85575685448714, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5042", "attributes": { "cluster": 0, "x": -39.61794484645874, "y": 0.745891191749152, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5043", "attributes": { "cluster": 0, "x": -85.61794484645881, "y": 0.7458911917491164, "size": 2, "color": "#e36d0" } }, { "key": "5044", "attributes": { "cluster": 1, "x": 50.67507866692198, "y": 5.942043614455756, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5045", "attributes": { "cluster": 1, "x": 50.675078666921976, "y": -77.19639514885031, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5046", "attributes": { "cluster": 0, "x": -85.61794484645874, "y": -72.00024272614371, "size": 1, "color": "#e36d0" } }, { "key": "5047", "attributes": { "cluster": 2, "x": -18.921956182766554, "y": 109.2813826966912, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5048", "attributes": { "cluster": 2, "x": -38.92195618276651, "y": 88.49677300586472, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5049", "attributes": { "cluster": 0, "x": -37.61794484645868, "y": -72.00024272614368, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5050", "attributes": { "cluster": 0, "x": -37.61794484645874, "y": 0.7458911917491449, "size": 2, "color": "#e36d0" } }, { "key": "5051", "attributes": { "cluster": 2, "x": -33.9219561827665, "y": 45.19550281664277, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5052", "attributes": { "cluster": 1, "x": 72.675078666922, "y": 5.942043614455763, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5053", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": 7.674094422024623, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5054", "attributes": { "cluster": 2, "x": 34.078043817233514, "y": 97.15702704370909, "size": 1, "color": "#4b94db" } }, { "key": "5055", "attributes": { "cluster": 2, "x": 25.07804381723352, "y": 105.81728108155349, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5056", "attributes": { "cluster": 0, "x": -55.61794484645875, "y": -78.92844595641918, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5057", "attributes": { "cluster": 0, "x": -55.617944846458734, "y": 7.674094422024638, "size": 1, "color": "#e36d0" } }, { "key": "5058", "attributes": { "cluster": 1, "x": 28.675078666921983, "y": -63.339988688299314, "size": 0, "color": "#762e2e" } }, { "key": "5059", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -78.9284459564192, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5060", "attributes": { "cluster": 0, "x": -19.61794484645874, "y": -23.502820114215147, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5061", "attributes": { "cluster": 0, "x": -103.61794484645874, "y": -47.75153142017941, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5062", "attributes": { "cluster": 0, "x": -19.61794484645874, "y": -47.75153142017943, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5063", "attributes": { "cluster": 0, "x": -103.61794484645874, "y": -23.50282011421513, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5064", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -7.914362846095244, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "5065", "attributes": { "cluster": 0, "x": -43.617944846458684, "y": -75.46434434128142, "size": 2, "color": "#e36d0" } }, { "key": "5066", "attributes": { "cluster": 0, "x": -79.6179448464588, "y": 4.209992806886866, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5067", "attributes": { "cluster": 1, "x": 28.675078666921962, "y": -7.914362846095251, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5068", "attributes": { "cluster": 1, "x": 94.67507866692202, "y": -63.33998868829931, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5069", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -37.35922657476617, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5070", "attributes": { "cluster": 1, "x": 19.67507866692199, "y": -33.89512495962839, "size": 2, "color": "#762e2e" } }, { "key": "5071", "attributes": { "cluster": 1, "x": 18.67507866692199, "y": -39.09127738233502, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5072", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -39.09127738233504, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5073", "attributes": { "cluster": 2, "x": -24.9219561827665, "y": 36.53524877879838, "size": 1, "color": "#4b94db" } }, { "key": "5074", "attributes": { "cluster": 2, "x": 25.078043817233567, "y": 36.53524877879842, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5075", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -32.16307415205954, "size": 3, "color": "#762e2e" } }, { "key": "5076", "attributes": { "cluster": 1, "x": 18.67507866692199, "y": -32.163074152059515, "size": 1, "color": "#762e2e" } }, { "key": "5077", "attributes": { "cluster": 2, "x": -24.921956182766547, "y": 105.81728108155345, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5078", "attributes": { "cluster": 0, "x": -79.61794484645874, "y": -75.46434434128145, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5079", "attributes": { "cluster": 2, "x": -33.921956182766515, "y": 97.15702704370909, "size": 1, "color": "#4b94db" } }, { "key": "5080", "attributes": { "cluster": 1, "x": 33.675078666921976, "y": -68.53614111100595, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5081", "attributes": { "cluster": 1, "x": 89.675078666922, "y": -2.7182104233886193, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5082", "attributes": { "cluster": 2, "x": 34.07804381723353, "y": 45.19550281664277, "size": 1, "color": "#4b94db" } }, { "key": "5083", "attributes": { "cluster": 0, "x": -43.61794484645874, "y": 4.209992806886888, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5084", "attributes": { "cluster": 0, "x": -92.61794484645876, "y": -66.80409030343705, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5085", "attributes": { "cluster": 1, "x": 33.67507866692194, "y": -2.7182104233886335, "size": 1, "color": "#762e2e" } }, { "key": "5086", "attributes": { "cluster": 1, "x": 89.67507866692205, "y": -68.53614111100592, "size": 1, "color": "#762e2e" } }, { "key": "5087", "attributes": { "cluster": 0, "x": -30.617944846458734, "y": -4.450261230957501, "size": 1, "color": "#e36d0" } }, { "key": "5088", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -21.77076930664627, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5089", "attributes": { "cluster": 0, "x": -34.61794484645873, "y": -0.9861596158197372, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5090", "attributes": { "cluster": 1, "x": 20.67507866692199, "y": -49.483582227748286, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5091", "attributes": { "cluster": 2, "x": 42.07804381723351, "y": 79.83651896802031, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5092", "attributes": { "cluster": 0, "x": -88.61794484645876, "y": -70.26819191857481, "size": 1, "color": "#e36d0" } }, { "key": "5093", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -49.4835822277483, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5094", "attributes": { "cluster": 2, "x": -41.92195618276649, "y": 62.51601089233155, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5095", "attributes": { "cluster": 2, "x": 42.07804381723351, "y": 62.516010892331536, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5096", "attributes": { "cluster": 2, "x": -41.92195618276649, "y": 79.83651896802033, "size": 2, "color": "#4b94db" } }, { "key": "5097", "attributes": { "cluster": 2, "x": -39.92195618276649, "y": 55.58780766205605, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5098", "attributes": { "cluster": 0, "x": -34.617944846458684, "y": -70.2681919185748, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5099", "attributes": { "cluster": 0, "x": -88.6179448464588, "y": -0.9861596158197585, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5100", "attributes": { "cluster": 2, "x": 40.07804381723351, "y": 86.76472219829581, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5101", "attributes": { "cluster": 2, "x": -39.92195618276651, "y": 86.76472219829583, "size": 1, "color": "#4b94db" } }, { "key": "5102", "attributes": { "cluster": 2, "x": 40.07804381723352, "y": 55.587807662056036, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5103", "attributes": { "cluster": 2, "x": -15.921956182766538, "y": 111.01343350426009, "size": 1, "color": "#4b94db" } }, { "key": "5104", "attributes": { "cluster": 0, "x": -92.61794484645878, "y": -4.450261230957512, "size": 2, "color": "#e36d0" } }, { "key": "5105", "attributes": { "cluster": 0, "x": -30.6179448464587, "y": -66.80409030343705, "size": 1, "color": "#e36d0" } }, { "key": "5106", "attributes": { "cluster": 2, "x": 16.078043817233556, "y": 31.33909635609178, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5107", "attributes": { "cluster": 1, "x": 20.67507866692199, "y": -21.770769306646255, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5108", "attributes": { "cluster": 1, "x": 61.675078666921976, "y": -78.92844595641921, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5109", "attributes": { "cluster": 1, "x": 61.675078666922005, "y": 7.674094422024652, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5110", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": 7.6740944220246305, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5111", "attributes": { "cluster": 0, "x": -53.61794484645873, "y": -78.92844595641918, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5112", "attributes": { "cluster": 0, "x": -53.61794484645873, "y": 7.674094422024638, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5113", "attributes": { "cluster": 2, "x": 16.07804381723352, "y": 111.01343350426009, "size": 1, "color": "#4b94db" } }, { "key": "5114", "attributes": { "cluster": 1, "x": 59.675078666922005, "y": -78.9284459564192, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5115", "attributes": { "cluster": 2, "x": -15.921956182766502, "y": 31.339096356091765, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5116", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -78.9284459564192, "size": 1, "color": "#e36d0" } }, { "key": "5117", "attributes": { "cluster": 2, "x": 11.078043817233514, "y": 29.607045548522898, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5118", "attributes": { "cluster": 1, "x": 63.675078666921976, "y": 7.674094422024638, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5119", "attributes": { "cluster": 1, "x": 59.675078666922, "y": 7.674094422024645, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5120", "attributes": { "cluster": 1, "x": 63.67507866692198, "y": -78.92844595641921, "size": 2, "color": "#762e2e" } }, { "key": "5121", "attributes": { "cluster": 0, "x": -18.61794484645874, "y": -35.627175767197286, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5122", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -6.182312038526366, "size": 2, "color": "#762e2e" } }, { "key": "5123", "attributes": { "cluster": 1, "x": 29.675078666921983, "y": -65.0720394958682, "size": 2, "color": "#762e2e" } }, { "key": "5124", "attributes": { "cluster": 0, "x": -17.61794484645874, "y": -33.89512495962841, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5125", "attributes": { "cluster": 1, "x": 93.67507866692202, "y": -65.07203949586818, "size": 1, "color": "#762e2e" } }, { "key": "5126", "attributes": { "cluster": 2, "x": -10.921956182766497, "y": 112.74548431182896, "size": 3, "color": "#4b94db" } }, { "key": "5127", "attributes": { "cluster": 1, "x": 29.675078666921955, "y": -6.182312038526369, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5128", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -78.92844595641918, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5129", "attributes": { "cluster": 0, "x": -104.61794484645874, "y": -35.62717576719727, "size": 1, "color": "#e36d0" } }, { "key": "5130", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": 7.674094422024623, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5131", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -78.9284459564192, "size": 2, "color": "#762e2e" } }, { "key": "5132", "attributes": { "cluster": 2, "x": -10.921956182766502, "y": 29.60704554852289, "size": 1, "color": "#4b94db" } }, { "key": "5133", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": 7.674094422024638, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5134", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -77.19639514885031, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5135", "attributes": { "cluster": 0, "x": -105.61794484645874, "y": -37.35922657476615, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5136", "attributes": { "cluster": 2, "x": 11.07804381723352, "y": 112.74548431182897, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5137", "attributes": { "cluster": 1, "x": 74.675078666922, "y": 5.942043614455763, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5138", "attributes": { "cluster": 1, "x": 48.675078666921955, "y": 5.942043614455756, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5139", "attributes": { "cluster": 1, "x": 74.67507866692203, "y": -77.19639514885031, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5140", "attributes": { "cluster": 0, "x": -99.61794484645876, "y": -58.14383626559268, "size": 2, "color": "#e36d0" } }, { "key": "5141", "attributes": { "cluster": 2, "x": -32.9219561827665, "y": 43.4634520090739, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5142", "attributes": { "cluster": 2, "x": 33.078043817233514, "y": 98.88907785127796, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5143", "attributes": { "cluster": 0, "x": -23.617944846458734, "y": -13.11051526880188, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5144", "attributes": { "cluster": 0, "x": -99.61794484645876, "y": -13.110515268801873, "size": 1, "color": "#e36d0" } }, { "key": "5145", "attributes": { "cluster": 2, "x": -32.92195618276652, "y": 98.88907785127796, "size": 1, "color": "#4b94db" } }, { "key": "5146", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -42.5553789974728, "size": 0, "color": "#762e2e" } }, { "key": "5147", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -28.69897253692178, "size": 0, "color": "#762e2e" } }, { "key": "5148", "attributes": { "cluster": 2, "x": 33.078043817233535, "y": 43.463452009073904, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5149", "attributes": { "cluster": 1, "x": 18.67507866692199, "y": -28.69897253692176, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5150", "attributes": { "cluster": 0, "x": -23.617944846458734, "y": -58.14383626559268, "size": 1, "color": "#e36d0" } }, { "key": "5151", "attributes": { "cluster": 1, "x": 18.67507866692199, "y": -42.55537899747278, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5152", "attributes": { "cluster": 0, "x": -46.61794484645873, "y": 5.942043614455763, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5153", "attributes": { "cluster": 1, "x": 83.67507866692205, "y": -72.00024272614365, "size": 0, "color": "#762e2e" } }, { "key": "5154", "attributes": { "cluster": 1, "x": 39.67507866692193, "y": 0.7458911917491022, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5155", "attributes": { "cluster": 0, "x": -76.61794484645876, "y": -77.19639514885031, "size": 2, "color": "#e36d0" } }, { "key": "5156", "attributes": { "cluster": 1, "x": 39.67507866692199, "y": -72.00024272614371, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5157", "attributes": { "cluster": 0, "x": -46.61794484645869, "y": -77.19639514885031, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5158", "attributes": { "cluster": 2, "x": 42.07804381723351, "y": 69.44421412260705, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5159", "attributes": { "cluster": 0, "x": -76.61794484645878, "y": 5.942043614455756, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5160", "attributes": { "cluster": 2, "x": -41.92195618276649, "y": 72.90831573774481, "size": 2, "color": "#4b94db" } }, { "key": "5161", "attributes": { "cluster": 2, "x": -42.92195618276649, "y": 67.71216331503818, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5162", "attributes": { "cluster": 0, "x": -100.61794484645876, "y": -56.411785458023786, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5163", "attributes": { "cluster": 0, "x": -22.617944846458734, "y": -14.842566076370776, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5164", "attributes": { "cluster": 1, "x": 83.67507866692199, "y": 0.745891191749152, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5165", "attributes": { "cluster": 1, "x": 37.67507866692193, "y": 0.7458911917491164, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5166", "attributes": { "cluster": 0, "x": -100.61794484645876, "y": -14.842566076370748, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5167", "attributes": { "cluster": 0, "x": -22.617944846458734, "y": -56.411785458023814, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5168", "attributes": { "cluster": 0, "x": -18.61794484645874, "y": -25.234870921784022, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5169", "attributes": { "cluster": 0, "x": -104.61794484645874, "y": -46.019480612610536, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5170", "attributes": { "cluster": 0, "x": -18.61794484645874, "y": -46.01948061261055, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5171", "attributes": { "cluster": 1, "x": 37.67507866692199, "y": -72.00024272614371, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5172", "attributes": { "cluster": 0, "x": -104.61794484645874, "y": -25.234870921784008, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5173", "attributes": { "cluster": 2, "x": 43.07804381723351, "y": 67.71216331503817, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5174", "attributes": { "cluster": 0, "x": -98.61794484645876, "y": -59.87588707316156, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5175", "attributes": { "cluster": 1, "x": 85.67507866692205, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5176", "attributes": { "cluster": 2, "x": 43.07804381723351, "y": 74.64036654531368, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5177", "attributes": { "cluster": 1, "x": 85.67507866692199, "y": 0.7458911917491449, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5178", "attributes": { "cluster": 2, "x": -42.92195618276649, "y": 74.6403665453137, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5179", "attributes": { "cluster": 1, "x": 55.675078666922, "y": 7.674094422024623, "size": 1, "color": "#762e2e" } }, { "key": "5180", "attributes": { "cluster": 0, "x": -24.617944846458734, "y": -11.378464461233001, "size": 1, "color": "#e36d0" } }, { "key": "5181", "attributes": { "cluster": 2, "x": -27.9219561827665, "y": 38.26729958636727, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5182", "attributes": { "cluster": 2, "x": 28.07804381723352, "y": 104.08523027398459, "size": 2, "color": "#4b94db" } }, { "key": "5183", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -78.92844595641918, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5184", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": 7.674094422024638, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5185", "attributes": { "cluster": 0, "x": -98.61794484645876, "y": -11.378464461232994, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5186", "attributes": { "cluster": 1, "x": 55.67507866692198, "y": -78.9284459564192, "size": 1, "color": "#762e2e" } }, { "key": "5187", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -23.502820114215147, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5188", "attributes": { "cluster": 1, "x": 19.67507866692199, "y": -47.75153142017941, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5189", "attributes": { "cluster": 0, "x": -24.61794484645872, "y": -59.875887073161564, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5190", "attributes": { "cluster": 2, "x": -27.92195618276654, "y": 104.08523027398458, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5191", "attributes": { "cluster": 0, "x": -21.617944846458734, "y": -16.57461688393964, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5192", "attributes": { "cluster": 2, "x": 28.07804381723356, "y": 38.26729958636729, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5193", "attributes": { "cluster": 0, "x": -101.61794484645876, "y": -54.67973465045492, "size": 1, "color": "#e36d0" } }, { "key": "5194", "attributes": { "cluster": 0, "x": -21.61794484645874, "y": -54.67973465045496, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5195", "attributes": { "cluster": 2, "x": 41.07804381723351, "y": 85.03267139072695, "size": 1, "color": "#4b94db" } }, { "key": "5196", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -47.75153142017943, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5197", "attributes": { "cluster": 0, "x": -101.61794484645874, "y": -16.5746168839396, "size": 2, "color": "#e36d0" } }, { "key": "5198", "attributes": { "cluster": 1, "x": 19.67507866692199, "y": -23.50282011421513, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5199", "attributes": { "cluster": 2, "x": -40.92195618276649, "y": 57.31985846962492, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5200", "attributes": { "cluster": 1, "x": 79.67507866692205, "y": -75.46434434128142, "size": 1, "color": "#762e2e" } }, { "key": "5201", "attributes": { "cluster": 0, "x": -105.61794484645874, "y": -30.43102334449064, "size": 1, "color": "#e36d0" } }, { "key": "5202", "attributes": { "cluster": 0, "x": -105.61794484645874, "y": -40.823328189903904, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5203", "attributes": { "cluster": 1, "x": 43.675078666921934, "y": 4.209992806886866, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5204", "attributes": { "cluster": 2, "x": 41.07804381723351, "y": 57.319858469624904, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5205", "attributes": { "cluster": 2, "x": -40.92195618276649, "y": 85.03267139072696, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5206", "attributes": { "cluster": 1, "x": 43.67507866692199, "y": -75.46434434128145, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5207", "attributes": { "cluster": 0, "x": -17.61794484645874, "y": -40.82332818990392, "size": 1, "color": "#e36d0" } }, { "key": "5208", "attributes": { "cluster": 2, "x": 0.07804381723349803, "y": 27.874994740954, "size": 1, "color": "#4b94db" } }, { "key": "5209", "attributes": { "cluster": 0, "x": -17.61794484645874, "y": -30.431023344490658, "size": 0, "color": "#e36d0" } }, { "key": "5210", "attributes": { "cluster": 2, "x": 0.07804381723352065, "y": 114.47753511939786, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5211", "attributes": { "cluster": 0, "x": -25.617944846458734, "y": -9.646413653664123, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5212", "attributes": { "cluster": 0, "x": -97.61794484645876, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5213", "attributes": { "cluster": 2, "x": -1.9219561827664735, "y": 27.874994740954016, "size": 2, "color": "#4b94db" } }, { "key": "5214", "attributes": { "cluster": 1, "x": 79.67507866692199, "y": 4.209992806886888, "size": 1, "color": "#762e2e" } }, { "key": "5215", "attributes": { "cluster": 1, "x": 30.675078666921983, "y": -66.80409030343705, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5216", "attributes": { "cluster": 0, "x": -25.61794484645872, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5217", "attributes": { "cluster": 0, "x": -97.61794484645876, "y": -9.646413653664126, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5218", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": -4.450261230957501, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5219", "attributes": { "cluster": 1, "x": 88.675078666922, "y": -0.9861596158197372, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5220", "attributes": { "cluster": 2, "x": 2.078043817233492, "y": 114.47753511939786, "size": 4, "color": "#4b94db" } }, { "key": "5221", "attributes": { "cluster": 1, "x": 34.675078666921976, "y": -70.26819191857481, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5222", "attributes": { "cluster": 2, "x": -1.9219561827664802, "y": 114.47753511939786, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5223", "attributes": { "cluster": 2, "x": 2.0780438172334987, "y": 27.87499474095401, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5224", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": -78.9284459564192, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5225", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": 7.674094422024638, "size": 1, "color": "#e36d0" } }, { "key": "5226", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -78.9284459564192, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5227", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": 7.674094422024638, "size": 1, "color": "#e36d0" } }, { "key": "5228", "attributes": { "cluster": 0, "x": -102.61794484645874, "y": -52.947683842886036, "size": 1, "color": "#e36d0" } }, { "key": "5229", "attributes": { "cluster": 1, "x": 88.67507866692205, "y": -70.2681919185748, "size": 2, "color": "#762e2e" } }, { "key": "5230", "attributes": { "cluster": 1, "x": 34.675078666921934, "y": -0.9861596158197585, "size": 1, "color": "#762e2e" } }, { "key": "5231", "attributes": { "cluster": 1, "x": 30.675078666921948, "y": -4.450261230957512, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5232", "attributes": { "cluster": 1, "x": 92.67507866692203, "y": -66.80409030343705, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5233", "attributes": { "cluster": 1, "x": 53.675078666921976, "y": 7.6740944220246305, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5234", "attributes": { "cluster": 0, "x": -20.61794484645874, "y": -18.306667691508522, "size": 1, "color": "#e36d0" } }, { "key": "5235", "attributes": { "cluster": 1, "x": 69.675078666922, "y": -78.92844595641918, "size": 2, "color": "#762e2e" } }, { "key": "5236", "attributes": { "cluster": 0, "x": -102.61794484645876, "y": -18.30666769150851, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5237", "attributes": { "cluster": 0, "x": -20.617944846458727, "y": -52.94768384288605, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5238", "attributes": { "cluster": 0, "x": -31.61794484645873, "y": -2.7182104233886264, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5239", "attributes": { "cluster": 1, "x": 69.675078666922, "y": 7.674094422024638, "size": 2, "color": "#762e2e" } }, { "key": "5240", "attributes": { "cluster": 0, "x": -91.61794484645876, "y": -68.53614111100593, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5241", "attributes": { "cluster": 2, "x": 32.078043817233514, "y": 100.62112865884684, "size": 1, "color": "#4b94db" } }, { "key": "5242", "attributes": { "cluster": 2, "x": -31.921956182766497, "y": 41.73140120150502, "size": 2, "color": "#4b94db" } }, { "key": "5243", "attributes": { "cluster": 1, "x": 53.675078666921976, "y": -78.9284459564192, "size": 1, "color": "#762e2e" } }, { "key": "5244", "attributes": { "cluster": 2, "x": 32.07804381723354, "y": 41.73140120150502, "size": 1, "color": "#4b94db" } }, { "key": "5245", "attributes": { "cluster": 2, "x": -31.921956182766525, "y": 100.62112865884684, "size": 0, "color": "#4b94db" } }, { "key": "5246", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -35.627175767197286, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5247", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -33.89512495962841, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5248", "attributes": { "cluster": 1, "x": 18.67507866692199, "y": -35.62717576719727, "size": 1, "color": "#762e2e" } }, { "key": "5249", "attributes": { "cluster": 1, "x": 17.67507866692199, "y": -37.35922657476615, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5250", "attributes": { "cluster": 1, "x": 23.675078666921983, "y": -58.14383626559268, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5251", "attributes": { "cluster": 0, "x": -31.61794484645869, "y": -68.53614111100593, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5252", "attributes": { "cluster": 2, "x": 4.078043817233513, "y": 27.87499474095403, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5253", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -13.11051526880188, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5254", "attributes": { "cluster": 2, "x": -3.921956182766494, "y": 114.47753511939783, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5255", "attributes": { "cluster": 2, "x": -3.9219561827664893, "y": 27.874994740954016, "size": 2, "color": "#4b94db" } }, { "key": "5256", "attributes": { "cluster": 1, "x": 23.675078666921983, "y": -13.110515268801873, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5257", "attributes": { "cluster": 0, "x": -91.61794484645878, "y": -2.7182104233886264, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5258", "attributes": { "cluster": 2, "x": 4.078043817233508, "y": 114.47753511939786, "size": 2, "color": "#4b94db" } }, { "key": "5259", "attributes": { "cluster": 2, "x": -12.921956182766502, "y": 29.60704554852289, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5260", "attributes": { "cluster": 2, "x": 13.07804381723352, "y": 112.74548431182897, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "5261", "attributes": { "cluster": 0, "x": -40.61794484645867, "y": -73.73229353371254, "size": 2, "color": "#e36d0" } }, { "key": "5262", "attributes": { "cluster": 2, "x": -12.921956182766529, "y": 112.74548431182896, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5263", "attributes": { "cluster": 0, "x": -82.61794484645881, "y": 2.477941999317977, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5264", "attributes": { "cluster": 2, "x": 13.078043817233546, "y": 29.607045548522898, "size": 2, "color": "#4b94db" } }, { "key": "5265", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -58.14383626559268, "size": 1, "color": "#762e2e" } }, { "key": "5266", "attributes": { "cluster": 0, "x": -82.61794484645873, "y": -73.73229353371258, "size": 1, "color": "#e36d0" } }, { "key": "5267", "attributes": { "cluster": 0, "x": -40.61794484645875, "y": 2.47794199931802, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5268", "attributes": { "cluster": 2, "x": 43.07804381723351, "y": 64.24806169990042, "size": 1, "color": "#4b94db" } }, { "key": "5269", "attributes": { "cluster": 2, "x": 43.07804381723351, "y": 78.10446816045143, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "5270", "attributes": { "cluster": 2, "x": -42.92195618276649, "y": 78.10446816045145, "size": 1, "color": "#4b94db" } }, { "key": "5271", "attributes": { "cluster": 2, "x": -42.92195618276649, "y": 64.24806169990043, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5272", "attributes": { "cluster": 0, "x": -96.61794484645876, "y": -63.339988688299314, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5273", "attributes": { "cluster": 0, "x": -26.617944846458734, "y": -7.914362846095244, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5274", "attributes": { "cluster": 1, "x": 76.675078666922, "y": 5.942043614455763, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5275", "attributes": { "cluster": 1, "x": 46.675078666921976, "y": -77.19639514885031, "size": 1, "color": "#762e2e" } }, { "key": "5276", "attributes": { "cluster": 1, "x": 76.67507866692205, "y": -77.19639514885031, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5277", "attributes": { "cluster": 0, "x": -96.61794484645878, "y": -7.914362846095244, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5278", "attributes": { "cluster": 2, "x": 22.078043817233574, "y": 34.80319797122955, "size": 1, "color": "#4b94db" } }, { "key": "5279", "attributes": { "cluster": 1, "x": 46.67507866692194, "y": 5.942043614455756, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5280", "attributes": { "cluster": 0, "x": -26.617944846458705, "y": -63.339988688299314, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5281", "attributes": { "cluster": 2, "x": -21.921956182766554, "y": 107.54933188912231, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5282", "attributes": { "cluster": 1, "x": 22.675078666921983, "y": -56.411785458023786, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5283", "attributes": { "cluster": 2, "x": -21.921956182766493, "y": 34.8031979712295, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5284", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -14.842566076370776, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5285", "attributes": { "cluster": 1, "x": 22.675078666921983, "y": -14.842566076370748, "size": 2, "color": "#762e2e" } }, { "key": "5286", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -56.411785458023814, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5287", "attributes": { "cluster": 0, "x": -41.61794484645874, "y": 4.209992806886902, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5288", "attributes": { "cluster": 2, "x": 22.078043817233514, "y": 107.54933188912236, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5289", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -25.234870921784022, "size": 2, "color": "#762e2e" } }, { "key": "5290", "attributes": { "cluster": 2, "x": -23.921956182766554, "y": 107.54933188912233, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5291", "attributes": { "cluster": 0, "x": -81.61794484645881, "y": 4.209992806886859, "size": 2, "color": "#e36d0" } }, { "key": "5292", "attributes": { "cluster": 2, "x": -23.921956182766493, "y": 34.80319797122951, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5293", "attributes": { "cluster": 1, "x": 18.67507866692199, "y": -46.019480612610536, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5294", "attributes": { "cluster": 2, "x": 24.078043817233574, "y": 34.80319797122954, "size": 1, "color": "#4b94db" } }, { "key": "5295", "attributes": { "cluster": 0, "x": -81.61794484645874, "y": -75.46434434128146, "size": 2, "color": "#e36d0" } }, { "key": "5296", "attributes": { "cluster": 2, "x": 24.078043817233514, "y": 107.54933188912236, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5297", "attributes": { "cluster": 0, "x": -41.61794484645866, "y": -75.46434434128142, "size": 1, "color": "#e36d0" } }, { "key": "5298", "attributes": { "cluster": 2, "x": -5.921956182766486, "y": 114.47753511939783, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5299", "attributes": { "cluster": 0, "x": -35.61794484645868, "y": -72.00024272614367, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5300", "attributes": { "cluster": 0, "x": -35.61794484645874, "y": 0.7458911917491449, "size": 2, "color": "#e36d0" } }, { "key": "5301", "attributes": { "cluster": 0, "x": -87.61794484645881, "y": 0.7458911917491093, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5302", "attributes": { "cluster": 2, "x": 6.078043817233505, "y": 27.87499474095403, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5303", "attributes": { "cluster": 2, "x": 6.078043817233516, "y": 114.47753511939786, "size": 2, "color": "#4b94db" } }, { "key": "5304", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -46.01948061261055, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5305", "attributes": { "cluster": 2, "x": -5.921956182766497, "y": 27.874994740954016, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "5306", "attributes": { "cluster": 2, "x": 42.07804381723351, "y": 83.30062058315806, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5307", "attributes": { "cluster": 1, "x": 18.67507866692199, "y": -25.234870921784008, "size": 2, "color": "#762e2e" } }, { "key": "5308", "attributes": { "cluster": 1, "x": 24.675078666921983, "y": -59.87588707316156, "size": 1, "color": "#762e2e" } }, { "key": "5309", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -11.378464461233001, "size": 2, "color": "#762e2e" } }, { "key": "5310", "attributes": { "cluster": 1, "x": 24.67507866692197, "y": -11.378464461232994, "size": 1, "color": "#762e2e" } }, { "key": "5311", "attributes": { "cluster": 2, "x": -41.92195618276649, "y": 59.0519092771938, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5312", "attributes": { "cluster": 1, "x": 98.67507866692202, "y": -59.875887073161564, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5313", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -16.57461688393964, "size": 2, "color": "#762e2e" } }, { "key": "5314", "attributes": { "cluster": 2, "x": 42.07804381723351, "y": 59.051909277193786, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5315", "attributes": { "cluster": 1, "x": 21.675078666921983, "y": -54.67973465045492, "size": 1, "color": "#762e2e" } }, { "key": "5316", "attributes": { "cluster": 0, "x": -87.61794484645874, "y": -72.00024272614371, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5317", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -54.67973465045496, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5318", "attributes": { "cluster": 0, "x": -19.61794484645874, "y": -20.03871849907739, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5319", "attributes": { "cluster": 2, "x": -41.92195618276649, "y": 83.30062058315808, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5320", "attributes": { "cluster": 1, "x": 21.67507866692199, "y": -16.5746168839396, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5321", "attributes": { "cluster": 0, "x": -103.61794484645874, "y": -51.21563303531717, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5322", "attributes": { "cluster": 0, "x": -19.617944846458727, "y": -51.215633035317175, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5323", "attributes": { "cluster": 0, "x": -103.61794484645876, "y": -20.038718499077383, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5324", "attributes": { "cluster": 1, "x": 17.67507866692199, "y": -30.43102334449064, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5325", "attributes": { "cluster": 2, "x": 18.078043817233567, "y": 31.339096356091787, "size": 1, "color": "#4b94db" } }, { "key": "5326", "attributes": { "cluster": 0, "x": -105.61794484645874, "y": -44.287429805041654, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5327", "attributes": { "cluster": 2, "x": -17.921956182766547, "y": 111.01343350426008, "size": 1, "color": "#4b94db" } }, { "key": "5328", "attributes": { "cluster": 1, "x": 17.67507866692199, "y": -40.823328189903904, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5329", "attributes": { "cluster": 0, "x": -17.61794484645874, "y": -26.9669217293529, "size": 2, "color": "#e36d0" } }, { "key": "5330", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -40.82332818990392, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5331", "attributes": { "cluster": 2, "x": -17.92195618276649, "y": 31.339096356091765, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5332", "attributes": { "cluster": 0, "x": -105.61794484645874, "y": -26.966921729352883, "size": 1, "color": "#e36d0" } }, { "key": "5333", "attributes": { "cluster": 0, "x": -17.61794484645874, "y": -44.287429805041675, "size": 1, "color": "#e36d0" } }, { "key": "5334", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -30.431023344490658, "size": 3, "color": "#762e2e" } }, { "key": "5335", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": 7.674094422024623, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5336", "attributes": { "cluster": 2, "x": 18.07804381723351, "y": 111.01343350426009, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5337", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -9.646413653664123, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5338", "attributes": { "cluster": 0, "x": -49.61794484645872, "y": -78.92844595641918, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5339", "attributes": { "cluster": 0, "x": -49.61794484645873, "y": 7.674094422024638, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5340", "attributes": { "cluster": 2, "x": -30.921956182766497, "y": 39.999350393936155, "size": 1, "color": "#4b94db" } }, { "key": "5341", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -78.9284459564192, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5342", "attributes": { "cluster": 1, "x": 25.675078666921983, "y": -61.60793788073043, "size": 1, "color": "#762e2e" } }, { "key": "5343", "attributes": { "cluster": 2, "x": 31.078043817233517, "y": 102.35317946641571, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "5344", "attributes": { "cluster": 0, "x": -44.617944846458734, "y": 5.94204361445577, "size": 2, "color": "#e36d0" } }, { "key": "5345", "attributes": { "cluster": 0, "x": -78.61794484645876, "y": -77.19639514885033, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5346", "attributes": { "cluster": 1, "x": 97.67507866692202, "y": -61.60793788073043, "size": 3, "color": "#762e2e" } }, { "key": "5347", "attributes": { "cluster": 0, "x": -44.617944846458684, "y": -77.1963951488503, "size": 1, "color": "#e36d0" } }, { "key": "5348", "attributes": { "cluster": 1, "x": 25.67507866692197, "y": -9.646413653664126, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5349", "attributes": { "cluster": 1, "x": 71.675078666922, "y": -78.9284459564192, "size": 1, "color": "#762e2e" } }, { "key": "5350", "attributes": { "cluster": 0, "x": -78.6179448464588, "y": 5.942043614455741, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5351", "attributes": { "cluster": 0, "x": -95.61794484645876, "y": -65.0720394958682, "size": 1, "color": "#e36d0" } }, { "key": "5352", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": 7.674094422024638, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5353", "attributes": { "cluster": 2, "x": 27.07804381723352, "y": 105.81728108155347, "size": 2, "color": "#4b94db" } }, { "key": "5354", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": -78.9284459564192, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5355", "attributes": { "cluster": 2, "x": -26.9219561827665, "y": 36.53524877879839, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5356", "attributes": { "cluster": 0, "x": -27.617944846458734, "y": -6.182312038526366, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5357", "attributes": { "cluster": 1, "x": 71.675078666922, "y": 7.674094422024638, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5358", "attributes": { "cluster": 1, "x": 20.67507866692199, "y": -52.947683842886036, "size": 1, "color": "#762e2e" } }, { "key": "5359", "attributes": { "cluster": 2, "x": 27.078043817233567, "y": 36.53524877879841, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5360", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -18.306667691508522, "size": 3, "color": "#762e2e" } }, { "key": "5361", "attributes": { "cluster": 0, "x": -95.61794484645878, "y": -6.182312038526376, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5362", "attributes": { "cluster": 2, "x": -26.921956182766547, "y": 105.81728108155346, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5363", "attributes": { "cluster": 1, "x": 20.675078666921976, "y": -18.30666769150851, "size": 1, "color": "#762e2e" } }, { "key": "5364", "attributes": { "cluster": 0, "x": -27.617944846458705, "y": -65.07203949586818, "size": 2, "color": "#e36d0" } }, { "key": "5365", "attributes": { "cluster": 0, "x": -60.617944846458734, "y": 9.406145229593527, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5366", "attributes": { "cluster": 1, "x": 102.675078666922, "y": -52.94768384288605, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5367", "attributes": { "cluster": 1, "x": 91.675078666922, "y": -2.7182104233886264, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5368", "attributes": { "cluster": 2, "x": -30.921956182766532, "y": 102.3531794664157, "size": 2, "color": "#4b94db" } }, { "key": "5369", "attributes": { "cluster": 1, "x": 31.67507866692198, "y": -68.53614111100593, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5370", "attributes": { "cluster": 1, "x": 91.67507866692205, "y": -68.53614111100593, "size": 1, "color": "#762e2e" } }, { "key": "5371", "attributes": { "cluster": 1, "x": 31.67507866692194, "y": -2.7182104233886264, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5372", "attributes": { "cluster": 2, "x": 31.078043817233553, "y": 39.99935039393617, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5373", "attributes": { "cluster": 2, "x": -7.921956182766501, "y": 114.47753511939784, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5374", "attributes": { "cluster": 0, "x": -62.61794484645875, "y": -80.66049676398808, "size": 1, "color": "#e36d0" } }, { "key": "5375", "attributes": { "cluster": 1, "x": 82.67507866692206, "y": -73.73229353371254, "size": 1, "color": "#762e2e" } }, { "key": "5376", "attributes": { "cluster": 0, "x": -60.61794484645875, "y": -80.66049676398808, "size": 2, "color": "#e36d0" } }, { "key": "5377", "attributes": { "cluster": 0, "x": -62.617944846458734, "y": 9.40614522959352, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5378", "attributes": { "cluster": 2, "x": 8.07804381723352, "y": 27.874994740954023, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5379", "attributes": { "cluster": 2, "x": 8.07804381723352, "y": 114.47753511939786, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5380", "attributes": { "cluster": 2, "x": -7.921956182766501, "y": 27.874994740954016, "size": 1, "color": "#4b94db" } }, { "key": "5381", "attributes": { "cluster": 2, "x": 43.07804381723351, "y": 71.17626493017592, "size": 1, "color": "#4b94db" } }, { "key": "5382", "attributes": { "cluster": 1, "x": 40.67507866692192, "y": 2.477941999317977, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5383", "attributes": { "cluster": 2, "x": 44.07804381723351, "y": 72.9083157377448, "size": 1, "color": "#4b94db" } }, { "key": "5384", "attributes": { "cluster": 0, "x": -64.61794484645873, "y": -80.66049676398808, "size": 1, "color": "#e36d0" } }, { "key": "5385", "attributes": { "cluster": 2, "x": -42.92195618276649, "y": 71.17626493017595, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5386", "attributes": { "cluster": 2, "x": -43.92195618276649, "y": 69.44421412260706, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5387", "attributes": { "cluster": 1, "x": 40.675078666922, "y": -73.73229353371258, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5388", "attributes": { "cluster": 2, "x": -37.9219561827665, "y": 48.65960443178054, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5389", "attributes": { "cluster": 0, "x": -58.61794484645875, "y": 9.406145229593513, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5390", "attributes": { "cluster": 0, "x": -64.61794484645876, "y": 9.406145229593506, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5391", "attributes": { "cluster": 2, "x": 38.078043817233514, "y": 93.69292542857133, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5392", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": 2.47794199931802, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5393", "attributes": { "cluster": 1, "x": 26.675078666921983, "y": -63.339988688299314, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5394", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -7.914362846095244, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5395", "attributes": { "cluster": 1, "x": 26.675078666921955, "y": -7.914362846095244, "size": 2, "color": "#762e2e" } }, { "key": "5396", "attributes": { "cluster": 0, "x": -58.61794484645873, "y": -80.66049676398806, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5397", "attributes": { "cluster": 1, "x": 96.67507866692202, "y": -63.339988688299314, "size": 1, "color": "#762e2e" } }, { "key": "5398", "attributes": { "cluster": 0, "x": -17.61794484645874, "y": -37.35922657476617, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5399", "attributes": { "cluster": 1, "x": 81.67507866692199, "y": 4.209992806886902, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5400", "attributes": { "cluster": 0, "x": -105.61794484645874, "y": -33.89512495962839, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5401", "attributes": { "cluster": 0, "x": -104.61794484645874, "y": -49.483582227748286, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5402", "attributes": { "cluster": 0, "x": -18.61794484645874, "y": -21.770769306646272, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5403", "attributes": { "cluster": 2, "x": -37.9219561827665, "y": 93.69292542857134, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5404", "attributes": { "cluster": 1, "x": 41.67507866692191, "y": 4.209992806886859, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "5405", "attributes": { "cluster": 1, "x": 41.67507866692199, "y": -75.46434434128146, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5406", "attributes": { "cluster": 1, "x": 81.67507866692208, "y": -75.46434434128142, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5407", "attributes": { "cluster": 0, "x": -104.61794484645874, "y": -21.77076930664625, "size": 1, "color": "#e36d0" } }, { "key": "5408", "attributes": { "cluster": 0, "x": -18.61794484645874, "y": -49.48358222774831, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5409", "attributes": { "cluster": 2, "x": 38.078043817233514, "y": 48.65960443178052, "size": 1, "color": "#4b94db" } }, { "key": "5410", "attributes": { "cluster": 2, "x": 15.07804381723352, "y": 112.74548431182897, "size": 0, "color": "#4b94db" } }, { "key": "5411", "attributes": { "cluster": 0, "x": -32.61794484645873, "y": -0.9861596158197443, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5412", "attributes": { "cluster": 0, "x": -90.61794484645876, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5413", "attributes": { "cluster": 0, "x": -32.617944846458684, "y": -70.26819191857479, "size": 1, "color": "#e36d0" } }, { "key": "5414", "attributes": { "cluster": 0, "x": -90.6179448464588, "y": -0.9861596158197656, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5415", "attributes": { "cluster": 2, "x": -14.921956182766502, "y": 29.60704554852289, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5416", "attributes": { "cluster": 2, "x": 15.078043817233558, "y": 29.607045548522898, "size": 1, "color": "#4b94db" } }, { "key": "5417", "attributes": { "cluster": 0, "x": -106.61794484645874, "y": -32.163074152059515, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5418", "attributes": { "cluster": 1, "x": 87.67507866692205, "y": -72.00024272614367, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5419", "attributes": { "cluster": 1, "x": 87.67507866692199, "y": 0.7458911917491449, "size": 1, "color": "#762e2e" } }, { "key": "5420", "attributes": { "cluster": 0, "x": -106.61794484645874, "y": -39.09127738233502, "size": 1, "color": "#e36d0" } }, { "key": "5421", "attributes": { "cluster": 0, "x": -16.61794484645874, "y": -39.09127738233504, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5422", "attributes": { "cluster": 2, "x": -14.921956182766541, "y": 112.74548431182896, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5423", "attributes": { "cluster": 2, "x": -38.9219561827665, "y": 50.39165523934943, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5424", "attributes": { "cluster": 0, "x": -16.61794484645874, "y": -32.16307415205954, "size": 1, "color": "#e36d0" } }, { "key": "5425", "attributes": { "cluster": 1, "x": 35.67507866692193, "y": 0.7458911917491093, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5426", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": 9.406145229593506, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5427", "attributes": { "cluster": 1, "x": 35.67507866692199, "y": -72.00024272614371, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5428", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -20.03871849907739, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5429", "attributes": { "cluster": 1, "x": 19.67507866692199, "y": -51.21563303531717, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5430", "attributes": { "cluster": 2, "x": 39.078043817233514, "y": 91.96087462100243, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "5431", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": -80.66049676398806, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5432", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": 9.406145229593513, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5433", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -80.66049676398808, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5434", "attributes": { "cluster": 2, "x": -38.9219561827665, "y": 91.96087462100246, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5435", "attributes": { "cluster": 1, "x": 103.675078666922, "y": -51.215633035317175, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5436", "attributes": { "cluster": 2, "x": 39.078043817233514, "y": 50.391655239349404, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5437", "attributes": { "cluster": 2, "x": 43.07804381723351, "y": 81.56856977558918, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5438", "attributes": { "cluster": 1, "x": 19.675078666921976, "y": -20.038718499077383, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5439", "attributes": { "cluster": 1, "x": 17.67507866692199, "y": -44.287429805041654, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5440", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -26.9669217293529, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5441", "attributes": { "cluster": 2, "x": -42.92195618276649, "y": 60.783960084762676, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5442", "attributes": { "cluster": 0, "x": -28.617944846458734, "y": -4.450261230957491, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5443", "attributes": { "cluster": 2, "x": 43.07804381723351, "y": 60.78396008476266, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "5444", "attributes": { "cluster": 2, "x": -42.92195618276649, "y": 81.5685697755892, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5445", "attributes": { "cluster": 0, "x": -94.61794484645876, "y": -66.80409030343706, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5446", "attributes": { "cluster": 0, "x": -28.6179448464587, "y": -66.80409030343706, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5447", "attributes": { "cluster": 2, "x": -36.9219561827665, "y": 46.927553624211654, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5448", "attributes": { "cluster": 2, "x": 37.078043817233514, "y": 95.42497623614021, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5449", "attributes": { "cluster": 0, "x": -94.61794484645878, "y": -4.450261230957494, "size": 1, "color": "#e36d0" } }, { "key": "5450", "attributes": { "cluster": 2, "x": -36.921956182766515, "y": 95.42497623614022, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5451", "attributes": { "cluster": 2, "x": 37.07804381723353, "y": 46.92755362421165, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5452", "attributes": { "cluster": 2, "x": 40.078043817233514, "y": 90.22882381343356, "size": 1, "color": "#4b94db" } }, { "key": "5453", "attributes": { "cluster": 1, "x": 17.67507866692199, "y": -26.966921729352883, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "5454", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -44.287429805041675, "size": 1, "color": "#762e2e" } }, { "key": "5455", "attributes": { "cluster": 2, "x": -39.9219561827665, "y": 52.123706046918294, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5456", "attributes": { "cluster": 1, "x": 49.67507866692197, "y": 7.674094422024623, "size": 1, "color": "#762e2e" } }, { "key": "5457", "attributes": { "cluster": 0, "x": -47.6179448464587, "y": -78.92844595641918, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5458", "attributes": { "cluster": 0, "x": -75.61794484645878, "y": 7.6740944220246305, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "5459", "attributes": { "cluster": 2, "x": 40.07804381723351, "y": 52.12370604691826, "size": 1, "color": "#4b94db" } }, { "key": "5460", "attributes": { "cluster": 2, "x": -39.92195618276649, "y": 90.2288238134336, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5461", "attributes": { "cluster": 2, "x": -43.92195618276649, "y": 76.37241735288258, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5462", "attributes": { "cluster": 1, "x": 73.67507866692202, "y": -78.92844595641918, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5463", "attributes": { "cluster": 2, "x": -43.92195618276649, "y": 65.98011250746931, "size": 2, "color": "#4b94db" } }, { "key": "5464", "attributes": { "cluster": 2, "x": 44.07804381723351, "y": 65.98011250746929, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5465", "attributes": { "cluster": 1, "x": 73.675078666922, "y": 7.674094422024638, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5466", "attributes": { "cluster": 1, "x": 49.675078666921976, "y": -78.9284459564192, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5467", "attributes": { "cluster": 0, "x": -75.61794484645876, "y": -78.9284459564192, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5468", "attributes": { "cluster": 2, "x": 44.07804381723351, "y": 76.37241735288255, "size": 1, "color": "#4b94db" } }, { "key": "5469", "attributes": { "cluster": 0, "x": -47.61794484645873, "y": 7.674094422024638, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5470", "attributes": { "cluster": 1, "x": 78.67507866692199, "y": 5.94204361445577, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5471", "attributes": { "cluster": 2, "x": 36.078043817233514, "y": 97.15702704370909, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5472", "attributes": { "cluster": 1, "x": 44.67507866692198, "y": -77.19639514885033, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5473", "attributes": { "cluster": 1, "x": 78.67507866692205, "y": -77.1963951488503, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5474", "attributes": { "cluster": 2, "x": -35.9219561827665, "y": 45.19550281664277, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5475", "attributes": { "cluster": 2, "x": 36.07804381723353, "y": 45.19550281664278, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5476", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": 9.406145229593506, "size": 1, "color": "#e36d0" } }, { "key": "5477", "attributes": { "cluster": 1, "x": 44.675078666921934, "y": 5.942043614455741, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5478", "attributes": { "cluster": 1, "x": 27.675078666921983, "y": -65.0720394958682, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5479", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -6.182312038526366, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5480", "attributes": { "cluster": 0, "x": -54.61794484645874, "y": -80.66049676398806, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5481", "attributes": { "cluster": 2, "x": -35.921956182766515, "y": 97.15702704370909, "size": 1, "color": "#4b94db" } }, { "key": "5482", "attributes": { "cluster": 0, "x": -54.617944846458734, "y": 9.406145229593513, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5483", "attributes": { "cluster": 2, "x": 10.078043817233521, "y": 27.874994740954016, "size": 1, "color": "#4b94db" } }, { "key": "5484", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": -80.66049676398808, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5485", "attributes": { "cluster": 1, "x": 27.675078666921955, "y": -6.182312038526376, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5486", "attributes": { "cluster": 0, "x": -16.61794484645874, "y": -42.5553789974728, "size": 1, "color": "#e36d0" } }, { "key": "5487", "attributes": { "cluster": 1, "x": 95.67507866692202, "y": -65.07203949586818, "size": 1, "color": "#762e2e" } }, { "key": "5488", "attributes": { "cluster": 2, "x": -9.921956182766504, "y": 114.47753511939786, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5489", "attributes": { "cluster": 2, "x": -9.921956182766502, "y": 27.874994740954016, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5490", "attributes": { "cluster": 0, "x": -16.61794484645874, "y": -28.69897253692178, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5491", "attributes": { "cluster": 1, "x": 62.675078666922, "y": 9.406145229593527, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5492", "attributes": { "cluster": 1, "x": 60.67507866692198, "y": -80.66049676398808, "size": 1, "color": "#762e2e" } }, { "key": "5493", "attributes": { "cluster": 0, "x": -106.61794484645874, "y": -28.69897253692176, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5494", "attributes": { "cluster": 1, "x": 62.67507866692198, "y": -80.66049676398808, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5495", "attributes": { "cluster": 1, "x": 60.675078666922, "y": 9.40614522959352, "size": 1, "color": "#762e2e" } }, { "key": "5496", "attributes": { "cluster": 1, "x": 58.675078666922, "y": -80.66049676398808, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5497", "attributes": { "cluster": 0, "x": -106.61794484645874, "y": -42.55537899747278, "size": 1, "color": "#e36d0" } }, { "key": "5498", "attributes": { "cluster": 2, "x": 10.07804381723352, "y": 114.47753511939786, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5499", "attributes": { "cluster": 2, "x": -40.92195618276649, "y": 53.855756854487176, "size": 1, "color": "#4b94db" } }, { "key": "5500", "attributes": { "cluster": 1, "x": 64.67507866692198, "y": 9.406145229593513, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5501", "attributes": { "cluster": 1, "x": 58.675078666921976, "y": 9.406145229593506, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5502", "attributes": { "cluster": 1, "x": 64.675078666922, "y": -80.66049676398806, "size": 2, "color": "#762e2e" } }, { "key": "5503", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -37.35922657476617, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5504", "attributes": { "cluster": 1, "x": 17.67507866692199, "y": -33.89512495962839, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5505", "attributes": { "cluster": 0, "x": -38.61794484645867, "y": -73.73229353371252, "size": 1, "color": "#e36d0" } }, { "key": "5506", "attributes": { "cluster": 0, "x": -84.61794484645881, "y": 2.47794199931797, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5507", "attributes": { "cluster": 1, "x": 18.67507866692199, "y": -49.483582227748286, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5508", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -21.770769306646272, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5509", "attributes": { "cluster": 0, "x": -105.61794484645874, "y": -47.75153142017941, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5510", "attributes": { "cluster": 0, "x": -17.61794484645874, "y": -23.502820114215147, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5511", "attributes": { "cluster": 0, "x": -38.61794484645875, "y": 2.477941999318034, "size": 2, "color": "#e36d0" } }, { "key": "5512", "attributes": { "cluster": 2, "x": 41.07804381723351, "y": 88.4967730058647, "size": 1, "color": "#4b94db" } }, { "key": "5513", "attributes": { "cluster": 2, "x": -40.92195618276651, "y": 88.4967730058647, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "5514", "attributes": { "cluster": 0, "x": -105.61794484645874, "y": -23.502820114215133, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5515", "attributes": { "cluster": 0, "x": -84.61794484645873, "y": -73.73229353371259, "size": 2, "color": "#e36d0" } }, { "key": "5516", "attributes": { "cluster": 1, "x": 18.67507866692199, "y": -21.77076930664625, "size": 2, "color": "#762e2e" } }, { "key": "5517", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -49.48358222774831, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5518", "attributes": { "cluster": 0, "x": -17.61794484645874, "y": -47.751531420179425, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5519", "attributes": { "cluster": 1, "x": 90.675078666922, "y": -0.9861596158197443, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5520", "attributes": { "cluster": 2, "x": 41.07804381723352, "y": 53.85575685448716, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5521", "attributes": { "cluster": 2, "x": 30.07804381723352, "y": 104.08523027398459, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5522", "attributes": { "cluster": 2, "x": -29.9219561827665, "y": 38.26729958636728, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5523", "attributes": { "cluster": 0, "x": -36.61794484645874, "y": 2.477941999318034, "size": 2, "color": "#e36d0" } }, { "key": "5524", "attributes": { "cluster": 0, "x": -86.61794484645874, "y": -73.73229353371259, "size": 2, "color": "#e36d0" } }, { "key": "5525", "attributes": { "cluster": 2, "x": 30.07804381723356, "y": 38.26729958636728, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5526", "attributes": { "cluster": 0, "x": -36.61794484645867, "y": -73.73229353371255, "size": 1, "color": "#e36d0" } }, { "key": "5527", "attributes": { "cluster": 2, "x": -29.92195618276654, "y": 104.08523027398459, "size": 1, "color": "#4b94db" } }, { "key": "5528", "attributes": { "cluster": 2, "x": 21.07804381723358, "y": 33.071147163660676, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5529", "attributes": { "cluster": 0, "x": -86.61794484645881, "y": 2.4779419993179914, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5530", "attributes": { "cluster": 0, "x": -80.61794484645873, "y": -77.19639514885033, "size": 2, "color": "#e36d0" } }, { "key": "5531", "attributes": { "cluster": 1, "x": 32.675078666921976, "y": -70.26819191857481, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5532", "attributes": { "cluster": 2, "x": -20.92195618276656, "y": 109.2813826966912, "size": 0, "color": "#4b94db" } }, { "key": "5533", "attributes": { "cluster": 1, "x": 90.67507866692205, "y": -70.26819191857479, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5534", "attributes": { "cluster": 2, "x": -20.921956182766483, "y": 33.07114716366063, "size": 0, "color": "#4b94db" } }, { "key": "5535", "attributes": { "cluster": 2, "x": 21.078043817233503, "y": 109.28138269669122, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5536", "attributes": { "cluster": 0, "x": -42.617944846458755, "y": 5.94204361445577, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5537", "attributes": { "cluster": 1, "x": 32.675078666921934, "y": -0.9861596158197656, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5538", "attributes": { "cluster": 0, "x": -80.61794484645881, "y": 5.942043614455734, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5539", "attributes": { "cluster": 1, "x": 16.67507866692199, "y": -32.163074152059515, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5540", "attributes": { "cluster": 0, "x": -42.61794484645867, "y": -77.19639514885029, "size": 2, "color": "#e36d0" } }, { "key": "5541", "attributes": { "cluster": 2, "x": -34.9219561827665, "y": 43.4634520090739, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5542", "attributes": { "cluster": 1, "x": 16.67507866692199, "y": -39.09127738233502, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5543", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -39.09127738233504, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5544", "attributes": { "cluster": 2, "x": 35.078043817233514, "y": 98.88907785127796, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5545", "attributes": { "cluster": 0, "x": -29.617944846458734, "y": -2.7182104233886264, "size": 1, "color": "#e36d0" } }, { "key": "5546", "attributes": { "cluster": 0, "x": -93.61794484645876, "y": -68.53614111100593, "size": 2, "color": "#e36d0" } }, { "key": "5547", "attributes": { "cluster": 2, "x": -34.92195618276653, "y": 98.88907785127796, "size": 1, "color": "#4b94db" } }, { "key": "5548", "attributes": { "cluster": 0, "x": -29.61794484645869, "y": -68.53614111100592, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5549", "attributes": { "cluster": 2, "x": 35.07804381723354, "y": 43.4634520090739, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5550", "attributes": { "cluster": 0, "x": -93.61794484645878, "y": -2.7182104233886335, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5551", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -80.66049676398808, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5552", "attributes": { "cluster": 2, "x": 20.07804381723351, "y": 111.01343350426012, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5553", "attributes": { "cluster": 2, "x": -19.921956182766568, "y": 111.01343350426006, "size": 2, "color": "#4b94db" } }, { "key": "5554", "attributes": { "cluster": 2, "x": -19.92195618276649, "y": 31.33909635609175, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5555", "attributes": { "cluster": 2, "x": 20.07804381723359, "y": 31.339096356091794, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5556", "attributes": { "cluster": 2, "x": 26.078043817233574, "y": 34.803197971229544, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5557", "attributes": { "cluster": 2, "x": 26.078043817233514, "y": 107.54933188912236, "size": 2, "color": "#4b94db" } }, { "key": "5558", "attributes": { "cluster": 2, "x": -25.921956182766554, "y": 107.54933188912233, "size": 1, "color": "#4b94db" } }, { "key": "5559", "attributes": { "cluster": 0, "x": -52.617944846458734, "y": -80.66049676398806, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5560", "attributes": { "cluster": 0, "x": -52.61794484645873, "y": 9.406145229593513, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5561", "attributes": { "cluster": 2, "x": -25.921956182766493, "y": 34.80319797122951, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5562", "attributes": { "cluster": 0, "x": -70.61794484645874, "y": 9.406145229593506, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5563", "attributes": { "cluster": 0, "x": -101.61794484645876, "y": -58.14383626559266, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5564", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -32.16307415205954, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5565", "attributes": { "cluster": 0, "x": -21.617944846458734, "y": -13.110515268801898, "size": 2, "color": "#e36d0" } }, { "key": "5566", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": 9.406145229593506, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5567", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": -80.66049676398806, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "5568", "attributes": { "cluster": 0, "x": -101.61794484645876, "y": -13.11051526880187, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5569", "attributes": { "cluster": 2, "x": 42.07804381723351, "y": 86.76472219829581, "size": 1, "color": "#4b94db" } }, { "key": "5570", "attributes": { "cluster": 2, "x": -41.92195618276649, "y": 55.58780766205604, "size": 0, "color": "#4b94db" } }, { "key": "5571", "attributes": { "cluster": 2, "x": 42.07804381723352, "y": 55.587807662056036, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5572", "attributes": { "cluster": 0, "x": -21.617944846458734, "y": -58.14383626559269, "size": 3, "color": "#e36d0" } }, { "key": "5573", "attributes": { "cluster": 2, "x": -41.92195618276651, "y": 86.76472219829583, "size": 1, "color": "#4b94db" } }, { "key": "5574", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": 9.406145229593513, "size": 1, "color": "#762e2e" } }, { "key": "5575", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": -80.66049676398808, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5576", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -4.450261230957491, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5577", "attributes": { "cluster": 2, "x": -43.92195618276649, "y": 62.51601089233155, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5578", "attributes": { "cluster": 1, "x": 28.675078666921983, "y": -66.80409030343706, "size": 1, "color": "#762e2e" } }, { "key": "5579", "attributes": { "cluster": 0, "x": -22.617944846458734, "y": -11.378464461233001, "size": 2, "color": "#e36d0" } }, { "key": "5580", "attributes": { "cluster": 0, "x": -100.61794484645876, "y": -59.87588707316156, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5581", "attributes": { "cluster": 2, "x": 44.07804381723351, "y": 79.83651896802031, "size": 1, "color": "#4b94db" } }, { "key": "5582", "attributes": { "cluster": 0, "x": -89.61794484645874, "y": -72.00024272614371, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5583", "attributes": { "cluster": 0, "x": -33.61794484645874, "y": 0.7458911917491449, "size": 1, "color": "#e36d0" } }, { "key": "5584", "attributes": { "cluster": 0, "x": -89.61794484645881, "y": 0.7458911917491164, "size": 1, "color": "#e36d0" } }, { "key": "5585", "attributes": { "cluster": 2, "x": -43.92195618276649, "y": 79.83651896802033, "size": 3, "color": "#4b94db" } }, { "key": "5586", "attributes": { "cluster": 0, "x": -100.61794484645876, "y": -11.378464461233005, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5587", "attributes": { "cluster": 2, "x": 44.07804381723351, "y": 62.516010892331536, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5588", "attributes": { "cluster": 1, "x": 94.67507866692203, "y": -66.80409030343706, "size": 2, "color": "#762e2e" } }, { "key": "5589", "attributes": { "cluster": 2, "x": -11.921956182766513, "y": 114.47753511939783, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5590", "attributes": { "cluster": 2, "x": 12.07804381723353, "y": 27.87499474095403, "size": 1, "color": "#4b94db" } }, { "key": "5591", "attributes": { "cluster": 1, "x": 28.675078666921948, "y": -4.450261230957494, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5592", "attributes": { "cluster": 0, "x": -33.61794484645868, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5593", "attributes": { "cluster": 1, "x": 75.67507866692203, "y": -78.92844595641918, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5594", "attributes": { "cluster": 2, "x": 12.07804381723352, "y": 114.47753511939786, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5595", "attributes": { "cluster": 2, "x": -11.921956182766502, "y": 27.874994740954016, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5596", "attributes": { "cluster": 1, "x": 47.67507866692195, "y": 7.6740944220246305, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5597", "attributes": { "cluster": 0, "x": -22.61794484645872, "y": -59.87588707316155, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5598", "attributes": { "cluster": 2, "x": 17.078043817233517, "y": 112.74548431182899, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5599", "attributes": { "cluster": 0, "x": -20.617944846458734, "y": -14.842566076370765, "size": 1, "color": "#e36d0" } }, { "key": "5600", "attributes": { "cluster": 0, "x": -102.61794484645876, "y": -56.41178545802379, "size": 1, "color": "#e36d0" } }, { "key": "5601", "attributes": { "cluster": 1, "x": 47.675078666921976, "y": -78.9284459564192, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5602", "attributes": { "cluster": 2, "x": -16.921956182766497, "y": 29.607045548522883, "size": 1, "color": "#4b94db" } }, { "key": "5603", "attributes": { "cluster": 0, "x": -20.61794484645874, "y": -56.41178545802383, "size": 1, "color": "#e36d0" } }, { "key": "5604", "attributes": { "cluster": 2, "x": 17.078043817233567, "y": 29.607045548522912, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5605", "attributes": { "cluster": 2, "x": -16.921956182766547, "y": 112.74548431182896, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5606", "attributes": { "cluster": 0, "x": -102.61794484645874, "y": -14.84256607637073, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5607", "attributes": { "cluster": 1, "x": 75.675078666922, "y": 7.674094422024638, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5608", "attributes": { "cluster": 1, "x": 54.67507866692199, "y": 9.406145229593506, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5609", "attributes": { "cluster": 2, "x": -33.9219561827665, "y": 41.73140120150502, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "5610", "attributes": { "cluster": 0, "x": -99.61794484645876, "y": -61.60793788073043, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5611", "attributes": { "cluster": 0, "x": -23.617944846458734, "y": -9.646413653664123, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5612", "attributes": { "cluster": 0, "x": -99.61794484645876, "y": -9.646413653664116, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5613", "attributes": { "cluster": 0, "x": -23.61794484645872, "y": -61.60793788073045, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5614", "attributes": { "cluster": 2, "x": 34.078043817233514, "y": 100.62112865884684, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5615", "attributes": { "cluster": 0, "x": -19.617944846458734, "y": -16.574616883939647, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5616", "attributes": { "cluster": 0, "x": -103.61794484645876, "y": -54.67973465045491, "size": 1, "color": "#e36d0" } }, { "key": "5617", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -80.66049676398806, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5618", "attributes": { "cluster": 1, "x": 68.675078666922, "y": 9.406145229593513, "size": 2, "color": "#762e2e" } }, { "key": "5619", "attributes": { "cluster": 2, "x": -33.92195618276653, "y": 100.62112865884683, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5620", "attributes": { "cluster": 1, "x": 54.67507866692198, "y": -80.66049676398808, "size": 3.6666666666666665, "color": "#762e2e" } }, { "key": "5621", "attributes": { "cluster": 0, "x": -19.61794484645874, "y": -54.67973465045493, "size": 2, "color": "#e36d0" } }, { "key": "5622", "attributes": { "cluster": 2, "x": 34.07804381723354, "y": 41.73140120150503, "size": 1, "color": "#4b94db" } }, { "key": "5623", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -42.5553789974728, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5624", "attributes": { "cluster": 2, "x": 1.0780438172335187, "y": 116.20958592696674, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5625", "attributes": { "cluster": 2, "x": -0.9219561827664999, "y": 26.142943933385126, "size": 1, "color": "#4b94db" } }, { "key": "5626", "attributes": { "cluster": 0, "x": -103.61794484645874, "y": -16.574616883939623, "size": 1, "color": "#e36d0" } }, { "key": "5627", "attributes": { "cluster": 2, "x": 1.0780438172335045, "y": 26.142943933385133, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5628", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -28.69897253692178, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5629", "attributes": { "cluster": 0, "x": -106.61794484645874, "y": -35.62717576719727, "size": 1, "color": "#e36d0" } }, { "key": "5630", "attributes": { "cluster": 1, "x": 16.67507866692199, "y": -28.69897253692176, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5631", "attributes": { "cluster": 1, "x": 16.67507866692199, "y": -42.55537899747278, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5632", "attributes": { "cluster": 2, "x": -0.9219561827664859, "y": 116.20958592696672, "size": 0, "color": "#4b94db" } }, { "key": "5633", "attributes": { "cluster": 0, "x": -107.61794484645874, "y": -37.35922657476615, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5634", "attributes": { "cluster": 2, "x": -2.9219561827664817, "y": 26.14294393338514, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5635", "attributes": { "cluster": 0, "x": -16.61794484645874, "y": -35.627175767197286, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5636", "attributes": { "cluster": 0, "x": -15.617944846458741, "y": -33.89512495962841, "size": 0, "color": "#e36d0" } }, { "key": "5637", "attributes": { "cluster": 2, "x": 3.0780438172335005, "y": 116.20958592696672, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5638", "attributes": { "cluster": 2, "x": -2.9219561827665057, "y": 116.20958592696672, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5639", "attributes": { "cluster": 0, "x": -45.61794484645874, "y": 7.674094422024638, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5640", "attributes": { "cluster": 1, "x": 84.67507866692206, "y": -73.73229353371252, "size": 1, "color": "#762e2e" } }, { "key": "5641", "attributes": { "cluster": 0, "x": -77.61794484645881, "y": 7.674094422024623, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5642", "attributes": { "cluster": 1, "x": 38.67507866692192, "y": 2.47794199931797, "size": 2, "color": "#762e2e" } }, { "key": "5643", "attributes": { "cluster": 1, "x": 17.67507866692199, "y": -47.75153142017941, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5644", "attributes": { "cluster": 2, "x": 3.0780438172335245, "y": 26.142943933385148, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5645", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -23.502820114215147, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5646", "attributes": { "cluster": 0, "x": -77.61794484645874, "y": -78.9284459564192, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5647", "attributes": { "cluster": 0, "x": -45.61794484645868, "y": -78.92844595641918, "size": 1, "color": "#e36d0" } }, { "key": "5648", "attributes": { "cluster": 0, "x": -16.61794484645874, "y": -25.234870921784022, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5649", "attributes": { "cluster": 2, "x": 44.07804381723351, "y": 69.44421412260705, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5650", "attributes": { "cluster": 1, "x": 84.67507866692199, "y": 2.477941999318034, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5651", "attributes": { "cluster": 0, "x": -106.61794484645874, "y": -46.019480612610536, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5652", "attributes": { "cluster": 2, "x": -43.92195618276649, "y": 72.90831573774481, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5653", "attributes": { "cluster": 2, "x": -42.92195618276649, "y": 57.319858469624926, "size": 1, "color": "#4b94db" } }, { "key": "5654", "attributes": { "cluster": 2, "x": 43.07804381723351, "y": 85.03267139072695, "size": 1, "color": "#4b94db" } }, { "key": "5655", "attributes": { "cluster": 0, "x": -16.61794484645874, "y": -46.01948061261055, "size": 2, "color": "#e36d0" } }, { "key": "5656", "attributes": { "cluster": 2, "x": -42.92195618276649, "y": 85.03267139072696, "size": 1, "color": "#4b94db" } }, { "key": "5657", "attributes": { "cluster": 2, "x": 43.07804381723351, "y": 57.319858469624904, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5658", "attributes": { "cluster": 0, "x": -106.61794484645874, "y": -25.234870921784008, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5659", "attributes": { "cluster": 1, "x": 17.67507866692199, "y": -23.502820114215133, "size": 3, "color": "#762e2e" } }, { "key": "5660", "attributes": { "cluster": 2, "x": 29.07804381723352, "y": 105.81728108155346, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5661", "attributes": { "cluster": 0, "x": -98.61794484645876, "y": -63.339988688299314, "size": 1, "color": "#e36d0" } }, { "key": "5662", "attributes": { "cluster": 2, "x": -28.9219561827665, "y": 36.5352487787984, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5663", "attributes": { "cluster": 2, "x": 29.078043817233567, "y": 36.53524877879842, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5664", "attributes": { "cluster": 0, "x": -24.617944846458734, "y": -7.914362846095244, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5665", "attributes": { "cluster": 2, "x": -28.921956182766547, "y": 105.81728108155345, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5666", "attributes": { "cluster": 2, "x": -44.92195618276649, "y": 74.6403665453137, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5667", "attributes": { "cluster": 2, "x": -44.92195618276649, "y": 67.71216331503818, "size": 1, "color": "#4b94db" } }, { "key": "5668", "attributes": { "cluster": 0, "x": -98.61794484645878, "y": -7.914362846095258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5669", "attributes": { "cluster": 2, "x": 45.07804381723351, "y": 67.71216331503817, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5670", "attributes": { "cluster": 1, "x": 38.675078666922, "y": -73.73229353371259, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5671", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -47.751531420179425, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5672", "attributes": { "cluster": 0, "x": -24.617944846458705, "y": -63.3399886882993, "size": 1, "color": "#e36d0" } }, { "key": "5673", "attributes": { "cluster": 1, "x": 86.67507866692199, "y": 2.477941999318034, "size": 1, "color": "#762e2e" } }, { "key": "5674", "attributes": { "cluster": 2, "x": 45.07804381723351, "y": 74.64036654531368, "size": 1, "color": "#4b94db" } }, { "key": "5675", "attributes": { "cluster": 1, "x": 36.67507866692199, "y": -73.73229353371259, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5676", "attributes": { "cluster": 2, "x": -4.921956182766491, "y": 116.20958592696672, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5677", "attributes": { "cluster": 0, "x": -50.61794484645873, "y": 9.406145229593513, "size": 1, "color": "#e36d0" } }, { "key": "5678", "attributes": { "cluster": 2, "x": 5.078043817233509, "y": 26.142943933385148, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5679", "attributes": { "cluster": 0, "x": -72.61794484645877, "y": 9.406145229593506, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5680", "attributes": { "cluster": 2, "x": 5.078043817233512, "y": 116.20958592696672, "size": 0, "color": "#4b94db" } }, { "key": "5681", "attributes": { "cluster": 2, "x": -4.921956182766493, "y": 26.14294393338514, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5682", "attributes": { "cluster": 2, "x": 33.078043817233514, "y": 102.35317946641572, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5683", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -80.66049676398808, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5684", "attributes": { "cluster": 2, "x": -32.9219561827665, "y": 39.99935039393614, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5685", "attributes": { "cluster": 0, "x": -50.61794484645871, "y": -80.66049676398806, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5686", "attributes": { "cluster": 2, "x": 33.07804381723355, "y": 39.99935039393615, "size": 0, "color": "#4b94db" } }, { "key": "5687", "attributes": { "cluster": 0, "x": -18.61794484645874, "y": -18.306667691508515, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5688", "attributes": { "cluster": 1, "x": 86.67507866692206, "y": -73.73229353371255, "size": 1, "color": "#762e2e" } }, { "key": "5689", "attributes": { "cluster": 0, "x": -104.61794484645874, "y": -52.94768384288604, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5690", "attributes": { "cluster": 0, "x": -15.617944846458741, "y": -40.82332818990392, "size": 1, "color": "#e36d0" } }, { "key": "5691", "attributes": { "cluster": 2, "x": -32.921956182766536, "y": 102.35317946641572, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5692", "attributes": { "cluster": 0, "x": -15.617944846458741, "y": -30.431023344490658, "size": 2, "color": "#e36d0" } }, { "key": "5693", "attributes": { "cluster": 2, "x": 14.078043817233551, "y": 27.874994740954023, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5694", "attributes": { "cluster": 2, "x": -13.921956182766534, "y": 114.47753511939784, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5695", "attributes": { "cluster": 1, "x": 36.67507866692192, "y": 2.4779419993179914, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5696", "attributes": { "cluster": 2, "x": -13.921956182766502, "y": 27.874994740954016, "size": 2, "color": "#4b94db" } }, { "key": "5697", "attributes": { "cluster": 0, "x": -107.61794484645874, "y": -30.431023344490637, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5698", "attributes": { "cluster": 0, "x": -107.61794484645874, "y": -40.823328189903904, "size": 1, "color": "#e36d0" } }, { "key": "5699", "attributes": { "cluster": 2, "x": 14.07804381723352, "y": 114.47753511939786, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5700", "attributes": { "cluster": 1, "x": 42.675078666922005, "y": -77.19639514885033, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5701", "attributes": { "cluster": 0, "x": -18.617944846458727, "y": -52.94768384288605, "size": 2, "color": "#e36d0" } }, { "key": "5702", "attributes": { "cluster": 1, "x": 80.67507866692198, "y": 5.94204361445577, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5703", "attributes": { "cluster": 0, "x": -104.61794484645876, "y": -18.30666769150851, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5704", "attributes": { "cluster": 2, "x": -6.921956182766488, "y": 116.20958592696672, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "5705", "attributes": { "cluster": 1, "x": 42.67507866692192, "y": 5.942043614455734, "size": 2, "color": "#762e2e" } }, { "key": "5706", "attributes": { "cluster": 2, "x": 7.078043817233507, "y": 26.142943933385148, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5707", "attributes": { "cluster": 0, "x": -92.61794484645876, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5708", "attributes": { "cluster": 1, "x": 80.67507866692206, "y": -77.19639514885029, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5709", "attributes": { "cluster": 2, "x": 7.078043817233518, "y": 116.20958592696672, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "5710", "attributes": { "cluster": 2, "x": -6.9219561827664995, "y": 26.14294393338514, "size": 1, "color": "#4b94db" } }, { "key": "5711", "attributes": { "cluster": 0, "x": -30.61794484645873, "y": -0.9861596158197514, "size": 2, "color": "#e36d0" } }, { "key": "5712", "attributes": { "cluster": 2, "x": 45.07804381723351, "y": 64.24806169990042, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5713", "attributes": { "cluster": 2, "x": 45.07804381723351, "y": 78.10446816045143, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "5714", "attributes": { "cluster": 2, "x": -44.92195618276649, "y": 78.10446816045145, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5715", "attributes": { "cluster": 2, "x": -44.92195618276649, "y": 64.24806169990043, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5716", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": -2.7182104233886264, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5717", "attributes": { "cluster": 2, "x": 23.07804381723358, "y": 33.07114716366068, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5718", "attributes": { "cluster": 0, "x": -97.61794484645876, "y": -65.0720394958682, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5719", "attributes": { "cluster": 2, "x": -22.92195618276656, "y": 109.28138269669118, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5720", "attributes": { "cluster": 2, "x": -43.92195618276649, "y": 59.0519092771938, "size": 1, "color": "#4b94db" } }, { "key": "5721", "attributes": { "cluster": 0, "x": -25.617944846458734, "y": -6.182312038526366, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5722", "attributes": { "cluster": 0, "x": -92.6179448464588, "y": -0.9861596158197514, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5723", "attributes": { "cluster": 2, "x": 44.07804381723351, "y": 83.30062058315806, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5724", "attributes": { "cluster": 2, "x": 23.078043817233503, "y": 109.28138269669125, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5725", "attributes": { "cluster": 2, "x": -43.92195618276649, "y": 83.30062058315808, "size": 1, "color": "#4b94db" } }, { "key": "5726", "attributes": { "cluster": 2, "x": -22.921956182766483, "y": 33.07114716366062, "size": 1, "color": "#4b94db" } }, { "key": "5727", "attributes": { "cluster": 1, "x": 29.675078666921983, "y": -68.53614111100593, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5728", "attributes": { "cluster": 1, "x": 93.67507866692205, "y": -68.53614111100592, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5729", "attributes": { "cluster": 0, "x": -30.617944846458684, "y": -70.26819191857481, "size": 1, "color": "#e36d0" } }, { "key": "5730", "attributes": { "cluster": 1, "x": 29.67507866692194, "y": -2.7182104233886335, "size": 1, "color": "#762e2e" } }, { "key": "5731", "attributes": { "cluster": 2, "x": 44.07804381723351, "y": 59.051909277193786, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5732", "attributes": { "cluster": 2, "x": 25.078043817233507, "y": 109.28138269669125, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5733", "attributes": { "cluster": 1, "x": 52.675078666921976, "y": -80.66049676398808, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5734", "attributes": { "cluster": 0, "x": -25.617944846458705, "y": -65.0720394958682, "size": 1, "color": "#e36d0" } }, { "key": "5735", "attributes": { "cluster": 1, "x": 70.67507866692199, "y": -80.66049676398806, "size": 2, "color": "#762e2e" } }, { "key": "5736", "attributes": { "cluster": 2, "x": -24.921956182766486, "y": 33.07114716366062, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5737", "attributes": { "cluster": 0, "x": -97.61794484645878, "y": -6.182312038526366, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5738", "attributes": { "cluster": 2, "x": 25.07804381723358, "y": 33.07114716366066, "size": 1, "color": "#4b94db" } }, { "key": "5739", "attributes": { "cluster": 2, "x": -24.92195618276656, "y": 109.2813826966912, "size": 2, "color": "#4b94db" } }, { "key": "5740", "attributes": { "cluster": 1, "x": 70.675078666922, "y": 9.406145229593513, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5741", "attributes": { "cluster": 0, "x": -39.61794484645866, "y": -75.4643443412814, "size": 1, "color": "#e36d0" } }, { "key": "5742", "attributes": { "cluster": 1, "x": 52.67507866692198, "y": 9.406145229593506, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5743", "attributes": { "cluster": 1, "x": 21.675078666921983, "y": -58.14383626559266, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5744", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -13.110515268801898, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "5745", "attributes": { "cluster": 1, "x": 21.675078666921983, "y": -13.11051526880187, "size": 2, "color": "#762e2e" } }, { "key": "5746", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -58.14383626559269, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5747", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -11.378464461233001, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5748", "attributes": { "cluster": 2, "x": -18.92195618276648, "y": 29.607045548522883, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5749", "attributes": { "cluster": 0, "x": -83.61794484645881, "y": 4.209992806886845, "size": 1, "color": "#e36d0" } }, { "key": "5750", "attributes": { "cluster": 2, "x": 19.0780438172335, "y": 112.74548431182899, "size": 1, "color": "#4b94db" } }, { "key": "5751", "attributes": { "cluster": 1, "x": 22.675078666921983, "y": -59.87588707316156, "size": 1, "color": "#762e2e" } }, { "key": "5752", "attributes": { "cluster": 0, "x": -83.61794484645873, "y": -75.46434434128146, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5753", "attributes": { "cluster": 2, "x": -18.921956182766564, "y": 112.74548431182895, "size": 2, "color": "#4b94db" } }, { "key": "5754", "attributes": { "cluster": 1, "x": 33.67507866692199, "y": -72.00024272614371, "size": 2, "color": "#762e2e" } }, { "key": "5755", "attributes": { "cluster": 1, "x": 89.67507866692199, "y": 0.7458911917491449, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5756", "attributes": { "cluster": 1, "x": 33.67507866692193, "y": 0.7458911917491164, "size": 0, "color": "#762e2e" } }, { "key": "5757", "attributes": { "cluster": 0, "x": -39.617944846458755, "y": 4.209992806886902, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5758", "attributes": { "cluster": 1, "x": 22.67507866692197, "y": -11.378464461233005, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5759", "attributes": { "cluster": 1, "x": 89.67507866692205, "y": -72.00024272614368, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5760", "attributes": { "cluster": 2, "x": 19.078043817233585, "y": 29.60704554852292, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5761", "attributes": { "cluster": 0, "x": -40.61794484645875, "y": 5.942043614455784, "size": 2, "color": "#e36d0" } }, { "key": "5762", "attributes": { "cluster": 1, "x": 100.67507866692202, "y": -59.87588707316155, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5763", "attributes": { "cluster": 2, "x": 32.078043817233514, "y": 104.08523027398459, "size": 2, "color": "#4b94db" } }, { "key": "5764", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -14.842566076370765, "size": 2, "color": "#762e2e" } }, { "key": "5765", "attributes": { "cluster": 1, "x": 20.675078666921983, "y": -56.41178545802379, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5766", "attributes": { "cluster": 2, "x": -31.921956182766497, "y": 38.26729958636728, "size": 1, "color": "#4b94db" } }, { "key": "5767", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -56.41178545802383, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5768", "attributes": { "cluster": 0, "x": -105.61794484645874, "y": -51.21563303531717, "size": 1, "color": "#e36d0" } }, { "key": "5769", "attributes": { "cluster": 1, "x": 20.67507866692199, "y": -14.84256607637073, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5770", "attributes": { "cluster": 2, "x": 32.07804381723356, "y": 38.26729958636729, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5771", "attributes": { "cluster": 2, "x": -31.92195618276654, "y": 104.08523027398458, "size": 3, "color": "#4b94db" } }, { "key": "5772", "attributes": { "cluster": 1, "x": 23.675078666921983, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5773", "attributes": { "cluster": 0, "x": -82.61794484645873, "y": -77.19639514885034, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5774", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -9.646413653664123, "size": 3, "color": "#762e2e" } }, { "key": "5775", "attributes": { "cluster": 1, "x": 23.67507866692197, "y": -9.646413653664116, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5776", "attributes": { "cluster": 2, "x": -8.921956182766502, "y": 26.14294393338514, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5777", "attributes": { "cluster": 2, "x": 9.078043817233514, "y": 26.142943933385148, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "5778", "attributes": { "cluster": 2, "x": 9.07804381723352, "y": 116.20958592696672, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5779", "attributes": { "cluster": 1, "x": 99.67507866692202, "y": -61.60793788073045, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5780", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -16.574616883939647, "size": 1, "color": "#762e2e" } }, { "key": "5781", "attributes": { "cluster": 1, "x": 19.675078666921983, "y": -54.67973465045491, "size": 1, "color": "#762e2e" } }, { "key": "5782", "attributes": { "cluster": 2, "x": -8.921956182766497, "y": 116.20958592696672, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5783", "attributes": { "cluster": 2, "x": -39.9219561827665, "y": 48.65960443178055, "size": 1, "color": "#4b94db" } }, { "key": "5784", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -54.67973465045493, "size": 1, "color": "#762e2e" } }, { "key": "5785", "attributes": { "cluster": 1, "x": 19.67507866692199, "y": -16.574616883939623, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5786", "attributes": { "cluster": 1, "x": 16.67507866692199, "y": -35.62717576719727, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5787", "attributes": { "cluster": 0, "x": -17.61794484645874, "y": -20.038718499077394, "size": 2, "color": "#e36d0" } }, { "key": "5788", "attributes": { "cluster": 0, "x": -82.61794484645883, "y": 5.942043614455727, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5789", "attributes": { "cluster": 2, "x": 40.078043817233514, "y": 93.69292542857131, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5790", "attributes": { "cluster": 1, "x": 15.67507866692199, "y": -37.35922657476615, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5791", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -35.627175767197286, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5792", "attributes": { "cluster": 0, "x": -40.617944846458656, "y": -77.19639514885029, "size": 1, "color": "#e36d0" } }, { "key": "5793", "attributes": { "cluster": 2, "x": -39.9219561827665, "y": 93.69292542857134, "size": 2, "color": "#4b94db" } }, { "key": "5794", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -33.89512495962841, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5795", "attributes": { "cluster": 2, "x": 40.078043817233514, "y": 48.65960443178052, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5796", "attributes": { "cluster": 1, "x": 77.67507866692199, "y": 7.674094422024638, "size": 1, "color": "#762e2e" } }, { "key": "5797", "attributes": { "cluster": 0, "x": -17.617944846458727, "y": -51.215633035317175, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5798", "attributes": { "cluster": 2, "x": 39.078043817233514, "y": 95.42497623614021, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "5799", "attributes": { "cluster": 2, "x": -38.9219561827665, "y": 46.927553624211654, "size": 2, "color": "#4b94db" } }, { "key": "5800", "attributes": { "cluster": 1, "x": 45.67507866692193, "y": 7.674094422024623, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5801", "attributes": { "cluster": 2, "x": -27.921956182766493, "y": 34.80319797122951, "size": 1, "color": "#4b94db" } }, { "key": "5802", "attributes": { "cluster": 0, "x": -105.61794484645876, "y": -20.038718499077383, "size": 2, "color": "#e36d0" } }, { "key": "5803", "attributes": { "cluster": 1, "x": 45.67507866692199, "y": -78.9284459564192, "size": 2, "color": "#762e2e" } }, { "key": "5804", "attributes": { "cluster": 0, "x": -88.61794484645874, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5805", "attributes": { "cluster": 1, "x": 77.67507866692205, "y": -78.92844595641918, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5806", "attributes": { "cluster": 2, "x": 28.078043817233514, "y": 107.54933188912236, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5807", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -25.234870921784022, "size": 1, "color": "#762e2e" } }, { "key": "5808", "attributes": { "cluster": 2, "x": -27.921956182766554, "y": 107.54933188912233, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "5809", "attributes": { "cluster": 1, "x": 16.67507866692199, "y": -46.019480612610536, "size": 3.3333333333333335, "color": "#762e2e" } }, { "key": "5810", "attributes": { "cluster": 2, "x": -38.921956182766515, "y": 95.42497623614021, "size": 1, "color": "#4b94db" } }, { "key": "5811", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -46.01948061261055, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5812", "attributes": { "cluster": 1, "x": 16.67507866692199, "y": -25.234870921784008, "size": 1, "color": "#762e2e" } }, { "key": "5813", "attributes": { "cluster": 0, "x": -34.61794484645874, "y": 2.477941999318027, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5814", "attributes": { "cluster": 1, "x": 24.675078666921983, "y": -63.339988688299314, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5815", "attributes": { "cluster": 0, "x": -88.61794484645881, "y": 2.4779419993179843, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5816", "attributes": { "cluster": 0, "x": -34.61794484645867, "y": -73.73229353371255, "size": 3.6666666666666665, "color": "#e36d0" } }, { "key": "5817", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -7.914362846095244, "size": 1, "color": "#762e2e" } }, { "key": "5818", "attributes": { "cluster": 1, "x": 24.675078666921955, "y": -7.914362846095258, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5819", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": 11.138196037162402, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5820", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": -82.39254757155696, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5821", "attributes": { "cluster": 1, "x": 98.67507866692202, "y": -63.3399886882993, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "5822", "attributes": { "cluster": 2, "x": 28.078043817233574, "y": 34.80319797122954, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5823", "attributes": { "cluster": 2, "x": 39.07804381723353, "y": 46.927553624211654, "size": 1, "color": "#4b94db" } }, { "key": "5824", "attributes": { "cluster": 0, "x": -59.61794484645873, "y": -82.39254757155695, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5825", "attributes": { "cluster": 0, "x": -59.61794484645873, "y": 11.138196037162402, "size": 2, "color": "#e36d0" } }, { "key": "5826", "attributes": { "cluster": 1, "x": 72.675078666922, "y": 9.406145229593513, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5827", "attributes": { "cluster": 0, "x": -63.617944846458755, "y": 11.138196037162388, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5828", "attributes": { "cluster": 2, "x": 41.078043817233514, "y": 91.96087462100245, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5829", "attributes": { "cluster": 2, "x": -40.9219561827665, "y": 50.39165523934942, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5830", "attributes": { "cluster": 0, "x": -63.617944846458755, "y": -82.39254757155696, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5831", "attributes": { "cluster": 2, "x": 41.07804381723351, "y": 50.39165523934938, "size": 2, "color": "#4b94db" } }, { "key": "5832", "attributes": { "cluster": 2, "x": -40.92195618276649, "y": 91.96087462100249, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5833", "attributes": { "cluster": 2, "x": -37.9219561827665, "y": 45.19550281664277, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5834", "attributes": { "cluster": 1, "x": 50.67507866692196, "y": 9.406145229593506, "size": 1, "color": "#762e2e" } }, { "key": "5835", "attributes": { "cluster": 1, "x": 50.675078666921976, "y": -80.66049676398808, "size": 2, "color": "#762e2e" } }, { "key": "5836", "attributes": { "cluster": 1, "x": 72.67507866692202, "y": -80.66049676398806, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5837", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -18.306667691508515, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5838", "attributes": { "cluster": 0, "x": -15.617944846458741, "y": -26.966921729352904, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5839", "attributes": { "cluster": 2, "x": 38.078043817233514, "y": 97.15702704370909, "size": 1, "color": "#4b94db" } }, { "key": "5840", "attributes": { "cluster": 2, "x": -37.921956182766515, "y": 97.15702704370909, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5841", "attributes": { "cluster": 1, "x": 18.67507866692199, "y": -52.94768384288604, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5842", "attributes": { "cluster": 2, "x": 38.07804381723353, "y": 45.19550281664277, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5843", "attributes": { "cluster": 2, "x": 42.078043817233514, "y": 90.22882381343356, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5844", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -40.82332818990392, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5845", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -30.431023344490658, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5846", "attributes": { "cluster": 2, "x": -41.9219561827665, "y": 52.1237060469183, "size": 2, "color": "#4b94db" } }, { "key": "5847", "attributes": { "cluster": 2, "x": 42.07804381723351, "y": 52.12370604691827, "size": 2, "color": "#4b94db" } }, { "key": "5848", "attributes": { "cluster": 1, "x": 15.67507866692199, "y": -30.431023344490637, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5849", "attributes": { "cluster": 2, "x": -41.92195618276649, "y": 90.22882381343359, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "5850", "attributes": { "cluster": 2, "x": -44.92195618276649, "y": 71.17626493017595, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5851", "attributes": { "cluster": 0, "x": -107.61794484645874, "y": -44.287429805041654, "size": 2, "color": "#e36d0" } }, { "key": "5852", "attributes": { "cluster": 1, "x": 15.67507866692199, "y": -40.823328189903904, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5853", "attributes": { "cluster": 2, "x": -45.92195618276649, "y": 69.44421412260706, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5854", "attributes": { "cluster": 0, "x": -15.617944846458741, "y": -44.287429805041675, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5855", "attributes": { "cluster": 0, "x": -107.61794484645874, "y": -26.966921729352883, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5856", "attributes": { "cluster": 1, "x": 104.675078666922, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5857", "attributes": { "cluster": 0, "x": -96.61794484645876, "y": -66.80409030343708, "size": 0, "color": "#e36d0" } }, { "key": "5858", "attributes": { "cluster": 2, "x": 45.07804381723351, "y": 71.17626493017592, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5859", "attributes": { "cluster": 2, "x": 46.07804381723351, "y": 72.9083157377448, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "5860", "attributes": { "cluster": 2, "x": 16.07804381723351, "y": 114.47753511939786, "size": 1, "color": "#4b94db" } }, { "key": "5861", "attributes": { "cluster": 2, "x": -15.921956182766555, "y": 114.47753511939783, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5862", "attributes": { "cluster": 0, "x": -26.617944846458734, "y": -4.450261230957487, "size": 2, "color": "#e36d0" } }, { "key": "5863", "attributes": { "cluster": 0, "x": -96.61794484645878, "y": -4.450261230957501, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5864", "attributes": { "cluster": 2, "x": -15.921956182766491, "y": 27.874994740954016, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5865", "attributes": { "cluster": 2, "x": 16.078043817233574, "y": 27.87499474095403, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5866", "attributes": { "cluster": 0, "x": -26.61794484645869, "y": -66.80409030343705, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5867", "attributes": { "cluster": 1, "x": 18.675078666921976, "y": -18.30666769150851, "size": 1, "color": "#762e2e" } }, { "key": "5868", "attributes": { "cluster": 1, "x": 30.67507866692198, "y": -70.26819191857481, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5869", "attributes": { "cluster": 1, "x": 92.675078666922, "y": -0.9861596158197514, "size": 1, "color": "#762e2e" } }, { "key": "5870", "attributes": { "cluster": 2, "x": 45.07804381723351, "y": 81.56856977558918, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5871", "attributes": { "cluster": 1, "x": 25.675078666921983, "y": -65.0720394958682, "size": 1, "color": "#762e2e" } }, { "key": "5872", "attributes": { "cluster": 0, "x": -48.61794484645873, "y": 9.406145229593513, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5873", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -6.182312038526366, "size": 1, "color": "#762e2e" } }, { "key": "5874", "attributes": { "cluster": 2, "x": -44.92195618276649, "y": 60.783960084762676, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5875", "attributes": { "cluster": 0, "x": -74.61794484645877, "y": 9.406145229593498, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5876", "attributes": { "cluster": 1, "x": 30.675078666921934, "y": -0.9861596158197514, "size": 3, "color": "#762e2e" } }, { "key": "5877", "attributes": { "cluster": 1, "x": 92.67507866692205, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5878", "attributes": { "cluster": 0, "x": -74.61794484645876, "y": -80.66049676398808, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5879", "attributes": { "cluster": 0, "x": -48.61794484645871, "y": -80.66049676398805, "size": 1, "color": "#e36d0" } }, { "key": "5880", "attributes": { "cluster": 1, "x": 97.67507866692202, "y": -65.0720394958682, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5881", "attributes": { "cluster": 0, "x": -65.61794484645876, "y": 11.138196037162388, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5882", "attributes": { "cluster": 2, "x": 45.07804381723351, "y": 60.78396008476266, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5883", "attributes": { "cluster": 2, "x": -44.92195618276649, "y": 81.56856977558921, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5884", "attributes": { "cluster": 1, "x": 25.675078666921955, "y": -6.182312038526366, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5885", "attributes": { "cluster": 2, "x": -36.9219561827665, "y": 43.4634520090739, "size": 1, "color": "#4b94db" } }, { "key": "5886", "attributes": { "cluster": 1, "x": 83.67507866692208, "y": -75.4643443412814, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5887", "attributes": { "cluster": 2, "x": 37.078043817233514, "y": 98.88907785127796, "size": 2, "color": "#4b94db" } }, { "key": "5888", "attributes": { "cluster": 2, "x": -36.92195618276653, "y": 98.88907785127796, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5889", "attributes": { "cluster": 1, "x": 39.67507866692191, "y": 4.209992806886845, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5890", "attributes": { "cluster": 1, "x": 39.675078666922005, "y": -75.46434434128146, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5891", "attributes": { "cluster": 2, "x": 37.07804381723354, "y": 43.46345200907391, "size": 2, "color": "#4b94db" } }, { "key": "5892", "attributes": { "cluster": 2, "x": 11.07804381723352, "y": 116.20958592696672, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "5893", "attributes": { "cluster": 0, "x": -57.617944846458734, "y": -82.39254757155695, "size": 2, "color": "#e36d0" } }, { "key": "5894", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": 11.138196037162388, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5895", "attributes": { "cluster": 2, "x": -10.921956182766522, "y": 116.20958592696672, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "5896", "attributes": { "cluster": 2, "x": -10.921956182766502, "y": 26.14294393338514, "size": 2, "color": "#4b94db" } }, { "key": "5897", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -82.39254757155695, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5898", "attributes": { "cluster": 0, "x": -43.61794484645867, "y": -78.92844595641917, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5899", "attributes": { "cluster": 1, "x": 83.67507866692198, "y": 4.209992806886902, "size": 1, "color": "#762e2e" } }, { "key": "5900", "attributes": { "cluster": 0, "x": -79.61794484645881, "y": 7.674094422024609, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5901", "attributes": { "cluster": 1, "x": 82.67507866692199, "y": 5.942043614455784, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5902", "attributes": { "cluster": 1, "x": 17.67507866692199, "y": -51.21563303531717, "size": 3.3333333333333335, "color": "#762e2e" } }, { "key": "5903", "attributes": { "cluster": 2, "x": 11.078043817233539, "y": 26.142943933385148, "size": 2, "color": "#4b94db" } }, { "key": "5904", "attributes": { "cluster": 2, "x": 43.07804381723351, "y": 88.4967730058647, "size": 2, "color": "#4b94db" } }, { "key": "5905", "attributes": { "cluster": 1, "x": 40.675078666922, "y": -77.19639514885034, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5906", "attributes": { "cluster": 0, "x": -79.61794484645874, "y": -78.92844595641921, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5907", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -20.038718499077394, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5908", "attributes": { "cluster": 1, "x": 40.675078666921905, "y": 5.942043614455727, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5909", "attributes": { "cluster": 2, "x": -42.92195618276649, "y": 53.85575685448717, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5910", "attributes": { "cluster": 1, "x": 82.67507866692208, "y": -77.19639514885029, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5911", "attributes": { "cluster": 1, "x": 105.675078666922, "y": -51.215633035317175, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5912", "attributes": { "cluster": 2, "x": 46.07804381723351, "y": 65.98011250746929, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5913", "attributes": { "cluster": 0, "x": -43.61794484645874, "y": 7.674094422024652, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5914", "attributes": { "cluster": 1, "x": 17.675078666921976, "y": -20.038718499077383, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5915", "attributes": { "cluster": 2, "x": 46.07804381723351, "y": 76.37241735288255, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5916", "attributes": { "cluster": 0, "x": -106.61794484645874, "y": -49.483582227748286, "size": 2, "color": "#e36d0" } }, { "key": "5917", "attributes": { "cluster": 1, "x": 34.67507866692199, "y": -73.73229353371258, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5918", "attributes": { "cluster": 2, "x": -45.92195618276649, "y": 76.37241735288258, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "5919", "attributes": { "cluster": 2, "x": -45.92195618276649, "y": 65.98011250746931, "size": 1, "color": "#4b94db" } }, { "key": "5920", "attributes": { "cluster": 2, "x": 43.07804381723352, "y": 53.85575685448716, "size": 1, "color": "#4b94db" } }, { "key": "5921", "attributes": { "cluster": 2, "x": -42.92195618276651, "y": 88.4967730058647, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "5922", "attributes": { "cluster": 2, "x": -30.9219561827665, "y": 36.535248778798405, "size": 1, "color": "#4b94db" } }, { "key": "5923", "attributes": { "cluster": 1, "x": 88.67507866692199, "y": 2.477941999318027, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "5924", "attributes": { "cluster": 1, "x": 34.67507866692192, "y": 2.4779419993179843, "size": 1, "color": "#762e2e" } }, { "key": "5925", "attributes": { "cluster": 1, "x": 88.67507866692206, "y": -73.73229353371255, "size": 1, "color": "#762e2e" } }, { "key": "5926", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": 11.138196037162402, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5927", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": -82.39254757155696, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "5928", "attributes": { "cluster": 0, "x": -16.61794484645874, "y": -21.77076930664627, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5929", "attributes": { "cluster": 0, "x": -106.61794484645874, "y": -21.770769306646255, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5930", "attributes": { "cluster": 1, "x": 63.675078666922005, "y": -82.39254757155695, "size": 1, "color": "#762e2e" } }, { "key": "5931", "attributes": { "cluster": 1, "x": 63.675078666922005, "y": 11.138196037162402, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "5932", "attributes": { "cluster": 0, "x": -16.61794484645874, "y": -49.4835822277483, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "5933", "attributes": { "cluster": 2, "x": 31.07804381723352, "y": 105.81728108155346, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5934", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": 11.13819603716238, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5935", "attributes": { "cluster": 2, "x": -35.9219561827665, "y": 41.73140120150502, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "5936", "attributes": { "cluster": 2, "x": 36.078043817233514, "y": 100.62112865884684, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5937", "attributes": { "cluster": 1, "x": 59.675078666921976, "y": 11.138196037162388, "size": 1, "color": "#762e2e" } }, { "key": "5938", "attributes": { "cluster": 2, "x": -30.921956182766547, "y": 105.81728108155346, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5939", "attributes": { "cluster": 1, "x": 59.675078666921976, "y": -82.39254757155696, "size": 1, "color": "#762e2e" } }, { "key": "5940", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -26.966921729352904, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5941", "attributes": { "cluster": 1, "x": 15.67507866692199, "y": -44.287429805041654, "size": 3, "color": "#762e2e" } }, { "key": "5942", "attributes": { "cluster": 2, "x": 31.078043817233567, "y": 36.535248778798405, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5943", "attributes": { "cluster": 2, "x": 36.07804381723354, "y": 41.73140120150502, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5944", "attributes": { "cluster": 2, "x": -35.92195618276653, "y": 100.62112865884684, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "5945", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -44.287429805041675, "size": 2, "color": "#762e2e" } }, { "key": "5946", "attributes": { "cluster": 2, "x": 22.07804381723359, "y": 31.339096356091808, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5947", "attributes": { "cluster": 1, "x": 15.67507866692199, "y": -26.966921729352883, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5948", "attributes": { "cluster": 2, "x": -21.921956182766568, "y": 111.01343350426006, "size": 2, "color": "#4b94db" } }, { "key": "5949", "attributes": { "cluster": 0, "x": -55.61794484645874, "y": -82.39254757155695, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5950", "attributes": { "cluster": 0, "x": -55.617944846458734, "y": 11.138196037162388, "size": 1, "color": "#e36d0" } }, { "key": "5951", "attributes": { "cluster": 2, "x": -21.921956182766472, "y": 31.33909635609175, "size": 0, "color": "#4b94db" } }, { "key": "5952", "attributes": { "cluster": 1, "x": 26.675078666921983, "y": -66.80409030343708, "size": 2, "color": "#762e2e" } }, { "key": "5953", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -82.39254757155695, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "5954", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -4.450261230957487, "size": 1, "color": "#762e2e" } }, { "key": "5955", "attributes": { "cluster": 0, "x": -15.617944846458741, "y": -37.35922657476617, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5956", "attributes": { "cluster": 1, "x": 26.67507866692194, "y": -4.450261230957501, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5957", "attributes": { "cluster": 1, "x": 96.67507866692205, "y": -66.80409030343705, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5958", "attributes": { "cluster": 2, "x": 22.078043817233493, "y": 111.01343350426012, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5959", "attributes": { "cluster": 1, "x": 74.675078666922, "y": 9.406145229593513, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "5960", "attributes": { "cluster": 1, "x": 48.67507866692196, "y": 9.406145229593498, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5961", "attributes": { "cluster": 0, "x": -107.61794484645874, "y": -33.89512495962839, "size": 2, "color": "#e36d0" } }, { "key": "5962", "attributes": { "cluster": 2, "x": 21.078043817233503, "y": 112.74548431182899, "size": 2, "color": "#4b94db" } }, { "key": "5963", "attributes": { "cluster": 1, "x": 48.675078666921976, "y": -80.66049676398808, "size": 1, "color": "#762e2e" } }, { "key": "5964", "attributes": { "cluster": 1, "x": 74.67507866692202, "y": -80.66049676398805, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5965", "attributes": { "cluster": 1, "x": 57.67507866692198, "y": 11.138196037162388, "size": 1, "color": "#762e2e" } }, { "key": "5966", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": -82.39254757155695, "size": 1, "color": "#762e2e" } }, { "key": "5967", "attributes": { "cluster": 0, "x": -91.61794484645874, "y": -72.00024272614368, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5968", "attributes": { "cluster": 0, "x": -31.617944846458737, "y": 0.7458911917491307, "size": 1, "color": "#e36d0" } }, { "key": "5969", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": 11.138196037162388, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "5970", "attributes": { "cluster": 0, "x": -91.61794484645881, "y": 0.7458911917491093, "size": 1, "color": "#e36d0" } }, { "key": "5971", "attributes": { "cluster": 2, "x": -43.92195618276649, "y": 55.58780766205605, "size": 1, "color": "#4b94db" } }, { "key": "5972", "attributes": { "cluster": 2, "x": -20.921956182766483, "y": 29.60704554852287, "size": 2, "color": "#4b94db" } }, { "key": "5973", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -82.39254757155695, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5974", "attributes": { "cluster": 2, "x": 44.07804381723351, "y": 86.76472219829581, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5975", "attributes": { "cluster": 0, "x": -31.617944846458677, "y": -72.00024272614367, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "5976", "attributes": { "cluster": 2, "x": -20.92195618276658, "y": 112.74548431182893, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "5977", "attributes": { "cluster": 1, "x": 79.67507866692206, "y": -78.92844595641917, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5978", "attributes": { "cluster": 0, "x": -14.617944846458741, "y": -39.09127738233504, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5979", "attributes": { "cluster": 2, "x": 21.0780438172336, "y": 29.607045548522926, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5980", "attributes": { "cluster": 2, "x": 44.07804381723352, "y": 55.587807662056036, "size": 1, "color": "#4b94db" } }, { "key": "5981", "attributes": { "cluster": 0, "x": -14.617944846458741, "y": -32.16307415205954, "size": 3, "color": "#e36d0" } }, { "key": "5982", "attributes": { "cluster": 0, "x": -108.61794484645874, "y": -32.163074152059515, "size": 0, "color": "#e36d0" } }, { "key": "5983", "attributes": { "cluster": 1, "x": 43.67507866692192, "y": 7.674094422024609, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "5984", "attributes": { "cluster": 2, "x": -43.92195618276651, "y": 86.76472219829583, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5985", "attributes": { "cluster": 0, "x": -108.61794484645874, "y": -39.09127738233502, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5986", "attributes": { "cluster": 0, "x": -95.61794484645876, "y": -68.53614111100595, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "5987", "attributes": { "cluster": 2, "x": -26.921956182766486, "y": 33.071147163660626, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "5988", "attributes": { "cluster": 1, "x": 43.67507866692199, "y": -78.92844595641921, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "5989", "attributes": { "cluster": 0, "x": -27.617944846458734, "y": -2.718210423388612, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "5990", "attributes": { "cluster": 1, "x": 79.67507866692199, "y": 7.674094422024652, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5991", "attributes": { "cluster": 2, "x": 27.078043817233507, "y": 109.28138269669124, "size": 1, "color": "#4b94db" } }, { "key": "5992", "attributes": { "cluster": 2, "x": -26.92195618276656, "y": 109.2813826966912, "size": 2, "color": "#4b94db" } }, { "key": "5993", "attributes": { "cluster": 0, "x": -95.61794484645878, "y": -2.7182104233886193, "size": 1, "color": "#e36d0" } }, { "key": "5994", "attributes": { "cluster": 2, "x": 27.07804381723358, "y": 33.07114716366067, "size": 0, "color": "#4b94db" } }, { "key": "5995", "attributes": { "cluster": 2, "x": 0.07804381723351018, "y": 117.94163673453562, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5996", "attributes": { "cluster": 0, "x": -27.6179448464587, "y": -68.53614111100595, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "5997", "attributes": { "cluster": 1, "x": 16.67507866692199, "y": -49.483582227748286, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "5998", "attributes": { "cluster": 2, "x": 0.07804381723350849, "y": 24.41089312581625, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "5999", "attributes": { "cluster": 0, "x": -69.61794484645874, "y": 11.13819603716238, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6000", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -21.77076930664627, "size": 2, "color": "#762e2e" } }, { "key": "6001", "attributes": { "cluster": 0, "x": -53.61794484645874, "y": -82.39254757155695, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6002", "attributes": { "cluster": 2, "x": 2.078043817233527, "y": 24.410893125816266, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6003", "attributes": { "cluster": 0, "x": -53.61794484645873, "y": 11.138196037162388, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6004", "attributes": { "cluster": 1, "x": 16.67507866692199, "y": -21.770769306646255, "size": 2, "color": "#762e2e" } }, { "key": "6005", "attributes": { "cluster": 2, "x": 2.078043817233522, "y": 117.94163673453562, "size": 2, "color": "#4b94db" } }, { "key": "6006", "attributes": { "cluster": 2, "x": -1.9219561827665084, "y": 117.94163673453559, "size": 2, "color": "#4b94db" } }, { "key": "6007", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -82.39254757155695, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "6008", "attributes": { "cluster": 2, "x": -1.921956182766503, "y": 24.41089312581625, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6009", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -49.4835822277483, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6010", "attributes": { "cluster": 2, "x": 46.07804381723351, "y": 79.83651896802031, "size": 1, "color": "#4b94db" } }, { "key": "6011", "attributes": { "cluster": 1, "x": 55.67507866692199, "y": 11.13819603716238, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6012", "attributes": { "cluster": 2, "x": -45.92195618276649, "y": 62.51601089233156, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6013", "attributes": { "cluster": 2, "x": 46.07804381723351, "y": 62.516010892331536, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6014", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": -82.39254757155695, "size": 1, "color": "#762e2e" } }, { "key": "6015", "attributes": { "cluster": 0, "x": -46.617944846458734, "y": 9.40614522959352, "size": 1, "color": "#e36d0" } }, { "key": "6016", "attributes": { "cluster": 2, "x": -45.92195618276649, "y": 79.83651896802033, "size": 1, "color": "#4b94db" } }, { "key": "6017", "attributes": { "cluster": 2, "x": -34.9219561827665, "y": 39.99935039393614, "size": 3, "color": "#4b94db" } }, { "key": "6018", "attributes": { "cluster": 0, "x": -76.61794484645874, "y": -80.66049676398808, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6019", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": 11.138196037162388, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6020", "attributes": { "cluster": 0, "x": -46.617944846458684, "y": -80.66049676398805, "size": 1, "color": "#e36d0" } }, { "key": "6021", "attributes": { "cluster": 0, "x": -76.6179448464588, "y": 9.406145229593498, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6022", "attributes": { "cluster": 2, "x": 35.078043817233514, "y": 102.35317946641572, "size": 2, "color": "#4b94db" } }, { "key": "6023", "attributes": { "cluster": 2, "x": -34.92195618276654, "y": 102.35317946641571, "size": 1, "color": "#4b94db" } }, { "key": "6024", "attributes": { "cluster": 2, "x": 35.07804381723356, "y": 39.999350393936155, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6025", "attributes": { "cluster": 0, "x": -108.61794484645874, "y": -42.55537899747278, "size": 1, "color": "#e36d0" } }, { "key": "6026", "attributes": { "cluster": 0, "x": -14.617944846458741, "y": -28.69897253692178, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6027", "attributes": { "cluster": 0, "x": -108.61794484645874, "y": -28.698972536921758, "size": 2, "color": "#e36d0" } }, { "key": "6028", "attributes": { "cluster": 0, "x": -14.617944846458741, "y": -42.5553789974728, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6029", "attributes": { "cluster": 2, "x": 13.07804381723352, "y": 116.20958592696672, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6030", "attributes": { "cluster": 0, "x": -15.617944846458741, "y": -23.502820114215147, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6031", "attributes": { "cluster": 1, "x": 55.67507866692198, "y": -82.39254757155695, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6032", "attributes": { "cluster": 2, "x": -12.921956182766518, "y": 116.20958592696671, "size": 1, "color": "#4b94db" } }, { "key": "6033", "attributes": { "cluster": 2, "x": -12.921956182766502, "y": 26.14294393338514, "size": 3, "color": "#4b94db" } }, { "key": "6034", "attributes": { "cluster": 2, "x": 13.078043817233535, "y": 26.142943933385155, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6035", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -37.35922657476617, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6036", "attributes": { "cluster": 1, "x": 15.67507866692199, "y": -33.89512495962839, "size": 1, "color": "#762e2e" } }, { "key": "6037", "attributes": { "cluster": 0, "x": -107.61794484645874, "y": -47.75153142017941, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6038", "attributes": { "cluster": 0, "x": -15.617944846458741, "y": -47.75153142017943, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6039", "attributes": { "cluster": 1, "x": 31.675078666921987, "y": -72.00024272614368, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6040", "attributes": { "cluster": 1, "x": 91.67507866692199, "y": 0.7458911917491307, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6041", "attributes": { "cluster": 2, "x": -3.9219561827664977, "y": 117.94163673453559, "size": 1, "color": "#4b94db" } }, { "key": "6042", "attributes": { "cluster": 1, "x": 31.675078666921927, "y": 0.7458911917491093, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6043", "attributes": { "cluster": 0, "x": -107.61794484645874, "y": -23.50282011421513, "size": 1, "color": "#e36d0" } }, { "key": "6044", "attributes": { "cluster": 0, "x": -37.61794484645866, "y": -75.46434434128139, "size": 1, "color": "#e36d0" } }, { "key": "6045", "attributes": { "cluster": 2, "x": 4.0780438172335165, "y": 24.410893125816266, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6046", "attributes": { "cluster": 0, "x": -85.61794484645881, "y": 4.209992806886838, "size": 0, "color": "#e36d0" } }, { "key": "6047", "attributes": { "cluster": 0, "x": -85.61794484645873, "y": -75.46434434128147, "size": 1, "color": "#e36d0" } }, { "key": "6048", "attributes": { "cluster": 1, "x": 91.67507866692205, "y": -72.00024272614367, "size": 2, "color": "#762e2e" } }, { "key": "6049", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -39.09127738233504, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6050", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -32.16307415205954, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6051", "attributes": { "cluster": 2, "x": 4.078043817233506, "y": 117.94163673453559, "size": 1, "color": "#4b94db" } }, { "key": "6052", "attributes": { "cluster": 0, "x": -37.61794484645876, "y": 4.209992806886916, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6053", "attributes": { "cluster": 0, "x": -102.61794484645876, "y": -59.875887073161536, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6054", "attributes": { "cluster": 1, "x": 14.67507866692199, "y": -32.163074152059515, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6055", "attributes": { "cluster": 2, "x": -3.9219561827664875, "y": 24.410893125816266, "size": 2, "color": "#4b94db" } }, { "key": "6056", "attributes": { "cluster": 2, "x": 18.07804381723358, "y": 27.874994740954044, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6057", "attributes": { "cluster": 1, "x": 14.67507866692199, "y": -39.09127738233502, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6058", "attributes": { "cluster": 2, "x": -17.92195618276656, "y": 114.47753511939783, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6059", "attributes": { "cluster": 0, "x": -20.617944846458734, "y": -11.378464461233019, "size": 2, "color": "#e36d0" } }, { "key": "6060", "attributes": { "cluster": 2, "x": -17.92195618276649, "y": 27.874994740954, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6061", "attributes": { "cluster": 2, "x": 18.07804381723351, "y": 114.47753511939786, "size": 2, "color": "#4b94db" } }, { "key": "6062", "attributes": { "cluster": 1, "x": 27.675078666921983, "y": -68.53614111100595, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6063", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": -2.718210423388612, "size": 2, "color": "#762e2e" } }, { "key": "6064", "attributes": { "cluster": 0, "x": -35.61794484645876, "y": 4.209992806886923, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6065", "attributes": { "cluster": 0, "x": -87.61794484645873, "y": -75.46434434128147, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6066", "attributes": { "cluster": 0, "x": -35.61794484645866, "y": -75.46434434128142, "size": 1, "color": "#e36d0" } }, { "key": "6067", "attributes": { "cluster": 0, "x": -20.61794484645872, "y": -59.875887073161564, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6068", "attributes": { "cluster": 1, "x": 27.675078666921948, "y": -2.7182104233886193, "size": 1, "color": "#762e2e" } }, { "key": "6069", "attributes": { "cluster": 2, "x": -44.92195618276649, "y": 57.31985846962492, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6070", "attributes": { "cluster": 2, "x": 45.07804381723351, "y": 85.03267139072695, "size": 1, "color": "#4b94db" } }, { "key": "6071", "attributes": { "cluster": 0, "x": -87.61794484645881, "y": 4.209992806886866, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6072", "attributes": { "cluster": 2, "x": -44.92195618276649, "y": 85.03267139072696, "size": 1, "color": "#4b94db" } }, { "key": "6073", "attributes": { "cluster": 0, "x": -102.61794484645876, "y": -11.378464461232998, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6074", "attributes": { "cluster": 1, "x": 95.67507866692203, "y": -68.53614111100595, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6075", "attributes": { "cluster": 2, "x": 45.07804381723351, "y": 57.319858469624904, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6076", "attributes": { "cluster": 0, "x": -103.61794484645876, "y": -58.14383626559267, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6077", "attributes": { "cluster": 2, "x": -5.921956182766489, "y": 117.94163673453559, "size": 2, "color": "#4b94db" } }, { "key": "6078", "attributes": { "cluster": 1, "x": 53.67507866692199, "y": 11.13819603716238, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6079", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -82.39254757155695, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6080", "attributes": { "cluster": 0, "x": -19.617944846458734, "y": -13.110515268801887, "size": 1, "color": "#e36d0" } }, { "key": "6081", "attributes": { "cluster": 2, "x": 6.078043817233508, "y": 24.410893125816273, "size": 1, "color": "#4b94db" } }, { "key": "6082", "attributes": { "cluster": 2, "x": 6.078043817233515, "y": 117.94163673453559, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "6083", "attributes": { "cluster": 0, "x": -103.61794484645874, "y": -13.110515268801855, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6084", "attributes": { "cluster": 0, "x": -19.61794484645874, "y": -58.143836265592704, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6085", "attributes": { "cluster": 2, "x": -5.921956182766496, "y": 24.410893125816266, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6086", "attributes": { "cluster": 2, "x": 46.07804381723351, "y": 69.44421412260705, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6087", "attributes": { "cluster": 0, "x": -21.617944846458734, "y": -9.646413653664123, "size": 2, "color": "#e36d0" } }, { "key": "6088", "attributes": { "cluster": 0, "x": -101.61794484645876, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6089", "attributes": { "cluster": 0, "x": -21.61794484645872, "y": -61.60793788073043, "size": 1, "color": "#e36d0" } }, { "key": "6090", "attributes": { "cluster": 2, "x": -45.92195618276649, "y": 72.90831573774481, "size": 2, "color": "#4b94db" } }, { "key": "6091", "attributes": { "cluster": 0, "x": -101.61794484645876, "y": -9.646413653664126, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6092", "attributes": { "cluster": 1, "x": 69.675078666922, "y": 11.138196037162388, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6093", "attributes": { "cluster": 1, "x": 53.675078666921976, "y": -82.39254757155695, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6094", "attributes": { "cluster": 0, "x": -81.61794484645873, "y": -78.92844595641921, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6095", "attributes": { "cluster": 2, "x": -29.921956182766493, "y": 34.80319797122952, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6096", "attributes": { "cluster": 2, "x": 30.078043817233514, "y": 107.54933188912234, "size": 1, "color": "#4b94db" } }, { "key": "6097", "attributes": { "cluster": 1, "x": 76.67507866692199, "y": 9.40614522959352, "size": 1, "color": "#762e2e" } }, { "key": "6098", "attributes": { "cluster": 0, "x": -41.617944846458755, "y": 7.674094422024652, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6099", "attributes": { "cluster": 2, "x": -29.921956182766554, "y": 107.54933188912233, "size": 1, "color": "#4b94db" } }, { "key": "6100", "attributes": { "cluster": 2, "x": 30.078043817233574, "y": 34.803197971229544, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6101", "attributes": { "cluster": 1, "x": 46.67507866692198, "y": -80.66049676398808, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6102", "attributes": { "cluster": 0, "x": -81.61794484645883, "y": 7.674094422024609, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6103", "attributes": { "cluster": 2, "x": 47.07804381723351, "y": 67.71216331503817, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6104", "attributes": { "cluster": 0, "x": -41.617944846458656, "y": -78.92844595641917, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6105", "attributes": { "cluster": 2, "x": 47.07804381723351, "y": 74.64036654531368, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6106", "attributes": { "cluster": 2, "x": -46.92195618276649, "y": 74.6403665453137, "size": 1, "color": "#4b94db" } }, { "key": "6107", "attributes": { "cluster": 2, "x": -46.92195618276649, "y": 67.71216331503818, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6108", "attributes": { "cluster": 2, "x": -33.9219561827665, "y": 38.267299586367265, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6109", "attributes": { "cluster": 2, "x": 34.078043817233514, "y": 104.08523027398459, "size": 1, "color": "#4b94db" } }, { "key": "6110", "attributes": { "cluster": 1, "x": 76.67507866692205, "y": -80.66049676398805, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6111", "attributes": { "cluster": 1, "x": 46.675078666921934, "y": 9.406145229593498, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "6112", "attributes": { "cluster": 2, "x": -33.921956182766536, "y": 104.08523027398459, "size": 3.6666666666666665, "color": "#4b94db" } }, { "key": "6113", "attributes": { "cluster": 1, "x": 14.67507866692199, "y": -42.55537899747278, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6114", "attributes": { "cluster": 2, "x": 34.07804381723355, "y": 38.26729958636727, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6115", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -28.69897253692178, "size": 1, "color": "#762e2e" } }, { "key": "6116", "attributes": { "cluster": 0, "x": -18.617944846458734, "y": -14.842566076370769, "size": 1, "color": "#e36d0" } }, { "key": "6117", "attributes": { "cluster": 1, "x": 14.67507866692199, "y": -28.698972536921758, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6118", "attributes": { "cluster": 2, "x": -7.921956182766492, "y": 117.94163673453559, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6119", "attributes": { "cluster": 2, "x": 8.07804381723351, "y": 24.410893125816273, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6120", "attributes": { "cluster": 0, "x": -104.61794484645876, "y": -56.411785458023786, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6121", "attributes": { "cluster": 2, "x": 8.07804381723352, "y": 117.94163673453559, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6122", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -42.5553789974728, "size": 3, "color": "#762e2e" } }, { "key": "6123", "attributes": { "cluster": 0, "x": -18.61794484645874, "y": -56.411785458023814, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6124", "attributes": { "cluster": 0, "x": -104.61794484645874, "y": -14.842566076370748, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6125", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -23.502820114215147, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6126", "attributes": { "cluster": 2, "x": -7.921956182766501, "y": 24.410893125816266, "size": 1, "color": "#4b94db" } }, { "key": "6127", "attributes": { "cluster": 1, "x": 15.67507866692199, "y": -47.75153142017941, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6128", "attributes": { "cluster": 2, "x": 15.078043817233514, "y": 116.20958592696672, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "6129", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": -82.39254757155693, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6130", "attributes": { "cluster": 2, "x": -14.921956182766497, "y": 26.142943933385133, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6131", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -47.75153142017943, "size": 1, "color": "#762e2e" } }, { "key": "6132", "attributes": { "cluster": 2, "x": 15.078043817233567, "y": 26.142943933385155, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6133", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": 11.138196037162373, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6134", "attributes": { "cluster": 2, "x": -14.92195618276655, "y": 116.20958592696671, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6135", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -82.39254757155695, "size": 1, "color": "#e36d0" } }, { "key": "6136", "attributes": { "cluster": 2, "x": -46.92195618276649, "y": 64.24806169990043, "size": 2, "color": "#4b94db" } }, { "key": "6137", "attributes": { "cluster": 2, "x": 47.07804381723351, "y": 78.10446816045143, "size": 2, "color": "#4b94db" } }, { "key": "6138", "attributes": { "cluster": 2, "x": -46.92195618276649, "y": 78.10446816045145, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6139", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": 11.138196037162388, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6140", "attributes": { "cluster": 0, "x": -94.61794484645876, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6141", "attributes": { "cluster": 2, "x": 47.07804381723351, "y": 64.24806169990042, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6142", "attributes": { "cluster": 1, "x": 15.67507866692199, "y": -23.50282011421513, "size": 1, "color": "#762e2e" } }, { "key": "6143", "attributes": { "cluster": 2, "x": 46.07804381723351, "y": 83.30062058315806, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6144", "attributes": { "cluster": 0, "x": -28.617944846458734, "y": -0.9861596158197443, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6145", "attributes": { "cluster": 2, "x": -45.92195618276649, "y": 59.0519092771938, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6146", "attributes": { "cluster": 2, "x": 46.07804381723351, "y": 59.051909277193786, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6147", "attributes": { "cluster": 1, "x": 85.67507866692208, "y": -75.46434434128139, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6148", "attributes": { "cluster": 2, "x": -45.92195618276649, "y": 83.30062058315808, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6149", "attributes": { "cluster": 0, "x": -100.61794484645876, "y": -63.339988688299314, "size": 3.6666666666666665, "color": "#e36d0" } }, { "key": "6150", "attributes": { "cluster": 0, "x": -22.617944846458734, "y": -7.914362846095244, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6151", "attributes": { "cluster": 1, "x": 37.67507866692191, "y": 4.209992806886838, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6152", "attributes": { "cluster": 1, "x": 37.67507866692201, "y": -75.46434434128147, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6153", "attributes": { "cluster": 1, "x": 85.67507866692196, "y": 4.209992806886916, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6154", "attributes": { "cluster": 0, "x": -94.6179448464588, "y": -0.9861596158197585, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6155", "attributes": { "cluster": 0, "x": -28.617944846458684, "y": -70.2681919185748, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6156", "attributes": { "cluster": 0, "x": -22.617944846458705, "y": -63.339988688299314, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6157", "attributes": { "cluster": 1, "x": 20.675078666921983, "y": -59.875887073161536, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6158", "attributes": { "cluster": 0, "x": -100.61794484645878, "y": -7.914362846095244, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6159", "attributes": { "cluster": 2, "x": 24.07804381723359, "y": 31.339096356091815, "size": 3, "color": "#4b94db" } }, { "key": "6160", "attributes": { "cluster": 2, "x": -23.921956182766568, "y": 111.01343350426005, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6161", "attributes": { "cluster": 2, "x": -23.92195618276647, "y": 31.339096356091737, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6162", "attributes": { "cluster": 2, "x": 24.07804381723349, "y": 111.01343350426012, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6163", "attributes": { "cluster": 0, "x": -90.61794484645874, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6164", "attributes": { "cluster": 0, "x": -32.61794484645874, "y": 2.477941999318027, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6165", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -11.378464461233019, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6166", "attributes": { "cluster": 1, "x": 87.67507866692196, "y": 4.209992806886923, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6167", "attributes": { "cluster": 0, "x": -90.61794484645881, "y": 2.4779419993179914, "size": 1, "color": "#e36d0" } }, { "key": "6168", "attributes": { "cluster": 2, "x": -40.9219561827665, "y": 46.92755362421167, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6169", "attributes": { "cluster": 1, "x": 35.67507866692201, "y": -75.46434434128147, "size": 1, "color": "#762e2e" } }, { "key": "6170", "attributes": { "cluster": 0, "x": -32.61794484645867, "y": -73.73229353371255, "size": 1, "color": "#e36d0" } }, { "key": "6171", "attributes": { "cluster": 0, "x": -17.617944846458734, "y": -16.57461688393964, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6172", "attributes": { "cluster": 2, "x": 41.078043817233514, "y": 95.4249762361402, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6173", "attributes": { "cluster": 0, "x": -105.61794484645876, "y": -54.67973465045492, "size": 1, "color": "#e36d0" } }, { "key": "6174", "attributes": { "cluster": 0, "x": -17.61794484645874, "y": -54.67973465045493, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6175", "attributes": { "cluster": 2, "x": 26.07804381723349, "y": 111.01343350426014, "size": 1, "color": "#4b94db" } }, { "key": "6176", "attributes": { "cluster": 1, "x": 87.67507866692208, "y": -75.46434434128142, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6177", "attributes": { "cluster": 2, "x": -25.92195618276647, "y": 31.33909635609173, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6178", "attributes": { "cluster": 0, "x": -105.61794484645874, "y": -16.574616883939626, "size": 2, "color": "#e36d0" } }, { "key": "6179", "attributes": { "cluster": 0, "x": -99.61794484645876, "y": -65.0720394958682, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6180", "attributes": { "cluster": 2, "x": 26.07804381723359, "y": 31.339096356091787, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6181", "attributes": { "cluster": 0, "x": -23.617944846458734, "y": -6.182312038526366, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6182", "attributes": { "cluster": 0, "x": -99.61794484645878, "y": -6.18231203852638, "size": 2, "color": "#e36d0" } }, { "key": "6183", "attributes": { "cluster": 0, "x": -23.617944846458705, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6184", "attributes": { "cluster": 1, "x": 102.67507866692202, "y": -59.875887073161564, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6185", "attributes": { "cluster": 2, "x": 41.07804381723353, "y": 46.927553624211654, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6186", "attributes": { "cluster": 0, "x": -14.617944846458741, "y": -46.01948061261055, "size": 1, "color": "#e36d0" } }, { "key": "6187", "attributes": { "cluster": 2, "x": -25.921956182766568, "y": 111.01343350426008, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6188", "attributes": { "cluster": 1, "x": 35.67507866692191, "y": 4.209992806886866, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6189", "attributes": { "cluster": 1, "x": 20.67507866692197, "y": -11.378464461232998, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6190", "attributes": { "cluster": 1, "x": 19.675078666921983, "y": -58.14383626559267, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6191", "attributes": { "cluster": 0, "x": -14.617944846458741, "y": -35.627175767197286, "size": 2, "color": "#e36d0" } }, { "key": "6192", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": -33.89512495962841, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6193", "attributes": { "cluster": 2, "x": -40.921956182766515, "y": 95.42497623614021, "size": 1, "color": "#4b94db" } }, { "key": "6194", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -13.110515268801887, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6195", "attributes": { "cluster": 0, "x": -14.617944846458741, "y": -25.234870921784026, "size": 0, "color": "#e36d0" } }, { "key": "6196", "attributes": { "cluster": 0, "x": -108.61794484645874, "y": -25.234870921784008, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6197", "attributes": { "cluster": 2, "x": -41.9219561827665, "y": 48.65960443178054, "size": 3, "color": "#4b94db" } }, { "key": "6198", "attributes": { "cluster": 1, "x": 19.67507866692199, "y": -13.110515268801855, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "6199", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -58.143836265592704, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6200", "attributes": { "cluster": 0, "x": -108.61794484645874, "y": -35.62717576719727, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6201", "attributes": { "cluster": 2, "x": 42.078043817233514, "y": 93.69292542857133, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6202", "attributes": { "cluster": 2, "x": -41.92195618276649, "y": 93.69292542857136, "size": 2, "color": "#4b94db" } }, { "key": "6203", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -37.35922657476615, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6204", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -9.646413653664123, "size": 2, "color": "#762e2e" } }, { "key": "6205", "attributes": { "cluster": 1, "x": 21.675078666921983, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6206", "attributes": { "cluster": 0, "x": -108.61794484645874, "y": -46.019480612610536, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "6207", "attributes": { "cluster": 0, "x": -78.61794484645873, "y": -80.66049676398808, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6208", "attributes": { "cluster": 2, "x": 42.07804381723351, "y": 48.65960443178051, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6209", "attributes": { "cluster": 0, "x": -44.61794484645866, "y": -80.66049676398805, "size": 1, "color": "#e36d0" } }, { "key": "6210", "attributes": { "cluster": 2, "x": 40.078043817233514, "y": 97.15702704370909, "size": 1, "color": "#4b94db" } }, { "key": "6211", "attributes": { "cluster": 0, "x": -44.617944846458755, "y": 9.40614522959352, "size": 1, "color": "#e36d0" } }, { "key": "6212", "attributes": { "cluster": 0, "x": -78.61794484645881, "y": 9.406145229593491, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "6213", "attributes": { "cluster": 0, "x": -106.61794484645874, "y": -52.94768384288604, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6214", "attributes": { "cluster": 1, "x": 101.67507866692202, "y": -61.60793788073043, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6215", "attributes": { "cluster": 0, "x": -16.61794484645874, "y": -18.306667691508515, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6216", "attributes": { "cluster": 2, "x": -39.9219561827665, "y": 45.19550281664277, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6217", "attributes": { "cluster": 0, "x": -106.61794484645876, "y": -18.306667691508505, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6218", "attributes": { "cluster": 0, "x": -16.617944846458727, "y": -52.94768384288605, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6219", "attributes": { "cluster": 0, "x": -73.61794484645877, "y": 11.138196037162373, "size": 1, "color": "#e36d0" } }, { "key": "6220", "attributes": { "cluster": 2, "x": 40.07804381723353, "y": 45.19550281664278, "size": 0, "color": "#4b94db" } }, { "key": "6221", "attributes": { "cluster": 0, "x": -49.617944846458705, "y": -82.39254757155693, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6222", "attributes": { "cluster": 1, "x": 21.67507866692197, "y": -9.646413653664126, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6223", "attributes": { "cluster": 0, "x": -49.61794484645873, "y": 11.138196037162388, "size": 1, "color": "#e36d0" } }, { "key": "6224", "attributes": { "cluster": 0, "x": -73.61794484645876, "y": -82.39254757155695, "size": 2, "color": "#e36d0" } }, { "key": "6225", "attributes": { "cluster": 1, "x": 41.675078666922005, "y": -78.92844595641921, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6226", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": -40.82332818990392, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6227", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": -30.431023344490658, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6228", "attributes": { "cluster": 2, "x": -39.921956182766515, "y": 97.15702704370909, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6229", "attributes": { "cluster": 2, "x": -19.921956182766472, "y": 27.874994740954, "size": 1, "color": "#4b94db" } }, { "key": "6230", "attributes": { "cluster": 2, "x": 20.078043817233493, "y": 114.47753511939786, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6231", "attributes": { "cluster": 1, "x": 81.67507866692198, "y": 7.674094422024652, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6232", "attributes": { "cluster": 1, "x": 41.675078666921905, "y": 7.674094422024609, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "6233", "attributes": { "cluster": 2, "x": -19.92195618276658, "y": 114.47753511939783, "size": 0, "color": "#4b94db" } }, { "key": "6234", "attributes": { "cluster": 2, "x": 20.0780438172336, "y": 27.874994740954044, "size": 2, "color": "#4b94db" } }, { "key": "6235", "attributes": { "cluster": 2, "x": 43.078043817233514, "y": 91.96087462100245, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6236", "attributes": { "cluster": 2, "x": -42.9219561827665, "y": 50.39165523934942, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6237", "attributes": { "cluster": 1, "x": 81.67507866692208, "y": -78.92844595641917, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6238", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -30.431023344490637, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6239", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -14.842566076370769, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6240", "attributes": { "cluster": 1, "x": 18.675078666921983, "y": -56.411785458023786, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6241", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -56.411785458023814, "size": 2, "color": "#762e2e" } }, { "key": "6242", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -40.823328189903904, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6243", "attributes": { "cluster": 1, "x": 18.67507866692199, "y": -14.842566076370748, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6244", "attributes": { "cluster": 1, "x": 71.675078666922, "y": -82.39254757155693, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6245", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": 11.138196037162373, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6246", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": -82.39254757155695, "size": 1, "color": "#762e2e" } }, { "key": "6247", "attributes": { "cluster": 0, "x": -98.61794484645876, "y": -66.80409030343708, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6248", "attributes": { "cluster": 1, "x": 71.675078666922, "y": 11.138196037162388, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6249", "attributes": { "cluster": 1, "x": 28.675078666921983, "y": -70.26819191857481, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6250", "attributes": { "cluster": 2, "x": 43.07804381723351, "y": 50.391655239349404, "size": 2, "color": "#4b94db" } }, { "key": "6251", "attributes": { "cluster": 0, "x": -24.617944846458734, "y": -4.450261230957487, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6252", "attributes": { "cluster": 2, "x": -42.92195618276649, "y": 91.96087462100246, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6253", "attributes": { "cluster": 2, "x": 10.078043817233526, "y": 24.41089312581628, "size": 1, "color": "#4b94db" } }, { "key": "6254", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": -0.9861596158197443, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6255", "attributes": { "cluster": 0, "x": -98.61794484645878, "y": -4.450261230957494, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6256", "attributes": { "cluster": 2, "x": -9.92195618276651, "y": 117.94163673453559, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6257", "attributes": { "cluster": 0, "x": -24.61794484645869, "y": -66.80409030343706, "size": 2, "color": "#e36d0" } }, { "key": "6258", "attributes": { "cluster": 2, "x": -9.921956182766502, "y": 24.410893125816266, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6259", "attributes": { "cluster": 0, "x": -29.61794484645874, "y": 0.7458911917491307, "size": 3, "color": "#e36d0" } }, { "key": "6260", "attributes": { "cluster": 2, "x": 10.07804381723352, "y": 117.94163673453559, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6261", "attributes": { "cluster": 0, "x": -93.61794484645874, "y": -72.00024272614368, "size": 2, "color": "#e36d0" } }, { "key": "6262", "attributes": { "cluster": 2, "x": -32.9219561827665, "y": 36.5352487787984, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6263", "attributes": { "cluster": 2, "x": 33.078043817233514, "y": 105.81728108155346, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6264", "attributes": { "cluster": 2, "x": -38.9219561827665, "y": 43.4634520090739, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "6265", "attributes": { "cluster": 0, "x": -29.617944846458677, "y": -72.00024272614368, "size": 1, "color": "#e36d0" } }, { "key": "6266", "attributes": { "cluster": 1, "x": 22.675078666921983, "y": -63.339988688299314, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6267", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -7.914362846095244, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6268", "attributes": { "cluster": 0, "x": -93.61794484645881, "y": 0.7458911917491235, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6269", "attributes": { "cluster": 0, "x": -62.61794484645875, "y": -84.12459837912584, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6270", "attributes": { "cluster": 1, "x": 28.675078666921934, "y": -0.9861596158197585, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6271", "attributes": { "cluster": 1, "x": 94.67507866692205, "y": -70.2681919185748, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6272", "attributes": { "cluster": 2, "x": 39.078043817233514, "y": 98.88907785127796, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6273", "attributes": { "cluster": 2, "x": -32.92195618276655, "y": 105.81728108155346, "size": 1, "color": "#4b94db" } }, { "key": "6274", "attributes": { "cluster": 1, "x": 100.67507866692202, "y": -63.339988688299314, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6275", "attributes": { "cluster": 1, "x": 22.675078666921955, "y": -7.914362846095244, "size": 1, "color": "#762e2e" } }, { "key": "6276", "attributes": { "cluster": 0, "x": -60.61794484645872, "y": -84.12459837912583, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "6277", "attributes": { "cluster": 2, "x": 33.078043817233564, "y": 36.53524877879841, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6278", "attributes": { "cluster": 2, "x": 39.07804381723354, "y": 43.4634520090739, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6279", "attributes": { "cluster": 0, "x": -60.617944846458734, "y": 12.870246844731277, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6280", "attributes": { "cluster": 1, "x": 32.67507866692199, "y": -73.73229353371258, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6281", "attributes": { "cluster": 1, "x": 90.67507866692199, "y": 2.477941999318027, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6282", "attributes": { "cluster": 2, "x": -38.92195618276653, "y": 98.88907785127796, "size": 2, "color": "#4b94db" } }, { "key": "6283", "attributes": { "cluster": 0, "x": -62.61794484645876, "y": 12.87024684473127, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6284", "attributes": { "cluster": 0, "x": -107.61794484645874, "y": -51.21563303531717, "size": 1, "color": "#e36d0" } }, { "key": "6285", "attributes": { "cluster": 2, "x": -28.921956182766486, "y": 33.071147163660626, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6286", "attributes": { "cluster": 1, "x": 32.67507866692192, "y": 2.4779419993179914, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6287", "attributes": { "cluster": 1, "x": 90.67507866692206, "y": -73.73229353371255, "size": 1, "color": "#762e2e" } }, { "key": "6288", "attributes": { "cluster": 0, "x": -15.617944846458741, "y": -20.03871849907739, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6289", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -16.57461688393964, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6290", "attributes": { "cluster": 1, "x": 17.675078666921983, "y": -54.67973465045492, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6291", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -54.67973465045493, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6292", "attributes": { "cluster": 0, "x": -107.61794484645876, "y": -20.038718499077383, "size": 0, "color": "#e36d0" } }, { "key": "6293", "attributes": { "cluster": 1, "x": 17.67507866692199, "y": -16.574616883939626, "size": 2, "color": "#762e2e" } }, { "key": "6294", "attributes": { "cluster": 2, "x": 29.078043817233507, "y": 109.28138269669124, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "6295", "attributes": { "cluster": 2, "x": -28.92195618276656, "y": 109.2813826966912, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "6296", "attributes": { "cluster": 1, "x": 23.675078666921983, "y": -65.0720394958682, "size": 2, "color": "#762e2e" } }, { "key": "6297", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -6.182312038526366, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6298", "attributes": { "cluster": 0, "x": -15.617944846458727, "y": -51.215633035317175, "size": 2, "color": "#e36d0" } }, { "key": "6299", "attributes": { "cluster": 1, "x": 23.675078666921955, "y": -6.18231203852638, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "6300", "attributes": { "cluster": 2, "x": 29.07804381723358, "y": 33.07114716366066, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6301", "attributes": { "cluster": 0, "x": -64.61794484645876, "y": 12.87024684473127, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6302", "attributes": { "cluster": 2, "x": 44.078043817233514, "y": 90.22882381343356, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6303", "attributes": { "cluster": 2, "x": -43.9219561827665, "y": 52.123706046918294, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6304", "attributes": { "cluster": 2, "x": 44.07804381723351, "y": 52.12370604691828, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6305", "attributes": { "cluster": 1, "x": 99.67507866692202, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6306", "attributes": { "cluster": 0, "x": -58.61794484645873, "y": -84.12459837912583, "size": 2, "color": "#e36d0" } }, { "key": "6307", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -46.01948061261055, "size": 2, "color": "#762e2e" } }, { "key": "6308", "attributes": { "cluster": 0, "x": -58.61794484645873, "y": 12.870246844731277, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6309", "attributes": { "cluster": 0, "x": -64.61794484645876, "y": -84.12459837912584, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6310", "attributes": { "cluster": 2, "x": -43.92195618276649, "y": 90.22882381343359, "size": 2, "color": "#4b94db" } }, { "key": "6311", "attributes": { "cluster": 2, "x": -37.9219561827665, "y": 41.73140120150502, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6312", "attributes": { "cluster": 2, "x": 38.078043817233514, "y": 100.62112865884684, "size": 1, "color": "#4b94db" } }, { "key": "6313", "attributes": { "cluster": 2, "x": -37.92195618276653, "y": 100.62112865884683, "size": 2, "color": "#4b94db" } }, { "key": "6314", "attributes": { "cluster": 0, "x": -38.617944846458656, "y": -77.19639514885027, "size": 1, "color": "#e36d0" } }, { "key": "6315", "attributes": { "cluster": 0, "x": -84.61794484645883, "y": 5.942043614455713, "size": 1, "color": "#e36d0" } }, { "key": "6316", "attributes": { "cluster": 2, "x": 38.07804381723354, "y": 41.73140120150504, "size": 1, "color": "#4b94db" } }, { "key": "6317", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -35.627175767197286, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6318", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -33.89512495962841, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6319", "attributes": { "cluster": 0, "x": -84.61794484645871, "y": -77.19639514885034, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6320", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -25.234870921784026, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6321", "attributes": { "cluster": 2, "x": 47.07804381723351, "y": 60.78396008476266, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6322", "attributes": { "cluster": 0, "x": -38.61794484645877, "y": 5.942043614455784, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6323", "attributes": { "cluster": 2, "x": 47.07804381723351, "y": 71.17626493017592, "size": 2, "color": "#4b94db" } }, { "key": "6324", "attributes": { "cluster": 1, "x": 14.67507866692199, "y": -25.234870921784008, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6325", "attributes": { "cluster": 0, "x": -83.61794484645884, "y": 7.674094422024595, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6326", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 72.9083157377448, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6327", "attributes": { "cluster": 1, "x": 14.67507866692199, "y": -35.62717576719727, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6328", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -37.35922657476615, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6329", "attributes": { "cluster": 1, "x": 14.67507866692199, "y": -46.019480612610536, "size": 3, "color": "#762e2e" } }, { "key": "6330", "attributes": { "cluster": 0, "x": -39.61794484645864, "y": -78.92844595641915, "size": 1, "color": "#e36d0" } }, { "key": "6331", "attributes": { "cluster": 0, "x": -39.61794484645876, "y": 7.674094422024666, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6332", "attributes": { "cluster": 2, "x": 47.07804381723351, "y": 81.56856977558918, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6333", "attributes": { "cluster": 1, "x": 44.675078666922005, "y": -80.66049676398808, "size": 1, "color": "#762e2e" } }, { "key": "6334", "attributes": { "cluster": 2, "x": -46.92195618276649, "y": 81.56856977558921, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6335", "attributes": { "cluster": 2, "x": -46.92195618276649, "y": 71.17626493017595, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6336", "attributes": { "cluster": 1, "x": 78.67507866692208, "y": -80.66049676398805, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6337", "attributes": { "cluster": 1, "x": 78.67507866692198, "y": 9.40614522959352, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6338", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 69.44421412260706, "size": 1, "color": "#4b94db" } }, { "key": "6339", "attributes": { "cluster": 2, "x": -46.92195618276649, "y": 60.78396008476268, "size": 3.6666666666666665, "color": "#4b94db" } }, { "key": "6340", "attributes": { "cluster": 2, "x": -16.92195618276648, "y": 26.142943933385133, "size": 2, "color": "#4b94db" } }, { "key": "6341", "attributes": { "cluster": 0, "x": -83.61794484645873, "y": -78.92844595641922, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6342", "attributes": { "cluster": 1, "x": 44.67507866692191, "y": 9.406145229593491, "size": 1, "color": "#762e2e" } }, { "key": "6343", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -84.12459837912581, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6344", "attributes": { "cluster": 1, "x": 16.67507866692199, "y": -52.94768384288604, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6345", "attributes": { "cluster": 2, "x": 17.07804381723359, "y": 26.142943933385162, "size": 3, "color": "#4b94db" } }, { "key": "6346", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -18.306667691508515, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6347", "attributes": { "cluster": 2, "x": 17.0780438172335, "y": 116.20958592696672, "size": 1, "color": "#4b94db" } }, { "key": "6348", "attributes": { "cluster": 2, "x": -16.921956182766568, "y": 116.2095859269667, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6349", "attributes": { "cluster": 0, "x": -56.617944846458734, "y": -84.12459837912581, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6350", "attributes": { "cluster": 2, "x": -44.92195618276649, "y": 53.85575685448717, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6351", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": 12.870246844731263, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6352", "attributes": { "cluster": 0, "x": -66.61794484645876, "y": 12.870246844731263, "size": 3, "color": "#e36d0" } }, { "key": "6353", "attributes": { "cluster": 1, "x": 16.675078666921976, "y": -18.306667691508505, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6354", "attributes": { "cluster": 0, "x": -89.61794484645873, "y": -75.46434434128147, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6355", "attributes": { "cluster": 0, "x": -33.61794484645876, "y": 4.209992806886916, "size": 1, "color": "#e36d0" } }, { "key": "6356", "attributes": { "cluster": 0, "x": -97.61794484645876, "y": -68.53614111100595, "size": 1, "color": "#e36d0" } }, { "key": "6357", "attributes": { "cluster": 1, "x": 106.675078666922, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6358", "attributes": { "cluster": 1, "x": 49.675078666921955, "y": 11.138196037162373, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6359", "attributes": { "cluster": 0, "x": -25.617944846458734, "y": -2.718210423388612, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6360", "attributes": { "cluster": 2, "x": 45.07804381723351, "y": 88.4967730058647, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6361", "attributes": { "cluster": 1, "x": 73.67507866692202, "y": -82.39254757155693, "size": 2, "color": "#762e2e" } }, { "key": "6362", "attributes": { "cluster": 0, "x": -89.61794484645881, "y": 4.209992806886859, "size": 0, "color": "#e36d0" } }, { "key": "6363", "attributes": { "cluster": 2, "x": -44.92195618276651, "y": 88.49677300586471, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6364", "attributes": { "cluster": 2, "x": 45.07804381723352, "y": 53.855756854487154, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6365", "attributes": { "cluster": 2, "x": -11.921956182766525, "y": 117.94163673453559, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6366", "attributes": { "cluster": 2, "x": 12.078043817233542, "y": 24.41089312581628, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6367", "attributes": { "cluster": 1, "x": 73.675078666922, "y": 11.138196037162388, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6368", "attributes": { "cluster": 1, "x": 49.675078666921976, "y": -82.39254757155695, "size": 1, "color": "#762e2e" } }, { "key": "6369", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -40.82332818990392, "size": 1, "color": "#762e2e" } }, { "key": "6370", "attributes": { "cluster": 0, "x": -33.61794484645866, "y": -75.46434434128142, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6371", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -30.431023344490658, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "6372", "attributes": { "cluster": 0, "x": -25.6179448464587, "y": -68.53614111100595, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6373", "attributes": { "cluster": 2, "x": 12.07804381723352, "y": 117.94163673453559, "size": 1, "color": "#4b94db" } }, { "key": "6374", "attributes": { "cluster": 0, "x": -97.61794484645878, "y": -2.7182104233886193, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6375", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -30.431023344490637, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6376", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -40.823328189903904, "size": 2, "color": "#762e2e" } }, { "key": "6377", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -26.966921729352883, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6378", "attributes": { "cluster": 1, "x": 24.675078666921983, "y": -66.80409030343708, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "6379", "attributes": { "cluster": 2, "x": -11.921956182766502, "y": 24.410893125816266, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6380", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -44.287429805041654, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6381", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": -44.287429805041675, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6382", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": -26.966921729352904, "size": 0, "color": "#e36d0" } }, { "key": "6383", "attributes": { "cluster": 0, "x": -75.61794484645878, "y": 11.138196037162366, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6384", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 65.98011250746929, "size": 2, "color": "#4b94db" } }, { "key": "6385", "attributes": { "cluster": 0, "x": -47.6179448464587, "y": -82.39254757155692, "size": 1, "color": "#e36d0" } }, { "key": "6386", "attributes": { "cluster": 0, "x": -47.61794484645874, "y": 11.138196037162395, "size": 3, "color": "#e36d0" } }, { "key": "6387", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 76.37241735288255, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6388", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 76.37241735288258, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "6389", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 65.98011250746931, "size": 2, "color": "#4b94db" } }, { "key": "6390", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -4.450261230957487, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6391", "attributes": { "cluster": 2, "x": -36.9219561827665, "y": 39.99935039393614, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6392", "attributes": { "cluster": 2, "x": 37.078043817233514, "y": 102.35317946641572, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6393", "attributes": { "cluster": 2, "x": -36.92195618276654, "y": 102.35317946641572, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6394", "attributes": { "cluster": 2, "x": 37.07804381723356, "y": 39.99935039393615, "size": 0, "color": "#4b94db" } }, { "key": "6395", "attributes": { "cluster": 1, "x": 24.67507866692194, "y": -4.450261230957494, "size": 1, "color": "#762e2e" } }, { "key": "6396", "attributes": { "cluster": 2, "x": 32.07804381723351, "y": 107.54933188912234, "size": 3.6666666666666665, "color": "#4b94db" } }, { "key": "6397", "attributes": { "cluster": 1, "x": 98.67507866692205, "y": -66.80409030343706, "size": 1, "color": "#762e2e" } }, { "key": "6398", "attributes": { "cluster": 1, "x": 93.67507866692199, "y": 0.7458911917491307, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6399", "attributes": { "cluster": 2, "x": -31.92195618276649, "y": 34.80319797122952, "size": 1, "color": "#4b94db" } }, { "key": "6400", "attributes": { "cluster": 2, "x": 32.07804381723357, "y": 34.80319797122953, "size": 1, "color": "#4b94db" } }, { "key": "6401", "attributes": { "cluster": 0, "x": -75.61794484645874, "y": -82.39254757155695, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6402", "attributes": { "cluster": 2, "x": -31.921956182766554, "y": 107.54933188912233, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6403", "attributes": { "cluster": 2, "x": -0.9219561827664973, "y": 22.678842318247376, "size": 1, "color": "#4b94db" } }, { "key": "6404", "attributes": { "cluster": 1, "x": 29.67507866692199, "y": -72.00024272614368, "size": 1, "color": "#762e2e" } }, { "key": "6405", "attributes": { "cluster": 2, "x": 1.07804381723353, "y": 22.678842318247384, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6406", "attributes": { "cluster": 2, "x": 1.078043817233516, "y": 119.67368754210449, "size": 1, "color": "#4b94db" } }, { "key": "6407", "attributes": { "cluster": 1, "x": 93.67507866692205, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6408", "attributes": { "cluster": 0, "x": -42.61794484645866, "y": -80.66049676398805, "size": 2, "color": "#e36d0" } }, { "key": "6409", "attributes": { "cluster": 2, "x": -0.9219561827665113, "y": 119.67368754210449, "size": 2, "color": "#4b94db" } }, { "key": "6410", "attributes": { "cluster": 2, "x": -45.92195618276649, "y": 55.58780766205604, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6411", "attributes": { "cluster": 1, "x": 29.675078666921927, "y": 0.7458911917491235, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6412", "attributes": { "cluster": 2, "x": 46.07804381723351, "y": 86.76472219829581, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6413", "attributes": { "cluster": 2, "x": -45.92195618276651, "y": 86.76472219829583, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6414", "attributes": { "cluster": 0, "x": -80.61794484645881, "y": 9.406145229593484, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6415", "attributes": { "cluster": 1, "x": 60.67507866692198, "y": -84.12459837912584, "size": 1, "color": "#762e2e" } }, { "key": "6416", "attributes": { "cluster": 1, "x": 62.67507866692201, "y": -84.12459837912583, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6417", "attributes": { "cluster": 0, "x": -80.61794484645873, "y": -80.66049676398809, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6418", "attributes": { "cluster": 0, "x": -42.61794484645875, "y": 9.406145229593534, "size": 3, "color": "#e36d0" } }, { "key": "6419", "attributes": { "cluster": 1, "x": 62.675078666922, "y": 12.870246844731277, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6420", "attributes": { "cluster": 2, "x": 46.07804381723352, "y": 55.587807662056036, "size": 1, "color": "#4b94db" } }, { "key": "6421", "attributes": { "cluster": 0, "x": -54.617944846458734, "y": 12.870246844731263, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6422", "attributes": { "cluster": 1, "x": 60.67507866692197, "y": 12.87024684473127, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6423", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": 12.870246844731255, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6424", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": -84.12459837912581, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6425", "attributes": { "cluster": 2, "x": -2.921956182766503, "y": 119.67368754210449, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6426", "attributes": { "cluster": 0, "x": -54.61794484645874, "y": -84.12459837912581, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6427", "attributes": { "cluster": 1, "x": 15.67507866692199, "y": -51.21563303531717, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6428", "attributes": { "cluster": 0, "x": -14.617944846458741, "y": -49.48358222774831, "size": 2, "color": "#e36d0" } }, { "key": "6429", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -20.03871849907739, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6430", "attributes": { "cluster": 1, "x": 15.675078666921976, "y": -20.038718499077383, "size": 1, "color": "#762e2e" } }, { "key": "6431", "attributes": { "cluster": 0, "x": -14.617944846458741, "y": -21.770769306646272, "size": 2, "color": "#e36d0" } }, { "key": "6432", "attributes": { "cluster": 0, "x": -108.61794484645874, "y": -21.77076930664625, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6433", "attributes": { "cluster": 1, "x": 107.675078666922, "y": -51.215633035317175, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6434", "attributes": { "cluster": 2, "x": 3.078043817233522, "y": 22.678842318247384, "size": 2, "color": "#4b94db" } }, { "key": "6435", "attributes": { "cluster": 0, "x": -108.61794484645874, "y": -49.483582227748286, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6436", "attributes": { "cluster": 2, "x": 3.0780438172335263, "y": 119.67368754210449, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6437", "attributes": { "cluster": 1, "x": 58.675078666921976, "y": 12.87024684473127, "size": 1, "color": "#762e2e" } }, { "key": "6438", "attributes": { "cluster": 1, "x": 64.675078666922, "y": -84.12459837912583, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "6439", "attributes": { "cluster": 2, "x": -2.9219561827665075, "y": 22.678842318247376, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6440", "attributes": { "cluster": 2, "x": 23.078043817233596, "y": 29.60704554852294, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6441", "attributes": { "cluster": 1, "x": 64.675078666922, "y": 12.870246844731277, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6442", "attributes": { "cluster": 1, "x": 58.675078666921976, "y": -84.12459837912584, "size": 2, "color": "#762e2e" } }, { "key": "6443", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": -37.35922657476617, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6444", "attributes": { "cluster": 2, "x": -22.921956182766575, "y": 112.74548431182893, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6445", "attributes": { "cluster": 2, "x": -22.921956182766458, "y": 29.60704554852287, "size": 2, "color": "#4b94db" } }, { "key": "6446", "attributes": { "cluster": 1, "x": 84.67507866692208, "y": -77.19639514885027, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6447", "attributes": { "cluster": 2, "x": 23.07804381723348, "y": 112.74548431182899, "size": 3, "color": "#4b94db" } }, { "key": "6448", "attributes": { "cluster": 1, "x": 38.675078666921905, "y": 5.942043614455713, "size": 2, "color": "#762e2e" } }, { "key": "6449", "attributes": { "cluster": 2, "x": -21.921956182766586, "y": 114.4775351193978, "size": 1, "color": "#4b94db" } }, { "key": "6450", "attributes": { "cluster": 2, "x": 22.078043817233606, "y": 27.874994740954058, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6451", "attributes": { "cluster": 2, "x": 22.07804381723349, "y": 114.47753511939788, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6452", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -33.89512495962839, "size": 2, "color": "#e36d0" } }, { "key": "6453", "attributes": { "cluster": 1, "x": 38.67507866692202, "y": -77.19639514885034, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6454", "attributes": { "cluster": 2, "x": -21.92195618276647, "y": 27.874994740953987, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6455", "attributes": { "cluster": 0, "x": -92.61794484645874, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6456", "attributes": { "cluster": 1, "x": 84.67507866692196, "y": 5.942043614455784, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6457", "attributes": { "cluster": 1, "x": 39.67507866692189, "y": 7.674094422024595, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6458", "attributes": { "cluster": 0, "x": -30.617944846458744, "y": 2.4779419993180127, "size": 1, "color": "#e36d0" } }, { "key": "6459", "attributes": { "cluster": 0, "x": -92.61794484645881, "y": 2.4779419993179843, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6460", "attributes": { "cluster": 0, "x": -30.61794484645867, "y": -73.73229353371255, "size": 2, "color": "#e36d0" } }, { "key": "6461", "attributes": { "cluster": 0, "x": -12.617944846458741, "y": -39.09127738233504, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6462", "attributes": { "cluster": 1, "x": 83.67507866692209, "y": -78.92844595641915, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6463", "attributes": { "cluster": 1, "x": 83.67507866692196, "y": 7.674094422024666, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6464", "attributes": { "cluster": 0, "x": -12.617944846458741, "y": -32.16307415205954, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6465", "attributes": { "cluster": 1, "x": 39.67507866692201, "y": -78.92844595641922, "size": 1, "color": "#762e2e" } }, { "key": "6466", "attributes": { "cluster": 0, "x": -110.61794484645874, "y": -32.163074152059515, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6467", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": -84.12459837912581, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6468", "attributes": { "cluster": 2, "x": -4.9219561827664915, "y": 22.67884231824739, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6469", "attributes": { "cluster": 2, "x": 5.078043817233518, "y": 22.67884231824739, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6470", "attributes": { "cluster": 0, "x": -110.61794484645874, "y": -39.09127738233502, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6471", "attributes": { "cluster": 2, "x": 5.07804381723351, "y": 119.67368754210447, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6472", "attributes": { "cluster": 2, "x": -4.9219561827664995, "y": 119.67368754210447, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6473", "attributes": { "cluster": 0, "x": -96.61794484645876, "y": -70.26819191857481, "size": 1, "color": "#e36d0" } }, { "key": "6474", "attributes": { "cluster": 2, "x": -27.92195618276647, "y": 31.339096356091737, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6475", "attributes": { "cluster": 1, "x": 66.675078666922, "y": -84.12459837912581, "size": 1, "color": "#762e2e" } }, { "key": "6476", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": 12.870246844731263, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6477", "attributes": { "cluster": 2, "x": 28.07804381723349, "y": 111.01343350426012, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6478", "attributes": { "cluster": 2, "x": -35.9219561827665, "y": 38.267299586367265, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6479", "attributes": { "cluster": 2, "x": 36.078043817233514, "y": 104.08523027398459, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6480", "attributes": { "cluster": 0, "x": -26.617944846458734, "y": -0.9861596158197372, "size": 2, "color": "#e36d0" } }, { "key": "6481", "attributes": { "cluster": 2, "x": -27.921956182766568, "y": 111.01343350426006, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6482", "attributes": { "cluster": 0, "x": -96.6179448464588, "y": -0.9861596158197443, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6483", "attributes": { "cluster": 0, "x": -26.617944846458684, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6484", "attributes": { "cluster": 0, "x": -52.61794484645873, "y": 12.870246844731263, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6485", "attributes": { "cluster": 1, "x": 56.67507866692198, "y": 12.870246844731263, "size": 1, "color": "#762e2e" } }, { "key": "6486", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": 12.870246844731255, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6487", "attributes": { "cluster": 1, "x": 33.67507866692201, "y": -75.46434434128147, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6488", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -84.12459837912581, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "6489", "attributes": { "cluster": 1, "x": 89.67507866692196, "y": 4.209992806886916, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6490", "attributes": { "cluster": 0, "x": -52.61794484645873, "y": -84.12459837912581, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6491", "attributes": { "cluster": 2, "x": 28.07804381723359, "y": 31.339096356091794, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6492", "attributes": { "cluster": 0, "x": -18.617944846458734, "y": -11.378464461233008, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6493", "attributes": { "cluster": 1, "x": 25.675078666921983, "y": -68.53614111100595, "size": 1, "color": "#762e2e" } }, { "key": "6494", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": -2.718210423388612, "size": 1, "color": "#762e2e" } }, { "key": "6495", "attributes": { "cluster": 1, "x": 33.67507866692191, "y": 4.209992806886859, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6496", "attributes": { "cluster": 2, "x": 36.07804381723355, "y": 38.26729958636727, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "6497", "attributes": { "cluster": 2, "x": -35.921956182766536, "y": 104.08523027398459, "size": 1, "color": "#4b94db" } }, { "key": "6498", "attributes": { "cluster": 1, "x": 89.67507866692208, "y": -75.46434434128142, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6499", "attributes": { "cluster": 1, "x": 97.67507866692203, "y": -68.53614111100595, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6500", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 79.83651896802033, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6501", "attributes": { "cluster": 1, "x": 25.675078666921948, "y": -2.7182104233886193, "size": 1, "color": "#762e2e" } }, { "key": "6502", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 62.51601089233156, "size": 1, "color": "#4b94db" } }, { "key": "6503", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -26.966921729352883, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6504", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 62.516010892331536, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6505", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 79.8365189680203, "size": 1, "color": "#4b94db" } }, { "key": "6506", "attributes": { "cluster": 2, "x": -13.921956182766534, "y": 117.94163673453558, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6507", "attributes": { "cluster": 2, "x": 14.078043817233551, "y": 24.410893125816287, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6508", "attributes": { "cluster": 2, "x": 14.07804381723351, "y": 117.9416367345356, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6509", "attributes": { "cluster": 0, "x": -104.61794484645876, "y": -59.87588707316155, "size": 1, "color": "#e36d0" } }, { "key": "6510", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -44.287429805041654, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6511", "attributes": { "cluster": 2, "x": -13.921956182766493, "y": 24.41089312581626, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6512", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -44.287429805041675, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6513", "attributes": { "cluster": 2, "x": 19.07804381723359, "y": 26.14294393338517, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6514", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -26.966921729352904, "size": 3, "color": "#762e2e" } }, { "key": "6515", "attributes": { "cluster": 1, "x": 47.67507866692195, "y": 11.138196037162366, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6516", "attributes": { "cluster": 1, "x": 75.67507866692203, "y": -82.39254757155692, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6517", "attributes": { "cluster": 0, "x": -18.61794484645872, "y": -59.87588707316157, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6518", "attributes": { "cluster": 0, "x": -104.61794484645876, "y": -11.378464461232987, "size": 1, "color": "#e36d0" } }, { "key": "6519", "attributes": { "cluster": 0, "x": -103.61794484645876, "y": -61.60793788073042, "size": 0, "color": "#e36d0" } }, { "key": "6520", "attributes": { "cluster": 1, "x": 75.67507866692199, "y": 11.138196037162395, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6521", "attributes": { "cluster": 1, "x": 47.67507866692199, "y": -82.39254757155695, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6522", "attributes": { "cluster": 1, "x": 80.67507866692208, "y": -80.66049676398805, "size": 2, "color": "#762e2e" } }, { "key": "6523", "attributes": { "cluster": 1, "x": 42.67507866692191, "y": 9.406145229593484, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "6524", "attributes": { "cluster": 0, "x": -19.617944846458734, "y": -9.64641365366414, "size": 1, "color": "#e36d0" } }, { "key": "6525", "attributes": { "cluster": 1, "x": 42.675078666922, "y": -80.66049676398809, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "6526", "attributes": { "cluster": 1, "x": 80.67507866692199, "y": 9.406145229593534, "size": 1, "color": "#762e2e" } }, { "key": "6527", "attributes": { "cluster": 2, "x": -18.921956182766568, "y": 116.2095859269667, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6528", "attributes": { "cluster": 0, "x": -103.61794484645876, "y": -9.64641365366412, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6529", "attributes": { "cluster": 2, "x": -18.921956182766483, "y": 26.14294393338512, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6530", "attributes": { "cluster": 2, "x": 19.078043817233503, "y": 116.20958592696675, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6531", "attributes": { "cluster": 1, "x": 68.675078666922, "y": 12.870246844731263, "size": 2, "color": "#762e2e" } }, { "key": "6532", "attributes": { "cluster": 1, "x": 54.67507866692199, "y": 12.870246844731255, "size": 2, "color": "#762e2e" } }, { "key": "6533", "attributes": { "cluster": 0, "x": -19.61794484645872, "y": -61.60793788073044, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6534", "attributes": { "cluster": 1, "x": 54.67507866692198, "y": -84.12459837912581, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6535", "attributes": { "cluster": 0, "x": -45.61794484645874, "y": 11.138196037162402, "size": 1, "color": "#e36d0" } }, { "key": "6536", "attributes": { "cluster": 2, "x": 7.078043817233517, "y": 119.67368754210447, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6537", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": -84.12459837912581, "size": 2, "color": "#762e2e" } }, { "key": "6538", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -49.48358222774831, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6539", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -21.770769306646272, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6540", "attributes": { "cluster": 1, "x": 14.67507866692199, "y": -21.77076930664625, "size": 1, "color": "#762e2e" } }, { "key": "6541", "attributes": { "cluster": 2, "x": -6.921956182766491, "y": 119.67368754210446, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6542", "attributes": { "cluster": 2, "x": -6.921956182766499, "y": 22.67884231824739, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6543", "attributes": { "cluster": 2, "x": 7.078043817233509, "y": 22.678842318247398, "size": 1, "color": "#4b94db" } }, { "key": "6544", "attributes": { "cluster": 1, "x": 14.67507866692199, "y": -49.483582227748286, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6545", "attributes": { "cluster": 2, "x": 47.07804381723351, "y": 57.319858469624904, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6546", "attributes": { "cluster": 0, "x": -77.61794484645874, "y": -82.39254757155696, "size": 1, "color": "#e36d0" } }, { "key": "6547", "attributes": { "cluster": 0, "x": -45.61794484645867, "y": -82.39254757155693, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6548", "attributes": { "cluster": 0, "x": -77.61794484645881, "y": 11.138196037162373, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6549", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -37.35922657476617, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6550", "attributes": { "cluster": 2, "x": 47.07804381723351, "y": 85.03267139072695, "size": 3.6666666666666665, "color": "#4b94db" } }, { "key": "6551", "attributes": { "cluster": 2, "x": -46.92195618276649, "y": 85.03267139072696, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6552", "attributes": { "cluster": 0, "x": -105.61794484645876, "y": -58.14383626559267, "size": 1, "color": "#e36d0" } }, { "key": "6553", "attributes": { "cluster": 2, "x": -46.92195618276649, "y": 57.319858469624926, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6554", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 69.44421412260705, "size": 1, "color": "#4b94db" } }, { "key": "6555", "attributes": { "cluster": 0, "x": -17.617944846458734, "y": -13.11051526880189, "size": 1, "color": "#e36d0" } }, { "key": "6556", "attributes": { "cluster": 0, "x": -105.61794484645874, "y": -13.110515268801873, "size": 1, "color": "#e36d0" } }, { "key": "6557", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 72.90831573774481, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6558", "attributes": { "cluster": 2, "x": -30.921956182766486, "y": 33.07114716366064, "size": 1, "color": "#4b94db" } }, { "key": "6559", "attributes": { "cluster": 2, "x": 31.078043817233507, "y": 109.28138269669122, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6560", "attributes": { "cluster": 0, "x": -17.61794484645874, "y": -58.14383626559268, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6561", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -33.89512495962839, "size": 2, "color": "#762e2e" } }, { "key": "6562", "attributes": { "cluster": 1, "x": 30.675078666921994, "y": -73.73229353371258, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6563", "attributes": { "cluster": 2, "x": -30.92195618276656, "y": 109.2813826966912, "size": 1, "color": "#4b94db" } }, { "key": "6564", "attributes": { "cluster": 0, "x": -20.617944846458734, "y": -7.914362846095244, "size": 1, "color": "#e36d0" } }, { "key": "6565", "attributes": { "cluster": 1, "x": 92.67507866692199, "y": 2.4779419993180127, "size": 1, "color": "#762e2e" } }, { "key": "6566", "attributes": { "cluster": 0, "x": -102.61794484645876, "y": -63.339988688299314, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6567", "attributes": { "cluster": 0, "x": -20.617944846458705, "y": -63.3399886882993, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "6568", "attributes": { "cluster": 2, "x": 31.07804381723358, "y": 33.07114716366067, "size": 1, "color": "#4b94db" } }, { "key": "6569", "attributes": { "cluster": 0, "x": -102.61794484645878, "y": -7.914362846095258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6570", "attributes": { "cluster": 2, "x": 49.07804381723351, "y": 67.71216331503817, "size": 1, "color": "#4b94db" } }, { "key": "6571", "attributes": { "cluster": 2, "x": 49.07804381723351, "y": 74.64036654531368, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6572", "attributes": { "cluster": 2, "x": -48.92195618276649, "y": 74.6403665453137, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "6573", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -23.502820114215126, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6574", "attributes": { "cluster": 1, "x": 30.67507866692192, "y": 2.4779419993179843, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6575", "attributes": { "cluster": 1, "x": 92.67507866692206, "y": -73.73229353371255, "size": 1, "color": "#762e2e" } }, { "key": "6576", "attributes": { "cluster": 2, "x": -48.92195618276649, "y": 67.71216331503818, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6577", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -47.75153142017941, "size": 0, "color": "#e36d0" } }, { "key": "6578", "attributes": { "cluster": 2, "x": -34.9219561827665, "y": 36.53524877879839, "size": 2, "color": "#4b94db" } }, { "key": "6579", "attributes": { "cluster": 2, "x": 35.078043817233514, "y": 105.81728108155347, "size": 2, "color": "#4b94db" } }, { "key": "6580", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": -47.75153142017943, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6581", "attributes": { "cluster": 2, "x": -34.92195618276655, "y": 105.81728108155346, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6582", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": -23.502820114215147, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6583", "attributes": { "cluster": 0, "x": -110.61794484645874, "y": -28.69897253692176, "size": 2, "color": "#e36d0" } }, { "key": "6584", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -39.09127738233504, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6585", "attributes": { "cluster": 0, "x": -110.61794484645874, "y": -42.55537899747278, "size": 1, "color": "#e36d0" } }, { "key": "6586", "attributes": { "cluster": 2, "x": 35.078043817233564, "y": 36.5352487787984, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6587", "attributes": { "cluster": 0, "x": -12.617944846458741, "y": -42.5553789974728, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6588", "attributes": { "cluster": 2, "x": 9.07804381723352, "y": 119.67368754210447, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6589", "attributes": { "cluster": 0, "x": -12.617944846458741, "y": -28.69897253692178, "size": 1, "color": "#e36d0" } }, { "key": "6590", "attributes": { "cluster": 2, "x": -8.921956182766507, "y": 119.67368754210446, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6591", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -32.16307415205954, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6592", "attributes": { "cluster": 0, "x": -16.617944846458734, "y": -14.842566076370765, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6593", "attributes": { "cluster": 0, "x": -106.61794484645874, "y": -14.842566076370751, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6594", "attributes": { "cluster": 2, "x": -8.921956182766502, "y": 22.67884231824739, "size": 1, "color": "#4b94db" } }, { "key": "6595", "attributes": { "cluster": 1, "x": 12.67507866692199, "y": -32.163074152059515, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6596", "attributes": { "cluster": 0, "x": -106.61794484645876, "y": -56.41178545802379, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6597", "attributes": { "cluster": 2, "x": 9.078043817233524, "y": 22.678842318247398, "size": 1, "color": "#4b94db" } }, { "key": "6598", "attributes": { "cluster": 2, "x": 43.078043817233514, "y": 95.4249762361402, "size": 1, "color": "#4b94db" } }, { "key": "6599", "attributes": { "cluster": 1, "x": 12.67507866692199, "y": -39.09127738233502, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6600", "attributes": { "cluster": 2, "x": -42.9219561827665, "y": 46.92755362421166, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6601", "attributes": { "cluster": 0, "x": -16.61794484645874, "y": -56.41178545802381, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6602", "attributes": { "cluster": 2, "x": 43.07804381723353, "y": 46.92755362421164, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6603", "attributes": { "cluster": 1, "x": 26.675078666921983, "y": -70.26819191857481, "size": 1, "color": "#762e2e" } }, { "key": "6604", "attributes": { "cluster": 2, "x": -42.921956182766515, "y": 95.42497623614022, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6605", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": -0.9861596158197372, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6606", "attributes": { "cluster": 1, "x": 26.675078666921934, "y": -0.9861596158197443, "size": 2, "color": "#762e2e" } }, { "key": "6607", "attributes": { "cluster": 1, "x": 96.67507866692205, "y": -70.26819191857481, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6608", "attributes": { "cluster": 0, "x": -86.61794484645883, "y": 5.942043614455706, "size": 1, "color": "#e36d0" } }, { "key": "6609", "attributes": { "cluster": 2, "x": -41.9219561827665, "y": 45.195502816642794, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6610", "attributes": { "cluster": 0, "x": -36.617944846458656, "y": -77.19639514885026, "size": 1, "color": "#e36d0" } }, { "key": "6611", "attributes": { "cluster": 2, "x": 42.078043817233514, "y": 97.15702704370906, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6612", "attributes": { "cluster": 0, "x": -36.61794484645878, "y": 5.942043614455798, "size": 1, "color": "#e36d0" } }, { "key": "6613", "attributes": { "cluster": 2, "x": -41.921956182766515, "y": 97.15702704370909, "size": 1, "color": "#4b94db" } }, { "key": "6614", "attributes": { "cluster": 0, "x": -86.6179448464587, "y": -77.19639514885036, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6615", "attributes": { "cluster": 1, "x": 70.675078666922, "y": 12.870246844731263, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6616", "attributes": { "cluster": 0, "x": -34.617944846458656, "y": -77.1963951488503, "size": 1, "color": "#e36d0" } }, { "key": "6617", "attributes": { "cluster": 2, "x": 42.07804381723353, "y": 45.19550281664277, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "6618", "attributes": { "cluster": 1, "x": 52.675078666921976, "y": 12.870246844731255, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6619", "attributes": { "cluster": 2, "x": 16.078043817233507, "y": 117.94163673453562, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6620", "attributes": { "cluster": 0, "x": -88.61794484645883, "y": 5.942043614455741, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6621", "attributes": { "cluster": 2, "x": -15.921956182766488, "y": 24.41089312581625, "size": 1, "color": "#4b94db" } }, { "key": "6622", "attributes": { "cluster": 2, "x": 16.078043817233585, "y": 24.41089312581628, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6623", "attributes": { "cluster": 2, "x": -15.921956182766566, "y": 117.94163673453559, "size": 1, "color": "#4b94db" } }, { "key": "6624", "attributes": { "cluster": 0, "x": -101.61794484645876, "y": -65.0720394958682, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6625", "attributes": { "cluster": 1, "x": 52.675078666921976, "y": -84.12459837912581, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6626", "attributes": { "cluster": 2, "x": -43.9219561827665, "y": 48.659604431780544, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6627", "attributes": { "cluster": 2, "x": 44.078043817233514, "y": 93.69292542857133, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6628", "attributes": { "cluster": 2, "x": -43.92195618276649, "y": 93.69292542857134, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6629", "attributes": { "cluster": 2, "x": 44.07804381723351, "y": 48.65960443178052, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6630", "attributes": { "cluster": 2, "x": 41.078043817233514, "y": 98.88907785127796, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6631", "attributes": { "cluster": 0, "x": -21.617944846458734, "y": -6.182312038526366, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6632", "attributes": { "cluster": 0, "x": -34.61794484645878, "y": 5.942043614455805, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6633", "attributes": { "cluster": 1, "x": 70.675078666922, "y": -84.12459837912581, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6634", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -11.378464461233008, "size": 1, "color": "#762e2e" } }, { "key": "6635", "attributes": { "cluster": 0, "x": -88.6179448464587, "y": -77.19639514885037, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6636", "attributes": { "cluster": 1, "x": 18.675078666921983, "y": -59.87588707316155, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6637", "attributes": { "cluster": 0, "x": -21.617944846458705, "y": -65.0720394958682, "size": 2, "color": "#e36d0" } }, { "key": "6638", "attributes": { "cluster": 1, "x": 104.67507866692202, "y": -59.87588707316157, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6639", "attributes": { "cluster": 2, "x": -40.9219561827665, "y": 43.4634520090739, "size": 1, "color": "#4b94db" } }, { "key": "6640", "attributes": { "cluster": 1, "x": 18.67507866692197, "y": -11.378464461232987, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6641", "attributes": { "cluster": 1, "x": 19.675078666921983, "y": -61.60793788073042, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6642", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -9.64641365366414, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6643", "attributes": { "cluster": 2, "x": 41.07804381723354, "y": 43.46345200907391, "size": 1, "color": "#4b94db" } }, { "key": "6644", "attributes": { "cluster": 0, "x": -101.61794484645878, "y": -6.182312038526366, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6645", "attributes": { "cluster": 2, "x": -40.92195618276653, "y": 98.88907785127796, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6646", "attributes": { "cluster": 0, "x": -50.61794484645871, "y": -84.12459837912581, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6647", "attributes": { "cluster": 0, "x": -72.61794484645877, "y": 12.870246844731248, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6648", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 83.30062058315808, "size": 1, "color": "#4b94db" } }, { "key": "6649", "attributes": { "cluster": 1, "x": 19.67507866692197, "y": -9.64641365366412, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6650", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 59.0519092771938, "size": 1, "color": "#4b94db" } }, { "key": "6651", "attributes": { "cluster": 1, "x": 103.67507866692202, "y": -61.60793788073044, "size": 1, "color": "#762e2e" } }, { "key": "6652", "attributes": { "cluster": 1, "x": 77.67507866692199, "y": 11.138196037162402, "size": 1, "color": "#762e2e" } }, { "key": "6653", "attributes": { "cluster": 0, "x": -72.61794484645876, "y": -84.12459837912581, "size": 1, "color": "#e36d0" } }, { "key": "6654", "attributes": { "cluster": 1, "x": 45.67507866692199, "y": -82.39254757155696, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6655", "attributes": { "cluster": 1, "x": 77.67507866692206, "y": -82.39254757155693, "size": 2, "color": "#762e2e" } }, { "key": "6656", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 59.05190927719378, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6657", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 83.30062058315806, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6658", "attributes": { "cluster": 1, "x": 45.67507866692192, "y": 11.138196037162373, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6659", "attributes": { "cluster": 2, "x": -48.92195618276649, "y": 78.10446816045145, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6660", "attributes": { "cluster": 2, "x": -48.92195618276649, "y": 64.24806169990043, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6661", "attributes": { "cluster": 1, "x": 17.675078666921983, "y": -58.14383626559267, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6662", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -13.11051526880189, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6663", "attributes": { "cluster": 0, "x": -50.61794484645873, "y": 12.870246844731263, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6664", "attributes": { "cluster": 0, "x": -82.61794484645871, "y": -80.66049676398809, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6665", "attributes": { "cluster": 0, "x": -40.61794484645877, "y": 9.406145229593534, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6666", "attributes": { "cluster": 1, "x": 17.67507866692199, "y": -13.110515268801873, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6667", "attributes": { "cluster": 0, "x": -82.61794484645884, "y": 9.406145229593477, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6668", "attributes": { "cluster": 0, "x": -40.61794484645864, "y": -80.66049676398804, "size": 2, "color": "#e36d0" } }, { "key": "6669", "attributes": { "cluster": 2, "x": 49.07804381723351, "y": 64.24806169990042, "size": 2, "color": "#4b94db" } }, { "key": "6670", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -58.14383626559268, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6671", "attributes": { "cluster": 0, "x": -15.617944846458741, "y": -16.57461688393964, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6672", "attributes": { "cluster": 0, "x": -107.61794484645874, "y": -54.67973465045492, "size": 3, "color": "#e36d0" } }, { "key": "6673", "attributes": { "cluster": 2, "x": 49.07804381723351, "y": 78.10446816045143, "size": 1, "color": "#4b94db" } }, { "key": "6674", "attributes": { "cluster": 2, "x": 45.078043817233514, "y": 91.96087462100245, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6675", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -7.914362846095244, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6676", "attributes": { "cluster": 1, "x": 20.675078666921983, "y": -63.339988688299314, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6677", "attributes": { "cluster": 1, "x": 102.67507866692202, "y": -63.3399886882993, "size": 2, "color": "#762e2e" } }, { "key": "6678", "attributes": { "cluster": 2, "x": -44.92195618276649, "y": 91.96087462100246, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6679", "attributes": { "cluster": 1, "x": 20.675078666921955, "y": -7.914362846095258, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6680", "attributes": { "cluster": 0, "x": -15.617944846458741, "y": -54.67973465045493, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6681", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -23.502820114215126, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6682", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -47.75153142017941, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6683", "attributes": { "cluster": 0, "x": -107.61794484645874, "y": -16.574616883939623, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6684", "attributes": { "cluster": 0, "x": -95.61794484645874, "y": -72.00024272614368, "size": 0, "color": "#e36d0" } }, { "key": "6685", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -47.75153142017943, "size": 1, "color": "#762e2e" } }, { "key": "6686", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -23.502820114215147, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6687", "attributes": { "cluster": 0, "x": -27.61794484645874, "y": 0.7458911917491307, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "6688", "attributes": { "cluster": 1, "x": 12.67507866692199, "y": -28.69897253692176, "size": 2, "color": "#762e2e" } }, { "key": "6689", "attributes": { "cluster": 0, "x": -95.61794484645881, "y": 0.7458911917491164, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6690", "attributes": { "cluster": 2, "x": -44.9219561827665, "y": 50.39165523934942, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6691", "attributes": { "cluster": 0, "x": -27.617944846458677, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6692", "attributes": { "cluster": 2, "x": 45.07804381723351, "y": 50.391655239349404, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6693", "attributes": { "cluster": 2, "x": -24.921956182766575, "y": 112.74548431182892, "size": 1, "color": "#4b94db" } }, { "key": "6694", "attributes": { "cluster": 1, "x": 12.67507866692199, "y": -42.55537899747278, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6695", "attributes": { "cluster": 0, "x": -31.617944846458762, "y": 4.209992806886916, "size": 1, "color": "#e36d0" } }, { "key": "6696", "attributes": { "cluster": 0, "x": -91.61794484645873, "y": -75.46434434128147, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6697", "attributes": { "cluster": 2, "x": 25.078043817233596, "y": 29.607045548522947, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6698", "attributes": { "cluster": 0, "x": -22.617944846458734, "y": -4.450261230957487, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6699", "attributes": { "cluster": 0, "x": -100.61794484645876, "y": -66.80409030343708, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6700", "attributes": { "cluster": 0, "x": -31.617944846458663, "y": -75.46434434128142, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "6701", "attributes": { "cluster": 2, "x": 25.078043817233475, "y": 112.74548431182902, "size": 1, "color": "#4b94db" } }, { "key": "6702", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -42.5553789974728, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6703", "attributes": { "cluster": 2, "x": -24.921956182766454, "y": 29.607045548522855, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6704", "attributes": { "cluster": 0, "x": -91.61794484645881, "y": 4.209992806886866, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6705", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -28.69897253692178, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6706", "attributes": { "cluster": 0, "x": -100.61794484645878, "y": -4.4502612309575085, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "6707", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -14.842566076370765, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6708", "attributes": { "cluster": 1, "x": 16.67507866692199, "y": -14.842566076370751, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6709", "attributes": { "cluster": 1, "x": 16.675078666921983, "y": -56.41178545802379, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6710", "attributes": { "cluster": 0, "x": -22.61794484645869, "y": -66.80409030343705, "size": 1, "color": "#e36d0" } }, { "key": "6711", "attributes": { "cluster": 2, "x": 27.078043817233596, "y": 29.607045548522912, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6712", "attributes": { "cluster": 0, "x": -14.617944846458741, "y": -18.306667691508515, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6713", "attributes": { "cluster": 2, "x": -26.921956182766575, "y": 112.74548431182896, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6714", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -56.41178545802381, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6715", "attributes": { "cluster": 1, "x": 36.675078666921905, "y": 5.942043614455706, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6716", "attributes": { "cluster": 2, "x": -39.9219561827665, "y": 41.73140120150502, "size": 1, "color": "#4b94db" } }, { "key": "6717", "attributes": { "cluster": 0, "x": -108.61794484645874, "y": -52.94768384288604, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6718", "attributes": { "cluster": 0, "x": -14.617944846458727, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6719", "attributes": { "cluster": 1, "x": 86.67507866692208, "y": -77.19639514885026, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6720", "attributes": { "cluster": 2, "x": 40.078043817233514, "y": 100.62112865884684, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6721", "attributes": { "cluster": 1, "x": 86.67507866692196, "y": 5.942043614455798, "size": 1, "color": "#762e2e" } }, { "key": "6722", "attributes": { "cluster": 2, "x": 27.078043817233475, "y": 112.74548431182902, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6723", "attributes": { "cluster": 1, "x": 36.675078666922026, "y": -77.19639514885036, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6724", "attributes": { "cluster": 0, "x": -108.61794484645876, "y": -18.30666769150851, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6725", "attributes": { "cluster": 0, "x": -110.61794484645874, "y": -25.234870921784008, "size": 2, "color": "#e36d0" } }, { "key": "6726", "attributes": { "cluster": 2, "x": -26.921956182766454, "y": 29.607045548522848, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6727", "attributes": { "cluster": 0, "x": -110.61794484645874, "y": -46.01948061261053, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6728", "attributes": { "cluster": 0, "x": -12.617944846458741, "y": -46.01948061261055, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6729", "attributes": { "cluster": 2, "x": 40.07804381723354, "y": 41.73140120150502, "size": 1, "color": "#4b94db" } }, { "key": "6730", "attributes": { "cluster": 1, "x": 88.67507866692208, "y": -77.1963951488503, "size": 2, "color": "#762e2e" } }, { "key": "6731", "attributes": { "cluster": 1, "x": 34.675078666921905, "y": 5.942043614455741, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6732", "attributes": { "cluster": 1, "x": 21.675078666921983, "y": -65.0720394958682, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6733", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -6.182312038526366, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6734", "attributes": { "cluster": 1, "x": 88.67507866692196, "y": 5.942043614455805, "size": 1, "color": "#762e2e" } }, { "key": "6735", "attributes": { "cluster": 0, "x": -12.617944846458741, "y": -25.23487092178403, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6736", "attributes": { "cluster": 1, "x": 34.675078666922026, "y": -77.19639514885037, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6737", "attributes": { "cluster": 2, "x": -39.92195618276653, "y": 100.62112865884684, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6738", "attributes": { "cluster": 0, "x": -43.617944846458755, "y": 11.138196037162402, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6739", "attributes": { "cluster": 2, "x": 11.078043817233533, "y": 22.678842318247405, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6740", "attributes": { "cluster": 2, "x": -10.921956182766516, "y": 119.67368754210446, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6741", "attributes": { "cluster": 2, "x": -10.921956182766502, "y": 22.67884231824739, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6742", "attributes": { "cluster": 2, "x": 11.07804381723352, "y": 119.67368754210447, "size": 1, "color": "#4b94db" } }, { "key": "6743", "attributes": { "cluster": 1, "x": 101.67507866692202, "y": -65.0720394958682, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6744", "attributes": { "cluster": 0, "x": -79.61794484645883, "y": 11.13819603716236, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6745", "attributes": { "cluster": 0, "x": -79.61794484645873, "y": -82.39254757155696, "size": 2, "color": "#e36d0" } }, { "key": "6746", "attributes": { "cluster": 2, "x": -20.921956182766458, "y": 26.14294393338512, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6747", "attributes": { "cluster": 2, "x": 21.07804381723348, "y": 116.20958592696675, "size": 2, "color": "#4b94db" } }, { "key": "6748", "attributes": { "cluster": 1, "x": 21.675078666921955, "y": -6.182312038526366, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6749", "attributes": { "cluster": 0, "x": -43.617944846458656, "y": -82.39254757155692, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "6750", "attributes": { "cluster": 1, "x": 72.67507866692202, "y": -84.12459837912581, "size": 2, "color": "#762e2e" } }, { "key": "6751", "attributes": { "cluster": 1, "x": 50.67507866692196, "y": 12.870246844731248, "size": 1, "color": "#762e2e" } }, { "key": "6752", "attributes": { "cluster": 2, "x": -20.921956182766593, "y": 116.2095859269667, "size": 3, "color": "#4b94db" } }, { "key": "6753", "attributes": { "cluster": 2, "x": 21.078043817233613, "y": 26.142943933385176, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6754", "attributes": { "cluster": 1, "x": 50.675078666921976, "y": -84.12459837912581, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6755", "attributes": { "cluster": 1, "x": 72.675078666922, "y": 12.870246844731263, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6756", "attributes": { "cluster": 2, "x": 46.07804381723351, "y": 90.22882381343356, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6757", "attributes": { "cluster": 2, "x": -45.92195618276649, "y": 52.123706046918294, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6758", "attributes": { "cluster": 2, "x": 46.07804381723351, "y": 52.12370604691827, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6759", "attributes": { "cluster": 0, "x": -12.617944846458741, "y": -35.627175767197286, "size": 1, "color": "#e36d0" } }, { "key": "6760", "attributes": { "cluster": 0, "x": -11.617944846458741, "y": -33.89512495962841, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6761", "attributes": { "cluster": 0, "x": -110.61794484645874, "y": -35.62717576719727, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "6762", "attributes": { "cluster": 0, "x": -111.61794484645874, "y": -37.35922657476615, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6763", "attributes": { "cluster": 1, "x": 40.67507866692202, "y": -80.66049676398809, "size": 1, "color": "#762e2e" } }, { "key": "6764", "attributes": { "cluster": 2, "x": -45.92195618276649, "y": 90.22882381343359, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6765", "attributes": { "cluster": 2, "x": -33.92195618276649, "y": 34.80319797122952, "size": 1, "color": "#4b94db" } }, { "key": "6766", "attributes": { "cluster": 1, "x": 82.67507866692196, "y": 9.406145229593534, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6767", "attributes": { "cluster": 2, "x": 34.07804381723351, "y": 107.54933188912234, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6768", "attributes": { "cluster": 2, "x": -33.92195618276656, "y": 107.54933188912233, "size": 1, "color": "#4b94db" } }, { "key": "6769", "attributes": { "cluster": 2, "x": 34.07804381723357, "y": 34.80319797122954, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6770", "attributes": { "cluster": 1, "x": 40.67507866692189, "y": 9.406145229593477, "size": 1, "color": "#762e2e" } }, { "key": "6771", "attributes": { "cluster": 2, "x": 30.07804381723349, "y": 111.01343350426012, "size": 2, "color": "#4b94db" } }, { "key": "6772", "attributes": { "cluster": 2, "x": -29.92195618276647, "y": 31.339096356091737, "size": 1, "color": "#4b94db" } }, { "key": "6773", "attributes": { "cluster": 2, "x": 39.078043817233514, "y": 102.35317946641572, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6774", "attributes": { "cluster": 1, "x": 82.67507866692209, "y": -80.66049676398804, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6775", "attributes": { "cluster": 0, "x": -48.6179448464587, "y": -84.1245983791258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6776", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -16.57461688393964, "size": 1, "color": "#762e2e" } }, { "key": "6777", "attributes": { "cluster": 1, "x": 15.67507866692199, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6778", "attributes": { "cluster": 2, "x": -38.9219561827665, "y": 39.99935039393614, "size": 2, "color": "#4b94db" } }, { "key": "6779", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -54.67973465045493, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6780", "attributes": { "cluster": 1, "x": 15.67507866692199, "y": -16.574616883939623, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6781", "attributes": { "cluster": 2, "x": 30.07804381723359, "y": 31.339096356091787, "size": 1, "color": "#4b94db" } }, { "key": "6782", "attributes": { "cluster": 1, "x": 27.67507866692199, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6783", "attributes": { "cluster": 0, "x": -74.61794484645878, "y": 12.870246844731241, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6784", "attributes": { "cluster": 2, "x": -29.921956182766568, "y": 111.01343350426008, "size": 1, "color": "#4b94db" } }, { "key": "6785", "attributes": { "cluster": 1, "x": 95.67507866692199, "y": 0.7458911917491307, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6786", "attributes": { "cluster": 1, "x": 27.675078666921927, "y": 0.7458911917491164, "size": 1, "color": "#762e2e" } }, { "key": "6787", "attributes": { "cluster": 0, "x": -74.61794484645874, "y": -84.12459837912584, "size": 1, "color": "#e36d0" } }, { "key": "6788", "attributes": { "cluster": 2, "x": -38.92195618276654, "y": 102.3531794664157, "size": 2, "color": "#4b94db" } }, { "key": "6789", "attributes": { "cluster": 2, "x": 39.07804381723356, "y": 39.99935039393616, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6790", "attributes": { "cluster": 0, "x": -48.61794484645874, "y": 12.870246844731277, "size": 2, "color": "#e36d0" } }, { "key": "6791", "attributes": { "cluster": 0, "x": -99.61794484645876, "y": -68.53614111100595, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6792", "attributes": { "cluster": 2, "x": 47.07804381723351, "y": 88.4967730058647, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6793", "attributes": { "cluster": 2, "x": -46.92195618276649, "y": 53.85575685448717, "size": 1, "color": "#4b94db" } }, { "key": "6794", "attributes": { "cluster": 1, "x": 95.67507866692205, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6795", "attributes": { "cluster": 2, "x": 47.07804381723352, "y": 53.85575685448716, "size": 3, "color": "#4b94db" } }, { "key": "6796", "attributes": { "cluster": 1, "x": 91.67507866692196, "y": 4.209992806886916, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6797", "attributes": { "cluster": 1, "x": 31.675078666922012, "y": -75.46434434128147, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6798", "attributes": { "cluster": 2, "x": -46.92195618276651, "y": 88.4967730058647, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6799", "attributes": { "cluster": 0, "x": -23.617944846458734, "y": -2.718210423388612, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6800", "attributes": { "cluster": 2, "x": -48.92195618276649, "y": 81.56856977558921, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6801", "attributes": { "cluster": 2, "x": -48.92195618276649, "y": 60.78396008476268, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6802", "attributes": { "cluster": 2, "x": 49.07804381723351, "y": 60.78396008476266, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6803", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -4.450261230957487, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6804", "attributes": { "cluster": 0, "x": -99.61794484645878, "y": -2.718210423388612, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6805", "attributes": { "cluster": 2, "x": 49.07804381723351, "y": 81.56856977558918, "size": 1, "color": "#4b94db" } }, { "key": "6806", "attributes": { "cluster": 1, "x": 22.675078666921983, "y": -66.80409030343708, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6807", "attributes": { "cluster": 1, "x": 91.67507866692208, "y": -75.46434434128142, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6808", "attributes": { "cluster": 2, "x": 18.078043817233493, "y": 117.94163673453562, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6809", "attributes": { "cluster": 2, "x": -17.921956182766575, "y": 117.94163673453556, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6810", "attributes": { "cluster": 1, "x": 31.675078666921912, "y": 4.209992806886866, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6811", "attributes": { "cluster": 2, "x": -17.921956182766472, "y": 24.41089312581625, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6812", "attributes": { "cluster": 1, "x": 22.67507866692194, "y": -4.4502612309575085, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6813", "attributes": { "cluster": 1, "x": 100.67507866692205, "y": -66.80409030343705, "size": 1, "color": "#762e2e" } }, { "key": "6814", "attributes": { "cluster": 2, "x": 18.078043817233596, "y": 24.410893125816294, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "6815", "attributes": { "cluster": 2, "x": 49.07804381723351, "y": 71.17626493017592, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6816", "attributes": { "cluster": 0, "x": -23.6179448464587, "y": -68.53614111100595, "size": 2, "color": "#e36d0" } }, { "key": "6817", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -18.306667691508515, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6818", "attributes": { "cluster": 1, "x": 14.67507866692199, "y": -52.94768384288604, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6819", "attributes": { "cluster": 1, "x": 108.675078666922, "y": -52.94768384288605, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6820", "attributes": { "cluster": 1, "x": 14.675078666921976, "y": -18.30666769150851, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6821", "attributes": { "cluster": 2, "x": 50.07804381723351, "y": 72.9083157377448, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6822", "attributes": { "cluster": 2, "x": -48.92195618276649, "y": 71.17626493017595, "size": 3, "color": "#4b94db" } }, { "key": "6823", "attributes": { "cluster": 0, "x": -61.617944846458755, "y": 14.602297652300145, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6824", "attributes": { "cluster": 0, "x": -61.61794484645873, "y": -85.85664918669471, "size": 2, "color": "#e36d0" } }, { "key": "6825", "attributes": { "cluster": 1, "x": 12.67507866692199, "y": -25.234870921784008, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6826", "attributes": { "cluster": 2, "x": -49.92195618276649, "y": 69.44421412260706, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6827", "attributes": { "cluster": 2, "x": 13.078043817233553, "y": 22.678842318247412, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6828", "attributes": { "cluster": 2, "x": -12.921956182766536, "y": 119.67368754210446, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6829", "attributes": { "cluster": 2, "x": -12.921956182766493, "y": 22.678842318247376, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6830", "attributes": { "cluster": 2, "x": 13.07804381723351, "y": 119.67368754210449, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6831", "attributes": { "cluster": 2, "x": -37.9219561827665, "y": 38.267299586367265, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6832", "attributes": { "cluster": 2, "x": 38.078043817233514, "y": 104.08523027398459, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "6833", "attributes": { "cluster": 0, "x": -59.61794484645873, "y": -85.85664918669471, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6834", "attributes": { "cluster": 2, "x": -37.921956182766536, "y": 104.08523027398459, "size": 1, "color": "#4b94db" } }, { "key": "6835", "attributes": { "cluster": 2, "x": 38.07804381723355, "y": 38.267299586367265, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6836", "attributes": { "cluster": 1, "x": 12.67507866692199, "y": -46.01948061261053, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6837", "attributes": { "cluster": 2, "x": 0.07804381723349631, "y": 121.40573834967336, "size": 1, "color": "#4b94db" } }, { "key": "6838", "attributes": { "cluster": 0, "x": -63.617944846458755, "y": 14.602297652300152, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6839", "attributes": { "cluster": 0, "x": -63.617944846458755, "y": -85.85664918669471, "size": 1, "color": "#e36d0" } }, { "key": "6840", "attributes": { "cluster": 0, "x": -59.61794484645873, "y": 14.602297652300152, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6841", "attributes": { "cluster": 2, "x": 0.07804381723352237, "y": 20.94679151067851, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6842", "attributes": { "cluster": 0, "x": -111.61794484645874, "y": -30.431023344490637, "size": 2, "color": "#e36d0" } }, { "key": "6843", "attributes": { "cluster": 2, "x": 2.078043817233526, "y": 20.9467915106785, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6844", "attributes": { "cluster": 2, "x": -1.921956182766507, "y": 121.40573834967336, "size": 1, "color": "#4b94db" } }, { "key": "6845", "attributes": { "cluster": 2, "x": -1.9219561827665022, "y": 20.9467915106785, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6846", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -46.01948061261055, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6847", "attributes": { "cluster": 0, "x": -111.61794484645874, "y": -40.823328189903904, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6848", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -25.23487092178403, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6849", "attributes": { "cluster": 1, "x": 79.67507866692198, "y": 11.138196037162402, "size": 1, "color": "#762e2e" } }, { "key": "6850", "attributes": { "cluster": 1, "x": 43.675078666921905, "y": 11.13819603716236, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6851", "attributes": { "cluster": 0, "x": -11.617944846458741, "y": -40.82332818990392, "size": 1, "color": "#e36d0" } }, { "key": "6852", "attributes": { "cluster": 0, "x": -11.617944846458741, "y": -30.431023344490658, "size": 2, "color": "#e36d0" } }, { "key": "6853", "attributes": { "cluster": 2, "x": 2.078043817233521, "y": 121.40573834967336, "size": 2, "color": "#4b94db" } }, { "key": "6854", "attributes": { "cluster": 1, "x": 43.675078666922005, "y": -82.39254757155696, "size": 2, "color": "#762e2e" } }, { "key": "6855", "attributes": { "cluster": 1, "x": 79.67507866692208, "y": -82.39254757155692, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6856", "attributes": { "cluster": 2, "x": -49.92195618276649, "y": 76.37241735288258, "size": 2, "color": "#4b94db" } }, { "key": "6857", "attributes": { "cluster": 0, "x": -57.61794484645872, "y": 14.602297652300152, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6858", "attributes": { "cluster": 0, "x": -65.61794484645876, "y": 14.602297652300138, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6859", "attributes": { "cluster": 0, "x": -65.61794484645876, "y": -85.85664918669471, "size": 1, "color": "#e36d0" } }, { "key": "6860", "attributes": { "cluster": 2, "x": -49.92195618276649, "y": 65.98011250746931, "size": 2, "color": "#4b94db" } }, { "key": "6861", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -35.627175767197286, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6862", "attributes": { "cluster": 0, "x": -57.61794484645873, "y": -85.8566491866947, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6863", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -33.89512495962841, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6864", "attributes": { "cluster": 1, "x": 12.67507866692199, "y": -35.62717576719727, "size": 3, "color": "#762e2e" } }, { "key": "6865", "attributes": { "cluster": 0, "x": -28.61794484645874, "y": 2.4779419993180127, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6866", "attributes": { "cluster": 0, "x": -94.61794484645874, "y": -73.73229353371258, "size": 1, "color": "#e36d0" } }, { "key": "6867", "attributes": { "cluster": 1, "x": 11.67507866692199, "y": -37.35922657476615, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6868", "attributes": { "cluster": 1, "x": 74.67507866692203, "y": -84.1245983791258, "size": 2, "color": "#762e2e" } }, { "key": "6869", "attributes": { "cluster": 1, "x": 48.67507866692195, "y": 12.870246844731241, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6870", "attributes": { "cluster": 2, "x": 50.07804381723351, "y": 65.98011250746929, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6871", "attributes": { "cluster": 0, "x": -28.61794484645867, "y": -73.73229353371255, "size": 1, "color": "#e36d0" } }, { "key": "6872", "attributes": { "cluster": 1, "x": 48.67507866692199, "y": -84.12459837912584, "size": 1, "color": "#762e2e" } }, { "key": "6873", "attributes": { "cluster": 1, "x": 74.67507866692199, "y": 12.870246844731277, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6874", "attributes": { "cluster": 1, "x": 23.675078666921983, "y": -68.53614111100595, "size": 2, "color": "#762e2e" } }, { "key": "6875", "attributes": { "cluster": 2, "x": 50.07804381723351, "y": 76.37241735288255, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6876", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": -2.718210423388612, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6877", "attributes": { "cluster": 1, "x": 23.675078666921948, "y": -2.718210423388612, "size": 1, "color": "#762e2e" } }, { "key": "6878", "attributes": { "cluster": 0, "x": -94.61794484645881, "y": 2.4779419993179985, "size": 1, "color": "#e36d0" } }, { "key": "6879", "attributes": { "cluster": 1, "x": 99.67507866692203, "y": -68.53614111100595, "size": 1, "color": "#762e2e" } }, { "key": "6880", "attributes": { "cluster": 1, "x": 61.675078666921976, "y": 14.602297652300145, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6881", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -51.21563303531717, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6882", "attributes": { "cluster": 1, "x": 61.675078666922005, "y": -85.85664918669471, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6883", "attributes": { "cluster": 2, "x": 4.078043817233531, "y": 121.40573834967336, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6884", "attributes": { "cluster": 1, "x": 63.675078666922005, "y": -85.85664918669471, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6885", "attributes": { "cluster": 2, "x": -3.9219561827665075, "y": 121.40573834967336, "size": 1, "color": "#4b94db" } }, { "key": "6886", "attributes": { "cluster": 1, "x": 59.675078666921976, "y": 14.602297652300152, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6887", "attributes": { "cluster": 2, "x": -3.921956182766512, "y": 20.9467915106785, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6888", "attributes": { "cluster": 2, "x": 4.078043817233526, "y": 20.946791510678516, "size": 1, "color": "#4b94db" } }, { "key": "6889", "attributes": { "cluster": 2, "x": 33.07804381723351, "y": 109.28138269669122, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6890", "attributes": { "cluster": 1, "x": 59.675078666921976, "y": -85.85664918669471, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6891", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": -20.038718499077394, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6892", "attributes": { "cluster": 2, "x": -32.92195618276649, "y": 33.07114716366064, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6893", "attributes": { "cluster": 2, "x": 33.07804381723358, "y": 33.071147163660655, "size": 2, "color": "#4b94db" } }, { "key": "6894", "attributes": { "cluster": 1, "x": 63.675078666922005, "y": 14.602297652300152, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6895", "attributes": { "cluster": 2, "x": -32.921956182766564, "y": 109.28138269669121, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6896", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 55.58780766205605, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6897", "attributes": { "cluster": 0, "x": -109.61794484645876, "y": -20.038718499077383, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6898", "attributes": { "cluster": 0, "x": -13.617944846458727, "y": -51.215633035317175, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6899", "attributes": { "cluster": 0, "x": -67.61794484645876, "y": 14.602297652300145, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6900", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 86.76472219829581, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "6901", "attributes": { "cluster": 2, "x": -47.92195618276651, "y": 86.76472219829583, "size": 1, "color": "#4b94db" } }, { "key": "6902", "attributes": { "cluster": 0, "x": -55.61794484645873, "y": -85.85664918669471, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6903", "attributes": { "cluster": 0, "x": -55.617944846458734, "y": 14.602297652300138, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6904", "attributes": { "cluster": 1, "x": 11.67507866692199, "y": -30.431023344490637, "size": 1, "color": "#762e2e" } }, { "key": "6905", "attributes": { "cluster": 0, "x": -67.61794484645874, "y": -85.8566491866947, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6906", "attributes": { "cluster": 0, "x": -37.61794484645865, "y": -78.92844595641914, "size": 1, "color": "#e36d0" } }, { "key": "6907", "attributes": { "cluster": 0, "x": -85.61794484645884, "y": 7.674094422024581, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6908", "attributes": { "cluster": 2, "x": 48.07804381723352, "y": 55.587807662056036, "size": 0, "color": "#4b94db" } }, { "key": "6909", "attributes": { "cluster": 1, "x": 11.67507866692199, "y": -40.823328189903904, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6910", "attributes": { "cluster": 0, "x": -85.6179448464587, "y": -78.92844595641922, "size": 1, "color": "#e36d0" } }, { "key": "6911", "attributes": { "cluster": 2, "x": -5.921956182766501, "y": 121.40573834967336, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6912", "attributes": { "cluster": 0, "x": -37.617944846458784, "y": 7.674094422024666, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "6913", "attributes": { "cluster": 2, "x": 6.07804381723352, "y": 20.94679151067851, "size": 1, "color": "#4b94db" } }, { "key": "6914", "attributes": { "cluster": 0, "x": -84.61794484645884, "y": 9.406145229593463, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6915", "attributes": { "cluster": 2, "x": 6.078043817233514, "y": 121.40573834967336, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6916", "attributes": { "cluster": 2, "x": -5.921956182766495, "y": 20.946791510678516, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6917", "attributes": { "cluster": 0, "x": -38.61794484645864, "y": -80.66049676398802, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6918", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -40.82332818990392, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6919", "attributes": { "cluster": 2, "x": 24.078043817233603, "y": 27.874994740954072, "size": 2, "color": "#4b94db" } }, { "key": "6920", "attributes": { "cluster": 0, "x": -38.61794484645878, "y": 9.406145229593548, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6921", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -30.431023344490658, "size": 0, "color": "#762e2e" } }, { "key": "6922", "attributes": { "cluster": 1, "x": 65.67507866692202, "y": 14.602297652300152, "size": 2, "color": "#762e2e" } }, { "key": "6923", "attributes": { "cluster": 0, "x": -84.6179448464587, "y": -80.6604967639881, "size": 1, "color": "#e36d0" } }, { "key": "6924", "attributes": { "cluster": 1, "x": 57.675078666921976, "y": 14.602297652300138, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6925", "attributes": { "cluster": 0, "x": -24.617944846458734, "y": -0.9861596158197301, "size": 0, "color": "#e36d0" } }, { "key": "6926", "attributes": { "cluster": 2, "x": -23.921956182766582, "y": 114.4775351193978, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6927", "attributes": { "cluster": 1, "x": 57.67507866692197, "y": -85.85664918669471, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "6928", "attributes": { "cluster": 2, "x": -23.921956182766444, "y": 27.874994740953987, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "6929", "attributes": { "cluster": 0, "x": -98.61794484645876, "y": -70.26819191857483, "size": 1, "color": "#e36d0" } }, { "key": "6930", "attributes": { "cluster": 0, "x": -24.617944846458684, "y": -70.26819191857481, "size": 2, "color": "#e36d0" } }, { "key": "6931", "attributes": { "cluster": 1, "x": 65.675078666922, "y": -85.8566491866947, "size": 1, "color": "#762e2e" } }, { "key": "6932", "attributes": { "cluster": 1, "x": 94.67507866692199, "y": 2.4779419993180127, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6933", "attributes": { "cluster": 0, "x": -98.6179448464588, "y": -0.9861596158197514, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6934", "attributes": { "cluster": 0, "x": -90.6179448464587, "y": -77.19639514885036, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6935", "attributes": { "cluster": 1, "x": 28.67507866692199, "y": -73.73229353371258, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6936", "attributes": { "cluster": 2, "x": 24.078043817233464, "y": 114.47753511939788, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6937", "attributes": { "cluster": 2, "x": -22.921956182766593, "y": 116.20958592696667, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6938", "attributes": { "cluster": 1, "x": 94.67507866692206, "y": -73.73229353371255, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6939", "attributes": { "cluster": 0, "x": -32.61794484645878, "y": 5.942043614455798, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6940", "attributes": { "cluster": 1, "x": 28.67507866692192, "y": 2.4779419993179985, "size": 0, "color": "#762e2e" } }, { "key": "6941", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -51.21563303531717, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6942", "attributes": { "cluster": 0, "x": -90.61794484645883, "y": 5.942043614455734, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "6943", "attributes": { "cluster": 0, "x": -32.617944846458656, "y": -77.19639514885029, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6944", "attributes": { "cluster": 0, "x": -76.6179448464588, "y": 12.870246844731234, "size": 2, "color": "#e36d0" } }, { "key": "6945", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -20.038718499077394, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6946", "attributes": { "cluster": 0, "x": -46.617944846458684, "y": -84.12459837912579, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6947", "attributes": { "cluster": 1, "x": 13.675078666921976, "y": -20.038718499077383, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "6948", "attributes": { "cluster": 1, "x": 109.675078666922, "y": -51.215633035317175, "size": 2, "color": "#762e2e" } }, { "key": "6949", "attributes": { "cluster": 1, "x": 55.675078666921976, "y": 14.602297652300145, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6950", "attributes": { "cluster": 2, "x": 23.078043817233613, "y": 26.14294393338519, "size": 2, "color": "#4b94db" } }, { "key": "6951", "attributes": { "cluster": 1, "x": 67.675078666922, "y": -85.85664918669471, "size": 2, "color": "#762e2e" } }, { "key": "6952", "attributes": { "cluster": 2, "x": 23.078043817233475, "y": 116.20958592696675, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6953", "attributes": { "cluster": 0, "x": -46.61794484645875, "y": 12.870246844731277, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6954", "attributes": { "cluster": 0, "x": -76.61794484645874, "y": -84.12459837912584, "size": 1, "color": "#e36d0" } }, { "key": "6955", "attributes": { "cluster": 0, "x": -11.617944846458741, "y": -44.287429805041675, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6956", "attributes": { "cluster": 0, "x": -11.617944846458741, "y": -26.966921729352904, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "6957", "attributes": { "cluster": 2, "x": -22.921956182766454, "y": 26.142943933385105, "size": 2, "color": "#4b94db" } }, { "key": "6958", "attributes": { "cluster": 2, "x": 37.078043817233514, "y": 105.81728108155349, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6959", "attributes": { "cluster": 2, "x": -36.9219561827665, "y": 36.53524877879838, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6960", "attributes": { "cluster": 2, "x": 37.078043817233564, "y": 36.535248778798405, "size": 2, "color": "#4b94db" } }, { "key": "6961", "attributes": { "cluster": 1, "x": 67.67507866692199, "y": 14.602297652300138, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "6962", "attributes": { "cluster": 1, "x": 55.67507866692198, "y": -85.8566491866947, "size": 1, "color": "#762e2e" } }, { "key": "6963", "attributes": { "cluster": 1, "x": 85.67507866692208, "y": -78.92844595641914, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "6964", "attributes": { "cluster": 1, "x": 37.6750786669219, "y": 7.674094422024581, "size": 2, "color": "#762e2e" } }, { "key": "6965", "attributes": { "cluster": 2, "x": -36.92195618276655, "y": 105.81728108155346, "size": 1, "color": "#4b94db" } }, { "key": "6966", "attributes": { "cluster": 2, "x": -28.921956182766454, "y": 29.607045548522855, "size": 0, "color": "#4b94db" } }, { "key": "6967", "attributes": { "cluster": 0, "x": -111.61794484645874, "y": -26.966921729352883, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6968", "attributes": { "cluster": 0, "x": -111.61794484645874, "y": -44.287429805041654, "size": 1, "color": "#e36d0" } }, { "key": "6969", "attributes": { "cluster": 2, "x": 29.078043817233475, "y": 112.74548431182902, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "6970", "attributes": { "cluster": 1, "x": 37.67507866692203, "y": -78.92844595641922, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6971", "attributes": { "cluster": 2, "x": -28.921956182766575, "y": 112.74548431182895, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6972", "attributes": { "cluster": 2, "x": 29.078043817233596, "y": 29.60704554852292, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6973", "attributes": { "cluster": 0, "x": -53.617944846458734, "y": -85.85664918669468, "size": 2, "color": "#e36d0" } }, { "key": "6974", "attributes": { "cluster": 2, "x": -14.921956182766545, "y": 119.67368754210445, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6975", "attributes": { "cluster": 2, "x": 15.078043817233562, "y": 22.67884231824742, "size": 1, "color": "#4b94db" } }, { "key": "6976", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": 14.60229765230013, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6977", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -85.8566491866947, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "6978", "attributes": { "cluster": 1, "x": 85.67507866692195, "y": 7.674094422024666, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6979", "attributes": { "cluster": 2, "x": 15.078043817233503, "y": 119.67368754210449, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "6980", "attributes": { "cluster": 1, "x": 38.67507866692189, "y": 9.406145229593463, "size": 1, "color": "#762e2e" } }, { "key": "6981", "attributes": { "cluster": 2, "x": -14.921956182766486, "y": 22.678842318247376, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "6982", "attributes": { "cluster": 2, "x": 50.07804381723351, "y": 62.516010892331536, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6983", "attributes": { "cluster": 2, "x": 50.07804381723351, "y": 79.83651896802031, "size": 1, "color": "#4b94db" } }, { "key": "6984", "attributes": { "cluster": 0, "x": -53.617944846458734, "y": 14.602297652300138, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "6985", "attributes": { "cluster": 1, "x": 84.67507866692209, "y": -80.66049676398802, "size": 1, "color": "#762e2e" } }, { "key": "6986", "attributes": { "cluster": 1, "x": 84.67507866692196, "y": 9.406145229593548, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6987", "attributes": { "cluster": 0, "x": -81.61794484645884, "y": 11.138196037162352, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "6988", "attributes": { "cluster": 1, "x": 38.675078666922026, "y": -80.6604967639881, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6989", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": -0.9861596158197301, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "6990", "attributes": { "cluster": 2, "x": -49.92195618276649, "y": 79.83651896802033, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6991", "attributes": { "cluster": 2, "x": -49.92195618276649, "y": 62.51601089233156, "size": 2, "color": "#4b94db" } }, { "key": "6992", "attributes": { "cluster": 2, "x": 8.078043817233516, "y": 20.946791510678523, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6993", "attributes": { "cluster": 2, "x": -7.921956182766498, "y": 121.40573834967334, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "6994", "attributes": { "cluster": 2, "x": -7.9219561827664995, "y": 20.946791510678516, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "6995", "attributes": { "cluster": 1, "x": 24.675078666921983, "y": -70.26819191857483, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "6996", "attributes": { "cluster": 2, "x": 8.078043817233517, "y": 121.40573834967336, "size": 2, "color": "#4b94db" } }, { "key": "6997", "attributes": { "cluster": 2, "x": -19.92195618276659, "y": 117.94163673453556, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "6998", "attributes": { "cluster": 1, "x": 98.67507866692205, "y": -70.26819191857481, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "6999", "attributes": { "cluster": 1, "x": 24.675078666921934, "y": -0.9861596158197514, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7000", "attributes": { "cluster": 2, "x": -48.92195618276649, "y": 57.319858469624926, "size": 1, "color": "#4b94db" } }, { "key": "7001", "attributes": { "cluster": 0, "x": -110.61794484645874, "y": -49.483582227748286, "size": 3.6666666666666665, "color": "#e36d0" } }, { "key": "7002", "attributes": { "cluster": 0, "x": -81.61794484645873, "y": -82.39254757155697, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7003", "attributes": { "cluster": 2, "x": -19.92195618276647, "y": 24.410893125816237, "size": 2, "color": "#4b94db" } }, { "key": "7004", "attributes": { "cluster": 1, "x": 32.675078666922026, "y": -77.19639514885036, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "7005", "attributes": { "cluster": 0, "x": -41.61794484645864, "y": -82.39254757155692, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7006", "attributes": { "cluster": 0, "x": -12.617944846458741, "y": -21.770769306646272, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7007", "attributes": { "cluster": 0, "x": -41.61794484645876, "y": 11.138196037162416, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7008", "attributes": { "cluster": 0, "x": -110.61794484645874, "y": -21.77076930664625, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7009", "attributes": { "cluster": 1, "x": 90.67507866692196, "y": 5.942043614455798, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7010", "attributes": { "cluster": 2, "x": 20.07804381723361, "y": 24.4108931258163, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7011", "attributes": { "cluster": 1, "x": 32.675078666921905, "y": 5.942043614455734, "size": 1, "color": "#762e2e" } }, { "key": "7012", "attributes": { "cluster": 0, "x": -12.617944846458741, "y": -49.48358222774831, "size": 1, "color": "#e36d0" } }, { "key": "7013", "attributes": { "cluster": 1, "x": 90.67507866692208, "y": -77.19639514885029, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7014", "attributes": { "cluster": 1, "x": 46.675078666921934, "y": 12.870246844731234, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7015", "attributes": { "cluster": 1, "x": 76.67507866692205, "y": -84.12459837912579, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7016", "attributes": { "cluster": 0, "x": -17.617944846458734, "y": -9.64641365366413, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7017", "attributes": { "cluster": 2, "x": 49.07804381723351, "y": 85.03267139072693, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7018", "attributes": { "cluster": 2, "x": 20.07804381723349, "y": 117.94163673453562, "size": 1, "color": "#4b94db" } }, { "key": "7019", "attributes": { "cluster": 0, "x": -29.617944846458766, "y": 4.209992806886895, "size": 1, "color": "#e36d0" } }, { "key": "7020", "attributes": { "cluster": 0, "x": -105.61794484645876, "y": -61.60793788073043, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7021", "attributes": { "cluster": 1, "x": 76.67507866692199, "y": 12.870246844731277, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7022", "attributes": { "cluster": 0, "x": -93.61794484645871, "y": -75.46434434128145, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7023", "attributes": { "cluster": 0, "x": -29.617944846458663, "y": -75.46434434128142, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7024", "attributes": { "cluster": 1, "x": 46.675078666922, "y": -84.12459837912584, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7025", "attributes": { "cluster": 2, "x": -48.92195618276649, "y": 85.03267139072696, "size": 1, "color": "#4b94db" } }, { "key": "7026", "attributes": { "cluster": 2, "x": 49.07804381723351, "y": 57.319858469624904, "size": 0, "color": "#4b94db" } }, { "key": "7027", "attributes": { "cluster": 2, "x": 44.078043817233514, "y": 97.15702704370908, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7028", "attributes": { "cluster": 2, "x": 32.078043817233485, "y": 111.0134335042601, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7029", "attributes": { "cluster": 2, "x": -43.9219561827665, "y": 45.19550281664279, "size": 2, "color": "#4b94db" } }, { "key": "7030", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -44.287429805041675, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7031", "attributes": { "cluster": 2, "x": -31.921956182766465, "y": 31.33909635609176, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7032", "attributes": { "cluster": 0, "x": -17.61794484645872, "y": -61.60793788073045, "size": 2, "color": "#e36d0" } }, { "key": "7033", "attributes": { "cluster": 0, "x": -93.61794484645881, "y": 4.209992806886859, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7034", "attributes": { "cluster": 2, "x": 32.078043817233585, "y": 31.339096356091794, "size": 1, "color": "#4b94db" } }, { "key": "7035", "attributes": { "cluster": 2, "x": 44.07804381723353, "y": 45.19550281664276, "size": 2, "color": "#4b94db" } }, { "key": "7036", "attributes": { "cluster": 2, "x": -31.921956182766568, "y": 111.01343350426006, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7037", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -26.966921729352904, "size": 2, "color": "#762e2e" } }, { "key": "7038", "attributes": { "cluster": 0, "x": -105.61794484645876, "y": -9.646413653664109, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7039", "attributes": { "cluster": 2, "x": -43.921956182766515, "y": 97.1570270437091, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "7040", "attributes": { "cluster": 1, "x": 11.67507866692199, "y": -26.966921729352883, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7041", "attributes": { "cluster": 1, "x": 11.67507866692199, "y": -44.287429805041654, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7042", "attributes": { "cluster": 0, "x": -111.61794484645874, "y": -33.89512495962839, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7043", "attributes": { "cluster": 0, "x": -106.61794484645876, "y": -59.87588707316155, "size": 2, "color": "#e36d0" } }, { "key": "7044", "attributes": { "cluster": 0, "x": -11.617944846458741, "y": -37.35922657476617, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7045", "attributes": { "cluster": 2, "x": -49.92195618276649, "y": 72.90831573774481, "size": 2, "color": "#4b94db" } }, { "key": "7046", "attributes": { "cluster": 0, "x": -16.617944846458734, "y": -11.378464461233012, "size": 1, "color": "#e36d0" } }, { "key": "7047", "attributes": { "cluster": 2, "x": -44.9219561827665, "y": 46.92755362421167, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7048", "attributes": { "cluster": 2, "x": 50.07804381723351, "y": 69.44421412260705, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7049", "attributes": { "cluster": 1, "x": 69.67507866692199, "y": -85.85664918669468, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7050", "attributes": { "cluster": 2, "x": 45.078043817233514, "y": 95.4249762361402, "size": 3, "color": "#4b94db" } }, { "key": "7051", "attributes": { "cluster": 1, "x": 53.67507866692198, "y": 14.60229765230013, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7052", "attributes": { "cluster": 1, "x": 53.67507866692198, "y": -85.8566491866947, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "7053", "attributes": { "cluster": 1, "x": 69.675078666922, "y": 14.602297652300138, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7054", "attributes": { "cluster": 0, "x": -106.61794484645877, "y": -11.378464461233008, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7055", "attributes": { "cluster": 0, "x": -16.617944846458713, "y": -59.87588707316155, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7056", "attributes": { "cluster": 0, "x": -18.617944846458734, "y": -7.914362846095262, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7057", "attributes": { "cluster": 0, "x": -25.61794484645874, "y": 0.7458911917491449, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7058", "attributes": { "cluster": 1, "x": 41.67507866692189, "y": 11.138196037162352, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7059", "attributes": { "cluster": 1, "x": 12.67507866692199, "y": -49.483582227748286, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7060", "attributes": { "cluster": 0, "x": -104.61794484645876, "y": -63.3399886882993, "size": 1, "color": "#e36d0" } }, { "key": "7061", "attributes": { "cluster": 2, "x": -44.92195618276652, "y": 95.4249762361402, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7062", "attributes": { "cluster": 1, "x": 41.67507866692201, "y": -82.39254757155697, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "7063", "attributes": { "cluster": 1, "x": 81.67507866692209, "y": -82.39254757155692, "size": 2, "color": "#762e2e" } }, { "key": "7064", "attributes": { "cluster": 0, "x": -97.61794484645874, "y": -72.00024272614371, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7065", "attributes": { "cluster": 0, "x": -18.617944846458705, "y": -63.33998868829931, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7066", "attributes": { "cluster": 0, "x": -104.61794484645878, "y": -7.914362846095251, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7067", "attributes": { "cluster": 2, "x": 45.078043817233535, "y": 46.92755362421166, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7068", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -21.770769306646272, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7069", "attributes": { "cluster": 0, "x": -25.617944846458684, "y": -72.00024272614368, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7070", "attributes": { "cluster": 0, "x": -97.6179448464588, "y": 0.7458911917491307, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7071", "attributes": { "cluster": 1, "x": 81.67507866692196, "y": 11.138196037162416, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7072", "attributes": { "cluster": 1, "x": 12.67507866692199, "y": -21.77076930664625, "size": 1, "color": "#762e2e" } }, { "key": "7073", "attributes": { "cluster": 0, "x": -51.61794484645871, "y": -85.85664918669468, "size": 1, "color": "#e36d0" } }, { "key": "7074", "attributes": { "cluster": 2, "x": 43.078043817233514, "y": 98.88907785127795, "size": 2, "color": "#4b94db" } }, { "key": "7075", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -49.48358222774831, "size": 2, "color": "#762e2e" } }, { "key": "7076", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -9.64641365366413, "size": 2, "color": "#762e2e" } }, { "key": "7077", "attributes": { "cluster": 1, "x": 93.67507866692196, "y": 4.209992806886895, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7078", "attributes": { "cluster": 0, "x": -71.61794484645877, "y": 14.602297652300123, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7079", "attributes": { "cluster": 1, "x": 17.675078666921983, "y": -61.60793788073043, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7080", "attributes": { "cluster": 0, "x": -71.61794484645876, "y": -85.8566491866947, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7081", "attributes": { "cluster": 2, "x": 36.07804381723351, "y": 107.54933188912236, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7082", "attributes": { "cluster": 1, "x": 29.675078666922015, "y": -75.46434434128145, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7083", "attributes": { "cluster": 2, "x": -42.9219561827665, "y": 43.46345200907392, "size": 1, "color": "#4b94db" } }, { "key": "7084", "attributes": { "cluster": 2, "x": -35.92195618276649, "y": 34.80319797122951, "size": 1, "color": "#4b94db" } }, { "key": "7085", "attributes": { "cluster": 0, "x": -51.61794484645873, "y": 14.602297652300138, "size": 2, "color": "#e36d0" } }, { "key": "7086", "attributes": { "cluster": 2, "x": 43.07804381723354, "y": 43.463452009073904, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7087", "attributes": { "cluster": 2, "x": -42.92195618276653, "y": 98.88907785127796, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7088", "attributes": { "cluster": 1, "x": 93.67507866692208, "y": -75.46434434128142, "size": 1, "color": "#762e2e" } }, { "key": "7089", "attributes": { "cluster": 1, "x": 105.67507866692202, "y": -61.60793788073045, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7090", "attributes": { "cluster": 2, "x": 36.078043817233564, "y": 34.80319797122952, "size": 2, "color": "#4b94db" } }, { "key": "7091", "attributes": { "cluster": 1, "x": 29.675078666921912, "y": 4.209992806886859, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7092", "attributes": { "cluster": 2, "x": -35.92195618276655, "y": 107.54933188912234, "size": 0, "color": "#4b94db" } }, { "key": "7093", "attributes": { "cluster": 2, "x": 10.078043817233535, "y": 20.94679151067853, "size": 2, "color": "#4b94db" } }, { "key": "7094", "attributes": { "cluster": 1, "x": 17.67507866692197, "y": -9.646413653664109, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "7095", "attributes": { "cluster": 2, "x": -9.921956182766518, "y": 121.40573834967333, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7096", "attributes": { "cluster": 2, "x": -9.921956182766502, "y": 20.946791510678516, "size": 1, "color": "#4b94db" } }, { "key": "7097", "attributes": { "cluster": 0, "x": -112.61794484645874, "y": -32.163074152059515, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7098", "attributes": { "cluster": 1, "x": 11.67507866692199, "y": -33.89512495962839, "size": 1, "color": "#762e2e" } }, { "key": "7099", "attributes": { "cluster": 2, "x": 10.07804381723352, "y": 121.40573834967336, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7100", "attributes": { "cluster": 1, "x": 16.675078666921983, "y": -59.87588707316155, "size": 2, "color": "#762e2e" } }, { "key": "7101", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -37.35922657476617, "size": 1, "color": "#762e2e" } }, { "key": "7102", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -11.378464461233012, "size": 1, "color": "#762e2e" } }, { "key": "7103", "attributes": { "cluster": 0, "x": -112.61794484645874, "y": -39.09127738233502, "size": 2, "color": "#e36d0" } }, { "key": "7104", "attributes": { "cluster": 0, "x": -10.617944846458741, "y": -39.09127738233504, "size": 1, "color": "#e36d0" } }, { "key": "7105", "attributes": { "cluster": 1, "x": 16.675078666921962, "y": -11.378464461233008, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7106", "attributes": { "cluster": 2, "x": -50.92195618276649, "y": 74.6403665453137, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7107", "attributes": { "cluster": 0, "x": -10.617944846458741, "y": -32.16307415205954, "size": 1, "color": "#e36d0" } }, { "key": "7108", "attributes": { "cluster": 1, "x": 106.67507866692202, "y": -59.87588707316155, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7109", "attributes": { "cluster": 2, "x": -50.92195618276649, "y": 67.71216331503818, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7110", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -7.914362846095262, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7111", "attributes": { "cluster": 1, "x": 97.67507866692199, "y": 0.7458911917491449, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7112", "attributes": { "cluster": 0, "x": -15.617944846458734, "y": -13.110515268801887, "size": 2, "color": "#e36d0" } }, { "key": "7113", "attributes": { "cluster": 1, "x": 18.675078666921983, "y": -63.3399886882993, "size": 3.3333333333333335, "color": "#762e2e" } }, { "key": "7114", "attributes": { "cluster": 2, "x": 51.07804381723351, "y": 67.71216331503817, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7115", "attributes": { "cluster": 1, "x": 25.67507866692199, "y": -72.00024272614371, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7116", "attributes": { "cluster": 0, "x": -107.61794484645874, "y": -13.110515268801876, "size": 2, "color": "#e36d0" } }, { "key": "7117", "attributes": { "cluster": 0, "x": -107.61794484645876, "y": -58.14383626559267, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7118", "attributes": { "cluster": 2, "x": 51.07804381723351, "y": 74.64036654531368, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7119", "attributes": { "cluster": 2, "x": 46.078043817233514, "y": 93.69292542857133, "size": 1, "color": "#4b94db" } }, { "key": "7120", "attributes": { "cluster": 0, "x": -15.617944846458741, "y": -58.14383626559268, "size": 1, "color": "#e36d0" } }, { "key": "7121", "attributes": { "cluster": 2, "x": -45.92195618276649, "y": 93.69292542857133, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7122", "attributes": { "cluster": 2, "x": -45.9219561827665, "y": 48.65960443178054, "size": 1, "color": "#4b94db" } }, { "key": "7123", "attributes": { "cluster": 0, "x": -19.617944846458734, "y": -6.182312038526366, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7124", "attributes": { "cluster": 2, "x": 46.07804381723351, "y": 48.65960443178053, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7125", "attributes": { "cluster": 1, "x": 104.67507866692202, "y": -63.33998868829931, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7126", "attributes": { "cluster": 0, "x": -103.61794484645876, "y": -65.0720394958682, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7127", "attributes": { "cluster": 0, "x": -19.617944846458705, "y": -65.07203949586818, "size": 2, "color": "#e36d0" } }, { "key": "7128", "attributes": { "cluster": 1, "x": 18.675078666921955, "y": -7.914362846095251, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7129", "attributes": { "cluster": 2, "x": 42.078043817233514, "y": 100.62112865884684, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7130", "attributes": { "cluster": 1, "x": 97.67507866692205, "y": -72.00024272614368, "size": 1, "color": "#762e2e" } }, { "key": "7131", "attributes": { "cluster": 0, "x": -103.61794484645878, "y": -6.18231203852638, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7132", "attributes": { "cluster": 2, "x": -41.9219561827665, "y": 41.73140120150502, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7133", "attributes": { "cluster": 0, "x": -108.61794484645874, "y": -14.842566076370744, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7134", "attributes": { "cluster": 2, "x": 42.07804381723354, "y": 41.73140120150504, "size": 2, "color": "#4b94db" } }, { "key": "7135", "attributes": { "cluster": 0, "x": -108.61794484645874, "y": -56.41178545802379, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7136", "attributes": { "cluster": 1, "x": 25.675078666921934, "y": 0.7458911917491307, "size": 1, "color": "#762e2e" } }, { "key": "7137", "attributes": { "cluster": 1, "x": 71.67507866692202, "y": -85.85664918669468, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7138", "attributes": { "cluster": 1, "x": 51.67507866692196, "y": 14.602297652300123, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7139", "attributes": { "cluster": 0, "x": -14.617944846458741, "y": -56.411785458023814, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7140", "attributes": { "cluster": 0, "x": -14.617944846458741, "y": -14.842566076370765, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7141", "attributes": { "cluster": 1, "x": 51.675078666921976, "y": -85.8566491866947, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7142", "attributes": { "cluster": 2, "x": -41.92195618276653, "y": 100.62112865884683, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7143", "attributes": { "cluster": 2, "x": -46.92195618276649, "y": 91.96087462100246, "size": 1, "color": "#4b94db" } }, { "key": "7144", "attributes": { "cluster": 2, "x": -46.92195618276649, "y": 50.39165523934942, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7145", "attributes": { "cluster": 2, "x": 47.07804381723351, "y": 50.3916552393494, "size": 1, "color": "#4b94db" } }, { "key": "7146", "attributes": { "cluster": 1, "x": 71.675078666922, "y": 14.602297652300138, "size": 2, "color": "#762e2e" } }, { "key": "7147", "attributes": { "cluster": 1, "x": 10.67507866692199, "y": -32.163074152059515, "size": 2, "color": "#762e2e" } }, { "key": "7148", "attributes": { "cluster": 1, "x": 10.67507866692199, "y": -39.09127738233502, "size": 0, "color": "#762e2e" } }, { "key": "7149", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -39.09127738233504, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7150", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -32.16307415205954, "size": 2, "color": "#762e2e" } }, { "key": "7151", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -13.110515268801887, "size": 2, "color": "#762e2e" } }, { "key": "7152", "attributes": { "cluster": 2, "x": 47.07804381723351, "y": 91.96087462100245, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7153", "attributes": { "cluster": 1, "x": 15.67507866692199, "y": -13.110515268801876, "size": 2, "color": "#762e2e" } }, { "key": "7154", "attributes": { "cluster": 2, "x": 17.0780438172335, "y": 119.67368754210449, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7155", "attributes": { "cluster": 1, "x": 15.675078666921983, "y": -58.14383626559267, "size": 1, "color": "#762e2e" } }, { "key": "7156", "attributes": { "cluster": 2, "x": -16.92195618276648, "y": 22.67884231824737, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7157", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -58.14383626559268, "size": 1, "color": "#762e2e" } }, { "key": "7158", "attributes": { "cluster": 2, "x": 17.0780438172336, "y": 22.678842318247412, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7159", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -6.182312038526366, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7160", "attributes": { "cluster": 2, "x": -16.92195618276658, "y": 119.67368754210446, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7161", "attributes": { "cluster": 2, "x": -49.92195618276649, "y": 59.0519092771938, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7162", "attributes": { "cluster": 2, "x": 50.07804381723351, "y": 83.30062058315806, "size": 3, "color": "#4b94db" } }, { "key": "7163", "attributes": { "cluster": 1, "x": 19.675078666921983, "y": -65.0720394958682, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7164", "attributes": { "cluster": 2, "x": -49.92195618276649, "y": 83.30062058315808, "size": 1, "color": "#4b94db" } }, { "key": "7165", "attributes": { "cluster": 2, "x": 50.07804381723351, "y": 59.051909277193786, "size": 2, "color": "#4b94db" } }, { "key": "7166", "attributes": { "cluster": 0, "x": -44.617944846458755, "y": 12.870246844731284, "size": 2, "color": "#e36d0" } }, { "key": "7167", "attributes": { "cluster": 0, "x": -78.61794484645873, "y": -84.12459837912584, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7168", "attributes": { "cluster": 1, "x": 103.67507866692202, "y": -65.07203949586818, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7169", "attributes": { "cluster": 2, "x": 41.078043817233514, "y": 102.35317946641572, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7170", "attributes": { "cluster": 0, "x": -44.617944846458656, "y": -84.1245983791258, "size": 1, "color": "#e36d0" } }, { "key": "7171", "attributes": { "cluster": 0, "x": -78.61794484645883, "y": 12.870246844731241, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7172", "attributes": { "cluster": 2, "x": -40.9219561827665, "y": 39.99935039393614, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7173", "attributes": { "cluster": 0, "x": -111.61794484645874, "y": -47.751531420179404, "size": 2, "color": "#e36d0" } }, { "key": "7174", "attributes": { "cluster": 0, "x": -11.617944846458741, "y": -23.50282011421515, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7175", "attributes": { "cluster": 1, "x": 19.675078666921955, "y": -6.18231203852638, "size": 2, "color": "#762e2e" } }, { "key": "7176", "attributes": { "cluster": 0, "x": -111.61794484645874, "y": -23.50282011421513, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7177", "attributes": { "cluster": 1, "x": 14.67507866692199, "y": -14.842566076370744, "size": 0, "color": "#762e2e" } }, { "key": "7178", "attributes": { "cluster": 2, "x": 41.07804381723356, "y": 39.99935039393615, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7179", "attributes": { "cluster": 0, "x": -11.617944846458741, "y": -47.75153142017943, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7180", "attributes": { "cluster": 2, "x": -40.92195618276654, "y": 102.35317946641572, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7181", "attributes": { "cluster": 1, "x": 14.67507866692199, "y": -56.41178545802379, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7182", "attributes": { "cluster": 0, "x": -20.617944846458734, "y": -4.450261230957487, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7183", "attributes": { "cluster": 2, "x": -50.92195618276649, "y": 78.10446816045145, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7184", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -56.411785458023814, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7185", "attributes": { "cluster": 2, "x": -50.92195618276649, "y": 64.24806169990043, "size": 1, "color": "#4b94db" } }, { "key": "7186", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -14.842566076370765, "size": 3, "color": "#762e2e" } }, { "key": "7187", "attributes": { "cluster": 1, "x": 78.67507866692198, "y": 12.870246844731284, "size": 2, "color": "#762e2e" } }, { "key": "7188", "attributes": { "cluster": 2, "x": 51.07804381723351, "y": 64.24806169990042, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7189", "attributes": { "cluster": 0, "x": -102.61794484645876, "y": -66.80409030343708, "size": 1, "color": "#e36d0" } }, { "key": "7190", "attributes": { "cluster": 1, "x": 44.675078666922005, "y": -84.12459837912584, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7191", "attributes": { "cluster": 2, "x": 51.07804381723351, "y": 78.10446816045143, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7192", "attributes": { "cluster": 1, "x": 78.67507866692208, "y": -84.1245983791258, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7193", "attributes": { "cluster": 2, "x": -11.921956182766532, "y": 121.40573834967333, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7194", "attributes": { "cluster": 1, "x": 44.675078666921905, "y": 12.870246844731241, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7195", "attributes": { "cluster": 2, "x": 12.07804381723355, "y": 20.94679151067853, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7196", "attributes": { "cluster": 2, "x": 26.078043817233603, "y": 27.87499474095408, "size": 1, "color": "#4b94db" } }, { "key": "7197", "attributes": { "cluster": 1, "x": 11.67507866692199, "y": -47.751531420179404, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7198", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -23.50282011421515, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7199", "attributes": { "cluster": 2, "x": -25.921956182766582, "y": 114.47753511939779, "size": 1, "color": "#4b94db" } }, { "key": "7200", "attributes": { "cluster": 2, "x": -11.921956182766486, "y": 20.9467915106785, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7201", "attributes": { "cluster": 0, "x": -20.61794484645869, "y": -66.80409030343706, "size": 2, "color": "#e36d0" } }, { "key": "7202", "attributes": { "cluster": 1, "x": 11.67507866692199, "y": -23.50282011421513, "size": 2, "color": "#762e2e" } }, { "key": "7203", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -47.75153142017943, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7204", "attributes": { "cluster": 0, "x": -102.61794484645878, "y": -4.450261230957494, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7205", "attributes": { "cluster": 0, "x": -112.61794484645874, "y": -28.698972536921758, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7206", "attributes": { "cluster": 2, "x": 12.078043817233503, "y": 121.40573834967336, "size": 2, "color": "#4b94db" } }, { "key": "7207", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -4.450261230957487, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7208", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 52.12370604691829, "size": 2, "color": "#4b94db" } }, { "key": "7209", "attributes": { "cluster": 0, "x": -112.61794484645874, "y": -42.55537899747278, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7210", "attributes": { "cluster": 1, "x": 20.675078666921983, "y": -66.80409030343708, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7211", "attributes": { "cluster": 2, "x": -25.92195618276644, "y": 27.874994740953973, "size": 2, "color": "#4b94db" } }, { "key": "7212", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 90.22882381343358, "size": 2, "color": "#4b94db" } }, { "key": "7213", "attributes": { "cluster": 0, "x": -10.617944846458741, "y": -42.5553789974728, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7214", "attributes": { "cluster": 1, "x": 102.67507866692205, "y": -66.80409030343706, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7215", "attributes": { "cluster": 0, "x": -10.617944846458741, "y": -28.69897253692178, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7216", "attributes": { "cluster": 1, "x": 20.67507866692194, "y": -4.450261230957494, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7217", "attributes": { "cluster": 1, "x": 10.67507866692199, "y": -28.698972536921758, "size": 2, "color": "#762e2e" } }, { "key": "7218", "attributes": { "cluster": 2, "x": 26.07804381723346, "y": 114.47753511939788, "size": 1, "color": "#4b94db" } }, { "key": "7219", "attributes": { "cluster": 0, "x": -73.61794484645878, "y": 14.602297652300123, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7220", "attributes": { "cluster": 1, "x": 10.67507866692199, "y": -42.55537899747278, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7221", "attributes": { "cluster": 0, "x": -49.6179448464587, "y": -85.85664918669468, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7222", "attributes": { "cluster": 0, "x": -35.61794484645865, "y": -78.92844595641913, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7223", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -42.5553789974728, "size": 1, "color": "#762e2e" } }, { "key": "7224", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 90.22882381343359, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7225", "attributes": { "cluster": 0, "x": -87.61794484645884, "y": 7.674094422024574, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7226", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 52.12370604691828, "size": 1, "color": "#4b94db" } }, { "key": "7227", "attributes": { "cluster": 0, "x": -73.61794484645874, "y": -85.85664918669471, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7228", "attributes": { "cluster": 2, "x": -27.921956182766582, "y": 114.47753511939783, "size": 1, "color": "#4b94db" } }, { "key": "7229", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -28.69897253692178, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7230", "attributes": { "cluster": 0, "x": -49.61794484645875, "y": 14.602297652300152, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7231", "attributes": { "cluster": 1, "x": 49.67507866692195, "y": 14.602297652300123, "size": 1, "color": "#762e2e" } }, { "key": "7232", "attributes": { "cluster": 2, "x": 28.078043817233603, "y": 27.874994740954044, "size": 2, "color": "#4b94db" } }, { "key": "7233", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -54.67973465045492, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7234", "attributes": { "cluster": 2, "x": 28.07804381723346, "y": 114.4775351193979, "size": 2, "color": "#4b94db" } }, { "key": "7235", "attributes": { "cluster": 0, "x": -87.6179448464587, "y": -78.92844595641924, "size": 1, "color": "#e36d0" } }, { "key": "7236", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": -16.574616883939637, "size": 1, "color": "#e36d0" } }, { "key": "7237", "attributes": { "cluster": 2, "x": -27.92195618276644, "y": 27.874994740953966, "size": 1, "color": "#4b94db" } }, { "key": "7238", "attributes": { "cluster": 0, "x": -35.61794484645879, "y": 7.67409442202468, "size": 1, "color": "#e36d0" } }, { "key": "7239", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -16.574616883939626, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7240", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": -54.67973465045493, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7241", "attributes": { "cluster": 2, "x": 35.07804381723351, "y": 109.28138269669122, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7242", "attributes": { "cluster": 2, "x": -34.92195618276649, "y": 33.07114716366065, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7243", "attributes": { "cluster": 2, "x": 35.078043817233585, "y": 33.07114716366066, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7244", "attributes": { "cluster": 0, "x": -89.61794484645884, "y": 7.674094422024609, "size": 2, "color": "#e36d0" } }, { "key": "7245", "attributes": { "cluster": 1, "x": 73.67507866692203, "y": -85.85664918669468, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7246", "attributes": { "cluster": 0, "x": -33.61794484645865, "y": -78.92844595641917, "size": 1, "color": "#e36d0" } }, { "key": "7247", "attributes": { "cluster": 2, "x": -34.92195618276657, "y": 109.2813826966912, "size": 1, "color": "#4b94db" } }, { "key": "7248", "attributes": { "cluster": 1, "x": 87.67507866692208, "y": -78.92844595641913, "size": 1, "color": "#762e2e" } }, { "key": "7249", "attributes": { "cluster": 2, "x": 22.078043817233624, "y": 24.410893125816308, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "7250", "attributes": { "cluster": 1, "x": 35.6750786669219, "y": 7.674094422024574, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7251", "attributes": { "cluster": 1, "x": 49.675078666922, "y": -85.85664918669471, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7252", "attributes": { "cluster": 2, "x": -21.921956182766603, "y": 117.94163673453556, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7253", "attributes": { "cluster": 0, "x": -33.61794484645879, "y": 7.674094422024687, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7254", "attributes": { "cluster": 2, "x": -21.921956182766444, "y": 24.410893125816237, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7255", "attributes": { "cluster": 2, "x": 22.078043817233464, "y": 117.94163673453562, "size": 1, "color": "#4b94db" } }, { "key": "7256", "attributes": { "cluster": 1, "x": 73.67507866692199, "y": 14.602297652300152, "size": 2, "color": "#762e2e" } }, { "key": "7257", "attributes": { "cluster": 0, "x": -89.6179448464587, "y": -78.92844595641924, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7258", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -54.67973465045492, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7259", "attributes": { "cluster": 2, "x": -39.9219561827665, "y": 38.267299586367265, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7260", "attributes": { "cluster": 2, "x": 40.078043817233514, "y": 104.08523027398459, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7261", "attributes": { "cluster": 0, "x": -26.61794484645874, "y": 2.4779419993180056, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7262", "attributes": { "cluster": 0, "x": -96.61794484645874, "y": -73.73229353371256, "size": 2, "color": "#e36d0" } }, { "key": "7263", "attributes": { "cluster": 0, "x": -26.617944846458663, "y": -73.73229353371255, "size": 1, "color": "#e36d0" } }, { "key": "7264", "attributes": { "cluster": 0, "x": -96.61794484645881, "y": 2.4779419993179914, "size": 1, "color": "#e36d0" } }, { "key": "7265", "attributes": { "cluster": 0, "x": -39.61794484645863, "y": -82.3925475715569, "size": 1, "color": "#e36d0" } }, { "key": "7266", "attributes": { "cluster": 2, "x": -39.921956182766536, "y": 104.08523027398459, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7267", "attributes": { "cluster": 0, "x": -83.61794484645885, "y": 11.138196037162345, "size": 2, "color": "#e36d0" } }, { "key": "7268", "attributes": { "cluster": 2, "x": 40.07804381723355, "y": 38.26729958636728, "size": 1, "color": "#4b94db" } }, { "key": "7269", "attributes": { "cluster": 1, "x": 35.67507866692204, "y": -78.92844595641924, "size": 2, "color": "#762e2e" } }, { "key": "7270", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -16.574616883939637, "size": 2, "color": "#762e2e" } }, { "key": "7271", "attributes": { "cluster": 0, "x": -83.6179448464587, "y": -82.39254757155697, "size": 1, "color": "#e36d0" } }, { "key": "7272", "attributes": { "cluster": 0, "x": -39.617944846458784, "y": 11.138196037162416, "size": 2, "color": "#e36d0" } }, { "key": "7273", "attributes": { "cluster": 1, "x": 87.67507866692193, "y": 7.67409442202468, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7274", "attributes": { "cluster": 2, "x": 31.078043817233475, "y": 112.74548431182902, "size": 1, "color": "#4b94db" } }, { "key": "7275", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -16.574616883939626, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7276", "attributes": { "cluster": 0, "x": -101.61794484645876, "y": -68.53614111100595, "size": 1, "color": "#e36d0" } }, { "key": "7277", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -54.67973465045493, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7278", "attributes": { "cluster": 0, "x": -21.617944846458734, "y": -2.718210423388612, "size": 2, "color": "#e36d0" } }, { "key": "7279", "attributes": { "cluster": 0, "x": -101.61794484645878, "y": -2.7182104233886264, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7280", "attributes": { "cluster": 0, "x": -21.6179448464587, "y": -68.53614111100593, "size": 1, "color": "#e36d0" } }, { "key": "7281", "attributes": { "cluster": 1, "x": 33.6750786669219, "y": 7.674094422024609, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7282", "attributes": { "cluster": 0, "x": -30.617944846458776, "y": 5.942043614455805, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7283", "attributes": { "cluster": 0, "x": -92.6179448464587, "y": -77.19639514885037, "size": 3, "color": "#e36d0" } }, { "key": "7284", "attributes": { "cluster": 1, "x": 89.67507866692208, "y": -78.92844595641917, "size": 1, "color": "#762e2e" } }, { "key": "7285", "attributes": { "cluster": 0, "x": -30.617944846458656, "y": -77.1963951488503, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7286", "attributes": { "cluster": 0, "x": -92.61794484645883, "y": 5.942043614455741, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7287", "attributes": { "cluster": 2, "x": -30.921956182766454, "y": 29.607045548522848, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7288", "attributes": { "cluster": 0, "x": -110.61794484645874, "y": -52.94768384288604, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7289", "attributes": { "cluster": 1, "x": 89.67507866692193, "y": 7.674094422024687, "size": 1, "color": "#762e2e" } }, { "key": "7290", "attributes": { "cluster": 1, "x": 33.67507866692204, "y": -78.92844595641924, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7291", "attributes": { "cluster": 2, "x": 31.078043817233596, "y": 29.607045548522912, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "7292", "attributes": { "cluster": 2, "x": -30.921956182766575, "y": 112.74548431182896, "size": 3, "color": "#4b94db" } }, { "key": "7293", "attributes": { "cluster": 1, "x": 96.67507866692199, "y": 2.4779419993180056, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7294", "attributes": { "cluster": 1, "x": 26.67507866692199, "y": -73.73229353371256, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7295", "attributes": { "cluster": 2, "x": -48.92195618276649, "y": 53.85575685448717, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7296", "attributes": { "cluster": 2, "x": 49.07804381723351, "y": 88.4967730058647, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7297", "attributes": { "cluster": 0, "x": -12.617944846458741, "y": -18.306667691508515, "size": 1, "color": "#e36d0" } }, { "key": "7298", "attributes": { "cluster": 0, "x": -110.61794484645876, "y": -18.306667691508505, "size": 2, "color": "#e36d0" } }, { "key": "7299", "attributes": { "cluster": 2, "x": -48.92195618276651, "y": 88.49677300586471, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7300", "attributes": { "cluster": 2, "x": 49.07804381723352, "y": 53.855756854487154, "size": 2, "color": "#4b94db" } }, { "key": "7301", "attributes": { "cluster": 1, "x": 96.67507866692208, "y": -73.73229353371255, "size": 1, "color": "#762e2e" } }, { "key": "7302", "attributes": { "cluster": 1, "x": 26.675078666921912, "y": 2.4779419993179914, "size": 2, "color": "#762e2e" } }, { "key": "7303", "attributes": { "cluster": 2, "x": 1.0780438172335025, "y": 123.13778915724222, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7304", "attributes": { "cluster": 1, "x": 83.6750786669221, "y": -82.3925475715569, "size": 1, "color": "#762e2e" } }, { "key": "7305", "attributes": { "cluster": 2, "x": -0.921956182766499, "y": 123.13778915724222, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7306", "attributes": { "cluster": 1, "x": 39.67507866692188, "y": 11.138196037162345, "size": 1, "color": "#762e2e" } }, { "key": "7307", "attributes": { "cluster": 2, "x": -0.9219561827664837, "y": 19.21474070310964, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7308", "attributes": { "cluster": 1, "x": 39.67507866692203, "y": -82.39254757155697, "size": 1, "color": "#762e2e" } }, { "key": "7309", "attributes": { "cluster": 0, "x": -12.617944846458727, "y": -52.94768384288605, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7310", "attributes": { "cluster": 2, "x": 1.0780438172335178, "y": 19.214740703109634, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7311", "attributes": { "cluster": 0, "x": -60.61794484645875, "y": 16.334348459869013, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7312", "attributes": { "cluster": 0, "x": -62.61794484645875, "y": 16.33434845986902, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7313", "attributes": { "cluster": 1, "x": 83.67507866692195, "y": 11.138196037162416, "size": 3.6666666666666665, "color": "#762e2e" } }, { "key": "7314", "attributes": { "cluster": 2, "x": 3.0780438172335387, "y": 19.214740703109634, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7315", "attributes": { "cluster": 1, "x": 21.675078666921983, "y": -68.53614111100595, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7316", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": -2.718210423388612, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7317", "attributes": { "cluster": 1, "x": 21.675078666921948, "y": -2.7182104233886264, "size": 1, "color": "#762e2e" } }, { "key": "7318", "attributes": { "cluster": 1, "x": 101.67507866692203, "y": -68.53614111100593, "size": 1, "color": "#762e2e" } }, { "key": "7319", "attributes": { "cluster": 2, "x": 3.078043817233526, "y": 123.13778915724224, "size": 1, "color": "#4b94db" } }, { "key": "7320", "attributes": { "cluster": 1, "x": 92.67507866692196, "y": 5.942043614455805, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7321", "attributes": { "cluster": 0, "x": -62.617944846458734, "y": -87.58869999426358, "size": 2, "color": "#e36d0" } }, { "key": "7322", "attributes": { "cluster": 0, "x": -60.617944846458734, "y": -87.58869999426358, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7323", "attributes": { "cluster": 2, "x": -2.92195618276652, "y": 123.13778915724222, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7324", "attributes": { "cluster": 0, "x": -58.61794484645871, "y": -87.58869999426358, "size": 1, "color": "#e36d0" } }, { "key": "7325", "attributes": { "cluster": 0, "x": -58.61794484645873, "y": 16.334348459869027, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7326", "attributes": { "cluster": 2, "x": -2.921956182766507, "y": 19.214740703109626, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7327", "attributes": { "cluster": 0, "x": -64.61794484645877, "y": 16.33434845986902, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7328", "attributes": { "cluster": 1, "x": 30.675078666922026, "y": -77.19639514885037, "size": 2, "color": "#762e2e" } }, { "key": "7329", "attributes": { "cluster": 0, "x": -64.61794484645876, "y": -87.58869999426358, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7330", "attributes": { "cluster": 1, "x": 92.67507866692208, "y": -77.1963951488503, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7331", "attributes": { "cluster": 1, "x": 30.675078666921905, "y": 5.942043614455741, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7332", "attributes": { "cluster": 0, "x": -10.617944846458741, "y": -25.234870921784026, "size": 1, "color": "#e36d0" } }, { "key": "7333", "attributes": { "cluster": 2, "x": 51.07804381723351, "y": 81.56856977558918, "size": 2, "color": "#4b94db" } }, { "key": "7334", "attributes": { "cluster": 0, "x": -112.61794484645874, "y": -46.019480612610536, "size": 2, "color": "#e36d0" } }, { "key": "7335", "attributes": { "cluster": 1, "x": 12.67507866692199, "y": -52.94768384288604, "size": 3, "color": "#762e2e" } }, { "key": "7336", "attributes": { "cluster": 0, "x": -10.617944846458741, "y": -46.01948061261055, "size": 3, "color": "#e36d0" } }, { "key": "7337", "attributes": { "cluster": 0, "x": -112.61794484645874, "y": -25.234870921784008, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7338", "attributes": { "cluster": 2, "x": -50.92195618276649, "y": 60.78396008476268, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7339", "attributes": { "cluster": 2, "x": 51.07804381723351, "y": 60.78396008476266, "size": 1, "color": "#4b94db" } }, { "key": "7340", "attributes": { "cluster": 2, "x": -50.92195618276649, "y": 81.56856977558921, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7341", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -18.306667691508515, "size": 1, "color": "#762e2e" } }, { "key": "7342", "attributes": { "cluster": 2, "x": 19.07804381723361, "y": 22.678842318247426, "size": 1, "color": "#4b94db" } }, { "key": "7343", "attributes": { "cluster": 2, "x": -18.92195618276659, "y": 119.67368754210443, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7344", "attributes": { "cluster": 0, "x": -42.61794484645864, "y": -84.12459837912579, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7345", "attributes": { "cluster": 1, "x": 12.675078666921976, "y": -18.306667691508505, "size": 2, "color": "#762e2e" } }, { "key": "7346", "attributes": { "cluster": 0, "x": -80.61794484645884, "y": 12.870246844731227, "size": 2, "color": "#e36d0" } }, { "key": "7347", "attributes": { "cluster": 0, "x": -80.61794484645871, "y": -84.12459837912584, "size": 1, "color": "#e36d0" } }, { "key": "7348", "attributes": { "cluster": 0, "x": -42.61794484645877, "y": 12.870246844731284, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7349", "attributes": { "cluster": 2, "x": -18.921956182766458, "y": 22.67884231824737, "size": 1, "color": "#4b94db" } }, { "key": "7350", "attributes": { "cluster": 2, "x": 19.07804381723348, "y": 119.67368754210449, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7351", "attributes": { "cluster": 2, "x": -13.921956182766547, "y": 121.40573834967333, "size": 1, "color": "#4b94db" } }, { "key": "7352", "attributes": { "cluster": 0, "x": -75.6179448464588, "y": 14.60229765230011, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7353", "attributes": { "cluster": 0, "x": -47.617944846458684, "y": -85.85664918669467, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7354", "attributes": { "cluster": 0, "x": -47.61794484645874, "y": 14.602297652300159, "size": 2, "color": "#e36d0" } }, { "key": "7355", "attributes": { "cluster": 0, "x": -75.61794484645874, "y": -85.85664918669471, "size": 1, "color": "#e36d0" } }, { "key": "7356", "attributes": { "cluster": 0, "x": -10.617944846458741, "y": -35.62717576719729, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7357", "attributes": { "cluster": 2, "x": 14.078043817233564, "y": 20.946791510678544, "size": 1, "color": "#4b94db" } }, { "key": "7358", "attributes": { "cluster": 0, "x": -9.617944846458741, "y": -33.89512495962841, "size": 1, "color": "#e36d0" } }, { "key": "7359", "attributes": { "cluster": 2, "x": 14.078043817233507, "y": 121.40573834967337, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7360", "attributes": { "cluster": 2, "x": -13.92195618276649, "y": 20.946791510678494, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7361", "attributes": { "cluster": 2, "x": 51.07804381723351, "y": 71.17626493017592, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7362", "attributes": { "cluster": 1, "x": 110.675078666922, "y": -52.94768384288605, "size": 1, "color": "#762e2e" } }, { "key": "7363", "attributes": { "cluster": 0, "x": -112.61794484645874, "y": -35.627175767197265, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7364", "attributes": { "cluster": 1, "x": 62.67507866692198, "y": 16.334348459869013, "size": 2, "color": "#762e2e" } }, { "key": "7365", "attributes": { "cluster": 0, "x": -113.61794484645874, "y": -37.35922657476615, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7366", "attributes": { "cluster": 2, "x": 52.07804381723351, "y": 72.9083157377448, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7367", "attributes": { "cluster": 0, "x": -100.61794484645876, "y": -70.26819191857481, "size": 1, "color": "#e36d0" } }, { "key": "7368", "attributes": { "cluster": 2, "x": -50.92195618276649, "y": 71.17626493017595, "size": 2, "color": "#4b94db" } }, { "key": "7369", "attributes": { "cluster": 2, "x": -51.92195618276649, "y": 69.44421412260706, "size": 1, "color": "#4b94db" } }, { "key": "7370", "attributes": { "cluster": 1, "x": 60.67507866692198, "y": 16.33434845986902, "size": 2, "color": "#762e2e" } }, { "key": "7371", "attributes": { "cluster": 1, "x": 60.675078666922, "y": -87.58869999426358, "size": 3.6666666666666665, "color": "#762e2e" } }, { "key": "7372", "attributes": { "cluster": 1, "x": 62.675078666922, "y": -87.58869999426358, "size": 1, "color": "#762e2e" } }, { "key": "7373", "attributes": { "cluster": 2, "x": -38.9219561827665, "y": 36.53524877879839, "size": 2, "color": "#4b94db" } }, { "key": "7374", "attributes": { "cluster": 0, "x": -22.617944846458734, "y": -0.9861596158197372, "size": 1, "color": "#e36d0" } }, { "key": "7375", "attributes": { "cluster": 0, "x": -100.6179448464588, "y": -0.9861596158197372, "size": 3, "color": "#e36d0" } }, { "key": "7376", "attributes": { "cluster": 1, "x": 64.67507866692202, "y": -87.58869999426358, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7377", "attributes": { "cluster": 1, "x": 64.675078666922, "y": 16.334348459869027, "size": 0, "color": "#762e2e" } }, { "key": "7378", "attributes": { "cluster": 2, "x": 39.078043817233514, "y": 105.81728108155347, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7379", "attributes": { "cluster": 1, "x": 58.67507866692196, "y": 16.33434845986902, "size": 1, "color": "#762e2e" } }, { "key": "7380", "attributes": { "cluster": 1, "x": 58.675078666921976, "y": -87.58869999426358, "size": 1, "color": "#762e2e" } }, { "key": "7381", "attributes": { "cluster": 2, "x": -38.92195618276655, "y": 105.81728108155347, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7382", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -25.234870921784026, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7383", "attributes": { "cluster": 2, "x": 39.078043817233564, "y": 36.53524877879839, "size": 1, "color": "#4b94db" } }, { "key": "7384", "attributes": { "cluster": 2, "x": -4.921956182766499, "y": 123.13778915724224, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7385", "attributes": { "cluster": 1, "x": 10.67507866692199, "y": -46.019480612610536, "size": 1, "color": "#762e2e" } }, { "key": "7386", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -46.01948061261055, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7387", "attributes": { "cluster": 1, "x": 10.67507866692199, "y": -25.234870921784008, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7388", "attributes": { "cluster": 0, "x": -22.617944846458684, "y": -70.26819191857481, "size": 1, "color": "#e36d0" } }, { "key": "7389", "attributes": { "cluster": 1, "x": 80.67507866692209, "y": -84.12459837912579, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7390", "attributes": { "cluster": 2, "x": 5.078043817233517, "y": 19.214740703109626, "size": 1, "color": "#4b94db" } }, { "key": "7391", "attributes": { "cluster": 1, "x": 42.67507866692189, "y": 12.870246844731227, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7392", "attributes": { "cluster": 0, "x": -66.61794484645876, "y": 16.334348459869027, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7393", "attributes": { "cluster": 0, "x": -56.617944846458734, "y": -87.58869999426358, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7394", "attributes": { "cluster": 2, "x": 5.078043817233534, "y": 123.13778915724224, "size": 1, "color": "#4b94db" } }, { "key": "7395", "attributes": { "cluster": 2, "x": -4.9219561827665155, "y": 19.214740703109626, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7396", "attributes": { "cluster": 1, "x": 42.67507866692202, "y": -84.12459837912584, "size": 2, "color": "#762e2e" } }, { "key": "7397", "attributes": { "cluster": 1, "x": 80.67507866692196, "y": 12.870246844731284, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7398", "attributes": { "cluster": 1, "x": 47.675078666921934, "y": 14.60229765230011, "size": 3.6666666666666665, "color": "#762e2e" } }, { "key": "7399", "attributes": { "cluster": 1, "x": 75.67507866692205, "y": -85.85664918669467, "size": 1, "color": "#762e2e" } }, { "key": "7400", "attributes": { "cluster": 2, "x": 52.07804381723351, "y": 65.98011250746929, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7401", "attributes": { "cluster": 0, "x": -56.61794484645871, "y": 16.334348459869027, "size": 2, "color": "#e36d0" } }, { "key": "7402", "attributes": { "cluster": 1, "x": 75.67507866692199, "y": 14.602297652300159, "size": 1, "color": "#762e2e" } }, { "key": "7403", "attributes": { "cluster": 2, "x": 52.07804381723351, "y": 76.37241735288255, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7404", "attributes": { "cluster": 1, "x": 47.67507866692199, "y": -85.85664918669471, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7405", "attributes": { "cluster": 0, "x": -66.61794484645877, "y": -87.58869999426358, "size": 2, "color": "#e36d0" } }, { "key": "7406", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -35.62717576719729, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7407", "attributes": { "cluster": 0, "x": -9.617944846458741, "y": -40.82332818990392, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7408", "attributes": { "cluster": 2, "x": -51.92195618276649, "y": 76.37241735288258, "size": 1, "color": "#4b94db" } }, { "key": "7409", "attributes": { "cluster": 0, "x": -9.617944846458741, "y": -30.431023344490658, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7410", "attributes": { "cluster": 2, "x": -51.92195618276649, "y": 65.98011250746931, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7411", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -33.89512495962841, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7412", "attributes": { "cluster": 1, "x": 10.67507866692199, "y": -35.627175767197265, "size": 2, "color": "#762e2e" } }, { "key": "7413", "attributes": { "cluster": 1, "x": 9.67507866692199, "y": -37.35922657476615, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7414", "attributes": { "cluster": 1, "x": 22.675078666921983, "y": -70.26819191857481, "size": 1, "color": "#762e2e" } }, { "key": "7415", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": -0.9861596158197372, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7416", "attributes": { "cluster": 2, "x": -49.92195618276649, "y": 55.58780766205605, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7417", "attributes": { "cluster": 2, "x": 50.07804381723351, "y": 86.76472219829581, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7418", "attributes": { "cluster": 2, "x": -49.92195618276651, "y": 86.76472219829583, "size": 2, "color": "#4b94db" } }, { "key": "7419", "attributes": { "cluster": 1, "x": 22.675078666921934, "y": -0.9861596158197372, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7420", "attributes": { "cluster": 2, "x": 50.07804381723352, "y": 55.587807662056036, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7421", "attributes": { "cluster": 1, "x": 100.67507866692205, "y": -70.26819191857481, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7422", "attributes": { "cluster": 2, "x": 34.07804381723348, "y": 111.01343350426012, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7423", "attributes": { "cluster": 2, "x": -33.921956182766465, "y": 31.33909635609175, "size": 1, "color": "#4b94db" } }, { "key": "7424", "attributes": { "cluster": 1, "x": 56.67507866692198, "y": 16.334348459869027, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7425", "attributes": { "cluster": 2, "x": 34.07804381723358, "y": 31.33909635609178, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7426", "attributes": { "cluster": 1, "x": 66.675078666922, "y": -87.58869999426358, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7427", "attributes": { "cluster": 0, "x": -113.61794484645874, "y": -30.431023344490637, "size": 1, "color": "#e36d0" } }, { "key": "7428", "attributes": { "cluster": 1, "x": 66.67507866692202, "y": 16.334348459869027, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7429", "attributes": { "cluster": 2, "x": -33.921956182766564, "y": 111.01343350426009, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7430", "attributes": { "cluster": 1, "x": 56.67507866692196, "y": -87.58869999426358, "size": 1, "color": "#762e2e" } }, { "key": "7431", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -40.82332818990392, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7432", "attributes": { "cluster": 2, "x": -6.921956182766498, "y": 19.21474070310964, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "7433", "attributes": { "cluster": 0, "x": -113.61794484645874, "y": -40.8233281899039, "size": 1, "color": "#e36d0" } }, { "key": "7434", "attributes": { "cluster": 2, "x": 7.078043817233531, "y": 19.21474070310964, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7435", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -30.431023344490658, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7436", "attributes": { "cluster": 2, "x": 7.0780438172335165, "y": 123.13778915724222, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7437", "attributes": { "cluster": 2, "x": -6.921956182766512, "y": 123.13778915724222, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7438", "attributes": { "cluster": 1, "x": 9.67507866692199, "y": -30.431023344490637, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7439", "attributes": { "cluster": 1, "x": 9.67507866692199, "y": -40.8233281899039, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7440", "attributes": { "cluster": 2, "x": -37.92195618276649, "y": 34.80319797122951, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7441", "attributes": { "cluster": 0, "x": -111.61794484645874, "y": -51.21563303531716, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7442", "attributes": { "cluster": 2, "x": 38.07804381723351, "y": 107.54933188912236, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7443", "attributes": { "cluster": 1, "x": 11.67507866692199, "y": -51.21563303531716, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7444", "attributes": { "cluster": 0, "x": -11.617944846458741, "y": -20.038718499077397, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7445", "attributes": { "cluster": 0, "x": -111.61794484645876, "y": -20.038718499077383, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7446", "attributes": { "cluster": 0, "x": -11.617944846458727, "y": -51.215633035317175, "size": 1, "color": "#e36d0" } }, { "key": "7447", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -20.038718499077397, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7448", "attributes": { "cluster": 1, "x": 11.675078666921976, "y": -20.038718499077383, "size": 1, "color": "#762e2e" } }, { "key": "7449", "attributes": { "cluster": 0, "x": -27.61794484645877, "y": 4.209992806886902, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7450", "attributes": { "cluster": 2, "x": -37.92195618276655, "y": 107.54933188912233, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7451", "attributes": { "cluster": 1, "x": 111.675078666922, "y": -51.215633035317175, "size": 2, "color": "#762e2e" } }, { "key": "7452", "attributes": { "cluster": 1, "x": 95.67507866692196, "y": 4.209992806886902, "size": 1, "color": "#762e2e" } }, { "key": "7453", "attributes": { "cluster": 0, "x": -95.61794484645871, "y": -75.46434434128146, "size": 1, "color": "#e36d0" } }, { "key": "7454", "attributes": { "cluster": 2, "x": 38.078043817233564, "y": 34.80319797122953, "size": 1, "color": "#4b94db" } }, { "key": "7455", "attributes": { "cluster": 0, "x": -27.61794484645867, "y": -75.46434434128143, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7456", "attributes": { "cluster": 2, "x": -24.92195618276659, "y": 116.20958592696667, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7457", "attributes": { "cluster": 2, "x": 25.07804381723361, "y": 26.142943933385205, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7458", "attributes": { "cluster": 2, "x": 25.07804381723345, "y": 116.20958592696675, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7459", "attributes": { "cluster": 1, "x": 27.67507866692202, "y": -75.46434434128146, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7460", "attributes": { "cluster": 0, "x": -95.61794484645881, "y": 4.2099928068868735, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7461", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": -87.58869999426358, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7462", "attributes": { "cluster": 2, "x": -24.92195618276643, "y": 26.142943933385105, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7463", "attributes": { "cluster": 1, "x": 95.67507866692206, "y": -75.46434434128143, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7464", "attributes": { "cluster": 2, "x": 24.07804381723362, "y": 24.410893125816322, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7465", "attributes": { "cluster": 1, "x": 27.67507866692192, "y": 4.2099928068868735, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7466", "attributes": { "cluster": 0, "x": -54.61794484645872, "y": -87.58869999426358, "size": 2, "color": "#e36d0" } }, { "key": "7467", "attributes": { "cluster": 2, "x": -23.9219561827666, "y": 117.94163673453554, "size": 1, "color": "#4b94db" } }, { "key": "7468", "attributes": { "cluster": 0, "x": -54.617944846458734, "y": 16.334348459869013, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7469", "attributes": { "cluster": 0, "x": -68.61794484645876, "y": 16.334348459869013, "size": 2, "color": "#e36d0" } }, { "key": "7470", "attributes": { "cluster": 0, "x": -99.61794484645874, "y": -72.00024272614371, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7471", "attributes": { "cluster": 2, "x": -23.92195618276644, "y": 24.410893125816223, "size": 1, "color": "#4b94db" } }, { "key": "7472", "attributes": { "cluster": 1, "x": 54.67507866692198, "y": -87.58869999426358, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7473", "attributes": { "cluster": 0, "x": -23.61794484645874, "y": 0.7458911917491449, "size": 1, "color": "#e36d0" } }, { "key": "7474", "attributes": { "cluster": 0, "x": -99.6179448464588, "y": 0.7458911917491235, "size": 1, "color": "#e36d0" } }, { "key": "7475", "attributes": { "cluster": 2, "x": 24.07804381723346, "y": 117.94163673453565, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7476", "attributes": { "cluster": 1, "x": 68.67507866692202, "y": -87.58869999426358, "size": 1, "color": "#762e2e" } }, { "key": "7477", "attributes": { "cluster": 0, "x": -23.617944846458684, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7478", "attributes": { "cluster": 0, "x": -86.61794484645884, "y": 9.406145229593449, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7479", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": 16.334348459869013, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7480", "attributes": { "cluster": 0, "x": -36.61794484645864, "y": -80.66049676398801, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7481", "attributes": { "cluster": 1, "x": 54.67507866692197, "y": 16.334348459869013, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7482", "attributes": { "cluster": 2, "x": 9.07804381723352, "y": 123.13778915724222, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7483", "attributes": { "cluster": 1, "x": 23.67507866692199, "y": -72.00024272614371, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7484", "attributes": { "cluster": 1, "x": 99.67507866692199, "y": 0.7458911917491449, "size": 1, "color": "#762e2e" } }, { "key": "7485", "attributes": { "cluster": 2, "x": -8.921956182766515, "y": 123.13778915724222, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7486", "attributes": { "cluster": 2, "x": -15.921956182766555, "y": 121.40573834967331, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7487", "attributes": { "cluster": 0, "x": -36.6179448464588, "y": 9.406145229593548, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7488", "attributes": { "cluster": 2, "x": -8.921956182766502, "y": 19.21474070310964, "size": 2, "color": "#4b94db" } }, { "key": "7489", "attributes": { "cluster": 1, "x": 23.675078666921934, "y": 0.7458911917491235, "size": 1, "color": "#762e2e" } }, { "key": "7490", "attributes": { "cluster": 0, "x": -86.61794484645868, "y": -80.6604967639881, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7491", "attributes": { "cluster": 2, "x": 9.078043817233532, "y": 19.214740703109648, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7492", "attributes": { "cluster": 2, "x": 16.078043817233574, "y": 20.94679151067855, "size": 0, "color": "#4b94db" } }, { "key": "7493", "attributes": { "cluster": 2, "x": 16.078043817233496, "y": 121.40573834967337, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7494", "attributes": { "cluster": 1, "x": 99.67507866692205, "y": -72.00024272614368, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7495", "attributes": { "cluster": 1, "x": 36.67507866692189, "y": 9.406145229593449, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7496", "attributes": { "cluster": 2, "x": -15.921956182766479, "y": 20.946791510678494, "size": 2, "color": "#4b94db" } }, { "key": "7497", "attributes": { "cluster": 0, "x": -37.61794484645863, "y": -82.39254757155689, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7498", "attributes": { "cluster": 2, "x": 52.07804381723351, "y": 62.516010892331536, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7499", "attributes": { "cluster": 0, "x": -85.61794484645885, "y": 11.13819603716233, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7500", "attributes": { "cluster": 2, "x": 52.07804381723351, "y": 79.8365189680203, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7501", "attributes": { "cluster": 2, "x": -51.92195618276649, "y": 79.83651896802033, "size": 1, "color": "#4b94db" } }, { "key": "7502", "attributes": { "cluster": 2, "x": -51.92195618276649, "y": 62.51601089233156, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7503", "attributes": { "cluster": 2, "x": -29.92195618276644, "y": 27.874994740953973, "size": 1, "color": "#4b94db" } }, { "key": "7504", "attributes": { "cluster": 2, "x": 30.07804381723346, "y": 114.47753511939788, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7505", "attributes": { "cluster": 0, "x": -85.6179448464587, "y": -82.39254757155699, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7506", "attributes": { "cluster": 1, "x": 86.67507866692209, "y": -80.66049676398801, "size": 1, "color": "#762e2e" } }, { "key": "7507", "attributes": { "cluster": 0, "x": -37.61794484645879, "y": 11.13819603716243, "size": 2, "color": "#e36d0" } }, { "key": "7508", "attributes": { "cluster": 0, "x": -52.61794484645873, "y": 16.334348459869013, "size": 2, "color": "#e36d0" } }, { "key": "7509", "attributes": { "cluster": 2, "x": -29.921956182766582, "y": 114.47753511939781, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7510", "attributes": { "cluster": 2, "x": 30.078043817233603, "y": 27.87499474095405, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7511", "attributes": { "cluster": 1, "x": 86.67507866692193, "y": 9.406145229593548, "size": 3, "color": "#762e2e" } }, { "key": "7512", "attributes": { "cluster": 1, "x": 36.67507866692205, "y": -80.6604967639881, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7513", "attributes": { "cluster": 0, "x": -70.61794484645877, "y": 16.334348459869005, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7514", "attributes": { "cluster": 0, "x": -77.61794484645881, "y": 14.602297652300102, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7515", "attributes": { "cluster": 1, "x": 85.6750786669221, "y": -82.39254757155689, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7516", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -87.58869999426358, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7517", "attributes": { "cluster": 1, "x": 37.67507866692188, "y": 11.13819603716233, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7518", "attributes": { "cluster": 2, "x": 51.07804381723351, "y": 85.03267139072693, "size": 1, "color": "#4b94db" } }, { "key": "7519", "attributes": { "cluster": 0, "x": -52.61794484645872, "y": -87.58869999426356, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7520", "attributes": { "cluster": 0, "x": -45.61794484645868, "y": -85.85664918669465, "size": 1, "color": "#e36d0" } }, { "key": "7521", "attributes": { "cluster": 2, "x": -50.92195618276649, "y": 57.319858469624926, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7522", "attributes": { "cluster": 1, "x": 37.67507866692204, "y": -82.39254757155699, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7523", "attributes": { "cluster": 2, "x": 51.07804381723351, "y": 57.319858469624904, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7524", "attributes": { "cluster": 2, "x": -50.92195618276649, "y": 85.03267139072696, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7525", "attributes": { "cluster": 1, "x": 85.67507866692193, "y": 11.13819603716243, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7526", "attributes": { "cluster": 0, "x": -45.617944846458755, "y": 14.602297652300159, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7527", "attributes": { "cluster": 2, "x": -45.9219561827665, "y": 45.19550281664279, "size": 2, "color": "#4b94db" } }, { "key": "7528", "attributes": { "cluster": 2, "x": 46.078043817233514, "y": 97.15702704370908, "size": 1, "color": "#4b94db" } }, { "key": "7529", "attributes": { "cluster": 0, "x": -77.61794484645873, "y": -85.85664918669471, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7530", "attributes": { "cluster": 1, "x": 70.675078666922, "y": 16.334348459869013, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7531", "attributes": { "cluster": 0, "x": -9.617944846458741, "y": -44.287429805041675, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7532", "attributes": { "cluster": 1, "x": 52.67507866692197, "y": 16.334348459869005, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7533", "attributes": { "cluster": 0, "x": -9.617944846458741, "y": -26.966921729352904, "size": 1, "color": "#e36d0" } }, { "key": "7534", "attributes": { "cluster": 0, "x": -113.61794484645874, "y": -26.966921729352883, "size": 1, "color": "#e36d0" } }, { "key": "7535", "attributes": { "cluster": 0, "x": -113.61794484645874, "y": -44.287429805041654, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7536", "attributes": { "cluster": 2, "x": -45.92195618276652, "y": 97.15702704370908, "size": 1, "color": "#4b94db" } }, { "key": "7537", "attributes": { "cluster": 1, "x": 45.67507866692193, "y": 14.602297652300102, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7538", "attributes": { "cluster": 1, "x": 52.675078666921976, "y": -87.58869999426358, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7539", "attributes": { "cluster": 1, "x": 70.67507866692202, "y": -87.58869999426356, "size": 3, "color": "#762e2e" } }, { "key": "7540", "attributes": { "cluster": 0, "x": -91.6179448464587, "y": -78.92844595641924, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7541", "attributes": { "cluster": 0, "x": -31.61794484645879, "y": 7.67409442202468, "size": 2, "color": "#e36d0" } }, { "key": "7542", "attributes": { "cluster": 2, "x": 46.078043817233535, "y": 45.19550281664279, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7543", "attributes": { "cluster": 2, "x": 45.078043817233514, "y": 98.88907785127796, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7544", "attributes": { "cluster": 1, "x": 77.67507866692205, "y": -85.85664918669465, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7545", "attributes": { "cluster": 2, "x": -44.9219561827665, "y": 43.463452009073904, "size": 1, "color": "#4b94db" } }, { "key": "7546", "attributes": { "cluster": 1, "x": 77.67507866692198, "y": 14.602297652300159, "size": 2, "color": "#762e2e" } }, { "key": "7547", "attributes": { "cluster": 1, "x": 45.675078666922005, "y": -85.85664918669471, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7548", "attributes": { "cluster": 0, "x": -91.61794484645884, "y": 7.674094422024602, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7549", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -44.287429805041675, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7550", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -26.966921729352904, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7551", "attributes": { "cluster": 1, "x": 9.67507866692199, "y": -26.966921729352883, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7552", "attributes": { "cluster": 0, "x": -31.61794484645865, "y": -78.92844595641915, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7553", "attributes": { "cluster": 1, "x": 9.67507866692199, "y": -44.287429805041654, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7554", "attributes": { "cluster": 1, "x": 31.67507866692204, "y": -78.92844595641924, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7555", "attributes": { "cluster": 0, "x": -10.617944846458741, "y": -21.770769306646272, "size": 2, "color": "#e36d0" } }, { "key": "7556", "attributes": { "cluster": 2, "x": 45.07804381723354, "y": 43.46345200907389, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7557", "attributes": { "cluster": 2, "x": -44.92195618276653, "y": 98.88907785127797, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7558", "attributes": { "cluster": 0, "x": -112.61794484645874, "y": -49.483582227748286, "size": 2, "color": "#e36d0" } }, { "key": "7559", "attributes": { "cluster": 0, "x": -10.617944846458741, "y": -49.48358222774831, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7560", "attributes": { "cluster": 1, "x": 91.67507866692193, "y": 7.67409442202468, "size": 1, "color": "#762e2e" } }, { "key": "7561", "attributes": { "cluster": 1, "x": 31.675078666921898, "y": 7.674094422024602, "size": 1, "color": "#762e2e" } }, { "key": "7562", "attributes": { "cluster": 2, "x": -20.921956182766454, "y": 22.678842318247355, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7563", "attributes": { "cluster": 0, "x": -112.61794484645874, "y": -21.77076930664625, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7564", "attributes": { "cluster": 2, "x": 21.078043817233475, "y": 119.67368754210452, "size": 1, "color": "#4b94db" } }, { "key": "7565", "attributes": { "cluster": 2, "x": -20.921956182766603, "y": 119.67368754210443, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "7566", "attributes": { "cluster": 1, "x": 91.67507866692208, "y": -78.92844595641915, "size": 1, "color": "#762e2e" } }, { "key": "7567", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -21.770769306646272, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7568", "attributes": { "cluster": 2, "x": 21.078043817233624, "y": 22.678842318247426, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7569", "attributes": { "cluster": 1, "x": 10.67507866692199, "y": -49.483582227748286, "size": 1, "color": "#762e2e" } }, { "key": "7570", "attributes": { "cluster": 2, "x": 47.078043817233514, "y": 95.4249762361402, "size": 0, "color": "#4b94db" } }, { "key": "7571", "attributes": { "cluster": 0, "x": -107.61794484645876, "y": -61.607937880730425, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7572", "attributes": { "cluster": 2, "x": -46.9219561827665, "y": 46.92755362421166, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7573", "attributes": { "cluster": 0, "x": -15.617944846458734, "y": -9.646413653664133, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7574", "attributes": { "cluster": 0, "x": -107.61794484645877, "y": -9.64641365366413, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7575", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -49.48358222774831, "size": 2, "color": "#762e2e" } }, { "key": "7576", "attributes": { "cluster": 0, "x": -15.617944846458713, "y": -61.60793788073043, "size": 2, "color": "#e36d0" } }, { "key": "7577", "attributes": { "cluster": 1, "x": 10.67507866692199, "y": -21.77076930664625, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7578", "attributes": { "cluster": 0, "x": -16.617944846458734, "y": -7.914362846095251, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7579", "attributes": { "cluster": 2, "x": 47.078043817233535, "y": 46.92755362421167, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7580", "attributes": { "cluster": 1, "x": 15.675078666921983, "y": -61.607937880730425, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "7581", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -9.646413653664133, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7582", "attributes": { "cluster": 0, "x": -106.61794484645876, "y": -63.33998868829931, "size": 3, "color": "#e36d0" } }, { "key": "7583", "attributes": { "cluster": 1, "x": 15.675078666921962, "y": -9.64641365366413, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7584", "attributes": { "cluster": 1, "x": 107.67507866692202, "y": -61.60793788073043, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7585", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -7.914362846095251, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7586", "attributes": { "cluster": 2, "x": -46.92195618276652, "y": 95.4249762361402, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7587", "attributes": { "cluster": 1, "x": 16.675078666921983, "y": -63.33998868829931, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7588", "attributes": { "cluster": 2, "x": -43.9219561827665, "y": 41.73140120150504, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7589", "attributes": { "cluster": 0, "x": -16.617944846458705, "y": -63.33998868829932, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7590", "attributes": { "cluster": 1, "x": 106.67507866692202, "y": -63.33998868829932, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7591", "attributes": { "cluster": 1, "x": 16.675078666921955, "y": -7.914362846095237, "size": 1, "color": "#762e2e" } }, { "key": "7592", "attributes": { "cluster": 2, "x": 44.078043817233514, "y": 100.62112865884683, "size": 1, "color": "#4b94db" } }, { "key": "7593", "attributes": { "cluster": 1, "x": 40.675078666922026, "y": -84.12459837912586, "size": 1, "color": "#762e2e" } }, { "key": "7594", "attributes": { "cluster": 0, "x": -106.61794484645878, "y": -7.914362846095237, "size": 1, "color": "#e36d0" } }, { "key": "7595", "attributes": { "cluster": 2, "x": -43.92195618276653, "y": 100.62112865884683, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7596", "attributes": { "cluster": 1, "x": 82.67507866692196, "y": 12.870246844731298, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7597", "attributes": { "cluster": 2, "x": 44.07804381723354, "y": 41.73140120150503, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7598", "attributes": { "cluster": 1, "x": 40.67507866692188, "y": 12.870246844731227, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7599", "attributes": { "cluster": 0, "x": -82.6179448464587, "y": -84.12459837912586, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7600", "attributes": { "cluster": 0, "x": -40.61794484645878, "y": 12.870246844731298, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7601", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 48.65960443178052, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7602", "attributes": { "cluster": 1, "x": 82.6750786669221, "y": -84.12459837912579, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7603", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -11.378464461233008, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7604", "attributes": { "cluster": 0, "x": -82.61794484645885, "y": 12.870246844731227, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7605", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 93.69292542857133, "size": 1, "color": "#4b94db" } }, { "key": "7606", "attributes": { "cluster": 0, "x": -40.61794484645863, "y": -84.12459837912579, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7607", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 93.69292542857134, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7608", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 48.659604431780544, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7609", "attributes": { "cluster": 2, "x": 11.078043817233542, "y": 19.214740703109655, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7610", "attributes": { "cluster": 2, "x": -10.921956182766525, "y": 123.13778915724221, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7611", "attributes": { "cluster": 2, "x": -10.921956182766483, "y": 19.214740703109626, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7612", "attributes": { "cluster": 2, "x": 11.0780438172335, "y": 123.13778915724224, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7613", "attributes": { "cluster": 2, "x": -36.92195618276649, "y": 33.07114716366063, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "7614", "attributes": { "cluster": 1, "x": 14.675078666921983, "y": -59.87588707316155, "size": 1, "color": "#762e2e" } }, { "key": "7615", "attributes": { "cluster": 1, "x": 108.67507866692202, "y": -59.87588707316154, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7616", "attributes": { "cluster": 2, "x": -32.92195618276646, "y": 29.607045548522876, "size": 2, "color": "#4b94db" } }, { "key": "7617", "attributes": { "cluster": 2, "x": 37.07804381723351, "y": 109.28138269669122, "size": 2, "color": "#4b94db" } }, { "key": "7618", "attributes": { "cluster": 0, "x": -14.617944846458734, "y": -11.378464461233008, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7619", "attributes": { "cluster": 2, "x": 33.07804381723347, "y": 112.74548431182899, "size": 1, "color": "#4b94db" } }, { "key": "7620", "attributes": { "cluster": 0, "x": -108.61794484645876, "y": -59.87588707316155, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7621", "attributes": { "cluster": 0, "x": -14.617944846458713, "y": -59.87588707316154, "size": 1, "color": "#e36d0" } }, { "key": "7622", "attributes": { "cluster": 0, "x": -108.61794484645877, "y": -11.378464461233015, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7623", "attributes": { "cluster": 1, "x": 14.675078666921962, "y": -11.378464461233015, "size": 1, "color": "#762e2e" } }, { "key": "7624", "attributes": { "cluster": 2, "x": -42.9219561827665, "y": 39.99935039393614, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7625", "attributes": { "cluster": 1, "x": 17.675078666921983, "y": -65.07203949586818, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7626", "attributes": { "cluster": 0, "x": -105.61794484645876, "y": -65.07203949586818, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7627", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -6.1823120385263834, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7628", "attributes": { "cluster": 1, "x": 17.675078666921955, "y": -6.182312038526376, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7629", "attributes": { "cluster": 1, "x": 105.67507866692202, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7630", "attributes": { "cluster": 2, "x": 43.078043817233514, "y": 102.35317946641572, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7631", "attributes": { "cluster": 2, "x": -32.92195618276658, "y": 112.74548431182895, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7632", "attributes": { "cluster": 0, "x": -17.617944846458734, "y": -6.1823120385263834, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7633", "attributes": { "cluster": 2, "x": 33.07804381723359, "y": 29.60704554852292, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7634", "attributes": { "cluster": 2, "x": 37.07804381723358, "y": 33.071147163660655, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7635", "attributes": { "cluster": 2, "x": 43.07804381723356, "y": 39.99935039393616, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7636", "attributes": { "cluster": 0, "x": -105.61794484645878, "y": -6.182312038526376, "size": 2, "color": "#e36d0" } }, { "key": "7637", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -58.1438362655927, "size": 3, "color": "#762e2e" } }, { "key": "7638", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -13.11051526880189, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7639", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -13.110515268801866, "size": 1, "color": "#762e2e" } }, { "key": "7640", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -58.14383626559267, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7641", "attributes": { "cluster": 2, "x": -36.921956182766564, "y": 109.28138269669121, "size": 2, "color": "#4b94db" } }, { "key": "7642", "attributes": { "cluster": 1, "x": 72.67507866692202, "y": -87.58869999426355, "size": 1, "color": "#762e2e" } }, { "key": "7643", "attributes": { "cluster": 1, "x": 50.675078666921955, "y": 16.334348459869, "size": 2, "color": "#762e2e" } }, { "key": "7644", "attributes": { "cluster": 0, "x": -17.617944846458705, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7645", "attributes": { "cluster": 2, "x": -42.92195618276654, "y": 102.3531794664157, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7646", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": -58.1438362655927, "size": 3, "color": "#e36d0" } }, { "key": "7647", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": -13.11051526880189, "size": 1, "color": "#e36d0" } }, { "key": "7648", "attributes": { "cluster": 1, "x": 50.675078666922, "y": -87.58869999426358, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7649", "attributes": { "cluster": 2, "x": -51.92195618276649, "y": 72.90831573774481, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7650", "attributes": { "cluster": 1, "x": 72.67507866692198, "y": 16.334348459869027, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7651", "attributes": { "cluster": 1, "x": 24.67507866692199, "y": -73.73229353371258, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7652", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -13.110515268801866, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7653", "attributes": { "cluster": 1, "x": 28.675078666922026, "y": -77.19639514885034, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7654", "attributes": { "cluster": 1, "x": 98.67507866692199, "y": 2.47794199931802, "size": 1, "color": "#762e2e" } }, { "key": "7655", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -58.14383626559267, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7656", "attributes": { "cluster": 2, "x": 52.07804381723351, "y": 69.44421412260705, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7657", "attributes": { "cluster": 2, "x": 53.07804381723351, "y": 74.64036654531368, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7658", "attributes": { "cluster": 2, "x": -52.92195618276649, "y": 74.6403665453137, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7659", "attributes": { "cluster": 2, "x": -52.92195618276649, "y": 67.71216331503818, "size": 1, "color": "#4b94db" } }, { "key": "7660", "attributes": { "cluster": 1, "x": 94.67507866692196, "y": 5.942043614455777, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7661", "attributes": { "cluster": 1, "x": 18.675078666921983, "y": -66.80409030343708, "size": 1, "color": "#762e2e" } }, { "key": "7662", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -4.450261230957487, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7663", "attributes": { "cluster": 1, "x": 28.675078666921905, "y": 5.942043614455734, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7664", "attributes": { "cluster": 0, "x": -50.617944846458705, "y": -87.58869999426355, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7665", "attributes": { "cluster": 0, "x": -72.61794484645877, "y": 16.334348459869, "size": 1, "color": "#e36d0" } }, { "key": "7666", "attributes": { "cluster": 2, "x": 53.07804381723351, "y": 67.71216331503817, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7667", "attributes": { "cluster": 0, "x": -72.61794484645873, "y": -87.58869999426358, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7668", "attributes": { "cluster": 2, "x": 49.07804381723351, "y": 91.96087462100246, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7669", "attributes": { "cluster": 2, "x": -48.92195618276649, "y": 50.39165523934941, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7670", "attributes": { "cluster": 2, "x": 49.07804381723351, "y": 50.391655239349404, "size": 1, "color": "#4b94db" } }, { "key": "7671", "attributes": { "cluster": 0, "x": -50.61794484645875, "y": 16.334348459869027, "size": 1, "color": "#e36d0" } }, { "key": "7672", "attributes": { "cluster": 1, "x": 94.67507866692208, "y": -77.19639514885029, "size": 1, "color": "#762e2e" } }, { "key": "7673", "attributes": { "cluster": 1, "x": 98.67507866692206, "y": -73.73229353371255, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7674", "attributes": { "cluster": 2, "x": -48.92195618276649, "y": 91.96087462100246, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7675", "attributes": { "cluster": 1, "x": 104.67507866692205, "y": -66.80409030343705, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "7676", "attributes": { "cluster": 1, "x": 24.67507866692192, "y": 2.4779419993179985, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7677", "attributes": { "cluster": 1, "x": 18.67507866692194, "y": -4.4502612309575085, "size": 1, "color": "#762e2e" } }, { "key": "7678", "attributes": { "cluster": 0, "x": -98.61794484645874, "y": -73.73229353371258, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7679", "attributes": { "cluster": 1, "x": 9.67507866692199, "y": -33.89512495962839, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7680", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -37.35922657476617, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7681", "attributes": { "cluster": 0, "x": -94.6179448464587, "y": -77.19639514885034, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7682", "attributes": { "cluster": 2, "x": -41.9219561827665, "y": 38.267299586367265, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7683", "attributes": { "cluster": 0, "x": -24.61794484645874, "y": 2.47794199931802, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7684", "attributes": { "cluster": 1, "x": 114.67507866692199, "y": -32.16307415205954, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7685", "attributes": { "cluster": 2, "x": 42.078043817233514, "y": 104.08523027398459, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7686", "attributes": { "cluster": 2, "x": -41.921956182766536, "y": 104.08523027398459, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7687", "attributes": { "cluster": 2, "x": 42.07804381723355, "y": 38.267299586367265, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7688", "attributes": { "cluster": 2, "x": -17.921956182766593, "y": 121.40573834967333, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7689", "attributes": { "cluster": 0, "x": -28.617944846458776, "y": 5.942043614455777, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7690", "attributes": { "cluster": 2, "x": 18.078043817233613, "y": 20.946791510678544, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7691", "attributes": { "cluster": 1, "x": 8.67507866692199, "y": -32.163074152059515, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7692", "attributes": { "cluster": 1, "x": 8.67507866692199, "y": -39.09127738233502, "size": 1, "color": "#762e2e" } }, { "key": "7693", "attributes": { "cluster": 2, "x": 18.07804381723349, "y": 121.40573834967338, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7694", "attributes": { "cluster": 2, "x": -17.92195618276647, "y": 20.946791510678487, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "7695", "attributes": { "cluster": 1, "x": 114.67507866692199, "y": -39.09127738233504, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7696", "attributes": { "cluster": 0, "x": -104.61794484645876, "y": -66.80409030343708, "size": 2, "color": "#e36d0" } }, { "key": "7697", "attributes": { "cluster": 0, "x": -18.617944846458734, "y": -4.450261230957487, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7698", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -14.842566076370758, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7699", "attributes": { "cluster": 0, "x": -94.61794484645883, "y": 5.942043614455734, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7700", "attributes": { "cluster": 0, "x": -28.617944846458656, "y": -77.19639514885029, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7701", "attributes": { "cluster": 0, "x": -24.61794484645867, "y": -73.73229353371255, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7702", "attributes": { "cluster": 2, "x": 52.07804381723351, "y": 83.30062058315806, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7703", "attributes": { "cluster": 0, "x": -18.61794484645869, "y": -66.80409030343705, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7704", "attributes": { "cluster": 1, "x": 12.67507866692199, "y": -56.4117854580238, "size": 1, "color": "#762e2e" } }, { "key": "7705", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -56.411785458023814, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7706", "attributes": { "cluster": 2, "x": -51.92195618276649, "y": 59.0519092771938, "size": 1, "color": "#4b94db" } }, { "key": "7707", "attributes": { "cluster": 0, "x": -98.61794484645881, "y": 2.4779419993179985, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7708", "attributes": { "cluster": 1, "x": 12.67507866692199, "y": -14.842566076370748, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7709", "attributes": { "cluster": 0, "x": -104.61794484645878, "y": -4.4502612309575085, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7710", "attributes": { "cluster": 2, "x": 52.07804381723351, "y": 59.05190927719378, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "7711", "attributes": { "cluster": 2, "x": -51.92195618276649, "y": 83.30062058315808, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7712", "attributes": { "cluster": 1, "x": 19.675078666921983, "y": -68.53614111100595, "size": 1, "color": "#762e2e" } }, { "key": "7713", "attributes": { "cluster": 0, "x": -113.61794484645874, "y": -33.89512495962839, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7714", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": -2.718210423388612, "size": 2, "color": "#762e2e" } }, { "key": "7715", "attributes": { "cluster": 1, "x": 19.675078666921948, "y": -2.718210423388612, "size": 1, "color": "#762e2e" } }, { "key": "7716", "attributes": { "cluster": 2, "x": -52.92195618276649, "y": 78.10446816045145, "size": 1, "color": "#4b94db" } }, { "key": "7717", "attributes": { "cluster": 0, "x": -9.617944846458741, "y": -37.35922657476617, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7718", "attributes": { "cluster": 0, "x": -8.617944846458741, "y": -32.16307415205954, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7719", "attributes": { "cluster": 0, "x": -114.61794484645874, "y": -32.163074152059515, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7720", "attributes": { "cluster": 0, "x": -114.61794484645874, "y": -39.09127738233502, "size": 2, "color": "#e36d0" } }, { "key": "7721", "attributes": { "cluster": 2, "x": -52.92195618276649, "y": 64.24806169990043, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7722", "attributes": { "cluster": 0, "x": -8.617944846458741, "y": -39.09127738233504, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7723", "attributes": { "cluster": 0, "x": -12.617944846458741, "y": -14.842566076370758, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7724", "attributes": { "cluster": 1, "x": 103.67507866692203, "y": -68.53614111100595, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7725", "attributes": { "cluster": 1, "x": 43.67507866692189, "y": 14.60229765230011, "size": 1, "color": "#762e2e" } }, { "key": "7726", "attributes": { "cluster": 2, "x": -49.92195618276649, "y": 52.12370604691829, "size": 2, "color": "#4b94db" } }, { "key": "7727", "attributes": { "cluster": 2, "x": 53.07804381723351, "y": 64.24806169990042, "size": 1, "color": "#4b94db" } }, { "key": "7728", "attributes": { "cluster": 0, "x": -110.61794484645874, "y": -56.4117854580238, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7729", "attributes": { "cluster": 0, "x": -12.617944846458741, "y": -56.411785458023814, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7730", "attributes": { "cluster": 2, "x": 53.07804381723351, "y": 78.10446816045143, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7731", "attributes": { "cluster": 2, "x": 50.07804381723351, "y": 90.22882381343358, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7732", "attributes": { "cluster": 1, "x": 79.67507866692209, "y": -85.85664918669467, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7733", "attributes": { "cluster": 0, "x": -110.61794484645874, "y": -14.842566076370748, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7734", "attributes": { "cluster": 2, "x": -49.92195618276649, "y": 90.22882381343359, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7735", "attributes": { "cluster": 1, "x": 79.67507866692196, "y": 14.602297652300166, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7736", "attributes": { "cluster": 2, "x": 50.07804381723351, "y": 52.12370604691827, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7737", "attributes": { "cluster": 2, "x": -12.921956182766552, "y": 123.1377891572422, "size": 1, "color": "#4b94db" } }, { "key": "7738", "attributes": { "cluster": 1, "x": 43.67507866692201, "y": -85.85664918669472, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7739", "attributes": { "cluster": 0, "x": -103.61794484645876, "y": -68.53614111100595, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7740", "attributes": { "cluster": 0, "x": -19.617944846458734, "y": -2.718210423388612, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7741", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -23.502820114215147, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7742", "attributes": { "cluster": 0, "x": -103.61794484645878, "y": -2.718210423388612, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7743", "attributes": { "cluster": 0, "x": -19.6179448464587, "y": -68.53614111100595, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7744", "attributes": { "cluster": 1, "x": 9.67507866692199, "y": -47.75153142017941, "size": 3, "color": "#762e2e" } }, { "key": "7745", "attributes": { "cluster": 0, "x": -79.61794484645884, "y": 14.60229765230011, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7746", "attributes": { "cluster": 0, "x": -43.61794484645864, "y": -85.85664918669467, "size": 2, "color": "#e36d0" } }, { "key": "7747", "attributes": { "cluster": 0, "x": -43.61794484645876, "y": 14.602297652300166, "size": 1, "color": "#e36d0" } }, { "key": "7748", "attributes": { "cluster": 2, "x": 13.078043817233569, "y": 19.214740703109662, "size": 1, "color": "#4b94db" } }, { "key": "7749", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -47.75153142017943, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7750", "attributes": { "cluster": 2, "x": 13.0780438172335, "y": 123.13778915724225, "size": 1, "color": "#4b94db" } }, { "key": "7751", "attributes": { "cluster": 2, "x": -12.921956182766483, "y": 19.21474070310962, "size": 1, "color": "#4b94db" } }, { "key": "7752", "attributes": { "cluster": 2, "x": 27.07804381723361, "y": 26.14294393338521, "size": 1, "color": "#4b94db" } }, { "key": "7753", "attributes": { "cluster": 2, "x": -26.92195618276659, "y": 116.20958592696665, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7754", "attributes": { "cluster": 2, "x": -26.921956182766426, "y": 26.14294393338509, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7755", "attributes": { "cluster": 2, "x": 27.078043817233446, "y": 116.20958592696678, "size": 2, "color": "#4b94db" } }, { "key": "7756", "attributes": { "cluster": 2, "x": -28.92195618276659, "y": 116.2095859269667, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7757", "attributes": { "cluster": 1, "x": 9.67507866692199, "y": -23.502820114215126, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7758", "attributes": { "cluster": 1, "x": 8.67507866692199, "y": -28.698972536921758, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7759", "attributes": { "cluster": 1, "x": 8.67507866692199, "y": -42.55537899747278, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7760", "attributes": { "cluster": 2, "x": 29.07804381723361, "y": 26.142943933385176, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7761", "attributes": { "cluster": 1, "x": 11.67507866692199, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7762", "attributes": { "cluster": 1, "x": 114.67507866692199, "y": -42.5553789974728, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7763", "attributes": { "cluster": 2, "x": 29.078043817233446, "y": 116.20958592696678, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7764", "attributes": { "cluster": 0, "x": -79.61794484645873, "y": -85.85664918669472, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7765", "attributes": { "cluster": 1, "x": 114.67507866692199, "y": -28.69897253692178, "size": 1, "color": "#762e2e" } }, { "key": "7766", "attributes": { "cluster": 0, "x": -9.617944846458741, "y": -23.502820114215147, "size": 1, "color": "#e36d0" } }, { "key": "7767", "attributes": { "cluster": 0, "x": -113.61794484645874, "y": -47.75153142017941, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7768", "attributes": { "cluster": 0, "x": -9.617944846458741, "y": -47.75153142017943, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7769", "attributes": { "cluster": 2, "x": -28.921956182766426, "y": 26.142943933385084, "size": 1, "color": "#4b94db" } }, { "key": "7770", "attributes": { "cluster": 0, "x": -113.61794484645874, "y": -23.502820114215126, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7771", "attributes": { "cluster": 2, "x": 41.078043817233514, "y": 105.81728108155349, "size": 2, "color": "#4b94db" } }, { "key": "7772", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -16.574616883939637, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7773", "attributes": { "cluster": 0, "x": -114.61794484645874, "y": -28.698972536921758, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7774", "attributes": { "cluster": 1, "x": 11.67507866692199, "y": -16.574616883939623, "size": 1, "color": "#762e2e" } }, { "key": "7775", "attributes": { "cluster": 0, "x": -114.61794484645874, "y": -42.55537899747278, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7776", "attributes": { "cluster": 0, "x": -111.61794484645874, "y": -54.67973465045492, "size": 1, "color": "#e36d0" } }, { "key": "7777", "attributes": { "cluster": 2, "x": -40.9219561827665, "y": 36.53524877879838, "size": 1, "color": "#4b94db" } }, { "key": "7778", "attributes": { "cluster": 0, "x": -8.617944846458741, "y": -42.5553789974728, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7779", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -54.67973465045493, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7780", "attributes": { "cluster": 1, "x": 48.675078666921934, "y": 16.33434845986899, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7781", "attributes": { "cluster": 2, "x": 41.078043817233564, "y": 36.53524877879841, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7782", "attributes": { "cluster": 0, "x": -8.617944846458741, "y": -28.69897253692178, "size": 0, "color": "#e36d0" } }, { "key": "7783", "attributes": { "cluster": 2, "x": -40.92195618276655, "y": 105.81728108155346, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7784", "attributes": { "cluster": 0, "x": -11.617944846458741, "y": -16.574616883939637, "size": 1, "color": "#e36d0" } }, { "key": "7785", "attributes": { "cluster": 1, "x": 74.67507866692205, "y": -87.58869999426355, "size": 1, "color": "#762e2e" } }, { "key": "7786", "attributes": { "cluster": 1, "x": 74.67507866692198, "y": 16.334348459869034, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7787", "attributes": { "cluster": 0, "x": -111.61794484645874, "y": -16.574616883939623, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7788", "attributes": { "cluster": 2, "x": -35.921956182766465, "y": 31.33909635609175, "size": 1, "color": "#4b94db" } }, { "key": "7789", "attributes": { "cluster": 0, "x": -11.617944846458741, "y": -54.67973465045493, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7790", "attributes": { "cluster": 2, "x": 36.07804381723348, "y": 111.01343350426012, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7791", "attributes": { "cluster": 2, "x": -35.921956182766564, "y": 111.01343350426009, "size": 2, "color": "#4b94db" } }, { "key": "7792", "attributes": { "cluster": 1, "x": 48.675078666922, "y": -87.58869999426359, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7793", "attributes": { "cluster": 0, "x": -74.6179448464588, "y": 16.33434845986899, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7794", "attributes": { "cluster": 2, "x": 36.07804381723358, "y": 31.33909635609178, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7795", "attributes": { "cluster": 0, "x": -48.617944846458684, "y": -87.58869999426355, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7796", "attributes": { "cluster": 1, "x": 88.67507866692209, "y": -80.660496763988, "size": 2, "color": "#762e2e" } }, { "key": "7797", "attributes": { "cluster": 0, "x": -48.61794484645875, "y": 16.334348459869034, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7798", "attributes": { "cluster": 2, "x": 0.07804381723350794, "y": 124.86983996481109, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7799", "attributes": { "cluster": 1, "x": 34.67507866692189, "y": 9.406145229593442, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7800", "attributes": { "cluster": 0, "x": -74.61794484645873, "y": -87.58869999426359, "size": 2, "color": "#e36d0" } }, { "key": "7801", "attributes": { "cluster": 2, "x": 0.07804381723351074, "y": 17.482689895540766, "size": 1, "color": "#4b94db" } }, { "key": "7802", "attributes": { "cluster": 0, "x": -34.61794484645864, "y": -80.660496763988, "size": 1, "color": "#e36d0" } }, { "key": "7803", "attributes": { "cluster": 1, "x": 34.675078666922055, "y": -80.66049676398812, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7804", "attributes": { "cluster": 0, "x": -88.61794484645884, "y": 9.406145229593442, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7805", "attributes": { "cluster": 1, "x": 88.67507866692193, "y": 9.406145229593562, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7806", "attributes": { "cluster": 0, "x": -88.61794484645867, "y": -80.66049676398812, "size": 1, "color": "#e36d0" } }, { "key": "7807", "attributes": { "cluster": 0, "x": -34.617944846458805, "y": 9.406145229593562, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7808", "attributes": { "cluster": 1, "x": 32.67507866692189, "y": 9.406145229593477, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7809", "attributes": { "cluster": 0, "x": -90.61794484645884, "y": 9.406145229593477, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7810", "attributes": { "cluster": 1, "x": 90.67507866692209, "y": -80.66049676398804, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7811", "attributes": { "cluster": 2, "x": 2.0780438172335014, "y": 124.86983996481109, "size": 2, "color": "#4b94db" } }, { "key": "7812", "attributes": { "cluster": 1, "x": 90.67507866692193, "y": 9.40614522959357, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7813", "attributes": { "cluster": 0, "x": -32.61794484645864, "y": -80.66049676398804, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7814", "attributes": { "cluster": 1, "x": 32.675078666922055, "y": -80.66049676398814, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7815", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": -0.9861596158197301, "size": 1, "color": "#762e2e" } }, { "key": "7816", "attributes": { "cluster": 2, "x": -1.9219561827664828, "y": 17.482689895540766, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7817", "attributes": { "cluster": 0, "x": -32.617944846458805, "y": 9.40614522959357, "size": 2, "color": "#e36d0" } }, { "key": "7818", "attributes": { "cluster": 0, "x": -90.61794484645867, "y": -80.66049676398814, "size": 1, "color": "#e36d0" } }, { "key": "7819", "attributes": { "cluster": 2, "x": 2.078043817233528, "y": 17.482689895540766, "size": 2, "color": "#4b94db" } }, { "key": "7820", "attributes": { "cluster": 2, "x": -1.9219561827665093, "y": 124.86983996481109, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7821", "attributes": { "cluster": 2, "x": -22.921956182766614, "y": 119.67368754210443, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7822", "attributes": { "cluster": 1, "x": 20.675078666921983, "y": -70.26819191857483, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7823", "attributes": { "cluster": 0, "x": -20.617944846458734, "y": -0.9861596158197301, "size": 1, "color": "#e36d0" } }, { "key": "7824", "attributes": { "cluster": 0, "x": -102.61794484645876, "y": -70.26819191857483, "size": 2, "color": "#e36d0" } }, { "key": "7825", "attributes": { "cluster": 2, "x": 23.078043817233635, "y": 22.67884231824744, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7826", "attributes": { "cluster": 1, "x": 102.67507866692205, "y": -70.2681919185748, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7827", "attributes": { "cluster": 2, "x": 23.07804381723345, "y": 119.67368754210452, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7828", "attributes": { "cluster": 2, "x": -22.92195618276643, "y": 22.678842318247355, "size": 1, "color": "#4b94db" } }, { "key": "7829", "attributes": { "cluster": 2, "x": 4.078043817233522, "y": 17.482689895540744, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7830", "attributes": { "cluster": 1, "x": 20.675078666921934, "y": -0.9861596158197585, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "7831", "attributes": { "cluster": 0, "x": -20.617944846458684, "y": -70.2681919185748, "size": 1, "color": "#e36d0" } }, { "key": "7832", "attributes": { "cluster": 1, "x": 25.67507866692202, "y": -75.46434434128146, "size": 0, "color": "#762e2e" } }, { "key": "7833", "attributes": { "cluster": 2, "x": -3.921956182766503, "y": 124.86983996481112, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7834", "attributes": { "cluster": 2, "x": -3.921956182766511, "y": 17.48268989554075, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7835", "attributes": { "cluster": 1, "x": 97.67507866692196, "y": 4.209992806886902, "size": 2, "color": "#762e2e" } }, { "key": "7836", "attributes": { "cluster": 2, "x": 4.07804381723353, "y": 124.86983996481112, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "7837", "attributes": { "cluster": 2, "x": -50.92195618276649, "y": 53.85575685448717, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7838", "attributes": { "cluster": 2, "x": 51.07804381723351, "y": 88.4967730058647, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7839", "attributes": { "cluster": 1, "x": 25.67507866692192, "y": 4.2099928068868735, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "7840", "attributes": { "cluster": 0, "x": -102.6179448464588, "y": -0.9861596158197585, "size": 1, "color": "#e36d0" } }, { "key": "7841", "attributes": { "cluster": 0, "x": -97.61794484645871, "y": -75.46434434128146, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7842", "attributes": { "cluster": 0, "x": -25.61794484645877, "y": 4.209992806886902, "size": 1, "color": "#e36d0" } }, { "key": "7843", "attributes": { "cluster": 1, "x": 97.67507866692206, "y": -75.46434434128143, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7844", "attributes": { "cluster": 2, "x": -50.92195618276651, "y": 88.49677300586471, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7845", "attributes": { "cluster": 0, "x": -97.61794484645881, "y": 4.2099928068868735, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7846", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": 18.066399267437887, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7847", "attributes": { "cluster": 2, "x": 51.07804381723352, "y": 53.855756854487154, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7848", "attributes": { "cluster": 2, "x": 32.07804381723346, "y": 114.4775351193979, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7849", "attributes": { "cluster": 2, "x": -31.92195618276644, "y": 27.874994740953966, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7850", "attributes": { "cluster": 1, "x": 61.67507866692199, "y": -89.32075080183245, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7851", "attributes": { "cluster": 2, "x": 32.0780438172336, "y": 27.874994740954037, "size": 2, "color": "#4b94db" } }, { "key": "7852", "attributes": { "cluster": 2, "x": -31.921956182766582, "y": 114.47753511939783, "size": 1, "color": "#4b94db" } }, { "key": "7853", "attributes": { "cluster": 0, "x": -25.61794484645867, "y": -75.46434434128143, "size": 1, "color": "#e36d0" } }, { "key": "7854", "attributes": { "cluster": 1, "x": 63.67507866692198, "y": 18.066399267437887, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7855", "attributes": { "cluster": 1, "x": 59.675078666922, "y": -89.32075080183245, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7856", "attributes": { "cluster": 2, "x": -5.921956182766519, "y": 17.48268989554075, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7857", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": 18.066399267437887, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7858", "attributes": { "cluster": 0, "x": -61.61794484645874, "y": -89.32075080183245, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7859", "attributes": { "cluster": 0, "x": -59.61794484645875, "y": 18.066399267437887, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7860", "attributes": { "cluster": 1, "x": 63.67507866692201, "y": -89.32075080183245, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7861", "attributes": { "cluster": 0, "x": -63.617944846458734, "y": -89.32075080183245, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7862", "attributes": { "cluster": 1, "x": 59.67507866692197, "y": 18.066399267437887, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7863", "attributes": { "cluster": 0, "x": -59.61794484645872, "y": -89.32075080183245, "size": 1, "color": "#e36d0" } }, { "key": "7864", "attributes": { "cluster": 2, "x": 6.078043817233538, "y": 124.86983996481112, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7865", "attributes": { "cluster": 2, "x": -5.921956182766517, "y": 124.8698399648111, "size": 2, "color": "#4b94db" } }, { "key": "7866", "attributes": { "cluster": 1, "x": 38.67507866692186, "y": 12.870246844731213, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7867", "attributes": { "cluster": 2, "x": 6.078043817233536, "y": 17.48268989554076, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7868", "attributes": { "cluster": 0, "x": -63.61794484645876, "y": 18.066399267437887, "size": 0, "color": "#e36d0" } }, { "key": "7869", "attributes": { "cluster": 0, "x": -84.61794484645887, "y": 12.870246844731213, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7870", "attributes": { "cluster": 0, "x": -38.61794484645861, "y": -84.12459837912577, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7871", "attributes": { "cluster": 1, "x": 84.67507866692212, "y": -84.12459837912577, "size": 1, "color": "#762e2e" } }, { "key": "7872", "attributes": { "cluster": 2, "x": 53.07804381723351, "y": 60.78396008476266, "size": 1, "color": "#4b94db" } }, { "key": "7873", "attributes": { "cluster": 1, "x": 84.67507866692193, "y": 12.870246844731298, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7874", "attributes": { "cluster": 1, "x": 38.67507866692205, "y": -84.12459837912586, "size": 2, "color": "#762e2e" } }, { "key": "7875", "attributes": { "cluster": 2, "x": 53.07804381723351, "y": 81.56856977558918, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7876", "attributes": { "cluster": 1, "x": 65.675078666922, "y": -89.32075080183247, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7877", "attributes": { "cluster": 2, "x": -52.92195618276649, "y": 81.56856977558921, "size": 1, "color": "#4b94db" } }, { "key": "7878", "attributes": { "cluster": 0, "x": -38.6179448464588, "y": 12.870246844731298, "size": 1, "color": "#e36d0" } }, { "key": "7879", "attributes": { "cluster": 1, "x": 57.675078666921976, "y": 18.06639926743791, "size": 1, "color": "#762e2e" } }, { "key": "7880", "attributes": { "cluster": 2, "x": -52.92195618276649, "y": 60.78396008476268, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7881", "attributes": { "cluster": 1, "x": 57.67507866692197, "y": -89.32075080183246, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7882", "attributes": { "cluster": 2, "x": -39.92195618276649, "y": 34.80319797122951, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7883", "attributes": { "cluster": 2, "x": 40.07804381723351, "y": 107.54933188912236, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7884", "attributes": { "cluster": 1, "x": 65.675078666922, "y": 18.0663992674379, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7885", "attributes": { "cluster": 0, "x": -84.61794484645868, "y": -84.12459837912586, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7886", "attributes": { "cluster": 1, "x": 10.67507866692199, "y": -52.947683842886036, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7887", "attributes": { "cluster": 2, "x": -39.92195618276655, "y": 107.54933188912236, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "7888", "attributes": { "cluster": 2, "x": 40.078043817233564, "y": 34.80319797122951, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7889", "attributes": { "cluster": 0, "x": -57.61794484645873, "y": -89.32075080183247, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7890", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -18.30666769150852, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7891", "attributes": { "cluster": 0, "x": -65.61794484645876, "y": 18.06639926743791, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7892", "attributes": { "cluster": 1, "x": 10.675078666921976, "y": -18.306667691508505, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7893", "attributes": { "cluster": 0, "x": -65.61794484645876, "y": -89.32075080183246, "size": 1, "color": "#e36d0" } }, { "key": "7894", "attributes": { "cluster": 0, "x": -57.61794484645872, "y": 18.0663992674379, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7895", "attributes": { "cluster": 2, "x": -14.921956182766557, "y": 123.1377891572422, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7896", "attributes": { "cluster": 2, "x": 15.078043817233574, "y": 19.214740703109676, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7897", "attributes": { "cluster": 0, "x": -112.61794484645874, "y": -52.947683842886036, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7898", "attributes": { "cluster": 1, "x": 112.675078666922, "y": -52.94768384288605, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7899", "attributes": { "cluster": 1, "x": 93.67507866692193, "y": 7.674094422024687, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7900", "attributes": { "cluster": 0, "x": -10.617944846458741, "y": -18.30666769150852, "size": 1, "color": "#e36d0" } }, { "key": "7901", "attributes": { "cluster": 1, "x": 29.67507866692204, "y": -78.92844595641924, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7902", "attributes": { "cluster": 1, "x": 93.67507866692208, "y": -78.92844595641918, "size": 1, "color": "#762e2e" } }, { "key": "7903", "attributes": { "cluster": 1, "x": 29.675078666921898, "y": 7.674094422024616, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7904", "attributes": { "cluster": 2, "x": 15.078043817233501, "y": 123.13778915724225, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7905", "attributes": { "cluster": 0, "x": -112.61794484645876, "y": -18.306667691508505, "size": 1, "color": "#e36d0" } }, { "key": "7906", "attributes": { "cluster": 2, "x": -14.921956182766484, "y": 19.214740703109612, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7907", "attributes": { "cluster": 2, "x": 20.078043817233617, "y": 20.94679151067855, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "7908", "attributes": { "cluster": 1, "x": 55.67507866692196, "y": -89.32075080183246, "size": 2, "color": "#762e2e" } }, { "key": "7909", "attributes": { "cluster": 2, "x": -19.921956182766596, "y": 121.40573834967331, "size": 1, "color": "#4b94db" } }, { "key": "7910", "attributes": { "cluster": 0, "x": -10.617944846458727, "y": -52.94768384288605, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7911", "attributes": { "cluster": 2, "x": -19.921956182766444, "y": 20.946791510678487, "size": 2, "color": "#4b94db" } }, { "key": "7912", "attributes": { "cluster": 1, "x": 67.67507866692202, "y": 18.0663992674379, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7913", "attributes": { "cluster": 2, "x": 20.078043817233464, "y": 121.40573834967338, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7914", "attributes": { "cluster": 2, "x": -52.92195618276649, "y": 71.17626493017595, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7915", "attributes": { "cluster": 0, "x": -29.61794484645879, "y": 7.674094422024687, "size": 3, "color": "#e36d0" } }, { "key": "7916", "attributes": { "cluster": 0, "x": -93.6179448464587, "y": -78.92844595641924, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7917", "attributes": { "cluster": 1, "x": 55.67507866692196, "y": 18.066399267437895, "size": 3.3333333333333335, "color": "#762e2e" } }, { "key": "7918", "attributes": { "cluster": 1, "x": 67.67507866692202, "y": -89.32075080183245, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "7919", "attributes": { "cluster": 0, "x": -29.61794484645865, "y": -78.92844595641918, "size": 1, "color": "#e36d0" } }, { "key": "7920", "attributes": { "cluster": 0, "x": -93.61794484645884, "y": 7.674094422024616, "size": 2, "color": "#e36d0" } }, { "key": "7921", "attributes": { "cluster": 1, "x": 114.67507866692199, "y": -46.01948061261055, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7922", "attributes": { "cluster": 1, "x": 114.67507866692199, "y": -25.23487092178403, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7923", "attributes": { "cluster": 0, "x": -67.61794484645877, "y": -89.32075080183246, "size": 0, "color": "#e36d0" } }, { "key": "7924", "attributes": { "cluster": 1, "x": 8.67507866692199, "y": -25.234870921784008, "size": 2, "color": "#762e2e" } }, { "key": "7925", "attributes": { "cluster": 0, "x": -55.61794484645871, "y": 18.0663992674379, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7926", "attributes": { "cluster": 0, "x": -67.61794484645877, "y": 18.066399267437895, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7927", "attributes": { "cluster": 0, "x": -55.61794484645871, "y": -89.32075080183245, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7928", "attributes": { "cluster": 2, "x": -53.92195618276649, "y": 69.44421412260706, "size": 1, "color": "#4b94db" } }, { "key": "7929", "attributes": { "cluster": 1, "x": 8.67507866692199, "y": -46.01948061261053, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7930", "attributes": { "cluster": 0, "x": -8.617944846458741, "y": -46.01948061261055, "size": 1, "color": "#e36d0" } }, { "key": "7931", "attributes": { "cluster": 2, "x": 53.07804381723351, "y": 71.17626493017592, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "7932", "attributes": { "cluster": 0, "x": -8.617944846458741, "y": -25.23487092178403, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7933", "attributes": { "cluster": 0, "x": -114.61794484645874, "y": -25.234870921784008, "size": 3, "color": "#e36d0" } }, { "key": "7934", "attributes": { "cluster": 1, "x": 21.67507866692199, "y": -72.00024272614371, "size": 2, "color": "#762e2e" } }, { "key": "7935", "attributes": { "cluster": 2, "x": 54.07804381723351, "y": 72.9083157377448, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7936", "attributes": { "cluster": 0, "x": -114.61794484645874, "y": -46.01948061261053, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "7937", "attributes": { "cluster": 1, "x": 101.67507866692199, "y": 0.7458911917491449, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7938", "attributes": { "cluster": 1, "x": 21.675078666921934, "y": 0.7458911917491449, "size": 1, "color": "#762e2e" } }, { "key": "7939", "attributes": { "cluster": 0, "x": -101.61794484645874, "y": -72.00024272614371, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7940", "attributes": { "cluster": 2, "x": -7.921956182766517, "y": 124.86983996481109, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7941", "attributes": { "cluster": 0, "x": -21.61794484645874, "y": 0.7458911917491449, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7942", "attributes": { "cluster": 2, "x": 8.078043817233535, "y": 17.482689895540766, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7943", "attributes": { "cluster": 1, "x": 101.67507866692205, "y": -72.00024272614371, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7944", "attributes": { "cluster": 1, "x": 46.67507866692193, "y": 16.334348459868977, "size": 3, "color": "#762e2e" } }, { "key": "7945", "attributes": { "cluster": 0, "x": -101.6179448464588, "y": 0.7458911917491449, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7946", "attributes": { "cluster": 0, "x": -21.617944846458684, "y": -72.00024272614371, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7947", "attributes": { "cluster": 1, "x": 76.67507866692206, "y": -87.58869999426354, "size": 1, "color": "#762e2e" } }, { "key": "7948", "attributes": { "cluster": 0, "x": -76.61794484645881, "y": 16.334348459868977, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7949", "attributes": { "cluster": 2, "x": 8.078043817233517, "y": 124.86983996481109, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7950", "attributes": { "cluster": 0, "x": -46.61794484645868, "y": -87.58869999426354, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7951", "attributes": { "cluster": 0, "x": -46.61794484645875, "y": 16.33434845986904, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7952", "attributes": { "cluster": 2, "x": -7.9219561827664995, "y": 17.482689895540766, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "7953", "attributes": { "cluster": 0, "x": -76.61794484645873, "y": -87.5886999942636, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7954", "attributes": { "cluster": 1, "x": 76.67507866692199, "y": 16.33434845986904, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7955", "attributes": { "cluster": 0, "x": -41.617944846458634, "y": -85.85664918669465, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7956", "attributes": { "cluster": 1, "x": 46.675078666922, "y": -87.5886999942636, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7957", "attributes": { "cluster": 2, "x": 52.07804381723351, "y": 86.76472219829581, "size": 2, "color": "#4b94db" } }, { "key": "7958", "attributes": { "cluster": 0, "x": -81.61794484645884, "y": 14.602297652300102, "size": 1, "color": "#e36d0" } }, { "key": "7959", "attributes": { "cluster": 0, "x": -81.6179448464587, "y": -85.85664918669472, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "7960", "attributes": { "cluster": 0, "x": -41.617944846458784, "y": 14.602297652300166, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7961", "attributes": { "cluster": 2, "x": -51.92195618276649, "y": 55.58780766205605, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7962", "attributes": { "cluster": 1, "x": 81.6750786669221, "y": -85.85664918669465, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7963", "attributes": { "cluster": 2, "x": 52.07804381723352, "y": 55.587807662056036, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7964", "attributes": { "cluster": 0, "x": -114.61794484645874, "y": -35.627175767197265, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7965", "attributes": { "cluster": 1, "x": 41.675078666921884, "y": 14.602297652300102, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7966", "attributes": { "cluster": 1, "x": 41.67507866692203, "y": -85.85664918669472, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "7967", "attributes": { "cluster": 1, "x": 81.67507866692195, "y": 14.602297652300166, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7968", "attributes": { "cluster": 2, "x": -51.92195618276651, "y": 86.76472219829583, "size": 3.6666666666666665, "color": "#4b94db" } }, { "key": "7969", "attributes": { "cluster": 0, "x": -115.61794484645874, "y": -37.35922657476615, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7970", "attributes": { "cluster": 0, "x": -8.617944846458741, "y": -35.62717576719729, "size": 1, "color": "#e36d0" } }, { "key": "7971", "attributes": { "cluster": 1, "x": 8.67507866692199, "y": -35.627175767197265, "size": 2, "color": "#762e2e" } }, { "key": "7972", "attributes": { "cluster": 2, "x": -53.92195618276649, "y": 76.37241735288258, "size": 2, "color": "#4b94db" } }, { "key": "7973", "attributes": { "cluster": 1, "x": 7.675078666921991, "y": -37.35922657476615, "size": 1, "color": "#762e2e" } }, { "key": "7974", "attributes": { "cluster": 0, "x": -7.617944846458741, "y": -33.89512495962841, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7975", "attributes": { "cluster": 2, "x": -53.92195618276649, "y": 65.98011250746931, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7976", "attributes": { "cluster": 1, "x": 114.67507866692199, "y": -35.62717576719729, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7977", "attributes": { "cluster": 1, "x": 115.67507866692199, "y": -33.89512495962841, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7978", "attributes": { "cluster": 2, "x": 54.07804381723351, "y": 65.98011250746929, "size": 1, "color": "#4b94db" } }, { "key": "7979", "attributes": { "cluster": 1, "x": 53.67507866692196, "y": 18.066399267437887, "size": 1, "color": "#762e2e" } }, { "key": "7980", "attributes": { "cluster": 2, "x": 54.07804381723351, "y": 76.37241735288255, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "7981", "attributes": { "cluster": 2, "x": 35.07804381723348, "y": 112.74548431182899, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "7982", "attributes": { "cluster": 0, "x": -69.61794484645877, "y": 18.066399267437887, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "7983", "attributes": { "cluster": 1, "x": 69.67507866692202, "y": -89.32075080183245, "size": 2, "color": "#762e2e" } }, { "key": "7984", "attributes": { "cluster": 0, "x": -53.61794484645871, "y": -89.32075080183245, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "7985", "attributes": { "cluster": 0, "x": -53.617944846458734, "y": 18.066399267437887, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7986", "attributes": { "cluster": 1, "x": 69.675078666922, "y": 18.066399267437887, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "7987", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -89.32075080183245, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "7988", "attributes": { "cluster": 1, "x": 53.67507866692198, "y": -89.32075080183245, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "7989", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -20.038718499077397, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "7990", "attributes": { "cluster": 0, "x": -9.617944846458741, "y": -20.038718499077397, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7991", "attributes": { "cluster": 2, "x": -34.921956182766465, "y": 29.607045548522876, "size": 2, "color": "#4b94db" } }, { "key": "7992", "attributes": { "cluster": 0, "x": -113.61794484645874, "y": -51.21563303531716, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "7993", "attributes": { "cluster": 2, "x": 35.07804381723359, "y": 29.607045548522905, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7994", "attributes": { "cluster": 2, "x": -34.92195618276658, "y": 112.74548431182896, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "7995", "attributes": { "cluster": 2, "x": -38.92195618276649, "y": 33.07114716366063, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7996", "attributes": { "cluster": 1, "x": 9.67507866692199, "y": -51.21563303531716, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "7997", "attributes": { "cluster": 2, "x": 39.07804381723351, "y": 109.28138269669122, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "7998", "attributes": { "cluster": 0, "x": -9.617944846458727, "y": -51.215633035317175, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "7999", "attributes": { "cluster": 2, "x": -38.921956182766564, "y": 109.28138269669121, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8000", "attributes": { "cluster": 2, "x": 39.07804381723358, "y": 33.071147163660655, "size": 1, "color": "#4b94db" } }, { "key": "8001", "attributes": { "cluster": 0, "x": -113.61794484645876, "y": -20.038718499077383, "size": 1, "color": "#e36d0" } }, { "key": "8002", "attributes": { "cluster": 0, "x": -115.61794484645874, "y": -30.431023344490637, "size": 2, "color": "#e36d0" } }, { "key": "8003", "attributes": { "cluster": 1, "x": 113.675078666922, "y": -51.215633035317175, "size": 1, "color": "#762e2e" } }, { "key": "8004", "attributes": { "cluster": 1, "x": 9.675078666921976, "y": -20.038718499077383, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8005", "attributes": { "cluster": 1, "x": 7.675078666921991, "y": -30.431023344490637, "size": 2, "color": "#762e2e" } }, { "key": "8006", "attributes": { "cluster": 2, "x": 47.078043817233514, "y": 98.88907785127796, "size": 3, "color": "#4b94db" } }, { "key": "8007", "attributes": { "cluster": 0, "x": -115.61794484645874, "y": -40.8233281899039, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8008", "attributes": { "cluster": 0, "x": -7.617944846458741, "y": -40.823328189903926, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8009", "attributes": { "cluster": 1, "x": 7.675078666921991, "y": -40.8233281899039, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8010", "attributes": { "cluster": 0, "x": -7.617944846458741, "y": -30.431023344490658, "size": 1, "color": "#e36d0" } }, { "key": "8011", "attributes": { "cluster": 1, "x": 115.67507866692199, "y": -40.823328189903926, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8012", "attributes": { "cluster": 0, "x": -26.61794484645877, "y": 5.942043614455777, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8013", "attributes": { "cluster": 0, "x": -96.61794484645871, "y": -77.19639514885034, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8014", "attributes": { "cluster": 2, "x": -46.9219561827665, "y": 43.463452009073904, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8015", "attributes": { "cluster": 1, "x": 115.67507866692199, "y": -30.431023344490658, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8016", "attributes": { "cluster": 0, "x": -26.617944846458656, "y": -77.19639514885031, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8017", "attributes": { "cluster": 1, "x": 96.67507866692196, "y": 5.942043614455777, "size": 3.3333333333333335, "color": "#762e2e" } }, { "key": "8018", "attributes": { "cluster": 1, "x": 26.67507866692202, "y": -77.19639514885034, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8019", "attributes": { "cluster": 0, "x": -96.61794484645883, "y": 5.9420436144557485, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8020", "attributes": { "cluster": 2, "x": 47.07804381723354, "y": 43.46345200907391, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8021", "attributes": { "cluster": 1, "x": 96.67507866692208, "y": -77.19639514885031, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8022", "attributes": { "cluster": 0, "x": -100.61794484645874, "y": -73.73229353371258, "size": 1, "color": "#e36d0" } }, { "key": "8023", "attributes": { "cluster": 0, "x": -22.61794484645874, "y": 2.47794199931802, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8024", "attributes": { "cluster": 0, "x": -100.61794484645881, "y": 2.4779419993179985, "size": 1, "color": "#e36d0" } }, { "key": "8025", "attributes": { "cluster": 2, "x": -46.92195618276653, "y": 98.88907785127796, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8026", "attributes": { "cluster": 0, "x": -22.61794484645867, "y": -73.73229353371255, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8027", "attributes": { "cluster": 1, "x": 26.675078666921905, "y": 5.9420436144557485, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8028", "attributes": { "cluster": 1, "x": 22.67507866692199, "y": -73.73229353371258, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8029", "attributes": { "cluster": 0, "x": -14.617944846458734, "y": -7.914362846095255, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8030", "attributes": { "cluster": 2, "x": 10.078043817233542, "y": 17.48268989554078, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8031", "attributes": { "cluster": 2, "x": -9.921956182766525, "y": 124.86983996481109, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8032", "attributes": { "cluster": 0, "x": -108.61794484645876, "y": -63.3399886882993, "size": 1, "color": "#e36d0" } }, { "key": "8033", "attributes": { "cluster": 2, "x": -9.921956182766479, "y": 17.48268989554075, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8034", "attributes": { "cluster": 1, "x": 100.67507866692199, "y": 2.47794199931802, "size": 1, "color": "#762e2e" } }, { "key": "8035", "attributes": { "cluster": 2, "x": 10.078043817233496, "y": 124.86983996481112, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8036", "attributes": { "cluster": 1, "x": 22.67507866692192, "y": 2.4779419993179985, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8037", "attributes": { "cluster": 1, "x": 100.67507866692206, "y": -73.73229353371255, "size": 1, "color": "#762e2e" } }, { "key": "8038", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -7.914362846095255, "size": 1, "color": "#762e2e" } }, { "key": "8039", "attributes": { "cluster": 1, "x": 14.675078666921983, "y": -63.3399886882993, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8040", "attributes": { "cluster": 0, "x": -14.617944846458705, "y": -63.3399886882993, "size": 4, "color": "#e36d0" } }, { "key": "8041", "attributes": { "cluster": 1, "x": 108.67507866692202, "y": -63.3399886882993, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8042", "attributes": { "cluster": 0, "x": -108.61794484645878, "y": -7.914362846095258, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8043", "attributes": { "cluster": 0, "x": -51.617944846458705, "y": -89.32075080183243, "size": 1, "color": "#e36d0" } }, { "key": "8044", "attributes": { "cluster": 1, "x": 14.675078666921955, "y": -7.914362846095258, "size": 2, "color": "#762e2e" } }, { "key": "8045", "attributes": { "cluster": 2, "x": -47.9219561827665, "y": 45.19550281664279, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8046", "attributes": { "cluster": 0, "x": -71.61794484645877, "y": 18.066399267437873, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8047", "attributes": { "cluster": 0, "x": -71.61794484645873, "y": -89.32075080183246, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8048", "attributes": { "cluster": 1, "x": 71.67507866692202, "y": -89.32075080183243, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8049", "attributes": { "cluster": 2, "x": 48.078043817233514, "y": 97.15702704370908, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8050", "attributes": { "cluster": 1, "x": 51.675078666921955, "y": 18.066399267437873, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8051", "attributes": { "cluster": 2, "x": -47.92195618276652, "y": 97.15702704370906, "size": 2, "color": "#4b94db" } }, { "key": "8052", "attributes": { "cluster": 2, "x": 48.078043817233535, "y": 45.195502816642794, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8053", "attributes": { "cluster": 0, "x": -51.617944846458755, "y": 18.0663992674379, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "8054", "attributes": { "cluster": 2, "x": -25.921956182766596, "y": 117.94163673453554, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8055", "attributes": { "cluster": 2, "x": 26.078043817233617, "y": 24.410893125816337, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8056", "attributes": { "cluster": 0, "x": -109.61794484645876, "y": -61.60793788073043, "size": 1, "color": "#e36d0" } }, { "key": "8057", "attributes": { "cluster": 1, "x": 51.675078666922005, "y": -89.32075080183246, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8058", "attributes": { "cluster": 2, "x": 26.078043817233436, "y": 117.94163673453565, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8059", "attributes": { "cluster": 2, "x": -25.921956182766415, "y": 24.410893125816223, "size": 1, "color": "#4b94db" } }, { "key": "8060", "attributes": { "cluster": 1, "x": 71.67507866692198, "y": 18.0663992674379, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8061", "attributes": { "cluster": 2, "x": 46.078043817233514, "y": 100.62112865884684, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8062", "attributes": { "cluster": 1, "x": 13.675078666921983, "y": -61.60793788073043, "size": 1, "color": "#762e2e" } }, { "key": "8063", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -9.64641365366413, "size": 2, "color": "#762e2e" } }, { "key": "8064", "attributes": { "cluster": 2, "x": -45.9219561827665, "y": 41.73140120150502, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8065", "attributes": { "cluster": 2, "x": 46.07804381723354, "y": 41.73140120150501, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8066", "attributes": { "cluster": 2, "x": -45.92195618276653, "y": 100.62112865884686, "size": 1, "color": "#4b94db" } }, { "key": "8067", "attributes": { "cluster": 2, "x": 25.078043817233628, "y": 22.678842318247455, "size": 2, "color": "#4b94db" } }, { "key": "8068", "attributes": { "cluster": 0, "x": -13.617944846458734, "y": -9.64641365366413, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8069", "attributes": { "cluster": 0, "x": -109.61794484645877, "y": -9.64641365366414, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8070", "attributes": { "cluster": 0, "x": -13.617944846458713, "y": -61.60793788073042, "size": 2, "color": "#e36d0" } }, { "key": "8071", "attributes": { "cluster": 0, "x": -87.61794484645884, "y": 11.138196037162317, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8072", "attributes": { "cluster": 2, "x": -24.921956182766607, "y": 119.6736875421044, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8073", "attributes": { "cluster": 1, "x": 13.675078666921962, "y": -9.64641365366414, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "8074", "attributes": { "cluster": 1, "x": 109.67507866692202, "y": -61.60793788073042, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8075", "attributes": { "cluster": 1, "x": 35.675078666921884, "y": 11.138196037162317, "size": 1, "color": "#762e2e" } }, { "key": "8076", "attributes": { "cluster": 0, "x": -35.617944846458634, "y": -82.39254757155688, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8077", "attributes": { "cluster": 0, "x": -35.61794484645881, "y": 11.13819603716243, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8078", "attributes": { "cluster": 1, "x": 87.6750786669221, "y": -82.39254757155688, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8079", "attributes": { "cluster": 0, "x": -87.61794484645867, "y": -82.39254757155699, "size": 1, "color": "#e36d0" } }, { "key": "8080", "attributes": { "cluster": 0, "x": -15.617944846458734, "y": -6.182312038526373, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8081", "attributes": { "cluster": 2, "x": -24.921956182766426, "y": 22.67884231824734, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8082", "attributes": { "cluster": 1, "x": 87.67507866692192, "y": 11.13819603716243, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8083", "attributes": { "cluster": 2, "x": 25.078043817233446, "y": 119.67368754210452, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8084", "attributes": { "cluster": 0, "x": -107.61794484645876, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8085", "attributes": { "cluster": 2, "x": -16.921956182766568, "y": 123.13778915724218, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8086", "attributes": { "cluster": 0, "x": -15.617944846458705, "y": -65.0720394958682, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8087", "attributes": { "cluster": 2, "x": 17.07804381723359, "y": 19.214740703109683, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8088", "attributes": { "cluster": 1, "x": 35.67507866692206, "y": -82.39254757155699, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8089", "attributes": { "cluster": 0, "x": -107.61794484645878, "y": -6.182312038526359, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8090", "attributes": { "cluster": 0, "x": -36.61794484645863, "y": -84.12459837912576, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8091", "attributes": { "cluster": 2, "x": 17.078043817233485, "y": 123.13778915724225, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8092", "attributes": { "cluster": 0, "x": -86.61794484645885, "y": 12.870246844731199, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "8093", "attributes": { "cluster": 2, "x": -16.921956182766465, "y": 19.214740703109612, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8094", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -6.182312038526373, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8095", "attributes": { "cluster": 0, "x": -86.61794484645867, "y": -84.12459837912587, "size": 2, "color": "#e36d0" } }, { "key": "8096", "attributes": { "cluster": 1, "x": 15.675078666921983, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8097", "attributes": { "cluster": 2, "x": 49.078043817233514, "y": 95.4249762361402, "size": 2, "color": "#4b94db" } }, { "key": "8098", "attributes": { "cluster": 1, "x": 107.67507866692202, "y": -65.0720394958682, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8099", "attributes": { "cluster": 0, "x": -36.617944846458805, "y": 12.870246844731312, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8100", "attributes": { "cluster": 1, "x": 15.675078666921955, "y": -6.182312038526359, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8101", "attributes": { "cluster": 1, "x": 86.6750786669221, "y": -84.12459837912576, "size": 1, "color": "#762e2e" } }, { "key": "8102", "attributes": { "cluster": 0, "x": -78.61794484645881, "y": 16.33434845986897, "size": 1, "color": "#e36d0" } }, { "key": "8103", "attributes": { "cluster": 1, "x": 36.67507866692188, "y": 12.870246844731199, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8104", "attributes": { "cluster": 1, "x": 36.675078666922055, "y": -84.12459837912587, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8105", "attributes": { "cluster": 2, "x": -48.9219561827665, "y": 46.92755362421167, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8106", "attributes": { "cluster": 0, "x": -44.61794484645866, "y": -87.58869999426352, "size": 1, "color": "#e36d0" } }, { "key": "8107", "attributes": { "cluster": 2, "x": 49.078043817233535, "y": 46.927553624211654, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8108", "attributes": { "cluster": 0, "x": -44.61794484645877, "y": 16.33434845986904, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "8109", "attributes": { "cluster": 2, "x": -48.92195618276652, "y": 95.42497623614021, "size": 1, "color": "#4b94db" } }, { "key": "8110", "attributes": { "cluster": 0, "x": -78.61794484645871, "y": -87.5886999942636, "size": 2, "color": "#e36d0" } }, { "key": "8111", "attributes": { "cluster": 1, "x": 86.67507866692193, "y": 12.870246844731312, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8112", "attributes": { "cluster": 1, "x": 44.67507866692191, "y": 16.33434845986897, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8113", "attributes": { "cluster": 1, "x": 78.67507866692208, "y": -87.58869999426352, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "8114", "attributes": { "cluster": 2, "x": -53.92195618276649, "y": 79.83651896802033, "size": 0, "color": "#4b94db" } }, { "key": "8115", "attributes": { "cluster": 0, "x": -12.617944846458734, "y": -11.378464461233015, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8116", "attributes": { "cluster": 1, "x": 78.67507866692196, "y": 16.33434845986904, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8117", "attributes": { "cluster": 0, "x": -110.61794484645876, "y": -59.87588707316154, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8118", "attributes": { "cluster": 0, "x": -12.617944846458713, "y": -59.87588707316155, "size": 2, "color": "#e36d0" } }, { "key": "8119", "attributes": { "cluster": 2, "x": -53.92195618276649, "y": 62.51601089233156, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8120", "attributes": { "cluster": 1, "x": 44.67507866692202, "y": -87.5886999942636, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8121", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -11.378464461233015, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8122", "attributes": { "cluster": 1, "x": 12.675078666921983, "y": -59.87588707316154, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8123", "attributes": { "cluster": 1, "x": 110.67507866692202, "y": -59.87588707316155, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8124", "attributes": { "cluster": 2, "x": 54.07804381723351, "y": 62.516010892331536, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "8125", "attributes": { "cluster": 2, "x": 54.07804381723351, "y": 79.8365189680203, "size": 1, "color": "#4b94db" } }, { "key": "8126", "attributes": { "cluster": 2, "x": 45.078043817233514, "y": 102.35317946641571, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8127", "attributes": { "cluster": 1, "x": 12.675078666921962, "y": -11.378464461233005, "size": 1, "color": "#762e2e" } }, { "key": "8128", "attributes": { "cluster": 1, "x": 7.675078666921991, "y": -26.966921729352883, "size": 1, "color": "#762e2e" } }, { "key": "8129", "attributes": { "cluster": 1, "x": 7.675078666921991, "y": -44.287429805041654, "size": 1, "color": "#762e2e" } }, { "key": "8130", "attributes": { "cluster": 1, "x": 115.67507866692199, "y": -44.287429805041675, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8131", "attributes": { "cluster": 0, "x": -110.61794484645877, "y": -11.378464461233005, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8132", "attributes": { "cluster": 0, "x": -115.61794484645874, "y": -26.966921729352883, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8133", "attributes": { "cluster": 0, "x": -115.61794484645874, "y": -44.287429805041654, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8134", "attributes": { "cluster": 1, "x": 115.67507866692199, "y": -26.966921729352904, "size": 1, "color": "#762e2e" } }, { "key": "8135", "attributes": { "cluster": 0, "x": -7.617944846458741, "y": -44.287429805041675, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8136", "attributes": { "cluster": 2, "x": 31.078043817233446, "y": 116.20958592696678, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8137", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -4.450261230957505, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8138", "attributes": { "cluster": 0, "x": -7.617944846458741, "y": -26.966921729352904, "size": 1, "color": "#e36d0" } }, { "key": "8139", "attributes": { "cluster": 0, "x": -16.617944846458734, "y": -4.450261230957505, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8140", "attributes": { "cluster": 1, "x": 92.67507866692193, "y": 9.406145229593562, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8141", "attributes": { "cluster": 1, "x": 16.675078666921983, "y": -66.80409030343705, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8142", "attributes": { "cluster": 1, "x": 30.675078666922055, "y": -80.66049676398812, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8143", "attributes": { "cluster": 0, "x": -30.617944846458805, "y": 9.406145229593562, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8144", "attributes": { "cluster": 2, "x": -44.9219561827665, "y": 39.999350393936155, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8145", "attributes": { "cluster": 1, "x": 92.67507866692209, "y": -80.66049676398802, "size": 0, "color": "#762e2e" } }, { "key": "8146", "attributes": { "cluster": 1, "x": 30.67507866692189, "y": 9.40614522959347, "size": 1, "color": "#762e2e" } }, { "key": "8147", "attributes": { "cluster": 1, "x": 16.67507866692194, "y": -4.4502612309575085, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8148", "attributes": { "cluster": 1, "x": 106.67507866692205, "y": -66.80409030343705, "size": 1, "color": "#762e2e" } }, { "key": "8149", "attributes": { "cluster": 2, "x": -30.921956182766426, "y": 26.14294393338509, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8150", "attributes": { "cluster": 1, "x": 114.67507866692199, "y": -21.770769306646272, "size": 1, "color": "#762e2e" } }, { "key": "8151", "attributes": { "cluster": 2, "x": 31.07804381723361, "y": 26.142943933385183, "size": 2, "color": "#4b94db" } }, { "key": "8152", "attributes": { "cluster": 0, "x": -106.61794484645876, "y": -66.80409030343705, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8153", "attributes": { "cluster": 2, "x": -30.92195618276659, "y": 116.20958592696668, "size": 2, "color": "#4b94db" } }, { "key": "8154", "attributes": { "cluster": 2, "x": -44.92195618276654, "y": 102.3531794664157, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8155", "attributes": { "cluster": 2, "x": 45.07804381723356, "y": 39.99935039393616, "size": 1, "color": "#4b94db" } }, { "key": "8156", "attributes": { "cluster": 1, "x": 8.67507866692199, "y": -49.483582227748286, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8157", "attributes": { "cluster": 1, "x": 114.67507866692199, "y": -49.48358222774831, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8158", "attributes": { "cluster": 0, "x": -92.61794484645867, "y": -80.66049676398812, "size": 1, "color": "#e36d0" } }, { "key": "8159", "attributes": { "cluster": 0, "x": -30.61794484645864, "y": -80.66049676398802, "size": 2, "color": "#e36d0" } }, { "key": "8160", "attributes": { "cluster": 2, "x": 53.07804381723351, "y": 85.03267139072693, "size": 1, "color": "#4b94db" } }, { "key": "8161", "attributes": { "cluster": 0, "x": -92.61794484645884, "y": 9.40614522959347, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8162", "attributes": { "cluster": 1, "x": 8.67507866692199, "y": -21.77076930664625, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8163", "attributes": { "cluster": 0, "x": -106.61794484645878, "y": -4.4502612309575085, "size": 1, "color": "#e36d0" } }, { "key": "8164", "attributes": { "cluster": 1, "x": 11.67507866692199, "y": -58.14383626559268, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8165", "attributes": { "cluster": 0, "x": -16.61794484645869, "y": -66.80409030343705, "size": 2, "color": "#e36d0" } }, { "key": "8166", "attributes": { "cluster": 2, "x": -52.92195618276649, "y": 57.319858469624926, "size": 1, "color": "#4b94db" } }, { "key": "8167", "attributes": { "cluster": 0, "x": -8.617944846458741, "y": -21.770769306646272, "size": 2, "color": "#e36d0" } }, { "key": "8168", "attributes": { "cluster": 0, "x": -114.61794484645874, "y": -49.483582227748286, "size": 1, "color": "#e36d0" } }, { "key": "8169", "attributes": { "cluster": 2, "x": 53.07804381723351, "y": 57.319858469624904, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8170", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -13.11051526880188, "size": 1, "color": "#762e2e" } }, { "key": "8171", "attributes": { "cluster": 2, "x": -52.92195618276649, "y": 85.03267139072696, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8172", "attributes": { "cluster": 1, "x": 11.67507866692199, "y": -13.11051526880187, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8173", "attributes": { "cluster": 2, "x": -49.92195618276649, "y": 48.65960443178054, "size": 2, "color": "#4b94db" } }, { "key": "8174", "attributes": { "cluster": 0, "x": -8.617944846458741, "y": -49.48358222774831, "size": 1, "color": "#e36d0" } }, { "key": "8175", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -58.14383626559269, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "8176", "attributes": { "cluster": 0, "x": -114.61794484645874, "y": -21.77076930664625, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8177", "attributes": { "cluster": 1, "x": 83.67507866692193, "y": 14.60229765230018, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8178", "attributes": { "cluster": 1, "x": 39.67507866692186, "y": 14.602297652300095, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8179", "attributes": { "cluster": 1, "x": 39.67507866692204, "y": -85.85664918669474, "size": 0, "color": "#762e2e" } }, { "key": "8180", "attributes": { "cluster": 2, "x": 50.07804381723351, "y": 93.69292542857133, "size": 1, "color": "#4b94db" } }, { "key": "8181", "attributes": { "cluster": 2, "x": -49.92195618276649, "y": 93.69292542857134, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8182", "attributes": { "cluster": 2, "x": 50.07804381723351, "y": 48.65960443178052, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8183", "attributes": { "cluster": 2, "x": 22.07804381723346, "y": 121.40573834967338, "size": 2, "color": "#4b94db" } }, { "key": "8184", "attributes": { "cluster": 2, "x": -21.92195618276662, "y": 121.4057383496733, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8185", "attributes": { "cluster": 2, "x": -21.92195618276644, "y": 20.946791510678473, "size": 1, "color": "#4b94db" } }, { "key": "8186", "attributes": { "cluster": 0, "x": -111.61794484645874, "y": -58.14383626559268, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8187", "attributes": { "cluster": 1, "x": 83.67507866692212, "y": -85.85664918669465, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8188", "attributes": { "cluster": 0, "x": -11.617944846458741, "y": -13.11051526880188, "size": 0, "color": "#e36d0" } }, { "key": "8189", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": -2.718210423388612, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8190", "attributes": { "cluster": 1, "x": 17.675078666921983, "y": -68.53614111100595, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8191", "attributes": { "cluster": 2, "x": 22.07804381723364, "y": 20.94679151067856, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8192", "attributes": { "cluster": 2, "x": 44.078043817233514, "y": 104.08523027398459, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8193", "attributes": { "cluster": 2, "x": -43.9219561827665, "y": 38.267299586367265, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8194", "attributes": { "cluster": 2, "x": 44.07804381723355, "y": 38.26729958636728, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8195", "attributes": { "cluster": 2, "x": -43.921956182766536, "y": 104.08523027398459, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8196", "attributes": { "cluster": 1, "x": 105.67507866692203, "y": -68.53614111100593, "size": 2, "color": "#762e2e" } }, { "key": "8197", "attributes": { "cluster": 0, "x": -111.61794484645874, "y": -13.11051526880187, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8198", "attributes": { "cluster": 2, "x": 12.07804381723356, "y": 17.482689895540787, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8199", "attributes": { "cluster": 2, "x": -11.921956182766543, "y": 124.86983996481108, "size": 2, "color": "#4b94db" } }, { "key": "8200", "attributes": { "cluster": 2, "x": -11.921956182766477, "y": 17.48268989554075, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8201", "attributes": { "cluster": 1, "x": 17.675078666921948, "y": -2.7182104233886264, "size": 2, "color": "#762e2e" } }, { "key": "8202", "attributes": { "cluster": 2, "x": 12.078043817233494, "y": 124.86983996481112, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8203", "attributes": { "cluster": 2, "x": -37.921956182766465, "y": 31.339096356091737, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8204", "attributes": { "cluster": 0, "x": -11.617944846458741, "y": -58.14383626559269, "size": 2, "color": "#e36d0" } }, { "key": "8205", "attributes": { "cluster": 2, "x": 38.07804381723348, "y": 111.01343350426012, "size": 2, "color": "#4b94db" } }, { "key": "8206", "attributes": { "cluster": 2, "x": -37.921956182766564, "y": 111.01343350426009, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8207", "attributes": { "cluster": 2, "x": 38.07804381723358, "y": 31.33909635609178, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8208", "attributes": { "cluster": 2, "x": 51.07804381723351, "y": 91.96087462100246, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8209", "attributes": { "cluster": 0, "x": -39.61794484645879, "y": 14.60229765230018, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8210", "attributes": { "cluster": 0, "x": -83.61794484645887, "y": 14.602297652300095, "size": 1, "color": "#e36d0" } }, { "key": "8211", "attributes": { "cluster": 0, "x": -83.6179448464587, "y": -85.85664918669474, "size": 1, "color": "#e36d0" } }, { "key": "8212", "attributes": { "cluster": 2, "x": -50.92195618276649, "y": 50.39165523934941, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8213", "attributes": { "cluster": 1, "x": 73.67507866692205, "y": -89.32075080183242, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8214", "attributes": { "cluster": 0, "x": -39.61794484645861, "y": -85.85664918669465, "size": 2, "color": "#e36d0" } }, { "key": "8215", "attributes": { "cluster": 2, "x": 51.07804381723351, "y": 50.3916552393494, "size": 2, "color": "#4b94db" } }, { "key": "8216", "attributes": { "cluster": 1, "x": 49.67507866692194, "y": 18.066399267437866, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8217", "attributes": { "cluster": 2, "x": -50.92195618276649, "y": 91.96087462100246, "size": 1, "color": "#4b94db" } }, { "key": "8218", "attributes": { "cluster": 0, "x": -17.617944846458734, "y": -2.718210423388612, "size": 1, "color": "#e36d0" } }, { "key": "8219", "attributes": { "cluster": 1, "x": 49.675078666922005, "y": -89.32075080183246, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8220", "attributes": { "cluster": 0, "x": -105.61794484645876, "y": -68.53614111100595, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8221", "attributes": { "cluster": 1, "x": 73.67507866692198, "y": 18.0663992674379, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8222", "attributes": { "cluster": 2, "x": -33.92195618276644, "y": 27.874994740953994, "size": 1, "color": "#4b94db" } }, { "key": "8223", "attributes": { "cluster": 1, "x": 23.67507866692202, "y": -75.46434434128147, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8224", "attributes": { "cluster": 1, "x": 99.67507866692196, "y": 4.209992806886916, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8225", "attributes": { "cluster": 0, "x": -17.6179448464587, "y": -68.53614111100593, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8226", "attributes": { "cluster": 2, "x": 34.07804381723346, "y": 114.47753511939787, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8227", "attributes": { "cluster": 1, "x": 23.67507866692192, "y": 4.2099928068868735, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8228", "attributes": { "cluster": 0, "x": -105.61794484645878, "y": -2.7182104233886264, "size": 1, "color": "#e36d0" } }, { "key": "8229", "attributes": { "cluster": 2, "x": -33.921956182766586, "y": 114.47753511939783, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8230", "attributes": { "cluster": 1, "x": 99.67507866692206, "y": -75.46434434128143, "size": 1, "color": "#762e2e" } }, { "key": "8231", "attributes": { "cluster": 0, "x": -49.61794484645869, "y": -89.32075080183242, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8232", "attributes": { "cluster": 0, "x": -73.6179448464588, "y": 18.066399267437866, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "8233", "attributes": { "cluster": 2, "x": 34.0780438172336, "y": 27.874994740954044, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8234", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -14.842566076370758, "size": 2, "color": "#762e2e" } }, { "key": "8235", "attributes": { "cluster": 0, "x": -73.61794484645873, "y": -89.32075080183246, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8236", "attributes": { "cluster": 2, "x": 54.07804381723351, "y": 69.44421412260705, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8237", "attributes": { "cluster": 1, "x": 10.67507866692199, "y": -56.4117854580238, "size": 1, "color": "#762e2e" } }, { "key": "8238", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -56.411785458023814, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8239", "attributes": { "cluster": 0, "x": -49.617944846458755, "y": 18.0663992674379, "size": 1, "color": "#e36d0" } }, { "key": "8240", "attributes": { "cluster": 2, "x": -53.92195618276649, "y": 72.90831573774481, "size": 0, "color": "#4b94db" } }, { "key": "8241", "attributes": { "cluster": 1, "x": 10.67507866692199, "y": -14.842566076370744, "size": 1, "color": "#762e2e" } }, { "key": "8242", "attributes": { "cluster": 0, "x": -99.61794484645871, "y": -75.46434434128147, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8243", "attributes": { "cluster": 2, "x": -54.92195618276649, "y": 67.7121633150382, "size": 1, "color": "#4b94db" } }, { "key": "8244", "attributes": { "cluster": 1, "x": 27.67507866692204, "y": -78.92844595641921, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8245", "attributes": { "cluster": 0, "x": -23.61794484645877, "y": 4.209992806886916, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8246", "attributes": { "cluster": 2, "x": 55.07804381723351, "y": 67.71216331503817, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8247", "attributes": { "cluster": 0, "x": -99.61794484645881, "y": 4.2099928068868735, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8248", "attributes": { "cluster": 1, "x": 95.67507866692193, "y": 7.674094422024659, "size": 1, "color": "#762e2e" } }, { "key": "8249", "attributes": { "cluster": 2, "x": 55.07804381723351, "y": 74.64036654531367, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8250", "attributes": { "cluster": 0, "x": -23.61794484645867, "y": -75.46434434128143, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8251", "attributes": { "cluster": 2, "x": -54.92195618276649, "y": 74.6403665453137, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8252", "attributes": { "cluster": 0, "x": -10.617944846458741, "y": -14.842566076370758, "size": 2, "color": "#e36d0" } }, { "key": "8253", "attributes": { "cluster": 2, "x": -42.9219561827665, "y": 36.53524877879839, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8254", "attributes": { "cluster": 1, "x": 27.675078666921898, "y": 7.674094422024609, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8255", "attributes": { "cluster": 0, "x": -112.61794484645874, "y": -56.4117854580238, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8256", "attributes": { "cluster": 0, "x": -10.617944846458741, "y": -56.411785458023814, "size": 1, "color": "#e36d0" } }, { "key": "8257", "attributes": { "cluster": 2, "x": 43.078043817233514, "y": 105.81728108155347, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8258", "attributes": { "cluster": 0, "x": -112.61794484645874, "y": -14.842566076370744, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8259", "attributes": { "cluster": 0, "x": -95.6179448464587, "y": -78.92844595641921, "size": 1, "color": "#e36d0" } }, { "key": "8260", "attributes": { "cluster": 2, "x": -42.92195618276655, "y": 105.81728108155346, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8261", "attributes": { "cluster": 1, "x": 95.67507866692208, "y": -78.92844595641917, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8262", "attributes": { "cluster": 0, "x": -27.61794484645879, "y": 7.674094422024659, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "8263", "attributes": { "cluster": 2, "x": 43.078043817233564, "y": 36.5352487787984, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8264", "attributes": { "cluster": 2, "x": -18.921956182766603, "y": 123.1377891572422, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8265", "attributes": { "cluster": 0, "x": -95.61794484645884, "y": 7.674094422024609, "size": 1, "color": "#e36d0" } }, { "key": "8266", "attributes": { "cluster": 0, "x": -27.61794484645865, "y": -78.92844595641917, "size": 1, "color": "#e36d0" } }, { "key": "8267", "attributes": { "cluster": 2, "x": 19.078043817233624, "y": 19.214740703109676, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8268", "attributes": { "cluster": 1, "x": 115.67507866692199, "y": -37.35922657476617, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8269", "attributes": { "cluster": 0, "x": -7.617944846458741, "y": -37.35922657476617, "size": 1, "color": "#e36d0" } }, { "key": "8270", "attributes": { "cluster": 2, "x": 19.078043817233475, "y": 123.13778915724225, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8271", "attributes": { "cluster": 0, "x": -115.61794484645874, "y": -33.89512495962839, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8272", "attributes": { "cluster": 1, "x": 7.675078666921991, "y": -33.89512495962839, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8273", "attributes": { "cluster": 0, "x": -116.61794484645874, "y": -39.09127738233502, "size": 2, "color": "#e36d0" } }, { "key": "8274", "attributes": { "cluster": 2, "x": -18.921956182766454, "y": 19.214740703109605, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8275", "attributes": { "cluster": 0, "x": -6.617944846458741, "y": -39.09127738233504, "size": 2, "color": "#e36d0" } }, { "key": "8276", "attributes": { "cluster": 2, "x": 54.07804381723351, "y": 83.30062058315806, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8277", "attributes": { "cluster": 0, "x": -6.617944846458741, "y": -32.16307415205954, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8278", "attributes": { "cluster": 1, "x": 6.675078666921991, "y": -39.09127738233502, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8279", "attributes": { "cluster": 0, "x": -116.61794484645874, "y": -32.163074152059515, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8280", "attributes": { "cluster": 0, "x": -104.61794484645876, "y": -70.26819191857481, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8281", "attributes": { "cluster": 1, "x": 116.67507866692199, "y": -39.09127738233504, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8282", "attributes": { "cluster": 0, "x": -18.617944846458734, "y": -0.9861596158197372, "size": 1, "color": "#e36d0" } }, { "key": "8283", "attributes": { "cluster": 1, "x": 116.67507866692199, "y": -32.16307415205954, "size": 2, "color": "#762e2e" } }, { "key": "8284", "attributes": { "cluster": 2, "x": -53.92195618276649, "y": 59.0519092771938, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8285", "attributes": { "cluster": 1, "x": 6.675078666921991, "y": -32.163074152059515, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8286", "attributes": { "cluster": 1, "x": 18.675078666921983, "y": -70.26819191857481, "size": 1, "color": "#762e2e" } }, { "key": "8287", "attributes": { "cluster": 0, "x": -104.6179448464588, "y": -0.9861596158197443, "size": 2, "color": "#e36d0" } }, { "key": "8288", "attributes": { "cluster": 0, "x": -18.617944846458684, "y": -70.26819191857481, "size": 1, "color": "#e36d0" } }, { "key": "8289", "attributes": { "cluster": 2, "x": 54.07804381723351, "y": 59.051909277193786, "size": 1, "color": "#4b94db" } }, { "key": "8290", "attributes": { "cluster": 0, "x": -80.61794484645885, "y": 16.334348459868977, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8291", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": -0.9861596158197372, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8292", "attributes": { "cluster": 1, "x": 18.675078666921934, "y": -0.9861596158197443, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8293", "attributes": { "cluster": 2, "x": -53.92195618276649, "y": 83.30062058315808, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8294", "attributes": { "cluster": 1, "x": 104.67507866692205, "y": -70.26819191857481, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8295", "attributes": { "cluster": 0, "x": -42.61794484645863, "y": -87.58869999426354, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8296", "attributes": { "cluster": 0, "x": -42.61794484645878, "y": 16.334348459869048, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8297", "attributes": { "cluster": 0, "x": -80.6179448464587, "y": -87.5886999942636, "size": 1, "color": "#e36d0" } }, { "key": "8298", "attributes": { "cluster": 0, "x": -7.617944846458741, "y": -23.50282011421515, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8299", "attributes": { "cluster": 2, "x": -51.92195618276649, "y": 52.123706046918294, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8300", "attributes": { "cluster": 0, "x": -115.61794484645874, "y": -47.751531420179404, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8301", "attributes": { "cluster": 2, "x": 52.07804381723351, "y": 90.22882381343356, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8302", "attributes": { "cluster": 2, "x": -51.92195618276649, "y": 90.22882381343359, "size": 2, "color": "#4b94db" } }, { "key": "8303", "attributes": { "cluster": 1, "x": 42.67507866692188, "y": 16.334348459868977, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8304", "attributes": { "cluster": 2, "x": 52.07804381723351, "y": 52.12370604691827, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8305", "attributes": { "cluster": 1, "x": 80.6750786669221, "y": -87.58869999426354, "size": 0, "color": "#762e2e" } }, { "key": "8306", "attributes": { "cluster": 1, "x": 80.67507866692196, "y": 16.334348459869048, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8307", "attributes": { "cluster": 2, "x": 1.0780438172335047, "y": 126.60189077237999, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8308", "attributes": { "cluster": 0, "x": -7.617944846458741, "y": -47.75153142017943, "size": 2, "color": "#e36d0" } }, { "key": "8309", "attributes": { "cluster": 0, "x": -115.61794484645874, "y": -23.50282011421513, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8310", "attributes": { "cluster": 0, "x": -113.61794484645874, "y": -54.67973465045492, "size": 1, "color": "#e36d0" } }, { "key": "8311", "attributes": { "cluster": 2, "x": -0.9219561827664859, "y": 15.750639087971884, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8312", "attributes": { "cluster": 1, "x": 42.675078666922026, "y": -87.5886999942636, "size": 1, "color": "#762e2e" } }, { "key": "8313", "attributes": { "cluster": 0, "x": -9.617944846458741, "y": -16.57461688393964, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8314", "attributes": { "cluster": 1, "x": 115.67507866692199, "y": -23.50282011421515, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8315", "attributes": { "cluster": 0, "x": -113.61794484645874, "y": -16.57461688393962, "size": 2, "color": "#e36d0" } }, { "key": "8316", "attributes": { "cluster": 0, "x": -9.617944846458741, "y": -54.67973465045494, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8317", "attributes": { "cluster": 0, "x": -60.61794484645875, "y": 19.79845007500677, "size": 2, "color": "#e36d0" } }, { "key": "8318", "attributes": { "cluster": 2, "x": 1.0780438172335194, "y": 15.75063908797189, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8319", "attributes": { "cluster": 2, "x": -0.9219561827665006, "y": 126.60189077237997, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8320", "attributes": { "cluster": 0, "x": -62.617944846458734, "y": -91.05280160940133, "size": 1, "color": "#e36d0" } }, { "key": "8321", "attributes": { "cluster": 0, "x": -60.617944846458734, "y": -91.05280160940131, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8322", "attributes": { "cluster": 1, "x": 7.675078666921991, "y": -47.751531420179404, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8323", "attributes": { "cluster": 0, "x": -62.61794484645875, "y": 19.798450075006762, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8324", "attributes": { "cluster": 2, "x": -13.921956182766568, "y": 124.86983996481106, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8325", "attributes": { "cluster": 2, "x": 14.078043817233585, "y": 17.482689895540794, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8326", "attributes": { "cluster": 1, "x": 115.67507866692199, "y": -47.75153142017943, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8327", "attributes": { "cluster": 2, "x": 14.078043817233496, "y": 124.86983996481112, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8328", "attributes": { "cluster": 1, "x": 7.675078666921991, "y": -23.50282011421513, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8329", "attributes": { "cluster": 0, "x": -75.61794484645881, "y": 18.06639926743786, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8330", "attributes": { "cluster": 2, "x": -13.921956182766479, "y": 17.482689895540737, "size": 2, "color": "#4b94db" } }, { "key": "8331", "attributes": { "cluster": 2, "x": 55.07804381723351, "y": 64.2480616999004, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8332", "attributes": { "cluster": 2, "x": 55.07804381723351, "y": 78.10446816045143, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8333", "attributes": { "cluster": 0, "x": -47.61794484645866, "y": -89.32075080183242, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8334", "attributes": { "cluster": 1, "x": 9.67507866692199, "y": -54.67973465045492, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8335", "attributes": { "cluster": 0, "x": -47.617944846458755, "y": 18.066399267437916, "size": 0, "color": "#e36d0" } }, { "key": "8336", "attributes": { "cluster": 2, "x": -54.92195618276649, "y": 78.10446816045146, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8337", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -16.57461688393964, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8338", "attributes": { "cluster": 1, "x": 9.67507866692199, "y": -16.57461688393962, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8339", "attributes": { "cluster": 0, "x": -75.61794484645873, "y": -89.32075080183247, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8340", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -54.67973465045494, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8341", "attributes": { "cluster": 0, "x": -6.617944846458741, "y": -42.5553789974728, "size": 1, "color": "#e36d0" } }, { "key": "8342", "attributes": { "cluster": 1, "x": 62.67507866692198, "y": 19.79845007500677, "size": 1, "color": "#762e2e" } }, { "key": "8343", "attributes": { "cluster": 2, "x": -54.92195618276649, "y": 64.24806169990043, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8344", "attributes": { "cluster": 0, "x": -6.617944846458741, "y": -28.698972536921783, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8345", "attributes": { "cluster": 2, "x": 3.0780438172335063, "y": 15.750639087971877, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8346", "attributes": { "cluster": 0, "x": -116.61794484645874, "y": -28.698972536921758, "size": 2, "color": "#e36d0" } }, { "key": "8347", "attributes": { "cluster": 0, "x": -116.61794484645874, "y": -42.55537899747278, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8348", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": -91.05280160940134, "size": 1, "color": "#e36d0" } }, { "key": "8349", "attributes": { "cluster": 1, "x": 60.675078666922, "y": -91.05280160940133, "size": 1, "color": "#762e2e" } }, { "key": "8350", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": 19.798450075006777, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8351", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -91.05280160940131, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8352", "attributes": { "cluster": 0, "x": -58.61794484645875, "y": 19.798450075006762, "size": 1, "color": "#e36d0" } }, { "key": "8353", "attributes": { "cluster": 1, "x": 62.675078666922, "y": -91.05280160940131, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8354", "attributes": { "cluster": 2, "x": -2.9219561827664875, "y": 126.60189077237999, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8355", "attributes": { "cluster": 0, "x": -103.61794484645874, "y": -72.00024272614371, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8356", "attributes": { "cluster": 2, "x": -2.9219561827664844, "y": 15.75063908797189, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8357", "attributes": { "cluster": 0, "x": -19.61794484645874, "y": 0.7458911917491449, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8358", "attributes": { "cluster": 0, "x": -103.6179448464588, "y": 0.7458911917491235, "size": 1, "color": "#e36d0" } }, { "key": "8359", "attributes": { "cluster": 2, "x": 3.078043817233503, "y": 126.60189077237997, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8360", "attributes": { "cluster": 2, "x": -41.92195618276649, "y": 34.80319797122951, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "8361", "attributes": { "cluster": 1, "x": 60.67507866692198, "y": 19.798450075006762, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8362", "attributes": { "cluster": 0, "x": -19.617944846458684, "y": -72.00024272614368, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8363", "attributes": { "cluster": 0, "x": -89.61794484645884, "y": 11.13819603716231, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8364", "attributes": { "cluster": 2, "x": 42.07804381723351, "y": 107.54933188912236, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8365", "attributes": { "cluster": 2, "x": -41.92195618276655, "y": 107.54933188912233, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8366", "attributes": { "cluster": 0, "x": -33.617944846458634, "y": -82.39254757155686, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8367", "attributes": { "cluster": 0, "x": -33.61794484645882, "y": 11.138196037162444, "size": 2, "color": "#e36d0" } }, { "key": "8368", "attributes": { "cluster": 2, "x": 42.078043817233564, "y": 34.80319797122953, "size": 1, "color": "#4b94db" } }, { "key": "8369", "attributes": { "cluster": 1, "x": 47.67507866692191, "y": 18.06639926743786, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8370", "attributes": { "cluster": 0, "x": -89.61794484645867, "y": -82.392547571557, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8371", "attributes": { "cluster": 2, "x": -27.921956182766596, "y": 117.94163673453552, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8372", "attributes": { "cluster": 1, "x": 75.67507866692206, "y": -89.32075080183242, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8373", "attributes": { "cluster": 2, "x": 28.078043817233617, "y": 24.410893125816344, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8374", "attributes": { "cluster": 1, "x": 75.67507866692198, "y": 18.066399267437916, "size": 1, "color": "#762e2e" } }, { "key": "8375", "attributes": { "cluster": 2, "x": 28.078043817233432, "y": 117.94163673453565, "size": 2, "color": "#4b94db" } }, { "key": "8376", "attributes": { "cluster": 0, "x": -66.61794484645877, "y": -91.05280160940134, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8377", "attributes": { "cluster": 1, "x": 47.675078666922005, "y": -89.32075080183247, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8378", "attributes": { "cluster": 0, "x": -56.61794484645871, "y": 19.798450075006777, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8379", "attributes": { "cluster": 2, "x": -27.92195618276641, "y": 24.41089312581621, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8380", "attributes": { "cluster": 1, "x": 116.67507866692199, "y": -42.5553789974728, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8381", "attributes": { "cluster": 0, "x": -66.61794484645877, "y": 19.798450075006777, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8382", "attributes": { "cluster": 1, "x": 116.67507866692199, "y": -28.698972536921783, "size": 2, "color": "#762e2e" } }, { "key": "8383", "attributes": { "cluster": 0, "x": -56.61794484645871, "y": -91.05280160940134, "size": 1, "color": "#e36d0" } }, { "key": "8384", "attributes": { "cluster": 2, "x": -4.9219561827665155, "y": 15.750639087971877, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8385", "attributes": { "cluster": 1, "x": 6.675078666921991, "y": -28.698972536921758, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8386", "attributes": { "cluster": 0, "x": -24.61794484645877, "y": 5.942043614455784, "size": 1, "color": "#e36d0" } }, { "key": "8387", "attributes": { "cluster": 1, "x": 6.675078666921991, "y": -42.55537899747278, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8388", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": -91.05280160940134, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8389", "attributes": { "cluster": 0, "x": -98.61794484645871, "y": -77.19639514885034, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8390", "attributes": { "cluster": 2, "x": 5.078043817233534, "y": 126.60189077237999, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "8391", "attributes": { "cluster": 0, "x": -31.617944846458634, "y": -82.3925475715569, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8392", "attributes": { "cluster": 0, "x": -91.61794484645884, "y": 11.138196037162345, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8393", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": 19.798450075006777, "size": 0, "color": "#762e2e" } }, { "key": "8394", "attributes": { "cluster": 2, "x": -4.921956182766523, "y": 126.60189077237999, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8395", "attributes": { "cluster": 2, "x": 5.078043817233541, "y": 15.750639087971877, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8396", "attributes": { "cluster": 0, "x": -91.61794484645867, "y": -82.392547571557, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8397", "attributes": { "cluster": 2, "x": 37.07804381723348, "y": 112.74548431182899, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8398", "attributes": { "cluster": 2, "x": -36.921956182766465, "y": 29.60704554852287, "size": 1, "color": "#4b94db" } }, { "key": "8399", "attributes": { "cluster": 0, "x": -31.61794484645882, "y": 11.138196037162452, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8400", "attributes": { "cluster": 1, "x": 58.675078666922, "y": -91.05280160940131, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8401", "attributes": { "cluster": 2, "x": 30.078043817233617, "y": 24.410893125816308, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8402", "attributes": { "cluster": 0, "x": -98.61794484645883, "y": 5.9420436144557485, "size": 1, "color": "#e36d0" } }, { "key": "8403", "attributes": { "cluster": 2, "x": -29.921956182766596, "y": 117.94163673453556, "size": 2, "color": "#4b94db" } }, { "key": "8404", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": 19.798450075006762, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8405", "attributes": { "cluster": 1, "x": 19.67507866692199, "y": -72.00024272614371, "size": 3, "color": "#762e2e" } }, { "key": "8406", "attributes": { "cluster": 0, "x": -24.617944846458656, "y": -77.19639514885031, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8407", "attributes": { "cluster": 1, "x": 103.67507866692199, "y": 0.7458911917491449, "size": 1, "color": "#762e2e" } }, { "key": "8408", "attributes": { "cluster": 0, "x": -85.61794484645887, "y": 14.602297652300088, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8409", "attributes": { "cluster": 0, "x": -37.61794484645861, "y": -85.85664918669465, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8410", "attributes": { "cluster": 0, "x": -37.61794484645881, "y": 14.60229765230018, "size": 2, "color": "#e36d0" } }, { "key": "8411", "attributes": { "cluster": 2, "x": -29.92195618276641, "y": 24.4108931258162, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8412", "attributes": { "cluster": 0, "x": -85.61794484645867, "y": -85.85664918669474, "size": 2, "color": "#e36d0" } }, { "key": "8413", "attributes": { "cluster": 2, "x": 30.078043817233432, "y": 117.94163673453566, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8414", "attributes": { "cluster": 2, "x": -36.92195618276658, "y": 112.74548431182896, "size": 1, "color": "#4b94db" } }, { "key": "8415", "attributes": { "cluster": 2, "x": 37.07804381723359, "y": 29.607045548522905, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8416", "attributes": { "cluster": 2, "x": -23.92195618276662, "y": 121.4057383496733, "size": 2, "color": "#4b94db" } }, { "key": "8417", "attributes": { "cluster": 0, "x": -8.617944846458741, "y": -18.30666769150852, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8418", "attributes": { "cluster": 1, "x": 19.675078666921934, "y": 0.7458911917491235, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8419", "attributes": { "cluster": 0, "x": -114.61794484645874, "y": -52.947683842886036, "size": 1, "color": "#e36d0" } }, { "key": "8420", "attributes": { "cluster": 1, "x": 103.67507866692205, "y": -72.00024272614368, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8421", "attributes": { "cluster": 2, "x": 24.07804381723364, "y": 20.946791510678565, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8422", "attributes": { "cluster": 0, "x": -8.617944846458727, "y": -52.94768384288605, "size": 2, "color": "#e36d0" } }, { "key": "8423", "attributes": { "cluster": 1, "x": 33.675078666921884, "y": 11.13819603716231, "size": 2, "color": "#762e2e" } }, { "key": "8424", "attributes": { "cluster": 1, "x": 89.6750786669221, "y": -82.39254757155686, "size": 1, "color": "#762e2e" } }, { "key": "8425", "attributes": { "cluster": 0, "x": -114.61794484645876, "y": -18.30666769150851, "size": 0, "color": "#e36d0" } }, { "key": "8426", "attributes": { "cluster": 1, "x": 89.6750786669219, "y": 11.138196037162444, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8427", "attributes": { "cluster": 1, "x": 33.67507866692207, "y": -82.392547571557, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8428", "attributes": { "cluster": 0, "x": -54.617944846458705, "y": -91.05280160940133, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8429", "attributes": { "cluster": 2, "x": 24.078043817233436, "y": 121.40573834967338, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8430", "attributes": { "cluster": 1, "x": 56.67507866692196, "y": -91.05280160940134, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8431", "attributes": { "cluster": 2, "x": -23.921956182766415, "y": 20.946791510678473, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8432", "attributes": { "cluster": 2, "x": 53.07804381723351, "y": 88.4967730058647, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8433", "attributes": { "cluster": 0, "x": -68.61794484645877, "y": 19.79845007500677, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8434", "attributes": { "cluster": 2, "x": -52.92195618276649, "y": 53.85575685448717, "size": 1, "color": "#4b94db" } }, { "key": "8435", "attributes": { "cluster": 1, "x": 66.67507866692202, "y": 19.798450075006777, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8436", "attributes": { "cluster": 0, "x": -68.61794484645877, "y": -91.05280160940134, "size": 2, "color": "#e36d0" } }, { "key": "8437", "attributes": { "cluster": 1, "x": 56.67507866692196, "y": 19.798450075006777, "size": 1, "color": "#762e2e" } }, { "key": "8438", "attributes": { "cluster": 2, "x": 53.07804381723352, "y": 53.85575685448716, "size": 1, "color": "#4b94db" } }, { "key": "8439", "attributes": { "cluster": 2, "x": -52.92195618276651, "y": 88.4967730058647, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8440", "attributes": { "cluster": 1, "x": 66.67507866692202, "y": -91.05280160940134, "size": 1, "color": "#762e2e" } }, { "key": "8441", "attributes": { "cluster": 0, "x": -54.61794484645871, "y": 19.798450075006777, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8442", "attributes": { "cluster": 2, "x": 7.078043817233542, "y": 15.750639087971884, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8443", "attributes": { "cluster": 0, "x": -94.61794484645867, "y": -80.66049676398814, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8444", "attributes": { "cluster": 1, "x": 98.67507866692196, "y": 5.942043614455784, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8445", "attributes": { "cluster": 2, "x": -6.9219561827665235, "y": 126.60189077237999, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8446", "attributes": { "cluster": 2, "x": -6.921956182766522, "y": 15.750639087971877, "size": 1, "color": "#4b94db" } }, { "key": "8447", "attributes": { "cluster": 2, "x": 7.0780438172335405, "y": 126.60189077237999, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8448", "attributes": { "cluster": 2, "x": -32.92195618276643, "y": 26.142943933385084, "size": 0, "color": "#4b94db" } }, { "key": "8449", "attributes": { "cluster": 1, "x": 24.67507866692202, "y": -77.19639514885034, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8450", "attributes": { "cluster": 0, "x": -28.617944846458805, "y": 9.40614522959357, "size": 1, "color": "#e36d0" } }, { "key": "8451", "attributes": { "cluster": 0, "x": -94.61794484645884, "y": 9.406145229593491, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8452", "attributes": { "cluster": 0, "x": -28.61794484645864, "y": -80.66049676398805, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8453", "attributes": { "cluster": 0, "x": -20.61794484645874, "y": 2.47794199931802, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8454", "attributes": { "cluster": 0, "x": -102.61794484645874, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8455", "attributes": { "cluster": 1, "x": 91.6750786669221, "y": -82.3925475715569, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8456", "attributes": { "cluster": 1, "x": 31.675078666921884, "y": 11.138196037162345, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8457", "attributes": { "cluster": 2, "x": 33.07804381723344, "y": 116.20958592696678, "size": 1, "color": "#4b94db" } }, { "key": "8458", "attributes": { "cluster": 0, "x": -20.61794484645867, "y": -73.73229353371258, "size": 2, "color": "#e36d0" } }, { "key": "8459", "attributes": { "cluster": 1, "x": 31.67507866692207, "y": -82.392547571557, "size": 1, "color": "#762e2e" } }, { "key": "8460", "attributes": { "cluster": 1, "x": 91.6750786669219, "y": 11.138196037162452, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8461", "attributes": { "cluster": 0, "x": -102.61794484645881, "y": 2.4779419993180127, "size": 2, "color": "#e36d0" } }, { "key": "8462", "attributes": { "cluster": 0, "x": -116.61794484645874, "y": -46.01948061261053, "size": 1, "color": "#e36d0" } }, { "key": "8463", "attributes": { "cluster": 2, "x": -32.92195618276659, "y": 116.2095859269667, "size": 2, "color": "#4b94db" } }, { "key": "8464", "attributes": { "cluster": 1, "x": 24.675078666921905, "y": 5.9420436144557485, "size": 1, "color": "#762e2e" } }, { "key": "8465", "attributes": { "cluster": 1, "x": 98.67507866692208, "y": -77.19639514885031, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8466", "attributes": { "cluster": 1, "x": 37.67507866692186, "y": 14.602297652300088, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8467", "attributes": { "cluster": 1, "x": 85.67507866692212, "y": -85.85664918669465, "size": 1, "color": "#762e2e" } }, { "key": "8468", "attributes": { "cluster": 0, "x": -6.617944846458741, "y": -25.23487092178403, "size": 1, "color": "#e36d0" } }, { "key": "8469", "attributes": { "cluster": 0, "x": -116.61794484645874, "y": -25.234870921784005, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8470", "attributes": { "cluster": 2, "x": 33.078043817233606, "y": 26.142943933385162, "size": 1, "color": "#4b94db" } }, { "key": "8471", "attributes": { "cluster": 0, "x": -6.617944846458741, "y": -46.01948061261055, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8472", "attributes": { "cluster": 2, "x": 41.07804381723351, "y": 109.28138269669122, "size": 0, "color": "#4b94db" } }, { "key": "8473", "attributes": { "cluster": 0, "x": -77.61794484645881, "y": 18.066399267437845, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8474", "attributes": { "cluster": 2, "x": -40.92195618276649, "y": 33.07114716366063, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8475", "attributes": { "cluster": 2, "x": 41.07804381723358, "y": 33.07114716366064, "size": 1, "color": "#4b94db" } }, { "key": "8476", "attributes": { "cluster": 2, "x": -40.921956182766564, "y": 109.28138269669122, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8477", "attributes": { "cluster": 2, "x": -54.92195618276649, "y": 60.78396008476268, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8478", "attributes": { "cluster": 1, "x": 85.67507866692192, "y": 14.60229765230018, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8479", "attributes": { "cluster": 1, "x": 37.67507866692206, "y": -85.85664918669474, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8480", "attributes": { "cluster": 0, "x": -45.61794484645866, "y": -89.3207508018324, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8481", "attributes": { "cluster": 0, "x": -45.617944846458755, "y": 18.066399267437923, "size": 2, "color": "#e36d0" } }, { "key": "8482", "attributes": { "cluster": 2, "x": 55.07804381723351, "y": 81.56856977558918, "size": 1, "color": "#4b94db" } }, { "key": "8483", "attributes": { "cluster": 1, "x": 114.67507866692199, "y": -18.30666769150852, "size": 1, "color": "#762e2e" } }, { "key": "8484", "attributes": { "cluster": 1, "x": 8.67507866692199, "y": -52.947683842886036, "size": 1, "color": "#762e2e" } }, { "key": "8485", "attributes": { "cluster": 1, "x": 114.675078666922, "y": -52.94768384288605, "size": 2, "color": "#762e2e" } }, { "key": "8486", "attributes": { "cluster": 2, "x": -54.92195618276649, "y": 81.56856977558921, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8487", "attributes": { "cluster": 1, "x": 8.675078666921976, "y": -18.30666769150851, "size": 2, "color": "#762e2e" } }, { "key": "8488", "attributes": { "cluster": 2, "x": 55.07804381723351, "y": 60.783960084762654, "size": 1, "color": "#4b94db" } }, { "key": "8489", "attributes": { "cluster": 1, "x": 68.67507866692202, "y": -91.05280160940133, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8490", "attributes": { "cluster": 0, "x": -77.61794484645873, "y": -89.32075080183247, "size": 1, "color": "#e36d0" } }, { "key": "8491", "attributes": { "cluster": 1, "x": 54.675078666921955, "y": 19.79845007500677, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8492", "attributes": { "cluster": 0, "x": -40.61794484645861, "y": -87.58869999426352, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8493", "attributes": { "cluster": 0, "x": -40.6179448464588, "y": 16.334348459869048, "size": 1, "color": "#e36d0" } }, { "key": "8494", "attributes": { "cluster": 2, "x": -15.92195618276657, "y": 124.86983996481106, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8495", "attributes": { "cluster": 2, "x": 16.07804381723359, "y": 17.48268989554081, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8496", "attributes": { "cluster": 1, "x": 54.67507866692196, "y": -91.05280160940134, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8497", "attributes": { "cluster": 2, "x": 16.078043817233493, "y": 124.86983996481113, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8498", "attributes": { "cluster": 1, "x": 68.67507866692202, "y": 19.798450075006777, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8499", "attributes": { "cluster": 0, "x": -82.61794484645887, "y": 16.33434845986897, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8500", "attributes": { "cluster": 0, "x": -82.61794484645868, "y": -87.5886999942636, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8501", "attributes": { "cluster": 1, "x": 28.675078666922055, "y": -80.66049676398814, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8502", "attributes": { "cluster": 0, "x": -70.61794484645873, "y": -91.05280160940134, "size": 0, "color": "#e36d0" } }, { "key": "8503", "attributes": { "cluster": 1, "x": 94.67507866692193, "y": 9.40614522959357, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8504", "attributes": { "cluster": 1, "x": 28.67507866692189, "y": 9.406145229593491, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8505", "attributes": { "cluster": 1, "x": 94.67507866692209, "y": -80.66049676398805, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8506", "attributes": { "cluster": 1, "x": 102.67507866692199, "y": 2.47794199931802, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8507", "attributes": { "cluster": 1, "x": 20.67507866692199, "y": -73.73229353371258, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8508", "attributes": { "cluster": 2, "x": -15.921956182766476, "y": 17.48268989554073, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8509", "attributes": { "cluster": 1, "x": 102.67507866692206, "y": -73.73229353371258, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8510", "attributes": { "cluster": 0, "x": -52.617944846458755, "y": 19.798450075006777, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8511", "attributes": { "cluster": 2, "x": 21.078043817233638, "y": 19.214740703109683, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8512", "attributes": { "cluster": 1, "x": 20.67507866692192, "y": 2.4779419993180127, "size": 1, "color": "#762e2e" } }, { "key": "8513", "attributes": { "cluster": 2, "x": 21.07804381723345, "y": 123.13778915724225, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8514", "attributes": { "cluster": 0, "x": -70.61794484645878, "y": 19.798450075006755, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8515", "attributes": { "cluster": 0, "x": -52.6179448464587, "y": -91.05280160940131, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8516", "attributes": { "cluster": 0, "x": -6.617944846458741, "y": -35.62717576719729, "size": 1, "color": "#e36d0" } }, { "key": "8517", "attributes": { "cluster": 2, "x": -20.921956182766618, "y": 123.13778915724218, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8518", "attributes": { "cluster": 0, "x": -5.617944846458741, "y": -33.89512495962841, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8519", "attributes": { "cluster": 2, "x": -20.92195618276643, "y": 19.214740703109605, "size": 2, "color": "#4b94db" } }, { "key": "8520", "attributes": { "cluster": 2, "x": -8.921956182766477, "y": 15.750639087971877, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8521", "attributes": { "cluster": 2, "x": 9.078043817233494, "y": 126.60189077237999, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8522", "attributes": { "cluster": 0, "x": -116.61794484645874, "y": -35.627175767197265, "size": 1, "color": "#e36d0" } }, { "key": "8523", "attributes": { "cluster": 1, "x": 6.675078666921991, "y": -46.01948061261053, "size": 1, "color": "#762e2e" } }, { "key": "8524", "attributes": { "cluster": 1, "x": 116.67507866692199, "y": -25.23487092178403, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8525", "attributes": { "cluster": 1, "x": 6.675078666921991, "y": -25.234870921784005, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8526", "attributes": { "cluster": 2, "x": -8.921956182766534, "y": 126.60189077237996, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8527", "attributes": { "cluster": 1, "x": 116.67507866692199, "y": -46.01948061261055, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8528", "attributes": { "cluster": 0, "x": -117.61794484645874, "y": -37.35922657476615, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8529", "attributes": { "cluster": 0, "x": -115.61794484645874, "y": -51.21563303531716, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8530", "attributes": { "cluster": 2, "x": 9.078043817233551, "y": 15.750639087971898, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8531", "attributes": { "cluster": 0, "x": -7.617944846458741, "y": -20.038718499077397, "size": 1, "color": "#e36d0" } }, { "key": "8532", "attributes": { "cluster": 1, "x": 45.67507866692191, "y": 18.066399267437845, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8533", "attributes": { "cluster": 2, "x": 55.07804381723351, "y": 71.17626493017592, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8534", "attributes": { "cluster": 1, "x": 77.67507866692208, "y": -89.3207508018324, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8535", "attributes": { "cluster": 2, "x": 56.07804381723351, "y": 72.9083157377448, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8536", "attributes": { "cluster": 1, "x": 77.67507866692198, "y": 18.066399267437923, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8537", "attributes": { "cluster": 2, "x": -54.92195618276649, "y": 71.17626493017595, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8538", "attributes": { "cluster": 1, "x": 45.675078666922005, "y": -89.32075080183247, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8539", "attributes": { "cluster": 0, "x": -115.61794484645876, "y": -20.038718499077383, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8540", "attributes": { "cluster": 0, "x": -7.617944846458727, "y": -51.215633035317175, "size": 0, "color": "#e36d0" } }, { "key": "8541", "attributes": { "cluster": 1, "x": 82.67507866692212, "y": -87.58869999426352, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8542", "attributes": { "cluster": 2, "x": -55.92195618276649, "y": 69.44421412260706, "size": 0, "color": "#4b94db" } }, { "key": "8543", "attributes": { "cluster": 1, "x": 82.67507866692193, "y": 16.334348459869048, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8544", "attributes": { "cluster": 1, "x": 40.67507866692186, "y": 16.33434845986897, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8545", "attributes": { "cluster": 2, "x": -53.92195618276649, "y": 55.58780766205605, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8546", "attributes": { "cluster": 0, "x": -5.617944846458741, "y": -40.823328189903926, "size": 1, "color": "#e36d0" } }, { "key": "8547", "attributes": { "cluster": 2, "x": 54.07804381723351, "y": 86.76472219829581, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8548", "attributes": { "cluster": 1, "x": 40.67507866692205, "y": -87.5886999942636, "size": 1, "color": "#762e2e" } }, { "key": "8549", "attributes": { "cluster": 2, "x": -53.92195618276651, "y": 86.76472219829583, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8550", "attributes": { "cluster": 1, "x": 52.675078666922005, "y": -91.05280160940134, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8551", "attributes": { "cluster": 1, "x": 70.67507866692198, "y": 19.798450075006777, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8552", "attributes": { "cluster": 2, "x": 54.07804381723352, "y": 55.587807662056036, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8553", "attributes": { "cluster": 1, "x": 52.67507866692195, "y": 19.798450075006755, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8554", "attributes": { "cluster": 1, "x": 70.67507866692203, "y": -91.05280160940131, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "8555", "attributes": { "cluster": 2, "x": 56.07804381723351, "y": 65.98011250746929, "size": 1, "color": "#4b94db" } }, { "key": "8556", "attributes": { "cluster": 0, "x": -5.617944846458741, "y": -30.431023344490658, "size": 0, "color": "#e36d0" } }, { "key": "8557", "attributes": { "cluster": 1, "x": 116.67507866692199, "y": -35.62717576719729, "size": 2, "color": "#762e2e" } }, { "key": "8558", "attributes": { "cluster": 2, "x": 56.07804381723351, "y": 76.37241735288255, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8559", "attributes": { "cluster": 1, "x": 117.67507866692199, "y": -33.89512495962841, "size": 2, "color": "#762e2e" } }, { "key": "8560", "attributes": { "cluster": 2, "x": -55.92195618276649, "y": 76.37241735288258, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "8561", "attributes": { "cluster": 1, "x": 6.675078666921991, "y": -35.627175767197265, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8562", "attributes": { "cluster": 2, "x": -55.92195618276649, "y": 65.98011250746931, "size": 1, "color": "#4b94db" } }, { "key": "8563", "attributes": { "cluster": 2, "x": -48.9219561827665, "y": 43.463452009073904, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8564", "attributes": { "cluster": 2, "x": 49.078043817233514, "y": 98.88907785127796, "size": 1, "color": "#4b94db" } }, { "key": "8565", "attributes": { "cluster": 0, "x": -117.61794484645874, "y": -30.431023344490637, "size": 2, "color": "#e36d0" } }, { "key": "8566", "attributes": { "cluster": 2, "x": -48.92195618276653, "y": 98.88907785127795, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8567", "attributes": { "cluster": 2, "x": 49.07804381723354, "y": 43.46345200907392, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8568", "attributes": { "cluster": 2, "x": 36.07804381723345, "y": 114.47753511939788, "size": 1, "color": "#4b94db" } }, { "key": "8569", "attributes": { "cluster": 0, "x": -117.61794484645874, "y": -40.8233281899039, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8570", "attributes": { "cluster": 0, "x": -110.61794484645876, "y": -63.33998868829931, "size": 1, "color": "#e36d0" } }, { "key": "8571", "attributes": { "cluster": 1, "x": 5.675078666921991, "y": -37.35922657476615, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8572", "attributes": { "cluster": 0, "x": -12.617944846458734, "y": -7.914362846095251, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8573", "attributes": { "cluster": 2, "x": -35.921956182766436, "y": 27.874994740953987, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8574", "attributes": { "cluster": 1, "x": 7.675078666921991, "y": -51.21563303531716, "size": 2, "color": "#762e2e" } }, { "key": "8575", "attributes": { "cluster": 1, "x": 115.67507866692199, "y": -20.038718499077397, "size": 1, "color": "#762e2e" } }, { "key": "8576", "attributes": { "cluster": 0, "x": -110.61794484645878, "y": -7.9143628460952655, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8577", "attributes": { "cluster": 1, "x": 7.675078666921976, "y": -20.038718499077383, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8578", "attributes": { "cluster": 0, "x": -12.617944846458705, "y": -63.33998868829929, "size": 1, "color": "#e36d0" } }, { "key": "8579", "attributes": { "cluster": 0, "x": -25.617944846458798, "y": 7.674094422024666, "size": 2, "color": "#e36d0" } }, { "key": "8580", "attributes": { "cluster": 1, "x": 115.675078666922, "y": -51.215633035317175, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8581", "attributes": { "cluster": 0, "x": -97.61794484645868, "y": -78.92844595641922, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8582", "attributes": { "cluster": 2, "x": 48.078043817233514, "y": 100.62112865884683, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "8583", "attributes": { "cluster": 1, "x": 117.67507866692199, "y": -40.823328189903926, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8584", "attributes": { "cluster": 1, "x": 117.67507866692199, "y": -30.431023344490658, "size": 1, "color": "#762e2e" } }, { "key": "8585", "attributes": { "cluster": 0, "x": -13.617944846458734, "y": -6.182312038526376, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8586", "attributes": { "cluster": 0, "x": -109.61794484645876, "y": -65.07203949586818, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8587", "attributes": { "cluster": 0, "x": -25.617944846458656, "y": -78.92844595641918, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8588", "attributes": { "cluster": 2, "x": -47.9219561827665, "y": 41.73140120150503, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8589", "attributes": { "cluster": 2, "x": 36.07804381723359, "y": 27.87499474095403, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8590", "attributes": { "cluster": 1, "x": 5.675078666921991, "y": -30.431023344490637, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8591", "attributes": { "cluster": 1, "x": 5.675078666921991, "y": -40.8233281899039, "size": 1, "color": "#762e2e" } }, { "key": "8592", "attributes": { "cluster": 1, "x": 12.675078666921983, "y": -63.33998868829931, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8593", "attributes": { "cluster": 0, "x": -13.617944846458705, "y": -65.07203949586818, "size": 1, "color": "#e36d0" } }, { "key": "8594", "attributes": { "cluster": 2, "x": 48.07804381723354, "y": 41.73140120150504, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8595", "attributes": { "cluster": 2, "x": -35.92195618276658, "y": 114.47753511939783, "size": 1, "color": "#4b94db" } }, { "key": "8596", "attributes": { "cluster": 2, "x": -47.92195618276653, "y": 100.62112865884683, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8597", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -7.914362846095251, "size": 1, "color": "#762e2e" } }, { "key": "8598", "attributes": { "cluster": 0, "x": -97.61794484645883, "y": 7.674094422024623, "size": 1, "color": "#e36d0" } }, { "key": "8599", "attributes": { "cluster": 2, "x": -49.9219561827665, "y": 45.195502816642794, "size": 1, "color": "#4b94db" } }, { "key": "8600", "attributes": { "cluster": 0, "x": -109.61794484645878, "y": -6.1823120385263834, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "8601", "attributes": { "cluster": 2, "x": 50.078043817233514, "y": 97.15702704370906, "size": 1, "color": "#4b94db" } }, { "key": "8602", "attributes": { "cluster": 0, "x": -111.61794484645876, "y": -61.60793788073042, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8603", "attributes": { "cluster": 1, "x": 12.675078666921955, "y": -7.9143628460952655, "size": 1, "color": "#762e2e" } }, { "key": "8604", "attributes": { "cluster": 0, "x": -11.617944846458734, "y": -9.64641365366414, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8605", "attributes": { "cluster": 1, "x": 110.67507866692202, "y": -63.33998868829929, "size": 2, "color": "#762e2e" } }, { "key": "8606", "attributes": { "cluster": 1, "x": 97.67507866692193, "y": 7.674094422024666, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8607", "attributes": { "cluster": 2, "x": -49.92195618276652, "y": 97.15702704370909, "size": 1, "color": "#4b94db" } }, { "key": "8608", "attributes": { "cluster": 2, "x": 50.078043817233535, "y": 45.19550281664278, "size": 1, "color": "#4b94db" } }, { "key": "8609", "attributes": { "cluster": 2, "x": 47.078043817233514, "y": 102.35317946641572, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8610", "attributes": { "cluster": 1, "x": 25.675078666922047, "y": -78.92844595641922, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8611", "attributes": { "cluster": 0, "x": -111.61794484645877, "y": -9.646413653664126, "size": 1, "color": "#e36d0" } }, { "key": "8612", "attributes": { "cluster": 2, "x": -46.9219561827665, "y": 39.99935039393615, "size": 3, "color": "#4b94db" } }, { "key": "8613", "attributes": { "cluster": 0, "x": -11.617944846458713, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8614", "attributes": { "cluster": 0, "x": -14.617944846458734, "y": -4.450261230957494, "size": 1, "color": "#e36d0" } }, { "key": "8615", "attributes": { "cluster": 2, "x": 47.07804381723356, "y": 39.99935039393614, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8616", "attributes": { "cluster": 2, "x": -46.92195618276654, "y": 102.35317946641572, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8617", "attributes": { "cluster": 2, "x": -39.921956182766465, "y": 31.339096356091737, "size": 2, "color": "#4b94db" } }, { "key": "8618", "attributes": { "cluster": 2, "x": 40.07804381723348, "y": 111.01343350426012, "size": 2, "color": "#4b94db" } }, { "key": "8619", "attributes": { "cluster": 2, "x": -39.921956182766564, "y": 111.01343350426009, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8620", "attributes": { "cluster": 2, "x": 40.07804381723358, "y": 31.33909635609178, "size": 1, "color": "#4b94db" } }, { "key": "8621", "attributes": { "cluster": 0, "x": -108.61794484645876, "y": -66.80409030343706, "size": 2, "color": "#e36d0" } }, { "key": "8622", "attributes": { "cluster": 2, "x": 51.07804381723352, "y": 95.4249762361402, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8623", "attributes": { "cluster": 0, "x": -14.617944846458691, "y": -66.80409030343706, "size": 2, "color": "#e36d0" } }, { "key": "8624", "attributes": { "cluster": 2, "x": -50.92195618276651, "y": 46.92755362421166, "size": 1, "color": "#4b94db" } }, { "key": "8625", "attributes": { "cluster": 2, "x": 51.078043817233535, "y": 46.927553624211654, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8626", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -6.182312038526376, "size": 1, "color": "#762e2e" } }, { "key": "8627", "attributes": { "cluster": 1, "x": 13.675078666921983, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8628", "attributes": { "cluster": 1, "x": 97.67507866692208, "y": -78.92844595641918, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8629", "attributes": { "cluster": 2, "x": -50.92195618276652, "y": 95.42497623614021, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8630", "attributes": { "cluster": 1, "x": 109.67507866692202, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8631", "attributes": { "cluster": 0, "x": -108.61794484645878, "y": -4.450261230957491, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8632", "attributes": { "cluster": 2, "x": 11.078043817233556, "y": 15.750639087971912, "size": 2, "color": "#4b94db" } }, { "key": "8633", "attributes": { "cluster": 0, "x": -101.61794484645871, "y": -75.46434434128147, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8634", "attributes": { "cluster": 1, "x": 25.675078666921905, "y": 7.674094422024623, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8635", "attributes": { "cluster": 2, "x": -10.92195618276654, "y": 126.60189077237996, "size": 1, "color": "#4b94db" } }, { "key": "8636", "attributes": { "cluster": 1, "x": 13.675078666921955, "y": -6.1823120385263834, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8637", "attributes": { "cluster": 1, "x": 11.675078666921983, "y": -61.60793788073042, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8638", "attributes": { "cluster": 2, "x": -10.921956182766477, "y": 15.750639087971877, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8639", "attributes": { "cluster": 0, "x": -21.61794484645877, "y": 4.209992806886916, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8640", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -9.64641365366414, "size": 1, "color": "#762e2e" } }, { "key": "8641", "attributes": { "cluster": 1, "x": 11.675078666921962, "y": -9.646413653664126, "size": 1, "color": "#762e2e" } }, { "key": "8642", "attributes": { "cluster": 1, "x": 111.67507866692202, "y": -61.60793788073043, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8643", "attributes": { "cluster": 0, "x": -101.61794484645881, "y": 4.2099928068868735, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8644", "attributes": { "cluster": 2, "x": 11.078043817233494, "y": 126.60189077237999, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8645", "attributes": { "cluster": 2, "x": -45.9219561827665, "y": 38.26729958636728, "size": 2, "color": "#4b94db" } }, { "key": "8646", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -4.450261230957494, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8647", "attributes": { "cluster": 2, "x": 46.078043817233514, "y": 104.08523027398459, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8648", "attributes": { "cluster": 2, "x": -45.921956182766536, "y": 104.08523027398459, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8649", "attributes": { "cluster": 1, "x": 14.675078666921983, "y": -66.80409030343706, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8650", "attributes": { "cluster": 2, "x": 46.07804381723355, "y": 38.26729958636728, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8651", "attributes": { "cluster": 1, "x": 108.67507866692205, "y": -66.80409030343706, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8652", "attributes": { "cluster": 2, "x": -26.921956182766603, "y": 119.6736875421044, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8653", "attributes": { "cluster": 0, "x": -21.61794484645867, "y": -75.46434434128143, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8654", "attributes": { "cluster": 2, "x": 27.078043817233624, "y": 22.67884231824747, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8655", "attributes": { "cluster": 2, "x": 27.07804381723342, "y": 119.67368754210452, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8656", "attributes": { "cluster": 0, "x": -10.617944846458727, "y": -11.378464461233008, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8657", "attributes": { "cluster": 1, "x": 14.67507866692194, "y": -4.450261230957491, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8658", "attributes": { "cluster": 0, "x": -112.61794484645876, "y": -59.87588707316155, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8659", "attributes": { "cluster": 2, "x": -26.9219561827664, "y": 22.67884231824734, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8660", "attributes": { "cluster": 2, "x": 18.0780438172336, "y": 17.482689895540815, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8661", "attributes": { "cluster": 2, "x": -17.92195618276658, "y": 124.86983996481105, "size": 1, "color": "#4b94db" } }, { "key": "8662", "attributes": { "cluster": 0, "x": -10.617944846458713, "y": -59.87588707316155, "size": 1, "color": "#e36d0" } }, { "key": "8663", "attributes": { "cluster": 0, "x": -112.61794484645877, "y": -11.378464461233005, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "8664", "attributes": { "cluster": 1, "x": 21.67507866692202, "y": -75.46434434128147, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8665", "attributes": { "cluster": 0, "x": -50.61794484645869, "y": -91.0528016094013, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8666", "attributes": { "cluster": 2, "x": -17.921956182766454, "y": 17.48268989554073, "size": 2, "color": "#4b94db" } }, { "key": "8667", "attributes": { "cluster": 0, "x": -72.61794484645878, "y": 19.79845007500674, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8668", "attributes": { "cluster": 1, "x": 101.67507866692196, "y": 4.209992806886916, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "8669", "attributes": { "cluster": 0, "x": -72.61794484645873, "y": -91.05280160940134, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8670", "attributes": { "cluster": 1, "x": 21.67507866692192, "y": 4.2099928068868735, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8671", "attributes": { "cluster": 2, "x": 18.078043817233475, "y": 124.86983996481113, "size": 1, "color": "#4b94db" } }, { "key": "8672", "attributes": { "cluster": 0, "x": -50.617944846458755, "y": 19.798450075006777, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8673", "attributes": { "cluster": 0, "x": -107.61794484645876, "y": -68.53614111100593, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8674", "attributes": { "cluster": 1, "x": 101.67507866692206, "y": -75.46434434128143, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "8675", "attributes": { "cluster": 2, "x": -25.921956182766614, "y": 121.40573834967327, "size": 1, "color": "#4b94db" } }, { "key": "8676", "attributes": { "cluster": 0, "x": -15.617944846458734, "y": -2.7182104233886264, "size": 2, "color": "#e36d0" } }, { "key": "8677", "attributes": { "cluster": 0, "x": -107.61794484645878, "y": -2.7182104233886264, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "8678", "attributes": { "cluster": 0, "x": -15.617944846458698, "y": -68.53614111100593, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8679", "attributes": { "cluster": 2, "x": 26.078043817233635, "y": 20.946791510678587, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8680", "attributes": { "cluster": 0, "x": -88.61794484645885, "y": 12.870246844731184, "size": 1, "color": "#e36d0" } }, { "key": "8681", "attributes": { "cluster": 2, "x": 26.078043817233432, "y": 121.40573834967341, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8682", "attributes": { "cluster": 2, "x": -25.92195618276641, "y": 20.94679151067846, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8683", "attributes": { "cluster": 2, "x": 52.07804381723351, "y": 48.65960443178052, "size": 2, "color": "#4b94db" } }, { "key": "8684", "attributes": { "cluster": 0, "x": -34.61794484645863, "y": -84.12459837912574, "size": 2, "color": "#e36d0" } }, { "key": "8685", "attributes": { "cluster": 1, "x": 112.675078666922, "y": -11.378464461233008, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8686", "attributes": { "cluster": 0, "x": -34.617944846458826, "y": 12.870246844731312, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8687", "attributes": { "cluster": 2, "x": 52.07804381723351, "y": 93.69292542857133, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8688", "attributes": { "cluster": 2, "x": -51.92195618276649, "y": 93.69292542857134, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8689", "attributes": { "cluster": 1, "x": 10.675078666921976, "y": -59.87588707316155, "size": 1, "color": "#762e2e" } }, { "key": "8690", "attributes": { "cluster": 0, "x": -88.61794484645866, "y": -84.12459837912587, "size": 1, "color": "#e36d0" } }, { "key": "8691", "attributes": { "cluster": 0, "x": -43.617944846458656, "y": -89.32075080183239, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8692", "attributes": { "cluster": 1, "x": 112.67507866692202, "y": -59.87588707316155, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8693", "attributes": { "cluster": 2, "x": -51.92195618276649, "y": 48.65960443178054, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8694", "attributes": { "cluster": 1, "x": 10.675078666921962, "y": -11.378464461233005, "size": 1, "color": "#762e2e" } }, { "key": "8695", "attributes": { "cluster": 1, "x": 72.67507866692203, "y": -91.0528016094013, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8696", "attributes": { "cluster": 0, "x": -79.61794484645883, "y": 18.066399267437838, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8697", "attributes": { "cluster": 2, "x": 56.07804381723351, "y": 62.516010892331536, "size": 1, "color": "#4b94db" } }, { "key": "8698", "attributes": { "cluster": 2, "x": 56.07804381723351, "y": 79.8365189680203, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8699", "attributes": { "cluster": 0, "x": -79.6179448464587, "y": -89.32075080183247, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8700", "attributes": { "cluster": 1, "x": 50.67507866692194, "y": 19.79845007500674, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8701", "attributes": { "cluster": 2, "x": -55.92195618276649, "y": 79.83651896802033, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8702", "attributes": { "cluster": 1, "x": 50.675078666922005, "y": -91.05280160940134, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8703", "attributes": { "cluster": 0, "x": -43.61794484645878, "y": 18.066399267437923, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8704", "attributes": { "cluster": 0, "x": -87.61794484645887, "y": 14.602297652300066, "size": 2, "color": "#e36d0" } }, { "key": "8705", "attributes": { "cluster": 2, "x": -55.92195618276649, "y": 62.51601089233156, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8706", "attributes": { "cluster": 0, "x": -35.61794484645861, "y": -85.85664918669463, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8707", "attributes": { "cluster": 2, "x": -54.92195618276649, "y": 57.319858469624926, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8708", "attributes": { "cluster": 0, "x": -35.61794484645882, "y": 14.602297652300194, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8709", "attributes": { "cluster": 1, "x": 72.67507866692198, "y": 19.798450075006777, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8710", "attributes": { "cluster": 0, "x": -87.61794484645867, "y": -85.85664918669475, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8711", "attributes": { "cluster": 2, "x": 55.07804381723351, "y": 85.03267139072693, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8712", "attributes": { "cluster": 2, "x": -54.92195618276649, "y": 85.03267139072696, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8713", "attributes": { "cluster": 2, "x": 55.07804381723351, "y": 57.319858469624904, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8714", "attributes": { "cluster": 2, "x": 32.07804381723343, "y": 117.94163673453565, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8715", "attributes": { "cluster": 0, "x": -9.617944846458741, "y": -58.1438362655927, "size": 1, "color": "#e36d0" } }, { "key": "8716", "attributes": { "cluster": 2, "x": -31.92195618276641, "y": 24.41089312581621, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8717", "attributes": { "cluster": 0, "x": -9.617944846458741, "y": -13.11051526880188, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8718", "attributes": { "cluster": 1, "x": 15.675078666921983, "y": -68.53614111100593, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8719", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": -2.7182104233886264, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "8720", "attributes": { "cluster": 2, "x": 32.07804381723361, "y": 24.410893125816315, "size": 2, "color": "#4b94db" } }, { "key": "8721", "attributes": { "cluster": 0, "x": -113.61794484645874, "y": -13.110515268801866, "size": 1, "color": "#e36d0" } }, { "key": "8722", "attributes": { "cluster": 1, "x": 15.675078666921948, "y": -2.7182104233886264, "size": 1, "color": "#762e2e" } }, { "key": "8723", "attributes": { "cluster": 0, "x": -113.61794484645874, "y": -58.14383626559268, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8724", "attributes": { "cluster": 0, "x": -5.617944846458741, "y": -44.287429805041675, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8725", "attributes": { "cluster": 2, "x": -31.921956182766596, "y": 117.94163673453555, "size": 1, "color": "#4b94db" } }, { "key": "8726", "attributes": { "cluster": 1, "x": 107.67507866692203, "y": -68.53614111100593, "size": 2, "color": "#762e2e" } }, { "key": "8727", "attributes": { "cluster": 1, "x": 34.67507866692188, "y": 12.870246844731184, "size": 2, "color": "#762e2e" } }, { "key": "8728", "attributes": { "cluster": 2, "x": -44.9219561827665, "y": 36.53524877879838, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8729", "attributes": { "cluster": 0, "x": -5.617944846458741, "y": -26.966921729352904, "size": 2, "color": "#e36d0" } }, { "key": "8730", "attributes": { "cluster": 2, "x": 45.078043817233514, "y": 105.81728108155349, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8731", "attributes": { "cluster": 2, "x": -44.92195618276655, "y": 105.81728108155346, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8732", "attributes": { "cluster": 2, "x": 45.078043817233564, "y": 36.53524877879841, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8733", "attributes": { "cluster": 0, "x": -117.61794484645874, "y": -26.966921729352883, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8734", "attributes": { "cluster": 1, "x": 88.6750786669221, "y": -84.12459837912574, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8735", "attributes": { "cluster": 1, "x": 88.6750786669219, "y": 12.870246844731312, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "8736", "attributes": { "cluster": 0, "x": -117.61794484645874, "y": -44.287429805041654, "size": 2, "color": "#e36d0" } }, { "key": "8737", "attributes": { "cluster": 2, "x": 23.078043817233446, "y": 123.13778915724228, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "8738", "attributes": { "cluster": 1, "x": 34.675078666922076, "y": -84.12459837912587, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8739", "attributes": { "cluster": 1, "x": 79.67507866692208, "y": -89.32075080183239, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8740", "attributes": { "cluster": 0, "x": -116.61794484645874, "y": -49.483582227748286, "size": 1, "color": "#e36d0" } }, { "key": "8741", "attributes": { "cluster": 2, "x": -22.921956182766426, "y": 19.21474070310959, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8742", "attributes": { "cluster": 1, "x": 43.675078666921905, "y": 18.066399267437838, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8743", "attributes": { "cluster": 2, "x": 23.07804381723365, "y": 19.21474070310969, "size": 1, "color": "#4b94db" } }, { "key": "8744", "attributes": { "cluster": 2, "x": -22.92195618276663, "y": 123.13778915724217, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8745", "attributes": { "cluster": 2, "x": 13.078043817233578, "y": 15.75063908797192, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8746", "attributes": { "cluster": 0, "x": -6.617944846458741, "y": -21.770769306646272, "size": 1, "color": "#e36d0" } }, { "key": "8747", "attributes": { "cluster": 0, "x": -116.61794484645874, "y": -21.77076930664625, "size": 1, "color": "#e36d0" } }, { "key": "8748", "attributes": { "cluster": 0, "x": -6.617944846458741, "y": -49.48358222774831, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8749", "attributes": { "cluster": 2, "x": -12.92195618276656, "y": 126.60189077237995, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8750", "attributes": { "cluster": 2, "x": -12.921956182766465, "y": 15.75063908797187, "size": 2, "color": "#4b94db" } }, { "key": "8751", "attributes": { "cluster": 0, "x": -29.61794484645882, "y": 11.138196037162444, "size": 1, "color": "#e36d0" } }, { "key": "8752", "attributes": { "cluster": 1, "x": 43.675078666922026, "y": -89.32075080183247, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8753", "attributes": { "cluster": 0, "x": -93.61794484645867, "y": -82.392547571557, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8754", "attributes": { "cluster": 1, "x": 79.67507866692196, "y": 18.066399267437923, "size": 1, "color": "#762e2e" } }, { "key": "8755", "attributes": { "cluster": 1, "x": 35.67507866692186, "y": 14.602297652300066, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8756", "attributes": { "cluster": 2, "x": 13.078043817233482, "y": 126.60189077237999, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8757", "attributes": { "cluster": 0, "x": -29.617944846458634, "y": -82.39254757155689, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8758", "attributes": { "cluster": 0, "x": -93.61794484645884, "y": 11.138196037162338, "size": 1, "color": "#e36d0" } }, { "key": "8759", "attributes": { "cluster": 1, "x": 87.67507866692212, "y": -85.85664918669463, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8760", "attributes": { "cluster": 0, "x": -106.61794484645876, "y": -70.26819191857483, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8761", "attributes": { "cluster": 2, "x": -52.92195618276649, "y": 50.39165523934942, "size": 1, "color": "#4b94db" } }, { "key": "8762", "attributes": { "cluster": 0, "x": -16.617944846458734, "y": -0.9861596158197301, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8763", "attributes": { "cluster": 0, "x": -106.6179448464588, "y": -0.9861596158197585, "size": 1, "color": "#e36d0" } }, { "key": "8764", "attributes": { "cluster": 0, "x": -16.617944846458684, "y": -70.2681919185748, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8765", "attributes": { "cluster": 2, "x": 53.07804381723351, "y": 91.96087462100245, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8766", "attributes": { "cluster": 1, "x": 87.6750786669219, "y": 14.602297652300194, "size": 2, "color": "#762e2e" } }, { "key": "8767", "attributes": { "cluster": 2, "x": -52.92195618276649, "y": 91.96087462100247, "size": 2, "color": "#4b94db" } }, { "key": "8768", "attributes": { "cluster": 0, "x": -38.617944846458805, "y": 16.334348459869062, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "8769", "attributes": { "cluster": 0, "x": -84.61794484645867, "y": -87.58869999426362, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8770", "attributes": { "cluster": 1, "x": 35.67507866692207, "y": -85.85664918669475, "size": 3, "color": "#762e2e" } }, { "key": "8771", "attributes": { "cluster": 0, "x": -38.6179448464586, "y": -87.58869999426352, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8772", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -58.1438362655927, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8773", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -13.11051526880188, "size": 1, "color": "#762e2e" } }, { "key": "8774", "attributes": { "cluster": 0, "x": -84.61794484645888, "y": 16.334348459868963, "size": 1, "color": "#e36d0" } }, { "key": "8775", "attributes": { "cluster": 0, "x": -48.61794484645867, "y": -91.05280160940129, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8776", "attributes": { "cluster": 1, "x": 9.67507866692199, "y": -13.110515268801866, "size": 2, "color": "#762e2e" } }, { "key": "8777", "attributes": { "cluster": 1, "x": 9.67507866692199, "y": -58.14383626559268, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8778", "attributes": { "cluster": 2, "x": 53.07804381723351, "y": 50.39165523934939, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8779", "attributes": { "cluster": 0, "x": -74.61794484645881, "y": 19.798450075006734, "size": 1, "color": "#e36d0" } }, { "key": "8780", "attributes": { "cluster": 1, "x": 117.67507866692199, "y": -44.287429805041675, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8781", "attributes": { "cluster": 1, "x": 117.67507866692199, "y": -26.966921729352904, "size": 1, "color": "#762e2e" } }, { "key": "8782", "attributes": { "cluster": 0, "x": -74.61794484645871, "y": -91.05280160940134, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8783", "attributes": { "cluster": 2, "x": 39.07804381723348, "y": 112.745484311829, "size": 1, "color": "#4b94db" } }, { "key": "8784", "attributes": { "cluster": 1, "x": 5.675078666921991, "y": -26.966921729352883, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8785", "attributes": { "cluster": 2, "x": -38.921956182766465, "y": 29.607045548522862, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8786", "attributes": { "cluster": 0, "x": -48.61794484645877, "y": 19.798450075006784, "size": 1, "color": "#e36d0" } }, { "key": "8787", "attributes": { "cluster": 0, "x": -114.61794484645874, "y": -56.4117854580238, "size": 2, "color": "#e36d0" } }, { "key": "8788", "attributes": { "cluster": 1, "x": 5.675078666921991, "y": -44.287429805041654, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8789", "attributes": { "cluster": 0, "x": -8.617944846458741, "y": -14.842566076370762, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8790", "attributes": { "cluster": 2, "x": 39.07804381723359, "y": 29.607045548522905, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8791", "attributes": { "cluster": 0, "x": -114.61794484645874, "y": -14.84256607637074, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8792", "attributes": { "cluster": 1, "x": 6.675078666921991, "y": -49.483582227748286, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8793", "attributes": { "cluster": 2, "x": -38.92195618276658, "y": 112.74548431182896, "size": 2, "color": "#4b94db" } }, { "key": "8794", "attributes": { "cluster": 2, "x": -34.92195618276643, "y": 26.142943933385112, "size": 1, "color": "#4b94db" } }, { "key": "8795", "attributes": { "cluster": 0, "x": -8.617944846458741, "y": -56.411785458023814, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8796", "attributes": { "cluster": 1, "x": 116.67507866692199, "y": -21.770769306646272, "size": 1, "color": "#762e2e" } }, { "key": "8797", "attributes": { "cluster": 0, "x": -22.61794484645877, "y": 5.942043614455791, "size": 2, "color": "#e36d0" } }, { "key": "8798", "attributes": { "cluster": 0, "x": -100.61794484645871, "y": -77.19639514885034, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8799", "attributes": { "cluster": 0, "x": -22.617944846458656, "y": -77.19639514885031, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8800", "attributes": { "cluster": 0, "x": -100.61794484645883, "y": 5.9420436144557485, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8801", "attributes": { "cluster": 0, "x": -96.61794484645867, "y": -80.6604967639881, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8802", "attributes": { "cluster": 0, "x": -26.617944846458805, "y": 9.406145229593541, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8803", "attributes": { "cluster": 2, "x": 35.07804381723344, "y": 116.20958592696675, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8804", "attributes": { "cluster": 0, "x": -105.61794484645874, "y": -72.00024272614371, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8805", "attributes": { "cluster": 0, "x": -17.61794484645874, "y": 0.7458911917491449, "size": 2, "color": "#e36d0" } }, { "key": "8806", "attributes": { "cluster": 2, "x": -43.92195618276649, "y": 34.80319797122951, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8807", "attributes": { "cluster": 1, "x": 6.675078666921991, "y": -21.77076930664625, "size": 1, "color": "#762e2e" } }, { "key": "8808", "attributes": { "cluster": 1, "x": 116.67507866692199, "y": -49.48358222774831, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8809", "attributes": { "cluster": 1, "x": 93.6750786669219, "y": 11.138196037162444, "size": 1, "color": "#762e2e" } }, { "key": "8810", "attributes": { "cluster": 1, "x": 29.67507866692207, "y": -82.392547571557, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8811", "attributes": { "cluster": 0, "x": -96.61794484645884, "y": 9.406145229593484, "size": 1, "color": "#e36d0" } }, { "key": "8812", "attributes": { "cluster": 1, "x": 93.6750786669221, "y": -82.39254757155689, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8813", "attributes": { "cluster": 1, "x": 29.675078666921884, "y": 11.138196037162338, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8814", "attributes": { "cluster": 0, "x": -26.617944846458634, "y": -80.66049676398805, "size": 1, "color": "#e36d0" } }, { "key": "8815", "attributes": { "cluster": 0, "x": -17.617944846458684, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8816", "attributes": { "cluster": 1, "x": 16.675078666921983, "y": -70.26819191857483, "size": 2, "color": "#762e2e" } }, { "key": "8817", "attributes": { "cluster": 2, "x": 44.07804381723351, "y": 107.54933188912236, "size": 2, "color": "#4b94db" } }, { "key": "8818", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": -0.9861596158197301, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8819", "attributes": { "cluster": 2, "x": -34.9219561827666, "y": 116.2095859269667, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8820", "attributes": { "cluster": 2, "x": 35.07804381723361, "y": 26.14294393338517, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8821", "attributes": { "cluster": 1, "x": 16.675078666921934, "y": -0.9861596158197585, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8822", "attributes": { "cluster": 1, "x": 106.67507866692205, "y": -70.2681919185748, "size": 2, "color": "#762e2e" } }, { "key": "8823", "attributes": { "cluster": 0, "x": -105.6179448464588, "y": 0.7458911917491307, "size": 2, "color": "#e36d0" } }, { "key": "8824", "attributes": { "cluster": 1, "x": 84.67507866692193, "y": 16.334348459869062, "size": 1, "color": "#762e2e" } }, { "key": "8825", "attributes": { "cluster": 2, "x": 44.078043817233564, "y": 34.80319797122952, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "8826", "attributes": { "cluster": 2, "x": -43.92195618276655, "y": 107.54933188912234, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8827", "attributes": { "cluster": 0, "x": -117.61794484645874, "y": -33.89512495962839, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8828", "attributes": { "cluster": 1, "x": 38.675078666922055, "y": -87.58869999426362, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8829", "attributes": { "cluster": 2, "x": -55.92195618276649, "y": 72.90831573774483, "size": 2, "color": "#4b94db" } }, { "key": "8830", "attributes": { "cluster": 1, "x": 84.67507866692213, "y": -87.58869999426352, "size": 1, "color": "#762e2e" } }, { "key": "8831", "attributes": { "cluster": 1, "x": 38.67507866692185, "y": 16.334348459868963, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8832", "attributes": { "cluster": 1, "x": 74.67507866692206, "y": -91.05280160940129, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8833", "attributes": { "cluster": 2, "x": 56.07804381723351, "y": 69.44421412260704, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8834", "attributes": { "cluster": 2, "x": 0.07804381723349586, "y": 128.33394157994886, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8835", "attributes": { "cluster": 0, "x": -5.617944846458741, "y": -37.35922657476617, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8836", "attributes": { "cluster": 2, "x": 0.07804381723352281, "y": 14.018588280403016, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8837", "attributes": { "cluster": 0, "x": -61.617944846458755, "y": 21.530500882575637, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8838", "attributes": { "cluster": 2, "x": 57.07804381723351, "y": 67.71216331503817, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8839", "attributes": { "cluster": 2, "x": 57.07804381723351, "y": 74.64036654531367, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8840", "attributes": { "cluster": 2, "x": -56.92195618276649, "y": 74.6403665453137, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8841", "attributes": { "cluster": 2, "x": -56.92195618276649, "y": 67.7121633150382, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8842", "attributes": { "cluster": 0, "x": -61.61794484645873, "y": -92.7848524169702, "size": 1, "color": "#e36d0" } }, { "key": "8843", "attributes": { "cluster": 0, "x": -4.617944846458741, "y": -39.09127738233504, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "8844", "attributes": { "cluster": 0, "x": -4.617944846458741, "y": -32.16307415205954, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8845", "attributes": { "cluster": 2, "x": -1.9219561827664915, "y": 14.018588280403016, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8846", "attributes": { "cluster": 1, "x": 48.67507866692192, "y": 19.798450075006734, "size": 1, "color": "#762e2e" } }, { "key": "8847", "attributes": { "cluster": 1, "x": 48.67507866692202, "y": -91.05280160940134, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "8848", "attributes": { "cluster": 0, "x": -118.61794484645874, "y": -32.163074152059515, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8849", "attributes": { "cluster": 1, "x": 74.67507866692196, "y": 19.798450075006784, "size": 1, "color": "#762e2e" } }, { "key": "8850", "attributes": { "cluster": 1, "x": 8.67507866692199, "y": -56.4117854580238, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8851", "attributes": { "cluster": 2, "x": 2.0780438172335005, "y": 14.018588280403002, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8852", "attributes": { "cluster": 0, "x": -118.61794484645874, "y": -39.09127738233502, "size": 1, "color": "#e36d0" } }, { "key": "8853", "attributes": { "cluster": 0, "x": -63.61794484645874, "y": -92.7848524169702, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8854", "attributes": { "cluster": 1, "x": 114.67507866692199, "y": -14.842566076370762, "size": 1, "color": "#762e2e" } }, { "key": "8855", "attributes": { "cluster": 0, "x": -59.61794484645875, "y": -92.78485241697021, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8856", "attributes": { "cluster": 2, "x": 2.0780438172335103, "y": 128.33394157994886, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8857", "attributes": { "cluster": 2, "x": -1.921956182766482, "y": 128.33394157994886, "size": 3, "color": "#4b94db" } }, { "key": "8858", "attributes": { "cluster": 0, "x": -59.61794484645874, "y": 21.530500882575637, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8859", "attributes": { "cluster": 1, "x": 8.67507866692199, "y": -14.84256607637074, "size": 1, "color": "#762e2e" } }, { "key": "8860", "attributes": { "cluster": 1, "x": 114.67507866692199, "y": -56.411785458023814, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8861", "attributes": { "cluster": 0, "x": -63.617944846458734, "y": 21.53050088257565, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8862", "attributes": { "cluster": 1, "x": 100.67507866692196, "y": 5.942043614455791, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8863", "attributes": { "cluster": 0, "x": -115.61794484645874, "y": -54.67973465045492, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8864", "attributes": { "cluster": 0, "x": -7.617944846458741, "y": -16.57461688393964, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8865", "attributes": { "cluster": 2, "x": -53.92195618276649, "y": 52.123706046918294, "size": 2, "color": "#4b94db" } }, { "key": "8866", "attributes": { "cluster": 2, "x": 54.07804381723351, "y": 90.22882381343356, "size": 2, "color": "#4b94db" } }, { "key": "8867", "attributes": { "cluster": 0, "x": -115.61794484645874, "y": -16.574616883939623, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8868", "attributes": { "cluster": 0, "x": -7.617944846458741, "y": -54.67973465045493, "size": 1, "color": "#e36d0" } }, { "key": "8869", "attributes": { "cluster": 2, "x": -53.92195618276649, "y": 90.22882381343359, "size": 2, "color": "#4b94db" } }, { "key": "8870", "attributes": { "cluster": 0, "x": -57.61794484645874, "y": 21.530500882575637, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8871", "attributes": { "cluster": 1, "x": 22.67507866692202, "y": -77.19639514885034, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "8872", "attributes": { "cluster": 2, "x": 54.07804381723351, "y": 52.12370604691827, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8873", "attributes": { "cluster": 1, "x": 100.67507866692208, "y": -77.19639514885031, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8874", "attributes": { "cluster": 0, "x": -65.61794484645874, "y": -92.7848524169702, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "8875", "attributes": { "cluster": 0, "x": -57.61794484645873, "y": -92.78485241697021, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8876", "attributes": { "cluster": 1, "x": 22.675078666921905, "y": 5.9420436144557485, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8877", "attributes": { "cluster": 1, "x": 26.675078666922055, "y": -80.6604967639881, "size": 1, "color": "#762e2e" } }, { "key": "8878", "attributes": { "cluster": 2, "x": 4.078043817233506, "y": 128.33394157994886, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8879", "attributes": { "cluster": 2, "x": -3.921956182766487, "y": 14.018588280403016, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8880", "attributes": { "cluster": 0, "x": -65.61794484645876, "y": 21.530500882575645, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "8881", "attributes": { "cluster": 0, "x": -117.61794484645874, "y": -47.75153142017941, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8882", "attributes": { "cluster": 0, "x": -5.617944846458741, "y": -23.502820114215147, "size": 1, "color": "#e36d0" } }, { "key": "8883", "attributes": { "cluster": 1, "x": 96.67507866692193, "y": 9.406145229593541, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8884", "attributes": { "cluster": 1, "x": 17.67507866692199, "y": -72.00024272614371, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "8885", "attributes": { "cluster": 0, "x": -117.61794484645874, "y": -23.502820114215126, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8886", "attributes": { "cluster": 2, "x": 4.078043817233524, "y": 14.018588280403009, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8887", "attributes": { "cluster": 0, "x": -5.617944846458741, "y": -47.75153142017943, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8888", "attributes": { "cluster": 1, "x": 105.67507866692199, "y": 0.7458911917491449, "size": 1, "color": "#762e2e" } }, { "key": "8889", "attributes": { "cluster": 2, "x": -3.921956182766505, "y": 128.33394157994886, "size": 2, "color": "#4b94db" } }, { "key": "8890", "attributes": { "cluster": 2, "x": -55.92195618276649, "y": 59.0519092771938, "size": 2, "color": "#4b94db" } }, { "key": "8891", "attributes": { "cluster": 2, "x": 56.07804381723351, "y": 83.30062058315806, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8892", "attributes": { "cluster": 1, "x": 26.675078666921884, "y": 9.406145229593484, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8893", "attributes": { "cluster": 2, "x": -55.92195618276649, "y": 83.30062058315808, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8894", "attributes": { "cluster": 2, "x": 56.07804381723351, "y": 59.05190927719378, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "8895", "attributes": { "cluster": 1, "x": 96.6750786669221, "y": -80.66049676398805, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8896", "attributes": { "cluster": 1, "x": 105.67507866692205, "y": -72.00024272614368, "size": 1, "color": "#762e2e" } }, { "key": "8897", "attributes": { "cluster": 1, "x": 17.675078666921934, "y": 0.7458911917491307, "size": 3, "color": "#762e2e" } }, { "key": "8898", "attributes": { "cluster": 2, "x": -19.921956182766618, "y": 124.86983996481106, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8899", "attributes": { "cluster": 1, "x": 5.675078666921991, "y": -33.89512495962839, "size": 2, "color": "#762e2e" } }, { "key": "8900", "attributes": { "cluster": 2, "x": 20.078043817233638, "y": 17.48268989554081, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8901", "attributes": { "cluster": 2, "x": 20.07804381723346, "y": 124.86983996481115, "size": 1, "color": "#4b94db" } }, { "key": "8902", "attributes": { "cluster": 1, "x": 117.67507866692199, "y": -37.35922657476617, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8903", "attributes": { "cluster": 0, "x": -81.61794484645887, "y": 18.066399267437845, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8904", "attributes": { "cluster": 1, "x": 61.675078666921976, "y": 21.530500882575637, "size": 1, "color": "#762e2e" } }, { "key": "8905", "attributes": { "cluster": 0, "x": -41.61794484645861, "y": -89.3207508018324, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8906", "attributes": { "cluster": 1, "x": 61.675078666922005, "y": -92.7848524169702, "size": 1, "color": "#762e2e" } }, { "key": "8907", "attributes": { "cluster": 1, "x": 118.67507866692199, "y": -39.09127738233504, "size": 1, "color": "#762e2e" } }, { "key": "8908", "attributes": { "cluster": 2, "x": -19.92195618276644, "y": 17.482689895540723, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8909", "attributes": { "cluster": 1, "x": 118.67507866692199, "y": -32.16307415205954, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8910", "attributes": { "cluster": 1, "x": 4.675078666921991, "y": -32.163074152059515, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8911", "attributes": { "cluster": 2, "x": 15.078043817233599, "y": 15.750639087971926, "size": 1, "color": "#4b94db" } }, { "key": "8912", "attributes": { "cluster": 0, "x": -41.61794484645879, "y": 18.06639926743793, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8913", "attributes": { "cluster": 0, "x": -81.6179448464587, "y": -89.32075080183249, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8914", "attributes": { "cluster": 2, "x": -14.921956182766582, "y": 126.60189077237993, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "8915", "attributes": { "cluster": 2, "x": -14.921956182766472, "y": 15.750639087971855, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "8916", "attributes": { "cluster": 2, "x": 15.078043817233489, "y": 126.60189077238002, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8917", "attributes": { "cluster": 0, "x": -46.61794484645865, "y": -91.05280160940129, "size": 2, "color": "#e36d0" } }, { "key": "8918", "attributes": { "cluster": 0, "x": -76.61794484645883, "y": 19.798450075006727, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8919", "attributes": { "cluster": 0, "x": -76.61794484645873, "y": -91.05280160940136, "size": 2, "color": "#e36d0" } }, { "key": "8920", "attributes": { "cluster": 0, "x": -46.61794484645876, "y": 19.798450075006798, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8921", "attributes": { "cluster": 1, "x": 4.675078666921991, "y": -39.09127738233502, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8922", "attributes": { "cluster": 1, "x": 59.67507866692199, "y": -92.7848524169702, "size": 1, "color": "#762e2e" } }, { "key": "8923", "attributes": { "cluster": 1, "x": 63.67507866692198, "y": -92.78485241697021, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8924", "attributes": { "cluster": 2, "x": -42.92195618276649, "y": 33.07114716366063, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8925", "attributes": { "cluster": 0, "x": -104.61794484645874, "y": -73.73229353371258, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8926", "attributes": { "cluster": 1, "x": 63.67507866692199, "y": 21.530500882575637, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8927", "attributes": { "cluster": 0, "x": -18.61794484645874, "y": 2.47794199931802, "size": 1, "color": "#e36d0" } }, { "key": "8928", "attributes": { "cluster": 0, "x": -104.61794484645881, "y": 2.4779419993179914, "size": 1, "color": "#e36d0" } }, { "key": "8929", "attributes": { "cluster": 2, "x": 43.07804381723351, "y": 109.28138269669122, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8930", "attributes": { "cluster": 2, "x": -42.921956182766564, "y": 109.2813826966912, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8931", "attributes": { "cluster": 0, "x": -18.61794484645867, "y": -73.73229353371255, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8932", "attributes": { "cluster": 1, "x": 59.675078666922, "y": 21.53050088257565, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8933", "attributes": { "cluster": 1, "x": 7.675078666921991, "y": -54.67973465045492, "size": 2, "color": "#762e2e" } }, { "key": "8934", "attributes": { "cluster": 1, "x": 115.67507866692199, "y": -16.57461688393964, "size": 2, "color": "#762e2e" } }, { "key": "8935", "attributes": { "cluster": 2, "x": 43.07804381723358, "y": 33.07114716366066, "size": 2, "color": "#4b94db" } }, { "key": "8936", "attributes": { "cluster": 1, "x": 7.675078666921991, "y": -16.574616883939623, "size": 1, "color": "#762e2e" } }, { "key": "8937", "attributes": { "cluster": 2, "x": -5.921956182766529, "y": 128.33394157994886, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8938", "attributes": { "cluster": 0, "x": -67.61794484645878, "y": 21.53050088257565, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8939", "attributes": { "cluster": 0, "x": -55.617944846458705, "y": -92.78485241697021, "size": 2, "color": "#e36d0" } }, { "key": "8940", "attributes": { "cluster": 0, "x": -55.61794484645871, "y": 21.53050088257565, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8941", "attributes": { "cluster": 1, "x": 115.67507866692199, "y": -54.67973465045493, "size": 1, "color": "#762e2e" } }, { "key": "8942", "attributes": { "cluster": 2, "x": 6.078043817233548, "y": 14.018588280403002, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "8943", "attributes": { "cluster": 1, "x": 65.67507866692199, "y": 21.530500882575637, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8944", "attributes": { "cluster": 1, "x": 57.67507866692199, "y": -92.7848524169702, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8945", "attributes": { "cluster": 1, "x": 65.675078666922, "y": -92.78485241697021, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8946", "attributes": { "cluster": 2, "x": 6.078043817233538, "y": 128.33394157994886, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8947", "attributes": { "cluster": 0, "x": -67.61794484645877, "y": -92.78485241697021, "size": 1, "color": "#e36d0" } }, { "key": "8948", "attributes": { "cluster": 0, "x": -4.617944846458741, "y": -42.5553789974728, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8949", "attributes": { "cluster": 0, "x": -4.617944846458741, "y": -28.69897253692178, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8950", "attributes": { "cluster": 2, "x": -5.921956182766519, "y": 14.018588280403002, "size": 3.3333333333333335, "color": "#4b94db" } }, { "key": "8951", "attributes": { "cluster": 0, "x": -118.61794484645874, "y": -28.698972536921758, "size": 2, "color": "#e36d0" } }, { "key": "8952", "attributes": { "cluster": 0, "x": -118.61794484645874, "y": -42.55537899747278, "size": 2, "color": "#e36d0" } }, { "key": "8953", "attributes": { "cluster": 2, "x": 57.07804381723351, "y": 64.24806169990042, "size": 2, "color": "#4b94db" } }, { "key": "8954", "attributes": { "cluster": 2, "x": 57.07804381723351, "y": 78.10446816045143, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8955", "attributes": { "cluster": 1, "x": 57.675078666921976, "y": 21.530500882575645, "size": 3, "color": "#762e2e" } }, { "key": "8956", "attributes": { "cluster": 2, "x": -56.92195618276649, "y": 78.10446816045145, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8957", "attributes": { "cluster": 2, "x": -56.92195618276649, "y": 64.24806169990043, "size": 1, "color": "#4b94db" } }, { "key": "8958", "attributes": { "cluster": 0, "x": -99.61794484645868, "y": -78.92844595641924, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8959", "attributes": { "cluster": 1, "x": 5.675078666921991, "y": -47.75153142017941, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8960", "attributes": { "cluster": 1, "x": 117.67507866692199, "y": -23.502820114215147, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8961", "attributes": { "cluster": 2, "x": -37.921956182766436, "y": 27.874994740953973, "size": 1, "color": "#4b94db" } }, { "key": "8962", "attributes": { "cluster": 2, "x": 38.07804381723345, "y": 114.47753511939788, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8963", "attributes": { "cluster": 0, "x": -23.617944846458798, "y": 7.67409442202468, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "8964", "attributes": { "cluster": 2, "x": -37.92195618276658, "y": 114.47753511939783, "size": 1, "color": "#4b94db" } }, { "key": "8965", "attributes": { "cluster": 2, "x": 38.07804381723359, "y": 27.87499474095403, "size": 1, "color": "#4b94db" } }, { "key": "8966", "attributes": { "cluster": 2, "x": -28.921956182766603, "y": 119.67368754210439, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8967", "attributes": { "cluster": 1, "x": 5.675078666921991, "y": -23.502820114215126, "size": 2, "color": "#762e2e" } }, { "key": "8968", "attributes": { "cluster": 0, "x": -99.61794484645883, "y": 7.674094422024623, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8969", "attributes": { "cluster": 0, "x": -23.617944846458656, "y": -78.92844595641918, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8970", "attributes": { "cluster": 1, "x": 117.67507866692199, "y": -47.75153142017943, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8971", "attributes": { "cluster": 1, "x": 41.67507866692186, "y": 18.066399267437845, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8972", "attributes": { "cluster": 1, "x": 81.67507866692212, "y": -89.3207508018324, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "8973", "attributes": { "cluster": 2, "x": 29.078043817233624, "y": 22.678842318247476, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8974", "attributes": { "cluster": 1, "x": 81.67507866692193, "y": 18.06639926743793, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "8975", "attributes": { "cluster": 2, "x": 29.078043817233418, "y": 119.67368754210455, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8976", "attributes": { "cluster": 1, "x": 41.67507866692204, "y": -89.32075080183249, "size": 2, "color": "#762e2e" } }, { "key": "8977", "attributes": { "cluster": 1, "x": 76.67507866692208, "y": -91.05280160940129, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8978", "attributes": { "cluster": 1, "x": 46.6750786669219, "y": 19.798450075006727, "size": 1, "color": "#762e2e" } }, { "key": "8979", "attributes": { "cluster": 0, "x": -90.61794484645885, "y": 12.870246844731177, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8980", "attributes": { "cluster": 2, "x": -28.921956182766397, "y": 22.678842318247327, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "8981", "attributes": { "cluster": 0, "x": -32.61794484645863, "y": -84.12459837912573, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8982", "attributes": { "cluster": 1, "x": 46.67507866692201, "y": -91.05280160940136, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8983", "attributes": { "cluster": 2, "x": 55.07804381723351, "y": 88.4967730058647, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8984", "attributes": { "cluster": 1, "x": 76.67507866692198, "y": 19.798450075006798, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "8985", "attributes": { "cluster": 0, "x": -32.61794484645883, "y": 12.870246844731327, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "8986", "attributes": { "cluster": 2, "x": -54.92195618276649, "y": 53.85575685448717, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8987", "attributes": { "cluster": 0, "x": -90.61794484645864, "y": -84.12459837912589, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8988", "attributes": { "cluster": 1, "x": 18.67507866692199, "y": -73.73229353371258, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8989", "attributes": { "cluster": 0, "x": -6.617944846458741, "y": -18.30666769150852, "size": 2, "color": "#e36d0" } }, { "key": "8990", "attributes": { "cluster": 0, "x": -116.61794484645874, "y": -52.947683842886036, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "8991", "attributes": { "cluster": 1, "x": 104.67507866692199, "y": 2.47794199931802, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8992", "attributes": { "cluster": 2, "x": 55.07804381723352, "y": 53.855756854487154, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "8993", "attributes": { "cluster": 1, "x": 18.67507866692192, "y": 2.4779419993179914, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "8994", "attributes": { "cluster": 2, "x": -54.92195618276651, "y": 88.49677300586471, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8995", "attributes": { "cluster": 2, "x": 31.078043817233624, "y": 22.67884231824744, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "8996", "attributes": { "cluster": 1, "x": 104.67507866692206, "y": -73.73229353371255, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "8997", "attributes": { "cluster": 1, "x": 55.675078666921955, "y": 21.53050088257565, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "8998", "attributes": { "cluster": 2, "x": -30.921956182766603, "y": 119.67368754210443, "size": 1, "color": "#4b94db" } }, { "key": "8999", "attributes": { "cluster": 1, "x": 67.67507866692203, "y": -92.78485241697021, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9000", "attributes": { "cluster": 1, "x": 67.67507866692202, "y": 21.53050088257565, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9001", "attributes": { "cluster": 2, "x": -30.921956182766397, "y": 22.67884231824732, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9002", "attributes": { "cluster": 0, "x": -6.617944846458727, "y": -52.94768384288605, "size": 4.333333333333333, "color": "#e36d0" } }, { "key": "9003", "attributes": { "cluster": 0, "x": -116.61794484645876, "y": -18.306667691508505, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9004", "attributes": { "cluster": 2, "x": 31.078043817233418, "y": 119.67368754210455, "size": 2, "color": "#4b94db" } }, { "key": "9005", "attributes": { "cluster": 2, "x": 8.078043817233517, "y": 128.33394157994888, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9006", "attributes": { "cluster": 1, "x": 55.67507866692196, "y": -92.78485241697021, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9007", "attributes": { "cluster": 2, "x": -7.92195618276654, "y": 128.33394157994886, "size": 1, "color": "#4b94db" } }, { "key": "9008", "attributes": { "cluster": 0, "x": -30.617944846458627, "y": -84.12459837912577, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9009", "attributes": { "cluster": 1, "x": 118.67507866692199, "y": -42.5553789974728, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9010", "attributes": { "cluster": 2, "x": -7.9219561827664995, "y": 14.018588280402987, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9011", "attributes": { "cluster": 2, "x": 8.078043817233558, "y": 14.018588280403016, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9012", "attributes": { "cluster": 1, "x": 118.67507866692199, "y": -28.69897253692178, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9013", "attributes": { "cluster": 1, "x": 4.675078666921991, "y": -28.698972536921758, "size": 1, "color": "#762e2e" } }, { "key": "9014", "attributes": { "cluster": 2, "x": 25.078043817233656, "y": 19.214740703109698, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9015", "attributes": { "cluster": 0, "x": -92.61794484645885, "y": 12.870246844731213, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9016", "attributes": { "cluster": 2, "x": -24.921956182766635, "y": 123.13778915724217, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9017", "attributes": { "cluster": 1, "x": 4.675078666921991, "y": -42.55537899747278, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9018", "attributes": { "cluster": 1, "x": 23.675078666922047, "y": -78.92844595641924, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9019", "attributes": { "cluster": 1, "x": 99.67507866692193, "y": 7.67409442202468, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9020", "attributes": { "cluster": 0, "x": -92.61794484645864, "y": -84.1245983791259, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9021", "attributes": { "cluster": 0, "x": -30.617944846458833, "y": 12.870246844731334, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9022", "attributes": { "cluster": 1, "x": 23.675078666921905, "y": 7.674094422024623, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9023", "attributes": { "cluster": 1, "x": 99.67507866692208, "y": -78.92844595641918, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9024", "attributes": { "cluster": 0, "x": -53.617944846458734, "y": 21.530500882575666, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9025", "attributes": { "cluster": 2, "x": -24.9219561827664, "y": 19.21474070310959, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9026", "attributes": { "cluster": 0, "x": -69.61794484645878, "y": 21.530500882575637, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9027", "attributes": { "cluster": 0, "x": -69.61794484645876, "y": -92.78485241697022, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9028", "attributes": { "cluster": 0, "x": -53.61794484645869, "y": -92.7848524169702, "size": 2, "color": "#e36d0" } }, { "key": "9029", "attributes": { "cluster": 1, "x": 32.67507866692188, "y": 12.870246844731177, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9030", "attributes": { "cluster": 0, "x": -36.6179448464586, "y": -87.58869999426352, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9031", "attributes": { "cluster": 1, "x": 90.6750786669221, "y": -84.12459837912573, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9032", "attributes": { "cluster": 2, "x": 25.07804381723342, "y": 123.13778915724228, "size": 2, "color": "#4b94db" } }, { "key": "9033", "attributes": { "cluster": 2, "x": -33.921956182766415, "y": 24.4108931258162, "size": 1, "color": "#4b94db" } }, { "key": "9034", "attributes": { "cluster": 1, "x": 90.6750786669219, "y": 12.870246844731327, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9035", "attributes": { "cluster": 1, "x": 32.67507866692208, "y": -84.12459837912589, "size": 2, "color": "#762e2e" } }, { "key": "9036", "attributes": { "cluster": 0, "x": -86.61794484645888, "y": 16.334348459868956, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9037", "attributes": { "cluster": 1, "x": 116.67507866692199, "y": -18.30666769150852, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9038", "attributes": { "cluster": 1, "x": 6.675078666921991, "y": -52.947683842886036, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9039", "attributes": { "cluster": 2, "x": 34.07804381723343, "y": 117.94163673453566, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9040", "attributes": { "cluster": 1, "x": 116.675078666922, "y": -52.94768384288605, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9041", "attributes": { "cluster": 0, "x": -86.61794484645866, "y": -87.58869999426362, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9042", "attributes": { "cluster": 0, "x": -36.617944846458826, "y": 16.334348459869062, "size": 1, "color": "#e36d0" } }, { "key": "9043", "attributes": { "cluster": 1, "x": 6.675078666921976, "y": -18.306667691508505, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9044", "attributes": { "cluster": 2, "x": -41.921956182766465, "y": 31.339096356091737, "size": 1, "color": "#4b94db" } }, { "key": "9045", "attributes": { "cluster": 2, "x": 42.07804381723348, "y": 111.01343350426012, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "9046", "attributes": { "cluster": 0, "x": -95.61794484645867, "y": -82.392547571557, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9047", "attributes": { "cluster": 2, "x": -33.92195618276659, "y": 117.94163673453558, "size": 3, "color": "#4b94db" } }, { "key": "9048", "attributes": { "cluster": 0, "x": -27.61794484645882, "y": 11.138196037162452, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9049", "attributes": { "cluster": 1, "x": 92.6750786669221, "y": -84.12459837912577, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "9050", "attributes": { "cluster": 1, "x": 30.675078666921877, "y": 12.870246844731213, "size": 1, "color": "#762e2e" } }, { "key": "9051", "attributes": { "cluster": 0, "x": -103.61794484645871, "y": -75.46434434128147, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9052", "attributes": { "cluster": 2, "x": 34.078043817233606, "y": 24.410893125816287, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9053", "attributes": { "cluster": 0, "x": -19.61794484645877, "y": 4.209992806886916, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9054", "attributes": { "cluster": 2, "x": 42.07804381723358, "y": 31.33909635609176, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9055", "attributes": { "cluster": 2, "x": -41.921956182766564, "y": 111.0134335042601, "size": 1, "color": "#4b94db" } }, { "key": "9056", "attributes": { "cluster": 0, "x": -95.61794484645884, "y": 11.138196037162366, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9057", "attributes": { "cluster": 0, "x": -27.61794484645864, "y": -82.39254757155692, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9058", "attributes": { "cluster": 0, "x": -19.61794484645867, "y": -75.46434434128145, "size": 1, "color": "#e36d0" } }, { "key": "9059", "attributes": { "cluster": 0, "x": -103.61794484645881, "y": 4.209992806886895, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9060", "attributes": { "cluster": 1, "x": 30.675078666922083, "y": -84.1245983791259, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9061", "attributes": { "cluster": 2, "x": -56.92195618276649, "y": 60.78396008476268, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9062", "attributes": { "cluster": 1, "x": 92.6750786669219, "y": 12.870246844731334, "size": 1, "color": "#762e2e" } }, { "key": "9063", "attributes": { "cluster": 1, "x": 69.675078666922, "y": 21.530500882575666, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9064", "attributes": { "cluster": 2, "x": 57.07804381723351, "y": 81.56856977558918, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9065", "attributes": { "cluster": 2, "x": -56.92195618276649, "y": 81.56856977558921, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9066", "attributes": { "cluster": 2, "x": 57.07804381723351, "y": 60.783960084762654, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9067", "attributes": { "cluster": 2, "x": -16.921956182766582, "y": 126.60189077237993, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9068", "attributes": { "cluster": 0, "x": -118.61794484645874, "y": -46.01948061261053, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9069", "attributes": { "cluster": 1, "x": 53.67507866692194, "y": 21.530500882575637, "size": 1, "color": "#762e2e" } }, { "key": "9070", "attributes": { "cluster": 2, "x": 17.078043817233603, "y": 15.75063908797194, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9071", "attributes": { "cluster": 0, "x": -4.617944846458741, "y": -25.23487092178403, "size": 1, "color": "#e36d0" } }, { "key": "9072", "attributes": { "cluster": 0, "x": -118.61794484645874, "y": -25.234870921784, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9073", "attributes": { "cluster": 0, "x": -4.617944846458741, "y": -46.01948061261056, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9074", "attributes": { "cluster": 2, "x": 17.078043817233485, "y": 126.60189077238002, "size": 2, "color": "#4b94db" } }, { "key": "9075", "attributes": { "cluster": 1, "x": 53.67507866692198, "y": -92.78485241697022, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9076", "attributes": { "cluster": 0, "x": -78.61794484645884, "y": 19.798450075006713, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9077", "attributes": { "cluster": 1, "x": 69.67507866692205, "y": -92.7848524169702, "size": 2, "color": "#762e2e" } }, { "key": "9078", "attributes": { "cluster": 2, "x": -16.921956182766465, "y": 15.750639087971848, "size": 3, "color": "#4b94db" } }, { "key": "9079", "attributes": { "cluster": 0, "x": -44.61794484645865, "y": -91.05280160940127, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9080", "attributes": { "cluster": 0, "x": -44.61794484645877, "y": 19.798450075006805, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9081", "attributes": { "cluster": 1, "x": 86.67507866692213, "y": -87.58869999426352, "size": 1, "color": "#762e2e" } }, { "key": "9082", "attributes": { "cluster": 2, "x": 10.078043817233567, "y": 14.01858828040303, "size": 2, "color": "#4b94db" } }, { "key": "9083", "attributes": { "cluster": 0, "x": -78.61794484645871, "y": -91.05280160940137, "size": 1, "color": "#e36d0" } }, { "key": "9084", "attributes": { "cluster": 0, "x": -51.617944846458684, "y": -92.78485241697018, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9085", "attributes": { "cluster": 2, "x": -9.92195618276655, "y": 128.33394157994883, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9086", "attributes": { "cluster": 2, "x": -9.921956182766477, "y": 14.018588280403002, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9087", "attributes": { "cluster": 1, "x": 36.67507866692185, "y": 16.334348459868956, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9088", "attributes": { "cluster": 1, "x": 36.675078666922076, "y": -87.58869999426362, "size": 2, "color": "#762e2e" } }, { "key": "9089", "attributes": { "cluster": 2, "x": 10.078043817233494, "y": 128.33394157994886, "size": 1, "color": "#4b94db" } }, { "key": "9090", "attributes": { "cluster": 1, "x": 86.6750786669219, "y": 16.334348459869062, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "9091", "attributes": { "cluster": 0, "x": -71.6179448464588, "y": 21.530500882575623, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9092", "attributes": { "cluster": 2, "x": -49.9219561827665, "y": 41.73140120150502, "size": 1, "color": "#4b94db" } }, { "key": "9093", "attributes": { "cluster": 2, "x": 50.078043817233514, "y": 100.62112865884684, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9094", "attributes": { "cluster": 1, "x": 27.67507866692207, "y": -82.392547571557, "size": 2, "color": "#762e2e" } }, { "key": "9095", "attributes": { "cluster": 0, "x": -71.61794484645873, "y": -92.78485241697021, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9096", "attributes": { "cluster": 0, "x": -51.617944846458755, "y": 21.53050088257565, "size": 2, "color": "#e36d0" } }, { "key": "9097", "attributes": { "cluster": 0, "x": -111.61794484645876, "y": -65.07203949586818, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9098", "attributes": { "cluster": 0, "x": -11.617944846458734, "y": -6.182312038526373, "size": 3, "color": "#e36d0" } }, { "key": "9099", "attributes": { "cluster": 0, "x": -111.61794484645878, "y": -6.182312038526387, "size": 1, "color": "#e36d0" } }, { "key": "9100", "attributes": { "cluster": 1, "x": 95.6750786669219, "y": 11.138196037162452, "size": 1, "color": "#762e2e" } }, { "key": "9101", "attributes": { "cluster": 0, "x": -11.617944846458705, "y": -65.07203949586817, "size": 1, "color": "#e36d0" } }, { "key": "9102", "attributes": { "cluster": 0, "x": -83.61794484645888, "y": 18.066399267437845, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "9103", "attributes": { "cluster": 1, "x": 19.67507866692202, "y": -75.46434434128147, "size": 3.6666666666666665, "color": "#762e2e" } }, { "key": "9104", "attributes": { "cluster": 2, "x": -49.92195618276653, "y": 100.62112865884683, "size": 2, "color": "#4b94db" } }, { "key": "9105", "attributes": { "cluster": 2, "x": 50.07804381723354, "y": 41.73140120150504, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9106", "attributes": { "cluster": 0, "x": -39.6179448464586, "y": -89.3207508018324, "size": 2, "color": "#e36d0" } }, { "key": "9107", "attributes": { "cluster": 2, "x": -21.921956182766632, "y": 124.86983996481106, "size": 2, "color": "#4b94db" } }, { "key": "9108", "attributes": { "cluster": 1, "x": 103.67507866692196, "y": 4.209992806886916, "size": 1, "color": "#762e2e" } }, { "key": "9109", "attributes": { "cluster": 2, "x": 22.078043817233652, "y": 17.48268989554081, "size": 1, "color": "#4b94db" } }, { "key": "9110", "attributes": { "cluster": 1, "x": 27.67507866692189, "y": 11.138196037162366, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9111", "attributes": { "cluster": 0, "x": -39.61794484645881, "y": 18.06639926743793, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9112", "attributes": { "cluster": 0, "x": -83.61794484645867, "y": -89.32075080183249, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9113", "attributes": { "cluster": 0, "x": -10.617944846458734, "y": -7.914362846095262, "size": 1, "color": "#e36d0" } }, { "key": "9114", "attributes": { "cluster": 1, "x": 95.67507866692209, "y": -82.39254757155692, "size": 2, "color": "#762e2e" } }, { "key": "9115", "attributes": { "cluster": 0, "x": -112.61794484645876, "y": -63.3399886882993, "size": 2, "color": "#e36d0" } }, { "key": "9116", "attributes": { "cluster": 1, "x": 103.67507866692206, "y": -75.46434434128145, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9117", "attributes": { "cluster": 2, "x": 22.078043817233436, "y": 124.86983996481115, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9118", "attributes": { "cluster": 2, "x": -21.921956182766415, "y": 17.482689895540723, "size": 0, "color": "#4b94db" } }, { "key": "9119", "attributes": { "cluster": 1, "x": 19.67507866692192, "y": 4.209992806886895, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9120", "attributes": { "cluster": 0, "x": -10.617944846458713, "y": -63.33998868829931, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9121", "attributes": { "cluster": 0, "x": -112.61794484645877, "y": -7.914362846095251, "size": 2, "color": "#e36d0" } }, { "key": "9122", "attributes": { "cluster": 1, "x": 4.675078666921991, "y": -46.01948061261053, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9123", "attributes": { "cluster": 2, "x": 51.078043817233514, "y": 98.88907785127795, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9124", "attributes": { "cluster": 2, "x": -50.9219561827665, "y": 43.46345200907392, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9125", "attributes": { "cluster": 0, "x": -110.61794484645876, "y": -66.80409030343706, "size": 0, "color": "#e36d0" } }, { "key": "9126", "attributes": { "cluster": 0, "x": -12.617944846458734, "y": -4.450261230957498, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9127", "attributes": { "cluster": 1, "x": 118.67507866692199, "y": -25.23487092178403, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9128", "attributes": { "cluster": 2, "x": 51.078043817233535, "y": 43.463452009073904, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9129", "attributes": { "cluster": 2, "x": -50.92195618276652, "y": 98.88907785127796, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9130", "attributes": { "cluster": 1, "x": 4.675078666921991, "y": -25.234870921784, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9131", "attributes": { "cluster": 2, "x": -48.9219561827665, "y": 39.999350393936155, "size": 3.6666666666666665, "color": "#4b94db" } }, { "key": "9132", "attributes": { "cluster": 0, "x": -110.61794484645878, "y": -4.450261230957512, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9133", "attributes": { "cluster": 1, "x": 118.67507866692199, "y": -46.01948061261056, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9134", "attributes": { "cluster": 0, "x": -12.617944846458691, "y": -66.80409030343705, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9135", "attributes": { "cluster": 2, "x": 49.078043817233514, "y": 102.35317946641571, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9136", "attributes": { "cluster": 2, "x": -48.92195618276654, "y": 102.3531794664157, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9137", "attributes": { "cluster": 2, "x": 49.07804381723356, "y": 39.99935039393617, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9138", "attributes": { "cluster": 1, "x": 44.6750786669219, "y": 19.798450075006713, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9139", "attributes": { "cluster": 2, "x": 56.07804381723351, "y": 86.76472219829581, "size": 1, "color": "#4b94db" } }, { "key": "9140", "attributes": { "cluster": 2, "x": -55.92195618276649, "y": 55.58780766205605, "size": 1, "color": "#4b94db" } }, { "key": "9141", "attributes": { "cluster": 0, "x": -5.617944846458741, "y": -20.038718499077397, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9142", "attributes": { "cluster": 2, "x": 56.07804381723352, "y": 55.587807662056036, "size": 1, "color": "#4b94db" } }, { "key": "9143", "attributes": { "cluster": 2, "x": -55.92195618276651, "y": 86.76472219829583, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9144", "attributes": { "cluster": 1, "x": 78.67507866692208, "y": -91.05280160940127, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9145", "attributes": { "cluster": 0, "x": -117.61794484645874, "y": -51.21563303531716, "size": 2, "color": "#e36d0" } }, { "key": "9146", "attributes": { "cluster": 1, "x": 78.67507866692196, "y": 19.798450075006805, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9147", "attributes": { "cluster": 2, "x": -56.92195618276649, "y": 71.17626493017595, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9148", "attributes": { "cluster": 2, "x": -57.92195618276649, "y": 69.44421412260706, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9149", "attributes": { "cluster": 1, "x": 44.67507866692202, "y": -91.05280160940137, "size": 1, "color": "#762e2e" } }, { "key": "9150", "attributes": { "cluster": 1, "x": 71.67507866692205, "y": -92.78485241697018, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9151", "attributes": { "cluster": 1, "x": 51.675078666921934, "y": 21.530500882575623, "size": 0, "color": "#762e2e" } }, { "key": "9152", "attributes": { "cluster": 2, "x": -51.92195618276651, "y": 45.19550281664278, "size": 2, "color": "#4b94db" } }, { "key": "9153", "attributes": { "cluster": 1, "x": 51.675078666922005, "y": -92.78485241697021, "size": 1, "color": "#762e2e" } }, { "key": "9154", "attributes": { "cluster": 0, "x": -5.617944846458727, "y": -51.215633035317175, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9155", "attributes": { "cluster": 2, "x": 57.07804381723351, "y": 71.17626493017592, "size": 2, "color": "#4b94db" } }, { "key": "9156", "attributes": { "cluster": 0, "x": -117.61794484645876, "y": -20.038718499077383, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9157", "attributes": { "cluster": 2, "x": 58.07804381723351, "y": 72.9083157377448, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9158", "attributes": { "cluster": 2, "x": 52.07804381723352, "y": 97.15702704370909, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9159", "attributes": { "cluster": 2, "x": -51.92195618276652, "y": 97.15702704370908, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9160", "attributes": { "cluster": 0, "x": -118.61794484645874, "y": -35.627175767197265, "size": 0, "color": "#e36d0" } }, { "key": "9161", "attributes": { "cluster": 1, "x": 71.67507866692198, "y": 21.53050088257565, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9162", "attributes": { "cluster": 1, "x": 11.675078666921983, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9163", "attributes": { "cluster": 0, "x": -119.61794484645874, "y": -37.35922657476615, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9164", "attributes": { "cluster": 0, "x": -113.61794484645876, "y": -61.60793788073043, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9165", "attributes": { "cluster": 0, "x": -4.617944846458741, "y": -35.62717576719729, "size": 2, "color": "#e36d0" } }, { "key": "9166", "attributes": { "cluster": 2, "x": 52.078043817233535, "y": 45.19550281664279, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9167", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -6.182312038526373, "size": 1, "color": "#762e2e" } }, { "key": "9168", "attributes": { "cluster": 0, "x": -3.617944846458741, "y": -33.89512495962841, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9169", "attributes": { "cluster": 1, "x": 11.675078666921955, "y": -6.182312038526387, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9170", "attributes": { "cluster": 2, "x": 48.078043817233514, "y": 104.08523027398459, "size": 2, "color": "#4b94db" } }, { "key": "9171", "attributes": { "cluster": 0, "x": -9.617944846458727, "y": -9.646413653664126, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9172", "attributes": { "cluster": 2, "x": -47.9219561827665, "y": 38.26729958636727, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9173", "attributes": { "cluster": 1, "x": 111.67507866692202, "y": -65.07203949586817, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9174", "attributes": { "cluster": 1, "x": 39.67507866692185, "y": 18.066399267437845, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9175", "attributes": { "cluster": 1, "x": 83.67507866692213, "y": -89.3207508018324, "size": 1, "color": "#762e2e" } }, { "key": "9176", "attributes": { "cluster": 2, "x": 48.07804381723355, "y": 38.267299586367265, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9177", "attributes": { "cluster": 1, "x": 83.67507866692192, "y": 18.06639926743793, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9178", "attributes": { "cluster": 2, "x": -47.921956182766536, "y": 104.08523027398459, "size": 1, "color": "#4b94db" } }, { "key": "9179", "attributes": { "cluster": 2, "x": -52.92195618276651, "y": 46.92755362421166, "size": 1, "color": "#4b94db" } }, { "key": "9180", "attributes": { "cluster": 1, "x": 39.67507866692206, "y": -89.32075080183249, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9181", "attributes": { "cluster": 2, "x": 53.07804381723352, "y": 95.4249762361402, "size": 0, "color": "#4b94db" } }, { "key": "9182", "attributes": { "cluster": 0, "x": -113.61794484645877, "y": -9.64641365366413, "size": 2, "color": "#e36d0" } }, { "key": "9183", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -7.914362846095262, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9184", "attributes": { "cluster": 0, "x": -9.617944846458713, "y": -61.60793788073043, "size": 1, "color": "#e36d0" } }, { "key": "9185", "attributes": { "cluster": 1, "x": 10.675078666921983, "y": -63.3399886882993, "size": 1, "color": "#762e2e" } }, { "key": "9186", "attributes": { "cluster": 1, "x": 112.67507866692202, "y": -63.33998868829931, "size": 1, "color": "#762e2e" } }, { "key": "9187", "attributes": { "cluster": 2, "x": -52.92195618276652, "y": 95.42497623614021, "size": 1, "color": "#4b94db" } }, { "key": "9188", "attributes": { "cluster": 0, "x": -13.617944846458734, "y": -2.7182104233886193, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9189", "attributes": { "cluster": 0, "x": -109.61794484645876, "y": -68.53614111100595, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9190", "attributes": { "cluster": 2, "x": 53.078043817233535, "y": 46.927553624211654, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9191", "attributes": { "cluster": 1, "x": 10.675078666921962, "y": -7.914362846095251, "size": 1, "color": "#762e2e" } }, { "key": "9192", "attributes": { "cluster": 0, "x": -13.617944846458698, "y": -68.53614111100595, "size": 1, "color": "#e36d0" } }, { "key": "9193", "attributes": { "cluster": 0, "x": -109.61794484645878, "y": -2.718210423388612, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9194", "attributes": { "cluster": 0, "x": -114.61794484645876, "y": -59.87588707316155, "size": 1, "color": "#e36d0" } }, { "key": "9195", "attributes": { "cluster": 0, "x": -8.617944846458727, "y": -11.378464461233008, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9196", "attributes": { "cluster": 1, "x": 12.675078666921983, "y": -66.80409030343706, "size": 1, "color": "#762e2e" } }, { "key": "9197", "attributes": { "cluster": 2, "x": 58.07804381723351, "y": 65.98011250746929, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9198", "attributes": { "cluster": 2, "x": 58.07804381723351, "y": 76.37241735288255, "size": 2, "color": "#4b94db" } }, { "key": "9199", "attributes": { "cluster": 0, "x": -114.61794484645877, "y": -11.378464461233005, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9200", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -4.450261230957498, "size": 2, "color": "#762e2e" } }, { "key": "9201", "attributes": { "cluster": 0, "x": -8.617944846458713, "y": -59.87588707316155, "size": 2, "color": "#e36d0" } }, { "key": "9202", "attributes": { "cluster": 2, "x": -57.92195618276649, "y": 76.37241735288258, "size": 1, "color": "#4b94db" } }, { "key": "9203", "attributes": { "cluster": 2, "x": -57.92195618276649, "y": 65.98011250746931, "size": 0, "color": "#4b94db" } }, { "key": "9204", "attributes": { "cluster": 2, "x": -36.921956182766436, "y": 26.142943933385112, "size": 1, "color": "#4b94db" } }, { "key": "9205", "attributes": { "cluster": 0, "x": -3.617944846458741, "y": -40.823328189903926, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9206", "attributes": { "cluster": 2, "x": 37.07804381723345, "y": 116.20958592696675, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9207", "attributes": { "cluster": 1, "x": 12.67507866692194, "y": -4.450261230957512, "size": 1, "color": "#762e2e" } }, { "key": "9208", "attributes": { "cluster": 1, "x": 110.67507866692205, "y": -66.80409030343705, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9209", "attributes": { "cluster": 1, "x": 117.67507866692199, "y": -20.038718499077397, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9210", "attributes": { "cluster": 0, "x": -3.617944846458741, "y": -30.43102334449066, "size": 1, "color": "#e36d0" } }, { "key": "9211", "attributes": { "cluster": 1, "x": 5.675078666921991, "y": -51.21563303531716, "size": 1, "color": "#762e2e" } }, { "key": "9212", "attributes": { "cluster": 1, "x": 117.675078666922, "y": -51.215633035317175, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9213", "attributes": { "cluster": 2, "x": -36.92195618276659, "y": 116.2095859269667, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9214", "attributes": { "cluster": 2, "x": 37.078043817233606, "y": 26.142943933385162, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9215", "attributes": { "cluster": 0, "x": -119.61794484645874, "y": -30.431023344490637, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9216", "attributes": { "cluster": 2, "x": 41.07804381723348, "y": 112.74548431182902, "size": 1, "color": "#4b94db" } }, { "key": "9217", "attributes": { "cluster": 2, "x": -40.921956182766465, "y": 29.607045548522855, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9218", "attributes": { "cluster": 2, "x": 47.078043817233514, "y": 105.81728108155346, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9219", "attributes": { "cluster": 2, "x": -46.9219561827665, "y": 36.535248778798405, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9220", "attributes": { "cluster": 0, "x": -119.61794484645874, "y": -40.8233281899039, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9221", "attributes": { "cluster": 2, "x": 47.078043817233564, "y": 36.53524877879841, "size": 2, "color": "#4b94db" } }, { "key": "9222", "attributes": { "cluster": 0, "x": -98.61794484645868, "y": -80.6604967639881, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9223", "attributes": { "cluster": 1, "x": 5.675078666921976, "y": -20.038718499077383, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9224", "attributes": { "cluster": 2, "x": -46.92195618276655, "y": 105.81728108155346, "size": 2, "color": "#4b94db" } }, { "key": "9225", "attributes": { "cluster": 1, "x": 4.675078666921991, "y": -35.627175767197265, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9226", "attributes": { "cluster": 0, "x": -24.617944846458798, "y": 9.406145229593541, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9227", "attributes": { "cluster": 2, "x": 41.07804381723359, "y": 29.607045548522905, "size": 1, "color": "#4b94db" } }, { "key": "9228", "attributes": { "cluster": 0, "x": -98.61794484645884, "y": 9.406145229593491, "size": 2, "color": "#e36d0" } }, { "key": "9229", "attributes": { "cluster": 1, "x": 3.6750786669219906, "y": -37.35922657476615, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9230", "attributes": { "cluster": 2, "x": -40.92195618276658, "y": 112.74548431182896, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9231", "attributes": { "cluster": 2, "x": 12.078043817233572, "y": 14.018588280403051, "size": 1, "color": "#4b94db" } }, { "key": "9232", "attributes": { "cluster": 0, "x": -24.61794484645864, "y": -80.66049676398805, "size": 1, "color": "#e36d0" } }, { "key": "9233", "attributes": { "cluster": 1, "x": 9.675078666921976, "y": -61.60793788073043, "size": 2, "color": "#762e2e" } }, { "key": "9234", "attributes": { "cluster": 2, "x": -11.921956182766555, "y": 128.33394157994883, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9235", "attributes": { "cluster": 0, "x": -20.61794484645877, "y": 5.942043614455798, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9236", "attributes": { "cluster": 0, "x": -102.61794484645871, "y": -77.19639514885036, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9237", "attributes": { "cluster": 1, "x": 118.67507866692199, "y": -35.62717576719729, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9238", "attributes": { "cluster": 1, "x": 119.67507866692199, "y": -33.89512495962841, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "9239", "attributes": { "cluster": 2, "x": -11.921956182766465, "y": 14.018588280402994, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9240", "attributes": { "cluster": 2, "x": 12.078043817233482, "y": 128.33394157994888, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9241", "attributes": { "cluster": 0, "x": -14.617944846458734, "y": -0.9861596158197514, "size": 3, "color": "#e36d0" } }, { "key": "9242", "attributes": { "cluster": 1, "x": 113.675078666922, "y": -9.646413653664126, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9243", "attributes": { "cluster": 2, "x": -53.92195618276649, "y": 48.65960443178054, "size": 1, "color": "#4b94db" } }, { "key": "9244", "attributes": { "cluster": 0, "x": -108.61794484645876, "y": -70.26819191857481, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9245", "attributes": { "cluster": 2, "x": 54.07804381723351, "y": 93.69292542857133, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9246", "attributes": { "cluster": 2, "x": -53.92195618276649, "y": 93.69292542857136, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9247", "attributes": { "cluster": 1, "x": 9.675078666921962, "y": -9.64641365366413, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9248", "attributes": { "cluster": 1, "x": 113.67507866692202, "y": -61.60793788073043, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "9249", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": -2.7182104233886193, "size": 1, "color": "#762e2e" } }, { "key": "9250", "attributes": { "cluster": 2, "x": 54.07804381723351, "y": 48.659604431780515, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9251", "attributes": { "cluster": 2, "x": -18.92195618276659, "y": 126.60189077237992, "size": 1, "color": "#4b94db" } }, { "key": "9252", "attributes": { "cluster": 2, "x": 19.07804381723361, "y": 15.750639087971948, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9253", "attributes": { "cluster": 1, "x": 13.675078666921983, "y": -68.53614111100595, "size": 3.3333333333333335, "color": "#762e2e" } }, { "key": "9254", "attributes": { "cluster": 0, "x": -14.617944846458684, "y": -70.2681919185748, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9255", "attributes": { "cluster": 1, "x": 109.67507866692203, "y": -68.53614111100595, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9256", "attributes": { "cluster": 2, "x": 19.07804381723346, "y": 126.60189077238002, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9257", "attributes": { "cluster": 2, "x": -18.92195618276644, "y": 15.750639087971848, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9258", "attributes": { "cluster": 1, "x": 13.675078666921948, "y": -2.718210423388612, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9259", "attributes": { "cluster": 2, "x": 28.07804381723363, "y": 20.9467915106786, "size": 2, "color": "#4b94db" } }, { "key": "9260", "attributes": { "cluster": 0, "x": -108.6179448464588, "y": -0.9861596158197585, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9261", "attributes": { "cluster": 1, "x": 8.675078666921976, "y": -59.87588707316155, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9262", "attributes": { "cluster": 0, "x": -20.617944846458656, "y": -77.19639514885031, "size": 1, "color": "#e36d0" } }, { "key": "9263", "attributes": { "cluster": 1, "x": 114.675078666922, "y": -11.378464461233008, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9264", "attributes": { "cluster": 0, "x": -102.61794484645883, "y": 5.9420436144557485, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9265", "attributes": { "cluster": 2, "x": -27.92195618276661, "y": 121.40573834967327, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9266", "attributes": { "cluster": 1, "x": 8.675078666921962, "y": -11.378464461233005, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9267", "attributes": { "cluster": 2, "x": -27.921956182766387, "y": 20.94679151067846, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9268", "attributes": { "cluster": 2, "x": 28.078043817233407, "y": 121.40573834967341, "size": 1, "color": "#4b94db" } }, { "key": "9269", "attributes": { "cluster": 2, "x": -45.92195618276649, "y": 34.80319797122951, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9270", "attributes": { "cluster": 2, "x": 46.07804381723351, "y": 107.54933188912236, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9271", "attributes": { "cluster": 1, "x": 114.67507866692202, "y": -59.87588707316155, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "9272", "attributes": { "cluster": 2, "x": -45.92195618276655, "y": 107.54933188912233, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9273", "attributes": { "cluster": 0, "x": -49.61794484645868, "y": -92.78485241697015, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9274", "attributes": { "cluster": 1, "x": 119.67507866692199, "y": -40.823328189903926, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9275", "attributes": { "cluster": 0, "x": -73.61794484645881, "y": 21.530500882575602, "size": 3, "color": "#e36d0" } }, { "key": "9276", "attributes": { "cluster": 2, "x": 46.078043817233564, "y": 34.80319797122954, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9277", "attributes": { "cluster": 1, "x": 119.67507866692199, "y": -30.43102334449066, "size": 2, "color": "#762e2e" } }, { "key": "9278", "attributes": { "cluster": 1, "x": 3.6750786669219906, "y": -30.431023344490637, "size": 1, "color": "#762e2e" } }, { "key": "9279", "attributes": { "cluster": 2, "x": -26.92195618276662, "y": 123.13778915724214, "size": 1, "color": "#4b94db" } }, { "key": "9280", "attributes": { "cluster": 1, "x": 3.6750786669219906, "y": -40.8233281899039, "size": 1, "color": "#762e2e" } }, { "key": "9281", "attributes": { "cluster": 2, "x": 27.07804381723364, "y": 19.21474070310972, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9282", "attributes": { "cluster": 1, "x": 24.675078666922047, "y": -80.6604967639881, "size": 2, "color": "#762e2e" } }, { "key": "9283", "attributes": { "cluster": 1, "x": 98.67507866692193, "y": 9.406145229593541, "size": 2, "color": "#762e2e" } }, { "key": "9284", "attributes": { "cluster": 0, "x": -73.61794484645871, "y": -92.78485241697021, "size": 1, "color": "#e36d0" } }, { "key": "9285", "attributes": { "cluster": 0, "x": -49.61794484645877, "y": 21.53050088257566, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9286", "attributes": { "cluster": 2, "x": 27.078043817233418, "y": 123.13778915724228, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9287", "attributes": { "cluster": 2, "x": -26.921956182766397, "y": 19.214740703109577, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "9288", "attributes": { "cluster": 2, "x": 57.07804381723351, "y": 85.03267139072693, "size": 1, "color": "#4b94db" } }, { "key": "9289", "attributes": { "cluster": 1, "x": 24.67507866692189, "y": 9.406145229593491, "size": 1, "color": "#762e2e" } }, { "key": "9290", "attributes": { "cluster": 0, "x": -115.61794484645874, "y": -58.143836265592675, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9291", "attributes": { "cluster": 0, "x": -7.617944846458741, "y": -13.110515268801883, "size": 1, "color": "#e36d0" } }, { "key": "9292", "attributes": { "cluster": 0, "x": -115.61794484645874, "y": -13.110515268801862, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9293", "attributes": { "cluster": 0, "x": -7.617944846458741, "y": -58.1438362655927, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "9294", "attributes": { "cluster": 2, "x": -56.92195618276649, "y": 57.319858469624926, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9295", "attributes": { "cluster": 1, "x": 98.67507866692209, "y": -80.66049676398805, "size": 1, "color": "#762e2e" } }, { "key": "9296", "attributes": { "cluster": 1, "x": 102.67507866692196, "y": 5.942043614455798, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9297", "attributes": { "cluster": 1, "x": 20.67507866692202, "y": -77.19639514885036, "size": 1, "color": "#762e2e" } }, { "key": "9298", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": -0.9861596158197514, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9299", "attributes": { "cluster": 0, "x": -80.61794484645884, "y": 19.798450075006706, "size": 1, "color": "#e36d0" } }, { "key": "9300", "attributes": { "cluster": 1, "x": 14.675078666921983, "y": -70.26819191857481, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9301", "attributes": { "cluster": 2, "x": 57.07804381723351, "y": 57.319858469624904, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9302", "attributes": { "cluster": 2, "x": -56.92195618276649, "y": 85.03267139072696, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9303", "attributes": { "cluster": 1, "x": 108.67507866692205, "y": -70.2681919185748, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9304", "attributes": { "cluster": 1, "x": 14.675078666921934, "y": -0.9861596158197585, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9305", "attributes": { "cluster": 0, "x": -42.61794484645864, "y": -91.05280160940126, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9306", "attributes": { "cluster": 0, "x": -42.61794484645879, "y": 19.798450075006805, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9307", "attributes": { "cluster": 2, "x": -57.92195618276649, "y": 79.83651896802033, "size": 1, "color": "#4b94db" } }, { "key": "9308", "attributes": { "cluster": 1, "x": 102.67507866692208, "y": -77.19639514885031, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9309", "attributes": { "cluster": 0, "x": -80.6179448464587, "y": -91.05280160940137, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9310", "attributes": { "cluster": 2, "x": -57.92195618276649, "y": 62.51601089233156, "size": 2, "color": "#4b94db" } }, { "key": "9311", "attributes": { "cluster": 1, "x": 20.675078666921905, "y": 5.9420436144557485, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9312", "attributes": { "cluster": 0, "x": -33.61794484645862, "y": -85.85664918669461, "size": 2, "color": "#e36d0" } }, { "key": "9313", "attributes": { "cluster": 1, "x": 73.67507866692205, "y": -92.78485241697015, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9314", "attributes": { "cluster": 1, "x": 49.67507866692193, "y": 21.530500882575602, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9315", "attributes": { "cluster": 1, "x": 49.67507866692202, "y": -92.78485241697021, "size": 1, "color": "#762e2e" } }, { "key": "9316", "attributes": { "cluster": 2, "x": 58.07804381723351, "y": 62.516010892331536, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9317", "attributes": { "cluster": 2, "x": 58.07804381723351, "y": 79.8365189680203, "size": 2, "color": "#4b94db" } }, { "key": "9318", "attributes": { "cluster": 1, "x": 73.67507866692196, "y": 21.53050088257566, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9319", "attributes": { "cluster": 2, "x": 33.078043817233414, "y": 119.67368754210455, "size": 1, "color": "#4b94db" } }, { "key": "9320", "attributes": { "cluster": 0, "x": -89.61794484645887, "y": 14.602297652300052, "size": 1, "color": "#e36d0" } }, { "key": "9321", "attributes": { "cluster": 2, "x": -32.9219561827664, "y": 22.678842318247327, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9322", "attributes": { "cluster": 1, "x": 7.675078666921991, "y": -58.143836265592675, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9323", "attributes": { "cluster": 1, "x": 115.67507866692199, "y": -13.110515268801883, "size": 1, "color": "#762e2e" } }, { "key": "9324", "attributes": { "cluster": 0, "x": -89.61794484645864, "y": -85.85664918669475, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "9325", "attributes": { "cluster": 0, "x": -33.61794484645884, "y": 14.602297652300194, "size": 1, "color": "#e36d0" } }, { "key": "9326", "attributes": { "cluster": 1, "x": 7.675078666921991, "y": -13.110515268801862, "size": 1, "color": "#762e2e" } }, { "key": "9327", "attributes": { "cluster": 1, "x": 115.67507866692199, "y": -58.1438362655927, "size": 1, "color": "#762e2e" } }, { "key": "9328", "attributes": { "cluster": 2, "x": 33.07804381723362, "y": 22.678842318247447, "size": 2, "color": "#4b94db" } }, { "key": "9329", "attributes": { "cluster": 0, "x": -107.61794484645874, "y": -72.00024272614371, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9330", "attributes": { "cluster": 1, "x": 42.67507866692189, "y": 19.798450075006706, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9331", "attributes": { "cluster": 1, "x": 80.67507866692209, "y": -91.05280160940126, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9332", "attributes": { "cluster": 0, "x": -15.617944846458741, "y": 0.7458911917491449, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9333", "attributes": { "cluster": 0, "x": -107.6179448464588, "y": 0.7458911917491164, "size": 2, "color": "#e36d0" } }, { "key": "9334", "attributes": { "cluster": 2, "x": -32.92195618276661, "y": 119.67368754210442, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9335", "attributes": { "cluster": 2, "x": -54.92195618276649, "y": 50.39165523934942, "size": 1, "color": "#4b94db" } }, { "key": "9336", "attributes": { "cluster": 1, "x": 80.67507866692193, "y": 19.798450075006805, "size": 1, "color": "#762e2e" } }, { "key": "9337", "attributes": { "cluster": 0, "x": -15.617944846458684, "y": -72.00024272614368, "size": 1, "color": "#e36d0" } }, { "key": "9338", "attributes": { "cluster": 2, "x": 55.07804381723351, "y": 91.96087462100245, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9339", "attributes": { "cluster": 0, "x": -88.61794484645887, "y": 16.334348459868934, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9340", "attributes": { "cluster": 1, "x": 42.67507866692204, "y": -91.05280160940137, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9341", "attributes": { "cluster": 2, "x": -54.92195618276649, "y": 91.96087462100246, "size": 1, "color": "#4b94db" } }, { "key": "9342", "attributes": { "cluster": 2, "x": 55.07804381723351, "y": 50.3916552393494, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9343", "attributes": { "cluster": 1, "x": 89.6750786669221, "y": -85.85664918669461, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9344", "attributes": { "cluster": 0, "x": -34.61794484645861, "y": -87.5886999942635, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9345", "attributes": { "cluster": 2, "x": -13.921956182766577, "y": 128.33394157994883, "size": 1, "color": "#4b94db" } }, { "key": "9346", "attributes": { "cluster": 2, "x": 14.078043817233594, "y": 14.018588280403051, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9347", "attributes": { "cluster": 1, "x": 33.67507866692187, "y": 14.602297652300052, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9348", "attributes": { "cluster": 2, "x": 14.078043817233473, "y": 128.33394157994888, "size": 1, "color": "#4b94db" } }, { "key": "9349", "attributes": { "cluster": 0, "x": -34.61794484645883, "y": 16.334348459869076, "size": 3, "color": "#e36d0" } }, { "key": "9350", "attributes": { "cluster": 2, "x": -13.921956182766456, "y": 14.018588280402987, "size": 1, "color": "#4b94db" } }, { "key": "9351", "attributes": { "cluster": 2, "x": 24.07804381723366, "y": 17.482689895540823, "size": 1, "color": "#4b94db" } }, { "key": "9352", "attributes": { "cluster": 2, "x": -23.92195618276664, "y": 124.86983996481104, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9353", "attributes": { "cluster": 0, "x": -88.61794484645864, "y": -87.58869999426364, "size": 1, "color": "#e36d0" } }, { "key": "9354", "attributes": { "cluster": 0, "x": -4.617944846458741, "y": -21.770769306646272, "size": 1, "color": "#e36d0" } }, { "key": "9355", "attributes": { "cluster": 1, "x": 33.67507866692209, "y": -85.85664918669475, "size": 1, "color": "#762e2e" } }, { "key": "9356", "attributes": { "cluster": 2, "x": -23.92195618276641, "y": 17.48268989554071, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9357", "attributes": { "cluster": 2, "x": 24.078043817233432, "y": 124.86983996481115, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9358", "attributes": { "cluster": 1, "x": 89.67507866692189, "y": 14.602297652300194, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9359", "attributes": { "cluster": 0, "x": -118.61794484645874, "y": -49.483582227748286, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9360", "attributes": { "cluster": 1, "x": 15.67507866692199, "y": -72.00024272614371, "size": 1, "color": "#762e2e" } }, { "key": "9361", "attributes": { "cluster": 1, "x": 107.67507866692199, "y": 0.7458911917491449, "size": 0, "color": "#762e2e" } }, { "key": "9362", "attributes": { "cluster": 0, "x": -4.617944846458741, "y": -49.48358222774831, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9363", "attributes": { "cluster": 0, "x": -118.61794484645874, "y": -21.77076930664625, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9364", "attributes": { "cluster": 2, "x": -0.9219561827664808, "y": 130.06599238751772, "size": 1, "color": "#4b94db" } }, { "key": "9365", "attributes": { "cluster": 0, "x": -119.61794484645874, "y": -26.966921729352883, "size": 1, "color": "#e36d0" } }, { "key": "9366", "attributes": { "cluster": 0, "x": -119.61794484645874, "y": -44.287429805041654, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9367", "attributes": { "cluster": 0, "x": -3.617944846458741, "y": -44.287429805041675, "size": 1, "color": "#e36d0" } }, { "key": "9368", "attributes": { "cluster": 2, "x": 1.0780438172334994, "y": 12.286537472834127, "size": 1, "color": "#4b94db" } }, { "key": "9369", "attributes": { "cluster": 2, "x": 1.078043817233503, "y": 130.06599238751772, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9370", "attributes": { "cluster": 0, "x": -3.617944846458741, "y": -26.966921729352904, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9371", "attributes": { "cluster": 2, "x": -0.9219561827664844, "y": 12.28653747283414, "size": 2, "color": "#4b94db" } }, { "key": "9372", "attributes": { "cluster": 2, "x": 40.07804381723345, "y": 114.4775351193979, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9373", "attributes": { "cluster": 0, "x": -28.617944846458833, "y": 12.870246844731327, "size": 1, "color": "#e36d0" } }, { "key": "9374", "attributes": { "cluster": 2, "x": -39.921956182766436, "y": 27.874994740953966, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9375", "attributes": { "cluster": 1, "x": 15.675078666921934, "y": 0.7458911917491164, "size": 0, "color": "#762e2e" } }, { "key": "9376", "attributes": { "cluster": 0, "x": -94.61794484645864, "y": -84.12459837912589, "size": 1, "color": "#e36d0" } }, { "key": "9377", "attributes": { "cluster": 1, "x": 107.67507866692205, "y": -72.00024272614368, "size": 1, "color": "#762e2e" } }, { "key": "9378", "attributes": { "cluster": 2, "x": 45.07804381723351, "y": 109.28138269669122, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9379", "attributes": { "cluster": 0, "x": -28.617944846458627, "y": -84.12459837912576, "size": 2, "color": "#e36d0" } }, { "key": "9380", "attributes": { "cluster": 1, "x": 34.67507866692186, "y": 16.334348459868934, "size": 2, "color": "#762e2e" } }, { "key": "9381", "attributes": { "cluster": 1, "x": 88.67507866692212, "y": -87.5886999942635, "size": 1, "color": "#762e2e" } }, { "key": "9382", "attributes": { "cluster": 1, "x": 88.6750786669219, "y": 16.334348459869076, "size": 1, "color": "#762e2e" } }, { "key": "9383", "attributes": { "cluster": 1, "x": 34.67507866692208, "y": -87.58869999426364, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9384", "attributes": { "cluster": 0, "x": -94.61794484645885, "y": 12.870246844731206, "size": 0, "color": "#e36d0" } }, { "key": "9385", "attributes": { "cluster": 2, "x": -44.92195618276649, "y": 33.07114716366063, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9386", "attributes": { "cluster": 2, "x": 45.07804381723358, "y": 33.07114716366065, "size": 1, "color": "#4b94db" } }, { "key": "9387", "attributes": { "cluster": 1, "x": 118.67507866692199, "y": -21.770769306646272, "size": 1, "color": "#762e2e" } }, { "key": "9388", "attributes": { "cluster": 1, "x": 4.675078666921991, "y": -49.483582227748286, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9389", "attributes": { "cluster": 1, "x": 118.67507866692199, "y": -49.48358222774831, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9390", "attributes": { "cluster": 0, "x": -116.61794484645874, "y": -56.4117854580238, "size": 3, "color": "#e36d0" } }, { "key": "9391", "attributes": { "cluster": 1, "x": 4.675078666921991, "y": -21.77076930664625, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9392", "attributes": { "cluster": 2, "x": -44.921956182766564, "y": 109.28138269669122, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9393", "attributes": { "cluster": 1, "x": 3.6750786669219906, "y": -26.966921729352883, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9394", "attributes": { "cluster": 1, "x": 3.6750786669219906, "y": -44.287429805041654, "size": 2, "color": "#762e2e" } }, { "key": "9395", "attributes": { "cluster": 1, "x": 119.67507866692199, "y": -44.287429805041675, "size": 1, "color": "#762e2e" } }, { "key": "9396", "attributes": { "cluster": 1, "x": 119.67507866692199, "y": -26.966921729352904, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9397", "attributes": { "cluster": 1, "x": 94.6750786669219, "y": 12.870246844731327, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9398", "attributes": { "cluster": 0, "x": -6.617944846458741, "y": -14.842566076370762, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9399", "attributes": { "cluster": 0, "x": -116.61794484645874, "y": -14.842566076370744, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9400", "attributes": { "cluster": 1, "x": 28.675078666922083, "y": -84.12459837912589, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9401", "attributes": { "cluster": 1, "x": 94.6750786669221, "y": -84.12459837912576, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9402", "attributes": { "cluster": 2, "x": 40.07804381723359, "y": 27.87499474095403, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9403", "attributes": { "cluster": 1, "x": 28.675078666921877, "y": 12.870246844731206, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9404", "attributes": { "cluster": 0, "x": -6.617944846458741, "y": -56.411785458023814, "size": 1, "color": "#e36d0" } }, { "key": "9405", "attributes": { "cluster": 2, "x": -39.92195618276658, "y": 114.47753511939783, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9406", "attributes": { "cluster": 2, "x": -2.9219561827664893, "y": 12.286537472834134, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "9407", "attributes": { "cluster": 1, "x": 6.675078666921991, "y": -56.4117854580238, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9408", "attributes": { "cluster": 2, "x": 3.078043817233508, "y": 130.06599238751772, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9409", "attributes": { "cluster": 1, "x": 116.67507866692199, "y": -14.842566076370762, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9410", "attributes": { "cluster": 0, "x": -75.61794484645883, "y": 21.530500882575602, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9411", "attributes": { "cluster": 2, "x": -2.9219561827664995, "y": 130.06599238751772, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9412", "attributes": { "cluster": 1, "x": 6.675078666921991, "y": -14.842566076370744, "size": 1, "color": "#762e2e" } }, { "key": "9413", "attributes": { "cluster": 1, "x": 116.67507866692199, "y": -56.411785458023814, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9414", "attributes": { "cluster": 1, "x": 47.675078666921905, "y": 21.530500882575602, "size": 2, "color": "#762e2e" } }, { "key": "9415", "attributes": { "cluster": 2, "x": 3.0780438172335183, "y": 12.28653747283414, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9416", "attributes": { "cluster": 2, "x": 36.07804381723343, "y": 117.94163673453563, "size": 2, "color": "#4b94db" } }, { "key": "9417", "attributes": { "cluster": 1, "x": 75.67507866692208, "y": -92.78485241697015, "size": 2, "color": "#762e2e" } }, { "key": "9418", "attributes": { "cluster": 2, "x": -35.921956182766415, "y": 24.41089312581623, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9419", "attributes": { "cluster": 0, "x": -47.617944846458656, "y": -92.78485241697015, "size": 2, "color": "#e36d0" } }, { "key": "9420", "attributes": { "cluster": 2, "x": 36.078043817233606, "y": 24.410893125816287, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9421", "attributes": { "cluster": 2, "x": -35.92195618276659, "y": 117.94163673453558, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9422", "attributes": { "cluster": 1, "x": 75.67507866692196, "y": 21.530500882575666, "size": 1, "color": "#762e2e" } }, { "key": "9423", "attributes": { "cluster": 0, "x": -47.61794484645878, "y": 21.530500882575666, "size": 1, "color": "#e36d0" } }, { "key": "9424", "attributes": { "cluster": 1, "x": 47.675078666922026, "y": -92.78485241697022, "size": 2, "color": "#762e2e" } }, { "key": "9425", "attributes": { "cluster": 2, "x": -4.921956182766491, "y": 12.28653747283414, "size": 1, "color": "#4b94db" } }, { "key": "9426", "attributes": { "cluster": 0, "x": -75.6179448464587, "y": -92.78485241697022, "size": 2, "color": "#e36d0" } }, { "key": "9427", "attributes": { "cluster": 2, "x": 5.07804381723353, "y": 12.28653747283414, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9428", "attributes": { "cluster": 1, "x": 85.67507866692213, "y": -89.32075080183239, "size": 1, "color": "#762e2e" } }, { "key": "9429", "attributes": { "cluster": 2, "x": 5.078043817233509, "y": 130.06599238751772, "size": 2, "color": "#4b94db" } }, { "key": "9430", "attributes": { "cluster": 0, "x": -37.61794484645859, "y": -89.32075080183239, "size": 1, "color": "#e36d0" } }, { "key": "9431", "attributes": { "cluster": 1, "x": 37.67507866692184, "y": 18.06639926743783, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9432", "attributes": { "cluster": 1, "x": 37.67507866692207, "y": -89.3207508018325, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9433", "attributes": { "cluster": 0, "x": -85.6179448464589, "y": 18.06639926743783, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9434", "attributes": { "cluster": 0, "x": -85.61794484645867, "y": -89.3207508018325, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9435", "attributes": { "cluster": 0, "x": -37.61794484645882, "y": 18.066399267437944, "size": 2, "color": "#e36d0" } }, { "key": "9436", "attributes": { "cluster": 1, "x": 85.6750786669219, "y": 18.066399267437944, "size": 1, "color": "#762e2e" } }, { "key": "9437", "attributes": { "cluster": 2, "x": -4.921956182766511, "y": 130.06599238751772, "size": 2, "color": "#4b94db" } }, { "key": "9438", "attributes": { "cluster": 1, "x": 60.675078666922, "y": 23.262551690144527, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "9439", "attributes": { "cluster": 0, "x": -62.617944846458734, "y": 23.262551690144527, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9440", "attributes": { "cluster": 0, "x": -60.61794484645875, "y": -94.51690322453908, "size": 0, "color": "#e36d0" } }, { "key": "9441", "attributes": { "cluster": 1, "x": 62.67507866692198, "y": -94.51690322453908, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9442", "attributes": { "cluster": 2, "x": -55.92195618276649, "y": 52.123706046918294, "size": 2, "color": "#4b94db" } }, { "key": "9443", "attributes": { "cluster": 2, "x": 56.07804381723351, "y": 90.22882381343356, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9444", "attributes": { "cluster": 2, "x": -57.92195618276649, "y": 72.90831573774483, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9445", "attributes": { "cluster": 0, "x": -60.61794484645875, "y": 23.262551690144512, "size": 2, "color": "#e36d0" } }, { "key": "9446", "attributes": { "cluster": 0, "x": -62.617944846458734, "y": -94.51690322453908, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9447", "attributes": { "cluster": 2, "x": 58.07804381723351, "y": 69.44421412260704, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9448", "attributes": { "cluster": 0, "x": -21.617944846458798, "y": 7.674094422024687, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9449", "attributes": { "cluster": 0, "x": -101.61794484645868, "y": -78.92844595641924, "size": 1, "color": "#e36d0" } }, { "key": "9450", "attributes": { "cluster": 1, "x": 62.67507866692198, "y": 23.262551690144512, "size": 1, "color": "#762e2e" } }, { "key": "9451", "attributes": { "cluster": 2, "x": -55.92195618276649, "y": 90.22882381343359, "size": 2, "color": "#4b94db" } }, { "key": "9452", "attributes": { "cluster": 2, "x": 56.07804381723351, "y": 52.12370604691827, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9453", "attributes": { "cluster": 2, "x": 59.07804381723351, "y": 67.71216331503817, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "9454", "attributes": { "cluster": 1, "x": 60.675078666922, "y": -94.51690322453908, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9455", "attributes": { "cluster": 0, "x": -16.61794484645874, "y": 2.47794199931802, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9456", "attributes": { "cluster": 2, "x": 59.07804381723351, "y": 74.64036654531367, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9457", "attributes": { "cluster": 0, "x": -106.61794484645874, "y": -73.73229353371258, "size": 1, "color": "#e36d0" } }, { "key": "9458", "attributes": { "cluster": 1, "x": 101.67507866692193, "y": 7.674094422024687, "size": 1, "color": "#762e2e" } }, { "key": "9459", "attributes": { "cluster": 1, "x": 21.675078666922047, "y": -78.92844595641924, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9460", "attributes": { "cluster": 0, "x": -16.61794484645867, "y": -73.73229353371256, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9461", "attributes": { "cluster": 0, "x": -106.61794484645881, "y": 2.4779419993180056, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9462", "attributes": { "cluster": 0, "x": -21.617944846458656, "y": -78.92844595641918, "size": 2, "color": "#e36d0" } }, { "key": "9463", "attributes": { "cluster": 2, "x": -58.92195618276649, "y": 74.6403665453137, "size": 1, "color": "#4b94db" } }, { "key": "9464", "attributes": { "cluster": 2, "x": -58.92195618276649, "y": 67.7121633150382, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9465", "attributes": { "cluster": 1, "x": 106.67507866692199, "y": 2.47794199931802, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9466", "attributes": { "cluster": 2, "x": -57.92195618276649, "y": 59.0519092771938, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9467", "attributes": { "cluster": 1, "x": 16.67507866692199, "y": -73.73229353371258, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9468", "attributes": { "cluster": 2, "x": 58.07804381723351, "y": 83.30062058315806, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9469", "attributes": { "cluster": 2, "x": -57.92195618276649, "y": 83.30062058315809, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9470", "attributes": { "cluster": 2, "x": 58.07804381723351, "y": 59.05190927719378, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9471", "attributes": { "cluster": 0, "x": -101.61794484645883, "y": 7.674094422024623, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9472", "attributes": { "cluster": 1, "x": 106.67507866692206, "y": -73.73229353371256, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9473", "attributes": { "cluster": 2, "x": -20.921956182766625, "y": 126.60189077237993, "size": 2, "color": "#4b94db" } }, { "key": "9474", "attributes": { "cluster": 1, "x": 16.67507866692192, "y": 2.4779419993180056, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9475", "attributes": { "cluster": 2, "x": 21.078043817233645, "y": 15.750639087971933, "size": 2, "color": "#4b94db" } }, { "key": "9476", "attributes": { "cluster": 0, "x": -64.61794484645874, "y": -94.51690322453908, "size": 1, "color": "#e36d0" } }, { "key": "9477", "attributes": { "cluster": 0, "x": -58.61794484645874, "y": 23.26255169014452, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9478", "attributes": { "cluster": 2, "x": 7.078043817233516, "y": 130.06599238751775, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9479", "attributes": { "cluster": 1, "x": 101.67507866692208, "y": -78.92844595641918, "size": 2, "color": "#762e2e" } }, { "key": "9480", "attributes": { "cluster": 0, "x": -64.61794484645876, "y": 23.262551690144512, "size": 0, "color": "#e36d0" } }, { "key": "9481", "attributes": { "cluster": 2, "x": -6.9219561827665474, "y": 130.06599238751772, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9482", "attributes": { "cluster": 1, "x": 21.675078666921905, "y": 7.674094422024623, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "9483", "attributes": { "cluster": 1, "x": 58.67507866692199, "y": -94.51690322453908, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9484", "attributes": { "cluster": 1, "x": 64.67507866692199, "y": 23.26255169014452, "size": 1, "color": "#762e2e" } }, { "key": "9485", "attributes": { "cluster": 1, "x": 58.67507866692198, "y": 23.262551690144512, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9486", "attributes": { "cluster": 1, "x": 64.675078666922, "y": -94.51690322453908, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9487", "attributes": { "cluster": 2, "x": -6.921956182766497, "y": 12.286537472834112, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9488", "attributes": { "cluster": 2, "x": 7.078043817233566, "y": 12.286537472834134, "size": 2, "color": "#4b94db" } }, { "key": "9489", "attributes": { "cluster": 2, "x": 21.078043817233446, "y": 126.60189077238002, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9490", "attributes": { "cluster": 0, "x": -58.617944846458734, "y": -94.51690322453908, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9491", "attributes": { "cluster": 0, "x": -25.61794484645882, "y": 11.138196037162423, "size": 1, "color": "#e36d0" } }, { "key": "9492", "attributes": { "cluster": 0, "x": -97.61794484645867, "y": -82.39254757155697, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9493", "attributes": { "cluster": 2, "x": -20.921956182766426, "y": 15.750639087971841, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9494", "attributes": { "cluster": 2, "x": 44.07804381723348, "y": 111.01343350426012, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9495", "attributes": { "cluster": 2, "x": -43.921956182766465, "y": 31.339096356091737, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9496", "attributes": { "cluster": 1, "x": 97.6750786669219, "y": 11.138196037162423, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9497", "attributes": { "cluster": 0, "x": -25.61794484645864, "y": -82.39254757155692, "size": 1, "color": "#e36d0" } }, { "key": "9498", "attributes": { "cluster": 1, "x": 25.67507866692207, "y": -82.39254757155697, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9499", "attributes": { "cluster": 2, "x": 44.07804381723358, "y": 31.33909635609178, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9500", "attributes": { "cluster": 0, "x": -97.61794484645884, "y": 11.138196037162366, "size": 2, "color": "#e36d0" } }, { "key": "9501", "attributes": { "cluster": 0, "x": -66.61794484645874, "y": -94.51690322453908, "size": 2, "color": "#e36d0" } }, { "key": "9502", "attributes": { "cluster": 2, "x": -43.921956182766564, "y": 111.01343350426009, "size": 0, "color": "#4b94db" } }, { "key": "9503", "attributes": { "cluster": 2, "x": 16.078043817233613, "y": 14.018588280403058, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9504", "attributes": { "cluster": 0, "x": -56.61794484645872, "y": -94.51690322453908, "size": 2, "color": "#e36d0" } }, { "key": "9505", "attributes": { "cluster": 1, "x": 97.67507866692209, "y": -82.39254757155692, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9506", "attributes": { "cluster": 1, "x": 25.67507866692189, "y": 11.138196037162366, "size": 1, "color": "#762e2e" } }, { "key": "9507", "attributes": { "cluster": 2, "x": -15.921956182766595, "y": 128.3339415799488, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9508", "attributes": { "cluster": 1, "x": 56.67507866692199, "y": -94.51690322453908, "size": 2, "color": "#762e2e" } }, { "key": "9509", "attributes": { "cluster": 1, "x": 66.675078666922, "y": -94.51690322453908, "size": 1, "color": "#762e2e" } }, { "key": "9510", "attributes": { "cluster": 2, "x": -15.921956182766465, "y": 14.018588280402966, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9511", "attributes": { "cluster": 2, "x": 16.078043817233482, "y": 128.33394157994888, "size": 1, "color": "#4b94db" } }, { "key": "9512", "attributes": { "cluster": 1, "x": 66.67507866692199, "y": 23.262551690144512, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9513", "attributes": { "cluster": 2, "x": -58.92195618276649, "y": 78.10446816045146, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9514", "attributes": { "cluster": 0, "x": -56.61794484645874, "y": 23.262551690144512, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9515", "attributes": { "cluster": 0, "x": -66.61794484645876, "y": 23.262551690144512, "size": 1, "color": "#e36d0" } }, { "key": "9516", "attributes": { "cluster": 0, "x": -117.61794484645874, "y": -54.67973465045492, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9517", "attributes": { "cluster": 2, "x": -58.92195618276649, "y": 64.24806169990043, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9518", "attributes": { "cluster": 1, "x": 56.67507866692197, "y": 23.262551690144512, "size": 1, "color": "#762e2e" } }, { "key": "9519", "attributes": { "cluster": 1, "x": 5.675078666921991, "y": -54.67973465045492, "size": 2, "color": "#762e2e" } }, { "key": "9520", "attributes": { "cluster": 1, "x": 117.67507866692199, "y": -16.57461688393964, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9521", "attributes": { "cluster": 0, "x": -5.617944846458741, "y": -16.57461688393964, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9522", "attributes": { "cluster": 1, "x": 3.6750786669219906, "y": -33.89512495962839, "size": 1, "color": "#762e2e" } }, { "key": "9523", "attributes": { "cluster": 0, "x": -119.61794484645874, "y": -33.89512495962839, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "9524", "attributes": { "cluster": 2, "x": 59.07804381723351, "y": 64.2480616999004, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9525", "attributes": { "cluster": 1, "x": 119.67507866692199, "y": -37.35922657476617, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9526", "attributes": { "cluster": 0, "x": -3.617944846458741, "y": -37.35922657476617, "size": 2, "color": "#e36d0" } }, { "key": "9527", "attributes": { "cluster": 0, "x": -117.61794484645874, "y": -16.57461688393962, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9528", "attributes": { "cluster": 2, "x": 59.07804381723351, "y": 78.10446816045143, "size": 2, "color": "#4b94db" } }, { "key": "9529", "attributes": { "cluster": 2, "x": -8.921956182766557, "y": 130.06599238751772, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9530", "attributes": { "cluster": 1, "x": 5.675078666921991, "y": -16.57461688393962, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9531", "attributes": { "cluster": 1, "x": 117.67507866692199, "y": -54.67973465045494, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9532", "attributes": { "cluster": 2, "x": 9.078043817233574, "y": 12.286537472834148, "size": 1, "color": "#4b94db" } }, { "key": "9533", "attributes": { "cluster": 1, "x": 120.67507866692199, "y": -39.09127738233504, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9534", "attributes": { "cluster": 1, "x": 120.67507866692199, "y": -32.16307415205954, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9535", "attributes": { "cluster": 0, "x": -5.617944846458741, "y": -54.67973465045494, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9536", "attributes": { "cluster": 2, "x": 9.078043817233517, "y": 130.06599238751775, "size": 1, "color": "#4b94db" } }, { "key": "9537", "attributes": { "cluster": 1, "x": 2.6750786669219906, "y": -32.163074152059515, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9538", "attributes": { "cluster": 1, "x": 2.6750786669219906, "y": -39.09127738233502, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9539", "attributes": { "cluster": 0, "x": -2.617944846458741, "y": -39.09127738233504, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9540", "attributes": { "cluster": 2, "x": -8.9219561827665, "y": 12.286537472834112, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9541", "attributes": { "cluster": 0, "x": -2.617944846458741, "y": -32.16307415205954, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9542", "attributes": { "cluster": 1, "x": 3.6750786669219906, "y": -47.751531420179404, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "9543", "attributes": { "cluster": 2, "x": 57.07804381723351, "y": 88.4967730058647, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9544", "attributes": { "cluster": 2, "x": -56.92195618276649, "y": 53.85575685448717, "size": 1, "color": "#4b94db" } }, { "key": "9545", "attributes": { "cluster": 0, "x": -120.61794484645874, "y": -32.163074152059515, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9546", "attributes": { "cluster": 1, "x": 119.67507866692199, "y": -23.50282011421515, "size": 1, "color": "#762e2e" } }, { "key": "9547", "attributes": { "cluster": 2, "x": 57.07804381723352, "y": 53.85575685448716, "size": 1, "color": "#4b94db" } }, { "key": "9548", "attributes": { "cluster": 1, "x": 3.6750786669219906, "y": -23.502820114215126, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9549", "attributes": { "cluster": 1, "x": 119.67507866692199, "y": -47.75153142017943, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9550", "attributes": { "cluster": 1, "x": 40.675078666921856, "y": 19.79845007500672, "size": 1, "color": "#762e2e" } }, { "key": "9551", "attributes": { "cluster": 2, "x": -56.92195618276651, "y": 88.4967730058647, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9552", "attributes": { "cluster": 1, "x": 82.67507866692213, "y": -91.05280160940129, "size": 1, "color": "#762e2e" } }, { "key": "9553", "attributes": { "cluster": 1, "x": 68.67507866692199, "y": 23.26255169014454, "size": 1, "color": "#762e2e" } }, { "key": "9554", "attributes": { "cluster": 1, "x": 54.675078666921934, "y": 23.26255169014452, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9555", "attributes": { "cluster": 1, "x": 54.67507866692198, "y": -94.5169032245391, "size": 1, "color": "#762e2e" } }, { "key": "9556", "attributes": { "cluster": 0, "x": -120.61794484645874, "y": -39.09127738233502, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9557", "attributes": { "cluster": 0, "x": -119.61794484645874, "y": -47.751531420179404, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9558", "attributes": { "cluster": 0, "x": -3.617944846458741, "y": -23.50282011421515, "size": 1, "color": "#e36d0" } }, { "key": "9559", "attributes": { "cluster": 2, "x": -38.921956182766436, "y": 26.142943933385098, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9560", "attributes": { "cluster": 0, "x": -119.61794484645874, "y": -23.502820114215126, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9561", "attributes": { "cluster": 0, "x": -3.617944846458741, "y": -47.75153142017943, "size": 1, "color": "#e36d0" } }, { "key": "9562", "attributes": { "cluster": 0, "x": -82.61794484645887, "y": 19.79845007500672, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9563", "attributes": { "cluster": 0, "x": -40.617944846458606, "y": -91.05280160940129, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9564", "attributes": { "cluster": 0, "x": -54.617944846458734, "y": 23.26255169014454, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9565", "attributes": { "cluster": 2, "x": 39.07804381723345, "y": 116.20958592696677, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9566", "attributes": { "cluster": 1, "x": 68.67507866692205, "y": -94.51690322453908, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9567", "attributes": { "cluster": 2, "x": -38.92195618276659, "y": 116.2095859269667, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9568", "attributes": { "cluster": 2, "x": 39.078043817233606, "y": 26.142943933385162, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9569", "attributes": { "cluster": 2, "x": -29.92195618276661, "y": 121.40573834967326, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9570", "attributes": { "cluster": 2, "x": 30.07804381723363, "y": 20.946791510678608, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9571", "attributes": { "cluster": 0, "x": -68.6179448464588, "y": 23.26255169014452, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9572", "attributes": { "cluster": 1, "x": 82.67507866692193, "y": 19.798450075006812, "size": 1, "color": "#762e2e" } }, { "key": "9573", "attributes": { "cluster": 1, "x": 40.675078666922055, "y": -91.05280160940137, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9574", "attributes": { "cluster": 2, "x": 30.078043817233404, "y": 121.40573834967341, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9575", "attributes": { "cluster": 1, "x": 105.67507866692196, "y": 4.209992806886916, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9576", "attributes": { "cluster": 2, "x": -29.921956182766383, "y": 20.946791510678445, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9577", "attributes": { "cluster": 1, "x": 17.67507866692202, "y": -75.46434434128147, "size": 1, "color": "#762e2e" } }, { "key": "9578", "attributes": { "cluster": 1, "x": 105.67507866692206, "y": -75.46434434128143, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9579", "attributes": { "cluster": 0, "x": -68.61794484645874, "y": -94.5169032245391, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9580", "attributes": { "cluster": 2, "x": 32.07804381723363, "y": 20.946791510678572, "size": 2, "color": "#4b94db" } }, { "key": "9581", "attributes": { "cluster": 2, "x": -31.92195618276661, "y": 121.4057383496733, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "9582", "attributes": { "cluster": 0, "x": -54.617944846458684, "y": -94.51690322453908, "size": 0, "color": "#e36d0" } }, { "key": "9583", "attributes": { "cluster": 1, "x": 17.67507866692192, "y": 4.2099928068868735, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9584", "attributes": { "cluster": 0, "x": -40.617944846458805, "y": 19.798450075006812, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9585", "attributes": { "cluster": 2, "x": -31.921956182766383, "y": 20.946791510678437, "size": 3, "color": "#4b94db" } }, { "key": "9586", "attributes": { "cluster": 0, "x": -82.61794484645867, "y": -91.05280160940137, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9587", "attributes": { "cluster": 1, "x": 77.67507866692209, "y": -92.78485241697015, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9588", "attributes": { "cluster": 0, "x": -17.61794484645877, "y": 4.209992806886916, "size": 2, "color": "#e36d0" } }, { "key": "9589", "attributes": { "cluster": 0, "x": -105.61794484645871, "y": -75.46434434128147, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9590", "attributes": { "cluster": 0, "x": -17.61794484645867, "y": -75.46434434128143, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9591", "attributes": { "cluster": 0, "x": -105.61794484645881, "y": 4.2099928068868735, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9592", "attributes": { "cluster": 1, "x": 45.67507866692189, "y": 21.530500882575595, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9593", "attributes": { "cluster": 0, "x": -45.61794484645864, "y": -92.78485241697015, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9594", "attributes": { "cluster": 1, "x": 45.67507866692202, "y": -92.78485241697024, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9595", "attributes": { "cluster": 0, "x": -77.61794484645884, "y": 21.530500882575595, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9596", "attributes": { "cluster": 0, "x": -77.61794484645871, "y": -92.78485241697024, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "9597", "attributes": { "cluster": 0, "x": -45.61794484645877, "y": 21.530500882575687, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9598", "attributes": { "cluster": 2, "x": 32.0780438172334, "y": 121.40573834967343, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9599", "attributes": { "cluster": 1, "x": 77.67507866692196, "y": 21.530500882575687, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9600", "attributes": { "cluster": 1, "x": 2.6750786669219906, "y": -28.698972536921758, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9601", "attributes": { "cluster": 2, "x": -25.921956182766646, "y": 124.86983996481104, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9602", "attributes": { "cluster": 2, "x": 26.078043817233667, "y": 17.48268989554083, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9603", "attributes": { "cluster": 2, "x": 26.078043817233407, "y": 124.86983996481115, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9604", "attributes": { "cluster": 1, "x": 2.6750786669219906, "y": -42.55537899747278, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9605", "attributes": { "cluster": 1, "x": 120.67507866692199, "y": -42.5553789974728, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9606", "attributes": { "cluster": 0, "x": -120.61794484645874, "y": -28.698972536921758, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9607", "attributes": { "cluster": 1, "x": 120.67507866692199, "y": -28.698972536921783, "size": 1, "color": "#762e2e" } }, { "key": "9608", "attributes": { "cluster": 2, "x": -25.921956182766387, "y": 17.48268989554071, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9609", "attributes": { "cluster": 2, "x": 52.078043817233514, "y": 100.62112865884683, "size": 4.333333333333333, "color": "#4b94db" } }, { "key": "9610", "attributes": { "cluster": 1, "x": 52.67507866692193, "y": 23.262551690144505, "size": 2, "color": "#762e2e" } }, { "key": "9611", "attributes": { "cluster": 1, "x": 70.67507866692206, "y": -94.51690322453906, "size": 1, "color": "#762e2e" } }, { "key": "9612", "attributes": { "cluster": 2, "x": -51.9219561827665, "y": 41.73140120150504, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9613", "attributes": { "cluster": 2, "x": 52.078043817233535, "y": 41.73140120150503, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9614", "attributes": { "cluster": 2, "x": -51.92195618276652, "y": 100.62112865884683, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9615", "attributes": { "cluster": 0, "x": -120.61794484645874, "y": -42.55537899747278, "size": 1, "color": "#e36d0" } }, { "key": "9616", "attributes": { "cluster": 1, "x": 70.675078666922, "y": 23.26255169014454, "size": 2, "color": "#762e2e" } }, { "key": "9617", "attributes": { "cluster": 1, "x": 52.67507866692198, "y": -94.5169032245391, "size": 1, "color": "#762e2e" } }, { "key": "9618", "attributes": { "cluster": 0, "x": -2.617944846458741, "y": -42.5553789974728, "size": 2, "color": "#e36d0" } }, { "key": "9619", "attributes": { "cluster": 0, "x": -2.617944846458741, "y": -28.698972536921783, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9620", "attributes": { "cluster": 0, "x": -70.61794484645881, "y": 23.262551690144505, "size": 2, "color": "#e36d0" } }, { "key": "9621", "attributes": { "cluster": 0, "x": -52.61794484645868, "y": -94.51690322453906, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9622", "attributes": { "cluster": 0, "x": -52.617944846458734, "y": 23.26255169014454, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9623", "attributes": { "cluster": 2, "x": -42.921956182766465, "y": 29.607045548522862, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9624", "attributes": { "cluster": 2, "x": 43.07804381723348, "y": 112.745484311829, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9625", "attributes": { "cluster": 2, "x": -50.9219561827665, "y": 39.99935039393615, "size": 1, "color": "#4b94db" } }, { "key": "9626", "attributes": { "cluster": 2, "x": 51.078043817233514, "y": 102.35317946641572, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9627", "attributes": { "cluster": 0, "x": -70.61794484645876, "y": -94.5169032245391, "size": 2, "color": "#e36d0" } }, { "key": "9628", "attributes": { "cluster": 0, "x": -4.617944846458741, "y": -18.30666769150852, "size": 2, "color": "#e36d0" } }, { "key": "9629", "attributes": { "cluster": 0, "x": -118.61794484645874, "y": -52.947683842886036, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9630", "attributes": { "cluster": 2, "x": -50.92195618276654, "y": 102.3531794664157, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9631", "attributes": { "cluster": 2, "x": 51.07804381723356, "y": 39.99935039393617, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "9632", "attributes": { "cluster": 2, "x": -42.92195618276658, "y": 112.74548431182897, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9633", "attributes": { "cluster": 0, "x": -4.617944846458727, "y": -52.94768384288605, "size": 3.3333333333333335, "color": "#e36d0" } }, { "key": "9634", "attributes": { "cluster": 2, "x": 43.07804381723359, "y": 29.60704554852289, "size": 1, "color": "#4b94db" } }, { "key": "9635", "attributes": { "cluster": 2, "x": 53.07804381723352, "y": 98.88907785127796, "size": 1, "color": "#4b94db" } }, { "key": "9636", "attributes": { "cluster": 1, "x": 118.67507866692199, "y": -18.30666769150852, "size": 1, "color": "#762e2e" } }, { "key": "9637", "attributes": { "cluster": 2, "x": -52.92195618276651, "y": 43.463452009073904, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9638", "attributes": { "cluster": 1, "x": 4.675078666921991, "y": -52.947683842886036, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9639", "attributes": { "cluster": 0, "x": -118.61794484645876, "y": -18.30666769150851, "size": 2, "color": "#e36d0" } }, { "key": "9640", "attributes": { "cluster": 1, "x": 118.675078666922, "y": -52.94768384288605, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9641", "attributes": { "cluster": 2, "x": 53.078043817233535, "y": 43.463452009073904, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9642", "attributes": { "cluster": 2, "x": -52.92195618276652, "y": 98.88907785127796, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9643", "attributes": { "cluster": 1, "x": 4.675078666921976, "y": -18.30666769150851, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9644", "attributes": { "cluster": 2, "x": -34.9219561827664, "y": 22.67884231824732, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9645", "attributes": { "cluster": 0, "x": -100.61794484645868, "y": -80.6604967639881, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9646", "attributes": { "cluster": 0, "x": -22.617944846458798, "y": 9.406145229593555, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9647", "attributes": { "cluster": 0, "x": -100.61794484645884, "y": 9.406145229593491, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9648", "attributes": { "cluster": 0, "x": -22.61794484645864, "y": -80.66049676398805, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9649", "attributes": { "cluster": 2, "x": 35.078043817233414, "y": 119.67368754210455, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9650", "attributes": { "cluster": 2, "x": -49.9219561827665, "y": 38.26729958636727, "size": 1, "color": "#4b94db" } }, { "key": "9651", "attributes": { "cluster": 1, "x": 22.675078666922047, "y": -80.6604967639881, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "9652", "attributes": { "cluster": 2, "x": 50.078043817233514, "y": 104.08523027398459, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "9653", "attributes": { "cluster": 1, "x": 100.67507866692193, "y": 9.406145229593555, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9654", "attributes": { "cluster": 2, "x": -34.92195618276661, "y": 119.67368754210445, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9655", "attributes": { "cluster": 1, "x": 22.67507866692189, "y": 9.406145229593491, "size": 1, "color": "#762e2e" } }, { "key": "9656", "attributes": { "cluster": 1, "x": 100.67507866692209, "y": -80.66049676398805, "size": 1, "color": "#762e2e" } }, { "key": "9657", "attributes": { "cluster": 2, "x": 35.07804381723362, "y": 22.67884231824742, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9658", "attributes": { "cluster": 0, "x": -91.61794484645887, "y": 14.602297652300045, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9659", "attributes": { "cluster": 0, "x": -31.61794484645862, "y": -85.8566491866946, "size": 2, "color": "#e36d0" } }, { "key": "9660", "attributes": { "cluster": 0, "x": -31.617944846458848, "y": 14.602297652300209, "size": 1, "color": "#e36d0" } }, { "key": "9661", "attributes": { "cluster": 2, "x": 50.07804381723355, "y": 38.26729958636728, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9662", "attributes": { "cluster": 1, "x": 31.67507866692187, "y": 14.602297652300045, "size": 1, "color": "#762e2e" } }, { "key": "9663", "attributes": { "cluster": 1, "x": 91.6750786669221, "y": -85.8566491866946, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9664", "attributes": { "cluster": 1, "x": 91.67507866692188, "y": 14.602297652300209, "size": 3, "color": "#762e2e" } }, { "key": "9665", "attributes": { "cluster": 2, "x": -49.921956182766536, "y": 104.08523027398459, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9666", "attributes": { "cluster": 1, "x": 31.675078666922097, "y": -85.85664918669477, "size": 2, "color": "#762e2e" } }, { "key": "9667", "attributes": { "cluster": 1, "x": 93.6750786669221, "y": -85.85664918669464, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9668", "attributes": { "cluster": 2, "x": 11.078043817233587, "y": 12.286537472834162, "size": 1, "color": "#4b94db" } }, { "key": "9669", "attributes": { "cluster": 1, "x": 29.67507866692187, "y": 14.60229765230008, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9670", "attributes": { "cluster": 0, "x": -91.61794484645864, "y": -85.85664918669477, "size": 1, "color": "#e36d0" } }, { "key": "9671", "attributes": { "cluster": 0, "x": -29.61794484645862, "y": -85.85664918669464, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9672", "attributes": { "cluster": 0, "x": -93.61794484645887, "y": 14.60229765230008, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9673", "attributes": { "cluster": 1, "x": 29.675078666922097, "y": -85.85664918669477, "size": 1, "color": "#762e2e" } }, { "key": "9674", "attributes": { "cluster": 2, "x": -10.92195618276657, "y": 130.0659923875177, "size": 2, "color": "#4b94db" } }, { "key": "9675", "attributes": { "cluster": 1, "x": 93.67507866692188, "y": 14.602297652300216, "size": 1, "color": "#762e2e" } }, { "key": "9676", "attributes": { "cluster": 1, "x": 35.675078666921834, "y": 18.066399267437824, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9677", "attributes": { "cluster": 0, "x": -93.61794484645864, "y": -85.85664918669477, "size": 1, "color": "#e36d0" } }, { "key": "9678", "attributes": { "cluster": 1, "x": 87.67507866692215, "y": -89.32075080183239, "size": 2, "color": "#762e2e" } }, { "key": "9679", "attributes": { "cluster": 1, "x": 87.67507866692189, "y": 18.066399267437944, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9680", "attributes": { "cluster": 1, "x": 35.67507866692209, "y": -89.3207508018325, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9681", "attributes": { "cluster": 0, "x": -29.617944846458848, "y": 14.602297652300216, "size": 1, "color": "#e36d0" } }, { "key": "9682", "attributes": { "cluster": 1, "x": 113.67507866692199, "y": -6.1823120385263834, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9683", "attributes": { "cluster": 0, "x": -87.6179448464589, "y": 18.066399267437824, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9684", "attributes": { "cluster": 1, "x": 9.675078666921983, "y": -65.07203949586818, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9685", "attributes": { "cluster": 2, "x": -10.921956182766465, "y": 12.286537472834112, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9686", "attributes": { "cluster": 1, "x": 113.67507866692202, "y": -65.07203949586818, "size": 1, "color": "#762e2e" } }, { "key": "9687", "attributes": { "cluster": 0, "x": -35.617944846458585, "y": -89.32075080183239, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "9688", "attributes": { "cluster": 1, "x": 9.675078666921962, "y": -6.182312038526376, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9689", "attributes": { "cluster": 2, "x": 11.078043817233482, "y": 130.06599238751775, "size": 2, "color": "#4b94db" } }, { "key": "9690", "attributes": { "cluster": 1, "x": 18.67507866692202, "y": -77.19639514885034, "size": 1, "color": "#762e2e" } }, { "key": "9691", "attributes": { "cluster": 0, "x": -35.61794484645884, "y": 18.066399267437944, "size": 1, "color": "#e36d0" } }, { "key": "9692", "attributes": { "cluster": 0, "x": -87.61794484645864, "y": -89.3207508018325, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9693", "attributes": { "cluster": 2, "x": -17.921956182766593, "y": 128.3339415799488, "size": 1, "color": "#4b94db" } }, { "key": "9694", "attributes": { "cluster": 2, "x": 18.078043817233613, "y": 14.018588280403073, "size": 2, "color": "#4b94db" } }, { "key": "9695", "attributes": { "cluster": 0, "x": -9.617944846458734, "y": -6.1823120385263834, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9696", "attributes": { "cluster": 2, "x": 59.07804381723351, "y": 81.56856977558918, "size": 1, "color": "#4b94db" } }, { "key": "9697", "attributes": { "cluster": 0, "x": -113.61794484645876, "y": -65.07203949586818, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9698", "attributes": { "cluster": 1, "x": 104.67507866692196, "y": 5.942043614455791, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9699", "attributes": { "cluster": 0, "x": -9.617944846458713, "y": -65.07203949586818, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9700", "attributes": { "cluster": 2, "x": -58.92195618276649, "y": 60.78396008476268, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9701", "attributes": { "cluster": 1, "x": 10.675078666921983, "y": -66.80409030343706, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9702", "attributes": { "cluster": 2, "x": -17.921956182766454, "y": 14.018588280402966, "size": 1, "color": "#4b94db" } }, { "key": "9703", "attributes": { "cluster": 2, "x": 59.07804381723351, "y": 60.783960084762654, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9704", "attributes": { "cluster": 0, "x": -113.61794484645877, "y": -6.182312038526376, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9705", "attributes": { "cluster": 1, "x": 112.67507866692199, "y": -4.450261230957494, "size": 2, "color": "#762e2e" } }, { "key": "9706", "attributes": { "cluster": 1, "x": 10.67507866692194, "y": -4.450261230957519, "size": 3.6666666666666665, "color": "#762e2e" } }, { "key": "9707", "attributes": { "cluster": 0, "x": -104.61794484645871, "y": -77.19639514885034, "size": 1, "color": "#e36d0" } }, { "key": "9708", "attributes": { "cluster": 1, "x": 112.67507866692205, "y": -66.80409030343704, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9709", "attributes": { "cluster": 2, "x": 18.078043817233475, "y": 128.33394157994888, "size": 2, "color": "#4b94db" } }, { "key": "9710", "attributes": { "cluster": 0, "x": -18.61794484645877, "y": 5.942043614455791, "size": 1, "color": "#e36d0" } }, { "key": "9711", "attributes": { "cluster": 1, "x": 18.675078666921905, "y": 5.942043614455763, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9712", "attributes": { "cluster": 0, "x": -112.61794484645876, "y": -66.80409030343706, "size": 1, "color": "#e36d0" } }, { "key": "9713", "attributes": { "cluster": 1, "x": 104.67507866692208, "y": -77.19639514885031, "size": 1, "color": "#762e2e" } }, { "key": "9714", "attributes": { "cluster": 1, "x": 114.675078666922, "y": -7.914362846095248, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9715", "attributes": { "cluster": 1, "x": 8.675078666921976, "y": -63.339988688299314, "size": 2, "color": "#762e2e" } }, { "key": "9716", "attributes": { "cluster": 0, "x": -10.617944846458734, "y": -4.450261230957494, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9717", "attributes": { "cluster": 0, "x": -112.61794484645878, "y": -4.450261230957519, "size": 1, "color": "#e36d0" } }, { "key": "9718", "attributes": { "cluster": 2, "x": -58.92195618276649, "y": 81.56856977558921, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9719", "attributes": { "cluster": 2, "x": -53.92195618276651, "y": 45.19550281664279, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9720", "attributes": { "cluster": 0, "x": -10.617944846458691, "y": -66.80409030343704, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "9721", "attributes": { "cluster": 0, "x": -104.61794484645883, "y": 5.942043614455763, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9722", "attributes": { "cluster": 2, "x": 54.07804381723352, "y": 97.15702704370908, "size": 2, "color": "#4b94db" } }, { "key": "9723", "attributes": { "cluster": 1, "x": 114.67507866692202, "y": -63.3399886882993, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9724", "attributes": { "cluster": 1, "x": 8.675078666921962, "y": -7.914362846095255, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "9725", "attributes": { "cluster": 1, "x": 26.675078666922083, "y": -84.1245983791259, "size": 2, "color": "#762e2e" } }, { "key": "9726", "attributes": { "cluster": 0, "x": -18.617944846458656, "y": -77.19639514885031, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9727", "attributes": { "cluster": 1, "x": 96.6750786669219, "y": 12.870246844731334, "size": 1, "color": "#762e2e" } }, { "key": "9728", "attributes": { "cluster": 2, "x": -53.92195618276652, "y": 97.15702704370909, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9729", "attributes": { "cluster": 1, "x": 11.675078666921983, "y": -68.53614111100595, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9730", "attributes": { "cluster": 0, "x": -8.617944846458727, "y": -7.914362846095248, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9731", "attributes": { "cluster": 2, "x": 54.078043817233535, "y": 45.19550281664278, "size": 2, "color": "#4b94db" } }, { "key": "9732", "attributes": { "cluster": 1, "x": 111.67507866692199, "y": -2.7182104233886193, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "9733", "attributes": { "cluster": 2, "x": 49.078043817233514, "y": 105.81728108155346, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9734", "attributes": { "cluster": 0, "x": -114.61794484645876, "y": -63.339988688299314, "size": 1, "color": "#e36d0" } }, { "key": "9735", "attributes": { "cluster": 0, "x": -8.617944846458713, "y": -63.3399886882993, "size": 1, "color": "#e36d0" } }, { "key": "9736", "attributes": { "cluster": 1, "x": 26.675078666921877, "y": 12.870246844731234, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9737", "attributes": { "cluster": 0, "x": -114.61794484645877, "y": -7.914362846095255, "size": 1, "color": "#e36d0" } }, { "key": "9738", "attributes": { "cluster": 2, "x": -48.9219561827665, "y": 36.5352487787984, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9739", "attributes": { "cluster": 0, "x": -96.61794484645864, "y": -84.1245983791259, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "9740", "attributes": { "cluster": 0, "x": -26.617944846458833, "y": 12.870246844731334, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9741", "attributes": { "cluster": 2, "x": 49.078043817233564, "y": 36.5352487787984, "size": 0, "color": "#4b94db" } }, { "key": "9742", "attributes": { "cluster": 1, "x": 96.6750786669221, "y": -84.12459837912579, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9743", "attributes": { "cluster": 1, "x": 111.67507866692203, "y": -68.53614111100593, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9744", "attributes": { "cluster": 2, "x": -48.92195618276655, "y": 105.81728108155346, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9745", "attributes": { "cluster": 2, "x": -22.9219561827664, "y": 15.750639087971841, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9746", "attributes": { "cluster": 2, "x": 23.078043817233667, "y": 15.75063908797194, "size": 2, "color": "#4b94db" } }, { "key": "9747", "attributes": { "cluster": 1, "x": 11.675078666921948, "y": -2.7182104233886264, "size": 2, "color": "#762e2e" } }, { "key": "9748", "attributes": { "cluster": 1, "x": 72.67507866692208, "y": -94.51690322453905, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9749", "attributes": { "cluster": 0, "x": -111.61794484645876, "y": -68.53614111100595, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9750", "attributes": { "cluster": 0, "x": -11.617944846458734, "y": -2.7182104233886193, "size": 1, "color": "#e36d0" } }, { "key": "9751", "attributes": { "cluster": 2, "x": 23.07804381723342, "y": 126.60189077238002, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9752", "attributes": { "cluster": 0, "x": -96.61794484645885, "y": 12.870246844731234, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9753", "attributes": { "cluster": 2, "x": -22.921956182766646, "y": 126.60189077237993, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9754", "attributes": { "cluster": 0, "x": -26.617944846458627, "y": -84.12459837912579, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9755", "attributes": { "cluster": 1, "x": 50.67507866692191, "y": 23.26255169014449, "size": 1, "color": "#762e2e" } }, { "key": "9756", "attributes": { "cluster": 1, "x": 50.67507866692202, "y": -94.5169032245391, "size": 2, "color": "#762e2e" } }, { "key": "9757", "attributes": { "cluster": 0, "x": -11.617944846458698, "y": -68.53614111100593, "size": 1, "color": "#e36d0" } }, { "key": "9758", "attributes": { "cluster": 2, "x": -57.92195618276649, "y": 55.58780766205605, "size": 1, "color": "#4b94db" } }, { "key": "9759", "attributes": { "cluster": 0, "x": -111.61794484645878, "y": -2.7182104233886264, "size": 1, "color": "#e36d0" } }, { "key": "9760", "attributes": { "cluster": 2, "x": 58.07804381723351, "y": 86.76472219829581, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9761", "attributes": { "cluster": 2, "x": -57.92195618276651, "y": 86.76472219829583, "size": 2, "color": "#4b94db" } }, { "key": "9762", "attributes": { "cluster": 0, "x": -50.61794484645866, "y": -94.51690322453905, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9763", "attributes": { "cluster": 0, "x": -72.61794484645881, "y": 23.26255169014449, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9764", "attributes": { "cluster": 0, "x": -72.61794484645871, "y": -94.5169032245391, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9765", "attributes": { "cluster": 0, "x": -50.61794484645877, "y": 23.26255169014454, "size": 2, "color": "#e36d0" } }, { "key": "9766", "attributes": { "cluster": 1, "x": 72.67507866692196, "y": 23.26255169014454, "size": 1, "color": "#762e2e" } }, { "key": "9767", "attributes": { "cluster": 2, "x": 58.07804381723352, "y": 55.587807662056036, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "9768", "attributes": { "cluster": 1, "x": 43.67507866692189, "y": 21.53050088257558, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9769", "attributes": { "cluster": 0, "x": -79.61794484645884, "y": 21.53050088257558, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9770", "attributes": { "cluster": 2, "x": 55.07804381723352, "y": 95.4249762361402, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9771", "attributes": { "cluster": 2, "x": -54.92195618276651, "y": 46.92755362421167, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9772", "attributes": { "cluster": 1, "x": 79.67507866692209, "y": -92.78485241697014, "size": 1, "color": "#762e2e" } }, { "key": "9773", "attributes": { "cluster": 0, "x": -43.61794484645864, "y": -92.78485241697014, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9774", "attributes": { "cluster": 0, "x": -2.617944846458741, "y": -25.23487092178403, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9775", "attributes": { "cluster": 1, "x": 120.67507866692199, "y": -25.23487092178403, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9776", "attributes": { "cluster": 0, "x": -120.61794484645874, "y": -46.01948061261053, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9777", "attributes": { "cluster": 1, "x": 2.6750786669219906, "y": -46.01948061261053, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "9778", "attributes": { "cluster": 0, "x": -79.6179448464587, "y": -92.78485241697024, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9779", "attributes": { "cluster": 0, "x": -2.617944846458741, "y": -46.01948061261055, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9780", "attributes": { "cluster": 0, "x": -43.61794484645878, "y": 21.530500882575687, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9781", "attributes": { "cluster": 1, "x": 43.675078666922026, "y": -92.78485241697024, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9782", "attributes": { "cluster": 0, "x": -120.61794484645874, "y": -25.234870921784005, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9783", "attributes": { "cluster": 0, "x": -115.61794484645876, "y": -61.60793788073043, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9784", "attributes": { "cluster": 0, "x": -7.617944846458727, "y": -9.64641365366413, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9785", "attributes": { "cluster": 1, "x": 120.67507866692199, "y": -46.01948061261055, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9786", "attributes": { "cluster": 2, "x": 55.078043817233535, "y": 46.927553624211654, "size": 1, "color": "#4b94db" } }, { "key": "9787", "attributes": { "cluster": 1, "x": 79.67507866692196, "y": 21.530500882575687, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9788", "attributes": { "cluster": 1, "x": 2.6750786669219906, "y": -25.234870921784005, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9789", "attributes": { "cluster": 0, "x": -115.61794484645877, "y": -9.646413653664126, "size": 2, "color": "#e36d0" } }, { "key": "9790", "attributes": { "cluster": 2, "x": -54.92195618276652, "y": 95.42497623614021, "size": 1, "color": "#4b94db" } }, { "key": "9791", "attributes": { "cluster": 1, "x": 7.675078666921976, "y": -61.60793788073043, "size": 1, "color": "#762e2e" } }, { "key": "9792", "attributes": { "cluster": 1, "x": 115.675078666922, "y": -9.64641365366413, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9793", "attributes": { "cluster": 0, "x": -7.6179448464587125, "y": -61.60793788073043, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9794", "attributes": { "cluster": 0, "x": -12.617944846458734, "y": -0.9861596158197443, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9795", "attributes": { "cluster": 1, "x": 7.675078666921962, "y": -9.646413653664126, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9796", "attributes": { "cluster": 1, "x": 115.67507866692202, "y": -61.60793788073043, "size": 2, "color": "#762e2e" } }, { "key": "9797", "attributes": { "cluster": 0, "x": -110.61794484645876, "y": -70.26819191857481, "size": 1, "color": "#e36d0" } }, { "key": "9798", "attributes": { "cluster": 1, "x": 110.67507866692199, "y": -0.9861596158197443, "size": 1, "color": "#762e2e" } }, { "key": "9799", "attributes": { "cluster": 1, "x": 12.675078666921983, "y": -70.26819191857481, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9800", "attributes": { "cluster": 2, "x": -58.92195618276649, "y": 71.17626493017595, "size": 1, "color": "#4b94db" } }, { "key": "9801", "attributes": { "cluster": 1, "x": 110.67507866692205, "y": -70.26819191857481, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9802", "attributes": { "cluster": 2, "x": -59.92195618276649, "y": 69.44421412260706, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9803", "attributes": { "cluster": 0, "x": -12.617944846458684, "y": -70.26819191857481, "size": 1, "color": "#e36d0" } }, { "key": "9804", "attributes": { "cluster": 0, "x": -110.6179448464588, "y": -0.9861596158197443, "size": 2, "color": "#e36d0" } }, { "key": "9805", "attributes": { "cluster": 0, "x": -84.61794484645866, "y": -91.05280160940137, "size": 2, "color": "#e36d0" } }, { "key": "9806", "attributes": { "cluster": 0, "x": -38.617944846458585, "y": -91.05280160940127, "size": 0, "color": "#e36d0" } }, { "key": "9807", "attributes": { "cluster": 1, "x": 12.675078666921934, "y": -0.9861596158197443, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9808", "attributes": { "cluster": 1, "x": 38.675078666922076, "y": -91.05280160940137, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9809", "attributes": { "cluster": 0, "x": -38.617944846458826, "y": 19.798450075006812, "size": 1, "color": "#e36d0" } }, { "key": "9810", "attributes": { "cluster": 1, "x": 84.67507866692215, "y": -91.05280160940127, "size": 2, "color": "#762e2e" } }, { "key": "9811", "attributes": { "cluster": 1, "x": 84.6750786669219, "y": 19.798450075006812, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9812", "attributes": { "cluster": 2, "x": 59.07804381723351, "y": 71.17626493017592, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9813", "attributes": { "cluster": 0, "x": -84.6179448464589, "y": 19.798450075006713, "size": 2, "color": "#e36d0" } }, { "key": "9814", "attributes": { "cluster": 1, "x": 38.675078666921834, "y": 19.798450075006713, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9815", "attributes": { "cluster": 1, "x": 3.6750786669219906, "y": -51.21563303531716, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9816", "attributes": { "cluster": 2, "x": 60.07804381723351, "y": 72.9083157377448, "size": 0, "color": "#4b94db" } }, { "key": "9817", "attributes": { "cluster": 2, "x": 48.07804381723351, "y": 107.54933188912234, "size": 1, "color": "#4b94db" } }, { "key": "9818", "attributes": { "cluster": 2, "x": -47.92195618276649, "y": 34.80319797122952, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9819", "attributes": { "cluster": 1, "x": 119.67507866692199, "y": -20.038718499077397, "size": 1, "color": "#762e2e" } }, { "key": "9820", "attributes": { "cluster": 0, "x": -119.61794484645874, "y": -51.21563303531716, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9821", "attributes": { "cluster": 2, "x": 48.078043817233564, "y": 34.80319797122953, "size": 1, "color": "#4b94db" } }, { "key": "9822", "attributes": { "cluster": 2, "x": -47.92195618276655, "y": 107.54933188912233, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9823", "attributes": { "cluster": 0, "x": -3.617944846458741, "y": -20.038718499077397, "size": 1, "color": "#e36d0" } }, { "key": "9824", "attributes": { "cluster": 2, "x": -37.92195618276641, "y": 24.410893125816223, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9825", "attributes": { "cluster": 0, "x": -119.61794484645876, "y": -20.038718499077383, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9826", "attributes": { "cluster": 1, "x": 3.6750786669219764, "y": -20.038718499077383, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9827", "attributes": { "cluster": 1, "x": 119.675078666922, "y": -51.215633035317175, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9828", "attributes": { "cluster": 2, "x": 38.07804381723342, "y": 117.94163673453565, "size": 1, "color": "#4b94db" } }, { "key": "9829", "attributes": { "cluster": 0, "x": -3.6179448464587267, "y": -51.215633035317175, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9830", "attributes": { "cluster": 1, "x": 116.675078666922, "y": -11.378464461233015, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9831", "attributes": { "cluster": 2, "x": -37.92195618276659, "y": 117.94163673453559, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9832", "attributes": { "cluster": 1, "x": 6.675078666921976, "y": -59.87588707316154, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9833", "attributes": { "cluster": 2, "x": 38.078043817233606, "y": 24.41089312581628, "size": 1, "color": "#4b94db" } }, { "key": "9834", "attributes": { "cluster": 1, "x": 116.67507866692202, "y": -59.875887073161564, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9835", "attributes": { "cluster": 0, "x": -6.617944846458727, "y": -11.378464461233015, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9836", "attributes": { "cluster": 2, "x": -12.921956182766566, "y": 130.06599238751767, "size": 2, "color": "#4b94db" } }, { "key": "9837", "attributes": { "cluster": 0, "x": -116.61794484645876, "y": -59.87588707316154, "size": 2, "color": "#e36d0" } }, { "key": "9838", "attributes": { "cluster": 2, "x": 13.078043817233583, "y": 12.286537472834183, "size": 2, "color": "#4b94db" } }, { "key": "9839", "attributes": { "cluster": 2, "x": 13.078043817233471, "y": 130.06599238751775, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9840", "attributes": { "cluster": 0, "x": -6.6179448464587125, "y": -59.875887073161564, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9841", "attributes": { "cluster": 2, "x": -12.921956182766454, "y": 12.286537472834112, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9842", "attributes": { "cluster": 2, "x": 60.07804381723351, "y": 65.98011250746929, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9843", "attributes": { "cluster": 0, "x": -116.61794484645877, "y": -11.378464461232998, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9844", "attributes": { "cluster": 2, "x": 60.07804381723351, "y": 76.37241735288255, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9845", "attributes": { "cluster": 2, "x": -59.92195618276649, "y": 76.37241735288258, "size": 1, "color": "#4b94db" } }, { "key": "9846", "attributes": { "cluster": 0, "x": -120.61794484645874, "y": -35.627175767197265, "size": 1, "color": "#e36d0" } }, { "key": "9847", "attributes": { "cluster": 2, "x": -59.92195618276649, "y": 65.98011250746931, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9848", "attributes": { "cluster": 0, "x": -121.61794484645874, "y": -37.35922657476614, "size": 1, "color": "#e36d0" } }, { "key": "9849", "attributes": { "cluster": 0, "x": -2.617944846458741, "y": -35.62717576719729, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9850", "attributes": { "cluster": 1, "x": 6.675078666921962, "y": -11.378464461232998, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9851", "attributes": { "cluster": 0, "x": -1.617944846458741, "y": -33.89512495962842, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9852", "attributes": { "cluster": 0, "x": -13.617944846458741, "y": 0.7458911917491307, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9853", "attributes": { "cluster": 2, "x": -41.921956182766436, "y": 27.874994740953966, "size": 1, "color": "#4b94db" } }, { "key": "9854", "attributes": { "cluster": 1, "x": 2.6750786669219906, "y": -35.627175767197265, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9855", "attributes": { "cluster": 1, "x": 1.6750786669219906, "y": -37.35922657476614, "size": 3.3333333333333335, "color": "#762e2e" } }, { "key": "9856", "attributes": { "cluster": 0, "x": -109.61794484645874, "y": -72.00024272614368, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9857", "attributes": { "cluster": 1, "x": 120.67507866692199, "y": -35.62717576719729, "size": 2, "color": "#762e2e" } }, { "key": "9858", "attributes": { "cluster": 1, "x": 121.67507866692199, "y": -33.89512495962842, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9859", "attributes": { "cluster": 2, "x": 42.07804381723345, "y": 114.4775351193979, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9860", "attributes": { "cluster": 1, "x": 109.67507866692199, "y": 0.7458911917491307, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9861", "attributes": { "cluster": 1, "x": 13.67507866692199, "y": -72.00024272614368, "size": 1, "color": "#762e2e" } }, { "key": "9862", "attributes": { "cluster": 2, "x": -41.92195618276658, "y": 114.47753511939783, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9863", "attributes": { "cluster": 1, "x": 109.67507866692205, "y": -72.00024272614368, "size": 1, "color": "#762e2e" } }, { "key": "9864", "attributes": { "cluster": 1, "x": 13.675078666921934, "y": 0.7458911917491235, "size": 3, "color": "#762e2e" } }, { "key": "9865", "attributes": { "cluster": 0, "x": -13.617944846458684, "y": -72.00024272614368, "size": 2, "color": "#e36d0" } }, { "key": "9866", "attributes": { "cluster": 2, "x": 42.07804381723359, "y": 27.87499474095403, "size": 1, "color": "#4b94db" } }, { "key": "9867", "attributes": { "cluster": 1, "x": 23.675078666922076, "y": -82.39254757155699, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9868", "attributes": { "cluster": 2, "x": 56.07804381723351, "y": 93.69292542857133, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9869", "attributes": { "cluster": 2, "x": -55.92195618276649, "y": 48.65960443178054, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9870", "attributes": { "cluster": 2, "x": 56.07804381723351, "y": 48.65960443178052, "size": 0, "color": "#4b94db" } }, { "key": "9871", "attributes": { "cluster": 2, "x": -55.92195618276649, "y": 93.69292542857134, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9872", "attributes": { "cluster": 0, "x": -109.6179448464588, "y": 0.7458911917491235, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9873", "attributes": { "cluster": 1, "x": 99.6750786669219, "y": 11.13819603716243, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9874", "attributes": { "cluster": 0, "x": -99.61794484645866, "y": -82.39254757155699, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9875", "attributes": { "cluster": 0, "x": -23.617944846458826, "y": 11.13819603716243, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9876", "attributes": { "cluster": 1, "x": 23.67507866692189, "y": 11.138196037162373, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9877", "attributes": { "cluster": 0, "x": -99.61794484645884, "y": 11.138196037162373, "size": 1, "color": "#e36d0" } }, { "key": "9878", "attributes": { "cluster": 0, "x": -23.61794484645864, "y": -82.39254757155693, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9879", "attributes": { "cluster": 1, "x": 99.67507866692209, "y": -82.39254757155693, "size": 2.6666666666666665, "color": "#762e2e" } }, { "key": "9880", "attributes": { "cluster": 1, "x": 48.67507866692192, "y": 23.26255169014447, "size": 2, "color": "#762e2e" } }, { "key": "9881", "attributes": { "cluster": 0, "x": -74.61794484645881, "y": 23.26255169014447, "size": 1, "color": "#e36d0" } }, { "key": "9882", "attributes": { "cluster": 2, "x": -46.92195618276649, "y": 33.07114716366063, "size": 0, "color": "#4b94db" } }, { "key": "9883", "attributes": { "cluster": 0, "x": -48.61794484645867, "y": -94.51690322453902, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9884", "attributes": { "cluster": 0, "x": -48.61794484645878, "y": 23.26255169014454, "size": 0, "color": "#e36d0" } }, { "key": "9885", "attributes": { "cluster": 2, "x": 47.07804381723351, "y": 109.28138269669122, "size": 2.3333333333333335, "color": "#4b94db" } }, { "key": "9886", "attributes": { "cluster": 2, "x": -46.921956182766564, "y": 109.2813826966912, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9887", "attributes": { "cluster": 0, "x": -74.6179448464587, "y": -94.5169032245391, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9888", "attributes": { "cluster": 1, "x": 74.67507866692206, "y": -94.51690322453902, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9889", "attributes": { "cluster": 2, "x": 47.07804381723358, "y": 33.07114716366066, "size": 1, "color": "#4b94db" } }, { "key": "9890", "attributes": { "cluster": 1, "x": 74.67507866692195, "y": 23.26255169014454, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9891", "attributes": { "cluster": 1, "x": 48.675078666922026, "y": -94.5169032245391, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9892", "attributes": { "cluster": 0, "x": -1.617944846458741, "y": -40.823328189903926, "size": 3, "color": "#e36d0" } }, { "key": "9893", "attributes": { "cluster": 0, "x": -1.617944846458741, "y": -30.43102334449066, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9894", "attributes": { "cluster": 2, "x": -19.921956182766596, "y": 128.3339415799488, "size": 1, "color": "#4b94db" } }, { "key": "9895", "attributes": { "cluster": 1, "x": 121.67507866692199, "y": -40.823328189903926, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9896", "attributes": { "cluster": 1, "x": 121.67507866692199, "y": -30.43102334449066, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9897", "attributes": { "cluster": 1, "x": 1.6750786669219906, "y": -30.431023344490633, "size": 1, "color": "#762e2e" } }, { "key": "9898", "attributes": { "cluster": 1, "x": 1.6750786669219906, "y": -40.8233281899039, "size": 2, "color": "#762e2e" } }, { "key": "9899", "attributes": { "cluster": 2, "x": 20.078043817233617, "y": 14.018588280403073, "size": 2, "color": "#4b94db" } }, { "key": "9900", "attributes": { "cluster": 0, "x": -121.61794484645874, "y": -30.431023344490633, "size": 2, "color": "#e36d0" } }, { "key": "9901", "attributes": { "cluster": 1, "x": 19.675078666922047, "y": -78.92844595641924, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "9902", "attributes": { "cluster": 0, "x": -121.61794484645874, "y": -40.8233281899039, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9903", "attributes": { "cluster": 1, "x": 103.67507866692193, "y": 7.674094422024687, "size": 2, "color": "#762e2e" } }, { "key": "9904", "attributes": { "cluster": 1, "x": 19.675078666921905, "y": 7.674094422024623, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9905", "attributes": { "cluster": 0, "x": -103.61794484645868, "y": -78.92844595641924, "size": 2, "color": "#e36d0" } }, { "key": "9906", "attributes": { "cluster": 0, "x": -19.617944846458798, "y": 7.674094422024687, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9907", "attributes": { "cluster": 0, "x": -103.61794484645883, "y": 7.674094422024623, "size": 1, "color": "#e36d0" } }, { "key": "9908", "attributes": { "cluster": 0, "x": -19.617944846458656, "y": -78.92844595641918, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9909", "attributes": { "cluster": 0, "x": -5.617944846458741, "y": -13.110515268801883, "size": 4, "color": "#e36d0" } }, { "key": "9910", "attributes": { "cluster": 1, "x": 103.67507866692208, "y": -78.92844595641918, "size": 1, "color": "#762e2e" } }, { "key": "9911", "attributes": { "cluster": 0, "x": -117.61794484645874, "y": -58.143836265592675, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9912", "attributes": { "cluster": 1, "x": 117.67507866692199, "y": -13.110515268801883, "size": 1, "color": "#762e2e" } }, { "key": "9913", "attributes": { "cluster": 0, "x": -5.617944846458741, "y": -58.1438362655927, "size": 1, "color": "#e36d0" } }, { "key": "9914", "attributes": { "cluster": 2, "x": 20.078043817233446, "y": 128.33394157994888, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9915", "attributes": { "cluster": 2, "x": -19.921956182766426, "y": 14.018588280402966, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9916", "attributes": { "cluster": 0, "x": -117.61794484645874, "y": -13.110515268801866, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9917", "attributes": { "cluster": 2, "x": 59.07804381723351, "y": 85.03267139072693, "size": 2.6666666666666665, "color": "#4b94db" } }, { "key": "9918", "attributes": { "cluster": 2, "x": -58.92195618276649, "y": 57.319858469624926, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9919", "attributes": { "cluster": 2, "x": 59.07804381723351, "y": 57.319858469624904, "size": 2, "color": "#4b94db" } }, { "key": "9920", "attributes": { "cluster": 0, "x": -108.61794484645874, "y": -73.73229353371258, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9921", "attributes": { "cluster": 2, "x": -58.92195618276649, "y": 85.03267139072696, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9922", "attributes": { "cluster": 1, "x": 5.675078666921991, "y": -58.143836265592675, "size": 1, "color": "#762e2e" } }, { "key": "9923", "attributes": { "cluster": 0, "x": -14.617944846458741, "y": 2.47794199931802, "size": 1, "color": "#e36d0" } }, { "key": "9924", "attributes": { "cluster": 1, "x": 117.67507866692199, "y": -58.1438362655927, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9925", "attributes": { "cluster": 0, "x": -108.61794484645881, "y": 2.4779419993179914, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9926", "attributes": { "cluster": 1, "x": 5.675078666921991, "y": -13.110515268801866, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9927", "attributes": { "cluster": 0, "x": -14.61794484645867, "y": -73.73229353371255, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9928", "attributes": { "cluster": 0, "x": -81.61794484645884, "y": 21.53050088257558, "size": 1, "color": "#e36d0" } }, { "key": "9929", "attributes": { "cluster": 0, "x": -41.617944846458634, "y": -92.78485241697014, "size": 1, "color": "#e36d0" } }, { "key": "9930", "attributes": { "cluster": 0, "x": -41.617944846458805, "y": 21.530500882575687, "size": 0, "color": "#e36d0" } }, { "key": "9931", "attributes": { "cluster": 1, "x": 14.67507866692199, "y": -73.73229353371258, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9932", "attributes": { "cluster": 0, "x": -81.61794484645867, "y": -92.78485241697024, "size": 2.6666666666666665, "color": "#e36d0" } }, { "key": "9933", "attributes": { "cluster": 2, "x": 29.078043817233638, "y": 19.214740703109733, "size": 0, "color": "#4b94db" } }, { "key": "9934", "attributes": { "cluster": 1, "x": 108.67507866692199, "y": 2.47794199931802, "size": 0.3333333333333333, "color": "#762e2e" } }, { "key": "9935", "attributes": { "cluster": 1, "x": 14.67507866692192, "y": 2.4779419993179914, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9936", "attributes": { "cluster": 0, "x": -2.617944846458741, "y": -21.770769306646272, "size": 2, "color": "#e36d0" } }, { "key": "9937", "attributes": { "cluster": 0, "x": -120.61794484645874, "y": -49.483582227748286, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9938", "attributes": { "cluster": 2, "x": -28.921956182766618, "y": 123.13778915724214, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9939", "attributes": { "cluster": 0, "x": -2.617944846458741, "y": -49.48358222774831, "size": 1, "color": "#e36d0" } }, { "key": "9940", "attributes": { "cluster": 1, "x": 108.67507866692206, "y": -73.73229353371255, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9941", "attributes": { "cluster": 0, "x": -120.61794484645874, "y": -21.77076930664625, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9942", "attributes": { "cluster": 0, "x": -32.61794484645861, "y": -87.58869999426348, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9943", "attributes": { "cluster": 1, "x": 41.675078666921884, "y": 21.53050088257558, "size": 1, "color": "#762e2e" } }, { "key": "9944", "attributes": { "cluster": 0, "x": -90.61794484645887, "y": 16.33434845986892, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9945", "attributes": { "cluster": 0, "x": -90.61794484645863, "y": -87.58869999426364, "size": 1, "color": "#e36d0" } }, { "key": "9946", "attributes": { "cluster": 2, "x": -28.921956182766372, "y": 19.214740703109577, "size": 2, "color": "#4b94db" } }, { "key": "9947", "attributes": { "cluster": 1, "x": 81.6750786669221, "y": -92.78485241697014, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9948", "attributes": { "cluster": 1, "x": 81.67507866692193, "y": 21.530500882575687, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "9949", "attributes": { "cluster": 2, "x": 29.078043817233393, "y": 123.13778915724228, "size": 0.3333333333333333, "color": "#4b94db" } }, { "key": "9950", "attributes": { "cluster": 2, "x": 0.07804381723352342, "y": 131.79804319508662, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9951", "attributes": { "cluster": 0, "x": -32.617944846458855, "y": 16.334348459869076, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9952", "attributes": { "cluster": 2, "x": -27.92195618276663, "y": 124.869839964811, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9953", "attributes": { "cluster": 0, "x": -61.61794484645873, "y": 24.9946024977134, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9954", "attributes": { "cluster": 1, "x": 41.675078666922055, "y": -92.78485241697024, "size": 0.6666666666666666, "color": "#762e2e" } }, { "key": "9955", "attributes": { "cluster": 0, "x": -89.61794484645888, "y": 18.066399267437802, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9956", "attributes": { "cluster": 2, "x": 0.07804381723349525, "y": 10.554486665265252, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9957", "attributes": { "cluster": 1, "x": 120.67507866692199, "y": -21.770769306646272, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9958", "attributes": { "cluster": 2, "x": 28.07804381723365, "y": 17.48268989554085, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9959", "attributes": { "cluster": 0, "x": -61.617944846458755, "y": -96.24895403210796, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9960", "attributes": { "cluster": 1, "x": 2.6750786669219906, "y": -49.483582227748286, "size": 1, "color": "#762e2e" } }, { "key": "9961", "attributes": { "cluster": 0, "x": -33.6179448464586, "y": -89.32075080183236, "size": 1, "color": "#e36d0" } }, { "key": "9962", "attributes": { "cluster": 0, "x": -33.61794484645885, "y": 18.06639926743796, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9963", "attributes": { "cluster": 1, "x": 120.67507866692199, "y": -49.48358222774831, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9964", "attributes": { "cluster": 0, "x": -89.61794484645864, "y": -89.32075080183252, "size": 2.3333333333333335, "color": "#e36d0" } }, { "key": "9965", "attributes": { "cluster": 2, "x": 28.078043817233404, "y": 124.86983996481118, "size": 2, "color": "#4b94db" } }, { "key": "9966", "attributes": { "cluster": 0, "x": -4.617944846458741, "y": -14.842566076370762, "size": 1, "color": "#e36d0" } }, { "key": "9967", "attributes": { "cluster": 0, "x": -118.61794484645874, "y": -56.4117854580238, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9968", "attributes": { "cluster": 2, "x": -27.921956182766383, "y": 17.482689895540695, "size": 2, "color": "#4b94db" } }, { "key": "9969", "attributes": { "cluster": 0, "x": -4.617944846458741, "y": -56.411785458023814, "size": 0.3333333333333333, "color": "#e36d0" } }, { "key": "9970", "attributes": { "cluster": 1, "x": 2.6750786669219906, "y": -21.77076930664625, "size": 1, "color": "#762e2e" } }, { "key": "9971", "attributes": { "cluster": 2, "x": 57.07804381723351, "y": 91.96087462100245, "size": 3, "color": "#4b94db" } }, { "key": "9972", "attributes": { "cluster": 1, "x": 90.67507866692212, "y": -87.58869999426348, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9973", "attributes": { "cluster": 2, "x": -56.92195618276649, "y": 50.39165523934942, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9974", "attributes": { "cluster": 1, "x": 32.67507866692186, "y": 16.33434845986892, "size": 1, "color": "#762e2e" } }, { "key": "9975", "attributes": { "cluster": 1, "x": 32.675078666922104, "y": -87.58869999426364, "size": 2, "color": "#762e2e" } }, { "key": "9976", "attributes": { "cluster": 1, "x": 90.67507866692188, "y": 16.334348459869076, "size": 2.3333333333333335, "color": "#762e2e" } }, { "key": "9977", "attributes": { "cluster": 1, "x": 61.675078666922005, "y": 24.9946024977134, "size": 0, "color": "#762e2e" } }, { "key": "9978", "attributes": { "cluster": 0, "x": -1.617944846458741, "y": -44.287429805041675, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9979", "attributes": { "cluster": 1, "x": 33.67507866692185, "y": 18.066399267437802, "size": 1, "color": "#762e2e" } }, { "key": "9980", "attributes": { "cluster": 0, "x": -1.617944846458741, "y": -26.966921729352904, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9981", "attributes": { "cluster": 0, "x": -118.61794484645874, "y": -14.84256607637074, "size": 1, "color": "#e36d0" } }, { "key": "9982", "attributes": { "cluster": 1, "x": 61.675078666921976, "y": -96.24895403210796, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9983", "attributes": { "cluster": 0, "x": -121.61794484645874, "y": -26.966921729352883, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9984", "attributes": { "cluster": 2, "x": 57.07804381723351, "y": 50.39165523934939, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9985", "attributes": { "cluster": 0, "x": -121.61794484645874, "y": -44.287429805041654, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9986", "attributes": { "cluster": 0, "x": -63.617944846458734, "y": -96.24895403210795, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9987", "attributes": { "cluster": 1, "x": 89.67507866692213, "y": -89.32075080183236, "size": 1.6666666666666667, "color": "#762e2e" } }, { "key": "9988", "attributes": { "cluster": 0, "x": -59.61794484645875, "y": 24.994602497713387, "size": 1.3333333333333333, "color": "#e36d0" } }, { "key": "9989", "attributes": { "cluster": 2, "x": 60.07804381723351, "y": 62.516010892331536, "size": 1.6666666666666667, "color": "#4b94db" } }, { "key": "9990", "attributes": { "cluster": 1, "x": 89.67507866692188, "y": 18.06639926743796, "size": 1.3333333333333333, "color": "#762e2e" } }, { "key": "9991", "attributes": { "cluster": 0, "x": -63.617944846458755, "y": 24.994602497713394, "size": 1.6666666666666667, "color": "#e36d0" } }, { "key": "9992", "attributes": { "cluster": 2, "x": 60.07804381723351, "y": 79.8365189680203, "size": 2, "color": "#4b94db" } }, { "key": "9993", "attributes": { "cluster": 2, "x": -56.92195618276649, "y": 91.96087462100247, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9994", "attributes": { "cluster": 0, "x": -59.61794484645873, "y": -96.24895403210795, "size": 0.6666666666666666, "color": "#e36d0" } }, { "key": "9995", "attributes": { "cluster": 1, "x": 33.6750786669221, "y": -89.32075080183252, "size": 1, "color": "#762e2e" } }, { "key": "9996", "attributes": { "cluster": 2, "x": -59.92195618276649, "y": 79.83651896802033, "size": 0.6666666666666666, "color": "#4b94db" } }, { "key": "9997", "attributes": { "cluster": 2, "x": -59.92195618276649, "y": 62.51601089233156, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9998", "attributes": { "cluster": 2, "x": -1.9219561827664804, "y": 10.554486665265266, "size": 1.3333333333333333, "color": "#4b94db" } }, { "key": "9999", "attributes": { "cluster": 0, "x": -27.617944846458848, "y": 14.602297652300209, "size": 1, "color": "#e36d0" } } ], "edges": [ { "key": "geid_144_0", "source": "7074", "target": "677" }, { "key": "geid_144_1", "source": "857", "target": "9630" }, { "key": "geid_144_2", "source": "9792", "target": "7842" }, { "key": "geid_144_3", "source": "6093", "target": "2685" }, { "key": "geid_144_4", "source": "3718", "target": "2352" }, { "key": "geid_144_5", "source": "7686", "target": "7940" }, { "key": "geid_144_6", "source": "3702", "target": "3409" }, { "key": "geid_144_7", "source": "8805", "target": "8857" }, { "key": "geid_144_8", "source": "1595", "target": "8172" }, { "key": "geid_144_9", "source": "7189", "target": "8795" }, { "key": "geid_144_10", "source": "7051", "target": "9561" }, { "key": "geid_144_11", "source": "7131", "target": "6765" }, { "key": "geid_144_12", "source": "4744", "target": "1884" }, { "key": "geid_144_13", "source": "6504", "target": "9047" }, { "key": "geid_144_14", "source": "4150", "target": "7262" }, { "key": "geid_144_15", "source": "9951", "target": "8468" }, { "key": "geid_144_16", "source": "2262", "target": "555" }, { "key": "geid_144_17", "source": "7821", "target": "7469" }, { "key": "geid_144_18", "source": "5035", "target": "7495" }, { "key": "geid_144_19", "source": "6860", "target": "3658" }, { "key": "geid_144_20", "source": "584", "target": "2924" }, { "key": "geid_144_21", "source": "4922", "target": "9551" }, { "key": "geid_144_22", "source": "1061", "target": "3816" }, { "key": "geid_144_23", "source": "9442", "target": "4327" }, { "key": "geid_144_24", "source": "6465", "target": "3073" }, { "key": "geid_144_25", "source": "1182", "target": "4622" }, { "key": "geid_144_26", "source": "687", "target": "8138" }, { "key": "geid_144_27", "source": "878", "target": "5831" }, { "key": "geid_144_28", "source": "1674", "target": "8565" }, { "key": "geid_144_29", "source": "5701", "target": "620" }, { "key": "geid_144_30", "source": "4388", "target": "1485" }, { "key": "geid_144_31", "source": "8528", "target": "2194" }, { "key": "geid_144_32", "source": "4864", "target": "7415" }, { "key": "geid_144_33", "source": "5076", "target": "5694" }, { "key": "geid_144_34", "source": "4580", "target": "9967" }, { "key": "geid_144_35", "source": "7113", "target": "1686" }, { "key": "geid_144_36", "source": "574", "target": "5864" }, { "key": "geid_144_37", "source": "7775", "target": "8013" }, { "key": "geid_144_38", "source": "1965", "target": "8992" }, { "key": "geid_144_39", "source": "1876", "target": "1532" }, { "key": "geid_144_40", "source": "3650", "target": "8360" }, { "key": "geid_144_41", "source": "5360", "target": "9122" }, { "key": "geid_144_42", "source": "223", "target": "6190" }, { "key": "geid_144_43", "source": "4054", "target": "9070" }, { "key": "geid_144_44", "source": "9801", "target": "2727" }, { "key": "geid_144_45", "source": "5251", "target": "5614" }, { "key": "geid_144_46", "source": "1430", "target": "5848" }, { "key": "geid_144_47", "source": "8350", "target": "1642" }, { "key": "geid_144_48", "source": "5179", "target": "9017" }, { "key": "geid_144_49", "source": "1390", "target": "6999" }, { "key": "geid_144_50", "source": "3030", "target": "7661" }, { "key": "geid_144_51", "source": "4841", "target": "7373" }, { "key": "geid_144_52", "source": "6375", "target": "276" }, { "key": "geid_144_53", "source": "4691", "target": "1930" }, { "key": "geid_144_54", "source": "9504", "target": "7417" }, { "key": "geid_144_55", "source": "6189", "target": "7793" }, { "key": "geid_144_56", "source": "9397", "target": "469" }, { "key": "geid_144_57", "source": "4259", "target": "665" }, { "key": "geid_144_58", "source": "998", "target": "2174" }, { "key": "geid_144_59", "source": "3465", "target": "1341" }, { "key": "geid_144_60", "source": "543", "target": "4293" }, { "key": "geid_144_61", "source": "6550", "target": "9610" }, { "key": "geid_144_62", "source": "4626", "target": "8408" }, { "key": "geid_144_63", "source": "5337", "target": "9705" }, { "key": "geid_144_64", "source": "7915", "target": "3947" }, { "key": "geid_144_65", "source": "6264", "target": "3565" }, { "key": "geid_144_66", "source": "3526", "target": "4577" }, { "key": "geid_144_67", "source": "5649", "target": "5798" }, { "key": "geid_144_68", "source": "9715", "target": "6605" }, { "key": "geid_144_69", "source": "9417", "target": "4823" }, { "key": "geid_144_70", "source": "1417", "target": "4842" }, { "key": "geid_144_71", "source": "6688", "target": "5952" }, { "key": "geid_144_72", "source": "2957", "target": "7045" }, { "key": "geid_144_73", "source": "2921", "target": "6360" }, { "key": "geid_144_74", "source": "18", "target": "7789" }, { "key": "geid_144_75", "source": "475", "target": "7451" }, { "key": "geid_144_76", "source": "1069", "target": "957" }, { "key": "geid_144_77", "source": "1448", "target": "1417" }, { "key": "geid_144_78", "source": "8234", "target": "5542" }, { "key": "geid_144_79", "source": "8946", "target": "4086" }, { "key": "geid_144_80", "source": "9565", "target": "5444" }, { "key": "geid_144_81", "source": "9331", "target": "5071" }, { "key": "geid_144_82", "source": "5269", "target": "2415" }, { "key": "geid_144_83", "source": "3147", "target": "2526" }, { "key": "geid_144_84", "source": "8748", "target": "8211" }, { "key": "geid_144_85", "source": "611", "target": "6971" }, { "key": "geid_144_86", "source": "3301", "target": "1237" }, { "key": "geid_144_87", "source": "1286", "target": "7732" }, { "key": "geid_144_88", "source": "9699", "target": "3589" }, { "key": "geid_144_89", "source": "4913", "target": "8491" }, { "key": "geid_144_90", "source": "5922", "target": "1115" }, { "key": "geid_144_91", "source": "420", "target": "1475" }, { "key": "geid_144_92", "source": "9241", "target": "3346" }, { "key": "geid_144_93", "source": "8994", "target": "9637" }, { "key": "geid_144_94", "source": "7605", "target": "3629" }, { "key": "geid_144_95", "source": "9346", "target": "1791" }, { "key": "geid_144_96", "source": "3905", "target": "6007" }, { "key": "geid_144_97", "source": "2680", "target": "1179" }, { "key": "geid_144_98", "source": "6840", "target": "5092" }, { "key": "geid_144_99", "source": "4813", "target": "1788" }, { "key": "geid_144_100", "source": "1318", "target": "8722" }, { "key": "geid_144_101", "source": "3225", "target": "7890" }, { "key": "geid_144_102", "source": "9672", "target": "6131" }, { "key": "geid_144_103", "source": "34", "target": "8161" }, { "key": "geid_144_104", "source": "4631", "target": "8238" }, { "key": "geid_144_105", "source": "5668", "target": "6961" }, { "key": "geid_144_106", "source": "1864", "target": "5002" }, { "key": "geid_144_107", "source": "2956", "target": "2491" }, { "key": "geid_144_108", "source": "895", "target": "6581" }, { "key": "geid_144_109", "source": "9145", "target": "7093" }, { "key": "geid_144_110", "source": "2711", "target": "7974" }, { "key": "geid_144_111", "source": "9581", "target": "1010" }, { "key": "geid_144_112", "source": "2339", "target": "5941" }, { "key": "geid_144_113", "source": "9277", "target": "6759" }, { "key": "geid_144_114", "source": "5585", "target": "8894" }, { "key": "geid_144_115", "source": "827", "target": "2682" }, { "key": "geid_144_116", "source": "8959", "target": "5620" }, { "key": "geid_144_117", "source": "714", "target": "4222" }, { "key": "geid_144_118", "source": "3373", "target": "2356" }, { "key": "geid_144_119", "source": "7997", "target": "8686" }, { "key": "geid_144_120", "source": "6451", "target": "1457" }, { "key": "geid_144_121", "source": "4447", "target": "3125" }, { "key": "geid_144_122", "source": "2180", "target": "8356" }, { "key": "geid_144_123", "source": "1327", "target": "783" }, { "key": "geid_144_124", "source": "4714", "target": "4493" }, { "key": "geid_144_125", "source": "5459", "target": "275" }, { "key": "geid_144_126", "source": "8343", "target": "3908" }, { "key": "geid_144_127", "source": "2647", "target": "3398" }, { "key": "geid_144_128", "source": "9656", "target": "4131" }, { "key": "geid_144_129", "source": "3422", "target": "6001" }, { "key": "geid_144_130", "source": "4462", "target": "8379" }, { "key": "geid_144_131", "source": "7546", "target": "3748" }, { "key": "geid_144_132", "source": "4728", "target": "9629" }, { "key": "geid_144_133", "source": "7511", "target": "1583" }, { "key": "geid_144_134", "source": "7499", "target": "8799" }, { "key": "geid_144_135", "source": "6828", "target": "7193" }, { "key": "geid_144_136", "source": "1925", "target": "1681" }, { "key": "geid_144_137", "source": "6366", "target": "7962" }, { "key": "geid_144_138", "source": "2123", "target": "268" }, { "key": "geid_144_139", "source": "282", "target": "2869" }, { "key": "geid_144_140", "source": "55", "target": "7165" }, { "key": "geid_144_141", "source": "2568", "target": "2718" }, { "key": "geid_144_142", "source": "474", "target": "7822" }, { "key": "geid_144_143", "source": "6567", "target": "5442" }, { "key": "geid_144_144", "source": "6679", "target": "7594" }, { "key": "geid_144_145", "source": "723", "target": "5206" }, { "key": "geid_144_146", "source": "1993", "target": "936" }, { "key": "geid_144_147", "source": "37", "target": "146" }, { "key": "geid_144_148", "source": "9357", "target": "4915" }, { "key": "geid_144_149", "source": "6606", "target": "5151" }, { "key": "geid_144_150", "source": "6034", "target": "6981" }, { "key": "geid_144_151", "source": "1667", "target": "5990" }, { "key": "geid_144_152", "source": "6858", "target": "6322" }, { "key": "geid_144_153", "source": "7056", "target": "2349" }, { "key": "geid_144_154", "source": "8726", "target": "5791" }, { "key": "geid_144_155", "source": "6669", "target": "6043" }, { "key": "geid_144_156", "source": "7056", "target": "4550" }, { "key": "geid_144_157", "source": "7462", "target": "9674" }, { "key": "geid_144_158", "source": "9681", "target": "8656" }, { "key": "geid_144_159", "source": "779", "target": "146" }, { "key": "geid_144_160", "source": "4890", "target": "6488" }, { "key": "geid_144_161", "source": "7155", "target": "9169" }, { "key": "geid_144_162", "source": "3833", "target": "8731" }, { "key": "geid_144_163", "source": "9004", "target": "402" }, { "key": "geid_144_164", "source": "7113", "target": "6376" }, { "key": "geid_144_165", "source": "3232", "target": "7760" }, { "key": "geid_144_166", "source": "5733", "target": "2820" }, { "key": "geid_144_167", "source": "2135", "target": "1428" }, { "key": "geid_144_168", "source": "4292", "target": "1937" }, { "key": "geid_144_169", "source": "5089", "target": "956" }, { "key": "geid_144_170", "source": "1755", "target": "9473" }, { "key": "geid_144_171", "source": "8105", "target": "3562" }, { "key": "geid_144_172", "source": "3806", "target": "4678" }, { "key": "geid_144_173", "source": "3676", "target": "6350" }, { "key": "geid_144_174", "source": "2987", "target": "689" }, { "key": "geid_144_175", "source": "4183", "target": "1263" }, { "key": "geid_144_176", "source": "4421", "target": "2516" }, { "key": "geid_144_177", "source": "5935", "target": "7050" }, { "key": "geid_144_178", "source": "1921", "target": "2891" }, { "key": "geid_144_179", "source": "1290", "target": "8923" }, { "key": "geid_144_180", "source": "7076", "target": "7577" }, { "key": "geid_144_181", "source": "6210", "target": "8398" }, { "key": "geid_144_182", "source": "9453", "target": "6805" }, { "key": "geid_144_183", "source": "3074", "target": "256" }, { "key": "geid_144_184", "source": "399", "target": "7677" }, { "key": "geid_144_185", "source": "2839", "target": "4098" }, { "key": "geid_144_186", "source": "490", "target": "1589" }, { "key": "geid_144_187", "source": "5431", "target": "8063" }, { "key": "geid_144_188", "source": "700", "target": "4389" }, { "key": "geid_144_189", "source": "207", "target": "2878" }, { "key": "geid_144_190", "source": "4785", "target": "5496" }, { "key": "geid_144_191", "source": "2039", "target": "709" }, { "key": "geid_144_192", "source": "6989", "target": "2833" }, { "key": "geid_144_193", "source": "5898", "target": "9625" }, { "key": "geid_144_194", "source": "2551", "target": "4987" }, { "key": "geid_144_195", "source": "1975", "target": "1445" }, { "key": "geid_144_196", "source": "7970", "target": "1570" }, { "key": "geid_144_197", "source": "6460", "target": "8764" }, { "key": "geid_144_198", "source": "3420", "target": "8215" }, { "key": "geid_144_199", "source": "2467", "target": "4187" }, { "key": "geid_144_200", "source": "3433", "target": "9449" }, { "key": "geid_144_201", "source": "5928", "target": "4012" }, { "key": "geid_144_202", "source": "9026", "target": "1964" }, { "key": "geid_144_203", "source": "6109", "target": "6024" }, { "key": "geid_144_204", "source": "1606", "target": "2997" }, { "key": "geid_144_205", "source": "5202", "target": "9814" }, { "key": "geid_144_206", "source": "9332", "target": "7209" }, { "key": "geid_144_207", "source": "2258", "target": "5443" }, { "key": "geid_144_208", "source": "6339", "target": "6878" }, { "key": "geid_144_209", "source": "3302", "target": "41" }, { "key": "geid_144_210", "source": "221", "target": "2421" }, { "key": "geid_144_211", "source": "5283", "target": "9750" }, { "key": "geid_144_212", "source": "8124", "target": "4071" }, { "key": "geid_144_213", "source": "5265", "target": "3698" }, { "key": "geid_144_214", "source": "2874", "target": "9426" }, { "key": "geid_144_215", "source": "6289", "target": "3353" }, { "key": "geid_144_216", "source": "693", "target": "3531" }, { "key": "geid_144_217", "source": "7422", "target": "9025" }, { "key": "geid_144_218", "source": "4192", "target": "9043" }, { "key": "geid_144_219", "source": "3859", "target": "1721" }, { "key": "geid_144_220", "source": "3856", "target": "9761" }, { "key": "geid_144_221", "source": "6298", "target": "751" }, { "key": "geid_144_222", "source": "9679", "target": "4652" }, { "key": "geid_144_223", "source": "5984", "target": "7423" }, { "key": "geid_144_224", "source": "2286", "target": "7410" }, { "key": "geid_144_225", "source": "9078", "target": "1376" }, { "key": "geid_144_226", "source": "4339", "target": "7467" }, { "key": "geid_144_227", "source": "5461", "target": "1478" }, { "key": "geid_144_228", "source": "8562", "target": "2012" }, { "key": "geid_144_229", "source": "2097", "target": "3027" }, { "key": "geid_144_230", "source": "5148", "target": "4612" }, { "key": "geid_144_231", "source": "7232", "target": "3431" }, { "key": "geid_144_232", "source": "1450", "target": "7262" }, { "key": "geid_144_233", "source": "4768", "target": "7083" }, { "key": "geid_144_234", "source": "5495", "target": "7873" }, { "key": "geid_144_235", "source": "7534", "target": "3875" }, { "key": "geid_144_236", "source": "2905", "target": "78" }, { "key": "geid_144_237", "source": "5044", "target": "1753" }, { "key": "geid_144_238", "source": "7173", "target": "8666" }, { "key": "geid_144_239", "source": "3204", "target": "7151" }, { "key": "geid_144_240", "source": "619", "target": "3965" }, { "key": "geid_144_241", "source": "459", "target": "6250" }, { "key": "geid_144_242", "source": "4013", "target": "22" }, { "key": "geid_144_243", "source": "3529", "target": "1653" }, { "key": "geid_144_244", "source": "8789", "target": "1244" }, { "key": "geid_144_245", "source": "8261", "target": "8674" }, { "key": "geid_144_246", "source": "2960", "target": "4875" }, { "key": "geid_144_247", "source": "2713", "target": "9617" }, { "key": "geid_144_248", "source": "327", "target": "1176" }, { "key": "geid_144_249", "source": "1704", "target": "5945" }, { "key": "geid_144_250", "source": "4389", "target": "5798" }, { "key": "geid_144_251", "source": "9121", "target": "9579" }, { "key": "geid_144_252", "source": "9490", "target": "3903" }, { "key": "geid_144_253", "source": "2772", "target": "9941" }, { "key": "geid_144_254", "source": "663", "target": "3194" }, { "key": "geid_144_255", "source": "6465", "target": "6341" }, { "key": "geid_144_256", "source": "8884", "target": "3570" }, { "key": "geid_144_257", "source": "6751", "target": "1857" }, { "key": "geid_144_258", "source": "347", "target": "2103" }, { "key": "geid_144_259", "source": "348", "target": "3445" }, { "key": "geid_144_260", "source": "5064", "target": "3617" }, { "key": "geid_144_261", "source": "522", "target": "5744" }, { "key": "geid_144_262", "source": "1437", "target": "6658" }, { "key": "geid_144_263", "source": "1289", "target": "2916" }, { "key": "geid_144_264", "source": "16", "target": "5927" }, { "key": "geid_144_265", "source": "1268", "target": "6378" }, { "key": "geid_144_266", "source": "289", "target": "3423" }, { "key": "geid_144_267", "source": "5003", "target": "2061" }, { "key": "geid_144_268", "source": "4604", "target": "4777" }, { "key": "geid_144_269", "source": "6318", "target": "8068" }, { "key": "geid_144_270", "source": "8226", "target": "1839" }, { "key": "geid_144_271", "source": "2738", "target": "9604" }, { "key": "geid_144_272", "source": "2615", "target": "6786" }, { "key": "geid_144_273", "source": "3306", "target": "8423" }, { "key": "geid_144_274", "source": "3531", "target": "2703" }, { "key": "geid_144_275", "source": "8735", "target": "7715" }, { "key": "geid_144_276", "source": "1001", "target": "3731" }, { "key": "geid_144_277", "source": "8187", "target": "8129" }, { "key": "geid_144_278", "source": "4852", "target": "9216" }, { "key": "geid_144_279", "source": "4308", "target": "967" }, { "key": "geid_144_280", "source": "1887", "target": "1672" }, { "key": "geid_144_281", "source": "990", "target": "203" }, { "key": "geid_144_282", "source": "4415", "target": "9743" }, { "key": "geid_144_283", "source": "7924", "target": "8899" }, { "key": "geid_144_284", "source": "9784", "target": "5560" }, { "key": "geid_144_285", "source": "9423", "target": "181" }, { "key": "geid_144_286", "source": "2241", "target": "7035" }, { "key": "geid_144_287", "source": "7921", "target": "9523" }, { "key": "geid_144_288", "source": "9163", "target": "8013" }, { "key": "geid_144_289", "source": "9921", "target": "4126" }, { "key": "geid_144_290", "source": "333", "target": "1219" }, { "key": "geid_144_291", "source": "9379", "target": "4687" }, { "key": "geid_144_292", "source": "7702", "target": "9826" }, { "key": "geid_144_293", "source": "9988", "target": "5621" }, { "key": "geid_144_294", "source": "4933", "target": "2697" }, { "key": "geid_144_295", "source": "3720", "target": "8834" }, { "key": "geid_144_296", "source": "9567", "target": "8154" }, { "key": "geid_144_297", "source": "2705", "target": "1740" }, { "key": "geid_144_298", "source": "6083", "target": "1910" }, { "key": "geid_144_299", "source": "9581", "target": "6508" }, { "key": "geid_144_300", "source": "2218", "target": "8091" }, { "key": "geid_144_301", "source": "1826", "target": "9424" }, { "key": "geid_144_302", "source": "8691", "target": "8041" }, { "key": "geid_144_303", "source": "1571", "target": "7398" }, { "key": "geid_144_304", "source": "3542", "target": "3709" }, { "key": "geid_144_305", "source": "5753", "target": "5260" }, { "key": "geid_144_306", "source": "9209", "target": "1637" }, { "key": "geid_144_307", "source": "6662", "target": "7642" }, { "key": "geid_144_308", "source": "8273", "target": "3112" }, { "key": "geid_144_309", "source": "673", "target": "1075" }, { "key": "geid_144_310", "source": "2949", "target": "4879" }, { "key": "geid_144_311", "source": "3560", "target": "3885" }, { "key": "geid_144_312", "source": "8008", "target": "1164" }, { "key": "geid_144_313", "source": "6470", "target": "78" }, { "key": "geid_144_314", "source": "1515", "target": "7674" }, { "key": "geid_144_315", "source": "9478", "target": "6802" }, { "key": "geid_144_316", "source": "2524", "target": "8814" }, { "key": "geid_144_317", "source": "3977", "target": "8628" }, { "key": "geid_144_318", "source": "5576", "target": "7741" }, { "key": "geid_144_319", "source": "5815", "target": "2983" }, { "key": "geid_144_320", "source": "9962", "target": "7682" }, { "key": "geid_144_321", "source": "109", "target": "8914" }, { "key": "geid_144_322", "source": "3110", "target": "1317" }, { "key": "geid_144_323", "source": "2115", "target": "6047" }, { "key": "geid_144_324", "source": "8894", "target": "4754" }, { "key": "geid_144_325", "source": "2795", "target": "4752" }, { "key": "geid_144_326", "source": "4499", "target": "5164" }, { "key": "geid_144_327", "source": "4971", "target": "903" }, { "key": "geid_144_328", "source": "23", "target": "2342" }, { "key": "geid_144_329", "source": "7644", "target": "8344" }, { "key": "geid_144_330", "source": "2774", "target": "1100" }, { "key": "geid_144_331", "source": "5031", "target": "8053" }, { "key": "geid_144_332", "source": "9299", "target": "5721" }, { "key": "geid_144_333", "source": "1568", "target": "6006" }, { "key": "geid_144_334", "source": "2321", "target": "8222" }, { "key": "geid_144_335", "source": "3817", "target": "3837" }, { "key": "geid_144_336", "source": "4514", "target": "5182" }, { "key": "geid_144_337", "source": "9593", "target": "2999" }, { "key": "geid_144_338", "source": "8283", "target": "9047" }, { "key": "geid_144_339", "source": "265", "target": "3858" }, { "key": "geid_144_340", "source": "3039", "target": "7933" }, { "key": "geid_144_341", "source": "4556", "target": "1451" }, { "key": "geid_144_342", "source": "5999", "target": "7311" }, { "key": "geid_144_343", "source": "3166", "target": "6749" }, { "key": "geid_144_344", "source": "5210", "target": "2616" }, { "key": "geid_144_345", "source": "89", "target": "5255" }, { "key": "geid_144_346", "source": "2088", "target": "1170" }, { "key": "geid_144_347", "source": "2993", "target": "4414" }, { "key": "geid_144_348", "source": "5169", "target": "1054" }, { "key": "geid_144_349", "source": "8801", "target": "7959" }, { "key": "geid_144_350", "source": "6412", "target": "1521" }, { "key": "geid_144_351", "source": "3343", "target": "2370" }, { "key": "geid_144_352", "source": "6203", "target": "1660" }, { "key": "geid_144_353", "source": "8487", "target": "2121" }, { "key": "geid_144_354", "source": "5771", "target": "7337" }, { "key": "geid_144_355", "source": "4132", "target": "2274" }, { "key": "geid_144_356", "source": "6529", "target": "9570" }, { "key": "geid_144_357", "source": "1175", "target": "8137" }, { "key": "geid_144_358", "source": "8233", "target": "615" }, { "key": "geid_144_359", "source": "1462", "target": "9683" }, { "key": "geid_144_360", "source": "5849", "target": "8946" }, { "key": "geid_144_361", "source": "2971", "target": "660" }, { "key": "geid_144_362", "source": "8092", "target": "3949" }, { "key": "geid_144_363", "source": "1541", "target": "3863" }, { "key": "geid_144_364", "source": "3108", "target": "7330" }, { "key": "geid_144_365", "source": "2266", "target": "1689" }, { "key": "geid_144_366", "source": "9300", "target": "3482" }, { "key": "geid_144_367", "source": "3129", "target": "7120" }, { "key": "geid_144_368", "source": "319", "target": "103" }, { "key": "geid_144_369", "source": "1421", "target": "9628" }, { "key": "geid_144_370", "source": "53", "target": "5155" }, { "key": "geid_144_371", "source": "4559", "target": "6761" }, { "key": "geid_144_372", "source": "5216", "target": "6820" }, { "key": "geid_144_373", "source": "547", "target": "7119" }, { "key": "geid_144_374", "source": "7542", "target": "4169" }, { "key": "geid_144_375", "source": "3677", "target": "8647" }, { "key": "geid_144_376", "source": "8303", "target": "769" }, { "key": "geid_144_377", "source": "7244", "target": "2674" }, { "key": "geid_144_378", "source": "7784", "target": "5379" }, { "key": "geid_144_379", "source": "7338", "target": "6264" }, { "key": "geid_144_380", "source": "5753", "target": "6017" }, { "key": "geid_144_381", "source": "8877", "target": "6947" }, { "key": "geid_144_382", "source": "5700", "target": "3688" }, { "key": "geid_144_383", "source": "518", "target": "413" }, { "key": "geid_144_384", "source": "8656", "target": "9739" }, { "key": "geid_144_385", "source": "3933", "target": "1249" }, { "key": "geid_144_386", "source": "3056", "target": "5625" }, { "key": "geid_144_387", "source": "1004", "target": "8605" }, { "key": "geid_144_388", "source": "2429", "target": "3510" }, { "key": "geid_144_389", "source": "4356", "target": "2091" }, { "key": "geid_144_390", "source": "9696", "target": "7618" }, { "key": "geid_144_391", "source": "6157", "target": "7175" }, { "key": "geid_144_392", "source": "367", "target": "6670" }, { "key": "geid_144_393", "source": "4867", "target": "8897" }, { "key": "geid_144_394", "source": "6164", "target": "8268" }, { "key": "geid_144_395", "source": "6973", "target": "5458" }, { "key": "geid_144_396", "source": "4570", "target": "8360" }, { "key": "geid_144_397", "source": "8995", "target": "234" }, { "key": "geid_144_398", "source": "8277", "target": "5139" }, { "key": "geid_144_399", "source": "60", "target": "8214" }, { "key": "geid_144_400", "source": "1571", "target": "4855" }, { "key": "geid_144_401", "source": "9899", "target": "1680" }, { "key": "geid_144_402", "source": "2061", "target": "3532" }, { "key": "geid_144_403", "source": "4060", "target": "7830" }, { "key": "geid_144_404", "source": "668", "target": "6941" }, { "key": "geid_144_405", "source": "1406", "target": "887" }, { "key": "geid_144_406", "source": "738", "target": "1139" }, { "key": "geid_144_407", "source": "8466", "target": "9208" }, { "key": "geid_144_408", "source": "8715", "target": "9479" }, { "key": "geid_144_409", "source": "2420", "target": "370" }, { "key": "geid_144_410", "source": "5422", "target": "913" }, { "key": "geid_144_411", "source": "9521", "target": "9024" }, { "key": "geid_144_412", "source": "4901", "target": "3161" }, { "key": "geid_144_413", "source": "6561", "target": "1864" }, { "key": "geid_144_414", "source": "5612", "target": "3605" }, { "key": "geid_144_415", "source": "9427", "target": "4153" }, { "key": "geid_144_416", "source": "7209", "target": "4480" }, { "key": "geid_144_417", "source": "3679", "target": "742" }, { "key": "geid_144_418", "source": "3151", "target": "5816" }, { "key": "geid_144_419", "source": "1656", "target": "4672" }, { "key": "geid_144_420", "source": "911", "target": "6258" }, { "key": "geid_144_421", "source": "2049", "target": "5816" }, { "key": "geid_144_422", "source": "7679", "target": "2629" }, { "key": "geid_144_423", "source": "8857", "target": "9965" }, { "key": "geid_144_424", "source": "1194", "target": "500" }, { "key": "geid_144_425", "source": "4968", "target": "5814" }, { "key": "geid_144_426", "source": "269", "target": "2469" }, { "key": "geid_144_427", "source": "9416", "target": "5705" }, { "key": "geid_144_428", "source": "2786", "target": "2338" }, { "key": "geid_144_429", "source": "743", "target": "3878" }, { "key": "geid_144_430", "source": "9283", "target": "9161" }, { "key": "geid_144_431", "source": "2560", "target": "6947" }, { "key": "geid_144_432", "source": "3359", "target": "4965" }, { "key": "geid_144_433", "source": "8498", "target": "6521" }, { "key": "geid_144_434", "source": "8232", "target": "1586" }, { "key": "geid_144_435", "source": "5851", "target": "7352" }, { "key": "geid_144_436", "source": "1198", "target": "550" }, { "key": "geid_144_437", "source": "2278", "target": "812" }, { "key": "geid_144_438", "source": "7049", "target": "202" }, { "key": "geid_144_439", "source": "5168", "target": "6593" }, { "key": "geid_144_440", "source": "7617", "target": "440" }, { "key": "geid_144_441", "source": "5166", "target": "9042" }, { "key": "geid_144_442", "source": "4797", "target": "4541" }, { "key": "geid_144_443", "source": "4333", "target": "8793" }, { "key": "geid_144_444", "source": "2255", "target": "8567" }, { "key": "geid_144_445", "source": "7462", "target": "4768" }, { "key": "geid_144_446", "source": "7499", "target": "4354" }, { "key": "geid_144_447", "source": "5284", "target": "4244" }, { "key": "geid_144_448", "source": "4884", "target": "2942" }, { "key": "geid_144_449", "source": "453", "target": "5" }, { "key": "geid_144_450", "source": "1156", "target": "4250" }, { "key": "geid_144_451", "source": "3960", "target": "8040" }, { "key": "geid_144_452", "source": "6676", "target": "4285" }, { "key": "geid_144_453", "source": "4207", "target": "182" }, { "key": "geid_144_454", "source": "9651", "target": "8657" }, { "key": "geid_144_455", "source": "4056", "target": "9612" }, { "key": "geid_144_456", "source": "7171", "target": "3371" }, { "key": "geid_144_457", "source": "5469", "target": "4696" }, { "key": "geid_144_458", "source": "3238", "target": "4813" }, { "key": "geid_144_459", "source": "9770", "target": "6729" }, { "key": "geid_144_460", "source": "1539", "target": "1135" }, { "key": "geid_144_461", "source": "305", "target": "1982" }, { "key": "geid_144_462", "source": "7294", "target": "5291" }, { "key": "geid_144_463", "source": "3812", "target": "5078" }, { "key": "geid_144_464", "source": "3421", "target": "917" }, { "key": "geid_144_465", "source": "1891", "target": "1995" }, { "key": "geid_144_466", "source": "7397", "target": "7899" }, { "key": "geid_144_467", "source": "3650", "target": "6792" }, { "key": "geid_144_468", "source": "6636", "target": "4293" }, { "key": "geid_144_469", "source": "8199", "target": "1066" }, { "key": "geid_144_470", "source": "1429", "target": "3553" }, { "key": "geid_144_471", "source": "5687", "target": "1396" }, { "key": "geid_144_472", "source": "4042", "target": "9003" }, { "key": "geid_144_473", "source": "1429", "target": "6851" }, { "key": "geid_144_474", "source": "6509", "target": "4342" }, { "key": "geid_144_475", "source": "7779", "target": "6359" }, { "key": "geid_144_476", "source": "5158", "target": "4040" }, { "key": "geid_144_477", "source": "4520", "target": "9106" }, { "key": "geid_144_478", "source": "6035", "target": "6666" }, { "key": "geid_144_479", "source": "4753", "target": "3821" }, { "key": "geid_144_480", "source": "3102", "target": "8038" }, { "key": "geid_144_481", "source": "9984", "target": "1526" }, { "key": "geid_144_482", "source": "9679", "target": "9974" }, { "key": "geid_144_483", "source": "2335", "target": "280" }, { "key": "geid_144_484", "source": "8212", "target": "9988" }, { "key": "geid_144_485", "source": "8429", "target": "9921" }, { "key": "geid_144_486", "source": "2471", "target": "2316" }, { "key": "geid_144_487", "source": "555", "target": "5230" }, { "key": "geid_144_488", "source": "4761", "target": "9078" }, { "key": "geid_144_489", "source": "2919", "target": "8865" }, { "key": "geid_144_490", "source": "2898", "target": "7182" }, { "key": "geid_144_491", "source": "5125", "target": "9830" }, { "key": "geid_144_492", "source": "7310", "target": "7093" }, { "key": "geid_144_493", "source": "3204", "target": "2978" }, { "key": "geid_144_494", "source": "4196", "target": "6507" }, { "key": "geid_144_495", "source": "1213", "target": "2257" }, { "key": "geid_144_496", "source": "103", "target": "2099" }, { "key": "geid_144_497", "source": "2961", "target": "1009" }, { "key": "geid_144_498", "source": "2956", "target": "8980" }, { "key": "geid_144_499", "source": "4516", "target": "2679" }, { "key": "geid_144_500", "source": "9395", "target": "5537" }, { "key": "geid_144_501", "source": "9916", "target": "3207" }, { "key": "geid_144_502", "source": "9588", "target": "425" }, { "key": "geid_144_503", "source": "8219", "target": "182" }, { "key": "geid_144_504", "source": "9620", "target": "10" }, { "key": "geid_144_505", "source": "8788", "target": "8183" }, { "key": "geid_144_506", "source": "3323", "target": "689" }, { "key": "geid_144_507", "source": "4446", "target": "4907" }, { "key": "geid_144_508", "source": "9000", "target": "9280" }, { "key": "geid_144_509", "source": "3276", "target": "1091" }, { "key": "geid_144_510", "source": "883", "target": "5642" }, { "key": "geid_144_511", "source": "6145", "target": "874" }, { "key": "geid_144_512", "source": "2176", "target": "583" }, { "key": "geid_144_513", "source": "3022", "target": "2318" }, { "key": "geid_144_514", "source": "7397", "target": "8477" }, { "key": "geid_144_515", "source": "8861", "target": "8627" }, { "key": "geid_144_516", "source": "5316", "target": "2631" }, { "key": "geid_144_517", "source": "5776", "target": "4514" }, { "key": "geid_144_518", "source": "7175", "target": "2042" }, { "key": "geid_144_519", "source": "2545", "target": "7803" }, { "key": "geid_144_520", "source": "7329", "target": "4448" }, { "key": "geid_144_521", "source": "5280", "target": "8638" }, { "key": "geid_144_522", "source": "8585", "target": "7213" }, { "key": "geid_144_523", "source": "4449", "target": "1951" }, { "key": "geid_144_524", "source": "1331", "target": "305" }, { "key": "geid_144_525", "source": "7399", "target": "3937" }, { "key": "geid_144_526", "source": "6480", "target": "5129" }, { "key": "geid_144_527", "source": "7286", "target": "9098" }, { "key": "geid_144_528", "source": "7615", "target": "3672" }, { "key": "geid_144_529", "source": "2314", "target": "8737" }, { "key": "geid_144_530", "source": "6942", "target": "838" }, { "key": "geid_144_531", "source": "8420", "target": "7698" }, { "key": "geid_144_532", "source": "4886", "target": "5927" }, { "key": "geid_144_533", "source": "6950", "target": "857" }, { "key": "geid_144_534", "source": "9229", "target": "9305" }, { "key": "geid_144_535", "source": "866", "target": "1567" }, { "key": "geid_144_536", "source": "6372", "target": "560" }, { "key": "geid_144_537", "source": "8127", "target": "4113" }, { "key": "geid_144_538", "source": "660", "target": "9832" }, { "key": "geid_144_539", "source": "797", "target": "246" }, { "key": "geid_144_540", "source": "6777", "target": "6040" }, { "key": "geid_144_541", "source": "999", "target": "9753" }, { "key": "geid_144_542", "source": "4634", "target": "6276" }, { "key": "geid_144_543", "source": "9771", "target": "3833" }, { "key": "geid_144_544", "source": "4389", "target": "3187" }, { "key": "geid_144_545", "source": "9789", "target": "5352" }, { "key": "geid_144_546", "source": "8340", "target": "8550" }, { "key": "geid_144_547", "source": "5660", "target": "4070" }, { "key": "geid_144_548", "source": "1232", "target": "5842" }, { "key": "geid_144_549", "source": "658", "target": "5795" }, { "key": "geid_144_550", "source": "8803", "target": "6085" }, { "key": "geid_144_551", "source": "2538", "target": "5082" }, { "key": "geid_144_552", "source": "1315", "target": "8904" }, { "key": "geid_144_553", "source": "9047", "target": "4436" }, { "key": "geid_144_554", "source": "2614", "target": "5525" }, { "key": "geid_144_555", "source": "9556", "target": "9893" }, { "key": "geid_144_556", "source": "238", "target": "8902" }, { "key": "geid_144_557", "source": "7697", "target": "4580" }, { "key": "geid_144_558", "source": "3419", "target": "2176" }, { "key": "geid_144_559", "source": "2839", "target": "9544" }, { "key": "geid_144_560", "source": "9481", "target": "542" }, { "key": "geid_144_561", "source": "8549", "target": "1876" }, { "key": "geid_144_562", "source": "263", "target": "5099" }, { "key": "geid_144_563", "source": "9599", "target": "7887" }, { "key": "geid_144_564", "source": "6194", "target": "8407" }, { "key": "geid_144_565", "source": "5507", "target": "2440" }, { "key": "geid_144_566", "source": "8445", "target": "7952" }, { "key": "geid_144_567", "source": "4416", "target": "4051" }, { "key": "geid_144_568", "source": "3899", "target": "3786" }, { "key": "geid_144_569", "source": "9714", "target": "5257" }, { "key": "geid_144_570", "source": "1948", "target": "9554" }, { "key": "geid_144_571", "source": "4988", "target": "5865" }, { "key": "geid_144_572", "source": "591", "target": "9835" }, { "key": "geid_144_573", "source": "9346", "target": "653" }, { "key": "geid_144_574", "source": "430", "target": "6542" }, { "key": "geid_144_575", "source": "8600", "target": "4942" }, { "key": "geid_144_576", "source": "8515", "target": "7746" }, { "key": "geid_144_577", "source": "7234", "target": "8081" }, { "key": "geid_144_578", "source": "6965", "target": "9899" }, { "key": "geid_144_579", "source": "8998", "target": "6053" }, { "key": "geid_144_580", "source": "8400", "target": "3044" }, { "key": "geid_144_581", "source": "464", "target": "2391" }, { "key": "geid_144_582", "source": "8559", "target": "3930" }, { "key": "geid_144_583", "source": "3729", "target": "6328" }, { "key": "geid_144_584", "source": "9711", "target": "9312" }, { "key": "geid_144_585", "source": "4631", "target": "4549" }, { "key": "geid_144_586", "source": "5473", "target": "1753" }, { "key": "geid_144_587", "source": "4965", "target": "3492" }, { "key": "geid_144_588", "source": "6578", "target": "4746" }, { "key": "geid_144_589", "source": "7831", "target": "4885" }, { "key": "geid_144_590", "source": "7029", "target": "794" }, { "key": "geid_144_591", "source": "5918", "target": "4517" }, { "key": "geid_144_592", "source": "8526", "target": "237" }, { "key": "geid_144_593", "source": "3470", "target": "9448" }, { "key": "geid_144_594", "source": "8692", "target": "239" }, { "key": "geid_144_595", "source": "7497", "target": "606" }, { "key": "geid_144_596", "source": "7365", "target": "3826" }, { "key": "geid_144_597", "source": "9465", "target": "9122" }, { "key": "geid_144_598", "source": "4089", "target": "5426" }, { "key": "geid_144_599", "source": "3918", "target": "1157" }, { "key": "geid_144_600", "source": "3224", "target": "171" }, { "key": "geid_144_601", "source": "9392", "target": "369" }, { "key": "geid_144_602", "source": "5906", "target": "6745" }, { "key": "geid_144_603", "source": "7136", "target": "731" }, { "key": "geid_144_604", "source": "6659", "target": "9728" }, { "key": "geid_144_605", "source": "3491", "target": "7356" }, { "key": "geid_144_606", "source": "906", "target": "7771" }, { "key": "geid_144_607", "source": "1032", "target": "8098" }, { "key": "geid_144_608", "source": "5227", "target": "7697" }, { "key": "geid_144_609", "source": "8655", "target": "118" }, { "key": "geid_144_610", "source": "4199", "target": "3576" }, { "key": "geid_144_611", "source": "2451", "target": "3290" }, { "key": "geid_144_612", "source": "3964", "target": "7630" }, { "key": "geid_144_613", "source": "5050", "target": "6258" }, { "key": "geid_144_614", "source": "1311", "target": "743" }, { "key": "geid_144_615", "source": "3561", "target": "9951" }, { "key": "geid_144_616", "source": "5818", "target": "9211" }, { "key": "geid_144_617", "source": "8442", "target": "3508" }, { "key": "geid_144_618", "source": "4837", "target": "9657" }, { "key": "geid_144_619", "source": "4187", "target": "5568" }, { "key": "geid_144_620", "source": "2992", "target": "2439" }, { "key": "geid_144_621", "source": "4382", "target": "8230" }, { "key": "geid_144_622", "source": "2248", "target": "8096" }, { "key": "geid_144_623", "source": "6006", "target": "6143" }, { "key": "geid_144_624", "source": "551", "target": "9420" }, { "key": "geid_144_625", "source": "6468", "target": "630" }, { "key": "geid_144_626", "source": "8579", "target": "5263" }, { "key": "geid_144_627", "source": "4288", "target": "4305" }, { "key": "geid_144_628", "source": "7538", "target": "6847" }, { "key": "geid_144_629", "source": "8421", "target": "1911" }, { "key": "geid_144_630", "source": "4543", "target": "2735" }, { "key": "geid_144_631", "source": "553", "target": "1712" }, { "key": "geid_144_632", "source": "5574", "target": "2277" }, { "key": "geid_144_633", "source": "219", "target": "8118" }, { "key": "geid_144_634", "source": "4983", "target": "8436" }, { "key": "geid_144_635", "source": "2582", "target": "7915" }, { "key": "geid_144_636", "source": "5742", "target": "5542" }, { "key": "geid_144_637", "source": "2415", "target": "5363" }, { "key": "geid_144_638", "source": "1805", "target": "3204" }, { "key": "geid_144_639", "source": "1687", "target": "5054" }, { "key": "geid_144_640", "source": "1761", "target": "990" }, { "key": "geid_144_641", "source": "8579", "target": "9247" }, { "key": "geid_144_642", "source": "6097", "target": "7952" }, { "key": "geid_144_643", "source": "3935", "target": "3879" }, { "key": "geid_144_644", "source": "627", "target": "8107" }, { "key": "geid_144_645", "source": "7335", "target": "6474" }, { "key": "geid_144_646", "source": "4275", "target": "6638" }, { "key": "geid_144_647", "source": "6790", "target": "4661" }, { "key": "geid_144_648", "source": "8619", "target": "9909" }, { "key": "geid_144_649", "source": "3865", "target": "4701" }, { "key": "geid_144_650", "source": "5137", "target": "7983" }, { "key": "geid_144_651", "source": "5422", "target": "7332" }, { "key": "geid_144_652", "source": "5478", "target": "4978" }, { "key": "geid_144_653", "source": "4268", "target": "9161" }, { "key": "geid_144_654", "source": "1108", "target": "309" }, { "key": "geid_144_655", "source": "2756", "target": "1652" }, { "key": "geid_144_656", "source": "5984", "target": "9328" }, { "key": "geid_144_657", "source": "5932", "target": "4754" }, { "key": "geid_144_658", "source": "1709", "target": "767" }, { "key": "geid_144_659", "source": "3315", "target": "9567" }, { "key": "geid_144_660", "source": "1826", "target": "1925" }, { "key": "geid_144_661", "source": "7861", "target": "378" }, { "key": "geid_144_662", "source": "3655", "target": "7545" }, { "key": "geid_144_663", "source": "2110", "target": "5173" }, { "key": "geid_144_664", "source": "1655", "target": "1560" }, { "key": "geid_144_665", "source": "1646", "target": "3863" }, { "key": "geid_144_666", "source": "2392", "target": "3494" }, { "key": "geid_144_667", "source": "6425", "target": "9824" }, { "key": "geid_144_668", "source": "7153", "target": "4820" }, { "key": "geid_144_669", "source": "2630", "target": "2862" }, { "key": "geid_144_670", "source": "4192", "target": "3810" }, { "key": "geid_144_671", "source": "5224", "target": "7870" }, { "key": "geid_144_672", "source": "6758", "target": "2890" }, { "key": "geid_144_673", "source": "6788", "target": "5123" }, { "key": "geid_144_674", "source": "839", "target": "7103" }, { "key": "geid_144_675", "source": "4911", "target": "377" }, { "key": "geid_144_676", "source": "2309", "target": "5115" }, { "key": "geid_144_677", "source": "4320", "target": "4039" }, { "key": "geid_144_678", "source": "7703", "target": "396" }, { "key": "geid_144_679", "source": "1368", "target": "2274" }, { "key": "geid_144_680", "source": "5456", "target": "42" }, { "key": "geid_144_681", "source": "9014", "target": "9219" }, { "key": "geid_144_682", "source": "7999", "target": "6660" }, { "key": "geid_144_683", "source": "9397", "target": "9579" }, { "key": "geid_144_684", "source": "4715", "target": "6990" }, { "key": "geid_144_685", "source": "5177", "target": "4881" }, { "key": "geid_144_686", "source": "4243", "target": "4154" }, { "key": "geid_144_687", "source": "6619", "target": "5915" }, { "key": "geid_144_688", "source": "4046", "target": "9883" }, { "key": "geid_144_689", "source": "531", "target": "9858" }, { "key": "geid_144_690", "source": "7272", "target": "4254" }, { "key": "geid_144_691", "source": "5213", "target": "8591" }, { "key": "geid_144_692", "source": "9524", "target": "4009" }, { "key": "geid_144_693", "source": "8124", "target": "3019" }, { "key": "geid_144_694", "source": "2386", "target": "2944" }, { "key": "geid_144_695", "source": "672", "target": "8001" }, { "key": "geid_144_696", "source": "5274", "target": "8719" }, { "key": "geid_144_697", "source": "9914", "target": "7515" }, { "key": "geid_144_698", "source": "2085", "target": "6544" }, { "key": "geid_144_699", "source": "1129", "target": "4464" }, { "key": "geid_144_700", "source": "1708", "target": "9692" }, { "key": "geid_144_701", "source": "4012", "target": "855" }, { "key": "geid_144_702", "source": "5111", "target": "6665" }, { "key": "geid_144_703", "source": "368", "target": "9319" }, { "key": "geid_144_704", "source": "8468", "target": "2859" }, { "key": "geid_144_705", "source": "4787", "target": "1932" }, { "key": "geid_144_706", "source": "2521", "target": "973" }, { "key": "geid_144_707", "source": "77", "target": "3324" }, { "key": "geid_144_708", "source": "9589", "target": "8163" }, { "key": "geid_144_709", "source": "8161", "target": "4278" }, { "key": "geid_144_710", "source": "3461", "target": "960" }, { "key": "geid_144_711", "source": "5852", "target": "4664" }, { "key": "geid_144_712", "source": "5661", "target": "1740" }, { "key": "geid_144_713", "source": "4673", "target": "3162" }, { "key": "geid_144_714", "source": "6511", "target": "1215" }, { "key": "geid_144_715", "source": "2770", "target": "4782" }, { "key": "geid_144_716", "source": "533", "target": "9293" }, { "key": "geid_144_717", "source": "1389", "target": "4459" }, { "key": "geid_144_718", "source": "5306", "target": "6162" }, { "key": "geid_144_719", "source": "8684", "target": "8565" }, { "key": "geid_144_720", "source": "6410", "target": "7963" }, { "key": "geid_144_721", "source": "1262", "target": "5856" }, { "key": "geid_144_722", "source": "4736", "target": "73" }, { "key": "geid_144_723", "source": "3969", "target": "3170" }, { "key": "geid_144_724", "source": "4035", "target": "2202" }, { "key": "geid_144_725", "source": "2322", "target": "2319" }, { "key": "geid_144_726", "source": "4370", "target": "9059" }, { "key": "geid_144_727", "source": "6565", "target": "8759" }, { "key": "geid_144_728", "source": "9518", "target": "5128" }, { "key": "geid_144_729", "source": "5755", "target": "7315" }, { "key": "geid_144_730", "source": "949", "target": "2754" }, { "key": "geid_144_731", "source": "8766", "target": "2437" }, { "key": "geid_144_732", "source": "539", "target": "7800" }, { "key": "geid_144_733", "source": "6775", "target": "8025" }, { "key": "geid_144_734", "source": "8811", "target": "3407" }, { "key": "geid_144_735", "source": "1201", "target": "6156" }, { "key": "geid_144_736", "source": "2652", "target": "79" }, { "key": "geid_144_737", "source": "5930", "target": "2528" }, { "key": "geid_144_738", "source": "7185", "target": "8153" }, { "key": "geid_144_739", "source": "6506", "target": "9893" }, { "key": "geid_144_740", "source": "4951", "target": "6199" }, { "key": "geid_144_741", "source": "2116", "target": "8047" }, { "key": "geid_144_742", "source": "8620", "target": "9268" }, { "key": "geid_144_743", "source": "656", "target": "2693" }, { "key": "geid_144_744", "source": "5507", "target": "289" }, { "key": "geid_144_745", "source": "6814", "target": "4194" }, { "key": "geid_144_746", "source": "4271", "target": "2762" }, { "key": "geid_144_747", "source": "8083", "target": "79" }, { "key": "geid_144_748", "source": "728", "target": "5010" }, { "key": "geid_144_749", "source": "7818", "target": "4618" }, { "key": "geid_144_750", "source": "6601", "target": "8300" }, { "key": "geid_144_751", "source": "7405", "target": "8877" }, { "key": "geid_144_752", "source": "3420", "target": "1545" }, { "key": "geid_144_753", "source": "6614", "target": "6871" }, { "key": "geid_144_754", "source": "6190", "target": "9931" }, { "key": "geid_144_755", "source": "4967", "target": "8539" }, { "key": "geid_144_756", "source": "6740", "target": "8921" }, { "key": "geid_144_757", "source": "4237", "target": "8375" }, { "key": "geid_144_758", "source": "2596", "target": "4584" }, { "key": "geid_144_759", "source": "8597", "target": "6962" }, { "key": "geid_144_760", "source": "1316", "target": "8638" }, { "key": "geid_144_761", "source": "3854", "target": "4886" }, { "key": "geid_144_762", "source": "3619", "target": "4151" }, { "key": "geid_144_763", "source": "8954", "target": "7305" }, { "key": "geid_144_764", "source": "909", "target": "4398" }, { "key": "geid_144_765", "source": "7236", "target": "8710" }, { "key": "geid_144_766", "source": "730", "target": "488" }, { "key": "geid_144_767", "source": "8672", "target": "5338" }, { "key": "geid_144_768", "source": "9435", "target": "1071" }, { "key": "geid_144_769", "source": "2698", "target": "8384" }, { "key": "geid_144_770", "source": "7957", "target": "4533" }, { "key": "geid_144_771", "source": "4923", "target": "213" }, { "key": "geid_144_772", "source": "4312", "target": "8776" }, { "key": "geid_144_773", "source": "4959", "target": "1847" }, { "key": "geid_144_774", "source": "7366", "target": "3851" }, { "key": "geid_144_775", "source": "5344", "target": "5897" }, { "key": "geid_144_776", "source": "2077", "target": "5580" }, { "key": "geid_144_777", "source": "5281", "target": "3058" }, { "key": "geid_144_778", "source": "2597", "target": "9623" }, { "key": "geid_144_779", "source": "9103", "target": "4904" }, { "key": "geid_144_780", "source": "630", "target": "6969" }, { "key": "geid_144_781", "source": "9397", "target": "3667" }, { "key": "geid_144_782", "source": "8787", "target": "4504" }, { "key": "geid_144_783", "source": "9704", "target": "6871" }, { "key": "geid_144_784", "source": "1502", "target": "653" }, { "key": "geid_144_785", "source": "1046", "target": "8255" }, { "key": "geid_144_786", "source": "7972", "target": "670" }, { "key": "geid_144_787", "source": "810", "target": "4894" }, { "key": "geid_144_788", "source": "9319", "target": "5512" }, { "key": "geid_144_789", "source": "877", "target": "3514" }, { "key": "geid_144_790", "source": "3971", "target": "446" }, { "key": "geid_144_791", "source": "2036", "target": "8642" }, { "key": "geid_144_792", "source": "8267", "target": "2376" }, { "key": "geid_144_793", "source": "2485", "target": "5394" }, { "key": "geid_144_794", "source": "7001", "target": "9678" }, { "key": "geid_144_795", "source": "7133", "target": "10" }, { "key": "geid_144_796", "source": "5468", "target": "7675" }, { "key": "geid_144_797", "source": "1259", "target": "650" }, { "key": "geid_144_798", "source": "5854", "target": "9735" }, { "key": "geid_144_799", "source": "2831", "target": "6833" }, { "key": "geid_144_800", "source": "5701", "target": "5788" }, { "key": "geid_144_801", "source": "8744", "target": "3351" }, { "key": "geid_144_802", "source": "6585", "target": "127" }, { "key": "geid_144_803", "source": "7989", "target": "4788" }, { "key": "geid_144_804", "source": "1911", "target": "4700" }, { "key": "geid_144_805", "source": "7201", "target": "2058" }, { "key": "geid_144_806", "source": "3714", "target": "6890" }, { "key": "geid_144_807", "source": "5813", "target": "5916" }, { "key": "geid_144_808", "source": "2706", "target": "1107" }, { "key": "geid_144_809", "source": "7247", "target": "3334" }, { "key": "geid_144_810", "source": "6672", "target": "4830" }, { "key": "geid_144_811", "source": "7062", "target": "6736" }, { "key": "geid_144_812", "source": "2168", "target": "4688" }, { "key": "geid_144_813", "source": "9655", "target": "984" }, { "key": "geid_144_814", "source": "293", "target": "1904" }, { "key": "geid_144_815", "source": "4149", "target": "2412" }, { "key": "geid_144_816", "source": "2004", "target": "4382" }, { "key": "geid_144_817", "source": "9486", "target": "648" }, { "key": "geid_144_818", "source": "3321", "target": "9968" }, { "key": "geid_144_819", "source": "8353", "target": "7704" }, { "key": "geid_144_820", "source": "9002", "target": "9724" }, { "key": "geid_144_821", "source": "115", "target": "7021" }, { "key": "geid_144_822", "source": "6651", "target": "3770" }, { "key": "geid_144_823", "source": "9430", "target": "4120" }, { "key": "geid_144_824", "source": "1228", "target": "489" }, { "key": "geid_144_825", "source": "8694", "target": "9496" }, { "key": "geid_144_826", "source": "7981", "target": "3641" }, { "key": "geid_144_827", "source": "7698", "target": "5888" }, { "key": "geid_144_828", "source": "2311", "target": "5330" }, { "key": "geid_144_829", "source": "5118", "target": "6205" }, { "key": "geid_144_830", "source": "8665", "target": "8474" }, { "key": "geid_144_831", "source": "8955", "target": "6166" }, { "key": "geid_144_832", "source": "1401", "target": "7147" }, { "key": "geid_144_833", "source": "733", "target": "6917" }, { "key": "geid_144_834", "source": "6201", "target": "3943" }, { "key": "geid_144_835", "source": "2754", "target": "4890" }, { "key": "geid_144_836", "source": "8568", "target": "6400" }, { "key": "geid_144_837", "source": "3846", "target": "3775" }, { "key": "geid_144_838", "source": "1585", "target": "8038" }, { "key": "geid_144_839", "source": "1137", "target": "6468" }, { "key": "geid_144_840", "source": "981", "target": "314" }, { "key": "geid_144_841", "source": "356", "target": "8568" }, { "key": "geid_144_842", "source": "211", "target": "7263" }, { "key": "geid_144_843", "source": "9168", "target": "645" }, { "key": "geid_144_844", "source": "7221", "target": "5206" }, { "key": "geid_144_845", "source": "3623", "target": "1151" }, { "key": "geid_144_846", "source": "2457", "target": "8767" }, { "key": "geid_144_847", "source": "1911", "target": "5100" }, { "key": "geid_144_848", "source": "3317", "target": "9982" }, { "key": "geid_144_849", "source": "6212", "target": "1272" }, { "key": "geid_144_850", "source": "651", "target": "8761" }, { "key": "geid_144_851", "source": "1112", "target": "9634" }, { "key": "geid_144_852", "source": "2012", "target": "368" }, { "key": "geid_144_853", "source": "8308", "target": "7254" }, { "key": "geid_144_854", "source": "6976", "target": "8990" }, { "key": "geid_144_855", "source": "9096", "target": "1323" }, { "key": "geid_144_856", "source": "3529", "target": "7948" }, { "key": "geid_144_857", "source": "8652", "target": "9613" }, { "key": "geid_144_858", "source": "166", "target": "5363" }, { "key": "geid_144_859", "source": "5488", "target": "5912" }, { "key": "geid_144_860", "source": "63", "target": "1647" }, { "key": "geid_144_861", "source": "8994", "target": "6300" }, { "key": "geid_144_862", "source": "7772", "target": "548" }, { "key": "geid_144_863", "source": "8331", "target": "620" }, { "key": "geid_144_864", "source": "1056", "target": "2783" }, { "key": "geid_144_865", "source": "8303", "target": "9552" }, { "key": "geid_144_866", "source": "7931", "target": "3834" }, { "key": "geid_144_867", "source": "509", "target": "7842" }, { "key": "geid_144_868", "source": "6700", "target": "618" }, { "key": "geid_144_869", "source": "9824", "target": "810" }, { "key": "geid_144_870", "source": "7977", "target": "5307" }, { "key": "geid_144_871", "source": "1701", "target": "1344" }, { "key": "geid_144_872", "source": "8795", "target": "2460" }, { "key": "geid_144_873", "source": "472", "target": "6828" }, { "key": "geid_144_874", "source": "5565", "target": "3882" }, { "key": "geid_144_875", "source": "2657", "target": "7508" }, { "key": "geid_144_876", "source": "231", "target": "2143" }, { "key": "geid_144_877", "source": "3527", "target": "8526" }, { "key": "geid_144_878", "source": "6343", "target": "6088" }, { "key": "geid_144_879", "source": "7067", "target": "2351" }, { "key": "geid_144_880", "source": "9851", "target": "8191" }, { "key": "geid_144_881", "source": "4685", "target": "3153" }, { "key": "geid_144_882", "source": "9879", "target": "9365" }, { "key": "geid_144_883", "source": "2728", "target": "3791" }, { "key": "geid_144_884", "source": "3440", "target": "3249" }, { "key": "geid_144_885", "source": "2527", "target": "1138" }, { "key": "geid_144_886", "source": "897", "target": "5057" }, { "key": "geid_144_887", "source": "160", "target": "3162" }, { "key": "geid_144_888", "source": "6764", "target": "354" }, { "key": "geid_144_889", "source": "2690", "target": "6075" }, { "key": "geid_144_890", "source": "6428", "target": "7171" }, { "key": "geid_144_891", "source": "3140", "target": "7536" }, { "key": "geid_144_892", "source": "7887", "target": "4311" }, { "key": "geid_144_893", "source": "7412", "target": "841" }, { "key": "geid_144_894", "source": "7174", "target": "6183" }, { "key": "geid_144_895", "source": "7174", "target": "7906" }, { "key": "geid_144_896", "source": "6036", "target": "1689" }, { "key": "geid_144_897", "source": "9314", "target": "1313" }, { "key": "geid_144_898", "source": "1924", "target": "6799" }, { "key": "geid_144_899", "source": "2080", "target": "1329" }, { "key": "geid_144_900", "source": "3977", "target": "8459" }, { "key": "geid_144_901", "source": "5394", "target": "9820" }, { "key": "geid_144_902", "source": "4757", "target": "2902" }, { "key": "geid_144_903", "source": "3770", "target": "2793" }, { "key": "geid_144_904", "source": "1338", "target": "2765" }, { "key": "geid_144_905", "source": "6906", "target": "6880" }, { "key": "geid_144_906", "source": "1192", "target": "5605" }, { "key": "geid_144_907", "source": "9790", "target": "1415" }, { "key": "geid_144_908", "source": "5720", "target": "4240" }, { "key": "geid_144_909", "source": "2289", "target": "10" }, { "key": "geid_144_910", "source": "7324", "target": "9079" }, { "key": "geid_144_911", "source": "7470", "target": "8570" }, { "key": "geid_144_912", "source": "7282", "target": "8672" }, { "key": "geid_144_913", "source": "233", "target": "207" }, { "key": "geid_144_914", "source": "1649", "target": "9688" }, { "key": "geid_144_915", "source": "7612", "target": "2398" }, { "key": "geid_144_916", "source": "5641", "target": "8223" }, { "key": "geid_144_917", "source": "5484", "target": "534" }, { "key": "geid_144_918", "source": "8599", "target": "3964" }, { "key": "geid_144_919", "source": "1952", "target": "8438" }, { "key": "geid_144_920", "source": "6895", "target": "2221" }, { "key": "geid_144_921", "source": "3400", "target": "1330" }, { "key": "geid_144_922", "source": "4103", "target": "6790" }, { "key": "geid_144_923", "source": "22", "target": "1734" }, { "key": "geid_144_924", "source": "6187", "target": "8851" }, { "key": "geid_144_925", "source": "8647", "target": "8820" }, { "key": "geid_144_926", "source": "7809", "target": "3531" }, { "key": "geid_144_927", "source": "1348", "target": "9552" }, { "key": "geid_144_928", "source": "6773", "target": "8693" }, { "key": "geid_144_929", "source": "8855", "target": "2792" }, { "key": "geid_144_930", "source": "3115", "target": "2490" }, { "key": "geid_144_931", "source": "3815", "target": "1356" }, { "key": "geid_144_932", "source": "118", "target": "8006" }, { "key": "geid_144_933", "source": "3119", "target": "298" }, { "key": "geid_144_934", "source": "747", "target": "2302" }, { "key": "geid_144_935", "source": "1480", "target": "1074" }, { "key": "geid_144_936", "source": "6389", "target": "8424" }, { "key": "geid_144_937", "source": "6073", "target": "3047" }, { "key": "geid_144_938", "source": "697", "target": "8950" }, { "key": "geid_144_939", "source": "6340", "target": "9946" }, { "key": "geid_144_940", "source": "8817", "target": "1427" }, { "key": "geid_144_941", "source": "6488", "target": "5953" }, { "key": "geid_144_942", "source": "7545", "target": "6657" }, { "key": "geid_144_943", "source": "9723", "target": "8978" }, { "key": "geid_144_944", "source": "3810", "target": "9103" }, { "key": "geid_144_945", "source": "2440", "target": "1667" }, { "key": "geid_144_946", "source": "270", "target": "6439" }, { "key": "geid_144_947", "source": "2484", "target": "9655" }, { "key": "geid_144_948", "source": "7354", "target": "8480" }, { "key": "geid_144_949", "source": "4614", "target": "3030" }, { "key": "geid_144_950", "source": "4611", "target": "253" }, { "key": "geid_144_951", "source": "6707", "target": "432" }, { "key": "geid_144_952", "source": "7808", "target": "6750" }, { "key": "geid_144_953", "source": "3487", "target": "9271" }, { "key": "geid_144_954", "source": "3893", "target": "2164" }, { "key": "geid_144_955", "source": "465", "target": "1403" }, { "key": "geid_144_956", "source": "4190", "target": "3151" }, { "key": "geid_144_957", "source": "3928", "target": "8167" }, { "key": "geid_144_958", "source": "773", "target": "9950" }, { "key": "geid_144_959", "source": "1604", "target": "8116" }, { "key": "geid_144_960", "source": "6005", "target": "1749" }, { "key": "geid_144_961", "source": "2231", "target": "5677" }, { "key": "geid_144_962", "source": "3254", "target": "4973" }, { "key": "geid_144_963", "source": "9025", "target": "5895" }, { "key": "geid_144_964", "source": "1924", "target": "619" }, { "key": "geid_144_965", "source": "5565", "target": "6226" }, { "key": "geid_144_966", "source": "2701", "target": "3536" }, { "key": "geid_144_967", "source": "7150", "target": "2496" }, { "key": "geid_144_968", "source": "8721", "target": "7080" }, { "key": "geid_144_969", "source": "6316", "target": "3147" }, { "key": "geid_144_970", "source": "8154", "target": "9532" }, { "key": "geid_144_971", "source": "883", "target": "8345" }, { "key": "geid_144_972", "source": "8092", "target": "9057" }, { "key": "geid_144_973", "source": "5099", "target": "2789" }, { "key": "geid_144_974", "source": "6747", "target": "889" }, { "key": "geid_144_975", "source": "2089", "target": "8302" }, { "key": "geid_144_976", "source": "9962", "target": "3240" }, { "key": "geid_144_977", "source": "5202", "target": "5137" }, { "key": "geid_144_978", "source": "6060", "target": "6573" }, { "key": "geid_144_979", "source": "7558", "target": "7620" }, { "key": "geid_144_980", "source": "231", "target": "6989" }, { "key": "geid_144_981", "source": "1530", "target": "8497" }, { "key": "geid_144_982", "source": "6166", "target": "6246" }, { "key": "geid_144_983", "source": "4262", "target": "8757" }, { "key": "geid_144_984", "source": "5154", "target": "3605" }, { "key": "geid_144_985", "source": "6059", "target": "4117" }, { "key": "geid_144_986", "source": "4449", "target": "9342" }, { "key": "geid_144_987", "source": "6257", "target": "5579" }, { "key": "geid_144_988", "source": "718", "target": "672" }, { "key": "geid_144_989", "source": "6143", "target": "4724" }, { "key": "geid_144_990", "source": "7482", "target": "2938" }, { "key": "geid_144_991", "source": "9141", "target": "4360" }, { "key": "geid_144_992", "source": "2070", "target": "3021" }, { "key": "geid_144_993", "source": "4508", "target": "4181" }, { "key": "geid_144_994", "source": "9119", "target": "3841" }, { "key": "geid_144_995", "source": "3343", "target": "925" }, { "key": "geid_144_996", "source": "832", "target": "9254" }, { "key": "geid_144_997", "source": "7947", "target": "4724" }, { "key": "geid_144_998", "source": "6669", "target": "514" }, { "key": "geid_144_999", "source": "3217", "target": "7871" }, { "key": "geid_144_1000", "source": "7100", "target": "6489" }, { "key": "geid_144_1001", "source": "7522", "target": "7333" }, { "key": "geid_144_1002", "source": "9324", "target": "1003" }, { "key": "geid_144_1003", "source": "8117", "target": "9028" }, { "key": "geid_144_1004", "source": "2280", "target": "1826" }, { "key": "geid_144_1005", "source": "9355", "target": "6158" }, { "key": "geid_144_1006", "source": "7667", "target": "4298" }, { "key": "geid_144_1007", "source": "2463", "target": "8554" }, { "key": "geid_144_1008", "source": "6731", "target": "4443" }, { "key": "geid_144_1009", "source": "9080", "target": "3729" }, { "key": "geid_144_1010", "source": "5745", "target": "3589" }, { "key": "geid_144_1011", "source": "7824", "target": "5260" }, { "key": "geid_144_1012", "source": "6758", "target": "4138" }, { "key": "geid_144_1013", "source": "9102", "target": "6698" }, { "key": "geid_144_1014", "source": "8894", "target": "4706" }, { "key": "geid_144_1015", "source": "3754", "target": "1193" }, { "key": "geid_144_1016", "source": "9869", "target": "6332" }, { "key": "geid_144_1017", "source": "3697", "target": "436" }, { "key": "geid_144_1018", "source": "8391", "target": "1588" }, { "key": "geid_144_1019", "source": "8782", "target": "8704" }, { "key": "geid_144_1020", "source": "2291", "target": "9533" }, { "key": "geid_144_1021", "source": "8935", "target": "5071" }, { "key": "geid_144_1022", "source": "1757", "target": "2763" }, { "key": "geid_144_1023", "source": "1142", "target": "8742" }, { "key": "geid_144_1024", "source": "9724", "target": "5821" }, { "key": "geid_144_1025", "source": "429", "target": "1158" }, { "key": "geid_144_1026", "source": "7707", "target": "4673" }, { "key": "geid_144_1027", "source": "9514", "target": "5442" }, { "key": "geid_144_1028", "source": "7465", "target": "4008" }, { "key": "geid_144_1029", "source": "3798", "target": "6615" }, { "key": "geid_144_1030", "source": "482", "target": "3345" }, { "key": "geid_144_1031", "source": "944", "target": "6118" }, { "key": "geid_144_1032", "source": "9927", "target": "4323" }, { "key": "geid_144_1033", "source": "8017", "target": "7690" }, { "key": "geid_144_1034", "source": "6660", "target": "169" }, { "key": "geid_144_1035", "source": "4780", "target": "1904" }, { "key": "geid_144_1036", "source": "5986", "target": "7371" }, { "key": "geid_144_1037", "source": "5928", "target": "1352" }, { "key": "geid_144_1038", "source": "7683", "target": "5442" }, { "key": "geid_144_1039", "source": "5065", "target": "7130" }, { "key": "geid_144_1040", "source": "7443", "target": "14" }, { "key": "geid_144_1041", "source": "509", "target": "6560" }, { "key": "geid_144_1042", "source": "3580", "target": "5779" }, { "key": "geid_144_1043", "source": "1694", "target": "7291" }, { "key": "geid_144_1044", "source": "7437", "target": "756" }, { "key": "geid_144_1045", "source": "2414", "target": "2743" }, { "key": "geid_144_1046", "source": "9106", "target": "2884" }, { "key": "geid_144_1047", "source": "4321", "target": "9746" }, { "key": "geid_144_1048", "source": "4570", "target": "3687" }, { "key": "geid_144_1049", "source": "630", "target": "8208" }, { "key": "geid_144_1050", "source": "5368", "target": "6085" }, { "key": "geid_144_1051", "source": "978", "target": "7835" }, { "key": "geid_144_1052", "source": "2830", "target": "2396" }, { "key": "geid_144_1053", "source": "2429", "target": "4452" }, { "key": "geid_144_1054", "source": "619", "target": "6396" }, { "key": "geid_144_1055", "source": "3255", "target": "2423" }, { "key": "geid_144_1056", "source": "6744", "target": "3129" }, { "key": "geid_144_1057", "source": "2031", "target": "3954" }, { "key": "geid_144_1058", "source": "3474", "target": "3290" }, { "key": "geid_144_1059", "source": "5094", "target": "5104" }, { "key": "geid_144_1060", "source": "5238", "target": "5331" }, { "key": "geid_144_1061", "source": "4920", "target": "6338" }, { "key": "geid_144_1062", "source": "1188", "target": "7001" }, { "key": "geid_144_1063", "source": "9306", "target": "5659" }, { "key": "geid_144_1064", "source": "3810", "target": "1316" }, { "key": "geid_144_1065", "source": "3346", "target": "1816" }, { "key": "geid_144_1066", "source": "3110", "target": "2236" }, { "key": "geid_144_1067", "source": "4256", "target": "2726" }, { "key": "geid_144_1068", "source": "1130", "target": "1245" }, { "key": "geid_144_1069", "source": "3962", "target": "2806" }, { "key": "geid_144_1070", "source": "6416", "target": "1175" }, { "key": "geid_144_1071", "source": "6181", "target": "2837" }, { "key": "geid_144_1072", "source": "1583", "target": "3591" }, { "key": "geid_144_1073", "source": "8774", "target": "4228" }, { "key": "geid_144_1074", "source": "5757", "target": "2685" }, { "key": "geid_144_1075", "source": "1261", "target": "5381" }, { "key": "geid_144_1076", "source": "1192", "target": "6979" }, { "key": "geid_144_1077", "source": "1062", "target": "1535" }, { "key": "geid_144_1078", "source": "6792", "target": "2506" }, { "key": "geid_144_1079", "source": "7239", "target": "5993" }, { "key": "geid_144_1080", "source": "1764", "target": "2513" }, { "key": "geid_144_1081", "source": "2617", "target": "722" }, { "key": "geid_144_1082", "source": "6900", "target": "7212" }, { "key": "geid_144_1083", "source": "5990", "target": "3454" }, { "key": "geid_144_1084", "source": "671", "target": "5546" }, { "key": "geid_144_1085", "source": "3272", "target": "8322" }, { "key": "geid_144_1086", "source": "4014", "target": "75" }, { "key": "geid_144_1087", "source": "3505", "target": "1839" }, { "key": "geid_144_1088", "source": "6579", "target": "7391" }, { "key": "geid_144_1089", "source": "466", "target": "4686" }, { "key": "geid_144_1090", "source": "3905", "target": "4093" }, { "key": "geid_144_1091", "source": "6584", "target": "8376" }, { "key": "geid_144_1092", "source": "7013", "target": "8924" }, { "key": "geid_144_1093", "source": "5513", "target": "3047" }, { "key": "geid_144_1094", "source": "1666", "target": "3284" }, { "key": "geid_144_1095", "source": "446", "target": "5166" }, { "key": "geid_144_1096", "source": "8563", "target": "3615" }, { "key": "geid_144_1097", "source": "304", "target": "1846" }, { "key": "geid_144_1098", "source": "9212", "target": "3261" }, { "key": "geid_144_1099", "source": "5441", "target": "7049" }, { "key": "geid_144_1100", "source": "9810", "target": "6569" }, { "key": "geid_144_1101", "source": "852", "target": "7640" }, { "key": "geid_144_1102", "source": "8573", "target": "1881" }, { "key": "geid_144_1103", "source": "2124", "target": "2703" }, { "key": "geid_144_1104", "source": "5084", "target": "6181" }, { "key": "geid_144_1105", "source": "9651", "target": "3591" }, { "key": "geid_144_1106", "source": "1629", "target": "3342" }, { "key": "geid_144_1107", "source": "8286", "target": "5350" }, { "key": "geid_144_1108", "source": "6034", "target": "5048" }, { "key": "geid_144_1109", "source": "6386", "target": "7294" }, { "key": "geid_144_1110", "source": "5141", "target": "5980" }, { "key": "geid_144_1111", "source": "749", "target": "2456" }, { "key": "geid_144_1112", "source": "8899", "target": "84" }, { "key": "geid_144_1113", "source": "909", "target": "9932" }, { "key": "geid_144_1114", "source": "6583", "target": "4072" }, { "key": "geid_144_1115", "source": "3945", "target": "3027" }, { "key": "geid_144_1116", "source": "2038", "target": "1255" }, { "key": "geid_144_1117", "source": "2967", "target": "7103" }, { "key": "geid_144_1118", "source": "5272", "target": "202" }, { "key": "geid_144_1119", "source": "6987", "target": "3120" }, { "key": "geid_144_1120", "source": "258", "target": "1312" }, { "key": "geid_144_1121", "source": "6397", "target": "8921" }, { "key": "geid_144_1122", "source": "5396", "target": "6054" }, { "key": "geid_144_1123", "source": "4725", "target": "9651" }, { "key": "geid_144_1124", "source": "8482", "target": "9565" }, { "key": "geid_144_1125", "source": "7030", "target": "4478" }, { "key": "geid_144_1126", "source": "9508", "target": "7118" }, { "key": "geid_144_1127", "source": "7296", "target": "6609" }, { "key": "geid_144_1128", "source": "9272", "target": "2154" }, { "key": "geid_144_1129", "source": "4746", "target": "3526" }, { "key": "geid_144_1130", "source": "2541", "target": "6961" }, { "key": "geid_144_1131", "source": "3790", "target": "6269" }, { "key": "geid_144_1132", "source": "4810", "target": "1848" }, { "key": "geid_144_1133", "source": "7475", "target": "4186" }, { "key": "geid_144_1134", "source": "4077", "target": "6647" }, { "key": "geid_144_1135", "source": "8791", "target": "4447" }, { "key": "geid_144_1136", "source": "1502", "target": "4727" }, { "key": "geid_144_1137", "source": "503", "target": "4577" }, { "key": "geid_144_1138", "source": "9103", "target": "166" }, { "key": "geid_144_1139", "source": "1384", "target": "9354" }, { "key": "geid_144_1140", "source": "9638", "target": "6248" }, { "key": "geid_144_1141", "source": "376", "target": "9376" }, { "key": "geid_144_1142", "source": "3053", "target": "9626" }, { "key": "geid_144_1143", "source": "2024", "target": "2840" }, { "key": "geid_144_1144", "source": "2427", "target": "3051" }, { "key": "geid_144_1145", "source": "2290", "target": "1904" }, { "key": "geid_144_1146", "source": "7163", "target": "7898" }, { "key": "geid_144_1147", "source": "5730", "target": "9721" }, { "key": "geid_144_1148", "source": "6746", "target": "4234" }, { "key": "geid_144_1149", "source": "422", "target": "6866" }, { "key": "geid_144_1150", "source": "7958", "target": "6051" }, { "key": "geid_144_1151", "source": "9652", "target": "3396" }, { "key": "geid_144_1152", "source": "1942", "target": "3819" }, { "key": "geid_144_1153", "source": "237", "target": "5519" }, { "key": "geid_144_1154", "source": "9785", "target": "1441" }, { "key": "geid_144_1155", "source": "5551", "target": "8561" }, { "key": "geid_144_1156", "source": "9260", "target": "770" }, { "key": "geid_144_1157", "source": "9329", "target": "7955" }, { "key": "geid_144_1158", "source": "7209", "target": "5659" }, { "key": "geid_144_1159", "source": "3466", "target": "5028" }, { "key": "geid_144_1160", "source": "496", "target": "2361" }, { "key": "geid_144_1161", "source": "8399", "target": "2393" }, { "key": "geid_144_1162", "source": "3527", "target": "260" }, { "key": "geid_144_1163", "source": "6376", "target": "2196" }, { "key": "geid_144_1164", "source": "1438", "target": "4720" }, { "key": "geid_144_1165", "source": "7490", "target": "9473" }, { "key": "geid_144_1166", "source": "7043", "target": "2067" }, { "key": "geid_144_1167", "source": "6070", "target": "5050" }, { "key": "geid_144_1168", "source": "6824", "target": "2040" }, { "key": "geid_144_1169", "source": "2642", "target": "1393" }, { "key": "geid_144_1170", "source": "2373", "target": "8770" }, { "key": "geid_144_1171", "source": "4152", "target": "98" }, { "key": "geid_144_1172", "source": "4283", "target": "7396" }, { "key": "geid_144_1173", "source": "8776", "target": "6848" }, { "key": "geid_144_1174", "source": "2992", "target": "6914" }, { "key": "geid_144_1175", "source": "3522", "target": "9190" }, { "key": "geid_144_1176", "source": "213", "target": "3153" }, { "key": "geid_144_1177", "source": "9841", "target": "8497" }, { "key": "geid_144_1178", "source": "467", "target": "7084" }, { "key": "geid_144_1179", "source": "9669", "target": "6246" }, { "key": "geid_144_1180", "source": "188", "target": "2784" }, { "key": "geid_144_1181", "source": "8750", "target": "8648" }, { "key": "geid_144_1182", "source": "7430", "target": "5541" }, { "key": "geid_144_1183", "source": "7765", "target": "6336" }, { "key": "geid_144_1184", "source": "9983", "target": "8297" }, { "key": "geid_144_1185", "source": "2278", "target": "5420" }, { "key": "geid_144_1186", "source": "113", "target": "8536" }, { "key": "geid_144_1187", "source": "4615", "target": "8218" }, { "key": "geid_144_1188", "source": "2872", "target": "757" }, { "key": "geid_144_1189", "source": "4829", "target": "9868" }, { "key": "geid_144_1190", "source": "59", "target": "678" }, { "key": "geid_144_1191", "source": "1645", "target": "3549" }, { "key": "geid_144_1192", "source": "9251", "target": "9999" }, { "key": "geid_144_1193", "source": "3470", "target": "1281" }, { "key": "geid_144_1194", "source": "1984", "target": "7432" }, { "key": "geid_144_1195", "source": "6722", "target": "9441" }, { "key": "geid_144_1196", "source": "217", "target": "3636" }, { "key": "geid_144_1197", "source": "1183", "target": "8474" }, { "key": "geid_144_1198", "source": "9167", "target": "5252" }, { "key": "geid_144_1199", "source": "6524", "target": "3621" }, { "key": "geid_144_1200", "source": "3230", "target": "397" }, { "key": "geid_144_1201", "source": "3924", "target": "3079" }, { "key": "geid_144_1202", "source": "4170", "target": "8191" }, { "key": "geid_144_1203", "source": "6346", "target": "6676" }, { "key": "geid_144_1204", "source": "5156", "target": "5182" }, { "key": "geid_144_1205", "source": "7730", "target": "7110" }, { "key": "geid_144_1206", "source": "1667", "target": "4015" }, { "key": "geid_144_1207", "source": "8347", "target": "8070" }, { "key": "geid_144_1208", "source": "5448", "target": "248" }, { "key": "geid_144_1209", "source": "857", "target": "5164" }, { "key": "geid_144_1210", "source": "8454", "target": "4761" }, { "key": "geid_144_1211", "source": "1046", "target": "8298" }, { "key": "geid_144_1212", "source": "3287", "target": "5739" }, { "key": "geid_144_1213", "source": "6852", "target": "1513" }, { "key": "geid_144_1214", "source": "9235", "target": "4191" }, { "key": "geid_144_1215", "source": "8843", "target": "3612" }, { "key": "geid_144_1216", "source": "1372", "target": "2173" }, { "key": "geid_144_1217", "source": "1602", "target": "8583" }, { "key": "geid_144_1218", "source": "9426", "target": "9883" }, { "key": "geid_144_1219", "source": "284", "target": "5902" }, { "key": "geid_144_1220", "source": "3743", "target": "9696" }, { "key": "geid_144_1221", "source": "7785", "target": "8285" }, { "key": "geid_144_1222", "source": "7173", "target": "5579" }, { "key": "geid_144_1223", "source": "4087", "target": "249" }, { "key": "geid_144_1224", "source": "5678", "target": "5503" }, { "key": "geid_144_1225", "source": "7588", "target": "933" }, { "key": "geid_144_1226", "source": "5493", "target": "1722" }, { "key": "geid_144_1227", "source": "4551", "target": "6846" }, { "key": "geid_144_1228", "source": "4121", "target": "9021" }, { "key": "geid_144_1229", "source": "1751", "target": "8317" }, { "key": "geid_144_1230", "source": "3030", "target": "2465" }, { "key": "geid_144_1231", "source": "3972", "target": "1463" }, { "key": "geid_144_1232", "source": "1984", "target": "8997" }, { "key": "geid_144_1233", "source": "9845", "target": "2002" }, { "key": "geid_144_1234", "source": "7463", "target": "5735" }, { "key": "geid_144_1235", "source": "703", "target": "9609" }, { "key": "geid_144_1236", "source": "2269", "target": "7291" }, { "key": "geid_144_1237", "source": "9142", "target": "7685" }, { "key": "geid_144_1238", "source": "29", "target": "8926" }, { "key": "geid_144_1239", "source": "6489", "target": "9732" }, { "key": "geid_144_1240", "source": "8536", "target": "74" }, { "key": "geid_144_1241", "source": "6969", "target": "5643" }, { "key": "geid_144_1242", "source": "147", "target": "8045" }, { "key": "geid_144_1243", "source": "4873", "target": "8206" }, { "key": "geid_144_1244", "source": "1131", "target": "6824" }, { "key": "geid_144_1245", "source": "7233", "target": "3729" }, { "key": "geid_144_1246", "source": "3635", "target": "8663" }, { "key": "geid_144_1247", "source": "9314", "target": "4426" }, { "key": "geid_144_1248", "source": "759", "target": "94" }, { "key": "geid_144_1249", "source": "248", "target": "7351" }, { "key": "geid_144_1250", "source": "6656", "target": "2650" }, { "key": "geid_144_1251", "source": "5204", "target": "4403" }, { "key": "geid_144_1252", "source": "3317", "target": "1400" }, { "key": "geid_144_1253", "source": "7113", "target": "8773" }, { "key": "geid_144_1254", "source": "792", "target": "2835" }, { "key": "geid_144_1255", "source": "4903", "target": "6040" }, { "key": "geid_144_1256", "source": "5932", "target": "6259" }, { "key": "geid_144_1257", "source": "9170", "target": "7122" }, { "key": "geid_144_1258", "source": "530", "target": "6475" }, { "key": "geid_144_1259", "source": "3936", "target": "4468" }, { "key": "geid_144_1260", "source": "1539", "target": "5759" }, { "key": "geid_144_1261", "source": "3801", "target": "8668" }, { "key": "geid_144_1262", "source": "3000", "target": "2568" }, { "key": "geid_144_1263", "source": "586", "target": "3565" }, { "key": "geid_144_1264", "source": "989", "target": "4147" }, { "key": "geid_144_1265", "source": "7291", "target": "9665" }, { "key": "geid_144_1266", "source": "6621", "target": "7863" }, { "key": "geid_144_1267", "source": "9061", "target": "7848" }, { "key": "geid_144_1268", "source": "1968", "target": "5184" }, { "key": "geid_144_1269", "source": "8196", "target": "7653" }, { "key": "geid_144_1270", "source": "1877", "target": "2952" }, { "key": "geid_144_1271", "source": "2150", "target": "5235" }, { "key": "geid_144_1272", "source": "2722", "target": "8306" }, { "key": "geid_144_1273", "source": "2986", "target": "6307" }, { "key": "geid_144_1274", "source": "9018", "target": "7231" }, { "key": "geid_144_1275", "source": "245", "target": "4225" }, { "key": "geid_144_1276", "source": "6355", "target": "7951" }, { "key": "geid_144_1277", "source": "1279", "target": "7918" }, { "key": "geid_144_1278", "source": "2287", "target": "1661" }, { "key": "geid_144_1279", "source": "4857", "target": "3716" }, { "key": "geid_144_1280", "source": "1512", "target": "8037" }, { "key": "geid_144_1281", "source": "3819", "target": "3766" }, { "key": "geid_144_1282", "source": "5229", "target": "2685" }, { "key": "geid_144_1283", "source": "1901", "target": "9328" }, { "key": "geid_144_1284", "source": "9964", "target": "5154" }, { "key": "geid_144_1285", "source": "1247", "target": "4661" }, { "key": "geid_144_1286", "source": "2778", "target": "2525" }, { "key": "geid_144_1287", "source": "9749", "target": "9719" }, { "key": "geid_144_1288", "source": "5484", "target": "1611" }, { "key": "geid_144_1289", "source": "136", "target": "9675" }, { "key": "geid_144_1290", "source": "8030", "target": "9468" }, { "key": "geid_144_1291", "source": "9235", "target": "9399" }, { "key": "geid_144_1292", "source": "1060", "target": "6794" }, { "key": "geid_144_1293", "source": "8285", "target": "9604" }, { "key": "geid_144_1294", "source": "8650", "target": "2387" }, { "key": "geid_144_1295", "source": "4971", "target": "8639" }, { "key": "geid_144_1296", "source": "6371", "target": "4585" }, { "key": "geid_144_1297", "source": "1310", "target": "8024" }, { "key": "geid_144_1298", "source": "3838", "target": "2810" }, { "key": "geid_144_1299", "source": "6486", "target": "5417" }, { "key": "geid_144_1300", "source": "2690", "target": "6514" }, { "key": "geid_144_1301", "source": "5765", "target": "4065" }, { "key": "geid_144_1302", "source": "8450", "target": "2227" }, { "key": "geid_144_1303", "source": "8908", "target": "6703" }, { "key": "geid_144_1304", "source": "1346", "target": "1673" }, { "key": "geid_144_1305", "source": "8645", "target": "639" }, { "key": "geid_144_1306", "source": "1695", "target": "2343" }, { "key": "geid_144_1307", "source": "6764", "target": "3838" }, { "key": "geid_144_1308", "source": "7735", "target": "2738" }, { "key": "geid_144_1309", "source": "6198", "target": "5655" }, { "key": "geid_144_1310", "source": "8649", "target": "7078" }, { "key": "geid_144_1311", "source": "8341", "target": "7461" }, { "key": "geid_144_1312", "source": "1015", "target": "8234" }, { "key": "geid_144_1313", "source": "8519", "target": "8192" }, { "key": "geid_144_1314", "source": "506", "target": "4505" }, { "key": "geid_144_1315", "source": "1505", "target": "5763" }, { "key": "geid_144_1316", "source": "8165", "target": "503" }, { "key": "geid_144_1317", "source": "9774", "target": "7054" }, { "key": "geid_144_1318", "source": "458", "target": "7710" }, { "key": "geid_144_1319", "source": "2430", "target": "7285" }, { "key": "geid_144_1320", "source": "6062", "target": "3510" }, { "key": "geid_144_1321", "source": "9783", "target": "2019" }, { "key": "geid_144_1322", "source": "6550", "target": "5870" }, { "key": "geid_144_1323", "source": "205", "target": "5107" }, { "key": "geid_144_1324", "source": "5292", "target": "699" }, { "key": "geid_144_1325", "source": "6159", "target": "9887" }, { "key": "geid_144_1326", "source": "8856", "target": "13" }, { "key": "geid_144_1327", "source": "3361", "target": "5334" }, { "key": "geid_144_1328", "source": "5017", "target": "1961" }, { "key": "geid_144_1329", "source": "671", "target": "1017" }, { "key": "geid_144_1330", "source": "2446", "target": "4714" }, { "key": "geid_144_1331", "source": "8366", "target": "8436" }, { "key": "geid_144_1332", "source": "7930", "target": "6886" }, { "key": "geid_144_1333", "source": "6055", "target": "5296" }, { "key": "geid_144_1334", "source": "9285", "target": "9927" }, { "key": "geid_144_1335", "source": "4549", "target": "6323" }, { "key": "geid_144_1336", "source": "6099", "target": "3396" }, { "key": "geid_144_1337", "source": "5651", "target": "4511" }, { "key": "geid_144_1338", "source": "5974", "target": "8005" }, { "key": "geid_144_1339", "source": "7028", "target": "2308" }, { "key": "geid_144_1340", "source": "7822", "target": "8957" }, { "key": "geid_144_1341", "source": "4114", "target": "8627" }, { "key": "geid_144_1342", "source": "3702", "target": "3886" }, { "key": "geid_144_1343", "source": "381", "target": "3733" }, { "key": "geid_144_1344", "source": "6714", "target": "6045" }, { "key": "geid_144_1345", "source": "3387", "target": "4732" }, { "key": "geid_144_1346", "source": "5524", "target": "3215" }, { "key": "geid_144_1347", "source": "3066", "target": "6028" }, { "key": "geid_144_1348", "source": "9702", "target": "7164" }, { "key": "geid_144_1349", "source": "4413", "target": "8286" }, { "key": "geid_144_1350", "source": "9139", "target": "2544" }, { "key": "geid_144_1351", "source": "5266", "target": "8586" }, { "key": "geid_144_1352", "source": "1647", "target": "3303" }, { "key": "geid_144_1353", "source": "1907", "target": "3205" }, { "key": "geid_144_1354", "source": "8367", "target": "9523" }, { "key": "geid_144_1355", "source": "9211", "target": "9326" }, { "key": "geid_144_1356", "source": "302", "target": "9399" }, { "key": "geid_144_1357", "source": "9161", "target": "9077" }, { "key": "geid_144_1358", "source": "5293", "target": "2135" }, { "key": "geid_144_1359", "source": "9765", "target": "3928" }, { "key": "geid_144_1360", "source": "305", "target": "9609" }, { "key": "geid_144_1361", "source": "8170", "target": "7812" }, { "key": "geid_144_1362", "source": "7362", "target": "1753" }, { "key": "geid_144_1363", "source": "6295", "target": "5443" }, { "key": "geid_144_1364", "source": "5977", "target": "1048" }, { "key": "geid_144_1365", "source": "4956", "target": "3795" }, { "key": "geid_144_1366", "source": "2950", "target": "2951" }, { "key": "geid_144_1367", "source": "6572", "target": "125" }, { "key": "geid_144_1368", "source": "5096", "target": "8648" }, { "key": "geid_144_1369", "source": "5649", "target": "4387" }, { "key": "geid_144_1370", "source": "2289", "target": "1318" }, { "key": "geid_144_1371", "source": "186", "target": "6232" }, { "key": "geid_144_1372", "source": "1401", "target": "2486" }, { "key": "geid_144_1373", "source": "2001", "target": "9957" }, { "key": "geid_144_1374", "source": "6596", "target": "1787" }, { "key": "geid_144_1375", "source": "981", "target": "5264" }, { "key": "geid_144_1376", "source": "9221", "target": "1690" }, { "key": "geid_144_1377", "source": "7774", "target": "6935" }, { "key": "geid_144_1378", "source": "6488", "target": "8771" }, { "key": "geid_144_1379", "source": "6340", "target": "1344" }, { "key": "geid_144_1380", "source": "6168", "target": "4784" }, { "key": "geid_144_1381", "source": "4974", "target": "1415" }, { "key": "geid_144_1382", "source": "5408", "target": "9925" }, { "key": "geid_144_1383", "source": "328", "target": "254" }, { "key": "geid_144_1384", "source": "231", "target": "9475" }, { "key": "geid_144_1385", "source": "8384", "target": "3245" }, { "key": "geid_144_1386", "source": "9501", "target": "6647" }, { "key": "geid_144_1387", "source": "4508", "target": "206" }, { "key": "geid_144_1388", "source": "2741", "target": "2655" }, { "key": "geid_144_1389", "source": "8426", "target": "4068" }, { "key": "geid_144_1390", "source": "5853", "target": "7590" }, { "key": "geid_144_1391", "source": "2294", "target": "5813" }, { "key": "geid_144_1392", "source": "4981", "target": "2161" }, { "key": "geid_144_1393", "source": "2709", "target": "4078" }, { "key": "geid_144_1394", "source": "2393", "target": "2707" }, { "key": "geid_144_1395", "source": "7043", "target": "5061" }, { "key": "geid_144_1396", "source": "4921", "target": "6317" }, { "key": "geid_144_1397", "source": "4741", "target": "8554" }, { "key": "geid_144_1398", "source": "210", "target": "7385" }, { "key": "geid_144_1399", "source": "6670", "target": "8892" }, { "key": "geid_144_1400", "source": "6423", "target": "4794" }, { "key": "geid_144_1401", "source": "2236", "target": "6735" }, { "key": "geid_144_1402", "source": "2045", "target": "1748" }, { "key": "geid_144_1403", "source": "9975", "target": "5754" }, { "key": "geid_144_1404", "source": "7337", "target": "5249" }, { "key": "geid_144_1405", "source": "976", "target": "6843" }, { "key": "geid_144_1406", "source": "1652", "target": "3311" }, { "key": "geid_144_1407", "source": "7274", "target": "9837" }, { "key": "geid_144_1408", "source": "3716", "target": "9631" }, { "key": "geid_144_1409", "source": "2130", "target": "7915" }, { "key": "geid_144_1410", "source": "1402", "target": "6224" }, { "key": "geid_144_1411", "source": "9235", "target": "1975" }, { "key": "geid_144_1412", "source": "8639", "target": "7238" }, { "key": "geid_144_1413", "source": "3256", "target": "1160" }, { "key": "geid_144_1414", "source": "3964", "target": "4539" }, { "key": "geid_144_1415", "source": "7781", "target": "3441" }, { "key": "geid_144_1416", "source": "1004", "target": "5392" }, { "key": "geid_144_1417", "source": "2523", "target": "4537" }, { "key": "geid_144_1418", "source": "2677", "target": "8991" }, { "key": "geid_144_1419", "source": "9253", "target": "4245" }, { "key": "geid_144_1420", "source": "7969", "target": "335" }, { "key": "geid_144_1421", "source": "4892", "target": "4952" }, { "key": "geid_144_1422", "source": "8582", "target": "9453" }, { "key": "geid_144_1423", "source": "7466", "target": "3564" }, { "key": "geid_144_1424", "source": "9565", "target": "1385" }, { "key": "geid_144_1425", "source": "6685", "target": "9975" }, { "key": "geid_144_1426", "source": "9400", "target": "3714" }, { "key": "geid_144_1427", "source": "5038", "target": "7116" }, { "key": "geid_144_1428", "source": "2044", "target": "9275" }, { "key": "geid_144_1429", "source": "9802", "target": "9129" }, { "key": "geid_144_1430", "source": "1067", "target": "469" }, { "key": "geid_144_1431", "source": "5917", "target": "611" }, { "key": "geid_144_1432", "source": "2916", "target": "7496" }, { "key": "geid_144_1433", "source": "3079", "target": "6618" }, { "key": "geid_144_1434", "source": "2932", "target": "2218" }, { "key": "geid_144_1435", "source": "3839", "target": "1706" }, { "key": "geid_144_1436", "source": "3060", "target": "6870" }, { "key": "geid_144_1437", "source": "3237", "target": "9010" }, { "key": "geid_144_1438", "source": "6697", "target": "7474" }, { "key": "geid_144_1439", "source": "850", "target": "4498" }, { "key": "geid_144_1440", "source": "2579", "target": "5838" }, { "key": "geid_144_1441", "source": "1675", "target": "311" }, { "key": "geid_144_1442", "source": "3359", "target": "9289" }, { "key": "geid_144_1443", "source": "307", "target": "9112" }, { "key": "geid_144_1444", "source": "987", "target": "6949" }, { "key": "geid_144_1445", "source": "8418", "target": "7173" }, { "key": "geid_144_1446", "source": "8989", "target": "6996" }, { "key": "geid_144_1447", "source": "4297", "target": "3801" }, { "key": "geid_144_1448", "source": "9019", "target": "8177" }, { "key": "geid_144_1449", "source": "2923", "target": "7173" }, { "key": "geid_144_1450", "source": "9128", "target": "2413" }, { "key": "geid_144_1451", "source": "3594", "target": "5510" }, { "key": "geid_144_1452", "source": "1500", "target": "4380" }, { "key": "geid_144_1453", "source": "505", "target": "5139" }, { "key": "geid_144_1454", "source": "9727", "target": "1886" }, { "key": "geid_144_1455", "source": "9121", "target": "8321" }, { "key": "geid_144_1456", "source": "8030", "target": "1130" }, { "key": "geid_144_1457", "source": "6867", "target": "9901" }, { "key": "geid_144_1458", "source": "5170", "target": "7842" }, { "key": "geid_144_1459", "source": "7578", "target": "9349" }, { "key": "geid_144_1460", "source": "4906", "target": "938" }, { "key": "geid_144_1461", "source": "5255", "target": "273" }, { "key": "geid_144_1462", "source": "7098", "target": "2271" }, { "key": "geid_144_1463", "source": "9708", "target": "7691" }, { "key": "geid_144_1464", "source": "533", "target": "8538" }, { "key": "geid_144_1465", "source": "9709", "target": "9550" }, { "key": "geid_144_1466", "source": "5974", "target": "8845" }, { "key": "geid_144_1467", "source": "6051", "target": "2644" }, { "key": "geid_144_1468", "source": "6647", "target": "8473" }, { "key": "geid_144_1469", "source": "6578", "target": "7050" }, { "key": "geid_144_1470", "source": "6473", "target": "1712" }, { "key": "geid_144_1471", "source": "7932", "target": "3638" }, { "key": "geid_144_1472", "source": "6798", "target": "9457" }, { "key": "geid_144_1473", "source": "2995", "target": "3146" }, { "key": "geid_144_1474", "source": "9243", "target": "3702" }, { "key": "geid_144_1475", "source": "9372", "target": "2911" }, { "key": "geid_144_1476", "source": "8825", "target": "2145" }, { "key": "geid_144_1477", "source": "775", "target": "2540" }, { "key": "geid_144_1478", "source": "5634", "target": "7076" }, { "key": "geid_144_1479", "source": "7386", "target": "3568" }, { "key": "geid_144_1480", "source": "9609", "target": "5136" }, { "key": "geid_144_1481", "source": "3851", "target": "8629" }, { "key": "geid_144_1482", "source": "9560", "target": "370" }, { "key": "geid_144_1483", "source": "6662", "target": "5151" }, { "key": "geid_144_1484", "source": "201", "target": "9702" }, { "key": "geid_144_1485", "source": "8981", "target": "2127" }, { "key": "geid_144_1486", "source": "413", "target": "3323" }, { "key": "geid_144_1487", "source": "4798", "target": "934" }, { "key": "geid_144_1488", "source": "5", "target": "1961" }, { "key": "geid_144_1489", "source": "9134", "target": "5267" }, { "key": "geid_144_1490", "source": "4989", "target": "5835" }, { "key": "geid_144_1491", "source": "3025", "target": "3775" }, { "key": "geid_144_1492", "source": "2055", "target": "3593" }, { "key": "geid_144_1493", "source": "7927", "target": "6787" }, { "key": "geid_144_1494", "source": "5217", "target": "2799" }, { "key": "geid_144_1495", "source": "9169", "target": "3533" }, { "key": "geid_144_1496", "source": "8024", "target": "365" }, { "key": "geid_144_1497", "source": "4256", "target": "2135" }, { "key": "geid_144_1498", "source": "7183", "target": "2710" }, { "key": "geid_144_1499", "source": "2911", "target": "6675" }, { "key": "geid_144_1500", "source": "4039", "target": "8922" }, { "key": "geid_144_1501", "source": "2501", "target": "2542" }, { "key": "geid_144_1502", "source": "9201", "target": "6528" }, { "key": "geid_144_1503", "source": "7618", "target": "7235" }, { "key": "geid_144_1504", "source": "2488", "target": "5151" }, { "key": "geid_144_1505", "source": "5997", "target": "1401" }, { "key": "geid_144_1506", "source": "2103", "target": "6856" }, { "key": "geid_144_1507", "source": "737", "target": "3851" }, { "key": "geid_144_1508", "source": "5435", "target": "4536" }, { "key": "geid_144_1509", "source": "6570", "target": "5474" }, { "key": "geid_144_1510", "source": "3397", "target": "3318" }, { "key": "geid_144_1511", "source": "6446", "target": "8738" }, { "key": "geid_144_1512", "source": "697", "target": "8610" }, { "key": "geid_144_1513", "source": "1458", "target": "6619" }, { "key": "geid_144_1514", "source": "8470", "target": "408" }, { "key": "geid_144_1515", "source": "14", "target": "4456" }, { "key": "geid_144_1516", "source": "2211", "target": "7140" }, { "key": "geid_144_1517", "source": "2395", "target": "996" }, { "key": "geid_144_1518", "source": "9130", "target": "6135" }, { "key": "geid_144_1519", "source": "9596", "target": "5545" }, { "key": "geid_144_1520", "source": "6148", "target": "274" }, { "key": "geid_144_1521", "source": "2732", "target": "7433" }, { "key": "geid_144_1522", "source": "87", "target": "192" }, { "key": "geid_144_1523", "source": "3783", "target": "4707" }, { "key": "geid_144_1524", "source": "6682", "target": "7037" }, { "key": "geid_144_1525", "source": "7769", "target": "1694" }, { "key": "geid_144_1526", "source": "8733", "target": "9272" }, { "key": "geid_144_1527", "source": "4946", "target": "1337" }, { "key": "geid_144_1528", "source": "8654", "target": "1742" }, { "key": "geid_144_1529", "source": "6113", "target": "7375" }, { "key": "geid_144_1530", "source": "1205", "target": "1902" }, { "key": "geid_144_1531", "source": "6529", "target": "2402" }, { "key": "geid_144_1532", "source": "3530", "target": "751" }, { "key": "geid_144_1533", "source": "4379", "target": "7465" }, { "key": "geid_144_1534", "source": "3780", "target": "9763" }, { "key": "geid_144_1535", "source": "9698", "target": "4495" }, { "key": "geid_144_1536", "source": "7740", "target": "6503" }, { "key": "geid_144_1537", "source": "3479", "target": "7217" }, { "key": "geid_144_1538", "source": "8285", "target": "5572" }, { "key": "geid_144_1539", "source": "5658", "target": "4640" }, { "key": "geid_144_1540", "source": "6829", "target": "3332" }, { "key": "geid_144_1541", "source": "3968", "target": "2726" }, { "key": "geid_144_1542", "source": "8698", "target": "8288" }, { "key": "geid_144_1543", "source": "4229", "target": "6859" }, { "key": "geid_144_1544", "source": "9359", "target": "1671" }, { "key": "geid_144_1545", "source": "5761", "target": "1844" }, { "key": "geid_144_1546", "source": "8201", "target": "5357" }, { "key": "geid_144_1547", "source": "6884", "target": "7098" }, { "key": "geid_144_1548", "source": "4930", "target": "3351" }, { "key": "geid_144_1549", "source": "9731", "target": "6952" }, { "key": "geid_144_1550", "source": "5427", "target": "8187" }, { "key": "geid_144_1551", "source": "781", "target": "1890" }, { "key": "geid_144_1552", "source": "3234", "target": "453" }, { "key": "geid_144_1553", "source": "9324", "target": "590" }, { "key": "geid_144_1554", "source": "4350", "target": "3521" }, { "key": "geid_144_1555", "source": "2948", "target": "4011" }, { "key": "geid_144_1556", "source": "3510", "target": "929" }, { "key": "geid_144_1557", "source": "8910", "target": "7065" }, { "key": "geid_144_1558", "source": "1594", "target": "5836" }, { "key": "geid_144_1559", "source": "4646", "target": "5274" }, { "key": "geid_144_1560", "source": "2731", "target": "1484" }, { "key": "geid_144_1561", "source": "957", "target": "3209" }, { "key": "geid_144_1562", "source": "6049", "target": "2386" }, { "key": "geid_144_1563", "source": "4403", "target": "6396" }, { "key": "geid_144_1564", "source": "3214", "target": "1141" }, { "key": "geid_144_1565", "source": "4880", "target": "3539" }, { "key": "geid_144_1566", "source": "99", "target": "2712" }, { "key": "geid_144_1567", "source": "5460", "target": "1571" }, { "key": "geid_144_1568", "source": "5498", "target": "7856" }, { "key": "geid_144_1569", "source": "2937", "target": "3203" }, { "key": "geid_144_1570", "source": "2305", "target": "6448" }, { "key": "geid_144_1571", "source": "6428", "target": "8245" }, { "key": "geid_144_1572", "source": "1088", "target": "6724" }, { "key": "geid_144_1573", "source": "9077", "target": "9838" }, { "key": "geid_144_1574", "source": "6548", "target": "758" }, { "key": "geid_144_1575", "source": "6883", "target": "4384" }, { "key": "geid_144_1576", "source": "5785", "target": "4237" }, { "key": "geid_144_1577", "source": "3738", "target": "3465" }, { "key": "geid_144_1578", "source": "7911", "target": "7972" }, { "key": "geid_144_1579", "source": "5782", "target": "3501" }, { "key": "geid_144_1580", "source": "5662", "target": "3013" }, { "key": "geid_144_1581", "source": "5185", "target": "6672" }, { "key": "geid_144_1582", "source": "2618", "target": "1630" }, { "key": "geid_144_1583", "source": "5353", "target": "7886" }, { "key": "geid_144_1584", "source": "8566", "target": "6491" }, { "key": "geid_144_1585", "source": "3202", "target": "5345" }, { "key": "geid_144_1586", "source": "8741", "target": "7090" }, { "key": "geid_144_1587", "source": "4747", "target": "5295" }, { "key": "geid_144_1588", "source": "1086", "target": "6534" }, { "key": "geid_144_1589", "source": "1285", "target": "5390" }, { "key": "geid_144_1590", "source": "4386", "target": "982" }, { "key": "geid_144_1591", "source": "9424", "target": "880" }, { "key": "geid_144_1592", "source": "4551", "target": "1776" }, { "key": "geid_144_1593", "source": "2496", "target": "2272" }, { "key": "geid_144_1594", "source": "5563", "target": "1907" }, { "key": "geid_144_1595", "source": "9371", "target": "1405" }, { "key": "geid_144_1596", "source": "6575", "target": "326" }, { "key": "geid_144_1597", "source": "1849", "target": "2250" }, { "key": "geid_144_1598", "source": "495", "target": "5566" }, { "key": "geid_144_1599", "source": "432", "target": "9976" }, { "key": "geid_144_1600", "source": "2690", "target": "7458" }, { "key": "geid_144_1601", "source": "6260", "target": "468" }, { "key": "geid_144_1602", "source": "5707", "target": "8344" }, { "key": "geid_144_1603", "source": "8863", "target": "5055" }, { "key": "geid_144_1604", "source": "240", "target": "3608" }, { "key": "geid_144_1605", "source": "603", "target": "5313" }, { "key": "geid_144_1606", "source": "1957", "target": "548" }, { "key": "geid_144_1607", "source": "9062", "target": "7107" }, { "key": "geid_144_1608", "source": "5718", "target": "199" }, { "key": "geid_144_1609", "source": "7712", "target": "5902" }, { "key": "geid_144_1610", "source": "1834", "target": "8524" }, { "key": "geid_144_1611", "source": "8250", "target": "3789" }, { "key": "geid_144_1612", "source": "293", "target": "7775" }, { "key": "geid_144_1613", "source": "9756", "target": "150" }, { "key": "geid_144_1614", "source": "3803", "target": "9771" }, { "key": "geid_144_1615", "source": "7614", "target": "3412" }, { "key": "geid_144_1616", "source": "7221", "target": "5831" }, { "key": "geid_144_1617", "source": "4452", "target": "9553" }, { "key": "geid_144_1618", "source": "5300", "target": "4018" }, { "key": "geid_144_1619", "source": "7811", "target": "2178" }, { "key": "geid_144_1620", "source": "1829", "target": "6341" }, { "key": "geid_144_1621", "source": "2104", "target": "2555" }, { "key": "geid_144_1622", "source": "8044", "target": "6951" }, { "key": "geid_144_1623", "source": "6700", "target": "7986" }, { "key": "geid_144_1624", "source": "2728", "target": "7308" }, { "key": "geid_144_1625", "source": "4129", "target": "8086" }, { "key": "geid_144_1626", "source": "1946", "target": "9190" }, { "key": "geid_144_1627", "source": "4587", "target": "8485" }, { "key": "geid_144_1628", "source": "6652", "target": "5925" }, { "key": "geid_144_1629", "source": "2973", "target": "6747" }, { "key": "geid_144_1630", "source": "220", "target": "8152" }, { "key": "geid_144_1631", "source": "9002", "target": "6799" }, { "key": "geid_144_1632", "source": "718", "target": "6338" }, { "key": "geid_144_1633", "source": "4224", "target": "5962" }, { "key": "geid_144_1634", "source": "6637", "target": "3156" }, { "key": "geid_144_1635", "source": "231", "target": "1862" }, { "key": "geid_144_1636", "source": "7218", "target": "7255" }, { "key": "geid_144_1637", "source": "1958", "target": "6829" }, { "key": "geid_144_1638", "source": "7555", "target": "917" }, { "key": "geid_144_1639", "source": "2669", "target": "7737" }, { "key": "geid_144_1640", "source": "790", "target": "9317" }, { "key": "geid_144_1641", "source": "9573", "target": "2693" }, { "key": "geid_144_1642", "source": "8817", "target": "1365" }, { "key": "geid_144_1643", "source": "7984", "target": "3133" }, { "key": "geid_144_1644", "source": "6452", "target": "4815" }, { "key": "geid_144_1645", "source": "7530", "target": "2333" }, { "key": "geid_144_1646", "source": "3929", "target": "6595" }, { "key": "geid_144_1647", "source": "6545", "target": "3033" }, { "key": "geid_144_1648", "source": "7039", "target": "9306" }, { "key": "geid_144_1649", "source": "3770", "target": "6627" }, { "key": "geid_144_1650", "source": "4595", "target": "6034" }, { "key": "geid_144_1651", "source": "5964", "target": "6438" }, { "key": "geid_144_1652", "source": "2728", "target": "5431" }, { "key": "geid_144_1653", "source": "9045", "target": "1713" }, { "key": "geid_144_1654", "source": "6482", "target": "5421" }, { "key": "geid_144_1655", "source": "7987", "target": "1278" }, { "key": "geid_144_1656", "source": "9943", "target": "160" }, { "key": "geid_144_1657", "source": "6980", "target": "8420" }, { "key": "geid_144_1658", "source": "2662", "target": "5420" }, { "key": "geid_144_1659", "source": "5390", "target": "9195" }, { "key": "geid_144_1660", "source": "1829", "target": "2701" }, { "key": "geid_144_1661", "source": "1055", "target": "9757" }, { "key": "geid_144_1662", "source": "1767", "target": "7894" }, { "key": "geid_144_1663", "source": "4546", "target": "8043" }, { "key": "geid_144_1664", "source": "3092", "target": "3872" }, { "key": "geid_144_1665", "source": "6029", "target": "9836" }, { "key": "geid_144_1666", "source": "4342", "target": "4587" }, { "key": "geid_144_1667", "source": "3348", "target": "3022" }, { "key": "geid_144_1668", "source": "3246", "target": "7249" }, { "key": "geid_144_1669", "source": "8436", "target": "9182" }, { "key": "geid_144_1670", "source": "5226", "target": "1987" }, { "key": "geid_144_1671", "source": "9693", "target": "9356" }, { "key": "geid_144_1672", "source": "1834", "target": "1515" }, { "key": "geid_144_1673", "source": "5575", "target": "9534" }, { "key": "geid_144_1674", "source": "8525", "target": "2417" }, { "key": "geid_144_1675", "source": "1572", "target": "5243" }, { "key": "geid_144_1676", "source": "2481", "target": "3976" }, { "key": "geid_144_1677", "source": "1146", "target": "1834" }, { "key": "geid_144_1678", "source": "9305", "target": "7140" }, { "key": "geid_144_1679", "source": "9634", "target": "8086" }, { "key": "geid_144_1680", "source": "1173", "target": "4788" }, { "key": "geid_144_1681", "source": "677", "target": "501" }, { "key": "geid_144_1682", "source": "6619", "target": "6853" }, { "key": "geid_144_1683", "source": "5056", "target": "2376" }, { "key": "geid_144_1684", "source": "3153", "target": "5372" }, { "key": "geid_144_1685", "source": "3239", "target": "8871" }, { "key": "geid_144_1686", "source": "2416", "target": "2342" }, { "key": "geid_144_1687", "source": "3117", "target": "732" }, { "key": "geid_144_1688", "source": "3230", "target": "7521" }, { "key": "geid_144_1689", "source": "5072", "target": "3102" }, { "key": "geid_144_1690", "source": "3602", "target": "2898" }, { "key": "geid_144_1691", "source": "8346", "target": "3783" }, { "key": "geid_144_1692", "source": "3896", "target": "9146" }, { "key": "geid_144_1693", "source": "9132", "target": "9692" }, { "key": "geid_144_1694", "source": "7278", "target": "5505" }, { "key": "geid_144_1695", "source": "8676", "target": "15" }, { "key": "geid_144_1696", "source": "410", "target": "4694" }, { "key": "geid_144_1697", "source": "4787", "target": "6631" }, { "key": "geid_144_1698", "source": "5776", "target": "3448" }, { "key": "geid_144_1699", "source": "1554", "target": "7315" }, { "key": "geid_144_1700", "source": "2231", "target": "9448" }, { "key": "geid_144_1701", "source": "8710", "target": "121" }, { "key": "geid_144_1702", "source": "1333", "target": "6017" }, { "key": "geid_144_1703", "source": "2552", "target": "1855" }, { "key": "geid_144_1704", "source": "42", "target": "5046" }, { "key": "geid_144_1705", "source": "2239", "target": "6778" }, { "key": "geid_144_1706", "source": "412", "target": "9008" }, { "key": "geid_144_1707", "source": "1815", "target": "6132" }, { "key": "geid_144_1708", "source": "7839", "target": "3474" }, { "key": "geid_144_1709", "source": "5192", "target": "3428" }, { "key": "geid_144_1710", "source": "6728", "target": "2026" }, { "key": "geid_144_1711", "source": "9641", "target": "5981" }, { "key": "geid_144_1712", "source": "363", "target": "4129" }, { "key": "geid_144_1713", "source": "5612", "target": "3802" }, { "key": "geid_144_1714", "source": "2160", "target": "7786" }, { "key": "geid_144_1715", "source": "1089", "target": "50" }, { "key": "geid_144_1716", "source": "8503", "target": "4207" }, { "key": "geid_144_1717", "source": "898", "target": "1071" }, { "key": "geid_144_1718", "source": "3091", "target": "3115" }, { "key": "geid_144_1719", "source": "7403", "target": "3667" }, { "key": "geid_144_1720", "source": "709", "target": "6030" }, { "key": "geid_144_1721", "source": "403", "target": "9855" }, { "key": "geid_144_1722", "source": "4239", "target": "6198" }, { "key": "geid_144_1723", "source": "4661", "target": "8674" }, { "key": "geid_144_1724", "source": "502", "target": "4195" }, { "key": "geid_144_1725", "source": "9406", "target": "8555" }, { "key": "geid_144_1726", "source": "555", "target": "6771" }, { "key": "geid_144_1727", "source": "8105", "target": "7619" }, { "key": "geid_144_1728", "source": "6294", "target": "3947" }, { "key": "geid_144_1729", "source": "9438", "target": "143" }, { "key": "geid_144_1730", "source": "2017", "target": "3157" }, { "key": "geid_144_1731", "source": "1343", "target": "4647" }, { "key": "geid_144_1732", "source": "6352", "target": "6044" }, { "key": "geid_144_1733", "source": "7683", "target": "844" }, { "key": "geid_144_1734", "source": "1403", "target": "6998" }, { "key": "geid_144_1735", "source": "657", "target": "9097" }, { "key": "geid_144_1736", "source": "5941", "target": "3844" }, { "key": "geid_144_1737", "source": "1912", "target": "3229" }, { "key": "geid_144_1738", "source": "2628", "target": "4765" }, { "key": "geid_144_1739", "source": "807", "target": "4950" }, { "key": "geid_144_1740", "source": "8007", "target": "6028" }, { "key": "geid_144_1741", "source": "1306", "target": "6282" }, { "key": "geid_144_1742", "source": "7317", "target": "601" }, { "key": "geid_144_1743", "source": "7152", "target": "3837" }, { "key": "geid_144_1744", "source": "280", "target": "7127" }, { "key": "geid_144_1745", "source": "2020", "target": "5405" }, { "key": "geid_144_1746", "source": "6848", "target": "2229" }, { "key": "geid_144_1747", "source": "1091", "target": "8823" }, { "key": "geid_144_1748", "source": "1935", "target": "3177" }, { "key": "geid_144_1749", "source": "4446", "target": "716" }, { "key": "geid_144_1750", "source": "8765", "target": "4327" }, { "key": "geid_144_1751", "source": "5005", "target": "6418" }, { "key": "geid_144_1752", "source": "5084", "target": "714" }, { "key": "geid_144_1753", "source": "4245", "target": "7411" }, { "key": "geid_144_1754", "source": "5366", "target": "3536" }, { "key": "geid_144_1755", "source": "5869", "target": "8287" }, { "key": "geid_144_1756", "source": "1350", "target": "5380" }, { "key": "geid_144_1757", "source": "4704", "target": "4248" }, { "key": "geid_144_1758", "source": "3966", "target": "4637" }, { "key": "geid_144_1759", "source": "8390", "target": "5067" }, { "key": "geid_144_1760", "source": "7198", "target": "5620" }, { "key": "geid_144_1761", "source": "8656", "target": "6083" }, { "key": "geid_144_1762", "source": "3434", "target": "1712" }, { "key": "geid_144_1763", "source": "6438", "target": "2346" }, { "key": "geid_144_1764", "source": "8482", "target": "707" }, { "key": "geid_144_1765", "source": "1002", "target": "6297" }, { "key": "geid_144_1766", "source": "3154", "target": "9837" }, { "key": "geid_144_1767", "source": "9313", "target": "4110" }, { "key": "geid_144_1768", "source": "2526", "target": "7160" }, { "key": "geid_144_1769", "source": "74", "target": "8382" }, { "key": "geid_144_1770", "source": "6952", "target": "7865" }, { "key": "geid_144_1771", "source": "3302", "target": "7453" }, { "key": "geid_144_1772", "source": "7042", "target": "6790" }, { "key": "geid_144_1773", "source": "2484", "target": "3933" }, { "key": "geid_144_1774", "source": "6205", "target": "3114" }, { "key": "geid_144_1775", "source": "5980", "target": "3931" }, { "key": "geid_144_1776", "source": "4097", "target": "125" }, { "key": "geid_144_1777", "source": "8742", "target": "7507" }, { "key": "geid_144_1778", "source": "3110", "target": "7710" }, { "key": "geid_144_1779", "source": "9760", "target": "604" }, { "key": "geid_144_1780", "source": "6819", "target": "5964" }, { "key": "geid_144_1781", "source": "5246", "target": "2365" }, { "key": "geid_144_1782", "source": "8612", "target": "9674" }, { "key": "geid_144_1783", "source": "2399", "target": "4744" }, { "key": "geid_144_1784", "source": "4748", "target": "3316" }, { "key": "geid_144_1785", "source": "3517", "target": "6975" }, { "key": "geid_144_1786", "source": "9815", "target": "6779" }, { "key": "geid_144_1787", "source": "3090", "target": "5918" }, { "key": "geid_144_1788", "source": "5557", "target": "8686" }, { "key": "geid_144_1789", "source": "3549", "target": "4626" }, { "key": "geid_144_1790", "source": "2702", "target": "3414" }, { "key": "geid_144_1791", "source": "9663", "target": "6748" }, { "key": "geid_144_1792", "source": "4858", "target": "6983" }, { "key": "geid_144_1793", "source": "592", "target": "9090" }, { "key": "geid_144_1794", "source": "5618", "target": "6615" }, { "key": "geid_144_1795", "source": "2063", "target": "9832" }, { "key": "geid_144_1796", "source": "274", "target": "7862" }, { "key": "geid_144_1797", "source": "4158", "target": "7300" }, { "key": "geid_144_1798", "source": "7447", "target": "9333" }, { "key": "geid_144_1799", "source": "6228", "target": "2359" }, { "key": "geid_144_1800", "source": "6750", "target": "243" }, { "key": "geid_144_1801", "source": "6032", "target": "7821" }, { "key": "geid_144_1802", "source": "7641", "target": "4580" }, { "key": "geid_144_1803", "source": "6471", "target": "4493" }, { "key": "geid_144_1804", "source": "4035", "target": "4578" }, { "key": "geid_144_1805", "source": "9386", "target": "4988" }, { "key": "geid_144_1806", "source": "7035", "target": "6854" }, { "key": "geid_144_1807", "source": "7032", "target": "2697" }, { "key": "geid_144_1808", "source": "2142", "target": "2875" }, { "key": "geid_144_1809", "source": "3124", "target": "5662" }, { "key": "geid_144_1810", "source": "2948", "target": "8658" }, { "key": "geid_144_1811", "source": "5284", "target": "4836" }, { "key": "geid_144_1812", "source": "4612", "target": "6137" }, { "key": "geid_144_1813", "source": "4441", "target": "2376" }, { "key": "geid_144_1814", "source": "2235", "target": "9810" }, { "key": "geid_144_1815", "source": "5458", "target": "2799" }, { "key": "geid_144_1816", "source": "5207", "target": "155" }, { "key": "geid_144_1817", "source": "7293", "target": "6111" }, { "key": "geid_144_1818", "source": "3989", "target": "4683" }, { "key": "geid_144_1819", "source": "1961", "target": "3765" }, { "key": "geid_144_1820", "source": "3958", "target": "2710" }, { "key": "geid_144_1821", "source": "5269", "target": "6350" }, { "key": "geid_144_1822", "source": "8349", "target": "6102" }, { "key": "geid_144_1823", "source": "3147", "target": "4281" }, { "key": "geid_144_1824", "source": "8712", "target": "359" }, { "key": "geid_144_1825", "source": "3134", "target": "8677" }, { "key": "geid_144_1826", "source": "120", "target": "1918" }, { "key": "geid_144_1827", "source": "1262", "target": "8700" }, { "key": "geid_144_1828", "source": "7029", "target": "1268" }, { "key": "geid_144_1829", "source": "9728", "target": "51" }, { "key": "geid_144_1830", "source": "9700", "target": "8232" }, { "key": "geid_144_1831", "source": "8533", "target": "401" }, { "key": "geid_144_1832", "source": "2080", "target": "3994" }, { "key": "geid_144_1833", "source": "6864", "target": "3448" }, { "key": "geid_144_1834", "source": "743", "target": "2339" }, { "key": "geid_144_1835", "source": "4585", "target": "4678" }, { "key": "geid_144_1836", "source": "6725", "target": "2680" }, { "key": "geid_144_1837", "source": "4177", "target": "8379" }, { "key": "geid_144_1838", "source": "7260", "target": "1541" }, { "key": "geid_144_1839", "source": "1265", "target": "9583" }, { "key": "geid_144_1840", "source": "9585", "target": "9172" }, { "key": "geid_144_1841", "source": "9467", "target": "9262" }, { "key": "geid_144_1842", "source": "4114", "target": "4648" }, { "key": "geid_144_1843", "source": "2106", "target": "7975" }, { "key": "geid_144_1844", "source": "6077", "target": "7208" }, { "key": "geid_144_1845", "source": "3154", "target": "4152" }, { "key": "geid_144_1846", "source": "9526", "target": "7753" }, { "key": "geid_144_1847", "source": "7232", "target": "92" }, { "key": "geid_144_1848", "source": "2042", "target": "913" }, { "key": "geid_144_1849", "source": "9255", "target": "6378" }, { "key": "geid_144_1850", "source": "6127", "target": "9708" }, { "key": "geid_144_1851", "source": "4557", "target": "7102" }, { "key": "geid_144_1852", "source": "9239", "target": "6375" }, { "key": "geid_144_1853", "source": "9339", "target": "1002" }, { "key": "geid_144_1854", "source": "1257", "target": "6849" }, { "key": "geid_144_1855", "source": "2226", "target": "2824" }, { "key": "geid_144_1856", "source": "9976", "target": "2099" }, { "key": "geid_144_1857", "source": "8310", "target": "7889" }, { "key": "geid_144_1858", "source": "8480", "target": "7010" }, { "key": "geid_144_1859", "source": "1865", "target": "31" }, { "key": "geid_144_1860", "source": "9067", "target": "6281" }, { "key": "geid_144_1861", "source": "4104", "target": "3492" }, { "key": "geid_144_1862", "source": "3422", "target": "913" }, { "key": "geid_144_1863", "source": "8318", "target": "4108" }, { "key": "geid_144_1864", "source": "4505", "target": "7115" }, { "key": "geid_144_1865", "source": "7023", "target": "4034" }, { "key": "geid_144_1866", "source": "6778", "target": "4241" }, { "key": "geid_144_1867", "source": "8993", "target": "238" }, { "key": "geid_144_1868", "source": "3523", "target": "3265" }, { "key": "geid_144_1869", "source": "595", "target": "1537" }, { "key": "geid_144_1870", "source": "3669", "target": "7401" }, { "key": "geid_144_1871", "source": "6745", "target": "5220" }, { "key": "geid_144_1872", "source": "6369", "target": "1650" }, { "key": "geid_144_1873", "source": "8064", "target": "581" }, { "key": "geid_144_1874", "source": "4472", "target": "5069" }, { "key": "geid_144_1875", "source": "843", "target": "3308" }, { "key": "geid_144_1876", "source": "850", "target": "7238" }, { "key": "geid_144_1877", "source": "7417", "target": "672" }, { "key": "geid_144_1878", "source": "7742", "target": "1482" }, { "key": "geid_144_1879", "source": "7094", "target": "1620" }, { "key": "geid_144_1880", "source": "3802", "target": "570" }, { "key": "geid_144_1881", "source": "9888", "target": "5541" }, { "key": "geid_144_1882", "source": "585", "target": "675" }, { "key": "geid_144_1883", "source": "7960", "target": "4357" }, { "key": "geid_144_1884", "source": "8972", "target": "8954" }, { "key": "geid_144_1885", "source": "5292", "target": "6801" }, { "key": "geid_144_1886", "source": "6388", "target": "4883" }, { "key": "geid_144_1887", "source": "6546", "target": "6905" }, { "key": "geid_144_1888", "source": "2685", "target": "3091" }, { "key": "geid_144_1889", "source": "9990", "target": "9096" }, { "key": "geid_144_1890", "source": "6873", "target": "3233" }, { "key": "geid_144_1891", "source": "6079", "target": "8028" }, { "key": "geid_144_1892", "source": "322", "target": "2045" }, { "key": "geid_144_1893", "source": "7355", "target": "9241" }, { "key": "geid_144_1894", "source": "3205", "target": "6742" }, { "key": "geid_144_1895", "source": "3024", "target": "2186" }, { "key": "geid_144_1896", "source": "897", "target": "5536" }, { "key": "geid_144_1897", "source": "537", "target": "9961" }, { "key": "geid_144_1898", "source": "7104", "target": "3643" }, { "key": "geid_144_1899", "source": "8258", "target": "9312" }, { "key": "geid_144_1900", "source": "5859", "target": "7418" }, { "key": "geid_144_1901", "source": "4512", "target": "960" }, { "key": "geid_144_1902", "source": "3919", "target": "5981" }, { "key": "geid_144_1903", "source": "4769", "target": "6497" }, { "key": "geid_144_1904", "source": "7090", "target": "7370" }, { "key": "geid_144_1905", "source": "8101", "target": "7424" }, { "key": "geid_144_1906", "source": "791", "target": "9241" }, { "key": "geid_144_1907", "source": "497", "target": "4700" }, { "key": "geid_144_1908", "source": "1878", "target": "6337" }, { "key": "geid_144_1909", "source": "1871", "target": "841" }, { "key": "geid_144_1910", "source": "7419", "target": "3" }, { "key": "geid_144_1911", "source": "9948", "target": "3941" }, { "key": "geid_144_1912", "source": "7853", "target": "5219" }, { "key": "geid_144_1913", "source": "3586", "target": "3606" }, { "key": "geid_144_1914", "source": "2913", "target": "6844" }, { "key": "geid_144_1915", "source": "2467", "target": "4506" }, { "key": "geid_144_1916", "source": "4863", "target": "6320" }, { "key": "geid_144_1917", "source": "9410", "target": "7198" }, { "key": "geid_144_1918", "source": "7336", "target": "9081" }, { "key": "geid_144_1919", "source": "2416", "target": "9308" }, { "key": "geid_144_1920", "source": "1630", "target": "2164" }, { "key": "geid_144_1921", "source": "1025", "target": "3411" }, { "key": "geid_144_1922", "source": "4124", "target": "4314" }, { "key": "geid_144_1923", "source": "1482", "target": "8493" }, { "key": "geid_144_1924", "source": "7455", "target": "1190" }, { "key": "geid_144_1925", "source": "7747", "target": "9878" }, { "key": "geid_144_1926", "source": "2559", "target": "8116" }, { "key": "geid_144_1927", "source": "531", "target": "3264" }, { "key": "geid_144_1928", "source": "1204", "target": "5136" }, { "key": "geid_144_1929", "source": "7538", "target": "9566" }, { "key": "geid_144_1930", "source": "4093", "target": "2727" }, { "key": "geid_144_1931", "source": "2547", "target": "1620" }, { "key": "geid_144_1932", "source": "3899", "target": "1628" }, { "key": "geid_144_1933", "source": "3336", "target": "7356" }, { "key": "geid_144_1934", "source": "5324", "target": "6869" }, { "key": "geid_144_1935", "source": "2366", "target": "4714" }, { "key": "geid_144_1936", "source": "3962", "target": "9590" }, { "key": "geid_144_1937", "source": "6293", "target": "3653" }, { "key": "geid_144_1938", "source": "9047", "target": "1778" }, { "key": "geid_144_1939", "source": "8643", "target": "3577" }, { "key": "geid_144_1940", "source": "28", "target": "2667" }, { "key": "geid_144_1941", "source": "2655", "target": "7524" }, { "key": "geid_144_1942", "source": "9909", "target": "7031" }, { "key": "geid_144_1943", "source": "9978", "target": "4451" }, { "key": "geid_144_1944", "source": "9174", "target": "1853" }, { "key": "geid_144_1945", "source": "1473", "target": "9535" }, { "key": "geid_144_1946", "source": "5684", "target": "9859" }, { "key": "geid_144_1947", "source": "5959", "target": "2037" }, { "key": "geid_144_1948", "source": "223", "target": "1088" }, { "key": "geid_144_1949", "source": "5524", "target": "4100" }, { "key": "geid_144_1950", "source": "8570", "target": "371" }, { "key": "geid_144_1951", "source": "8467", "target": "4586" }, { "key": "geid_144_1952", "source": "874", "target": "333" }, { "key": "geid_144_1953", "source": "7682", "target": "2763" }, { "key": "geid_144_1954", "source": "7398", "target": "5168" }, { "key": "geid_144_1955", "source": "4415", "target": "8308" }, { "key": "geid_144_1956", "source": "6345", "target": "4629" }, { "key": "geid_144_1957", "source": "7299", "target": "6451" }, { "key": "geid_144_1958", "source": "1161", "target": "6302" }, { "key": "geid_144_1959", "source": "7516", "target": "4983" }, { "key": "geid_144_1960", "source": "1342", "target": "5394" }, { "key": "geid_144_1961", "source": "9780", "target": "4104" }, { "key": "geid_144_1962", "source": "3715", "target": "6874" }, { "key": "geid_144_1963", "source": "7322", "target": "4862" }, { "key": "geid_144_1964", "source": "7003", "target": "4500" }, { "key": "geid_144_1965", "source": "2889", "target": "783" }, { "key": "geid_144_1966", "source": "6159", "target": "2799" }, { "key": "geid_144_1967", "source": "8991", "target": "591" }, { "key": "geid_144_1968", "source": "6143", "target": "7543" }, { "key": "geid_144_1969", "source": "7362", "target": "1153" }, { "key": "geid_144_1970", "source": "9853", "target": "4032" }, { "key": "geid_144_1971", "source": "9196", "target": "1171" }, { "key": "geid_144_1972", "source": "282", "target": "5355" }, { "key": "geid_144_1973", "source": "5799", "target": "1736" }, { "key": "geid_144_1974", "source": "1337", "target": "939" }, { "key": "geid_144_1975", "source": "869", "target": "7560" }, { "key": "geid_144_1976", "source": "1395", "target": "7111" }, { "key": "geid_144_1977", "source": "3782", "target": "772" }, { "key": "geid_144_1978", "source": "5280", "target": "1273" }, { "key": "geid_144_1979", "source": "8041", "target": "4940" }, { "key": "geid_144_1980", "source": "5258", "target": "3494" }, { "key": "geid_144_1981", "source": "2863", "target": "1545" }, { "key": "geid_144_1982", "source": "8247", "target": "402" }, { "key": "geid_144_1983", "source": "8168", "target": "1900" }, { "key": "geid_144_1984", "source": "8517", "target": "2341" }, { "key": "geid_144_1985", "source": "9701", "target": "250" }, { "key": "geid_144_1986", "source": "5696", "target": "7200" }, { "key": "geid_144_1987", "source": "4169", "target": "6569" }, { "key": "geid_144_1988", "source": "9407", "target": "6703" }, { "key": "geid_144_1989", "source": "7721", "target": "7763" }, { "key": "geid_144_1990", "source": "4829", "target": "4607" }, { "key": "geid_144_1991", "source": "7696", "target": "23" }, { "key": "geid_144_1992", "source": "6262", "target": "4359" }, { "key": "geid_144_1993", "source": "7302", "target": "487" }, { "key": "geid_144_1994", "source": "5502", "target": "8584" }, { "key": "geid_144_1995", "source": "2126", "target": "3688" }, { "key": "geid_144_1996", "source": "8163", "target": "6614" }, { "key": "geid_144_1997", "source": "7991", "target": "6488" }, { "key": "geid_144_1998", "source": "6660", "target": "1560" }, { "key": "geid_144_1999", "source": "2267", "target": "3732" }, { "key": "geid_144_2000", "source": "9090", "target": "3488" }, { "key": "geid_144_2001", "source": "1958", "target": "6617" }, { "key": "geid_144_2002", "source": "502", "target": "8880" }, { "key": "geid_144_2003", "source": "6396", "target": "6679" }, { "key": "geid_144_2004", "source": "9418", "target": "3180" }, { "key": "geid_144_2005", "source": "5148", "target": "6177" }, { "key": "geid_144_2006", "source": "2808", "target": "8910" }, { "key": "geid_144_2007", "source": "2862", "target": "8279" }, { "key": "geid_144_2008", "source": "5274", "target": "8610" }, { "key": "geid_144_2009", "source": "8846", "target": "6410" }, { "key": "geid_144_2010", "source": "5750", "target": "2021" }, { "key": "geid_144_2011", "source": "8116", "target": "1077" }, { "key": "geid_144_2012", "source": "7852", "target": "8153" }, { "key": "geid_144_2013", "source": "6663", "target": "4736" }, { "key": "geid_144_2014", "source": "5206", "target": "7511" }, { "key": "geid_144_2015", "source": "3282", "target": "9192" }, { "key": "geid_144_2016", "source": "75", "target": "2666" }, { "key": "geid_144_2017", "source": "1212", "target": "1449" }, { "key": "geid_144_2018", "source": "6320", "target": "4870" }, { "key": "geid_144_2019", "source": "949", "target": "8770" }, { "key": "geid_144_2020", "source": "4892", "target": "3768" }, { "key": "geid_144_2021", "source": "8879", "target": "5200" }, { "key": "geid_144_2022", "source": "1948", "target": "4247" }, { "key": "geid_144_2023", "source": "8883", "target": "7056" }, { "key": "geid_144_2024", "source": "1492", "target": "4260" }, { "key": "geid_144_2025", "source": "4941", "target": "9620" }, { "key": "geid_144_2026", "source": "3795", "target": "8769" }, { "key": "geid_144_2027", "source": "4973", "target": "3476" }, { "key": "geid_144_2028", "source": "3990", "target": "8590" }, { "key": "geid_144_2029", "source": "1252", "target": "9109" }, { "key": "geid_144_2030", "source": "2890", "target": "4477" }, { "key": "geid_144_2031", "source": "4896", "target": "5490" }, { "key": "geid_144_2032", "source": "9912", "target": "7902" }, { "key": "geid_144_2033", "source": "9340", "target": "529" }, { "key": "geid_144_2034", "source": "4370", "target": "402" }, { "key": "geid_144_2035", "source": "7056", "target": "2013" }, { "key": "geid_144_2036", "source": "3207", "target": "1551" }, { "key": "geid_144_2037", "source": "7346", "target": "6458" }, { "key": "geid_144_2038", "source": "8031", "target": "6648" }, { "key": "geid_144_2039", "source": "293", "target": "9027" }, { "key": "geid_144_2040", "source": "751", "target": "4365" }, { "key": "geid_144_2041", "source": "613", "target": "4486" }, { "key": "geid_144_2042", "source": "8989", "target": "7022" }, { "key": "geid_144_2043", "source": "470", "target": "1362" }, { "key": "geid_144_2044", "source": "4320", "target": "381" }, { "key": "geid_144_2045", "source": "5112", "target": "8238" }, { "key": "geid_144_2046", "source": "8948", "target": "9180" }, { "key": "geid_144_2047", "source": "2070", "target": "9165" }, { "key": "geid_144_2048", "source": "4312", "target": "2567" }, { "key": "geid_144_2049", "source": "1107", "target": "781" }, { "key": "geid_144_2050", "source": "5469", "target": "5005" }, { "key": "geid_144_2051", "source": "1877", "target": "2432" }, { "key": "geid_144_2052", "source": "8874", "target": "7920" }, { "key": "geid_144_2053", "source": "9887", "target": "6971" }, { "key": "geid_144_2054", "source": "9890", "target": "5593" }, { "key": "geid_144_2055", "source": "8408", "target": "2177" }, { "key": "geid_144_2056", "source": "3956", "target": "2318" }, { "key": "geid_144_2057", "source": "5902", "target": "2724" }, { "key": "geid_144_2058", "source": "3068", "target": "5997" }, { "key": "geid_144_2059", "source": "286", "target": "1293" }, { "key": "geid_144_2060", "source": "9355", "target": "8036" }, { "key": "geid_144_2061", "source": "1716", "target": "5043" }, { "key": "geid_144_2062", "source": "6087", "target": "545" }, { "key": "geid_144_2063", "source": "9509", "target": "9641" }, { "key": "geid_144_2064", "source": "8571", "target": "6194" }, { "key": "geid_144_2065", "source": "7687", "target": "6384" }, { "key": "geid_144_2066", "source": "6971", "target": "1317" }, { "key": "geid_144_2067", "source": "4323", "target": "5915" }, { "key": "geid_144_2068", "source": "2235", "target": "2642" }, { "key": "geid_144_2069", "source": "8921", "target": "7872" }, { "key": "geid_144_2070", "source": "2789", "target": "2412" }, { "key": "geid_144_2071", "source": "4440", "target": "5226" }, { "key": "geid_144_2072", "source": "7673", "target": "8081" }, { "key": "geid_144_2073", "source": "2363", "target": "6618" }, { "key": "geid_144_2074", "source": "7322", "target": "6049" }, { "key": "geid_144_2075", "source": "6752", "target": "9756" }, { "key": "geid_144_2076", "source": "6201", "target": "8974" }, { "key": "geid_144_2077", "source": "2473", "target": "278" }, { "key": "geid_144_2078", "source": "660", "target": "5551" }, { "key": "geid_144_2079", "source": "2246", "target": "3349" }, { "key": "geid_144_2080", "source": "3753", "target": "8583" }, { "key": "geid_144_2081", "source": "8681", "target": "4118" }, { "key": "geid_144_2082", "source": "6832", "target": "2124" }, { "key": "geid_144_2083", "source": "2406", "target": "1606" }, { "key": "geid_144_2084", "source": "7608", "target": "4945" }, { "key": "geid_144_2085", "source": "6373", "target": "586" }, { "key": "geid_144_2086", "source": "9765", "target": "6431" }, { "key": "geid_144_2087", "source": "8679", "target": "4836" }, { "key": "geid_144_2088", "source": "3509", "target": "3837" }, { "key": "geid_144_2089", "source": "9714", "target": "592" }, { "key": "geid_144_2090", "source": "361", "target": "3459" }, { "key": "geid_144_2091", "source": "1357", "target": "8694" }, { "key": "geid_144_2092", "source": "7192", "target": "4828" }, { "key": "geid_144_2093", "source": "5760", "target": "787" }, { "key": "geid_144_2094", "source": "7750", "target": "797" }, { "key": "geid_144_2095", "source": "2532", "target": "383" }, { "key": "geid_144_2096", "source": "4887", "target": "5300" }, { "key": "geid_144_2097", "source": "5210", "target": "9074" }, { "key": "geid_144_2098", "source": "1293", "target": "5357" }, { "key": "geid_144_2099", "source": "4887", "target": "7667" }, { "key": "geid_144_2100", "source": "5242", "target": "4598" }, { "key": "geid_144_2101", "source": "4477", "target": "32" }, { "key": "geid_144_2102", "source": "9610", "target": "3171" }, { "key": "geid_144_2103", "source": "6970", "target": "4849" }, { "key": "geid_144_2104", "source": "4416", "target": "4066" }, { "key": "geid_144_2105", "source": "3180", "target": "8779" }, { "key": "geid_144_2106", "source": "9620", "target": "7453" }, { "key": "geid_144_2107", "source": "589", "target": "4734" }, { "key": "geid_144_2108", "source": "952", "target": "3229" }, { "key": "geid_144_2109", "source": "1424", "target": "902" }, { "key": "geid_144_2110", "source": "9135", "target": "1876" }, { "key": "geid_144_2111", "source": "6971", "target": "7836" }, { "key": "geid_144_2112", "source": "8442", "target": "10" }, { "key": "geid_144_2113", "source": "4113", "target": "3561" }, { "key": "geid_144_2114", "source": "1145", "target": "4722" }, { "key": "geid_144_2115", "source": "2868", "target": "4334" }, { "key": "geid_144_2116", "source": "941", "target": "6369" }, { "key": "geid_144_2117", "source": "8508", "target": "9609" }, { "key": "geid_144_2118", "source": "7413", "target": "6027" }, { "key": "geid_144_2119", "source": "5184", "target": "2621" }, { "key": "geid_144_2120", "source": "2158", "target": "2486" }, { "key": "geid_144_2121", "source": "8753", "target": "4084" }, { "key": "geid_144_2122", "source": "2728", "target": "7426" }, { "key": "geid_144_2123", "source": "9487", "target": "5674" }, { "key": "geid_144_2124", "source": "3497", "target": "2847" }, { "key": "geid_144_2125", "source": "8018", "target": "7521" }, { "key": "geid_144_2126", "source": "7858", "target": "747" }, { "key": "geid_144_2127", "source": "7700", "target": "6186" }, { "key": "geid_144_2128", "source": "2888", "target": "6607" }, { "key": "geid_144_2129", "source": "4590", "target": "1680" }, { "key": "geid_144_2130", "source": "7232", "target": "2264" }, { "key": "geid_144_2131", "source": "4444", "target": "185" }, { "key": "geid_144_2132", "source": "2278", "target": "9809" }, { "key": "geid_144_2133", "source": "4284", "target": "7270" }, { "key": "geid_144_2134", "source": "7279", "target": "7126" }, { "key": "geid_144_2135", "source": "3513", "target": "2767" }, { "key": "geid_144_2136", "source": "4697", "target": "9746" }, { "key": "geid_144_2137", "source": "8419", "target": "2287" }, { "key": "geid_144_2138", "source": "4219", "target": "4930" }, { "key": "geid_144_2139", "source": "5406", "target": "6502" }, { "key": "geid_144_2140", "source": "9143", "target": "3125" }, { "key": "geid_144_2141", "source": "2273", "target": "8739" }, { "key": "geid_144_2142", "source": "1090", "target": "2288" }, { "key": "geid_144_2143", "source": "2744", "target": "1298" }, { "key": "geid_144_2144", "source": "409", "target": "2756" }, { "key": "geid_144_2145", "source": "5440", "target": "9482" }, { "key": "geid_144_2146", "source": "5400", "target": "5862" }, { "key": "geid_144_2147", "source": "3330", "target": "7631" }, { "key": "geid_144_2148", "source": "1573", "target": "5966" }, { "key": "geid_144_2149", "source": "7388", "target": "5529" }, { "key": "geid_144_2150", "source": "320", "target": "6619" }, { "key": "geid_144_2151", "source": "6298", "target": "2669" }, { "key": "geid_144_2152", "source": "3877", "target": "684" }, { "key": "geid_144_2153", "source": "9153", "target": "3822" }, { "key": "geid_144_2154", "source": "1616", "target": "543" }, { "key": "geid_144_2155", "source": "6776", "target": "2344" }, { "key": "geid_144_2156", "source": "3301", "target": "4217" }, { "key": "geid_144_2157", "source": "3678", "target": "268" }, { "key": "geid_144_2158", "source": "5450", "target": "5675" }, { "key": "geid_144_2159", "source": "1908", "target": "5460" }, { "key": "geid_144_2160", "source": "3284", "target": "4843" }, { "key": "geid_144_2161", "source": "9909", "target": "4885" }, { "key": "geid_144_2162", "source": "7778", "target": "1692" }, { "key": "geid_144_2163", "source": "3024", "target": "5218" }, { "key": "geid_144_2164", "source": "3760", "target": "7756" }, { "key": "geid_144_2165", "source": "8237", "target": "3264" }, { "key": "geid_144_2166", "source": "2586", "target": "1772" }, { "key": "geid_144_2167", "source": "2618", "target": "4063" }, { "key": "geid_144_2168", "source": "7398", "target": "9706" }, { "key": "geid_144_2169", "source": "7841", "target": "5017" }, { "key": "geid_144_2170", "source": "1766", "target": "5558" }, { "key": "geid_144_2171", "source": "2128", "target": "3927" }, { "key": "geid_144_2172", "source": "3059", "target": "3664" }, { "key": "geid_144_2173", "source": "2286", "target": "258" }, { "key": "geid_144_2174", "source": "8412", "target": "1537" }, { "key": "geid_144_2175", "source": "6136", "target": "360" }, { "key": "geid_144_2176", "source": "4711", "target": "9532" }, { "key": "geid_144_2177", "source": "1966", "target": "6548" }, { "key": "geid_144_2178", "source": "8857", "target": "15" }, { "key": "geid_144_2179", "source": "4302", "target": "4507" }, { "key": "geid_144_2180", "source": "7967", "target": "6397" }, { "key": "geid_144_2181", "source": "3948", "target": "8691" }, { "key": "geid_144_2182", "source": "5485", "target": "5700" }, { "key": "geid_144_2183", "source": "6558", "target": "8403" }, { "key": "geid_144_2184", "source": "4251", "target": "2592" }, { "key": "geid_144_2185", "source": "6572", "target": "9732" }, { "key": "geid_144_2186", "source": "7713", "target": "5316" }, { "key": "geid_144_2187", "source": "594", "target": "7279" }, { "key": "geid_144_2188", "source": "6063", "target": "1666" }, { "key": "geid_144_2189", "source": "1775", "target": "2895" }, { "key": "geid_144_2190", "source": "4991", "target": "2225" }, { "key": "geid_144_2191", "source": "1430", "target": "6914" }, { "key": "geid_144_2192", "source": "9669", "target": "9550" }, { "key": "geid_144_2193", "source": "7184", "target": "5704" }, { "key": "geid_144_2194", "source": "2472", "target": "2181" }, { "key": "geid_144_2195", "source": "7478", "target": "8275" }, { "key": "geid_144_2196", "source": "5565", "target": "418" }, { "key": "geid_144_2197", "source": "3541", "target": "2856" }, { "key": "geid_144_2198", "source": "1547", "target": "1044" }, { "key": "geid_144_2199", "source": "6329", "target": "5845" }, { "key": "geid_144_2200", "source": "1877", "target": "9429" }, { "key": "geid_144_2201", "source": "5223", "target": "1483" }, { "key": "geid_144_2202", "source": "5435", "target": "9997" }, { "key": "geid_144_2203", "source": "7931", "target": "5386" }, { "key": "geid_144_2204", "source": "2882", "target": "7273" }, { "key": "geid_144_2205", "source": "1434", "target": "627" }, { "key": "geid_144_2206", "source": "6639", "target": "3471" }, { "key": "geid_144_2207", "source": "8246", "target": "7995" }, { "key": "geid_144_2208", "source": "5687", "target": "3310" }, { "key": "geid_144_2209", "source": "1706", "target": "9687" }, { "key": "geid_144_2210", "source": "3987", "target": "8847" }, { "key": "geid_144_2211", "source": "8665", "target": "6484" }, { "key": "geid_144_2212", "source": "2990", "target": "3659" }, { "key": "geid_144_2213", "source": "6385", "target": "8282" }, { "key": "geid_144_2214", "source": "7373", "target": "1476" }, { "key": "geid_144_2215", "source": "1134", "target": "6273" }, { "key": "geid_144_2216", "source": "8069", "target": "3950" }, { "key": "geid_144_2217", "source": "8990", "target": "8546" }, { "key": "geid_144_2218", "source": "6036", "target": "6560" }, { "key": "geid_144_2219", "source": "1369", "target": "4357" }, { "key": "geid_144_2220", "source": "6972", "target": "54" }, { "key": "geid_144_2221", "source": "9971", "target": "7600" }, { "key": "geid_144_2222", "source": "4087", "target": "9722" }, { "key": "geid_144_2223", "source": "5121", "target": "921" }, { "key": "geid_144_2224", "source": "4132", "target": "381" }, { "key": "geid_144_2225", "source": "4116", "target": "5545" }, { "key": "geid_144_2226", "source": "489", "target": "9352" }, { "key": "geid_144_2227", "source": "8877", "target": "9672" }, { "key": "geid_144_2228", "source": "5906", "target": "2854" }, { "key": "geid_144_2229", "source": "1250", "target": "7496" }, { "key": "geid_144_2230", "source": "9648", "target": "9852" }, { "key": "geid_144_2231", "source": "1543", "target": "8780" }, { "key": "geid_144_2232", "source": "2599", "target": "6344" }, { "key": "geid_144_2233", "source": "9078", "target": "640" }, { "key": "geid_144_2234", "source": "9763", "target": "1886" }, { "key": "geid_144_2235", "source": "3435", "target": "7948" }, { "key": "geid_144_2236", "source": "1013", "target": "9820" }, { "key": "geid_144_2237", "source": "9909", "target": "9647" }, { "key": "geid_144_2238", "source": "8321", "target": "7087" }, { "key": "geid_144_2239", "source": "8235", "target": "2693" }, { "key": "geid_144_2240", "source": "2698", "target": "198" }, { "key": "geid_144_2241", "source": "748", "target": "7793" }, { "key": "geid_144_2242", "source": "9185", "target": "3703" }, { "key": "geid_144_2243", "source": "2047", "target": "9911" }, { "key": "geid_144_2244", "source": "1461", "target": "7206" }, { "key": "geid_144_2245", "source": "8848", "target": "9539" }, { "key": "geid_144_2246", "source": "539", "target": "8097" }, { "key": "geid_144_2247", "source": "4474", "target": "7549" }, { "key": "geid_144_2248", "source": "3685", "target": "2512" }, { "key": "geid_144_2249", "source": "750", "target": "1203" }, { "key": "geid_144_2250", "source": "1815", "target": "6967" }, { "key": "geid_144_2251", "source": "4621", "target": "1455" }, { "key": "geid_144_2252", "source": "1307", "target": "8776" }, { "key": "geid_144_2253", "source": "8900", "target": "7981" }, { "key": "geid_144_2254", "source": "6365", "target": "4709" }, { "key": "geid_144_2255", "source": "722", "target": "4164" }, { "key": "geid_144_2256", "source": "4585", "target": "5264" }, { "key": "geid_144_2257", "source": "1161", "target": "7169" }, { "key": "geid_144_2258", "source": "9767", "target": "1616" }, { "key": "geid_144_2259", "source": "213", "target": "2678" }, { "key": "geid_144_2260", "source": "1531", "target": "1865" }, { "key": "geid_144_2261", "source": "6770", "target": "9863" }, { "key": "geid_144_2262", "source": "388", "target": "2059" }, { "key": "geid_144_2263", "source": "1076", "target": "9316" }, { "key": "geid_144_2264", "source": "8207", "target": "9239" }, { "key": "geid_144_2265", "source": "6348", "target": "7847" }, { "key": "geid_144_2266", "source": "6661", "target": "6763" }, { "key": "geid_144_2267", "source": "1118", "target": "3287" }, { "key": "geid_144_2268", "source": "9956", "target": "6547" }, { "key": "geid_144_2269", "source": "1064", "target": "6260" }, { "key": "geid_144_2270", "source": "2620", "target": "5585" }, { "key": "geid_144_2271", "source": "1719", "target": "6004" }, { "key": "geid_144_2272", "source": "9462", "target": "3659" }, { "key": "geid_144_2273", "source": "7569", "target": "3002" }, { "key": "geid_144_2274", "source": "1005", "target": "4396" }, { "key": "geid_144_2275", "source": "7090", "target": "8202" }, { "key": "geid_144_2276", "source": "367", "target": "1556" }, { "key": "geid_144_2277", "source": "172", "target": "115" }, { "key": "geid_144_2278", "source": "7572", "target": "9245" }, { "key": "geid_144_2279", "source": "5032", "target": "5463" }, { "key": "geid_144_2280", "source": "969", "target": "3369" }, { "key": "geid_144_2281", "source": "3677", "target": "8041" }, { "key": "geid_144_2282", "source": "8851", "target": "8318" }, { "key": "geid_144_2283", "source": "1807", "target": "2234" }, { "key": "geid_144_2284", "source": "9936", "target": "193" }, { "key": "geid_144_2285", "source": "7037", "target": "4895" }, { "key": "geid_144_2286", "source": "9253", "target": "6204" }, { "key": "geid_144_2287", "source": "5111", "target": "6068" }, { "key": "geid_144_2288", "source": "2483", "target": "6726" }, { "key": "geid_144_2289", "source": "9347", "target": "8682" }, { "key": "geid_144_2290", "source": "4209", "target": "1608" }, { "key": "geid_144_2291", "source": "5717", "target": "4368" }, { "key": "geid_144_2292", "source": "7862", "target": "859" }, { "key": "geid_144_2293", "source": "7084", "target": "6364" }, { "key": "geid_144_2294", "source": "1334", "target": "6875" }, { "key": "geid_144_2295", "source": "782", "target": "4219" }, { "key": "geid_144_2296", "source": "4040", "target": "6915" }, { "key": "geid_144_2297", "source": "5807", "target": "9408" }, { "key": "geid_144_2298", "source": "4590", "target": "1981" }, { "key": "geid_144_2299", "source": "5800", "target": "2699" }, { "key": "geid_144_2300", "source": "7008", "target": "9988" }, { "key": "geid_144_2301", "source": "3647", "target": "2860" }, { "key": "geid_144_2302", "source": "8063", "target": "2226" }, { "key": "geid_144_2303", "source": "2874", "target": "8255" }, { "key": "geid_144_2304", "source": "9089", "target": "6392" }, { "key": "geid_144_2305", "source": "7361", "target": "166" }, { "key": "geid_144_2306", "source": "4983", "target": "3489" }, { "key": "geid_144_2307", "source": "4653", "target": "8616" }, { "key": "geid_144_2308", "source": "1247", "target": "2979" }, { "key": "geid_144_2309", "source": "672", "target": "3960" }, { "key": "geid_144_2310", "source": "6550", "target": "7852" }, { "key": "geid_144_2311", "source": "7141", "target": "3446" }, { "key": "geid_144_2312", "source": "2797", "target": "3446" }, { "key": "geid_144_2313", "source": "7878", "target": "818" }, { "key": "geid_144_2314", "source": "5243", "target": "1059" }, { "key": "geid_144_2315", "source": "96", "target": "6514" }, { "key": "geid_144_2316", "source": "2985", "target": "956" }, { "key": "geid_144_2317", "source": "8017", "target": "3153" }, { "key": "geid_144_2318", "source": "6850", "target": "2147" }, { "key": "geid_144_2319", "source": "8654", "target": "4643" }, { "key": "geid_144_2320", "source": "8498", "target": "5522" }, { "key": "geid_144_2321", "source": "5297", "target": "6135" }, { "key": "geid_144_2322", "source": "7333", "target": "5789" }, { "key": "geid_144_2323", "source": "5507", "target": "6708" }, { "key": "geid_144_2324", "source": "5886", "target": "437" }, { "key": "geid_144_2325", "source": "3581", "target": "7291" }, { "key": "geid_144_2326", "source": "7755", "target": "7260" }, { "key": "geid_144_2327", "source": "4975", "target": "8423" }, { "key": "geid_144_2328", "source": "4655", "target": "2932" }, { "key": "geid_144_2329", "source": "7739", "target": "1335" }, { "key": "geid_144_2330", "source": "1719", "target": "5892" }, { "key": "geid_144_2331", "source": "8901", "target": "6655" }, { "key": "geid_144_2332", "source": "1349", "target": "1700" }, { "key": "geid_144_2333", "source": "6488", "target": "7699" }, { "key": "geid_144_2334", "source": "9029", "target": "6525" }, { "key": "geid_144_2335", "source": "9673", "target": "6462" }, { "key": "geid_144_2336", "source": "9784", "target": "1738" }, { "key": "geid_144_2337", "source": "5847", "target": "4424" }, { "key": "geid_144_2338", "source": "2090", "target": "534" }, { "key": "geid_144_2339", "source": "1194", "target": "5415" }, { "key": "geid_144_2340", "source": "5893", "target": "1586" }, { "key": "geid_144_2341", "source": "1412", "target": "9083" }, { "key": "geid_144_2342", "source": "1792", "target": "8486" }, { "key": "geid_144_2343", "source": "8882", "target": "5013" }, { "key": "geid_144_2344", "source": "492", "target": "5635" }, { "key": "geid_144_2345", "source": "4066", "target": "4049" }, { "key": "geid_144_2346", "source": "7001", "target": "3205" }, { "key": "geid_144_2347", "source": "1021", "target": "4412" }, { "key": "geid_144_2348", "source": "7974", "target": "6944" }, { "key": "geid_144_2349", "source": "9793", "target": "9367" }, { "key": "geid_144_2350", "source": "7417", "target": "4607" }, { "key": "geid_144_2351", "source": "883", "target": "924" }, { "key": "geid_144_2352", "source": "9119", "target": "3474" }, { "key": "geid_144_2353", "source": "988", "target": "3232" }, { "key": "geid_144_2354", "source": "7464", "target": "7050" }, { "key": "geid_144_2355", "source": "2353", "target": "4700" }, { "key": "geid_144_2356", "source": "2992", "target": "8471" }, { "key": "geid_144_2357", "source": "3948", "target": "3467" }, { "key": "geid_144_2358", "source": "3604", "target": "935" }, { "key": "geid_144_2359", "source": "6712", "target": "1024" }, { "key": "geid_144_2360", "source": "1998", "target": "9348" }, { "key": "geid_144_2361", "source": "4486", "target": "7071" }, { "key": "geid_144_2362", "source": "6459", "target": "7403" }, { "key": "geid_144_2363", "source": "4997", "target": "9320" }, { "key": "geid_144_2364", "source": "6596", "target": "5916" }, { "key": "geid_144_2365", "source": "7511", "target": "7516" }, { "key": "geid_144_2366", "source": "3806", "target": "5155" }, { "key": "geid_144_2367", "source": "7802", "target": "6664" }, { "key": "geid_144_2368", "source": "2688", "target": "7501" }, { "key": "geid_144_2369", "source": "2828", "target": "1585" }, { "key": "geid_144_2370", "source": "5382", "target": "7209" }, { "key": "geid_144_2371", "source": "9108", "target": "8036" }, { "key": "geid_144_2372", "source": "5277", "target": "4092" }, { "key": "geid_144_2373", "source": "2310", "target": "5006" }, { "key": "geid_144_2374", "source": "289", "target": "4429" }, { "key": "geid_144_2375", "source": "5705", "target": "3098" }, { "key": "geid_144_2376", "source": "1517", "target": "5429" }, { "key": "geid_144_2377", "source": "1310", "target": "8073" }, { "key": "geid_144_2378", "source": "2724", "target": "929" }, { "key": "geid_144_2379", "source": "8764", "target": "4664" }, { "key": "geid_144_2380", "source": "5609", "target": "9252" }, { "key": "geid_144_2381", "source": "3377", "target": "5042" }, { "key": "geid_144_2382", "source": "5176", "target": "513" }, { "key": "geid_144_2383", "source": "9281", "target": "4600" }, { "key": "geid_144_2384", "source": "4543", "target": "3357" }, { "key": "geid_144_2385", "source": "1214", "target": "7345" }, { "key": "geid_144_2386", "source": "3901", "target": "5530" }, { "key": "geid_144_2387", "source": "7924", "target": "1950" }, { "key": "geid_144_2388", "source": "8982", "target": "1763" }, { "key": "geid_144_2389", "source": "4996", "target": "653" }, { "key": "geid_144_2390", "source": "5285", "target": "845" }, { "key": "geid_144_2391", "source": "8084", "target": "8275" }, { "key": "geid_144_2392", "source": "8309", "target": "5515" }, { "key": "geid_144_2393", "source": "8890", "target": "6722" }, { "key": "geid_144_2394", "source": "8243", "target": "412" }, { "key": "geid_144_2395", "source": "8133", "target": "3886" }, { "key": "geid_144_2396", "source": "800", "target": "9477" }, { "key": "geid_144_2397", "source": "5777", "target": "71" }, { "key": "geid_144_2398", "source": "508", "target": "4829" }, { "key": "geid_144_2399", "source": "5189", "target": "422" }, { "key": "geid_144_2400", "source": "321", "target": "2891" }, { "key": "geid_144_2401", "source": "5780", "target": "8213" }, { "key": "geid_144_2402", "source": "1189", "target": "9984" }, { "key": "geid_144_2403", "source": "3076", "target": "6492" }, { "key": "geid_144_2404", "source": "3284", "target": "7423" }, { "key": "geid_144_2405", "source": "4093", "target": "7770" }, { "key": "geid_144_2406", "source": "6251", "target": "527" }, { "key": "geid_144_2407", "source": "1581", "target": "1877" }, { "key": "geid_144_2408", "source": "9005", "target": "1727" }, { "key": "geid_144_2409", "source": "2129", "target": "2811" }, { "key": "geid_144_2410", "source": "822", "target": "121" }, { "key": "geid_144_2411", "source": "3017", "target": "3044" }, { "key": "geid_144_2412", "source": "3360", "target": "857" }, { "key": "geid_144_2413", "source": "3301", "target": "4141" }, { "key": "geid_144_2414", "source": "9671", "target": "206" }, { "key": "geid_144_2415", "source": "3850", "target": "6295" }, { "key": "geid_144_2416", "source": "2022", "target": "988" }, { "key": "geid_144_2417", "source": "7261", "target": "3272" }, { "key": "geid_144_2418", "source": "6073", "target": "7610" }, { "key": "geid_144_2419", "source": "802", "target": "2049" }, { "key": "geid_144_2420", "source": "7236", "target": "3971" }, { "key": "geid_144_2421", "source": "3484", "target": "3254" }, { "key": "geid_144_2422", "source": "3521", "target": "971" }, { "key": "geid_144_2423", "source": "4837", "target": "3196" }, { "key": "geid_144_2424", "source": "4515", "target": "6352" }, { "key": "geid_144_2425", "source": "8012", "target": "1821" }, { "key": "geid_144_2426", "source": "4216", "target": "3814" }, { "key": "geid_144_2427", "source": "8131", "target": "6735" }, { "key": "geid_144_2428", "source": "9436", "target": "1525" }, { "key": "geid_144_2429", "source": "7002", "target": "3044" }, { "key": "geid_144_2430", "source": "381", "target": "6154" }, { "key": "geid_144_2431", "source": "3896", "target": "5149" }, { "key": "geid_144_2432", "source": "5269", "target": "9871" }, { "key": "geid_144_2433", "source": "4663", "target": "1912" }, { "key": "geid_144_2434", "source": "1071", "target": "6550" }, { "key": "geid_144_2435", "source": "4293", "target": "6748" }, { "key": "geid_144_2436", "source": "4306", "target": "5500" }, { "key": "geid_144_2437", "source": "7339", "target": "3617" }, { "key": "geid_144_2438", "source": "4245", "target": "1948" }, { "key": "geid_144_2439", "source": "9581", "target": "6428" }, { "key": "geid_144_2440", "source": "1035", "target": "4089" }, { "key": "geid_144_2441", "source": "3209", "target": "2223" }, { "key": "geid_144_2442", "source": "4632", "target": "2144" }, { "key": "geid_144_2443", "source": "1706", "target": "5546" }, { "key": "geid_144_2444", "source": "5349", "target": "9015" }, { "key": "geid_144_2445", "source": "7005", "target": "3834" }, { "key": "geid_144_2446", "source": "6551", "target": "7805" }, { "key": "geid_144_2447", "source": "6617", "target": "5847" }, { "key": "geid_144_2448", "source": "8475", "target": "6395" }, { "key": "geid_144_2449", "source": "991", "target": "5824" }, { "key": "geid_144_2450", "source": "4679", "target": "430" }, { "key": "geid_144_2451", "source": "4461", "target": "5302" }, { "key": "geid_144_2452", "source": "5956", "target": "6728" }, { "key": "geid_144_2453", "source": "4168", "target": "925" }, { "key": "geid_144_2454", "source": "1582", "target": "3888" }, { "key": "geid_144_2455", "source": "6271", "target": "305" }, { "key": "geid_144_2456", "source": "3030", "target": "9562" }, { "key": "geid_144_2457", "source": "6022", "target": "3765" }, { "key": "geid_144_2458", "source": "6309", "target": "5172" }, { "key": "geid_144_2459", "source": "3416", "target": "3625" }, { "key": "geid_144_2460", "source": "6918", "target": "5219" }, { "key": "geid_144_2461", "source": "4648", "target": "3156" }, { "key": "geid_144_2462", "source": "6989", "target": "2775" }, { "key": "geid_144_2463", "source": "9200", "target": "8044" }, { "key": "geid_144_2464", "source": "9939", "target": "3022" }, { "key": "geid_144_2465", "source": "6555", "target": "2857" }, { "key": "geid_144_2466", "source": "7794", "target": "2649" }, { "key": "geid_144_2467", "source": "7277", "target": "4787" }, { "key": "geid_144_2468", "source": "1164", "target": "9710" }, { "key": "geid_144_2469", "source": "5326", "target": "7288" }, { "key": "geid_144_2470", "source": "1969", "target": "6945" }, { "key": "geid_144_2471", "source": "7812", "target": "6033" }, { "key": "geid_144_2472", "source": "6790", "target": "9103" }, { "key": "geid_144_2473", "source": "3178", "target": "7994" }, { "key": "geid_144_2474", "source": "2422", "target": "5119" }, { "key": "geid_144_2475", "source": "7106", "target": "2460" }, { "key": "geid_144_2476", "source": "6479", "target": "5356" }, { "key": "geid_144_2477", "source": "4092", "target": "7280" }, { "key": "geid_144_2478", "source": "268", "target": "8096" }, { "key": "geid_144_2479", "source": "8657", "target": "7448" }, { "key": "geid_144_2480", "source": "5986", "target": "9906" }, { "key": "geid_144_2481", "source": "1235", "target": "795" }, { "key": "geid_144_2482", "source": "5239", "target": "627" }, { "key": "geid_144_2483", "source": "4114", "target": "7944" }, { "key": "geid_144_2484", "source": "4030", "target": "8967" }, { "key": "geid_144_2485", "source": "9533", "target": "3588" }, { "key": "geid_144_2486", "source": "8847", "target": "8297" }, { "key": "geid_144_2487", "source": "1593", "target": "6934" }, { "key": "geid_144_2488", "source": "1113", "target": "617" }, { "key": "geid_144_2489", "source": "3089", "target": "2102" }, { "key": "geid_144_2490", "source": "9796", "target": "2267" }, { "key": "geid_144_2491", "source": "3747", "target": "7357" }, { "key": "geid_144_2492", "source": "1571", "target": "2649" }, { "key": "geid_144_2493", "source": "625", "target": "2656" }, { "key": "geid_144_2494", "source": "1180", "target": "6540" }, { "key": "geid_144_2495", "source": "5820", "target": "7251" }, { "key": "geid_144_2496", "source": "2298", "target": "8628" }, { "key": "geid_144_2497", "source": "403", "target": "4155" }, { "key": "geid_144_2498", "source": "8711", "target": "4230" }, { "key": "geid_144_2499", "source": "7040", "target": "2092" }, { "key": "geid_144_2500", "source": "7287", "target": "570" }, { "key": "geid_144_2501", "source": "9795", "target": "9903" }, { "key": "geid_144_2502", "source": "8478", "target": "3856" }, { "key": "geid_144_2503", "source": "504", "target": "3417" }, { "key": "geid_144_2504", "source": "8625", "target": "9155" }, { "key": "geid_144_2505", "source": "9798", "target": "3020" }, { "key": "geid_144_2506", "source": "1517", "target": "7163" }, { "key": "geid_144_2507", "source": "7908", "target": "4732" }, { "key": "geid_144_2508", "source": "9475", "target": "5863" }, { "key": "geid_144_2509", "source": "769", "target": "9134" }, { "key": "geid_144_2510", "source": "2477", "target": "3076" }, { "key": "geid_144_2511", "source": "2399", "target": "6336" }, { "key": "geid_144_2512", "source": "3211", "target": "9290" }, { "key": "geid_144_2513", "source": "1977", "target": "9885" }, { "key": "geid_144_2514", "source": "7957", "target": "4345" }, { "key": "geid_144_2515", "source": "689", "target": "7320" }, { "key": "geid_144_2516", "source": "8597", "target": "410" }, { "key": "geid_144_2517", "source": "9342", "target": "2876" }, { "key": "geid_144_2518", "source": "5473", "target": "6253" }, { "key": "geid_144_2519", "source": "1476", "target": "9099" }, { "key": "geid_144_2520", "source": "8164", "target": "5539" }, { "key": "geid_144_2521", "source": "6212", "target": "7323" }, { "key": "geid_144_2522", "source": "5845", "target": "8780" }, { "key": "geid_144_2523", "source": "5576", "target": "9259" }, { "key": "geid_144_2524", "source": "8375", "target": "9876" }, { "key": "geid_144_2525", "source": "1958", "target": "3128" }, { "key": "geid_144_2526", "source": "9159", "target": "1021" }, { "key": "geid_144_2527", "source": "4245", "target": "204" }, { "key": "geid_144_2528", "source": "886", "target": "9647" }, { "key": "geid_144_2529", "source": "9278", "target": "447" }, { "key": "geid_144_2530", "source": "1870", "target": "279" }, { "key": "geid_144_2531", "source": "1679", "target": "5491" }, { "key": "geid_144_2532", "source": "8857", "target": "8933" }, { "key": "geid_144_2533", "source": "2584", "target": "9777" }, { "key": "geid_144_2534", "source": "7963", "target": "4126" }, { "key": "geid_144_2535", "source": "4863", "target": "1659" }, { "key": "geid_144_2536", "source": "9117", "target": "1228" }, { "key": "geid_144_2537", "source": "6118", "target": "6252" }, { "key": "geid_144_2538", "source": "8214", "target": "2943" }, { "key": "geid_144_2539", "source": "7007", "target": "6799" }, { "key": "geid_144_2540", "source": "1051", "target": "7196" }, { "key": "geid_144_2541", "source": "5914", "target": "6422" }, { "key": "geid_144_2542", "source": "6406", "target": "9646" }, { "key": "geid_144_2543", "source": "1571", "target": "4495" }, { "key": "geid_144_2544", "source": "2788", "target": "465" }, { "key": "geid_144_2545", "source": "3951", "target": "6246" }, { "key": "geid_144_2546", "source": "8775", "target": "1187" }, { "key": "geid_144_2547", "source": "7550", "target": "8902" }, { "key": "geid_144_2548", "source": "7620", "target": "3026" }, { "key": "geid_144_2549", "source": "6099", "target": "5973" }, { "key": "geid_144_2550", "source": "8504", "target": "3513" }, { "key": "geid_144_2551", "source": "1148", "target": "4352" }, { "key": "geid_144_2552", "source": "9450", "target": "1251" }, { "key": "geid_144_2553", "source": "465", "target": "840" }, { "key": "geid_144_2554", "source": "3756", "target": "7221" }, { "key": "geid_144_2555", "source": "4335", "target": "3791" }, { "key": "geid_144_2556", "source": "4341", "target": "8349" }, { "key": "geid_144_2557", "source": "2903", "target": "1025" }, { "key": "geid_144_2558", "source": "2691", "target": "5298" }, { "key": "geid_144_2559", "source": "1065", "target": "726" }, { "key": "geid_144_2560", "source": "3568", "target": "4631" }, { "key": "geid_144_2561", "source": "4712", "target": "6698" }, { "key": "geid_144_2562", "source": "2457", "target": "1464" }, { "key": "geid_144_2563", "source": "2327", "target": "4366" }, { "key": "geid_144_2564", "source": "7498", "target": "4434" }, { "key": "geid_144_2565", "source": "6179", "target": "3374" }, { "key": "geid_144_2566", "source": "9309", "target": "1812" }, { "key": "geid_144_2567", "source": "9578", "target": "90" }, { "key": "geid_144_2568", "source": "477", "target": "712" }, { "key": "geid_144_2569", "source": "316", "target": "8560" }, { "key": "geid_144_2570", "source": "2166", "target": "2669" }, { "key": "geid_144_2571", "source": "4914", "target": "425" }, { "key": "geid_144_2572", "source": "1493", "target": "7608" }, { "key": "geid_144_2573", "source": "1713", "target": "8066" }, { "key": "geid_144_2574", "source": "1498", "target": "5332" }, { "key": "geid_144_2575", "source": "1142", "target": "4868" }, { "key": "geid_144_2576", "source": "5377", "target": "2526" }, { "key": "geid_144_2577", "source": "841", "target": "8630" }, { "key": "geid_144_2578", "source": "4668", "target": "3921" }, { "key": "geid_144_2579", "source": "8667", "target": "2003" }, { "key": "geid_144_2580", "source": "1358", "target": "9281" }, { "key": "geid_144_2581", "source": "4521", "target": "126" }, { "key": "geid_144_2582", "source": "1740", "target": "6932" }, { "key": "geid_144_2583", "source": "1795", "target": "6701" }, { "key": "geid_144_2584", "source": "4262", "target": "2291" }, { "key": "geid_144_2585", "source": "780", "target": "9120" }, { "key": "geid_144_2586", "source": "5959", "target": "7494" }, { "key": "geid_144_2587", "source": "2635", "target": "3417" }, { "key": "geid_144_2588", "source": "7417", "target": "9475" }, { "key": "geid_144_2589", "source": "9453", "target": "9239" }, { "key": "geid_144_2590", "source": "5716", "target": "6539" }, { "key": "geid_144_2591", "source": "7582", "target": "4257" }, { "key": "geid_144_2592", "source": "9277", "target": "9143" }, { "key": "geid_144_2593", "source": "5628", "target": "5367" }, { "key": "geid_144_2594", "source": "7302", "target": "6752" }, { "key": "geid_144_2595", "source": "7805", "target": "7335" }, { "key": "geid_144_2596", "source": "6243", "target": "7298" }, { "key": "geid_144_2597", "source": "3697", "target": "7385" }, { "key": "geid_144_2598", "source": "1268", "target": "3927" }, { "key": "geid_144_2599", "source": "4278", "target": "351" }, { "key": "geid_144_2600", "source": "3788", "target": "8242" }, { "key": "geid_144_2601", "source": "7262", "target": "2961" }, { "key": "geid_144_2602", "source": "863", "target": "4245" }, { "key": "geid_144_2603", "source": "7641", "target": "9598" }, { "key": "geid_144_2604", "source": "5041", "target": "4689" }, { "key": "geid_144_2605", "source": "7744", "target": "5086" }, { "key": "geid_144_2606", "source": "1144", "target": "1737" }, { "key": "geid_144_2607", "source": "1896", "target": "4354" }, { "key": "geid_144_2608", "source": "8900", "target": "8067" }, { "key": "geid_144_2609", "source": "9003", "target": "403" }, { "key": "geid_144_2610", "source": "6638", "target": "546" }, { "key": "geid_144_2611", "source": "9165", "target": "4798" }, { "key": "geid_144_2612", "source": "1677", "target": "5954" }, { "key": "geid_144_2613", "source": "9840", "target": "7353" }, { "key": "geid_144_2614", "source": "6626", "target": "3355" }, { "key": "geid_144_2615", "source": "5941", "target": "8933" }, { "key": "geid_144_2616", "source": "8650", "target": "1650" }, { "key": "geid_144_2617", "source": "7402", "target": "6157" }, { "key": "geid_144_2618", "source": "3294", "target": "4999" }, { "key": "geid_144_2619", "source": "4284", "target": "9526" }, { "key": "geid_144_2620", "source": "567", "target": "2019" }, { "key": "geid_144_2621", "source": "5992", "target": "3555" }, { "key": "geid_144_2622", "source": "6672", "target": "584" }, { "key": "geid_144_2623", "source": "8082", "target": "7876" }, { "key": "geid_144_2624", "source": "2210", "target": "2170" }, { "key": "geid_144_2625", "source": "3068", "target": "4062" }, { "key": "geid_144_2626", "source": "6384", "target": "4161" }, { "key": "geid_144_2627", "source": "606", "target": "9350" }, { "key": "geid_144_2628", "source": "4480", "target": "749" }, { "key": "geid_144_2629", "source": "8807", "target": "696" }, { "key": "geid_144_2630", "source": "8412", "target": "7187" }, { "key": "geid_144_2631", "source": "1052", "target": "1174" }, { "key": "geid_144_2632", "source": "2717", "target": "5034" }, { "key": "geid_144_2633", "source": "3272", "target": "151" }, { "key": "geid_144_2634", "source": "4756", "target": "1246" }, { "key": "geid_144_2635", "source": "2933", "target": "9131" }, { "key": "geid_144_2636", "source": "4807", "target": "8150" }, { "key": "geid_144_2637", "source": "5672", "target": "6897" }, { "key": "geid_144_2638", "source": "9135", "target": "6654" }, { "key": "geid_144_2639", "source": "303", "target": "1772" }, { "key": "geid_144_2640", "source": "6371", "target": "9663" }, { "key": "geid_144_2641", "source": "3428", "target": "6005" }, { "key": "geid_144_2642", "source": "1086", "target": "821" }, { "key": "geid_144_2643", "source": "6609", "target": "4442" }, { "key": "geid_144_2644", "source": "6419", "target": "3016" }, { "key": "geid_144_2645", "source": "8530", "target": "9695" }, { "key": "geid_144_2646", "source": "6886", "target": "2305" }, { "key": "geid_144_2647", "source": "1128", "target": "1119" }, { "key": "geid_144_2648", "source": "7532", "target": "772" }, { "key": "geid_144_2649", "source": "3530", "target": "8900" }, { "key": "geid_144_2650", "source": "4039", "target": "4561" }, { "key": "geid_144_2651", "source": "6922", "target": "5552" }, { "key": "geid_144_2652", "source": "3985", "target": "5961" }, { "key": "geid_144_2653", "source": "2842", "target": "2727" }, { "key": "geid_144_2654", "source": "6389", "target": "2674" }, { "key": "geid_144_2655", "source": "9898", "target": "6864" }, { "key": "geid_144_2656", "source": "2288", "target": "1110" }, { "key": "geid_144_2657", "source": "7416", "target": "738" }, { "key": "geid_144_2658", "source": "89", "target": "7828" }, { "key": "geid_144_2659", "source": "1390", "target": "3675" }, { "key": "geid_144_2660", "source": "4105", "target": "3713" }, { "key": "geid_144_2661", "source": "1606", "target": "2246" }, { "key": "geid_144_2662", "source": "6418", "target": "9035" }, { "key": "geid_144_2663", "source": "9451", "target": "521" }, { "key": "geid_144_2664", "source": "7281", "target": "2127" }, { "key": "geid_144_2665", "source": "4014", "target": "8523" }, { "key": "geid_144_2666", "source": "5148", "target": "325" }, { "key": "geid_144_2667", "source": "181", "target": "4126" }, { "key": "geid_144_2668", "source": "3605", "target": "8076" }, { "key": "geid_144_2669", "source": "7017", "target": "1547" }, { "key": "geid_144_2670", "source": "7755", "target": "8013" }, { "key": "geid_144_2671", "source": "7763", "target": "1163" }, { "key": "geid_144_2672", "source": "9772", "target": "366" }, { "key": "geid_144_2673", "source": "1218", "target": "6991" }, { "key": "geid_144_2674", "source": "4743", "target": "6875" }, { "key": "geid_144_2675", "source": "7820", "target": "5031" }, { "key": "geid_144_2676", "source": "1086", "target": "3571" }, { "key": "geid_144_2677", "source": "1998", "target": "9045" }, { "key": "geid_144_2678", "source": "2976", "target": "390" }, { "key": "geid_144_2679", "source": "9578", "target": "185" }, { "key": "geid_144_2680", "source": "4419", "target": "3901" }, { "key": "geid_144_2681", "source": "8227", "target": "778" }, { "key": "geid_144_2682", "source": "3016", "target": "2991" }, { "key": "geid_144_2683", "source": "2356", "target": "8394" }, { "key": "geid_144_2684", "source": "1869", "target": "1539" }, { "key": "geid_144_2685", "source": "9301", "target": "3717" }, { "key": "geid_144_2686", "source": "4461", "target": "8653" }, { "key": "geid_144_2687", "source": "2525", "target": "9609" }, { "key": "geid_144_2688", "source": "6216", "target": "2982" }, { "key": "geid_144_2689", "source": "9261", "target": "284" }, { "key": "geid_144_2690", "source": "7532", "target": "34" }, { "key": "geid_144_2691", "source": "498", "target": "8619" }, { "key": "geid_144_2692", "source": "7901", "target": "5127" }, { "key": "geid_144_2693", "source": "5430", "target": "9287" }, { "key": "geid_144_2694", "source": "4454", "target": "9905" }, { "key": "geid_144_2695", "source": "5820", "target": "2465" }, { "key": "geid_144_2696", "source": "610", "target": "6270" }, { "key": "geid_144_2697", "source": "212", "target": "6184" }, { "key": "geid_144_2698", "source": "5987", "target": "6741" }, { "key": "geid_144_2699", "source": "5287", "target": "5104" }, { "key": "geid_144_2700", "source": "9919", "target": "984" }, { "key": "geid_144_2701", "source": "1963", "target": "8891" }, { "key": "geid_144_2702", "source": "3723", "target": "570" }, { "key": "geid_144_2703", "source": "669", "target": "8936" }, { "key": "geid_144_2704", "source": "8698", "target": "9405" }, { "key": "geid_144_2705", "source": "7321", "target": "1787" }, { "key": "geid_144_2706", "source": "5790", "target": "9687" }, { "key": "geid_144_2707", "source": "4703", "target": "4144" }, { "key": "geid_144_2708", "source": "5290", "target": "2162" }, { "key": "geid_144_2709", "source": "636", "target": "6749" }, { "key": "geid_144_2710", "source": "9194", "target": "6903" }, { "key": "geid_144_2711", "source": "9640", "target": "4741" }, { "key": "geid_144_2712", "source": "8754", "target": "3645" }, { "key": "geid_144_2713", "source": "8773", "target": "622" }, { "key": "geid_144_2714", "source": "6332", "target": "2921" }, { "key": "geid_144_2715", "source": "7523", "target": "3716" }, { "key": "geid_144_2716", "source": "9212", "target": "4649" }, { "key": "geid_144_2717", "source": "9555", "target": "5050" }, { "key": "geid_144_2718", "source": "2274", "target": "6097" }, { "key": "geid_144_2719", "source": "1350", "target": "7408" }, { "key": "geid_144_2720", "source": "1437", "target": "9069" }, { "key": "geid_144_2721", "source": "266", "target": "9672" }, { "key": "geid_144_2722", "source": "6278", "target": "4871" }, { "key": "geid_144_2723", "source": "7571", "target": "7719" }, { "key": "geid_144_2724", "source": "1831", "target": "7737" }, { "key": "geid_144_2725", "source": "960", "target": "1059" }, { "key": "geid_144_2726", "source": "3178", "target": "9643" }, { "key": "geid_144_2727", "source": "7398", "target": "814" }, { "key": "geid_144_2728", "source": "6386", "target": "4156" }, { "key": "geid_144_2729", "source": "4610", "target": "6745" }, { "key": "geid_144_2730", "source": "3093", "target": "3181" }, { "key": "geid_144_2731", "source": "8403", "target": "1664" }, { "key": "geid_144_2732", "source": "9874", "target": "7861" }, { "key": "geid_144_2733", "source": "4319", "target": "293" }, { "key": "geid_144_2734", "source": "3246", "target": "2812" }, { "key": "geid_144_2735", "source": "2363", "target": "9192" }, { "key": "geid_144_2736", "source": "276", "target": "8411" }, { "key": "geid_144_2737", "source": "8782", "target": "417" }, { "key": "geid_144_2738", "source": "8226", "target": "1955" }, { "key": "geid_144_2739", "source": "2533", "target": "8047" }, { "key": "geid_144_2740", "source": "8896", "target": "7125" }, { "key": "geid_144_2741", "source": "3195", "target": "3516" }, { "key": "geid_144_2742", "source": "9971", "target": "574" }, { "key": "geid_144_2743", "source": "6805", "target": "8697" }, { "key": "geid_144_2744", "source": "7178", "target": "9543" }, { "key": "geid_144_2745", "source": "4409", "target": "6862" }, { "key": "geid_144_2746", "source": "3024", "target": "9843" }, { "key": "geid_144_2747", "source": "8844", "target": "4141" }, { "key": "geid_144_2748", "source": "2714", "target": "221" }, { "key": "geid_144_2749", "source": "8293", "target": "2149" }, { "key": "geid_144_2750", "source": "3043", "target": "6331" }, { "key": "geid_144_2751", "source": "9281", "target": "2191" }, { "key": "geid_144_2752", "source": "1212", "target": "7428" }, { "key": "geid_144_2753", "source": "3464", "target": "4602" }, { "key": "geid_144_2754", "source": "20", "target": "9965" }, { "key": "geid_144_2755", "source": "6296", "target": "1563" }, { "key": "geid_144_2756", "source": "4071", "target": "9919" }, { "key": "geid_144_2757", "source": "3175", "target": "8736" }, { "key": "geid_144_2758", "source": "1162", "target": "6621" }, { "key": "geid_144_2759", "source": "1408", "target": "4071" }, { "key": "geid_144_2760", "source": "8175", "target": "9931" }, { "key": "geid_144_2761", "source": "8628", "target": "176" }, { "key": "geid_144_2762", "source": "1428", "target": "749" }, { "key": "geid_144_2763", "source": "7502", "target": "6617" }, { "key": "geid_144_2764", "source": "7728", "target": "1997" }, { "key": "geid_144_2765", "source": "3341", "target": "5618" }, { "key": "geid_144_2766", "source": "5519", "target": "9377" }, { "key": "geid_144_2767", "source": "5493", "target": "4674" }, { "key": "geid_144_2768", "source": "268", "target": "1310" }, { "key": "geid_144_2769", "source": "9159", "target": "1533" }, { "key": "geid_144_2770", "source": "8618", "target": "2349" }, { "key": "geid_144_2771", "source": "7817", "target": "7584" }, { "key": "geid_144_2772", "source": "2860", "target": "5450" }, { "key": "geid_144_2773", "source": "8519", "target": "3829" }, { "key": "geid_144_2774", "source": "3420", "target": "8529" }, { "key": "geid_144_2775", "source": "1660", "target": "3140" }, { "key": "geid_144_2776", "source": "4425", "target": "7571" }, { "key": "geid_144_2777", "source": "4013", "target": "1996" }, { "key": "geid_144_2778", "source": "8719", "target": "5942" }, { "key": "geid_144_2779", "source": "2873", "target": "6423" }, { "key": "geid_144_2780", "source": "688", "target": "3647" }, { "key": "geid_144_2781", "source": "7241", "target": "4816" }, { "key": "geid_144_2782", "source": "7422", "target": "6005" }, { "key": "geid_144_2783", "source": "4789", "target": "885" }, { "key": "geid_144_2784", "source": "1682", "target": "7957" }, { "key": "geid_144_2785", "source": "8070", "target": "3429" }, { "key": "geid_144_2786", "source": "7983", "target": "1463" }, { "key": "geid_144_2787", "source": "9243", "target": "384" }, { "key": "geid_144_2788", "source": "2156", "target": "4949" }, { "key": "geid_144_2789", "source": "2812", "target": "9631" }, { "key": "geid_144_2790", "source": "5588", "target": "1591" }, { "key": "geid_144_2791", "source": "613", "target": "2187" }, { "key": "geid_144_2792", "source": "4473", "target": "8330" }, { "key": "geid_144_2793", "source": "3978", "target": "7046" }, { "key": "geid_144_2794", "source": "8043", "target": "2633" }, { "key": "geid_144_2795", "source": "4671", "target": "389" }, { "key": "geid_144_2796", "source": "4070", "target": "498" }, { "key": "geid_144_2797", "source": "5077", "target": "2588" }, { "key": "geid_144_2798", "source": "3709", "target": "6773" }, { "key": "geid_144_2799", "source": "2237", "target": "6973" }, { "key": "geid_144_2800", "source": "3514", "target": "7460" }, { "key": "geid_144_2801", "source": "6690", "target": "1576" }, { "key": "geid_144_2802", "source": "6870", "target": "6566" }, { "key": "geid_144_2803", "source": "8860", "target": "168" }, { "key": "geid_144_2804", "source": "4724", "target": "7572" }, { "key": "geid_144_2805", "source": "2525", "target": "9045" }, { "key": "geid_144_2806", "source": "5917", "target": "255" }, { "key": "geid_144_2807", "source": "9564", "target": "7548" }, { "key": "geid_144_2808", "source": "9364", "target": "421" }, { "key": "geid_144_2809", "source": "8718", "target": "2104" }, { "key": "geid_144_2810", "source": "992", "target": "9836" }, { "key": "geid_144_2811", "source": "2578", "target": "9938" }, { "key": "geid_144_2812", "source": "5667", "target": "5056" }, { "key": "geid_144_2813", "source": "6873", "target": "861" }, { "key": "geid_144_2814", "source": "9489", "target": "6496" }, { "key": "geid_144_2815", "source": "3848", "target": "8494" }, { "key": "geid_144_2816", "source": "3387", "target": "9394" }, { "key": "geid_144_2817", "source": "7322", "target": "3763" }, { "key": "geid_144_2818", "source": "6750", "target": "4754" }, { "key": "geid_144_2819", "source": "3252", "target": "1249" }, { "key": "geid_144_2820", "source": "3146", "target": "9508" }, { "key": "geid_144_2821", "source": "7089", "target": "6178" }, { "key": "geid_144_2822", "source": "9948", "target": "1459" }, { "key": "geid_144_2823", "source": "7139", "target": "2552" }, { "key": "geid_144_2824", "source": "4087", "target": "9547" }, { "key": "geid_144_2825", "source": "9277", "target": "8601" }, { "key": "geid_144_2826", "source": "8334", "target": "8674" }, { "key": "geid_144_2827", "source": "6770", "target": "6894" }, { "key": "geid_144_2828", "source": "8078", "target": "3055" }, { "key": "geid_144_2829", "source": "6860", "target": "9859" }, { "key": "geid_144_2830", "source": "872", "target": "9507" }, { "key": "geid_144_2831", "source": "6063", "target": "5837" }, { "key": "geid_144_2832", "source": "8185", "target": "9504" }, { "key": "geid_144_2833", "source": "874", "target": "8869" }, { "key": "geid_144_2834", "source": "4479", "target": "1030" }, { "key": "geid_144_2835", "source": "3520", "target": "2813" }, { "key": "geid_144_2836", "source": "4567", "target": "6670" }, { "key": "geid_144_2837", "source": "7956", "target": "5923" }, { "key": "geid_144_2838", "source": "7256", "target": "1437" }, { "key": "geid_144_2839", "source": "2331", "target": "8255" }, { "key": "geid_144_2840", "source": "8341", "target": "7450" }, { "key": "geid_144_2841", "source": "3787", "target": "370" }, { "key": "geid_144_2842", "source": "2609", "target": "5876" }, { "key": "geid_144_2843", "source": "2375", "target": "1221" }, { "key": "geid_144_2844", "source": "5285", "target": "7799" }, { "key": "geid_144_2845", "source": "3505", "target": "7134" }, { "key": "geid_144_2846", "source": "7622", "target": "9734" }, { "key": "geid_144_2847", "source": "4729", "target": "3071" }, { "key": "geid_144_2848", "source": "8228", "target": "664" }, { "key": "geid_144_2849", "source": "7857", "target": "2908" }, { "key": "geid_144_2850", "source": "4579", "target": "9720" }, { "key": "geid_144_2851", "source": "2373", "target": "3409" }, { "key": "geid_144_2852", "source": "6206", "target": "7946" }, { "key": "geid_144_2853", "source": "9898", "target": "822" }, { "key": "geid_144_2854", "source": "4709", "target": "8148" }, { "key": "geid_144_2855", "source": "1937", "target": "1336" }, { "key": "geid_144_2856", "source": "4049", "target": "4515" }, { "key": "geid_144_2857", "source": "8892", "target": "6882" }, { "key": "geid_144_2858", "source": "1396", "target": "8388" }, { "key": "geid_144_2859", "source": "430", "target": "371" }, { "key": "geid_144_2860", "source": "8017", "target": "97" }, { "key": "geid_144_2861", "source": "6923", "target": "6115" }, { "key": "geid_144_2862", "source": "1797", "target": "3408" }, { "key": "geid_144_2863", "source": "5056", "target": "4871" }, { "key": "geid_144_2864", "source": "4068", "target": "1723" }, { "key": "geid_144_2865", "source": "5716", "target": "2384" }, { "key": "geid_144_2866", "source": "7931", "target": "1820" }, { "key": "geid_144_2867", "source": "4943", "target": "8591" }, { "key": "geid_144_2868", "source": "6942", "target": "8691" }, { "key": "geid_144_2869", "source": "2929", "target": "5837" }, { "key": "geid_144_2870", "source": "7713", "target": "1531" }, { "key": "geid_144_2871", "source": "805", "target": "7855" }, { "key": "geid_144_2872", "source": "7847", "target": "7338" }, { "key": "geid_144_2873", "source": "5895", "target": "2257" }, { "key": "geid_144_2874", "source": "1678", "target": "1753" }, { "key": "geid_144_2875", "source": "7565", "target": "2184" }, { "key": "geid_144_2876", "source": "9654", "target": "7194" }, { "key": "geid_144_2877", "source": "5828", "target": "5823" }, { "key": "geid_144_2878", "source": "9187", "target": "6554" }, { "key": "geid_144_2879", "source": "3687", "target": "1403" }, { "key": "geid_144_2880", "source": "8682", "target": "1005" }, { "key": "geid_144_2881", "source": "787", "target": "8950" }, { "key": "geid_144_2882", "source": "2692", "target": "6630" }, { "key": "geid_144_2883", "source": "5568", "target": "5457" }, { "key": "geid_144_2884", "source": "3782", "target": "4884" }, { "key": "geid_144_2885", "source": "4132", "target": "2662" }, { "key": "geid_144_2886", "source": "334", "target": "9451" }, { "key": "geid_144_2887", "source": "8682", "target": "9652" }, { "key": "geid_144_2888", "source": "8571", "target": "5024" }, { "key": "geid_144_2889", "source": "999", "target": "5922" }, { "key": "geid_144_2890", "source": "7190", "target": "3881" }, { "key": "geid_144_2891", "source": "1444", "target": "4154" }, { "key": "geid_144_2892", "source": "5604", "target": "576" }, { "key": "geid_144_2893", "source": "8935", "target": "6505" }, { "key": "geid_144_2894", "source": "3765", "target": "6286" }, { "key": "geid_144_2895", "source": "5042", "target": "7226" }, { "key": "geid_144_2896", "source": "9112", "target": "8057" }, { "key": "geid_144_2897", "source": "5713", "target": "606" }, { "key": "geid_144_2898", "source": "2404", "target": "3185" }, { "key": "geid_144_2899", "source": "4486", "target": "351" }, { "key": "geid_144_2900", "source": "8959", "target": "592" }, { "key": "geid_144_2901", "source": "7320", "target": "3185" }, { "key": "geid_144_2902", "source": "9112", "target": "2804" }, { "key": "geid_144_2903", "source": "2287", "target": "1970" }, { "key": "geid_144_2904", "source": "626", "target": "4393" }, { "key": "geid_144_2905", "source": "8885", "target": "5827" }, { "key": "geid_144_2906", "source": "5945", "target": "4897" }, { "key": "geid_144_2907", "source": "5568", "target": "779" }, { "key": "geid_144_2908", "source": "2998", "target": "4185" }, { "key": "geid_144_2909", "source": "1282", "target": "8981" }, { "key": "geid_144_2910", "source": "3209", "target": "7273" }, { "key": "geid_144_2911", "source": "9960", "target": "5235" }, { "key": "geid_144_2912", "source": "4647", "target": "3483" }, { "key": "geid_144_2913", "source": "2852", "target": "9331" }, { "key": "geid_144_2914", "source": "2750", "target": "5271" }, { "key": "geid_144_2915", "source": "2647", "target": "1760" }, { "key": "geid_144_2916", "source": "9767", "target": "4521" }, { "key": "geid_144_2917", "source": "4578", "target": "4682" }, { "key": "geid_144_2918", "source": "8842", "target": "1870" }, { "key": "geid_144_2919", "source": "9788", "target": "2065" }, { "key": "geid_144_2920", "source": "4847", "target": "3445" }, { "key": "geid_144_2921", "source": "4548", "target": "7959" }, { "key": "geid_144_2922", "source": "875", "target": "188" }, { "key": "geid_144_2923", "source": "1302", "target": "8889" }, { "key": "geid_144_2924", "source": "8330", "target": "6371" }, { "key": "geid_144_2925", "source": "2580", "target": "2811" }, { "key": "geid_144_2926", "source": "2722", "target": "4216" }, { "key": "geid_144_2927", "source": "6390", "target": "4119" }, { "key": "geid_144_2928", "source": "8226", "target": "4755" }, { "key": "geid_144_2929", "source": "1456", "target": "6510" }, { "key": "geid_144_2930", "source": "8955", "target": "7061" }, { "key": "geid_144_2931", "source": "7849", "target": "4514" }, { "key": "geid_144_2932", "source": "9338", "target": "2583" }, { "key": "geid_144_2933", "source": "1948", "target": "1611" }, { "key": "geid_144_2934", "source": "3113", "target": "5182" }, { "key": "geid_144_2935", "source": "2070", "target": "2911" }, { "key": "geid_144_2936", "source": "1039", "target": "4368" }, { "key": "geid_144_2937", "source": "5755", "target": "5939" }, { "key": "geid_144_2938", "source": "4729", "target": "3188" }, { "key": "geid_144_2939", "source": "1622", "target": "6842" }, { "key": "geid_144_2940", "source": "2927", "target": "2036" }, { "key": "geid_144_2941", "source": "4976", "target": "2674" }, { "key": "geid_144_2942", "source": "849", "target": "8087" }, { "key": "geid_144_2943", "source": "8415", "target": "7706" }, { "key": "geid_144_2944", "source": "1585", "target": "9829" }, { "key": "geid_144_2945", "source": "1496", "target": "7384" }, { "key": "geid_144_2946", "source": "2941", "target": "9957" }, { "key": "geid_144_2947", "source": "7369", "target": "1777" }, { "key": "geid_144_2948", "source": "8431", "target": "358" }, { "key": "geid_144_2949", "source": "7833", "target": "3695" }, { "key": "geid_144_2950", "source": "6565", "target": "3561" }, { "key": "geid_144_2951", "source": "2952", "target": "6658" }, { "key": "geid_144_2952", "source": "8950", "target": "4473" }, { "key": "geid_144_2953", "source": "9680", "target": "6946" }, { "key": "geid_144_2954", "source": "3368", "target": "8997" }, { "key": "geid_144_2955", "source": "9275", "target": "6401" }, { "key": "geid_144_2956", "source": "7689", "target": "3279" }, { "key": "geid_144_2957", "source": "7850", "target": "4647" }, { "key": "geid_144_2958", "source": "6832", "target": "5294" }, { "key": "geid_144_2959", "source": "7021", "target": "6413" }, { "key": "geid_144_2960", "source": "9191", "target": "2578" }, { "key": "geid_144_2961", "source": "7313", "target": "4012" }, { "key": "geid_144_2962", "source": "5877", "target": "9258" }, { "key": "geid_144_2963", "source": "9221", "target": "1232" }, { "key": "geid_144_2964", "source": "8668", "target": "6873" }, { "key": "geid_144_2965", "source": "7141", "target": "7744" }, { "key": "geid_144_2966", "source": "2221", "target": "6329" }, { "key": "geid_144_2967", "source": "6557", "target": "4125" }, { "key": "geid_144_2968", "source": "1804", "target": "2980" }, { "key": "geid_144_2969", "source": "6939", "target": "2831" }, { "key": "geid_144_2970", "source": "8294", "target": "8192" }, { "key": "geid_144_2971", "source": "7278", "target": "6548" }, { "key": "geid_144_2972", "source": "1223", "target": "3852" }, { "key": "geid_144_2973", "source": "5309", "target": "3332" }, { "key": "geid_144_2974", "source": "675", "target": "7052" }, { "key": "geid_144_2975", "source": "5260", "target": "8375" }, { "key": "geid_144_2976", "source": "5090", "target": "4133" }, { "key": "geid_144_2977", "source": "6418", "target": "3338" }, { "key": "geid_144_2978", "source": "8432", "target": "468" }, { "key": "geid_144_2979", "source": "3342", "target": "674" }, { "key": "geid_144_2980", "source": "1956", "target": "1338" }, { "key": "geid_144_2981", "source": "1289", "target": "5280" }, { "key": "geid_144_2982", "source": "5082", "target": "5770" }, { "key": "geid_144_2983", "source": "9513", "target": "4979" }, { "key": "geid_144_2984", "source": "4659", "target": "8682" }, { "key": "geid_144_2985", "source": "8329", "target": "1154" }, { "key": "geid_144_2986", "source": "1649", "target": "8895" }, { "key": "geid_144_2987", "source": "9086", "target": "2140" }, { "key": "geid_144_2988", "source": "882", "target": "7384" }, { "key": "geid_144_2989", "source": "4520", "target": "419" }, { "key": "geid_144_2990", "source": "9429", "target": "749" }, { "key": "geid_144_2991", "source": "9916", "target": "982" }, { "key": "geid_144_2992", "source": "8384", "target": "6597" }, { "key": "geid_144_2993", "source": "8285", "target": "9238" }, { "key": "geid_144_2994", "source": "1346", "target": "7048" }, { "key": "geid_144_2995", "source": "4752", "target": "5126" }, { "key": "geid_144_2996", "source": "7873", "target": "6945" }, { "key": "geid_144_2997", "source": "4136", "target": "3098" }, { "key": "geid_144_2998", "source": "4290", "target": "6191" }, { "key": "geid_144_2999", "source": "351", "target": "1056" }, { "key": "geid_144_3000", "source": "5744", "target": "3905" }, { "key": "geid_144_3001", "source": "2117", "target": "8549" }, { "key": "geid_144_3002", "source": "9199", "target": "9908" }, { "key": "geid_144_3003", "source": "6423", "target": "1790" }, { "key": "geid_144_3004", "source": "7551", "target": "8128" }, { "key": "geid_144_3005", "source": "7250", "target": "2793" }, { "key": "geid_144_3006", "source": "1513", "target": "288" }, { "key": "geid_144_3007", "source": "2800", "target": "1378" }, { "key": "geid_144_3008", "source": "4325", "target": "426" }, { "key": "geid_144_3009", "source": "1933", "target": "1051" }, { "key": "geid_144_3010", "source": "7278", "target": "8969" }, { "key": "geid_144_3011", "source": "1214", "target": "1795" }, { "key": "geid_144_3012", "source": "4469", "target": "9236" }, { "key": "geid_144_3013", "source": "103", "target": "5381" }, { "key": "geid_144_3014", "source": "897", "target": "3644" }, { "key": "geid_144_3015", "source": "6481", "target": "4052" }, { "key": "geid_144_3016", "source": "1307", "target": "9221" }, { "key": "geid_144_3017", "source": "2852", "target": "131" }, { "key": "geid_144_3018", "source": "6115", "target": "7205" }, { "key": "geid_144_3019", "source": "2274", "target": "2189" }, { "key": "geid_144_3020", "source": "935", "target": "7018" }, { "key": "geid_144_3021", "source": "7035", "target": "9405" }, { "key": "geid_144_3022", "source": "4381", "target": "8943" }, { "key": "geid_144_3023", "source": "6101", "target": "1454" }, { "key": "geid_144_3024", "source": "9456", "target": "291" }, { "key": "geid_144_3025", "source": "7746", "target": "8576" }, { "key": "geid_144_3026", "source": "5550", "target": "1332" }, { "key": "geid_144_3027", "source": "1557", "target": "4041" }, { "key": "geid_144_3028", "source": "1609", "target": "8997" }, { "key": "geid_144_3029", "source": "7241", "target": "8365" }, { "key": "geid_144_3030", "source": "1249", "target": "7716" }, { "key": "geid_144_3031", "source": "926", "target": "2958" }, { "key": "geid_144_3032", "source": "5015", "target": "7371" }, { "key": "geid_144_3033", "source": "8346", "target": "6207" }, { "key": "geid_144_3034", "source": "2875", "target": "1204" }, { "key": "geid_144_3035", "source": "5308", "target": "4690" }, { "key": "geid_144_3036", "source": "6853", "target": "2464" }, { "key": "geid_144_3037", "source": "8856", "target": "5474" }, { "key": "geid_144_3038", "source": "3849", "target": "5130" }, { "key": "geid_144_3039", "source": "2631", "target": "9263" }, { "key": "geid_144_3040", "source": "3011", "target": "1046" }, { "key": "geid_144_3041", "source": "1639", "target": "1545" }, { "key": "geid_144_3042", "source": "1873", "target": "1949" }, { "key": "geid_144_3043", "source": "9364", "target": "7620" }, { "key": "geid_144_3044", "source": "7559", "target": "6631" }, { "key": "geid_144_3045", "source": "5550", "target": "1708" }, { "key": "geid_144_3046", "source": "4623", "target": "2103" }, { "key": "geid_144_3047", "source": "737", "target": "1470" }, { "key": "geid_144_3048", "source": "849", "target": "5269" }, { "key": "geid_144_3049", "source": "2404", "target": "2220" }, { "key": "geid_144_3050", "source": "6285", "target": "8612" }, { "key": "geid_144_3051", "source": "7375", "target": "9460" }, { "key": "geid_144_3052", "source": "3420", "target": "1564" }, { "key": "geid_144_3053", "source": "8101", "target": "6264" }, { "key": "geid_144_3054", "source": "837", "target": "6876" }, { "key": "geid_144_3055", "source": "8382", "target": "8506" }, { "key": "geid_144_3056", "source": "8582", "target": "7307" }, { "key": "geid_144_3057", "source": "9571", "target": "9860" }, { "key": "geid_144_3058", "source": "7206", "target": "9444" }, { "key": "geid_144_3059", "source": "5637", "target": "3067" }, { "key": "geid_144_3060", "source": "2324", "target": "8712" }, { "key": "geid_144_3061", "source": "1624", "target": "2077" }, { "key": "geid_144_3062", "source": "2453", "target": "5643" }, { "key": "geid_144_3063", "source": "9146", "target": "487" }, { "key": "geid_144_3064", "source": "8995", "target": "6197" }, { "key": "geid_144_3065", "source": "2604", "target": "7981" }, { "key": "geid_144_3066", "source": "3831", "target": "7258" }, { "key": "geid_144_3067", "source": "3677", "target": "6682" }, { "key": "geid_144_3068", "source": "5784", "target": "5719" }, { "key": "geid_144_3069", "source": "3210", "target": "507" }, { "key": "geid_144_3070", "source": "6989", "target": "112" }, { "key": "geid_144_3071", "source": "7455", "target": "6123" }, { "key": "geid_144_3072", "source": "5440", "target": "5082" }, { "key": "geid_144_3073", "source": "773", "target": "6168" }, { "key": "geid_144_3074", "source": "1753", "target": "3002" }, { "key": "geid_144_3075", "source": "9065", "target": "6319" }, { "key": "geid_144_3076", "source": "5843", "target": "6511" }, { "key": "geid_144_3077", "source": "4960", "target": "6742" }, { "key": "geid_144_3078", "source": "2880", "target": "4665" }, { "key": "geid_144_3079", "source": "9676", "target": "9088" }, { "key": "geid_144_3080", "source": "8223", "target": "3491" }, { "key": "geid_144_3081", "source": "6747", "target": "1108" }, { "key": "geid_144_3082", "source": "1521", "target": "1102" }, { "key": "geid_144_3083", "source": "847", "target": "9776" }, { "key": "geid_144_3084", "source": "9389", "target": "3091" }, { "key": "geid_144_3085", "source": "2327", "target": "440" }, { "key": "geid_144_3086", "source": "8303", "target": "8294" }, { "key": "geid_144_3087", "source": "5737", "target": "8006" }, { "key": "geid_144_3088", "source": "4479", "target": "117" }, { "key": "geid_144_3089", "source": "2238", "target": "7475" }, { "key": "geid_144_3090", "source": "7463", "target": "2151" }, { "key": "geid_144_3091", "source": "1727", "target": "5516" }, { "key": "geid_144_3092", "source": "9495", "target": "6060" }, { "key": "geid_144_3093", "source": "4665", "target": "9032" }, { "key": "geid_144_3094", "source": "8973", "target": "4148" }, { "key": "geid_144_3095", "source": "5210", "target": "93" }, { "key": "geid_144_3096", "source": "5895", "target": "3370" }, { "key": "geid_144_3097", "source": "8681", "target": "2480" }, { "key": "geid_144_3098", "source": "1356", "target": "6822" }, { "key": "geid_144_3099", "source": "7382", "target": "1570" }, { "key": "geid_144_3100", "source": "8733", "target": "9622" }, { "key": "geid_144_3101", "source": "9931", "target": "92" }, { "key": "geid_144_3102", "source": "2695", "target": "6987" }, { "key": "geid_144_3103", "source": "5955", "target": "9099" }, { "key": "geid_144_3104", "source": "2493", "target": "2690" }, { "key": "geid_144_3105", "source": "2477", "target": "561" }, { "key": "geid_144_3106", "source": "7458", "target": "7435" }, { "key": "geid_144_3107", "source": "8416", "target": "8439" }, { "key": "geid_144_3108", "source": "6781", "target": "3425" }, { "key": "geid_144_3109", "source": "4144", "target": "780" }, { "key": "geid_144_3110", "source": "7303", "target": "1869" }, { "key": "geid_144_3111", "source": "2645", "target": "6816" }, { "key": "geid_144_3112", "source": "5450", "target": "1301" }, { "key": "geid_144_3113", "source": "3468", "target": "5745" }, { "key": "geid_144_3114", "source": "5293", "target": "4920" }, { "key": "geid_144_3115", "source": "3781", "target": "770" }, { "key": "geid_144_3116", "source": "3599", "target": "7643" }, { "key": "geid_144_3117", "source": "4332", "target": "361" }, { "key": "geid_144_3118", "source": "7962", "target": "4318" }, { "key": "geid_144_3119", "source": "8074", "target": "9266" }, { "key": "geid_144_3120", "source": "8923", "target": "2334" }, { "key": "geid_144_3121", "source": "9100", "target": "6207" }, { "key": "geid_144_3122", "source": "9761", "target": "6795" }, { "key": "geid_144_3123", "source": "5687", "target": "1672" }, { "key": "geid_144_3124", "source": "763", "target": "5150" }, { "key": "geid_144_3125", "source": "6617", "target": "2251" }, { "key": "geid_144_3126", "source": "6467", "target": "3628" }, { "key": "geid_144_3127", "source": "2299", "target": "1274" }, { "key": "geid_144_3128", "source": "4715", "target": "3648" }, { "key": "geid_144_3129", "source": "4797", "target": "3607" }, { "key": "geid_144_3130", "source": "6972", "target": "4467" }, { "key": "geid_144_3131", "source": "7668", "target": "5851" }, { "key": "geid_144_3132", "source": "4130", "target": "2466" }, { "key": "geid_144_3133", "source": "2194", "target": "6386" }, { "key": "geid_144_3134", "source": "8260", "target": "6669" }, { "key": "geid_144_3135", "source": "1275", "target": "345" }, { "key": "geid_144_3136", "source": "5012", "target": "1395" }, { "key": "geid_144_3137", "source": "2964", "target": "2325" }, { "key": "geid_144_3138", "source": "349", "target": "3558" }, { "key": "geid_144_3139", "source": "8424", "target": "4432" }, { "key": "geid_144_3140", "source": "4897", "target": "4817" }, { "key": "geid_144_3141", "source": "3776", "target": "7685" }, { "key": "geid_144_3142", "source": "3047", "target": "7004" }, { "key": "geid_144_3143", "source": "2115", "target": "1086" }, { "key": "geid_144_3144", "source": "3154", "target": "5618" }, { "key": "geid_144_3145", "source": "5705", "target": "1144" }, { "key": "geid_144_3146", "source": "1618", "target": "8793" }, { "key": "geid_144_3147", "source": "2057", "target": "5359" }, { "key": "geid_144_3148", "source": "2197", "target": "5491" }, { "key": "geid_144_3149", "source": "4170", "target": "6872" }, { "key": "geid_144_3150", "source": "6101", "target": "9406" }, { "key": "geid_144_3151", "source": "5897", "target": "2210" }, { "key": "geid_144_3152", "source": "191", "target": "9688" }, { "key": "geid_144_3153", "source": "5114", "target": "6614" }, { "key": "geid_144_3154", "source": "9631", "target": "7528" }, { "key": "geid_144_3155", "source": "7901", "target": "1212" }, { "key": "geid_144_3156", "source": "3195", "target": "6616" }, { "key": "geid_144_3157", "source": "6463", "target": "2460" }, { "key": "geid_144_3158", "source": "2227", "target": "2008" }, { "key": "geid_144_3159", "source": "7934", "target": "5194" }, { "key": "geid_144_3160", "source": "7608", "target": "4765" }, { "key": "geid_144_3161", "source": "9948", "target": "4443" }, { "key": "geid_144_3162", "source": "926", "target": "5698" }, { "key": "geid_144_3163", "source": "7611", "target": "4251" }, { "key": "geid_144_3164", "source": "5065", "target": "6698" }, { "key": "geid_144_3165", "source": "1586", "target": "9189" }, { "key": "geid_144_3166", "source": "9759", "target": "61" }, { "key": "geid_144_3167", "source": "7506", "target": "4984" }, { "key": "geid_144_3168", "source": "2133", "target": "8727" }, { "key": "geid_144_3169", "source": "78", "target": "5102" }, { "key": "geid_144_3170", "source": "2512", "target": "9192" }, { "key": "geid_144_3171", "source": "2349", "target": "3951" }, { "key": "geid_144_3172", "source": "8856", "target": "7134" }, { "key": "geid_144_3173", "source": "9786", "target": "3372" }, { "key": "geid_144_3174", "source": "4598", "target": "6126" }, { "key": "geid_144_3175", "source": "3138", "target": "794" }, { "key": "geid_144_3176", "source": "3153", "target": "2392" }, { "key": "geid_144_3177", "source": "7108", "target": "8506" }, { "key": "geid_144_3178", "source": "2916", "target": "7542" }, { "key": "geid_144_3179", "source": "5937", "target": "8291" }, { "key": "geid_144_3180", "source": "4921", "target": "1459" }, { "key": "geid_144_3181", "source": "6904", "target": "6947" }, { "key": "geid_144_3182", "source": "3336", "target": "8775" }, { "key": "geid_144_3183", "source": "9205", "target": "9394" }, { "key": "geid_144_3184", "source": "9414", "target": "854" }, { "key": "geid_144_3185", "source": "2445", "target": "6050" }, { "key": "geid_144_3186", "source": "1699", "target": "4255" }, { "key": "geid_144_3187", "source": "3060", "target": "5273" }, { "key": "geid_144_3188", "source": "8818", "target": "9382" }, { "key": "geid_144_3189", "source": "1187", "target": "1213" }, { "key": "geid_144_3190", "source": "8783", "target": "978" }, { "key": "geid_144_3191", "source": "6031", "target": "4706" }, { "key": "geid_144_3192", "source": "8152", "target": "2215" }, { "key": "geid_144_3193", "source": "8410", "target": "1942" }, { "key": "geid_144_3194", "source": "7830", "target": "5138" }, { "key": "geid_144_3195", "source": "1461", "target": "8022" }, { "key": "geid_144_3196", "source": "6225", "target": "5255" }, { "key": "geid_144_3197", "source": "2079", "target": "6324" }, { "key": "geid_144_3198", "source": "9643", "target": "5965" }, { "key": "geid_144_3199", "source": "5113", "target": "264" }, { "key": "geid_144_3200", "source": "7725", "target": "3181" }, { "key": "geid_144_3201", "source": "5725", "target": "3785" }, { "key": "geid_144_3202", "source": "1225", "target": "6077" }, { "key": "geid_144_3203", "source": "9077", "target": "7837" }, { "key": "geid_144_3204", "source": "2900", "target": "5953" }, { "key": "geid_144_3205", "source": "9736", "target": "7698" }, { "key": "geid_144_3206", "source": "4733", "target": "4452" }, { "key": "geid_144_3207", "source": "3299", "target": "2772" }, { "key": "geid_144_3208", "source": "1316", "target": "6395" }, { "key": "geid_144_3209", "source": "7057", "target": "2826" }, { "key": "geid_144_3210", "source": "5130", "target": "8655" }, { "key": "geid_144_3211", "source": "2149", "target": "8491" }, { "key": "geid_144_3212", "source": "8634", "target": "7796" }, { "key": "geid_144_3213", "source": "5535", "target": "7083" }, { "key": "geid_144_3214", "source": "9905", "target": "3492" }, { "key": "geid_144_3215", "source": "6502", "target": "9899" }, { "key": "geid_144_3216", "source": "930", "target": "4097" }, { "key": "geid_144_3217", "source": "1251", "target": "2366" }, { "key": "geid_144_3218", "source": "9198", "target": "1213" }, { "key": "geid_144_3219", "source": "7468", "target": "2014" }, { "key": "geid_144_3220", "source": "5572", "target": "3774" }, { "key": "geid_144_3221", "source": "8127", "target": "1797" }, { "key": "geid_144_3222", "source": "4070", "target": "7440" }, { "key": "geid_144_3223", "source": "5877", "target": "5235" }, { "key": "geid_144_3224", "source": "1169", "target": "4859" }, { "key": "geid_144_3225", "source": "9754", "target": "3583" }, { "key": "geid_144_3226", "source": "1436", "target": "8609" }, { "key": "geid_144_3227", "source": "9487", "target": "5684" }, { "key": "geid_144_3228", "source": "3711", "target": "6926" }, { "key": "geid_144_3229", "source": "212", "target": "158" }, { "key": "geid_144_3230", "source": "1401", "target": "3323" }, { "key": "geid_144_3231", "source": "7815", "target": "9833" }, { "key": "geid_144_3232", "source": "1864", "target": "2409" }, { "key": "geid_144_3233", "source": "6100", "target": "4608" }, { "key": "geid_144_3234", "source": "3147", "target": "1538" }, { "key": "geid_144_3235", "source": "2519", "target": "1099" }, { "key": "geid_144_3236", "source": "8679", "target": "7152" }, { "key": "geid_144_3237", "source": "123", "target": "7993" }, { "key": "geid_144_3238", "source": "3585", "target": "8361" }, { "key": "geid_144_3239", "source": "8935", "target": "7432" }, { "key": "geid_144_3240", "source": "161", "target": "3026" }, { "key": "geid_144_3241", "source": "1277", "target": "9078" }, { "key": "geid_144_3242", "source": "9145", "target": "4343" }, { "key": "geid_144_3243", "source": "8201", "target": "8875" }, { "key": "geid_144_3244", "source": "7839", "target": "2462" }, { "key": "geid_144_3245", "source": "9497", "target": "7618" }, { "key": "geid_144_3246", "source": "2041", "target": "4031" }, { "key": "geid_144_3247", "source": "8194", "target": "8937" }, { "key": "geid_144_3248", "source": "6830", "target": "7045" }, { "key": "geid_144_3249", "source": "187", "target": "4468" }, { "key": "geid_144_3250", "source": "1789", "target": "9831" }, { "key": "geid_144_3251", "source": "4628", "target": "6463" }, { "key": "geid_144_3252", "source": "6200", "target": "8974" }, { "key": "geid_144_3253", "source": "7635", "target": "5646" }, { "key": "geid_144_3254", "source": "1195", "target": "5249" }, { "key": "geid_144_3255", "source": "9765", "target": "1980" }, { "key": "geid_144_3256", "source": "3762", "target": "4596" }, { "key": "geid_144_3257", "source": "6418", "target": "5072" }, { "key": "geid_144_3258", "source": "596", "target": "4760" }, { "key": "geid_144_3259", "source": "2201", "target": "7646" }, { "key": "geid_144_3260", "source": "3720", "target": "9071" }, { "key": "geid_144_3261", "source": "2058", "target": "2513" }, { "key": "geid_144_3262", "source": "4366", "target": "6696" }, { "key": "geid_144_3263", "source": "9229", "target": "1555" }, { "key": "geid_144_3264", "source": "8278", "target": "7190" }, { "key": "geid_144_3265", "source": "8485", "target": "7160" }, { "key": "geid_144_3266", "source": "1215", "target": "88" }, { "key": "geid_144_3267", "source": "4978", "target": "8931" }, { "key": "geid_144_3268", "source": "8477", "target": "933" }, { "key": "geid_144_3269", "source": "2450", "target": "3788" }, { "key": "geid_144_3270", "source": "1210", "target": "795" }, { "key": "geid_144_3271", "source": "3018", "target": "1718" }, { "key": "geid_144_3272", "source": "7463", "target": "2529" }, { "key": "geid_144_3273", "source": "713", "target": "7870" }, { "key": "geid_144_3274", "source": "2832", "target": "4701" }, { "key": "geid_144_3275", "source": "4342", "target": "9547" }, { "key": "geid_144_3276", "source": "913", "target": "8397" }, { "key": "geid_144_3277", "source": "8885", "target": "535" }, { "key": "geid_144_3278", "source": "540", "target": "8085" }, { "key": "geid_144_3279", "source": "771", "target": "1560" }, { "key": "geid_144_3280", "source": "5689", "target": "2341" }, { "key": "geid_144_3281", "source": "4003", "target": "8085" }, { "key": "geid_144_3282", "source": "6168", "target": "5272" }, { "key": "geid_144_3283", "source": "3971", "target": "4927" }, { "key": "geid_144_3284", "source": "2550", "target": "3070" }, { "key": "geid_144_3285", "source": "9358", "target": "1315" }, { "key": "geid_144_3286", "source": "7412", "target": "6514" }, { "key": "geid_144_3287", "source": "5966", "target": "569" }, { "key": "geid_144_3288", "source": "5928", "target": "5682" }, { "key": "geid_144_3289", "source": "4091", "target": "5277" }, { "key": "geid_144_3290", "source": "8955", "target": "84" }, { "key": "geid_144_3291", "source": "8986", "target": "2650" }, { "key": "geid_144_3292", "source": "1062", "target": "3746" }, { "key": "geid_144_3293", "source": "6128", "target": "5515" }, { "key": "geid_144_3294", "source": "4696", "target": "4540" }, { "key": "geid_144_3295", "source": "8383", "target": "8923" }, { "key": "geid_144_3296", "source": "9183", "target": "471" }, { "key": "geid_144_3297", "source": "7866", "target": "1299" }, { "key": "geid_144_3298", "source": "7929", "target": "2333" }, { "key": "geid_144_3299", "source": "7292", "target": "7900" }, { "key": "geid_144_3300", "source": "7582", "target": "5711" }, { "key": "geid_144_3301", "source": "5844", "target": "3294" }, { "key": "geid_144_3302", "source": "5744", "target": "5384" }, { "key": "geid_144_3303", "source": "893", "target": "8965" }, { "key": "geid_144_3304", "source": "8887", "target": "9907" }, { "key": "geid_144_3305", "source": "3641", "target": "8153" }, { "key": "geid_144_3306", "source": "1188", "target": "2750" }, { "key": "geid_144_3307", "source": "3174", "target": "3450" }, { "key": "geid_144_3308", "source": "4861", "target": "7159" }, { "key": "geid_144_3309", "source": "7734", "target": "5220" }, { "key": "geid_144_3310", "source": "1925", "target": "4562" }, { "key": "geid_144_3311", "source": "9769", "target": "3317" }, { "key": "geid_144_3312", "source": "9756", "target": "8735" }, { "key": "geid_144_3313", "source": "265", "target": "8223" }, { "key": "geid_144_3314", "source": "1593", "target": "9878" }, { "key": "geid_144_3315", "source": "1177", "target": "305" }, { "key": "geid_144_3316", "source": "8267", "target": "2879" }, { "key": "geid_144_3317", "source": "5873", "target": "2355" }, { "key": "geid_144_3318", "source": "5507", "target": "5508" }, { "key": "geid_144_3319", "source": "8339", "target": "8724" }, { "key": "geid_144_3320", "source": "1096", "target": "1386" }, { "key": "geid_144_3321", "source": "1328", "target": "8751" }, { "key": "geid_144_3322", "source": "1727", "target": "1808" }, { "key": "geid_144_3323", "source": "1338", "target": "4222" }, { "key": "geid_144_3324", "source": "5777", "target": "174" }, { "key": "geid_144_3325", "source": "2309", "target": "1788" }, { "key": "geid_144_3326", "source": "261", "target": "291" }, { "key": "geid_144_3327", "source": "4483", "target": "3529" }, { "key": "geid_144_3328", "source": "9787", "target": "8015" }, { "key": "geid_144_3329", "source": "4324", "target": "9031" }, { "key": "geid_144_3330", "source": "8668", "target": "6618" }, { "key": "geid_144_3331", "source": "2257", "target": "1185" }, { "key": "geid_144_3332", "source": "5508", "target": "1827" }, { "key": "geid_144_3333", "source": "1776", "target": "6797" }, { "key": "geid_144_3334", "source": "2917", "target": "3897" }, { "key": "geid_144_3335", "source": "2488", "target": "2525" }, { "key": "geid_144_3336", "source": "2544", "target": "5112" }, { "key": "geid_144_3337", "source": "334", "target": "779" }, { "key": "geid_144_3338", "source": "9921", "target": "9427" }, { "key": "geid_144_3339", "source": "2595", "target": "7942" }, { "key": "geid_144_3340", "source": "9131", "target": "4803" }, { "key": "geid_144_3341", "source": "4487", "target": "9650" }, { "key": "geid_144_3342", "source": "145", "target": "8417" }, { "key": "geid_144_3343", "source": "7725", "target": "6398" }, { "key": "geid_144_3344", "source": "4772", "target": "488" }, { "key": "geid_144_3345", "source": "6810", "target": "3106" }, { "key": "geid_144_3346", "source": "1274", "target": "5764" }, { "key": "geid_144_3347", "source": "3729", "target": "4412" }, { "key": "geid_144_3348", "source": "6979", "target": "6609" }, { "key": "geid_144_3349", "source": "6388", "target": "4856" }, { "key": "geid_144_3350", "source": "277", "target": "7075" }, { "key": "geid_144_3351", "source": "6452", "target": "7945" }, { "key": "geid_144_3352", "source": "7534", "target": "873" }, { "key": "geid_144_3353", "source": "2559", "target": "7462" }, { "key": "geid_144_3354", "source": "2455", "target": "9252" }, { "key": "geid_144_3355", "source": "1752", "target": "6864" }, { "key": "geid_144_3356", "source": "3413", "target": "9826" }, { "key": "geid_144_3357", "source": "7894", "target": "9123" }, { "key": "geid_144_3358", "source": "9152", "target": "9494" }, { "key": "geid_144_3359", "source": "680", "target": "2938" }, { "key": "geid_144_3360", "source": "6951", "target": "2898" }, { "key": "geid_144_3361", "source": "1425", "target": "8904" }, { "key": "geid_144_3362", "source": "2708", "target": "2821" }, { "key": "geid_144_3363", "source": "2186", "target": "2758" }, { "key": "geid_144_3364", "source": "4539", "target": "6017" }, { "key": "geid_144_3365", "source": "2875", "target": "5353" }, { "key": "geid_144_3366", "source": "7079", "target": "2382" }, { "key": "geid_144_3367", "source": "187", "target": "3954" }, { "key": "geid_144_3368", "source": "6813", "target": "9058" }, { "key": "geid_144_3369", "source": "1436", "target": "787" }, { "key": "geid_144_3370", "source": "5959", "target": "8627" }, { "key": "geid_144_3371", "source": "4470", "target": "5071" }, { "key": "geid_144_3372", "source": "6482", "target": "8384" }, { "key": "geid_144_3373", "source": "4073", "target": "2128" }, { "key": "geid_144_3374", "source": "3587", "target": "6111" }, { "key": "geid_144_3375", "source": "8574", "target": "2409" }, { "key": "geid_144_3376", "source": "3279", "target": "7267" }, { "key": "geid_144_3377", "source": "6874", "target": "1785" }, { "key": "geid_144_3378", "source": "4425", "target": "4072" }, { "key": "geid_144_3379", "source": "600", "target": "5327" }, { "key": "geid_144_3380", "source": "8622", "target": "9771" }, { "key": "geid_144_3381", "source": "8668", "target": "8223" }, { "key": "geid_144_3382", "source": "96", "target": "8666" }, { "key": "geid_144_3383", "source": "7142", "target": "9123" }, { "key": "geid_144_3384", "source": "475", "target": "635" }, { "key": "geid_144_3385", "source": "5172", "target": "7063" }, { "key": "geid_144_3386", "source": "403", "target": "1488" }, { "key": "geid_144_3387", "source": "7567", "target": "8261" }, { "key": "geid_144_3388", "source": "8560", "target": "6272" }, { "key": "geid_144_3389", "source": "1606", "target": "9859" }, { "key": "geid_144_3390", "source": "6114", "target": "3655" }, { "key": "geid_144_3391", "source": "5482", "target": "9220" }, { "key": "geid_144_3392", "source": "5004", "target": "8453" }, { "key": "geid_144_3393", "source": "711", "target": "2989" }, { "key": "geid_144_3394", "source": "9334", "target": "6523" }, { "key": "geid_144_3395", "source": "4058", "target": "9367" }, { "key": "geid_144_3396", "source": "5425", "target": "1326" }, { "key": "geid_144_3397", "source": "4910", "target": "1207" }, { "key": "geid_144_3398", "source": "9453", "target": "1506" }, { "key": "geid_144_3399", "source": "3974", "target": "9098" }, { "key": "geid_144_3400", "source": "1417", "target": "9775" }, { "key": "geid_144_3401", "source": "7801", "target": "8204" }, { "key": "geid_144_3402", "source": "984", "target": "2740" }, { "key": "geid_144_3403", "source": "245", "target": "5791" }, { "key": "geid_144_3404", "source": "1193", "target": "1787" }, { "key": "geid_144_3405", "source": "1124", "target": "9598" }, { "key": "geid_144_3406", "source": "8582", "target": "4099" }, { "key": "geid_144_3407", "source": "6206", "target": "5718" }, { "key": "geid_144_3408", "source": "5121", "target": "7548" }, { "key": "geid_144_3409", "source": "6300", "target": "6478" }, { "key": "geid_144_3410", "source": "9659", "target": "7134" }, { "key": "geid_144_3411", "source": "514", "target": "4061" }, { "key": "geid_144_3412", "source": "1112", "target": "4685" }, { "key": "geid_144_3413", "source": "4972", "target": "5371" }, { "key": "geid_144_3414", "source": "5481", "target": "4444" }, { "key": "geid_144_3415", "source": "6438", "target": "534" }, { "key": "geid_144_3416", "source": "5282", "target": "3099" }, { "key": "geid_144_3417", "source": "8959", "target": "7743" }, { "key": "geid_144_3418", "source": "5716", "target": "6305" }, { "key": "geid_144_3419", "source": "2118", "target": "5344" }, { "key": "geid_144_3420", "source": "3391", "target": "4651" }, { "key": "geid_144_3421", "source": "6123", "target": "1952" }, { "key": "geid_144_3422", "source": "9514", "target": "6504" }, { "key": "geid_144_3423", "source": "682", "target": "4664" }, { "key": "geid_144_3424", "source": "5171", "target": "5635" }, { "key": "geid_144_3425", "source": "525", "target": "7893" }, { "key": "geid_144_3426", "source": "6824", "target": "3098" }, { "key": "geid_144_3427", "source": "7946", "target": "7846" }, { "key": "geid_144_3428", "source": "3695", "target": "8404" }, { "key": "geid_144_3429", "source": "6104", "target": "5084" }, { "key": "geid_144_3430", "source": "4026", "target": "9482" }, { "key": "geid_144_3431", "source": "6389", "target": "4538" }, { "key": "geid_144_3432", "source": "5214", "target": "9520" }, { "key": "geid_144_3433", "source": "7826", "target": "7269" }, { "key": "geid_144_3434", "source": "9804", "target": "4990" }, { "key": "geid_144_3435", "source": "5607", "target": "2166" }, { "key": "geid_144_3436", "source": "2286", "target": "7427" }, { "key": "geid_144_3437", "source": "8271", "target": "8658" }, { "key": "geid_144_3438", "source": "6266", "target": "3383" }, { "key": "geid_144_3439", "source": "9484", "target": "9193" }, { "key": "geid_144_3440", "source": "8955", "target": "8232" }, { "key": "geid_144_3441", "source": "1887", "target": "1982" }, { "key": "geid_144_3442", "source": "4258", "target": "963" }, { "key": "geid_144_3443", "source": "6215", "target": "6744" }, { "key": "geid_144_3444", "source": "8686", "target": "5277" }, { "key": "geid_144_3445", "source": "4632", "target": "9195" }, { "key": "geid_144_3446", "source": "1544", "target": "1061" }, { "key": "geid_144_3447", "source": "935", "target": "5526" }, { "key": "geid_144_3448", "source": "5252", "target": "9984" }, { "key": "geid_144_3449", "source": "7008", "target": "8433" }, { "key": "geid_144_3450", "source": "4128", "target": "4483" }, { "key": "geid_144_3451", "source": "8214", "target": "9291" }, { "key": "geid_144_3452", "source": "717", "target": "9767" }, { "key": "geid_144_3453", "source": "7391", "target": "2108" }, { "key": "geid_144_3454", "source": "7710", "target": "2252" }, { "key": "geid_144_3455", "source": "3418", "target": "8204" }, { "key": "geid_144_3456", "source": "8027", "target": "4337" }, { "key": "geid_144_3457", "source": "7521", "target": "6177" }, { "key": "geid_144_3458", "source": "7549", "target": "8427" }, { "key": "geid_144_3459", "source": "5679", "target": "4855" }, { "key": "geid_144_3460", "source": "6187", "target": "1039" }, { "key": "geid_144_3461", "source": "5959", "target": "9812" }, { "key": "geid_144_3462", "source": "6523", "target": "9818" }, { "key": "geid_144_3463", "source": "1766", "target": "2551" }, { "key": "geid_144_3464", "source": "2053", "target": "6744" }, { "key": "geid_144_3465", "source": "3501", "target": "3641" }, { "key": "geid_144_3466", "source": "9715", "target": "4619" }, { "key": "geid_144_3467", "source": "5134", "target": "7913" }, { "key": "geid_144_3468", "source": "7742", "target": "5329" }, { "key": "geid_144_3469", "source": "3985", "target": "2889" }, { "key": "geid_144_3470", "source": "7508", "target": "9961" }, { "key": "geid_144_3471", "source": "7848", "target": "133" }, { "key": "geid_144_3472", "source": "8088", "target": "9000" }, { "key": "geid_144_3473", "source": "7830", "target": "3158" }, { "key": "geid_144_3474", "source": "2489", "target": "291" }, { "key": "geid_144_3475", "source": "8915", "target": "9838" }, { "key": "geid_144_3476", "source": "3215", "target": "1236" }, { "key": "geid_144_3477", "source": "6460", "target": "656" }, { "key": "geid_144_3478", "source": "7419", "target": "1261" }, { "key": "geid_144_3479", "source": "6932", "target": "7465" }, { "key": "geid_144_3480", "source": "9590", "target": "7586" }, { "key": "geid_144_3481", "source": "3189", "target": "5894" }, { "key": "geid_144_3482", "source": "9963", "target": "8671" }, { "key": "geid_144_3483", "source": "1169", "target": "8133" }, { "key": "geid_144_3484", "source": "3910", "target": "6212" }, { "key": "geid_144_3485", "source": "38", "target": "4667" }, { "key": "geid_144_3486", "source": "8883", "target": "2259" }, { "key": "geid_144_3487", "source": "6273", "target": "9342" }, { "key": "geid_144_3488", "source": "4829", "target": "8498" }, { "key": "geid_144_3489", "source": "7107", "target": "5553" }, { "key": "geid_144_3490", "source": "5580", "target": "5523" }, { "key": "geid_144_3491", "source": "3491", "target": "5822" }, { "key": "geid_144_3492", "source": "6221", "target": "4169" }, { "key": "geid_144_3493", "source": "486", "target": "6117" }, { "key": "geid_144_3494", "source": "5897", "target": "3802" }, { "key": "geid_144_3495", "source": "5631", "target": "3335" }, { "key": "geid_144_3496", "source": "8075", "target": "5430" }, { "key": "geid_144_3497", "source": "9303", "target": "318" }, { "key": "geid_144_3498", "source": "8524", "target": "3087" }, { "key": "geid_144_3499", "source": "6882", "target": "6378" }, { "key": "geid_144_3500", "source": "6970", "target": "983" }, { "key": "geid_144_3501", "source": "6016", "target": "3769" }, { "key": "geid_144_3502", "source": "3176", "target": "6612" }, { "key": "geid_144_3503", "source": "3119", "target": "1794" }, { "key": "geid_144_3504", "source": "5918", "target": "9864" }, { "key": "geid_144_3505", "source": "5116", "target": "2991" }, { "key": "geid_144_3506", "source": "3175", "target": "8758" }, { "key": "geid_144_3507", "source": "2470", "target": "8092" }, { "key": "geid_144_3508", "source": "6254", "target": "5003" }, { "key": "geid_144_3509", "source": "7346", "target": "9577" }, { "key": "geid_144_3510", "source": "5956", "target": "5246" }, { "key": "geid_144_3511", "source": "7059", "target": "3490" }, { "key": "geid_144_3512", "source": "8736", "target": "518" }, { "key": "geid_144_3513", "source": "502", "target": "5731" }, { "key": "geid_144_3514", "source": "4152", "target": "550" }, { "key": "geid_144_3515", "source": "3127", "target": "1616" }, { "key": "geid_144_3516", "source": "9838", "target": "6747" }, { "key": "geid_144_3517", "source": "1889", "target": "1431" }, { "key": "geid_144_3518", "source": "2617", "target": "2007" }, { "key": "geid_144_3519", "source": "727", "target": "1405" }, { "key": "geid_144_3520", "source": "7756", "target": "2527" }, { "key": "geid_144_3521", "source": "3601", "target": "1760" }, { "key": "geid_144_3522", "source": "2188", "target": "4386" }, { "key": "geid_144_3523", "source": "4718", "target": "8158" }, { "key": "geid_144_3524", "source": "622", "target": "1389" }, { "key": "geid_144_3525", "source": "9776", "target": "1978" }, { "key": "geid_144_3526", "source": "8394", "target": "3093" }, { "key": "geid_144_3527", "source": "5606", "target": "1335" }, { "key": "geid_144_3528", "source": "4136", "target": "9405" }, { "key": "geid_144_3529", "source": "7341", "target": "6933" }, { "key": "geid_144_3530", "source": "7133", "target": "5189" }, { "key": "geid_144_3531", "source": "4990", "target": "6042" }, { "key": "geid_144_3532", "source": "1777", "target": "5712" }, { "key": "geid_144_3533", "source": "7483", "target": "5983" }, { "key": "geid_144_3534", "source": "5858", "target": "5054" }, { "key": "geid_144_3535", "source": "426", "target": "5231" }, { "key": "geid_144_3536", "source": "6198", "target": "9295" }, { "key": "geid_144_3537", "source": "7121", "target": "4695" }, { "key": "geid_144_3538", "source": "6863", "target": "7721" }, { "key": "geid_144_3539", "source": "1627", "target": "916" }, { "key": "geid_144_3540", "source": "5386", "target": "6500" }, { "key": "geid_144_3541", "source": "3390", "target": "8106" }, { "key": "geid_144_3542", "source": "2513", "target": "6835" }, { "key": "geid_144_3543", "source": "8372", "target": "1413" }, { "key": "geid_144_3544", "source": "3775", "target": "7656" }, { "key": "geid_144_3545", "source": "2157", "target": "5171" }, { "key": "geid_144_3546", "source": "8151", "target": "6491" }, { "key": "geid_144_3547", "source": "1273", "target": "9209" }, { "key": "geid_144_3548", "source": "5394", "target": "7445" }, { "key": "geid_144_3549", "source": "717", "target": "3656" }, { "key": "geid_144_3550", "source": "5940", "target": "1249" }, { "key": "geid_144_3551", "source": "766", "target": "9206" }, { "key": "geid_144_3552", "source": "299", "target": "5400" }, { "key": "geid_144_3553", "source": "5846", "target": "3841" }, { "key": "geid_144_3554", "source": "7001", "target": "962" }, { "key": "geid_144_3555", "source": "7557", "target": "134" }, { "key": "geid_144_3556", "source": "808", "target": "9875" }, { "key": "geid_144_3557", "source": "8194", "target": "1247" }, { "key": "geid_144_3558", "source": "6775", "target": "7878" }, { "key": "geid_144_3559", "source": "6880", "target": "877" }, { "key": "geid_144_3560", "source": "2119", "target": "4499" }, { "key": "geid_144_3561", "source": "7025", "target": "374" }, { "key": "geid_144_3562", "source": "5140", "target": "7157" }, { "key": "geid_144_3563", "source": "2142", "target": "506" }, { "key": "geid_144_3564", "source": "5220", "target": "4396" }, { "key": "geid_144_3565", "source": "4951", "target": "3062" }, { "key": "geid_144_3566", "source": "436", "target": "3169" }, { "key": "geid_144_3567", "source": "7045", "target": "2128" }, { "key": "geid_144_3568", "source": "6142", "target": "6280" }, { "key": "geid_144_3569", "source": "6048", "target": "1417" }, { "key": "geid_144_3570", "source": "7415", "target": "5800" }, { "key": "geid_144_3571", "source": "2683", "target": "4979" }, { "key": "geid_144_3572", "source": "8740", "target": "1177" }, { "key": "geid_144_3573", "source": "6960", "target": "4876" }, { "key": "geid_144_3574", "source": "4", "target": "3076" }, { "key": "geid_144_3575", "source": "500", "target": "4775" }, { "key": "geid_144_3576", "source": "8189", "target": "2107" }, { "key": "geid_144_3577", "source": "6254", "target": "9271" }, { "key": "geid_144_3578", "source": "3017", "target": "9422" }, { "key": "geid_144_3579", "source": "3661", "target": "7875" }, { "key": "geid_144_3580", "source": "1545", "target": "4829" }, { "key": "geid_144_3581", "source": "8875", "target": "1729" }, { "key": "geid_144_3582", "source": "9897", "target": "9454" }, { "key": "geid_144_3583", "source": "6440", "target": "1133" }, { "key": "geid_144_3584", "source": "3188", "target": "9555" }, { "key": "geid_144_3585", "source": "5458", "target": "3037" }, { "key": "geid_144_3586", "source": "29", "target": "9929" }, { "key": "geid_144_3587", "source": "2244", "target": "1146" }, { "key": "geid_144_3588", "source": "80", "target": "1682" }, { "key": "geid_144_3589", "source": "9498", "target": "2330" }, { "key": "geid_144_3590", "source": "3060", "target": "2868" }, { "key": "geid_144_3591", "source": "4217", "target": "9165" }, { "key": "geid_144_3592", "source": "8559", "target": "7686" }, { "key": "geid_144_3593", "source": "2246", "target": "5111" }, { "key": "geid_144_3594", "source": "6909", "target": "559" }, { "key": "geid_144_3595", "source": "2878", "target": "1764" }, { "key": "geid_144_3596", "source": "4101", "target": "9233" }, { "key": "geid_144_3597", "source": "2259", "target": "4243" }, { "key": "geid_144_3598", "source": "9710", "target": "6276" }, { "key": "geid_144_3599", "source": "9914", "target": "1552" }, { "key": "geid_144_3600", "source": "9976", "target": "3899" }, { "key": "geid_144_3601", "source": "8699", "target": "4733" }, { "key": "geid_144_3602", "source": "1275", "target": "2009" }, { "key": "geid_144_3603", "source": "6216", "target": "6273" }, { "key": "geid_144_3604", "source": "5809", "target": "5027" }, { "key": "geid_144_3605", "source": "8267", "target": "9287" }, { "key": "geid_144_3606", "source": "9471", "target": "2781" }, { "key": "geid_144_3607", "source": "5715", "target": "8457" }, { "key": "geid_144_3608", "source": "6019", "target": "4116" }, { "key": "geid_144_3609", "source": "5711", "target": "5976" }, { "key": "geid_144_3610", "source": "2492", "target": "7280" }, { "key": "geid_144_3611", "source": "7833", "target": "1063" }, { "key": "geid_144_3612", "source": "1078", "target": "5309" }, { "key": "geid_144_3613", "source": "2174", "target": "6491" }, { "key": "geid_144_3614", "source": "486", "target": "4648" }, { "key": "geid_144_3615", "source": "6463", "target": "486" }, { "key": "geid_144_3616", "source": "5360", "target": "9000" }, { "key": "geid_144_3617", "source": "5270", "target": "4874" }, { "key": "geid_144_3618", "source": "4840", "target": "9857" }, { "key": "geid_144_3619", "source": "1679", "target": "392" }, { "key": "geid_144_3620", "source": "6558", "target": "6011" }, { "key": "geid_144_3621", "source": "5032", "target": "9169" }, { "key": "geid_144_3622", "source": "1733", "target": "5015" }, { "key": "geid_144_3623", "source": "7122", "target": "4052" }, { "key": "geid_144_3624", "source": "9353", "target": "5808" }, { "key": "geid_144_3625", "source": "5043", "target": "4937" }, { "key": "geid_144_3626", "source": "617", "target": "5142" }, { "key": "geid_144_3627", "source": "3966", "target": "9755" }, { "key": "geid_144_3628", "source": "1632", "target": "9135" }, { "key": "geid_144_3629", "source": "1043", "target": "5452" }, { "key": "geid_144_3630", "source": "4415", "target": "8699" }, { "key": "geid_144_3631", "source": "8865", "target": "7545" }, { "key": "geid_144_3632", "source": "5646", "target": "2805" }, { "key": "geid_144_3633", "source": "5550", "target": "3928" }, { "key": "geid_144_3634", "source": "5550", "target": "6028" }, { "key": "geid_144_3635", "source": "9130", "target": "5484" }, { "key": "geid_144_3636", "source": "7003", "target": "7897" }, { "key": "geid_144_3637", "source": "7597", "target": "9827" }, { "key": "geid_144_3638", "source": "6313", "target": "334" }, { "key": "geid_144_3639", "source": "8761", "target": "3085" }, { "key": "geid_144_3640", "source": "1663", "target": "7711" }, { "key": "geid_144_3641", "source": "3743", "target": "2078" }, { "key": "geid_144_3642", "source": "8092", "target": "4541" }, { "key": "geid_144_3643", "source": "899", "target": "3072" }, { "key": "geid_144_3644", "source": "6964", "target": "6620" }, { "key": "geid_144_3645", "source": "7971", "target": "2488" }, { "key": "geid_144_3646", "source": "9895", "target": "9926" }, { "key": "geid_144_3647", "source": "8374", "target": "2750" }, { "key": "geid_144_3648", "source": "6694", "target": "5337" }, { "key": "geid_144_3649", "source": "5816", "target": "6305" }, { "key": "geid_144_3650", "source": "2087", "target": "6456" }, { "key": "geid_144_3651", "source": "987", "target": "7967" }, { "key": "geid_144_3652", "source": "3873", "target": "6813" }, { "key": "geid_144_3653", "source": "9866", "target": "4210" }, { "key": "geid_144_3654", "source": "4491", "target": "2905" }, { "key": "geid_144_3655", "source": "8910", "target": "770" }, { "key": "geid_144_3656", "source": "1527", "target": "6055" }, { "key": "geid_144_3657", "source": "979", "target": "7718" }, { "key": "geid_144_3658", "source": "3569", "target": "8000" }, { "key": "geid_144_3659", "source": "698", "target": "3320" }, { "key": "geid_144_3660", "source": "2390", "target": "8914" }, { "key": "geid_144_3661", "source": "6803", "target": "5694" }, { "key": "geid_144_3662", "source": "9228", "target": "1830" }, { "key": "geid_144_3663", "source": "1765", "target": "5317" }, { "key": "geid_144_3664", "source": "6604", "target": "5696" }, { "key": "geid_144_3665", "source": "6569", "target": "5943" }, { "key": "geid_144_3666", "source": "4239", "target": "6835" }, { "key": "geid_144_3667", "source": "4129", "target": "6539" }, { "key": "geid_144_3668", "source": "3360", "target": "9631" }, { "key": "geid_144_3669", "source": "8724", "target": "1470" }, { "key": "geid_144_3670", "source": "6451", "target": "8620" }, { "key": "geid_144_3671", "source": "140", "target": "2791" }, { "key": "geid_144_3672", "source": "8356", "target": "9913" }, { "key": "geid_144_3673", "source": "2408", "target": "939" }, { "key": "geid_144_3674", "source": "4075", "target": "2884" }, { "key": "geid_144_3675", "source": "6510", "target": "3491" }, { "key": "geid_144_3676", "source": "2844", "target": "6057" }, { "key": "geid_144_3677", "source": "2432", "target": "1437" }, { "key": "geid_144_3678", "source": "2517", "target": "386" }, { "key": "geid_144_3679", "source": "2555", "target": "2879" }, { "key": "geid_144_3680", "source": "2878", "target": "742" }, { "key": "geid_144_3681", "source": "7589", "target": "9332" }, { "key": "geid_144_3682", "source": "2859", "target": "3246" }, { "key": "geid_144_3683", "source": "9256", "target": "6596" }, { "key": "geid_144_3684", "source": "7589", "target": "2167" }, { "key": "geid_144_3685", "source": "7750", "target": "1996" }, { "key": "geid_144_3686", "source": "2271", "target": "4711" }, { "key": "geid_144_3687", "source": "638", "target": "5589" }, { "key": "geid_144_3688", "source": "7142", "target": "9685" }, { "key": "geid_144_3689", "source": "4106", "target": "9544" }, { "key": "geid_144_3690", "source": "1073", "target": "7214" }, { "key": "geid_144_3691", "source": "617", "target": "1894" }, { "key": "geid_144_3692", "source": "5866", "target": "8772" }, { "key": "geid_144_3693", "source": "8977", "target": "9107" }, { "key": "geid_144_3694", "source": "9575", "target": "5561" }, { "key": "geid_144_3695", "source": "7936", "target": "3818" }, { "key": "geid_144_3696", "source": "9104", "target": "4507" }, { "key": "geid_144_3697", "source": "2982", "target": "9100" }, { "key": "geid_144_3698", "source": "2776", "target": "4950" }, { "key": "geid_144_3699", "source": "9857", "target": "2082" }, { "key": "geid_144_3700", "source": "2932", "target": "9498" }, { "key": "geid_144_3701", "source": "3710", "target": "798" }, { "key": "geid_144_3702", "source": "5211", "target": "9955" }, { "key": "geid_144_3703", "source": "262", "target": "3900" }, { "key": "geid_144_3704", "source": "1871", "target": "4247" }, { "key": "geid_144_3705", "source": "7243", "target": "8169" }, { "key": "geid_144_3706", "source": "2045", "target": "4615" }, { "key": "geid_144_3707", "source": "375", "target": "5641" }, { "key": "geid_144_3708", "source": "4333", "target": "8650" }, { "key": "geid_144_3709", "source": "8694", "target": "76" }, { "key": "geid_144_3710", "source": "4544", "target": "7008" }, { "key": "geid_144_3711", "source": "3252", "target": "8461" }, { "key": "geid_144_3712", "source": "5121", "target": "9902" }, { "key": "geid_144_3713", "source": "904", "target": "2773" }, { "key": "geid_144_3714", "source": "8674", "target": "7738" }, { "key": "geid_144_3715", "source": "7283", "target": "3390" }, { "key": "geid_144_3716", "source": "7523", "target": "8315" }, { "key": "geid_144_3717", "source": "5180", "target": "6472" }, { "key": "geid_144_3718", "source": "279", "target": "8842" }, { "key": "geid_144_3719", "source": "4044", "target": "5107" }, { "key": "geid_144_3720", "source": "5433", "target": "9802" }, { "key": "geid_144_3721", "source": "3523", "target": "2677" }, { "key": "geid_144_3722", "source": "7793", "target": "9820" }, { "key": "geid_144_3723", "source": "1736", "target": "3960" }, { "key": "geid_144_3724", "source": "103", "target": "5590" }, { "key": "geid_144_3725", "source": "2912", "target": "3710" }, { "key": "geid_144_3726", "source": "1712", "target": "7099" }, { "key": "geid_144_3727", "source": "6453", "target": "8080" }, { "key": "geid_144_3728", "source": "9904", "target": "5574" }, { "key": "geid_144_3729", "source": "4684", "target": "3348" }, { "key": "geid_144_3730", "source": "2631", "target": "3304" }, { "key": "geid_144_3731", "source": "2127", "target": "2712" }, { "key": "geid_144_3732", "source": "1571", "target": "5325" }, { "key": "geid_144_3733", "source": "3811", "target": "3380" }, { "key": "geid_144_3734", "source": "6943", "target": "2289" }, { "key": "geid_144_3735", "source": "8617", "target": "3663" }, { "key": "geid_144_3736", "source": "6338", "target": "8883" }, { "key": "geid_144_3737", "source": "5325", "target": "2123" }, { "key": "geid_144_3738", "source": "3858", "target": "6634" }, { "key": "geid_144_3739", "source": "753", "target": "5334" }, { "key": "geid_144_3740", "source": "7313", "target": "8353" }, { "key": "geid_144_3741", "source": "5338", "target": "554" }, { "key": "geid_144_3742", "source": "2146", "target": "9754" }, { "key": "geid_144_3743", "source": "9359", "target": "6010" }, { "key": "geid_144_3744", "source": "6412", "target": "8985" }, { "key": "geid_144_3745", "source": "5227", "target": "615" }, { "key": "geid_144_3746", "source": "4458", "target": "1608" }, { "key": "geid_144_3747", "source": "7457", "target": "2939" }, { "key": "geid_144_3748", "source": "9224", "target": "9608" }, { "key": "geid_144_3749", "source": "5843", "target": "6737" }, { "key": "geid_144_3750", "source": "1878", "target": "4703" }, { "key": "geid_144_3751", "source": "888", "target": "7603" }, { "key": "geid_144_3752", "source": "1023", "target": "3289" }, { "key": "geid_144_3753", "source": "5498", "target": "9585" }, { "key": "geid_144_3754", "source": "7768", "target": "2275" }, { "key": "geid_144_3755", "source": "5282", "target": "4028" }, { "key": "geid_144_3756", "source": "6513", "target": "3194" }, { "key": "geid_144_3757", "source": "5433", "target": "5390" }, { "key": "geid_144_3758", "source": "6625", "target": "6487" }, { "key": "geid_144_3759", "source": "3073", "target": "170" }, { "key": "geid_144_3760", "source": "4159", "target": "9406" }, { "key": "geid_144_3761", "source": "1513", "target": "82" }, { "key": "geid_144_3762", "source": "9711", "target": "5688" }, { "key": "geid_144_3763", "source": "858", "target": "9900" }, { "key": "geid_144_3764", "source": "9369", "target": "3349" }, { "key": "geid_144_3765", "source": "6202", "target": "3427" }, { "key": "geid_144_3766", "source": "5247", "target": "3920" }, { "key": "geid_144_3767", "source": "4379", "target": "4797" }, { "key": "geid_144_3768", "source": "1660", "target": "7263" }, { "key": "geid_144_3769", "source": "8175", "target": "1101" }, { "key": "geid_144_3770", "source": "4615", "target": "7296" }, { "key": "geid_144_3771", "source": "5135", "target": "4620" }, { "key": "geid_144_3772", "source": "4771", "target": "2122" }, { "key": "geid_144_3773", "source": "4018", "target": "3900" }, { "key": "geid_144_3774", "source": "7948", "target": "1500" }, { "key": "geid_144_3775", "source": "9784", "target": "1466" }, { "key": "geid_144_3776", "source": "6330", "target": "3058" }, { "key": "geid_144_3777", "source": "3913", "target": "4747" }, { "key": "geid_144_3778", "source": "4256", "target": "5674" }, { "key": "geid_144_3779", "source": "1867", "target": "3916" }, { "key": "geid_144_3780", "source": "9467", "target": "3199" }, { "key": "geid_144_3781", "source": "1226", "target": "3765" }, { "key": "geid_144_3782", "source": "6156", "target": "1734" }, { "key": "geid_144_3783", "source": "3232", "target": "4498" }, { "key": "geid_144_3784", "source": "50", "target": "6271" }, { "key": "geid_144_3785", "source": "339", "target": "6481" }, { "key": "geid_144_3786", "source": "5563", "target": "2984" }, { "key": "geid_144_3787", "source": "8308", "target": "8731" }, { "key": "geid_144_3788", "source": "340", "target": "4704" }, { "key": "geid_144_3789", "source": "6517", "target": "8176" }, { "key": "geid_144_3790", "source": "1729", "target": "4897" }, { "key": "geid_144_3791", "source": "6409", "target": "2928" }, { "key": "geid_144_3792", "source": "7560", "target": "5914" }, { "key": "geid_144_3793", "source": "8658", "target": "2075" }, { "key": "geid_144_3794", "source": "6781", "target": "1277" }, { "key": "geid_144_3795", "source": "7028", "target": "6756" }, { "key": "geid_144_3796", "source": "668", "target": "8879" }, { "key": "geid_144_3797", "source": "2414", "target": "2734" }, { "key": "geid_144_3798", "source": "7958", "target": "5510" }, { "key": "geid_144_3799", "source": "9339", "target": "8493" }, { "key": "geid_144_3800", "source": "1353", "target": "8609" }, { "key": "geid_144_3801", "source": "9638", "target": "4490" }, { "key": "geid_144_3802", "source": "4807", "target": "5289" }, { "key": "geid_144_3803", "source": "6768", "target": "9821" }, { "key": "geid_144_3804", "source": "5050", "target": "5346" }, { "key": "geid_144_3805", "source": "8612", "target": "7639" }, { "key": "geid_144_3806", "source": "9616", "target": "6951" }, { "key": "geid_144_3807", "source": "8632", "target": "2755" }, { "key": "geid_144_3808", "source": "3328", "target": "629" }, { "key": "geid_144_3809", "source": "4811", "target": "8764" }, { "key": "geid_144_3810", "source": "8222", "target": "7510" }, { "key": "geid_144_3811", "source": "2075", "target": "9286" }, { "key": "geid_144_3812", "source": "795", "target": "386" }, { "key": "geid_144_3813", "source": "8561", "target": "4041" }, { "key": "geid_144_3814", "source": "9500", "target": "1237" }, { "key": "geid_144_3815", "source": "7931", "target": "337" }, { "key": "geid_144_3816", "source": "2244", "target": "4842" }, { "key": "geid_144_3817", "source": "674", "target": "2958" }, { "key": "geid_144_3818", "source": "6677", "target": "8866" }, { "key": "geid_144_3819", "source": "235", "target": "1683" }, { "key": "geid_144_3820", "source": "8668", "target": "3132" }, { "key": "geid_144_3821", "source": "3319", "target": "7460" }, { "key": "geid_144_3822", "source": "8254", "target": "721" }, { "key": "geid_144_3823", "source": "4362", "target": "7380" }, { "key": "geid_144_3824", "source": "8251", "target": "7771" }, { "key": "geid_144_3825", "source": "9672", "target": "4192" }, { "key": "geid_144_3826", "source": "9227", "target": "3837" }, { "key": "geid_144_3827", "source": "1366", "target": "5926" }, { "key": "geid_144_3828", "source": "2748", "target": "3903" }, { "key": "geid_144_3829", "source": "1661", "target": "8053" }, { "key": "geid_144_3830", "source": "7925", "target": "963" }, { "key": "geid_144_3831", "source": "3182", "target": "8905" }, { "key": "geid_144_3832", "source": "5103", "target": "5340" }, { "key": "geid_144_3833", "source": "719", "target": "3037" }, { "key": "geid_144_3834", "source": "2602", "target": "64" }, { "key": "geid_144_3835", "source": "1681", "target": "140" }, { "key": "geid_144_3836", "source": "2532", "target": "8560" }, { "key": "geid_144_3837", "source": "6837", "target": "746" }, { "key": "geid_144_3838", "source": "3892", "target": "3473" }, { "key": "geid_144_3839", "source": "6107", "target": "7816" }, { "key": "geid_144_3840", "source": "7632", "target": "9752" }, { "key": "geid_144_3841", "source": "8026", "target": "3149" }, { "key": "geid_144_3842", "source": "9880", "target": "2087" }, { "key": "geid_144_3843", "source": "4643", "target": "8183" }, { "key": "geid_144_3844", "source": "6561", "target": "1132" }, { "key": "geid_144_3845", "source": "7748", "target": "7700" }, { "key": "geid_144_3846", "source": "1166", "target": "4381" }, { "key": "geid_144_3847", "source": "3468", "target": "6429" }, { "key": "geid_144_3848", "source": "2187", "target": "2491" }, { "key": "geid_144_3849", "source": "1137", "target": "1971" }, { "key": "geid_144_3850", "source": "4271", "target": "7157" }, { "key": "geid_144_3851", "source": "5949", "target": "36" }, { "key": "geid_144_3852", "source": "7914", "target": "9633" }, { "key": "geid_144_3853", "source": "5804", "target": "2379" }, { "key": "geid_144_3854", "source": "7475", "target": "5178" }, { "key": "geid_144_3855", "source": "9526", "target": "8757" }, { "key": "geid_144_3856", "source": "5715", "target": "1533" }, { "key": "geid_144_3857", "source": "4613", "target": "2337" }, { "key": "geid_144_3858", "source": "8629", "target": "7259" }, { "key": "geid_144_3859", "source": "5437", "target": "2796" }, { "key": "geid_144_3860", "source": "8734", "target": "261" }, { "key": "geid_144_3861", "source": "712", "target": "2003" }, { "key": "geid_144_3862", "source": "6429", "target": "3694" }, { "key": "geid_144_3863", "source": "5206", "target": "2451" }, { "key": "geid_144_3864", "source": "7993", "target": "4310" }, { "key": "geid_144_3865", "source": "7405", "target": "2392" }, { "key": "geid_144_3866", "source": "3260", "target": "2522" }, { "key": "geid_144_3867", "source": "1605", "target": "8095" }, { "key": "geid_144_3868", "source": "5318", "target": "352" }, { "key": "geid_144_3869", "source": "4291", "target": "8597" }, { "key": "geid_144_3870", "source": "1970", "target": "3733" }, { "key": "geid_144_3871", "source": "2958", "target": "9901" }, { "key": "geid_144_3872", "source": "9580", "target": "8233" }, { "key": "geid_144_3873", "source": "4829", "target": "4511" }, { "key": "geid_144_3874", "source": "7876", "target": "6771" }, { "key": "geid_144_3875", "source": "3706", "target": "7134" }, { "key": "geid_144_3876", "source": "3336", "target": "826" }, { "key": "geid_144_3877", "source": "5081", "target": "8237" }, { "key": "geid_144_3878", "source": "4777", "target": "7962" }, { "key": "geid_144_3879", "source": "1565", "target": "7459" }, { "key": "geid_144_3880", "source": "1419", "target": "4873" }, { "key": "geid_144_3881", "source": "743", "target": "2036" }, { "key": "geid_144_3882", "source": "4787", "target": "6006" }, { "key": "geid_144_3883", "source": "2057", "target": "2838" }, { "key": "geid_144_3884", "source": "1434", "target": "4292" }, { "key": "geid_144_3885", "source": "5529", "target": "4770" }, { "key": "geid_144_3886", "source": "4620", "target": "9345" }, { "key": "geid_144_3887", "source": "5470", "target": "5425" }, { "key": "geid_144_3888", "source": "2153", "target": "2636" }, { "key": "geid_144_3889", "source": "2003", "target": "2062" }, { "key": "geid_144_3890", "source": "1479", "target": "9657" }, { "key": "geid_144_3891", "source": "5956", "target": "5348" }, { "key": "geid_144_3892", "source": "8303", "target": "8829" }, { "key": "geid_144_3893", "source": "3229", "target": "9983" }, { "key": "geid_144_3894", "source": "4021", "target": "5988" }, { "key": "geid_144_3895", "source": "8906", "target": "5453" }, { "key": "geid_144_3896", "source": "2037", "target": "3878" }, { "key": "geid_144_3897", "source": "8677", "target": "1494" }, { "key": "geid_144_3898", "source": "8295", "target": "3188" }, { "key": "geid_144_3899", "source": "8879", "target": "4960" }, { "key": "geid_144_3900", "source": "5574", "target": "2187" }, { "key": "geid_144_3901", "source": "1763", "target": "7310" }, { "key": "geid_144_3902", "source": "9948", "target": "4567" }, { "key": "geid_144_3903", "source": "548", "target": "499" }, { "key": "geid_144_3904", "source": "7417", "target": "9316" }, { "key": "geid_144_3905", "source": "1284", "target": "2116" }, { "key": "geid_144_3906", "source": "4656", "target": "3686" }, { "key": "geid_144_3907", "source": "134", "target": "3437" }, { "key": "geid_144_3908", "source": "2064", "target": "40" }, { "key": "geid_144_3909", "source": "207", "target": "9791" }, { "key": "geid_144_3910", "source": "7996", "target": "7663" }, { "key": "geid_144_3911", "source": "3942", "target": "1552" }, { "key": "geid_144_3912", "source": "7187", "target": "1246" }, { "key": "geid_144_3913", "source": "1618", "target": "2255" }, { "key": "geid_144_3914", "source": "8628", "target": "8973" }, { "key": "geid_144_3915", "source": "505", "target": "5917" }, { "key": "geid_144_3916", "source": "4539", "target": "2776" }, { "key": "geid_144_3917", "source": "6826", "target": "7003" }, { "key": "geid_144_3918", "source": "9344", "target": "1226" }, { "key": "geid_144_3919", "source": "8764", "target": "5950" }, { "key": "geid_144_3920", "source": "6237", "target": "2767" }, { "key": "geid_144_3921", "source": "5491", "target": "3875" }, { "key": "geid_144_3922", "source": "1421", "target": "7065" }, { "key": "geid_144_3923", "source": "9369", "target": "9952" }, { "key": "geid_144_3924", "source": "9755", "target": "1784" }, { "key": "geid_144_3925", "source": "391", "target": "9792" }, { "key": "geid_144_3926", "source": "9253", "target": "8636" }, { "key": "geid_144_3927", "source": "8332", "target": "5395" }, { "key": "geid_144_3928", "source": "8217", "target": "5846" }, { "key": "geid_144_3929", "source": "7007", "target": "6492" }, { "key": "geid_144_3930", "source": "74", "target": "5929" }, { "key": "geid_144_3931", "source": "5771", "target": "6228" }, { "key": "geid_144_3932", "source": "1168", "target": "5009" }, { "key": "geid_144_3933", "source": "608", "target": "1209" }, { "key": "geid_144_3934", "source": "2437", "target": "7186" }, { "key": "geid_144_3935", "source": "453", "target": "9944" }, { "key": "geid_144_3936", "source": "7361", "target": "7616" }, { "key": "geid_144_3937", "source": "6243", "target": "4266" }, { "key": "geid_144_3938", "source": "4556", "target": "8458" }, { "key": "geid_144_3939", "source": "1732", "target": "7566" }, { "key": "geid_144_3940", "source": "5709", "target": "5068" }, { "key": "geid_144_3941", "source": "8812", "target": "6882" }, { "key": "geid_144_3942", "source": "4874", "target": "8159" }, { "key": "geid_144_3943", "source": "5511", "target": "4566" }, { "key": "geid_144_3944", "source": "6309", "target": "917" }, { "key": "geid_144_3945", "source": "5395", "target": "6108" }, { "key": "geid_144_3946", "source": "3725", "target": "1367" }, { "key": "geid_144_3947", "source": "1000", "target": "4714" }, { "key": "geid_144_3948", "source": "8189", "target": "9903" }, { "key": "geid_144_3949", "source": "8630", "target": "8073" }, { "key": "geid_144_3950", "source": "8480", "target": "5329" }, { "key": "geid_144_3951", "source": "4911", "target": "4424" }, { "key": "geid_144_3952", "source": "2309", "target": "4895" }, { "key": "geid_144_3953", "source": "2324", "target": "6982" }, { "key": "geid_144_3954", "source": "6885", "target": "2705" }, { "key": "geid_144_3955", "source": "2374", "target": "1445" }, { "key": "geid_144_3956", "source": "6052", "target": "5305" }, { "key": "geid_144_3957", "source": "9366", "target": "4165" }, { "key": "geid_144_3958", "source": "9542", "target": "9185" }, { "key": "geid_144_3959", "source": "2197", "target": "4651" }, { "key": "geid_144_3960", "source": "1513", "target": "1834" }, { "key": "geid_144_3961", "source": "3929", "target": "7376" }, { "key": "geid_144_3962", "source": "7405", "target": "8778" }, { "key": "geid_144_3963", "source": "8756", "target": "2904" }, { "key": "geid_144_3964", "source": "3612", "target": "6880" }, { "key": "geid_144_3965", "source": "3836", "target": "6447" }, { "key": "geid_144_3966", "source": "7439", "target": "8123" }, { "key": "geid_144_3967", "source": "3832", "target": "9249" }, { "key": "geid_144_3968", "source": "870", "target": "2551" }, { "key": "geid_144_3969", "source": "6976", "target": "535" }, { "key": "geid_144_3970", "source": "9854", "target": "5933" }, { "key": "geid_144_3971", "source": "3908", "target": "2414" }, { "key": "geid_144_3972", "source": "7450", "target": "9154" }, { "key": "geid_144_3973", "source": "4960", "target": "2853" }, { "key": "geid_144_3974", "source": "9651", "target": "4840" }, { "key": "geid_144_3975", "source": "2006", "target": "2674" }, { "key": "geid_144_3976", "source": "3612", "target": "7568" }, { "key": "geid_144_3977", "source": "1254", "target": "2256" }, { "key": "geid_144_3978", "source": "9492", "target": "565" }, { "key": "geid_144_3979", "source": "1128", "target": "8549" }, { "key": "geid_144_3980", "source": "1108", "target": "3356" }, { "key": "geid_144_3981", "source": "3775", "target": "6550" }, { "key": "geid_144_3982", "source": "6471", "target": "5236" }, { "key": "geid_144_3983", "source": "9633", "target": "9631" }, { "key": "geid_144_3984", "source": "6477", "target": "2241" }, { "key": "geid_144_3985", "source": "2572", "target": "9014" }, { "key": "geid_144_3986", "source": "5901", "target": "6553" }, { "key": "geid_144_3987", "source": "2704", "target": "8737" }, { "key": "geid_144_3988", "source": "2817", "target": "2058" }, { "key": "geid_144_3989", "source": "5458", "target": "8750" }, { "key": "geid_144_3990", "source": "4977", "target": "1333" }, { "key": "geid_144_3991", "source": "3781", "target": "7411" }, { "key": "geid_144_3992", "source": "5304", "target": "8386" }, { "key": "geid_144_3993", "source": "541", "target": "1225" }, { "key": "geid_144_3994", "source": "5248", "target": "4429" }, { "key": "geid_144_3995", "source": "7172", "target": "3677" }, { "key": "geid_144_3996", "source": "958", "target": "1280" }, { "key": "geid_144_3997", "source": "5668", "target": "3048" }, { "key": "geid_144_3998", "source": "2540", "target": "2487" }, { "key": "geid_144_3999", "source": "5679", "target": "21" }, { "key": "geid_144_4000", "source": "9649", "target": "5470" }, { "key": "geid_144_4001", "source": "8184", "target": "7680" }, { "key": "geid_144_4002", "source": "8917", "target": "5359" }, { "key": "geid_144_4003", "source": "8524", "target": "5011" }, { "key": "geid_144_4004", "source": "3975", "target": "981" }, { "key": "geid_144_4005", "source": "197", "target": "4799" }, { "key": "geid_144_4006", "source": "9935", "target": "6782" }, { "key": "geid_144_4007", "source": "6192", "target": "8193" }, { "key": "geid_144_4008", "source": "5442", "target": "2884" }, { "key": "geid_144_4009", "source": "2207", "target": "9699" }, { "key": "geid_144_4010", "source": "1561", "target": "6677" }, { "key": "geid_144_4011", "source": "8915", "target": "9217" }, { "key": "geid_144_4012", "source": "6062", "target": "8012" }, { "key": "geid_144_4013", "source": "9751", "target": "9057" }, { "key": "geid_144_4014", "source": "166", "target": "7681" }, { "key": "geid_144_4015", "source": "731", "target": "718" }, { "key": "geid_144_4016", "source": "1327", "target": "7805" }, { "key": "geid_144_4017", "source": "2095", "target": "9987" }, { "key": "geid_144_4018", "source": "3521", "target": "9966" }, { "key": "geid_144_4019", "source": "1239", "target": "3588" }, { "key": "geid_144_4020", "source": "2107", "target": "6532" }, { "key": "geid_144_4021", "source": "2136", "target": "3000" }, { "key": "geid_144_4022", "source": "6589", "target": "1835" }, { "key": "geid_144_4023", "source": "9888", "target": "7546" }, { "key": "geid_144_4024", "source": "7663", "target": "6812" }, { "key": "geid_144_4025", "source": "7791", "target": "7694" }, { "key": "geid_144_4026", "source": "3048", "target": "2178" }, { "key": "geid_144_4027", "source": "6400", "target": "8300" }, { "key": "geid_144_4028", "source": "5247", "target": "102" }, { "key": "geid_144_4029", "source": "4123", "target": "2218" }, { "key": "geid_144_4030", "source": "4768", "target": "5710" }, { "key": "geid_144_4031", "source": "3893", "target": "4416" }, { "key": "geid_144_4032", "source": "885", "target": "6686" }, { "key": "geid_144_4033", "source": "7968", "target": "9705" }, { "key": "geid_144_4034", "source": "7984", "target": "1593" }, { "key": "geid_144_4035", "source": "1934", "target": "3440" }, { "key": "geid_144_4036", "source": "8598", "target": "2554" }, { "key": "geid_144_4037", "source": "9464", "target": "7329" }, { "key": "geid_144_4038", "source": "4200", "target": "4042" }, { "key": "geid_144_4039", "source": "9527", "target": "7645" }, { "key": "geid_144_4040", "source": "974", "target": "9530" }, { "key": "geid_144_4041", "source": "2392", "target": "6157" }, { "key": "geid_144_4042", "source": "7180", "target": "7937" }, { "key": "geid_144_4043", "source": "7337", "target": "7381" }, { "key": "geid_144_4044", "source": "155", "target": "6832" }, { "key": "geid_144_4045", "source": "7839", "target": "3423" }, { "key": "geid_144_4046", "source": "8504", "target": "7579" }, { "key": "geid_144_4047", "source": "2746", "target": "8987" }, { "key": "geid_144_4048", "source": "6798", "target": "6823" }, { "key": "geid_144_4049", "source": "4814", "target": "9327" }, { "key": "geid_144_4050", "source": "2810", "target": "7990" }, { "key": "geid_144_4051", "source": "8006", "target": "5154" }, { "key": "geid_144_4052", "source": "1794", "target": "2041" }, { "key": "geid_144_4053", "source": "9337", "target": "6259" }, { "key": "geid_144_4054", "source": "2356", "target": "5" }, { "key": "geid_144_4055", "source": "1585", "target": "5642" }, { "key": "geid_144_4056", "source": "2615", "target": "3631" }, { "key": "geid_144_4057", "source": "7169", "target": "2559" }, { "key": "geid_144_4058", "source": "7130", "target": "1062" }, { "key": "geid_144_4059", "source": "6345", "target": "8343" }, { "key": "geid_144_4060", "source": "8236", "target": "8217" }, { "key": "geid_144_4061", "source": "1009", "target": "7039" }, { "key": "geid_144_4062", "source": "9865", "target": "492" }, { "key": "geid_144_4063", "source": "9005", "target": "1855" }, { "key": "geid_144_4064", "source": "7501", "target": "8898" }, { "key": "geid_144_4065", "source": "178", "target": "7441" }, { "key": "geid_144_4066", "source": "4640", "target": "990" }, { "key": "geid_144_4067", "source": "4874", "target": "3861" }, { "key": "geid_144_4068", "source": "3471", "target": "118" }, { "key": "geid_144_4069", "source": "3097", "target": "7054" }, { "key": "geid_144_4070", "source": "4106", "target": "2395" }, { "key": "geid_144_4071", "source": "6236", "target": "9513" }, { "key": "geid_144_4072", "source": "607", "target": "3809" }, { "key": "geid_144_4073", "source": "9651", "target": "7371" }, { "key": "geid_144_4074", "source": "8950", "target": "6177" }, { "key": "geid_144_4075", "source": "803", "target": "9322" }, { "key": "geid_144_4076", "source": "4192", "target": "335" }, { "key": "geid_144_4077", "source": "1054", "target": "6272" }, { "key": "geid_144_4078", "source": "2166", "target": "1387" }, { "key": "geid_144_4079", "source": "8122", "target": "7643" }, { "key": "geid_144_4080", "source": "8890", "target": "2069" }, { "key": "geid_144_4081", "source": "734", "target": "5259" }, { "key": "geid_144_4082", "source": "7371", "target": "5554" }, { "key": "geid_144_4083", "source": "1484", "target": "7660" }, { "key": "geid_144_4084", "source": "1181", "target": "2786" }, { "key": "geid_144_4085", "source": "4999", "target": "2531" }, { "key": "geid_144_4086", "source": "4800", "target": "9711" }, { "key": "geid_144_4087", "source": "3849", "target": "6281" }, { "key": "geid_144_4088", "source": "1717", "target": "3220" }, { "key": "geid_144_4089", "source": "4995", "target": "4698" }, { "key": "geid_144_4090", "source": "2225", "target": "9926" }, { "key": "geid_144_4091", "source": "599", "target": "9689" }, { "key": "geid_144_4092", "source": "6434", "target": "7043" }, { "key": "geid_144_4093", "source": "9051", "target": "9251" }, { "key": "geid_144_4094", "source": "6082", "target": "8124" }, { "key": "geid_144_4095", "source": "4594", "target": "3084" }, { "key": "geid_144_4096", "source": "2368", "target": "2626" }, { "key": "geid_144_4097", "source": "9378", "target": "6285" }, { "key": "geid_144_4098", "source": "5478", "target": "5287" }, { "key": "geid_144_4099", "source": "47", "target": "6361" }, { "key": "geid_144_4100", "source": "3174", "target": "3760" }, { "key": "geid_144_4101", "source": "9838", "target": "3516" }, { "key": "geid_144_4102", "source": "5742", "target": "541" }, { "key": "geid_144_4103", "source": "8262", "target": "7139" }, { "key": "geid_144_4104", "source": "3679", "target": "5492" }, { "key": "geid_144_4105", "source": "8867", "target": "4954" }, { "key": "geid_144_4106", "source": "5742", "target": "4793" }, { "key": "geid_144_4107", "source": "4106", "target": "7337" }, { "key": "geid_144_4108", "source": "901", "target": "8356" }, { "key": "geid_144_4109", "source": "9575", "target": "1936" }, { "key": "geid_144_4110", "source": "7434", "target": "9442" }, { "key": "geid_144_4111", "source": "1765", "target": "9567" }, { "key": "geid_144_4112", "source": "8065", "target": "568" }, { "key": "geid_144_4113", "source": "4509", "target": "7344" }, { "key": "geid_144_4114", "source": "5799", "target": "3984" }, { "key": "geid_144_4115", "source": "835", "target": "2111" }, { "key": "geid_144_4116", "source": "5691", "target": "3844" }, { "key": "geid_144_4117", "source": "1374", "target": "6270" }, { "key": "geid_144_4118", "source": "2347", "target": "9143" }, { "key": "geid_144_4119", "source": "5903", "target": "6130" }, { "key": "geid_144_4120", "source": "9736", "target": "6806" }, { "key": "geid_144_4121", "source": "2429", "target": "5670" }, { "key": "geid_144_4122", "source": "7875", "target": "3858" }, { "key": "geid_144_4123", "source": "8920", "target": "1921" }, { "key": "geid_144_4124", "source": "1923", "target": "9648" }, { "key": "geid_144_4125", "source": "1653", "target": "3344" }, { "key": "geid_144_4126", "source": "6419", "target": "5507" }, { "key": "geid_144_4127", "source": "9138", "target": "8673" }, { "key": "geid_144_4128", "source": "6522", "target": "7398" }, { "key": "geid_144_4129", "source": "8047", "target": "6722" }, { "key": "geid_144_4130", "source": "5985", "target": "1856" }, { "key": "geid_144_4131", "source": "9600", "target": "3060" }, { "key": "geid_144_4132", "source": "9148", "target": "9525" }, { "key": "geid_144_4133", "source": "704", "target": "5709" }, { "key": "geid_144_4134", "source": "3469", "target": "8610" }, { "key": "geid_144_4135", "source": "8365", "target": "6991" }, { "key": "geid_144_4136", "source": "6476", "target": "967" }, { "key": "geid_144_4137", "source": "7631", "target": "5398" }, { "key": "geid_144_4138", "source": "8912", "target": "3767" }, { "key": "geid_144_4139", "source": "9622", "target": "5070" }, { "key": "geid_144_4140", "source": "5772", "target": "740" }, { "key": "geid_144_4141", "source": "8520", "target": "1168" }, { "key": "geid_144_4142", "source": "1229", "target": "9196" }, { "key": "geid_144_4143", "source": "2757", "target": "7214" }, { "key": "geid_144_4144", "source": "1208", "target": "6832" }, { "key": "geid_144_4145", "source": "5957", "target": "5094" }, { "key": "geid_144_4146", "source": "8341", "target": "4491" }, { "key": "geid_144_4147", "source": "8201", "target": "4734" }, { "key": "geid_144_4148", "source": "7129", "target": "8833" }, { "key": "geid_144_4149", "source": "6712", "target": "7252" }, { "key": "geid_144_4150", "source": "555", "target": "4243" }, { "key": "geid_144_4151", "source": "3237", "target": "1434" }, { "key": "geid_144_4152", "source": "6976", "target": "9803" }, { "key": "geid_144_4153", "source": "1920", "target": "6791" }, { "key": "geid_144_4154", "source": "1914", "target": "4709" }, { "key": "geid_144_4155", "source": "3140", "target": "5699" }, { "key": "geid_144_4156", "source": "1733", "target": "4027" }, { "key": "geid_144_4157", "source": "7686", "target": "8673" }, { "key": "geid_144_4158", "source": "9608", "target": "2691" }, { "key": "geid_144_4159", "source": "57", "target": "1159" }, { "key": "geid_144_4160", "source": "938", "target": "5814" }, { "key": "geid_144_4161", "source": "9893", "target": "5597" }, { "key": "geid_144_4162", "source": "6576", "target": "2195" }, { "key": "geid_144_4163", "source": "3060", "target": "4368" }, { "key": "geid_144_4164", "source": "5546", "target": "4360" }, { "key": "geid_144_4165", "source": "1787", "target": "130" }, { "key": "geid_144_4166", "source": "2972", "target": "3633" }, { "key": "geid_144_4167", "source": "8622", "target": "3299" }, { "key": "geid_144_4168", "source": "3753", "target": "5334" }, { "key": "geid_144_4169", "source": "1982", "target": "5767" }, { "key": "geid_144_4170", "source": "2441", "target": "2625" }, { "key": "geid_144_4171", "source": "5044", "target": "3902" }, { "key": "geid_144_4172", "source": "6957", "target": "6508" }, { "key": "geid_144_4173", "source": "935", "target": "5005" }, { "key": "geid_144_4174", "source": "7873", "target": "5771" }, { "key": "geid_144_4175", "source": "21", "target": "1528" }, { "key": "geid_144_4176", "source": "2110", "target": "4780" }, { "key": "geid_144_4177", "source": "6607", "target": "8413" }, { "key": "geid_144_4178", "source": "7744", "target": "713" }, { "key": "geid_144_4179", "source": "3636", "target": "5356" }, { "key": "geid_144_4180", "source": "6428", "target": "7436" }, { "key": "geid_144_4181", "source": "8634", "target": "5591" }, { "key": "geid_144_4182", "source": "7427", "target": "3902" }, { "key": "geid_144_4183", "source": "3445", "target": "488" }, { "key": "geid_144_4184", "source": "7982", "target": "3046" }, { "key": "geid_144_4185", "source": "6248", "target": "6705" }, { "key": "geid_144_4186", "source": "6923", "target": "4843" }, { "key": "geid_144_4187", "source": "576", "target": "1781" }, { "key": "geid_144_4188", "source": "8670", "target": "8611" }, { "key": "geid_144_4189", "source": "8567", "target": "7496" }, { "key": "geid_144_4190", "source": "4019", "target": "2494" }, { "key": "geid_144_4191", "source": "586", "target": "8398" }, { "key": "geid_144_4192", "source": "7301", "target": "3345" }, { "key": "geid_144_4193", "source": "2559", "target": "9251" }, { "key": "geid_144_4194", "source": "1973", "target": "9082" }, { "key": "geid_144_4195", "source": "402", "target": "9565" }, { "key": "geid_144_4196", "source": "8394", "target": "2452" }, { "key": "geid_144_4197", "source": "4132", "target": "4468" }, { "key": "geid_144_4198", "source": "686", "target": "541" }, { "key": "geid_144_4199", "source": "9178", "target": "6580" }, { "key": "geid_144_4200", "source": "6744", "target": "2375" }, { "key": "geid_144_4201", "source": "9248", "target": "543" }, { "key": "geid_144_4202", "source": "9026", "target": "4828" }, { "key": "geid_144_4203", "source": "7426", "target": "6101" }, { "key": "geid_144_4204", "source": "2207", "target": "2902" }, { "key": "geid_144_4205", "source": "7281", "target": "3214" }, { "key": "geid_144_4206", "source": "1196", "target": "5977" }, { "key": "geid_144_4207", "source": "54", "target": "9129" }, { "key": "geid_144_4208", "source": "7683", "target": "2423" }, { "key": "geid_144_4209", "source": "8163", "target": "7060" }, { "key": "geid_144_4210", "source": "1905", "target": "3883" }, { "key": "geid_144_4211", "source": "7752", "target": "5892" }, { "key": "geid_144_4212", "source": "9852", "target": "707" }, { "key": "geid_144_4213", "source": "7250", "target": "804" }, { "key": "geid_144_4214", "source": "7893", "target": "8511" }, { "key": "geid_144_4215", "source": "5622", "target": "9629" }, { "key": "geid_144_4216", "source": "6430", "target": "1697" }, { "key": "geid_144_4217", "source": "1068", "target": "8178" }, { "key": "geid_144_4218", "source": "6068", "target": "4220" }, { "key": "geid_144_4219", "source": "3075", "target": "442" }, { "key": "geid_144_4220", "source": "7170", "target": "3179" }, { "key": "geid_144_4221", "source": "826", "target": "306" }, { "key": "geid_144_4222", "source": "9560", "target": "8386" }, { "key": "geid_144_4223", "source": "2172", "target": "2128" }, { "key": "geid_144_4224", "source": "3527", "target": "9990" }, { "key": "geid_144_4225", "source": "8327", "target": "1760" }, { "key": "geid_144_4226", "source": "5242", "target": "4887" }, { "key": "geid_144_4227", "source": "7462", "target": "651" }, { "key": "geid_144_4228", "source": "4094", "target": "911" }, { "key": "geid_144_4229", "source": "602", "target": "7082" }, { "key": "geid_144_4230", "source": "8474", "target": "4325" }, { "key": "geid_144_4231", "source": "7830", "target": "1076" }, { "key": "geid_144_4232", "source": "4425", "target": "1941" }, { "key": "geid_144_4233", "source": "6372", "target": "3835" }, { "key": "geid_144_4234", "source": "7491", "target": "1534" }, { "key": "geid_144_4235", "source": "9048", "target": "3573" }, { "key": "geid_144_4236", "source": "7447", "target": "3606" }, { "key": "geid_144_4237", "source": "7431", "target": "1994" }, { "key": "geid_144_4238", "source": "1209", "target": "1112" }, { "key": "geid_144_4239", "source": "6536", "target": "2004" }, { "key": "geid_144_4240", "source": "4033", "target": "6198" }, { "key": "geid_144_4241", "source": "2767", "target": "5076" }, { "key": "geid_144_4242", "source": "2096", "target": "1202" }, { "key": "geid_144_4243", "source": "8891", "target": "2214" }, { "key": "geid_144_4244", "source": "305", "target": "5418" }, { "key": "geid_144_4245", "source": "7128", "target": "5067" }, { "key": "geid_144_4246", "source": "2516", "target": "6412" }, { "key": "geid_144_4247", "source": "5122", "target": "3419" }, { "key": "geid_144_4248", "source": "8133", "target": "4191" }, { "key": "geid_144_4249", "source": "1239", "target": "1766" }, { "key": "geid_144_4250", "source": "4433", "target": "9967" }, { "key": "geid_144_4251", "source": "2648", "target": "4897" }, { "key": "geid_144_4252", "source": "9168", "target": "2651" }, { "key": "geid_144_4253", "source": "4888", "target": "9720" }, { "key": "geid_144_4254", "source": "7977", "target": "9447" }, { "key": "geid_144_4255", "source": "3920", "target": "2041" }, { "key": "geid_144_4256", "source": "6833", "target": "7106" }, { "key": "geid_144_4257", "source": "7967", "target": "8478" }, { "key": "geid_144_4258", "source": "8144", "target": "7693" }, { "key": "geid_144_4259", "source": "6767", "target": "9859" }, { "key": "geid_144_4260", "source": "3928", "target": "491" }, { "key": "geid_144_4261", "source": "7607", "target": "491" }, { "key": "geid_144_4262", "source": "4741", "target": "578" }, { "key": "geid_144_4263", "source": "3123", "target": "1831" }, { "key": "geid_144_4264", "source": "4438", "target": "294" }, { "key": "geid_144_4265", "source": "8644", "target": "978" }, { "key": "geid_144_4266", "source": "1972", "target": "4519" }, { "key": "geid_144_4267", "source": "9080", "target": "3034" }, { "key": "geid_144_4268", "source": "325", "target": "1254" }, { "key": "geid_144_4269", "source": "9397", "target": "3118" }, { "key": "geid_144_4270", "source": "9964", "target": "5376" }, { "key": "geid_144_4271", "source": "4217", "target": "7807" }, { "key": "geid_144_4272", "source": "8135", "target": "9563" }, { "key": "geid_144_4273", "source": "7041", "target": "6845" }, { "key": "geid_144_4274", "source": "3281", "target": "3896" }, { "key": "geid_144_4275", "source": "8040", "target": "8927" }, { "key": "geid_144_4276", "source": "8130", "target": "4356" }, { "key": "geid_144_4277", "source": "8557", "target": "8285" }, { "key": "geid_144_4278", "source": "1265", "target": "506" }, { "key": "geid_144_4279", "source": "7283", "target": "566" }, { "key": "geid_144_4280", "source": "960", "target": "450" }, { "key": "geid_144_4281", "source": "116", "target": "4119" }, { "key": "geid_144_4282", "source": "5964", "target": "8822" }, { "key": "geid_144_4283", "source": "4110", "target": "2122" }, { "key": "geid_144_4284", "source": "1716", "target": "7727" }, { "key": "geid_144_4285", "source": "3557", "target": "7211" }, { "key": "geid_144_4286", "source": "960", "target": "5867" }, { "key": "geid_144_4287", "source": "2624", "target": "1404" }, { "key": "geid_144_4288", "source": "2696", "target": "9002" }, { "key": "geid_144_4289", "source": "2157", "target": "5435" }, { "key": "geid_144_4290", "source": "686", "target": "7190" }, { "key": "geid_144_4291", "source": "9879", "target": "245" }, { "key": "geid_144_4292", "source": "7653", "target": "4340" }, { "key": "geid_144_4293", "source": "8092", "target": "3959" }, { "key": "geid_144_4294", "source": "3994", "target": "9206" }, { "key": "geid_144_4295", "source": "6535", "target": "2239" }, { "key": "geid_144_4296", "source": "7162", "target": "5803" }, { "key": "geid_144_4297", "source": "4084", "target": "1622" }, { "key": "geid_144_4298", "source": "6256", "target": "3340" }, { "key": "geid_144_4299", "source": "9642", "target": "6345" }, { "key": "geid_144_4300", "source": "2146", "target": "4769" }, { "key": "geid_144_4301", "source": "5895", "target": "1008" }, { "key": "geid_144_4302", "source": "8120", "target": "6078" }, { "key": "geid_144_4303", "source": "8918", "target": "7074" }, { "key": "geid_144_4304", "source": "9753", "target": "7866" }, { "key": "geid_144_4305", "source": "6524", "target": "7915" }, { "key": "geid_144_4306", "source": "7003", "target": "7197" }, { "key": "geid_144_4307", "source": "5205", "target": "4106" }, { "key": "geid_144_4308", "source": "3841", "target": "9214" }, { "key": "geid_144_4309", "source": "6345", "target": "4928" }, { "key": "geid_144_4310", "source": "707", "target": "715" }, { "key": "geid_144_4311", "source": "1906", "target": "2440" }, { "key": "geid_144_4312", "source": "6522", "target": "8752" }, { "key": "geid_144_4313", "source": "4807", "target": "9249" }, { "key": "geid_144_4314", "source": "6437", "target": "2345" }, { "key": "geid_144_4315", "source": "9722", "target": "2853" }, { "key": "geid_144_4316", "source": "6956", "target": "6804" }, { "key": "geid_144_4317", "source": "9287", "target": "3036" }, { "key": "geid_144_4318", "source": "7555", "target": "7126" }, { "key": "geid_144_4319", "source": "8818", "target": "397" }, { "key": "geid_144_4320", "source": "3891", "target": "744" }, { "key": "geid_144_4321", "source": "2390", "target": "4792" }, { "key": "geid_144_4322", "source": "7348", "target": "9079" }, { "key": "geid_144_4323", "source": "7140", "target": "8940" }, { "key": "geid_144_4324", "source": "7136", "target": "723" }, { "key": "geid_144_4325", "source": "2787", "target": "472" }, { "key": "geid_144_4326", "source": "8725", "target": "5336" }, { "key": "geid_144_4327", "source": "1470", "target": "7490" }, { "key": "geid_144_4328", "source": "4298", "target": "7979" }, { "key": "geid_144_4329", "source": "7726", "target": "9836" }, { "key": "geid_144_4330", "source": "9368", "target": "612" }, { "key": "geid_144_4331", "source": "9274", "target": "9191" }, { "key": "geid_144_4332", "source": "1782", "target": "8585" }, { "key": "geid_144_4333", "source": "611", "target": "2115" }, { "key": "geid_144_4334", "source": "2761", "target": "9093" }, { "key": "geid_144_4335", "source": "6893", "target": "6885" }, { "key": "geid_144_4336", "source": "57", "target": "8715" }, { "key": "geid_144_4337", "source": "3407", "target": "6253" }, { "key": "geid_144_4338", "source": "3124", "target": "263" }, { "key": "geid_144_4339", "source": "7339", "target": "3124" }, { "key": "geid_144_4340", "source": "5114", "target": "8342" }, { "key": "geid_144_4341", "source": "380", "target": "9416" }, { "key": "geid_144_4342", "source": "9371", "target": "8107" }, { "key": "geid_144_4343", "source": "8160", "target": "5766" }, { "key": "geid_144_4344", "source": "6625", "target": "1413" }, { "key": "geid_144_4345", "source": "2393", "target": "4295" }, { "key": "geid_144_4346", "source": "7643", "target": "9904" }, { "key": "geid_144_4347", "source": "2795", "target": "8490" }, { "key": "geid_144_4348", "source": "3827", "target": "6329" }, { "key": "geid_144_4349", "source": "9310", "target": "367" }, { "key": "geid_144_4350", "source": "6631", "target": "8040" }, { "key": "geid_144_4351", "source": "5615", "target": "6946" }, { "key": "geid_144_4352", "source": "7548", "target": "7645" }, { "key": "geid_144_4353", "source": "5585", "target": "5799" }, { "key": "geid_144_4354", "source": "9103", "target": "4176" }, { "key": "geid_144_4355", "source": "2270", "target": "9201" }, { "key": "geid_144_4356", "source": "6627", "target": "8257" }, { "key": "geid_144_4357", "source": "675", "target": "4204" }, { "key": "geid_144_4358", "source": "1645", "target": "7194" }, { "key": "geid_144_4359", "source": "2701", "target": "8119" }, { "key": "geid_144_4360", "source": "1585", "target": "2890" }, { "key": "geid_144_4361", "source": "4950", "target": "6206" }, { "key": "geid_144_4362", "source": "9641", "target": "5888" }, { "key": "geid_144_4363", "source": "8890", "target": "1808" }, { "key": "geid_144_4364", "source": "8792", "target": "362" }, { "key": "geid_144_4365", "source": "9372", "target": "4908" }, { "key": "geid_144_4366", "source": "2109", "target": "6349" }, { "key": "geid_144_4367", "source": "5215", "target": "8021" }, { "key": "geid_144_4368", "source": "9446", "target": "6790" }, { "key": "geid_144_4369", "source": "9872", "target": "4441" }, { "key": "geid_144_4370", "source": "1445", "target": "7232" }, { "key": "geid_144_4371", "source": "8458", "target": "6922" }, { "key": "geid_144_4372", "source": "5423", "target": "4334" }, { "key": "geid_144_4373", "source": "5440", "target": "7715" }, { "key": "geid_144_4374", "source": "8435", "target": "359" }, { "key": "geid_144_4375", "source": "5211", "target": "7516" }, { "key": "geid_144_4376", "source": "1226", "target": "4457" }, { "key": "geid_144_4377", "source": "5846", "target": "754" }, { "key": "geid_144_4378", "source": "3879", "target": "1464" }, { "key": "geid_144_4379", "source": "6836", "target": "8331" }, { "key": "geid_144_4380", "source": "4892", "target": "6802" }, { "key": "geid_144_4381", "source": "8410", "target": "3995" }, { "key": "geid_144_4382", "source": "7241", "target": "6498" }, { "key": "geid_144_4383", "source": "4147", "target": "243" }, { "key": "geid_144_4384", "source": "2493", "target": "9307" }, { "key": "geid_144_4385", "source": "1246", "target": "8216" }, { "key": "geid_144_4386", "source": "1864", "target": "8627" }, { "key": "geid_144_4387", "source": "4170", "target": "1488" }, { "key": "geid_144_4388", "source": "3393", "target": "3694" }, { "key": "geid_144_4389", "source": "1570", "target": "9549" }, { "key": "geid_144_4390", "source": "7418", "target": "1442" }, { "key": "geid_144_4391", "source": "3699", "target": "5639" }, { "key": "geid_144_4392", "source": "8866", "target": "5278" }, { "key": "geid_144_4393", "source": "9569", "target": "8855" }, { "key": "geid_144_4394", "source": "2727", "target": "7537" }, { "key": "geid_144_4395", "source": "3814", "target": "9239" }, { "key": "geid_144_4396", "source": "2413", "target": "1714" }, { "key": "geid_144_4397", "source": "9709", "target": "1618" }, { "key": "geid_144_4398", "source": "5177", "target": "132" }, { "key": "geid_144_4399", "source": "4814", "target": "7616" }, { "key": "geid_144_4400", "source": "3191", "target": "1144" }, { "key": "geid_144_4401", "source": "5547", "target": "3509" }, { "key": "geid_144_4402", "source": "1343", "target": "8422" }, { "key": "geid_144_4403", "source": "5345", "target": "1123" }, { "key": "geid_144_4404", "source": "4597", "target": "3529" }, { "key": "geid_144_4405", "source": "8587", "target": "6133" }, { "key": "geid_144_4406", "source": "1609", "target": "3677" }, { "key": "geid_144_4407", "source": "1927", "target": "5792" }, { "key": "geid_144_4408", "source": "9324", "target": "121" }, { "key": "geid_144_4409", "source": "9972", "target": "9553" }, { "key": "geid_144_4410", "source": "7062", "target": "2161" }, { "key": "geid_144_4411", "source": "4028", "target": "769" }, { "key": "geid_144_4412", "source": "9627", "target": "9349" }, { "key": "geid_144_4413", "source": "8713", "target": "2635" }, { "key": "geid_144_4414", "source": "7531", "target": "2680" }, { "key": "geid_144_4415", "source": "3334", "target": "4361" }, { "key": "geid_144_4416", "source": "280", "target": "2328" }, { "key": "geid_144_4417", "source": "5315", "target": "6465" }, { "key": "geid_144_4418", "source": "7252", "target": "857" }, { "key": "geid_144_4419", "source": "7174", "target": "4463" }, { "key": "geid_144_4420", "source": "7324", "target": "8012" }, { "key": "geid_144_4421", "source": "4149", "target": "7044" }, { "key": "geid_144_4422", "source": "7072", "target": "3091" }, { "key": "geid_144_4423", "source": "719", "target": "7577" }, { "key": "geid_144_4424", "source": "2030", "target": "8923" }, { "key": "geid_144_4425", "source": "3415", "target": "8808" }, { "key": "geid_144_4426", "source": "4486", "target": "4599" }, { "key": "geid_144_4427", "source": "2816", "target": "2620" }, { "key": "geid_144_4428", "source": "6392", "target": "7397" }, { "key": "geid_144_4429", "source": "4700", "target": "6986" }, { "key": "geid_144_4430", "source": "4891", "target": "6881" }, { "key": "geid_144_4431", "source": "5696", "target": "9032" }, { "key": "geid_144_4432", "source": "2181", "target": "4797" }, { "key": "geid_144_4433", "source": "2289", "target": "2959" }, { "key": "geid_144_4434", "source": "406", "target": "6768" }, { "key": "geid_144_4435", "source": "8433", "target": "6152" }, { "key": "geid_144_4436", "source": "936", "target": "8856" }, { "key": "geid_144_4437", "source": "2806", "target": "6163" }, { "key": "geid_144_4438", "source": "7327", "target": "2919" }, { "key": "geid_144_4439", "source": "2079", "target": "3819" }, { "key": "geid_144_4440", "source": "4700", "target": "3484" }, { "key": "geid_144_4441", "source": "4029", "target": "6775" }, { "key": "geid_144_4442", "source": "7206", "target": "4905" }, { "key": "geid_144_4443", "source": "8957", "target": "8825" }, { "key": "geid_144_4444", "source": "6598", "target": "7173" }, { "key": "geid_144_4445", "source": "703", "target": "5489" }, { "key": "geid_144_4446", "source": "7128", "target": "6229" }, { "key": "geid_144_4447", "source": "8828", "target": "5274" }, { "key": "geid_144_4448", "source": "3716", "target": "7965" }, { "key": "geid_144_4449", "source": "6194", "target": "6408" }, { "key": "geid_144_4450", "source": "192", "target": "4001" }, { "key": "geid_144_4451", "source": "4430", "target": "4835" }, { "key": "geid_144_4452", "source": "8225", "target": "1685" }, { "key": "geid_144_4453", "source": "1933", "target": "953" }, { "key": "geid_144_4454", "source": "258", "target": "6303" }, { "key": "geid_144_4455", "source": "5300", "target": "9504" }, { "key": "geid_144_4456", "source": "3282", "target": "4154" }, { "key": "geid_144_4457", "source": "9253", "target": "4992" }, { "key": "geid_144_4458", "source": "4268", "target": "249" }, { "key": "geid_144_4459", "source": "5291", "target": "9439" }, { "key": "geid_144_4460", "source": "9224", "target": "4936" }, { "key": "geid_144_4461", "source": "9088", "target": "3687" }, { "key": "geid_144_4462", "source": "7016", "target": "1474" }, { "key": "geid_144_4463", "source": "6098", "target": "4861" }, { "key": "geid_144_4464", "source": "657", "target": "6648" }, { "key": "geid_144_4465", "source": "1417", "target": "5762" }, { "key": "geid_144_4466", "source": "5287", "target": "99" }, { "key": "geid_144_4467", "source": "280", "target": "8258" }, { "key": "geid_144_4468", "source": "7481", "target": "2108" }, { "key": "geid_144_4469", "source": "7454", "target": "2448" }, { "key": "geid_144_4470", "source": "3968", "target": "3826" }, { "key": "geid_144_4471", "source": "1079", "target": "299" }, { "key": "geid_144_4472", "source": "338", "target": "9777" }, { "key": "geid_144_4473", "source": "5762", "target": "5075" }, { "key": "geid_144_4474", "source": "2407", "target": "2474" }, { "key": "geid_144_4475", "source": "9972", "target": "9920" }, { "key": "geid_144_4476", "source": "7400", "target": "2710" }, { "key": "geid_144_4477", "source": "459", "target": "3316" }, { "key": "geid_144_4478", "source": "1432", "target": "2990" }, { "key": "geid_144_4479", "source": "2592", "target": "9470" }, { "key": "geid_144_4480", "source": "7729", "target": "838" }, { "key": "geid_144_4481", "source": "8421", "target": "3703" }, { "key": "geid_144_4482", "source": "9760", "target": "5010" }, { "key": "geid_144_4483", "source": "1983", "target": "7296" }, { "key": "geid_144_4484", "source": "7670", "target": "9210" }, { "key": "geid_144_4485", "source": "3471", "target": "716" }, { "key": "geid_144_4486", "source": "800", "target": "9036" }, { "key": "geid_144_4487", "source": "4434", "target": "267" }, { "key": "geid_144_4488", "source": "2388", "target": "7493" }, { "key": "geid_144_4489", "source": "9932", "target": "7101" }, { "key": "geid_144_4490", "source": "7517", "target": "1004" }, { "key": "geid_144_4491", "source": "8638", "target": "6678" }, { "key": "geid_144_4492", "source": "1632", "target": "721" }, { "key": "geid_144_4493", "source": "661", "target": "7375" }, { "key": "geid_144_4494", "source": "545", "target": "7133" }, { "key": "geid_144_4495", "source": "4488", "target": "8633" }, { "key": "geid_144_4496", "source": "2970", "target": "9140" }, { "key": "geid_144_4497", "source": "8962", "target": "3539" }, { "key": "geid_144_4498", "source": "7615", "target": "308" }, { "key": "geid_144_4499", "source": "9175", "target": "2449" }, { "key": "geid_144_4500", "source": "2068", "target": "3904" }, { "key": "geid_144_4501", "source": "1008", "target": "7867" }, { "key": "geid_144_4502", "source": "6080", "target": "2140" }, { "key": "geid_144_4503", "source": "7400", "target": "6758" }, { "key": "geid_144_4504", "source": "3943", "target": "3119" }, { "key": "geid_144_4505", "source": "4587", "target": "3022" }, { "key": "geid_144_4506", "source": "7915", "target": "1870" }, { "key": "geid_144_4507", "source": "2663", "target": "5260" }, { "key": "geid_144_4508", "source": "7293", "target": "4381" }, { "key": "geid_144_4509", "source": "8346", "target": "293" }, { "key": "geid_144_4510", "source": "7028", "target": "3646" }, { "key": "geid_144_4511", "source": "5282", "target": "2519" }, { "key": "geid_144_4512", "source": "295", "target": "6493" }, { "key": "geid_144_4513", "source": "1021", "target": "1359" }, { "key": "geid_144_4514", "source": "590", "target": "3927" }, { "key": "geid_144_4515", "source": "4627", "target": "5138" }, { "key": "geid_144_4516", "source": "9592", "target": "978" }, { "key": "geid_144_4517", "source": "9434", "target": "6139" }, { "key": "geid_144_4518", "source": "5647", "target": "881" }, { "key": "geid_144_4519", "source": "753", "target": "3757" }, { "key": "geid_144_4520", "source": "277", "target": "5908" }, { "key": "geid_144_4521", "source": "6248", "target": "3820" }, { "key": "geid_144_4522", "source": "649", "target": "8284" }, { "key": "geid_144_4523", "source": "9380", "target": "1219" }, { "key": "geid_144_4524", "source": "2122", "target": "4240" }, { "key": "geid_144_4525", "source": "719", "target": "7526" }, { "key": "geid_144_4526", "source": "8295", "target": "1993" }, { "key": "geid_144_4527", "source": "9528", "target": "1576" }, { "key": "geid_144_4528", "source": "1334", "target": "161" }, { "key": "geid_144_4529", "source": "2396", "target": "6544" }, { "key": "geid_144_4530", "source": "9342", "target": "2474" }, { "key": "geid_144_4531", "source": "9115", "target": "6820" }, { "key": "geid_144_4532", "source": "7542", "target": "1596" }, { "key": "geid_144_4533", "source": "9055", "target": "7160" }, { "key": "geid_144_4534", "source": "4608", "target": "6409" }, { "key": "geid_144_4535", "source": "2598", "target": "1599" }, { "key": "geid_144_4536", "source": "3994", "target": "7646" }, { "key": "geid_144_4537", "source": "243", "target": "1363" }, { "key": "geid_144_4538", "source": "3289", "target": "6633" }, { "key": "geid_144_4539", "source": "3270", "target": "5067" }, { "key": "geid_144_4540", "source": "950", "target": "7390" }, { "key": "geid_144_4541", "source": "1562", "target": "4527" }, { "key": "geid_144_4542", "source": "6525", "target": "1067" }, { "key": "geid_144_4543", "source": "7186", "target": "3990" }, { "key": "geid_144_4544", "source": "7592", "target": "8628" }, { "key": "geid_144_4545", "source": "1456", "target": "7680" }, { "key": "geid_144_4546", "source": "9058", "target": "502" }, { "key": "geid_144_4547", "source": "1481", "target": "891" }, { "key": "geid_144_4548", "source": "8944", "target": "1279" }, { "key": "geid_144_4549", "source": "4282", "target": "6389" }, { "key": "geid_144_4550", "source": "3216", "target": "6158" }, { "key": "geid_144_4551", "source": "2185", "target": "4967" }, { "key": "geid_144_4552", "source": "4921", "target": "4516" }, { "key": "geid_144_4553", "source": "5927", "target": "5614" }, { "key": "geid_144_4554", "source": "4103", "target": "8721" }, { "key": "geid_144_4555", "source": "8955", "target": "8933" }, { "key": "geid_144_4556", "source": "1301", "target": "1169" }, { "key": "geid_144_4557", "source": "8859", "target": "5207" }, { "key": "geid_144_4558", "source": "2959", "target": "9661" }, { "key": "geid_144_4559", "source": "748", "target": "6014" }, { "key": "geid_144_4560", "source": "1392", "target": "6645" }, { "key": "geid_144_4561", "source": "6784", "target": "434" }, { "key": "geid_144_4562", "source": "9810", "target": "9684" }, { "key": "geid_144_4563", "source": "2788", "target": "109" }, { "key": "geid_144_4564", "source": "7297", "target": "3017" }, { "key": "geid_144_4565", "source": "3799", "target": "7188" }, { "key": "geid_144_4566", "source": "8215", "target": "8897" }, { "key": "geid_144_4567", "source": "6635", "target": "7718" }, { "key": "geid_144_4568", "source": "9369", "target": "3964" }, { "key": "geid_144_4569", "source": "4550", "target": "6595" }, { "key": "geid_144_4570", "source": "4484", "target": "280" }, { "key": "geid_144_4571", "source": "908", "target": "3462" }, { "key": "geid_144_4572", "source": "2522", "target": "3678" }, { "key": "geid_144_4573", "source": "7886", "target": "2117" }, { "key": "geid_144_4574", "source": "2996", "target": "6517" }, { "key": "geid_144_4575", "source": "3305", "target": "1036" }, { "key": "geid_144_4576", "source": "3749", "target": "7791" }, { "key": "geid_144_4577", "source": "3510", "target": "9813" }, { "key": "geid_144_4578", "source": "3147", "target": "721" }, { "key": "geid_144_4579", "source": "7613", "target": "6048" }, { "key": "geid_144_4580", "source": "9435", "target": "3979" }, { "key": "geid_144_4581", "source": "5942", "target": "7999" }, { "key": "geid_144_4582", "source": "1145", "target": "6125" }, { "key": "geid_144_4583", "source": "7565", "target": "3007" }, { "key": "geid_144_4584", "source": "6417", "target": "3151" }, { "key": "geid_144_4585", "source": "10", "target": "4452" }, { "key": "geid_144_4586", "source": "2081", "target": "2413" }, { "key": "geid_144_4587", "source": "4421", "target": "214" }, { "key": "geid_144_4588", "source": "8442", "target": "2899" }, { "key": "geid_144_4589", "source": "9013", "target": "4981" }, { "key": "geid_144_4590", "source": "8711", "target": "128" }, { "key": "geid_144_4591", "source": "7190", "target": "3097" }, { "key": "geid_144_4592", "source": "6668", "target": "1633" }, { "key": "geid_144_4593", "source": "8169", "target": "7649" }, { "key": "geid_144_4594", "source": "7609", "target": "8206" }, { "key": "geid_144_4595", "source": "7978", "target": "3257" }, { "key": "geid_144_4596", "source": "8847", "target": "2871" }, { "key": "geid_144_4597", "source": "8569", "target": "6970" }, { "key": "geid_144_4598", "source": "1463", "target": "4739" }, { "key": "geid_144_4599", "source": "8586", "target": "9722" }, { "key": "geid_144_4600", "source": "9640", "target": "16" }, { "key": "geid_144_4601", "source": "6576", "target": "7052" }, { "key": "geid_144_4602", "source": "2245", "target": "6600" }, { "key": "geid_144_4603", "source": "9454", "target": "4501" }, { "key": "geid_144_4604", "source": "9439", "target": "2005" }, { "key": "geid_144_4605", "source": "7712", "target": "9628" }, { "key": "geid_144_4606", "source": "2233", "target": "934" }, { "key": "geid_144_4607", "source": "4995", "target": "9801" }, { "key": "geid_144_4608", "source": "811", "target": "7312" }, { "key": "geid_144_4609", "source": "6938", "target": "7855" }, { "key": "geid_144_4610", "source": "5013", "target": "329" }, { "key": "geid_144_4611", "source": "3128", "target": "5213" }, { "key": "geid_144_4612", "source": "4230", "target": "2717" }, { "key": "geid_144_4613", "source": "622", "target": "8358" }, { "key": "geid_144_4614", "source": "8376", "target": "8422" }, { "key": "geid_144_4615", "source": "380", "target": "4036" }, { "key": "geid_144_4616", "source": "182", "target": "5250" }, { "key": "geid_144_4617", "source": "6117", "target": "2635" }, { "key": "geid_144_4618", "source": "2371", "target": "7886" }, { "key": "geid_144_4619", "source": "7446", "target": "1865" }, { "key": "geid_144_4620", "source": "5412", "target": "4100" }, { "key": "geid_144_4621", "source": "8274", "target": "4241" }, { "key": "geid_144_4622", "source": "303", "target": "8623" }, { "key": "geid_144_4623", "source": "2895", "target": "2824" }, { "key": "geid_144_4624", "source": "2146", "target": "4248" }, { "key": "geid_144_4625", "source": "6625", "target": "7713" }, { "key": "geid_144_4626", "source": "3836", "target": "7021" }, { "key": "geid_144_4627", "source": "4504", "target": "4175" }, { "key": "geid_144_4628", "source": "9657", "target": "3796" }, { "key": "geid_144_4629", "source": "3306", "target": "9207" }, { "key": "geid_144_4630", "source": "6405", "target": "8440" }, { "key": "geid_144_4631", "source": "7113", "target": "2348" }, { "key": "geid_144_4632", "source": "2700", "target": "774" }, { "key": "geid_144_4633", "source": "8356", "target": "4984" }, { "key": "geid_144_4634", "source": "9101", "target": "4198" }, { "key": "geid_144_4635", "source": "5709", "target": "2140" }, { "key": "geid_144_4636", "source": "1269", "target": "5108" }, { "key": "geid_144_4637", "source": "7480", "target": "8350" }, { "key": "geid_144_4638", "source": "2011", "target": "7407" }, { "key": "geid_144_4639", "source": "3726", "target": "2050" }, { "key": "geid_144_4640", "source": "243", "target": "6638" }, { "key": "geid_144_4641", "source": "9459", "target": "8328" }, { "key": "geid_144_4642", "source": "7911", "target": "7957" }, { "key": "geid_144_4643", "source": "3876", "target": "2305" }, { "key": "geid_144_4644", "source": "135", "target": "206" }, { "key": "geid_144_4645", "source": "6806", "target": "1589" }, { "key": "geid_144_4646", "source": "6318", "target": "4544" }, { "key": "geid_144_4647", "source": "9726", "target": "3229" }, { "key": "geid_144_4648", "source": "8823", "target": "5903" }, { "key": "geid_144_4649", "source": "4948", "target": "1656" }, { "key": "geid_144_4650", "source": "9269", "target": "7714" }, { "key": "geid_144_4651", "source": "2449", "target": "2577" }, { "key": "geid_144_4652", "source": "2632", "target": "1969" }, { "key": "geid_144_4653", "source": "2403", "target": "811" }, { "key": "geid_144_4654", "source": "9567", "target": "3212" }, { "key": "geid_144_4655", "source": "5671", "target": "9768" }, { "key": "geid_144_4656", "source": "4537", "target": "4827" }, { "key": "geid_144_4657", "source": "3908", "target": "1683" }, { "key": "geid_144_4658", "source": "9241", "target": "2049" }, { "key": "geid_144_4659", "source": "147", "target": "4587" }, { "key": "geid_144_4660", "source": "8732", "target": "3559" }, { "key": "geid_144_4661", "source": "1303", "target": "7656" }, { "key": "geid_144_4662", "source": "8829", "target": "5912" }, { "key": "geid_144_4663", "source": "7267", "target": "8117" }, { "key": "geid_144_4664", "source": "6423", "target": "9168" }, { "key": "geid_144_4665", "source": "8021", "target": "8500" }, { "key": "geid_144_4666", "source": "5317", "target": "8938" }, { "key": "geid_144_4667", "source": "2661", "target": "2502" }, { "key": "geid_144_4668", "source": "729", "target": "2092" }, { "key": "geid_144_4669", "source": "6771", "target": "3401" }, { "key": "geid_144_4670", "source": "5395", "target": "8121" }, { "key": "geid_144_4671", "source": "2881", "target": "7191" }, { "key": "geid_144_4672", "source": "3219", "target": "3518" }, { "key": "geid_144_4673", "source": "8996", "target": "1500" }, { "key": "geid_144_4674", "source": "5537", "target": "2770" }, { "key": "geid_144_4675", "source": "6760", "target": "9633" }, { "key": "geid_144_4676", "source": "9241", "target": "3785" }, { "key": "geid_144_4677", "source": "1236", "target": "5028" }, { "key": "geid_144_4678", "source": "127", "target": "9992" }, { "key": "geid_144_4679", "source": "5856", "target": "7269" }, { "key": "geid_144_4680", "source": "1985", "target": "9520" }, { "key": "geid_144_4681", "source": "3843", "target": "7916" }, { "key": "geid_144_4682", "source": "4803", "target": "176" }, { "key": "geid_144_4683", "source": "4458", "target": "2816" }, { "key": "geid_144_4684", "source": "5772", "target": "249" }, { "key": "geid_144_4685", "source": "8958", "target": "1909" }, { "key": "geid_144_4686", "source": "3718", "target": "870" }, { "key": "geid_144_4687", "source": "7874", "target": "143" }, { "key": "geid_144_4688", "source": "4878", "target": "9711" }, { "key": "geid_144_4689", "source": "2956", "target": "405" }, { "key": "geid_144_4690", "source": "1848", "target": "9371" }, { "key": "geid_144_4691", "source": "2065", "target": "8035" }, { "key": "geid_144_4692", "source": "4329", "target": "7134" }, { "key": "geid_144_4693", "source": "194", "target": "8044" }, { "key": "geid_144_4694", "source": "5275", "target": "1910" }, { "key": "geid_144_4695", "source": "1837", "target": "7895" }, { "key": "geid_144_4696", "source": "5671", "target": "941" }, { "key": "geid_144_4697", "source": "3889", "target": "3283" }, { "key": "geid_144_4698", "source": "7553", "target": "1868" }, { "key": "geid_144_4699", "source": "3936", "target": "3632" }, { "key": "geid_144_4700", "source": "4697", "target": "9946" }, { "key": "geid_144_4701", "source": "5066", "target": "6616" }, { "key": "geid_144_4702", "source": "7388", "target": "9430" }, { "key": "geid_144_4703", "source": "2620", "target": "95" }, { "key": "geid_144_4704", "source": "4234", "target": "4116" }, { "key": "geid_144_4705", "source": "5166", "target": "8644" }, { "key": "geid_144_4706", "source": "4039", "target": "8039" }, { "key": "geid_144_4707", "source": "7675", "target": "6677" }, { "key": "geid_144_4708", "source": "5304", "target": "5071" }, { "key": "geid_144_4709", "source": "2327", "target": "8716" }, { "key": "geid_144_4710", "source": "805", "target": "596" }, { "key": "geid_144_4711", "source": "7831", "target": "371" }, { "key": "geid_144_4712", "source": "1072", "target": "302" }, { "key": "geid_144_4713", "source": "251", "target": "7541" }, { "key": "geid_144_4714", "source": "3897", "target": "7082" }, { "key": "geid_144_4715", "source": "5031", "target": "8406" }, { "key": "geid_144_4716", "source": "1868", "target": "7150" }, { "key": "geid_144_4717", "source": "99", "target": "6390" }, { "key": "geid_144_4718", "source": "268", "target": "1783" }, { "key": "geid_144_4719", "source": "1376", "target": "9412" }, { "key": "geid_144_4720", "source": "2250", "target": "4423" }, { "key": "geid_144_4721", "source": "3234", "target": "975" }, { "key": "geid_144_4722", "source": "5440", "target": "7494" }, { "key": "geid_144_4723", "source": "6048", "target": "7979" }, { "key": "geid_144_4724", "source": "5763", "target": "1510" }, { "key": "geid_144_4725", "source": "8750", "target": "9896" }, { "key": "geid_144_4726", "source": "3919", "target": "8848" }, { "key": "geid_144_4727", "source": "1983", "target": "6802" }, { "key": "geid_144_4728", "source": "3878", "target": "9477" }, { "key": "geid_144_4729", "source": "2434", "target": "7924" }, { "key": "geid_144_4730", "source": "5695", "target": "9732" }, { "key": "geid_144_4731", "source": "2285", "target": "9527" }, { "key": "geid_144_4732", "source": "8945", "target": "531" }, { "key": "geid_144_4733", "source": "324", "target": "997" }, { "key": "geid_144_4734", "source": "3289", "target": "3558" }, { "key": "geid_144_4735", "source": "693", "target": "4012" }, { "key": "geid_144_4736", "source": "6582", "target": "5191" }, { "key": "geid_144_4737", "source": "87", "target": "6278" }, { "key": "geid_144_4738", "source": "9808", "target": "6947" }, { "key": "geid_144_4739", "source": "8771", "target": "2915" }, { "key": "geid_144_4740", "source": "9527", "target": "620" }, { "key": "geid_144_4741", "source": "3890", "target": "4752" }, { "key": "geid_144_4742", "source": "402", "target": "2105" }, { "key": "geid_144_4743", "source": "6734", "target": "8333" }, { "key": "geid_144_4744", "source": "4887", "target": "4642" }, { "key": "geid_144_4745", "source": "8113", "target": "1999" }, { "key": "geid_144_4746", "source": "8886", "target": "1947" }, { "key": "geid_144_4747", "source": "970", "target": "829" }, { "key": "geid_144_4748", "source": "5917", "target": "7111" }, { "key": "geid_144_4749", "source": "4868", "target": "5048" }, { "key": "geid_144_4750", "source": "2896", "target": "5383" }, { "key": "geid_144_4751", "source": "2540", "target": "4888" }, { "key": "geid_144_4752", "source": "2910", "target": "3203" }, { "key": "geid_144_4753", "source": "4160", "target": "5764" }, { "key": "geid_144_4754", "source": "2308", "target": "8648" }, { "key": "geid_144_4755", "source": "2941", "target": "9420" }, { "key": "geid_144_4756", "source": "1157", "target": "2320" }, { "key": "geid_144_4757", "source": "7708", "target": "5494" }, { "key": "geid_144_4758", "source": "2519", "target": "234" }, { "key": "geid_144_4759", "source": "9351", "target": "3550" }, { "key": "geid_144_4760", "source": "2170", "target": "5435" }, { "key": "geid_144_4761", "source": "13", "target": "7830" }, { "key": "geid_144_4762", "source": "307", "target": "9909" }, { "key": "geid_144_4763", "source": "4948", "target": "223" }, { "key": "geid_144_4764", "source": "7831", "target": "1438" }, { "key": "geid_144_4765", "source": "41", "target": "2859" }, { "key": "geid_144_4766", "source": "4634", "target": "8920" }, { "key": "geid_144_4767", "source": "307", "target": "7797" }, { "key": "geid_144_4768", "source": "8978", "target": "6532" }, { "key": "geid_144_4769", "source": "372", "target": "6329" }, { "key": "geid_144_4770", "source": "5900", "target": "3137" }, { "key": "geid_144_4771", "source": "1681", "target": "6442" }, { "key": "geid_144_4772", "source": "5451", "target": "9703" }, { "key": "geid_144_4773", "source": "6514", "target": "8189" }, { "key": "geid_144_4774", "source": "5968", "target": "3214" }, { "key": "geid_144_4775", "source": "5341", "target": "4633" }, { "key": "geid_144_4776", "source": "6511", "target": "2907" }, { "key": "geid_144_4777", "source": "8850", "target": "2891" }, { "key": "geid_144_4778", "source": "6354", "target": "5463" }, { "key": "geid_144_4779", "source": "7175", "target": "1670" }, { "key": "geid_144_4780", "source": "1666", "target": "970" }, { "key": "geid_144_4781", "source": "1867", "target": "9935" }, { "key": "geid_144_4782", "source": "2112", "target": "7972" }, { "key": "geid_144_4783", "source": "2390", "target": "478" }, { "key": "geid_144_4784", "source": "3698", "target": "1341" }, { "key": "geid_144_4785", "source": "4165", "target": "5986" }, { "key": "geid_144_4786", "source": "3461", "target": "6730" }, { "key": "geid_144_4787", "source": "134", "target": "2102" }, { "key": "geid_144_4788", "source": "7826", "target": "9817" }, { "key": "geid_144_4789", "source": "352", "target": "2742" }, { "key": "geid_144_4790", "source": "9054", "target": "455" }, { "key": "geid_144_4791", "source": "3716", "target": "5822" }, { "key": "geid_144_4792", "source": "1053", "target": "8893" }, { "key": "geid_144_4793", "source": "6263", "target": "8663" }, { "key": "geid_144_4794", "source": "6409", "target": "8648" }, { "key": "geid_144_4795", "source": "8405", "target": "8351" }, { "key": "geid_144_4796", "source": "7398", "target": "4620" }, { "key": "geid_144_4797", "source": "2219", "target": "4951" }, { "key": "geid_144_4798", "source": "8496", "target": "4893" }, { "key": "geid_144_4799", "source": "5493", "target": "313" }, { "key": "geid_144_4800", "source": "5872", "target": "5501" }, { "key": "geid_144_4801", "source": "8239", "target": "8242" }, { "key": "geid_144_4802", "source": "1808", "target": "2994" }, { "key": "geid_144_4803", "source": "890", "target": "8922" }, { "key": "geid_144_4804", "source": "9814", "target": "6780" }, { "key": "geid_144_4805", "source": "7795", "target": "5692" }, { "key": "geid_144_4806", "source": "6816", "target": "6879" }, { "key": "geid_144_4807", "source": "6093", "target": "4030" }, { "key": "geid_144_4808", "source": "8891", "target": "2328" }, { "key": "geid_144_4809", "source": "6090", "target": "4201" }, { "key": "geid_144_4810", "source": "438", "target": "5858" }, { "key": "geid_144_4811", "source": "9241", "target": "2136" }, { "key": "geid_144_4812", "source": "7636", "target": "9903" }, { "key": "geid_144_4813", "source": "7024", "target": "66" }, { "key": "geid_144_4814", "source": "830", "target": "8005" }, { "key": "geid_144_4815", "source": "222", "target": "8574" }, { "key": "geid_144_4816", "source": "9088", "target": "1079" }, { "key": "geid_144_4817", "source": "4790", "target": "4156" }, { "key": "geid_144_4818", "source": "1959", "target": "1957" }, { "key": "geid_144_4819", "source": "7135", "target": "7525" }, { "key": "geid_144_4820", "source": "808", "target": "3793" }, { "key": "geid_144_4821", "source": "7370", "target": "2602" }, { "key": "geid_144_4822", "source": "5070", "target": "3358" }, { "key": "geid_144_4823", "source": "2683", "target": "4487" }, { "key": "geid_144_4824", "source": "8743", "target": "6832" }, { "key": "geid_144_4825", "source": "2495", "target": "4709" }, { "key": "geid_144_4826", "source": "6956", "target": "5788" }, { "key": "geid_144_4827", "source": "3396", "target": "7579" }, { "key": "geid_144_4828", "source": "2440", "target": "5003" }, { "key": "geid_144_4829", "source": "8591", "target": "7778" }, { "key": "geid_144_4830", "source": "4250", "target": "2629" }, { "key": "geid_144_4831", "source": "4547", "target": "1653" }, { "key": "geid_144_4832", "source": "1306", "target": "6284" }, { "key": "geid_144_4833", "source": "4503", "target": "1548" }, { "key": "geid_144_4834", "source": "5642", "target": "9472" }, { "key": "geid_144_4835", "source": "8224", "target": "1673" }, { "key": "geid_144_4836", "source": "2499", "target": "6053" }, { "key": "geid_144_4837", "source": "3914", "target": "6791" }, { "key": "geid_144_4838", "source": "8226", "target": "4252" }, { "key": "geid_144_4839", "source": "7214", "target": "1862" }, { "key": "geid_144_4840", "source": "5140", "target": "4794" }, { "key": "geid_144_4841", "source": "5672", "target": "7205" }, { "key": "geid_144_4842", "source": "3217", "target": "3838" }, { "key": "geid_144_4843", "source": "7667", "target": "2963" }, { "key": "geid_144_4844", "source": "5310", "target": "4254" }, { "key": "geid_144_4845", "source": "2984", "target": "8496" }, { "key": "geid_144_4846", "source": "5790", "target": "5109" }, { "key": "geid_144_4847", "source": "6665", "target": "2120" }, { "key": "geid_144_4848", "source": "8687", "target": "327" }, { "key": "geid_144_4849", "source": "7928", "target": "1546" }, { "key": "geid_144_4850", "source": "3517", "target": "9005" }, { "key": "geid_144_4851", "source": "1633", "target": "349" }, { "key": "geid_144_4852", "source": "3526", "target": "3792" }, { "key": "geid_144_4853", "source": "8656", "target": "9846" }, { "key": "geid_144_4854", "source": "2719", "target": "9390" }, { "key": "geid_144_4855", "source": "228", "target": "9645" }, { "key": "geid_144_4856", "source": "1620", "target": "8612" }, { "key": "geid_144_4857", "source": "1080", "target": "1165" }, { "key": "geid_144_4858", "source": "9219", "target": "3305" }, { "key": "geid_144_4859", "source": "7507", "target": "594" }, { "key": "geid_144_4860", "source": "1582", "target": "385" }, { "key": "geid_144_4861", "source": "281", "target": "9497" }, { "key": "geid_144_4862", "source": "6190", "target": "1196" }, { "key": "geid_144_4863", "source": "5588", "target": "9114" }, { "key": "geid_144_4864", "source": "9594", "target": "5003" }, { "key": "geid_144_4865", "source": "4043", "target": "9039" }, { "key": "geid_144_4866", "source": "5513", "target": "4258" }, { "key": "geid_144_4867", "source": "132", "target": "6360" }, { "key": "geid_144_4868", "source": "3512", "target": "6803" }, { "key": "geid_144_4869", "source": "7258", "target": "7220" }, { "key": "geid_144_4870", "source": "764", "target": "4956" }, { "key": "geid_144_4871", "source": "5438", "target": "5255" }, { "key": "geid_144_4872", "source": "6947", "target": "4923" }, { "key": "geid_144_4873", "source": "7851", "target": "4619" }, { "key": "geid_144_4874", "source": "6280", "target": "6317" }, { "key": "geid_144_4875", "source": "1190", "target": "1005" }, { "key": "geid_144_4876", "source": "6150", "target": "1656" }, { "key": "geid_144_4877", "source": "7708", "target": "7653" }, { "key": "geid_144_4878", "source": "3108", "target": "6943" }, { "key": "geid_144_4879", "source": "1758", "target": "3672" }, { "key": "geid_144_4880", "source": "590", "target": "2682" }, { "key": "geid_144_4881", "source": "915", "target": "1391" }, { "key": "geid_144_4882", "source": "6918", "target": "9508" }, { "key": "geid_144_4883", "source": "4708", "target": "8836" }, { "key": "geid_144_4884", "source": "6618", "target": "2045" }, { "key": "geid_144_4885", "source": "4715", "target": "5919" }, { "key": "geid_144_4886", "source": "2483", "target": "8059" }, { "key": "geid_144_4887", "source": "2107", "target": "9157" }, { "key": "geid_144_4888", "source": "774", "target": "7212" }, { "key": "geid_144_4889", "source": "9138", "target": "470" }, { "key": "geid_144_4890", "source": "1860", "target": "7906" }, { "key": "geid_144_4891", "source": "965", "target": "2686" }, { "key": "geid_144_4892", "source": "4774", "target": "3525" }, { "key": "geid_144_4893", "source": "8859", "target": "2415" }, { "key": "geid_144_4894", "source": "6972", "target": "6554" }, { "key": "geid_144_4895", "source": "5662", "target": "6153" }, { "key": "geid_144_4896", "source": "7528", "target": "9894" }, { "key": "geid_144_4897", "source": "4277", "target": "4008" }, { "key": "geid_144_4898", "source": "1716", "target": "3277" }, { "key": "geid_144_4899", "source": "610", "target": "3271" }, { "key": "geid_144_4900", "source": "6913", "target": "105" }, { "key": "geid_144_4901", "source": "4605", "target": "4147" }, { "key": "geid_144_4902", "source": "4750", "target": "8716" }, { "key": "geid_144_4903", "source": "7659", "target": "5529" }, { "key": "geid_144_4904", "source": "584", "target": "7432" }, { "key": "geid_144_4905", "source": "804", "target": "3630" }, { "key": "geid_144_4906", "source": "1892", "target": "6163" }, { "key": "geid_144_4907", "source": "5115", "target": "1751" }, { "key": "geid_144_4908", "source": "3460", "target": "379" }, { "key": "geid_144_4909", "source": "5794", "target": "5781" }, { "key": "geid_144_4910", "source": "7318", "target": "7576" }, { "key": "geid_144_4911", "source": "8405", "target": "1320" }, { "key": "geid_144_4912", "source": "4416", "target": "7519" }, { "key": "geid_144_4913", "source": "8741", "target": "7429" }, { "key": "geid_144_4914", "source": "9990", "target": "9969" }, { "key": "geid_144_4915", "source": "4334", "target": "4973" }, { "key": "geid_144_4916", "source": "6461", "target": "9588" }, { "key": "geid_144_4917", "source": "8687", "target": "414" }, { "key": "geid_144_4918", "source": "5936", "target": "5096" }, { "key": "geid_144_4919", "source": "9488", "target": "6693" }, { "key": "geid_144_4920", "source": "4094", "target": "1393" }, { "key": "geid_144_4921", "source": "898", "target": "1754" }, { "key": "geid_144_4922", "source": "442", "target": "1761" }, { "key": "geid_144_4923", "source": "745", "target": "6918" }, { "key": "geid_144_4924", "source": "6841", "target": "5829" }, { "key": "geid_144_4925", "source": "8274", "target": "2119" }, { "key": "geid_144_4926", "source": "6304", "target": "9728" }, { "key": "geid_144_4927", "source": "4546", "target": "320" }, { "key": "geid_144_4928", "source": "2378", "target": "7608" }, { "key": "geid_144_4929", "source": "2643", "target": "7791" }, { "key": "geid_144_4930", "source": "8792", "target": "6442" }, { "key": "geid_144_4931", "source": "5190", "target": "8125" }, { "key": "geid_144_4932", "source": "3507", "target": "6706" }, { "key": "geid_144_4933", "source": "8444", "target": "606" }, { "key": "geid_144_4934", "source": "2576", "target": "2788" }, { "key": "geid_144_4935", "source": "7908", "target": "5564" }, { "key": "geid_144_4936", "source": "1790", "target": "8723" }, { "key": "geid_144_4937", "source": "2681", "target": "4022" }, { "key": "geid_144_4938", "source": "6482", "target": "7271" }, { "key": "geid_144_4939", "source": "2578", "target": "4714" }, { "key": "geid_144_4940", "source": "956", "target": "7418" }, { "key": "geid_144_4941", "source": "9417", "target": "4142" }, { "key": "geid_144_4942", "source": "840", "target": "9021" }, { "key": "geid_144_4943", "source": "8312", "target": "2415" }, { "key": "geid_144_4944", "source": "658", "target": "1636" }, { "key": "geid_144_4945", "source": "1923", "target": "1129" }, { "key": "geid_144_4946", "source": "3943", "target": "6348" }, { "key": "geid_144_4947", "source": "1048", "target": "3004" }, { "key": "geid_144_4948", "source": "343", "target": "91" }, { "key": "geid_144_4949", "source": "2885", "target": "2061" }, { "key": "geid_144_4950", "source": "9228", "target": "5040" }, { "key": "geid_144_4951", "source": "875", "target": "8600" }, { "key": "geid_144_4952", "source": "6039", "target": "9880" }, { "key": "geid_144_4953", "source": "2176", "target": "2826" }, { "key": "geid_144_4954", "source": "9638", "target": "3398" }, { "key": "geid_144_4955", "source": "8713", "target": "8975" }, { "key": "geid_144_4956", "source": "694", "target": "2292" }, { "key": "geid_144_4957", "source": "4568", "target": "1692" }, { "key": "geid_144_4958", "source": "250", "target": "651" }, { "key": "geid_144_4959", "source": "3610", "target": "5508" }, { "key": "geid_144_4960", "source": "3780", "target": "8863" }, { "key": "geid_144_4961", "source": "2439", "target": "6536" }, { "key": "geid_144_4962", "source": "9706", "target": "1428" }, { "key": "geid_144_4963", "source": "1768", "target": "5406" }, { "key": "geid_144_4964", "source": "8835", "target": "5866" }, { "key": "geid_144_4965", "source": "7048", "target": "2190" }, { "key": "geid_144_4966", "source": "7396", "target": "4993" }, { "key": "geid_144_4967", "source": "7331", "target": "4571" }, { "key": "geid_144_4968", "source": "4108", "target": "478" }, { "key": "geid_144_4969", "source": "4970", "target": "4765" }, { "key": "geid_144_4970", "source": "8803", "target": "3372" }, { "key": "geid_144_4971", "source": "5133", "target": "7855" }, { "key": "geid_144_4972", "source": "2896", "target": "2942" }, { "key": "geid_144_4973", "source": "8040", "target": "6135" }, { "key": "geid_144_4974", "source": "2984", "target": "526" }, { "key": "geid_144_4975", "source": "2910", "target": "8727" }, { "key": "geid_144_4976", "source": "2061", "target": "1392" }, { "key": "geid_144_4977", "source": "1355", "target": "8880" }, { "key": "geid_144_4978", "source": "6893", "target": "9248" }, { "key": "geid_144_4979", "source": "7498", "target": "9047" }, { "key": "geid_144_4980", "source": "9033", "target": "6310" }, { "key": "geid_144_4981", "source": "934", "target": "4915" }, { "key": "geid_144_4982", "source": "9096", "target": "4667" }, { "key": "geid_144_4983", "source": "8370", "target": "1822" }, { "key": "geid_144_4984", "source": "6258", "target": "9000" }, { "key": "geid_144_4985", "source": "6766", "target": "9667" }, { "key": "geid_144_4986", "source": "3724", "target": "7809" }, { "key": "geid_144_4987", "source": "1136", "target": "8651" }, { "key": "geid_144_4988", "source": "3141", "target": "978" }, { "key": "geid_144_4989", "source": "8770", "target": "8063" }, { "key": "geid_144_4990", "source": "9953", "target": "229" }, { "key": "geid_144_4991", "source": "8298", "target": "1034" }, { "key": "geid_144_4992", "source": "3849", "target": "7315" }, { "key": "geid_144_4993", "source": "4556", "target": "9752" }, { "key": "geid_144_4994", "source": "5475", "target": "6026" }, { "key": "geid_144_4995", "source": "6779", "target": "3068" }, { "key": "geid_144_4996", "source": "3305", "target": "5353" }, { "key": "geid_144_4997", "source": "7268", "target": "5158" }, { "key": "geid_144_4998", "source": "6032", "target": "9" }, { "key": "geid_144_4999", "source": "5998", "target": "1639" }, { "key": "geid_144_5000", "source": "7662", "target": "8175" }, { "key": "geid_144_5001", "source": "2610", "target": "5128" }, { "key": "geid_144_5002", "source": "7219", "target": "6242" }, { "key": "geid_144_5003", "source": "5182", "target": "2997" }, { "key": "geid_144_5004", "source": "3574", "target": "8852" }, { "key": "geid_144_5005", "source": "9777", "target": "6111" }, { "key": "geid_144_5006", "source": "9684", "target": "1142" }, { "key": "geid_144_5007", "source": "7874", "target": "6318" }, { "key": "geid_144_5008", "source": "1796", "target": "9232" }, { "key": "geid_144_5009", "source": "5934", "target": "2312" }, { "key": "geid_144_5010", "source": "4157", "target": "9734" }, { "key": "geid_144_5011", "source": "14", "target": "5088" }, { "key": "geid_144_5012", "source": "7812", "target": "6449" }, { "key": "geid_144_5013", "source": "9659", "target": "2563" }, { "key": "geid_144_5014", "source": "2620", "target": "4720" }, { "key": "geid_144_5015", "source": "1464", "target": "692" }, { "key": "geid_144_5016", "source": "3831", "target": "9981" }, { "key": "geid_144_5017", "source": "2187", "target": "6510" }, { "key": "geid_144_5018", "source": "1184", "target": "2555" }, { "key": "geid_144_5019", "source": "2234", "target": "3217" }, { "key": "geid_144_5020", "source": "8367", "target": "2363" }, { "key": "geid_144_5021", "source": "1735", "target": "16" }, { "key": "geid_144_5022", "source": "6582", "target": "8132" }, { "key": "geid_144_5023", "source": "3372", "target": "5362" }, { "key": "geid_144_5024", "source": "1303", "target": "4414" }, { "key": "geid_144_5025", "source": "121", "target": "6065" }, { "key": "geid_144_5026", "source": "3662", "target": "5867" }, { "key": "geid_144_5027", "source": "1559", "target": "1460" }, { "key": "geid_144_5028", "source": "4422", "target": "311" }, { "key": "geid_144_5029", "source": "7028", "target": "8595" }, { "key": "geid_144_5030", "source": "766", "target": "759" }, { "key": "geid_144_5031", "source": "1213", "target": "1849" }, { "key": "geid_144_5032", "source": "9006", "target": "5657" }, { "key": "geid_144_5033", "source": "6503", "target": "7161" }, { "key": "geid_144_5034", "source": "6731", "target": "3227" }, { "key": "geid_144_5035", "source": "2561", "target": "683" }, { "key": "geid_144_5036", "source": "5362", "target": "9017" }, { "key": "geid_144_5037", "source": "2658", "target": "7162" }, { "key": "geid_144_5038", "source": "5739", "target": "6507" }, { "key": "geid_144_5039", "source": "7", "target": "577" }, { "key": "geid_144_5040", "source": "8581", "target": "4023" }, { "key": "geid_144_5041", "source": "3821", "target": "3081" }, { "key": "geid_144_5042", "source": "307", "target": "1467" }, { "key": "geid_144_5043", "source": "6098", "target": "9363" }, { "key": "geid_144_5044", "source": "4196", "target": "6264" }, { "key": "geid_144_5045", "source": "6496", "target": "8368" }, { "key": "geid_144_5046", "source": "2885", "target": "4609" }, { "key": "geid_144_5047", "source": "3736", "target": "8840" }, { "key": "geid_144_5048", "source": "3094", "target": "6429" }, { "key": "geid_144_5049", "source": "4946", "target": "5968" }, { "key": "geid_144_5050", "source": "7911", "target": "6808" }, { "key": "geid_144_5051", "source": "9318", "target": "9978" }, { "key": "geid_144_5052", "source": "1374", "target": "8993" }, { "key": "geid_144_5053", "source": "5771", "target": "6313" }, { "key": "geid_144_5054", "source": "2839", "target": "6287" }, { "key": "geid_144_5055", "source": "444", "target": "239" }, { "key": "geid_144_5056", "source": "2678", "target": "3969" }, { "key": "geid_144_5057", "source": "3826", "target": "8289" }, { "key": "geid_144_5058", "source": "3958", "target": "9054" }, { "key": "geid_144_5059", "source": "4819", "target": "3976" }, { "key": "geid_144_5060", "source": "8089", "target": "962" }, { "key": "geid_144_5061", "source": "5027", "target": "7246" }, { "key": "geid_144_5062", "source": "7063", "target": "4957" }, { "key": "geid_144_5063", "source": "1840", "target": "513" }, { "key": "geid_144_5064", "source": "5929", "target": "5426" }, { "key": "geid_144_5065", "source": "3267", "target": "6303" }, { "key": "geid_144_5066", "source": "8527", "target": "644" }, { "key": "geid_144_5067", "source": "6767", "target": "2112" }, { "key": "geid_144_5068", "source": "4834", "target": "6306" }, { "key": "geid_144_5069", "source": "7623", "target": "4041" }, { "key": "geid_144_5070", "source": "9603", "target": "7003" }, { "key": "geid_144_5071", "source": "941", "target": "2212" }, { "key": "geid_144_5072", "source": "5261", "target": "7174" }, { "key": "geid_144_5073", "source": "2704", "target": "3913" }, { "key": "geid_144_5074", "source": "5992", "target": "135" }, { "key": "geid_144_5075", "source": "5024", "target": "3009" }, { "key": "geid_144_5076", "source": "9474", "target": "3752" }, { "key": "geid_144_5077", "source": "1217", "target": "9218" }, { "key": "geid_144_5078", "source": "3214", "target": "8165" }, { "key": "geid_144_5079", "source": "3741", "target": "8968" }, { "key": "geid_144_5080", "source": "9277", "target": "2125" }, { "key": "geid_144_5081", "source": "771", "target": "6955" }, { "key": "geid_144_5082", "source": "5882", "target": "5269" }, { "key": "geid_144_5083", "source": "423", "target": "3903" }, { "key": "geid_144_5084", "source": "4695", "target": "5992" }, { "key": "geid_144_5085", "source": "310", "target": "947" }, { "key": "geid_144_5086", "source": "4138", "target": "2357" }, { "key": "geid_144_5087", "source": "7103", "target": "2870" }, { "key": "geid_144_5088", "source": "2270", "target": "9689" }, { "key": "geid_144_5089", "source": "4137", "target": "1140" }, { "key": "geid_144_5090", "source": "8717", "target": "6854" }, { "key": "geid_144_5091", "source": "2731", "target": "3909" }, { "key": "geid_144_5092", "source": "194", "target": "6440" }, { "key": "geid_144_5093", "source": "9235", "target": "12" }, { "key": "geid_144_5094", "source": "8649", "target": "6927" }, { "key": "geid_144_5095", "source": "7315", "target": "7175" }, { "key": "geid_144_5096", "source": "8752", "target": "5923" }, { "key": "geid_144_5097", "source": "6403", "target": "906" }, { "key": "geid_144_5098", "source": "4286", "target": "2958" }, { "key": "geid_144_5099", "source": "4756", "target": "955" }, { "key": "geid_144_5100", "source": "2368", "target": "6231" }, { "key": "geid_144_5101", "source": "6129", "target": "686" }, { "key": "geid_144_5102", "source": "6623", "target": "79" }, { "key": "geid_144_5103", "source": "354", "target": "763" }, { "key": "geid_144_5104", "source": "4778", "target": "9874" }, { "key": "geid_144_5105", "source": "5881", "target": "4846" }, { "key": "geid_144_5106", "source": "2287", "target": "507" }, { "key": "geid_144_5107", "source": "1780", "target": "947" }, { "key": "geid_144_5108", "source": "1677", "target": "3922" }, { "key": "geid_144_5109", "source": "6026", "target": "398" }, { "key": "geid_144_5110", "source": "1165", "target": "5731" }, { "key": "geid_144_5111", "source": "4586", "target": "8486" }, { "key": "geid_144_5112", "source": "1005", "target": "6795" }, { "key": "geid_144_5113", "source": "3365", "target": "8684" }, { "key": "geid_144_5114", "source": "6042", "target": "246" }, { "key": "geid_144_5115", "source": "5286", "target": "1621" }, { "key": "geid_144_5116", "source": "1186", "target": "2195" }, { "key": "geid_144_5117", "source": "2966", "target": "9689" }, { "key": "geid_144_5118", "source": "3052", "target": "792" }, { "key": "geid_144_5119", "source": "2233", "target": "1086" }, { "key": "geid_144_5120", "source": "5902", "target": "2775" }, { "key": "geid_144_5121", "source": "5716", "target": "2767" }, { "key": "geid_144_5122", "source": "4099", "target": "7863" }, { "key": "geid_144_5123", "source": "2363", "target": "8500" }, { "key": "geid_144_5124", "source": "6122", "target": "6205" }, { "key": "geid_144_5125", "source": "6755", "target": "9855" }, { "key": "geid_144_5126", "source": "5201", "target": "4391" }, { "key": "geid_144_5127", "source": "4516", "target": "4029" }, { "key": "geid_144_5128", "source": "8924", "target": "8151" }, { "key": "geid_144_5129", "source": "3446", "target": "6736" }, { "key": "geid_144_5130", "source": "8317", "target": "1341" }, { "key": "geid_144_5131", "source": "704", "target": "1818" }, { "key": "geid_144_5132", "source": "7186", "target": "8892" }, { "key": "geid_144_5133", "source": "5080", "target": "9202" }, { "key": "geid_144_5134", "source": "1676", "target": "5810" }, { "key": "geid_144_5135", "source": "9716", "target": "6340" }, { "key": "geid_144_5136", "source": "5548", "target": "99" }, { "key": "geid_144_5137", "source": "2096", "target": "6354" }, { "key": "geid_144_5138", "source": "1006", "target": "8605" }, { "key": "geid_144_5139", "source": "2292", "target": "8709" }, { "key": "geid_144_5140", "source": "3374", "target": "8357" }, { "key": "geid_144_5141", "source": "8058", "target": "6765" }, { "key": "geid_144_5142", "source": "7700", "target": "5296" }, { "key": "geid_144_5143", "source": "8030", "target": "7211" }, { "key": "geid_144_5144", "source": "4675", "target": "3491" }, { "key": "geid_144_5145", "source": "6486", "target": "8232" }, { "key": "geid_144_5146", "source": "8142", "target": "5987" }, { "key": "geid_144_5147", "source": "40", "target": "8993" }, { "key": "geid_144_5148", "source": "7615", "target": "7094" }, { "key": "geid_144_5149", "source": "9328", "target": "1025" }, { "key": "geid_144_5150", "source": "7180", "target": "4048" }, { "key": "geid_144_5151", "source": "7703", "target": "9170" }, { "key": "geid_144_5152", "source": "4706", "target": "7158" }, { "key": "geid_144_5153", "source": "3521", "target": "3985" }, { "key": "geid_144_5154", "source": "8700", "target": "4471" }, { "key": "geid_144_5155", "source": "4635", "target": "2895" }, { "key": "geid_144_5156", "source": "1624", "target": "1820" }, { "key": "geid_144_5157", "source": "2209", "target": "5056" }, { "key": "geid_144_5158", "source": "2876", "target": "3796" }, { "key": "geid_144_5159", "source": "6704", "target": "9446" }, { "key": "geid_144_5160", "source": "9175", "target": "6988" }, { "key": "geid_144_5161", "source": "1826", "target": "505" }, { "key": "geid_144_5162", "source": "6018", "target": "1269" }, { "key": "geid_144_5163", "source": "386", "target": "7794" }, { "key": "geid_144_5164", "source": "3197", "target": "9832" }, { "key": "geid_144_5165", "source": "5878", "target": "8159" }, { "key": "geid_144_5166", "source": "2020", "target": "9679" }, { "key": "geid_144_5167", "source": "4143", "target": "1905" }, { "key": "geid_144_5168", "source": "6642", "target": "5256" }, { "key": "geid_144_5169", "source": "2292", "target": "5644" }, { "key": "geid_144_5170", "source": "6313", "target": "7973" }, { "key": "geid_144_5171", "source": "6447", "target": "1101" }, { "key": "geid_144_5172", "source": "4847", "target": "7485" }, { "key": "geid_144_5173", "source": "802", "target": "9306" }, { "key": "geid_144_5174", "source": "4458", "target": "2678" }, { "key": "geid_144_5175", "source": "2939", "target": "1929" }, { "key": "geid_144_5176", "source": "5077", "target": "8659" }, { "key": "geid_144_5177", "source": "988", "target": "1560" }, { "key": "geid_144_5178", "source": "8315", "target": "2316" }, { "key": "geid_144_5179", "source": "3508", "target": "8415" }, { "key": "geid_144_5180", "source": "8176", "target": "562" }, { "key": "geid_144_5181", "source": "9323", "target": "8728" }, { "key": "geid_144_5182", "source": "4748", "target": "4698" }, { "key": "geid_144_5183", "source": "8969", "target": "633" }, { "key": "geid_144_5184", "source": "4803", "target": "8205" }, { "key": "geid_144_5185", "source": "8004", "target": "7349" }, { "key": "geid_144_5186", "source": "4801", "target": "6044" }, { "key": "geid_144_5187", "source": "7029", "target": "1685" }, { "key": "geid_144_5188", "source": "9470", "target": "7182" }, { "key": "geid_144_5189", "source": "8108", "target": "7042" }, { "key": "geid_144_5190", "source": "426", "target": "5504" }, { "key": "geid_144_5191", "source": "6386", "target": "3179" }, { "key": "geid_144_5192", "source": "6180", "target": "637" }, { "key": "geid_144_5193", "source": "6854", "target": "2602" }, { "key": "geid_144_5194", "source": "4989", "target": "2565" }, { "key": "geid_144_5195", "source": "7637", "target": "1703" }, { "key": "geid_144_5196", "source": "7698", "target": "3314" }, { "key": "geid_144_5197", "source": "841", "target": "888" }, { "key": "geid_144_5198", "source": "1317", "target": "9310" }, { "key": "geid_144_5199", "source": "9664", "target": "5123" }, { "key": "geid_144_5200", "source": "177", "target": "801" }, { "key": "geid_144_5201", "source": "2690", "target": "8400" }, { "key": "geid_144_5202", "source": "4593", "target": "4741" }, { "key": "geid_144_5203", "source": "2142", "target": "639" }, { "key": "geid_144_5204", "source": "8905", "target": "714" }, { "key": "geid_144_5205", "source": "6182", "target": "242" }, { "key": "geid_144_5206", "source": "3358", "target": "259" }, { "key": "geid_144_5207", "source": "5479", "target": "3779" }, { "key": "geid_144_5208", "source": "2679", "target": "6305" }, { "key": "geid_144_5209", "source": "4536", "target": "8951" }, { "key": "geid_144_5210", "source": "5200", "target": "2371" }, { "key": "geid_144_5211", "source": "7211", "target": "717" }, { "key": "geid_144_5212", "source": "3320", "target": "6697" }, { "key": "geid_144_5213", "source": "6010", "target": "8020" }, { "key": "geid_144_5214", "source": "9639", "target": "3149" }, { "key": "geid_144_5215", "source": "2142", "target": "8431" }, { "key": "geid_144_5216", "source": "4820", "target": "3272" }, { "key": "geid_144_5217", "source": "3823", "target": "8648" }, { "key": "geid_144_5218", "source": "5144", "target": "2320" }, { "key": "geid_144_5219", "source": "5773", "target": "9332" }, { "key": "geid_144_5220", "source": "8183", "target": "2592" }, { "key": "geid_144_5221", "source": "700", "target": "1700" }, { "key": "geid_144_5222", "source": "6943", "target": "9358" }, { "key": "geid_144_5223", "source": "3001", "target": "9297" }, { "key": "geid_144_5224", "source": "6505", "target": "6387" }, { "key": "geid_144_5225", "source": "2891", "target": "4899" }, { "key": "geid_144_5226", "source": "6128", "target": "1113" }, { "key": "geid_144_5227", "source": "7743", "target": "4556" }, { "key": "geid_144_5228", "source": "4844", "target": "1828" }, { "key": "geid_144_5229", "source": "395", "target": "9527" }, { "key": "geid_144_5230", "source": "8760", "target": "1806" }, { "key": "geid_144_5231", "source": "7185", "target": "7829" }, { "key": "geid_144_5232", "source": "3025", "target": "5713" }, { "key": "geid_144_5233", "source": "5704", "target": "2880" }, { "key": "geid_144_5234", "source": "5170", "target": "197" }, { "key": "geid_144_5235", "source": "1948", "target": "289" }, { "key": "geid_144_5236", "source": "4338", "target": "8050" }, { "key": "geid_144_5237", "source": "8167", "target": "2970" }, { "key": "geid_144_5238", "source": "3838", "target": "3616" }, { "key": "geid_144_5239", "source": "6530", "target": "1382" }, { "key": "geid_144_5240", "source": "9690", "target": "4554" }, { "key": "geid_144_5241", "source": "3495", "target": "7462" }, { "key": "geid_144_5242", "source": "7129", "target": "2158" }, { "key": "geid_144_5243", "source": "3827", "target": "4913" }, { "key": "geid_144_5244", "source": "8939", "target": "8135" }, { "key": "geid_144_5245", "source": "681", "target": "906" }, { "key": "geid_144_5246", "source": "978", "target": "2920" }, { "key": "geid_144_5247", "source": "8028", "target": "3264" }, { "key": "geid_144_5248", "source": "7413", "target": "2799" }, { "key": "geid_144_5249", "source": "1047", "target": "7111" }, { "key": "geid_144_5250", "source": "890", "target": "3236" }, { "key": "geid_144_5251", "source": "2002", "target": "3821" }, { "key": "geid_144_5252", "source": "8800", "target": "3966" }, { "key": "geid_144_5253", "source": "2353", "target": "2692" }, { "key": "geid_144_5254", "source": "9781", "target": "1454" }, { "key": "geid_144_5255", "source": "4877", "target": "7214" }, { "key": "geid_144_5256", "source": "5888", "target": "1655" }, { "key": "geid_144_5257", "source": "4436", "target": "8489" }, { "key": "geid_144_5258", "source": "3714", "target": "7892" }, { "key": "geid_144_5259", "source": "5088", "target": "9555" }, { "key": "geid_144_5260", "source": "4909", "target": "1179" }, { "key": "geid_144_5261", "source": "8299", "target": "6900" }, { "key": "geid_144_5262", "source": "1528", "target": "6495" }, { "key": "geid_144_5263", "source": "8918", "target": "7409" }, { "key": "geid_144_5264", "source": "2349", "target": "8499" }, { "key": "geid_144_5265", "source": "8516", "target": "122" }, { "key": "geid_144_5266", "source": "7286", "target": "3764" }, { "key": "geid_144_5267", "source": "4999", "target": "8870" }, { "key": "geid_144_5268", "source": "9813", "target": "1912" }, { "key": "geid_144_5269", "source": "7824", "target": "1458" }, { "key": "geid_144_5270", "source": "1823", "target": "2585" }, { "key": "geid_144_5271", "source": "1111", "target": "4859" }, { "key": "geid_144_5272", "source": "8705", "target": "8632" }, { "key": "geid_144_5273", "source": "3224", "target": "906" }, { "key": "geid_144_5274", "source": "6225", "target": "7989" }, { "key": "geid_144_5275", "source": "2066", "target": "6294" }, { "key": "geid_144_5276", "source": "6042", "target": "170" }, { "key": "geid_144_5277", "source": "7089", "target": "1811" }, { "key": "geid_144_5278", "source": "2580", "target": "5003" }, { "key": "geid_144_5279", "source": "4839", "target": "8680" }, { "key": "geid_144_5280", "source": "690", "target": "5793" }, { "key": "geid_144_5281", "source": "1049", "target": "6009" }, { "key": "geid_144_5282", "source": "1069", "target": "7558" }, { "key": "geid_144_5283", "source": "7897", "target": "6386" }, { "key": "geid_144_5284", "source": "3593", "target": "9596" }, { "key": "geid_144_5285", "source": "4583", "target": "3827" }, { "key": "geid_144_5286", "source": "869", "target": "4365" }, { "key": "geid_144_5287", "source": "7836", "target": "3546" }, { "key": "geid_144_5288", "source": "1681", "target": "8021" }, { "key": "geid_144_5289", "source": "4284", "target": "6307" }, { "key": "geid_144_5290", "source": "6661", "target": "3883" }, { "key": "geid_144_5291", "source": "6660", "target": "4532" }, { "key": "geid_144_5292", "source": "9820", "target": "6910" }, { "key": "geid_144_5293", "source": "1617", "target": "8206" }, { "key": "geid_144_5294", "source": "9660", "target": "7284" }, { "key": "geid_144_5295", "source": "8803", "target": "6911" }, { "key": "geid_144_5296", "source": "3393", "target": "1206" }, { "key": "geid_144_5297", "source": "3283", "target": "6235" }, { "key": "geid_144_5298", "source": "434", "target": "759" }, { "key": "geid_144_5299", "source": "4241", "target": "9690" }, { "key": "geid_144_5300", "source": "7358", "target": "9588" }, { "key": "geid_144_5301", "source": "4746", "target": "3912" }, { "key": "geid_144_5302", "source": "6280", "target": "6774" }, { "key": "geid_144_5303", "source": "7944", "target": "499" }, { "key": "geid_144_5304", "source": "1686", "target": "7662" }, { "key": "geid_144_5305", "source": "7810", "target": "1451" }, { "key": "geid_144_5306", "source": "3659", "target": "7463" }, { "key": "geid_144_5307", "source": "6278", "target": "1340" }, { "key": "geid_144_5308", "source": "968", "target": "7469" }, { "key": "geid_144_5309", "source": "9686", "target": "226" }, { "key": "geid_144_5310", "source": "1004", "target": "6000" }, { "key": "geid_144_5311", "source": "5734", "target": "1419" }, { "key": "geid_144_5312", "source": "9030", "target": "5633" }, { "key": "geid_144_5313", "source": "8575", "target": "7596" }, { "key": "geid_144_5314", "source": "2264", "target": "4712" }, { "key": "geid_144_5315", "source": "2198", "target": "5372" }, { "key": "geid_144_5316", "source": "9106", "target": "9051" }, { "key": "geid_144_5317", "source": "6287", "target": "8094" }, { "key": "geid_144_5318", "source": "3527", "target": "6893" }, { "key": "geid_144_5319", "source": "2005", "target": "1543" }, { "key": "geid_144_5320", "source": "8671", "target": "8405" }, { "key": "geid_144_5321", "source": "1579", "target": "2944" }, { "key": "geid_144_5322", "source": "5013", "target": "5787" }, { "key": "geid_144_5323", "source": "1353", "target": "6345" }, { "key": "geid_144_5324", "source": "2691", "target": "3242" }, { "key": "geid_144_5325", "source": "7508", "target": "8753" }, { "key": "geid_144_5326", "source": "4520", "target": "9754" }, { "key": "geid_144_5327", "source": "3371", "target": "4023" }, { "key": "geid_144_5328", "source": "4202", "target": "9021" }, { "key": "geid_144_5329", "source": "926", "target": "8040" }, { "key": "geid_144_5330", "source": "1729", "target": "3883" }, { "key": "geid_144_5331", "source": "1189", "target": "2739" }, { "key": "geid_144_5332", "source": "1659", "target": "2070" }, { "key": "geid_144_5333", "source": "4207", "target": "1888" }, { "key": "geid_144_5334", "source": "7946", "target": "644" }, { "key": "geid_144_5335", "source": "5356", "target": "6121" }, { "key": "geid_144_5336", "source": "4426", "target": "3014" }, { "key": "geid_144_5337", "source": "6637", "target": "8786" }, { "key": "geid_144_5338", "source": "9610", "target": "4585" }, { "key": "geid_144_5339", "source": "2844", "target": "1082" }, { "key": "geid_144_5340", "source": "8800", "target": "999" }, { "key": "geid_144_5341", "source": "3824", "target": "3020" }, { "key": "geid_144_5342", "source": "1394", "target": "9776" }, { "key": "geid_144_5343", "source": "6418", "target": "941" }, { "key": "geid_144_5344", "source": "9205", "target": "9073" }, { "key": "geid_144_5345", "source": "5778", "target": "3806" }, { "key": "geid_144_5346", "source": "4662", "target": "5377" }, { "key": "geid_144_5347", "source": "7504", "target": "4421" }, { "key": "geid_144_5348", "source": "2226", "target": "433" }, { "key": "geid_144_5349", "source": "7245", "target": "7259" }, { "key": "geid_144_5350", "source": "1937", "target": "6621" }, { "key": "geid_144_5351", "source": "1825", "target": "6958" }, { "key": "geid_144_5352", "source": "5018", "target": "4669" }, { "key": "geid_144_5353", "source": "8903", "target": "5458" }, { "key": "geid_144_5354", "source": "2233", "target": "3409" }, { "key": "geid_144_5355", "source": "4367", "target": "9025" }, { "key": "geid_144_5356", "source": "2334", "target": "32" }, { "key": "geid_144_5357", "source": "7305", "target": "8564" }, { "key": "geid_144_5358", "source": "3489", "target": "2933" }, { "key": "geid_144_5359", "source": "6822", "target": "9828" }, { "key": "geid_144_5360", "source": "1583", "target": "4668" }, { "key": "geid_144_5361", "source": "3164", "target": "2749" }, { "key": "geid_144_5362", "source": "4497", "target": "6881" }, { "key": "geid_144_5363", "source": "6200", "target": "7732" }, { "key": "geid_144_5364", "source": "5346", "target": "3743" }, { "key": "geid_144_5365", "source": "6271", "target": "4279" }, { "key": "geid_144_5366", "source": "432", "target": "8559" }, { "key": "geid_144_5367", "source": "5774", "target": "4352" }, { "key": "geid_144_5368", "source": "572", "target": "7543" }, { "key": "geid_144_5369", "source": "9538", "target": "5233" }, { "key": "geid_144_5370", "source": "4041", "target": "6913" }, { "key": "geid_144_5371", "source": "2140", "target": "2767" }, { "key": "geid_144_5372", "source": "5160", "target": "8676" }, { "key": "geid_144_5373", "source": "6007", "target": "1710" }, { "key": "geid_144_5374", "source": "3247", "target": "7367" }, { "key": "geid_144_5375", "source": "5267", "target": "9362" }, { "key": "geid_144_5376", "source": "4876", "target": "2332" }, { "key": "geid_144_5377", "source": "9511", "target": "6312" }, { "key": "geid_144_5378", "source": "3115", "target": "8872" }, { "key": "geid_144_5379", "source": "4402", "target": "6583" }, { "key": "geid_144_5380", "source": "7585", "target": "813" }, { "key": "geid_144_5381", "source": "7392", "target": "3864" }, { "key": "geid_144_5382", "source": "7592", "target": "2044" }, { "key": "geid_144_5383", "source": "9289", "target": "611" }, { "key": "geid_144_5384", "source": "2911", "target": "4645" }, { "key": "geid_144_5385", "source": "402", "target": "4746" }, { "key": "geid_144_5386", "source": "9472", "target": "4597" }, { "key": "geid_144_5387", "source": "2787", "target": "2725" }, { "key": "geid_144_5388", "source": "2533", "target": "3617" }, { "key": "geid_144_5389", "source": "4290", "target": "5557" }, { "key": "geid_144_5390", "source": "1987", "target": "5881" }, { "key": "geid_144_5391", "source": "3828", "target": "4174" }, { "key": "geid_144_5392", "source": "3972", "target": "3681" }, { "key": "geid_144_5393", "source": "8183", "target": "9201" }, { "key": "geid_144_5394", "source": "83", "target": "907" }, { "key": "geid_144_5395", "source": "5736", "target": "3686" }, { "key": "geid_144_5396", "source": "3238", "target": "2590" }, { "key": "geid_144_5397", "source": "993", "target": "7576" }, { "key": "geid_144_5398", "source": "881", "target": "8252" }, { "key": "geid_144_5399", "source": "491", "target": "4720" }, { "key": "geid_144_5400", "source": "3649", "target": "5065" }, { "key": "geid_144_5401", "source": "4270", "target": "7170" }, { "key": "geid_144_5402", "source": "9713", "target": "22" }, { "key": "geid_144_5403", "source": "1417", "target": "9199" }, { "key": "geid_144_5404", "source": "4645", "target": "6033" }, { "key": "geid_144_5405", "source": "5633", "target": "6776" }, { "key": "geid_144_5406", "source": "5702", "target": "3259" }, { "key": "geid_144_5407", "source": "1212", "target": "1594" }, { "key": "geid_144_5408", "source": "7451", "target": "5274" }, { "key": "geid_144_5409", "source": "9173", "target": "9838" }, { "key": "geid_144_5410", "source": "4042", "target": "4206" }, { "key": "geid_144_5411", "source": "9530", "target": "4347" }, { "key": "geid_144_5412", "source": "5040", "target": "4494" }, { "key": "geid_144_5413", "source": "2483", "target": "4414" }, { "key": "geid_144_5414", "source": "1268", "target": "1204" }, { "key": "geid_144_5415", "source": "3419", "target": "9755" }, { "key": "geid_144_5416", "source": "964", "target": "6725" }, { "key": "geid_144_5417", "source": "6222", "target": "4777" }, { "key": "geid_144_5418", "source": "5287", "target": "7472" }, { "key": "geid_144_5419", "source": "5494", "target": "8382" }, { "key": "geid_144_5420", "source": "1160", "target": "2040" }, { "key": "geid_144_5421", "source": "6413", "target": "5577" }, { "key": "geid_144_5422", "source": "9085", "target": "3686" }, { "key": "geid_144_5423", "source": "4743", "target": "679" }, { "key": "geid_144_5424", "source": "9448", "target": "1617" }, { "key": "geid_144_5425", "source": "9871", "target": "6131" }, { "key": "geid_144_5426", "source": "7298", "target": "8673" }, { "key": "geid_144_5427", "source": "934", "target": "336" }, { "key": "geid_144_5428", "source": "7633", "target": "6553" }, { "key": "geid_144_5429", "source": "9385", "target": "1606" }, { "key": "geid_144_5430", "source": "2099", "target": "2919" }, { "key": "geid_144_5431", "source": "4196", "target": "8582" }, { "key": "geid_144_5432", "source": "1425", "target": "9208" }, { "key": "geid_144_5433", "source": "4969", "target": "3121" }, { "key": "geid_144_5434", "source": "9797", "target": "6058" }, { "key": "geid_144_5435", "source": "158", "target": "2689" }, { "key": "geid_144_5436", "source": "5603", "target": "5834" }, { "key": "geid_144_5437", "source": "2943", "target": "3889" }, { "key": "geid_144_5438", "source": "181", "target": "2237" }, { "key": "geid_144_5439", "source": "4101", "target": "4561" }, { "key": "geid_144_5440", "source": "4442", "target": "6033" }, { "key": "geid_144_5441", "source": "1456", "target": "9414" }, { "key": "geid_144_5442", "source": "5941", "target": "5661" }, { "key": "geid_144_5443", "source": "5434", "target": "4088" }, { "key": "geid_144_5444", "source": "5286", "target": "1446" }, { "key": "geid_144_5445", "source": "4166", "target": "3722" }, { "key": "geid_144_5446", "source": "2112", "target": "2686" }, { "key": "geid_144_5447", "source": "941", "target": "8500" }, { "key": "geid_144_5448", "source": "1345", "target": "6988" }, { "key": "geid_144_5449", "source": "1937", "target": "4968" }, { "key": "geid_144_5450", "source": "8563", "target": "3085" }, { "key": "geid_144_5451", "source": "8714", "target": "8745" }, { "key": "geid_144_5452", "source": "3895", "target": "7665" }, { "key": "geid_144_5453", "source": "6413", "target": "9818" }, { "key": "geid_144_5454", "source": "9540", "target": "1213" }, { "key": "geid_144_5455", "source": "7841", "target": "2" }, { "key": "geid_144_5456", "source": "5611", "target": "7959" }, { "key": "geid_144_5457", "source": "5606", "target": "1666" }, { "key": "geid_144_5458", "source": "2485", "target": "9819" }, { "key": "geid_144_5459", "source": "444", "target": "3786" }, { "key": "geid_144_5460", "source": "4680", "target": "3679" }, { "key": "geid_144_5461", "source": "2525", "target": "219" }, { "key": "geid_144_5462", "source": "2263", "target": "2952" }, { "key": "geid_144_5463", "source": "924", "target": "2621" }, { "key": "geid_144_5464", "source": "3437", "target": "9314" }, { "key": "geid_144_5465", "source": "7901", "target": "4593" }, { "key": "geid_144_5466", "source": "6568", "target": "8136" }, { "key": "geid_144_5467", "source": "9432", "target": "6642" }, { "key": "geid_144_5468", "source": "2100", "target": "8348" }, { "key": "geid_144_5469", "source": "6663", "target": "7722" }, { "key": "geid_144_5470", "source": "7134", "target": "2934" }, { "key": "geid_144_5471", "source": "8394", "target": "5091" }, { "key": "geid_144_5472", "source": "8941", "target": "9450" }, { "key": "geid_144_5473", "source": "2235", "target": "9062" }, { "key": "geid_144_5474", "source": "7714", "target": "3314" }, { "key": "geid_144_5475", "source": "1923", "target": "705" }, { "key": "geid_144_5476", "source": "4773", "target": "8224" }, { "key": "geid_144_5477", "source": "6146", "target": "638" }, { "key": "geid_144_5478", "source": "4363", "target": "6326" }, { "key": "geid_144_5479", "source": "5277", "target": "1562" }, { "key": "geid_144_5480", "source": "874", "target": "7369" }, { "key": "geid_144_5481", "source": "2625", "target": "2308" }, { "key": "geid_144_5482", "source": "1433", "target": "9825" }, { "key": "geid_144_5483", "source": "1345", "target": "9052" }, { "key": "geid_144_5484", "source": "8560", "target": "2859" }, { "key": "geid_144_5485", "source": "8477", "target": "7798" }, { "key": "geid_144_5486", "source": "9538", "target": "9926" }, { "key": "geid_144_5487", "source": "263", "target": "5195" }, { "key": "geid_144_5488", "source": "5925", "target": "7428" }, { "key": "geid_144_5489", "source": "6648", "target": "2313" }, { "key": "geid_144_5490", "source": "687", "target": "7728" }, { "key": "geid_144_5491", "source": "4603", "target": "7527" }, { "key": "geid_144_5492", "source": "7075", "target": "4246" }, { "key": "geid_144_5493", "source": "8332", "target": "7536" }, { "key": "geid_144_5494", "source": "3003", "target": "8504" }, { "key": "geid_144_5495", "source": "2958", "target": "4305" }, { "key": "geid_144_5496", "source": "7347", "target": "6486" }, { "key": "geid_144_5497", "source": "2220", "target": "6597" }, { "key": "geid_144_5498", "source": "821", "target": "6405" }, { "key": "geid_144_5499", "source": "7005", "target": "7606" }, { "key": "geid_144_5500", "source": "2794", "target": "564" }, { "key": "geid_144_5501", "source": "5910", "target": "5699" }, { "key": "geid_144_5502", "source": "9381", "target": "4891" }, { "key": "geid_144_5503", "source": "2788", "target": "7203" }, { "key": "geid_144_5504", "source": "6059", "target": "5693" }, { "key": "geid_144_5505", "source": "1188", "target": "731" }, { "key": "geid_144_5506", "source": "6738", "target": "6100" }, { "key": "geid_144_5507", "source": "578", "target": "7127" }, { "key": "geid_144_5508", "source": "7269", "target": "2329" }, { "key": "geid_144_5509", "source": "9449", "target": "6026" }, { "key": "geid_144_5510", "source": "12", "target": "2298" }, { "key": "geid_144_5511", "source": "4585", "target": "7430" }, { "key": "geid_144_5512", "source": "9185", "target": "3289" }, { "key": "geid_144_5513", "source": "6474", "target": "4703" }, { "key": "geid_144_5514", "source": "4151", "target": "5692" }, { "key": "geid_144_5515", "source": "647", "target": "4421" }, { "key": "geid_144_5516", "source": "3147", "target": "6503" }, { "key": "geid_144_5517", "source": "9448", "target": "1616" }, { "key": "geid_144_5518", "source": "5882", "target": "9892" }, { "key": "geid_144_5519", "source": "3400", "target": "6104" }, { "key": "geid_144_5520", "source": "6410", "target": "9123" }, { "key": "geid_144_5521", "source": "4728", "target": "5864" }, { "key": "geid_144_5522", "source": "572", "target": "8026" }, { "key": "geid_144_5523", "source": "3228", "target": "2042" }, { "key": "geid_144_5524", "source": "6248", "target": "2524" }, { "key": "geid_144_5525", "source": "9275", "target": "1689" }, { "key": "geid_144_5526", "source": "2099", "target": "8273" }, { "key": "geid_144_5527", "source": "9676", "target": "8947" }, { "key": "geid_144_5528", "source": "6706", "target": "1924" }, { "key": "geid_144_5529", "source": "6780", "target": "4162" }, { "key": "geid_144_5530", "source": "1123", "target": "7371" }, { "key": "geid_144_5531", "source": "9333", "target": "4060" }, { "key": "geid_144_5532", "source": "6367", "target": "6523" }, { "key": "geid_144_5533", "source": "7162", "target": "8364" }, { "key": "geid_144_5534", "source": "9504", "target": "9435" }, { "key": "geid_144_5535", "source": "1392", "target": "6716" }, { "key": "geid_144_5536", "source": "2774", "target": "2807" }, { "key": "geid_144_5537", "source": "8844", "target": "9516" }, { "key": "geid_144_5538", "source": "3669", "target": "1961" }, { "key": "geid_144_5539", "source": "9534", "target": "6574" }, { "key": "geid_144_5540", "source": "5790", "target": "5825" }, { "key": "geid_144_5541", "source": "9386", "target": "395" }, { "key": "geid_144_5542", "source": "4875", "target": "8586" }, { "key": "geid_144_5543", "source": "4337", "target": "2733" }, { "key": "geid_144_5544", "source": "1589", "target": "8543" }, { "key": "geid_144_5545", "source": "4825", "target": "9970" }, { "key": "geid_144_5546", "source": "658", "target": "2438" }, { "key": "geid_144_5547", "source": "4832", "target": "1318" }, { "key": "geid_144_5548", "source": "5798", "target": "9569" }, { "key": "geid_144_5549", "source": "1605", "target": "6859" }, { "key": "geid_144_5550", "source": "3372", "target": "5887" }, { "key": "geid_144_5551", "source": "3616", "target": "5849" }, { "key": "geid_144_5552", "source": "20", "target": "9953" }, { "key": "geid_144_5553", "source": "9508", "target": "1166" }, { "key": "geid_144_5554", "source": "1331", "target": "9709" }, { "key": "geid_144_5555", "source": "889", "target": "3707" }, { "key": "geid_144_5556", "source": "4506", "target": "2127" }, { "key": "geid_144_5557", "source": "5885", "target": "9506" }, { "key": "geid_144_5558", "source": "4119", "target": "7144" }, { "key": "geid_144_5559", "source": "1371", "target": "4731" }, { "key": "geid_144_5560", "source": "1782", "target": "6906" }, { "key": "geid_144_5561", "source": "7817", "target": "921" }, { "key": "geid_144_5562", "source": "5247", "target": "8719" }, { "key": "geid_144_5563", "source": "8581", "target": "1523" }, { "key": "geid_144_5564", "source": "5149", "target": "1280" }, { "key": "geid_144_5565", "source": "8418", "target": "9271" }, { "key": "geid_144_5566", "source": "1137", "target": "9442" }, { "key": "geid_144_5567", "source": "2920", "target": "6355" }, { "key": "geid_144_5568", "source": "8581", "target": "9822" }, { "key": "geid_144_5569", "source": "8254", "target": "587" }, { "key": "geid_144_5570", "source": "8326", "target": "7137" }, { "key": "geid_144_5571", "source": "6822", "target": "7999" }, { "key": "geid_144_5572", "source": "1642", "target": "3386" }, { "key": "geid_144_5573", "source": "7780", "target": "2595" }, { "key": "geid_144_5574", "source": "7896", "target": "3932" }, { "key": "geid_144_5575", "source": "1766", "target": "4859" }, { "key": "geid_144_5576", "source": "4703", "target": "1485" }, { "key": "geid_144_5577", "source": "2088", "target": "3518" }, { "key": "geid_144_5578", "source": "1320", "target": "6804" }, { "key": "geid_144_5579", "source": "4889", "target": "813" }, { "key": "geid_144_5580", "source": "6733", "target": "5348" }, { "key": "geid_144_5581", "source": "2447", "target": "1205" }, { "key": "geid_144_5582", "source": "9660", "target": "1533" }, { "key": "geid_144_5583", "source": "6056", "target": "870" }, { "key": "geid_144_5584", "source": "7232", "target": "3169" }, { "key": "geid_144_5585", "source": "1217", "target": "2048" }, { "key": "geid_144_5586", "source": "2258", "target": "766" }, { "key": "geid_144_5587", "source": "4823", "target": "2788" }, { "key": "geid_144_5588", "source": "3596", "target": "5553" }, { "key": "geid_144_5589", "source": "4277", "target": "8018" }, { "key": "geid_144_5590", "source": "3087", "target": "4714" }, { "key": "geid_144_5591", "source": "2058", "target": "3656" }, { "key": "geid_144_5592", "source": "621", "target": "3609" }, { "key": "geid_144_5593", "source": "6271", "target": "9234" }, { "key": "geid_144_5594", "source": "1241", "target": "6780" }, { "key": "geid_144_5595", "source": "7235", "target": "8069" }, { "key": "geid_144_5596", "source": "4947", "target": "8429" }, { "key": "geid_144_5597", "source": "7720", "target": "8516" }, { "key": "geid_144_5598", "source": "7965", "target": "5947" }, { "key": "geid_144_5599", "source": "7874", "target": "4148" }, { "key": "geid_144_5600", "source": "7933", "target": "4833" }, { "key": "geid_144_5601", "source": "9860", "target": "8991" }, { "key": "geid_144_5602", "source": "411", "target": "4574" }, { "key": "geid_144_5603", "source": "5818", "target": "6505" }, { "key": "geid_144_5604", "source": "8304", "target": "4382" }, { "key": "geid_144_5605", "source": "5224", "target": "8139" }, { "key": "geid_144_5606", "source": "7191", "target": "9346" }, { "key": "geid_144_5607", "source": "4755", "target": "2580" }, { "key": "geid_144_5608", "source": "5149", "target": "2277" }, { "key": "geid_144_5609", "source": "2257", "target": "2807" }, { "key": "geid_144_5610", "source": "2074", "target": "6172" }, { "key": "geid_144_5611", "source": "4836", "target": "5935" }, { "key": "geid_144_5612", "source": "5997", "target": "3588" }, { "key": "geid_144_5613", "source": "8662", "target": "2652" }, { "key": "geid_144_5614", "source": "47", "target": "948" }, { "key": "geid_144_5615", "source": "9828", "target": "8465" }, { "key": "geid_144_5616", "source": "9581", "target": "2872" }, { "key": "geid_144_5617", "source": "6269", "target": "9789" }, { "key": "geid_144_5618", "source": "6942", "target": "6180" }, { "key": "geid_144_5619", "source": "5852", "target": "2478" }, { "key": "geid_144_5620", "source": "1083", "target": "6526" }, { "key": "geid_144_5621", "source": "6146", "target": "3108" }, { "key": "geid_144_5622", "source": "7435", "target": "7810" }, { "key": "geid_144_5623", "source": "9595", "target": "416" }, { "key": "geid_144_5624", "source": "3535", "target": "3434" }, { "key": "geid_144_5625", "source": "6919", "target": "8366" }, { "key": "geid_144_5626", "source": "3544", "target": "3794" }, { "key": "geid_144_5627", "source": "540", "target": "3650" }, { "key": "geid_144_5628", "source": "6337", "target": "4001" }, { "key": "geid_144_5629", "source": "3041", "target": "5197" }, { "key": "geid_144_5630", "source": "301", "target": "1458" }, { "key": "geid_144_5631", "source": "6734", "target": "6924" }, { "key": "geid_144_5632", "source": "6448", "target": "8426" }, { "key": "geid_144_5633", "source": "889", "target": "7200" }, { "key": "geid_144_5634", "source": "8019", "target": "5193" }, { "key": "geid_144_5635", "source": "8344", "target": "216" }, { "key": "geid_144_5636", "source": "1628", "target": "1096" }, { "key": "geid_144_5637", "source": "9032", "target": "1802" }, { "key": "geid_144_5638", "source": "5258", "target": "198" }, { "key": "geid_144_5639", "source": "8635", "target": "7339" }, { "key": "geid_144_5640", "source": "5699", "target": "542" }, { "key": "geid_144_5641", "source": "5663", "target": "2010" }, { "key": "geid_144_5642", "source": "355", "target": "8743" }, { "key": "geid_144_5643", "source": "2091", "target": "2544" }, { "key": "geid_144_5644", "source": "9511", "target": "2739" }, { "key": "geid_144_5645", "source": "4823", "target": "4729" }, { "key": "geid_144_5646", "source": "9767", "target": "2705" }, { "key": "geid_144_5647", "source": "9953", "target": "5502" }, { "key": "geid_144_5648", "source": "160", "target": "8838" }, { "key": "geid_144_5649", "source": "1906", "target": "4112" }, { "key": "geid_144_5650", "source": "5097", "target": "5685" }, { "key": "geid_144_5651", "source": "9695", "target": "1002" }, { "key": "geid_144_5652", "source": "2878", "target": "8340" }, { "key": "geid_144_5653", "source": "8674", "target": "8437" }, { "key": "geid_144_5654", "source": "8583", "target": "2523" }, { "key": "geid_144_5655", "source": "9995", "target": "7583" }, { "key": "geid_144_5656", "source": "4473", "target": "8563" }, { "key": "geid_144_5657", "source": "7601", "target": "7613" }, { "key": "geid_144_5658", "source": "775", "target": "9566" }, { "key": "geid_144_5659", "source": "1818", "target": "5540" }, { "key": "geid_144_5660", "source": "5068", "target": "7447" }, { "key": "geid_144_5661", "source": "5218", "target": "3903" }, { "key": "geid_144_5662", "source": "2220", "target": "1087" }, { "key": "geid_144_5663", "source": "388", "target": "9621" }, { "key": "geid_144_5664", "source": "2621", "target": "5767" }, { "key": "geid_144_5665", "source": "4101", "target": "2652" }, { "key": "geid_144_5666", "source": "9793", "target": "2005" }, { "key": "geid_144_5667", "source": "136", "target": "7660" }, { "key": "geid_144_5668", "source": "9848", "target": "2335" }, { "key": "geid_144_5669", "source": "6064", "target": "5032" }, { "key": "geid_144_5670", "source": "6865", "target": "3377" }, { "key": "geid_144_5671", "source": "7503", "target": "11" }, { "key": "geid_144_5672", "source": "4077", "target": "9538" }, { "key": "geid_144_5673", "source": "9602", "target": "724" }, { "key": "geid_144_5674", "source": "2124", "target": "9731" }, { "key": "geid_144_5675", "source": "6991", "target": "5360" }, { "key": "geid_144_5676", "source": "1395", "target": "3926" }, { "key": "geid_144_5677", "source": "2860", "target": "9032" }, { "key": "geid_144_5678", "source": "4181", "target": "1436" }, { "key": "geid_144_5679", "source": "7723", "target": "6231" }, { "key": "geid_144_5680", "source": "213", "target": "6632" }, { "key": "geid_144_5681", "source": "5967", "target": "9752" }, { "key": "geid_144_5682", "source": "2307", "target": "4495" }, { "key": "geid_144_5683", "source": "4054", "target": "7418" }, { "key": "geid_144_5684", "source": "5788", "target": "2684" }, { "key": "geid_144_5685", "source": "2594", "target": "2919" }, { "key": "geid_144_5686", "source": "4452", "target": "2992" }, { "key": "geid_144_5687", "source": "3248", "target": "1659" }, { "key": "geid_144_5688", "source": "7174", "target": "1867" }, { "key": "geid_144_5689", "source": "520", "target": "2968" }, { "key": "geid_144_5690", "source": "4977", "target": "5095" }, { "key": "geid_144_5691", "source": "7387", "target": "5043" }, { "key": "geid_144_5692", "source": "8955", "target": "3766" }, { "key": "geid_144_5693", "source": "6595", "target": "6266" }, { "key": "geid_144_5694", "source": "3930", "target": "9611" }, { "key": "geid_144_5695", "source": "4801", "target": "7169" }, { "key": "geid_144_5696", "source": "7849", "target": "7368" }, { "key": "geid_144_5697", "source": "9676", "target": "2922" }, { "key": "geid_144_5698", "source": "8175", "target": "3674" }, { "key": "geid_144_5699", "source": "4351", "target": "5585" }, { "key": "geid_144_5700", "source": "4056", "target": "7213" }, { "key": "geid_144_5701", "source": "8770", "target": "5171" }, { "key": "geid_144_5702", "source": "5064", "target": "1923" }, { "key": "geid_144_5703", "source": "4071", "target": "1024" }, { "key": "geid_144_5704", "source": "1722", "target": "2410" }, { "key": "geid_144_5705", "source": "8053", "target": "4869" }, { "key": "geid_144_5706", "source": "6497", "target": "4402" }, { "key": "geid_144_5707", "source": "7870", "target": "8412" }, { "key": "geid_144_5708", "source": "5138", "target": "925" }, { "key": "geid_144_5709", "source": "60", "target": "3019" }, { "key": "geid_144_5710", "source": "8232", "target": "6877" }, { "key": "geid_144_5711", "source": "6578", "target": "4517" }, { "key": "geid_144_5712", "source": "8867", "target": "2047" }, { "key": "geid_144_5713", "source": "9335", "target": "7156" }, { "key": "geid_144_5714", "source": "844", "target": "1817" }, { "key": "geid_144_5715", "source": "7094", "target": "539" }, { "key": "geid_144_5716", "source": "8857", "target": "5587" }, { "key": "geid_144_5717", "source": "2768", "target": "2986" }, { "key": "geid_144_5718", "source": "8508", "target": "210" }, { "key": "geid_144_5719", "source": "5562", "target": "5967" }, { "key": "geid_144_5720", "source": "4492", "target": "7179" }, { "key": "geid_144_5721", "source": "4336", "target": "9609" }, { "key": "geid_144_5722", "source": "7522", "target": "3439" }, { "key": "geid_144_5723", "source": "5093", "target": "4362" }, { "key": "geid_144_5724", "source": "708", "target": "3241" }, { "key": "geid_144_5725", "source": "8952", "target": "6155" }, { "key": "geid_144_5726", "source": "177", "target": "3954" }, { "key": "geid_144_5727", "source": "1499", "target": "7497" }, { "key": "geid_144_5728", "source": "5576", "target": "7256" }, { "key": "geid_144_5729", "source": "8306", "target": "6231" }, { "key": "geid_144_5730", "source": "3887", "target": "5179" }, { "key": "geid_144_5731", "source": "9098", "target": "4942" }, { "key": "geid_144_5732", "source": "7656", "target": "706" }, { "key": "geid_144_5733", "source": "4524", "target": "8801" }, { "key": "geid_144_5734", "source": "9228", "target": "7327" }, { "key": "geid_144_5735", "source": "551", "target": "6215" }, { "key": "geid_144_5736", "source": "7689", "target": "7480" }, { "key": "geid_144_5737", "source": "1788", "target": "6657" }, { "key": "geid_144_5738", "source": "8045", "target": "6312" }, { "key": "geid_144_5739", "source": "5691", "target": "4820" }, { "key": "geid_144_5740", "source": "5096", "target": "6481" }, { "key": "geid_144_5741", "source": "2758", "target": "4618" }, { "key": "geid_144_5742", "source": "1216", "target": "7629" }, { "key": "geid_144_5743", "source": "399", "target": "2053" }, { "key": "geid_144_5744", "source": "5963", "target": "7758" }, { "key": "geid_144_5745", "source": "3899", "target": "3407" }, { "key": "geid_144_5746", "source": "3647", "target": "5373" }, { "key": "geid_144_5747", "source": "1699", "target": "2367" }, { "key": "geid_144_5748", "source": "8883", "target": "3468" }, { "key": "geid_144_5749", "source": "2683", "target": "1408" }, { "key": "geid_144_5750", "source": "3059", "target": "9586" }, { "key": "geid_144_5751", "source": "9619", "target": "2573" }, { "key": "geid_144_5752", "source": "9578", "target": "3227" }, { "key": "geid_144_5753", "source": "3653", "target": "408" }, { "key": "geid_144_5754", "source": "4151", "target": "6572" }, { "key": "geid_144_5755", "source": "7558", "target": "3207" }, { "key": "geid_144_5756", "source": "1027", "target": "7541" }, { "key": "geid_144_5757", "source": "7073", "target": "811" }, { "key": "geid_144_5758", "source": "5646", "target": "5431" }, { "key": "geid_144_5759", "source": "1005", "target": "1444" }, { "key": "geid_144_5760", "source": "9404", "target": "7271" }, { "key": "geid_144_5761", "source": "3779", "target": "5478" }, { "key": "geid_144_5762", "source": "5458", "target": "3103" }, { "key": "geid_144_5763", "source": "115", "target": "3733" }, { "key": "geid_144_5764", "source": "7556", "target": "9305" }, { "key": "geid_144_5765", "source": "4872", "target": "4094" }, { "key": "geid_144_5766", "source": "5044", "target": "6849" }, { "key": "geid_144_5767", "source": "6948", "target": "7451" }, { "key": "geid_144_5768", "source": "3175", "target": "4988" }, { "key": "geid_144_5769", "source": "8665", "target": "3553" }, { "key": "geid_144_5770", "source": "5016", "target": "169" }, { "key": "geid_144_5771", "source": "6985", "target": "7673" }, { "key": "geid_144_5772", "source": "1853", "target": "9836" }, { "key": "geid_144_5773", "source": "33", "target": "3443" }, { "key": "geid_144_5774", "source": "9014", "target": "8824" }, { "key": "geid_144_5775", "source": "4827", "target": "9444" }, { "key": "geid_144_5776", "source": "8985", "target": "3643" }, { "key": "geid_144_5777", "source": "8936", "target": "2033" }, { "key": "geid_144_5778", "source": "5509", "target": "3886" }, { "key": "geid_144_5779", "source": "1551", "target": "5389" }, { "key": "geid_144_5780", "source": "8655", "target": "1652" }, { "key": "geid_144_5781", "source": "4178", "target": "1299" }, { "key": "geid_144_5782", "source": "1861", "target": "3305" }, { "key": "geid_144_5783", "source": "8209", "target": "7023" }, { "key": "geid_144_5784", "source": "3777", "target": "8173" }, { "key": "geid_144_5785", "source": "5793", "target": "4300" }, { "key": "geid_144_5786", "source": "6130", "target": "9206" }, { "key": "geid_144_5787", "source": "1481", "target": "1920" }, { "key": "geid_144_5788", "source": "3962", "target": "5018" }, { "key": "geid_144_5789", "source": "3616", "target": "3299" }, { "key": "geid_144_5790", "source": "7462", "target": "1550" }, { "key": "geid_144_5791", "source": "2661", "target": "1982" }, { "key": "geid_144_5792", "source": "9414", "target": "4528" }, { "key": "geid_144_5793", "source": "5801", "target": "1523" }, { "key": "geid_144_5794", "source": "1361", "target": "8865" }, { "key": "geid_144_5795", "source": "6234", "target": "9624" }, { "key": "geid_144_5796", "source": "2127", "target": "7321" }, { "key": "geid_144_5797", "source": "9466", "target": "3595" }, { "key": "geid_144_5798", "source": "5762", "target": "1159" }, { "key": "geid_144_5799", "source": "7806", "target": "8131" }, { "key": "geid_144_5800", "source": "5759", "target": "5404" }, { "key": "geid_144_5801", "source": "7158", "target": "7745" }, { "key": "geid_144_5802", "source": "8660", "target": "1547" }, { "key": "geid_144_5803", "source": "8323", "target": "6370" }, { "key": "geid_144_5804", "source": "7396", "target": "9149" }, { "key": "geid_144_5805", "source": "8596", "target": "3318" }, { "key": "geid_144_5806", "source": "7527", "target": "7588" }, { "key": "geid_144_5807", "source": "4208", "target": "7033" }, { "key": "geid_144_5808", "source": "6371", "target": "2293" }, { "key": "geid_144_5809", "source": "6761", "target": "880" }, { "key": "geid_144_5810", "source": "578", "target": "7887" }, { "key": "geid_144_5811", "source": "4770", "target": "1280" }, { "key": "geid_144_5812", "source": "6531", "target": "8941" }, { "key": "geid_144_5813", "source": "7757", "target": "9474" }, { "key": "geid_144_5814", "source": "9616", "target": "1362" }, { "key": "geid_144_5815", "source": "1897", "target": "1723" }, { "key": "geid_144_5816", "source": "30", "target": "824" }, { "key": "geid_144_5817", "source": "4259", "target": "3641" }, { "key": "geid_144_5818", "source": "8546", "target": "5356" }, { "key": "geid_144_5819", "source": "5723", "target": "7218" }, { "key": "geid_144_5820", "source": "3845", "target": "7940" }, { "key": "geid_144_5821", "source": "3431", "target": "293" }, { "key": "geid_144_5822", "source": "3547", "target": "3891" }, { "key": "geid_144_5823", "source": "6873", "target": "2" }, { "key": "geid_144_5824", "source": "7432", "target": "8983" }, { "key": "geid_144_5825", "source": "7087", "target": "3150" }, { "key": "geid_144_5826", "source": "2233", "target": "3589" }, { "key": "geid_144_5827", "source": "2799", "target": "6375" }, { "key": "geid_144_5828", "source": "8149", "target": "4988" }, { "key": "geid_144_5829", "source": "6825", "target": "3387" }, { "key": "geid_144_5830", "source": "8284", "target": "2701" }, { "key": "geid_144_5831", "source": "6751", "target": "1374" }, { "key": "geid_144_5832", "source": "9035", "target": "9023" }, { "key": "geid_144_5833", "source": "5878", "target": "7452" }, { "key": "geid_144_5834", "source": "2945", "target": "4403" }, { "key": "geid_144_5835", "source": "5961", "target": "5737" }, { "key": "geid_144_5836", "source": "1437", "target": "9482" }, { "key": "geid_144_5837", "source": "988", "target": "2415" }, { "key": "geid_144_5838", "source": "1807", "target": "9810" }, { "key": "geid_144_5839", "source": "3916", "target": "3194" }, { "key": "geid_144_5840", "source": "4140", "target": "4946" }, { "key": "geid_144_5841", "source": "229", "target": "259" }, { "key": "geid_144_5842", "source": "8162", "target": "9523" }, { "key": "geid_144_5843", "source": "8257", "target": "3028" }, { "key": "geid_144_5844", "source": "344", "target": "9044" }, { "key": "geid_144_5845", "source": "5066", "target": "3252" }, { "key": "geid_144_5846", "source": "6433", "target": "1076" }, { "key": "geid_144_5847", "source": "7070", "target": "7477" }, { "key": "geid_144_5848", "source": "8864", "target": "2212" }, { "key": "geid_144_5849", "source": "434", "target": "260" }, { "key": "geid_144_5850", "source": "4806", "target": "8796" }, { "key": "geid_144_5851", "source": "2047", "target": "1249" }, { "key": "geid_144_5852", "source": "2794", "target": "1050" }, { "key": "geid_144_5853", "source": "5454", "target": "5624" }, { "key": "geid_144_5854", "source": "129", "target": "8410" }, { "key": "geid_144_5855", "source": "2967", "target": "7202" }, { "key": "geid_144_5856", "source": "3723", "target": "48" }, { "key": "geid_144_5857", "source": "5093", "target": "7399" }, { "key": "geid_144_5858", "source": "3645", "target": "9297" }, { "key": "geid_144_5859", "source": "3493", "target": "5907" }, { "key": "geid_144_5860", "source": "3281", "target": "1897" }, { "key": "geid_144_5861", "source": "8768", "target": "9333" }, { "key": "geid_144_5862", "source": "8288", "target": "3572" }, { "key": "geid_144_5863", "source": "6613", "target": "4944" }, { "key": "geid_144_5864", "source": "2581", "target": "1758" }, { "key": "geid_144_5865", "source": "3803", "target": "3940" }, { "key": "geid_144_5866", "source": "1448", "target": "7354" }, { "key": "geid_144_5867", "source": "9281", "target": "3077" }, { "key": "geid_144_5868", "source": "9340", "target": "4298" }, { "key": "geid_144_5869", "source": "7952", "target": "4064" }, { "key": "geid_144_5870", "source": "7525", "target": "9857" }, { "key": "geid_144_5871", "source": "8414", "target": "6686" }, { "key": "geid_144_5872", "source": "1259", "target": "5034" }, { "key": "geid_144_5873", "source": "6628", "target": "8878" }, { "key": "geid_144_5874", "source": "4058", "target": "3854" }, { "key": "geid_144_5875", "source": "5581", "target": "5423" }, { "key": "geid_144_5876", "source": "3261", "target": "7299" }, { "key": "geid_144_5877", "source": "759", "target": "1524" }, { "key": "geid_144_5878", "source": "4934", "target": "7714" }, { "key": "geid_144_5879", "source": "6601", "target": "4305" }, { "key": "geid_144_5880", "source": "7591", "target": "6005" }, { "key": "geid_144_5881", "source": "8881", "target": "5999" }, { "key": "geid_144_5882", "source": "4153", "target": "6536" }, { "key": "geid_144_5883", "source": "3801", "target": "6385" }, { "key": "geid_144_5884", "source": "3029", "target": "7672" }, { "key": "geid_144_5885", "source": "2264", "target": "399" }, { "key": "geid_144_5886", "source": "2091", "target": "3005" }, { "key": "geid_144_5887", "source": "222", "target": "7502" }, { "key": "geid_144_5888", "source": "5714", "target": "4111" }, { "key": "geid_144_5889", "source": "8624", "target": "8998" }, { "key": "geid_144_5890", "source": "5358", "target": "2920" }, { "key": "geid_144_5891", "source": "3062", "target": "4880" }, { "key": "geid_144_5892", "source": "7094", "target": "3905" }, { "key": "geid_144_5893", "source": "8560", "target": "1176" }, { "key": "geid_144_5894", "source": "2008", "target": "6073" }, { "key": "geid_144_5895", "source": "8195", "target": "3175" }, { "key": "geid_144_5896", "source": "3126", "target": "1451" }, { "key": "geid_144_5897", "source": "8282", "target": "9616" }, { "key": "geid_144_5898", "source": "4464", "target": "8912" }, { "key": "geid_144_5899", "source": "3601", "target": "8818" }, { "key": "geid_144_5900", "source": "5646", "target": "8392" }, { "key": "geid_144_5901", "source": "4240", "target": "5910" }, { "key": "geid_144_5902", "source": "7717", "target": "3569" }, { "key": "geid_144_5903", "source": "8300", "target": "2277" }, { "key": "geid_144_5904", "source": "9403", "target": "7168" }, { "key": "geid_144_5905", "source": "4485", "target": "5793" }, { "key": "geid_144_5906", "source": "5949", "target": "9839" }, { "key": "geid_144_5907", "source": "3515", "target": "1641" }, { "key": "geid_144_5908", "source": "1563", "target": "8196" }, { "key": "geid_144_5909", "source": "4278", "target": "5384" }, { "key": "geid_144_5910", "source": "5011", "target": "1725" }, { "key": "geid_144_5911", "source": "4614", "target": "4072" }, { "key": "geid_144_5912", "source": "4640", "target": "1227" }, { "key": "geid_144_5913", "source": "9957", "target": "9861" }, { "key": "geid_144_5914", "source": "9496", "target": "4456" }, { "key": "geid_144_5915", "source": "346", "target": "8137" }, { "key": "geid_144_5916", "source": "9221", "target": "3692" }, { "key": "geid_144_5917", "source": "4937", "target": "8783" }, { "key": "geid_144_5918", "source": "8897", "target": "3645" }, { "key": "geid_144_5919", "source": "2806", "target": "6710" }, { "key": "geid_144_5920", "source": "4101", "target": "9120" }, { "key": "geid_144_5921", "source": "1832", "target": "5364" }, { "key": "geid_144_5922", "source": "5316", "target": "7551" }, { "key": "geid_144_5923", "source": "5819", "target": "7720" }, { "key": "geid_144_5924", "source": "7546", "target": "5383" }, { "key": "geid_144_5925", "source": "6756", "target": "6846" }, { "key": "geid_144_5926", "source": "4450", "target": "8336" }, { "key": "geid_144_5927", "source": "5940", "target": "7953" }, { "key": "geid_144_5928", "source": "8550", "target": "1667" }, { "key": "geid_144_5929", "source": "7114", "target": "1507" }, { "key": "geid_144_5930", "source": "7389", "target": "4253" }, { "key": "geid_144_5931", "source": "3082", "target": "1587" }, { "key": "geid_144_5932", "source": "933", "target": "1220" }, { "key": "geid_144_5933", "source": "6466", "target": "7205" }, { "key": "geid_144_5934", "source": "5085", "target": "7489" }, { "key": "geid_144_5935", "source": "4460", "target": "7314" }, { "key": "geid_144_5936", "source": "5758", "target": "432" }, { "key": "geid_144_5937", "source": "3115", "target": "4783" }, { "key": "geid_144_5938", "source": "5368", "target": "2876" }, { "key": "geid_144_5939", "source": "5868", "target": "9536" }, { "key": "geid_144_5940", "source": "9008", "target": "9096" }, { "key": "geid_144_5941", "source": "7846", "target": "9627" }, { "key": "geid_144_5942", "source": "5212", "target": "4469" }, { "key": "geid_144_5943", "source": "7284", "target": "6986" }, { "key": "geid_144_5944", "source": "5130", "target": "8942" }, { "key": "geid_144_5945", "source": "8388", "target": "9905" }, { "key": "geid_144_5946", "source": "3881", "target": "6673" }, { "key": "geid_144_5947", "source": "2650", "target": "977" }, { "key": "geid_144_5948", "source": "111", "target": "8636" }, { "key": "geid_144_5949", "source": "1092", "target": "5883" }, { "key": "geid_144_5950", "source": "4309", "target": "8351" }, { "key": "geid_144_5951", "source": "1841", "target": "3323" }, { "key": "geid_144_5952", "source": "6695", "target": "4267" }, { "key": "geid_144_5953", "source": "6119", "target": "1867" }, { "key": "geid_144_5954", "source": "437", "target": "3674" }, { "key": "geid_144_5955", "source": "9918", "target": "3481" }, { "key": "geid_144_5956", "source": "9286", "target": "1767" }, { "key": "geid_144_5957", "source": "2899", "target": "3480" }, { "key": "geid_144_5958", "source": "8678", "target": "645" }, { "key": "geid_144_5959", "source": "7252", "target": "5757" }, { "key": "geid_144_5960", "source": "6264", "target": "1047" }, { "key": "geid_144_5961", "source": "9275", "target": "6424" }, { "key": "geid_144_5962", "source": "2319", "target": "3197" }, { "key": "geid_144_5963", "source": "9627", "target": "1208" }, { "key": "geid_144_5964", "source": "1391", "target": "4127" }, { "key": "geid_144_5965", "source": "6085", "target": "3436" }, { "key": "geid_144_5966", "source": "3091", "target": "6368" }, { "key": "geid_144_5967", "source": "2662", "target": "8868" }, { "key": "geid_144_5968", "source": "4375", "target": "4308" }, { "key": "geid_144_5969", "source": "4798", "target": "3803" }, { "key": "geid_144_5970", "source": "4712", "target": "4502" }, { "key": "geid_144_5971", "source": "1344", "target": "7662" }, { "key": "geid_144_5972", "source": "8384", "target": "2868" }, { "key": "geid_144_5973", "source": "8833", "target": "7171" }, { "key": "geid_144_5974", "source": "1693", "target": "2650" }, { "key": "geid_144_5975", "source": "5305", "target": "9025" }, { "key": "geid_144_5976", "source": "168", "target": "4852" }, { "key": "geid_144_5977", "source": "3253", "target": "5156" }, { "key": "geid_144_5978", "source": "3479", "target": "5990" }, { "key": "geid_144_5979", "source": "7219", "target": "7514" }, { "key": "geid_144_5980", "source": "3772", "target": "5407" }, { "key": "geid_144_5981", "source": "2583", "target": "1798" }, { "key": "geid_144_5982", "source": "8079", "target": "4035" }, { "key": "geid_144_5983", "source": "6606", "target": "7292" }, { "key": "geid_144_5984", "source": "2991", "target": "7056" }, { "key": "geid_144_5985", "source": "527", "target": "3811" }, { "key": "geid_144_5986", "source": "6012", "target": "637" }, { "key": "geid_144_5987", "source": "9671", "target": "7158" }, { "key": "geid_144_5988", "source": "1509", "target": "7280" }, { "key": "geid_144_5989", "source": "1569", "target": "1743" }, { "key": "geid_144_5990", "source": "1505", "target": "2550" }, { "key": "geid_144_5991", "source": "4586", "target": "48" }, { "key": "geid_144_5992", "source": "2836", "target": "8172" }, { "key": "geid_144_5993", "source": "8363", "target": "6610" }, { "key": "geid_144_5994", "source": "6094", "target": "3974" }, { "key": "geid_144_5995", "source": "9380", "target": "5743" }, { "key": "geid_144_5996", "source": "8410", "target": "9027" }, { "key": "geid_144_5997", "source": "373", "target": "7318" }, { "key": "geid_144_5998", "source": "1535", "target": "3911" }, { "key": "geid_144_5999", "source": "4564", "target": "138" }, { "key": "geid_144_6000", "source": "8975", "target": "9252" }, { "key": "geid_144_6001", "source": "8501", "target": "8504" }, { "key": "geid_144_6002", "source": "6975", "target": "8027" }, { "key": "geid_144_6003", "source": "3973", "target": "6761" }, { "key": "geid_144_6004", "source": "6928", "target": "7228" }, { "key": "geid_144_6005", "source": "3840", "target": "4058" }, { "key": "geid_144_6006", "source": "4862", "target": "2869" }, { "key": "geid_144_6007", "source": "2827", "target": "7903" }, { "key": "geid_144_6008", "source": "4751", "target": "1493" }, { "key": "geid_144_6009", "source": "5969", "target": "2270" }, { "key": "geid_144_6010", "source": "5511", "target": "2085" }, { "key": "geid_144_6011", "source": "4723", "target": "6896" }, { "key": "geid_144_6012", "source": "4112", "target": "8661" }, { "key": "geid_144_6013", "source": "6766", "target": "5620" }, { "key": "geid_144_6014", "source": "1403", "target": "2213" }, { "key": "geid_144_6015", "source": "9279", "target": "7440" }, { "key": "geid_144_6016", "source": "5220", "target": "468" }, { "key": "geid_144_6017", "source": "8500", "target": "1647" }, { "key": "geid_144_6018", "source": "9371", "target": "9204" }, { "key": "geid_144_6019", "source": "3976", "target": "3597" }, { "key": "geid_144_6020", "source": "8422", "target": "3429" }, { "key": "geid_144_6021", "source": "9718", "target": "2516" }, { "key": "geid_144_6022", "source": "7298", "target": "1643" }, { "key": "geid_144_6023", "source": "4493", "target": "7179" }, { "key": "geid_144_6024", "source": "1657", "target": "9665" }, { "key": "geid_144_6025", "source": "6179", "target": "9072" }, { "key": "geid_144_6026", "source": "1415", "target": "6625" }, { "key": "geid_144_6027", "source": "2990", "target": "1761" }, { "key": "geid_144_6028", "source": "4704", "target": "1321" }, { "key": "geid_144_6029", "source": "2146", "target": "8242" }, { "key": "geid_144_6030", "source": "4935", "target": "9248" }, { "key": "geid_144_6031", "source": "5474", "target": "282" }, { "key": "geid_144_6032", "source": "6270", "target": "842" }, { "key": "geid_144_6033", "source": "3934", "target": "7004" }, { "key": "geid_144_6034", "source": "4290", "target": "6399" }, { "key": "geid_144_6035", "source": "7164", "target": "6936" }, { "key": "geid_144_6036", "source": "6746", "target": "1922" }, { "key": "geid_144_6037", "source": "3011", "target": "5530" }, { "key": "geid_144_6038", "source": "7564", "target": "692" }, { "key": "geid_144_6039", "source": "654", "target": "5955" }, { "key": "geid_144_6040", "source": "8", "target": "2115" }, { "key": "geid_144_6041", "source": "2390", "target": "9802" }, { "key": "geid_144_6042", "source": "802", "target": "4833" }, { "key": "geid_144_6043", "source": "552", "target": "6910" }, { "key": "geid_144_6044", "source": "8613", "target": "589" }, { "key": "geid_144_6045", "source": "6718", "target": "169" }, { "key": "geid_144_6046", "source": "3096", "target": "549" }, { "key": "geid_144_6047", "source": "9045", "target": "8577" }, { "key": "geid_144_6048", "source": "6900", "target": "1899" }, { "key": "geid_144_6049", "source": "7429", "target": "8439" }, { "key": "geid_144_6050", "source": "8563", "target": "1685" }, { "key": "geid_144_6051", "source": "7539", "target": "1446" }, { "key": "geid_144_6052", "source": "1932", "target": "2000" }, { "key": "geid_144_6053", "source": "60", "target": "5083" }, { "key": "geid_144_6054", "source": "4910", "target": "7917" }, { "key": "geid_144_6055", "source": "7696", "target": "47" }, { "key": "geid_144_6056", "source": "8532", "target": "8630" }, { "key": "geid_144_6057", "source": "8983", "target": "3836" }, { "key": "geid_144_6058", "source": "4562", "target": "4510" }, { "key": "geid_144_6059", "source": "3230", "target": "2183" }, { "key": "geid_144_6060", "source": "7364", "target": "3838" }, { "key": "geid_144_6061", "source": "7319", "target": "8869" }, { "key": "geid_144_6062", "source": "6692", "target": "9739" }, { "key": "geid_144_6063", "source": "4849", "target": "6568" }, { "key": "geid_144_6064", "source": "1181", "target": "1757" }, { "key": "geid_144_6065", "source": "4698", "target": "3634" }, { "key": "geid_144_6066", "source": "5713", "target": "7911" }, { "key": "geid_144_6067", "source": "5937", "target": "1133" }, { "key": "geid_144_6068", "source": "6236", "target": "7053" }, { "key": "geid_144_6069", "source": "7100", "target": "6488" }, { "key": "geid_144_6070", "source": "1158", "target": "2921" }, { "key": "geid_144_6071", "source": "723", "target": "5540" }, { "key": "geid_144_6072", "source": "8938", "target": "9716" }, { "key": "geid_144_6073", "source": "9826", "target": "3756" }, { "key": "geid_144_6074", "source": "8590", "target": "2751" }, { "key": "geid_144_6075", "source": "9086", "target": "7896" }, { "key": "geid_144_6076", "source": "2453", "target": "2716" }, { "key": "geid_144_6077", "source": "447", "target": "4755" }, { "key": "geid_144_6078", "source": "2193", "target": "3734" }, { "key": "geid_144_6079", "source": "9442", "target": "901" }, { "key": "geid_144_6080", "source": "4788", "target": "4148" }, { "key": "geid_144_6081", "source": "1897", "target": "2258" }, { "key": "geid_144_6082", "source": "4992", "target": "4879" }, { "key": "geid_144_6083", "source": "1493", "target": "5558" }, { "key": "geid_144_6084", "source": "9644", "target": "6722" }, { "key": "geid_144_6085", "source": "7093", "target": "9635" }, { "key": "geid_144_6086", "source": "1386", "target": "3337" }, { "key": "geid_144_6087", "source": "1928", "target": "33" }, { "key": "geid_144_6088", "source": "9851", "target": "8787" }, { "key": "geid_144_6089", "source": "3026", "target": "7905" }, { "key": "geid_144_6090", "source": "6384", "target": "9501" }, { "key": "geid_144_6091", "source": "929", "target": "3493" }, { "key": "geid_144_6092", "source": "1047", "target": "7224" }, { "key": "geid_144_6093", "source": "400", "target": "8683" }, { "key": "geid_144_6094", "source": "8360", "target": "5777" }, { "key": "geid_144_6095", "source": "2431", "target": "7713" }, { "key": "geid_144_6096", "source": "7513", "target": "3946" }, { "key": "geid_144_6097", "source": "2872", "target": "2159" }, { "key": "geid_144_6098", "source": "7041", "target": "5640" }, { "key": "geid_144_6099", "source": "7156", "target": "4479" }, { "key": "geid_144_6100", "source": "7139", "target": "4833" }, { "key": "geid_144_6101", "source": "9005", "target": "5612" }, { "key": "geid_144_6102", "source": "374", "target": "9968" }, { "key": "geid_144_6103", "source": "7375", "target": "9818" }, { "key": "geid_144_6104", "source": "7328", "target": "5910" }, { "key": "geid_144_6105", "source": "4749", "target": "3512" }, { "key": "geid_144_6106", "source": "7266", "target": "8608" }, { "key": "geid_144_6107", "source": "9574", "target": "3997" }, { "key": "geid_144_6108", "source": "265", "target": "2573" }, { "key": "geid_144_6109", "source": "5023", "target": "1709" }, { "key": "geid_144_6110", "source": "7729", "target": "5523" }, { "key": "geid_144_6111", "source": "5707", "target": "2619" }, { "key": "geid_144_6112", "source": "3621", "target": "6065" }, { "key": "geid_144_6113", "source": "8713", "target": "63" }, { "key": "geid_144_6114", "source": "4737", "target": "9479" }, { "key": "geid_144_6115", "source": "8967", "target": "8824" }, { "key": "geid_144_6116", "source": "1814", "target": "8617" }, { "key": "geid_144_6117", "source": "1791", "target": "2593" }, { "key": "geid_144_6118", "source": "8581", "target": "9820" }, { "key": "geid_144_6119", "source": "3602", "target": "9145" }, { "key": "geid_144_6120", "source": "1087", "target": "4052" }, { "key": "geid_144_6121", "source": "9596", "target": "3312" }, { "key": "geid_144_6122", "source": "5798", "target": "9860" }, { "key": "geid_144_6123", "source": "9559", "target": "2749" }, { "key": "geid_144_6124", "source": "4328", "target": "1235" }, { "key": "geid_144_6125", "source": "5989", "target": "4937" }, { "key": "geid_144_6126", "source": "8772", "target": "1967" }, { "key": "geid_144_6127", "source": "2883", "target": "6784" }, { "key": "geid_144_6128", "source": "8166", "target": "9825" }, { "key": "geid_144_6129", "source": "3160", "target": "3190" }, { "key": "geid_144_6130", "source": "6924", "target": "3848" }, { "key": "geid_144_6131", "source": "4807", "target": "5494" }, { "key": "geid_144_6132", "source": "1583", "target": "5817" }, { "key": "geid_144_6133", "source": "2341", "target": "4415" }, { "key": "geid_144_6134", "source": "3733", "target": "5853" }, { "key": "geid_144_6135", "source": "757", "target": "5835" }, { "key": "geid_144_6136", "source": "5589", "target": "1289" }, { "key": "geid_144_6137", "source": "2934", "target": "3133" }, { "key": "geid_144_6138", "source": "1720", "target": "4503" }, { "key": "geid_144_6139", "source": "2539", "target": "9911" }, { "key": "geid_144_6140", "source": "8132", "target": "5142" }, { "key": "geid_144_6141", "source": "2393", "target": "2979" }, { "key": "geid_144_6142", "source": "2484", "target": "9591" }, { "key": "geid_144_6143", "source": "7094", "target": "5309" }, { "key": "geid_144_6144", "source": "2180", "target": "7905" }, { "key": "geid_144_6145", "source": "6221", "target": "5629" }, { "key": "geid_144_6146", "source": "4405", "target": "1846" }, { "key": "geid_144_6147", "source": "3630", "target": "4867" }, { "key": "geid_144_6148", "source": "151", "target": "5796" }, { "key": "geid_144_6149", "source": "4756", "target": "1392" }, { "key": "geid_144_6150", "source": "6748", "target": "1417" }, { "key": "geid_144_6151", "source": "6532", "target": "9788" }, { "key": "geid_144_6152", "source": "5694", "target": "4262" }, { "key": "geid_144_6153", "source": "6509", "target": "8554" }, { "key": "geid_144_6154", "source": "5115", "target": "2823" }, { "key": "geid_144_6155", "source": "3814", "target": "4449" }, { "key": "geid_144_6156", "source": "6806", "target": "9283" }, { "key": "geid_144_6157", "source": "7272", "target": "3565" }, { "key": "geid_144_6158", "source": "8210", "target": "5981" }, { "key": "geid_144_6159", "source": "6510", "target": "9642" }, { "key": "geid_144_6160", "source": "8676", "target": "1689" }, { "key": "geid_144_6161", "source": "7631", "target": "3227" }, { "key": "geid_144_6162", "source": "5484", "target": "301" }, { "key": "geid_144_6163", "source": "3549", "target": "6178" }, { "key": "geid_144_6164", "source": "1001", "target": "3138" }, { "key": "geid_144_6165", "source": "6073", "target": "718" }, { "key": "geid_144_6166", "source": "3458", "target": "449" }, { "key": "geid_144_6167", "source": "4418", "target": "5052" }, { "key": "geid_144_6168", "source": "1157", "target": "5970" }, { "key": "geid_144_6169", "source": "2177", "target": "3735" }, { "key": "geid_144_6170", "source": "3918", "target": "6238" }, { "key": "geid_144_6171", "source": "715", "target": "3792" }, { "key": "geid_144_6172", "source": "4381", "target": "5003" }, { "key": "geid_144_6173", "source": "9303", "target": "3770" }, { "key": "geid_144_6174", "source": "7936", "target": "7814" }, { "key": "geid_144_6175", "source": "4924", "target": "9172" }, { "key": "geid_144_6176", "source": "2886", "target": "364" }, { "key": "geid_144_6177", "source": "8704", "target": "6537" }, { "key": "geid_144_6178", "source": "3336", "target": "4424" }, { "key": "geid_144_6179", "source": "133", "target": "5231" }, { "key": "geid_144_6180", "source": "9373", "target": "3028" }, { "key": "geid_144_6181", "source": "6627", "target": "5770" }, { "key": "geid_144_6182", "source": "9392", "target": "1998" }, { "key": "geid_144_6183", "source": "4650", "target": "4877" }, { "key": "geid_144_6184", "source": "6078", "target": "4878" }, { "key": "geid_144_6185", "source": "5522", "target": "1341" }, { "key": "geid_144_6186", "source": "388", "target": "2118" }, { "key": "geid_144_6187", "source": "3864", "target": "3788" }, { "key": "geid_144_6188", "source": "6535", "target": "7958" }, { "key": "geid_144_6189", "source": "3530", "target": "2920" }, { "key": "geid_144_6190", "source": "3727", "target": "6822" }, { "key": "geid_144_6191", "source": "8133", "target": "9294" }, { "key": "geid_144_6192", "source": "3724", "target": "1689" }, { "key": "geid_144_6193", "source": "5389", "target": "5816" }, { "key": "geid_144_6194", "source": "9895", "target": "1031" }, { "key": "geid_144_6195", "source": "884", "target": "5335" }, { "key": "geid_144_6196", "source": "5898", "target": "8084" }, { "key": "geid_144_6197", "source": "7714", "target": "990" }, { "key": "geid_144_6198", "source": "2038", "target": "3642" }, { "key": "geid_144_6199", "source": "5511", "target": "5346" }, { "key": "geid_144_6200", "source": "5833", "target": "5892" }, { "key": "geid_144_6201", "source": "7884", "target": "3192" }, { "key": "geid_144_6202", "source": "9400", "target": "1049" }, { "key": "geid_144_6203", "source": "8262", "target": "4856" }, { "key": "geid_144_6204", "source": "9892", "target": "3685" }, { "key": "geid_144_6205", "source": "4751", "target": "1612" }, { "key": "geid_144_6206", "source": "8594", "target": "6126" }, { "key": "geid_144_6207", "source": "6121", "target": "1360" }, { "key": "geid_144_6208", "source": "5557", "target": "1434" }, { "key": "geid_144_6209", "source": "1837", "target": "6592" }, { "key": "geid_144_6210", "source": "3717", "target": "6111" }, { "key": "geid_144_6211", "source": "5091", "target": "5272" }, { "key": "geid_144_6212", "source": "2713", "target": "1279" }, { "key": "geid_144_6213", "source": "383", "target": "1957" }, { "key": "geid_144_6214", "source": "1211", "target": "6299" }, { "key": "geid_144_6215", "source": "5573", "target": "8914" }, { "key": "geid_144_6216", "source": "6286", "target": "6050" }, { "key": "geid_144_6217", "source": "3548", "target": "1792" }, { "key": "geid_144_6218", "source": "470", "target": "399" }, { "key": "geid_144_6219", "source": "9676", "target": "4872" }, { "key": "geid_144_6220", "source": "4849", "target": "1119" }, { "key": "geid_144_6221", "source": "5341", "target": "5056" }, { "key": "geid_144_6222", "source": "909", "target": "7720" }, { "key": "geid_144_6223", "source": "4633", "target": "7491" }, { "key": "geid_144_6224", "source": "7838", "target": "4124" }, { "key": "geid_144_6225", "source": "942", "target": "1376" }, { "key": "geid_144_6226", "source": "8647", "target": "6586" }, { "key": "geid_144_6227", "source": "2018", "target": "5735" }, { "key": "geid_144_6228", "source": "375", "target": "8909" }, { "key": "geid_144_6229", "source": "3698", "target": "637" }, { "key": "geid_144_6230", "source": "8655", "target": "771" }, { "key": "geid_144_6231", "source": "7974", "target": "3529" }, { "key": "geid_144_6232", "source": "73", "target": "7044" }, { "key": "geid_144_6233", "source": "171", "target": "5948" }, { "key": "geid_144_6234", "source": "6930", "target": "8752" }, { "key": "geid_144_6235", "source": "2662", "target": "1198" }, { "key": "geid_144_6236", "source": "6309", "target": "7145" }, { "key": "geid_144_6237", "source": "5966", "target": "9971" }, { "key": "geid_144_6238", "source": "9037", "target": "2052" }, { "key": "geid_144_6239", "source": "5912", "target": "2955" }, { "key": "geid_144_6240", "source": "5046", "target": "9052" }, { "key": "geid_144_6241", "source": "6049", "target": "1686" }, { "key": "geid_144_6242", "source": "3707", "target": "750" }, { "key": "geid_144_6243", "source": "7861", "target": "8396" }, { "key": "geid_144_6244", "source": "7016", "target": "5529" }, { "key": "geid_144_6245", "source": "6858", "target": "8161" }, { "key": "geid_144_6246", "source": "1920", "target": "3106" }, { "key": "geid_144_6247", "source": "2950", "target": "2100" }, { "key": "geid_144_6248", "source": "291", "target": "7203" }, { "key": "geid_144_6249", "source": "8805", "target": "2100" }, { "key": "geid_144_6250", "source": "4940", "target": "9392" }, { "key": "geid_144_6251", "source": "3276", "target": "8683" }, { "key": "geid_144_6252", "source": "3831", "target": "7824" }, { "key": "geid_144_6253", "source": "3676", "target": "5291" }, { "key": "geid_144_6254", "source": "6361", "target": "5138" }, { "key": "geid_144_6255", "source": "9004", "target": "7125" }, { "key": "geid_144_6256", "source": "7798", "target": "778" }, { "key": "geid_144_6257", "source": "648", "target": "5193" }, { "key": "geid_144_6258", "source": "3384", "target": "1664" }, { "key": "geid_144_6259", "source": "1702", "target": "3122" }, { "key": "geid_144_6260", "source": "342", "target": "4939" }, { "key": "geid_144_6261", "source": "6911", "target": "9129" }, { "key": "geid_144_6262", "source": "7435", "target": "9787" }, { "key": "geid_144_6263", "source": "3779", "target": "6618" }, { "key": "geid_144_6264", "source": "3933", "target": "8434" }, { "key": "geid_144_6265", "source": "1063", "target": "9973" }, { "key": "geid_144_6266", "source": "4314", "target": "5710" }, { "key": "geid_144_6267", "source": "213", "target": "2144" }, { "key": "geid_144_6268", "source": "2987", "target": "5643" }, { "key": "geid_144_6269", "source": "2465", "target": "2651" }, { "key": "geid_144_6270", "source": "3598", "target": "5618" }, { "key": "geid_144_6271", "source": "5334", "target": "3009" }, { "key": "geid_144_6272", "source": "6456", "target": "372" }, { "key": "geid_144_6273", "source": "4866", "target": "3664" }, { "key": "geid_144_6274", "source": "7127", "target": "2467" }, { "key": "geid_144_6275", "source": "4845", "target": "7785" }, { "key": "geid_144_6276", "source": "5728", "target": "4204" }, { "key": "geid_144_6277", "source": "7683", "target": "414" }, { "key": "geid_144_6278", "source": "1978", "target": "4908" }, { "key": "geid_144_6279", "source": "1113", "target": "4453" }, { "key": "geid_144_6280", "source": "5484", "target": "3825" }, { "key": "geid_144_6281", "source": "5736", "target": "186" }, { "key": "geid_144_6282", "source": "172", "target": "1447" }, { "key": "geid_144_6283", "source": "2015", "target": "334" }, { "key": "geid_144_6284", "source": "6688", "target": "2842" }, { "key": "geid_144_6285", "source": "1679", "target": "5456" }, { "key": "geid_144_6286", "source": "9939", "target": "2313" }, { "key": "geid_144_6287", "source": "8977", "target": "7186" }, { "key": "geid_144_6288", "source": "1704", "target": "8518" }, { "key": "geid_144_6289", "source": "4239", "target": "2373" }, { "key": "geid_144_6290", "source": "5987", "target": "6357" }, { "key": "geid_144_6291", "source": "5916", "target": "6257" }, { "key": "geid_144_6292", "source": "4277", "target": "7704" }, { "key": "geid_144_6293", "source": "2880", "target": "4884" }, { "key": "geid_144_6294", "source": "8276", "target": "6969" }, { "key": "geid_144_6295", "source": "3337", "target": "65" }, { "key": "geid_144_6296", "source": "1778", "target": "6301" }, { "key": "geid_144_6297", "source": "1625", "target": "7994" }, { "key": "geid_144_6298", "source": "2337", "target": "5300" }, { "key": "geid_144_6299", "source": "9718", "target": "1030" }, { "key": "geid_144_6300", "source": "1001", "target": "179" }, { "key": "geid_144_6301", "source": "2319", "target": "4318" }, { "key": "geid_144_6302", "source": "9098", "target": "7201" }, { "key": "geid_144_6303", "source": "7344", "target": "8564" }, { "key": "geid_144_6304", "source": "2555", "target": "1638" }, { "key": "geid_144_6305", "source": "4828", "target": "7599" }, { "key": "geid_144_6306", "source": "5057", "target": "4651" }, { "key": "geid_144_6307", "source": "1214", "target": "9856" }, { "key": "geid_144_6308", "source": "2851", "target": "2640" }, { "key": "geid_144_6309", "source": "1978", "target": "7953" }, { "key": "geid_144_6310", "source": "4318", "target": "8355" }, { "key": "geid_144_6311", "source": "1398", "target": "2761" }, { "key": "geid_144_6312", "source": "8894", "target": "1195" }, { "key": "geid_144_6313", "source": "2362", "target": "576" }, { "key": "geid_144_6314", "source": "3562", "target": "1513" }, { "key": "geid_144_6315", "source": "9748", "target": "4362" }, { "key": "geid_144_6316", "source": "8428", "target": "2055" }, { "key": "geid_144_6317", "source": "3934", "target": "1471" }, { "key": "geid_144_6318", "source": "8719", "target": "841" }, { "key": "geid_144_6319", "source": "7180", "target": "3809" }, { "key": "geid_144_6320", "source": "4056", "target": "5247" }, { "key": "geid_144_6321", "source": "548", "target": "7762" }, { "key": "geid_144_6322", "source": "2532", "target": "3838" }, { "key": "geid_144_6323", "source": "8159", "target": "1433" }, { "key": "geid_144_6324", "source": "2331", "target": "595" }, { "key": "geid_144_6325", "source": "3068", "target": "8187" }, { "key": "geid_144_6326", "source": "3209", "target": "2560" }, { "key": "geid_144_6327", "source": "9265", "target": "5258" }, { "key": "geid_144_6328", "source": "3446", "target": "5896" }, { "key": "geid_144_6329", "source": "6339", "target": "6911" }, { "key": "geid_144_6330", "source": "2475", "target": "1913" }, { "key": "geid_144_6331", "source": "2909", "target": "63" }, { "key": "geid_144_6332", "source": "830", "target": "2629" }, { "key": "geid_144_6333", "source": "3824", "target": "1005" }, { "key": "geid_144_6334", "source": "517", "target": "8126" }, { "key": "geid_144_6335", "source": "929", "target": "5698" }, { "key": "geid_144_6336", "source": "6947", "target": "4512" }, { "key": "geid_144_6337", "source": "190", "target": "3251" }, { "key": "geid_144_6338", "source": "4751", "target": "9886" }, { "key": "geid_144_6339", "source": "9579", "target": "8024" }, { "key": "geid_144_6340", "source": "187", "target": "9609" }, { "key": "geid_144_6341", "source": "5257", "target": "2685" }, { "key": "geid_144_6342", "source": "6572", "target": "9943" }, { "key": "geid_144_6343", "source": "1164", "target": "227" }, { "key": "geid_144_6344", "source": "3091", "target": "9077" }, { "key": "geid_144_6345", "source": "4215", "target": "9419" }, { "key": "geid_144_6346", "source": "3032", "target": "1434" }, { "key": "geid_144_6347", "source": "8557", "target": "6467" }, { "key": "geid_144_6348", "source": "5929", "target": "7534" }, { "key": "geid_144_6349", "source": "2292", "target": "932" }, { "key": "geid_144_6350", "source": "2550", "target": "3136" }, { "key": "geid_144_6351", "source": "5666", "target": "7560" }, { "key": "geid_144_6352", "source": "1727", "target": "980" }, { "key": "geid_144_6353", "source": "9785", "target": "6688" }, { "key": "geid_144_6354", "source": "6225", "target": "1809" }, { "key": "geid_144_6355", "source": "8978", "target": "6819" }, { "key": "geid_144_6356", "source": "7981", "target": "913" }, { "key": "geid_144_6357", "source": "8124", "target": "7610" }, { "key": "geid_144_6358", "source": "6808", "target": "7254" }, { "key": "geid_144_6359", "source": "5638", "target": "4783" }, { "key": "geid_144_6360", "source": "2234", "target": "3246" }, { "key": "geid_144_6361", "source": "2501", "target": "650" }, { "key": "geid_144_6362", "source": "5426", "target": "9293" }, { "key": "geid_144_6363", "source": "8173", "target": "6480" }, { "key": "geid_144_6364", "source": "1647", "target": "9413" }, { "key": "geid_144_6365", "source": "1699", "target": "6120" }, { "key": "geid_144_6366", "source": "9433", "target": "9971" }, { "key": "geid_144_6367", "source": "9121", "target": "2140" }, { "key": "geid_144_6368", "source": "4209", "target": "2104" }, { "key": "geid_144_6369", "source": "2038", "target": "6244" }, { "key": "geid_144_6370", "source": "1905", "target": "3132" }, { "key": "geid_144_6371", "source": "9018", "target": "7986" }, { "key": "geid_144_6372", "source": "3923", "target": "4855" }, { "key": "geid_144_6373", "source": "8387", "target": "2310" }, { "key": "geid_144_6374", "source": "3558", "target": "7277" }, { "key": "geid_144_6375", "source": "6652", "target": "1098" }, { "key": "geid_144_6376", "source": "815", "target": "2000" }, { "key": "geid_144_6377", "source": "2172", "target": "2142" }, { "key": "geid_144_6378", "source": "1000", "target": "6676" }, { "key": "geid_144_6379", "source": "7082", "target": "6999" }, { "key": "geid_144_6380", "source": "5309", "target": "1367" }, { "key": "geid_144_6381", "source": "7881", "target": "1727" }, { "key": "geid_144_6382", "source": "9164", "target": "6500" }, { "key": "geid_144_6383", "source": "6164", "target": "5887" }, { "key": "geid_144_6384", "source": "5099", "target": "8593" }, { "key": "geid_144_6385", "source": "4753", "target": "5704" }, { "key": "geid_144_6386", "source": "6872", "target": "2029" }, { "key": "geid_144_6387", "source": "912", "target": "3183" }, { "key": "geid_144_6388", "source": "780", "target": "7943" }, { "key": "geid_144_6389", "source": "7062", "target": "5673" }, { "key": "geid_144_6390", "source": "9373", "target": "3643" }, { "key": "geid_144_6391", "source": "206", "target": "3658" }, { "key": "geid_144_6392", "source": "2214", "target": "3367" }, { "key": "geid_144_6393", "source": "8006", "target": "4740" }, { "key": "geid_144_6394", "source": "1424", "target": "3792" }, { "key": "geid_144_6395", "source": "6226", "target": "565" }, { "key": "geid_144_6396", "source": "4448", "target": "7672" }, { "key": "geid_144_6397", "source": "6223", "target": "353" }, { "key": "geid_144_6398", "source": "9598", "target": "2224" }, { "key": "geid_144_6399", "source": "2503", "target": "8832" }, { "key": "geid_144_6400", "source": "9523", "target": "9750" }, { "key": "geid_144_6401", "source": "9293", "target": "8434" }, { "key": "geid_144_6402", "source": "3476", "target": "9105" }, { "key": "geid_144_6403", "source": "9789", "target": "5875" }, { "key": "geid_144_6404", "source": "4087", "target": "2715" }, { "key": "geid_144_6405", "source": "41", "target": "5961" }, { "key": "geid_144_6406", "source": "6377", "target": "3764" }, { "key": "geid_144_6407", "source": "1680", "target": "8178" }, { "key": "geid_144_6408", "source": "3063", "target": "6517" }, { "key": "geid_144_6409", "source": "7540", "target": "5487" }, { "key": "geid_144_6410", "source": "753", "target": "8698" }, { "key": "geid_144_6411", "source": "9117", "target": "4852" }, { "key": "geid_144_6412", "source": "4967", "target": "3470" }, { "key": "geid_144_6413", "source": "2079", "target": "4963" }, { "key": "geid_144_6414", "source": "7773", "target": "5048" }, { "key": "geid_144_6415", "source": "9427", "target": "9390" }, { "key": "geid_144_6416", "source": "4911", "target": "1974" }, { "key": "geid_144_6417", "source": "1427", "target": "4911" }, { "key": "geid_144_6418", "source": "748", "target": "5276" }, { "key": "geid_144_6419", "source": "2668", "target": "7518" }, { "key": "geid_144_6420", "source": "2242", "target": "1085" }, { "key": "geid_144_6421", "source": "4961", "target": "8164" }, { "key": "geid_144_6422", "source": "4290", "target": "3725" }, { "key": "geid_144_6423", "source": "1613", "target": "1854" }, { "key": "geid_144_6424", "source": "448", "target": "192" }, { "key": "geid_144_6425", "source": "4426", "target": "853" }, { "key": "geid_144_6426", "source": "2068", "target": "4371" }, { "key": "geid_144_6427", "source": "3629", "target": "7722" }, { "key": "geid_144_6428", "source": "4971", "target": "1057" }, { "key": "geid_144_6429", "source": "6444", "target": "5624" }, { "key": "geid_144_6430", "source": "7175", "target": "3379" }, { "key": "geid_144_6431", "source": "6161", "target": "8262" }, { "key": "geid_144_6432", "source": "4272", "target": "1826" }, { "key": "geid_144_6433", "source": "1306", "target": "8519" }, { "key": "geid_144_6434", "source": "6276", "target": "8704" }, { "key": "geid_144_6435", "source": "2566", "target": "2184" }, { "key": "geid_144_6436", "source": "4784", "target": "6706" }, { "key": "geid_144_6437", "source": "131", "target": "2483" }, { "key": "geid_144_6438", "source": "917", "target": "8613" }, { "key": "geid_144_6439", "source": "3913", "target": "3069" }, { "key": "geid_144_6440", "source": "1611", "target": "8097" }, { "key": "geid_144_6441", "source": "5486", "target": "9558" }, { "key": "geid_144_6442", "source": "4103", "target": "1119" }, { "key": "geid_144_6443", "source": "4240", "target": "356" }, { "key": "geid_144_6444", "source": "275", "target": "9682" }, { "key": "geid_144_6445", "source": "788", "target": "5621" }, { "key": "geid_144_6446", "source": "5737", "target": "3669" }, { "key": "geid_144_6447", "source": "6971", "target": "3018" }, { "key": "geid_144_6448", "source": "36", "target": "5219" }, { "key": "geid_144_6449", "source": "126", "target": "7704" }, { "key": "geid_144_6450", "source": "2230", "target": "1967" }, { "key": "geid_144_6451", "source": "3013", "target": "6111" }, { "key": "geid_144_6452", "source": "7890", "target": "4850" }, { "key": "geid_144_6453", "source": "6539", "target": "630" }, { "key": "geid_144_6454", "source": "6664", "target": "4062" }, { "key": "geid_144_6455", "source": "9869", "target": "470" }, { "key": "geid_144_6456", "source": "7752", "target": "928" }, { "key": "geid_144_6457", "source": "2471", "target": "4371" }, { "key": "geid_144_6458", "source": "2290", "target": "2959" }, { "key": "geid_144_6459", "source": "8110", "target": "4729" }, { "key": "geid_144_6460", "source": "6868", "target": "2326" }, { "key": "geid_144_6461", "source": "1733", "target": "5092" }, { "key": "geid_144_6462", "source": "7775", "target": "6859" }, { "key": "geid_144_6463", "source": "3920", "target": "1016" }, { "key": "geid_144_6464", "source": "9785", "target": "2101" }, { "key": "geid_144_6465", "source": "7378", "target": "9001" }, { "key": "geid_144_6466", "source": "2220", "target": "2854" }, { "key": "geid_144_6467", "source": "6525", "target": "1937" }, { "key": "geid_144_6468", "source": "6082", "target": "9841" }, { "key": "geid_144_6469", "source": "4887", "target": "7716" }, { "key": "geid_144_6470", "source": "5945", "target": "5011" }, { "key": "geid_144_6471", "source": "5109", "target": "273" }, { "key": "geid_144_6472", "source": "6893", "target": "5399" }, { "key": "geid_144_6473", "source": "7241", "target": "227" }, { "key": "geid_144_6474", "source": "9296", "target": "1669" }, { "key": "geid_144_6475", "source": "8715", "target": "5656" }, { "key": "geid_144_6476", "source": "1985", "target": "7063" }, { "key": "geid_144_6477", "source": "6979", "target": "7354" }, { "key": "geid_144_6478", "source": "3376", "target": "4912" }, { "key": "geid_144_6479", "source": "3693", "target": "5003" }, { "key": "geid_144_6480", "source": "6095", "target": "8727" }, { "key": "geid_144_6481", "source": "356", "target": "4896" }, { "key": "geid_144_6482", "source": "5932", "target": "3322" }, { "key": "geid_144_6483", "source": "6785", "target": "818" }, { "key": "geid_144_6484", "source": "4121", "target": "9363" }, { "key": "geid_144_6485", "source": "565", "target": "2843" }, { "key": "geid_144_6486", "source": "7270", "target": "6610" }, { "key": "geid_144_6487", "source": "7876", "target": "200" }, { "key": "geid_144_6488", "source": "6003", "target": "8461" }, { "key": "geid_144_6489", "source": "3424", "target": "199" }, { "key": "geid_144_6490", "source": "5088", "target": "8461" }, { "key": "geid_144_6491", "source": "5704", "target": "7475" }, { "key": "geid_144_6492", "source": "2090", "target": "3687" }, { "key": "geid_144_6493", "source": "4156", "target": "7933" }, { "key": "geid_144_6494", "source": "4560", "target": "1781" }, { "key": "geid_144_6495", "source": "2472", "target": "9048" }, { "key": "geid_144_6496", "source": "2945", "target": "9103" }, { "key": "geid_144_6497", "source": "8220", "target": "7778" }, { "key": "geid_144_6498", "source": "4350", "target": "9536" }, { "key": "geid_144_6499", "source": "9366", "target": "5903" }, { "key": "geid_144_6500", "source": "5473", "target": "2676" }, { "key": "geid_144_6501", "source": "886", "target": "3058" }, { "key": "geid_144_6502", "source": "2557", "target": "1352" }, { "key": "geid_144_6503", "source": "93", "target": "8506" }, { "key": "geid_144_6504", "source": "5878", "target": "2263" }, { "key": "geid_144_6505", "source": "5854", "target": "619" }, { "key": "geid_144_6506", "source": "715", "target": "4287" }, { "key": "geid_144_6507", "source": "3857", "target": "7239" }, { "key": "geid_144_6508", "source": "4247", "target": "1684" }, { "key": "geid_144_6509", "source": "5709", "target": "1281" }, { "key": "geid_144_6510", "source": "8316", "target": "278" }, { "key": "geid_144_6511", "source": "7037", "target": "3751" }, { "key": "geid_144_6512", "source": "6903", "target": "8017" }, { "key": "geid_144_6513", "source": "7200", "target": "8818" }, { "key": "geid_144_6514", "source": "3843", "target": "9909" }, { "key": "geid_144_6515", "source": "6845", "target": "5117" }, { "key": "geid_144_6516", "source": "8344", "target": "8481" }, { "key": "geid_144_6517", "source": "3401", "target": "4065" }, { "key": "geid_144_6518", "source": "8", "target": "7638" }, { "key": "geid_144_6519", "source": "3919", "target": "7470" }, { "key": "geid_144_6520", "source": "7332", "target": "3652" }, { "key": "geid_144_6521", "source": "8601", "target": "3511" }, { "key": "geid_144_6522", "source": "8422", "target": "3583" }, { "key": "geid_144_6523", "source": "4972", "target": "7302" }, { "key": "geid_144_6524", "source": "3780", "target": "6178" }, { "key": "geid_144_6525", "source": "3099", "target": "7396" }, { "key": "geid_144_6526", "source": "5216", "target": "846" }, { "key": "geid_144_6527", "source": "7304", "target": "2246" }, { "key": "geid_144_6528", "source": "1355", "target": "1414" }, { "key": "geid_144_6529", "source": "4701", "target": "4170" }, { "key": "geid_144_6530", "source": "9986", "target": "3835" }, { "key": "geid_144_6531", "source": "9007", "target": "2348" }, { "key": "geid_144_6532", "source": "3769", "target": "9310" }, { "key": "geid_144_6533", "source": "2554", "target": "1899" }, { "key": "geid_144_6534", "source": "1575", "target": "4276" }, { "key": "geid_144_6535", "source": "7181", "target": "6462" }, { "key": "geid_144_6536", "source": "4835", "target": "5684" }, { "key": "geid_144_6537", "source": "3314", "target": "508" }, { "key": "geid_144_6538", "source": "7836", "target": "4717" }, { "key": "geid_144_6539", "source": "2874", "target": "2254" }, { "key": "geid_144_6540", "source": "3214", "target": "9913" }, { "key": "geid_144_6541", "source": "5413", "target": "6192" }, { "key": "geid_144_6542", "source": "4676", "target": "4690" }, { "key": "geid_144_6543", "source": "4580", "target": "2971" }, { "key": "geid_144_6544", "source": "4620", "target": "7735" }, { "key": "geid_144_6545", "source": "4131", "target": "8382" }, { "key": "geid_144_6546", "source": "5026", "target": "6345" }, { "key": "geid_144_6547", "source": "36", "target": "2563" }, { "key": "geid_144_6548", "source": "3108", "target": "3879" }, { "key": "geid_144_6549", "source": "3088", "target": "2908" }, { "key": "geid_144_6550", "source": "687", "target": "8176" }, { "key": "geid_144_6551", "source": "6363", "target": "7798" }, { "key": "geid_144_6552", "source": "1564", "target": "1028" }, { "key": "geid_144_6553", "source": "3836", "target": "2216" }, { "key": "geid_144_6554", "source": "2011", "target": "6012" }, { "key": "geid_144_6555", "source": "2529", "target": "891" }, { "key": "geid_144_6556", "source": "4453", "target": "8354" }, { "key": "geid_144_6557", "source": "6149", "target": "8228" }, { "key": "geid_144_6558", "source": "6250", "target": "2698" }, { "key": "geid_144_6559", "source": "6832", "target": "6386" }, { "key": "geid_144_6560", "source": "7199", "target": "8632" }, { "key": "geid_144_6561", "source": "4256", "target": "3783" }, { "key": "geid_144_6562", "source": "2720", "target": "6124" }, { "key": "geid_144_6563", "source": "6109", "target": "8917" }, { "key": "geid_144_6564", "source": "966", "target": "4942" }, { "key": "geid_144_6565", "source": "3765", "target": "1883" }, { "key": "geid_144_6566", "source": "6041", "target": "2741" }, { "key": "geid_144_6567", "source": "5699", "target": "3956" }, { "key": "geid_144_6568", "source": "3802", "target": "9156" }, { "key": "geid_144_6569", "source": "3665", "target": "6277" }, { "key": "geid_144_6570", "source": "6227", "target": "7182" }, { "key": "geid_144_6571", "source": "2248", "target": "833" }, { "key": "geid_144_6572", "source": "9131", "target": "2570" }, { "key": "geid_144_6573", "source": "4875", "target": "7707" }, { "key": "geid_144_6574", "source": "8095", "target": "2577" }, { "key": "geid_144_6575", "source": "8395", "target": "236" }, { "key": "geid_144_6576", "source": "388", "target": "7701" }, { "key": "geid_144_6577", "source": "3182", "target": "6710" }, { "key": "geid_144_6578", "source": "636", "target": "3959" }, { "key": "geid_144_6579", "source": "3899", "target": "2571" }, { "key": "geid_144_6580", "source": "1298", "target": "4978" }, { "key": "geid_144_6581", "source": "7347", "target": "2427" }, { "key": "geid_144_6582", "source": "4032", "target": "7585" }, { "key": "geid_144_6583", "source": "6652", "target": "5554" }, { "key": "geid_144_6584", "source": "6204", "target": "3773" }, { "key": "geid_144_6585", "source": "3941", "target": "2139" }, { "key": "geid_144_6586", "source": "5427", "target": "3340" }, { "key": "geid_144_6587", "source": "2125", "target": "189" }, { "key": "geid_144_6588", "source": "7030", "target": "7025" }, { "key": "geid_144_6589", "source": "2235", "target": "1370" }, { "key": "geid_144_6590", "source": "3068", "target": "3662" }, { "key": "geid_144_6591", "source": "3812", "target": "252" }, { "key": "geid_144_6592", "source": "1944", "target": "6247" }, { "key": "geid_144_6593", "source": "608", "target": "9611" }, { "key": "geid_144_6594", "source": "4665", "target": "4012" }, { "key": "geid_144_6595", "source": "2096", "target": "3994" }, { "key": "geid_144_6596", "source": "9598", "target": "7155" }, { "key": "geid_144_6597", "source": "9585", "target": "6197" }, { "key": "geid_144_6598", "source": "2541", "target": "1272" }, { "key": "geid_144_6599", "source": "3150", "target": "5876" }, { "key": "geid_144_6600", "source": "5572", "target": "4940" }, { "key": "geid_144_6601", "source": "7625", "target": "983" }, { "key": "geid_144_6602", "source": "4582", "target": "9108" }, { "key": "geid_144_6603", "source": "8805", "target": "8093" }, { "key": "geid_144_6604", "source": "8784", "target": "1042" }, { "key": "geid_144_6605", "source": "792", "target": "2904" }, { "key": "geid_144_6606", "source": "2570", "target": "2508" }, { "key": "geid_144_6607", "source": "7211", "target": "4435" }, { "key": "geid_144_6608", "source": "8085", "target": "1472" }, { "key": "geid_144_6609", "source": "6914", "target": "634" }, { "key": "geid_144_6610", "source": "4934", "target": "3050" }, { "key": "geid_144_6611", "source": "6930", "target": "1472" }, { "key": "geid_144_6612", "source": "6462", "target": "2667" }, { "key": "geid_144_6613", "source": "5863", "target": "3304" }, { "key": "geid_144_6614", "source": "6729", "target": "69" }, { "key": "geid_144_6615", "source": "8334", "target": "9482" }, { "key": "geid_144_6616", "source": "7779", "target": "6540" }, { "key": "geid_144_6617", "source": "6668", "target": "1185" }, { "key": "geid_144_6618", "source": "6250", "target": "5798" }, { "key": "geid_144_6619", "source": "1300", "target": "9403" }, { "key": "geid_144_6620", "source": "2681", "target": "2287" }, { "key": "geid_144_6621", "source": "2639", "target": "5281" }, { "key": "geid_144_6622", "source": "3071", "target": "6268" }, { "key": "geid_144_6623", "source": "6814", "target": "5819" }, { "key": "geid_144_6624", "source": "240", "target": "1040" }, { "key": "geid_144_6625", "source": "3700", "target": "8920" }, { "key": "geid_144_6626", "source": "2451", "target": "2673" }, { "key": "geid_144_6627", "source": "953", "target": "1303" }, { "key": "geid_144_6628", "source": "2448", "target": "4817" }, { "key": "geid_144_6629", "source": "6826", "target": "5850" }, { "key": "geid_144_6630", "source": "463", "target": "2866" }, { "key": "geid_144_6631", "source": "9585", "target": "2899" }, { "key": "geid_144_6632", "source": "7313", "target": "6651" }, { "key": "geid_144_6633", "source": "7584", "target": "294" }, { "key": "geid_144_6634", "source": "8721", "target": "129" }, { "key": "geid_144_6635", "source": "4490", "target": "7400" }, { "key": "geid_144_6636", "source": "9794", "target": "7503" }, { "key": "geid_144_6637", "source": "3910", "target": "7001" }, { "key": "geid_144_6638", "source": "2151", "target": "2249" }, { "key": "geid_144_6639", "source": "7933", "target": "3212" }, { "key": "geid_144_6640", "source": "4444", "target": "4212" }, { "key": "geid_144_6641", "source": "9320", "target": "7289" }, { "key": "geid_144_6642", "source": "6242", "target": "9286" }, { "key": "geid_144_6643", "source": "1939", "target": "1370" }, { "key": "geid_144_6644", "source": "206", "target": "7036" }, { "key": "geid_144_6645", "source": "9570", "target": "7976" }, { "key": "geid_144_6646", "source": "1285", "target": "212" }, { "key": "geid_144_6647", "source": "6088", "target": "835" }, { "key": "geid_144_6648", "source": "3056", "target": "3128" }, { "key": "geid_144_6649", "source": "7244", "target": "1319" }, { "key": "geid_144_6650", "source": "3624", "target": "7171" }, { "key": "geid_144_6651", "source": "159", "target": "3659" }, { "key": "geid_144_6652", "source": "2167", "target": "938" }, { "key": "geid_144_6653", "source": "4636", "target": "2607" }, { "key": "geid_144_6654", "source": "3630", "target": "2219" }, { "key": "geid_144_6655", "source": "3049", "target": "9973" }, { "key": "geid_144_6656", "source": "3797", "target": "6666" }, { "key": "geid_144_6657", "source": "6971", "target": "2613" }, { "key": "geid_144_6658", "source": "4725", "target": "6782" }, { "key": "geid_144_6659", "source": "7792", "target": "4430" }, { "key": "geid_144_6660", "source": "2297", "target": "5412" }, { "key": "geid_144_6661", "source": "5047", "target": "8921" }, { "key": "geid_144_6662", "source": "6639", "target": "8462" }, { "key": "geid_144_6663", "source": "1381", "target": "4474" }, { "key": "geid_144_6664", "source": "3193", "target": "9388" }, { "key": "geid_144_6665", "source": "1157", "target": "115" }, { "key": "geid_144_6666", "source": "1444", "target": "1788" }, { "key": "geid_144_6667", "source": "3337", "target": "9299" }, { "key": "geid_144_6668", "source": "1148", "target": "8605" }, { "key": "geid_144_6669", "source": "9132", "target": "9627" }, { "key": "geid_144_6670", "source": "8506", "target": "3246" }, { "key": "geid_144_6671", "source": "6262", "target": "3186" }, { "key": "geid_144_6672", "source": "5971", "target": "5557" }, { "key": "geid_144_6673", "source": "9778", "target": "4456" }, { "key": "geid_144_6674", "source": "5694", "target": "367" }, { "key": "geid_144_6675", "source": "7258", "target": "2803" }, { "key": "geid_144_6676", "source": "4409", "target": "1995" }, { "key": "geid_144_6677", "source": "5357", "target": "6548" }, { "key": "geid_144_6678", "source": "1859", "target": "6259" }, { "key": "geid_144_6679", "source": "2482", "target": "2636" }, { "key": "geid_144_6680", "source": "4011", "target": "6890" }, { "key": "geid_144_6681", "source": "9496", "target": "7378" }, { "key": "geid_144_6682", "source": "7224", "target": "928" }, { "key": "geid_144_6683", "source": "5314", "target": "9142" }, { "key": "geid_144_6684", "source": "2428", "target": "7249" }, { "key": "geid_144_6685", "source": "8202", "target": "6366" }, { "key": "geid_144_6686", "source": "353", "target": "1823" }, { "key": "geid_144_6687", "source": "8174", "target": "5338" }, { "key": "geid_144_6688", "source": "1225", "target": "9287" }, { "key": "geid_144_6689", "source": "790", "target": "1137" }, { "key": "geid_144_6690", "source": "8073", "target": "6880" }, { "key": "geid_144_6691", "source": "9558", "target": "7077" }, { "key": "geid_144_6692", "source": "8334", "target": "954" }, { "key": "geid_144_6693", "source": "3435", "target": "1324" }, { "key": "geid_144_6694", "source": "4245", "target": "2665" }, { "key": "geid_144_6695", "source": "2563", "target": "2254" }, { "key": "geid_144_6696", "source": "3325", "target": "5904" }, { "key": "geid_144_6697", "source": "6033", "target": "6982" }, { "key": "geid_144_6698", "source": "4277", "target": "846" }, { "key": "geid_144_6699", "source": "3891", "target": "470" }, { "key": "geid_144_6700", "source": "4839", "target": "3022" }, { "key": "geid_144_6701", "source": "4898", "target": "2059" }, { "key": "geid_144_6702", "source": "3851", "target": "9148" }, { "key": "geid_144_6703", "source": "8162", "target": "7844" }, { "key": "geid_144_6704", "source": "2419", "target": "149" }, { "key": "geid_144_6705", "source": "3859", "target": "314" }, { "key": "geid_144_6706", "source": "1098", "target": "4280" }, { "key": "geid_144_6707", "source": "1746", "target": "3331" }, { "key": "geid_144_6708", "source": "483", "target": "3944" }, { "key": "geid_144_6709", "source": "5877", "target": "7113" }, { "key": "geid_144_6710", "source": "5321", "target": "5238" }, { "key": "geid_144_6711", "source": "50", "target": "112" }, { "key": "geid_144_6712", "source": "7709", "target": "4733" }, { "key": "geid_144_6713", "source": "8998", "target": "7142" }, { "key": "geid_144_6714", "source": "4227", "target": "9916" }, { "key": "geid_144_6715", "source": "1982", "target": "8592" }, { "key": "geid_144_6716", "source": "2007", "target": "4614" }, { "key": "geid_144_6717", "source": "6151", "target": "2828" }, { "key": "geid_144_6718", "source": "7806", "target": "9038" }, { "key": "geid_144_6719", "source": "6072", "target": "8946" }, { "key": "geid_144_6720", "source": "7145", "target": "9170" }, { "key": "geid_144_6721", "source": "1288", "target": "8373" }, { "key": "geid_144_6722", "source": "1832", "target": "8348" }, { "key": "geid_144_6723", "source": "6182", "target": "6584" }, { "key": "geid_144_6724", "source": "8432", "target": "9507" }, { "key": "geid_144_6725", "source": "8983", "target": "5555" }, { "key": "geid_144_6726", "source": "7468", "target": "3554" }, { "key": "geid_144_6727", "source": "4082", "target": "3534" }, { "key": "geid_144_6728", "source": "1131", "target": "9104" }, { "key": "geid_144_6729", "source": "922", "target": "8190" }, { "key": "geid_144_6730", "source": "454", "target": "1977" }, { "key": "geid_144_6731", "source": "8022", "target": "2509" }, { "key": "geid_144_6732", "source": "6694", "target": "7595" }, { "key": "geid_144_6733", "source": "9154", "target": "9543" }, { "key": "geid_144_6734", "source": "8582", "target": "1996" }, { "key": "geid_144_6735", "source": "8459", "target": "3863" }, { "key": "geid_144_6736", "source": "975", "target": "3689" }, { "key": "geid_144_6737", "source": "8590", "target": "2283" }, { "key": "geid_144_6738", "source": "6956", "target": "2545" }, { "key": "geid_144_6739", "source": "5307", "target": "1215" }, { "key": "geid_144_6740", "source": "4820", "target": "7659" }, { "key": "geid_144_6741", "source": "3720", "target": "6752" }, { "key": "geid_144_6742", "source": "8209", "target": "1031" }, { "key": "geid_144_6743", "source": "5669", "target": "5722" }, { "key": "geid_144_6744", "source": "3920", "target": "6912" }, { "key": "geid_144_6745", "source": "2443", "target": "1369" }, { "key": "geid_144_6746", "source": "1321", "target": "7691" }, { "key": "geid_144_6747", "source": "4356", "target": "9262" }, { "key": "geid_144_6748", "source": "448", "target": "1828" }, { "key": "geid_144_6749", "source": "4683", "target": "1548" }, { "key": "geid_144_6750", "source": "1930", "target": "8118" }, { "key": "geid_144_6751", "source": "3528", "target": "7637" }, { "key": "geid_144_6752", "source": "1666", "target": "3252" }, { "key": "geid_144_6753", "source": "9964", "target": "4312" }, { "key": "geid_144_6754", "source": "7517", "target": "8626" }, { "key": "geid_144_6755", "source": "8394", "target": "9197" }, { "key": "geid_144_6756", "source": "98", "target": "7429" }, { "key": "geid_144_6757", "source": "5972", "target": "1809" }, { "key": "geid_144_6758", "source": "7401", "target": "7292" }, { "key": "geid_144_6759", "source": "4626", "target": "1930" }, { "key": "geid_144_6760", "source": "507", "target": "7037" }, { "key": "geid_144_6761", "source": "7691", "target": "3454" }, { "key": "geid_144_6762", "source": "730", "target": "5845" }, { "key": "geid_144_6763", "source": "4435", "target": "7190" }, { "key": "geid_144_6764", "source": "3273", "target": "2292" }, { "key": "geid_144_6765", "source": "9704", "target": "8366" }, { "key": "geid_144_6766", "source": "8573", "target": "7165" }, { "key": "geid_144_6767", "source": "2935", "target": "8071" }, { "key": "geid_144_6768", "source": "5714", "target": "864" }, { "key": "geid_144_6769", "source": "847", "target": "3092" }, { "key": "geid_144_6770", "source": "9587", "target": "1134" }, { "key": "geid_144_6771", "source": "9801", "target": "6636" }, { "key": "geid_144_6772", "source": "5802", "target": "3602" }, { "key": "geid_144_6773", "source": "8959", "target": "2307" }, { "key": "geid_144_6774", "source": "723", "target": "7168" }, { "key": "geid_144_6775", "source": "4363", "target": "4306" }, { "key": "geid_144_6776", "source": "9839", "target": "6009" }, { "key": "geid_144_6777", "source": "7554", "target": "2617" }, { "key": "geid_144_6778", "source": "8981", "target": "1824" }, { "key": "geid_144_6779", "source": "8909", "target": "3159" }, { "key": "geid_144_6780", "source": "8017", "target": "3816" }, { "key": "geid_144_6781", "source": "5666", "target": "4530" }, { "key": "geid_144_6782", "source": "2297", "target": "3917" }, { "key": "geid_144_6783", "source": "4701", "target": "654" }, { "key": "geid_144_6784", "source": "5363", "target": "951" }, { "key": "geid_144_6785", "source": "9411", "target": "9938" }, { "key": "geid_144_6786", "source": "7087", "target": "8194" }, { "key": "geid_144_6787", "source": "5347", "target": "7897" }, { "key": "geid_144_6788", "source": "372", "target": "393" }, { "key": "geid_144_6789", "source": "2173", "target": "5180" }, { "key": "geid_144_6790", "source": "2647", "target": "8046" }, { "key": "geid_144_6791", "source": "212", "target": "310" }, { "key": "geid_144_6792", "source": "3255", "target": "5969" }, { "key": "geid_144_6793", "source": "1314", "target": "3580" }, { "key": "geid_144_6794", "source": "1369", "target": "6076" }, { "key": "geid_144_6795", "source": "7268", "target": "4209" }, { "key": "geid_144_6796", "source": "7004", "target": "3473" }, { "key": "geid_144_6797", "source": "560", "target": "1507" }, { "key": "geid_144_6798", "source": "2184", "target": "8375" }, { "key": "geid_144_6799", "source": "701", "target": "5685" }, { "key": "geid_144_6800", "source": "3888", "target": "5757" }, { "key": "geid_144_6801", "source": "2870", "target": "1450" }, { "key": "geid_144_6802", "source": "2825", "target": "316" }, { "key": "geid_144_6803", "source": "3738", "target": "5277" }, { "key": "geid_144_6804", "source": "6112", "target": "2815" }, { "key": "geid_144_6805", "source": "3800", "target": "2607" }, { "key": "geid_144_6806", "source": "4436", "target": "8266" }, { "key": "geid_144_6807", "source": "1697", "target": "8585" }, { "key": "geid_144_6808", "source": "2406", "target": "6474" }, { "key": "geid_144_6809", "source": "3385", "target": "4936" }, { "key": "geid_144_6810", "source": "2570", "target": "3396" }, { "key": "geid_144_6811", "source": "3959", "target": "37" }, { "key": "geid_144_6812", "source": "9597", "target": "4727" }, { "key": "geid_144_6813", "source": "9421", "target": "6972" }, { "key": "geid_144_6814", "source": "9068", "target": "9777" }, { "key": "geid_144_6815", "source": "8104", "target": "3906" }, { "key": "geid_144_6816", "source": "4680", "target": "3357" }, { "key": "geid_144_6817", "source": "5143", "target": "4563" }, { "key": "geid_144_6818", "source": "6668", "target": "547" }, { "key": "geid_144_6819", "source": "2981", "target": "4193" }, { "key": "geid_144_6820", "source": "7001", "target": "6858" }, { "key": "geid_144_6821", "source": "52", "target": "9718" }, { "key": "geid_144_6822", "source": "7490", "target": "1822" }, { "key": "geid_144_6823", "source": "2743", "target": "4995" }, { "key": "geid_144_6824", "source": "9575", "target": "8538" }, { "key": "geid_144_6825", "source": "7120", "target": "7992" }, { "key": "geid_144_6826", "source": "2214", "target": "6381" }, { "key": "geid_144_6827", "source": "2025", "target": "1658" }, { "key": "geid_144_6828", "source": "7700", "target": "2448" }, { "key": "geid_144_6829", "source": "5361", "target": "5606" }, { "key": "geid_144_6830", "source": "5786", "target": "5902" }, { "key": "geid_144_6831", "source": "6803", "target": "1141" }, { "key": "geid_144_6832", "source": "550", "target": "3465" }, { "key": "geid_144_6833", "source": "7311", "target": "3780" }, { "key": "geid_144_6834", "source": "436", "target": "3838" }, { "key": "geid_144_6835", "source": "5666", "target": "7314" }, { "key": "geid_144_6836", "source": "7970", "target": "5542" }, { "key": "geid_144_6837", "source": "9583", "target": "7166" }, { "key": "geid_144_6838", "source": "7666", "target": "1317" }, { "key": "geid_144_6839", "source": "9318", "target": "437" }, { "key": "geid_144_6840", "source": "6612", "target": "1916" }, { "key": "geid_144_6841", "source": "5256", "target": "5196" }, { "key": "geid_144_6842", "source": "3199", "target": "3043" }, { "key": "geid_144_6843", "source": "7915", "target": "9966" }, { "key": "geid_144_6844", "source": "3839", "target": "1495" }, { "key": "geid_144_6845", "source": "398", "target": "598" }, { "key": "geid_144_6846", "source": "9587", "target": "7612" }, { "key": "geid_144_6847", "source": "83", "target": "1040" }, { "key": "geid_144_6848", "source": "7289", "target": "4840" }, { "key": "geid_144_6849", "source": "5854", "target": "4416" }, { "key": "geid_144_6850", "source": "5382", "target": "663" }, { "key": "geid_144_6851", "source": "6425", "target": "6191" }, { "key": "geid_144_6852", "source": "467", "target": "15" }, { "key": "geid_144_6853", "source": "8159", "target": "4046" }, { "key": "geid_144_6854", "source": "5353", "target": "3514" }, { "key": "geid_144_6855", "source": "3582", "target": "8339" }, { "key": "geid_144_6856", "source": "9706", "target": "9154" }, { "key": "geid_144_6857", "source": "3642", "target": "5234" }, { "key": "geid_144_6858", "source": "2558", "target": "2169" }, { "key": "geid_144_6859", "source": "2816", "target": "3881" }, { "key": "geid_144_6860", "source": "1779", "target": "713" }, { "key": "geid_144_6861", "source": "993", "target": "946" }, { "key": "geid_144_6862", "source": "13", "target": "8797" }, { "key": "geid_144_6863", "source": "6339", "target": "6663" }, { "key": "geid_144_6864", "source": "4048", "target": "5488" }, { "key": "geid_144_6865", "source": "6182", "target": "8173" }, { "key": "geid_144_6866", "source": "2968", "target": "5808" }, { "key": "geid_144_6867", "source": "5391", "target": "5935" }, { "key": "geid_144_6868", "source": "5860", "target": "2106" }, { "key": "geid_144_6869", "source": "3131", "target": "9422" }, { "key": "geid_144_6870", "source": "1090", "target": "846" }, { "key": "geid_144_6871", "source": "9822", "target": "6368" }, { "key": "geid_144_6872", "source": "4992", "target": "9815" }, { "key": "geid_144_6873", "source": "5005", "target": "3531" }, { "key": "geid_144_6874", "source": "3586", "target": "629" }, { "key": "geid_144_6875", "source": "8149", "target": "8192" }, { "key": "geid_144_6876", "source": "3024", "target": "6807" }, { "key": "geid_144_6877", "source": "3637", "target": "8768" }, { "key": "geid_144_6878", "source": "1589", "target": "232" }, { "key": "geid_144_6879", "source": "2412", "target": "995" }, { "key": "geid_144_6880", "source": "2673", "target": "7846" }, { "key": "geid_144_6881", "source": "8185", "target": "6412" }, { "key": "geid_144_6882", "source": "7906", "target": "97" }, { "key": "geid_144_6883", "source": "7686", "target": "8203" }, { "key": "geid_144_6884", "source": "661", "target": "4784" }, { "key": "geid_144_6885", "source": "7159", "target": "6209" }, { "key": "geid_144_6886", "source": "8747", "target": "8347" }, { "key": "geid_144_6887", "source": "2714", "target": "7012" }, { "key": "geid_144_6888", "source": "2014", "target": "9269" }, { "key": "geid_144_6889", "source": "7675", "target": "3432" }, { "key": "geid_144_6890", "source": "2720", "target": "4473" }, { "key": "geid_144_6891", "source": "8234", "target": "6020" }, { "key": "geid_144_6892", "source": "7285", "target": "3499" }, { "key": "geid_144_6893", "source": "1979", "target": "6705" }, { "key": "geid_144_6894", "source": "6285", "target": "9612" }, { "key": "geid_144_6895", "source": "4817", "target": "4049" }, { "key": "geid_144_6896", "source": "509", "target": "9120" }, { "key": "geid_144_6897", "source": "8471", "target": "4316" }, { "key": "geid_144_6898", "source": "3204", "target": "8407" }, { "key": "geid_144_6899", "source": "804", "target": "6732" }, { "key": "geid_144_6900", "source": "6711", "target": "7454" }, { "key": "geid_144_6901", "source": "8854", "target": "9270" }, { "key": "geid_144_6902", "source": "8379", "target": "5436" }, { "key": "geid_144_6903", "source": "2534", "target": "3346" }, { "key": "geid_144_6904", "source": "3767", "target": "4227" }, { "key": "geid_144_6905", "source": "5938", "target": "9973" }, { "key": "geid_144_6906", "source": "9131", "target": "3747" }, { "key": "geid_144_6907", "source": "9243", "target": "400" }, { "key": "geid_144_6908", "source": "8927", "target": "5515" }, { "key": "geid_144_6909", "source": "3852", "target": "8735" }, { "key": "geid_144_6910", "source": "7346", "target": "3685" }, { "key": "geid_144_6911", "source": "3179", "target": "9184" }, { "key": "geid_144_6912", "source": "3332", "target": "5604" }, { "key": "geid_144_6913", "source": "8649", "target": "5408" }, { "key": "geid_144_6914", "source": "4677", "target": "6752" }, { "key": "geid_144_6915", "source": "7044", "target": "5490" }, { "key": "geid_144_6916", "source": "7276", "target": "947" }, { "key": "geid_144_6917", "source": "6853", "target": "8318" }, { "key": "geid_144_6918", "source": "7374", "target": "6144" }, { "key": "geid_144_6919", "source": "9445", "target": "5424" }, { "key": "geid_144_6920", "source": "2378", "target": "4718" }, { "key": "geid_144_6921", "source": "568", "target": "5892" }, { "key": "geid_144_6922", "source": "9798", "target": "7517" }, { "key": "geid_144_6923", "source": "2561", "target": "5690" }, { "key": "geid_144_6924", "source": "4213", "target": "5467" }, { "key": "geid_144_6925", "source": "5131", "target": "6004" }, { "key": "geid_144_6926", "source": "7961", "target": "5669" }, { "key": "geid_144_6927", "source": "9087", "target": "4212" }, { "key": "geid_144_6928", "source": "4108", "target": "9745" }, { "key": "geid_144_6929", "source": "2285", "target": "1429" }, { "key": "geid_144_6930", "source": "2560", "target": "4623" }, { "key": "geid_144_6931", "source": "6132", "target": "106" }, { "key": "geid_144_6932", "source": "4666", "target": "6917" }, { "key": "geid_144_6933", "source": "7527", "target": "1574" }, { "key": "geid_144_6934", "source": "6993", "target": "5055" }, { "key": "geid_144_6935", "source": "8554", "target": "3767" }, { "key": "geid_144_6936", "source": "7480", "target": "1936" }, { "key": "geid_144_6937", "source": "4014", "target": "8400" }, { "key": "geid_144_6938", "source": "8073", "target": "5501" }, { "key": "geid_144_6939", "source": "6991", "target": "7993" }, { "key": "geid_144_6940", "source": "2617", "target": "7186" }, { "key": "geid_144_6941", "source": "1896", "target": "8701" }, { "key": "geid_144_6942", "source": "4591", "target": "5564" }, { "key": "geid_144_6943", "source": "8365", "target": "1436" }, { "key": "geid_144_6944", "source": "646", "target": "7911" }, { "key": "geid_144_6945", "source": "608", "target": "6218" }, { "key": "geid_144_6946", "source": "4780", "target": "1401" }, { "key": "geid_144_6947", "source": "4347", "target": "5426" }, { "key": "geid_144_6948", "source": "324", "target": "6034" }, { "key": "geid_144_6949", "source": "5565", "target": "3971" }, { "key": "geid_144_6950", "source": "4708", "target": "1130" }, { "key": "geid_144_6951", "source": "6056", "target": "1851" }, { "key": "geid_144_6952", "source": "2435", "target": "2673" }, { "key": "geid_144_6953", "source": "1825", "target": "359" }, { "key": "geid_144_6954", "source": "7586", "target": "5468" }, { "key": "geid_144_6955", "source": "9431", "target": "8737" }, { "key": "geid_144_6956", "source": "5946", "target": "2065" }, { "key": "geid_144_6957", "source": "6071", "target": "2011" }, { "key": "geid_144_6958", "source": "1887", "target": "120" }, { "key": "geid_144_6959", "source": "8062", "target": "8011" }, { "key": "geid_144_6960", "source": "3554", "target": "5271" }, { "key": "geid_144_6961", "source": "3441", "target": "5741" }, { "key": "geid_144_6962", "source": "226", "target": "5229" }, { "key": "geid_144_6963", "source": "8325", "target": "6557" }, { "key": "geid_144_6964", "source": "7390", "target": "1915" }, { "key": "geid_144_6965", "source": "3289", "target": "3705" }, { "key": "geid_144_6966", "source": "350", "target": "2299" }, { "key": "geid_144_6967", "source": "4446", "target": "6005" }, { "key": "geid_144_6968", "source": "5031", "target": "8023" }, { "key": "geid_144_6969", "source": "3529", "target": "1075" }, { "key": "geid_144_6970", "source": "5722", "target": "6637" }, { "key": "geid_144_6971", "source": "5331", "target": "445" }, { "key": "geid_144_6972", "source": "7265", "target": "410" }, { "key": "geid_144_6973", "source": "8279", "target": "5438" }, { "key": "geid_144_6974", "source": "9708", "target": "5658" }, { "key": "geid_144_6975", "source": "5807", "target": "2" }, { "key": "geid_144_6976", "source": "7142", "target": "5634" }, { "key": "geid_144_6977", "source": "132", "target": "4116" }, { "key": "geid_144_6978", "source": "1014", "target": "5664" }, { "key": "geid_144_6979", "source": "681", "target": "2963" }, { "key": "geid_144_6980", "source": "8458", "target": "3963" }, { "key": "geid_144_6981", "source": "3969", "target": "6331" }, { "key": "geid_144_6982", "source": "467", "target": "4788" }, { "key": "geid_144_6983", "source": "1099", "target": "6133" }, { "key": "geid_144_6984", "source": "5197", "target": "2479" }, { "key": "geid_144_6985", "source": "9047", "target": "4172" }, { "key": "geid_144_6986", "source": "2218", "target": "3297" }, { "key": "geid_144_6987", "source": "9784", "target": "3336" }, { "key": "geid_144_6988", "source": "5804", "target": "7933" }, { "key": "geid_144_6989", "source": "3124", "target": "1235" }, { "key": "geid_144_6990", "source": "1525", "target": "8626" }, { "key": "geid_144_6991", "source": "6759", "target": "4515" }, { "key": "geid_144_6992", "source": "3102", "target": "1573" }, { "key": "geid_144_6993", "source": "4943", "target": "6202" }, { "key": "geid_144_6994", "source": "3665", "target": "3021" }, { "key": "geid_144_6995", "source": "6728", "target": "8339" }, { "key": "geid_144_6996", "source": "828", "target": "5640" }, { "key": "geid_144_6997", "source": "6682", "target": "3771" }, { "key": "geid_144_6998", "source": "6941", "target": "3294" }, { "key": "geid_144_6999", "source": "8817", "target": "2620" }, { "key": "geid_144_7000", "source": "9484", "target": "8062" }, { "key": "geid_144_7001", "source": "7835", "target": "8100" }, { "key": "geid_144_7002", "source": "1809", "target": "5809" }, { "key": "geid_144_7003", "source": "7706", "target": "4679" }, { "key": "geid_144_7004", "source": "4375", "target": "8595" }, { "key": "geid_144_7005", "source": "7762", "target": "1629" }, { "key": "geid_144_7006", "source": "7575", "target": "7128" }, { "key": "geid_144_7007", "source": "7913", "target": "6160" }, { "key": "geid_144_7008", "source": "7964", "target": "988" }, { "key": "geid_144_7009", "source": "6997", "target": "1976" }, { "key": "geid_144_7010", "source": "5449", "target": "9183" }, { "key": "geid_144_7011", "source": "1898", "target": "1535" }, { "key": "geid_144_7012", "source": "5391", "target": "6994" }, { "key": "geid_144_7013", "source": "88", "target": "2596" }, { "key": "geid_144_7014", "source": "4398", "target": "7261" }, { "key": "geid_144_7015", "source": "7220", "target": "473" }, { "key": "geid_144_7016", "source": "7323", "target": "6514" }, { "key": "geid_144_7017", "source": "8525", "target": "8767" }, { "key": "geid_144_7018", "source": "6534", "target": "1374" }, { "key": "geid_144_7019", "source": "5531", "target": "6780" }, { "key": "geid_144_7020", "source": "8346", "target": "1832" }, { "key": "geid_144_7021", "source": "2444", "target": "8258" }, { "key": "geid_144_7022", "source": "9253", "target": "9731" }, { "key": "geid_144_7023", "source": "2798", "target": "6978" }, { "key": "geid_144_7024", "source": "9758", "target": "2708" }, { "key": "geid_144_7025", "source": "4279", "target": "4754" }, { "key": "geid_144_7026", "source": "6616", "target": "6836" }, { "key": "geid_144_7027", "source": "1512", "target": "8337" }, { "key": "geid_144_7028", "source": "2446", "target": "4686" }, { "key": "geid_144_7029", "source": "8004", "target": "6251" }, { "key": "geid_144_7030", "source": "5706", "target": "1579" }, { "key": "geid_144_7031", "source": "2296", "target": "269" }, { "key": "geid_144_7032", "source": "9679", "target": "9578" }, { "key": "geid_144_7033", "source": "363", "target": "3103" }, { "key": "geid_144_7034", "source": "8403", "target": "1928" }, { "key": "geid_144_7035", "source": "68", "target": "6447" }, { "key": "geid_144_7036", "source": "8635", "target": "7418" }, { "key": "geid_144_7037", "source": "9964", "target": "1020" }, { "key": "geid_144_7038", "source": "3568", "target": "8290" }, { "key": "geid_144_7039", "source": "8040", "target": "5757" }, { "key": "geid_144_7040", "source": "6915", "target": "234" }, { "key": "geid_144_7041", "source": "8397", "target": "7283" }, { "key": "geid_144_7042", "source": "246", "target": "3319" }, { "key": "geid_144_7043", "source": "1622", "target": "5660" }, { "key": "geid_144_7044", "source": "5404", "target": "7364" }, { "key": "geid_144_7045", "source": "882", "target": "1307" }, { "key": "geid_144_7046", "source": "1115", "target": "5664" }, { "key": "geid_144_7047", "source": "5015", "target": "1303" }, { "key": "geid_144_7048", "source": "9608", "target": "2368" }, { "key": "geid_144_7049", "source": "9002", "target": "3010" }, { "key": "geid_144_7050", "source": "6706", "target": "9829" }, { "key": "geid_144_7051", "source": "6166", "target": "8920" }, { "key": "geid_144_7052", "source": "7856", "target": "7482" }, { "key": "geid_144_7053", "source": "9171", "target": "5305" }, { "key": "geid_144_7054", "source": "7849", "target": "9624" }, { "key": "geid_144_7055", "source": "8574", "target": "4114" }, { "key": "geid_144_7056", "source": "4092", "target": "2858" }, { "key": "geid_144_7057", "source": "7340", "target": "4754" }, { "key": "geid_144_7058", "source": "2124", "target": "9104" }, { "key": "geid_144_7059", "source": "9523", "target": "1578" }, { "key": "geid_144_7060", "source": "3616", "target": "8191" }, { "key": "geid_144_7061", "source": "8693", "target": "3283" }, { "key": "geid_144_7062", "source": "3957", "target": "977" }, { "key": "geid_144_7063", "source": "5220", "target": "7360" }, { "key": "geid_144_7064", "source": "9847", "target": "8263" }, { "key": "geid_144_7065", "source": "2257", "target": "2671" }, { "key": "geid_144_7066", "source": "4303", "target": "9699" }, { "key": "geid_144_7067", "source": "397", "target": "4678" }, { "key": "geid_144_7068", "source": "9476", "target": "2851" }, { "key": "geid_144_7069", "source": "1366", "target": "7184" }, { "key": "geid_144_7070", "source": "3264", "target": "4213" }, { "key": "geid_144_7071", "source": "2419", "target": "3841" }, { "key": "geid_144_7072", "source": "7620", "target": "247" }, { "key": "geid_144_7073", "source": "814", "target": "9677" }, { "key": "geid_144_7074", "source": "5391", "target": "97" }, { "key": "geid_144_7075", "source": "4922", "target": "7445" }, { "key": "geid_144_7076", "source": "4008", "target": "5846" }, { "key": "geid_144_7077", "source": "5986", "target": "9804" }, { "key": "geid_144_7078", "source": "276", "target": "9107" }, { "key": "geid_144_7079", "source": "4698", "target": "9063" }, { "key": "geid_144_7080", "source": "5859", "target": "4746" }, { "key": "geid_144_7081", "source": "6846", "target": "4035" }, { "key": "geid_144_7082", "source": "5365", "target": "9740" }, { "key": "geid_144_7083", "source": "8488", "target": "6649" }, { "key": "geid_144_7084", "source": "9311", "target": "5744" }, { "key": "geid_144_7085", "source": "3792", "target": "1226" }, { "key": "geid_144_7086", "source": "6257", "target": "7823" }, { "key": "geid_144_7087", "source": "57", "target": "2837" }, { "key": "geid_144_7088", "source": "1059", "target": "3920" }, { "key": "geid_144_7089", "source": "3965", "target": "3583" }, { "key": "geid_144_7090", "source": "5550", "target": "6259" }, { "key": "geid_144_7091", "source": "5597", "target": "1132" }, { "key": "geid_144_7092", "source": "6163", "target": "2150" }, { "key": "geid_144_7093", "source": "3654", "target": "8778" }, { "key": "geid_144_7094", "source": "1613", "target": "3245" }, { "key": "geid_144_7095", "source": "6855", "target": "4308" }, { "key": "geid_144_7096", "source": "1445", "target": "9541" }, { "key": "geid_144_7097", "source": "9336", "target": "5229" }, { "key": "geid_144_7098", "source": "2526", "target": "3400" }, { "key": "geid_144_7099", "source": "39", "target": "6957" }, { "key": "geid_144_7100", "source": "6669", "target": "9094" }, { "key": "geid_144_7101", "source": "5087", "target": "2823" }, { "key": "geid_144_7102", "source": "7690", "target": "6835" }, { "key": "geid_144_7103", "source": "8834", "target": "3037" }, { "key": "geid_144_7104", "source": "8781", "target": "2940" }, { "key": "geid_144_7105", "source": "1659", "target": "2572" }, { "key": "geid_144_7106", "source": "9548", "target": "41" }, { "key": "geid_144_7107", "source": "7732", "target": "5149" }, { "key": "geid_144_7108", "source": "8481", "target": "3197" }, { "key": "geid_144_7109", "source": "7010", "target": "9250" }, { "key": "geid_144_7110", "source": "2335", "target": "6576" }, { "key": "geid_144_7111", "source": "8759", "target": "9742" }, { "key": "geid_144_7112", "source": "7254", "target": "3452" }, { "key": "geid_144_7113", "source": "7664", "target": "9971" }, { "key": "geid_144_7114", "source": "9079", "target": "8774" }, { "key": "geid_144_7115", "source": "4828", "target": "2507" }, { "key": "geid_144_7116", "source": "9317", "target": "7617" }, { "key": "geid_144_7117", "source": "4274", "target": "5154" }, { "key": "geid_144_7118", "source": "8090", "target": "8006" }, { "key": "geid_144_7119", "source": "4809", "target": "2751" }, { "key": "geid_144_7120", "source": "9580", "target": "9917" }, { "key": "geid_144_7121", "source": "2278", "target": "3027" }, { "key": "geid_144_7122", "source": "3618", "target": "8566" }, { "key": "geid_144_7123", "source": "3386", "target": "8764" }, { "key": "geid_144_7124", "source": "6059", "target": "1197" }, { "key": "geid_144_7125", "source": "8852", "target": "9462" }, { "key": "geid_144_7126", "source": "490", "target": "1973" }, { "key": "geid_144_7127", "source": "8371", "target": "3309" }, { "key": "geid_144_7128", "source": "6031", "target": "3870" }, { "key": "geid_144_7129", "source": "1190", "target": "982" }, { "key": "geid_144_7130", "source": "8565", "target": "376" }, { "key": "geid_144_7131", "source": "8567", "target": "8182" }, { "key": "geid_144_7132", "source": "2029", "target": "2354" }, { "key": "geid_144_7133", "source": "7845", "target": "5398" }, { "key": "geid_144_7134", "source": "1141", "target": "7067" }, { "key": "geid_144_7135", "source": "1183", "target": "3299" }, { "key": "geid_144_7136", "source": "8830", "target": "7336" }, { "key": "geid_144_7137", "source": "2580", "target": "9855" }, { "key": "geid_144_7138", "source": "4644", "target": "3255" }, { "key": "geid_144_7139", "source": "8537", "target": "7869" }, { "key": "geid_144_7140", "source": "6646", "target": "1311" }, { "key": "geid_144_7141", "source": "3831", "target": "4965" }, { "key": "geid_144_7142", "source": "1404", "target": "2235" }, { "key": "geid_144_7143", "source": "3789", "target": "5034" }, { "key": "geid_144_7144", "source": "1751", "target": "2104" }, { "key": "geid_144_7145", "source": "9767", "target": "6405" }, { "key": "geid_144_7146", "source": "4126", "target": "6601" }, { "key": "geid_144_7147", "source": "271", "target": "6690" }, { "key": "geid_144_7148", "source": "4907", "target": "3956" }, { "key": "geid_144_7149", "source": "1120", "target": "4643" }, { "key": "geid_144_7150", "source": "1393", "target": "7800" }, { "key": "geid_144_7151", "source": "1899", "target": "6223" }, { "key": "geid_144_7152", "source": "8554", "target": "2561" }, { "key": "geid_144_7153", "source": "6567", "target": "5950" }, { "key": "geid_144_7154", "source": "4601", "target": "4743" }, { "key": "geid_144_7155", "source": "8876", "target": "3993" }, { "key": "geid_144_7156", "source": "359", "target": "6339" }, { "key": "geid_144_7157", "source": "4354", "target": "3572" }, { "key": "geid_144_7158", "source": "664", "target": "6543" }, { "key": "geid_144_7159", "source": "3886", "target": "65" }, { "key": "geid_144_7160", "source": "9793", "target": "2313" }, { "key": "geid_144_7161", "source": "7045", "target": "2931" }, { "key": "geid_144_7162", "source": "4426", "target": "410" }, { "key": "geid_144_7163", "source": "2983", "target": "1255" }, { "key": "geid_144_7164", "source": "9948", "target": "5272" }, { "key": "geid_144_7165", "source": "3064", "target": "1811" }, { "key": "geid_144_7166", "source": "6534", "target": "8906" }, { "key": "geid_144_7167", "source": "8655", "target": "2394" }, { "key": "geid_144_7168", "source": "8873", "target": "1459" }, { "key": "geid_144_7169", "source": "5962", "target": "808" }, { "key": "geid_144_7170", "source": "7710", "target": "585" }, { "key": "geid_144_7171", "source": "4467", "target": "4774" }, { "key": "geid_144_7172", "source": "7330", "target": "4687" }, { "key": "geid_144_7173", "source": "6339", "target": "2347" }, { "key": "geid_144_7174", "source": "1202", "target": "8813" }, { "key": "geid_144_7175", "source": "8199", "target": "585" }, { "key": "geid_144_7176", "source": "8452", "target": "9228" }, { "key": "geid_144_7177", "source": "9387", "target": "5275" }, { "key": "geid_144_7178", "source": "2435", "target": "4685" }, { "key": "geid_144_7179", "source": "6615", "target": "7316" }, { "key": "geid_144_7180", "source": "8909", "target": "8230" }, { "key": "geid_144_7181", "source": "6077", "target": "4111" }, { "key": "geid_144_7182", "source": "5172", "target": "5238" }, { "key": "geid_144_7183", "source": "4322", "target": "2728" }, { "key": "geid_144_7184", "source": "1243", "target": "8062" }, { "key": "geid_144_7185", "source": "3608", "target": "3825" }, { "key": "geid_144_7186", "source": "3387", "target": "2413" }, { "key": "geid_144_7187", "source": "9312", "target": "4431" }, { "key": "geid_144_7188", "source": "2243", "target": "4044" }, { "key": "geid_144_7189", "source": "3762", "target": "5673" }, { "key": "geid_144_7190", "source": "1693", "target": "9931" }, { "key": "geid_144_7191", "source": "3829", "target": "901" }, { "key": "geid_144_7192", "source": "9370", "target": "5562" }, { "key": "geid_144_7193", "source": "2820", "target": "3524" }, { "key": "geid_144_7194", "source": "5341", "target": "3995" }, { "key": "geid_144_7195", "source": "3967", "target": "9841" }, { "key": "geid_144_7196", "source": "4626", "target": "8013" }, { "key": "geid_144_7197", "source": "9047", "target": "521" }, { "key": "geid_144_7198", "source": "5573", "target": "9069" }, { "key": "geid_144_7199", "source": "928", "target": "7283" }, { "key": "geid_144_7200", "source": "9717", "target": "2370" }, { "key": "geid_144_7201", "source": "929", "target": "9584" }, { "key": "geid_144_7202", "source": "2612", "target": "488" }, { "key": "geid_144_7203", "source": "8487", "target": "1841" }, { "key": "geid_144_7204", "source": "9885", "target": "6045" }, { "key": "geid_144_7205", "source": "8934", "target": "8427" }, { "key": "geid_144_7206", "source": "6721", "target": "6189" }, { "key": "geid_144_7207", "source": "1006", "target": "616" }, { "key": "geid_144_7208", "source": "8652", "target": "178" }, { "key": "geid_144_7209", "source": "6445", "target": "6048" }, { "key": "geid_144_7210", "source": "6924", "target": "583" }, { "key": "geid_144_7211", "source": "1180", "target": "6287" }, { "key": "geid_144_7212", "source": "4317", "target": "3875" }, { "key": "geid_144_7213", "source": "4047", "target": "3374" }, { "key": "geid_144_7214", "source": "1999", "target": "686" }, { "key": "geid_144_7215", "source": "8162", "target": "8470" }, { "key": "geid_144_7216", "source": "8175", "target": "8871" }, { "key": "geid_144_7217", "source": "6581", "target": "5793" }, { "key": "geid_144_7218", "source": "307", "target": "988" }, { "key": "geid_144_7219", "source": "2870", "target": "1000" }, { "key": "geid_144_7220", "source": "8321", "target": "9595" }, { "key": "geid_144_7221", "source": "2791", "target": "7054" }, { "key": "geid_144_7222", "source": "7345", "target": "9050" }, { "key": "geid_144_7223", "source": "4150", "target": "1745" }, { "key": "geid_144_7224", "source": "4888", "target": "9198" }, { "key": "geid_144_7225", "source": "1798", "target": "2564" }, { "key": "geid_144_7226", "source": "7646", "target": "5371" }, { "key": "geid_144_7227", "source": "5169", "target": "5771" }, { "key": "geid_144_7228", "source": "1401", "target": "1193" }, { "key": "geid_144_7229", "source": "2004", "target": "1887" }, { "key": "geid_144_7230", "source": "6206", "target": "6279" }, { "key": "geid_144_7231", "source": "7294", "target": "3711" }, { "key": "geid_144_7232", "source": "340", "target": "7710" }, { "key": "geid_144_7233", "source": "5941", "target": "7127" }, { "key": "geid_144_7234", "source": "9033", "target": "8889" }, { "key": "geid_144_7235", "source": "2163", "target": "9751" }, { "key": "geid_144_7236", "source": "9424", "target": "7786" }, { "key": "geid_144_7237", "source": "6516", "target": "3788" }, { "key": "geid_144_7238", "source": "5385", "target": "7124" }, { "key": "geid_144_7239", "source": "3529", "target": "5334" }, { "key": "geid_144_7240", "source": "964", "target": "6334" }, { "key": "geid_144_7241", "source": "2650", "target": "1120" }, { "key": "geid_144_7242", "source": "1090", "target": "9585" }, { "key": "geid_144_7243", "source": "6928", "target": "4396" }, { "key": "geid_144_7244", "source": "8645", "target": "3372" }, { "key": "geid_144_7245", "source": "7722", "target": "6037" }, { "key": "geid_144_7246", "source": "5145", "target": "1694" }, { "key": "geid_144_7247", "source": "3157", "target": "1817" }, { "key": "geid_144_7248", "source": "7625", "target": "877" }, { "key": "geid_144_7249", "source": "6162", "target": "1185" }, { "key": "geid_144_7250", "source": "9515", "target": "1072" }, { "key": "geid_144_7251", "source": "2294", "target": "1937" }, { "key": "geid_144_7252", "source": "308", "target": "4832" }, { "key": "geid_144_7253", "source": "7520", "target": "4152" }, { "key": "geid_144_7254", "source": "7370", "target": "2259" }, { "key": "geid_144_7255", "source": "3136", "target": "2322" }, { "key": "geid_144_7256", "source": "3881", "target": "6758" }, { "key": "geid_144_7257", "source": "2773", "target": "3064" }, { "key": "geid_144_7258", "source": "7517", "target": "3689" }, { "key": "geid_144_7259", "source": "4971", "target": "303" }, { "key": "geid_144_7260", "source": "158", "target": "2253" }, { "key": "geid_144_7261", "source": "7605", "target": "6919" }, { "key": "geid_144_7262", "source": "5953", "target": "4987" }, { "key": "geid_144_7263", "source": "4356", "target": "3582" }, { "key": "geid_144_7264", "source": "2072", "target": "9107" }, { "key": "geid_144_7265", "source": "798", "target": "5705" }, { "key": "geid_144_7266", "source": "8524", "target": "7625" }, { "key": "geid_144_7267", "source": "7776", "target": "2272" }, { "key": "geid_144_7268", "source": "2744", "target": "7335" }, { "key": "geid_144_7269", "source": "314", "target": "8545" }, { "key": "geid_144_7270", "source": "8950", "target": "6425" }, { "key": "geid_144_7271", "source": "5047", "target": "9971" }, { "key": "geid_144_7272", "source": "9774", "target": "8740" }, { "key": "geid_144_7273", "source": "9193", "target": "4204" }, { "key": "geid_144_7274", "source": "8848", "target": "2651" }, { "key": "geid_144_7275", "source": "7987", "target": "6559" }, { "key": "geid_144_7276", "source": "4477", "target": "3773" }, { "key": "geid_144_7277", "source": "3516", "target": "8552" }, { "key": "geid_144_7278", "source": "2643", "target": "6600" }, { "key": "geid_144_7279", "source": "7229", "target": "4823" }, { "key": "geid_144_7280", "source": "121", "target": "6298" }, { "key": "geid_144_7281", "source": "9438", "target": "9253" }, { "key": "geid_144_7282", "source": "9739", "target": "6043" }, { "key": "geid_144_7283", "source": "3764", "target": "9981" }, { "key": "geid_144_7284", "source": "3742", "target": "5234" }, { "key": "geid_144_7285", "source": "4353", "target": "6679" }, { "key": "geid_144_7286", "source": "9664", "target": "7038" }, { "key": "geid_144_7287", "source": "1675", "target": "6575" }, { "key": "geid_144_7288", "source": "5916", "target": "1513" }, { "key": "geid_144_7289", "source": "1802", "target": "6795" }, { "key": "geid_144_7290", "source": "859", "target": "5341" }, { "key": "geid_144_7291", "source": "2979", "target": "1611" }, { "key": "geid_144_7292", "source": "1698", "target": "2758" }, { "key": "geid_144_7293", "source": "4597", "target": "4297" }, { "key": "geid_144_7294", "source": "541", "target": "3204" }, { "key": "geid_144_7295", "source": "550", "target": "4316" }, { "key": "geid_144_7296", "source": "9910", "target": "8571" }, { "key": "geid_144_7297", "source": "4957", "target": "4244" }, { "key": "geid_144_7298", "source": "7033", "target": "9316" }, { "key": "geid_144_7299", "source": "3099", "target": "5250" }, { "key": "geid_144_7300", "source": "5177", "target": "2560" }, { "key": "geid_144_7301", "source": "9623", "target": "9519" }, { "key": "geid_144_7302", "source": "4458", "target": "1550" }, { "key": "geid_144_7303", "source": "6686", "target": "5472" }, { "key": "geid_144_7304", "source": "4449", "target": "6373" }, { "key": "geid_144_7305", "source": "5989", "target": "904" }, { "key": "geid_144_7306", "source": "5923", "target": "3725" }, { "key": "geid_144_7307", "source": "6364", "target": "4211" }, { "key": "geid_144_7308", "source": "1315", "target": "7917" }, { "key": "geid_144_7309", "source": "5902", "target": "5453" }, { "key": "geid_144_7310", "source": "6575", "target": "8017" }, { "key": "geid_144_7311", "source": "7968", "target": "1277" }, { "key": "geid_144_7312", "source": "566", "target": "7678" }, { "key": "geid_144_7313", "source": "130", "target": "2227" }, { "key": "geid_144_7314", "source": "981", "target": "5079" }, { "key": "geid_144_7315", "source": "4937", "target": "5668" }, { "key": "geid_144_7316", "source": "6810", "target": "5107" }, { "key": "geid_144_7317", "source": "2387", "target": "7823" }, { "key": "geid_144_7318", "source": "6593", "target": "5135" }, { "key": "geid_144_7319", "source": "9306", "target": "205" }, { "key": "geid_144_7320", "source": "2532", "target": "9007" }, { "key": "geid_144_7321", "source": "5808", "target": "1915" }, { "key": "geid_144_7322", "source": "1935", "target": "2252" }, { "key": "geid_144_7323", "source": "1066", "target": "9322" }, { "key": "geid_144_7324", "source": "8113", "target": "4817" }, { "key": "geid_144_7325", "source": "6137", "target": "8894" }, { "key": "geid_144_7326", "source": "2159", "target": "4769" }, { "key": "geid_144_7327", "source": "7865", "target": "7588" }, { "key": "geid_144_7328", "source": "8517", "target": "3677" }, { "key": "geid_144_7329", "source": "8257", "target": "4052" }, { "key": "geid_144_7330", "source": "4916", "target": "8301" }, { "key": "geid_144_7331", "source": "6067", "target": "9633" }, { "key": "geid_144_7332", "source": "4488", "target": "6003" }, { "key": "geid_144_7333", "source": "9244", "target": "8099" }, { "key": "geid_144_7334", "source": "8987", "target": "7955" }, { "key": "geid_144_7335", "source": "1729", "target": "5454" }, { "key": "geid_144_7336", "source": "241", "target": "3116" }, { "key": "geid_144_7337", "source": "4512", "target": "8189" }, { "key": "geid_144_7338", "source": "4173", "target": "4149" }, { "key": "geid_144_7339", "source": "6224", "target": "3029" }, { "key": "geid_144_7340", "source": "3285", "target": "7934" }, { "key": "geid_144_7341", "source": "6062", "target": "2243" }, { "key": "geid_144_7342", "source": "1683", "target": "7435" }, { "key": "geid_144_7343", "source": "1856", "target": "4024" }, { "key": "geid_144_7344", "source": "6320", "target": "2345" }, { "key": "geid_144_7345", "source": "9488", "target": "5831" }, { "key": "geid_144_7346", "source": "5075", "target": "7708" }, { "key": "geid_144_7347", "source": "7722", "target": "9382" }, { "key": "geid_144_7348", "source": "1484", "target": "1328" }, { "key": "geid_144_7349", "source": "43", "target": "234" }, { "key": "geid_144_7350", "source": "6964", "target": "9152" }, { "key": "geid_144_7351", "source": "3030", "target": "7772" }, { "key": "geid_144_7352", "source": "7352", "target": "281" }, { "key": "geid_144_7353", "source": "7786", "target": "119" }, { "key": "geid_144_7354", "source": "9055", "target": "4750" }, { "key": "geid_144_7355", "source": "1761", "target": "9957" }, { "key": "geid_144_7356", "source": "6928", "target": "4086" }, { "key": "geid_144_7357", "source": "3306", "target": "4650" }, { "key": "geid_144_7358", "source": "6056", "target": "5789" }, { "key": "geid_144_7359", "source": "8067", "target": "2893" }, { "key": "geid_144_7360", "source": "114", "target": "5075" }, { "key": "geid_144_7361", "source": "1665", "target": "6434" }, { "key": "geid_144_7362", "source": "1973", "target": "7576" }, { "key": "geid_144_7363", "source": "7742", "target": "8944" }, { "key": "geid_144_7364", "source": "8557", "target": "863" }, { "key": "geid_144_7365", "source": "1201", "target": "1025" }, { "key": "geid_144_7366", "source": "1266", "target": "3086" }, { "key": "geid_144_7367", "source": "3367", "target": "8402" }, { "key": "geid_144_7368", "source": "1278", "target": "607" }, { "key": "geid_144_7369", "source": "9609", "target": "9789" }, { "key": "geid_144_7370", "source": "225", "target": "5388" }, { "key": "geid_144_7371", "source": "3177", "target": "4582" }, { "key": "geid_144_7372", "source": "8533", "target": "476" }, { "key": "geid_144_7373", "source": "7313", "target": "5977" }, { "key": "geid_144_7374", "source": "8993", "target": "4151" }, { "key": "geid_144_7375", "source": "6538", "target": "59" }, { "key": "geid_144_7376", "source": "3660", "target": "6902" }, { "key": "geid_144_7377", "source": "1571", "target": "27" }, { "key": "geid_144_7378", "source": "3023", "target": "5093" }, { "key": "geid_144_7379", "source": "2389", "target": "4244" }, { "key": "geid_144_7380", "source": "751", "target": "1896" }, { "key": "geid_144_7381", "source": "8585", "target": "9059" }, { "key": "geid_144_7382", "source": "4999", "target": "2746" }, { "key": "geid_144_7383", "source": "4450", "target": "501" }, { "key": "geid_144_7384", "source": "4293", "target": "4926" }, { "key": "geid_144_7385", "source": "100", "target": "8790" }, { "key": "geid_144_7386", "source": "1331", "target": "7415" }, { "key": "geid_144_7387", "source": "203", "target": "4558" }, { "key": "geid_144_7388", "source": "8", "target": "1278" }, { "key": "geid_144_7389", "source": "2971", "target": "5225" }, { "key": "geid_144_7390", "source": "9182", "target": "391" }, { "key": "geid_144_7391", "source": "1879", "target": "860" }, { "key": "geid_144_7392", "source": "9577", "target": "5352" }, { "key": "geid_144_7393", "source": "5057", "target": "1814" }, { "key": "geid_144_7394", "source": "2321", "target": "7467" }, { "key": "geid_144_7395", "source": "4190", "target": "635" }, { "key": "geid_144_7396", "source": "6057", "target": "6004" }, { "key": "geid_144_7397", "source": "3152", "target": "256" }, { "key": "geid_144_7398", "source": "8958", "target": "5098" }, { "key": "geid_144_7399", "source": "3227", "target": "5461" }, { "key": "geid_144_7400", "source": "8405", "target": "348" }, { "key": "geid_144_7401", "source": "3479", "target": "7959" }, { "key": "geid_144_7402", "source": "7306", "target": "9505" }, { "key": "geid_144_7403", "source": "5821", "target": "4152" }, { "key": "geid_144_7404", "source": "1586", "target": "1352" }, { "key": "geid_144_7405", "source": "9106", "target": "9180" }, { "key": "geid_144_7406", "source": "2070", "target": "8728" }, { "key": "geid_144_7407", "source": "1005", "target": "5916" }, { "key": "geid_144_7408", "source": "3226", "target": "7539" }, { "key": "geid_144_7409", "source": "5099", "target": "7582" }, { "key": "geid_144_7410", "source": "2778", "target": "2463" }, { "key": "geid_144_7411", "source": "1265", "target": "4129" }, { "key": "geid_144_7412", "source": "2053", "target": "5288" }, { "key": "geid_144_7413", "source": "9865", "target": "2166" }, { "key": "geid_144_7414", "source": "5017", "target": "7936" }, { "key": "geid_144_7415", "source": "42", "target": "8757" }, { "key": "geid_144_7416", "source": "7574", "target": "4553" }, { "key": "geid_144_7417", "source": "9596", "target": "2391" }, { "key": "geid_144_7418", "source": "588", "target": "7141" }, { "key": "geid_144_7419", "source": "5297", "target": "3012" }, { "key": "geid_144_7420", "source": "6331", "target": "4630" }, { "key": "geid_144_7421", "source": "2543", "target": "4829" }, { "key": "geid_144_7422", "source": "9949", "target": "8323" }, { "key": "geid_144_7423", "source": "9610", "target": "5952" }, { "key": "geid_144_7424", "source": "4638", "target": "1314" }, { "key": "geid_144_7425", "source": "4659", "target": "2759" }, { "key": "geid_144_7426", "source": "9677", "target": "363" }, { "key": "geid_144_7427", "source": "8836", "target": "9731" }, { "key": "geid_144_7428", "source": "5170", "target": "431" }, { "key": "geid_144_7429", "source": "7796", "target": "8910" }, { "key": "geid_144_7430", "source": "4343", "target": "7694" }, { "key": "geid_144_7431", "source": "3169", "target": "9839" }, { "key": "geid_144_7432", "source": "6705", "target": "6919" }, { "key": "geid_144_7433", "source": "310", "target": "1667" }, { "key": "geid_144_7434", "source": "2916", "target": "3042" }, { "key": "geid_144_7435", "source": "4862", "target": "3122" }, { "key": "geid_144_7436", "source": "4819", "target": "322" }, { "key": "geid_144_7437", "source": "8897", "target": "7502" }, { "key": "geid_144_7438", "source": "4634", "target": "2884" }, { "key": "geid_144_7439", "source": "5308", "target": "6082" }, { "key": "geid_144_7440", "source": "8390", "target": "1888" }, { "key": "geid_144_7441", "source": "20", "target": "7074" }, { "key": "geid_144_7442", "source": "9889", "target": "4681" }, { "key": "geid_144_7443", "source": "5149", "target": "8722" }, { "key": "geid_144_7444", "source": "3032", "target": "726" }, { "key": "geid_144_7445", "source": "3518", "target": "1876" }, { "key": "geid_144_7446", "source": "1958", "target": "7333" }, { "key": "geid_144_7447", "source": "1598", "target": "7205" }, { "key": "geid_144_7448", "source": "9389", "target": "4964" }, { "key": "geid_144_7449", "source": "5948", "target": "9344" }, { "key": "geid_144_7450", "source": "6051", "target": "1342" }, { "key": "geid_144_7451", "source": "3576", "target": "4684" }, { "key": "geid_144_7452", "source": "3874", "target": "1841" }, { "key": "geid_144_7453", "source": "275", "target": "243" }, { "key": "geid_144_7454", "source": "9474", "target": "1854" }, { "key": "geid_144_7455", "source": "8787", "target": "1738" }, { "key": "geid_144_7456", "source": "2276", "target": "1409" }, { "key": "geid_144_7457", "source": "6037", "target": "4288" }, { "key": "geid_144_7458", "source": "4246", "target": "8871" }, { "key": "geid_144_7459", "source": "9775", "target": "1287" }, { "key": "geid_144_7460", "source": "1419", "target": "2305" }, { "key": "geid_144_7461", "source": "1313", "target": "6170" }, { "key": "geid_144_7462", "source": "2626", "target": "4303" }, { "key": "geid_144_7463", "source": "5739", "target": "6854" }, { "key": "geid_144_7464", "source": "8997", "target": "5596" }, { "key": "geid_144_7465", "source": "3008", "target": "9778" }, { "key": "geid_144_7466", "source": "5682", "target": "6376" }, { "key": "geid_144_7467", "source": "4103", "target": "1918" }, { "key": "geid_144_7468", "source": "1039", "target": "754" }, { "key": "geid_144_7469", "source": "1429", "target": "798" }, { "key": "geid_144_7470", "source": "8345", "target": "6690" }, { "key": "geid_144_7471", "source": "5469", "target": "2905" }, { "key": "geid_144_7472", "source": "9437", "target": "227" }, { "key": "geid_144_7473", "source": "1167", "target": "5646" }, { "key": "geid_144_7474", "source": "7267", "target": "3722" }, { "key": "geid_144_7475", "source": "7077", "target": "2243" }, { "key": "geid_144_7476", "source": "3701", "target": "2685" }, { "key": "geid_144_7477", "source": "3042", "target": "1731" }, { "key": "geid_144_7478", "source": "242", "target": "5775" }, { "key": "geid_144_7479", "source": "7637", "target": "3220" }, { "key": "geid_144_7480", "source": "80", "target": "9317" }, { "key": "geid_144_7481", "source": "2180", "target": "7914" }, { "key": "geid_144_7482", "source": "9096", "target": "2228" }, { "key": "geid_144_7483", "source": "2974", "target": "131" }, { "key": "geid_144_7484", "source": "388", "target": "608" }, { "key": "geid_144_7485", "source": "3498", "target": "7186" }, { "key": "geid_144_7486", "source": "5981", "target": "850" }, { "key": "geid_144_7487", "source": "9333", "target": "8287" }, { "key": "geid_144_7488", "source": "1950", "target": "5221" }, { "key": "geid_144_7489", "source": "8829", "target": "6772" }, { "key": "geid_144_7490", "source": "7846", "target": "4190" }, { "key": "geid_144_7491", "source": "2703", "target": "3965" }, { "key": "geid_144_7492", "source": "5565", "target": "6635" }, { "key": "geid_144_7493", "source": "2383", "target": "3724" }, { "key": "geid_144_7494", "source": "5040", "target": "3431" }, { "key": "geid_144_7495", "source": "8033", "target": "3452" }, { "key": "geid_144_7496", "source": "8232", "target": "9855" }, { "key": "geid_144_7497", "source": "7035", "target": "2655" }, { "key": "geid_144_7498", "source": "1577", "target": "1097" }, { "key": "geid_144_7499", "source": "4342", "target": "6732" }, { "key": "geid_144_7500", "source": "4841", "target": "2058" }, { "key": "geid_144_7501", "source": "9436", "target": "7867" }, { "key": "geid_144_7502", "source": "5847", "target": "7547" }, { "key": "geid_144_7503", "source": "4867", "target": "3657" }, { "key": "geid_144_7504", "source": "7610", "target": "5223" }, { "key": "geid_144_7505", "source": "7010", "target": "7597" }, { "key": "geid_144_7506", "source": "1328", "target": "8776" }, { "key": "geid_144_7507", "source": "8189", "target": "2122" }, { "key": "geid_144_7508", "source": "9212", "target": "5472" }, { "key": "geid_144_7509", "source": "8250", "target": "8450" }, { "key": "geid_144_7510", "source": "5898", "target": "7032" }, { "key": "geid_144_7511", "source": "2206", "target": "4952" }, { "key": "geid_144_7512", "source": "8312", "target": "7045" }, { "key": "geid_144_7513", "source": "753", "target": "5097" }, { "key": "geid_144_7514", "source": "6131", "target": "8781" }, { "key": "geid_144_7515", "source": "5977", "target": "6942" }, { "key": "geid_144_7516", "source": "167", "target": "479" }, { "key": "geid_144_7517", "source": "9541", "target": "3166" }, { "key": "geid_144_7518", "source": "9477", "target": "6242" }, { "key": "geid_144_7519", "source": "8629", "target": "7114" }, { "key": "geid_144_7520", "source": "6159", "target": "1015" }, { "key": "geid_144_7521", "source": "9955", "target": "6488" }, { "key": "geid_144_7522", "source": "9801", "target": "8902" }, { "key": "geid_144_7523", "source": "1333", "target": "3507" }, { "key": "geid_144_7524", "source": "6664", "target": "4761" }, { "key": "geid_144_7525", "source": "7657", "target": "4271" }, { "key": "geid_144_7526", "source": "7431", "target": "2651" }, { "key": "geid_144_7527", "source": "6084", "target": "4275" }, { "key": "geid_144_7528", "source": "3453", "target": "1134" }, { "key": "geid_144_7529", "source": "8209", "target": "4217" }, { "key": "geid_144_7530", "source": "3142", "target": "1081" }, { "key": "geid_144_7531", "source": "2586", "target": "5004" }, { "key": "geid_144_7532", "source": "2301", "target": "2298" }, { "key": "geid_144_7533", "source": "3024", "target": "6841" }, { "key": "geid_144_7534", "source": "3671", "target": "186" }, { "key": "geid_144_7535", "source": "6545", "target": "3667" }, { "key": "geid_144_7536", "source": "9974", "target": "4220" }, { "key": "geid_144_7537", "source": "7062", "target": "3062" }, { "key": "geid_144_7538", "source": "9312", "target": "4430" }, { "key": "geid_144_7539", "source": "3901", "target": "8579" }, { "key": "geid_144_7540", "source": "8507", "target": "2901" }, { "key": "geid_144_7541", "source": "5406", "target": "8971" }, { "key": "geid_144_7542", "source": "3577", "target": "3527" }, { "key": "geid_144_7543", "source": "8330", "target": "123" }, { "key": "geid_144_7544", "source": "6370", "target": "762" }, { "key": "geid_144_7545", "source": "3040", "target": "8291" }, { "key": "geid_144_7546", "source": "7532", "target": "9133" }, { "key": "geid_144_7547", "source": "1481", "target": "3391" }, { "key": "geid_144_7548", "source": "1680", "target": "590" }, { "key": "geid_144_7549", "source": "1526", "target": "156" }, { "key": "geid_144_7550", "source": "9485", "target": "6122" }, { "key": "geid_144_7551", "source": "9264", "target": "4556" }, { "key": "geid_144_7552", "source": "6228", "target": "5362" }, { "key": "geid_144_7553", "source": "4320", "target": "6593" }, { "key": "geid_144_7554", "source": "9735", "target": "2940" }, { "key": "geid_144_7555", "source": "4952", "target": "5848" }, { "key": "geid_144_7556", "source": "4918", "target": "4418" }, { "key": "geid_144_7557", "source": "5859", "target": "6297" }, { "key": "geid_144_7558", "source": "6718", "target": "4202" }, { "key": "geid_144_7559", "source": "4888", "target": "419" }, { "key": "geid_144_7560", "source": "4514", "target": "3708" }, { "key": "geid_144_7561", "source": "2603", "target": "5968" }, { "key": "geid_144_7562", "source": "8753", "target": "984" }, { "key": "geid_144_7563", "source": "4709", "target": "2941" }, { "key": "geid_144_7564", "source": "3591", "target": "2750" }, { "key": "geid_144_7565", "source": "8757", "target": "2760" }, { "key": "geid_144_7566", "source": "4188", "target": "9390" }, { "key": "geid_144_7567", "source": "9233", "target": "1110" }, { "key": "geid_144_7568", "source": "143", "target": "877" }, { "key": "geid_144_7569", "source": "9784", "target": "3074" }, { "key": "geid_144_7570", "source": "9156", "target": "6092" }, { "key": "geid_144_7571", "source": "4201", "target": "9615" }, { "key": "geid_144_7572", "source": "859", "target": "7254" }, { "key": "geid_144_7573", "source": "8441", "target": "3268" }, { "key": "geid_144_7574", "source": "7474", "target": "9989" }, { "key": "geid_144_7575", "source": "4634", "target": "3952" }, { "key": "geid_144_7576", "source": "9", "target": "9286" }, { "key": "geid_144_7577", "source": "6890", "target": "9242" }, { "key": "geid_144_7578", "source": "9822", "target": "3736" }, { "key": "geid_144_7579", "source": "5993", "target": "5512" }, { "key": "geid_144_7580", "source": "3528", "target": "6806" }, { "key": "geid_144_7581", "source": "7889", "target": "8227" }, { "key": "geid_144_7582", "source": "9659", "target": "826" }, { "key": "geid_144_7583", "source": "4612", "target": "4676" }, { "key": "geid_144_7584", "source": "3379", "target": "5713" }, { "key": "geid_144_7585", "source": "8926", "target": "6009" }, { "key": "geid_144_7586", "source": "856", "target": "9742" }, { "key": "geid_144_7587", "source": "3371", "target": "6178" }, { "key": "geid_144_7588", "source": "5109", "target": "6675" }, { "key": "geid_144_7589", "source": "6367", "target": "7900" }, { "key": "geid_144_7590", "source": "2432", "target": "4439" }, { "key": "geid_144_7591", "source": "924", "target": "8554" }, { "key": "geid_144_7592", "source": "3367", "target": "510" }, { "key": "geid_144_7593", "source": "1129", "target": "7100" }, { "key": "geid_144_7594", "source": "7408", "target": "7119" }, { "key": "geid_144_7595", "source": "829", "target": "5318" }, { "key": "geid_144_7596", "source": "6581", "target": "4653" }, { "key": "geid_144_7597", "source": "2768", "target": "3582" }, { "key": "geid_144_7598", "source": "8817", "target": "1869" }, { "key": "geid_144_7599", "source": "481", "target": "6406" }, { "key": "geid_144_7600", "source": "490", "target": "1573" }, { "key": "geid_144_7601", "source": "9298", "target": "8340" }, { "key": "geid_144_7602", "source": "7924", "target": "8536" }, { "key": "geid_144_7603", "source": "9002", "target": "2367" }, { "key": "geid_144_7604", "source": "2233", "target": "578" }, { "key": "geid_144_7605", "source": "9212", "target": "7451" }, { "key": "geid_144_7606", "source": "3214", "target": "7048" }, { "key": "geid_144_7607", "source": "4514", "target": "8832" }, { "key": "geid_144_7608", "source": "9344", "target": "4846" }, { "key": "geid_144_7609", "source": "5672", "target": "1466" }, { "key": "geid_144_7610", "source": "749", "target": "2068" }, { "key": "geid_144_7611", "source": "1707", "target": "9988" }, { "key": "geid_144_7612", "source": "771", "target": "7790" }, { "key": "geid_144_7613", "source": "39", "target": "1610" }, { "key": "geid_144_7614", "source": "2625", "target": "6864" }, { "key": "geid_144_7615", "source": "267", "target": "2427" }, { "key": "geid_144_7616", "source": "4898", "target": "9932" }, { "key": "geid_144_7617", "source": "2558", "target": "5798" }, { "key": "geid_144_7618", "source": "5959", "target": "9888" }, { "key": "geid_144_7619", "source": "8153", "target": "2723" }, { "key": "geid_144_7620", "source": "1208", "target": "508" }, { "key": "geid_144_7621", "source": "3455", "target": "1817" }, { "key": "geid_144_7622", "source": "2734", "target": "3570" }, { "key": "geid_144_7623", "source": "5328", "target": "6796" }, { "key": "geid_144_7624", "source": "6680", "target": "7707" }, { "key": "geid_144_7625", "source": "8394", "target": "3084" }, { "key": "geid_144_7626", "source": "9566", "target": "9483" }, { "key": "geid_144_7627", "source": "4888", "target": "2093" }, { "key": "geid_144_7628", "source": "1837", "target": "7685" }, { "key": "geid_144_7629", "source": "7968", "target": "7264" }, { "key": "geid_144_7630", "source": "7929", "target": "852" }, { "key": "geid_144_7631", "source": "1361", "target": "6452" }, { "key": "geid_144_7632", "source": "5927", "target": "3099" }, { "key": "geid_144_7633", "source": "5163", "target": "1334" }, { "key": "geid_144_7634", "source": "7343", "target": "7338" }, { "key": "geid_144_7635", "source": "3786", "target": "7032" }, { "key": "geid_144_7636", "source": "6727", "target": "9324" }, { "key": "geid_144_7637", "source": "4091", "target": "431" }, { "key": "geid_144_7638", "source": "7410", "target": "3301" }, { "key": "geid_144_7639", "source": "8322", "target": "2238" }, { "key": "geid_144_7640", "source": "9259", "target": "8215" }, { "key": "geid_144_7641", "source": "3098", "target": "7718" }, { "key": "geid_144_7642", "source": "9570", "target": "7565" }, { "key": "geid_144_7643", "source": "4834", "target": "8411" }, { "key": "geid_144_7644", "source": "4441", "target": "3612" }, { "key": "geid_144_7645", "source": "8701", "target": "6285" }, { "key": "geid_144_7646", "source": "2192", "target": "7135" }, { "key": "geid_144_7647", "source": "7540", "target": "9217" }, { "key": "geid_144_7648", "source": "7964", "target": "2829" }, { "key": "geid_144_7649", "source": "3120", "target": "8723" }, { "key": "geid_144_7650", "source": "736", "target": "9773" }, { "key": "geid_144_7651", "source": "4325", "target": "139" }, { "key": "geid_144_7652", "source": "3237", "target": "9938" }, { "key": "geid_144_7653", "source": "170", "target": "208" }, { "key": "geid_144_7654", "source": "8766", "target": "4594" }, { "key": "geid_144_7655", "source": "5908", "target": "6329" }, { "key": "geid_144_7656", "source": "7919", "target": "3872" }, { "key": "geid_144_7657", "source": "7299", "target": "1555" }, { "key": "geid_144_7658", "source": "8907", "target": "634" }, { "key": "geid_144_7659", "source": "1906", "target": "3407" }, { "key": "geid_144_7660", "source": "6006", "target": "3119" }, { "key": "geid_144_7661", "source": "5119", "target": "9161" }, { "key": "geid_144_7662", "source": "8326", "target": "7532" }, { "key": "geid_144_7663", "source": "8453", "target": "1785" }, { "key": "geid_144_7664", "source": "6268", "target": "9794" }, { "key": "geid_144_7665", "source": "6411", "target": "8416" }, { "key": "geid_144_7666", "source": "2818", "target": "2669" }, { "key": "geid_144_7667", "source": "7565", "target": "7403" }, { "key": "geid_144_7668", "source": "7061", "target": "6481" }, { "key": "geid_144_7669", "source": "8863", "target": "5277" }, { "key": "geid_144_7670", "source": "2074", "target": "9115" }, { "key": "geid_144_7671", "source": "976", "target": "6449" }, { "key": "geid_144_7672", "source": "2129", "target": "2602" }, { "key": "geid_144_7673", "source": "5567", "target": "9621" }, { "key": "geid_144_7674", "source": "3862", "target": "9761" }, { "key": "geid_144_7675", "source": "8621", "target": "8143" }, { "key": "geid_144_7676", "source": "917", "target": "8010" }, { "key": "geid_144_7677", "source": "2097", "target": "8600" }, { "key": "geid_144_7678", "source": "7064", "target": "2969" }, { "key": "geid_144_7679", "source": "6002", "target": "3776" }, { "key": "geid_144_7680", "source": "4910", "target": "8848" }, { "key": "geid_144_7681", "source": "3646", "target": "5811" }, { "key": "geid_144_7682", "source": "1164", "target": "4353" }, { "key": "geid_144_7683", "source": "4282", "target": "8571" }, { "key": "geid_144_7684", "source": "2343", "target": "3559" }, { "key": "geid_144_7685", "source": "4450", "target": "7909" }, { "key": "geid_144_7686", "source": "9895", "target": "6688" }, { "key": "geid_144_7687", "source": "989", "target": "4615" }, { "key": "geid_144_7688", "source": "5038", "target": "4417" }, { "key": "geid_144_7689", "source": "3741", "target": "1041" }, { "key": "geid_144_7690", "source": "3673", "target": "5677" }, { "key": "geid_144_7691", "source": "1299", "target": "1940" }, { "key": "geid_144_7692", "source": "8204", "target": "4612" }, { "key": "geid_144_7693", "source": "1649", "target": "663" }, { "key": "geid_144_7694", "source": "20", "target": "4968" }, { "key": "geid_144_7695", "source": "7088", "target": "9799" }, { "key": "geid_144_7696", "source": "9692", "target": "3926" }, { "key": "geid_144_7697", "source": "4226", "target": "6043" }, { "key": "geid_144_7698", "source": "5825", "target": "3804" }, { "key": "geid_144_7699", "source": "2078", "target": "5784" }, { "key": "geid_144_7700", "source": "7746", "target": "9778" }, { "key": "geid_144_7701", "source": "9038", "target": "7125" }, { "key": "geid_144_7702", "source": "9908", "target": "8677" }, { "key": "geid_144_7703", "source": "1377", "target": "116" }, { "key": "geid_144_7704", "source": "5143", "target": "9102" }, { "key": "geid_144_7705", "source": "3289", "target": "4276" }, { "key": "geid_144_7706", "source": "2624", "target": "6439" }, { "key": "geid_144_7707", "source": "2668", "target": "7574" }, { "key": "geid_144_7708", "source": "1710", "target": "669" }, { "key": "geid_144_7709", "source": "2103", "target": "8663" }, { "key": "geid_144_7710", "source": "9998", "target": "2194" }, { "key": "geid_144_7711", "source": "275", "target": "2936" }, { "key": "geid_144_7712", "source": "5219", "target": "6654" }, { "key": "geid_144_7713", "source": "5453", "target": "5531" }, { "key": "geid_144_7714", "source": "3965", "target": "3398" }, { "key": "geid_144_7715", "source": "4293", "target": "384" }, { "key": "geid_144_7716", "source": "4663", "target": "1261" }, { "key": "geid_144_7717", "source": "5100", "target": "1875" }, { "key": "geid_144_7718", "source": "9468", "target": "1525" }, { "key": "geid_144_7719", "source": "5948", "target": "3428" }, { "key": "geid_144_7720", "source": "562", "target": "5633" }, { "key": "geid_144_7721", "source": "3809", "target": "9939" }, { "key": "geid_144_7722", "source": "1075", "target": "8918" }, { "key": "geid_144_7723", "source": "9803", "target": "2474" }, { "key": "geid_144_7724", "source": "6241", "target": "107" }, { "key": "geid_144_7725", "source": "2472", "target": "7861" }, { "key": "geid_144_7726", "source": "9624", "target": "165" }, { "key": "geid_144_7727", "source": "7212", "target": "4356" }, { "key": "geid_144_7728", "source": "9227", "target": "5839" }, { "key": "geid_144_7729", "source": "1519", "target": "8684" }, { "key": "geid_144_7730", "source": "8538", "target": "9940" }, { "key": "geid_144_7731", "source": "9640", "target": "565" }, { "key": "geid_144_7732", "source": "9638", "target": "5700" }, { "key": "geid_144_7733", "source": "1108", "target": "5067" }, { "key": "geid_144_7734", "source": "2851", "target": "5693" }, { "key": "geid_144_7735", "source": "8023", "target": "7347" }, { "key": "geid_144_7736", "source": "7574", "target": "6215" }, { "key": "geid_144_7737", "source": "2257", "target": "5145" }, { "key": "geid_144_7738", "source": "6573", "target": "5341" }, { "key": "geid_144_7739", "source": "4636", "target": "5926" }, { "key": "geid_144_7740", "source": "6563", "target": "2859" }, { "key": "geid_144_7741", "source": "324", "target": "295" }, { "key": "geid_144_7742", "source": "2121", "target": "2744" }, { "key": "geid_144_7743", "source": "8665", "target": "3347" }, { "key": "geid_144_7744", "source": "515", "target": "6769" }, { "key": "geid_144_7745", "source": "6434", "target": "3232" }, { "key": "geid_144_7746", "source": "6059", "target": "2375" }, { "key": "geid_144_7747", "source": "3555", "target": "2566" }, { "key": "geid_144_7748", "source": "4806", "target": "299" }, { "key": "geid_144_7749", "source": "6507", "target": "9454" }, { "key": "geid_144_7750", "source": "2929", "target": "9562" }, { "key": "geid_144_7751", "source": "1579", "target": "6159" }, { "key": "geid_144_7752", "source": "6290", "target": "8608" }, { "key": "geid_144_7753", "source": "8055", "target": "459" }, { "key": "geid_144_7754", "source": "2787", "target": "9004" }, { "key": "geid_144_7755", "source": "6720", "target": "7480" }, { "key": "geid_144_7756", "source": "9494", "target": "9635" }, { "key": "geid_144_7757", "source": "5197", "target": "2801" }, { "key": "geid_144_7758", "source": "6933", "target": "7353" }, { "key": "geid_144_7759", "source": "6856", "target": "2098" }, { "key": "geid_144_7760", "source": "3572", "target": "7336" }, { "key": "geid_144_7761", "source": "1948", "target": "6803" }, { "key": "geid_144_7762", "source": "8414", "target": "8679" }, { "key": "geid_144_7763", "source": "4435", "target": "1229" }, { "key": "geid_144_7764", "source": "9622", "target": "4771" }, { "key": "geid_144_7765", "source": "3774", "target": "9645" }, { "key": "geid_144_7766", "source": "3342", "target": "7112" }, { "key": "geid_144_7767", "source": "4398", "target": "5498" }, { "key": "geid_144_7768", "source": "1520", "target": "8358" }, { "key": "geid_144_7769", "source": "8395", "target": "5208" }, { "key": "geid_144_7770", "source": "7838", "target": "735" }, { "key": "geid_144_7771", "source": "5936", "target": "7612" }, { "key": "geid_144_7772", "source": "5901", "target": "6796" }, { "key": "geid_144_7773", "source": "3294", "target": "5805" }, { "key": "geid_144_7774", "source": "7582", "target": "1784" }, { "key": "geid_144_7775", "source": "861", "target": "5375" }, { "key": "geid_144_7776", "source": "3323", "target": "6751" }, { "key": "geid_144_7777", "source": "7349", "target": "8412" }, { "key": "geid_144_7778", "source": "8975", "target": "9286" }, { "key": "geid_144_7779", "source": "3224", "target": "4358" }, { "key": "geid_144_7780", "source": "5130", "target": "7974" }, { "key": "geid_144_7781", "source": "2246", "target": "8006" }, { "key": "geid_144_7782", "source": "1198", "target": "7709" }, { "key": "geid_144_7783", "source": "4522", "target": "9674" }, { "key": "geid_144_7784", "source": "1244", "target": "5438" }, { "key": "geid_144_7785", "source": "4743", "target": "4239" }, { "key": "geid_144_7786", "source": "4939", "target": "3511" }, { "key": "geid_144_7787", "source": "203", "target": "2916" }, { "key": "geid_144_7788", "source": "748", "target": "9945" }, { "key": "geid_144_7789", "source": "9944", "target": "3111" }, { "key": "geid_144_7790", "source": "9823", "target": "1641" }, { "key": "geid_144_7791", "source": "3290", "target": "7569" }, { "key": "geid_144_7792", "source": "8279", "target": "9857" }, { "key": "geid_144_7793", "source": "3114", "target": "9038" }, { "key": "geid_144_7794", "source": "9893", "target": "5738" }, { "key": "geid_144_7795", "source": "8278", "target": "9971" }, { "key": "geid_144_7796", "source": "2235", "target": "1743" }, { "key": "geid_144_7797", "source": "9877", "target": "2338" }, { "key": "geid_144_7798", "source": "5222", "target": "3615" }, { "key": "geid_144_7799", "source": "6712", "target": "7248" }, { "key": "geid_144_7800", "source": "163", "target": "1615" }, { "key": "geid_144_7801", "source": "1165", "target": "7811" }, { "key": "geid_144_7802", "source": "5992", "target": "1837" }, { "key": "geid_144_7803", "source": "7578", "target": "9891" }, { "key": "geid_144_7804", "source": "6823", "target": "1087" }, { "key": "geid_144_7805", "source": "1555", "target": "4828" }, { "key": "geid_144_7806", "source": "5108", "target": "2456" }, { "key": "geid_144_7807", "source": "4933", "target": "2565" }, { "key": "geid_144_7808", "source": "2888", "target": "8989" }, { "key": "geid_144_7809", "source": "3621", "target": "2988" }, { "key": "geid_144_7810", "source": "2649", "target": "8812" }, { "key": "geid_144_7811", "source": "9081", "target": "4889" }, { "key": "geid_144_7812", "source": "901", "target": "1825" }, { "key": "geid_144_7813", "source": "5883", "target": "3302" }, { "key": "geid_144_7814", "source": "5026", "target": "8857" }, { "key": "geid_144_7815", "source": "6624", "target": "3345" }, { "key": "geid_144_7816", "source": "8798", "target": "5787" }, { "key": "geid_144_7817", "source": "4473", "target": "3167" }, { "key": "geid_144_7818", "source": "5305", "target": "1986" }, { "key": "geid_144_7819", "source": "2682", "target": "9556" }, { "key": "geid_144_7820", "source": "8522", "target": "7904" }, { "key": "geid_144_7821", "source": "8871", "target": "9715" }, { "key": "geid_144_7822", "source": "7689", "target": "7261" }, { "key": "geid_144_7823", "source": "3430", "target": "7292" }, { "key": "geid_144_7824", "source": "1500", "target": "1637" }, { "key": "geid_144_7825", "source": "5724", "target": "8587" }, { "key": "geid_144_7826", "source": "1200", "target": "929" }, { "key": "geid_144_7827", "source": "7222", "target": "7987" }, { "key": "geid_144_7828", "source": "5920", "target": "3723" }, { "key": "geid_144_7829", "source": "8334", "target": "8342" }, { "key": "geid_144_7830", "source": "8312", "target": "957" }, { "key": "geid_144_7831", "source": "2071", "target": "83" }, { "key": "geid_144_7832", "source": "9672", "target": "6535" }, { "key": "geid_144_7833", "source": "797", "target": "9909" }, { "key": "geid_144_7834", "source": "2749", "target": "6617" }, { "key": "geid_144_7835", "source": "8405", "target": "2631" }, { "key": "geid_144_7836", "source": "8082", "target": "5407" }, { "key": "geid_144_7837", "source": "6378", "target": "6241" }, { "key": "geid_144_7838", "source": "6567", "target": "444" }, { "key": "geid_144_7839", "source": "2361", "target": "6172" }, { "key": "geid_144_7840", "source": "7039", "target": "8091" }, { "key": "geid_144_7841", "source": "446", "target": "6223" }, { "key": "geid_144_7842", "source": "2142", "target": "3672" }, { "key": "geid_144_7843", "source": "9796", "target": "9063" }, { "key": "geid_144_7844", "source": "4884", "target": "7528" }, { "key": "geid_144_7845", "source": "5786", "target": "2133" }, { "key": "geid_144_7846", "source": "6509", "target": "6373" }, { "key": "geid_144_7847", "source": "1923", "target": "8213" }, { "key": "geid_144_7848", "source": "1202", "target": "1578" }, { "key": "geid_144_7849", "source": "7590", "target": "831" }, { "key": "geid_144_7850", "source": "6834", "target": "7407" }, { "key": "geid_144_7851", "source": "6146", "target": "3924" }, { "key": "geid_144_7852", "source": "8108", "target": "2405" }, { "key": "geid_144_7853", "source": "5893", "target": "7835" }, { "key": "geid_144_7854", "source": "2246", "target": "2962" }, { "key": "geid_144_7855", "source": "7968", "target": "7542" }, { "key": "geid_144_7856", "source": "2046", "target": "4076" }, { "key": "geid_144_7857", "source": "7102", "target": "6607" }, { "key": "geid_144_7858", "source": "2016", "target": "1889" }, { "key": "geid_144_7859", "source": "2627", "target": "1449" }, { "key": "geid_144_7860", "source": "6475", "target": "249" }, { "key": "geid_144_7861", "source": "6700", "target": "3747" }, { "key": "geid_144_7862", "source": "8939", "target": "9872" }, { "key": "geid_144_7863", "source": "2179", "target": "8559" }, { "key": "geid_144_7864", "source": "7803", "target": "6562" }, { "key": "geid_144_7865", "source": "3690", "target": "3193" }, { "key": "geid_144_7866", "source": "9189", "target": "974" }, { "key": "geid_144_7867", "source": "5267", "target": "3793" }, { "key": "geid_144_7868", "source": "1699", "target": "6106" }, { "key": "geid_144_7869", "source": "108", "target": "1251" }, { "key": "geid_144_7870", "source": "1849", "target": "2889" }, { "key": "geid_144_7871", "source": "5456", "target": "4698" }, { "key": "geid_144_7872", "source": "5006", "target": "9033" }, { "key": "geid_144_7873", "source": "9167", "target": "6649" }, { "key": "geid_144_7874", "source": "9390", "target": "2807" }, { "key": "geid_144_7875", "source": "8835", "target": "3960" }, { "key": "geid_144_7876", "source": "2687", "target": "8031" }, { "key": "geid_144_7877", "source": "1125", "target": "8409" }, { "key": "geid_144_7878", "source": "17", "target": "2001" }, { "key": "geid_144_7879", "source": "8645", "target": "9665" }, { "key": "geid_144_7880", "source": "7580", "target": "3234" }, { "key": "geid_144_7881", "source": "1002", "target": "3769" }, { "key": "geid_144_7882", "source": "1707", "target": "4554" }, { "key": "geid_144_7883", "source": "4028", "target": "3809" }, { "key": "geid_144_7884", "source": "6880", "target": "8483" }, { "key": "geid_144_7885", "source": "2006", "target": "2248" }, { "key": "geid_144_7886", "source": "8545", "target": "1330" }, { "key": "geid_144_7887", "source": "5785", "target": "4760" }, { "key": "geid_144_7888", "source": "4785", "target": "7697" }, { "key": "geid_144_7889", "source": "1723", "target": "4647" }, { "key": "geid_144_7890", "source": "7675", "target": "4885" }, { "key": "geid_144_7891", "source": "5789", "target": "5099" }, { "key": "geid_144_7892", "source": "6085", "target": "6451" }, { "key": "geid_144_7893", "source": "253", "target": "4338" }, { "key": "geid_144_7894", "source": "984", "target": "6381" }, { "key": "geid_144_7895", "source": "2011", "target": "5341" }, { "key": "geid_144_7896", "source": "4321", "target": "864" }, { "key": "geid_144_7897", "source": "5831", "target": "6035" }, { "key": "geid_144_7898", "source": "214", "target": "5577" }, { "key": "geid_144_7899", "source": "6160", "target": "2021" }, { "key": "geid_144_7900", "source": "1432", "target": "6567" }, { "key": "geid_144_7901", "source": "8811", "target": "1027" }, { "key": "geid_144_7902", "source": "6981", "target": "5448" }, { "key": "geid_144_7903", "source": "7754", "target": "1272" }, { "key": "geid_144_7904", "source": "4881", "target": "2337" }, { "key": "geid_144_7905", "source": "681", "target": "3504" }, { "key": "geid_144_7906", "source": "5609", "target": "8829" }, { "key": "geid_144_7907", "source": "1244", "target": "1400" }, { "key": "geid_144_7908", "source": "6128", "target": "7655" }, { "key": "geid_144_7909", "source": "4887", "target": "9460" }, { "key": "geid_144_7910", "source": "7913", "target": "9596" }, { "key": "geid_144_7911", "source": "3500", "target": "3062" }, { "key": "geid_144_7912", "source": "2241", "target": "6892" }, { "key": "geid_144_7913", "source": "5074", "target": "2921" }, { "key": "geid_144_7914", "source": "5307", "target": "5774" }, { "key": "geid_144_7915", "source": "5299", "target": "7886" }, { "key": "geid_144_7916", "source": "7843", "target": "1314" }, { "key": "geid_144_7917", "source": "2459", "target": "9965" }, { "key": "geid_144_7918", "source": "4343", "target": "7112" }, { "key": "geid_144_7919", "source": "2971", "target": "4182" }, { "key": "geid_144_7920", "source": "5328", "target": "2472" }, { "key": "geid_144_7921", "source": "2521", "target": "2942" }, { "key": "geid_144_7922", "source": "2316", "target": "1995" }, { "key": "geid_144_7923", "source": "585", "target": "8454" }, { "key": "geid_144_7924", "source": "9732", "target": "3904" }, { "key": "geid_144_7925", "source": "8618", "target": "6087" }, { "key": "geid_144_7926", "source": "9006", "target": "3351" }, { "key": "geid_144_7927", "source": "992", "target": "1434" }, { "key": "geid_144_7928", "source": "5013", "target": "652" }, { "key": "geid_144_7929", "source": "9905", "target": "9233" }, { "key": "geid_144_7930", "source": "9330", "target": "3294" }, { "key": "geid_144_7931", "source": "2573", "target": "4227" }, { "key": "geid_144_7932", "source": "4525", "target": "6272" }, { "key": "geid_144_7933", "source": "4351", "target": "4209" }, { "key": "geid_144_7934", "source": "7472", "target": "5881" }, { "key": "geid_144_7935", "source": "2311", "target": "830" }, { "key": "geid_144_7936", "source": "9545", "target": "5020" }, { "key": "geid_144_7937", "source": "4511", "target": "4333" }, { "key": "geid_144_7938", "source": "3853", "target": "2503" }, { "key": "geid_144_7939", "source": "6576", "target": "4921" }, { "key": "geid_144_7940", "source": "9862", "target": "508" }, { "key": "geid_144_7941", "source": "2550", "target": "8919" }, { "key": "geid_144_7942", "source": "1786", "target": "4086" }, { "key": "geid_144_7943", "source": "2498", "target": "7718" }, { "key": "geid_144_7944", "source": "1301", "target": "8411" }, { "key": "geid_144_7945", "source": "1378", "target": "5319" }, { "key": "geid_144_7946", "source": "4026", "target": "2463" }, { "key": "geid_144_7947", "source": "6251", "target": "3495" }, { "key": "geid_144_7948", "source": "5388", "target": "4335" }, { "key": "geid_144_7949", "source": "3367", "target": "1022" }, { "key": "geid_144_7950", "source": "7742", "target": "1414" }, { "key": "geid_144_7951", "source": "8858", "target": "6483" }, { "key": "geid_144_7952", "source": "6101", "target": "7739" }, { "key": "geid_144_7953", "source": "4734", "target": "9605" }, { "key": "geid_144_7954", "source": "7814", "target": "9680" }, { "key": "geid_144_7955", "source": "7249", "target": "1232" }, { "key": "geid_144_7956", "source": "8609", "target": "9525" }, { "key": "geid_144_7957", "source": "307", "target": "1405" }, { "key": "geid_144_7958", "source": "2597", "target": "8458" }, { "key": "geid_144_7959", "source": "1277", "target": "3975" }, { "key": "geid_144_7960", "source": "4336", "target": "1813" }, { "key": "geid_144_7961", "source": "1189", "target": "6610" }, { "key": "geid_144_7962", "source": "7122", "target": "1187" }, { "key": "geid_144_7963", "source": "9163", "target": "1270" }, { "key": "geid_144_7964", "source": "8639", "target": "9213" }, { "key": "geid_144_7965", "source": "9508", "target": "7511" }, { "key": "geid_144_7966", "source": "4322", "target": "6543" }, { "key": "geid_144_7967", "source": "2337", "target": "2184" }, { "key": "geid_144_7968", "source": "7529", "target": "7174" }, { "key": "geid_144_7969", "source": "7411", "target": "2632" }, { "key": "geid_144_7970", "source": "9523", "target": "3437" }, { "key": "geid_144_7971", "source": "4330", "target": "6125" }, { "key": "geid_144_7972", "source": "3950", "target": "5972" }, { "key": "geid_144_7973", "source": "6852", "target": "6460" }, { "key": "geid_144_7974", "source": "6401", "target": "8084" }, { "key": "geid_144_7975", "source": "1599", "target": "6153" }, { "key": "geid_144_7976", "source": "726", "target": "9500" }, { "key": "geid_144_7977", "source": "393", "target": "277" }, { "key": "geid_144_7978", "source": "724", "target": "9964" }, { "key": "geid_144_7979", "source": "9279", "target": "4914" }, { "key": "geid_144_7980", "source": "7559", "target": "1243" }, { "key": "geid_144_7981", "source": "7708", "target": "5989" }, { "key": "geid_144_7982", "source": "8612", "target": "570" }, { "key": "geid_144_7983", "source": "4334", "target": "6263" }, { "key": "geid_144_7984", "source": "4706", "target": "8511" }, { "key": "geid_144_7985", "source": "3161", "target": "4494" }, { "key": "geid_144_7986", "source": "9495", "target": "2840" }, { "key": "geid_144_7987", "source": "8144", "target": "8051" }, { "key": "geid_144_7988", "source": "5633", "target": "5030" }, { "key": "geid_144_7989", "source": "5159", "target": "6905" }, { "key": "geid_144_7990", "source": "3942", "target": "6912" }, { "key": "geid_144_7991", "source": "8562", "target": "5726" }, { "key": "geid_144_7992", "source": "7712", "target": "8730" }, { "key": "geid_144_7993", "source": "3907", "target": "4118" }, { "key": "geid_144_7994", "source": "8988", "target": "2131" }, { "key": "geid_144_7995", "source": "7988", "target": "2319" }, { "key": "geid_144_7996", "source": "6055", "target": "7162" }, { "key": "geid_144_7997", "source": "2240", "target": "3676" }, { "key": "geid_144_7998", "source": "5284", "target": "7214" }, { "key": "geid_144_7999", "source": "8797", "target": "2475" }, { "key": "geid_144_8000", "source": "6324", "target": "5144" }, { "key": "geid_144_8001", "source": "7748", "target": "7351" }, { "key": "geid_144_8002", "source": "7221", "target": "6094" }, { "key": "geid_144_8003", "source": "4137", "target": "7604" }, { "key": "geid_144_8004", "source": "7833", "target": "4758" }, { "key": "geid_144_8005", "source": "2661", "target": "9709" }, { "key": "geid_144_8006", "source": "347", "target": "6865" }, { "key": "geid_144_8007", "source": "7340", "target": "3665" }, { "key": "geid_144_8008", "source": "9569", "target": "2544" }, { "key": "geid_144_8009", "source": "6912", "target": "3842" }, { "key": "geid_144_8010", "source": "4443", "target": "3643" }, { "key": "geid_144_8011", "source": "4307", "target": "8696" }, { "key": "geid_144_8012", "source": "7827", "target": "7237" }, { "key": "geid_144_8013", "source": "6645", "target": "2689" }, { "key": "geid_144_8014", "source": "2855", "target": "5215" }, { "key": "geid_144_8015", "source": "6447", "target": "688" }, { "key": "geid_144_8016", "source": "4677", "target": "5339" }, { "key": "geid_144_8017", "source": "5448", "target": "9283" }, { "key": "geid_144_8018", "source": "4259", "target": "8613" }, { "key": "geid_144_8019", "source": "2584", "target": "3304" }, { "key": "geid_144_8020", "source": "4333", "target": "9598" }, { "key": "geid_144_8021", "source": "3730", "target": "4175" }, { "key": "geid_144_8022", "source": "4323", "target": "6161" }, { "key": "geid_144_8023", "source": "7103", "target": "399" }, { "key": "geid_144_8024", "source": "4146", "target": "3407" }, { "key": "geid_144_8025", "source": "2987", "target": "1595" }, { "key": "geid_144_8026", "source": "8782", "target": "4156" }, { "key": "geid_144_8027", "source": "9743", "target": "6873" }, { "key": "geid_144_8028", "source": "6595", "target": "4786" }, { "key": "geid_144_8029", "source": "2952", "target": "5899" }, { "key": "geid_144_8030", "source": "8139", "target": "2850" }, { "key": "geid_144_8031", "source": "8735", "target": "5763" }, { "key": "geid_144_8032", "source": "1665", "target": "1257" }, { "key": "geid_144_8033", "source": "6496", "target": "2197" }, { "key": "geid_144_8034", "source": "8087", "target": "7359" }, { "key": "geid_144_8035", "source": "3852", "target": "644" }, { "key": "geid_144_8036", "source": "3897", "target": "2608" }, { "key": "geid_144_8037", "source": "8703", "target": "9673" }, { "key": "geid_144_8038", "source": "7063", "target": "4690" }, { "key": "geid_144_8039", "source": "1987", "target": "7606" }, { "key": "geid_144_8040", "source": "6767", "target": "5419" }, { "key": "geid_144_8041", "source": "4396", "target": "8473" }, { "key": "geid_144_8042", "source": "171", "target": "7865" }, { "key": "geid_144_8043", "source": "4548", "target": "9587" }, { "key": "geid_144_8044", "source": "407", "target": "2827" }, { "key": "geid_144_8045", "source": "7601", "target": "5995" }, { "key": "geid_144_8046", "source": "1671", "target": "1822" }, { "key": "geid_144_8047", "source": "8171", "target": "2004" }, { "key": "geid_144_8048", "source": "3175", "target": "3122" }, { "key": "geid_144_8049", "source": "1748", "target": "9909" }, { "key": "geid_144_8050", "source": "9488", "target": "8990" }, { "key": "geid_144_8051", "source": "8869", "target": "5355" }, { "key": "geid_144_8052", "source": "1812", "target": "7703" }, { "key": "geid_144_8053", "source": "359", "target": "8441" }, { "key": "geid_144_8054", "source": "6821", "target": "1901" }, { "key": "geid_144_8055", "source": "2968", "target": "3362" }, { "key": "geid_144_8056", "source": "2954", "target": "1623" }, { "key": "geid_144_8057", "source": "3428", "target": "3931" }, { "key": "geid_144_8058", "source": "1285", "target": "3103" }, { "key": "geid_144_8059", "source": "9113", "target": "3069" }, { "key": "geid_144_8060", "source": "1433", "target": "5552" }, { "key": "geid_144_8061", "source": "2540", "target": "2162" }, { "key": "geid_144_8062", "source": "5531", "target": "9912" }, { "key": "geid_144_8063", "source": "1006", "target": "3089" }, { "key": "geid_144_8064", "source": "2421", "target": "5160" }, { "key": "geid_144_8065", "source": "2715", "target": "3247" }, { "key": "geid_144_8066", "source": "2627", "target": "1327" }, { "key": "geid_144_8067", "source": "9704", "target": "8746" }, { "key": "geid_144_8068", "source": "6514", "target": "3623" }, { "key": "geid_144_8069", "source": "7547", "target": "6494" }, { "key": "geid_144_8070", "source": "9448", "target": "4613" }, { "key": "geid_144_8071", "source": "8948", "target": "1964" }, { "key": "geid_144_8072", "source": "1328", "target": "7984" }, { "key": "geid_144_8073", "source": "9234", "target": "406" }, { "key": "geid_144_8074", "source": "511", "target": "6638" }, { "key": "geid_144_8075", "source": "9464", "target": "5392" }, { "key": "geid_144_8076", "source": "5759", "target": "8147" }, { "key": "geid_144_8077", "source": "4724", "target": "2842" }, { "key": "geid_144_8078", "source": "6753", "target": "5126" }, { "key": "geid_144_8079", "source": "7679", "target": "9104" }, { "key": "geid_144_8080", "source": "8242", "target": "3487" }, { "key": "geid_144_8081", "source": "3268", "target": "9122" }, { "key": "geid_144_8082", "source": "5566", "target": "9315" }, { "key": "geid_144_8083", "source": "7471", "target": "4617" }, { "key": "geid_144_8084", "source": "4837", "target": "1033" }, { "key": "geid_144_8085", "source": "1456", "target": "9108" }, { "key": "geid_144_8086", "source": "4574", "target": "213" }, { "key": "geid_144_8087", "source": "7957", "target": "6571" }, { "key": "geid_144_8088", "source": "8203", "target": "4357" }, { "key": "geid_144_8089", "source": "9349", "target": "7302" }, { "key": "geid_144_8090", "source": "8825", "target": "9745" }, { "key": "geid_144_8091", "source": "3328", "target": "2822" }, { "key": "geid_144_8092", "source": "9706", "target": "1704" }, { "key": "geid_144_8093", "source": "1463", "target": "399" }, { "key": "geid_144_8094", "source": "4977", "target": "3306" }, { "key": "geid_144_8095", "source": "7769", "target": "8033" }, { "key": "geid_144_8096", "source": "6436", "target": "2103" }, { "key": "geid_144_8097", "source": "4294", "target": "1259" }, { "key": "geid_144_8098", "source": "2528", "target": "6795" }, { "key": "geid_144_8099", "source": "5777", "target": "8375" }, { "key": "geid_144_8100", "source": "9011", "target": "7113" }, { "key": "geid_144_8101", "source": "7580", "target": "921" }, { "key": "geid_144_8102", "source": "8430", "target": "2810" }, { "key": "geid_144_8103", "source": "6752", "target": "5303" }, { "key": "geid_144_8104", "source": "7285", "target": "7925" }, { "key": "geid_144_8105", "source": "7746", "target": "2338" }, { "key": "geid_144_8106", "source": "2092", "target": "538" }, { "key": "geid_144_8107", "source": "8301", "target": "8160" }, { "key": "geid_144_8108", "source": "8273", "target": "2064" }, { "key": "geid_144_8109", "source": "6784", "target": "6295" }, { "key": "geid_144_8110", "source": "3338", "target": "4351" }, { "key": "geid_144_8111", "source": "6973", "target": "5890" }, { "key": "geid_144_8112", "source": "3714", "target": "1701" }, { "key": "geid_144_8113", "source": "129", "target": "8797" }, { "key": "geid_144_8114", "source": "4864", "target": "7303" }, { "key": "geid_144_8115", "source": "2564", "target": "1820" }, { "key": "geid_144_8116", "source": "2778", "target": "8748" }, { "key": "geid_144_8117", "source": "8551", "target": "9182" }, { "key": "geid_144_8118", "source": "8658", "target": "5876" }, { "key": "geid_144_8119", "source": "7526", "target": "1071" }, { "key": "geid_144_8120", "source": "3084", "target": "2591" }, { "key": "geid_144_8121", "source": "7308", "target": "6188" }, { "key": "geid_144_8122", "source": "7984", "target": "329" }, { "key": "geid_144_8123", "source": "8051", "target": "1372" }, { "key": "geid_144_8124", "source": "9253", "target": "7075" }, { "key": "geid_144_8125", "source": "9824", "target": "9131" }, { "key": "geid_144_8126", "source": "7292", "target": "5751" }, { "key": "geid_144_8127", "source": "1238", "target": "2865" }, { "key": "geid_144_8128", "source": "4953", "target": "1537" }, { "key": "geid_144_8129", "source": "2094", "target": "7589" }, { "key": "geid_144_8130", "source": "7405", "target": "4112" }, { "key": "geid_144_8131", "source": "5668", "target": "5854" }, { "key": "geid_144_8132", "source": "6460", "target": "8389" }, { "key": "geid_144_8133", "source": "2033", "target": "9231" }, { "key": "geid_144_8134", "source": "1652", "target": "4549" }, { "key": "geid_144_8135", "source": "4676", "target": "9477" }, { "key": "geid_144_8136", "source": "9908", "target": "5631" }, { "key": "geid_144_8137", "source": "9412", "target": "3735" }, { "key": "geid_144_8138", "source": "8283", "target": "3531" }, { "key": "geid_144_8139", "source": "2221", "target": "5602" }, { "key": "geid_144_8140", "source": "8699", "target": "9776" }, { "key": "geid_144_8141", "source": "6990", "target": "1492" }, { "key": "geid_144_8142", "source": "5305", "target": "1703" }, { "key": "geid_144_8143", "source": "524", "target": "4824" }, { "key": "geid_144_8144", "source": "1330", "target": "9256" }, { "key": "geid_144_8145", "source": "8037", "target": "4107" }, { "key": "geid_144_8146", "source": "3090", "target": "9159" }, { "key": "geid_144_8147", "source": "9580", "target": "4256" }, { "key": "geid_144_8148", "source": "9698", "target": "6188" }, { "key": "geid_144_8149", "source": "5021", "target": "9892" }, { "key": "geid_144_8150", "source": "9652", "target": "5695" }, { "key": "geid_144_8151", "source": "4510", "target": "8408" }, { "key": "geid_144_8152", "source": "1794", "target": "1072" }, { "key": "geid_144_8153", "source": "7466", "target": "1403" }, { "key": "geid_144_8154", "source": "3397", "target": "7893" }, { "key": "geid_144_8155", "source": "1918", "target": "6586" }, { "key": "geid_144_8156", "source": "7598", "target": "1345" }, { "key": "geid_144_8157", "source": "534", "target": "4207" }, { "key": "geid_144_8158", "source": "1830", "target": "4468" }, { "key": "geid_144_8159", "source": "8199", "target": "46" }, { "key": "geid_144_8160", "source": "6967", "target": "8913" }, { "key": "geid_144_8161", "source": "4876", "target": "3437" }, { "key": "geid_144_8162", "source": "6982", "target": "4874" }, { "key": "geid_144_8163", "source": "9078", "target": "7095" }, { "key": "geid_144_8164", "source": "9954", "target": "205" }, { "key": "geid_144_8165", "source": "8696", "target": "3225" }, { "key": "geid_144_8166", "source": "5212", "target": "4338" }, { "key": "geid_144_8167", "source": "8956", "target": "2912" }, { "key": "geid_144_8168", "source": "5744", "target": "4994" }, { "key": "geid_144_8169", "source": "9326", "target": "6" }, { "key": "geid_144_8170", "source": "6277", "target": "4025" }, { "key": "geid_144_8171", "source": "4202", "target": "7129" }, { "key": "geid_144_8172", "source": "2968", "target": "7310" }, { "key": "geid_144_8173", "source": "7981", "target": "7942" }, { "key": "geid_144_8174", "source": "2874", "target": "6186" }, { "key": "geid_144_8175", "source": "5433", "target": "8820" }, { "key": "geid_144_8176", "source": "8266", "target": "8893" }, { "key": "geid_144_8177", "source": "7117", "target": "3327" }, { "key": "geid_144_8178", "source": "1873", "target": "2734" }, { "key": "geid_144_8179", "source": "9281", "target": "54" }, { "key": "geid_144_8180", "source": "9388", "target": "5588" }, { "key": "geid_144_8181", "source": "5043", "target": "2991" }, { "key": "geid_144_8182", "source": "512", "target": "2781" }, { "key": "geid_144_8183", "source": "9155", "target": "9402" }, { "key": "geid_144_8184", "source": "2838", "target": "9198" }, { "key": "geid_144_8185", "source": "9451", "target": "1223" }, { "key": "geid_144_8186", "source": "6573", "target": "6882" }, { "key": "geid_144_8187", "source": "993", "target": "6057" }, { "key": "geid_144_8188", "source": "2625", "target": "8356" }, { "key": "geid_144_8189", "source": "781", "target": "8767" }, { "key": "geid_144_8190", "source": "2083", "target": "9728" }, { "key": "geid_144_8191", "source": "2405", "target": "7355" }, { "key": "geid_144_8192", "source": "1239", "target": "2946" }, { "key": "geid_144_8193", "source": "6367", "target": "774" }, { "key": "geid_144_8194", "source": "5263", "target": "1094" }, { "key": "geid_144_8195", "source": "6920", "target": "9489" }, { "key": "geid_144_8196", "source": "2670", "target": "7647" }, { "key": "geid_144_8197", "source": "8454", "target": "1620" }, { "key": "geid_144_8198", "source": "1574", "target": "5663" }, { "key": "geid_144_8199", "source": "2578", "target": "7968" }, { "key": "geid_144_8200", "source": "5554", "target": "9451" }, { "key": "geid_144_8201", "source": "5013", "target": "4989" }, { "key": "geid_144_8202", "source": "9342", "target": "670" }, { "key": "geid_144_8203", "source": "7292", "target": "1485" }, { "key": "geid_144_8204", "source": "1156", "target": "4610" }, { "key": "geid_144_8205", "source": "3527", "target": "3821" }, { "key": "geid_144_8206", "source": "7353", "target": "3705" }, { "key": "geid_144_8207", "source": "5774", "target": "9414" }, { "key": "geid_144_8208", "source": "2995", "target": "2043" }, { "key": "geid_144_8209", "source": "3440", "target": "1383" }, { "key": "geid_144_8210", "source": "7983", "target": "795" }, { "key": "geid_144_8211", "source": "4517", "target": "5498" }, { "key": "geid_144_8212", "source": "4207", "target": "7777" }, { "key": "geid_144_8213", "source": "2506", "target": "4674" }, { "key": "geid_144_8214", "source": "3037", "target": "4271" }, { "key": "geid_144_8215", "source": "1892", "target": "437" }, { "key": "geid_144_8216", "source": "231", "target": "989" }, { "key": "geid_144_8217", "source": "7535", "target": "4912" }, { "key": "geid_144_8218", "source": "948", "target": "8208" }, { "key": "geid_144_8219", "source": "1876", "target": "3957" }, { "key": "geid_144_8220", "source": "8983", "target": "4717" }, { "key": "geid_144_8221", "source": "1356", "target": "174" }, { "key": "geid_144_8222", "source": "5585", "target": "1001" }, { "key": "geid_144_8223", "source": "5254", "target": "2112" }, { "key": "geid_144_8224", "source": "2343", "target": "4329" }, { "key": "geid_144_8225", "source": "9557", "target": "4966" }, { "key": "geid_144_8226", "source": "1476", "target": "3274" }, { "key": "geid_144_8227", "source": "5513", "target": "7609" }, { "key": "geid_144_8228", "source": "6061", "target": "390" }, { "key": "geid_144_8229", "source": "6547", "target": "8703" }, { "key": "geid_144_8230", "source": "6141", "target": "5505" }, { "key": "geid_144_8231", "source": "9681", "target": "1179" }, { "key": "geid_144_8232", "source": "9102", "target": "7196" }, { "key": "geid_144_8233", "source": "1035", "target": "6727" }, { "key": "geid_144_8234", "source": "1296", "target": "6481" }, { "key": "geid_144_8235", "source": "6533", "target": "4560" }, { "key": "geid_144_8236", "source": "4623", "target": "4021" }, { "key": "geid_144_8237", "source": "3962", "target": "4465" }, { "key": "geid_144_8238", "source": "8825", "target": "530" }, { "key": "geid_144_8239", "source": "4982", "target": "5568" }, { "key": "geid_144_8240", "source": "3996", "target": "531" }, { "key": "geid_144_8241", "source": "5053", "target": "5891" }, { "key": "geid_144_8242", "source": "8036", "target": "313" }, { "key": "geid_144_8243", "source": "1111", "target": "6628" }, { "key": "geid_144_8244", "source": "6499", "target": "530" }, { "key": "geid_144_8245", "source": "8032", "target": "6858" }, { "key": "geid_144_8246", "source": "4675", "target": "3655" }, { "key": "geid_144_8247", "source": "1613", "target": "7703" }, { "key": "geid_144_8248", "source": "8383", "target": "9200" }, { "key": "geid_144_8249", "source": "5293", "target": "4895" }, { "key": "geid_144_8250", "source": "8107", "target": "7295" }, { "key": "geid_144_8251", "source": "3916", "target": "4200" }, { "key": "geid_144_8252", "source": "4246", "target": "3890" }, { "key": "geid_144_8253", "source": "4484", "target": "3983" }, { "key": "geid_144_8254", "source": "3425", "target": "1709" }, { "key": "geid_144_8255", "source": "7993", "target": "3720" }, { "key": "geid_144_8256", "source": "773", "target": "1637" }, { "key": "geid_144_8257", "source": "3819", "target": "411" }, { "key": "geid_144_8258", "source": "4522", "target": "3900" }, { "key": "geid_144_8259", "source": "3517", "target": "1015" }, { "key": "geid_144_8260", "source": "3136", "target": "8825" }, { "key": "geid_144_8261", "source": "7637", "target": "47" }, { "key": "geid_144_8262", "source": "7858", "target": "302" }, { "key": "geid_144_8263", "source": "2171", "target": "5957" }, { "key": "geid_144_8264", "source": "530", "target": "4251" }, { "key": "geid_144_8265", "source": "6181", "target": "3169" }, { "key": "geid_144_8266", "source": "6090", "target": "9302" }, { "key": "geid_144_8267", "source": "3595", "target": "5507" }, { "key": "geid_144_8268", "source": "3949", "target": "2230" }, { "key": "geid_144_8269", "source": "5788", "target": "4065" }, { "key": "geid_144_8270", "source": "5261", "target": "8232" }, { "key": "geid_144_8271", "source": "6932", "target": "7111" }, { "key": "geid_144_8272", "source": "8838", "target": "3482" }, { "key": "geid_144_8273", "source": "906", "target": "9730" }, { "key": "geid_144_8274", "source": "7647", "target": "5690" }, { "key": "geid_144_8275", "source": "5620", "target": "7094" }, { "key": "geid_144_8276", "source": "3616", "target": "5031" }, { "key": "geid_144_8277", "source": "4585", "target": "101" }, { "key": "geid_144_8278", "source": "9520", "target": "689" }, { "key": "geid_144_8279", "source": "9633", "target": "387" }, { "key": "geid_144_8280", "source": "8529", "target": "8611" }, { "key": "geid_144_8281", "source": "6478", "target": "3675" }, { "key": "geid_144_8282", "source": "1215", "target": "9412" }, { "key": "geid_144_8283", "source": "7689", "target": "1622" }, { "key": "geid_144_8284", "source": "1632", "target": "5666" }, { "key": "geid_144_8285", "source": "5878", "target": "7683" }, { "key": "geid_144_8286", "source": "4647", "target": "7824" }, { "key": "geid_144_8287", "source": "4720", "target": "4844" }, { "key": "geid_144_8288", "source": "3632", "target": "850" }, { "key": "geid_144_8289", "source": "6574", "target": "7484" }, { "key": "geid_144_8290", "source": "4180", "target": "7786" }, { "key": "geid_144_8291", "source": "9760", "target": "3122" }, { "key": "geid_144_8292", "source": "800", "target": "3917" }, { "key": "geid_144_8293", "source": "3968", "target": "7025" }, { "key": "geid_144_8294", "source": "1901", "target": "2573" }, { "key": "geid_144_8295", "source": "655", "target": "7328" }, { "key": "geid_144_8296", "source": "8165", "target": "6071" }, { "key": "geid_144_8297", "source": "9453", "target": "4504" }, { "key": "geid_144_8298", "source": "7288", "target": "3045" }, { "key": "geid_144_8299", "source": "8227", "target": "5005" }, { "key": "geid_144_8300", "source": "346", "target": "3513" }, { "key": "geid_144_8301", "source": "6926", "target": "4742" }, { "key": "geid_144_8302", "source": "357", "target": "6633" }, { "key": "geid_144_8303", "source": "3460", "target": "9351" }, { "key": "geid_144_8304", "source": "9796", "target": "9573" }, { "key": "geid_144_8305", "source": "5208", "target": "6379" }, { "key": "geid_144_8306", "source": "9591", "target": "9887" }, { "key": "geid_144_8307", "source": "3125", "target": "6444" }, { "key": "geid_144_8308", "source": "6537", "target": "8003" }, { "key": "geid_144_8309", "source": "121", "target": "1111" }, { "key": "geid_144_8310", "source": "3626", "target": "9535" }, { "key": "geid_144_8311", "source": "2931", "target": "2755" }, { "key": "geid_144_8312", "source": "9674", "target": "12" }, { "key": "geid_144_8313", "source": "2883", "target": "6727" }, { "key": "geid_144_8314", "source": "4753", "target": "2628" }, { "key": "geid_144_8315", "source": "7655", "target": "2297" }, { "key": "geid_144_8316", "source": "8264", "target": "6655" }, { "key": "geid_144_8317", "source": "4356", "target": "4785" }, { "key": "geid_144_8318", "source": "7817", "target": "461" }, { "key": "geid_144_8319", "source": "7917", "target": "5927" }, { "key": "geid_144_8320", "source": "6922", "target": "7004" }, { "key": "geid_144_8321", "source": "9145", "target": "274" }, { "key": "geid_144_8322", "source": "8497", "target": "5609" }, { "key": "geid_144_8323", "source": "1583", "target": "284" }, { "key": "geid_144_8324", "source": "9141", "target": "3858" }, { "key": "geid_144_8325", "source": "1054", "target": "5771" }, { "key": "geid_144_8326", "source": "8442", "target": "5897" }, { "key": "geid_144_8327", "source": "5700", "target": "6378" }, { "key": "geid_144_8328", "source": "1994", "target": "530" }, { "key": "geid_144_8329", "source": "9066", "target": "6295" }, { "key": "geid_144_8330", "source": "2258", "target": "1028" }, { "key": "geid_144_8331", "source": "2918", "target": "2308" }, { "key": "geid_144_8332", "source": "6224", "target": "9721" }, { "key": "geid_144_8333", "source": "1674", "target": "3885" }, { "key": "geid_144_8334", "source": "1249", "target": "7500" }, { "key": "geid_144_8335", "source": "3564", "target": "6027" }, { "key": "geid_144_8336", "source": "3657", "target": "6350" }, { "key": "geid_144_8337", "source": "3003", "target": "7277" }, { "key": "geid_144_8338", "source": "144", "target": "8657" }, { "key": "geid_144_8339", "source": "6062", "target": "1659" }, { "key": "geid_144_8340", "source": "4634", "target": "9620" }, { "key": "geid_144_8341", "source": "2061", "target": "1718" }, { "key": "geid_144_8342", "source": "1858", "target": "9715" }, { "key": "geid_144_8343", "source": "1231", "target": "9372" }, { "key": "geid_144_8344", "source": "2304", "target": "8119" }, { "key": "geid_144_8345", "source": "9805", "target": "9980" }, { "key": "geid_144_8346", "source": "2182", "target": "837" }, { "key": "geid_144_8347", "source": "1793", "target": "4169" }, { "key": "geid_144_8348", "source": "3803", "target": "6443" }, { "key": "geid_144_8349", "source": "1072", "target": "8492" }, { "key": "geid_144_8350", "source": "3341", "target": "6381" }, { "key": "geid_144_8351", "source": "4533", "target": "3053" }, { "key": "geid_144_8352", "source": "0", "target": "3018" }, { "key": "geid_144_8353", "source": "4535", "target": "5859" }, { "key": "geid_144_8354", "source": "1966", "target": "5302" }, { "key": "geid_144_8355", "source": "4707", "target": "7373" }, { "key": "geid_144_8356", "source": "7052", "target": "8569" }, { "key": "geid_144_8357", "source": "8038", "target": "5275" }, { "key": "geid_144_8358", "source": "6171", "target": "8987" }, { "key": "geid_144_8359", "source": "3684", "target": "9201" }, { "key": "geid_144_8360", "source": "4794", "target": "7784" }, { "key": "geid_144_8361", "source": "1189", "target": "2324" }, { "key": "geid_144_8362", "source": "392", "target": "1468" }, { "key": "geid_144_8363", "source": "5702", "target": "7539" }, { "key": "geid_144_8364", "source": "1065", "target": "6856" }, { "key": "geid_144_8365", "source": "2207", "target": "3417" }, { "key": "geid_144_8366", "source": "3084", "target": "9914" }, { "key": "geid_144_8367", "source": "1805", "target": "302" }, { "key": "geid_144_8368", "source": "5024", "target": "9348" }, { "key": "geid_144_8369", "source": "5635", "target": "445" }, { "key": "geid_144_8370", "source": "5397", "target": "6749" }, { "key": "geid_144_8371", "source": "3629", "target": "8779" }, { "key": "geid_144_8372", "source": "4312", "target": "5077" }, { "key": "geid_144_8373", "source": "1247", "target": "7396" }, { "key": "geid_144_8374", "source": "145", "target": "1856" }, { "key": "geid_144_8375", "source": "2965", "target": "7819" }, { "key": "geid_144_8376", "source": "2062", "target": "3714" }, { "key": "geid_144_8377", "source": "1344", "target": "1096" }, { "key": "geid_144_8378", "source": "4476", "target": "8809" }, { "key": "geid_144_8379", "source": "7004", "target": "7270" }, { "key": "geid_144_8380", "source": "6551", "target": "7510" }, { "key": "geid_144_8381", "source": "7484", "target": "372" }, { "key": "geid_144_8382", "source": "7001", "target": "3234" }, { "key": "geid_144_8383", "source": "3041", "target": "5491" }, { "key": "geid_144_8384", "source": "2960", "target": "8525" }, { "key": "geid_144_8385", "source": "7383", "target": "4064" }, { "key": "geid_144_8386", "source": "6316", "target": "7291" }, { "key": "geid_144_8387", "source": "5578", "target": "830" }, { "key": "geid_144_8388", "source": "1471", "target": "4621" }, { "key": "geid_144_8389", "source": "6898", "target": "4644" }, { "key": "geid_144_8390", "source": "4999", "target": "3820" }, { "key": "geid_144_8391", "source": "2389", "target": "3925" }, { "key": "geid_144_8392", "source": "8304", "target": "1069" }, { "key": "geid_144_8393", "source": "8474", "target": "8688" }, { "key": "geid_144_8394", "source": "6148", "target": "8501" }, { "key": "geid_144_8395", "source": "8889", "target": "879" }, { "key": "geid_144_8396", "source": "1214", "target": "6611" }, { "key": "geid_144_8397", "source": "7968", "target": "5355" }, { "key": "geid_144_8398", "source": "7116", "target": "244" }, { "key": "geid_144_8399", "source": "3167", "target": "8970" }, { "key": "geid_144_8400", "source": "4777", "target": "1934" }, { "key": "geid_144_8401", "source": "320", "target": "2924" }, { "key": "geid_144_8402", "source": "6758", "target": "890" }, { "key": "geid_144_8403", "source": "5220", "target": "5860" }, { "key": "geid_144_8404", "source": "8462", "target": "9026" }, { "key": "geid_144_8405", "source": "9923", "target": "9906" }, { "key": "geid_144_8406", "source": "3310", "target": "6927" }, { "key": "geid_144_8407", "source": "7133", "target": "2306" }, { "key": "geid_144_8408", "source": "5403", "target": "8736" }, { "key": "geid_144_8409", "source": "821", "target": "3148" }, { "key": "geid_144_8410", "source": "6313", "target": "4836" }, { "key": "geid_144_8411", "source": "1347", "target": "2926" }, { "key": "geid_144_8412", "source": "8252", "target": "4993" }, { "key": "geid_144_8413", "source": "6281", "target": "8970" }, { "key": "geid_144_8414", "source": "9621", "target": "1027" }, { "key": "geid_144_8415", "source": "1175", "target": "2435" }, { "key": "geid_144_8416", "source": "4318", "target": "4902" }, { "key": "geid_144_8417", "source": "9766", "target": "81" }, { "key": "geid_144_8418", "source": "4427", "target": "9640" }, { "key": "geid_144_8419", "source": "8940", "target": "8751" }, { "key": "geid_144_8420", "source": "2729", "target": "5437" }, { "key": "geid_144_8421", "source": "6523", "target": "7275" }, { "key": "geid_144_8422", "source": "5018", "target": "948" }, { "key": "geid_144_8423", "source": "2945", "target": "7418" }, { "key": "geid_144_8424", "source": "91", "target": "7151" }, { "key": "geid_144_8425", "source": "911", "target": "5148" }, { "key": "geid_144_8426", "source": "2304", "target": "2689" }, { "key": "geid_144_8427", "source": "5102", "target": "1240" }, { "key": "geid_144_8428", "source": "8992", "target": "8649" }, { "key": "geid_144_8429", "source": "7840", "target": "8860" }, { "key": "geid_144_8430", "source": "7869", "target": "5655" }, { "key": "geid_144_8431", "source": "4258", "target": "4619" }, { "key": "geid_144_8432", "source": "9329", "target": "4879" }, { "key": "geid_144_8433", "source": "6039", "target": "5044" }, { "key": "geid_144_8434", "source": "5669", "target": "1942" }, { "key": "geid_144_8435", "source": "7187", "target": "3176" }, { "key": "geid_144_8436", "source": "5369", "target": "3580" }, { "key": "geid_144_8437", "source": "8616", "target": "5492" }, { "key": "geid_144_8438", "source": "5415", "target": "8352" }, { "key": "geid_144_8439", "source": "8923", "target": "9295" }, { "key": "geid_144_8440", "source": "1714", "target": "9853" }, { "key": "geid_144_8441", "source": "2076", "target": "7840" }, { "key": "geid_144_8442", "source": "8707", "target": "6964" }, { "key": "geid_144_8443", "source": "2810", "target": "5998" }, { "key": "geid_144_8444", "source": "5883", "target": "3122" }, { "key": "geid_144_8445", "source": "4778", "target": "1191" }, { "key": "geid_144_8446", "source": "5516", "target": "3770" }, { "key": "geid_144_8447", "source": "2165", "target": "1470" }, { "key": "geid_144_8448", "source": "2523", "target": "66" }, { "key": "geid_144_8449", "source": "1477", "target": "4347" }, { "key": "geid_144_8450", "source": "3421", "target": "3582" }, { "key": "geid_144_8451", "source": "4246", "target": "4831" }, { "key": "geid_144_8452", "source": "8236", "target": "2244" }, { "key": "geid_144_8453", "source": "7326", "target": "6456" }, { "key": "geid_144_8454", "source": "4639", "target": "3570" }, { "key": "geid_144_8455", "source": "2180", "target": "6581" }, { "key": "geid_144_8456", "source": "1484", "target": "3603" }, { "key": "geid_144_8457", "source": "6706", "target": "511" }, { "key": "geid_144_8458", "source": "8074", "target": "1617" }, { "key": "geid_144_8459", "source": "5793", "target": "9689" }, { "key": "geid_144_8460", "source": "9496", "target": "6386" }, { "key": "geid_144_8461", "source": "6431", "target": "8504" }, { "key": "geid_144_8462", "source": "6740", "target": "2773" }, { "key": "geid_144_8463", "source": "2555", "target": "1369" }, { "key": "geid_144_8464", "source": "1312", "target": "1296" }, { "key": "geid_144_8465", "source": "3822", "target": "5683" }, { "key": "geid_144_8466", "source": "5549", "target": "1102" }, { "key": "geid_144_8467", "source": "3361", "target": "4181" }, { "key": "geid_144_8468", "source": "4942", "target": "1308" }, { "key": "geid_144_8469", "source": "9306", "target": "6173" }, { "key": "geid_144_8470", "source": "56", "target": "5563" }, { "key": "geid_144_8471", "source": "3480", "target": "45" }, { "key": "geid_144_8472", "source": "1494", "target": "7034" }, { "key": "geid_144_8473", "source": "2377", "target": "5513" }, { "key": "geid_144_8474", "source": "5497", "target": "7480" }, { "key": "geid_144_8475", "source": "9876", "target": "5754" }, { "key": "geid_144_8476", "source": "8243", "target": "6536" }, { "key": "geid_144_8477", "source": "6154", "target": "9723" }, { "key": "geid_144_8478", "source": "7886", "target": "5575" }, { "key": "geid_144_8479", "source": "7150", "target": "6093" }, { "key": "geid_144_8480", "source": "4251", "target": "9664" }, { "key": "geid_144_8481", "source": "9266", "target": "1921" }, { "key": "geid_144_8482", "source": "7481", "target": "7466" }, { "key": "geid_144_8483", "source": "2767", "target": "5356" }, { "key": "geid_144_8484", "source": "1398", "target": "7465" }, { "key": "geid_144_8485", "source": "5285", "target": "9628" }, { "key": "geid_144_8486", "source": "6460", "target": "5432" }, { "key": "geid_144_8487", "source": "1769", "target": "8047" }, { "key": "geid_144_8488", "source": "1055", "target": "5617" }, { "key": "geid_144_8489", "source": "3673", "target": "1637" }, { "key": "geid_144_8490", "source": "7358", "target": "5862" }, { "key": "geid_144_8491", "source": "9310", "target": "9037" }, { "key": "geid_144_8492", "source": "7624", "target": "7154" }, { "key": "geid_144_8493", "source": "9356", "target": "2148" }, { "key": "geid_144_8494", "source": "671", "target": "5215" }, { "key": "geid_144_8495", "source": "1749", "target": "7031" }, { "key": "geid_144_8496", "source": "3083", "target": "1648" }, { "key": "geid_144_8497", "source": "5962", "target": "9608" }, { "key": "geid_144_8498", "source": "4930", "target": "3819" }, { "key": "geid_144_8499", "source": "1725", "target": "4280" }, { "key": "geid_144_8500", "source": "9463", "target": "1178" }, { "key": "geid_144_8501", "source": "1766", "target": "3310" }, { "key": "geid_144_8502", "source": "791", "target": "4383" }, { "key": "geid_144_8503", "source": "1338", "target": "1810" }, { "key": "geid_144_8504", "source": "6905", "target": "2574" }, { "key": "geid_144_8505", "source": "4682", "target": "2627" }, { "key": "geid_144_8506", "source": "5579", "target": "1289" }, { "key": "geid_144_8507", "source": "7146", "target": "3609" }, { "key": "geid_144_8508", "source": "3234", "target": "9476" }, { "key": "geid_144_8509", "source": "3076", "target": "3765" }, { "key": "geid_144_8510", "source": "2605", "target": "391" }, { "key": "geid_144_8511", "source": "8928", "target": "2680" }, { "key": "geid_144_8512", "source": "8471", "target": "8919" }, { "key": "geid_144_8513", "source": "7541", "target": "3742" }, { "key": "geid_144_8514", "source": "7323", "target": "2269" }, { "key": "geid_144_8515", "source": "994", "target": "2905" }, { "key": "geid_144_8516", "source": "6421", "target": "1132" }, { "key": "geid_144_8517", "source": "9560", "target": "9154" }, { "key": "geid_144_8518", "source": "9291", "target": "7742" }, { "key": "geid_144_8519", "source": "3586", "target": "479" }, { "key": "geid_144_8520", "source": "3783", "target": "4743" }, { "key": "geid_144_8521", "source": "2799", "target": "8453" }, { "key": "geid_144_8522", "source": "8280", "target": "1439" }, { "key": "geid_144_8523", "source": "6146", "target": "8756" }, { "key": "geid_144_8524", "source": "6573", "target": "4687" }, { "key": "geid_144_8525", "source": "4330", "target": "4676" }, { "key": "geid_144_8526", "source": "2589", "target": "8680" }, { "key": "geid_144_8527", "source": "3946", "target": "4279" }, { "key": "geid_144_8528", "source": "982", "target": "8823" }, { "key": "geid_144_8529", "source": "7236", "target": "4320" }, { "key": "geid_144_8530", "source": "6874", "target": "5818" }, { "key": "geid_144_8531", "source": "6961", "target": "3417" }, { "key": "geid_144_8532", "source": "8949", "target": "8364" }, { "key": "geid_144_8533", "source": "6723", "target": "3314" }, { "key": "geid_144_8534", "source": "1569", "target": "9848" }, { "key": "geid_144_8535", "source": "9928", "target": "5313" }, { "key": "geid_144_8536", "source": "3868", "target": "3882" }, { "key": "geid_144_8537", "source": "8840", "target": "7395" }, { "key": "geid_144_8538", "source": "7690", "target": "4449" }, { "key": "geid_144_8539", "source": "2050", "target": "5216" }, { "key": "geid_144_8540", "source": "4884", "target": "2760" }, { "key": "geid_144_8541", "source": "4144", "target": "5040" }, { "key": "geid_144_8542", "source": "9727", "target": "8431" }, { "key": "geid_144_8543", "source": "5344", "target": "9717" }, { "key": "geid_144_8544", "source": "5848", "target": "7660" }, { "key": "geid_144_8545", "source": "1324", "target": "4265" }, { "key": "geid_144_8546", "source": "6423", "target": "2186" }, { "key": "geid_144_8547", "source": "4186", "target": "2437" }, { "key": "geid_144_8548", "source": "4757", "target": "8290" }, { "key": "geid_144_8549", "source": "8880", "target": "9387" }, { "key": "geid_144_8550", "source": "651", "target": "5489" }, { "key": "geid_144_8551", "source": "6431", "target": "1819" }, { "key": "geid_144_8552", "source": "6525", "target": "3922" }, { "key": "geid_144_8553", "source": "6289", "target": "4017" }, { "key": "geid_144_8554", "source": "6387", "target": "9387" }, { "key": "geid_144_8555", "source": "6766", "target": "3130" }, { "key": "geid_144_8556", "source": "5523", "target": "3808" }, { "key": "geid_144_8557", "source": "4191", "target": "2229" }, { "key": "geid_144_8558", "source": "8873", "target": "2878" }, { "key": "geid_144_8559", "source": "2800", "target": "9687" }, { "key": "geid_144_8560", "source": "3572", "target": "6060" }, { "key": "geid_144_8561", "source": "9644", "target": "6396" }, { "key": "geid_144_8562", "source": "3092", "target": "8639" }, { "key": "geid_144_8563", "source": "1019", "target": "3098" }, { "key": "geid_144_8564", "source": "2395", "target": "4905" }, { "key": "geid_144_8565", "source": "6486", "target": "9727" }, { "key": "geid_144_8566", "source": "571", "target": "6396" }, { "key": "geid_144_8567", "source": "2349", "target": "5005" }, { "key": "geid_144_8568", "source": "5739", "target": "1742" }, { "key": "geid_144_8569", "source": "6298", "target": "465" }, { "key": "geid_144_8570", "source": "9026", "target": "3037" }, { "key": "geid_144_8571", "source": "7744", "target": "864" }, { "key": "geid_144_8572", "source": "507", "target": "7294" }, { "key": "geid_144_8573", "source": "9269", "target": "2036" }, { "key": "geid_144_8574", "source": "6974", "target": "3789" }, { "key": "geid_144_8575", "source": "9449", "target": "147" }, { "key": "geid_144_8576", "source": "841", "target": "9633" }, { "key": "geid_144_8577", "source": "7589", "target": "4650" }, { "key": "geid_144_8578", "source": "2137", "target": "9873" }, { "key": "geid_144_8579", "source": "4179", "target": "6518" }, { "key": "geid_144_8580", "source": "6106", "target": "8606" }, { "key": "geid_144_8581", "source": "5367", "target": "8935" }, { "key": "geid_144_8582", "source": "9613", "target": "4476" }, { "key": "geid_144_8583", "source": "9370", "target": "2177" }, { "key": "geid_144_8584", "source": "1651", "target": "2157" }, { "key": "geid_144_8585", "source": "5126", "target": "4775" }, { "key": "geid_144_8586", "source": "3194", "target": "6070" }, { "key": "geid_144_8587", "source": "8069", "target": "3398" }, { "key": "geid_144_8588", "source": "8547", "target": "6469" }, { "key": "geid_144_8589", "source": "3441", "target": "3265" }, { "key": "geid_144_8590", "source": "8222", "target": "2995" }, { "key": "geid_144_8591", "source": "7322", "target": "2162" }, { "key": "geid_144_8592", "source": "2080", "target": "1097" }, { "key": "geid_144_8593", "source": "5171", "target": "223" }, { "key": "geid_144_8594", "source": "576", "target": "1285" }, { "key": "geid_144_8595", "source": "757", "target": "1403" }, { "key": "geid_144_8596", "source": "7368", "target": "2031" }, { "key": "geid_144_8597", "source": "4816", "target": "2342" }, { "key": "geid_144_8598", "source": "5253", "target": "927" }, { "key": "geid_144_8599", "source": "3005", "target": "5892" }, { "key": "geid_144_8600", "source": "3137", "target": "4756" }, { "key": "geid_144_8601", "source": "6546", "target": "7731" }, { "key": "geid_144_8602", "source": "6629", "target": "4564" }, { "key": "geid_144_8603", "source": "9065", "target": "2554" }, { "key": "geid_144_8604", "source": "5676", "target": "3791" }, { "key": "geid_144_8605", "source": "1566", "target": "9082" }, { "key": "geid_144_8606", "source": "3401", "target": "1816" }, { "key": "geid_144_8607", "source": "2537", "target": "751" }, { "key": "geid_144_8608", "source": "7090", "target": "5714" }, { "key": "geid_144_8609", "source": "9782", "target": "1212" }, { "key": "geid_144_8610", "source": "1885", "target": "6027" }, { "key": "geid_144_8611", "source": "4226", "target": "9890" }, { "key": "geid_144_8612", "source": "3812", "target": "2598" }, { "key": "geid_144_8613", "source": "313", "target": "8499" }, { "key": "geid_144_8614", "source": "7881", "target": "6000" }, { "key": "geid_144_8615", "source": "2777", "target": "4295" }, { "key": "geid_144_8616", "source": "9283", "target": "5357" }, { "key": "geid_144_8617", "source": "9889", "target": "3889" }, { "key": "geid_144_8618", "source": "5241", "target": "7846" }, { "key": "geid_144_8619", "source": "1727", "target": "1862" }, { "key": "geid_144_8620", "source": "4814", "target": "4987" }, { "key": "geid_144_8621", "source": "2370", "target": "1278" }, { "key": "geid_144_8622", "source": "4575", "target": "819" }, { "key": "geid_144_8623", "source": "6327", "target": "3022" }, { "key": "geid_144_8624", "source": "9383", "target": "4523" }, { "key": "geid_144_8625", "source": "6969", "target": "4557" }, { "key": "geid_144_8626", "source": "5723", "target": "5656" }, { "key": "geid_144_8627", "source": "7384", "target": "1044" }, { "key": "geid_144_8628", "source": "4220", "target": "2705" }, { "key": "geid_144_8629", "source": "2062", "target": "6980" }, { "key": "geid_144_8630", "source": "4134", "target": "3541" }, { "key": "geid_144_8631", "source": "2254", "target": "4258" }, { "key": "geid_144_8632", "source": "4734", "target": "2005" }, { "key": "geid_144_8633", "source": "8793", "target": "8087" }, { "key": "geid_144_8634", "source": "480", "target": "3783" }, { "key": "geid_144_8635", "source": "1741", "target": "4368" }, { "key": "geid_144_8636", "source": "7426", "target": "3802" }, { "key": "geid_144_8637", "source": "9901", "target": "588" }, { "key": "geid_144_8638", "source": "6234", "target": "9187" }, { "key": "geid_144_8639", "source": "1370", "target": "8760" }, { "key": "geid_144_8640", "source": "2123", "target": "4600" }, { "key": "geid_144_8641", "source": "551", "target": "3737" }, { "key": "geid_144_8642", "source": "1514", "target": "3271" }, { "key": "geid_144_8643", "source": "2134", "target": "3975" }, { "key": "geid_144_8644", "source": "2448", "target": "7117" }, { "key": "geid_144_8645", "source": "1609", "target": "7167" }, { "key": "geid_144_8646", "source": "8871", "target": "2030" }, { "key": "geid_144_8647", "source": "8646", "target": "197" }, { "key": "geid_144_8648", "source": "3457", "target": "835" }, { "key": "geid_144_8649", "source": "1388", "target": "8795" }, { "key": "geid_144_8650", "source": "9546", "target": "2078" }, { "key": "geid_144_8651", "source": "2351", "target": "5292" }, { "key": "geid_144_8652", "source": "2569", "target": "8917" }, { "key": "geid_144_8653", "source": "4041", "target": "3637" }, { "key": "geid_144_8654", "source": "3331", "target": "3956" }, { "key": "geid_144_8655", "source": "9944", "target": "1319" }, { "key": "geid_144_8656", "source": "7346", "target": "7582" }, { "key": "geid_144_8657", "source": "6802", "target": "2406" }, { "key": "geid_144_8658", "source": "5412", "target": "5098" }, { "key": "geid_144_8659", "source": "5743", "target": "7075" }, { "key": "geid_144_8660", "source": "7128", "target": "8465" }, { "key": "geid_144_8661", "source": "7171", "target": "7504" }, { "key": "geid_144_8662", "source": "2548", "target": "9900" }, { "key": "geid_144_8663", "source": "6384", "target": "7351" }, { "key": "geid_144_8664", "source": "6536", "target": "8973" }, { "key": "geid_144_8665", "source": "6058", "target": "1944" }, { "key": "geid_144_8666", "source": "2321", "target": "3915" }, { "key": "geid_144_8667", "source": "9293", "target": "36" }, { "key": "geid_144_8668", "source": "7445", "target": "1862" }, { "key": "geid_144_8669", "source": "3762", "target": "6404" }, { "key": "geid_144_8670", "source": "7851", "target": "8914" }, { "key": "geid_144_8671", "source": "5837", "target": "1435" }, { "key": "geid_144_8672", "source": "8515", "target": "6589" }, { "key": "geid_144_8673", "source": "2510", "target": "5501" }, { "key": "geid_144_8674", "source": "4118", "target": "5961" }, { "key": "geid_144_8675", "source": "4705", "target": "3821" }, { "key": "geid_144_8676", "source": "5217", "target": "4556" }, { "key": "geid_144_8677", "source": "8717", "target": "9333" }, { "key": "geid_144_8678", "source": "8045", "target": "7541" }, { "key": "geid_144_8679", "source": "3706", "target": "925" }, { "key": "geid_144_8680", "source": "5892", "target": "1473" }, { "key": "geid_144_8681", "source": "9823", "target": "2228" }, { "key": "geid_144_8682", "source": "3321", "target": "2664" }, { "key": "geid_144_8683", "source": "7296", "target": "6138" }, { "key": "geid_144_8684", "source": "1134", "target": "403" }, { "key": "geid_144_8685", "source": "2777", "target": "1752" }, { "key": "geid_144_8686", "source": "1007", "target": "8674" }, { "key": "geid_144_8687", "source": "2107", "target": "7378" }, { "key": "geid_144_8688", "source": "9106", "target": "5824" }, { "key": "geid_144_8689", "source": "4718", "target": "6735" }, { "key": "geid_144_8690", "source": "9528", "target": "5657" }, { "key": "geid_144_8691", "source": "6783", "target": "524" }, { "key": "geid_144_8692", "source": "6217", "target": "8966" }, { "key": "geid_144_8693", "source": "3714", "target": "362" }, { "key": "geid_144_8694", "source": "7934", "target": "7673" }, { "key": "geid_144_8695", "source": "3701", "target": "8792" }, { "key": "geid_144_8696", "source": "9942", "target": "9986" }, { "key": "geid_144_8697", "source": "2736", "target": "9379" }, { "key": "geid_144_8698", "source": "8003", "target": "3203" }, { "key": "geid_144_8699", "source": "5017", "target": "2920" }, { "key": "geid_144_8700", "source": "211", "target": "1397" }, { "key": "geid_144_8701", "source": "8851", "target": "4792" }, { "key": "geid_144_8702", "source": "3439", "target": "3975" }, { "key": "geid_144_8703", "source": "9847", "target": "778" }, { "key": "geid_144_8704", "source": "2745", "target": "6017" }, { "key": "geid_144_8705", "source": "7075", "target": "8105" }, { "key": "geid_144_8706", "source": "5812", "target": "4927" }, { "key": "geid_144_8707", "source": "6912", "target": "1081" }, { "key": "geid_144_8708", "source": "8262", "target": "8181" }, { "key": "geid_144_8709", "source": "4640", "target": "9836" }, { "key": "geid_144_8710", "source": "4952", "target": "3356" }, { "key": "geid_144_8711", "source": "7194", "target": "9082" }, { "key": "geid_144_8712", "source": "7133", "target": "8040" }, { "key": "geid_144_8713", "source": "6282", "target": "3572" }, { "key": "geid_144_8714", "source": "3411", "target": "4816" }, { "key": "geid_144_8715", "source": "8336", "target": "3305" }, { "key": "geid_144_8716", "source": "6904", "target": "5645" }, { "key": "geid_144_8717", "source": "2758", "target": "448" }, { "key": "geid_144_8718", "source": "428", "target": "9918" }, { "key": "geid_144_8719", "source": "1114", "target": "9585" }, { "key": "geid_144_8720", "source": "6745", "target": "8079" }, { "key": "geid_144_8721", "source": "9085", "target": "3192" }, { "key": "geid_144_8722", "source": "8737", "target": "6673" }, { "key": "geid_144_8723", "source": "2385", "target": "4119" }, { "key": "geid_144_8724", "source": "9499", "target": "680" }, { "key": "geid_144_8725", "source": "5620", "target": "6855" }, { "key": "geid_144_8726", "source": "2728", "target": "1052" }, { "key": "geid_144_8727", "source": "4670", "target": "12" }, { "key": "geid_144_8728", "source": "7847", "target": "2561" }, { "key": "geid_144_8729", "source": "9898", "target": "655" }, { "key": "geid_144_8730", "source": "3395", "target": "4245" }, { "key": "geid_144_8731", "source": "3369", "target": "9463" }, { "key": "geid_144_8732", "source": "3911", "target": "2783" }, { "key": "geid_144_8733", "source": "6692", "target": "1943" }, { "key": "geid_144_8734", "source": "1752", "target": "255" }, { "key": "geid_144_8735", "source": "3213", "target": "47" }, { "key": "geid_144_8736", "source": "2988", "target": "195" }, { "key": "geid_144_8737", "source": "5835", "target": "4600" }, { "key": "geid_144_8738", "source": "9285", "target": "1269" }, { "key": "geid_144_8739", "source": "9720", "target": "315" }, { "key": "geid_144_8740", "source": "5374", "target": "8259" }, { "key": "geid_144_8741", "source": "5624", "target": "1393" }, { "key": "geid_144_8742", "source": "8097", "target": "4032" }, { "key": "geid_144_8743", "source": "2942", "target": "8605" }, { "key": "geid_144_8744", "source": "379", "target": "8633" }, { "key": "geid_144_8745", "source": "2985", "target": "3016" }, { "key": "geid_144_8746", "source": "9850", "target": "6062" }, { "key": "geid_144_8747", "source": "7950", "target": "5049" }, { "key": "geid_144_8748", "source": "5004", "target": "9465" }, { "key": "geid_144_8749", "source": "9217", "target": "2722" }, { "key": "geid_144_8750", "source": "2474", "target": "1824" }, { "key": "geid_144_8751", "source": "2843", "target": "526" }, { "key": "geid_144_8752", "source": "2126", "target": "8917" }, { "key": "geid_144_8753", "source": "7120", "target": "2001" }, { "key": "geid_144_8754", "source": "6492", "target": "2165" }, { "key": "geid_144_8755", "source": "8488", "target": "7410" }, { "key": "geid_144_8756", "source": "2661", "target": "5090" }, { "key": "geid_144_8757", "source": "3765", "target": "7800" }, { "key": "geid_144_8758", "source": "3680", "target": "9096" }, { "key": "geid_144_8759", "source": "5885", "target": "2031" }, { "key": "geid_144_8760", "source": "1457", "target": "3228" }, { "key": "geid_144_8761", "source": "5746", "target": "1059" }, { "key": "geid_144_8762", "source": "32", "target": "7345" }, { "key": "geid_144_8763", "source": "2368", "target": "114" }, { "key": "geid_144_8764", "source": "5494", "target": "1682" }, { "key": "geid_144_8765", "source": "7398", "target": "3097" }, { "key": "geid_144_8766", "source": "1380", "target": "2992" }, { "key": "geid_144_8767", "source": "918", "target": "492" }, { "key": "geid_144_8768", "source": "7726", "target": "4619" }, { "key": "geid_144_8769", "source": "4802", "target": "4227" }, { "key": "geid_144_8770", "source": "449", "target": "5802" }, { "key": "geid_144_8771", "source": "2167", "target": "1319" }, { "key": "geid_144_8772", "source": "7159", "target": "140" }, { "key": "geid_144_8773", "source": "2344", "target": "640" }, { "key": "geid_144_8774", "source": "5346", "target": "8006" }, { "key": "geid_144_8775", "source": "2279", "target": "6845" }, { "key": "geid_144_8776", "source": "4075", "target": "1831" }, { "key": "geid_144_8777", "source": "1788", "target": "1259" }, { "key": "geid_144_8778", "source": "5607", "target": "2568" }, { "key": "geid_144_8779", "source": "794", "target": "8825" }, { "key": "geid_144_8780", "source": "7490", "target": "700" }, { "key": "geid_144_8781", "source": "2184", "target": "3639" }, { "key": "geid_144_8782", "source": "8958", "target": "5239" }, { "key": "geid_144_8783", "source": "4084", "target": "272" }, { "key": "geid_144_8784", "source": "6089", "target": "8002" }, { "key": "geid_144_8785", "source": "6407", "target": "7814" }, { "key": "geid_144_8786", "source": "7533", "target": "2457" }, { "key": "geid_144_8787", "source": "4636", "target": "9609" }, { "key": "geid_144_8788", "source": "4407", "target": "482" }, { "key": "geid_144_8789", "source": "1270", "target": "7558" }, { "key": "geid_144_8790", "source": "9482", "target": "7105" }, { "key": "geid_144_8791", "source": "3054", "target": "7731" }, { "key": "geid_144_8792", "source": "7500", "target": "8894" }, { "key": "geid_144_8793", "source": "2734", "target": "5314" }, { "key": "geid_144_8794", "source": "8449", "target": "6290" }, { "key": "geid_144_8795", "source": "2489", "target": "5151" }, { "key": "geid_144_8796", "source": "8248", "target": "722" }, { "key": "geid_144_8797", "source": "9908", "target": "7573" }, { "key": "geid_144_8798", "source": "2703", "target": "6164" }, { "key": "geid_144_8799", "source": "7982", "target": "9275" }, { "key": "geid_144_8800", "source": "3053", "target": "4961" }, { "key": "geid_144_8801", "source": "4652", "target": "9841" }, { "key": "geid_144_8802", "source": "7170", "target": "8443" }, { "key": "geid_144_8803", "source": "6891", "target": "9015" }, { "key": "geid_144_8804", "source": "1693", "target": "6658" }, { "key": "geid_144_8805", "source": "958", "target": "8389" }, { "key": "geid_144_8806", "source": "37", "target": "2831" }, { "key": "geid_144_8807", "source": "3791", "target": "9473" }, { "key": "geid_144_8808", "source": "9932", "target": "3737" }, { "key": "geid_144_8809", "source": "6187", "target": "2499" }, { "key": "geid_144_8810", "source": "7630", "target": "6454" }, { "key": "geid_144_8811", "source": "1984", "target": "1649" }, { "key": "geid_144_8812", "source": "4133", "target": "149" }, { "key": "geid_144_8813", "source": "7856", "target": "5535" }, { "key": "geid_144_8814", "source": "8528", "target": "9730" }, { "key": "geid_144_8815", "source": "4297", "target": "599" }, { "key": "geid_144_8816", "source": "1191", "target": "1366" }, { "key": "geid_144_8817", "source": "9478", "target": "5310" }, { "key": "geid_144_8818", "source": "1367", "target": "3929" }, { "key": "geid_144_8819", "source": "5186", "target": "5472" }, { "key": "geid_144_8820", "source": "5669", "target": "6339" }, { "key": "geid_144_8821", "source": "4750", "target": "6827" }, { "key": "geid_144_8822", "source": "1357", "target": "9266" }, { "key": "geid_144_8823", "source": "4806", "target": "1621" }, { "key": "geid_144_8824", "source": "1432", "target": "2334" }, { "key": "geid_144_8825", "source": "7610", "target": "7556" }, { "key": "geid_144_8826", "source": "857", "target": "2321" }, { "key": "geid_144_8827", "source": "1681", "target": "5563" }, { "key": "geid_144_8828", "source": "3931", "target": "3971" }, { "key": "geid_144_8829", "source": "2538", "target": "6730" }, { "key": "geid_144_8830", "source": "905", "target": "1667" }, { "key": "geid_144_8831", "source": "3839", "target": "6717" }, { "key": "geid_144_8832", "source": "444", "target": "5389" }, { "key": "geid_144_8833", "source": "5381", "target": "3714" }, { "key": "geid_144_8834", "source": "5027", "target": "2432" }, { "key": "geid_144_8835", "source": "7388", "target": "860" }, { "key": "geid_144_8836", "source": "2181", "target": "5357" }, { "key": "geid_144_8837", "source": "928", "target": "5674" }, { "key": "geid_144_8838", "source": "2948", "target": "4107" }, { "key": "geid_144_8839", "source": "2707", "target": "1543" }, { "key": "geid_144_8840", "source": "1369", "target": "3240" }, { "key": "geid_144_8841", "source": "9715", "target": "8911" }, { "key": "geid_144_8842", "source": "247", "target": "2663" }, { "key": "geid_144_8843", "source": "9849", "target": "3346" }, { "key": "geid_144_8844", "source": "5143", "target": "3595" }, { "key": "geid_144_8845", "source": "1135", "target": "9395" }, { "key": "geid_144_8846", "source": "9219", "target": "533" }, { "key": "geid_144_8847", "source": "4053", "target": "4546" }, { "key": "geid_144_8848", "source": "8630", "target": "1838" }, { "key": "geid_144_8849", "source": "7645", "target": "18" }, { "key": "geid_144_8850", "source": "5174", "target": "6086" }, { "key": "geid_144_8851", "source": "7577", "target": "695" }, { "key": "geid_144_8852", "source": "787", "target": "5619" }, { "key": "geid_144_8853", "source": "160", "target": "1625" }, { "key": "geid_144_8854", "source": "8238", "target": "5229" }, { "key": "geid_144_8855", "source": "1037", "target": "4755" }, { "key": "geid_144_8856", "source": "9083", "target": "2075" }, { "key": "geid_144_8857", "source": "3452", "target": "5711" }, { "key": "geid_144_8858", "source": "1305", "target": "1039" }, { "key": "geid_144_8859", "source": "3451", "target": "6260" }, { "key": "geid_144_8860", "source": "8440", "target": "8847" }, { "key": "geid_144_8861", "source": "6705", "target": "4702" }, { "key": "geid_144_8862", "source": "9738", "target": "7118" }, { "key": "geid_144_8863", "source": "6314", "target": "9102" }, { "key": "geid_144_8864", "source": "9103", "target": "8369" }, { "key": "geid_144_8865", "source": "6826", "target": "2538" }, { "key": "geid_144_8866", "source": "2010", "target": "4603" }, { "key": "geid_144_8867", "source": "3547", "target": "3760" }, { "key": "geid_144_8868", "source": "843", "target": "2705" }, { "key": "geid_144_8869", "source": "4420", "target": "3176" }, { "key": "geid_144_8870", "source": "584", "target": "5530" }, { "key": "geid_144_8871", "source": "1849", "target": "4427" }, { "key": "geid_144_8872", "source": "3858", "target": "5787" }, { "key": "geid_144_8873", "source": "3194", "target": "5571" }, { "key": "geid_144_8874", "source": "7805", "target": "6290" }, { "key": "geid_144_8875", "source": "4159", "target": "5198" }, { "key": "geid_144_8876", "source": "5458", "target": "8196" }, { "key": "geid_144_8877", "source": "7572", "target": "4321" }, { "key": "geid_144_8878", "source": "1110", "target": "2187" }, { "key": "geid_144_8879", "source": "6800", "target": "5896" }, { "key": "geid_144_8880", "source": "4643", "target": "8495" }, { "key": "geid_144_8881", "source": "5471", "target": "5091" }, { "key": "geid_144_8882", "source": "3240", "target": "8064" }, { "key": "geid_144_8883", "source": "5777", "target": "6314" }, { "key": "geid_144_8884", "source": "4389", "target": "8984" }, { "key": "geid_144_8885", "source": "2012", "target": "1786" }, { "key": "geid_144_8886", "source": "4078", "target": "7862" }, { "key": "geid_144_8887", "source": "8686", "target": "4000" }, { "key": "geid_144_8888", "source": "5303", "target": "3150" }, { "key": "geid_144_8889", "source": "9819", "target": "2713" }, { "key": "geid_144_8890", "source": "5074", "target": "4929" }, { "key": "geid_144_8891", "source": "4767", "target": "8110" }, { "key": "geid_144_8892", "source": "8268", "target": "7017" }, { "key": "geid_144_8893", "source": "357", "target": "1387" }, { "key": "geid_144_8894", "source": "7867", "target": "1789" }, { "key": "geid_144_8895", "source": "7041", "target": "7899" }, { "key": "geid_144_8896", "source": "4445", "target": "3840" }, { "key": "geid_144_8897", "source": "7427", "target": "8972" }, { "key": "geid_144_8898", "source": "3474", "target": "4793" }, { "key": "geid_144_8899", "source": "2085", "target": "4046" }, { "key": "geid_144_8900", "source": "9256", "target": "9368" }, { "key": "geid_144_8901", "source": "7744", "target": "3548" }, { "key": "geid_144_8902", "source": "3383", "target": "8746" }, { "key": "geid_144_8903", "source": "1625", "target": "1669" }, { "key": "geid_144_8904", "source": "3200", "target": "6642" }, { "key": "geid_144_8905", "source": "6227", "target": "4380" }, { "key": "geid_144_8906", "source": "9305", "target": "6079" }, { "key": "geid_144_8907", "source": "6550", "target": "267" }, { "key": "geid_144_8908", "source": "3974", "target": "5206" }, { "key": "geid_144_8909", "source": "35", "target": "5481" }, { "key": "geid_144_8910", "source": "6808", "target": "4656" }, { "key": "geid_144_8911", "source": "8607", "target": "6258" }, { "key": "geid_144_8912", "source": "1668", "target": "6864" }, { "key": "geid_144_8913", "source": "4395", "target": "721" }, { "key": "geid_144_8914", "source": "1068", "target": "8322" }, { "key": "geid_144_8915", "source": "5480", "target": "9313" }, { "key": "geid_144_8916", "source": "3958", "target": "3216" }, { "key": "geid_144_8917", "source": "7611", "target": "3212" }, { "key": "geid_144_8918", "source": "8915", "target": "9036" }, { "key": "geid_144_8919", "source": "7143", "target": "8819" }, { "key": "geid_144_8920", "source": "9539", "target": "7554" }, { "key": "geid_144_8921", "source": "3656", "target": "7612" }, { "key": "geid_144_8922", "source": "5105", "target": "3133" }, { "key": "geid_144_8923", "source": "8693", "target": "2996" }, { "key": "geid_144_8924", "source": "7244", "target": "1185" }, { "key": "geid_144_8925", "source": "5181", "target": "7778" }, { "key": "geid_144_8926", "source": "7624", "target": "450" }, { "key": "geid_144_8927", "source": "4977", "target": "8871" }, { "key": "geid_144_8928", "source": "7060", "target": "9145" }, { "key": "geid_144_8929", "source": "8872", "target": "6900" }, { "key": "geid_144_8930", "source": "2835", "target": "6700" }, { "key": "geid_144_8931", "source": "8362", "target": "2862" }, { "key": "geid_144_8932", "source": "7775", "target": "4030" }, { "key": "geid_144_8933", "source": "8725", "target": "6602" }, { "key": "geid_144_8934", "source": "9200", "target": "7105" }, { "key": "geid_144_8935", "source": "7040", "target": "3543" }, { "key": "geid_144_8936", "source": "5346", "target": "5568" }, { "key": "geid_144_8937", "source": "8840", "target": "8386" }, { "key": "geid_144_8938", "source": "4533", "target": "7840" }, { "key": "geid_144_8939", "source": "504", "target": "9648" }, { "key": "geid_144_8940", "source": "6615", "target": "8726" }, { "key": "geid_144_8941", "source": "4742", "target": "3959" }, { "key": "geid_144_8942", "source": "4007", "target": "7936" }, { "key": "geid_144_8943", "source": "8890", "target": "3643" }, { "key": "geid_144_8944", "source": "1661", "target": "7979" }, { "key": "geid_144_8945", "source": "2163", "target": "5571" }, { "key": "geid_144_8946", "source": "8631", "target": "4378" }, { "key": "geid_144_8947", "source": "890", "target": "8847" }, { "key": "geid_144_8948", "source": "9703", "target": "3648" }, { "key": "geid_144_8949", "source": "141", "target": "1720" }, { "key": "geid_144_8950", "source": "6496", "target": "300" }, { "key": "geid_144_8951", "source": "1066", "target": "5711" }, { "key": "geid_144_8952", "source": "1563", "target": "9458" }, { "key": "geid_144_8953", "source": "6153", "target": "5286" }, { "key": "geid_144_8954", "source": "3006", "target": "4851" }, { "key": "geid_144_8955", "source": "9605", "target": "7539" }, { "key": "geid_144_8956", "source": "2115", "target": "6514" }, { "key": "geid_144_8957", "source": "4668", "target": "5620" }, { "key": "geid_144_8958", "source": "3324", "target": "6133" }, { "key": "geid_144_8959", "source": "9864", "target": "9662" }, { "key": "geid_144_8960", "source": "6868", "target": "7817" }, { "key": "geid_144_8961", "source": "4191", "target": "9228" }, { "key": "geid_144_8962", "source": "4672", "target": "5124" }, { "key": "geid_144_8963", "source": "1281", "target": "3762" }, { "key": "geid_144_8964", "source": "541", "target": "9839" }, { "key": "geid_144_8965", "source": "8650", "target": "8360" }, { "key": "geid_144_8966", "source": "4830", "target": "9724" }, { "key": "geid_144_8967", "source": "6720", "target": "6965" }, { "key": "geid_144_8968", "source": "5798", "target": "1529" }, { "key": "geid_144_8969", "source": "1946", "target": "1834" }, { "key": "geid_144_8970", "source": "2984", "target": "6250" }, { "key": "geid_144_8971", "source": "1608", "target": "4179" }, { "key": "geid_144_8972", "source": "9115", "target": "9028" }, { "key": "geid_144_8973", "source": "4514", "target": "2124" }, { "key": "geid_144_8974", "source": "7975", "target": "8442" }, { "key": "geid_144_8975", "source": "5063", "target": "1350" }, { "key": "geid_144_8976", "source": "5019", "target": "3732" }, { "key": "geid_144_8977", "source": "3272", "target": "953" }, { "key": "geid_144_8978", "source": "6469", "target": "1474" }, { "key": "geid_144_8979", "source": "7100", "target": "1454" }, { "key": "geid_144_8980", "source": "3872", "target": "348" }, { "key": "geid_144_8981", "source": "503", "target": "7991" }, { "key": "geid_144_8982", "source": "1258", "target": "6527" }, { "key": "geid_144_8983", "source": "812", "target": "5630" }, { "key": "geid_144_8984", "source": "9102", "target": "1495" }, { "key": "geid_144_8985", "source": "7888", "target": "7522" }, { "key": "geid_144_8986", "source": "6101", "target": "1553" }, { "key": "geid_144_8987", "source": "6501", "target": "3023" }, { "key": "geid_144_8988", "source": "1883", "target": "3970" }, { "key": "geid_144_8989", "source": "734", "target": "4454" }, { "key": "geid_144_8990", "source": "7546", "target": "6079" }, { "key": "geid_144_8991", "source": "9827", "target": "2270" }, { "key": "geid_144_8992", "source": "4958", "target": "5709" }, { "key": "geid_144_8993", "source": "3849", "target": "1398" }, { "key": "geid_144_8994", "source": "5499", "target": "203" }, { "key": "geid_144_8995", "source": "1996", "target": "1043" }, { "key": "geid_144_8996", "source": "2573", "target": "2775" }, { "key": "geid_144_8997", "source": "4261", "target": "4457" }, { "key": "geid_144_8998", "source": "6516", "target": "9706" }, { "key": "geid_144_8999", "source": "5394", "target": "9768" }, { "key": "geid_144_9000", "source": "8300", "target": "847" }, { "key": "geid_144_9001", "source": "9", "target": "7896" }, { "key": "geid_144_9002", "source": "6314", "target": "7555" }, { "key": "geid_144_9003", "source": "8413", "target": "1853" }, { "key": "geid_144_9004", "source": "8668", "target": "8479" }, { "key": "geid_144_9005", "source": "8031", "target": "7657" }, { "key": "geid_144_9006", "source": "1204", "target": "1253" }, { "key": "geid_144_9007", "source": "5000", "target": "3942" }, { "key": "geid_144_9008", "source": "9486", "target": "3633" }, { "key": "geid_144_9009", "source": "8474", "target": "5077" }, { "key": "geid_144_9010", "source": "5253", "target": "59" }, { "key": "geid_144_9011", "source": "2254", "target": "6257" }, { "key": "geid_144_9012", "source": "3618", "target": "5010" }, { "key": "geid_144_9013", "source": "704", "target": "5086" }, { "key": "geid_144_9014", "source": "1244", "target": "1025" }, { "key": "geid_144_9015", "source": "9594", "target": "862" }, { "key": "geid_144_9016", "source": "8504", "target": "5093" }, { "key": "geid_144_9017", "source": "1104", "target": "6998" }, { "key": "geid_144_9018", "source": "1", "target": "6300" }, { "key": "geid_144_9019", "source": "2851", "target": "4077" }, { "key": "geid_144_9020", "source": "362", "target": "2006" }, { "key": "geid_144_9021", "source": "9669", "target": "9905" }, { "key": "geid_144_9022", "source": "5304", "target": "1230" }, { "key": "geid_144_9023", "source": "9533", "target": "8621" }, { "key": "geid_144_9024", "source": "4335", "target": "8311" }, { "key": "geid_144_9025", "source": "5343", "target": "2353" }, { "key": "geid_144_9026", "source": "6885", "target": "9478" }, { "key": "geid_144_9027", "source": "6764", "target": "3403" }, { "key": "geid_144_9028", "source": "1196", "target": "5112" }, { "key": "geid_144_9029", "source": "8529", "target": "2077" }, { "key": "geid_144_9030", "source": "6905", "target": "2774" }, { "key": "geid_144_9031", "source": "2939", "target": "7323" }, { "key": "geid_144_9032", "source": "463", "target": "2979" }, { "key": "geid_144_9033", "source": "2180", "target": "6405" }, { "key": "geid_144_9034", "source": "9850", "target": "2314" }, { "key": "geid_144_9035", "source": "6531", "target": "2343" }, { "key": "geid_144_9036", "source": "2640", "target": "4236" }, { "key": "geid_144_9037", "source": "5481", "target": "3655" }, { "key": "geid_144_9038", "source": "3852", "target": "6655" }, { "key": "geid_144_9039", "source": "8432", "target": "7052" }, { "key": "geid_144_9040", "source": "33", "target": "2758" }, { "key": "geid_144_9041", "source": "9381", "target": "1136" }, { "key": "geid_144_9042", "source": "5513", "target": "8201" }, { "key": "geid_144_9043", "source": "956", "target": "4548" }, { "key": "geid_144_9044", "source": "7994", "target": "9271" }, { "key": "geid_144_9045", "source": "7100", "target": "4428" }, { "key": "geid_144_9046", "source": "4882", "target": "3329" }, { "key": "geid_144_9047", "source": "4020", "target": "6995" }, { "key": "geid_144_9048", "source": "3615", "target": "3722" }, { "key": "geid_144_9049", "source": "971", "target": "4168" }, { "key": "geid_144_9050", "source": "4170", "target": "1844" }, { "key": "geid_144_9051", "source": "7200", "target": "7342" }, { "key": "geid_144_9052", "source": "2881", "target": "6039" }, { "key": "geid_144_9053", "source": "7178", "target": "1319" }, { "key": "geid_144_9054", "source": "9425", "target": "894" }, { "key": "geid_144_9055", "source": "961", "target": "9481" }, { "key": "geid_144_9056", "source": "8907", "target": "8143" }, { "key": "geid_144_9057", "source": "1843", "target": "6431" }, { "key": "geid_144_9058", "source": "417", "target": "1374" }, { "key": "geid_144_9059", "source": "7989", "target": "8824" }, { "key": "geid_144_9060", "source": "4375", "target": "8605" }, { "key": "geid_144_9061", "source": "2912", "target": "3746" }, { "key": "geid_144_9062", "source": "7739", "target": "2086" }, { "key": "geid_144_9063", "source": "4591", "target": "7962" }, { "key": "geid_144_9064", "source": "9975", "target": "2529" }, { "key": "geid_144_9065", "source": "869", "target": "7204" }, { "key": "geid_144_9066", "source": "3431", "target": "3930" }, { "key": "geid_144_9067", "source": "5958", "target": "5634" }, { "key": "geid_144_9068", "source": "2176", "target": "6538" }, { "key": "geid_144_9069", "source": "4333", "target": "8573" }, { "key": "geid_144_9070", "source": "7555", "target": "8004" }, { "key": "geid_144_9071", "source": "5423", "target": "2759" }, { "key": "geid_144_9072", "source": "4626", "target": "7334" }, { "key": "geid_144_9073", "source": "6252", "target": "267" }, { "key": "geid_144_9074", "source": "22", "target": "5390" }, { "key": "geid_144_9075", "source": "4270", "target": "103" }, { "key": "geid_144_9076", "source": "4055", "target": "6380" }, { "key": "geid_144_9077", "source": "3375", "target": "4247" }, { "key": "geid_144_9078", "source": "6962", "target": "4573" }, { "key": "geid_144_9079", "source": "4722", "target": "7845" }, { "key": "geid_144_9080", "source": "9357", "target": "1017" }, { "key": "geid_144_9081", "source": "9916", "target": "3804" }, { "key": "geid_144_9082", "source": "7770", "target": "2531" }, { "key": "geid_144_9083", "source": "2025", "target": "887" }, { "key": "geid_144_9084", "source": "5546", "target": "3879" }, { "key": "geid_144_9085", "source": "340", "target": "1436" }, { "key": "geid_144_9086", "source": "7109", "target": "1274" }, { "key": "geid_144_9087", "source": "7985", "target": "3823" }, { "key": "geid_144_9088", "source": "6212", "target": "5301" }, { "key": "geid_144_9089", "source": "856", "target": "143" }, { "key": "geid_144_9090", "source": "8033", "target": "2918" }, { "key": "geid_144_9091", "source": "4544", "target": "5087" }, { "key": "geid_144_9092", "source": "17", "target": "6241" }, { "key": "geid_144_9093", "source": "8997", "target": "6647" }, { "key": "geid_144_9094", "source": "8193", "target": "3057" }, { "key": "geid_144_9095", "source": "8836", "target": "8262" }, { "key": "geid_144_9096", "source": "1965", "target": "9601" }, { "key": "geid_144_9097", "source": "4365", "target": "7204" }, { "key": "geid_144_9098", "source": "6726", "target": "7710" }, { "key": "geid_144_9099", "source": "5895", "target": "1552" }, { "key": "geid_144_9100", "source": "2930", "target": "3605" }, { "key": "geid_144_9101", "source": "2586", "target": "1890" }, { "key": "geid_144_9102", "source": "6679", "target": "8356" }, { "key": "geid_144_9103", "source": "3727", "target": "2592" }, { "key": "geid_144_9104", "source": "5803", "target": "1588" }, { "key": "geid_144_9105", "source": "345", "target": "7945" }, { "key": "geid_144_9106", "source": "3509", "target": "515" }, { "key": "geid_144_9107", "source": "8272", "target": "2116" }, { "key": "geid_144_9108", "source": "4707", "target": "8025" }, { "key": "geid_144_9109", "source": "5059", "target": "7477" }, { "key": "geid_144_9110", "source": "690", "target": "1022" }, { "key": "geid_144_9111", "source": "5594", "target": "9170" }, { "key": "geid_144_9112", "source": "5706", "target": "7101" }, { "key": "geid_144_9113", "source": "8367", "target": "9621" }, { "key": "geid_144_9114", "source": "7133", "target": "4566" }, { "key": "geid_144_9115", "source": "6548", "target": "534" }, { "key": "geid_144_9116", "source": "7331", "target": "4744" }, { "key": "geid_144_9117", "source": "6033", "target": "8756" }, { "key": "geid_144_9118", "source": "2415", "target": "9209" }, { "key": "geid_144_9119", "source": "4782", "target": "3382" }, { "key": "geid_144_9120", "source": "9549", "target": "8757" }, { "key": "geid_144_9121", "source": "705", "target": "5296" }, { "key": "geid_144_9122", "source": "9617", "target": "7469" }, { "key": "geid_144_9123", "source": "5450", "target": "1329" }, { "key": "geid_144_9124", "source": "7641", "target": "7512" }, { "key": "geid_144_9125", "source": "9253", "target": "4505" }, { "key": "geid_144_9126", "source": "968", "target": "825" }, { "key": "geid_144_9127", "source": "446", "target": "9260" }, { "key": "geid_144_9128", "source": "4525", "target": "9747" }, { "key": "geid_144_9129", "source": "4913", "target": "1377" }, { "key": "geid_144_9130", "source": "3348", "target": "5495" }, { "key": "geid_144_9131", "source": "7398", "target": "7759" }, { "key": "geid_144_9132", "source": "199", "target": "3320" }, { "key": "geid_144_9133", "source": "1222", "target": "7449" }, { "key": "geid_144_9134", "source": "2161", "target": "6079" }, { "key": "geid_144_9135", "source": "652", "target": "2049" }, { "key": "geid_144_9136", "source": "7329", "target": "7245" }, { "key": "geid_144_9137", "source": "9113", "target": "8252" }, { "key": "geid_144_9138", "source": "7490", "target": "2214" }, { "key": "geid_144_9139", "source": "9022", "target": "3221" }, { "key": "geid_144_9140", "source": "650", "target": "146" }, { "key": "geid_144_9141", "source": "7165", "target": "73" }, { "key": "geid_144_9142", "source": "3845", "target": "9932" }, { "key": "geid_144_9143", "source": "7378", "target": "4886" }, { "key": "geid_144_9144", "source": "9158", "target": "4908" }, { "key": "geid_144_9145", "source": "6895", "target": "7860" }, { "key": "geid_144_9146", "source": "5996", "target": "6907" }, { "key": "geid_144_9147", "source": "2948", "target": "4117" }, { "key": "geid_144_9148", "source": "4429", "target": "9340" }, { "key": "geid_144_9149", "source": "6215", "target": "4279" }, { "key": "geid_144_9150", "source": "2220", "target": "8549" }, { "key": "geid_144_9151", "source": "9936", "target": "8509" }, { "key": "geid_144_9152", "source": "3520", "target": "9948" }, { "key": "geid_144_9153", "source": "6396", "target": "1414" }, { "key": "geid_144_9154", "source": "1750", "target": "2668" }, { "key": "geid_144_9155", "source": "2322", "target": "6606" }, { "key": "geid_144_9156", "source": "1803", "target": "7986" }, { "key": "geid_144_9157", "source": "1369", "target": "1980" }, { "key": "geid_144_9158", "source": "7946", "target": "7795" }, { "key": "geid_144_9159", "source": "5981", "target": "3742" }, { "key": "geid_144_9160", "source": "7564", "target": "9268" }, { "key": "geid_144_9161", "source": "5988", "target": "3810" }, { "key": "geid_144_9162", "source": "2128", "target": "1742" }, { "key": "geid_144_9163", "source": "6491", "target": "8594" }, { "key": "geid_144_9164", "source": "7548", "target": "9985" }, { "key": "geid_144_9165", "source": "6480", "target": "7627" }, { "key": "geid_144_9166", "source": "7578", "target": "8736" }, { "key": "geid_144_9167", "source": "2072", "target": "5753" }, { "key": "geid_144_9168", "source": "2796", "target": "9435" }, { "key": "geid_144_9169", "source": "3626", "target": "2035" }, { "key": "geid_144_9170", "source": "963", "target": "5685" }, { "key": "geid_144_9171", "source": "2108", "target": "9482" }, { "key": "geid_144_9172", "source": "9248", "target": "6941" }, { "key": "geid_144_9173", "source": "465", "target": "5729" }, { "key": "geid_144_9174", "source": "3886", "target": "8436" }, { "key": "geid_144_9175", "source": "7798", "target": "6678" }, { "key": "geid_144_9176", "source": "2355", "target": "1733" }, { "key": "geid_144_9177", "source": "20", "target": "2768" }, { "key": "geid_144_9178", "source": "3079", "target": "6927" }, { "key": "geid_144_9179", "source": "9098", "target": "6380" }, { "key": "geid_144_9180", "source": "2197", "target": "7520" }, { "key": "geid_144_9181", "source": "10", "target": "5840" }, { "key": "geid_144_9182", "source": "7646", "target": "1046" }, { "key": "geid_144_9183", "source": "4109", "target": "1746" }, { "key": "geid_144_9184", "source": "9722", "target": "9716" }, { "key": "geid_144_9185", "source": "2956", "target": "3943" }, { "key": "geid_144_9186", "source": "6295", "target": "22" }, { "key": "geid_144_9187", "source": "8439", "target": "3035" }, { "key": "geid_144_9188", "source": "1457", "target": "3054" }, { "key": "geid_144_9189", "source": "4751", "target": "2116" }, { "key": "geid_144_9190", "source": "6503", "target": "7149" }, { "key": "geid_144_9191", "source": "2365", "target": "3890" }, { "key": "geid_144_9192", "source": "7328", "target": "804" }, { "key": "geid_144_9193", "source": "6586", "target": "7494" }, { "key": "geid_144_9194", "source": "6903", "target": "5820" }, { "key": "geid_144_9195", "source": "2558", "target": "7755" }, { "key": "geid_144_9196", "source": "4565", "target": "9704" }, { "key": "geid_144_9197", "source": "7250", "target": "7577" }, { "key": "geid_144_9198", "source": "6605", "target": "2878" }, { "key": "geid_144_9199", "source": "5325", "target": "2134" }, { "key": "geid_144_9200", "source": "3174", "target": "8979" }, { "key": "geid_144_9201", "source": "5547", "target": "2517" }, { "key": "geid_144_9202", "source": "8964", "target": "72" }, { "key": "geid_144_9203", "source": "1918", "target": "3417" }, { "key": "geid_144_9204", "source": "6328", "target": "9029" }, { "key": "geid_144_9205", "source": "7780", "target": "5486" }, { "key": "geid_144_9206", "source": "2758", "target": "8040" }, { "key": "geid_144_9207", "source": "7376", "target": "7304" }, { "key": "geid_144_9208", "source": "3157", "target": "8930" }, { "key": "geid_144_9209", "source": "5729", "target": "4545" }, { "key": "geid_144_9210", "source": "6579", "target": "2635" }, { "key": "geid_144_9211", "source": "8952", "target": "2232" }, { "key": "geid_144_9212", "source": "4420", "target": "4111" }, { "key": "geid_144_9213", "source": "5075", "target": "2226" }, { "key": "geid_144_9214", "source": "4309", "target": "2209" }, { "key": "geid_144_9215", "source": "5653", "target": "5676" }, { "key": "geid_144_9216", "source": "6038", "target": "3174" }, { "key": "geid_144_9217", "source": "3725", "target": "7125" }, { "key": "geid_144_9218", "source": "3031", "target": "1256" }, { "key": "geid_144_9219", "source": "8412", "target": "3" }, { "key": "geid_144_9220", "source": "7544", "target": "6603" }, { "key": "geid_144_9221", "source": "7088", "target": "8201" }, { "key": "geid_144_9222", "source": "7176", "target": "1187" }, { "key": "geid_144_9223", "source": "7488", "target": "3268" }, { "key": "geid_144_9224", "source": "2524", "target": "6515" }, { "key": "geid_144_9225", "source": "6855", "target": "4535" }, { "key": "geid_144_9226", "source": "715", "target": "5521" }, { "key": "geid_144_9227", "source": "3555", "target": "535" }, { "key": "geid_144_9228", "source": "4306", "target": "9167" }, { "key": "geid_144_9229", "source": "1256", "target": "988" }, { "key": "geid_144_9230", "source": "1405", "target": "541" }, { "key": "geid_144_9231", "source": "7292", "target": "7156" }, { "key": "geid_144_9232", "source": "8113", "target": "9439" }, { "key": "geid_144_9233", "source": "5306", "target": "3728" }, { "key": "geid_144_9234", "source": "9546", "target": "6868" }, { "key": "geid_144_9235", "source": "2822", "target": "4969" }, { "key": "geid_144_9236", "source": "6887", "target": "4721" }, { "key": "geid_144_9237", "source": "9644", "target": "5837" }, { "key": "geid_144_9238", "source": "7629", "target": "5535" }, { "key": "geid_144_9239", "source": "4446", "target": "5859" }, { "key": "geid_144_9240", "source": "3615", "target": "9349" }, { "key": "geid_144_9241", "source": "5160", "target": "8834" }, { "key": "geid_144_9242", "source": "2564", "target": "7711" }, { "key": "geid_144_9243", "source": "881", "target": "5324" }, { "key": "geid_144_9244", "source": "67", "target": "2651" }, { "key": "geid_144_9245", "source": "7775", "target": "8853" }, { "key": "geid_144_9246", "source": "6869", "target": "2260" }, { "key": "geid_144_9247", "source": "722", "target": "831" }, { "key": "geid_144_9248", "source": "4504", "target": "952" }, { "key": "geid_144_9249", "source": "8401", "target": "3625" }, { "key": "geid_144_9250", "source": "3457", "target": "6796" }, { "key": "geid_144_9251", "source": "2262", "target": "2041" }, { "key": "geid_144_9252", "source": "5308", "target": "6198" }, { "key": "geid_144_9253", "source": "3057", "target": "6263" }, { "key": "geid_144_9254", "source": "3063", "target": "7540" }, { "key": "geid_144_9255", "source": "9090", "target": "7184" }, { "key": "geid_144_9256", "source": "2195", "target": "1261" }, { "key": "geid_144_9257", "source": "4717", "target": "5443" }, { "key": "geid_144_9258", "source": "4448", "target": "958" }, { "key": "geid_144_9259", "source": "5658", "target": "7835" }, { "key": "geid_144_9260", "source": "7829", "target": "9415" }, { "key": "geid_144_9261", "source": "2832", "target": "8725" }, { "key": "geid_144_9262", "source": "2344", "target": "5475" }, { "key": "geid_144_9263", "source": "2448", "target": "6623" }, { "key": "geid_144_9264", "source": "7639", "target": "9917" }, { "key": "geid_144_9265", "source": "2119", "target": "9722" }, { "key": "geid_144_9266", "source": "6179", "target": "2499" }, { "key": "geid_144_9267", "source": "2015", "target": "6219" }, { "key": "geid_144_9268", "source": "8090", "target": "9699" }, { "key": "geid_144_9269", "source": "1310", "target": "1243" }, { "key": "geid_144_9270", "source": "6479", "target": "9224" }, { "key": "geid_144_9271", "source": "1990", "target": "614" }, { "key": "geid_144_9272", "source": "9799", "target": "5738" }, { "key": "geid_144_9273", "source": "6564", "target": "8046" }, { "key": "geid_144_9274", "source": "6333", "target": "6154" }, { "key": "geid_144_9275", "source": "1563", "target": "3261" }, { "key": "geid_144_9276", "source": "9017", "target": "501" }, { "key": "geid_144_9277", "source": "4879", "target": "5781" }, { "key": "geid_144_9278", "source": "5609", "target": "3508" }, { "key": "geid_144_9279", "source": "541", "target": "3860" }, { "key": "geid_144_9280", "source": "6388", "target": "5771" }, { "key": "geid_144_9281", "source": "5580", "target": "7771" }, { "key": "geid_144_9282", "source": "2519", "target": "1134" }, { "key": "geid_144_9283", "source": "3016", "target": "1227" }, { "key": "geid_144_9284", "source": "553", "target": "9103" }, { "key": "geid_144_9285", "source": "1753", "target": "6147" }, { "key": "geid_144_9286", "source": "53", "target": "9975" }, { "key": "geid_144_9287", "source": "2284", "target": "1438" }, { "key": "geid_144_9288", "source": "2732", "target": "7811" }, { "key": "geid_144_9289", "source": "4788", "target": "4926" }, { "key": "geid_144_9290", "source": "4472", "target": "787" }, { "key": "geid_144_9291", "source": "6855", "target": "6254" }, { "key": "geid_144_9292", "source": "5368", "target": "4774" }, { "key": "geid_144_9293", "source": "7004", "target": "7850" }, { "key": "geid_144_9294", "source": "6158", "target": "1534" }, { "key": "geid_144_9295", "source": "8275", "target": "5217" }, { "key": "geid_144_9296", "source": "694", "target": "3425" }, { "key": "geid_144_9297", "source": "4665", "target": "7394" }, { "key": "geid_144_9298", "source": "461", "target": "9620" }, { "key": "geid_144_9299", "source": "7416", "target": "4261" }, { "key": "geid_144_9300", "source": "9250", "target": "3938" }, { "key": "geid_144_9301", "source": "6809", "target": "3523" }, { "key": "geid_144_9302", "source": "8138", "target": "218" }, { "key": "geid_144_9303", "source": "3060", "target": "5443" }, { "key": "geid_144_9304", "source": "4191", "target": "5408" }, { "key": "geid_144_9305", "source": "675", "target": "7249" }, { "key": "geid_144_9306", "source": "8059", "target": "9045" }, { "key": "geid_144_9307", "source": "1494", "target": "5613" }, { "key": "geid_144_9308", "source": "6864", "target": "8009" }, { "key": "geid_144_9309", "source": "382", "target": "2601" }, { "key": "geid_144_9310", "source": "6015", "target": "4865" }, { "key": "geid_144_9311", "source": "6286", "target": "2002" }, { "key": "geid_144_9312", "source": "9661", "target": "3341" }, { "key": "geid_144_9313", "source": "8719", "target": "1051" }, { "key": "geid_144_9314", "source": "6248", "target": "9516" }, { "key": "geid_144_9315", "source": "9431", "target": "5633" }, { "key": "geid_144_9316", "source": "6159", "target": "1541" }, { "key": "geid_144_9317", "source": "6470", "target": "3771" }, { "key": "geid_144_9318", "source": "8927", "target": "2016" }, { "key": "geid_144_9319", "source": "8819", "target": "1664" }, { "key": "geid_144_9320", "source": "7163", "target": "8560" }, { "key": "geid_144_9321", "source": "4739", "target": "5606" }, { "key": "geid_144_9322", "source": "8144", "target": "8600" }, { "key": "geid_144_9323", "source": "9434", "target": "3390" }, { "key": "geid_144_9324", "source": "2898", "target": "963" }, { "key": "geid_144_9325", "source": "5126", "target": "132" }, { "key": "geid_144_9326", "source": "3562", "target": "40" }, { "key": "geid_144_9327", "source": "7707", "target": "2818" }, { "key": "geid_144_9328", "source": "7563", "target": "6028" }, { "key": "geid_144_9329", "source": "66", "target": "4368" }, { "key": "geid_144_9330", "source": "3504", "target": "4979" }, { "key": "geid_144_9331", "source": "3996", "target": "5871" }, { "key": "geid_144_9332", "source": "6442", "target": "7944" }, { "key": "geid_144_9333", "source": "3935", "target": "4084" }, { "key": "geid_144_9334", "source": "9738", "target": "5544" }, { "key": "geid_144_9335", "source": "1187", "target": "556" }, { "key": "geid_144_9336", "source": "3744", "target": "5009" }, { "key": "geid_144_9337", "source": "8485", "target": "5555" }, { "key": "geid_144_9338", "source": "8075", "target": "8553" }, { "key": "geid_144_9339", "source": "1223", "target": "3063" }, { "key": "geid_144_9340", "source": "6608", "target": "5261" }, { "key": "geid_144_9341", "source": "3330", "target": "285" }, { "key": "geid_144_9342", "source": "7408", "target": "1529" }, { "key": "geid_144_9343", "source": "1338", "target": "2882" }, { "key": "geid_144_9344", "source": "3969", "target": "7881" }, { "key": "geid_144_9345", "source": "5140", "target": "3502" }, { "key": "geid_144_9346", "source": "1670", "target": "7302" }, { "key": "geid_144_9347", "source": "2115", "target": "3931" }, { "key": "geid_144_9348", "source": "9421", "target": "5633" }, { "key": "geid_144_9349", "source": "5206", "target": "5876" }, { "key": "geid_144_9350", "source": "1015", "target": "4138" }, { "key": "geid_144_9351", "source": "3977", "target": "2201" }, { "key": "geid_144_9352", "source": "5976", "target": "4262" }, { "key": "geid_144_9353", "source": "9088", "target": "4150" }, { "key": "geid_144_9354", "source": "9205", "target": "6297" }, { "key": "geid_144_9355", "source": "44", "target": "4041" }, { "key": "geid_144_9356", "source": "8967", "target": "7920" }, { "key": "geid_144_9357", "source": "46", "target": "5009" }, { "key": "geid_144_9358", "source": "1941", "target": "3079" }, { "key": "geid_144_9359", "source": "9940", "target": "7759" }, { "key": "geid_144_9360", "source": "9446", "target": "1514" }, { "key": "geid_144_9361", "source": "1471", "target": "8378" }, { "key": "geid_144_9362", "source": "7699", "target": "7425" }, { "key": "geid_144_9363", "source": "2700", "target": "3740" }, { "key": "geid_144_9364", "source": "4019", "target": "6198" }, { "key": "geid_144_9365", "source": "3956", "target": "117" }, { "key": "geid_144_9366", "source": "4124", "target": "6623" }, { "key": "geid_144_9367", "source": "8723", "target": "9274" }, { "key": "geid_144_9368", "source": "2848", "target": "5479" }, { "key": "geid_144_9369", "source": "4309", "target": "6213" }, { "key": "geid_144_9370", "source": "4251", "target": "1721" }, { "key": "geid_144_9371", "source": "687", "target": "2551" }, { "key": "geid_144_9372", "source": "3303", "target": "8224" }, { "key": "geid_144_9373", "source": "1759", "target": "75" }, { "key": "geid_144_9374", "source": "3388", "target": "7952" }, { "key": "geid_144_9375", "source": "9976", "target": "6750" }, { "key": "geid_144_9376", "source": "3615", "target": "3660" }, { "key": "geid_144_9377", "source": "4227", "target": "9670" }, { "key": "geid_144_9378", "source": "1232", "target": "7994" }, { "key": "geid_144_9379", "source": "4691", "target": "7222" }, { "key": "geid_144_9380", "source": "7202", "target": "4126" }, { "key": "geid_144_9381", "source": "4479", "target": "6203" }, { "key": "geid_144_9382", "source": "566", "target": "4158" }, { "key": "geid_144_9383", "source": "1205", "target": "6571" }, { "key": "geid_144_9384", "source": "66", "target": "9200" }, { "key": "geid_144_9385", "source": "7368", "target": "105" }, { "key": "geid_144_9386", "source": "1257", "target": "3014" }, { "key": "geid_144_9387", "source": "6996", "target": "9105" }, { "key": "geid_144_9388", "source": "370", "target": "1894" }, { "key": "geid_144_9389", "source": "8367", "target": "3962" }, { "key": "geid_144_9390", "source": "1753", "target": "7675" }, { "key": "geid_144_9391", "source": "756", "target": "4862" }, { "key": "geid_144_9392", "source": "8704", "target": "5315" }, { "key": "geid_144_9393", "source": "8644", "target": "6935" }, { "key": "geid_144_9394", "source": "1968", "target": "9049" }, { "key": "geid_144_9395", "source": "1368", "target": "2286" }, { "key": "geid_144_9396", "source": "5628", "target": "2885" }, { "key": "geid_144_9397", "source": "5464", "target": "8908" }, { "key": "geid_144_9398", "source": "3127", "target": "6928" }, { "key": "geid_144_9399", "source": "5364", "target": "223" }, { "key": "geid_144_9400", "source": "7925", "target": "4089" }, { "key": "geid_144_9401", "source": "7412", "target": "8230" }, { "key": "geid_144_9402", "source": "4394", "target": "1838" }, { "key": "geid_144_9403", "source": "2726", "target": "6279" }, { "key": "geid_144_9404", "source": "4155", "target": "8780" }, { "key": "geid_144_9405", "source": "6475", "target": "3093" }, { "key": "geid_144_9406", "source": "7253", "target": "3434" }, { "key": "geid_144_9407", "source": "6661", "target": "8019" }, { "key": "geid_144_9408", "source": "7688", "target": "1889" }, { "key": "geid_144_9409", "source": "8833", "target": "250" }, { "key": "geid_144_9410", "source": "6315", "target": "6274" }, { "key": "geid_144_9411", "source": "8967", "target": "3269" }, { "key": "geid_144_9412", "source": "8793", "target": "8108" }, { "key": "geid_144_9413", "source": "4935", "target": "6388" }, { "key": "geid_144_9414", "source": "6217", "target": "4022" }, { "key": "geid_144_9415", "source": "1395", "target": "7066" }, { "key": "geid_144_9416", "source": "8400", "target": "4359" }, { "key": "geid_144_9417", "source": "167", "target": "9984" }, { "key": "geid_144_9418", "source": "2066", "target": "2251" }, { "key": "geid_144_9419", "source": "7514", "target": "1427" }, { "key": "geid_144_9420", "source": "1890", "target": "9261" }, { "key": "geid_144_9421", "source": "3453", "target": "5038" }, { "key": "geid_144_9422", "source": "6007", "target": "4454" }, { "key": "geid_144_9423", "source": "304", "target": "9400" }, { "key": "geid_144_9424", "source": "8019", "target": "3539" }, { "key": "geid_144_9425", "source": "2601", "target": "1796" }, { "key": "geid_144_9426", "source": "5883", "target": "234" }, { "key": "geid_144_9427", "source": "9437", "target": "8727" }, { "key": "geid_144_9428", "source": "65", "target": "6503" }, { "key": "geid_144_9429", "source": "7370", "target": "4627" }, { "key": "geid_144_9430", "source": "7230", "target": "7247" }, { "key": "geid_144_9431", "source": "1941", "target": "8752" }, { "key": "geid_144_9432", "source": "9650", "target": "1819" }, { "key": "geid_144_9433", "source": "824", "target": "1502" }, { "key": "geid_144_9434", "source": "385", "target": "2777" }, { "key": "geid_144_9435", "source": "984", "target": "7234" }, { "key": "geid_144_9436", "source": "1226", "target": "1181" }, { "key": "geid_144_9437", "source": "2865", "target": "6096" }, { "key": "geid_144_9438", "source": "1993", "target": "2398" }, { "key": "geid_144_9439", "source": "5963", "target": "4771" }, { "key": "geid_144_9440", "source": "7373", "target": "4027" }, { "key": "geid_144_9441", "source": "1417", "target": "2234" }, { "key": "geid_144_9442", "source": "1491", "target": "9639" }, { "key": "geid_144_9443", "source": "2713", "target": "3335" }, { "key": "geid_144_9444", "source": "7305", "target": "3176" }, { "key": "geid_144_9445", "source": "3190", "target": "6887" }, { "key": "geid_144_9446", "source": "258", "target": "6719" }, { "key": "geid_144_9447", "source": "8160", "target": "2394" }, { "key": "geid_144_9448", "source": "4026", "target": "1165" }, { "key": "geid_144_9449", "source": "9193", "target": "7282" }, { "key": "geid_144_9450", "source": "1564", "target": "6109" }, { "key": "geid_144_9451", "source": "5111", "target": "2062" }, { "key": "geid_144_9452", "source": "3831", "target": "2000" }, { "key": "geid_144_9453", "source": "5258", "target": "5918" }, { "key": "geid_144_9454", "source": "7708", "target": "7278" }, { "key": "geid_144_9455", "source": "7643", "target": "9873" }, { "key": "geid_144_9456", "source": "4966", "target": "9006" }, { "key": "geid_144_9457", "source": "7805", "target": "3634" }, { "key": "geid_144_9458", "source": "9781", "target": "5733" }, { "key": "geid_144_9459", "source": "637", "target": "8730" }, { "key": "geid_144_9460", "source": "9009", "target": "3648" }, { "key": "geid_144_9461", "source": "4807", "target": "15" }, { "key": "geid_144_9462", "source": "325", "target": "836" }, { "key": "geid_144_9463", "source": "8102", "target": "4476" }, { "key": "geid_144_9464", "source": "9247", "target": "9867" }, { "key": "geid_144_9465", "source": "5812", "target": "3068" }, { "key": "geid_144_9466", "source": "4446", "target": "4070" }, { "key": "geid_144_9467", "source": "525", "target": "1837" }, { "key": "geid_144_9468", "source": "836", "target": "4868" }, { "key": "geid_144_9469", "source": "9677", "target": "733" }, { "key": "geid_144_9470", "source": "4264", "target": "1092" }, { "key": "geid_144_9471", "source": "7720", "target": "4882" }, { "key": "geid_144_9472", "source": "4904", "target": "1244" }, { "key": "geid_144_9473", "source": "9215", "target": "6112" }, { "key": "geid_144_9474", "source": "3130", "target": "2243" }, { "key": "geid_144_9475", "source": "4000", "target": "8870" }, { "key": "geid_144_9476", "source": "1570", "target": "4933" }, { "key": "geid_144_9477", "source": "2474", "target": "6053" }, { "key": "geid_144_9478", "source": "5276", "target": "4429" }, { "key": "geid_144_9479", "source": "2907", "target": "5233" }, { "key": "geid_144_9480", "source": "5743", "target": "4921" }, { "key": "geid_144_9481", "source": "3612", "target": "982" }, { "key": "geid_144_9482", "source": "955", "target": "6989" }, { "key": "geid_144_9483", "source": "4922", "target": "9379" }, { "key": "geid_144_9484", "source": "7847", "target": "9629" }, { "key": "geid_144_9485", "source": "54", "target": "9205" }, { "key": "geid_144_9486", "source": "1422", "target": "4843" }, { "key": "geid_144_9487", "source": "9111", "target": "9288" }, { "key": "geid_144_9488", "source": "5329", "target": "5425" }, { "key": "geid_144_9489", "source": "2382", "target": "483" }, { "key": "geid_144_9490", "source": "8677", "target": "5019" }, { "key": "geid_144_9491", "source": "6849", "target": "666" }, { "key": "geid_144_9492", "source": "9867", "target": "3998" }, { "key": "geid_144_9493", "source": "6572", "target": "3126" }, { "key": "geid_144_9494", "source": "6097", "target": "7118" }, { "key": "geid_144_9495", "source": "4565", "target": "6653" }, { "key": "geid_144_9496", "source": "4655", "target": "4988" }, { "key": "geid_144_9497", "source": "4386", "target": "8110" }, { "key": "geid_144_9498", "source": "6092", "target": "8847" }, { "key": "geid_144_9499", "source": "8453", "target": "9515" }, { "key": "geid_144_9500", "source": "3596", "target": "1636" }, { "key": "geid_144_9501", "source": "1531", "target": "3028" }, { "key": "geid_144_9502", "source": "6175", "target": "4774" }, { "key": "geid_144_9503", "source": "2534", "target": "8803" }, { "key": "geid_144_9504", "source": "3389", "target": "2544" }, { "key": "geid_144_9505", "source": "378", "target": "2707" }, { "key": "geid_144_9506", "source": "8385", "target": "8640" }, { "key": "geid_144_9507", "source": "3696", "target": "8605" }, { "key": "geid_144_9508", "source": "8203", "target": "6789" }, { "key": "geid_144_9509", "source": "6844", "target": "6821" }, { "key": "geid_144_9510", "source": "6456", "target": "4779" }, { "key": "geid_144_9511", "source": "7552", "target": "7194" }, { "key": "geid_144_9512", "source": "2963", "target": "2906" }, { "key": "geid_144_9513", "source": "7582", "target": "1359" }, { "key": "geid_144_9514", "source": "8835", "target": "5923" }, { "key": "geid_144_9515", "source": "814", "target": "2852" }, { "key": "geid_144_9516", "source": "3697", "target": "1447" }, { "key": "geid_144_9517", "source": "8831", "target": "2283" }, { "key": "geid_144_9518", "source": "4545", "target": "4895" }, { "key": "geid_144_9519", "source": "5028", "target": "3502" }, { "key": "geid_144_9520", "source": "3490", "target": "7383" }, { "key": "geid_144_9521", "source": "4986", "target": "3693" }, { "key": "geid_144_9522", "source": "5392", "target": "1354" }, { "key": "geid_144_9523", "source": "4328", "target": "3420" }, { "key": "geid_144_9524", "source": "749", "target": "9179" }, { "key": "geid_144_9525", "source": "7989", "target": "6772" }, { "key": "geid_144_9526", "source": "5424", "target": "7857" }, { "key": "geid_144_9527", "source": "9889", "target": "4768" }, { "key": "geid_144_9528", "source": "1495", "target": "3129" }, { "key": "geid_144_9529", "source": "7566", "target": "5880" }, { "key": "geid_144_9530", "source": "678", "target": "2918" }, { "key": "geid_144_9531", "source": "829", "target": "6380" }, { "key": "geid_144_9532", "source": "5193", "target": "5767" }, { "key": "geid_144_9533", "source": "8748", "target": "829" }, { "key": "geid_144_9534", "source": "3284", "target": "6632" }, { "key": "geid_144_9535", "source": "5973", "target": "8421" }, { "key": "geid_144_9536", "source": "857", "target": "5814" }, { "key": "geid_144_9537", "source": "3303", "target": "4097" }, { "key": "geid_144_9538", "source": "8463", "target": "4423" }, { "key": "geid_144_9539", "source": "6850", "target": "9478" }, { "key": "geid_144_9540", "source": "2118", "target": "6936" }, { "key": "geid_144_9541", "source": "5918", "target": "7276" }, { "key": "geid_144_9542", "source": "572", "target": "4875" }, { "key": "geid_144_9543", "source": "2076", "target": "3125" }, { "key": "geid_144_9544", "source": "3230", "target": "3896" }, { "key": "geid_144_9545", "source": "8441", "target": "6060" }, { "key": "geid_144_9546", "source": "6318", "target": "5542" }, { "key": "geid_144_9547", "source": "9734", "target": "3074" }, { "key": "geid_144_9548", "source": "3660", "target": "2739" }, { "key": "geid_144_9549", "source": "3566", "target": "1150" }, { "key": "geid_144_9550", "source": "1074", "target": "3544" }, { "key": "geid_144_9551", "source": "4261", "target": "1576" }, { "key": "geid_144_9552", "source": "3657", "target": "7096" }, { "key": "geid_144_9553", "source": "5495", "target": "7132" }, { "key": "geid_144_9554", "source": "6838", "target": "5896" }, { "key": "geid_144_9555", "source": "5745", "target": "70" }, { "key": "geid_144_9556", "source": "2828", "target": "8770" }, { "key": "geid_144_9557", "source": "2424", "target": "9985" }, { "key": "geid_144_9558", "source": "3506", "target": "7851" }, { "key": "geid_144_9559", "source": "4577", "target": "7752" }, { "key": "geid_144_9560", "source": "3154", "target": "7959" }, { "key": "geid_144_9561", "source": "4201", "target": "5289" }, { "key": "geid_144_9562", "source": "1360", "target": "8766" }, { "key": "geid_144_9563", "source": "6939", "target": "4723" }, { "key": "geid_144_9564", "source": "1585", "target": "8441" }, { "key": "geid_144_9565", "source": "4165", "target": "5621" }, { "key": "geid_144_9566", "source": "5795", "target": "3433" }, { "key": "geid_144_9567", "source": "7353", "target": "3632" }, { "key": "geid_144_9568", "source": "9766", "target": "6574" }, { "key": "geid_144_9569", "source": "4245", "target": "1006" }, { "key": "geid_144_9570", "source": "6269", "target": "8537" }, { "key": "geid_144_9571", "source": "8967", "target": "9430" }, { "key": "geid_144_9572", "source": "1244", "target": "1469" }, { "key": "geid_144_9573", "source": "9334", "target": "5327" }, { "key": "geid_144_9574", "source": "4575", "target": "4351" }, { "key": "geid_144_9575", "source": "8149", "target": "5939" }, { "key": "geid_144_9576", "source": "4427", "target": "2767" }, { "key": "geid_144_9577", "source": "5069", "target": "3411" }, { "key": "geid_144_9578", "source": "8087", "target": "7659" }, { "key": "geid_144_9579", "source": "5491", "target": "7686" }, { "key": "geid_144_9580", "source": "3684", "target": "3182" }, { "key": "geid_144_9581", "source": "8934", "target": "6501" }, { "key": "geid_144_9582", "source": "708", "target": "6319" }, { "key": "geid_144_9583", "source": "3353", "target": "7812" }, { "key": "geid_144_9584", "source": "1474", "target": "6868" }, { "key": "geid_144_9585", "source": "8537", "target": "262" }, { "key": "geid_144_9586", "source": "9595", "target": "7255" }, { "key": "geid_144_9587", "source": "3495", "target": "4914" }, { "key": "geid_144_9588", "source": "7583", "target": "4967" }, { "key": "geid_144_9589", "source": "9298", "target": "9432" }, { "key": "geid_144_9590", "source": "8162", "target": "1880" }, { "key": "geid_144_9591", "source": "5662", "target": "3791" }, { "key": "geid_144_9592", "source": "6839", "target": "875" }, { "key": "geid_144_9593", "source": "2348", "target": "945" }, { "key": "geid_144_9594", "source": "5374", "target": "2981" }, { "key": "geid_144_9595", "source": "4737", "target": "7713" }, { "key": "geid_144_9596", "source": "8149", "target": "207" }, { "key": "geid_144_9597", "source": "5517", "target": "6293" }, { "key": "geid_144_9598", "source": "3226", "target": "5206" }, { "key": "geid_144_9599", "source": "6182", "target": "1391" }, { "key": "geid_144_9600", "source": "5727", "target": "4961" }, { "key": "geid_144_9601", "source": "8816", "target": "7159" }, { "key": "geid_144_9602", "source": "403", "target": "1984" }, { "key": "geid_144_9603", "source": "7165", "target": "7968" }, { "key": "geid_144_9604", "source": "1896", "target": "2443" }, { "key": "geid_144_9605", "source": "1364", "target": "6830" }, { "key": "geid_144_9606", "source": "1125", "target": "280" }, { "key": "geid_144_9607", "source": "541", "target": "4754" }, { "key": "geid_144_9608", "source": "55", "target": "6229" }, { "key": "geid_144_9609", "source": "9716", "target": "3732" }, { "key": "geid_144_9610", "source": "7900", "target": "719" }, { "key": "geid_144_9611", "source": "5373", "target": "8964" }, { "key": "geid_144_9612", "source": "5852", "target": "42" }, { "key": "geid_144_9613", "source": "4025", "target": "1662" }, { "key": "geid_144_9614", "source": "1484", "target": "8041" }, { "key": "geid_144_9615", "source": "9439", "target": "2560" }, { "key": "geid_144_9616", "source": "8550", "target": "4180" }, { "key": "geid_144_9617", "source": "7368", "target": "5361" }, { "key": "geid_144_9618", "source": "6574", "target": "9518" }, { "key": "geid_144_9619", "source": "4886", "target": "75" }, { "key": "geid_144_9620", "source": "7303", "target": "1050" }, { "key": "geid_144_9621", "source": "2006", "target": "5111" }, { "key": "geid_144_9622", "source": "399", "target": "6748" }, { "key": "geid_144_9623", "source": "7693", "target": "2406" }, { "key": "geid_144_9624", "source": "5027", "target": "3138" }, { "key": "geid_144_9625", "source": "7577", "target": "2182" }, { "key": "geid_144_9626", "source": "2536", "target": "9018" }, { "key": "geid_144_9627", "source": "4531", "target": "8107" }, { "key": "geid_144_9628", "source": "3258", "target": "5675" }, { "key": "geid_144_9629", "source": "9067", "target": "5658" }, { "key": "geid_144_9630", "source": "8676", "target": "5020" }, { "key": "geid_144_9631", "source": "4134", "target": "5212" }, { "key": "geid_144_9632", "source": "9698", "target": "175" }, { "key": "geid_144_9633", "source": "5519", "target": "1857" }, { "key": "geid_144_9634", "source": "5743", "target": "2610" }, { "key": "geid_144_9635", "source": "6500", "target": "2457" }, { "key": "geid_144_9636", "source": "4600", "target": "9155" }, { "key": "geid_144_9637", "source": "3630", "target": "4758" }, { "key": "geid_144_9638", "source": "9989", "target": "532" }, { "key": "geid_144_9639", "source": "4802", "target": "4553" }, { "key": "geid_144_9640", "source": "9358", "target": "6633" }, { "key": "geid_144_9641", "source": "299", "target": "7076" }, { "key": "geid_144_9642", "source": "6891", "target": "2840" }, { "key": "geid_144_9643", "source": "4502", "target": "8510" }, { "key": "geid_144_9644", "source": "2932", "target": "5598" }, { "key": "geid_144_9645", "source": "902", "target": "7217" }, { "key": "geid_144_9646", "source": "5430", "target": "2001" }, { "key": "geid_144_9647", "source": "7047", "target": "7844" }, { "key": "geid_144_9648", "source": "4722", "target": "1705" }, { "key": "geid_144_9649", "source": "7618", "target": "4658" }, { "key": "geid_144_9650", "source": "7747", "target": "8212" }, { "key": "geid_144_9651", "source": "3025", "target": "3725" }, { "key": "geid_144_9652", "source": "6955", "target": "2163" }, { "key": "geid_144_9653", "source": "8993", "target": "5784" }, { "key": "geid_144_9654", "source": "9089", "target": "1739" }, { "key": "geid_144_9655", "source": "3238", "target": "4420" }, { "key": "geid_144_9656", "source": "1818", "target": "584" }, { "key": "geid_144_9657", "source": "3462", "target": "7896" }, { "key": "geid_144_9658", "source": "5862", "target": "2695" }, { "key": "geid_144_9659", "source": "9079", "target": "9352" }, { "key": "geid_144_9660", "source": "9048", "target": "4221" }, { "key": "geid_144_9661", "source": "5876", "target": "4131" }, { "key": "geid_144_9662", "source": "5967", "target": "2751" }, { "key": "geid_144_9663", "source": "7912", "target": "9169" }, { "key": "geid_144_9664", "source": "9738", "target": "770" }, { "key": "geid_144_9665", "source": "2884", "target": "8611" }, { "key": "geid_144_9666", "source": "7012", "target": "5797" }, { "key": "geid_144_9667", "source": "9014", "target": "4866" }, { "key": "geid_144_9668", "source": "9881", "target": "5747" }, { "key": "geid_144_9669", "source": "5735", "target": "6199" }, { "key": "geid_144_9670", "source": "7112", "target": "1818" }, { "key": "geid_144_9671", "source": "9830", "target": "9825" }, { "key": "geid_144_9672", "source": "6895", "target": "7243" }, { "key": "geid_144_9673", "source": "6342", "target": "648" }, { "key": "geid_144_9674", "source": "8427", "target": "7917" }, { "key": "geid_144_9675", "source": "7215", "target": "4488" }, { "key": "geid_144_9676", "source": "7547", "target": "156" }, { "key": "geid_144_9677", "source": "8370", "target": "7296" }, { "key": "geid_144_9678", "source": "7257", "target": "382" }, { "key": "geid_144_9679", "source": "9370", "target": "8500" }, { "key": "geid_144_9680", "source": "7064", "target": "4502" }, { "key": "geid_144_9681", "source": "2263", "target": "6066" }, { "key": "geid_144_9682", "source": "3039", "target": "1384" }, { "key": "geid_144_9683", "source": "7886", "target": "7830" }, { "key": "geid_144_9684", "source": "1432", "target": "3442" }, { "key": "geid_144_9685", "source": "737", "target": "725" }, { "key": "geid_144_9686", "source": "6173", "target": "154" }, { "key": "geid_144_9687", "source": "6657", "target": "1972" }, { "key": "geid_144_9688", "source": "58", "target": "7451" }, { "key": "geid_144_9689", "source": "6434", "target": "6197" }, { "key": "geid_144_9690", "source": "3095", "target": "3293" }, { "key": "geid_144_9691", "source": "9429", "target": "2772" }, { "key": "geid_144_9692", "source": "9380", "target": "8580" }, { "key": "geid_144_9693", "source": "295", "target": "5780" }, { "key": "geid_144_9694", "source": "7167", "target": "4356" }, { "key": "geid_144_9695", "source": "7591", "target": "5164" }, { "key": "geid_144_9696", "source": "6685", "target": "4126" }, { "key": "geid_144_9697", "source": "3023", "target": "6173" }, { "key": "geid_144_9698", "source": "2618", "target": "1901" }, { "key": "geid_144_9699", "source": "3108", "target": "468" }, { "key": "geid_144_9700", "source": "7287", "target": "1049" }, { "key": "geid_144_9701", "source": "7920", "target": "5065" }, { "key": "geid_144_9702", "source": "179", "target": "6513" }, { "key": "geid_144_9703", "source": "5559", "target": "164" }, { "key": "geid_144_9704", "source": "4158", "target": "2218" }, { "key": "geid_144_9705", "source": "9652", "target": "147" }, { "key": "geid_144_9706", "source": "7072", "target": "9360" }, { "key": "geid_144_9707", "source": "451", "target": "9630" }, { "key": "geid_144_9708", "source": "539", "target": "9198" }, { "key": "geid_144_9709", "source": "7815", "target": "2231" }, { "key": "geid_144_9710", "source": "9499", "target": "5508" }, { "key": "geid_144_9711", "source": "6317", "target": "809" }, { "key": "geid_144_9712", "source": "3227", "target": "5594" }, { "key": "geid_144_9713", "source": "8405", "target": "7004" }, { "key": "geid_144_9714", "source": "558", "target": "6752" }, { "key": "geid_144_9715", "source": "1971", "target": "1064" }, { "key": "geid_144_9716", "source": "3576", "target": "3649" }, { "key": "geid_144_9717", "source": "3460", "target": "8127" }, { "key": "geid_144_9718", "source": "2524", "target": "3694" }, { "key": "geid_144_9719", "source": "3183", "target": "9054" }, { "key": "geid_144_9720", "source": "2311", "target": "5987" }, { "key": "geid_144_9721", "source": "4190", "target": "2166" }, { "key": "geid_144_9722", "source": "8080", "target": "8784" }, { "key": "geid_144_9723", "source": "8986", "target": "3728" }, { "key": "geid_144_9724", "source": "5890", "target": "4193" }, { "key": "geid_144_9725", "source": "2548", "target": "6047" }, { "key": "geid_144_9726", "source": "5572", "target": "1027" }, { "key": "geid_144_9727", "source": "8962", "target": "2164" }, { "key": "geid_144_9728", "source": "7285", "target": "147" }, { "key": "geid_144_9729", "source": "6449", "target": "8379" }, { "key": "geid_144_9730", "source": "6305", "target": "5404" }, { "key": "geid_144_9731", "source": "9124", "target": "226" }, { "key": "geid_144_9732", "source": "6596", "target": "6060" }, { "key": "geid_144_9733", "source": "6683", "target": "7167" }, { "key": "geid_144_9734", "source": "8464", "target": "7651" }, { "key": "geid_144_9735", "source": "7006", "target": "9633" }, { "key": "geid_144_9736", "source": "6149", "target": "2254" }, { "key": "geid_144_9737", "source": "4564", "target": "8738" }, { "key": "geid_144_9738", "source": "9323", "target": "1905" }, { "key": "geid_144_9739", "source": "744", "target": "291" }, { "key": "geid_144_9740", "source": "8023", "target": "5064" }, { "key": "geid_144_9741", "source": "3010", "target": "7133" }, { "key": "geid_144_9742", "source": "4752", "target": "5808" }, { "key": "geid_144_9743", "source": "9890", "target": "145" }, { "key": "geid_144_9744", "source": "2663", "target": "611" }, { "key": "geid_144_9745", "source": "1830", "target": "9131" }, { "key": "geid_144_9746", "source": "9090", "target": "6977" }, { "key": "geid_144_9747", "source": "1361", "target": "3061" }, { "key": "geid_144_9748", "source": "3723", "target": "3591" }, { "key": "geid_144_9749", "source": "1050", "target": "9602" }, { "key": "geid_144_9750", "source": "7473", "target": "9867" }, { "key": "geid_144_9751", "source": "3248", "target": "9503" }, { "key": "geid_144_9752", "source": "2433", "target": "4317" }, { "key": "geid_144_9753", "source": "6029", "target": "5520" }, { "key": "geid_144_9754", "source": "6392", "target": "5571" }, { "key": "geid_144_9755", "source": "7966", "target": "3714" }, { "key": "geid_144_9756", "source": "5062", "target": "2818" }, { "key": "geid_144_9757", "source": "3458", "target": "6359" }, { "key": "geid_144_9758", "source": "6557", "target": "4061" }, { "key": "geid_144_9759", "source": "5603", "target": "5659" }, { "key": "geid_144_9760", "source": "6347", "target": "9065" }, { "key": "geid_144_9761", "source": "7033", "target": "1988" }, { "key": "geid_144_9762", "source": "4423", "target": "395" }, { "key": "geid_144_9763", "source": "8345", "target": "7099" }, { "key": "geid_144_9764", "source": "5020", "target": "876" }, { "key": "geid_144_9765", "source": "4356", "target": "6123" }, { "key": "geid_144_9766", "source": "8796", "target": "1310" }, { "key": "geid_144_9767", "source": "3447", "target": "3636" }, { "key": "geid_144_9768", "source": "9260", "target": "9084" }, { "key": "geid_144_9769", "source": "6123", "target": "4759" }, { "key": "geid_144_9770", "source": "500", "target": "7779" }, { "key": "geid_144_9771", "source": "4227", "target": "3046" }, { "key": "geid_144_9772", "source": "3943", "target": "2876" }, { "key": "geid_144_9773", "source": "8902", "target": "7404" }, { "key": "geid_144_9774", "source": "1912", "target": "8363" }, { "key": "geid_144_9775", "source": "4294", "target": "9027" }, { "key": "geid_144_9776", "source": "8121", "target": "6759" }, { "key": "geid_144_9777", "source": "2760", "target": "2193" }, { "key": "geid_144_9778", "source": "5116", "target": "9130" }, { "key": "geid_144_9779", "source": "4703", "target": "4281" }, { "key": "geid_144_9780", "source": "2032", "target": "1561" }, { "key": "geid_144_9781", "source": "7246", "target": "7257" }, { "key": "geid_144_9782", "source": "8401", "target": "7963" }, { "key": "geid_144_9783", "source": "4707", "target": "693" }, { "key": "geid_144_9784", "source": "3135", "target": "6567" }, { "key": "geid_144_9785", "source": "8780", "target": "3243" }, { "key": "geid_144_9786", "source": "487", "target": "4778" }, { "key": "geid_144_9787", "source": "9753", "target": "3596" }, { "key": "geid_144_9788", "source": "9003", "target": "9087" }, { "key": "geid_144_9789", "source": "5985", "target": "2495" }, { "key": "geid_144_9790", "source": "4089", "target": "1961" }, { "key": "geid_144_9791", "source": "6804", "target": "1604" }, { "key": "geid_144_9792", "source": "6390", "target": "3434" }, { "key": "geid_144_9793", "source": "3517", "target": "8504" }, { "key": "geid_144_9794", "source": "2830", "target": "4566" }, { "key": "geid_144_9795", "source": "4412", "target": "6653" }, { "key": "geid_144_9796", "source": "4408", "target": "1658" }, { "key": "geid_144_9797", "source": "6317", "target": "5675" }, { "key": "geid_144_9798", "source": "1247", "target": "1217" }, { "key": "geid_144_9799", "source": "6957", "target": "9845" }, { "key": "geid_144_9800", "source": "2209", "target": "2594" }, { "key": "geid_144_9801", "source": "5411", "target": "8822" }, { "key": "geid_144_9802", "source": "2286", "target": "8919" }, { "key": "geid_144_9803", "source": "3839", "target": "8805" }, { "key": "geid_144_9804", "source": "21", "target": "2684" }, { "key": "geid_144_9805", "source": "6812", "target": "1807" }, { "key": "geid_144_9806", "source": "9179", "target": "2351" }, { "key": "geid_144_9807", "source": "7918", "target": "7468" }, { "key": "geid_144_9808", "source": "5819", "target": "5535" }, { "key": "geid_144_9809", "source": "1945", "target": "8729" }, { "key": "geid_144_9810", "source": "5089", "target": "6490" }, { "key": "geid_144_9811", "source": "3036", "target": "402" }, { "key": "geid_144_9812", "source": "6149", "target": "8259" }, { "key": "geid_144_9813", "source": "6059", "target": "9219" }, { "key": "geid_144_9814", "source": "6522", "target": "484" }, { "key": "geid_144_9815", "source": "5459", "target": "6861" }, { "key": "geid_144_9816", "source": "686", "target": "4805" }, { "key": "geid_144_9817", "source": "2531", "target": "6944" }, { "key": "geid_144_9818", "source": "9236", "target": "3535" }, { "key": "geid_144_9819", "source": "9155", "target": "2595" }, { "key": "geid_144_9820", "source": "5761", "target": "8736" }, { "key": "geid_144_9821", "source": "4968", "target": "2700" }, { "key": "geid_144_9822", "source": "739", "target": "6421" }, { "key": "geid_144_9823", "source": "713", "target": "2368" }, { "key": "geid_144_9824", "source": "1645", "target": "2006" }, { "key": "geid_144_9825", "source": "2564", "target": "5000" }, { "key": "geid_144_9826", "source": "5126", "target": "9761" }, { "key": "geid_144_9827", "source": "1551", "target": "6387" }, { "key": "geid_144_9828", "source": "7948", "target": "4517" }, { "key": "geid_144_9829", "source": "3488", "target": "5290" }, { "key": "geid_144_9830", "source": "7446", "target": "9396" }, { "key": "geid_144_9831", "source": "716", "target": "1916" }, { "key": "geid_144_9832", "source": "1270", "target": "2855" }, { "key": "geid_144_9833", "source": "743", "target": "570" }, { "key": "geid_144_9834", "source": "6905", "target": "3785" }, { "key": "geid_144_9835", "source": "9963", "target": "2030" }, { "key": "geid_144_9836", "source": "8352", "target": "186" }, { "key": "geid_144_9837", "source": "4668", "target": "5483" }, { "key": "geid_144_9838", "source": "943", "target": "6761" }, { "key": "geid_144_9839", "source": "6206", "target": "1362" }, { "key": "geid_144_9840", "source": "3669", "target": "1424" }, { "key": "geid_144_9841", "source": "5984", "target": "4528" }, { "key": "geid_144_9842", "source": "9821", "target": "9623" }, { "key": "geid_144_9843", "source": "1422", "target": "5404" }, { "key": "geid_144_9844", "source": "5588", "target": "4344" }, { "key": "geid_144_9845", "source": "4926", "target": "6231" }, { "key": "geid_144_9846", "source": "5572", "target": "2229" }, { "key": "geid_144_9847", "source": "2913", "target": "7623" }, { "key": "geid_144_9848", "source": "5711", "target": "1842" }, { "key": "geid_144_9849", "source": "6892", "target": "495" }, { "key": "geid_144_9850", "source": "7329", "target": "7508" }, { "key": "geid_144_9851", "source": "3760", "target": "9242" }, { "key": "geid_144_9852", "source": "6513", "target": "9009" }, { "key": "geid_144_9853", "source": "6177", "target": "7721" }, { "key": "geid_144_9854", "source": "1212", "target": "6997" }, { "key": "geid_144_9855", "source": "8013", "target": "7937" }, { "key": "geid_144_9856", "source": "6259", "target": "8787" }, { "key": "geid_144_9857", "source": "4775", "target": "9862" }, { "key": "geid_144_9858", "source": "8135", "target": "1679" }, { "key": "geid_144_9859", "source": "4676", "target": "1912" }, { "key": "geid_144_9860", "source": "2078", "target": "2119" }, { "key": "geid_144_9861", "source": "7007", "target": "6450" }, { "key": "geid_144_9862", "source": "3796", "target": "9580" }, { "key": "geid_144_9863", "source": "562", "target": "5243" }, { "key": "geid_144_9864", "source": "6961", "target": "3326" }, { "key": "geid_144_9865", "source": "5128", "target": "7550" }, { "key": "geid_144_9866", "source": "6808", "target": "3727" }, { "key": "geid_144_9867", "source": "7731", "target": "5710" }, { "key": "geid_144_9868", "source": "5664", "target": "7980" }, { "key": "geid_144_9869", "source": "249", "target": "5107" }, { "key": "geid_144_9870", "source": "5196", "target": "3837" }, { "key": "geid_144_9871", "source": "6271", "target": "7147" }, { "key": "geid_144_9872", "source": "4642", "target": "3685" }, { "key": "geid_144_9873", "source": "910", "target": "4008" }, { "key": "geid_144_9874", "source": "1153", "target": "131" }, { "key": "geid_144_9875", "source": "2122", "target": "2016" }, { "key": "geid_144_9876", "source": "1614", "target": "2854" }, { "key": "geid_144_9877", "source": "7391", "target": "6900" }, { "key": "geid_144_9878", "source": "5831", "target": "7333" }, { "key": "geid_144_9879", "source": "2191", "target": "7306" }, { "key": "geid_144_9880", "source": "6352", "target": "832" }, { "key": "geid_144_9881", "source": "2811", "target": "1182" }, { "key": "geid_144_9882", "source": "6804", "target": "5053" }, { "key": "geid_144_9883", "source": "153", "target": "1904" }, { "key": "geid_144_9884", "source": "6031", "target": "8455" }, { "key": "geid_144_9885", "source": "10", "target": "1953" }, { "key": "geid_144_9886", "source": "6857", "target": "4513" }, { "key": "geid_144_9887", "source": "4937", "target": "8343" }, { "key": "geid_144_9888", "source": "628", "target": "8375" }, { "key": "geid_144_9889", "source": "1625", "target": "1234" }, { "key": "geid_144_9890", "source": "2042", "target": "8134" }, { "key": "geid_144_9891", "source": "440", "target": "5897" }, { "key": "geid_144_9892", "source": "8633", "target": "3217" }, { "key": "geid_144_9893", "source": "3483", "target": "4010" }, { "key": "geid_144_9894", "source": "2959", "target": "9809" }, { "key": "geid_144_9895", "source": "171", "target": "461" }, { "key": "geid_144_9896", "source": "9574", "target": "8072" }, { "key": "geid_144_9897", "source": "4220", "target": "8183" }, { "key": "geid_144_9898", "source": "5371", "target": "3177" }, { "key": "geid_144_9899", "source": "8097", "target": "2548" }, { "key": "geid_144_9900", "source": "8338", "target": "7412" }, { "key": "geid_144_9901", "source": "4295", "target": "4947" }, { "key": "geid_144_9902", "source": "9879", "target": "5282" }, { "key": "geid_144_9903", "source": "5355", "target": "4869" }, { "key": "geid_144_9904", "source": "6709", "target": "4019" }, { "key": "geid_144_9905", "source": "9107", "target": "4254" }, { "key": "geid_144_9906", "source": "1654", "target": "2910" }, { "key": "geid_144_9907", "source": "6324", "target": "676" }, { "key": "geid_144_9908", "source": "3638", "target": "2713" }, { "key": "geid_144_9909", "source": "4633", "target": "70" }, { "key": "geid_144_9910", "source": "3584", "target": "4265" }, { "key": "geid_144_9911", "source": "2292", "target": "6604" }, { "key": "geid_144_9912", "source": "2691", "target": "7527" }, { "key": "geid_144_9913", "source": "5816", "target": "6310" }, { "key": "geid_144_9914", "source": "3735", "target": "9887" }, { "key": "geid_144_9915", "source": "2661", "target": "6048" }, { "key": "geid_144_9916", "source": "7552", "target": "8787" }, { "key": "geid_144_9917", "source": "4059", "target": "1237" }, { "key": "geid_144_9918", "source": "9379", "target": "2485" }, { "key": "geid_144_9919", "source": "4839", "target": "4328" }, { "key": "geid_144_9920", "source": "1020", "target": "6141" }, { "key": "geid_144_9921", "source": "1219", "target": "7929" }, { "key": "geid_144_9922", "source": "7543", "target": "1965" }, { "key": "geid_144_9923", "source": "835", "target": "3879" }, { "key": "geid_144_9924", "source": "540", "target": "9544" }, { "key": "geid_144_9925", "source": "552", "target": "484" }, { "key": "geid_144_9926", "source": "4787", "target": "9668" }, { "key": "geid_144_9927", "source": "1767", "target": "2732" }, { "key": "geid_144_9928", "source": "2220", "target": "6415" }, { "key": "geid_144_9929", "source": "6951", "target": "3609" }, { "key": "geid_144_9930", "source": "1364", "target": "8898" }, { "key": "geid_144_9931", "source": "8372", "target": "6111" }, { "key": "geid_144_9932", "source": "7720", "target": "279" }, { "key": "geid_144_9933", "source": "2630", "target": "6339" }, { "key": "geid_144_9934", "source": "6744", "target": "6620" }, { "key": "geid_144_9935", "source": "2850", "target": "7640" }, { "key": "geid_144_9936", "source": "2801", "target": "2345" }, { "key": "geid_144_9937", "source": "6550", "target": "1872" }, { "key": "geid_144_9938", "source": "6523", "target": "6014" }, { "key": "geid_144_9939", "source": "2630", "target": "9596" }, { "key": "geid_144_9940", "source": "7201", "target": "5105" }, { "key": "geid_144_9941", "source": "5625", "target": "2824" }, { "key": "geid_144_9942", "source": "2810", "target": "7012" }, { "key": "geid_144_9943", "source": "3312", "target": "4171" }, { "key": "geid_144_9944", "source": "6058", "target": "2885" }, { "key": "geid_144_9945", "source": "3169", "target": "3147" }, { "key": "geid_144_9946", "source": "2849", "target": "546" }, { "key": "geid_144_9947", "source": "3309", "target": "9479" }, { "key": "geid_144_9948", "source": "1908", "target": "9415" }, { "key": "geid_144_9949", "source": "1319", "target": "4985" }, { "key": "geid_144_9950", "source": "9989", "target": "9631" }, { "key": "geid_144_9951", "source": "6027", "target": "1835" }, { "key": "geid_144_9952", "source": "4583", "target": "4996" }, { "key": "geid_144_9953", "source": "3001", "target": "767" }, { "key": "geid_144_9954", "source": "8850", "target": "151" }, { "key": "geid_144_9955", "source": "3772", "target": "6574" }, { "key": "geid_144_9956", "source": "3800", "target": "3617" }, { "key": "geid_144_9957", "source": "5258", "target": "9665" }, { "key": "geid_144_9958", "source": "3955", "target": "924" }, { "key": "geid_144_9959", "source": "8171", "target": "3167" }, { "key": "geid_144_9960", "source": "5299", "target": "8410" }, { "key": "geid_144_9961", "source": "3149", "target": "8030" }, { "key": "geid_144_9962", "source": "4257", "target": "8616" }, { "key": "geid_144_9963", "source": "9578", "target": "3825" }, { "key": "geid_144_9964", "source": "7697", "target": "42" }, { "key": "geid_144_9965", "source": "3585", "target": "1138" }, { "key": "geid_144_9966", "source": "3269", "target": "2552" }, { "key": "geid_144_9967", "source": "9377", "target": "204" }, { "key": "geid_144_9968", "source": "4666", "target": "9325" }, { "key": "geid_144_9969", "source": "2689", "target": "9547" }, { "key": "geid_144_9970", "source": "1727", "target": "2632" }, { "key": "geid_144_9971", "source": "1446", "target": "4260" }, { "key": "geid_144_9972", "source": "9694", "target": "5368" }, { "key": "geid_144_9973", "source": "4547", "target": "3669" }, { "key": "geid_144_9974", "source": "199", "target": "1158" }, { "key": "geid_144_9975", "source": "6682", "target": "8290" }, { "key": "geid_144_9976", "source": "2144", "target": "6851" }, { "key": "geid_144_9977", "source": "3085", "target": "9074" }, { "key": "geid_144_9978", "source": "1868", "target": "7833" }, { "key": "geid_144_9979", "source": "8575", "target": "2091" }, { "key": "geid_144_9980", "source": "1867", "target": "90" }, { "key": "geid_144_9981", "source": "3328", "target": "455" }, { "key": "geid_144_9982", "source": "4169", "target": "950" }, { "key": "geid_144_9983", "source": "1526", "target": "5798" }, { "key": "geid_144_9984", "source": "6834", "target": "5328" }, { "key": "geid_144_9985", "source": "1850", "target": "8889" }, { "key": "geid_144_9986", "source": "5176", "target": "2921" }, { "key": "geid_144_9987", "source": "8067", "target": "5931" }, { "key": "geid_144_9988", "source": "5387", "target": "100" }, { "key": "geid_144_9989", "source": "448", "target": "8486" }, { "key": "geid_144_9990", "source": "791", "target": "3211" }, { "key": "geid_144_9991", "source": "9532", "target": "9335" }, { "key": "geid_144_9992", "source": "6145", "target": "2420" }, { "key": "geid_144_9993", "source": "6230", "target": "8681" }, { "key": "geid_144_9994", "source": "5635", "target": "4549" }, { "key": "geid_144_9995", "source": "1916", "target": "9877" }, { "key": "geid_144_9996", "source": "6289", "target": "3552" }, { "key": "geid_144_9997", "source": "526", "target": "8196" }, { "key": "geid_144_9998", "source": "6309", "target": "8809" }, { "key": "geid_144_9999", "source": "2031", "target": "2027" }, { "key": "geid_144_10000", "source": "9997", "target": "4050" }, { "key": "geid_144_10001", "source": "5272", "target": "5476" }, { "key": "geid_144_10002", "source": "3460", "target": "3784" }, { "key": "geid_144_10003", "source": "6651", "target": "8695" }, { "key": "geid_144_10004", "source": "145", "target": "4541" }, { "key": "geid_144_10005", "source": "4038", "target": "4362" }, { "key": "geid_144_10006", "source": "8499", "target": "7298" }, { "key": "geid_144_10007", "source": "6184", "target": "2213" }, { "key": "geid_144_10008", "source": "3320", "target": "2203" }, { "key": "geid_144_10009", "source": "969", "target": "4867" }, { "key": "geid_144_10010", "source": "7795", "target": "1555" }, { "key": "geid_144_10011", "source": "9917", "target": "3146" }, { "key": "geid_144_10012", "source": "8301", "target": "5731" }, { "key": "geid_144_10013", "source": "2664", "target": "6021" }, { "key": "geid_144_10014", "source": "9245", "target": "6827" }, { "key": "geid_144_10015", "source": "6408", "target": "2407" }, { "key": "geid_144_10016", "source": "5388", "target": "9733" }, { "key": "geid_144_10017", "source": "5776", "target": "5068" }, { "key": "geid_144_10018", "source": "7281", "target": "9575" }, { "key": "geid_144_10019", "source": "1850", "target": "1875" }, { "key": "geid_144_10020", "source": "1127", "target": "835" }, { "key": "geid_144_10021", "source": "7637", "target": "4119" }, { "key": "geid_144_10022", "source": "6518", "target": "7438" }, { "key": "geid_144_10023", "source": "3937", "target": "7567" }, { "key": "geid_144_10024", "source": "1427", "target": "6692" }, { "key": "geid_144_10025", "source": "989", "target": "1439" }, { "key": "geid_144_10026", "source": "5249", "target": "2053" }, { "key": "geid_144_10027", "source": "554", "target": "2641" }, { "key": "geid_144_10028", "source": "5567", "target": "746" }, { "key": "geid_144_10029", "source": "2240", "target": "2823" }, { "key": "geid_144_10030", "source": "1454", "target": "3448" }, { "key": "geid_144_10031", "source": "6224", "target": "9392" }, { "key": "geid_144_10032", "source": "1692", "target": "159" }, { "key": "geid_144_10033", "source": "8053", "target": "9752" }, { "key": "geid_144_10034", "source": "1524", "target": "5565" }, { "key": "geid_144_10035", "source": "4806", "target": "1877" }, { "key": "geid_144_10036", "source": "5583", "target": "3125" }, { "key": "geid_144_10037", "source": "2632", "target": "5391" }, { "key": "geid_144_10038", "source": "6128", "target": "8474" }, { "key": "geid_144_10039", "source": "5918", "target": "3485" }, { "key": "geid_144_10040", "source": "5508", "target": "6146" }, { "key": "geid_144_10041", "source": "8423", "target": "3836" }, { "key": "geid_144_10042", "source": "2652", "target": "8550" }, { "key": "geid_144_10043", "source": "1568", "target": "3050" }, { "key": "geid_144_10044", "source": "4484", "target": "3426" }, { "key": "geid_144_10045", "source": "8451", "target": "5482" }, { "key": "geid_144_10046", "source": "5351", "target": "217" }, { "key": "geid_144_10047", "source": "5772", "target": "9799" }, { "key": "geid_144_10048", "source": "812", "target": "8835" }, { "key": "geid_144_10049", "source": "7428", "target": "7039" }, { "key": "geid_144_10050", "source": "8302", "target": "1303" }, { "key": "geid_144_10051", "source": "7240", "target": "3160" }, { "key": "geid_144_10052", "source": "7311", "target": "9156" }, { "key": "geid_144_10053", "source": "8382", "target": "1113" }, { "key": "geid_144_10054", "source": "9150", "target": "8028" }, { "key": "geid_144_10055", "source": "5426", "target": "7393" }, { "key": "geid_144_10056", "source": "1899", "target": "3329" }, { "key": "geid_144_10057", "source": "4096", "target": "4590" }, { "key": "geid_144_10058", "source": "1096", "target": "5335" }, { "key": "geid_144_10059", "source": "6974", "target": "776" }, { "key": "geid_144_10060", "source": "3219", "target": "6441" }, { "key": "geid_144_10061", "source": "3725", "target": "3647" }, { "key": "geid_144_10062", "source": "7731", "target": "98" }, { "key": "geid_144_10063", "source": "360", "target": "5005" }, { "key": "geid_144_10064", "source": "2678", "target": "6544" }, { "key": "geid_144_10065", "source": "4060", "target": "8426" }, { "key": "geid_144_10066", "source": "6821", "target": "7158" }, { "key": "geid_144_10067", "source": "5821", "target": "4155" }, { "key": "geid_144_10068", "source": "7227", "target": "4842" }, { "key": "geid_144_10069", "source": "5849", "target": "7458" }, { "key": "geid_144_10070", "source": "7756", "target": "7824" }, { "key": "geid_144_10071", "source": "907", "target": "3279" }, { "key": "geid_144_10072", "source": "4448", "target": "9720" }, { "key": "geid_144_10073", "source": "8339", "target": "5804" }, { "key": "geid_144_10074", "source": "8841", "target": "7135" }, { "key": "geid_144_10075", "source": "3251", "target": "5022" }, { "key": "geid_144_10076", "source": "6467", "target": "3497" }, { "key": "geid_144_10077", "source": "7288", "target": "6566" }, { "key": "geid_144_10078", "source": "2682", "target": "8380" }, { "key": "geid_144_10079", "source": "5927", "target": "8211" }, { "key": "geid_144_10080", "source": "476", "target": "4407" }, { "key": "geid_144_10081", "source": "1561", "target": "7489" }, { "key": "geid_144_10082", "source": "1696", "target": "6904" }, { "key": "geid_144_10083", "source": "8206", "target": "8986" }, { "key": "geid_144_10084", "source": "9646", "target": "126" }, { "key": "geid_144_10085", "source": "3469", "target": "6244" }, { "key": "geid_144_10086", "source": "4651", "target": "7499" }, { "key": "geid_144_10087", "source": "1990", "target": "5083" }, { "key": "geid_144_10088", "source": "4892", "target": "9876" }, { "key": "geid_144_10089", "source": "3191", "target": "9528" }, { "key": "geid_144_10090", "source": "8709", "target": "1295" }, { "key": "geid_144_10091", "source": "4462", "target": "9263" }, { "key": "geid_144_10092", "source": "5080", "target": "5564" }, { "key": "geid_144_10093", "source": "7229", "target": "6063" }, { "key": "geid_144_10094", "source": "3508", "target": "523" }, { "key": "geid_144_10095", "source": "2718", "target": "2278" }, { "key": "geid_144_10096", "source": "1239", "target": "4107" }, { "key": "geid_144_10097", "source": "6605", "target": "3523" }, { "key": "geid_144_10098", "source": "4209", "target": "9426" }, { "key": "geid_144_10099", "source": "3514", "target": "1372" }, { "key": "geid_144_10100", "source": "3772", "target": "9682" }, { "key": "geid_144_10101", "source": "3104", "target": "9639" }, { "key": "geid_144_10102", "source": "9762", "target": "7393" }, { "key": "geid_144_10103", "source": "3192", "target": "4014" }, { "key": "geid_144_10104", "source": "1073", "target": "4940" }, { "key": "geid_144_10105", "source": "2482", "target": "8953" }, { "key": "geid_144_10106", "source": "1218", "target": "1304" }, { "key": "geid_144_10107", "source": "8278", "target": "2115" }, { "key": "geid_144_10108", "source": "3663", "target": "3281" }, { "key": "geid_144_10109", "source": "6839", "target": "4547" }, { "key": "geid_144_10110", "source": "9907", "target": "4449" }, { "key": "geid_144_10111", "source": "1028", "target": "8894" }, { "key": "geid_144_10112", "source": "3577", "target": "1627" }, { "key": "geid_144_10113", "source": "8110", "target": "6102" }, { "key": "geid_144_10114", "source": "9609", "target": "532" }, { "key": "geid_144_10115", "source": "5291", "target": "9881" }, { "key": "geid_144_10116", "source": "1449", "target": "3664" }, { "key": "geid_144_10117", "source": "8381", "target": "8760" }, { "key": "geid_144_10118", "source": "1415", "target": "2073" }, { "key": "geid_144_10119", "source": "3718", "target": "8152" }, { "key": "geid_144_10120", "source": "1011", "target": "216" }, { "key": "geid_144_10121", "source": "9824", "target": "3553" }, { "key": "geid_144_10122", "source": "5735", "target": "1576" }, { "key": "geid_144_10123", "source": "6964", "target": "3467" }, { "key": "geid_144_10124", "source": "2860", "target": "3447" }, { "key": "geid_144_10125", "source": "5306", "target": "8040" }, { "key": "geid_144_10126", "source": "990", "target": "3359" }, { "key": "geid_144_10127", "source": "9221", "target": "7340" }, { "key": "geid_144_10128", "source": "9706", "target": "1905" }, { "key": "geid_144_10129", "source": "8915", "target": "4742" }, { "key": "geid_144_10130", "source": "21", "target": "9749" }, { "key": "geid_144_10131", "source": "5425", "target": "6766" }, { "key": "geid_144_10132", "source": "1670", "target": "3523" }, { "key": "geid_144_10133", "source": "3173", "target": "745" }, { "key": "geid_144_10134", "source": "4132", "target": "308" }, { "key": "geid_144_10135", "source": "4705", "target": "7921" }, { "key": "geid_144_10136", "source": "5770", "target": "936" }, { "key": "geid_144_10137", "source": "4939", "target": "5430" }, { "key": "geid_144_10138", "source": "9065", "target": "9128" }, { "key": "geid_144_10139", "source": "6268", "target": "4156" }, { "key": "geid_144_10140", "source": "800", "target": "1721" }, { "key": "geid_144_10141", "source": "4400", "target": "7361" }, { "key": "geid_144_10142", "source": "2983", "target": "9024" }, { "key": "geid_144_10143", "source": "8028", "target": "7273" }, { "key": "geid_144_10144", "source": "9546", "target": "9347" }, { "key": "geid_144_10145", "source": "2606", "target": "8629" }, { "key": "geid_144_10146", "source": "9189", "target": "7876" }, { "key": "geid_144_10147", "source": "3260", "target": "2186" }, { "key": "geid_144_10148", "source": "6584", "target": "7256" }, { "key": "geid_144_10149", "source": "8893", "target": "637" }, { "key": "geid_144_10150", "source": "918", "target": "2804" }, { "key": "geid_144_10151", "source": "603", "target": "5511" }, { "key": "geid_144_10152", "source": "4950", "target": "4131" }, { "key": "geid_144_10153", "source": "9873", "target": "9587" }, { "key": "geid_144_10154", "source": "5655", "target": "5667" }, { "key": "geid_144_10155", "source": "209", "target": "7123" }, { "key": "geid_144_10156", "source": "7216", "target": "2759" }, { "key": "geid_144_10157", "source": "4141", "target": "2858" }, { "key": "geid_144_10158", "source": "5913", "target": "945" }, { "key": "geid_144_10159", "source": "8478", "target": "9730" }, { "key": "geid_144_10160", "source": "1326", "target": "2117" }, { "key": "geid_144_10161", "source": "3697", "target": "4368" }, { "key": "geid_144_10162", "source": "3192", "target": "9947" }, { "key": "geid_144_10163", "source": "8172", "target": "1250" }, { "key": "geid_144_10164", "source": "2373", "target": "7709" }, { "key": "geid_144_10165", "source": "2447", "target": "6056" }, { "key": "geid_144_10166", "source": "6927", "target": "7022" }, { "key": "geid_144_10167", "source": "287", "target": "6942" }, { "key": "geid_144_10168", "source": "5849", "target": "8008" }, { "key": "geid_144_10169", "source": "6000", "target": "467" }, { "key": "geid_144_10170", "source": "2961", "target": "7967" }, { "key": "geid_144_10171", "source": "199", "target": "1062" }, { "key": "geid_144_10172", "source": "1153", "target": "2177" }, { "key": "geid_144_10173", "source": "9136", "target": "2532" }, { "key": "geid_144_10174", "source": "859", "target": "2357" }, { "key": "geid_144_10175", "source": "6649", "target": "7331" }, { "key": "geid_144_10176", "source": "9892", "target": "2252" }, { "key": "geid_144_10177", "source": "8919", "target": "8499" }, { "key": "geid_144_10178", "source": "8452", "target": "3629" }, { "key": "geid_144_10179", "source": "4666", "target": "6004" }, { "key": "geid_144_10180", "source": "9434", "target": "5986" }, { "key": "geid_144_10181", "source": "8582", "target": "3788" }, { "key": "geid_144_10182", "source": "5900", "target": "5979" }, { "key": "geid_144_10183", "source": "9419", "target": "3146" }, { "key": "geid_144_10184", "source": "2421", "target": "7694" }, { "key": "geid_144_10185", "source": "7908", "target": "5007" }, { "key": "geid_144_10186", "source": "6438", "target": "1451" }, { "key": "geid_144_10187", "source": "4761", "target": "8418" }, { "key": "geid_144_10188", "source": "6431", "target": "7933" }, { "key": "geid_144_10189", "source": "5443", "target": "9840" }, { "key": "geid_144_10190", "source": "3517", "target": "2941" }, { "key": "geid_144_10191", "source": "9570", "target": "6756" }, { "key": "geid_144_10192", "source": "8535", "target": "8000" }, { "key": "geid_144_10193", "source": "7199", "target": "2828" }, { "key": "geid_144_10194", "source": "8378", "target": "4914" }, { "key": "geid_144_10195", "source": "3180", "target": "7892" }, { "key": "geid_144_10196", "source": "8871", "target": "1339" }, { "key": "geid_144_10197", "source": "3389", "target": "5971" }, { "key": "geid_144_10198", "source": "4702", "target": "3431" }, { "key": "geid_144_10199", "source": "1003", "target": "7329" }, { "key": "geid_144_10200", "source": "7093", "target": "5693" }, { "key": "geid_144_10201", "source": "5933", "target": "1166" }, { "key": "geid_144_10202", "source": "7290", "target": "3871" }, { "key": "geid_144_10203", "source": "1567", "target": "3719" }, { "key": "geid_144_10204", "source": "564", "target": "2653" }, { "key": "geid_144_10205", "source": "1874", "target": "163" }, { "key": "geid_144_10206", "source": "4950", "target": "3169" }, { "key": "geid_144_10207", "source": "8102", "target": "650" }, { "key": "geid_144_10208", "source": "7879", "target": "3816" }, { "key": "geid_144_10209", "source": "2291", "target": "5995" }, { "key": "geid_144_10210", "source": "2375", "target": "7310" }, { "key": "geid_144_10211", "source": "7219", "target": "9256" }, { "key": "geid_144_10212", "source": "4529", "target": "2783" }, { "key": "geid_144_10213", "source": "9589", "target": "535" }, { "key": "geid_144_10214", "source": "7573", "target": "5099" }, { "key": "geid_144_10215", "source": "9302", "target": "3787" }, { "key": "geid_144_10216", "source": "8493", "target": "7671" }, { "key": "geid_144_10217", "source": "4565", "target": "7775" }, { "key": "geid_144_10218", "source": "4060", "target": "1903" }, { "key": "geid_144_10219", "source": "2917", "target": "6311" }, { "key": "geid_144_10220", "source": "2144", "target": "8362" }, { "key": "geid_144_10221", "source": "8216", "target": "4522" }, { "key": "geid_144_10222", "source": "404", "target": "7914" }, { "key": "geid_144_10223", "source": "7844", "target": "1210" }, { "key": "geid_144_10224", "source": "4241", "target": "3953" }, { "key": "geid_144_10225", "source": "310", "target": "5506" }, { "key": "geid_144_10226", "source": "9903", "target": "1843" }, { "key": "geid_144_10227", "source": "3780", "target": "9008" }, { "key": "geid_144_10228", "source": "6061", "target": "1802" }, { "key": "geid_144_10229", "source": "9980", "target": "7600" }, { "key": "geid_144_10230", "source": "5220", "target": "8302" }, { "key": "geid_144_10231", "source": "528", "target": "278" }, { "key": "geid_144_10232", "source": "7375", "target": "1275" }, { "key": "geid_144_10233", "source": "6788", "target": "9468" }, { "key": "geid_144_10234", "source": "4289", "target": "1571" }, { "key": "geid_144_10235", "source": "8043", "target": "6672" }, { "key": "geid_144_10236", "source": "7076", "target": "2271" }, { "key": "geid_144_10237", "source": "251", "target": "4807" }, { "key": "geid_144_10238", "source": "9075", "target": "4861" }, { "key": "geid_144_10239", "source": "9837", "target": "3647" }, { "key": "geid_144_10240", "source": "4180", "target": "2772" }, { "key": "geid_144_10241", "source": "5816", "target": "8385" }, { "key": "geid_144_10242", "source": "862", "target": "6327" }, { "key": "geid_144_10243", "source": "1655", "target": "4361" }, { "key": "geid_144_10244", "source": "8723", "target": "9419" }, { "key": "geid_144_10245", "source": "795", "target": "1435" }, { "key": "geid_144_10246", "source": "6753", "target": "8902" }, { "key": "geid_144_10247", "source": "3757", "target": "3139" }, { "key": "geid_144_10248", "source": "2799", "target": "8315" }, { "key": "geid_144_10249", "source": "2837", "target": "4799" }, { "key": "geid_144_10250", "source": "1202", "target": "4251" }, { "key": "geid_144_10251", "source": "921", "target": "9855" }, { "key": "geid_144_10252", "source": "8624", "target": "4524" }, { "key": "geid_144_10253", "source": "8767", "target": "6711" }, { "key": "geid_144_10254", "source": "7625", "target": "7988" }, { "key": "geid_144_10255", "source": "5201", "target": "8315" }, { "key": "geid_144_10256", "source": "4647", "target": "7799" }, { "key": "geid_144_10257", "source": "1840", "target": "4144" }, { "key": "geid_144_10258", "source": "9738", "target": "8064" }, { "key": "geid_144_10259", "source": "4916", "target": "2159" }, { "key": "geid_144_10260", "source": "8285", "target": "7334" }, { "key": "geid_144_10261", "source": "4552", "target": "2482" }, { "key": "geid_144_10262", "source": "8856", "target": "5799" }, { "key": "geid_144_10263", "source": "7675", "target": "851" }, { "key": "geid_144_10264", "source": "6296", "target": "6254" }, { "key": "geid_144_10265", "source": "4064", "target": "9099" }, { "key": "geid_144_10266", "source": "7934", "target": "3456" }, { "key": "geid_144_10267", "source": "533", "target": "6075" }, { "key": "geid_144_10268", "source": "2853", "target": "3065" }, { "key": "geid_144_10269", "source": "6740", "target": "476" }, { "key": "geid_144_10270", "source": "4151", "target": "5166" }, { "key": "geid_144_10271", "source": "9675", "target": "1829" }, { "key": "geid_144_10272", "source": "3984", "target": "5039" }, { "key": "geid_144_10273", "source": "6261", "target": "382" }, { "key": "geid_144_10274", "source": "9807", "target": "7058" }, { "key": "geid_144_10275", "source": "2052", "target": "8884" }, { "key": "geid_144_10276", "source": "2720", "target": "7336" }, { "key": "geid_144_10277", "source": "3075", "target": "446" }, { "key": "geid_144_10278", "source": "5050", "target": "3946" }, { "key": "geid_144_10279", "source": "9089", "target": "6468" }, { "key": "geid_144_10280", "source": "1528", "target": "4100" }, { "key": "geid_144_10281", "source": "9381", "target": "3001" }, { "key": "geid_144_10282", "source": "5128", "target": "8724" }, { "key": "geid_144_10283", "source": "1322", "target": "6822" }, { "key": "geid_144_10284", "source": "5763", "target": "9416" }, { "key": "geid_144_10285", "source": "7135", "target": "7787" }, { "key": "geid_144_10286", "source": "357", "target": "6226" }, { "key": "geid_144_10287", "source": "8812", "target": "7439" }, { "key": "geid_144_10288", "source": "1670", "target": "837" }, { "key": "geid_144_10289", "source": "4582", "target": "5014" }, { "key": "geid_144_10290", "source": "1437", "target": "8954" }, { "key": "geid_144_10291", "source": "6112", "target": "5079" }, { "key": "geid_144_10292", "source": "6950", "target": "2010" }, { "key": "geid_144_10293", "source": "6504", "target": "1718" }, { "key": "geid_144_10294", "source": "6395", "target": "68" }, { "key": "geid_144_10295", "source": "7030", "target": "2355" }, { "key": "geid_144_10296", "source": "9429", "target": "1242" }, { "key": "geid_144_10297", "source": "7837", "target": "5806" }, { "key": "geid_144_10298", "source": "6342", "target": "4684" }, { "key": "geid_144_10299", "source": "8376", "target": "7321" }, { "key": "geid_144_10300", "source": "1229", "target": "8457" }, { "key": "geid_144_10301", "source": "1277", "target": "7512" }, { "key": "geid_144_10302", "source": "9548", "target": "8800" }, { "key": "geid_144_10303", "source": "4832", "target": "5477" }, { "key": "geid_144_10304", "source": "4610", "target": "436" }, { "key": "geid_144_10305", "source": "8849", "target": "6702" }, { "key": "geid_144_10306", "source": "4667", "target": "6178" }, { "key": "geid_144_10307", "source": "280", "target": "5019" }, { "key": "geid_144_10308", "source": "305", "target": "2689" }, { "key": "geid_144_10309", "source": "4437", "target": "5698" }, { "key": "geid_144_10310", "source": "7511", "target": "4744" }, { "key": "geid_144_10311", "source": "8848", "target": "918" }, { "key": "geid_144_10312", "source": "5908", "target": "4134" }, { "key": "geid_144_10313", "source": "2221", "target": "221" }, { "key": "geid_144_10314", "source": "4227", "target": "9184" }, { "key": "geid_144_10315", "source": "7085", "target": "6213" }, { "key": "geid_144_10316", "source": "9569", "target": "5469" }, { "key": "geid_144_10317", "source": "8136", "target": "7497" }, { "key": "geid_144_10318", "source": "2490", "target": "3675" }, { "key": "geid_144_10319", "source": "4177", "target": "9847" }, { "key": "geid_144_10320", "source": "7263", "target": "599" }, { "key": "geid_144_10321", "source": "4851", "target": "4798" }, { "key": "geid_144_10322", "source": "8445", "target": "3811" }, { "key": "geid_144_10323", "source": "6448", "target": "8377" }, { "key": "geid_144_10324", "source": "7574", "target": "9228" }, { "key": "geid_144_10325", "source": "9334", "target": "2944" }, { "key": "geid_144_10326", "source": "5644", "target": "2940" }, { "key": "geid_144_10327", "source": "7472", "target": "3857" }, { "key": "geid_144_10328", "source": "2567", "target": "2237" }, { "key": "geid_144_10329", "source": "77", "target": "7287" }, { "key": "geid_144_10330", "source": "6061", "target": "8785" }, { "key": "geid_144_10331", "source": "226", "target": "9678" }, { "key": "geid_144_10332", "source": "2347", "target": "3700" }, { "key": "geid_144_10333", "source": "1655", "target": "4363" }, { "key": "geid_144_10334", "source": "2170", "target": "6112" }, { "key": "geid_144_10335", "source": "6968", "target": "8874" }, { "key": "geid_144_10336", "source": "54", "target": "2548" }, { "key": "geid_144_10337", "source": "2351", "target": "6122" }, { "key": "geid_144_10338", "source": "4562", "target": "3723" }, { "key": "geid_144_10339", "source": "9376", "target": "6871" }, { "key": "geid_144_10340", "source": "9956", "target": "4442" }, { "key": "geid_144_10341", "source": "3925", "target": "4" }, { "key": "geid_144_10342", "source": "4300", "target": "5879" }, { "key": "geid_144_10343", "source": "2964", "target": "8801" }, { "key": "geid_144_10344", "source": "4458", "target": "9396" }, { "key": "geid_144_10345", "source": "3410", "target": "1002" }, { "key": "geid_144_10346", "source": "2614", "target": "1917" }, { "key": "geid_144_10347", "source": "2225", "target": "5985" }, { "key": "geid_144_10348", "source": "9049", "target": "9046" }, { "key": "geid_144_10349", "source": "1921", "target": "5110" }, { "key": "geid_144_10350", "source": "3145", "target": "1318" }, { "key": "geid_144_10351", "source": "3677", "target": "3160" }, { "key": "geid_144_10352", "source": "403", "target": "9572" }, { "key": "geid_144_10353", "source": "7530", "target": "8241" }, { "key": "geid_144_10354", "source": "3346", "target": "5604" }, { "key": "geid_144_10355", "source": "3237", "target": "2072" }, { "key": "geid_144_10356", "source": "3232", "target": "2587" }, { "key": "geid_144_10357", "source": "8016", "target": "8781" }, { "key": "geid_144_10358", "source": "9804", "target": "2221" }, { "key": "geid_144_10359", "source": "2044", "target": "8754" }, { "key": "geid_144_10360", "source": "6997", "target": "3470" }, { "key": "geid_144_10361", "source": "295", "target": "913" }, { "key": "geid_144_10362", "source": "4934", "target": "7262" }, { "key": "geid_144_10363", "source": "2307", "target": "9844" }, { "key": "geid_144_10364", "source": "4067", "target": "6825" }, { "key": "geid_144_10365", "source": "9877", "target": "10" }, { "key": "geid_144_10366", "source": "1652", "target": "5693" }, { "key": "geid_144_10367", "source": "2392", "target": "5633" }, { "key": "geid_144_10368", "source": "344", "target": "1912" }, { "key": "geid_144_10369", "source": "9293", "target": "8208" }, { "key": "geid_144_10370", "source": "5291", "target": "8220" }, { "key": "geid_144_10371", "source": "1385", "target": "3274" }, { "key": "geid_144_10372", "source": "5138", "target": "5749" }, { "key": "geid_144_10373", "source": "3940", "target": "8113" }, { "key": "geid_144_10374", "source": "8124", "target": "7034" }, { "key": "geid_144_10375", "source": "8204", "target": "6037" }, { "key": "geid_144_10376", "source": "9996", "target": "6826" }, { "key": "geid_144_10377", "source": "5230", "target": "7860" }, { "key": "geid_144_10378", "source": "5301", "target": "9521" }, { "key": "geid_144_10379", "source": "264", "target": "2447" }, { "key": "geid_144_10380", "source": "8200", "target": "8486" }, { "key": "geid_144_10381", "source": "8997", "target": "4872" }, { "key": "geid_144_10382", "source": "7438", "target": "5236" }, { "key": "geid_144_10383", "source": "4946", "target": "4278" }, { "key": "geid_144_10384", "source": "8982", "target": "3781" }, { "key": "geid_144_10385", "source": "9477", "target": "5671" }, { "key": "geid_144_10386", "source": "6642", "target": "5502" }, { "key": "geid_144_10387", "source": "3393", "target": "3248" }, { "key": "geid_144_10388", "source": "8042", "target": "4816" }, { "key": "geid_144_10389", "source": "3301", "target": "1969" }, { "key": "geid_144_10390", "source": "78", "target": "5003" }, { "key": "geid_144_10391", "source": "1312", "target": "2529" }, { "key": "geid_144_10392", "source": "7652", "target": "4134" }, { "key": "geid_144_10393", "source": "3451", "target": "2728" }, { "key": "geid_144_10394", "source": "5527", "target": "6778" }, { "key": "geid_144_10395", "source": "6919", "target": "5972" }, { "key": "geid_144_10396", "source": "8632", "target": "757" }, { "key": "geid_144_10397", "source": "6918", "target": "3347" }, { "key": "geid_144_10398", "source": "564", "target": "7744" }, { "key": "geid_144_10399", "source": "4920", "target": "7875" }, { "key": "geid_144_10400", "source": "2135", "target": "8999" }, { "key": "geid_144_10401", "source": "8155", "target": "8932" }, { "key": "geid_144_10402", "source": "4228", "target": "4346" }, { "key": "geid_144_10403", "source": "4795", "target": "6677" }, { "key": "geid_144_10404", "source": "347", "target": "3634" }, { "key": "geid_144_10405", "source": "5807", "target": "5175" }, { "key": "geid_144_10406", "source": "70", "target": "1652" }, { "key": "geid_144_10407", "source": "2060", "target": "5087" }, { "key": "geid_144_10408", "source": "6700", "target": "5981" }, { "key": "geid_144_10409", "source": "9398", "target": "2814" }, { "key": "geid_144_10410", "source": "3650", "target": "383" }, { "key": "geid_144_10411", "source": "9855", "target": "1642" }, { "key": "geid_144_10412", "source": "204", "target": "4024" }, { "key": "geid_144_10413", "source": "3562", "target": "6295" }, { "key": "geid_144_10414", "source": "8086", "target": "5563" }, { "key": "geid_144_10415", "source": "4999", "target": "2117" }, { "key": "geid_144_10416", "source": "3771", "target": "5304" }, { "key": "geid_144_10417", "source": "7061", "target": "6148" }, { "key": "geid_144_10418", "source": "3260", "target": "5577" }, { "key": "geid_144_10419", "source": "93", "target": "958" }, { "key": "geid_144_10420", "source": "6343", "target": "3421" }, { "key": "geid_144_10421", "source": "4425", "target": "5529" }, { "key": "geid_144_10422", "source": "5976", "target": "7819" }, { "key": "geid_144_10423", "source": "3465", "target": "5365" }, { "key": "geid_144_10424", "source": "2646", "target": "2886" }, { "key": "geid_144_10425", "source": "1401", "target": "5521" }, { "key": "geid_144_10426", "source": "828", "target": "4250" }, { "key": "geid_144_10427", "source": "8708", "target": "3635" }, { "key": "geid_144_10428", "source": "3529", "target": "1060" }, { "key": "geid_144_10429", "source": "3821", "target": "1360" }, { "key": "geid_144_10430", "source": "7953", "target": "3104" }, { "key": "geid_144_10431", "source": "2595", "target": "8463" }, { "key": "geid_144_10432", "source": "9024", "target": "2624" }, { "key": "geid_144_10433", "source": "6699", "target": "9730" }, { "key": "geid_144_10434", "source": "8304", "target": "8153" }, { "key": "geid_144_10435", "source": "5159", "target": "3620" }, { "key": "geid_144_10436", "source": "8808", "target": "3610" }, { "key": "geid_144_10437", "source": "7043", "target": "7125" }, { "key": "geid_144_10438", "source": "9712", "target": "6352" }, { "key": "geid_144_10439", "source": "1235", "target": "1288" }, { "key": "geid_144_10440", "source": "3888", "target": "751" }, { "key": "geid_144_10441", "source": "8256", "target": "1097" }, { "key": "geid_144_10442", "source": "1180", "target": "7580" }, { "key": "geid_144_10443", "source": "8675", "target": "5429" }, { "key": "geid_144_10444", "source": "4365", "target": "2011" }, { "key": "geid_144_10445", "source": "6632", "target": "8167" }, { "key": "geid_144_10446", "source": "5986", "target": "6140" }, { "key": "geid_144_10447", "source": "6132", "target": "9394" }, { "key": "geid_144_10448", "source": "8753", "target": "8748" }, { "key": "geid_144_10449", "source": "8875", "target": "422" }, { "key": "geid_144_10450", "source": "6523", "target": "3813" }, { "key": "geid_144_10451", "source": "606", "target": "6611" }, { "key": "geid_144_10452", "source": "9851", "target": "1153" }, { "key": "geid_144_10453", "source": "3910", "target": "3254" }, { "key": "geid_144_10454", "source": "4867", "target": "377" }, { "key": "geid_144_10455", "source": "3502", "target": "8352" }, { "key": "geid_144_10456", "source": "23", "target": "297" }, { "key": "geid_144_10457", "source": "5343", "target": "8994" }, { "key": "geid_144_10458", "source": "7606", "target": "6087" }, { "key": "geid_144_10459", "source": "2200", "target": "3142" }, { "key": "geid_144_10460", "source": "9622", "target": "4640" }, { "key": "geid_144_10461", "source": "6483", "target": "8122" }, { "key": "geid_144_10462", "source": "1329", "target": "9471" }, { "key": "geid_144_10463", "source": "9633", "target": "9911" }, { "key": "geid_144_10464", "source": "7668", "target": "7999" }, { "key": "geid_144_10465", "source": "2849", "target": "1437" }, { "key": "geid_144_10466", "source": "5267", "target": "7070" }, { "key": "geid_144_10467", "source": "3215", "target": "3466" }, { "key": "geid_144_10468", "source": "6912", "target": "1907" }, { "key": "geid_144_10469", "source": "9177", "target": "1077" }, { "key": "geid_144_10470", "source": "7149", "target": "8209" }, { "key": "geid_144_10471", "source": "8047", "target": "6840" }, { "key": "geid_144_10472", "source": "9618", "target": "6461" }, { "key": "geid_144_10473", "source": "2015", "target": "6386" }, { "key": "geid_144_10474", "source": "7891", "target": "5902" }, { "key": "geid_144_10475", "source": "2289", "target": "3955" }, { "key": "geid_144_10476", "source": "3", "target": "7088" }, { "key": "geid_144_10477", "source": "7931", "target": "4958" }, { "key": "geid_144_10478", "source": "49", "target": "6396" }, { "key": "geid_144_10479", "source": "7818", "target": "8310" }, { "key": "geid_144_10480", "source": "6112", "target": "9919" }, { "key": "geid_144_10481", "source": "996", "target": "2124" }, { "key": "geid_144_10482", "source": "5303", "target": "7455" }, { "key": "geid_144_10483", "source": "1529", "target": "5549" }, { "key": "geid_144_10484", "source": "7060", "target": "4711" }, { "key": "geid_144_10485", "source": "5499", "target": "3385" }, { "key": "geid_144_10486", "source": "4036", "target": "2434" }, { "key": "geid_144_10487", "source": "7393", "target": "9020" }, { "key": "geid_144_10488", "source": "3732", "target": "4137" }, { "key": "geid_144_10489", "source": "2491", "target": "5374" }, { "key": "geid_144_10490", "source": "7232", "target": "3957" }, { "key": "geid_144_10491", "source": "2840", "target": "9344" }, { "key": "geid_144_10492", "source": "9347", "target": "3708" }, { "key": "geid_144_10493", "source": "6561", "target": "8360" }, { "key": "geid_144_10494", "source": "5354", "target": "1442" }, { "key": "geid_144_10495", "source": "7167", "target": "3393" }, { "key": "geid_144_10496", "source": "5551", "target": "7677" }, { "key": "geid_144_10497", "source": "1581", "target": "2499" }, { "key": "geid_144_10498", "source": "2824", "target": "368" }, { "key": "geid_144_10499", "source": "698", "target": "3010" }, { "key": "geid_144_10500", "source": "8491", "target": "2521" }, { "key": "geid_144_10501", "source": "9865", "target": "9625" }, { "key": "geid_144_10502", "source": "2845", "target": "1184" }, { "key": "geid_144_10503", "source": "5310", "target": "2000" }, { "key": "geid_144_10504", "source": "5742", "target": "5369" }, { "key": "geid_144_10505", "source": "9135", "target": "5204" }, { "key": "geid_144_10506", "source": "5047", "target": "9385" }, { "key": "geid_144_10507", "source": "906", "target": "7213" }, { "key": "geid_144_10508", "source": "838", "target": "9046" }, { "key": "geid_144_10509", "source": "2370", "target": "5983" }, { "key": "geid_144_10510", "source": "6306", "target": "9115" }, { "key": "geid_144_10511", "source": "259", "target": "3372" }, { "key": "geid_144_10512", "source": "4090", "target": "4427" }, { "key": "geid_144_10513", "source": "6749", "target": "9902" }, { "key": "geid_144_10514", "source": "2778", "target": "4804" }, { "key": "geid_144_10515", "source": "7741", "target": "6103" }, { "key": "geid_144_10516", "source": "5136", "target": "5224" }, { "key": "geid_144_10517", "source": "9385", "target": "5590" }, { "key": "geid_144_10518", "source": "3653", "target": "4064" }, { "key": "geid_144_10519", "source": "3521", "target": "8007" }, { "key": "geid_144_10520", "source": "4360", "target": "4908" }, { "key": "geid_144_10521", "source": "6146", "target": "7613" }, { "key": "geid_144_10522", "source": "3509", "target": "4283" }, { "key": "geid_144_10523", "source": "2268", "target": "817" }, { "key": "geid_144_10524", "source": "9176", "target": "1330" }, { "key": "geid_144_10525", "source": "8606", "target": "6456" }, { "key": "geid_144_10526", "source": "1325", "target": "5399" }, { "key": "geid_144_10527", "source": "7277", "target": "5297" }, { "key": "geid_144_10528", "source": "8523", "target": "5024" }, { "key": "geid_144_10529", "source": "6208", "target": "2149" }, { "key": "geid_144_10530", "source": "5228", "target": "8512" }, { "key": "geid_144_10531", "source": "8880", "target": "414" }, { "key": "geid_144_10532", "source": "1760", "target": "9229" }, { "key": "geid_144_10533", "source": "8084", "target": "4375" }, { "key": "geid_144_10534", "source": "8664", "target": "4769" }, { "key": "geid_144_10535", "source": "5502", "target": "4731" }, { "key": "geid_144_10536", "source": "7511", "target": "2890" }, { "key": "geid_144_10537", "source": "5855", "target": "4933" }, { "key": "geid_144_10538", "source": "8938", "target": "9670" }, { "key": "geid_144_10539", "source": "9231", "target": "6187" }, { "key": "geid_144_10540", "source": "5941", "target": "7665" }, { "key": "geid_144_10541", "source": "3308", "target": "3426" }, { "key": "geid_144_10542", "source": "5129", "target": "2979" }, { "key": "geid_144_10543", "source": "6481", "target": "3975" }, { "key": "geid_144_10544", "source": "4587", "target": "9121" }, { "key": "geid_144_10545", "source": "2854", "target": "1844" }, { "key": "geid_144_10546", "source": "1610", "target": "3042" }, { "key": "geid_144_10547", "source": "1937", "target": "1948" }, { "key": "geid_144_10548", "source": "4256", "target": "1261" }, { "key": "geid_144_10549", "source": "5134", "target": "3432" }, { "key": "geid_144_10550", "source": "3232", "target": "5467" }, { "key": "geid_144_10551", "source": "5112", "target": "6104" }, { "key": "geid_144_10552", "source": "5398", "target": "5505" }, { "key": "geid_144_10553", "source": "2734", "target": "4836" }, { "key": "geid_144_10554", "source": "6384", "target": "8144" }, { "key": "geid_144_10555", "source": "3287", "target": "5979" }, { "key": "geid_144_10556", "source": "6343", "target": "4662" }, { "key": "geid_144_10557", "source": "6140", "target": "7334" }, { "key": "geid_144_10558", "source": "4898", "target": "232" }, { "key": "geid_144_10559", "source": "3828", "target": "4208" }, { "key": "geid_144_10560", "source": "9789", "target": "7205" }, { "key": "geid_144_10561", "source": "3445", "target": "4851" }, { "key": "geid_144_10562", "source": "7525", "target": "5790" }, { "key": "geid_144_10563", "source": "4842", "target": "6914" }, { "key": "geid_144_10564", "source": "4197", "target": "9706" }, { "key": "geid_144_10565", "source": "1646", "target": "3494" }, { "key": "geid_144_10566", "source": "9913", "target": "7742" }, { "key": "geid_144_10567", "source": "3349", "target": "9924" }, { "key": "geid_144_10568", "source": "8475", "target": "9668" }, { "key": "geid_144_10569", "source": "420", "target": "5525" }, { "key": "geid_144_10570", "source": "7613", "target": "3090" }, { "key": "geid_144_10571", "source": "8130", "target": "6251" }, { "key": "geid_144_10572", "source": "421", "target": "1400" }, { "key": "geid_144_10573", "source": "6795", "target": "9210" }, { "key": "geid_144_10574", "source": "5273", "target": "8905" }, { "key": "geid_144_10575", "source": "5828", "target": "3783" }, { "key": "geid_144_10576", "source": "2654", "target": "4849" }, { "key": "geid_144_10577", "source": "5626", "target": "9157" }, { "key": "geid_144_10578", "source": "5723", "target": "6397" }, { "key": "geid_144_10579", "source": "2362", "target": "54" }, { "key": "geid_144_10580", "source": "1396", "target": "5833" }, { "key": "geid_144_10581", "source": "2289", "target": "3531" }, { "key": "geid_144_10582", "source": "1426", "target": "109" }, { "key": "geid_144_10583", "source": "9606", "target": "9287" }, { "key": "geid_144_10584", "source": "51", "target": "5026" }, { "key": "geid_144_10585", "source": "7446", "target": "5985" }, { "key": "geid_144_10586", "source": "2629", "target": "4076" }, { "key": "geid_144_10587", "source": "9927", "target": "7723" }, { "key": "geid_144_10588", "source": "5190", "target": "932" }, { "key": "geid_144_10589", "source": "7334", "target": "8600" }, { "key": "geid_144_10590", "source": "2476", "target": "6024" }, { "key": "geid_144_10591", "source": "4121", "target": "5879" }, { "key": "geid_144_10592", "source": "4397", "target": "6405" }, { "key": "geid_144_10593", "source": "1855", "target": "4486" }, { "key": "geid_144_10594", "source": "3162", "target": "2828" }, { "key": "geid_144_10595", "source": "4784", "target": "1504" }, { "key": "geid_144_10596", "source": "6907", "target": "2013" }, { "key": "geid_144_10597", "source": "8606", "target": "4116" }, { "key": "geid_144_10598", "source": "7174", "target": "1456" }, { "key": "geid_144_10599", "source": "5064", "target": "4568" }, { "key": "geid_144_10600", "source": "9639", "target": "362" }, { "key": "geid_144_10601", "source": "626", "target": "1910" }, { "key": "geid_144_10602", "source": "3725", "target": "663" }, { "key": "geid_144_10603", "source": "272", "target": "5551" }, { "key": "geid_144_10604", "source": "6672", "target": "4362" }, { "key": "geid_144_10605", "source": "3151", "target": "5050" }, { "key": "geid_144_10606", "source": "7117", "target": "5239" }, { "key": "geid_144_10607", "source": "3151", "target": "4339" }, { "key": "geid_144_10608", "source": "2836", "target": "4848" }, { "key": "geid_144_10609", "source": "6611", "target": "3490" }, { "key": "geid_144_10610", "source": "2434", "target": "2851" }, { "key": "geid_144_10611", "source": "8247", "target": "7206" }, { "key": "geid_144_10612", "source": "8275", "target": "8022" }, { "key": "geid_144_10613", "source": "4574", "target": "1626" }, { "key": "geid_144_10614", "source": "1732", "target": "4271" }, { "key": "geid_144_10615", "source": "4961", "target": "3609" }, { "key": "geid_144_10616", "source": "7409", "target": "4007" }, { "key": "geid_144_10617", "source": "9792", "target": "8129" }, { "key": "geid_144_10618", "source": "957", "target": "7932" }, { "key": "geid_144_10619", "source": "7081", "target": "9357" }, { "key": "geid_144_10620", "source": "2868", "target": "169" }, { "key": "geid_144_10621", "source": "6594", "target": "3554" }, { "key": "geid_144_10622", "source": "9911", "target": "4" }, { "key": "geid_144_10623", "source": "3650", "target": "6578" }, { "key": "geid_144_10624", "source": "1271", "target": "3742" }, { "key": "geid_144_10625", "source": "1691", "target": "9961" }, { "key": "geid_144_10626", "source": "3329", "target": "899" }, { "key": "geid_144_10627", "source": "8599", "target": "2846" }, { "key": "geid_144_10628", "source": "6022", "target": "4640" }, { "key": "geid_144_10629", "source": "360", "target": "1939" }, { "key": "geid_144_10630", "source": "9088", "target": "5523" }, { "key": "geid_144_10631", "source": "612", "target": "8104" }, { "key": "geid_144_10632", "source": "8625", "target": "3339" }, { "key": "geid_144_10633", "source": "1735", "target": "5869" }, { "key": "geid_144_10634", "source": "2256", "target": "7069" }, { "key": "geid_144_10635", "source": "4369", "target": "9360" }, { "key": "geid_144_10636", "source": "8115", "target": "4098" }, { "key": "geid_144_10637", "source": "6841", "target": "7432" }, { "key": "geid_144_10638", "source": "7757", "target": "9748" }, { "key": "geid_144_10639", "source": "6153", "target": "4819" }, { "key": "geid_144_10640", "source": "9215", "target": "4646" }, { "key": "geid_144_10641", "source": "7709", "target": "575" }, { "key": "geid_144_10642", "source": "577", "target": "9109" }, { "key": "geid_144_10643", "source": "1273", "target": "1940" }, { "key": "geid_144_10644", "source": "1986", "target": "4236" }, { "key": "geid_144_10645", "source": "8774", "target": "299" }, { "key": "geid_144_10646", "source": "7788", "target": "5130" }, { "key": "geid_144_10647", "source": "9779", "target": "9602" }, { "key": "geid_144_10648", "source": "9080", "target": "4967" }, { "key": "geid_144_10649", "source": "5175", "target": "9278" }, { "key": "geid_144_10650", "source": "9610", "target": "3449" }, { "key": "geid_144_10651", "source": "2796", "target": "7733" }, { "key": "geid_144_10652", "source": "1487", "target": "4566" }, { "key": "geid_144_10653", "source": "4386", "target": "3055" }, { "key": "geid_144_10654", "source": "5037", "target": "8154" }, { "key": "geid_144_10655", "source": "6015", "target": "6635" }, { "key": "geid_144_10656", "source": "3542", "target": "5196" }, { "key": "geid_144_10657", "source": "9866", "target": "9147" }, { "key": "geid_144_10658", "source": "5880", "target": "8544" }, { "key": "geid_144_10659", "source": "8974", "target": "1683" }, { "key": "geid_144_10660", "source": "9008", "target": "560" }, { "key": "geid_144_10661", "source": "3083", "target": "9661" }, { "key": "geid_144_10662", "source": "5112", "target": "2591" }, { "key": "geid_144_10663", "source": "3380", "target": "6522" }, { "key": "geid_144_10664", "source": "4537", "target": "2788" }, { "key": "geid_144_10665", "source": "1153", "target": "636" }, { "key": "geid_144_10666", "source": "2684", "target": "8794" }, { "key": "geid_144_10667", "source": "9459", "target": "2306" }, { "key": "geid_144_10668", "source": "6442", "target": "2552" }, { "key": "geid_144_10669", "source": "5305", "target": "9758" }, { "key": "geid_144_10670", "source": "6852", "target": "9606" }, { "key": "geid_144_10671", "source": "9749", "target": "9784" }, { "key": "geid_144_10672", "source": "3085", "target": "7641" }, { "key": "geid_144_10673", "source": "3113", "target": "8782" }, { "key": "geid_144_10674", "source": "1741", "target": "1976" }, { "key": "geid_144_10675", "source": "9697", "target": "6096" }, { "key": "geid_144_10676", "source": "2207", "target": "6342" }, { "key": "geid_144_10677", "source": "4116", "target": "3597" }, { "key": "geid_144_10678", "source": "3920", "target": "7862" }, { "key": "geid_144_10679", "source": "2925", "target": "462" }, { "key": "geid_144_10680", "source": "7974", "target": "6749" }, { "key": "geid_144_10681", "source": "1424", "target": "9679" }, { "key": "geid_144_10682", "source": "7791", "target": "4930" }, { "key": "geid_144_10683", "source": "1554", "target": "397" }, { "key": "geid_144_10684", "source": "6888", "target": "7476" }, { "key": "geid_144_10685", "source": "9259", "target": "7895" }, { "key": "geid_144_10686", "source": "129", "target": "1740" }, { "key": "geid_144_10687", "source": "1882", "target": "9406" }, { "key": "geid_144_10688", "source": "9834", "target": "8817" }, { "key": "geid_144_10689", "source": "1736", "target": "7374" }, { "key": "geid_144_10690", "source": "2182", "target": "2126" }, { "key": "geid_144_10691", "source": "938", "target": "4078" }, { "key": "geid_144_10692", "source": "3418", "target": "3113" }, { "key": "geid_144_10693", "source": "8364", "target": "6829" }, { "key": "geid_144_10694", "source": "7208", "target": "7674" }, { "key": "geid_144_10695", "source": "3122", "target": "4485" }, { "key": "geid_144_10696", "source": "6335", "target": "4587" }, { "key": "geid_144_10697", "source": "6364", "target": "3090" }, { "key": "geid_144_10698", "source": "395", "target": "4052" }, { "key": "geid_144_10699", "source": "9900", "target": "736" }, { "key": "geid_144_10700", "source": "7683", "target": "1046" }, { "key": "geid_144_10701", "source": "1214", "target": "2972" }, { "key": "geid_144_10702", "source": "1959", "target": "5561" }, { "key": "geid_144_10703", "source": "545", "target": "6917" }, { "key": "geid_144_10704", "source": "2712", "target": "9647" }, { "key": "geid_144_10705", "source": "8302", "target": "6310" }, { "key": "geid_144_10706", "source": "5660", "target": "5585" }, { "key": "geid_144_10707", "source": "1320", "target": "4713" }, { "key": "geid_144_10708", "source": "1676", "target": "9414" }, { "key": "geid_144_10709", "source": "6117", "target": "5248" }, { "key": "geid_144_10710", "source": "4151", "target": "85" }, { "key": "geid_144_10711", "source": "5947", "target": "3360" }, { "key": "geid_144_10712", "source": "4594", "target": "1100" }, { "key": "geid_144_10713", "source": "2212", "target": "431" }, { "key": "geid_144_10714", "source": "6952", "target": "8583" }, { "key": "geid_144_10715", "source": "2283", "target": "7700" }, { "key": "geid_144_10716", "source": "5879", "target": "1610" }, { "key": "geid_144_10717", "source": "9943", "target": "8866" }, { "key": "geid_144_10718", "source": "6533", "target": "7267" }, { "key": "geid_144_10719", "source": "5388", "target": "9540" }, { "key": "geid_144_10720", "source": "6298", "target": "7320" }, { "key": "geid_144_10721", "source": "2265", "target": "9309" }, { "key": "geid_144_10722", "source": "5073", "target": "9061" }, { "key": "geid_144_10723", "source": "6335", "target": "1831" }, { "key": "geid_144_10724", "source": "7071", "target": "9901" }, { "key": "geid_144_10725", "source": "71", "target": "4002" }, { "key": "geid_144_10726", "source": "9220", "target": "8316" }, { "key": "geid_144_10727", "source": "5531", "target": "2701" }, { "key": "geid_144_10728", "source": "9114", "target": "1101" }, { "key": "geid_144_10729", "source": "6250", "target": "1472" }, { "key": "geid_144_10730", "source": "4039", "target": "2316" }, { "key": "geid_144_10731", "source": "3651", "target": "691" }, { "key": "geid_144_10732", "source": "7906", "target": "983" }, { "key": "geid_144_10733", "source": "3945", "target": "6712" }, { "key": "geid_144_10734", "source": "7318", "target": "9519" }, { "key": "geid_144_10735", "source": "2896", "target": "3150" }, { "key": "geid_144_10736", "source": "327", "target": "5424" }, { "key": "geid_144_10737", "source": "9777", "target": "742" }, { "key": "geid_144_10738", "source": "5831", "target": "6949" }, { "key": "geid_144_10739", "source": "9591", "target": "4329" }, { "key": "geid_144_10740", "source": "1064", "target": "6471" }, { "key": "geid_144_10741", "source": "1201", "target": "4401" }, { "key": "geid_144_10742", "source": "2392", "target": "5023" }, { "key": "geid_144_10743", "source": "1831", "target": "2876" }, { "key": "geid_144_10744", "source": "8865", "target": "9591" }, { "key": "geid_144_10745", "source": "1151", "target": "1456" }, { "key": "geid_144_10746", "source": "6100", "target": "357" }, { "key": "geid_144_10747", "source": "3428", "target": "6354" }, { "key": "geid_144_10748", "source": "9500", "target": "3505" }, { "key": "geid_144_10749", "source": "4870", "target": "4316" }, { "key": "geid_144_10750", "source": "5347", "target": "961" }, { "key": "geid_144_10751", "source": "6576", "target": "8292" }, { "key": "geid_144_10752", "source": "2320", "target": "4582" }, { "key": "geid_144_10753", "source": "9859", "target": "5142" }, { "key": "geid_144_10754", "source": "9909", "target": "2834" }, { "key": "geid_144_10755", "source": "7627", "target": "7644" }, { "key": "geid_144_10756", "source": "8527", "target": "1524" }, { "key": "geid_144_10757", "source": "2713", "target": "4676" }, { "key": "geid_144_10758", "source": "5992", "target": "1388" }, { "key": "geid_144_10759", "source": "2016", "target": "5887" }, { "key": "geid_144_10760", "source": "2743", "target": "7577" }, { "key": "geid_144_10761", "source": "4755", "target": "2604" }, { "key": "geid_144_10762", "source": "2567", "target": "1263" }, { "key": "geid_144_10763", "source": "8947", "target": "2527" }, { "key": "geid_144_10764", "source": "2269", "target": "6789" }, { "key": "geid_144_10765", "source": "8864", "target": "4062" }, { "key": "geid_144_10766", "source": "7727", "target": "9475" }, { "key": "geid_144_10767", "source": "655", "target": "2289" }, { "key": "geid_144_10768", "source": "1819", "target": "327" }, { "key": "geid_144_10769", "source": "8987", "target": "8070" }, { "key": "geid_144_10770", "source": "9551", "target": "3627" }, { "key": "geid_144_10771", "source": "9417", "target": "2516" }, { "key": "geid_144_10772", "source": "5768", "target": "4388" }, { "key": "geid_144_10773", "source": "4420", "target": "4105" }, { "key": "geid_144_10774", "source": "6818", "target": "7370" }, { "key": "geid_144_10775", "source": "8549", "target": "1124" }, { "key": "geid_144_10776", "source": "8273", "target": "3070" }, { "key": "geid_144_10777", "source": "2690", "target": "9156" }, { "key": "geid_144_10778", "source": "854", "target": "6303" }, { "key": "geid_144_10779", "source": "9370", "target": "2805" }, { "key": "geid_144_10780", "source": "2351", "target": "6957" }, { "key": "geid_144_10781", "source": "6027", "target": "8733" }, { "key": "geid_144_10782", "source": "3975", "target": "9048" }, { "key": "geid_144_10783", "source": "1491", "target": "9367" }, { "key": "geid_144_10784", "source": "8674", "target": "7209" }, { "key": "geid_144_10785", "source": "6447", "target": "5624" }, { "key": "geid_144_10786", "source": "4279", "target": "5896" }, { "key": "geid_144_10787", "source": "894", "target": "5503" }, { "key": "geid_144_10788", "source": "7023", "target": "6065" }, { "key": "geid_144_10789", "source": "8923", "target": "9628" }, { "key": "geid_144_10790", "source": "7844", "target": "3567" }, { "key": "geid_144_10791", "source": "9857", "target": "8955" }, { "key": "geid_144_10792", "source": "6443", "target": "6182" }, { "key": "geid_144_10793", "source": "2445", "target": "4199" }, { "key": "geid_144_10794", "source": "1442", "target": "4585" }, { "key": "geid_144_10795", "source": "6722", "target": "8091" }, { "key": "geid_144_10796", "source": "6939", "target": "4722" }, { "key": "geid_144_10797", "source": "9844", "target": "9805" }, { "key": "geid_144_10798", "source": "315", "target": "2392" }, { "key": "geid_144_10799", "source": "5426", "target": "9193" }, { "key": "geid_144_10800", "source": "7125", "target": "1167" }, { "key": "geid_144_10801", "source": "9390", "target": "3985" }, { "key": "geid_144_10802", "source": "4214", "target": "2674" }, { "key": "geid_144_10803", "source": "2623", "target": "210" }, { "key": "geid_144_10804", "source": "6585", "target": "7112" }, { "key": "geid_144_10805", "source": "6030", "target": "9212" }, { "key": "geid_144_10806", "source": "5635", "target": "2257" }, { "key": "geid_144_10807", "source": "9982", "target": "4628" }, { "key": "geid_144_10808", "source": "885", "target": "1294" }, { "key": "geid_144_10809", "source": "8060", "target": "3236" }, { "key": "geid_144_10810", "source": "5583", "target": "4167" }, { "key": "geid_144_10811", "source": "7682", "target": "8146" }, { "key": "geid_144_10812", "source": "3024", "target": "2757" }, { "key": "geid_144_10813", "source": "4878", "target": "3106" }, { "key": "geid_144_10814", "source": "8443", "target": "3519" }, { "key": "geid_144_10815", "source": "7336", "target": "384" }, { "key": "geid_144_10816", "source": "7505", "target": "8579" }, { "key": "geid_144_10817", "source": "8729", "target": "2349" }, { "key": "geid_144_10818", "source": "582", "target": "6069" }, { "key": "geid_144_10819", "source": "7480", "target": "1837" }, { "key": "geid_144_10820", "source": "1117", "target": "3829" }, { "key": "geid_144_10821", "source": "7161", "target": "2169" }, { "key": "geid_144_10822", "source": "5515", "target": "1883" }, { "key": "geid_144_10823", "source": "361", "target": "8987" }, { "key": "geid_144_10824", "source": "8933", "target": "5764" }, { "key": "geid_144_10825", "source": "5625", "target": "4983" }, { "key": "geid_144_10826", "source": "4646", "target": "3626" }, { "key": "geid_144_10827", "source": "2140", "target": "4620" }, { "key": "geid_144_10828", "source": "3367", "target": "2372" }, { "key": "geid_144_10829", "source": "3281", "target": "9897" }, { "key": "geid_144_10830", "source": "2408", "target": "6033" }, { "key": "geid_144_10831", "source": "4230", "target": "1928" }, { "key": "geid_144_10832", "source": "149", "target": "3988" }, { "key": "geid_144_10833", "source": "9715", "target": "3900" }, { "key": "geid_144_10834", "source": "3838", "target": "1642" }, { "key": "geid_144_10835", "source": "1266", "target": "4276" }, { "key": "geid_144_10836", "source": "1967", "target": "6716" }, { "key": "geid_144_10837", "source": "3529", "target": "8409" }, { "key": "geid_144_10838", "source": "3345", "target": "995" }, { "key": "geid_144_10839", "source": "8711", "target": "3122" }, { "key": "geid_144_10840", "source": "999", "target": "198" }, { "key": "geid_144_10841", "source": "2468", "target": "6609" }, { "key": "geid_144_10842", "source": "3624", "target": "51" }, { "key": "geid_144_10843", "source": "135", "target": "5123" }, { "key": "geid_144_10844", "source": "2596", "target": "8070" }, { "key": "geid_144_10845", "source": "1390", "target": "9439" }, { "key": "geid_144_10846", "source": "6034", "target": "9445" }, { "key": "geid_144_10847", "source": "7892", "target": "558" }, { "key": "geid_144_10848", "source": "7632", "target": "5104" }, { "key": "geid_144_10849", "source": "2664", "target": "4066" }, { "key": "geid_144_10850", "source": "6325", "target": "4690" }, { "key": "geid_144_10851", "source": "5393", "target": "805" }, { "key": "geid_144_10852", "source": "4384", "target": "5861" }, { "key": "geid_144_10853", "source": "8044", "target": "3109" }, { "key": "geid_144_10854", "source": "4238", "target": "5777" }, { "key": "geid_144_10855", "source": "7632", "target": "3776" }, { "key": "geid_144_10856", "source": "1056", "target": "5040" }, { "key": "geid_144_10857", "source": "8389", "target": "9810" }, { "key": "geid_144_10858", "source": "7149", "target": "1504" }, { "key": "geid_144_10859", "source": "8690", "target": "3252" }, { "key": "geid_144_10860", "source": "9374", "target": "7386" }, { "key": "geid_144_10861", "source": "3552", "target": "3235" }, { "key": "geid_144_10862", "source": "9689", "target": "8914" }, { "key": "geid_144_10863", "source": "5958", "target": "8276" }, { "key": "geid_144_10864", "source": "5487", "target": "4748" }, { "key": "geid_144_10865", "source": "7983", "target": "3686" }, { "key": "geid_144_10866", "source": "7738", "target": "2733" }, { "key": "geid_144_10867", "source": "9899", "target": "1958" }, { "key": "geid_144_10868", "source": "9174", "target": "4439" }, { "key": "geid_144_10869", "source": "7074", "target": "1444" }, { "key": "geid_144_10870", "source": "5226", "target": "8009" }, { "key": "geid_144_10871", "source": "5393", "target": "9429" }, { "key": "geid_144_10872", "source": "2845", "target": "9561" }, { "key": "geid_144_10873", "source": "4956", "target": "9618" }, { "key": "geid_144_10874", "source": "6947", "target": "3311" }, { "key": "geid_144_10875", "source": "7196", "target": "6697" }, { "key": "geid_144_10876", "source": "2129", "target": "334" }, { "key": "geid_144_10877", "source": "5642", "target": "7075" }, { "key": "geid_144_10878", "source": "7153", "target": "3909" }, { "key": "geid_144_10879", "source": "9600", "target": "4195" }, { "key": "geid_144_10880", "source": "1392", "target": "9831" }, { "key": "geid_144_10881", "source": "6918", "target": "7460" }, { "key": "geid_144_10882", "source": "5809", "target": "1758" }, { "key": "geid_144_10883", "source": "6375", "target": "7172" }, { "key": "geid_144_10884", "source": "941", "target": "2707" }, { "key": "geid_144_10885", "source": "2671", "target": "8534" }, { "key": "geid_144_10886", "source": "537", "target": "3668" }, { "key": "geid_144_10887", "source": "5971", "target": "6107" }, { "key": "geid_144_10888", "source": "645", "target": "6121" }, { "key": "geid_144_10889", "source": "1333", "target": "2598" }, { "key": "geid_144_10890", "source": "2699", "target": "2903" }, { "key": "geid_144_10891", "source": "2134", "target": "1146" }, { "key": "geid_144_10892", "source": "2169", "target": "3287" }, { "key": "geid_144_10893", "source": "4771", "target": "2668" }, { "key": "geid_144_10894", "source": "6611", "target": "7456" }, { "key": "geid_144_10895", "source": "6448", "target": "3460" }, { "key": "geid_144_10896", "source": "3470", "target": "5086" }, { "key": "geid_144_10897", "source": "8645", "target": "8901" }, { "key": "geid_144_10898", "source": "8981", "target": "2758" }, { "key": "geid_144_10899", "source": "9923", "target": "9965" }, { "key": "geid_144_10900", "source": "7065", "target": "9801" }, { "key": "geid_144_10901", "source": "4177", "target": "212" }, { "key": "geid_144_10902", "source": "4687", "target": "4464" }, { "key": "geid_144_10903", "source": "3746", "target": "336" }, { "key": "geid_144_10904", "source": "9321", "target": "6003" }, { "key": "geid_144_10905", "source": "9469", "target": "8738" }, { "key": "geid_144_10906", "source": "225", "target": "5907" }, { "key": "geid_144_10907", "source": "4999", "target": "3296" }, { "key": "geid_144_10908", "source": "7766", "target": "5544" }, { "key": "geid_144_10909", "source": "4555", "target": "4935" }, { "key": "geid_144_10910", "source": "4073", "target": "4216" }, { "key": "geid_144_10911", "source": "7227", "target": "8430" }, { "key": "geid_144_10912", "source": "9363", "target": "3518" }, { "key": "geid_144_10913", "source": "7810", "target": "3261" }, { "key": "geid_144_10914", "source": "7493", "target": "5952" }, { "key": "geid_144_10915", "source": "5718", "target": "4039" }, { "key": "geid_144_10916", "source": "8623", "target": "9521" }, { "key": "geid_144_10917", "source": "3734", "target": "4745" }, { "key": "geid_144_10918", "source": "7269", "target": "154" }, { "key": "geid_144_10919", "source": "3437", "target": "2777" }, { "key": "geid_144_10920", "source": "5157", "target": "3247" }, { "key": "geid_144_10921", "source": "686", "target": "5334" }, { "key": "geid_144_10922", "source": "5747", "target": "2511" }, { "key": "geid_144_10923", "source": "6265", "target": "6687" }, { "key": "geid_144_10924", "source": "3949", "target": "5677" }, { "key": "geid_144_10925", "source": "9065", "target": "2620" }, { "key": "geid_144_10926", "source": "7208", "target": "7588" }, { "key": "geid_144_10927", "source": "8178", "target": "6337" }, { "key": "geid_144_10928", "source": "2522", "target": "1674" }, { "key": "geid_144_10929", "source": "2209", "target": "3928" }, { "key": "geid_144_10930", "source": "9035", "target": "8050" }, { "key": "geid_144_10931", "source": "9694", "target": "6752" }, { "key": "geid_144_10932", "source": "2009", "target": "5726" }, { "key": "geid_144_10933", "source": "8645", "target": "432" }, { "key": "geid_144_10934", "source": "7393", "target": "3825" }, { "key": "geid_144_10935", "source": "619", "target": "3870" }, { "key": "geid_144_10936", "source": "3998", "target": "5785" }, { "key": "geid_144_10937", "source": "2951", "target": "1782" }, { "key": "geid_144_10938", "source": "6458", "target": "2328" }, { "key": "geid_144_10939", "source": "3868", "target": "2201" }, { "key": "geid_144_10940", "source": "7226", "target": "2133" }, { "key": "geid_144_10941", "source": "2806", "target": "2962" }, { "key": "geid_144_10942", "source": "8090", "target": "4965" }, { "key": "geid_144_10943", "source": "5390", "target": "747" }, { "key": "geid_144_10944", "source": "5751", "target": "3062" }, { "key": "geid_144_10945", "source": "9157", "target": "3921" }, { "key": "geid_144_10946", "source": "9143", "target": "6826" }, { "key": "geid_144_10947", "source": "6815", "target": "5055" }, { "key": "geid_144_10948", "source": "1876", "target": "1409" }, { "key": "geid_144_10949", "source": "1575", "target": "1390" }, { "key": "geid_144_10950", "source": "6389", "target": "537" }, { "key": "geid_144_10951", "source": "6435", "target": "3903" }, { "key": "geid_144_10952", "source": "5019", "target": "783" }, { "key": "geid_144_10953", "source": "6761", "target": "353" }, { "key": "geid_144_10954", "source": "5132", "target": "2447" }, { "key": "geid_144_10955", "source": "2950", "target": "2347" }, { "key": "geid_144_10956", "source": "6741", "target": "7521" }, { "key": "geid_144_10957", "source": "7793", "target": "4046" }, { "key": "geid_144_10958", "source": "4764", "target": "3252" }, { "key": "geid_144_10959", "source": "82", "target": "961" }, { "key": "geid_144_10960", "source": "5578", "target": "3941" }, { "key": "geid_144_10961", "source": "3370", "target": "9046" }, { "key": "geid_144_10962", "source": "8234", "target": "6534" }, { "key": "geid_144_10963", "source": "3300", "target": "6923" }, { "key": "geid_144_10964", "source": "4176", "target": "1453" }, { "key": "geid_144_10965", "source": "9542", "target": "3156" }, { "key": "geid_144_10966", "source": "2490", "target": "7043" }, { "key": "geid_144_10967", "source": "4625", "target": "2823" }, { "key": "geid_144_10968", "source": "723", "target": "7037" }, { "key": "geid_144_10969", "source": "6071", "target": "3910" }, { "key": "geid_144_10970", "source": "8517", "target": "2879" }, { "key": "geid_144_10971", "source": "9669", "target": "5923" }, { "key": "geid_144_10972", "source": "3666", "target": "7771" }, { "key": "geid_144_10973", "source": "5244", "target": "6504" }, { "key": "geid_144_10974", "source": "9378", "target": "3881" }, { "key": "geid_144_10975", "source": "802", "target": "464" }, { "key": "geid_144_10976", "source": "818", "target": "353" }, { "key": "geid_144_10977", "source": "3955", "target": "9027" }, { "key": "geid_144_10978", "source": "6994", "target": "4337" }, { "key": "geid_144_10979", "source": "3391", "target": "7333" }, { "key": "geid_144_10980", "source": "7355", "target": "864" }, { "key": "geid_144_10981", "source": "1714", "target": "8934" }, { "key": "geid_144_10982", "source": "9914", "target": "4062" }, { "key": "geid_144_10983", "source": "9828", "target": "860" }, { "key": "geid_144_10984", "source": "8874", "target": "8266" }, { "key": "geid_144_10985", "source": "583", "target": "2" }, { "key": "geid_144_10986", "source": "7733", "target": "4195" }, { "key": "geid_144_10987", "source": "6876", "target": "1210" }, { "key": "geid_144_10988", "source": "8231", "target": "7915" }, { "key": "geid_144_10989", "source": "5973", "target": "7187" }, { "key": "geid_144_10990", "source": "4056", "target": "4562" }, { "key": "geid_144_10991", "source": "3681", "target": "147" }, { "key": "geid_144_10992", "source": "7646", "target": "104" }, { "key": "geid_144_10993", "source": "3312", "target": "3595" }, { "key": "geid_144_10994", "source": "761", "target": "4086" }, { "key": "geid_144_10995", "source": "1698", "target": "189" }, { "key": "geid_144_10996", "source": "9259", "target": "2761" }, { "key": "geid_144_10997", "source": "2388", "target": "8567" }, { "key": "geid_144_10998", "source": "6655", "target": "124" }, { "key": "geid_144_10999", "source": "206", "target": "8713" }, { "key": "geid_144_11000", "source": "2427", "target": "6383" }, { "key": "geid_144_11001", "source": "1572", "target": "7073" }, { "key": "geid_144_11002", "source": "6379", "target": "1666" }, { "key": "geid_144_11003", "source": "490", "target": "931" }, { "key": "geid_144_11004", "source": "6619", "target": "8790" }, { "key": "geid_144_11005", "source": "6430", "target": "4839" }, { "key": "geid_144_11006", "source": "7928", "target": "2602" }, { "key": "geid_144_11007", "source": "8800", "target": "9439" }, { "key": "geid_144_11008", "source": "9609", "target": "9885" }, { "key": "geid_144_11009", "source": "111", "target": "3747" }, { "key": "geid_144_11010", "source": "8255", "target": "7466" }, { "key": "geid_144_11011", "source": "3331", "target": "4582" }, { "key": "geid_144_11012", "source": "6244", "target": "6855" }, { "key": "geid_144_11013", "source": "1865", "target": "43" }, { "key": "geid_144_11014", "source": "477", "target": "9868" }, { "key": "geid_144_11015", "source": "6056", "target": "3721" }, { "key": "geid_144_11016", "source": "4662", "target": "7217" }, { "key": "geid_144_11017", "source": "1557", "target": "564" }, { "key": "geid_144_11018", "source": "4758", "target": "7093" }, { "key": "geid_144_11019", "source": "5826", "target": "9934" }, { "key": "geid_144_11020", "source": "7839", "target": "1063" }, { "key": "geid_144_11021", "source": "7814", "target": "3951" }, { "key": "geid_144_11022", "source": "7340", "target": "4399" }, { "key": "geid_144_11023", "source": "4480", "target": "1961" }, { "key": "geid_144_11024", "source": "8209", "target": "405" }, { "key": "geid_144_11025", "source": "8869", "target": "1277" }, { "key": "geid_144_11026", "source": "5190", "target": "3245" }, { "key": "geid_144_11027", "source": "6478", "target": "1493" }, { "key": "geid_144_11028", "source": "404", "target": "430" }, { "key": "geid_144_11029", "source": "2216", "target": "7250" }, { "key": "geid_144_11030", "source": "4686", "target": "4771" }, { "key": "geid_144_11031", "source": "4488", "target": "9664" }, { "key": "geid_144_11032", "source": "5540", "target": "6053" }, { "key": "geid_144_11033", "source": "9298", "target": "3027" }, { "key": "geid_144_11034", "source": "3315", "target": "1225" }, { "key": "geid_144_11035", "source": "4991", "target": "957" }, { "key": "geid_144_11036", "source": "6763", "target": "1967" }, { "key": "geid_144_11037", "source": "8642", "target": "9897" }, { "key": "geid_144_11038", "source": "6268", "target": "7927" }, { "key": "geid_144_11039", "source": "4340", "target": "190" }, { "key": "geid_144_11040", "source": "3764", "target": "1488" }, { "key": "geid_144_11041", "source": "1510", "target": "7233" }, { "key": "geid_144_11042", "source": "4960", "target": "1290" }, { "key": "geid_144_11043", "source": "4481", "target": "917" }, { "key": "geid_144_11044", "source": "4741", "target": "5295" }, { "key": "geid_144_11045", "source": "5171", "target": "8443" }, { "key": "geid_144_11046", "source": "4098", "target": "3578" }, { "key": "geid_144_11047", "source": "7052", "target": "278" }, { "key": "geid_144_11048", "source": "7150", "target": "1262" }, { "key": "geid_144_11049", "source": "426", "target": "8560" }, { "key": "geid_144_11050", "source": "178", "target": "4799" }, { "key": "geid_144_11051", "source": "6874", "target": "8238" }, { "key": "geid_144_11052", "source": "251", "target": "4969" }, { "key": "geid_144_11053", "source": "6820", "target": "6324" }, { "key": "geid_144_11054", "source": "4814", "target": "5539" }, { "key": "geid_144_11055", "source": "8184", "target": "8915" }, { "key": "geid_144_11056", "source": "9565", "target": "4536" }, { "key": "geid_144_11057", "source": "9265", "target": "5443" }, { "key": "geid_144_11058", "source": "8301", "target": "1878" }, { "key": "geid_144_11059", "source": "9186", "target": "7343" }, { "key": "geid_144_11060", "source": "9909", "target": "3507" }, { "key": "geid_144_11061", "source": "6767", "target": "4973" }, { "key": "geid_144_11062", "source": "8691", "target": "8218" }, { "key": "geid_144_11063", "source": "6895", "target": "1159" }, { "key": "geid_144_11064", "source": "7428", "target": "5215" }, { "key": "geid_144_11065", "source": "2252", "target": "1766" }, { "key": "geid_144_11066", "source": "9524", "target": "3077" }, { "key": "geid_144_11067", "source": "5762", "target": "2086" }, { "key": "geid_144_11068", "source": "8583", "target": "5346" }, { "key": "geid_144_11069", "source": "7557", "target": "8576" }, { "key": "geid_144_11070", "source": "2862", "target": "4872" }, { "key": "geid_144_11071", "source": "69", "target": "7228" }, { "key": "geid_144_11072", "source": "3110", "target": "2597" }, { "key": "geid_144_11073", "source": "9545", "target": "1981" }, { "key": "geid_144_11074", "source": "4178", "target": "207" }, { "key": "geid_144_11075", "source": "5265", "target": "5120" }, { "key": "geid_144_11076", "source": "8119", "target": "6957" }, { "key": "geid_144_11077", "source": "6907", "target": "963" }, { "key": "geid_144_11078", "source": "3576", "target": "8083" }, { "key": "geid_144_11079", "source": "243", "target": "3561" }, { "key": "geid_144_11080", "source": "7160", "target": "6017" }, { "key": "geid_144_11081", "source": "7523", "target": "9543" }, { "key": "geid_144_11082", "source": "7665", "target": "2571" }, { "key": "geid_144_11083", "source": "5734", "target": "1778" }, { "key": "geid_144_11084", "source": "1602", "target": "1520" }, { "key": "geid_144_11085", "source": "1818", "target": "4182" }, { "key": "geid_144_11086", "source": "1640", "target": "1374" }, { "key": "geid_144_11087", "source": "5370", "target": "4984" }, { "key": "geid_144_11088", "source": "6912", "target": "8690" }, { "key": "geid_144_11089", "source": "7501", "target": "3280" }, { "key": "geid_144_11090", "source": "3616", "target": "6896" }, { "key": "geid_144_11091", "source": "1493", "target": "5943" }, { "key": "geid_144_11092", "source": "1428", "target": "9252" }, { "key": "geid_144_11093", "source": "5230", "target": "3130" }, { "key": "geid_144_11094", "source": "4181", "target": "9462" }, { "key": "geid_144_11095", "source": "8126", "target": "826" }, { "key": "geid_144_11096", "source": "9751", "target": "3216" }, { "key": "geid_144_11097", "source": "7018", "target": "4969" }, { "key": "geid_144_11098", "source": "105", "target": "5155" }, { "key": "geid_144_11099", "source": "8720", "target": "9350" }, { "key": "geid_144_11100", "source": "8903", "target": "9846" }, { "key": "geid_144_11101", "source": "1335", "target": "5302" }, { "key": "geid_144_11102", "source": "3216", "target": "7690" }, { "key": "geid_144_11103", "source": "2923", "target": "4353" }, { "key": "geid_144_11104", "source": "3877", "target": "6589" }, { "key": "geid_144_11105", "source": "1075", "target": "5453" }, { "key": "geid_144_11106", "source": "1362", "target": "9610" }, { "key": "geid_144_11107", "source": "6787", "target": "1065" }, { "key": "geid_144_11108", "source": "8622", "target": "2755" }, { "key": "geid_144_11109", "source": "3121", "target": "4500" }, { "key": "geid_144_11110", "source": "7578", "target": "575" }, { "key": "geid_144_11111", "source": "9898", "target": "8104" }, { "key": "geid_144_11112", "source": "6629", "target": "8829" }, { "key": "geid_144_11113", "source": "1603", "target": "5748" }, { "key": "geid_144_11114", "source": "6213", "target": "6524" }, { "key": "geid_144_11115", "source": "9141", "target": "4151" }, { "key": "geid_144_11116", "source": "9543", "target": "1542" }, { "key": "geid_144_11117", "source": "2548", "target": "9680" }, { "key": "geid_144_11118", "source": "256", "target": "885" }, { "key": "geid_144_11119", "source": "3195", "target": "5522" }, { "key": "geid_144_11120", "source": "1933", "target": "3495" }, { "key": "geid_144_11121", "source": "2497", "target": "9339" }, { "key": "geid_144_11122", "source": "4957", "target": "5675" }, { "key": "geid_144_11123", "source": "8173", "target": "9010" }, { "key": "geid_144_11124", "source": "8401", "target": "7565" }, { "key": "geid_144_11125", "source": "184", "target": "2509" }, { "key": "geid_144_11126", "source": "7272", "target": "1555" }, { "key": "geid_144_11127", "source": "7223", "target": "517" }, { "key": "geid_144_11128", "source": "5557", "target": "7211" }, { "key": "geid_144_11129", "source": "3711", "target": "1113" }, { "key": "geid_144_11130", "source": "3160", "target": "3807" }, { "key": "geid_144_11131", "source": "4655", "target": "918" }, { "key": "geid_144_11132", "source": "3384", "target": "4275" }, { "key": "geid_144_11133", "source": "4928", "target": "3430" }, { "key": "geid_144_11134", "source": "9431", "target": "5952" }, { "key": "geid_144_11135", "source": "8750", "target": "1389" }, { "key": "geid_144_11136", "source": "850", "target": "2531" }, { "key": "geid_144_11137", "source": "272", "target": "8471" }, { "key": "geid_144_11138", "source": "1242", "target": "3064" }, { "key": "geid_144_11139", "source": "5252", "target": "4660" }, { "key": "geid_144_11140", "source": "122", "target": "8959" }, { "key": "geid_144_11141", "source": "8118", "target": "5974" }, { "key": "geid_144_11142", "source": "3658", "target": "1063" }, { "key": "geid_144_11143", "source": "4987", "target": "7543" }, { "key": "geid_144_11144", "source": "1121", "target": "3061" }, { "key": "geid_144_11145", "source": "3655", "target": "1612" }, { "key": "geid_144_11146", "source": "7652", "target": "4742" }, { "key": "geid_144_11147", "source": "8215", "target": "1443" }, { "key": "geid_144_11148", "source": "970", "target": "2153" }, { "key": "geid_144_11149", "source": "9542", "target": "9069" }, { "key": "geid_144_11150", "source": "2233", "target": "1841" }, { "key": "geid_144_11151", "source": "6700", "target": "2515" }, { "key": "geid_144_11152", "source": "5521", "target": "7361" }, { "key": "geid_144_11153", "source": "7153", "target": "4241" }, { "key": "geid_144_11154", "source": "3532", "target": "4375" }, { "key": "geid_144_11155", "source": "8857", "target": "4293" }, { "key": "geid_144_11156", "source": "9104", "target": "9938" }, { "key": "geid_144_11157", "source": "3159", "target": "7663" }, { "key": "geid_144_11158", "source": "6571", "target": "3119" }, { "key": "geid_144_11159", "source": "6862", "target": "7279" }, { "key": "geid_144_11160", "source": "707", "target": "5581" }, { "key": "geid_144_11161", "source": "2614", "target": "1019" }, { "key": "geid_144_11162", "source": "3733", "target": "9013" }, { "key": "geid_144_11163", "source": "1298", "target": "8400" }, { "key": "geid_144_11164", "source": "648", "target": "2586" }, { "key": "geid_144_11165", "source": "9034", "target": "9164" }, { "key": "geid_144_11166", "source": "2187", "target": "3681" }, { "key": "geid_144_11167", "source": "6466", "target": "9602" }, { "key": "geid_144_11168", "source": "8408", "target": "9586" }, { "key": "geid_144_11169", "source": "1962", "target": "5269" }, { "key": "geid_144_11170", "source": "1009", "target": "2039" }, { "key": "geid_144_11171", "source": "7485", "target": "9317" }, { "key": "geid_144_11172", "source": "6310", "target": "8530" }, { "key": "geid_144_11173", "source": "3070", "target": "8821" }, { "key": "geid_144_11174", "source": "9042", "target": "1015" }, { "key": "geid_144_11175", "source": "3897", "target": "3162" }, { "key": "geid_144_11176", "source": "5428", "target": "6544" }, { "key": "geid_144_11177", "source": "1127", "target": "8890" }, { "key": "geid_144_11178", "source": "1172", "target": "9756" }, { "key": "geid_144_11179", "source": "5746", "target": "9773" }, { "key": "geid_144_11180", "source": "3453", "target": "517" }, { "key": "geid_144_11181", "source": "8989", "target": "4506" }, { "key": "geid_144_11182", "source": "2872", "target": "9825" }, { "key": "geid_144_11183", "source": "6352", "target": "4464" }, { "key": "geid_144_11184", "source": "7440", "target": "9342" }, { "key": "geid_144_11185", "source": "7507", "target": "5894" }, { "key": "geid_144_11186", "source": "858", "target": "193" }, { "key": "geid_144_11187", "source": "9876", "target": "4572" }, { "key": "geid_144_11188", "source": "6690", "target": "5420" }, { "key": "geid_144_11189", "source": "3807", "target": "5107" }, { "key": "geid_144_11190", "source": "9644", "target": "5896" }, { "key": "geid_144_11191", "source": "3172", "target": "4062" }, { "key": "geid_144_11192", "source": "7898", "target": "2684" }, { "key": "geid_144_11193", "source": "6537", "target": "2773" }, { "key": "geid_144_11194", "source": "8125", "target": "6339" }, { "key": "geid_144_11195", "source": "1957", "target": "4143" }, { "key": "geid_144_11196", "source": "4341", "target": "9041" }, { "key": "geid_144_11197", "source": "8968", "target": "9721" }, { "key": "geid_144_11198", "source": "8247", "target": "2699" }, { "key": "geid_144_11199", "source": "1494", "target": "8573" }, { "key": "geid_144_11200", "source": "897", "target": "3992" }, { "key": "geid_144_11201", "source": "5809", "target": "1693" }, { "key": "geid_144_11202", "source": "7678", "target": "2173" }, { "key": "geid_144_11203", "source": "3614", "target": "4140" }, { "key": "geid_144_11204", "source": "6532", "target": "8739" }, { "key": "geid_144_11205", "source": "5989", "target": "3188" }, { "key": "geid_144_11206", "source": "9280", "target": "6049" }, { "key": "geid_144_11207", "source": "3488", "target": "1473" }, { "key": "geid_144_11208", "source": "5689", "target": "6294" }, { "key": "geid_144_11209", "source": "4776", "target": "3825" }, { "key": "geid_144_11210", "source": "5022", "target": "5936" }, { "key": "geid_144_11211", "source": "1745", "target": "6431" }, { "key": "geid_144_11212", "source": "4570", "target": "7434" }, { "key": "geid_144_11213", "source": "8842", "target": "3064" }, { "key": "geid_144_11214", "source": "7221", "target": "9983" }, { "key": "geid_144_11215", "source": "6255", "target": "6551" }, { "key": "geid_144_11216", "source": "3742", "target": "7319" }, { "key": "geid_144_11217", "source": "3642", "target": "741" }, { "key": "geid_144_11218", "source": "3299", "target": "2341" }, { "key": "geid_144_11219", "source": "4389", "target": "815" }, { "key": "geid_144_11220", "source": "4784", "target": "5232" }, { "key": "geid_144_11221", "source": "7227", "target": "2752" }, { "key": "geid_144_11222", "source": "5550", "target": "1280" }, { "key": "geid_144_11223", "source": "9119", "target": "7638" }, { "key": "geid_144_11224", "source": "4859", "target": "2628" }, { "key": "geid_144_11225", "source": "2746", "target": "2695" }, { "key": "geid_144_11226", "source": "2194", "target": "3214" }, { "key": "geid_144_11227", "source": "2975", "target": "4788" }, { "key": "geid_144_11228", "source": "4620", "target": "8767" }, { "key": "geid_144_11229", "source": "81", "target": "1296" }, { "key": "geid_144_11230", "source": "860", "target": "6161" }, { "key": "geid_144_11231", "source": "2981", "target": "3742" }, { "key": "geid_144_11232", "source": "2773", "target": "9754" }, { "key": "geid_144_11233", "source": "3223", "target": "8743" }, { "key": "geid_144_11234", "source": "4283", "target": "3435" }, { "key": "geid_144_11235", "source": "1848", "target": "4814" }, { "key": "geid_144_11236", "source": "7968", "target": "9158" }, { "key": "geid_144_11237", "source": "5801", "target": "2597" }, { "key": "geid_144_11238", "source": "5074", "target": "630" }, { "key": "geid_144_11239", "source": "7254", "target": "4609" }, { "key": "geid_144_11240", "source": "8884", "target": "9874" }, { "key": "geid_144_11241", "source": "7338", "target": "412" }, { "key": "geid_144_11242", "source": "3911", "target": "7781" }, { "key": "geid_144_11243", "source": "7139", "target": "576" }, { "key": "geid_144_11244", "source": "9800", "target": "5944" }, { "key": "geid_144_11245", "source": "5585", "target": "5463" }, { "key": "geid_144_11246", "source": "2769", "target": "6675" }, { "key": "geid_144_11247", "source": "7179", "target": "7502" }, { "key": "geid_144_11248", "source": "2204", "target": "4780" }, { "key": "geid_144_11249", "source": "3701", "target": "7522" }, { "key": "geid_144_11250", "source": "1353", "target": "6893" }, { "key": "geid_144_11251", "source": "5367", "target": "6531" }, { "key": "geid_144_11252", "source": "4251", "target": "7109" }, { "key": "geid_144_11253", "source": "8899", "target": "983" }, { "key": "geid_144_11254", "source": "2360", "target": "5647" }, { "key": "geid_144_11255", "source": "5849", "target": "8673" }, { "key": "geid_144_11256", "source": "7356", "target": "5753" }, { "key": "geid_144_11257", "source": "968", "target": "2762" }, { "key": "geid_144_11258", "source": "220", "target": "5947" }, { "key": "geid_144_11259", "source": "848", "target": "987" }, { "key": "geid_144_11260", "source": "2878", "target": "296" }, { "key": "geid_144_11261", "source": "7176", "target": "6706" }, { "key": "geid_144_11262", "source": "4289", "target": "2193" }, { "key": "geid_144_11263", "source": "9356", "target": "3800" }, { "key": "geid_144_11264", "source": "702", "target": "7396" }, { "key": "geid_144_11265", "source": "8839", "target": "9602" }, { "key": "geid_144_11266", "source": "2910", "target": "6337" }, { "key": "geid_144_11267", "source": "1599", "target": "6479" }, { "key": "geid_144_11268", "source": "7062", "target": "8926" }, { "key": "geid_144_11269", "source": "4608", "target": "1764" }, { "key": "geid_144_11270", "source": "697", "target": "946" }, { "key": "geid_144_11271", "source": "1729", "target": "9317" }, { "key": "geid_144_11272", "source": "5025", "target": "149" }, { "key": "geid_144_11273", "source": "536", "target": "6889" }, { "key": "geid_144_11274", "source": "9447", "target": "9307" }, { "key": "geid_144_11275", "source": "242", "target": "1529" }, { "key": "geid_144_11276", "source": "7667", "target": "5033" }, { "key": "geid_144_11277", "source": "5976", "target": "4515" }, { "key": "geid_144_11278", "source": "4227", "target": "7496" }, { "key": "geid_144_11279", "source": "9786", "target": "3333" }, { "key": "geid_144_11280", "source": "3732", "target": "2596" }, { "key": "geid_144_11281", "source": "9411", "target": "9130" }, { "key": "geid_144_11282", "source": "3001", "target": "7575" }, { "key": "geid_144_11283", "source": "9678", "target": "4426" }, { "key": "geid_144_11284", "source": "5901", "target": "5772" }, { "key": "geid_144_11285", "source": "9230", "target": "9985" }, { "key": "geid_144_11286", "source": "5671", "target": "4872" }, { "key": "geid_144_11287", "source": "1416", "target": "1722" }, { "key": "geid_144_11288", "source": "7384", "target": "7954" }, { "key": "geid_144_11289", "source": "2236", "target": "2019" }, { "key": "geid_144_11290", "source": "7044", "target": "5049" }, { "key": "geid_144_11291", "source": "2165", "target": "7930" }, { "key": "geid_144_11292", "source": "626", "target": "8032" }, { "key": "geid_144_11293", "source": "3037", "target": "8258" }, { "key": "geid_144_11294", "source": "8167", "target": "4432" }, { "key": "geid_144_11295", "source": "5280", "target": "5894" }, { "key": "geid_144_11296", "source": "7936", "target": "5281" }, { "key": "geid_144_11297", "source": "3388", "target": "8588" }, { "key": "geid_144_11298", "source": "1524", "target": "4679" }, { "key": "geid_144_11299", "source": "7653", "target": "5392" }, { "key": "geid_144_11300", "source": "8650", "target": "4008" }, { "key": "geid_144_11301", "source": "4032", "target": "6420" }, { "key": "geid_144_11302", "source": "5496", "target": "8500" }, { "key": "geid_144_11303", "source": "4353", "target": "5613" }, { "key": "geid_144_11304", "source": "7380", "target": "3309" }, { "key": "geid_144_11305", "source": "6896", "target": "4616" }, { "key": "geid_144_11306", "source": "308", "target": "6932" }, { "key": "geid_144_11307", "source": "4724", "target": "9179" }, { "key": "geid_144_11308", "source": "8879", "target": "3650" }, { "key": "geid_144_11309", "source": "3767", "target": "9439" }, { "key": "geid_144_11310", "source": "627", "target": "5591" }, { "key": "geid_144_11311", "source": "4914", "target": "1746" }, { "key": "geid_144_11312", "source": "174", "target": "8009" }, { "key": "geid_144_11313", "source": "385", "target": "671" }, { "key": "geid_144_11314", "source": "2558", "target": "3552" }, { "key": "geid_144_11315", "source": "2535", "target": "4672" }, { "key": "geid_144_11316", "source": "9864", "target": "5685" }, { "key": "geid_144_11317", "source": "4443", "target": "2712" }, { "key": "geid_144_11318", "source": "8750", "target": "9497" }, { "key": "geid_144_11319", "source": "4497", "target": "7342" }, { "key": "geid_144_11320", "source": "2357", "target": "3373" }, { "key": "geid_144_11321", "source": "2185", "target": "7626" }, { "key": "geid_144_11322", "source": "9479", "target": "8902" }, { "key": "geid_144_11323", "source": "1862", "target": "9488" }, { "key": "geid_144_11324", "source": "3783", "target": "476" }, { "key": "geid_144_11325", "source": "7769", "target": "4774" }, { "key": "geid_144_11326", "source": "4865", "target": "1151" }, { "key": "geid_144_11327", "source": "8539", "target": "830" }, { "key": "geid_144_11328", "source": "9010", "target": "9224" }, { "key": "geid_144_11329", "source": "4355", "target": "7285" }, { "key": "geid_144_11330", "source": "4095", "target": "3742" }, { "key": "geid_144_11331", "source": "8884", "target": "2366" }, { "key": "geid_144_11332", "source": "3193", "target": "992" }, { "key": "geid_144_11333", "source": "5403", "target": "9032" }, { "key": "geid_144_11334", "source": "4954", "target": "227" }, { "key": "geid_144_11335", "source": "3538", "target": "9138" }, { "key": "geid_144_11336", "source": "2498", "target": "5155" }, { "key": "geid_144_11337", "source": "6672", "target": "2194" }, { "key": "geid_144_11338", "source": "1189", "target": "2542" }, { "key": "geid_144_11339", "source": "4996", "target": "5080" }, { "key": "geid_144_11340", "source": "5592", "target": "4805" }, { "key": "geid_144_11341", "source": "9537", "target": "184" }, { "key": "geid_144_11342", "source": "4866", "target": "5101" }, { "key": "geid_144_11343", "source": "9918", "target": "5745" }, { "key": "geid_144_11344", "source": "3272", "target": "2773" }, { "key": "geid_144_11345", "source": "949", "target": "1329" }, { "key": "geid_144_11346", "source": "9531", "target": "2725" }, { "key": "geid_144_11347", "source": "5035", "target": "4753" }, { "key": "geid_144_11348", "source": "7616", "target": "5192" }, { "key": "geid_144_11349", "source": "8102", "target": "460" }, { "key": "geid_144_11350", "source": "3990", "target": "633" }, { "key": "geid_144_11351", "source": "4521", "target": "4542" }, { "key": "geid_144_11352", "source": "9704", "target": "7337" }, { "key": "geid_144_11353", "source": "5335", "target": "4094" }, { "key": "geid_144_11354", "source": "8405", "target": "7791" }, { "key": "geid_144_11355", "source": "1530", "target": "1053" }, { "key": "geid_144_11356", "source": "2974", "target": "3042" }, { "key": "geid_144_11357", "source": "7270", "target": "6119" }, { "key": "geid_144_11358", "source": "277", "target": "2666" }, { "key": "geid_144_11359", "source": "984", "target": "7309" }, { "key": "geid_144_11360", "source": "6211", "target": "8778" }, { "key": "geid_144_11361", "source": "961", "target": "8001" }, { "key": "geid_144_11362", "source": "3941", "target": "9910" }, { "key": "geid_144_11363", "source": "4197", "target": "7082" }, { "key": "geid_144_11364", "source": "5028", "target": "1158" }, { "key": "geid_144_11365", "source": "7151", "target": "275" }, { "key": "geid_144_11366", "source": "9068", "target": "6823" }, { "key": "geid_144_11367", "source": "3445", "target": "6826" }, { "key": "geid_144_11368", "source": "2507", "target": "4440" }, { "key": "geid_144_11369", "source": "2017", "target": "253" }, { "key": "geid_144_11370", "source": "1152", "target": "2106" }, { "key": "geid_144_11371", "source": "7244", "target": "8480" }, { "key": "geid_144_11372", "source": "128", "target": "4947" }, { "key": "geid_144_11373", "source": "9697", "target": "6478" }, { "key": "geid_144_11374", "source": "1895", "target": "4088" }, { "key": "geid_144_11375", "source": "5791", "target": "6081" }, { "key": "geid_144_11376", "source": "7417", "target": "7969" }, { "key": "geid_144_11377", "source": "104", "target": "6862" }, { "key": "geid_144_11378", "source": "8944", "target": "4021" }, { "key": "geid_144_11379", "source": "6922", "target": "5774" }, { "key": "geid_144_11380", "source": "554", "target": "3650" }, { "key": "geid_144_11381", "source": "8838", "target": "3775" }, { "key": "geid_144_11382", "source": "4322", "target": "5342" }, { "key": "geid_144_11383", "source": "5453", "target": "6437" }, { "key": "geid_144_11384", "source": "7433", "target": "5168" }, { "key": "geid_144_11385", "source": "7136", "target": "7765" }, { "key": "geid_144_11386", "source": "4806", "target": "4818" }, { "key": "geid_144_11387", "source": "8373", "target": "298" }, { "key": "geid_144_11388", "source": "8056", "target": "3328" }, { "key": "geid_144_11389", "source": "2910", "target": "2631" }, { "key": "geid_144_11390", "source": "4999", "target": "8867" }, { "key": "geid_144_11391", "source": "4416", "target": "7116" }, { "key": "geid_144_11392", "source": "4942", "target": "2651" }, { "key": "geid_144_11393", "source": "7601", "target": "1499" }, { "key": "geid_144_11394", "source": "3493", "target": "2654" }, { "key": "geid_144_11395", "source": "2019", "target": "9421" }, { "key": "geid_144_11396", "source": "6979", "target": "1917" }, { "key": "geid_144_11397", "source": "6819", "target": "9063" }, { "key": "geid_144_11398", "source": "9256", "target": "4947" }, { "key": "geid_144_11399", "source": "5482", "target": "6251" }, { "key": "geid_144_11400", "source": "4314", "target": "8844" }, { "key": "geid_144_11401", "source": "6955", "target": "1194" }, { "key": "geid_144_11402", "source": "5529", "target": "2356" }, { "key": "geid_144_11403", "source": "9019", "target": "2402" }, { "key": "geid_144_11404", "source": "4072", "target": "6415" }, { "key": "geid_144_11405", "source": "1372", "target": "6264" }, { "key": "geid_144_11406", "source": "4397", "target": "3485" }, { "key": "geid_144_11407", "source": "6546", "target": "8917" }, { "key": "geid_144_11408", "source": "7019", "target": "7419" }, { "key": "geid_144_11409", "source": "8838", "target": "88" }, { "key": "geid_144_11410", "source": "6732", "target": "5064" }, { "key": "geid_144_11411", "source": "630", "target": "6347" }, { "key": "geid_144_11412", "source": "5341", "target": "8362" }, { "key": "geid_144_11413", "source": "3470", "target": "1483" }, { "key": "geid_144_11414", "source": "9459", "target": "3079" }, { "key": "geid_144_11415", "source": "7892", "target": "1312" }, { "key": "geid_144_11416", "source": "7571", "target": "4335" }, { "key": "geid_144_11417", "source": "8618", "target": "7067" }, { "key": "geid_144_11418", "source": "1391", "target": "1410" }, { "key": "geid_144_11419", "source": "8108", "target": "5509" }, { "key": "geid_144_11420", "source": "844", "target": "3001" }, { "key": "geid_144_11421", "source": "1171", "target": "8001" }, { "key": "geid_144_11422", "source": "2440", "target": "2593" }, { "key": "geid_144_11423", "source": "3217", "target": "4634" }, { "key": "geid_144_11424", "source": "6391", "target": "5422" }, { "key": "geid_144_11425", "source": "7898", "target": "9880" }, { "key": "geid_144_11426", "source": "7498", "target": "6134" }, { "key": "geid_144_11427", "source": "9314", "target": "8134" }, { "key": "geid_144_11428", "source": "3944", "target": "4286" }, { "key": "geid_144_11429", "source": "4042", "target": "9652" }, { "key": "geid_144_11430", "source": "4652", "target": "2082" }, { "key": "geid_144_11431", "source": "4532", "target": "30" }, { "key": "geid_144_11432", "source": "4888", "target": "2428" }, { "key": "geid_144_11433", "source": "593", "target": "7399" }, { "key": "geid_144_11434", "source": "9450", "target": "6944" }, { "key": "geid_144_11435", "source": "2288", "target": "9081" }, { "key": "geid_144_11436", "source": "3199", "target": "894" }, { "key": "geid_144_11437", "source": "1121", "target": "4857" }, { "key": "geid_144_11438", "source": "3844", "target": "4906" }, { "key": "geid_144_11439", "source": "3184", "target": "6381" }, { "key": "geid_144_11440", "source": "9084", "target": "1041" }, { "key": "geid_144_11441", "source": "4120", "target": "8916" }, { "key": "geid_144_11442", "source": "1852", "target": "5685" }, { "key": "geid_144_11443", "source": "2331", "target": "5749" }, { "key": "geid_144_11444", "source": "6795", "target": "1765" }, { "key": "geid_144_11445", "source": "4266", "target": "5692" }, { "key": "geid_144_11446", "source": "6836", "target": "8364" }, { "key": "geid_144_11447", "source": "2499", "target": "4749" }, { "key": "geid_144_11448", "source": "4555", "target": "8742" }, { "key": "geid_144_11449", "source": "3015", "target": "5987" }, { "key": "geid_144_11450", "source": "3825", "target": "5961" }, { "key": "geid_144_11451", "source": "6658", "target": "2839" }, { "key": "geid_144_11452", "source": "6792", "target": "2658" }, { "key": "geid_144_11453", "source": "5393", "target": "525" }, { "key": "geid_144_11454", "source": "1158", "target": "9960" }, { "key": "geid_144_11455", "source": "6024", "target": "4792" }, { "key": "geid_144_11456", "source": "8973", "target": "8199" }, { "key": "geid_144_11457", "source": "8888", "target": "9255" }, { "key": "geid_144_11458", "source": "859", "target": "1553" }, { "key": "geid_144_11459", "source": "4850", "target": "3530" }, { "key": "geid_144_11460", "source": "870", "target": "5930" }, { "key": "geid_144_11461", "source": "6234", "target": "5663" }, { "key": "geid_144_11462", "source": "7723", "target": "4257" }, { "key": "geid_144_11463", "source": "910", "target": "7133" }, { "key": "geid_144_11464", "source": "6854", "target": "694" }, { "key": "geid_144_11465", "source": "1714", "target": "6523" }, { "key": "geid_144_11466", "source": "2493", "target": "9688" }, { "key": "geid_144_11467", "source": "7614", "target": "1493" }, { "key": "geid_144_11468", "source": "8143", "target": "4563" }, { "key": "geid_144_11469", "source": "4043", "target": "9075" }, { "key": "geid_144_11470", "source": "2600", "target": "2238" }, { "key": "geid_144_11471", "source": "6260", "target": "1567" }, { "key": "geid_144_11472", "source": "5002", "target": "5167" }, { "key": "geid_144_11473", "source": "2611", "target": "784" }, { "key": "geid_144_11474", "source": "2609", "target": "9024" }, { "key": "geid_144_11475", "source": "7116", "target": "2423" }, { "key": "geid_144_11476", "source": "5458", "target": "3643" }, { "key": "geid_144_11477", "source": "4739", "target": "244" }, { "key": "geid_144_11478", "source": "5254", "target": "6875" }, { "key": "geid_144_11479", "source": "7262", "target": "9045" }, { "key": "geid_144_11480", "source": "2869", "target": "808" }, { "key": "geid_144_11481", "source": "5049", "target": "4203" }, { "key": "geid_144_11482", "source": "8413", "target": "7730" }, { "key": "geid_144_11483", "source": "8287", "target": "3337" }, { "key": "geid_144_11484", "source": "418", "target": "9473" }, { "key": "geid_144_11485", "source": "2585", "target": "4743" }, { "key": "geid_144_11486", "source": "9217", "target": "7851" }, { "key": "geid_144_11487", "source": "6607", "target": "3853" }, { "key": "geid_144_11488", "source": "4496", "target": "9705" }, { "key": "geid_144_11489", "source": "4514", "target": "5568" }, { "key": "geid_144_11490", "source": "8979", "target": "6213" }, { "key": "geid_144_11491", "source": "3975", "target": "4120" }, { "key": "geid_144_11492", "source": "3308", "target": "9176" }, { "key": "geid_144_11493", "source": "9917", "target": "3646" }, { "key": "geid_144_11494", "source": "8728", "target": "2497" }, { "key": "geid_144_11495", "source": "9512", "target": "9438" }, { "key": "geid_144_11496", "source": "8053", "target": "3228" }, { "key": "geid_144_11497", "source": "4597", "target": "3662" }, { "key": "geid_144_11498", "source": "9182", "target": "9929" }, { "key": "geid_144_11499", "source": "8794", "target": "9959" }, { "key": "geid_144_11500", "source": "8946", "target": "6256" }, { "key": "geid_144_11501", "source": "5465", "target": "2727" }, { "key": "geid_144_11502", "source": "7736", "target": "2034" }, { "key": "geid_144_11503", "source": "7316", "target": "4023" }, { "key": "geid_144_11504", "source": "3946", "target": "8884" }, { "key": "geid_144_11505", "source": "7248", "target": "1914" }, { "key": "geid_144_11506", "source": "6066", "target": "2544" }, { "key": "geid_144_11507", "source": "3618", "target": "1090" }, { "key": "geid_144_11508", "source": "2907", "target": "4248" }, { "key": "geid_144_11509", "source": "5659", "target": "1375" }, { "key": "geid_144_11510", "source": "7433", "target": "3904" }, { "key": "geid_144_11511", "source": "6067", "target": "5005" }, { "key": "geid_144_11512", "source": "78", "target": "4095" }, { "key": "geid_144_11513", "source": "1494", "target": "3933" }, { "key": "geid_144_11514", "source": "9399", "target": "2383" }, { "key": "geid_144_11515", "source": "4591", "target": "1247" }, { "key": "geid_144_11516", "source": "8050", "target": "5959" }, { "key": "geid_144_11517", "source": "3431", "target": "6721" }, { "key": "geid_144_11518", "source": "499", "target": "6358" }, { "key": "geid_144_11519", "source": "4868", "target": "2470" }, { "key": "geid_144_11520", "source": "3520", "target": "9935" }, { "key": "geid_144_11521", "source": "6424", "target": "3574" }, { "key": "geid_144_11522", "source": "5479", "target": "1014" }, { "key": "geid_144_11523", "source": "981", "target": "9863" }, { "key": "geid_144_11524", "source": "7919", "target": "730" }, { "key": "geid_144_11525", "source": "5963", "target": "6866" }, { "key": "geid_144_11526", "source": "8953", "target": "9286" }, { "key": "geid_144_11527", "source": "6633", "target": "1073" }, { "key": "geid_144_11528", "source": "5810", "target": "6149" }, { "key": "geid_144_11529", "source": "5843", "target": "7824" }, { "key": "geid_144_11530", "source": "1153", "target": "6259" }, { "key": "geid_144_11531", "source": "1264", "target": "1534" }, { "key": "geid_144_11532", "source": "1666", "target": "7944" }, { "key": "geid_144_11533", "source": "9411", "target": "5697" }, { "key": "geid_144_11534", "source": "5033", "target": "3740" }, { "key": "geid_144_11535", "source": "1675", "target": "2438" }, { "key": "geid_144_11536", "source": "7855", "target": "5122" }, { "key": "geid_144_11537", "source": "2664", "target": "2571" }, { "key": "geid_144_11538", "source": "8821", "target": "530" }, { "key": "geid_144_11539", "source": "4250", "target": "3332" }, { "key": "geid_144_11540", "source": "7298", "target": "7085" }, { "key": "geid_144_11541", "source": "3555", "target": "2571" }, { "key": "geid_144_11542", "source": "8086", "target": "6939" }, { "key": "geid_144_11543", "source": "1823", "target": "3992" }, { "key": "geid_144_11544", "source": "54", "target": "6323" }, { "key": "geid_144_11545", "source": "342", "target": "7456" }, { "key": "geid_144_11546", "source": "1651", "target": "7379" }, { "key": "geid_144_11547", "source": "7755", "target": "7974" }, { "key": "geid_144_11548", "source": "8741", "target": "2650" }, { "key": "geid_144_11549", "source": "6114", "target": "4749" }, { "key": "geid_144_11550", "source": "274", "target": "7110" }, { "key": "geid_144_11551", "source": "8105", "target": "8624" }, { "key": "geid_144_11552", "source": "9825", "target": "9163" }, { "key": "geid_144_11553", "source": "4945", "target": "570" }, { "key": "geid_144_11554", "source": "891", "target": "3815" }, { "key": "geid_144_11555", "source": "7269", "target": "8685" }, { "key": "geid_144_11556", "source": "5964", "target": "2159" }, { "key": "geid_144_11557", "source": "6296", "target": "2553" }, { "key": "geid_144_11558", "source": "350", "target": "6632" }, { "key": "geid_144_11559", "source": "3671", "target": "3986" }, { "key": "geid_144_11560", "source": "4097", "target": "6180" }, { "key": "geid_144_11561", "source": "933", "target": "8051" }, { "key": "geid_144_11562", "source": "9427", "target": "1926" }, { "key": "geid_144_11563", "source": "5462", "target": "1948" }, { "key": "geid_144_11564", "source": "5211", "target": "354" }, { "key": "geid_144_11565", "source": "5099", "target": "6307" }, { "key": "geid_144_11566", "source": "9697", "target": "5091" }, { "key": "geid_144_11567", "source": "9398", "target": "8880" }, { "key": "geid_144_11568", "source": "5621", "target": "2867" }, { "key": "geid_144_11569", "source": "1749", "target": "7931" }, { "key": "geid_144_11570", "source": "6210", "target": "4208" }, { "key": "geid_144_11571", "source": "3607", "target": "6985" }, { "key": "geid_144_11572", "source": "4122", "target": "3709" }, { "key": "geid_144_11573", "source": "2348", "target": "8609" }, { "key": "geid_144_11574", "source": "704", "target": "7561" }, { "key": "geid_144_11575", "source": "3082", "target": "741" }, { "key": "geid_144_11576", "source": "4470", "target": "9494" }, { "key": "geid_144_11577", "source": "8052", "target": "5024" }, { "key": "geid_144_11578", "source": "4077", "target": "1693" }, { "key": "geid_144_11579", "source": "8044", "target": "7611" }, { "key": "geid_144_11580", "source": "4435", "target": "3766" }, { "key": "geid_144_11581", "source": "6717", "target": "6259" }, { "key": "geid_144_11582", "source": "231", "target": "655" }, { "key": "geid_144_11583", "source": "4867", "target": "6367" }, { "key": "geid_144_11584", "source": "1751", "target": "7276" }, { "key": "geid_144_11585", "source": "9840", "target": "4471" }, { "key": "geid_144_11586", "source": "1664", "target": "4209" }, { "key": "geid_144_11587", "source": "5661", "target": "2588" }, { "key": "geid_144_11588", "source": "5932", "target": "9545" }, { "key": "geid_144_11589", "source": "958", "target": "7321" }, { "key": "geid_144_11590", "source": "6453", "target": "2147" }, { "key": "geid_144_11591", "source": "8950", "target": "4721" }, { "key": "geid_144_11592", "source": "4468", "target": "6958" }, { "key": "geid_144_11593", "source": "7654", "target": "8469" }, { "key": "geid_144_11594", "source": "5004", "target": "9512" }, { "key": "geid_144_11595", "source": "6039", "target": "8642" }, { "key": "geid_144_11596", "source": "1853", "target": "1310" }, { "key": "geid_144_11597", "source": "3615", "target": "6952" }, { "key": "geid_144_11598", "source": "7032", "target": "7774" }, { "key": "geid_144_11599", "source": "6126", "target": "156" }, { "key": "geid_144_11600", "source": "5267", "target": "1661" }, { "key": "geid_144_11601", "source": "8174", "target": "7449" }, { "key": "geid_144_11602", "source": "3203", "target": "1798" }, { "key": "geid_144_11603", "source": "150", "target": "8938" }, { "key": "geid_144_11604", "source": "6625", "target": "6136" }, { "key": "geid_144_11605", "source": "9004", "target": "3840" }, { "key": "geid_144_11606", "source": "8668", "target": "9413" }, { "key": "geid_144_11607", "source": "8989", "target": "7571" }, { "key": "geid_144_11608", "source": "6293", "target": "3972" }, { "key": "geid_144_11609", "source": "1238", "target": "2461" }, { "key": "geid_144_11610", "source": "6179", "target": "349" }, { "key": "geid_144_11611", "source": "963", "target": "8484" }, { "key": "geid_144_11612", "source": "8858", "target": "3556" }, { "key": "geid_144_11613", "source": "6178", "target": "9291" }, { "key": "geid_144_11614", "source": "1038", "target": "4222" }, { "key": "geid_144_11615", "source": "7618", "target": "8433" }, { "key": "geid_144_11616", "source": "784", "target": "310" }, { "key": "geid_144_11617", "source": "190", "target": "8768" }, { "key": "geid_144_11618", "source": "9259", "target": "3553" }, { "key": "geid_144_11619", "source": "4318", "target": "1313" }, { "key": "geid_144_11620", "source": "4885", "target": "619" }, { "key": "geid_144_11621", "source": "6409", "target": "6368" }, { "key": "geid_144_11622", "source": "8588", "target": "5989" }, { "key": "geid_144_11623", "source": "6307", "target": "5781" }, { "key": "geid_144_11624", "source": "604", "target": "5823" }, { "key": "geid_144_11625", "source": "4997", "target": "7425" }, { "key": "geid_144_11626", "source": "4382", "target": "9767" }, { "key": "geid_144_11627", "source": "7217", "target": "7539" }, { "key": "geid_144_11628", "source": "6155", "target": "550" }, { "key": "geid_144_11629", "source": "2716", "target": "3500" }, { "key": "geid_144_11630", "source": "6227", "target": "8925" }, { "key": "geid_144_11631", "source": "1852", "target": "9878" }, { "key": "geid_144_11632", "source": "7937", "target": "9472" }, { "key": "geid_144_11633", "source": "323", "target": "2591" }, { "key": "geid_144_11634", "source": "8414", "target": "8830" }, { "key": "geid_144_11635", "source": "1958", "target": "4009" }, { "key": "geid_144_11636", "source": "2027", "target": "5915" }, { "key": "geid_144_11637", "source": "375", "target": "2763" }, { "key": "geid_144_11638", "source": "9686", "target": "6063" }, { "key": "geid_144_11639", "source": "9531", "target": "4836" }, { "key": "geid_144_11640", "source": "8930", "target": "8153" }, { "key": "geid_144_11641", "source": "8904", "target": "2617" }, { "key": "geid_144_11642", "source": "220", "target": "5826" }, { "key": "geid_144_11643", "source": "5521", "target": "843" }, { "key": "geid_144_11644", "source": "6612", "target": "3997" }, { "key": "geid_144_11645", "source": "8784", "target": "4588" }, { "key": "geid_144_11646", "source": "1075", "target": "4984" }, { "key": "geid_144_11647", "source": "7497", "target": "2688" }, { "key": "geid_144_11648", "source": "7969", "target": "5376" }, { "key": "geid_144_11649", "source": "9920", "target": "1876" }, { "key": "geid_144_11650", "source": "9855", "target": "3310" }, { "key": "geid_144_11651", "source": "3581", "target": "3784" }, { "key": "geid_144_11652", "source": "3066", "target": "8663" }, { "key": "geid_144_11653", "source": "6529", "target": "7991" }, { "key": "geid_144_11654", "source": "4982", "target": "5932" }, { "key": "geid_144_11655", "source": "937", "target": "1069" }, { "key": "geid_144_11656", "source": "7617", "target": "4280" }, { "key": "geid_144_11657", "source": "1935", "target": "6687" }, { "key": "geid_144_11658", "source": "4526", "target": "2215" }, { "key": "geid_144_11659", "source": "2183", "target": "7692" }, { "key": "geid_144_11660", "source": "8186", "target": "2233" }, { "key": "geid_144_11661", "source": "6716", "target": "7471" }, { "key": "geid_144_11662", "source": "4000", "target": "9720" }, { "key": "geid_144_11663", "source": "6194", "target": "6442" }, { "key": "geid_144_11664", "source": "1035", "target": "3974" }, { "key": "geid_144_11665", "source": "5876", "target": "3671" }, { "key": "geid_144_11666", "source": "8965", "target": "4555" }, { "key": "geid_144_11667", "source": "3414", "target": "2281" }, { "key": "geid_144_11668", "source": "635", "target": "813" }, { "key": "geid_144_11669", "source": "8610", "target": "2248" }, { "key": "geid_144_11670", "source": "1157", "target": "9121" }, { "key": "geid_144_11671", "source": "7400", "target": "4659" }, { "key": "geid_144_11672", "source": "6240", "target": "9629" }, { "key": "geid_144_11673", "source": "4331", "target": "148" }, { "key": "geid_144_11674", "source": "7972", "target": "1655" }, { "key": "geid_144_11675", "source": "8496", "target": "9921" }, { "key": "geid_144_11676", "source": "5365", "target": "939" }, { "key": "geid_144_11677", "source": "1363", "target": "4796" }, { "key": "geid_144_11678", "source": "2219", "target": "6658" }, { "key": "geid_144_11679", "source": "7240", "target": "5608" }, { "key": "geid_144_11680", "source": "4771", "target": "9774" }, { "key": "geid_144_11681", "source": "9824", "target": "6330" }, { "key": "geid_144_11682", "source": "8015", "target": "5344" }, { "key": "geid_144_11683", "source": "447", "target": "2042" }, { "key": "geid_144_11684", "source": "688", "target": "3957" }, { "key": "geid_144_11685", "source": "4337", "target": "9512" }, { "key": "geid_144_11686", "source": "5213", "target": "2150" }, { "key": "geid_144_11687", "source": "8849", "target": "2933" }, { "key": "geid_144_11688", "source": "1210", "target": "1398" }, { "key": "geid_144_11689", "source": "8460", "target": "2114" }, { "key": "geid_144_11690", "source": "8016", "target": "2118" }, { "key": "geid_144_11691", "source": "9567", "target": "1929" }, { "key": "geid_144_11692", "source": "4635", "target": "2733" }, { "key": "geid_144_11693", "source": "5279", "target": "2033" }, { "key": "geid_144_11694", "source": "2335", "target": "2318" }, { "key": "geid_144_11695", "source": "4695", "target": "3848" }, { "key": "geid_144_11696", "source": "3952", "target": "5855" }, { "key": "geid_144_11697", "source": "727", "target": "3360" }, { "key": "geid_144_11698", "source": "4357", "target": "3346" }, { "key": "geid_144_11699", "source": "8304", "target": "3017" }, { "key": "geid_144_11700", "source": "6275", "target": "2053" }, { "key": "geid_144_11701", "source": "4037", "target": "8128" }, { "key": "geid_144_11702", "source": "6536", "target": "7300" }, { "key": "geid_144_11703", "source": "9431", "target": "4508" }, { "key": "geid_144_11704", "source": "9771", "target": "8247" }, { "key": "geid_144_11705", "source": "7942", "target": "5771" }, { "key": "geid_144_11706", "source": "9085", "target": "8953" }, { "key": "geid_144_11707", "source": "3410", "target": "1143" }, { "key": "geid_144_11708", "source": "3996", "target": "2762" }, { "key": "geid_144_11709", "source": "733", "target": "6435" }, { "key": "geid_144_11710", "source": "7454", "target": "742" }, { "key": "geid_144_11711", "source": "4431", "target": "5197" }, { "key": "geid_144_11712", "source": "7833", "target": "618" }, { "key": "geid_144_11713", "source": "6543", "target": "3369" }, { "key": "geid_144_11714", "source": "7343", "target": "3261" }, { "key": "geid_144_11715", "source": "3529", "target": "7" }, { "key": "geid_144_11716", "source": "3371", "target": "2944" }, { "key": "geid_144_11717", "source": "4336", "target": "6098" }, { "key": "geid_144_11718", "source": "6990", "target": "4916" }, { "key": "geid_144_11719", "source": "490", "target": "4420" }, { "key": "geid_144_11720", "source": "8991", "target": "8083" }, { "key": "geid_144_11721", "source": "9953", "target": "8588" }, { "key": "geid_144_11722", "source": "5530", "target": "9491" }, { "key": "geid_144_11723", "source": "3899", "target": "9764" }, { "key": "geid_144_11724", "source": "2286", "target": "6017" }, { "key": "geid_144_11725", "source": "511", "target": "215" }, { "key": "geid_144_11726", "source": "8976", "target": "9879" }, { "key": "geid_144_11727", "source": "5415", "target": "4874" }, { "key": "geid_144_11728", "source": "539", "target": "1598" }, { "key": "geid_144_11729", "source": "6011", "target": "2130" }, { "key": "geid_144_11730", "source": "7027", "target": "1240" }, { "key": "geid_144_11731", "source": "3236", "target": "70" }, { "key": "geid_144_11732", "source": "8317", "target": "7800" }, { "key": "geid_144_11733", "source": "3936", "target": "2003" }, { "key": "geid_144_11734", "source": "8214", "target": "3823" }, { "key": "geid_144_11735", "source": "8483", "target": "4506" }, { "key": "geid_144_11736", "source": "7019", "target": "846" }, { "key": "geid_144_11737", "source": "7467", "target": "6919" }, { "key": "geid_144_11738", "source": "332", "target": "6261" }, { "key": "geid_144_11739", "source": "2505", "target": "3642" }, { "key": "geid_144_11740", "source": "5280", "target": "7804" }, { "key": "geid_144_11741", "source": "3977", "target": "3993" }, { "key": "geid_144_11742", "source": "8903", "target": "3378" }, { "key": "geid_144_11743", "source": "6054", "target": "9296" }, { "key": "geid_144_11744", "source": "9742", "target": "3269" }, { "key": "geid_144_11745", "source": "6928", "target": "8403" }, { "key": "geid_144_11746", "source": "6047", "target": "6232" }, { "key": "geid_144_11747", "source": "1167", "target": "7208" }, { "key": "geid_144_11748", "source": "7953", "target": "4009" }, { "key": "geid_144_11749", "source": "7620", "target": "3952" }, { "key": "geid_144_11750", "source": "2145", "target": "4126" }, { "key": "geid_144_11751", "source": "3093", "target": "3694" }, { "key": "geid_144_11752", "source": "6827", "target": "803" }, { "key": "geid_144_11753", "source": "3404", "target": "6884" }, { "key": "geid_144_11754", "source": "9794", "target": "8775" }, { "key": "geid_144_11755", "source": "7031", "target": "6997" }, { "key": "geid_144_11756", "source": "7987", "target": "3030" }, { "key": "geid_144_11757", "source": "6432", "target": "251" }, { "key": "geid_144_11758", "source": "1596", "target": "3486" }, { "key": "geid_144_11759", "source": "6023", "target": "8728" }, { "key": "geid_144_11760", "source": "9600", "target": "2708" }, { "key": "geid_144_11761", "source": "4547", "target": "3165" }, { "key": "geid_144_11762", "source": "9022", "target": "8870" }, { "key": "geid_144_11763", "source": "1548", "target": "1376" }, { "key": "geid_144_11764", "source": "7944", "target": "7818" }, { "key": "geid_144_11765", "source": "321", "target": "767" }, { "key": "geid_144_11766", "source": "8720", "target": "8257" }, { "key": "geid_144_11767", "source": "9020", "target": "4613" }, { "key": "geid_144_11768", "source": "4271", "target": "1079" }, { "key": "geid_144_11769", "source": "6191", "target": "2471" }, { "key": "geid_144_11770", "source": "8416", "target": "3396" }, { "key": "geid_144_11771", "source": "551", "target": "8669" }, { "key": "geid_144_11772", "source": "1805", "target": "3868" }, { "key": "geid_144_11773", "source": "4443", "target": "8473" }, { "key": "geid_144_11774", "source": "9687", "target": "2013" }, { "key": "geid_144_11775", "source": "7242", "target": "4883" }, { "key": "geid_144_11776", "source": "7827", "target": "4186" }, { "key": "geid_144_11777", "source": "8250", "target": "8331" }, { "key": "geid_144_11778", "source": "4583", "target": "8731" }, { "key": "geid_144_11779", "source": "5009", "target": "9390" }, { "key": "geid_144_11780", "source": "2398", "target": "4675" }, { "key": "geid_144_11781", "source": "5389", "target": "9972" }, { "key": "geid_144_11782", "source": "6916", "target": "9699" }, { "key": "geid_144_11783", "source": "628", "target": "4697" }, { "key": "geid_144_11784", "source": "9153", "target": "4076" }, { "key": "geid_144_11785", "source": "2152", "target": "2624" }, { "key": "geid_144_11786", "source": "8170", "target": "2629" }, { "key": "geid_144_11787", "source": "2021", "target": "177" }, { "key": "geid_144_11788", "source": "4438", "target": "4773" }, { "key": "geid_144_11789", "source": "3234", "target": "2471" }, { "key": "geid_144_11790", "source": "9738", "target": "9334" }, { "key": "geid_144_11791", "source": "8680", "target": "7344" }, { "key": "geid_144_11792", "source": "410", "target": "4838" }, { "key": "geid_144_11793", "source": "3613", "target": "6037" }, { "key": "geid_144_11794", "source": "5100", "target": "7050" }, { "key": "geid_144_11795", "source": "3482", "target": "8816" }, { "key": "geid_144_11796", "source": "6225", "target": "1661" }, { "key": "geid_144_11797", "source": "2295", "target": "3383" }, { "key": "geid_144_11798", "source": "9198", "target": "2128" }, { "key": "geid_144_11799", "source": "542", "target": "3736" }, { "key": "geid_144_11800", "source": "6795", "target": "7690" }, { "key": "geid_144_11801", "source": "4386", "target": "9339" }, { "key": "geid_144_11802", "source": "4887", "target": "3911" }, { "key": "geid_144_11803", "source": "4184", "target": "154" }, { "key": "geid_144_11804", "source": "4854", "target": "9076" }, { "key": "geid_144_11805", "source": "6724", "target": "1019" }, { "key": "geid_144_11806", "source": "4391", "target": "7836" }, { "key": "geid_144_11807", "source": "3069", "target": "8656" }, { "key": "geid_144_11808", "source": "9050", "target": "2591" }, { "key": "geid_144_11809", "source": "9995", "target": "2030" }, { "key": "geid_144_11810", "source": "5528", "target": "7314" }, { "key": "geid_144_11811", "source": "5071", "target": "3718" }, { "key": "geid_144_11812", "source": "8844", "target": "4020" }, { "key": "geid_144_11813", "source": "584", "target": "9312" }, { "key": "geid_144_11814", "source": "3518", "target": "9687" }, { "key": "geid_144_11815", "source": "3559", "target": "8881" }, { "key": "geid_144_11816", "source": "4619", "target": "9545" }, { "key": "geid_144_11817", "source": "5808", "target": "3440" }, { "key": "geid_144_11818", "source": "3843", "target": "9288" }, { "key": "geid_144_11819", "source": "6422", "target": "3671" }, { "key": "geid_144_11820", "source": "5544", "target": "855" }, { "key": "geid_144_11821", "source": "4390", "target": "5787" }, { "key": "geid_144_11822", "source": "5186", "target": "2671" }, { "key": "geid_144_11823", "source": "3972", "target": "3330" }, { "key": "geid_144_11824", "source": "9282", "target": "5907" }, { "key": "geid_144_11825", "source": "6955", "target": "2771" }, { "key": "geid_144_11826", "source": "8684", "target": "7779" }, { "key": "geid_144_11827", "source": "8361", "target": "2836" }, { "key": "geid_144_11828", "source": "6189", "target": "7924" }, { "key": "geid_144_11829", "source": "9883", "target": "309" }, { "key": "geid_144_11830", "source": "2204", "target": "5027" }, { "key": "geid_144_11831", "source": "6086", "target": "6518" }, { "key": "geid_144_11832", "source": "6777", "target": "4649" }, { "key": "geid_144_11833", "source": "6149", "target": "5073" }, { "key": "geid_144_11834", "source": "6102", "target": "5396" }, { "key": "geid_144_11835", "source": "3435", "target": "5603" }, { "key": "geid_144_11836", "source": "7725", "target": "8027" }, { "key": "geid_144_11837", "source": "8139", "target": "8422" }, { "key": "geid_144_11838", "source": "3144", "target": "3076" }, { "key": "geid_144_11839", "source": "40", "target": "5925" }, { "key": "geid_144_11840", "source": "4176", "target": "611" }, { "key": "geid_144_11841", "source": "9936", "target": "2982" }, { "key": "geid_144_11842", "source": "2178", "target": "6693" }, { "key": "geid_144_11843", "source": "5360", "target": "7151" }, { "key": "geid_144_11844", "source": "61", "target": "9994" }, { "key": "geid_144_11845", "source": "9236", "target": "3094" }, { "key": "geid_144_11846", "source": "3044", "target": "8709" }, { "key": "geid_144_11847", "source": "4737", "target": "2878" }, { "key": "geid_144_11848", "source": "5884", "target": "9207" }, { "key": "geid_144_11849", "source": "7713", "target": "8438" }, { "key": "geid_144_11850", "source": "63", "target": "9633" }, { "key": "geid_144_11851", "source": "4605", "target": "3244" }, { "key": "geid_144_11852", "source": "5429", "target": "9035" }, { "key": "geid_144_11853", "source": "3047", "target": "1197" }, { "key": "geid_144_11854", "source": "7698", "target": "7692" }, { "key": "geid_144_11855", "source": "136", "target": "4895" }, { "key": "geid_144_11856", "source": "9485", "target": "7253" }, { "key": "geid_144_11857", "source": "577", "target": "6277" }, { "key": "geid_144_11858", "source": "2228", "target": "83" }, { "key": "geid_144_11859", "source": "435", "target": "4287" }, { "key": "geid_144_11860", "source": "3911", "target": "484" }, { "key": "geid_144_11861", "source": "2296", "target": "6398" }, { "key": "geid_144_11862", "source": "1952", "target": "4969" }, { "key": "geid_144_11863", "source": "752", "target": "4084" }, { "key": "geid_144_11864", "source": "7607", "target": "6022" }, { "key": "geid_144_11865", "source": "3016", "target": "4914" }, { "key": "geid_144_11866", "source": "3537", "target": "5235" }, { "key": "geid_144_11867", "source": "5198", "target": "3853" }, { "key": "geid_144_11868", "source": "4856", "target": "6182" }, { "key": "geid_144_11869", "source": "3084", "target": "2777" }, { "key": "geid_144_11870", "source": "6404", "target": "8593" }, { "key": "geid_144_11871", "source": "4342", "target": "9071" }, { "key": "geid_144_11872", "source": "9989", "target": "6445" }, { "key": "geid_144_11873", "source": "7812", "target": "8857" }, { "key": "geid_144_11874", "source": "9731", "target": "5599" }, { "key": "geid_144_11875", "source": "2653", "target": "9273" }, { "key": "geid_144_11876", "source": "4242", "target": "437" }, { "key": "geid_144_11877", "source": "3453", "target": "7216" }, { "key": "geid_144_11878", "source": "9218", "target": "904" }, { "key": "geid_144_11879", "source": "5157", "target": "6145" }, { "key": "geid_144_11880", "source": "229", "target": "7291" }, { "key": "geid_144_11881", "source": "5627", "target": "9812" }, { "key": "geid_144_11882", "source": "4267", "target": "2945" }, { "key": "geid_144_11883", "source": "570", "target": "1424" }, { "key": "geid_144_11884", "source": "3468", "target": "140" }, { "key": "geid_144_11885", "source": "2556", "target": "7610" }, { "key": "geid_144_11886", "source": "8435", "target": "1073" }, { "key": "geid_144_11887", "source": "8894", "target": "2608" }, { "key": "geid_144_11888", "source": "6096", "target": "4659" }, { "key": "geid_144_11889", "source": "2743", "target": "2127" }, { "key": "geid_144_11890", "source": "6040", "target": "7207" }, { "key": "geid_144_11891", "source": "2361", "target": "2465" }, { "key": "geid_144_11892", "source": "2219", "target": "5654" }, { "key": "geid_144_11893", "source": "5235", "target": "7292" }, { "key": "geid_144_11894", "source": "7525", "target": "8485" }, { "key": "geid_144_11895", "source": "9249", "target": "6766" }, { "key": "geid_144_11896", "source": "8342", "target": "5126" }, { "key": "geid_144_11897", "source": "7635", "target": "8912" }, { "key": "geid_144_11898", "source": "7283", "target": "4692" }, { "key": "geid_144_11899", "source": "1188", "target": "4866" }, { "key": "geid_144_11900", "source": "8884", "target": "1895" }, { "key": "geid_144_11901", "source": "908", "target": "3684" }, { "key": "geid_144_11902", "source": "5836", "target": "4566" }, { "key": "geid_144_11903", "source": "5689", "target": "6019" }, { "key": "geid_144_11904", "source": "2383", "target": "6788" }, { "key": "geid_144_11905", "source": "2839", "target": "6800" }, { "key": "geid_144_11906", "source": "5120", "target": "7694" }, { "key": "geid_144_11907", "source": "1169", "target": "1991" }, { "key": "geid_144_11908", "source": "5787", "target": "3499" }, { "key": "geid_144_11909", "source": "8639", "target": "7536" }, { "key": "geid_144_11910", "source": "6901", "target": "8701" }, { "key": "geid_144_11911", "source": "8097", "target": "1427" }, { "key": "geid_144_11912", "source": "1556", "target": "997" }, { "key": "geid_144_11913", "source": "6889", "target": "9966" }, { "key": "geid_144_11914", "source": "8769", "target": "1636" }, { "key": "geid_144_11915", "source": "5549", "target": "4343" }, { "key": "geid_144_11916", "source": "9090", "target": "1349" }, { "key": "geid_144_11917", "source": "1582", "target": "8989" }, { "key": "geid_144_11918", "source": "9197", "target": "8503" }, { "key": "geid_144_11919", "source": "575", "target": "819" }, { "key": "geid_144_11920", "source": "9710", "target": "5926" }, { "key": "geid_144_11921", "source": "4100", "target": "1558" }, { "key": "geid_144_11922", "source": "273", "target": "4277" }, { "key": "geid_144_11923", "source": "3970", "target": "2523" }, { "key": "geid_144_11924", "source": "4063", "target": "2686" }, { "key": "geid_144_11925", "source": "9472", "target": "9255" }, { "key": "geid_144_11926", "source": "7063", "target": "1208" }, { "key": "geid_144_11927", "source": "8807", "target": "1916" }, { "key": "geid_144_11928", "source": "2156", "target": "7827" }, { "key": "geid_144_11929", "source": "4361", "target": "4358" }, { "key": "geid_144_11930", "source": "6902", "target": "7894" }, { "key": "geid_144_11931", "source": "3846", "target": "9444" }, { "key": "geid_144_11932", "source": "1922", "target": "922" }, { "key": "geid_144_11933", "source": "3520", "target": "9424" }, { "key": "geid_144_11934", "source": "4195", "target": "4365" }, { "key": "geid_144_11935", "source": "7810", "target": "5125" }, { "key": "geid_144_11936", "source": "9635", "target": "5873" }, { "key": "geid_144_11937", "source": "7889", "target": "6943" }, { "key": "geid_144_11938", "source": "419", "target": "4232" }, { "key": "geid_144_11939", "source": "9100", "target": "2041" }, { "key": "geid_144_11940", "source": "4150", "target": "5260" }, { "key": "geid_144_11941", "source": "7668", "target": "8276" }, { "key": "geid_144_11942", "source": "4370", "target": "5696" }, { "key": "geid_144_11943", "source": "1042", "target": "1367" }, { "key": "geid_144_11944", "source": "6701", "target": "3803" }, { "key": "geid_144_11945", "source": "3127", "target": "4446" }, { "key": "geid_144_11946", "source": "8638", "target": "8066" }, { "key": "geid_144_11947", "source": "3101", "target": "97" }, { "key": "geid_144_11948", "source": "4404", "target": "8756" }, { "key": "geid_144_11949", "source": "8480", "target": "7425" }, { "key": "geid_144_11950", "source": "6743", "target": "7698" }, { "key": "geid_144_11951", "source": "8866", "target": "3365" }, { "key": "geid_144_11952", "source": "9823", "target": "6668" }, { "key": "geid_144_11953", "source": "9706", "target": "3771" }, { "key": "geid_144_11954", "source": "7829", "target": "3297" }, { "key": "geid_144_11955", "source": "2181", "target": "5469" }, { "key": "geid_144_11956", "source": "3664", "target": "7690" }, { "key": "geid_144_11957", "source": "5300", "target": "3283" }, { "key": "geid_144_11958", "source": "6344", "target": "145" }, { "key": "geid_144_11959", "source": "7367", "target": "2076" }, { "key": "geid_144_11960", "source": "7044", "target": "3870" }, { "key": "geid_144_11961", "source": "9171", "target": "4887" }, { "key": "geid_144_11962", "source": "8815", "target": "2834" }, { "key": "geid_144_11963", "source": "2619", "target": "992" }, { "key": "geid_144_11964", "source": "5030", "target": "9240" }, { "key": "geid_144_11965", "source": "2857", "target": "8699" }, { "key": "geid_144_11966", "source": "2974", "target": "9391" }, { "key": "geid_144_11967", "source": "8577", "target": "9394" }, { "key": "geid_144_11968", "source": "1503", "target": "39" }, { "key": "geid_144_11969", "source": "4296", "target": "574" }, { "key": "geid_144_11970", "source": "2688", "target": "3681" }, { "key": "geid_144_11971", "source": "9772", "target": "3322" }, { "key": "geid_144_11972", "source": "8796", "target": "4961" }, { "key": "geid_144_11973", "source": "5370", "target": "5800" }, { "key": "geid_144_11974", "source": "9688", "target": "6927" }, { "key": "geid_144_11975", "source": "7490", "target": "5510" }, { "key": "geid_144_11976", "source": "3715", "target": "250" }, { "key": "geid_144_11977", "source": "6455", "target": "5606" }, { "key": "geid_144_11978", "source": "7558", "target": "5540" }, { "key": "geid_144_11979", "source": "4388", "target": "954" }, { "key": "geid_144_11980", "source": "2551", "target": "3513" }, { "key": "geid_144_11981", "source": "5122", "target": "3322" }, { "key": "geid_144_11982", "source": "635", "target": "7770" }, { "key": "geid_144_11983", "source": "561", "target": "9784" }, { "key": "geid_144_11984", "source": "2831", "target": "8458" }, { "key": "geid_144_11985", "source": "2961", "target": "95" }, { "key": "geid_144_11986", "source": "9060", "target": "5131" }, { "key": "geid_144_11987", "source": "8787", "target": "8802" }, { "key": "geid_144_11988", "source": "1830", "target": "2705" }, { "key": "geid_144_11989", "source": "2853", "target": "6865" }, { "key": "geid_144_11990", "source": "2358", "target": "2331" }, { "key": "geid_144_11991", "source": "9218", "target": "7059" }, { "key": "geid_144_11992", "source": "2639", "target": "3839" }, { "key": "geid_144_11993", "source": "1157", "target": "5038" }, { "key": "geid_144_11994", "source": "1702", "target": "3453" }, { "key": "geid_144_11995", "source": "9511", "target": "4009" }, { "key": "geid_144_11996", "source": "5523", "target": "2428" }, { "key": "geid_144_11997", "source": "3843", "target": "9852" }, { "key": "geid_144_11998", "source": "5867", "target": "9626" }, { "key": "geid_144_11999", "source": "5999", "target": "6145" }, { "key": "geid_144_12000", "source": "1139", "target": "8076" }, { "key": "geid_144_12001", "source": "8691", "target": "6955" }, { "key": "geid_144_12002", "source": "7511", "target": "8752" }, { "key": "geid_144_12003", "source": "1014", "target": "4454" }, { "key": "geid_144_12004", "source": "8021", "target": "6378" }, { "key": "geid_144_12005", "source": "247", "target": "8825" }, { "key": "geid_144_12006", "source": "4944", "target": "5255" }, { "key": "geid_144_12007", "source": "1263", "target": "3805" }, { "key": "geid_144_12008", "source": "3837", "target": "4960" }, { "key": "geid_144_12009", "source": "1145", "target": "8764" }, { "key": "geid_144_12010", "source": "4165", "target": "4391" }, { "key": "geid_144_12011", "source": "5337", "target": "5645" }, { "key": "geid_144_12012", "source": "5821", "target": "356" }, { "key": "geid_144_12013", "source": "4605", "target": "9476" }, { "key": "geid_144_12014", "source": "9273", "target": "9150" }, { "key": "geid_144_12015", "source": "9428", "target": "6842" }, { "key": "geid_144_12016", "source": "3083", "target": "4898" }, { "key": "geid_144_12017", "source": "535", "target": "9580" }, { "key": "geid_144_12018", "source": "7729", "target": "2349" }, { "key": "geid_144_12019", "source": "4332", "target": "754" }, { "key": "geid_144_12020", "source": "1747", "target": "5439" }, { "key": "geid_144_12021", "source": "6550", "target": "5946" }, { "key": "geid_144_12022", "source": "6926", "target": "8060" }, { "key": "geid_144_12023", "source": "7777", "target": "2775" }, { "key": "geid_144_12024", "source": "8461", "target": "8766" }, { "key": "geid_144_12025", "source": "8053", "target": "2248" }, { "key": "geid_144_12026", "source": "6937", "target": "6527" }, { "key": "geid_144_12027", "source": "8395", "target": "5577" }, { "key": "geid_144_12028", "source": "3289", "target": "5897" }, { "key": "geid_144_12029", "source": "7350", "target": "700" }, { "key": "geid_144_12030", "source": "4442", "target": "4479" }, { "key": "geid_144_12031", "source": "1975", "target": "292" }, { "key": "geid_144_12032", "source": "4355", "target": "7740" }, { "key": "geid_144_12033", "source": "4018", "target": "560" }, { "key": "geid_144_12034", "source": "7447", "target": "9922" }, { "key": "geid_144_12035", "source": "4010", "target": "658" }, { "key": "geid_144_12036", "source": "496", "target": "6191" }, { "key": "geid_144_12037", "source": "2770", "target": "5241" }, { "key": "geid_144_12038", "source": "4855", "target": "6900" }, { "key": "geid_144_12039", "source": "3146", "target": "8197" }, { "key": "geid_144_12040", "source": "3733", "target": "9630" }, { "key": "geid_144_12041", "source": "9098", "target": "4560" }, { "key": "geid_144_12042", "source": "7783", "target": "9761" }, { "key": "geid_144_12043", "source": "7575", "target": "8372" }, { "key": "geid_144_12044", "source": "5210", "target": "1025" }, { "key": "geid_144_12045", "source": "3945", "target": "7795" }, { "key": "geid_144_12046", "source": "4097", "target": "2874" }, { "key": "geid_144_12047", "source": "41", "target": "8874" }, { "key": "geid_144_12048", "source": "5484", "target": "3797" }, { "key": "geid_144_12049", "source": "9627", "target": "7325" }, { "key": "geid_144_12050", "source": "9103", "target": "6927" }, { "key": "geid_144_12051", "source": "8073", "target": "9458" }, { "key": "geid_144_12052", "source": "2818", "target": "1593" }, { "key": "geid_144_12053", "source": "995", "target": "2977" }, { "key": "geid_144_12054", "source": "6542", "target": "5182" }, { "key": "geid_144_12055", "source": "8217", "target": "3427" }, { "key": "geid_144_12056", "source": "2386", "target": "2911" }, { "key": "geid_144_12057", "source": "6089", "target": "2832" }, { "key": "geid_144_12058", "source": "8660", "target": "8377" }, { "key": "geid_144_12059", "source": "5327", "target": "6296" }, { "key": "geid_144_12060", "source": "7090", "target": "5437" }, { "key": "geid_144_12061", "source": "4764", "target": "5881" }, { "key": "geid_144_12062", "source": "6136", "target": "5288" }, { "key": "geid_144_12063", "source": "3697", "target": "7121" }, { "key": "geid_144_12064", "source": "1465", "target": "7071" }, { "key": "geid_144_12065", "source": "8040", "target": "5291" }, { "key": "geid_144_12066", "source": "4501", "target": "775" }, { "key": "geid_144_12067", "source": "9829", "target": "3398" }, { "key": "geid_144_12068", "source": "8835", "target": "9932" }, { "key": "geid_144_12069", "source": "8923", "target": "8213" }, { "key": "geid_144_12070", "source": "7646", "target": "6361" }, { "key": "geid_144_12071", "source": "4837", "target": "2040" }, { "key": "geid_144_12072", "source": "8857", "target": "3567" }, { "key": "geid_144_12073", "source": "268", "target": "1398" }, { "key": "geid_144_12074", "source": "5555", "target": "782" }, { "key": "geid_144_12075", "source": "5326", "target": "6480" }, { "key": "geid_144_12076", "source": "7230", "target": "1217" }, { "key": "geid_144_12077", "source": "3174", "target": "4434" }, { "key": "geid_144_12078", "source": "6063", "target": "9974" }, { "key": "geid_144_12079", "source": "6772", "target": "2257" }, { "key": "geid_144_12080", "source": "3671", "target": "1136" }, { "key": "geid_144_12081", "source": "8731", "target": "4267" }, { "key": "geid_144_12082", "source": "1735", "target": "9795" }, { "key": "geid_144_12083", "source": "2291", "target": "8666" }, { "key": "geid_144_12084", "source": "4686", "target": "5376" }, { "key": "geid_144_12085", "source": "8699", "target": "6295" }, { "key": "geid_144_12086", "source": "3331", "target": "4411" }, { "key": "geid_144_12087", "source": "9549", "target": "8002" }, { "key": "geid_144_12088", "source": "9116", "target": "7149" }, { "key": "geid_144_12089", "source": "9834", "target": "4989" }, { "key": "geid_144_12090", "source": "988", "target": "5967" }, { "key": "geid_144_12091", "source": "1103", "target": "9049" }, { "key": "geid_144_12092", "source": "89", "target": "4694" }, { "key": "geid_144_12093", "source": "6886", "target": "859" }, { "key": "geid_144_12094", "source": "790", "target": "79" }, { "key": "geid_144_12095", "source": "678", "target": "547" }, { "key": "geid_144_12096", "source": "1275", "target": "9794" }, { "key": "geid_144_12097", "source": "4891", "target": "5380" }, { "key": "geid_144_12098", "source": "7358", "target": "5216" }, { "key": "geid_144_12099", "source": "5659", "target": "5045" }, { "key": "geid_144_12100", "source": "465", "target": "6332" }, { "key": "geid_144_12101", "source": "7912", "target": "8586" }, { "key": "geid_144_12102", "source": "1338", "target": "6002" }, { "key": "geid_144_12103", "source": "3556", "target": "694" }, { "key": "geid_144_12104", "source": "7778", "target": "7316" }, { "key": "geid_144_12105", "source": "6643", "target": "7034" }, { "key": "geid_144_12106", "source": "2231", "target": "4147" }, { "key": "geid_144_12107", "source": "4727", "target": "4475" }, { "key": "geid_144_12108", "source": "8960", "target": "7335" }, { "key": "geid_144_12109", "source": "2369", "target": "758" }, { "key": "geid_144_12110", "source": "9672", "target": "5131" }, { "key": "geid_144_12111", "source": "795", "target": "5594" }, { "key": "geid_144_12112", "source": "3315", "target": "4754" }, { "key": "geid_144_12113", "source": "4162", "target": "1870" }, { "key": "geid_144_12114", "source": "8283", "target": "5905" }, { "key": "geid_144_12115", "source": "8920", "target": "1249" }, { "key": "geid_144_12116", "source": "7183", "target": "4255" }, { "key": "geid_144_12117", "source": "6208", "target": "1081" }, { "key": "geid_144_12118", "source": "6074", "target": "5095" }, { "key": "geid_144_12119", "source": "5531", "target": "5387" }, { "key": "geid_144_12120", "source": "4533", "target": "9542" }, { "key": "geid_144_12121", "source": "1922", "target": "2834" }, { "key": "geid_144_12122", "source": "185", "target": "4851" }, { "key": "geid_144_12123", "source": "6599", "target": "7247" }, { "key": "geid_144_12124", "source": "2620", "target": "1348" }, { "key": "geid_144_12125", "source": "4815", "target": "8952" }, { "key": "geid_144_12126", "source": "5848", "target": "4776" }, { "key": "geid_144_12127", "source": "8265", "target": "7576" }, { "key": "geid_144_12128", "source": "8261", "target": "9748" }, { "key": "geid_144_12129", "source": "9343", "target": "1158" }, { "key": "geid_144_12130", "source": "8272", "target": "7113" }, { "key": "geid_144_12131", "source": "1901", "target": "1895" }, { "key": "geid_144_12132", "source": "4141", "target": "2784" }, { "key": "geid_144_12133", "source": "4072", "target": "580" }, { "key": "geid_144_12134", "source": "515", "target": "847" }, { "key": "geid_144_12135", "source": "9074", "target": "4821" }, { "key": "geid_144_12136", "source": "2980", "target": "3612" }, { "key": "geid_144_12137", "source": "276", "target": "3410" }, { "key": "geid_144_12138", "source": "2067", "target": "9098" }, { "key": "geid_144_12139", "source": "6617", "target": "8185" }, { "key": "geid_144_12140", "source": "4056", "target": "7936" }, { "key": "geid_144_12141", "source": "3807", "target": "1789" }, { "key": "geid_144_12142", "source": "7575", "target": "1407" }, { "key": "geid_144_12143", "source": "3546", "target": "5794" }, { "key": "geid_144_12144", "source": "1784", "target": "4102" }, { "key": "geid_144_12145", "source": "7189", "target": "9822" }, { "key": "geid_144_12146", "source": "6374", "target": "3482" }, { "key": "geid_144_12147", "source": "8772", "target": "335" }, { "key": "geid_144_12148", "source": "5791", "target": "6433" }, { "key": "geid_144_12149", "source": "9908", "target": "8463" }, { "key": "geid_144_12150", "source": "5136", "target": "6685" }, { "key": "geid_144_12151", "source": "6466", "target": "7754" }, { "key": "geid_144_12152", "source": "8525", "target": "2837" }, { "key": "geid_144_12153", "source": "9645", "target": "8673" }, { "key": "geid_144_12154", "source": "9658", "target": "9182" }, { "key": "geid_144_12155", "source": "5854", "target": "8511" }, { "key": "geid_144_12156", "source": "3723", "target": "2846" }, { "key": "geid_144_12157", "source": "8387", "target": "9094" }, { "key": "geid_144_12158", "source": "7033", "target": "9985" }, { "key": "geid_144_12159", "source": "276", "target": "6991" }, { "key": "geid_144_12160", "source": "6076", "target": "1158" }, { "key": "geid_144_12161", "source": "145", "target": "7073" }, { "key": "geid_144_12162", "source": "2902", "target": "6221" }, { "key": "geid_144_12163", "source": "6818", "target": "1625" }, { "key": "geid_144_12164", "source": "7809", "target": "6698" }, { "key": "geid_144_12165", "source": "8132", "target": "6698" }, { "key": "geid_144_12166", "source": "3247", "target": "9588" }, { "key": "geid_144_12167", "source": "4531", "target": "8589" }, { "key": "geid_144_12168", "source": "5766", "target": "7702" }, { "key": "geid_144_12169", "source": "7860", "target": "7577" }, { "key": "geid_144_12170", "source": "1053", "target": "8140" }, { "key": "geid_144_12171", "source": "1988", "target": "4941" }, { "key": "geid_144_12172", "source": "3748", "target": "466" }, { "key": "geid_144_12173", "source": "3380", "target": "3039" }, { "key": "geid_144_12174", "source": "5448", "target": "1652" }, { "key": "geid_144_12175", "source": "4298", "target": "7899" }, { "key": "geid_144_12176", "source": "9063", "target": "289" }, { "key": "geid_144_12177", "source": "2665", "target": "1692" }, { "key": "geid_144_12178", "source": "4509", "target": "3469" }, { "key": "geid_144_12179", "source": "3667", "target": "419" }, { "key": "geid_144_12180", "source": "21", "target": "8214" }, { "key": "geid_144_12181", "source": "3595", "target": "3862" }, { "key": "geid_144_12182", "source": "5284", "target": "7653" }, { "key": "geid_144_12183", "source": "6333", "target": "5567" }, { "key": "geid_144_12184", "source": "4523", "target": "2656" }, { "key": "geid_144_12185", "source": "4415", "target": "9347" }, { "key": "geid_144_12186", "source": "9075", "target": "6396" }, { "key": "geid_144_12187", "source": "7146", "target": "8772" }, { "key": "geid_144_12188", "source": "3067", "target": "5264" }, { "key": "geid_144_12189", "source": "3810", "target": "2267" }, { "key": "geid_144_12190", "source": "6282", "target": "7510" }, { "key": "geid_144_12191", "source": "9293", "target": "5101" }, { "key": "geid_144_12192", "source": "3461", "target": "6039" }, { "key": "geid_144_12193", "source": "3671", "target": "3063" }, { "key": "geid_144_12194", "source": "4192", "target": "529" }, { "key": "geid_144_12195", "source": "7718", "target": "7371" }, { "key": "geid_144_12196", "source": "6714", "target": "6767" }, { "key": "geid_144_12197", "source": "6480", "target": "6645" }, { "key": "geid_144_12198", "source": "7488", "target": "4499" }, { "key": "geid_144_12199", "source": "44", "target": "1299" }, { "key": "geid_144_12200", "source": "2304", "target": "1769" }, { "key": "geid_144_12201", "source": "1837", "target": "4875" }, { "key": "geid_144_12202", "source": "3330", "target": "6293" }, { "key": "geid_144_12203", "source": "5273", "target": "2654" }, { "key": "geid_144_12204", "source": "9662", "target": "3733" }, { "key": "geid_144_12205", "source": "5870", "target": "6814" }, { "key": "geid_144_12206", "source": "7486", "target": "2350" }, { "key": "geid_144_12207", "source": "6235", "target": "8495" }, { "key": "geid_144_12208", "source": "5894", "target": "9807" }, { "key": "geid_144_12209", "source": "1930", "target": "9309" }, { "key": "geid_144_12210", "source": "2862", "target": "6276" }, { "key": "geid_144_12211", "source": "3339", "target": "7965" }, { "key": "geid_144_12212", "source": "256", "target": "9114" }, { "key": "geid_144_12213", "source": "5034", "target": "2222" }, { "key": "geid_144_12214", "source": "8918", "target": "1320" }, { "key": "geid_144_12215", "source": "6597", "target": "8823" }, { "key": "geid_144_12216", "source": "7062", "target": "2724" }, { "key": "geid_144_12217", "source": "5905", "target": "2713" }, { "key": "geid_144_12218", "source": "861", "target": "194" }, { "key": "geid_144_12219", "source": "7029", "target": "8530" }, { "key": "geid_144_12220", "source": "3671", "target": "1975" }, { "key": "geid_144_12221", "source": "5070", "target": "7077" }, { "key": "geid_144_12222", "source": "4695", "target": "2112" }, { "key": "geid_144_12223", "source": "9349", "target": "1852" }, { "key": "geid_144_12224", "source": "6352", "target": "3898" }, { "key": "geid_144_12225", "source": "8768", "target": "8215" }, { "key": "geid_144_12226", "source": "4082", "target": "3041" }, { "key": "geid_144_12227", "source": "5845", "target": "7917" }, { "key": "geid_144_12228", "source": "8261", "target": "5118" }, { "key": "geid_144_12229", "source": "7180", "target": "5943" }, { "key": "geid_144_12230", "source": "9678", "target": "7175" }, { "key": "geid_144_12231", "source": "2195", "target": "8622" }, { "key": "geid_144_12232", "source": "2545", "target": "6788" }, { "key": "geid_144_12233", "source": "6080", "target": "9894" }, { "key": "geid_144_12234", "source": "7410", "target": "2635" }, { "key": "geid_144_12235", "source": "7611", "target": "6845" }, { "key": "geid_144_12236", "source": "2091", "target": "8706" }, { "key": "geid_144_12237", "source": "7732", "target": "8936" }, { "key": "geid_144_12238", "source": "6026", "target": "1490" }, { "key": "geid_144_12239", "source": "7999", "target": "1757" }, { "key": "geid_144_12240", "source": "4442", "target": "132" }, { "key": "geid_144_12241", "source": "5165", "target": "1867" }, { "key": "geid_144_12242", "source": "7896", "target": "9104" }, { "key": "geid_144_12243", "source": "7469", "target": "3966" }, { "key": "geid_144_12244", "source": "5739", "target": "3454" }, { "key": "geid_144_12245", "source": "9168", "target": "3743" }, { "key": "geid_144_12246", "source": "5390", "target": "8873" }, { "key": "geid_144_12247", "source": "1882", "target": "3162" }, { "key": "geid_144_12248", "source": "2100", "target": "5842" }, { "key": "geid_144_12249", "source": "9391", "target": "2861" }, { "key": "geid_144_12250", "source": "7897", "target": "7773" }, { "key": "geid_144_12251", "source": "3547", "target": "4438" }, { "key": "geid_144_12252", "source": "1025", "target": "337" }, { "key": "geid_144_12253", "source": "846", "target": "3988" }, { "key": "geid_144_12254", "source": "932", "target": "5451" }, { "key": "geid_144_12255", "source": "2377", "target": "2147" }, { "key": "geid_144_12256", "source": "7544", "target": "2372" }, { "key": "geid_144_12257", "source": "1390", "target": "3639" }, { "key": "geid_144_12258", "source": "2728", "target": "5220" }, { "key": "geid_144_12259", "source": "460", "target": "8999" }, { "key": "geid_144_12260", "source": "8086", "target": "3436" }, { "key": "geid_144_12261", "source": "9789", "target": "8913" }, { "key": "geid_144_12262", "source": "1982", "target": "6539" }, { "key": "geid_144_12263", "source": "629", "target": "2961" }, { "key": "geid_144_12264", "source": "9581", "target": "2735" }, { "key": "geid_144_12265", "source": "4911", "target": "299" }, { "key": "geid_144_12266", "source": "8582", "target": "5822" }, { "key": "geid_144_12267", "source": "1566", "target": "3981" }, { "key": "geid_144_12268", "source": "5341", "target": "5234" }, { "key": "geid_144_12269", "source": "3093", "target": "4839" }, { "key": "geid_144_12270", "source": "7045", "target": "3358" }, { "key": "geid_144_12271", "source": "7015", "target": "9683" }, { "key": "geid_144_12272", "source": "8744", "target": "7343" }, { "key": "geid_144_12273", "source": "2286", "target": "1672" }, { "key": "geid_144_12274", "source": "7628", "target": "255" }, { "key": "geid_144_12275", "source": "1135", "target": "9970" }, { "key": "geid_144_12276", "source": "5704", "target": "4680" }, { "key": "geid_144_12277", "source": "1693", "target": "1667" }, { "key": "geid_144_12278", "source": "3040", "target": "4285" }, { "key": "geid_144_12279", "source": "2681", "target": "1638" }, { "key": "geid_144_12280", "source": "4476", "target": "7552" }, { "key": "geid_144_12281", "source": "7585", "target": "1874" }, { "key": "geid_144_12282", "source": "7933", "target": "4115" }, { "key": "geid_144_12283", "source": "2493", "target": "8726" }, { "key": "geid_144_12284", "source": "5317", "target": "1490" }, { "key": "geid_144_12285", "source": "835", "target": "2884" }, { "key": "geid_144_12286", "source": "8040", "target": "4007" }, { "key": "geid_144_12287", "source": "5904", "target": "1700" }, { "key": "geid_144_12288", "source": "6757", "target": "5024" }, { "key": "geid_144_12289", "source": "6797", "target": "4913" }, { "key": "geid_144_12290", "source": "2621", "target": "5843" }, { "key": "geid_144_12291", "source": "7796", "target": "5382" }, { "key": "geid_144_12292", "source": "4187", "target": "4039" }, { "key": "geid_144_12293", "source": "6251", "target": "9135" }, { "key": "geid_144_12294", "source": "2250", "target": "8435" }, { "key": "geid_144_12295", "source": "9936", "target": "4625" }, { "key": "geid_144_12296", "source": "2837", "target": "1149" }, { "key": "geid_144_12297", "source": "9575", "target": "8959" }, { "key": "geid_144_12298", "source": "2447", "target": "4826" }, { "key": "geid_144_12299", "source": "9232", "target": "2545" }, { "key": "geid_144_12300", "source": "8726", "target": "7199" }, { "key": "geid_144_12301", "source": "9707", "target": "9804" }, { "key": "geid_144_12302", "source": "1464", "target": "9371" }, { "key": "geid_144_12303", "source": "4923", "target": "5062" }, { "key": "geid_144_12304", "source": "6087", "target": "5688" }, { "key": "geid_144_12305", "source": "7716", "target": "5342" }, { "key": "geid_144_12306", "source": "9403", "target": "704" }, { "key": "geid_144_12307", "source": "224", "target": "1710" }, { "key": "geid_144_12308", "source": "2834", "target": "7435" }, { "key": "geid_144_12309", "source": "6927", "target": "8689" }, { "key": "geid_144_12310", "source": "1322", "target": "567" }, { "key": "geid_144_12311", "source": "4484", "target": "2935" }, { "key": "geid_144_12312", "source": "6992", "target": "9204" }, { "key": "geid_144_12313", "source": "1222", "target": "6823" }, { "key": "geid_144_12314", "source": "748", "target": "910" }, { "key": "geid_144_12315", "source": "3539", "target": "3702" }, { "key": "geid_144_12316", "source": "6731", "target": "9729" }, { "key": "geid_144_12317", "source": "6572", "target": "191" }, { "key": "geid_144_12318", "source": "6693", "target": "5972" }, { "key": "geid_144_12319", "source": "7483", "target": "9150" }, { "key": "geid_144_12320", "source": "2230", "target": "2189" }, { "key": "geid_144_12321", "source": "5905", "target": "6196" }, { "key": "geid_144_12322", "source": "1702", "target": "5642" }, { "key": "geid_144_12323", "source": "4334", "target": "3406" }, { "key": "geid_144_12324", "source": "7330", "target": "1929" }, { "key": "geid_144_12325", "source": "5613", "target": "1945" }, { "key": "geid_144_12326", "source": "3099", "target": "9102" }, { "key": "geid_144_12327", "source": "3749", "target": "4930" }, { "key": "geid_144_12328", "source": "9144", "target": "1417" }, { "key": "geid_144_12329", "source": "8507", "target": "7245" }, { "key": "geid_144_12330", "source": "3029", "target": "8" }, { "key": "geid_144_12331", "source": "2297", "target": "4777" }, { "key": "geid_144_12332", "source": "6153", "target": "4736" }, { "key": "geid_144_12333", "source": "580", "target": "9455" }, { "key": "geid_144_12334", "source": "3", "target": "9885" }, { "key": "geid_144_12335", "source": "8383", "target": "9999" }, { "key": "geid_144_12336", "source": "7735", "target": "7922" }, { "key": "geid_144_12337", "source": "2351", "target": "478" }, { "key": "geid_144_12338", "source": "7456", "target": "5847" }, { "key": "geid_144_12339", "source": "8262", "target": "1395" }, { "key": "geid_144_12340", "source": "2372", "target": "7284" }, { "key": "geid_144_12341", "source": "2096", "target": "2244" }, { "key": "geid_144_12342", "source": "5123", "target": "4864" }, { "key": "geid_144_12343", "source": "5800", "target": "617" }, { "key": "geid_144_12344", "source": "4313", "target": "975" }, { "key": "geid_144_12345", "source": "5821", "target": "7376" }, { "key": "geid_144_12346", "source": "3619", "target": "5071" }, { "key": "geid_144_12347", "source": "382", "target": "8473" }, { "key": "geid_144_12348", "source": "5375", "target": "7917" }, { "key": "geid_144_12349", "source": "6820", "target": "7749" }, { "key": "geid_144_12350", "source": "7070", "target": "9423" }, { "key": "geid_144_12351", "source": "3851", "target": "9531" }, { "key": "geid_144_12352", "source": "2185", "target": "3688" }, { "key": "geid_144_12353", "source": "4135", "target": "2584" }, { "key": "geid_144_12354", "source": "8159", "target": "4563" }, { "key": "geid_144_12355", "source": "2660", "target": "5706" }, { "key": "geid_144_12356", "source": "4852", "target": "3720" }, { "key": "geid_144_12357", "source": "6957", "target": "6345" }, { "key": "geid_144_12358", "source": "496", "target": "4691" }, { "key": "geid_144_12359", "source": "8343", "target": "3147" }, { "key": "geid_144_12360", "source": "1824", "target": "8851" }, { "key": "geid_144_12361", "source": "1257", "target": "3468" }, { "key": "geid_144_12362", "source": "6603", "target": "3852" }, { "key": "geid_144_12363", "source": "4193", "target": "3836" }, { "key": "geid_144_12364", "source": "3183", "target": "7669" }, { "key": "geid_144_12365", "source": "2355", "target": "1972" }, { "key": "geid_144_12366", "source": "1063", "target": "9958" }, { "key": "geid_144_12367", "source": "2392", "target": "4497" }, { "key": "geid_144_12368", "source": "4471", "target": "3437" }, { "key": "geid_144_12369", "source": "3905", "target": "9362" }, { "key": "geid_144_12370", "source": "8672", "target": "9857" }, { "key": "geid_144_12371", "source": "4360", "target": "1201" }, { "key": "geid_144_12372", "source": "4877", "target": "539" }, { "key": "geid_144_12373", "source": "624", "target": "7405" }, { "key": "geid_144_12374", "source": "4992", "target": "7190" }, { "key": "geid_144_12375", "source": "3064", "target": "425" }, { "key": "geid_144_12376", "source": "1187", "target": "9324" }, { "key": "geid_144_12377", "source": "2039", "target": "6816" }, { "key": "geid_144_12378", "source": "7316", "target": "957" }, { "key": "geid_144_12379", "source": "4362", "target": "6640" }, { "key": "geid_144_12380", "source": "6745", "target": "1813" }, { "key": "geid_144_12381", "source": "8359", "target": "4740" }, { "key": "geid_144_12382", "source": "1158", "target": "406" }, { "key": "geid_144_12383", "source": "5303", "target": "7421" }, { "key": "geid_144_12384", "source": "560", "target": "1503" }, { "key": "geid_144_12385", "source": "7386", "target": "9725" }, { "key": "geid_144_12386", "source": "8387", "target": "1988" }, { "key": "geid_144_12387", "source": "8433", "target": "1644" }, { "key": "geid_144_12388", "source": "1241", "target": "5198" }, { "key": "geid_144_12389", "source": "2178", "target": "8560" }, { "key": "geid_144_12390", "source": "9991", "target": "9073" }, { "key": "geid_144_12391", "source": "6796", "target": "3020" }, { "key": "geid_144_12392", "source": "1774", "target": "9324" }, { "key": "geid_144_12393", "source": "1948", "target": "1298" }, { "key": "geid_144_12394", "source": "4277", "target": "2661" }, { "key": "geid_144_12395", "source": "584", "target": "3000" }, { "key": "geid_144_12396", "source": "803", "target": "5242" }, { "key": "geid_144_12397", "source": "405", "target": "1352" }, { "key": "geid_144_12398", "source": "6261", "target": "9284" }, { "key": "geid_144_12399", "source": "2046", "target": "2061" }, { "key": "geid_144_12400", "source": "2412", "target": "381" }, { "key": "geid_144_12401", "source": "2559", "target": "2547" }, { "key": "geid_144_12402", "source": "3784", "target": "3210" }, { "key": "geid_144_12403", "source": "3125", "target": "6570" }, { "key": "geid_144_12404", "source": "3306", "target": "2917" }, { "key": "geid_144_12405", "source": "2113", "target": "2083" }, { "key": "geid_144_12406", "source": "6811", "target": "5329" }, { "key": "geid_144_12407", "source": "6032", "target": "7071" }, { "key": "geid_144_12408", "source": "2824", "target": "4051" }, { "key": "geid_144_12409", "source": "4260", "target": "6229" }, { "key": "geid_144_12410", "source": "4617", "target": "5105" }, { "key": "geid_144_12411", "source": "9443", "target": "6555" }, { "key": "geid_144_12412", "source": "9811", "target": "1417" }, { "key": "geid_144_12413", "source": "8508", "target": "9495" }, { "key": "geid_144_12414", "source": "5891", "target": "8273" }, { "key": "geid_144_12415", "source": "6870", "target": "5103" }, { "key": "geid_144_12416", "source": "5317", "target": "3173" }, { "key": "geid_144_12417", "source": "8199", "target": "8776" }, { "key": "geid_144_12418", "source": "413", "target": "920" }, { "key": "geid_144_12419", "source": "7588", "target": "3439" }, { "key": "geid_144_12420", "source": "5235", "target": "763" }, { "key": "geid_144_12421", "source": "1174", "target": "948" }, { "key": "geid_144_12422", "source": "13", "target": "315" }, { "key": "geid_144_12423", "source": "476", "target": "4902" }, { "key": "geid_144_12424", "source": "2436", "target": "2690" }, { "key": "geid_144_12425", "source": "659", "target": "5715" }, { "key": "geid_144_12426", "source": "7226", "target": "5163" }, { "key": "geid_144_12427", "source": "890", "target": "6561" }, { "key": "geid_144_12428", "source": "5811", "target": "4861" }, { "key": "geid_144_12429", "source": "1828", "target": "9201" }, { "key": "geid_144_12430", "source": "564", "target": "7055" }, { "key": "geid_144_12431", "source": "1195", "target": "1400" }, { "key": "geid_144_12432", "source": "3468", "target": "8899" }, { "key": "geid_144_12433", "source": "4296", "target": "500" }, { "key": "geid_144_12434", "source": "7165", "target": "4618" }, { "key": "geid_144_12435", "source": "5443", "target": "5213" }, { "key": "geid_144_12436", "source": "2648", "target": "5517" }, { "key": "geid_144_12437", "source": "9270", "target": "6012" }, { "key": "geid_144_12438", "source": "8466", "target": "1732" }, { "key": "geid_144_12439", "source": "531", "target": "6138" }, { "key": "geid_144_12440", "source": "2543", "target": "5973" }, { "key": "geid_144_12441", "source": "6434", "target": "8396" }, { "key": "geid_144_12442", "source": "9849", "target": "6238" }, { "key": "geid_144_12443", "source": "3592", "target": "9302" }, { "key": "geid_144_12444", "source": "7561", "target": "2737" }, { "key": "geid_144_12445", "source": "1100", "target": "1288" }, { "key": "geid_144_12446", "source": "3369", "target": "1365" }, { "key": "geid_144_12447", "source": "7551", "target": "9682" }, { "key": "geid_144_12448", "source": "6526", "target": "350" }, { "key": "geid_144_12449", "source": "6202", "target": "7106" }, { "key": "geid_144_12450", "source": "7341", "target": "8237" }, { "key": "geid_144_12451", "source": "8580", "target": "4142" }, { "key": "geid_144_12452", "source": "548", "target": "9928" }, { "key": "geid_144_12453", "source": "8054", "target": "8532" }, { "key": "geid_144_12454", "source": "5851", "target": "1892" }, { "key": "geid_144_12455", "source": "3905", "target": "6002" }, { "key": "geid_144_12456", "source": "3905", "target": "904" }, { "key": "geid_144_12457", "source": "2449", "target": "4882" }, { "key": "geid_144_12458", "source": "4046", "target": "1099" }, { "key": "geid_144_12459", "source": "7113", "target": "8798" }, { "key": "geid_144_12460", "source": "3351", "target": "3703" }, { "key": "geid_144_12461", "source": "449", "target": "8366" }, { "key": "geid_144_12462", "source": "5891", "target": "8951" }, { "key": "geid_144_12463", "source": "5833", "target": "4900" }, { "key": "geid_144_12464", "source": "8683", "target": "1815" }, { "key": "geid_144_12465", "source": "700", "target": "9019" }, { "key": "geid_144_12466", "source": "2360", "target": "9521" }, { "key": "geid_144_12467", "source": "9902", "target": "4047" }, { "key": "geid_144_12468", "source": "1837", "target": "3434" }, { "key": "geid_144_12469", "source": "6770", "target": "9523" }, { "key": "geid_144_12470", "source": "5935", "target": "6075" }, { "key": "geid_144_12471", "source": "633", "target": "7676" }, { "key": "geid_144_12472", "source": "8530", "target": "156" }, { "key": "geid_144_12473", "source": "3985", "target": "3529" }, { "key": "geid_144_12474", "source": "6884", "target": "6850" }, { "key": "geid_144_12475", "source": "6758", "target": "2092" }, { "key": "geid_144_12476", "source": "4983", "target": "1496" }, { "key": "geid_144_12477", "source": "1903", "target": "1116" }, { "key": "geid_144_12478", "source": "7965", "target": "8738" }, { "key": "geid_144_12479", "source": "3106", "target": "8648" }, { "key": "geid_144_12480", "source": "8197", "target": "9757" }, { "key": "geid_144_12481", "source": "2505", "target": "1375" }, { "key": "geid_144_12482", "source": "4372", "target": "9596" }, { "key": "geid_144_12483", "source": "885", "target": "812" }, { "key": "geid_144_12484", "source": "2749", "target": "842" }, { "key": "geid_144_12485", "source": "8875", "target": "9900" }, { "key": "geid_144_12486", "source": "8388", "target": "700" }, { "key": "geid_144_12487", "source": "9996", "target": "5160" }, { "key": "geid_144_12488", "source": "2871", "target": "471" }, { "key": "geid_144_12489", "source": "8889", "target": "7423" }, { "key": "geid_144_12490", "source": "1509", "target": "2954" }, { "key": "geid_144_12491", "source": "3944", "target": "7234" }, { "key": "geid_144_12492", "source": "7050", "target": "5802" }, { "key": "geid_144_12493", "source": "5905", "target": "4001" }, { "key": "geid_144_12494", "source": "6922", "target": "7382" }, { "key": "geid_144_12495", "source": "7103", "target": "338" }, { "key": "geid_144_12496", "source": "1165", "target": "6107" }, { "key": "geid_144_12497", "source": "3182", "target": "8390" }, { "key": "geid_144_12498", "source": "5439", "target": "6702" }, { "key": "geid_144_12499", "source": "1962", "target": "6628" }, { "key": "geid_144_12500", "source": "4740", "target": "3117" }, { "key": "geid_144_12501", "source": "6522", "target": "2426" }, { "key": "geid_144_12502", "source": "5664", "target": "302" }, { "key": "geid_144_12503", "source": "3789", "target": "2576" }, { "key": "geid_144_12504", "source": "9652", "target": "5596" }, { "key": "geid_144_12505", "source": "308", "target": "2501" }, { "key": "geid_144_12506", "source": "8625", "target": "5946" }, { "key": "geid_144_12507", "source": "3872", "target": "2706" }, { "key": "geid_144_12508", "source": "3566", "target": "6257" }, { "key": "geid_144_12509", "source": "4095", "target": "7657" }, { "key": "geid_144_12510", "source": "2503", "target": "4475" }, { "key": "geid_144_12511", "source": "6956", "target": "1404" }, { "key": "geid_144_12512", "source": "4685", "target": "9431" }, { "key": "geid_144_12513", "source": "9324", "target": "5819" }, { "key": "geid_144_12514", "source": "6410", "target": "942" }, { "key": "geid_144_12515", "source": "8254", "target": "9656" }, { "key": "geid_144_12516", "source": "3647", "target": "3313" }, { "key": "geid_144_12517", "source": "3326", "target": "4566" }, { "key": "geid_144_12518", "source": "1392", "target": "4489" }, { "key": "geid_144_12519", "source": "4908", "target": "1516" }, { "key": "geid_144_12520", "source": "3755", "target": "2133" }, { "key": "geid_144_12521", "source": "6835", "target": "5223" }, { "key": "geid_144_12522", "source": "8494", "target": "6948" }, { "key": "geid_144_12523", "source": "41", "target": "7491" }, { "key": "geid_144_12524", "source": "7932", "target": "2822" }, { "key": "geid_144_12525", "source": "5389", "target": "3817" }, { "key": "geid_144_12526", "source": "3428", "target": "8517" }, { "key": "geid_144_12527", "source": "5609", "target": "9353" }, { "key": "geid_144_12528", "source": "9618", "target": "1867" }, { "key": "geid_144_12529", "source": "4892", "target": "648" }, { "key": "geid_144_12530", "source": "9082", "target": "9646" }, { "key": "geid_144_12531", "source": "1253", "target": "9820" }, { "key": "geid_144_12532", "source": "3427", "target": "7895" }, { "key": "geid_144_12533", "source": "5628", "target": "3432" }, { "key": "geid_144_12534", "source": "1104", "target": "7639" }, { "key": "geid_144_12535", "source": "7909", "target": "358" }, { "key": "geid_144_12536", "source": "198", "target": "7145" }, { "key": "geid_144_12537", "source": "4116", "target": "2759" }, { "key": "geid_144_12538", "source": "1673", "target": "2694" }, { "key": "geid_144_12539", "source": "2090", "target": "1831" }, { "key": "geid_144_12540", "source": "6568", "target": "7300" }, { "key": "geid_144_12541", "source": "8392", "target": "3685" }, { "key": "geid_144_12542", "source": "4634", "target": "6259" }, { "key": "geid_144_12543", "source": "6891", "target": "6200" }, { "key": "geid_144_12544", "source": "2495", "target": "679" }, { "key": "geid_144_12545", "source": "4330", "target": "316" }, { "key": "geid_144_12546", "source": "6299", "target": "2609" }, { "key": "geid_144_12547", "source": "1075", "target": "1430" }, { "key": "geid_144_12548", "source": "1901", "target": "8565" }, { "key": "geid_144_12549", "source": "6457", "target": "2933" }, { "key": "geid_144_12550", "source": "5620", "target": "5315" }, { "key": "geid_144_12551", "source": "4621", "target": "2936" }, { "key": "geid_144_12552", "source": "883", "target": "5295" }, { "key": "geid_144_12553", "source": "8822", "target": "3040" }, { "key": "geid_144_12554", "source": "8271", "target": "5251" }, { "key": "geid_144_12555", "source": "5470", "target": "471" }, { "key": "geid_144_12556", "source": "2833", "target": "8559" }, { "key": "geid_144_12557", "source": "2916", "target": "1571" }, { "key": "geid_144_12558", "source": "2993", "target": "4071" }, { "key": "geid_144_12559", "source": "1753", "target": "8792" }, { "key": "geid_144_12560", "source": "2309", "target": "1339" }, { "key": "geid_144_12561", "source": "7696", "target": "4634" }, { "key": "geid_144_12562", "source": "8840", "target": "5837" }, { "key": "geid_144_12563", "source": "4174", "target": "8229" }, { "key": "geid_144_12564", "source": "6055", "target": "9338" }, { "key": "geid_144_12565", "source": "2383", "target": "4695" }, { "key": "geid_144_12566", "source": "1797", "target": "4277" }, { "key": "geid_144_12567", "source": "6828", "target": "3795" }, { "key": "geid_144_12568", "source": "785", "target": "5915" }, { "key": "geid_144_12569", "source": "2548", "target": "5148" }, { "key": "geid_144_12570", "source": "5888", "target": "3787" }, { "key": "geid_144_12571", "source": "7407", "target": "5389" }, { "key": "geid_144_12572", "source": "3647", "target": "927" }, { "key": "geid_144_12573", "source": "5695", "target": "9622" }, { "key": "geid_144_12574", "source": "1947", "target": "4512" }, { "key": "geid_144_12575", "source": "4503", "target": "5288" }, { "key": "geid_144_12576", "source": "1163", "target": "9498" }, { "key": "geid_144_12577", "source": "2032", "target": "8719" }, { "key": "geid_144_12578", "source": "6278", "target": "2008" }, { "key": "geid_144_12579", "source": "8811", "target": "1552" }, { "key": "geid_144_12580", "source": "1005", "target": "7066" }, { "key": "geid_144_12581", "source": "5364", "target": "1029" }, { "key": "geid_144_12582", "source": "1165", "target": "2598" }, { "key": "geid_144_12583", "source": "5816", "target": "4779" }, { "key": "geid_144_12584", "source": "9553", "target": "840" }, { "key": "geid_144_12585", "source": "3376", "target": "5585" }, { "key": "geid_144_12586", "source": "5043", "target": "1422" }, { "key": "geid_144_12587", "source": "6583", "target": "7451" }, { "key": "geid_144_12588", "source": "3879", "target": "5958" }, { "key": "geid_144_12589", "source": "8567", "target": "3527" }, { "key": "geid_144_12590", "source": "2821", "target": "9725" }, { "key": "geid_144_12591", "source": "6312", "target": "7143" }, { "key": "geid_144_12592", "source": "7299", "target": "5382" }, { "key": "geid_144_12593", "source": "7854", "target": "7593" }, { "key": "geid_144_12594", "source": "2828", "target": "5516" }, { "key": "geid_144_12595", "source": "2588", "target": "5031" }, { "key": "geid_144_12596", "source": "1589", "target": "1453" }, { "key": "geid_144_12597", "source": "5895", "target": "5679" }, { "key": "geid_144_12598", "source": "8009", "target": "1865" }, { "key": "geid_144_12599", "source": "6948", "target": "9573" }, { "key": "geid_144_12600", "source": "151", "target": "9676" }, { "key": "geid_144_12601", "source": "8533", "target": "4407" }, { "key": "geid_144_12602", "source": "284", "target": "7759" }, { "key": "geid_144_12603", "source": "2982", "target": "5113" }, { "key": "geid_144_12604", "source": "6814", "target": "3785" }, { "key": "geid_144_12605", "source": "6294", "target": "148" }, { "key": "geid_144_12606", "source": "9472", "target": "225" }, { "key": "geid_144_12607", "source": "4689", "target": "9744" }, { "key": "geid_144_12608", "source": "1958", "target": "5430" }, { "key": "geid_144_12609", "source": "6406", "target": "7880" }, { "key": "geid_144_12610", "source": "9713", "target": "6951" }, { "key": "geid_144_12611", "source": "8603", "target": "6998" }, { "key": "geid_144_12612", "source": "5066", "target": "3737" }, { "key": "geid_144_12613", "source": "9373", "target": "8835" }, { "key": "geid_144_12614", "source": "3879", "target": "1655" }, { "key": "geid_144_12615", "source": "7147", "target": "140" }, { "key": "geid_144_12616", "source": "9666", "target": "44" }, { "key": "geid_144_12617", "source": "7097", "target": "3943" }, { "key": "geid_144_12618", "source": "6015", "target": "8671" }, { "key": "geid_144_12619", "source": "7851", "target": "7198" }, { "key": "geid_144_12620", "source": "1147", "target": "6506" }, { "key": "geid_144_12621", "source": "7243", "target": "3559" }, { "key": "geid_144_12622", "source": "9700", "target": "2250" }, { "key": "geid_144_12623", "source": "7924", "target": "5265" }, { "key": "geid_144_12624", "source": "4051", "target": "3400" }, { "key": "geid_144_12625", "source": "7203", "target": "7821" }, { "key": "geid_144_12626", "source": "5864", "target": "3441" }, { "key": "geid_144_12627", "source": "1616", "target": "3737" }, { "key": "geid_144_12628", "source": "8512", "target": "3507" }, { "key": "geid_144_12629", "source": "6452", "target": "918" }, { "key": "geid_144_12630", "source": "6202", "target": "1873" }, { "key": "geid_144_12631", "source": "7583", "target": "6549" }, { "key": "geid_144_12632", "source": "6541", "target": "6387" }, { "key": "geid_144_12633", "source": "2746", "target": "2702" }, { "key": "geid_144_12634", "source": "6409", "target": "6903" }, { "key": "geid_144_12635", "source": "9629", "target": "9658" }, { "key": "geid_144_12636", "source": "870", "target": "3695" }, { "key": "geid_144_12637", "source": "938", "target": "8835" }, { "key": "geid_144_12638", "source": "4646", "target": "5949" }, { "key": "geid_144_12639", "source": "8284", "target": "3692" }, { "key": "geid_144_12640", "source": "7459", "target": "4899" }, { "key": "geid_144_12641", "source": "6275", "target": "1881" }, { "key": "geid_144_12642", "source": "5237", "target": "3164" }, { "key": "geid_144_12643", "source": "6334", "target": "6262" }, { "key": "geid_144_12644", "source": "3677", "target": "8181" }, { "key": "geid_144_12645", "source": "346", "target": "1590" }, { "key": "geid_144_12646", "source": "3729", "target": "1786" }, { "key": "geid_144_12647", "source": "8360", "target": "2409" }, { "key": "geid_144_12648", "source": "3206", "target": "1914" }, { "key": "geid_144_12649", "source": "7011", "target": "7598" }, { "key": "geid_144_12650", "source": "7153", "target": "1243" }, { "key": "geid_144_12651", "source": "427", "target": "3805" }, { "key": "geid_144_12652", "source": "4380", "target": "5767" }, { "key": "geid_144_12653", "source": "3758", "target": "4304" }, { "key": "geid_144_12654", "source": "1183", "target": "2224" }, { "key": "geid_144_12655", "source": "47", "target": "5914" }, { "key": "geid_144_12656", "source": "7371", "target": "6333" }, { "key": "geid_144_12657", "source": "5659", "target": "6408" }, { "key": "geid_144_12658", "source": "5825", "target": "8729" }, { "key": "geid_144_12659", "source": "2062", "target": "7933" }, { "key": "geid_144_12660", "source": "6061", "target": "8679" }, { "key": "geid_144_12661", "source": "3334", "target": "6878" }, { "key": "geid_144_12662", "source": "6821", "target": "8652" }, { "key": "geid_144_12663", "source": "6371", "target": "2767" }, { "key": "geid_144_12664", "source": "9157", "target": "2951" }, { "key": "geid_144_12665", "source": "1548", "target": "1865" }, { "key": "geid_144_12666", "source": "751", "target": "3632" }, { "key": "geid_144_12667", "source": "594", "target": "5740" }, { "key": "geid_144_12668", "source": "2500", "target": "3804" }, { "key": "geid_144_12669", "source": "7882", "target": "2760" }, { "key": "geid_144_12670", "source": "9768", "target": "7877" }, { "key": "geid_144_12671", "source": "6578", "target": "4676" }, { "key": "geid_144_12672", "source": "3943", "target": "3595" }, { "key": "geid_144_12673", "source": "2214", "target": "2262" }, { "key": "geid_144_12674", "source": "7374", "target": "9840" }, { "key": "geid_144_12675", "source": "2362", "target": "6950" }, { "key": "geid_144_12676", "source": "3238", "target": "2274" }, { "key": "geid_144_12677", "source": "1984", "target": "7615" }, { "key": "geid_144_12678", "source": "4845", "target": "9088" }, { "key": "geid_144_12679", "source": "9282", "target": "4299" }, { "key": "geid_144_12680", "source": "2350", "target": "8136" }, { "key": "geid_144_12681", "source": "5589", "target": "6581" }, { "key": "geid_144_12682", "source": "4383", "target": "6063" }, { "key": "geid_144_12683", "source": "2624", "target": "1959" }, { "key": "geid_144_12684", "source": "3683", "target": "4397" }, { "key": "geid_144_12685", "source": "5850", "target": "3344" }, { "key": "geid_144_12686", "source": "7274", "target": "2009" }, { "key": "geid_144_12687", "source": "5842", "target": "4790" }, { "key": "geid_144_12688", "source": "3499", "target": "3022" }, { "key": "geid_144_12689", "source": "5671", "target": "3221" }, { "key": "geid_144_12690", "source": "5493", "target": "5063" }, { "key": "geid_144_12691", "source": "601", "target": "9382" }, { "key": "geid_144_12692", "source": "8119", "target": "1661" }, { "key": "geid_144_12693", "source": "7064", "target": "9892" }, { "key": "geid_144_12694", "source": "7074", "target": "4489" }, { "key": "geid_144_12695", "source": "7250", "target": "1084" }, { "key": "geid_144_12696", "source": "8104", "target": "3570" }, { "key": "geid_144_12697", "source": "8858", "target": "9409" }, { "key": "geid_144_12698", "source": "6242", "target": "5300" }, { "key": "geid_144_12699", "source": "6869", "target": "6697" }, { "key": "geid_144_12700", "source": "2667", "target": "4171" }, { "key": "geid_144_12701", "source": "6581", "target": "5735" }, { "key": "geid_144_12702", "source": "1768", "target": "1181" }, { "key": "geid_144_12703", "source": "7416", "target": "3513" }, { "key": "geid_144_12704", "source": "8737", "target": "4583" }, { "key": "geid_144_12705", "source": "5892", "target": "891" }, { "key": "geid_144_12706", "source": "9102", "target": "9794" }, { "key": "geid_144_12707", "source": "1750", "target": "3899" }, { "key": "geid_144_12708", "source": "9296", "target": "9946" }, { "key": "geid_144_12709", "source": "7989", "target": "6625" }, { "key": "geid_144_12710", "source": "1004", "target": "31" }, { "key": "geid_144_12711", "source": "1704", "target": "4557" }, { "key": "geid_144_12712", "source": "2457", "target": "657" }, { "key": "geid_144_12713", "source": "2484", "target": "7739" }, { "key": "geid_144_12714", "source": "5889", "target": "4951" }, { "key": "geid_144_12715", "source": "9948", "target": "7655" }, { "key": "geid_144_12716", "source": "3843", "target": "6288" }, { "key": "geid_144_12717", "source": "6853", "target": "5561" }, { "key": "geid_144_12718", "source": "9238", "target": "2610" }, { "key": "geid_144_12719", "source": "3741", "target": "5899" }, { "key": "geid_144_12720", "source": "3288", "target": "7095" }, { "key": "geid_144_12721", "source": "5880", "target": "4086" }, { "key": "geid_144_12722", "source": "6931", "target": "2114" }, { "key": "geid_144_12723", "source": "3876", "target": "7567" }, { "key": "geid_144_12724", "source": "856", "target": "5735" }, { "key": "geid_144_12725", "source": "5758", "target": "9380" }, { "key": "geid_144_12726", "source": "6674", "target": "6277" }, { "key": "geid_144_12727", "source": "4532", "target": "3119" }, { "key": "geid_144_12728", "source": "8190", "target": "8456" }, { "key": "geid_144_12729", "source": "817", "target": "920" }, { "key": "geid_144_12730", "source": "5233", "target": "9149" }, { "key": "geid_144_12731", "source": "9945", "target": "2294" }, { "key": "geid_144_12732", "source": "2209", "target": "2781" }, { "key": "geid_144_12733", "source": "4207", "target": "2343" }, { "key": "geid_144_12734", "source": "8050", "target": "123" }, { "key": "geid_144_12735", "source": "8818", "target": "1556" }, { "key": "geid_144_12736", "source": "4427", "target": "1419" }, { "key": "geid_144_12737", "source": "5383", "target": "6294" }, { "key": "geid_144_12738", "source": "7100", "target": "6688" }, { "key": "geid_144_12739", "source": "5527", "target": "5858" }, { "key": "geid_144_12740", "source": "7974", "target": "1480" }, { "key": "geid_144_12741", "source": "5834", "target": "140" }, { "key": "geid_144_12742", "source": "7668", "target": "3709" }, { "key": "geid_144_12743", "source": "5010", "target": "622" }, { "key": "geid_144_12744", "source": "8762", "target": "5524" }, { "key": "geid_144_12745", "source": "4687", "target": "9378" }, { "key": "geid_144_12746", "source": "4033", "target": "3145" }, { "key": "geid_144_12747", "source": "9879", "target": "1034" }, { "key": "geid_144_12748", "source": "3191", "target": "7947" }, { "key": "geid_144_12749", "source": "5119", "target": "5251" }, { "key": "geid_144_12750", "source": "2943", "target": "8156" }, { "key": "geid_144_12751", "source": "1601", "target": "2686" }, { "key": "geid_144_12752", "source": "5376", "target": "8665" }, { "key": "geid_144_12753", "source": "425", "target": "5111" }, { "key": "geid_144_12754", "source": "5608", "target": "5650" }, { "key": "geid_144_12755", "source": "9126", "target": "5089" }, { "key": "geid_144_12756", "source": "9152", "target": "8241" }, { "key": "geid_144_12757", "source": "3554", "target": "9831" }, { "key": "geid_144_12758", "source": "9196", "target": "738" }, { "key": "geid_144_12759", "source": "5232", "target": "7098" }, { "key": "geid_144_12760", "source": "8966", "target": "2919" }, { "key": "geid_144_12761", "source": "1986", "target": "8761" }, { "key": "geid_144_12762", "source": "581", "target": "27" }, { "key": "geid_144_12763", "source": "5249", "target": "8319" }, { "key": "geid_144_12764", "source": "3591", "target": "8403" }, { "key": "geid_144_12765", "source": "5778", "target": "5299" }, { "key": "geid_144_12766", "source": "276", "target": "5920" }, { "key": "geid_144_12767", "source": "7887", "target": "6771" }, { "key": "geid_144_12768", "source": "7201", "target": "6899" }, { "key": "geid_144_12769", "source": "6230", "target": "6742" }, { "key": "geid_144_12770", "source": "487", "target": "6988" }, { "key": "geid_144_12771", "source": "4804", "target": "8213" }, { "key": "geid_144_12772", "source": "7796", "target": "2219" }, { "key": "geid_144_12773", "source": "1727", "target": "7835" }, { "key": "geid_144_12774", "source": "5304", "target": "9419" }, { "key": "geid_144_12775", "source": "6346", "target": "6761" }, { "key": "geid_144_12776", "source": "1377", "target": "231" }, { "key": "geid_144_12777", "source": "5591", "target": "7918" }, { "key": "geid_144_12778", "source": "1692", "target": "5836" }, { "key": "geid_144_12779", "source": "8287", "target": "5106" }, { "key": "geid_144_12780", "source": "9561", "target": "1614" }, { "key": "geid_144_12781", "source": "2809", "target": "5849" }, { "key": "geid_144_12782", "source": "5988", "target": "8828" }, { "key": "geid_144_12783", "source": "6656", "target": "1816" }, { "key": "geid_144_12784", "source": "8935", "target": "2239" }, { "key": "geid_144_12785", "source": "8464", "target": "5702" }, { "key": "geid_144_12786", "source": "3516", "target": "1866" }, { "key": "geid_144_12787", "source": "6207", "target": "6757" }, { "key": "geid_144_12788", "source": "1044", "target": "2937" }, { "key": "geid_144_12789", "source": "1425", "target": "3511" }, { "key": "geid_144_12790", "source": "50", "target": "5174" }, { "key": "geid_144_12791", "source": "3774", "target": "6484" }, { "key": "geid_144_12792", "source": "5480", "target": "3805" }, { "key": "geid_144_12793", "source": "4715", "target": "1950" }, { "key": "geid_144_12794", "source": "6253", "target": "6082" }, { "key": "geid_144_12795", "source": "8152", "target": "9126" }, { "key": "geid_144_12796", "source": "9917", "target": "703" }, { "key": "geid_144_12797", "source": "4906", "target": "8205" }, { "key": "geid_144_12798", "source": "3926", "target": "8856" }, { "key": "geid_144_12799", "source": "4603", "target": "8838" }, { "key": "geid_144_12800", "source": "4558", "target": "1596" }, { "key": "geid_144_12801", "source": "2980", "target": "6613" }, { "key": "geid_144_12802", "source": "3511", "target": "1611" }, { "key": "geid_144_12803", "source": "2", "target": "5761" }, { "key": "geid_144_12804", "source": "9428", "target": "1454" }, { "key": "geid_144_12805", "source": "9799", "target": "6702" }, { "key": "geid_144_12806", "source": "1115", "target": "4928" }, { "key": "geid_144_12807", "source": "3273", "target": "5553" }, { "key": "geid_144_12808", "source": "5511", "target": "2106" }, { "key": "geid_144_12809", "source": "702", "target": "6133" }, { "key": "geid_144_12810", "source": "3759", "target": "2077" }, { "key": "geid_144_12811", "source": "851", "target": "5791" }, { "key": "geid_144_12812", "source": "5458", "target": "9182" }, { "key": "geid_144_12813", "source": "9796", "target": "5613" }, { "key": "geid_144_12814", "source": "6814", "target": "2642" }, { "key": "geid_144_12815", "source": "2038", "target": "8953" }, { "key": "geid_144_12816", "source": "1211", "target": "683" }, { "key": "geid_144_12817", "source": "2628", "target": "261" }, { "key": "geid_144_12818", "source": "8302", "target": "8311" }, { "key": "geid_144_12819", "source": "2799", "target": "5970" }, { "key": "geid_144_12820", "source": "2240", "target": "8718" }, { "key": "geid_144_12821", "source": "8205", "target": "1952" }, { "key": "geid_144_12822", "source": "3054", "target": "3411" }, { "key": "geid_144_12823", "source": "6435", "target": "6438" }, { "key": "geid_144_12824", "source": "8048", "target": "5765" }, { "key": "geid_144_12825", "source": "3830", "target": "5379" }, { "key": "geid_144_12826", "source": "4648", "target": "1969" }, { "key": "geid_144_12827", "source": "1102", "target": "1933" }, { "key": "geid_144_12828", "source": "7039", "target": "8558" }, { "key": "geid_144_12829", "source": "1053", "target": "6167" }, { "key": "geid_144_12830", "source": "8033", "target": "6447" }, { "key": "geid_144_12831", "source": "9918", "target": "3834" }, { "key": "geid_144_12832", "source": "2991", "target": "110" }, { "key": "geid_144_12833", "source": "1635", "target": "374" }, { "key": "geid_144_12834", "source": "4218", "target": "1616" }, { "key": "geid_144_12835", "source": "8069", "target": "5846" }, { "key": "geid_144_12836", "source": "2126", "target": "8346" }, { "key": "geid_144_12837", "source": "5077", "target": "9048" }, { "key": "geid_144_12838", "source": "6193", "target": "7886" }, { "key": "geid_144_12839", "source": "4917", "target": "2083" }, { "key": "geid_144_12840", "source": "8640", "target": "1585" }, { "key": "geid_144_12841", "source": "8212", "target": "3054" }, { "key": "geid_144_12842", "source": "2182", "target": "1370" }, { "key": "geid_144_12843", "source": "9391", "target": "3641" }, { "key": "geid_144_12844", "source": "7251", "target": "273" }, { "key": "geid_144_12845", "source": "2065", "target": "1559" }, { "key": "geid_144_12846", "source": "6439", "target": "2865" }, { "key": "geid_144_12847", "source": "198", "target": "533" }, { "key": "geid_144_12848", "source": "7557", "target": "8371" }, { "key": "geid_144_12849", "source": "1181", "target": "8706" }, { "key": "geid_144_12850", "source": "3812", "target": "363" }, { "key": "geid_144_12851", "source": "3283", "target": "1664" }, { "key": "geid_144_12852", "source": "1150", "target": "3283" }, { "key": "geid_144_12853", "source": "4072", "target": "1940" }, { "key": "geid_144_12854", "source": "8919", "target": "8471" }, { "key": "geid_144_12855", "source": "2920", "target": "4824" }, { "key": "geid_144_12856", "source": "8216", "target": "8098" }, { "key": "geid_144_12857", "source": "9712", "target": "2256" }, { "key": "geid_144_12858", "source": "4459", "target": "5260" }, { "key": "geid_144_12859", "source": "3270", "target": "5872" }, { "key": "geid_144_12860", "source": "3023", "target": "7741" }, { "key": "geid_144_12861", "source": "5741", "target": "5707" }, { "key": "geid_144_12862", "source": "4260", "target": "6137" }, { "key": "geid_144_12863", "source": "2747", "target": "7759" }, { "key": "geid_144_12864", "source": "5541", "target": "1662" }, { "key": "geid_144_12865", "source": "7297", "target": "279" }, { "key": "geid_144_12866", "source": "4268", "target": "9864" }, { "key": "geid_144_12867", "source": "304", "target": "1105" }, { "key": "geid_144_12868", "source": "7466", "target": "1726" }, { "key": "geid_144_12869", "source": "276", "target": "4110" }, { "key": "geid_144_12870", "source": "8522", "target": "6586" }, { "key": "geid_144_12871", "source": "505", "target": "2509" }, { "key": "geid_144_12872", "source": "6533", "target": "7261" }, { "key": "geid_144_12873", "source": "6658", "target": "2117" }, { "key": "geid_144_12874", "source": "9049", "target": "5429" }, { "key": "geid_144_12875", "source": "7879", "target": "4014" }, { "key": "geid_144_12876", "source": "7087", "target": "1439" }, { "key": "geid_144_12877", "source": "7580", "target": "9991" }, { "key": "geid_144_12878", "source": "4188", "target": "6288" }, { "key": "geid_144_12879", "source": "7164", "target": "584" }, { "key": "geid_144_12880", "source": "2226", "target": "2073" }, { "key": "geid_144_12881", "source": "677", "target": "4539" }, { "key": "geid_144_12882", "source": "9194", "target": "8297" }, { "key": "geid_144_12883", "source": "4196", "target": "1066" }, { "key": "geid_144_12884", "source": "5605", "target": "5369" }, { "key": "geid_144_12885", "source": "3222", "target": "3280" }, { "key": "geid_144_12886", "source": "4142", "target": "7327" }, { "key": "geid_144_12887", "source": "4034", "target": "5417" }, { "key": "geid_144_12888", "source": "5768", "target": "5321" }, { "key": "geid_144_12889", "source": "2873", "target": "839" }, { "key": "geid_144_12890", "source": "4382", "target": "6525" }, { "key": "geid_144_12891", "source": "7680", "target": "990" }, { "key": "geid_144_12892", "source": "8578", "target": "3192" }, { "key": "geid_144_12893", "source": "7253", "target": "3190" }, { "key": "geid_144_12894", "source": "6193", "target": "9357" }, { "key": "geid_144_12895", "source": "7638", "target": "702" }, { "key": "geid_144_12896", "source": "8316", "target": "6973" }, { "key": "geid_144_12897", "source": "2949", "target": "8799" }, { "key": "geid_144_12898", "source": "9189", "target": "3326" }, { "key": "geid_144_12899", "source": "7764", "target": "7190" }, { "key": "geid_144_12900", "source": "8539", "target": "7449" }, { "key": "geid_144_12901", "source": "3798", "target": "7997" }, { "key": "geid_144_12902", "source": "6202", "target": "7859" }, { "key": "geid_144_12903", "source": "4576", "target": "579" }, { "key": "geid_144_12904", "source": "4676", "target": "7397" }, { "key": "geid_144_12905", "source": "447", "target": "1416" }, { "key": "geid_144_12906", "source": "8402", "target": "126" }, { "key": "geid_144_12907", "source": "2586", "target": "3474" }, { "key": "geid_144_12908", "source": "3320", "target": "7328" }, { "key": "geid_144_12909", "source": "3549", "target": "4155" }, { "key": "geid_144_12910", "source": "1778", "target": "9616" }, { "key": "geid_144_12911", "source": "2712", "target": "4848" }, { "key": "geid_144_12912", "source": "1917", "target": "5186" }, { "key": "geid_144_12913", "source": "8073", "target": "5730" }, { "key": "geid_144_12914", "source": "3803", "target": "5075" }, { "key": "geid_144_12915", "source": "1539", "target": "1399" }, { "key": "geid_144_12916", "source": "1489", "target": "40" }, { "key": "geid_144_12917", "source": "8572", "target": "8678" }, { "key": "geid_144_12918", "source": "3152", "target": "4576" }, { "key": "geid_144_12919", "source": "7938", "target": "7128" }, { "key": "geid_144_12920", "source": "1768", "target": "7206" }, { "key": "geid_144_12921", "source": "6110", "target": "9318" }, { "key": "geid_144_12922", "source": "7259", "target": "3047" }, { "key": "geid_144_12923", "source": "5524", "target": "9211" }, { "key": "geid_144_12924", "source": "8939", "target": "5177" }, { "key": "geid_144_12925", "source": "5184", "target": "8705" }, { "key": "geid_144_12926", "source": "967", "target": "3465" }, { "key": "geid_144_12927", "source": "8337", "target": "7059" }, { "key": "geid_144_12928", "source": "6319", "target": "5445" }, { "key": "geid_144_12929", "source": "4942", "target": "3432" }, { "key": "geid_144_12930", "source": "1706", "target": "3149" }, { "key": "geid_144_12931", "source": "316", "target": "3786" }, { "key": "geid_144_12932", "source": "2119", "target": "6112" }, { "key": "geid_144_12933", "source": "8601", "target": "6614" }, { "key": "geid_144_12934", "source": "5036", "target": "1185" }, { "key": "geid_144_12935", "source": "8637", "target": "4989" }, { "key": "geid_144_12936", "source": "4793", "target": "3796" }, { "key": "geid_144_12937", "source": "9442", "target": "6551" }, { "key": "geid_144_12938", "source": "2484", "target": "4530" }, { "key": "geid_144_12939", "source": "8324", "target": "3546" }, { "key": "geid_144_12940", "source": "7005", "target": "4387" }, { "key": "geid_144_12941", "source": "8371", "target": "5195" }, { "key": "geid_144_12942", "source": "768", "target": "880" }, { "key": "geid_144_12943", "source": "2795", "target": "3590" }, { "key": "geid_144_12944", "source": "6996", "target": "4733" }, { "key": "geid_144_12945", "source": "6156", "target": "4976" }, { "key": "geid_144_12946", "source": "3874", "target": "8751" }, { "key": "geid_144_12947", "source": "1721", "target": "5948" }, { "key": "geid_144_12948", "source": "5205", "target": "6835" }, { "key": "geid_144_12949", "source": "773", "target": "2515" }, { "key": "geid_144_12950", "source": "9748", "target": "2867" }, { "key": "geid_144_12951", "source": "4215", "target": "935" }, { "key": "geid_144_12952", "source": "4758", "target": "2106" }, { "key": "geid_144_12953", "source": "8817", "target": "6588" }, { "key": "geid_144_12954", "source": "5178", "target": "2598" }, { "key": "geid_144_12955", "source": "6593", "target": "546" }, { "key": "geid_144_12956", "source": "3854", "target": "9774" }, { "key": "geid_144_12957", "source": "2780", "target": "1644" }, { "key": "geid_144_12958", "source": "6629", "target": "7693" }, { "key": "geid_144_12959", "source": "415", "target": "7428" }, { "key": "geid_144_12960", "source": "6694", "target": "5675" }, { "key": "geid_144_12961", "source": "8763", "target": "9121" }, { "key": "geid_144_12962", "source": "4960", "target": "7750" }, { "key": "geid_144_12963", "source": "6088", "target": "6672" }, { "key": "geid_144_12964", "source": "5259", "target": "8063" }, { "key": "geid_144_12965", "source": "8029", "target": "5267" }, { "key": "geid_144_12966", "source": "3332", "target": "7036" }, { "key": "geid_144_12967", "source": "3810", "target": "2238" }, { "key": "geid_144_12968", "source": "8108", "target": "8864" }, { "key": "geid_144_12969", "source": "505", "target": "3900" }, { "key": "geid_144_12970", "source": "8218", "target": "3046" }, { "key": "geid_144_12971", "source": "127", "target": "2411" }, { "key": "geid_144_12972", "source": "7011", "target": "2390" }, { "key": "geid_144_12973", "source": "7839", "target": "119" }, { "key": "geid_144_12974", "source": "7109", "target": "1356" }, { "key": "geid_144_12975", "source": "7744", "target": "3332" }, { "key": "geid_144_12976", "source": "8371", "target": "9965" }, { "key": "geid_144_12977", "source": "1831", "target": "6902" }, { "key": "geid_144_12978", "source": "8248", "target": "6560" }, { "key": "geid_144_12979", "source": "5893", "target": "7375" }, { "key": "geid_144_12980", "source": "6924", "target": "3325" }, { "key": "geid_144_12981", "source": "2064", "target": "4273" }, { "key": "geid_144_12982", "source": "7906", "target": "7382" }, { "key": "geid_144_12983", "source": "2316", "target": "4770" }, { "key": "geid_144_12984", "source": "394", "target": "1128" }, { "key": "geid_144_12985", "source": "3476", "target": "5858" }, { "key": "geid_144_12986", "source": "6691", "target": "7671" }, { "key": "geid_144_12987", "source": "982", "target": "806" }, { "key": "geid_144_12988", "source": "9705", "target": "6705" }, { "key": "geid_144_12989", "source": "4986", "target": "2963" }, { "key": "geid_144_12990", "source": "8018", "target": "3745" }, { "key": "geid_144_12991", "source": "9840", "target": "7599" }, { "key": "geid_144_12992", "source": "1118", "target": "2861" }, { "key": "geid_144_12993", "source": "3630", "target": "1779" }, { "key": "geid_144_12994", "source": "8620", "target": "9244" }, { "key": "geid_144_12995", "source": "8717", "target": "9628" }, { "key": "geid_144_12996", "source": "2862", "target": "3295" }, { "key": "geid_144_12997", "source": "5730", "target": "1905" }, { "key": "geid_144_12998", "source": "9836", "target": "9152" }, { "key": "geid_144_12999", "source": "7182", "target": "3827" }, { "key": "geid_144_13000", "source": "6116", "target": "3141" }, { "key": "geid_144_13001", "source": "1882", "target": "4029" }, { "key": "geid_144_13002", "source": "125", "target": "9166" }, { "key": "geid_144_13003", "source": "4488", "target": "5940" }, { "key": "geid_144_13004", "source": "8930", "target": "9078" }, { "key": "geid_144_13005", "source": "8884", "target": "5130" }, { "key": "geid_144_13006", "source": "2804", "target": "7787" }, { "key": "geid_144_13007", "source": "6858", "target": "8487" }, { "key": "geid_144_13008", "source": "504", "target": "2444" }, { "key": "geid_144_13009", "source": "720", "target": "8471" }, { "key": "geid_144_13010", "source": "2463", "target": "1857" }, { "key": "geid_144_13011", "source": "2324", "target": "6087" }, { "key": "geid_144_13012", "source": "689", "target": "928" }, { "key": "geid_144_13013", "source": "5825", "target": "7526" }, { "key": "geid_144_13014", "source": "1217", "target": "2292" }, { "key": "geid_144_13015", "source": "1167", "target": "8695" }, { "key": "geid_144_13016", "source": "6221", "target": "4947" }, { "key": "geid_144_13017", "source": "9630", "target": "1979" }, { "key": "geid_144_13018", "source": "1070", "target": "6890" }, { "key": "geid_144_13019", "source": "3066", "target": "8323" }, { "key": "geid_144_13020", "source": "8150", "target": "1328" }, { "key": "geid_144_13021", "source": "9478", "target": "9198" }, { "key": "geid_144_13022", "source": "4322", "target": "8095" }, { "key": "geid_144_13023", "source": "820", "target": "6023" }, { "key": "geid_144_13024", "source": "6302", "target": "2899" }, { "key": "geid_144_13025", "source": "7918", "target": "8003" }, { "key": "geid_144_13026", "source": "4535", "target": "2127" }, { "key": "geid_144_13027", "source": "8653", "target": "3111" }, { "key": "geid_144_13028", "source": "6001", "target": "2237" }, { "key": "geid_144_13029", "source": "9333", "target": "6112" }, { "key": "geid_144_13030", "source": "5851", "target": "7233" }, { "key": "geid_144_13031", "source": "7625", "target": "8283" }, { "key": "geid_144_13032", "source": "615", "target": "9657" }, { "key": "geid_144_13033", "source": "3842", "target": "1592" }, { "key": "geid_144_13034", "source": "6853", "target": "7481" }, { "key": "geid_144_13035", "source": "9416", "target": "5638" }, { "key": "geid_144_13036", "source": "15", "target": "7481" }, { "key": "geid_144_13037", "source": "2140", "target": "9215" }, { "key": "geid_144_13038", "source": "1265", "target": "8089" }, { "key": "geid_144_13039", "source": "7830", "target": "6416" }, { "key": "geid_144_13040", "source": "694", "target": "4624" }, { "key": "geid_144_13041", "source": "5723", "target": "9453" }, { "key": "geid_144_13042", "source": "4131", "target": "1386" }, { "key": "geid_144_13043", "source": "8246", "target": "1066" }, { "key": "geid_144_13044", "source": "212", "target": "1656" }, { "key": "geid_144_13045", "source": "9993", "target": "3187" }, { "key": "geid_144_13046", "source": "1169", "target": "5655" }, { "key": "geid_144_13047", "source": "6670", "target": "8388" }, { "key": "geid_144_13048", "source": "3169", "target": "630" }, { "key": "geid_144_13049", "source": "8118", "target": "3700" }, { "key": "geid_144_13050", "source": "6459", "target": "7327" }, { "key": "geid_144_13051", "source": "6089", "target": "2918" }, { "key": "geid_144_13052", "source": "7336", "target": "4388" }, { "key": "geid_144_13053", "source": "7811", "target": "8517" }, { "key": "geid_144_13054", "source": "8279", "target": "5813" }, { "key": "geid_144_13055", "source": "8440", "target": "7672" }, { "key": "geid_144_13056", "source": "8452", "target": "9002" }, { "key": "geid_144_13057", "source": "9279", "target": "7645" }, { "key": "geid_144_13058", "source": "2421", "target": "2378" }, { "key": "geid_144_13059", "source": "1503", "target": "7798" }, { "key": "geid_144_13060", "source": "2714", "target": "546" }, { "key": "geid_144_13061", "source": "8911", "target": "3807" }, { "key": "geid_144_13062", "source": "2240", "target": "2897" }, { "key": "geid_144_13063", "source": "1947", "target": "2024" }, { "key": "geid_144_13064", "source": "7548", "target": "8270" }, { "key": "geid_144_13065", "source": "7795", "target": "6418" }, { "key": "geid_144_13066", "source": "3739", "target": "3273" }, { "key": "geid_144_13067", "source": "6785", "target": "7476" }, { "key": "geid_144_13068", "source": "3489", "target": "9959" }, { "key": "geid_144_13069", "source": "8070", "target": "5022" }, { "key": "geid_144_13070", "source": "421", "target": "4257" }, { "key": "geid_144_13071", "source": "2547", "target": "9538" }, { "key": "geid_144_13072", "source": "2438", "target": "4984" }, { "key": "geid_144_13073", "source": "7721", "target": "5696" }, { "key": "geid_144_13074", "source": "3901", "target": "7675" }, { "key": "geid_144_13075", "source": "9186", "target": "9557" }, { "key": "geid_144_13076", "source": "3067", "target": "4758" }, { "key": "geid_144_13077", "source": "5414", "target": "205" }, { "key": "geid_144_13078", "source": "5203", "target": "4021" }, { "key": "geid_144_13079", "source": "5965", "target": "6201" }, { "key": "geid_144_13080", "source": "7457", "target": "4296" }, { "key": "geid_144_13081", "source": "6228", "target": "7218" }, { "key": "geid_144_13082", "source": "7327", "target": "7696" }, { "key": "geid_144_13083", "source": "8999", "target": "5876" }, { "key": "geid_144_13084", "source": "3261", "target": "5276" }, { "key": "geid_144_13085", "source": "4080", "target": "3394" }, { "key": "geid_144_13086", "source": "9697", "target": "7865" }, { "key": "geid_144_13087", "source": "5069", "target": "9888" }, { "key": "geid_144_13088", "source": "4235", "target": "6306" }, { "key": "geid_144_13089", "source": "9246", "target": "8994" }, { "key": "geid_144_13090", "source": "5922", "target": "1179" }, { "key": "geid_144_13091", "source": "24", "target": "5653" }, { "key": "geid_144_13092", "source": "2156", "target": "7106" }, { "key": "geid_144_13093", "source": "9238", "target": "770" }, { "key": "geid_144_13094", "source": "2038", "target": "1814" }, { "key": "geid_144_13095", "source": "7606", "target": "4180" }, { "key": "geid_144_13096", "source": "2116", "target": "4855" }, { "key": "geid_144_13097", "source": "3592", "target": "1393" }, { "key": "geid_144_13098", "source": "6730", "target": "4752" }, { "key": "geid_144_13099", "source": "2789", "target": "6624" }, { "key": "geid_144_13100", "source": "8702", "target": "8922" }, { "key": "geid_144_13101", "source": "3726", "target": "5979" }, { "key": "geid_144_13102", "source": "5302", "target": "7186" }, { "key": "geid_144_13103", "source": "4427", "target": "7876" }, { "key": "geid_144_13104", "source": "5754", "target": "5616" }, { "key": "geid_144_13105", "source": "3768", "target": "3303" }, { "key": "geid_144_13106", "source": "4548", "target": "9334" }, { "key": "geid_144_13107", "source": "6356", "target": "9500" }, { "key": "geid_144_13108", "source": "9746", "target": "8568" }, { "key": "geid_144_13109", "source": "5713", "target": "7000" }, { "key": "geid_144_13110", "source": "5737", "target": "9433" }, { "key": "geid_144_13111", "source": "7813", "target": "2988" }, { "key": "geid_144_13112", "source": "2598", "target": "2481" }, { "key": "geid_144_13113", "source": "9002", "target": "9463" }, { "key": "geid_144_13114", "source": "3374", "target": "8812" }, { "key": "geid_144_13115", "source": "8649", "target": "150" }, { "key": "geid_144_13116", "source": "9841", "target": "4700" }, { "key": "geid_144_13117", "source": "5244", "target": "2802" }, { "key": "geid_144_13118", "source": "7918", "target": "976" }, { "key": "geid_144_13119", "source": "9736", "target": "6567" }, { "key": "geid_144_13120", "source": "2478", "target": "4293" }, { "key": "geid_144_13121", "source": "8239", "target": "9030" }, { "key": "geid_144_13122", "source": "3909", "target": "1882" }, { "key": "geid_144_13123", "source": "8578", "target": "7375" }, { "key": "geid_144_13124", "source": "4964", "target": "7143" }, { "key": "geid_144_13125", "source": "4077", "target": "2143" }, { "key": "geid_144_13126", "source": "6598", "target": "5316" }, { "key": "geid_144_13127", "source": "1815", "target": "313" }, { "key": "geid_144_13128", "source": "78", "target": "5192" }, { "key": "geid_144_13129", "source": "1140", "target": "2058" }, { "key": "geid_144_13130", "source": "2924", "target": "6443" }, { "key": "geid_144_13131", "source": "1351", "target": "9751" }, { "key": "geid_144_13132", "source": "2792", "target": "420" }, { "key": "geid_144_13133", "source": "6711", "target": "5644" }, { "key": "geid_144_13134", "source": "1343", "target": "9036" }, { "key": "geid_144_13135", "source": "5734", "target": "535" }, { "key": "geid_144_13136", "source": "2016", "target": "1564" }, { "key": "geid_144_13137", "source": "3719", "target": "8934" }, { "key": "geid_144_13138", "source": "6929", "target": "7555" }, { "key": "geid_144_13139", "source": "5318", "target": "6209" }, { "key": "geid_144_13140", "source": "7783", "target": "2149" }, { "key": "geid_144_13141", "source": "4345", "target": "2154" }, { "key": "geid_144_13142", "source": "3233", "target": "7515" }, { "key": "geid_144_13143", "source": "5875", "target": "7261" }, { "key": "geid_144_13144", "source": "491", "target": "8710" }, { "key": "geid_144_13145", "source": "8322", "target": "6204" }, { "key": "geid_144_13146", "source": "217", "target": "3596" }, { "key": "geid_144_13147", "source": "2184", "target": "5865" }, { "key": "geid_144_13148", "source": "1059", "target": "237" }, { "key": "geid_144_13149", "source": "1303", "target": "2823" }, { "key": "geid_144_13150", "source": "5212", "target": "1776" }, { "key": "geid_144_13151", "source": "6378", "target": "2249" }, { "key": "geid_144_13152", "source": "54", "target": "3145" }, { "key": "geid_144_13153", "source": "728", "target": "5799" }, { "key": "geid_144_13154", "source": "380", "target": "7183" }, { "key": "geid_144_13155", "source": "6747", "target": "1947" }, { "key": "geid_144_13156", "source": "1864", "target": "7796" }, { "key": "geid_144_13157", "source": "5517", "target": "6824" }, { "key": "geid_144_13158", "source": "795", "target": "8302" }, { "key": "geid_144_13159", "source": "5880", "target": "9175" }, { "key": "geid_144_13160", "source": "4183", "target": "623" }, { "key": "geid_144_13161", "source": "5070", "target": "3549" }, { "key": "geid_144_13162", "source": "320", "target": "1182" }, { "key": "geid_144_13163", "source": "3208", "target": "8200" }, { "key": "geid_144_13164", "source": "3014", "target": "2416" }, { "key": "geid_144_13165", "source": "6128", "target": "4543" }, { "key": "geid_144_13166", "source": "4937", "target": "8176" }, { "key": "geid_144_13167", "source": "7048", "target": "523" }, { "key": "geid_144_13168", "source": "2917", "target": "9668" }, { "key": "geid_144_13169", "source": "1182", "target": "5085" }, { "key": "geid_144_13170", "source": "3674", "target": "1723" }, { "key": "geid_144_13171", "source": "7624", "target": "8046" }, { "key": "geid_144_13172", "source": "2771", "target": "7186" }, { "key": "geid_144_13173", "source": "2040", "target": "7645" }, { "key": "geid_144_13174", "source": "1897", "target": "2014" }, { "key": "geid_144_13175", "source": "1517", "target": "831" }, { "key": "geid_144_13176", "source": "8496", "target": "3794" }, { "key": "geid_144_13177", "source": "105", "target": "2190" }, { "key": "geid_144_13178", "source": "5760", "target": "455" }, { "key": "geid_144_13179", "source": "4045", "target": "2032" }, { "key": "geid_144_13180", "source": "7059", "target": "4195" }, { "key": "geid_144_13181", "source": "5682", "target": "9055" }, { "key": "geid_144_13182", "source": "7582", "target": "110" }, { "key": "geid_144_13183", "source": "273", "target": "1235" }, { "key": "geid_144_13184", "source": "8053", "target": "4096" }, { "key": "geid_144_13185", "source": "9968", "target": "4700" }, { "key": "geid_144_13186", "source": "1073", "target": "1439" }, { "key": "geid_144_13187", "source": "2963", "target": "2224" }, { "key": "geid_144_13188", "source": "3301", "target": "1904" }, { "key": "geid_144_13189", "source": "8533", "target": "1899" }, { "key": "geid_144_13190", "source": "9892", "target": "7516" }, { "key": "geid_144_13191", "source": "1477", "target": "6093" }, { "key": "geid_144_13192", "source": "3661", "target": "9493" }, { "key": "geid_144_13193", "source": "9742", "target": "4981" }, { "key": "geid_144_13194", "source": "8506", "target": "5749" }, { "key": "geid_144_13195", "source": "3874", "target": "4207" }, { "key": "geid_144_13196", "source": "5887", "target": "6041" }, { "key": "geid_144_13197", "source": "5260", "target": "4400" }, { "key": "geid_144_13198", "source": "8487", "target": "4679" }, { "key": "geid_144_13199", "source": "8574", "target": "1305" }, { "key": "geid_144_13200", "source": "2072", "target": "7751" }, { "key": "geid_144_13201", "source": "7901", "target": "8068" }, { "key": "geid_144_13202", "source": "6714", "target": "9724" }, { "key": "geid_144_13203", "source": "4589", "target": "2883" }, { "key": "geid_144_13204", "source": "6403", "target": "3671" }, { "key": "geid_144_13205", "source": "5478", "target": "9078" }, { "key": "geid_144_13206", "source": "4692", "target": "6154" }, { "key": "geid_144_13207", "source": "2576", "target": "5053" }, { "key": "geid_144_13208", "source": "8961", "target": "7109" }, { "key": "geid_144_13209", "source": "6560", "target": "6212" }, { "key": "geid_144_13210", "source": "9155", "target": "3349" }, { "key": "geid_144_13211", "source": "8718", "target": "1701" }, { "key": "geid_144_13212", "source": "3308", "target": "8170" }, { "key": "geid_144_13213", "source": "6001", "target": "8729" }, { "key": "geid_144_13214", "source": "7459", "target": "2137" }, { "key": "geid_144_13215", "source": "9340", "target": "6725" }, { "key": "geid_144_13216", "source": "7898", "target": "8245" }, { "key": "geid_144_13217", "source": "6215", "target": "5266" }, { "key": "geid_144_13218", "source": "7150", "target": "7645" }, { "key": "geid_144_13219", "source": "2984", "target": "323" }, { "key": "geid_144_13220", "source": "8419", "target": "9474" }, { "key": "geid_144_13221", "source": "3872", "target": "8313" }, { "key": "geid_144_13222", "source": "803", "target": "6206" }, { "key": "geid_144_13223", "source": "2702", "target": "5816" }, { "key": "geid_144_13224", "source": "9609", "target": "9014" }, { "key": "geid_144_13225", "source": "7061", "target": "5984" }, { "key": "geid_144_13226", "source": "1480", "target": "2226" }, { "key": "geid_144_13227", "source": "9535", "target": "5490" }, { "key": "geid_144_13228", "source": "1508", "target": "1619" }, { "key": "geid_144_13229", "source": "5184", "target": "1020" }, { "key": "geid_144_13230", "source": "9875", "target": "3221" }, { "key": "geid_144_13231", "source": "5303", "target": "9992" }, { "key": "geid_144_13232", "source": "5395", "target": "5504" }, { "key": "geid_144_13233", "source": "1478", "target": "494" }, { "key": "geid_144_13234", "source": "6532", "target": "1596" }, { "key": "geid_144_13235", "source": "872", "target": "8360" }, { "key": "geid_144_13236", "source": "2223", "target": "4960" }, { "key": "geid_144_13237", "source": "8512", "target": "7266" }, { "key": "geid_144_13238", "source": "7113", "target": "4054" }, { "key": "geid_144_13239", "source": "1232", "target": "5626" }, { "key": "geid_144_13240", "source": "8069", "target": "9491" }, { "key": "geid_144_13241", "source": "2023", "target": "1416" }, { "key": "geid_144_13242", "source": "6673", "target": "1650" }, { "key": "geid_144_13243", "source": "3107", "target": "2664" }, { "key": "geid_144_13244", "source": "5691", "target": "3724" }, { "key": "geid_144_13245", "source": "6674", "target": "5558" }, { "key": "geid_144_13246", "source": "4768", "target": "7667" }, { "key": "geid_144_13247", "source": "6020", "target": "1334" }, { "key": "geid_144_13248", "source": "3747", "target": "4826" }, { "key": "geid_144_13249", "source": "5745", "target": "4382" }, { "key": "geid_144_13250", "source": "433", "target": "6979" }, { "key": "geid_144_13251", "source": "6872", "target": "2561" }, { "key": "geid_144_13252", "source": "3915", "target": "6778" }, { "key": "geid_144_13253", "source": "6794", "target": "6978" }, { "key": "geid_144_13254", "source": "3499", "target": "9083" }, { "key": "geid_144_13255", "source": "7337", "target": "3830" }, { "key": "geid_144_13256", "source": "1485", "target": "2847" }, { "key": "geid_144_13257", "source": "9797", "target": "4443" }, { "key": "geid_144_13258", "source": "1778", "target": "2287" }, { "key": "geid_144_13259", "source": "1103", "target": "5479" }, { "key": "geid_144_13260", "source": "4670", "target": "492" }, { "key": "geid_144_13261", "source": "2724", "target": "7661" }, { "key": "geid_144_13262", "source": "8854", "target": "7889" }, { "key": "geid_144_13263", "source": "6526", "target": "7439" }, { "key": "geid_144_13264", "source": "4148", "target": "1429" }, { "key": "geid_144_13265", "source": "1325", "target": "4823" }, { "key": "geid_144_13266", "source": "5418", "target": "6740" }, { "key": "geid_144_13267", "source": "6388", "target": "6531" }, { "key": "geid_144_13268", "source": "8002", "target": "3567" }, { "key": "geid_144_13269", "source": "2744", "target": "5404" }, { "key": "geid_144_13270", "source": "848", "target": "8895" }, { "key": "geid_144_13271", "source": "4676", "target": "4763" }, { "key": "geid_144_13272", "source": "9787", "target": "5286" }, { "key": "geid_144_13273", "source": "9086", "target": "2189" }, { "key": "geid_144_13274", "source": "1586", "target": "794" }, { "key": "geid_144_13275", "source": "3172", "target": "4843" }, { "key": "geid_144_13276", "source": "7748", "target": "8211" }, { "key": "geid_144_13277", "source": "7297", "target": "4733" }, { "key": "geid_144_13278", "source": "697", "target": "2816" }, { "key": "geid_144_13279", "source": "3259", "target": "7765" }, { "key": "geid_144_13280", "source": "4876", "target": "9310" }, { "key": "geid_144_13281", "source": "8972", "target": "3694" }, { "key": "geid_144_13282", "source": "7235", "target": "6897" }, { "key": "geid_144_13283", "source": "6487", "target": "5405" }, { "key": "geid_144_13284", "source": "4053", "target": "1884" }, { "key": "geid_144_13285", "source": "6250", "target": "5120" }, { "key": "geid_144_13286", "source": "6521", "target": "7020" }, { "key": "geid_144_13287", "source": "574", "target": "1065" }, { "key": "geid_144_13288", "source": "8837", "target": "743" }, { "key": "geid_144_13289", "source": "9437", "target": "402" }, { "key": "geid_144_13290", "source": "9649", "target": "3257" }, { "key": "geid_144_13291", "source": "8086", "target": "9892" }, { "key": "geid_144_13292", "source": "7348", "target": "3765" }, { "key": "geid_144_13293", "source": "6916", "target": "8019" }, { "key": "geid_144_13294", "source": "1258", "target": "908" }, { "key": "geid_144_13295", "source": "9324", "target": "3188" }, { "key": "geid_144_13296", "source": "5828", "target": "520" }, { "key": "geid_144_13297", "source": "1354", "target": "1910" }, { "key": "geid_144_13298", "source": "8865", "target": "2956" }, { "key": "geid_144_13299", "source": "9487", "target": "6323" }, { "key": "geid_144_13300", "source": "8707", "target": "6832" }, { "key": "geid_144_13301", "source": "467", "target": "8039" }, { "key": "geid_144_13302", "source": "3163", "target": "2982" }, { "key": "geid_144_13303", "source": "8950", "target": "3369" }, { "key": "geid_144_13304", "source": "2318", "target": "7927" }, { "key": "geid_144_13305", "source": "368", "target": "1259" }, { "key": "geid_144_13306", "source": "7484", "target": "3751" }, { "key": "geid_144_13307", "source": "5354", "target": "9230" }, { "key": "geid_144_13308", "source": "221", "target": "962" }, { "key": "geid_144_13309", "source": "6947", "target": "8270" }, { "key": "geid_144_13310", "source": "3579", "target": "3467" }, { "key": "geid_144_13311", "source": "7916", "target": "9460" }, { "key": "geid_144_13312", "source": "7617", "target": "6081" }, { "key": "geid_144_13313", "source": "5223", "target": "9885" }, { "key": "geid_144_13314", "source": "9867", "target": "3789" }, { "key": "geid_144_13315", "source": "6897", "target": "394" }, { "key": "geid_144_13316", "source": "4628", "target": "1354" }, { "key": "geid_144_13317", "source": "2919", "target": "3409" }, { "key": "geid_144_13318", "source": "1119", "target": "5512" }, { "key": "geid_144_13319", "source": "9835", "target": "1927" }, { "key": "geid_144_13320", "source": "9141", "target": "8951" }, { "key": "geid_144_13321", "source": "9494", "target": "994" }, { "key": "geid_144_13322", "source": "4160", "target": "1318" }, { "key": "geid_144_13323", "source": "4133", "target": "2219" }, { "key": "geid_144_13324", "source": "5777", "target": "8856" }, { "key": "geid_144_13325", "source": "5891", "target": "4790" }, { "key": "geid_144_13326", "source": "6408", "target": "8565" }, { "key": "geid_144_13327", "source": "5399", "target": "1692" }, { "key": "geid_144_13328", "source": "3714", "target": "5708" }, { "key": "geid_144_13329", "source": "8327", "target": "9445" }, { "key": "geid_144_13330", "source": "6864", "target": "9750" }, { "key": "geid_144_13331", "source": "205", "target": "4547" }, { "key": "geid_144_13332", "source": "7370", "target": "1243" }, { "key": "geid_144_13333", "source": "1867", "target": "4924" }, { "key": "geid_144_13334", "source": "1871", "target": "1555" }, { "key": "geid_144_13335", "source": "7869", "target": "4275" }, { "key": "geid_144_13336", "source": "3581", "target": "2223" }, { "key": "geid_144_13337", "source": "5247", "target": "2495" }, { "key": "geid_144_13338", "source": "1579", "target": "6468" }, { "key": "geid_144_13339", "source": "3924", "target": "1525" }, { "key": "geid_144_13340", "source": "9854", "target": "9296" }, { "key": "geid_144_13341", "source": "5988", "target": "7771" }, { "key": "geid_144_13342", "source": "1325", "target": "4862" }, { "key": "geid_144_13343", "source": "5950", "target": "9837" }, { "key": "geid_144_13344", "source": "2729", "target": "5450" }, { "key": "geid_144_13345", "source": "1057", "target": "9417" }, { "key": "geid_144_13346", "source": "5156", "target": "160" }, { "key": "geid_144_13347", "source": "1414", "target": "9365" }, { "key": "geid_144_13348", "source": "5962", "target": "1503" }, { "key": "geid_144_13349", "source": "1630", "target": "9112" }, { "key": "geid_144_13350", "source": "544", "target": "1513" }, { "key": "geid_144_13351", "source": "98", "target": "911" }, { "key": "geid_144_13352", "source": "8951", "target": "2855" }, { "key": "geid_144_13353", "source": "5888", "target": "7231" }, { "key": "geid_144_13354", "source": "451", "target": "1217" }, { "key": "geid_144_13355", "source": "4773", "target": "930" }, { "key": "geid_144_13356", "source": "5909", "target": "5150" }, { "key": "geid_144_13357", "source": "7934", "target": "5743" }, { "key": "geid_144_13358", "source": "7169", "target": "7208" }, { "key": "geid_144_13359", "source": "7338", "target": "9024" }, { "key": "geid_144_13360", "source": "2657", "target": "594" }, { "key": "geid_144_13361", "source": "2411", "target": "74" }, { "key": "geid_144_13362", "source": "741", "target": "5155" }, { "key": "geid_144_13363", "source": "8088", "target": "230" }, { "key": "geid_144_13364", "source": "3074", "target": "3784" }, { "key": "geid_144_13365", "source": "3484", "target": "3122" }, { "key": "geid_144_13366", "source": "1895", "target": "4707" }, { "key": "geid_144_13367", "source": "9848", "target": "2977" }, { "key": "geid_144_13368", "source": "6343", "target": "97" }, { "key": "geid_144_13369", "source": "204", "target": "7341" }, { "key": "geid_144_13370", "source": "5065", "target": "1682" }, { "key": "geid_144_13371", "source": "3857", "target": "8581" }, { "key": "geid_144_13372", "source": "5333", "target": "1321" }, { "key": "geid_144_13373", "source": "6564", "target": "6418" }, { "key": "geid_144_13374", "source": "7030", "target": "3394" }, { "key": "geid_144_13375", "source": "2765", "target": "1878" }, { "key": "geid_144_13376", "source": "4046", "target": "8717" }, { "key": "geid_144_13377", "source": "9322", "target": "3382" }, { "key": "geid_144_13378", "source": "4137", "target": "6482" }, { "key": "geid_144_13379", "source": "9126", "target": "9909" }, { "key": "geid_144_13380", "source": "602", "target": "3904" }, { "key": "geid_144_13381", "source": "1959", "target": "477" }, { "key": "geid_144_13382", "source": "3336", "target": "3484" }, { "key": "geid_144_13383", "source": "2150", "target": "7256" }, { "key": "geid_144_13384", "source": "8866", "target": "8155" }, { "key": "geid_144_13385", "source": "5881", "target": "5030" }, { "key": "geid_144_13386", "source": "53", "target": "5840" }, { "key": "geid_144_13387", "source": "8757", "target": "4442" }, { "key": "geid_144_13388", "source": "9482", "target": "2911" }, { "key": "geid_144_13389", "source": "2244", "target": "6617" }, { "key": "geid_144_13390", "source": "1724", "target": "6105" }, { "key": "geid_144_13391", "source": "4130", "target": "7541" }, { "key": "geid_144_13392", "source": "6332", "target": "9462" }, { "key": "geid_144_13393", "source": "7755", "target": "3727" }, { "key": "geid_144_13394", "source": "3837", "target": "9520" }, { "key": "geid_144_13395", "source": "6650", "target": "5261" }, { "key": "geid_144_13396", "source": "7739", "target": "9558" }, { "key": "geid_144_13397", "source": "390", "target": "5880" }, { "key": "geid_144_13398", "source": "4086", "target": "292" }, { "key": "geid_144_13399", "source": "3754", "target": "2091" }, { "key": "geid_144_13400", "source": "4615", "target": "2979" }, { "key": "geid_144_13401", "source": "5902", "target": "8749" }, { "key": "geid_144_13402", "source": "4472", "target": "4517" }, { "key": "geid_144_13403", "source": "2286", "target": "2135" }, { "key": "geid_144_13404", "source": "2496", "target": "2307" }, { "key": "geid_144_13405", "source": "8129", "target": "7465" }, { "key": "geid_144_13406", "source": "4537", "target": "6675" }, { "key": "geid_144_13407", "source": "5047", "target": "7249" }, { "key": "geid_144_13408", "source": "1085", "target": "1494" }, { "key": "geid_144_13409", "source": "6975", "target": "6197" }, { "key": "geid_144_13410", "source": "1723", "target": "8186" }, { "key": "geid_144_13411", "source": "1022", "target": "5818" }, { "key": "geid_144_13412", "source": "4494", "target": "8492" }, { "key": "geid_144_13413", "source": "8631", "target": "9091" }, { "key": "geid_144_13414", "source": "3095", "target": "5221" }, { "key": "geid_144_13415", "source": "4579", "target": "6408" }, { "key": "geid_144_13416", "source": "9752", "target": "1841" }, { "key": "geid_144_13417", "source": "4132", "target": "513" }, { "key": "geid_144_13418", "source": "5809", "target": "7371" }, { "key": "geid_144_13419", "source": "2998", "target": "2021" }, { "key": "geid_144_13420", "source": "9021", "target": "9659" }, { "key": "geid_144_13421", "source": "7036", "target": "7621" }, { "key": "geid_144_13422", "source": "6240", "target": "4214" }, { "key": "geid_144_13423", "source": "9045", "target": "8289" }, { "key": "geid_144_13424", "source": "1538", "target": "4738" }, { "key": "geid_144_13425", "source": "7506", "target": "5055" }, { "key": "geid_144_13426", "source": "4242", "target": "4995" }, { "key": "geid_144_13427", "source": "7071", "target": "7379" }, { "key": "geid_144_13428", "source": "9515", "target": "902" }, { "key": "geid_144_13429", "source": "3575", "target": "1544" }, { "key": "geid_144_13430", "source": "861", "target": "1603" }, { "key": "geid_144_13431", "source": "1347", "target": "7715" }, { "key": "geid_144_13432", "source": "9221", "target": "6626" }, { "key": "geid_144_13433", "source": "8057", "target": "1729" }, { "key": "geid_144_13434", "source": "575", "target": "1457" }, { "key": "geid_144_13435", "source": "7699", "target": "6247" }, { "key": "geid_144_13436", "source": "7556", "target": "6875" }, { "key": "geid_144_13437", "source": "587", "target": "1294" }, { "key": "geid_144_13438", "source": "6994", "target": "7641" }, { "key": "geid_144_13439", "source": "7256", "target": "2114" }, { "key": "geid_144_13440", "source": "7491", "target": "5569" }, { "key": "geid_144_13441", "source": "1795", "target": "5941" }, { "key": "geid_144_13442", "source": "5433", "target": "5236" }, { "key": "geid_144_13443", "source": "7300", "target": "2009" }, { "key": "geid_144_13444", "source": "968", "target": "7372" }, { "key": "geid_144_13445", "source": "688", "target": "3851" }, { "key": "geid_144_13446", "source": "5335", "target": "7419" }, { "key": "geid_144_13447", "source": "5869", "target": "7798" }, { "key": "geid_144_13448", "source": "7565", "target": "2017" }, { "key": "geid_144_13449", "source": "3139", "target": "5896" }, { "key": "geid_144_13450", "source": "765", "target": "3742" }, { "key": "geid_144_13451", "source": "3306", "target": "3378" }, { "key": "geid_144_13452", "source": "9072", "target": "4415" }, { "key": "geid_144_13453", "source": "6247", "target": "1730" }, { "key": "geid_144_13454", "source": "7230", "target": "5168" }, { "key": "geid_144_13455", "source": "5615", "target": "9091" }, { "key": "geid_144_13456", "source": "6946", "target": "5013" }, { "key": "geid_144_13457", "source": "5714", "target": "767" }, { "key": "geid_144_13458", "source": "6283", "target": "5097" }, { "key": "geid_144_13459", "source": "8066", "target": "7268" }, { "key": "geid_144_13460", "source": "1187", "target": "5040" }, { "key": "geid_144_13461", "source": "4822", "target": "9438" }, { "key": "geid_144_13462", "source": "9792", "target": "4384" }, { "key": "geid_144_13463", "source": "4998", "target": "5369" }, { "key": "geid_144_13464", "source": "2995", "target": "4221" }, { "key": "geid_144_13465", "source": "1503", "target": "9689" }, { "key": "geid_144_13466", "source": "6842", "target": "2461" }, { "key": "geid_144_13467", "source": "4130", "target": "5609" }, { "key": "geid_144_13468", "source": "2531", "target": "4556" }, { "key": "geid_144_13469", "source": "4668", "target": "7751" }, { "key": "geid_144_13470", "source": "1120", "target": "8446" }, { "key": "geid_144_13471", "source": "936", "target": "8966" }, { "key": "geid_144_13472", "source": "3019", "target": "5029" }, { "key": "geid_144_13473", "source": "8435", "target": "7313" }, { "key": "geid_144_13474", "source": "6864", "target": "6668" }, { "key": "geid_144_13475", "source": "4908", "target": "5416" }, { "key": "geid_144_13476", "source": "5447", "target": "7180" }, { "key": "geid_144_13477", "source": "8363", "target": "6071" }, { "key": "geid_144_13478", "source": "1722", "target": "6029" }, { "key": "geid_144_13479", "source": "9316", "target": "8330" }, { "key": "geid_144_13480", "source": "2654", "target": "490" }, { "key": "geid_144_13481", "source": "1127", "target": "4721" }, { "key": "geid_144_13482", "source": "5752", "target": "6315" }, { "key": "geid_144_13483", "source": "1778", "target": "9937" }, { "key": "geid_144_13484", "source": "3135", "target": "3829" }, { "key": "geid_144_13485", "source": "7901", "target": "3923" }, { "key": "geid_144_13486", "source": "8427", "target": "6681" }, { "key": "geid_144_13487", "source": "6548", "target": "7960" }, { "key": "geid_144_13488", "source": "5606", "target": "9526" }, { "key": "geid_144_13489", "source": "4498", "target": "6239" }, { "key": "geid_144_13490", "source": "8934", "target": "5233" }, { "key": "geid_144_13491", "source": "4300", "target": "8108" }, { "key": "geid_144_13492", "source": "5067", "target": "9485" }, { "key": "geid_144_13493", "source": "7718", "target": "785" }, { "key": "geid_144_13494", "source": "3800", "target": "5709" }, { "key": "geid_144_13495", "source": "4645", "target": "8418" }, { "key": "geid_144_13496", "source": "4926", "target": "6270" }, { "key": "geid_144_13497", "source": "5842", "target": "7378" }, { "key": "geid_144_13498", "source": "5048", "target": "9129" }, { "key": "geid_144_13499", "source": "9935", "target": "6035" }, { "key": "geid_144_13500", "source": "9803", "target": "9226" }, { "key": "geid_144_13501", "source": "1844", "target": "5797" }, { "key": "geid_144_13502", "source": "7780", "target": "5965" }, { "key": "geid_144_13503", "source": "5006", "target": "4101" }, { "key": "geid_144_13504", "source": "8990", "target": "7162" }, { "key": "geid_144_13505", "source": "4267", "target": "4749" }, { "key": "geid_144_13506", "source": "9224", "target": "825" }, { "key": "geid_144_13507", "source": "5803", "target": "6371" }, { "key": "geid_144_13508", "source": "6860", "target": "3060" }, { "key": "geid_144_13509", "source": "2226", "target": "416" }, { "key": "geid_144_13510", "source": "9859", "target": "9076" }, { "key": "geid_144_13511", "source": "8281", "target": "2819" }, { "key": "geid_144_13512", "source": "953", "target": "4366" }, { "key": "geid_144_13513", "source": "6729", "target": "743" }, { "key": "geid_144_13514", "source": "7895", "target": "3807" }, { "key": "geid_144_13515", "source": "5198", "target": "1496" }, { "key": "geid_144_13516", "source": "3614", "target": "7768" }, { "key": "geid_144_13517", "source": "8415", "target": "7432" }, { "key": "geid_144_13518", "source": "4763", "target": "8649" }, { "key": "geid_144_13519", "source": "3157", "target": "3565" }, { "key": "geid_144_13520", "source": "2684", "target": "8110" }, { "key": "geid_144_13521", "source": "2102", "target": "6941" }, { "key": "geid_144_13522", "source": "3594", "target": "1712" }, { "key": "geid_144_13523", "source": "9038", "target": "9070" }, { "key": "geid_144_13524", "source": "9513", "target": "20" }, { "key": "geid_144_13525", "source": "4499", "target": "3632" }, { "key": "geid_144_13526", "source": "7699", "target": "5226" }, { "key": "geid_144_13527", "source": "703", "target": "7255" }, { "key": "geid_144_13528", "source": "2034", "target": "6066" }, { "key": "geid_144_13529", "source": "785", "target": "4569" }, { "key": "geid_144_13530", "source": "2354", "target": "6270" }, { "key": "geid_144_13531", "source": "3170", "target": "4831" }, { "key": "geid_144_13532", "source": "9002", "target": "7636" }, { "key": "geid_144_13533", "source": "2687", "target": "195" }, { "key": "geid_144_13534", "source": "9556", "target": "280" }, { "key": "geid_144_13535", "source": "902", "target": "5123" }, { "key": "geid_144_13536", "source": "7673", "target": "5809" }, { "key": "geid_144_13537", "source": "7334", "target": "4058" }, { "key": "geid_144_13538", "source": "8151", "target": "8175" }, { "key": "geid_144_13539", "source": "8192", "target": "3212" }, { "key": "geid_144_13540", "source": "4112", "target": "9919" }, { "key": "geid_144_13541", "source": "8899", "target": "3281" }, { "key": "geid_144_13542", "source": "5132", "target": "5343" }, { "key": "geid_144_13543", "source": "1076", "target": "8291" }, { "key": "geid_144_13544", "source": "8445", "target": "5360" }, { "key": "geid_144_13545", "source": "320", "target": "9874" }, { "key": "geid_144_13546", "source": "3607", "target": "8380" }, { "key": "geid_144_13547", "source": "1085", "target": "6579" }, { "key": "geid_144_13548", "source": "3541", "target": "7123" }, { "key": "geid_144_13549", "source": "9462", "target": "8092" }, { "key": "geid_144_13550", "source": "3974", "target": "4885" }, { "key": "geid_144_13551", "source": "402", "target": "8124" }, { "key": "geid_144_13552", "source": "9135", "target": "1664" }, { "key": "geid_144_13553", "source": "9239", "target": "401" }, { "key": "geid_144_13554", "source": "2415", "target": "6299" }, { "key": "geid_144_13555", "source": "1016", "target": "5983" }, { "key": "geid_144_13556", "source": "1647", "target": "7203" }, { "key": "geid_144_13557", "source": "7361", "target": "253" }, { "key": "geid_144_13558", "source": "52", "target": "2689" }, { "key": "geid_144_13559", "source": "5760", "target": "1039" }, { "key": "geid_144_13560", "source": "9815", "target": "1857" }, { "key": "geid_144_13561", "source": "1859", "target": "9705" }, { "key": "geid_144_13562", "source": "7091", "target": "6350" }, { "key": "geid_144_13563", "source": "9293", "target": "2186" }, { "key": "geid_144_13564", "source": "4287", "target": "320" }, { "key": "geid_144_13565", "source": "584", "target": "656" }, { "key": "geid_144_13566", "source": "3222", "target": "6547" }, { "key": "geid_144_13567", "source": "2811", "target": "3015" }, { "key": "geid_144_13568", "source": "4309", "target": "7138" }, { "key": "geid_144_13569", "source": "4094", "target": "5113" }, { "key": "geid_144_13570", "source": "3992", "target": "4182" }, { "key": "geid_144_13571", "source": "7272", "target": "9619" }, { "key": "geid_144_13572", "source": "6828", "target": "8394" }, { "key": "geid_144_13573", "source": "3845", "target": "9577" }, { "key": "geid_144_13574", "source": "2608", "target": "1693" }, { "key": "geid_144_13575", "source": "306", "target": "4071" }, { "key": "geid_144_13576", "source": "9559", "target": "5908" }, { "key": "geid_144_13577", "source": "5954", "target": "2365" }, { "key": "geid_144_13578", "source": "5705", "target": "3188" }, { "key": "geid_144_13579", "source": "3871", "target": "4782" }, { "key": "geid_144_13580", "source": "8719", "target": "7996" }, { "key": "geid_144_13581", "source": "4951", "target": "8098" }, { "key": "geid_144_13582", "source": "543", "target": "8372" }, { "key": "geid_144_13583", "source": "8141", "target": "6122" }, { "key": "geid_144_13584", "source": "3793", "target": "5022" }, { "key": "geid_144_13585", "source": "4319", "target": "3944" }, { "key": "geid_144_13586", "source": "4486", "target": "11" }, { "key": "geid_144_13587", "source": "2385", "target": "5905" }, { "key": "geid_144_13588", "source": "8374", "target": "3648" }, { "key": "geid_144_13589", "source": "1828", "target": "8197" }, { "key": "geid_144_13590", "source": "303", "target": "3144" }, { "key": "geid_144_13591", "source": "4049", "target": "8647" }, { "key": "geid_144_13592", "source": "4893", "target": "9950" }, { "key": "geid_144_13593", "source": "3291", "target": "2943" }, { "key": "geid_144_13594", "source": "9669", "target": "472" }, { "key": "geid_144_13595", "source": "2283", "target": "1640" }, { "key": "geid_144_13596", "source": "9501", "target": "4799" }, { "key": "geid_144_13597", "source": "56", "target": "7067" }, { "key": "geid_144_13598", "source": "7984", "target": "3884" }, { "key": "geid_144_13599", "source": "8931", "target": "1062" }, { "key": "geid_144_13600", "source": "6931", "target": "2481" }, { "key": "geid_144_13601", "source": "6865", "target": "7544" }, { "key": "geid_144_13602", "source": "9207", "target": "5779" }, { "key": "geid_144_13603", "source": "8054", "target": "3557" }, { "key": "geid_144_13604", "source": "3353", "target": "2446" }, { "key": "geid_144_13605", "source": "2561", "target": "748" }, { "key": "geid_144_13606", "source": "8951", "target": "4170" }, { "key": "geid_144_13607", "source": "8632", "target": "4638" }, { "key": "geid_144_13608", "source": "6816", "target": "2287" }, { "key": "geid_144_13609", "source": "693", "target": "2656" }, { "key": "geid_144_13610", "source": "6851", "target": "4525" }, { "key": "geid_144_13611", "source": "5838", "target": "1021" }, { "key": "geid_144_13612", "source": "6494", "target": "1843" }, { "key": "geid_144_13613", "source": "5163", "target": "4978" }, { "key": "geid_144_13614", "source": "1976", "target": "5553" }, { "key": "geid_144_13615", "source": "7147", "target": "5337" }, { "key": "geid_144_13616", "source": "6430", "target": "6332" }, { "key": "geid_144_13617", "source": "6411", "target": "8616" }, { "key": "geid_144_13618", "source": "643", "target": "3408" }, { "key": "geid_144_13619", "source": "1152", "target": "8257" }, { "key": "geid_144_13620", "source": "7894", "target": "376" }, { "key": "geid_144_13621", "source": "2003", "target": "3004" }, { "key": "geid_144_13622", "source": "3778", "target": "9287" }, { "key": "geid_144_13623", "source": "3902", "target": "8267" }, { "key": "geid_144_13624", "source": "1194", "target": "6702" }, { "key": "geid_144_13625", "source": "6454", "target": "3862" }, { "key": "geid_144_13626", "source": "8508", "target": "9016" }, { "key": "geid_144_13627", "source": "5816", "target": "7552" }, { "key": "geid_144_13628", "source": "4299", "target": "6874" }, { "key": "geid_144_13629", "source": "9644", "target": "5608" }, { "key": "geid_144_13630", "source": "9751", "target": "9419" }, { "key": "geid_144_13631", "source": "6723", "target": "2708" }, { "key": "geid_144_13632", "source": "3443", "target": "5160" }, { "key": "geid_144_13633", "source": "2252", "target": "8295" }, { "key": "geid_144_13634", "source": "6050", "target": "9392" }, { "key": "geid_144_13635", "source": "6230", "target": "6740" }, { "key": "geid_144_13636", "source": "6945", "target": "4913" }, { "key": "geid_144_13637", "source": "7737", "target": "5126" }, { "key": "geid_144_13638", "source": "7926", "target": "7157" }, { "key": "geid_144_13639", "source": "6506", "target": "1764" }, { "key": "geid_144_13640", "source": "1920", "target": "2316" }, { "key": "geid_144_13641", "source": "6750", "target": "8770" }, { "key": "geid_144_13642", "source": "8729", "target": "4830" }, { "key": "geid_144_13643", "source": "1002", "target": "9068" }, { "key": "geid_144_13644", "source": "120", "target": "4653" }, { "key": "geid_144_13645", "source": "2794", "target": "6634" }, { "key": "geid_144_13646", "source": "939", "target": "4481" }, { "key": "geid_144_13647", "source": "5268", "target": "6517" }, { "key": "geid_144_13648", "source": "2874", "target": "5413" }, { "key": "geid_144_13649", "source": "2194", "target": "8499" }, { "key": "geid_144_13650", "source": "8385", "target": "2048" }, { "key": "geid_144_13651", "source": "5438", "target": "5409" }, { "key": "geid_144_13652", "source": "9912", "target": "1799" }, { "key": "geid_144_13653", "source": "1828", "target": "3771" }, { "key": "geid_144_13654", "source": "8536", "target": "2506" }, { "key": "geid_144_13655", "source": "3226", "target": "9400" }, { "key": "geid_144_13656", "source": "3518", "target": "6728" }, { "key": "geid_144_13657", "source": "6264", "target": "5956" }, { "key": "geid_144_13658", "source": "8423", "target": "2637" }, { "key": "geid_144_13659", "source": "5617", "target": "1134" }, { "key": "geid_144_13660", "source": "5488", "target": "6739" }, { "key": "geid_144_13661", "source": "7733", "target": "4474" }, { "key": "geid_144_13662", "source": "9937", "target": "4860" }, { "key": "geid_144_13663", "source": "1363", "target": "1341" }, { "key": "geid_144_13664", "source": "3544", "target": "4429" }, { "key": "geid_144_13665", "source": "2221", "target": "5985" }, { "key": "geid_144_13666", "source": "2672", "target": "160" }, { "key": "geid_144_13667", "source": "568", "target": "6013" }, { "key": "geid_144_13668", "source": "7632", "target": "7440" }, { "key": "geid_144_13669", "source": "1582", "target": "2202" }, { "key": "geid_144_13670", "source": "1718", "target": "8405" }, { "key": "geid_144_13671", "source": "2412", "target": "684" }, { "key": "geid_144_13672", "source": "6033", "target": "8006" }, { "key": "geid_144_13673", "source": "8056", "target": "7694" }, { "key": "geid_144_13674", "source": "5365", "target": "8197" }, { "key": "geid_144_13675", "source": "1452", "target": "547" }, { "key": "geid_144_13676", "source": "7065", "target": "4716" }, { "key": "geid_144_13677", "source": "7989", "target": "189" }, { "key": "geid_144_13678", "source": "3723", "target": "8260" }, { "key": "geid_144_13679", "source": "3553", "target": "3545" }, { "key": "geid_144_13680", "source": "358", "target": "1154" }, { "key": "geid_144_13681", "source": "5876", "target": "3093" }, { "key": "geid_144_13682", "source": "6495", "target": "8490" }, { "key": "geid_144_13683", "source": "124", "target": "8363" }, { "key": "geid_144_13684", "source": "4769", "target": "7981" }, { "key": "geid_144_13685", "source": "6831", "target": "3302" }, { "key": "geid_144_13686", "source": "857", "target": "6374" }, { "key": "geid_144_13687", "source": "8165", "target": "6007" }, { "key": "geid_144_13688", "source": "9737", "target": "338" }, { "key": "geid_144_13689", "source": "9275", "target": "3354" }, { "key": "geid_144_13690", "source": "6637", "target": "2194" }, { "key": "geid_144_13691", "source": "3448", "target": "8969" }, { "key": "geid_144_13692", "source": "5320", "target": "9259" }, { "key": "geid_144_13693", "source": "4774", "target": "7856" }, { "key": "geid_144_13694", "source": "8194", "target": "3826" }, { "key": "geid_144_13695", "source": "3767", "target": "3901" }, { "key": "geid_144_13696", "source": "2715", "target": "6398" }, { "key": "geid_144_13697", "source": "3381", "target": "9340" }, { "key": "geid_144_13698", "source": "3565", "target": "1015" }, { "key": "geid_144_13699", "source": "2730", "target": "765" }, { "key": "geid_144_13700", "source": "7619", "target": "4937" }, { "key": "geid_144_13701", "source": "3907", "target": "4410" }, { "key": "geid_144_13702", "source": "5885", "target": "7694" }, { "key": "geid_144_13703", "source": "4602", "target": "2881" }, { "key": "geid_144_13704", "source": "6149", "target": "4828" }, { "key": "geid_144_13705", "source": "8704", "target": "5841" }, { "key": "geid_144_13706", "source": "9523", "target": "7620" }, { "key": "geid_144_13707", "source": "8040", "target": "3724" }, { "key": "geid_144_13708", "source": "8423", "target": "9739" }, { "key": "geid_144_13709", "source": "3236", "target": "8532" }, { "key": "geid_144_13710", "source": "7037", "target": "3881" }, { "key": "geid_144_13711", "source": "8864", "target": "9337" }, { "key": "geid_144_13712", "source": "3409", "target": "9191" }, { "key": "geid_144_13713", "source": "7364", "target": "7273" }, { "key": "geid_144_13714", "source": "2139", "target": "3624" }, { "key": "geid_144_13715", "source": "8700", "target": "4964" }, { "key": "geid_144_13716", "source": "6232", "target": "5379" }, { "key": "geid_144_13717", "source": "3069", "target": "864" }, { "key": "geid_144_13718", "source": "3376", "target": "7249" }, { "key": "geid_144_13719", "source": "6291", "target": "7902" }, { "key": "geid_144_13720", "source": "4899", "target": "6006" }, { "key": "geid_144_13721", "source": "3195", "target": "5541" }, { "key": "geid_144_13722", "source": "316", "target": "3138" }, { "key": "geid_144_13723", "source": "8953", "target": "7440" }, { "key": "geid_144_13724", "source": "2132", "target": "3025" }, { "key": "geid_144_13725", "source": "7613", "target": "7474" }, { "key": "geid_144_13726", "source": "24", "target": "8924" }, { "key": "geid_144_13727", "source": "5220", "target": "2945" }, { "key": "geid_144_13728", "source": "586", "target": "1596" }, { "key": "geid_144_13729", "source": "3873", "target": "6424" }, { "key": "geid_144_13730", "source": "299", "target": "578" }, { "key": "geid_144_13731", "source": "3488", "target": "4950" }, { "key": "geid_144_13732", "source": "4919", "target": "7321" }, { "key": "geid_144_13733", "source": "481", "target": "2534" }, { "key": "geid_144_13734", "source": "7903", "target": "1026" }, { "key": "geid_144_13735", "source": "3149", "target": "5035" }, { "key": "geid_144_13736", "source": "4333", "target": "5725" }, { "key": "geid_144_13737", "source": "9283", "target": "5360" }, { "key": "geid_144_13738", "source": "9017", "target": "8453" }, { "key": "geid_144_13739", "source": "6800", "target": "1776" }, { "key": "geid_144_13740", "source": "4660", "target": "1657" }, { "key": "geid_144_13741", "source": "6598", "target": "7788" }, { "key": "geid_144_13742", "source": "8065", "target": "942" }, { "key": "geid_144_13743", "source": "7695", "target": "4686" }, { "key": "geid_144_13744", "source": "361", "target": "4067" }, { "key": "geid_144_13745", "source": "9600", "target": "9238" }, { "key": "geid_144_13746", "source": "2860", "target": "1533" }, { "key": "geid_144_13747", "source": "982", "target": "3134" }, { "key": "geid_144_13748", "source": "5269", "target": "5958" }, { "key": "geid_144_13749", "source": "3983", "target": "566" }, { "key": "geid_144_13750", "source": "8200", "target": "7021" }, { "key": "geid_144_13751", "source": "107", "target": "4384" }, { "key": "geid_144_13752", "source": "7885", "target": "2403" }, { "key": "geid_144_13753", "source": "9075", "target": "1599" }, { "key": "geid_144_13754", "source": "5590", "target": "8744" }, { "key": "geid_144_13755", "source": "9571", "target": "599" }, { "key": "geid_144_13756", "source": "4791", "target": "6510" }, { "key": "geid_144_13757", "source": "7357", "target": "6622" }, { "key": "geid_144_13758", "source": "2884", "target": "3010" }, { "key": "geid_144_13759", "source": "2025", "target": "4361" }, { "key": "geid_144_13760", "source": "8481", "target": "5017" }, { "key": "geid_144_13761", "source": "4571", "target": "389" }, { "key": "geid_144_13762", "source": "2790", "target": "103" }, { "key": "geid_144_13763", "source": "5513", "target": "4943" }, { "key": "geid_144_13764", "source": "6344", "target": "2711" }, { "key": "geid_144_13765", "source": "2930", "target": "1569" }, { "key": "geid_144_13766", "source": "9813", "target": "4957" }, { "key": "geid_144_13767", "source": "3529", "target": "3324" }, { "key": "geid_144_13768", "source": "7288", "target": "209" }, { "key": "geid_144_13769", "source": "6954", "target": "8819" }, { "key": "geid_144_13770", "source": "4526", "target": "478" }, { "key": "geid_144_13771", "source": "5204", "target": "3145" }, { "key": "geid_144_13772", "source": "4303", "target": "5027" }, { "key": "geid_144_13773", "source": "4134", "target": "154" }, { "key": "geid_144_13774", "source": "349", "target": "9269" }, { "key": "geid_144_13775", "source": "5504", "target": "8041" }, { "key": "geid_144_13776", "source": "5060", "target": "7317" }, { "key": "geid_144_13777", "source": "6681", "target": "6606" }, { "key": "geid_144_13778", "source": "7313", "target": "8590" }, { "key": "geid_144_13779", "source": "2723", "target": "9238" }, { "key": "geid_144_13780", "source": "2471", "target": "133" }, { "key": "geid_144_13781", "source": "9529", "target": "4343" }, { "key": "geid_144_13782", "source": "464", "target": "7155" }, { "key": "geid_144_13783", "source": "2915", "target": "4423" }, { "key": "geid_144_13784", "source": "9986", "target": "1631" }, { "key": "geid_144_13785", "source": "6587", "target": "1266" }, { "key": "geid_144_13786", "source": "3903", "target": "6824" }, { "key": "geid_144_13787", "source": "8221", "target": "471" }, { "key": "geid_144_13788", "source": "1166", "target": "4751" }, { "key": "geid_144_13789", "source": "8600", "target": "1182" }, { "key": "geid_144_13790", "source": "5122", "target": "4085" }, { "key": "geid_144_13791", "source": "2054", "target": "6996" }, { "key": "geid_144_13792", "source": "305", "target": "120" }, { "key": "geid_144_13793", "source": "5593", "target": "3961" }, { "key": "geid_144_13794", "source": "7564", "target": "1792" }, { "key": "geid_144_13795", "source": "9955", "target": "20" }, { "key": "geid_144_13796", "source": "1874", "target": "3513" }, { "key": "geid_144_13797", "source": "9873", "target": "8897" }, { "key": "geid_144_13798", "source": "3965", "target": "3341" }, { "key": "geid_144_13799", "source": "8748", "target": "1360" }, { "key": "geid_144_13800", "source": "7335", "target": "8351" }, { "key": "geid_144_13801", "source": "8180", "target": "3677" }, { "key": "geid_144_13802", "source": "756", "target": "8728" }, { "key": "geid_144_13803", "source": "8172", "target": "1177" }, { "key": "geid_144_13804", "source": "197", "target": "4500" }, { "key": "geid_144_13805", "source": "5118", "target": "1032" }, { "key": "geid_144_13806", "source": "202", "target": "391" }, { "key": "geid_144_13807", "source": "5361", "target": "8287" }, { "key": "geid_144_13808", "source": "7018", "target": "6276" }, { "key": "geid_144_13809", "source": "5814", "target": "3265" }, { "key": "geid_144_13810", "source": "5021", "target": "3280" }, { "key": "geid_144_13811", "source": "401", "target": "7352" }, { "key": "geid_144_13812", "source": "5612", "target": "159" }, { "key": "geid_144_13813", "source": "3899", "target": "2838" }, { "key": "geid_144_13814", "source": "6232", "target": "8334" }, { "key": "geid_144_13815", "source": "9248", "target": "8786" }, { "key": "geid_144_13816", "source": "521", "target": "6551" }, { "key": "geid_144_13817", "source": "4881", "target": "7949" }, { "key": "geid_144_13818", "source": "9411", "target": "4212" }, { "key": "geid_144_13819", "source": "767", "target": "1539" }, { "key": "geid_144_13820", "source": "9165", "target": "6340" }, { "key": "geid_144_13821", "source": "2784", "target": "2506" }, { "key": "geid_144_13822", "source": "262", "target": "2379" }, { "key": "geid_144_13823", "source": "6745", "target": "5159" }, { "key": "geid_144_13824", "source": "6476", "target": "1648" }, { "key": "geid_144_13825", "source": "3075", "target": "9426" }, { "key": "geid_144_13826", "source": "4775", "target": "7912" }, { "key": "geid_144_13827", "source": "7371", "target": "6472" }, { "key": "geid_144_13828", "source": "6057", "target": "6165" }, { "key": "geid_144_13829", "source": "5665", "target": "7903" }, { "key": "geid_144_13830", "source": "8563", "target": "1424" }, { "key": "geid_144_13831", "source": "655", "target": "3566" }, { "key": "geid_144_13832", "source": "7376", "target": "6626" }, { "key": "geid_144_13833", "source": "707", "target": "4754" }, { "key": "geid_144_13834", "source": "7690", "target": "2589" }, { "key": "geid_144_13835", "source": "781", "target": "1904" }, { "key": "geid_144_13836", "source": "3713", "target": "3699" }, { "key": "geid_144_13837", "source": "4968", "target": "3806" }, { "key": "geid_144_13838", "source": "7558", "target": "7486" }, { "key": "geid_144_13839", "source": "6601", "target": "891" }, { "key": "geid_144_13840", "source": "2300", "target": "1019" }, { "key": "geid_144_13841", "source": "9393", "target": "6286" }, { "key": "geid_144_13842", "source": "9631", "target": "2579" }, { "key": "geid_144_13843", "source": "1246", "target": "9253" }, { "key": "geid_144_13844", "source": "3057", "target": "5476" }, { "key": "geid_144_13845", "source": "6963", "target": "7153" }, { "key": "geid_144_13846", "source": "8866", "target": "8612" }, { "key": "geid_144_13847", "source": "9166", "target": "5266" }, { "key": "geid_144_13848", "source": "2432", "target": "1616" }, { "key": "geid_144_13849", "source": "673", "target": "3976" }, { "key": "geid_144_13850", "source": "9016", "target": "5281" }, { "key": "geid_144_13851", "source": "9964", "target": "9659" }, { "key": "geid_144_13852", "source": "9250", "target": "5701" }, { "key": "geid_144_13853", "source": "5453", "target": "4060" }, { "key": "geid_144_13854", "source": "1129", "target": "6810" }, { "key": "geid_144_13855", "source": "2933", "target": "1057" }, { "key": "geid_144_13856", "source": "6064", "target": "3206" }, { "key": "geid_144_13857", "source": "7599", "target": "7367" }, { "key": "geid_144_13858", "source": "7112", "target": "9226" }, { "key": "geid_144_13859", "source": "4218", "target": "7156" }, { "key": "geid_144_13860", "source": "2536", "target": "4501" }, { "key": "geid_144_13861", "source": "3878", "target": "3327" }, { "key": "geid_144_13862", "source": "5068", "target": "213" }, { "key": "geid_144_13863", "source": "8090", "target": "5878" }, { "key": "geid_144_13864", "source": "3502", "target": "4141" }, { "key": "geid_144_13865", "source": "4513", "target": "4729" }, { "key": "geid_144_13866", "source": "7207", "target": "8005" }, { "key": "geid_144_13867", "source": "2010", "target": "8594" }, { "key": "geid_144_13868", "source": "2625", "target": "336" }, { "key": "geid_144_13869", "source": "3097", "target": "1017" }, { "key": "geid_144_13870", "source": "4262", "target": "5120" }, { "key": "geid_144_13871", "source": "3184", "target": "8612" }, { "key": "geid_144_13872", "source": "8900", "target": "6551" }, { "key": "geid_144_13873", "source": "7283", "target": "8462" }, { "key": "geid_144_13874", "source": "6547", "target": "36" }, { "key": "geid_144_13875", "source": "3117", "target": "7241" }, { "key": "geid_144_13876", "source": "7223", "target": "914" }, { "key": "geid_144_13877", "source": "7077", "target": "6938" }, { "key": "geid_144_13878", "source": "5689", "target": "2449" }, { "key": "geid_144_13879", "source": "6028", "target": "9535" }, { "key": "geid_144_13880", "source": "8091", "target": "8420" }, { "key": "geid_144_13881", "source": "9915", "target": "3322" }, { "key": "geid_144_13882", "source": "2859", "target": "7771" }, { "key": "geid_144_13883", "source": "108", "target": "4139" }, { "key": "geid_144_13884", "source": "918", "target": "4711" }, { "key": "geid_144_13885", "source": "6843", "target": "7817" }, { "key": "geid_144_13886", "source": "1353", "target": "7191" }, { "key": "geid_144_13887", "source": "467", "target": "9103" }, { "key": "geid_144_13888", "source": "3779", "target": "5131" }, { "key": "geid_144_13889", "source": "291", "target": "9811" }, { "key": "geid_144_13890", "source": "4923", "target": "5817" }, { "key": "geid_144_13891", "source": "3579", "target": "3879" }, { "key": "geid_144_13892", "source": "5976", "target": "9413" }, { "key": "geid_144_13893", "source": "2318", "target": "5847" }, { "key": "geid_144_13894", "source": "3269", "target": "7017" }, { "key": "geid_144_13895", "source": "5196", "target": "5606" }, { "key": "geid_144_13896", "source": "213", "target": "4976" }, { "key": "geid_144_13897", "source": "3751", "target": "2377" }, { "key": "geid_144_13898", "source": "2448", "target": "1501" }, { "key": "geid_144_13899", "source": "3566", "target": "5125" }, { "key": "geid_144_13900", "source": "3994", "target": "9258" }, { "key": "geid_144_13901", "source": "59", "target": "7041" }, { "key": "geid_144_13902", "source": "7251", "target": "8464" }, { "key": "geid_144_13903", "source": "8726", "target": "1451" }, { "key": "geid_144_13904", "source": "9616", "target": "6584" }, { "key": "geid_144_13905", "source": "6057", "target": "1723" }, { "key": "geid_144_13906", "source": "4868", "target": "60" }, { "key": "geid_144_13907", "source": "5017", "target": "4803" }, { "key": "geid_144_13908", "source": "6874", "target": "6280" }, { "key": "geid_144_13909", "source": "4522", "target": "4076" }, { "key": "geid_144_13910", "source": "9423", "target": "3568" }, { "key": "geid_144_13911", "source": "1848", "target": "4876" }, { "key": "geid_144_13912", "source": "1221", "target": "5293" }, { "key": "geid_144_13913", "source": "8224", "target": "4344" }, { "key": "geid_144_13914", "source": "3632", "target": "8389" }, { "key": "geid_144_13915", "source": "6517", "target": "2427" }, { "key": "geid_144_13916", "source": "9927", "target": "5976" }, { "key": "geid_144_13917", "source": "7541", "target": "9500" }, { "key": "geid_144_13918", "source": "1809", "target": "1672" }, { "key": "geid_144_13919", "source": "6796", "target": "6014" }, { "key": "geid_144_13920", "source": "4120", "target": "4075" }, { "key": "geid_144_13921", "source": "3890", "target": "3265" }, { "key": "geid_144_13922", "source": "6819", "target": "8955" }, { "key": "geid_144_13923", "source": "5893", "target": "9133" }, { "key": "geid_144_13924", "source": "4499", "target": "5945" }, { "key": "geid_144_13925", "source": "5576", "target": "4008" }, { "key": "geid_144_13926", "source": "4854", "target": "3143" }, { "key": "geid_144_13927", "source": "7108", "target": "6600" }, { "key": "geid_144_13928", "source": "5526", "target": "5107" }, { "key": "geid_144_13929", "source": "1805", "target": "437" }, { "key": "geid_144_13930", "source": "9142", "target": "4928" }, { "key": "geid_144_13931", "source": "1801", "target": "275" }, { "key": "geid_144_13932", "source": "6169", "target": "1032" }, { "key": "geid_144_13933", "source": "5409", "target": "6698" }, { "key": "geid_144_13934", "source": "1676", "target": "8814" }, { "key": "geid_144_13935", "source": "8489", "target": "569" }, { "key": "geid_144_13936", "source": "7984", "target": "6668" }, { "key": "geid_144_13937", "source": "7227", "target": "7363" }, { "key": "geid_144_13938", "source": "4862", "target": "244" }, { "key": "geid_144_13939", "source": "8704", "target": "457" }, { "key": "geid_144_13940", "source": "881", "target": "42" }, { "key": "geid_144_13941", "source": "1966", "target": "4877" }, { "key": "geid_144_13942", "source": "242", "target": "3519" }, { "key": "geid_144_13943", "source": "7944", "target": "5808" }, { "key": "geid_144_13944", "source": "3800", "target": "1957" }, { "key": "geid_144_13945", "source": "4968", "target": "6232" }, { "key": "geid_144_13946", "source": "8641", "target": "8847" }, { "key": "geid_144_13947", "source": "6329", "target": "1413" }, { "key": "geid_144_13948", "source": "5361", "target": "8731" }, { "key": "geid_144_13949", "source": "2724", "target": "469" }, { "key": "geid_144_13950", "source": "9159", "target": "8720" }, { "key": "geid_144_13951", "source": "3559", "target": "2517" }, { "key": "geid_144_13952", "source": "7488", "target": "5598" }, { "key": "geid_144_13953", "source": "1162", "target": "8419" }, { "key": "geid_144_13954", "source": "1255", "target": "283" }, { "key": "geid_144_13955", "source": "5842", "target": "3033" }, { "key": "geid_144_13956", "source": "3909", "target": "1919" }, { "key": "geid_144_13957", "source": "7364", "target": "324" }, { "key": "geid_144_13958", "source": "725", "target": "8139" }, { "key": "geid_144_13959", "source": "325", "target": "1354" }, { "key": "geid_144_13960", "source": "5634", "target": "1341" }, { "key": "geid_144_13961", "source": "9342", "target": "9425" }, { "key": "geid_144_13962", "source": "7642", "target": "3102" }, { "key": "geid_144_13963", "source": "8893", "target": "2764" }, { "key": "geid_144_13964", "source": "3526", "target": "6901" }, { "key": "geid_144_13965", "source": "2106", "target": "4062" }, { "key": "geid_144_13966", "source": "9652", "target": "5120" }, { "key": "geid_144_13967", "source": "2598", "target": "2238" }, { "key": "geid_144_13968", "source": "6930", "target": "7846" }, { "key": "geid_144_13969", "source": "7344", "target": "5368" }, { "key": "geid_144_13970", "source": "1244", "target": "1628" }, { "key": "geid_144_13971", "source": "2886", "target": "9152" }, { "key": "geid_144_13972", "source": "3314", "target": "2520" }, { "key": "geid_144_13973", "source": "2891", "target": "5309" }, { "key": "geid_144_13974", "source": "3958", "target": "6734" }, { "key": "geid_144_13975", "source": "9919", "target": "2440" }, { "key": "geid_144_13976", "source": "4710", "target": "9644" }, { "key": "geid_144_13977", "source": "7046", "target": "5378" }, { "key": "geid_144_13978", "source": "775", "target": "338" }, { "key": "geid_144_13979", "source": "5100", "target": "8681" }, { "key": "geid_144_13980", "source": "1050", "target": "3091" }, { "key": "geid_144_13981", "source": "3377", "target": "2115" }, { "key": "geid_144_13982", "source": "4110", "target": "1132" }, { "key": "geid_144_13983", "source": "615", "target": "4260" }, { "key": "geid_144_13984", "source": "8113", "target": "4300" }, { "key": "geid_144_13985", "source": "5733", "target": "6565" }, { "key": "geid_144_13986", "source": "2797", "target": "6510" }, { "key": "geid_144_13987", "source": "4983", "target": "8855" }, { "key": "geid_144_13988", "source": "805", "target": "2869" }, { "key": "geid_144_13989", "source": "4587", "target": "4617" }, { "key": "geid_144_13990", "source": "1359", "target": "8197" }, { "key": "geid_144_13991", "source": "5608", "target": "8974" }, { "key": "geid_144_13992", "source": "3996", "target": "3593" }, { "key": "geid_144_13993", "source": "803", "target": "2879" }, { "key": "geid_144_13994", "source": "4379", "target": "9756" }, { "key": "geid_144_13995", "source": "4413", "target": "596" }, { "key": "geid_144_13996", "source": "4120", "target": "7883" }, { "key": "geid_144_13997", "source": "5776", "target": "570" }, { "key": "geid_144_13998", "source": "744", "target": "8637" }, { "key": "geid_144_13999", "source": "9369", "target": "8885" }, { "key": "geid_144_14000", "source": "7788", "target": "8034" }, { "key": "geid_144_14001", "source": "9788", "target": "7336" }, { "key": "geid_144_14002", "source": "9951", "target": "7286" }, { "key": "geid_144_14003", "source": "4374", "target": "752" }, { "key": "geid_144_14004", "source": "2489", "target": "3930" }, { "key": "geid_144_14005", "source": "2611", "target": "7655" }, { "key": "geid_144_14006", "source": "172", "target": "5387" }, { "key": "geid_144_14007", "source": "2881", "target": "152" }, { "key": "geid_144_14008", "source": "2544", "target": "36" }, { "key": "geid_144_14009", "source": "816", "target": "584" }, { "key": "geid_144_14010", "source": "7498", "target": "2414" }, { "key": "geid_144_14011", "source": "2820", "target": "7117" }, { "key": "geid_144_14012", "source": "11", "target": "4724" }, { "key": "geid_144_14013", "source": "9842", "target": "999" }, { "key": "geid_144_14014", "source": "7701", "target": "718" }, { "key": "geid_144_14015", "source": "2990", "target": "3922" }, { "key": "geid_144_14016", "source": "316", "target": "4499" }, { "key": "geid_144_14017", "source": "3777", "target": "7671" }, { "key": "geid_144_14018", "source": "1053", "target": "3179" }, { "key": "geid_144_14019", "source": "40", "target": "4953" }, { "key": "geid_144_14020", "source": "346", "target": "1573" }, { "key": "geid_144_14021", "source": "9747", "target": "1810" }, { "key": "geid_144_14022", "source": "564", "target": "949" }, { "key": "geid_144_14023", "source": "6082", "target": "8431" }, { "key": "geid_144_14024", "source": "8467", "target": "8451" }, { "key": "geid_144_14025", "source": "3421", "target": "4266" }, { "key": "geid_144_14026", "source": "1397", "target": "6345" }, { "key": "geid_144_14027", "source": "1022", "target": "4938" }, { "key": "geid_144_14028", "source": "8428", "target": "4305" }, { "key": "geid_144_14029", "source": "8797", "target": "6718" }, { "key": "geid_144_14030", "source": "4768", "target": "8778" }, { "key": "geid_144_14031", "source": "5803", "target": "2288" }, { "key": "geid_144_14032", "source": "2915", "target": "73" }, { "key": "geid_144_14033", "source": "2839", "target": "4408" }, { "key": "geid_144_14034", "source": "8539", "target": "5075" }, { "key": "geid_144_14035", "source": "519", "target": "5622" }, { "key": "geid_144_14036", "source": "3552", "target": "3615" }, { "key": "geid_144_14037", "source": "75", "target": "4488" }, { "key": "geid_144_14038", "source": "1327", "target": "37" }, { "key": "geid_144_14039", "source": "7899", "target": "3725" }, { "key": "geid_144_14040", "source": "3849", "target": "6059" }, { "key": "geid_144_14041", "source": "8858", "target": "3225" }, { "key": "geid_144_14042", "source": "310", "target": "3402" }, { "key": "geid_144_14043", "source": "7718", "target": "5683" }, { "key": "geid_144_14044", "source": "4687", "target": "1164" }, { "key": "geid_144_14045", "source": "8126", "target": "865" }, { "key": "geid_144_14046", "source": "7144", "target": "3936" }, { "key": "geid_144_14047", "source": "1592", "target": "8155" }, { "key": "geid_144_14048", "source": "9865", "target": "1930" }, { "key": "geid_144_14049", "source": "7062", "target": "9818" }, { "key": "geid_144_14050", "source": "1954", "target": "5096" }, { "key": "geid_144_14051", "source": "6441", "target": "1038" }, { "key": "geid_144_14052", "source": "3432", "target": "4514" }, { "key": "geid_144_14053", "source": "2540", "target": "7844" }, { "key": "geid_144_14054", "source": "2710", "target": "6366" }, { "key": "geid_144_14055", "source": "5182", "target": "5962" }, { "key": "geid_144_14056", "source": "7162", "target": "4603" }, { "key": "geid_144_14057", "source": "9082", "target": "6775" }, { "key": "geid_144_14058", "source": "3883", "target": "3566" }, { "key": "geid_144_14059", "source": "1922", "target": "4953" }, { "key": "geid_144_14060", "source": "6011", "target": "8914" }, { "key": "geid_144_14061", "source": "6606", "target": "6114" }, { "key": "geid_144_14062", "source": "2420", "target": "2631" }, { "key": "geid_144_14063", "source": "3440", "target": "1472" }, { "key": "geid_144_14064", "source": "2331", "target": "3146" }, { "key": "geid_144_14065", "source": "4961", "target": "8574" }, { "key": "geid_144_14066", "source": "5344", "target": "6762" }, { "key": "geid_144_14067", "source": "2842", "target": "1844" }, { "key": "geid_144_14068", "source": "6525", "target": "7989" }, { "key": "geid_144_14069", "source": "8667", "target": "5358" }, { "key": "geid_144_14070", "source": "1287", "target": "3954" }, { "key": "geid_144_14071", "source": "4711", "target": "4668" }, { "key": "geid_144_14072", "source": "227", "target": "2531" }, { "key": "geid_144_14073", "source": "1209", "target": "2614" }, { "key": "geid_144_14074", "source": "440", "target": "1521" }, { "key": "geid_144_14075", "source": "1057", "target": "3161" }, { "key": "geid_144_14076", "source": "6296", "target": "1678" }, { "key": "geid_144_14077", "source": "5823", "target": "5343" }, { "key": "geid_144_14078", "source": "5889", "target": "5250" }, { "key": "geid_144_14079", "source": "9523", "target": "9452" }, { "key": "geid_144_14080", "source": "3422", "target": "8272" }, { "key": "geid_144_14081", "source": "5163", "target": "9376" }, { "key": "geid_144_14082", "source": "2765", "target": "1840" }, { "key": "geid_144_14083", "source": "328", "target": "423" }, { "key": "geid_144_14084", "source": "1612", "target": "368" }, { "key": "geid_144_14085", "source": "2968", "target": "6164" }, { "key": "geid_144_14086", "source": "4432", "target": "2901" }, { "key": "geid_144_14087", "source": "9275", "target": "4698" }, { "key": "geid_144_14088", "source": "9094", "target": "7881" }, { "key": "geid_144_14089", "source": "4294", "target": "7948" }, { "key": "geid_144_14090", "source": "4910", "target": "9037" }, { "key": "geid_144_14091", "source": "8289", "target": "9085" }, { "key": "geid_144_14092", "source": "3527", "target": "4442" }, { "key": "geid_144_14093", "source": "9869", "target": "4428" }, { "key": "geid_144_14094", "source": "1172", "target": "9533" }, { "key": "geid_144_14095", "source": "3092", "target": "3263" }, { "key": "geid_144_14096", "source": "1225", "target": "712" }, { "key": "geid_144_14097", "source": "3120", "target": "7394" }, { "key": "geid_144_14098", "source": "262", "target": "4262" }, { "key": "geid_144_14099", "source": "2931", "target": "5958" }, { "key": "geid_144_14100", "source": "30", "target": "4261" }, { "key": "geid_144_14101", "source": "5783", "target": "9107" }, { "key": "geid_144_14102", "source": "8346", "target": "810" }, { "key": "geid_144_14103", "source": "3047", "target": "6183" }, { "key": "geid_144_14104", "source": "8137", "target": "4041" }, { "key": "geid_144_14105", "source": "5895", "target": "8609" }, { "key": "geid_144_14106", "source": "5862", "target": "1287" }, { "key": "geid_144_14107", "source": "1460", "target": "2675" }, { "key": "geid_144_14108", "source": "8017", "target": "820" }, { "key": "geid_144_14109", "source": "9904", "target": "479" }, { "key": "geid_144_14110", "source": "6157", "target": "6624" }, { "key": "geid_144_14111", "source": "638", "target": "1578" }, { "key": "geid_144_14112", "source": "7289", "target": "5618" }, { "key": "geid_144_14113", "source": "7565", "target": "889" }, { "key": "geid_144_14114", "source": "1707", "target": "2084" }, { "key": "geid_144_14115", "source": "414", "target": "7684" }, { "key": "geid_144_14116", "source": "1302", "target": "3894" }, { "key": "geid_144_14117", "source": "8158", "target": "5289" }, { "key": "geid_144_14118", "source": "8770", "target": "1936" }, { "key": "geid_144_14119", "source": "9835", "target": "5301" }, { "key": "geid_144_14120", "source": "6361", "target": "4523" }, { "key": "geid_144_14121", "source": "4444", "target": "7929" }, { "key": "geid_144_14122", "source": "9937", "target": "7802" }, { "key": "geid_144_14123", "source": "4014", "target": "9336" }, { "key": "geid_144_14124", "source": "5238", "target": "3639" }, { "key": "geid_144_14125", "source": "3495", "target": "4906" }, { "key": "geid_144_14126", "source": "7507", "target": "3907" }, { "key": "geid_144_14127", "source": "7854", "target": "9438" }, { "key": "geid_144_14128", "source": "5493", "target": "5201" }, { "key": "geid_144_14129", "source": "7973", "target": "5613" }, { "key": "geid_144_14130", "source": "1834", "target": "2047" }, { "key": "geid_144_14131", "source": "918", "target": "8191" }, { "key": "geid_144_14132", "source": "7993", "target": "3758" }, { "key": "geid_144_14133", "source": "3727", "target": "3209" }, { "key": "geid_144_14134", "source": "274", "target": "9886" }, { "key": "geid_144_14135", "source": "8006", "target": "595" }, { "key": "geid_144_14136", "source": "3771", "target": "4164" }, { "key": "geid_144_14137", "source": "5947", "target": "2610" }, { "key": "geid_144_14138", "source": "8672", "target": "305" }, { "key": "geid_144_14139", "source": "6485", "target": "1647" }, { "key": "geid_144_14140", "source": "7822", "target": "4303" }, { "key": "geid_144_14141", "source": "2952", "target": "2538" }, { "key": "geid_144_14142", "source": "3955", "target": "120" }, { "key": "geid_144_14143", "source": "5286", "target": "9462" }, { "key": "geid_144_14144", "source": "2892", "target": "4678" }, { "key": "geid_144_14145", "source": "5972", "target": "6138" }, { "key": "geid_144_14146", "source": "2356", "target": "91" }, { "key": "geid_144_14147", "source": "1426", "target": "876" }, { "key": "geid_144_14148", "source": "2888", "target": "8928" }, { "key": "geid_144_14149", "source": "4650", "target": "6604" }, { "key": "geid_144_14150", "source": "9417", "target": "2648" }, { "key": "geid_144_14151", "source": "6103", "target": "2048" }, { "key": "geid_144_14152", "source": "8763", "target": "6276" }, { "key": "geid_144_14153", "source": "5805", "target": "7398" }, { "key": "geid_144_14154", "source": "9292", "target": "7064" }, { "key": "geid_144_14155", "source": "1258", "target": "1680" }, { "key": "geid_144_14156", "source": "1664", "target": "6425" }, { "key": "geid_144_14157", "source": "9576", "target": "784" }, { "key": "geid_144_14158", "source": "5929", "target": "3167" }, { "key": "geid_144_14159", "source": "8689", "target": "3674" }, { "key": "geid_144_14160", "source": "9406", "target": "4495" }, { "key": "geid_144_14161", "source": "655", "target": "363" }, { "key": "geid_144_14162", "source": "4647", "target": "38" }, { "key": "geid_144_14163", "source": "7619", "target": "1626" }, { "key": "geid_144_14164", "source": "115", "target": "1807" }, { "key": "geid_144_14165", "source": "6641", "target": "8554" }, { "key": "geid_144_14166", "source": "191", "target": "2752" }, { "key": "geid_144_14167", "source": "1137", "target": "8330" }, { "key": "geid_144_14168", "source": "8689", "target": "9982" }, { "key": "geid_144_14169", "source": "4417", "target": "2765" }, { "key": "geid_144_14170", "source": "6854", "target": "7412" }, { "key": "geid_144_14171", "source": "6609", "target": "5980" }, { "key": "geid_144_14172", "source": "6166", "target": "741" }, { "key": "geid_144_14173", "source": "882", "target": "2060" }, { "key": "geid_144_14174", "source": "495", "target": "3333" }, { "key": "geid_144_14175", "source": "6657", "target": "7863" }, { "key": "geid_144_14176", "source": "1888", "target": "7971" }, { "key": "geid_144_14177", "source": "3677", "target": "917" }, { "key": "geid_144_14178", "source": "8780", "target": "1864" }, { "key": "geid_144_14179", "source": "8804", "target": "7473" }, { "key": "geid_144_14180", "source": "9805", "target": "8273" }, { "key": "geid_144_14181", "source": "1460", "target": "8171" }, { "key": "geid_144_14182", "source": "5654", "target": "2741" }, { "key": "geid_144_14183", "source": "4702", "target": "2965" }, { "key": "geid_144_14184", "source": "4082", "target": "2039" }, { "key": "geid_144_14185", "source": "5317", "target": "5263" }, { "key": "geid_144_14186", "source": "2655", "target": "7237" }, { "key": "geid_144_14187", "source": "6726", "target": "6650" }, { "key": "geid_144_14188", "source": "3520", "target": "3902" }, { "key": "geid_144_14189", "source": "2622", "target": "5231" }, { "key": "geid_144_14190", "source": "288", "target": "3560" }, { "key": "geid_144_14191", "source": "527", "target": "4957" }, { "key": "geid_144_14192", "source": "1938", "target": "8966" }, { "key": "geid_144_14193", "source": "6401", "target": "7149" }, { "key": "geid_144_14194", "source": "7787", "target": "3386" }, { "key": "geid_144_14195", "source": "4796", "target": "6890" }, { "key": "geid_144_14196", "source": "4121", "target": "4215" }, { "key": "geid_144_14197", "source": "3661", "target": "2963" }, { "key": "geid_144_14198", "source": "4844", "target": "5663" }, { "key": "geid_144_14199", "source": "2915", "target": "4297" }, { "key": "geid_144_14200", "source": "9572", "target": "977" }, { "key": "geid_144_14201", "source": "6912", "target": "8939" }, { "key": "geid_144_14202", "source": "3999", "target": "9421" }, { "key": "geid_144_14203", "source": "8361", "target": "8028" }, { "key": "geid_144_14204", "source": "9732", "target": "8755" }, { "key": "geid_144_14205", "source": "986", "target": "7040" }, { "key": "geid_144_14206", "source": "2968", "target": "7972" }, { "key": "geid_144_14207", "source": "3804", "target": "9793" }, { "key": "geid_144_14208", "source": "173", "target": "8361" }, { "key": "geid_144_14209", "source": "2486", "target": "9923" }, { "key": "geid_144_14210", "source": "2865", "target": "4949" }, { "key": "geid_144_14211", "source": "8997", "target": "4648" }, { "key": "geid_144_14212", "source": "1987", "target": "8454" }, { "key": "geid_144_14213", "source": "8027", "target": "632" }, { "key": "geid_144_14214", "source": "4155", "target": "5583" }, { "key": "geid_144_14215", "source": "469", "target": "7253" }, { "key": "geid_144_14216", "source": "6795", "target": "183" }, { "key": "geid_144_14217", "source": "1147", "target": "5778" }, { "key": "geid_144_14218", "source": "1350", "target": "6740" }, { "key": "geid_144_14219", "source": "3630", "target": "2942" }, { "key": "geid_144_14220", "source": "6290", "target": "5889" }, { "key": "geid_144_14221", "source": "3581", "target": "1485" }, { "key": "geid_144_14222", "source": "5264", "target": "8868" }, { "key": "geid_144_14223", "source": "4700", "target": "2322" }, { "key": "geid_144_14224", "source": "6176", "target": "7922" }, { "key": "geid_144_14225", "source": "2983", "target": "2276" }, { "key": "geid_144_14226", "source": "350", "target": "8083" }, { "key": "geid_144_14227", "source": "4292", "target": "3545" }, { "key": "geid_144_14228", "source": "1479", "target": "1151" }, { "key": "geid_144_14229", "source": "4023", "target": "3380" }, { "key": "geid_144_14230", "source": "2636", "target": "4479" }, { "key": "geid_144_14231", "source": "7422", "target": "174" }, { "key": "geid_144_14232", "source": "761", "target": "5981" }, { "key": "geid_144_14233", "source": "6836", "target": "6245" }, { "key": "geid_144_14234", "source": "9794", "target": "2302" }, { "key": "geid_144_14235", "source": "393", "target": "3929" }, { "key": "geid_144_14236", "source": "4602", "target": "798" }, { "key": "geid_144_14237", "source": "4083", "target": "886" }, { "key": "geid_144_14238", "source": "1626", "target": "8518" }, { "key": "geid_144_14239", "source": "1274", "target": "9092" }, { "key": "geid_144_14240", "source": "2516", "target": "6982" }, { "key": "geid_144_14241", "source": "3583", "target": "5550" }, { "key": "geid_144_14242", "source": "4947", "target": "3639" }, { "key": "geid_144_14243", "source": "9187", "target": "822" }, { "key": "geid_144_14244", "source": "5034", "target": "2281" }, { "key": "geid_144_14245", "source": "6825", "target": "2438" }, { "key": "geid_144_14246", "source": "383", "target": "5242" }, { "key": "geid_144_14247", "source": "523", "target": "3619" }, { "key": "geid_144_14248", "source": "9739", "target": "8802" }, { "key": "geid_144_14249", "source": "766", "target": "3811" }, { "key": "geid_144_14250", "source": "7849", "target": "8251" }, { "key": "geid_144_14251", "source": "8267", "target": "2004" }, { "key": "geid_144_14252", "source": "4324", "target": "7373" }, { "key": "geid_144_14253", "source": "2959", "target": "2417" }, { "key": "geid_144_14254", "source": "7952", "target": "8055" }, { "key": "geid_144_14255", "source": "6295", "target": "1603" }, { "key": "geid_144_14256", "source": "6479", "target": "2780" }, { "key": "geid_144_14257", "source": "8509", "target": "5617" }, { "key": "geid_144_14258", "source": "7054", "target": "9678" }, { "key": "geid_144_14259", "source": "4223", "target": "1079" }, { "key": "geid_144_14260", "source": "5789", "target": "5348" }, { "key": "geid_144_14261", "source": "3345", "target": "3871" }, { "key": "geid_144_14262", "source": "8316", "target": "2505" }, { "key": "geid_144_14263", "source": "8210", "target": "4938" }, { "key": "geid_144_14264", "source": "298", "target": "6916" }, { "key": "geid_144_14265", "source": "8821", "target": "9810" }, { "key": "geid_144_14266", "source": "6137", "target": "4691" }, { "key": "geid_144_14267", "source": "3517", "target": "5602" }, { "key": "geid_144_14268", "source": "3680", "target": "5338" }, { "key": "geid_144_14269", "source": "9813", "target": "661" }, { "key": "geid_144_14270", "source": "1251", "target": "1037" }, { "key": "geid_144_14271", "source": "5938", "target": "8661" }, { "key": "geid_144_14272", "source": "3858", "target": "599" }, { "key": "geid_144_14273", "source": "6040", "target": "37" }, { "key": "geid_144_14274", "source": "9957", "target": "431" }, { "key": "geid_144_14275", "source": "9341", "target": "2799" }, { "key": "geid_144_14276", "source": "3541", "target": "2476" }, { "key": "geid_144_14277", "source": "7182", "target": "5816" }, { "key": "geid_144_14278", "source": "389", "target": "4831" }, { "key": "geid_144_14279", "source": "5935", "target": "4975" }, { "key": "geid_144_14280", "source": "2413", "target": "1232" }, { "key": "geid_144_14281", "source": "2272", "target": "4128" }, { "key": "geid_144_14282", "source": "7873", "target": "33" }, { "key": "geid_144_14283", "source": "147", "target": "9084" }, { "key": "geid_144_14284", "source": "5465", "target": "565" }, { "key": "geid_144_14285", "source": "6944", "target": "8150" }, { "key": "geid_144_14286", "source": "5802", "target": "9028" }, { "key": "geid_144_14287", "source": "9225", "target": "4000" }, { "key": "geid_144_14288", "source": "9263", "target": "962" }, { "key": "geid_144_14289", "source": "2846", "target": "6659" }, { "key": "geid_144_14290", "source": "4654", "target": "7848" }, { "key": "geid_144_14291", "source": "7023", "target": "1478" }, { "key": "geid_144_14292", "source": "2295", "target": "5334" }, { "key": "geid_144_14293", "source": "6289", "target": "1255" }, { "key": "geid_144_14294", "source": "3426", "target": "7995" }, { "key": "geid_144_14295", "source": "1823", "target": "4880" }, { "key": "geid_144_14296", "source": "8228", "target": "5112" }, { "key": "geid_144_14297", "source": "5924", "target": "507" }, { "key": "geid_144_14298", "source": "3094", "target": "2123" }, { "key": "geid_144_14299", "source": "5542", "target": "4804" }, { "key": "geid_144_14300", "source": "4459", "target": "9666" }, { "key": "geid_144_14301", "source": "9306", "target": "1303" }, { "key": "geid_144_14302", "source": "3902", "target": "5809" }, { "key": "geid_144_14303", "source": "117", "target": "6239" }, { "key": "geid_144_14304", "source": "5598", "target": "4497" }, { "key": "geid_144_14305", "source": "1790", "target": "674" }, { "key": "geid_144_14306", "source": "1771", "target": "4877" }, { "key": "geid_144_14307", "source": "9079", "target": "9306" }, { "key": "geid_144_14308", "source": "6428", "target": "2197" }, { "key": "geid_144_14309", "source": "2052", "target": "7523" }, { "key": "geid_144_14310", "source": "9026", "target": "4080" }, { "key": "geid_144_14311", "source": "8537", "target": "1537" }, { "key": "geid_144_14312", "source": "8080", "target": "7705" }, { "key": "geid_144_14313", "source": "9046", "target": "5981" }, { "key": "geid_144_14314", "source": "6128", "target": "9855" }, { "key": "geid_144_14315", "source": "3621", "target": "8054" }, { "key": "geid_144_14316", "source": "2936", "target": "6331" }, { "key": "geid_144_14317", "source": "4495", "target": "5652" }, { "key": "geid_144_14318", "source": "5767", "target": "7784" }, { "key": "geid_144_14319", "source": "3855", "target": "8589" }, { "key": "geid_144_14320", "source": "1231", "target": "2062" }, { "key": "geid_144_14321", "source": "6913", "target": "2023" }, { "key": "geid_144_14322", "source": "1690", "target": "4862" }, { "key": "geid_144_14323", "source": "6950", "target": "4114" }, { "key": "geid_144_14324", "source": "7638", "target": "6640" }, { "key": "geid_144_14325", "source": "2324", "target": "9890" }, { "key": "geid_144_14326", "source": "9761", "target": "9074" }, { "key": "geid_144_14327", "source": "1741", "target": "580" }, { "key": "geid_144_14328", "source": "694", "target": "5986" }, { "key": "geid_144_14329", "source": "312", "target": "2927" }, { "key": "geid_144_14330", "source": "1379", "target": "5393" }, { "key": "geid_144_14331", "source": "4237", "target": "8446" }, { "key": "geid_144_14332", "source": "65", "target": "9509" }, { "key": "geid_144_14333", "source": "1481", "target": "565" }, { "key": "geid_144_14334", "source": "2586", "target": "742" }, { "key": "geid_144_14335", "source": "2792", "target": "8276" }, { "key": "geid_144_14336", "source": "9607", "target": "2539" }, { "key": "geid_144_14337", "source": "3518", "target": "5914" }, { "key": "geid_144_14338", "source": "9788", "target": "4763" }, { "key": "geid_144_14339", "source": "9633", "target": "3787" }, { "key": "geid_144_14340", "source": "9865", "target": "1671" }, { "key": "geid_144_14341", "source": "1079", "target": "3714" }, { "key": "geid_144_14342", "source": "6100", "target": "4212" }, { "key": "geid_144_14343", "source": "4190", "target": "8801" }, { "key": "geid_144_14344", "source": "563", "target": "2782" }, { "key": "geid_144_14345", "source": "359", "target": "610" }, { "key": "geid_144_14346", "source": "175", "target": "2296" }, { "key": "geid_144_14347", "source": "8378", "target": "7111" }, { "key": "geid_144_14348", "source": "60", "target": "8227" }, { "key": "geid_144_14349", "source": "3918", "target": "8252" }, { "key": "geid_144_14350", "source": "7761", "target": "9725" }, { "key": "geid_144_14351", "source": "6730", "target": "9292" }, { "key": "geid_144_14352", "source": "1547", "target": "6137" }, { "key": "geid_144_14353", "source": "670", "target": "4239" }, { "key": "geid_144_14354", "source": "3164", "target": "7721" }, { "key": "geid_144_14355", "source": "7636", "target": "6308" }, { "key": "geid_144_14356", "source": "9437", "target": "8110" }, { "key": "geid_144_14357", "source": "3825", "target": "2055" }, { "key": "geid_144_14358", "source": "3323", "target": "142" }, { "key": "geid_144_14359", "source": "2815", "target": "9120" }, { "key": "geid_144_14360", "source": "4114", "target": "1270" }, { "key": "geid_144_14361", "source": "8143", "target": "7703" }, { "key": "geid_144_14362", "source": "9813", "target": "4277" }, { "key": "geid_144_14363", "source": "5466", "target": "3033" }, { "key": "geid_144_14364", "source": "8316", "target": "8204" }, { "key": "geid_144_14365", "source": "2922", "target": "2591" }, { "key": "geid_144_14366", "source": "8859", "target": "2530" }, { "key": "geid_144_14367", "source": "8902", "target": "2795" }, { "key": "geid_144_14368", "source": "1989", "target": "9341" }, { "key": "geid_144_14369", "source": "7896", "target": "6462" }, { "key": "geid_144_14370", "source": "4156", "target": "9985" }, { "key": "geid_144_14371", "source": "3092", "target": "5768" }, { "key": "geid_144_14372", "source": "6700", "target": "2647" }, { "key": "geid_144_14373", "source": "9917", "target": "7760" }, { "key": "geid_144_14374", "source": "1823", "target": "698" }, { "key": "geid_144_14375", "source": "3031", "target": "7921" }, { "key": "geid_144_14376", "source": "8374", "target": "3483" }, { "key": "geid_144_14377", "source": "2470", "target": "2920" }, { "key": "geid_144_14378", "source": "8387", "target": "1864" }, { "key": "geid_144_14379", "source": "8008", "target": "9826" }, { "key": "geid_144_14380", "source": "6757", "target": "5136" }, { "key": "geid_144_14381", "source": "6786", "target": "9681" }, { "key": "geid_144_14382", "source": "9292", "target": "9640" }, { "key": "geid_144_14383", "source": "5046", "target": "2577" }, { "key": "geid_144_14384", "source": "8304", "target": "5134" }, { "key": "geid_144_14385", "source": "5589", "target": "3664" }, { "key": "geid_144_14386", "source": "8140", "target": "8456" }, { "key": "geid_144_14387", "source": "7617", "target": "6973" }, { "key": "geid_144_14388", "source": "9513", "target": "2541" }, { "key": "geid_144_14389", "source": "4302", "target": "2539" }, { "key": "geid_144_14390", "source": "5567", "target": "7281" }, { "key": "geid_144_14391", "source": "7592", "target": "5935" }, { "key": "geid_144_14392", "source": "2857", "target": "366" }, { "key": "geid_144_14393", "source": "8183", "target": "3800" }, { "key": "geid_144_14394", "source": "9812", "target": "4882" }, { "key": "geid_144_14395", "source": "5729", "target": "4478" }, { "key": "geid_144_14396", "source": "6572", "target": "7178" }, { "key": "geid_144_14397", "source": "3816", "target": "5696" }, { "key": "geid_144_14398", "source": "8847", "target": "3326" }, { "key": "geid_144_14399", "source": "2790", "target": "423" }, { "key": "geid_144_14400", "source": "1996", "target": "3599" }, { "key": "geid_144_14401", "source": "2271", "target": "8471" }, { "key": "geid_144_14402", "source": "1028", "target": "9644" }, { "key": "geid_144_14403", "source": "9763", "target": "164" }, { "key": "geid_144_14404", "source": "8079", "target": "6738" }, { "key": "geid_144_14405", "source": "563", "target": "6365" }, { "key": "geid_144_14406", "source": "7135", "target": "336" }, { "key": "geid_144_14407", "source": "2817", "target": "4584" }, { "key": "geid_144_14408", "source": "3153", "target": "9422" }, { "key": "geid_144_14409", "source": "9991", "target": "4885" }, { "key": "geid_144_14410", "source": "6929", "target": "2111" }, { "key": "geid_144_14411", "source": "3192", "target": "4178" }, { "key": "geid_144_14412", "source": "2110", "target": "1469" }, { "key": "geid_144_14413", "source": "8626", "target": "5812" }, { "key": "geid_144_14414", "source": "658", "target": "328" }, { "key": "geid_144_14415", "source": "7206", "target": "5404" }, { "key": "geid_144_14416", "source": "5722", "target": "6649" }, { "key": "geid_144_14417", "source": "8165", "target": "1382" }, { "key": "geid_144_14418", "source": "9534", "target": "9272" }, { "key": "geid_144_14419", "source": "8584", "target": "4042" }, { "key": "geid_144_14420", "source": "5700", "target": "3253" }, { "key": "geid_144_14421", "source": "2064", "target": "7918" }, { "key": "geid_144_14422", "source": "4497", "target": "8128" }, { "key": "geid_144_14423", "source": "8223", "target": "9743" }, { "key": "geid_144_14424", "source": "9310", "target": "6692" }, { "key": "geid_144_14425", "source": "4388", "target": "5434" }, { "key": "geid_144_14426", "source": "8095", "target": "6717" }, { "key": "geid_144_14427", "source": "1822", "target": "1916" }, { "key": "geid_144_14428", "source": "8613", "target": "5194" }, { "key": "geid_144_14429", "source": "1158", "target": "4734" }, { "key": "geid_144_14430", "source": "8288", "target": "8696" }, { "key": "geid_144_14431", "source": "6533", "target": "1821" }, { "key": "geid_144_14432", "source": "1544", "target": "8421" }, { "key": "geid_144_14433", "source": "466", "target": "7316" }, { "key": "geid_144_14434", "source": "3009", "target": "649" }, { "key": "geid_144_14435", "source": "3359", "target": "4285" }, { "key": "geid_144_14436", "source": "8178", "target": "1679" }, { "key": "geid_144_14437", "source": "6894", "target": "3474" }, { "key": "geid_144_14438", "source": "5594", "target": "3446" }, { "key": "geid_144_14439", "source": "2120", "target": "2352" }, { "key": "geid_144_14440", "source": "6171", "target": "4502" }, { "key": "geid_144_14441", "source": "2382", "target": "9305" }, { "key": "geid_144_14442", "source": "6450", "target": "3984" }, { "key": "geid_144_14443", "source": "509", "target": "9501" }, { "key": "geid_144_14444", "source": "1452", "target": "6760" }, { "key": "geid_144_14445", "source": "902", "target": "1031" }, { "key": "geid_144_14446", "source": "3580", "target": "9864" }, { "key": "geid_144_14447", "source": "8747", "target": "1885" }, { "key": "geid_144_14448", "source": "5774", "target": "6941" }, { "key": "geid_144_14449", "source": "8628", "target": "403" }, { "key": "geid_144_14450", "source": "8146", "target": "3733" }, { "key": "geid_144_14451", "source": "827", "target": "6261" }, { "key": "geid_144_14452", "source": "627", "target": "6544" }, { "key": "geid_144_14453", "source": "5023", "target": "2841" }, { "key": "geid_144_14454", "source": "6990", "target": "4362" }, { "key": "geid_144_14455", "source": "6641", "target": "9731" }, { "key": "geid_144_14456", "source": "8763", "target": "1930" }, { "key": "geid_144_14457", "source": "6511", "target": "541" }, { "key": "geid_144_14458", "source": "240", "target": "1985" }, { "key": "geid_144_14459", "source": "3375", "target": "8536" }, { "key": "geid_144_14460", "source": "1911", "target": "7636" }, { "key": "geid_144_14461", "source": "5629", "target": "8905" }, { "key": "geid_144_14462", "source": "4699", "target": "4153" }, { "key": "geid_144_14463", "source": "6659", "target": "5037" }, { "key": "geid_144_14464", "source": "2769", "target": "1292" }, { "key": "geid_144_14465", "source": "6747", "target": "9234" }, { "key": "geid_144_14466", "source": "8822", "target": "5938" }, { "key": "geid_144_14467", "source": "1896", "target": "1109" }, { "key": "geid_144_14468", "source": "126", "target": "4382" }, { "key": "geid_144_14469", "source": "8277", "target": "9541" }, { "key": "geid_144_14470", "source": "2964", "target": "8797" }, { "key": "geid_144_14471", "source": "6105", "target": "6193" }, { "key": "geid_144_14472", "source": "4908", "target": "6590" }, { "key": "geid_144_14473", "source": "9863", "target": "4821" }, { "key": "geid_144_14474", "source": "3796", "target": "8933" }, { "key": "geid_144_14475", "source": "3437", "target": "7661" }, { "key": "geid_144_14476", "source": "374", "target": "1786" }, { "key": "geid_144_14477", "source": "4116", "target": "3032" }, { "key": "geid_144_14478", "source": "4047", "target": "9126" }, { "key": "geid_144_14479", "source": "862", "target": "1191" }, { "key": "geid_144_14480", "source": "2039", "target": "63" }, { "key": "geid_144_14481", "source": "1932", "target": "1583" }, { "key": "geid_144_14482", "source": "9388", "target": "5886" }, { "key": "geid_144_14483", "source": "2791", "target": "3579" }, { "key": "geid_144_14484", "source": "1298", "target": "6607" }, { "key": "geid_144_14485", "source": "19", "target": "2379" }, { "key": "geid_144_14486", "source": "5862", "target": "7161" }, { "key": "geid_144_14487", "source": "9199", "target": "7166" }, { "key": "geid_144_14488", "source": "5332", "target": "7650" }, { "key": "geid_144_14489", "source": "4190", "target": "4579" }, { "key": "geid_144_14490", "source": "3338", "target": "1220" }, { "key": "geid_144_14491", "source": "5872", "target": "7457" }, { "key": "geid_144_14492", "source": "4661", "target": "6818" }, { "key": "geid_144_14493", "source": "3841", "target": "7416" }, { "key": "geid_144_14494", "source": "93", "target": "951" }, { "key": "geid_144_14495", "source": "4742", "target": "3232" }, { "key": "geid_144_14496", "source": "699", "target": "6726" }, { "key": "geid_144_14497", "source": "6590", "target": "9500" }, { "key": "geid_144_14498", "source": "3667", "target": "6780" }, { "key": "geid_144_14499", "source": "9245", "target": "9444" }, { "key": "geid_144_14500", "source": "5446", "target": "2338" }, { "key": "geid_144_14501", "source": "3837", "target": "8587" }, { "key": "geid_144_14502", "source": "6455", "target": "3817" }, { "key": "geid_144_14503", "source": "92", "target": "5131" }, { "key": "geid_144_14504", "source": "9886", "target": "681" }, { "key": "geid_144_14505", "source": "2842", "target": "3748" }, { "key": "geid_144_14506", "source": "3282", "target": "3042" }, { "key": "geid_144_14507", "source": "2607", "target": "3927" }, { "key": "geid_144_14508", "source": "7074", "target": "7871" }, { "key": "geid_144_14509", "source": "4446", "target": "7087" }, { "key": "geid_144_14510", "source": "9328", "target": "2732" }, { "key": "geid_144_14511", "source": "489", "target": "2268" }, { "key": "geid_144_14512", "source": "696", "target": "8008" }, { "key": "geid_144_14513", "source": "2393", "target": "4105" }, { "key": "geid_144_14514", "source": "8405", "target": "6048" }, { "key": "geid_144_14515", "source": "7002", "target": "4481" }, { "key": "geid_144_14516", "source": "6608", "target": "2622" }, { "key": "geid_144_14517", "source": "3605", "target": "4132" }, { "key": "geid_144_14518", "source": "1110", "target": "263" }, { "key": "geid_144_14519", "source": "4442", "target": "7657" }, { "key": "geid_144_14520", "source": "2832", "target": "3617" }, { "key": "geid_144_14521", "source": "9441", "target": "2647" }, { "key": "geid_144_14522", "source": "7891", "target": "5809" }, { "key": "geid_144_14523", "source": "9608", "target": "4660" }, { "key": "geid_144_14524", "source": "3214", "target": "7313" }, { "key": "geid_144_14525", "source": "6664", "target": "6778" }, { "key": "geid_144_14526", "source": "1745", "target": "8810" }, { "key": "geid_144_14527", "source": "9127", "target": "7597" }, { "key": "geid_144_14528", "source": "5513", "target": "4468" }, { "key": "geid_144_14529", "source": "410", "target": "3759" }, { "key": "geid_144_14530", "source": "3551", "target": "3080" }, { "key": "geid_144_14531", "source": "2091", "target": "6569" }, { "key": "geid_144_14532", "source": "1959", "target": "1028" }, { "key": "geid_144_14533", "source": "6376", "target": "8822" }, { "key": "geid_144_14534", "source": "797", "target": "8698" }, { "key": "geid_144_14535", "source": "6549", "target": "2610" }, { "key": "geid_144_14536", "source": "8890", "target": "4985" }, { "key": "geid_144_14537", "source": "3558", "target": "6441" }, { "key": "geid_144_14538", "source": "3830", "target": "1908" }, { "key": "geid_144_14539", "source": "340", "target": "6030" }, { "key": "geid_144_14540", "source": "8112", "target": "9763" }, { "key": "geid_144_14541", "source": "4483", "target": "9862" }, { "key": "geid_144_14542", "source": "6022", "target": "5572" }, { "key": "geid_144_14543", "source": "7579", "target": "4985" }, { "key": "geid_144_14544", "source": "4956", "target": "656" }, { "key": "geid_144_14545", "source": "4458", "target": "6455" }, { "key": "geid_144_14546", "source": "9881", "target": "9432" }, { "key": "geid_144_14547", "source": "4686", "target": "9441" }, { "key": "geid_144_14548", "source": "3385", "target": "2745" }, { "key": "geid_144_14549", "source": "3685", "target": "5273" }, { "key": "geid_144_14550", "source": "1210", "target": "7511" }, { "key": "geid_144_14551", "source": "8484", "target": "1112" }, { "key": "geid_144_14552", "source": "4961", "target": "2691" }, { "key": "geid_144_14553", "source": "2643", "target": "1398" }, { "key": "geid_144_14554", "source": "1058", "target": "4683" }, { "key": "geid_144_14555", "source": "8258", "target": "7065" }, { "key": "geid_144_14556", "source": "7939", "target": "2770" }, { "key": "geid_144_14557", "source": "8961", "target": "5353" }, { "key": "geid_144_14558", "source": "4722", "target": "3466" }, { "key": "geid_144_14559", "source": "1237", "target": "7083" }, { "key": "geid_144_14560", "source": "8333", "target": "8871" }, { "key": "geid_144_14561", "source": "7499", "target": "3593" }, { "key": "geid_144_14562", "source": "4701", "target": "1798" }, { "key": "geid_144_14563", "source": "6939", "target": "2969" }, { "key": "geid_144_14564", "source": "3612", "target": "8970" }, { "key": "geid_144_14565", "source": "4370", "target": "222" }, { "key": "geid_144_14566", "source": "8400", "target": "6960" }, { "key": "geid_144_14567", "source": "8", "target": "5577" }, { "key": "geid_144_14568", "source": "7620", "target": "2805" }, { "key": "geid_144_14569", "source": "8722", "target": "3074" }, { "key": "geid_144_14570", "source": "5808", "target": "1479" }, { "key": "geid_144_14571", "source": "9335", "target": "6396" }, { "key": "geid_144_14572", "source": "6888", "target": "6086" }, { "key": "geid_144_14573", "source": "3997", "target": "1726" }, { "key": "geid_144_14574", "source": "3666", "target": "6952" }, { "key": "geid_144_14575", "source": "4699", "target": "7191" }, { "key": "geid_144_14576", "source": "9236", "target": "5237" }, { "key": "geid_144_14577", "source": "1874", "target": "6702" }, { "key": "geid_144_14578", "source": "4777", "target": "5989" }, { "key": "geid_144_14579", "source": "385", "target": "2098" }, { "key": "geid_144_14580", "source": "9363", "target": "7508" }, { "key": "geid_144_14581", "source": "5765", "target": "4505" }, { "key": "geid_144_14582", "source": "393", "target": "1394" }, { "key": "geid_144_14583", "source": "2559", "target": "3554" }, { "key": "geid_144_14584", "source": "1239", "target": "8175" }, { "key": "geid_144_14585", "source": "615", "target": "1525" }, { "key": "geid_144_14586", "source": "7646", "target": "279" }, { "key": "geid_144_14587", "source": "3591", "target": "4911" }, { "key": "geid_144_14588", "source": "7527", "target": "2074" }, { "key": "geid_144_14589", "source": "27", "target": "4894" }, { "key": "geid_144_14590", "source": "4617", "target": "8992" }, { "key": "geid_144_14591", "source": "3354", "target": "1537" }, { "key": "geid_144_14592", "source": "7694", "target": "6720" }, { "key": "geid_144_14593", "source": "7286", "target": "6349" }, { "key": "geid_144_14594", "source": "9892", "target": "5157" }, { "key": "geid_144_14595", "source": "3688", "target": "620" }, { "key": "geid_144_14596", "source": "1521", "target": "9007" }, { "key": "geid_144_14597", "source": "5753", "target": "4378" }, { "key": "geid_144_14598", "source": "2308", "target": "5913" }, { "key": "geid_144_14599", "source": "2440", "target": "3093" }, { "key": "geid_144_14600", "source": "438", "target": "7417" }, { "key": "geid_144_14601", "source": "7304", "target": "8072" }, { "key": "geid_144_14602", "source": "4367", "target": "4772" }, { "key": "geid_144_14603", "source": "297", "target": "3092" }, { "key": "geid_144_14604", "source": "7798", "target": "5767" }, { "key": "geid_144_14605", "source": "9238", "target": "1242" }, { "key": "geid_144_14606", "source": "5368", "target": "1637" }, { "key": "geid_144_14607", "source": "2052", "target": "7996" }, { "key": "geid_144_14608", "source": "4765", "target": "5417" }, { "key": "geid_144_14609", "source": "3166", "target": "1035" }, { "key": "geid_144_14610", "source": "1148", "target": "9383" }, { "key": "geid_144_14611", "source": "8244", "target": "9732" }, { "key": "geid_144_14612", "source": "1049", "target": "4680" }, { "key": "geid_144_14613", "source": "6654", "target": "2616" }, { "key": "geid_144_14614", "source": "1255", "target": "4094" }, { "key": "geid_144_14615", "source": "6113", "target": "7217" }, { "key": "geid_144_14616", "source": "7104", "target": "2198" }, { "key": "geid_144_14617", "source": "1486", "target": "6356" }, { "key": "geid_144_14618", "source": "8892", "target": "33" }, { "key": "geid_144_14619", "source": "7264", "target": "7405" }, { "key": "geid_144_14620", "source": "4414", "target": "3572" }, { "key": "geid_144_14621", "source": "6792", "target": "2122" }, { "key": "geid_144_14622", "source": "8086", "target": "2706" }, { "key": "geid_144_14623", "source": "6800", "target": "4224" }, { "key": "geid_144_14624", "source": "3598", "target": "741" }, { "key": "geid_144_14625", "source": "1326", "target": "4315" }, { "key": "geid_144_14626", "source": "4660", "target": "3695" }, { "key": "geid_144_14627", "source": "1260", "target": "418" }, { "key": "geid_144_14628", "source": "5247", "target": "5333" }, { "key": "geid_144_14629", "source": "1498", "target": "6261" }, { "key": "geid_144_14630", "source": "1452", "target": "1355" }, { "key": "geid_144_14631", "source": "1792", "target": "3998" }, { "key": "geid_144_14632", "source": "6267", "target": "86" }, { "key": "geid_144_14633", "source": "5544", "target": "1105" }, { "key": "geid_144_14634", "source": "1874", "target": "3225" }, { "key": "geid_144_14635", "source": "1196", "target": "7935" }, { "key": "geid_144_14636", "source": "9312", "target": "2085" }, { "key": "geid_144_14637", "source": "8361", "target": "9331" }, { "key": "geid_144_14638", "source": "691", "target": "388" }, { "key": "geid_144_14639", "source": "184", "target": "4743" }, { "key": "geid_144_14640", "source": "3419", "target": "5373" }, { "key": "geid_144_14641", "source": "146", "target": "9593" }, { "key": "geid_144_14642", "source": "9716", "target": "4047" }, { "key": "geid_144_14643", "source": "8424", "target": "8056" }, { "key": "geid_144_14644", "source": "2257", "target": "75" }, { "key": "geid_144_14645", "source": "1695", "target": "8220" }, { "key": "geid_144_14646", "source": "733", "target": "3087" }, { "key": "geid_144_14647", "source": "7452", "target": "6581" }, { "key": "geid_144_14648", "source": "6086", "target": "2220" }, { "key": "geid_144_14649", "source": "1401", "target": "1984" }, { "key": "geid_144_14650", "source": "2600", "target": "991" }, { "key": "geid_144_14651", "source": "1965", "target": "9630" }, { "key": "geid_144_14652", "source": "8416", "target": "4903" }, { "key": "geid_144_14653", "source": "1698", "target": "7440" }, { "key": "geid_144_14654", "source": "8666", "target": "5725" }, { "key": "geid_144_14655", "source": "1493", "target": "3007" }, { "key": "geid_144_14656", "source": "9931", "target": "6140" }, { "key": "geid_144_14657", "source": "2459", "target": "3556" }, { "key": "geid_144_14658", "source": "641", "target": "3043" }, { "key": "geid_144_14659", "source": "493", "target": "2146" }, { "key": "geid_144_14660", "source": "912", "target": "8700" }, { "key": "geid_144_14661", "source": "8430", "target": "4531" }, { "key": "geid_144_14662", "source": "2313", "target": "7548" }, { "key": "geid_144_14663", "source": "7700", "target": "9560" }, { "key": "geid_144_14664", "source": "2239", "target": "3338" }, { "key": "geid_144_14665", "source": "4802", "target": "6538" }, { "key": "geid_144_14666", "source": "5718", "target": "3216" }, { "key": "geid_144_14667", "source": "8623", "target": "2049" }, { "key": "geid_144_14668", "source": "4501", "target": "2344" }, { "key": "geid_144_14669", "source": "6757", "target": "9542" }, { "key": "geid_144_14670", "source": "2300", "target": "8269" }, { "key": "geid_144_14671", "source": "226", "target": "7335" }, { "key": "geid_144_14672", "source": "5311", "target": "7286" }, { "key": "geid_144_14673", "source": "3473", "target": "8584" }, { "key": "geid_144_14674", "source": "7278", "target": "2445" }, { "key": "geid_144_14675", "source": "378", "target": "1421" }, { "key": "geid_144_14676", "source": "4207", "target": "7971" }, { "key": "geid_144_14677", "source": "5313", "target": "2851" }, { "key": "geid_144_14678", "source": "4854", "target": "1983" }, { "key": "geid_144_14679", "source": "7915", "target": "8020" }, { "key": "geid_144_14680", "source": "7544", "target": "1808" }, { "key": "geid_144_14681", "source": "8349", "target": "4369" }, { "key": "geid_144_14682", "source": "9596", "target": "8648" }, { "key": "geid_144_14683", "source": "9954", "target": "5832" }, { "key": "geid_144_14684", "source": "9155", "target": "197" }, { "key": "geid_144_14685", "source": "2178", "target": "195" }, { "key": "geid_144_14686", "source": "7146", "target": "6428" }, { "key": "geid_144_14687", "source": "1607", "target": "8461" }, { "key": "geid_144_14688", "source": "1586", "target": "5463" }, { "key": "geid_144_14689", "source": "5152", "target": "6171" }, { "key": "geid_144_14690", "source": "9226", "target": "7546" }, { "key": "geid_144_14691", "source": "8826", "target": "6366" }, { "key": "geid_144_14692", "source": "532", "target": "6158" }, { "key": "geid_144_14693", "source": "8452", "target": "2013" }, { "key": "geid_144_14694", "source": "825", "target": "9090" }, { "key": "geid_144_14695", "source": "9993", "target": "5393" }, { "key": "geid_144_14696", "source": "1262", "target": "8430" }, { "key": "geid_144_14697", "source": "3973", "target": "366" }, { "key": "geid_144_14698", "source": "1619", "target": "1186" }, { "key": "geid_144_14699", "source": "3608", "target": "6897" }, { "key": "geid_144_14700", "source": "9657", "target": "8911" }, { "key": "geid_144_14701", "source": "3652", "target": "342" }, { "key": "geid_144_14702", "source": "1607", "target": "8259" }, { "key": "geid_144_14703", "source": "5835", "target": "7921" }, { "key": "geid_144_14704", "source": "1759", "target": "4908" }, { "key": "geid_144_14705", "source": "595", "target": "6055" }, { "key": "geid_144_14706", "source": "6820", "target": "9200" }, { "key": "geid_144_14707", "source": "6189", "target": "686" }, { "key": "geid_144_14708", "source": "2038", "target": "3609" }, { "key": "geid_144_14709", "source": "4756", "target": "1349" }, { "key": "geid_144_14710", "source": "6740", "target": "542" }, { "key": "geid_144_14711", "source": "7637", "target": "7371" }, { "key": "geid_144_14712", "source": "1841", "target": "1129" }, { "key": "geid_144_14713", "source": "6434", "target": "2344" }, { "key": "geid_144_14714", "source": "6257", "target": "8451" }, { "key": "geid_144_14715", "source": "2866", "target": "8756" }, { "key": "geid_144_14716", "source": "1339", "target": "3814" }, { "key": "geid_144_14717", "source": "2877", "target": "6075" }, { "key": "geid_144_14718", "source": "8484", "target": "6818" }, { "key": "geid_144_14719", "source": "4422", "target": "7634" }, { "key": "geid_144_14720", "source": "6159", "target": "9092" }, { "key": "geid_144_14721", "source": "2001", "target": "5819" }, { "key": "geid_144_14722", "source": "5305", "target": "6107" }, { "key": "geid_144_14723", "source": "3357", "target": "23" }, { "key": "geid_144_14724", "source": "9001", "target": "3800" }, { "key": "geid_144_14725", "source": "8662", "target": "5855" }, { "key": "geid_144_14726", "source": "1241", "target": "5516" }, { "key": "geid_144_14727", "source": "3907", "target": "347" }, { "key": "geid_144_14728", "source": "2599", "target": "2274" }, { "key": "geid_144_14729", "source": "3652", "target": "3295" }, { "key": "geid_144_14730", "source": "1495", "target": "2079" }, { "key": "geid_144_14731", "source": "9696", "target": "7819" }, { "key": "geid_144_14732", "source": "7932", "target": "5227" }, { "key": "geid_144_14733", "source": "2445", "target": "1401" }, { "key": "geid_144_14734", "source": "2504", "target": "9840" }, { "key": "geid_144_14735", "source": "9006", "target": "9086" }, { "key": "geid_144_14736", "source": "2120", "target": "6205" }, { "key": "geid_144_14737", "source": "1443", "target": "8263" }, { "key": "geid_144_14738", "source": "3776", "target": "3775" }, { "key": "geid_144_14739", "source": "623", "target": "9461" }, { "key": "geid_144_14740", "source": "2962", "target": "5682" }, { "key": "geid_144_14741", "source": "5561", "target": "1932" }, { "key": "geid_144_14742", "source": "6286", "target": "4240" }, { "key": "geid_144_14743", "source": "219", "target": "8420" }, { "key": "geid_144_14744", "source": "1299", "target": "6488" }, { "key": "geid_144_14745", "source": "5350", "target": "2594" }, { "key": "geid_144_14746", "source": "9833", "target": "4350" }, { "key": "geid_144_14747", "source": "6927", "target": "6282" }, { "key": "geid_144_14748", "source": "3877", "target": "2962" }, { "key": "geid_144_14749", "source": "2706", "target": "6352" }, { "key": "geid_144_14750", "source": "9871", "target": "2199" }, { "key": "geid_144_14751", "source": "7563", "target": "5104" }, { "key": "geid_144_14752", "source": "2635", "target": "943" }, { "key": "geid_144_14753", "source": "6191", "target": "9071" }, { "key": "geid_144_14754", "source": "4309", "target": "5256" }, { "key": "geid_144_14755", "source": "2340", "target": "384" }, { "key": "geid_144_14756", "source": "5705", "target": "8234" }, { "key": "geid_144_14757", "source": "3878", "target": "2300" }, { "key": "geid_144_14758", "source": "7146", "target": "3656" }, { "key": "geid_144_14759", "source": "512", "target": "2650" }, { "key": "geid_144_14760", "source": "6827", "target": "5648" }, { "key": "geid_144_14761", "source": "9549", "target": "954" }, { "key": "geid_144_14762", "source": "1556", "target": "9694" }, { "key": "geid_144_14763", "source": "5075", "target": "5483" }, { "key": "geid_144_14764", "source": "7311", "target": "5616" }, { "key": "geid_144_14765", "source": "7983", "target": "8914" }, { "key": "geid_144_14766", "source": "4225", "target": "5533" }, { "key": "geid_144_14767", "source": "4079", "target": "4627" }, { "key": "geid_144_14768", "source": "9036", "target": "8173" }, { "key": "geid_144_14769", "source": "7345", "target": "5026" }, { "key": "geid_144_14770", "source": "5457", "target": "396" }, { "key": "geid_144_14771", "source": "1086", "target": "1386" }, { "key": "geid_144_14772", "source": "2165", "target": "4182" }, { "key": "geid_144_14773", "source": "8713", "target": "2051" }, { "key": "geid_144_14774", "source": "387", "target": "6555" }, { "key": "geid_144_14775", "source": "4298", "target": "8667" }, { "key": "geid_144_14776", "source": "2691", "target": "6933" }, { "key": "geid_144_14777", "source": "7656", "target": "839" }, { "key": "geid_144_14778", "source": "9330", "target": "5769" }, { "key": "geid_144_14779", "source": "5740", "target": "4125" }, { "key": "geid_144_14780", "source": "6172", "target": "4198" }, { "key": "geid_144_14781", "source": "4060", "target": "5446" }, { "key": "geid_144_14782", "source": "31", "target": "103" }, { "key": "geid_144_14783", "source": "6152", "target": "9417" }, { "key": "geid_144_14784", "source": "3378", "target": "6226" }, { "key": "geid_144_14785", "source": "4248", "target": "9445" }, { "key": "geid_144_14786", "source": "3812", "target": "1785" }, { "key": "geid_144_14787", "source": "6491", "target": "801" }, { "key": "geid_144_14788", "source": "7575", "target": "4281" }, { "key": "geid_144_14789", "source": "212", "target": "3215" }, { "key": "geid_144_14790", "source": "2358", "target": "3886" }, { "key": "geid_144_14791", "source": "8284", "target": "4563" }, { "key": "geid_144_14792", "source": "3859", "target": "451" }, { "key": "geid_144_14793", "source": "591", "target": "7225" }, { "key": "geid_144_14794", "source": "1105", "target": "5346" }, { "key": "geid_144_14795", "source": "1625", "target": "1006" }, { "key": "geid_144_14796", "source": "1592", "target": "8838" }, { "key": "geid_144_14797", "source": "3550", "target": "2315" }, { "key": "geid_144_14798", "source": "7463", "target": "2923" }, { "key": "geid_144_14799", "source": "5137", "target": "8270" }, { "key": "geid_144_14800", "source": "6677", "target": "4466" }, { "key": "geid_144_14801", "source": "3734", "target": "5259" }, { "key": "geid_144_14802", "source": "1243", "target": "8113" }, { "key": "geid_144_14803", "source": "6690", "target": "2058" }, { "key": "geid_144_14804", "source": "4999", "target": "802" }, { "key": "geid_144_14805", "source": "1156", "target": "311" }, { "key": "geid_144_14806", "source": "1637", "target": "3860" }, { "key": "geid_144_14807", "source": "5962", "target": "6282" }, { "key": "geid_144_14808", "source": "3100", "target": "7222" }, { "key": "geid_144_14809", "source": "6643", "target": "5079" }, { "key": "geid_144_14810", "source": "8600", "target": "9455" }, { "key": "geid_144_14811", "source": "3573", "target": "1591" }, { "key": "geid_144_14812", "source": "9766", "target": "8888" }, { "key": "geid_144_14813", "source": "4016", "target": "1117" }, { "key": "geid_144_14814", "source": "9208", "target": "5740" }, { "key": "geid_144_14815", "source": "7313", "target": "7575" }, { "key": "geid_144_14816", "source": "6365", "target": "7378" }, { "key": "geid_144_14817", "source": "9280", "target": "7330" }, { "key": "geid_144_14818", "source": "3287", "target": "2400" }, { "key": "geid_144_14819", "source": "2349", "target": "7723" }, { "key": "geid_144_14820", "source": "9576", "target": "1246" }, { "key": "geid_144_14821", "source": "4128", "target": "3233" }, { "key": "geid_144_14822", "source": "9466", "target": "3882" }, { "key": "geid_144_14823", "source": "69", "target": "3885" }, { "key": "geid_144_14824", "source": "1503", "target": "9487" }, { "key": "geid_144_14825", "source": "5121", "target": "6911" }, { "key": "geid_144_14826", "source": "1023", "target": "3880" }, { "key": "geid_144_14827", "source": "3396", "target": "8683" }, { "key": "geid_144_14828", "source": "4374", "target": "6231" }, { "key": "geid_144_14829", "source": "4909", "target": "7957" }, { "key": "geid_144_14830", "source": "3595", "target": "1188" }, { "key": "geid_144_14831", "source": "1876", "target": "2401" }, { "key": "geid_144_14832", "source": "5274", "target": "2052" }, { "key": "geid_144_14833", "source": "295", "target": "6667" }, { "key": "geid_144_14834", "source": "949", "target": "6967" }, { "key": "geid_144_14835", "source": "5415", "target": "8728" }, { "key": "geid_144_14836", "source": "9150", "target": "4938" }, { "key": "geid_144_14837", "source": "5307", "target": "6019" }, { "key": "geid_144_14838", "source": "6077", "target": "6112" }, { "key": "geid_144_14839", "source": "8529", "target": "5976" }, { "key": "geid_144_14840", "source": "6493", "target": "3171" }, { "key": "geid_144_14841", "source": "8437", "target": "2041" }, { "key": "geid_144_14842", "source": "8415", "target": "1815" }, { "key": "geid_144_14843", "source": "8451", "target": "1784" }, { "key": "geid_144_14844", "source": "6650", "target": "5287" }, { "key": "geid_144_14845", "source": "1297", "target": "730" }, { "key": "geid_144_14846", "source": "4198", "target": "8625" }, { "key": "geid_144_14847", "source": "3737", "target": "3207" }, { "key": "geid_144_14848", "source": "2214", "target": "356" }, { "key": "geid_144_14849", "source": "3902", "target": "8113" }, { "key": "geid_144_14850", "source": "2425", "target": "6111" }, { "key": "geid_144_14851", "source": "3314", "target": "3404" }, { "key": "geid_144_14852", "source": "5938", "target": "2598" }, { "key": "geid_144_14853", "source": "4545", "target": "7094" }, { "key": "geid_144_14854", "source": "1795", "target": "5437" }, { "key": "geid_144_14855", "source": "8766", "target": "6062" }, { "key": "geid_144_14856", "source": "1029", "target": "4725" }, { "key": "geid_144_14857", "source": "3008", "target": "9951" }, { "key": "geid_144_14858", "source": "5643", "target": "2227" }, { "key": "geid_144_14859", "source": "5890", "target": "4831" }, { "key": "geid_144_14860", "source": "3969", "target": "17" }, { "key": "geid_144_14861", "source": "4279", "target": "3702" }, { "key": "geid_144_14862", "source": "521", "target": "6410" }, { "key": "geid_144_14863", "source": "7069", "target": "2228" }, { "key": "geid_144_14864", "source": "8338", "target": "4664" }, { "key": "geid_144_14865", "source": "2329", "target": "4118" }, { "key": "geid_144_14866", "source": "4170", "target": "4098" }, { "key": "geid_144_14867", "source": "8547", "target": "7076" }, { "key": "geid_144_14868", "source": "4062", "target": "779" }, { "key": "geid_144_14869", "source": "7851", "target": "2810" }, { "key": "geid_144_14870", "source": "8673", "target": "3429" }, { "key": "geid_144_14871", "source": "8002", "target": "8699" }, { "key": "geid_144_14872", "source": "562", "target": "8576" }, { "key": "geid_144_14873", "source": "7621", "target": "6136" }, { "key": "geid_144_14874", "source": "1026", "target": "2012" }, { "key": "geid_144_14875", "source": "5644", "target": "1116" }, { "key": "geid_144_14876", "source": "8067", "target": "5755" }, { "key": "geid_144_14877", "source": "7072", "target": "5164" }, { "key": "geid_144_14878", "source": "7942", "target": "4168" }, { "key": "geid_144_14879", "source": "9009", "target": "3545" }, { "key": "geid_144_14880", "source": "9666", "target": "4037" }, { "key": "geid_144_14881", "source": "2678", "target": "6327" }, { "key": "geid_144_14882", "source": "424", "target": "3704" }, { "key": "geid_144_14883", "source": "9248", "target": "4849" }, { "key": "geid_144_14884", "source": "9258", "target": "1267" }, { "key": "geid_144_14885", "source": "5311", "target": "1473" }, { "key": "geid_144_14886", "source": "3417", "target": "5162" }, { "key": "geid_144_14887", "source": "4750", "target": "2345" }, { "key": "geid_144_14888", "source": "6310", "target": "8426" }, { "key": "geid_144_14889", "source": "6344", "target": "5370" }, { "key": "geid_144_14890", "source": "3986", "target": "702" }, { "key": "geid_144_14891", "source": "5359", "target": "5434" }, { "key": "geid_144_14892", "source": "6858", "target": "9747" }, { "key": "geid_144_14893", "source": "3692", "target": "3731" }, { "key": "geid_144_14894", "source": "2146", "target": "1900" }, { "key": "geid_144_14895", "source": "7971", "target": "3449" }, { "key": "geid_144_14896", "source": "7384", "target": "3526" }, { "key": "geid_144_14897", "source": "7400", "target": "4485" }, { "key": "geid_144_14898", "source": "717", "target": "6481" }, { "key": "geid_144_14899", "source": "1612", "target": "818" }, { "key": "geid_144_14900", "source": "6199", "target": "3191" }, { "key": "geid_144_14901", "source": "9605", "target": "8828" }, { "key": "geid_144_14902", "source": "7662", "target": "5997" }, { "key": "geid_144_14903", "source": "7598", "target": "966" }, { "key": "geid_144_14904", "source": "274", "target": "6416" }, { "key": "geid_144_14905", "source": "2977", "target": "984" }, { "key": "geid_144_14906", "source": "3549", "target": "6065" }, { "key": "geid_144_14907", "source": "265", "target": "2076" }, { "key": "geid_144_14908", "source": "3409", "target": "1333" }, { "key": "geid_144_14909", "source": "2047", "target": "5847" }, { "key": "geid_144_14910", "source": "7305", "target": "1342" }, { "key": "geid_144_14911", "source": "2220", "target": "9596" }, { "key": "geid_144_14912", "source": "5131", "target": "7137" }, { "key": "geid_144_14913", "source": "1143", "target": "7108" }, { "key": "geid_144_14914", "source": "2688", "target": "2680" }, { "key": "geid_144_14915", "source": "5373", "target": "6627" }, { "key": "geid_144_14916", "source": "4218", "target": "5547" }, { "key": "geid_144_14917", "source": "869", "target": "4150" }, { "key": "geid_144_14918", "source": "3233", "target": "6021" }, { "key": "geid_144_14919", "source": "1440", "target": "6226" }, { "key": "geid_144_14920", "source": "8546", "target": "268" }, { "key": "geid_144_14921", "source": "8976", "target": "8519" }, { "key": "geid_144_14922", "source": "1644", "target": "4927" }, { "key": "geid_144_14923", "source": "1474", "target": "4295" }, { "key": "geid_144_14924", "source": "1255", "target": "2042" }, { "key": "geid_144_14925", "source": "5376", "target": "1198" }, { "key": "geid_144_14926", "source": "4288", "target": "9898" }, { "key": "geid_144_14927", "source": "5525", "target": "8839" }, { "key": "geid_144_14928", "source": "7613", "target": "6551" }, { "key": "geid_144_14929", "source": "2907", "target": "5021" }, { "key": "geid_144_14930", "source": "3697", "target": "4526" }, { "key": "geid_144_14931", "source": "9468", "target": "1626" }, { "key": "geid_144_14932", "source": "7703", "target": "9299" }, { "key": "geid_144_14933", "source": "4577", "target": "4945" }, { "key": "geid_144_14934", "source": "9145", "target": "5898" }, { "key": "geid_144_14935", "source": "2174", "target": "5474" }, { "key": "geid_144_14936", "source": "4102", "target": "9137" }, { "key": "geid_144_14937", "source": "5959", "target": "1353" }, { "key": "geid_144_14938", "source": "5802", "target": "4723" }, { "key": "geid_144_14939", "source": "579", "target": "7823" }, { "key": "geid_144_14940", "source": "3045", "target": "5943" }, { "key": "geid_144_14941", "source": "3275", "target": "9009" }, { "key": "geid_144_14942", "source": "4681", "target": "338" }, { "key": "geid_144_14943", "source": "9777", "target": "9282" }, { "key": "geid_144_14944", "source": "8607", "target": "7629" }, { "key": "geid_144_14945", "source": "8146", "target": "8326" }, { "key": "geid_144_14946", "source": "2899", "target": "4239" }, { "key": "geid_144_14947", "source": "5263", "target": "2659" }, { "key": "geid_144_14948", "source": "2422", "target": "1098" }, { "key": "geid_144_14949", "source": "6739", "target": "1066" }, { "key": "geid_144_14950", "source": "9759", "target": "3991" }, { "key": "geid_144_14951", "source": "3278", "target": "299" }, { "key": "geid_144_14952", "source": "2129", "target": "8105" }, { "key": "geid_144_14953", "source": "2053", "target": "3871" }, { "key": "geid_144_14954", "source": "9119", "target": "3921" }, { "key": "geid_144_14955", "source": "752", "target": "6308" }, { "key": "geid_144_14956", "source": "2380", "target": "409" }, { "key": "geid_144_14957", "source": "7415", "target": "9498" }, { "key": "geid_144_14958", "source": "6765", "target": "5422" }, { "key": "geid_144_14959", "source": "5952", "target": "2305" }, { "key": "geid_144_14960", "source": "8937", "target": "8446" }, { "key": "geid_144_14961", "source": "2401", "target": "9488" }, { "key": "geid_144_14962", "source": "2582", "target": "1445" }, { "key": "geid_144_14963", "source": "8119", "target": "4844" }, { "key": "geid_144_14964", "source": "499", "target": "4375" }, { "key": "geid_144_14965", "source": "9434", "target": "4150" }, { "key": "geid_144_14966", "source": "3636", "target": "8033" }, { "key": "geid_144_14967", "source": "2449", "target": "4122" }, { "key": "geid_144_14968", "source": "5715", "target": "483" }, { "key": "geid_144_14969", "source": "4598", "target": "5343" }, { "key": "geid_144_14970", "source": "6507", "target": "6100" }, { "key": "geid_144_14971", "source": "4626", "target": "9664" }, { "key": "geid_144_14972", "source": "3190", "target": "8577" }, { "key": "geid_144_14973", "source": "3902", "target": "9380" }, { "key": "geid_144_14974", "source": "9551", "target": "7887" }, { "key": "geid_144_14975", "source": "4890", "target": "8012" }, { "key": "geid_144_14976", "source": "2658", "target": "1427" }, { "key": "geid_144_14977", "source": "3944", "target": "6206" }, { "key": "geid_144_14978", "source": "9169", "target": "4678" }, { "key": "geid_144_14979", "source": "4488", "target": "1040" }, { "key": "geid_144_14980", "source": "936", "target": "1478" }, { "key": "geid_144_14981", "source": "7069", "target": "5258" }, { "key": "geid_144_14982", "source": "7735", "target": "3645" }, { "key": "geid_144_14983", "source": "3364", "target": "3503" }, { "key": "geid_144_14984", "source": "8544", "target": "3572" }, { "key": "geid_144_14985", "source": "5340", "target": "5948" }, { "key": "geid_144_14986", "source": "5809", "target": "7205" }, { "key": "geid_144_14987", "source": "8200", "target": "3654" }, { "key": "geid_144_14988", "source": "2371", "target": "5200" }, { "key": "geid_144_14989", "source": "6319", "target": "985" }, { "key": "geid_144_14990", "source": "3961", "target": "245" }, { "key": "geid_144_14991", "source": "6894", "target": "93" }, { "key": "geid_144_14992", "source": "2116", "target": "4507" }, { "key": "geid_144_14993", "source": "6970", "target": "2064" }, { "key": "geid_144_14994", "source": "8064", "target": "7740" }, { "key": "geid_144_14995", "source": "2945", "target": "8567" }, { "key": "geid_144_14996", "source": "9666", "target": "8122" }, { "key": "geid_144_14997", "source": "2095", "target": "5892" }, { "key": "geid_144_14998", "source": "6261", "target": "2861" }, { "key": "geid_144_14999", "source": "5629", "target": "1366" }, { "key": "geid_144_15000", "source": "1910", "target": "9320" }, { "key": "geid_144_15001", "source": "9343", "target": "5945" }, { "key": "geid_144_15002", "source": "7202", "target": "6702" }, { "key": "geid_144_15003", "source": "4039", "target": "1353" }, { "key": "geid_144_15004", "source": "2598", "target": "3714" }, { "key": "geid_144_15005", "source": "7681", "target": "8314" }, { "key": "geid_144_15006", "source": "8821", "target": "490" }, { "key": "geid_144_15007", "source": "458", "target": "7076" }, { "key": "geid_144_15008", "source": "1169", "target": "4583" }, { "key": "geid_144_15009", "source": "7099", "target": "1518" }, { "key": "geid_144_15010", "source": "9583", "target": "1429" }, { "key": "geid_144_15011", "source": "8377", "target": "7149" }, { "key": "geid_144_15012", "source": "8617", "target": "4955" }, { "key": "geid_144_15013", "source": "9223", "target": "6074" }, { "key": "geid_144_15014", "source": "1960", "target": "3590" }, { "key": "geid_144_15015", "source": "1129", "target": "2785" }, { "key": "geid_144_15016", "source": "4673", "target": "9630" }, { "key": "geid_144_15017", "source": "8594", "target": "5723" }, { "key": "geid_144_15018", "source": "1644", "target": "8548" }, { "key": "geid_144_15019", "source": "7221", "target": "8279" }, { "key": "geid_144_15020", "source": "9813", "target": "9485" }, { "key": "geid_144_15021", "source": "3311", "target": "2287" }, { "key": "geid_144_15022", "source": "9313", "target": "7538" }, { "key": "geid_144_15023", "source": "7703", "target": "7429" }, { "key": "geid_144_15024", "source": "1604", "target": "9670" }, { "key": "geid_144_15025", "source": "7213", "target": "6749" }, { "key": "geid_144_15026", "source": "3625", "target": "3641" }, { "key": "geid_144_15027", "source": "595", "target": "5704" }, { "key": "geid_144_15028", "source": "4332", "target": "2670" }, { "key": "geid_144_15029", "source": "606", "target": "1542" }, { "key": "geid_144_15030", "source": "8423", "target": "7348" }, { "key": "geid_144_15031", "source": "7917", "target": "3667" }, { "key": "geid_144_15032", "source": "9416", "target": "9080" }, { "key": "geid_144_15033", "source": "3475", "target": "3659" }, { "key": "geid_144_15034", "source": "2510", "target": "9998" }, { "key": "geid_144_15035", "source": "6675", "target": "8976" }, { "key": "geid_144_15036", "source": "4381", "target": "7068" }, { "key": "geid_144_15037", "source": "1713", "target": "7811" }, { "key": "geid_144_15038", "source": "8428", "target": "6609" }, { "key": "geid_144_15039", "source": "1648", "target": "6433" }, { "key": "geid_144_15040", "source": "918", "target": "6008" }, { "key": "geid_144_15041", "source": "6726", "target": "9493" }, { "key": "geid_144_15042", "source": "4692", "target": "8614" }, { "key": "geid_144_15043", "source": "5804", "target": "1680" }, { "key": "geid_144_15044", "source": "5130", "target": "1655" }, { "key": "geid_144_15045", "source": "1220", "target": "2155" }, { "key": "geid_144_15046", "source": "5893", "target": "4625" }, { "key": "geid_144_15047", "source": "4203", "target": "1026" }, { "key": "geid_144_15048", "source": "7976", "target": "6000" }, { "key": "geid_144_15049", "source": "4507", "target": "2763" }, { "key": "geid_144_15050", "source": "2404", "target": "4321" }, { "key": "geid_144_15051", "source": "1617", "target": "8872" }, { "key": "geid_144_15052", "source": "3331", "target": "1871" }, { "key": "geid_144_15053", "source": "408", "target": "3565" }, { "key": "geid_144_15054", "source": "4137", "target": "4618" }, { "key": "geid_144_15055", "source": "7970", "target": "5280" }, { "key": "geid_144_15056", "source": "121", "target": "9056" }, { "key": "geid_144_15057", "source": "6320", "target": "2776" }, { "key": "geid_144_15058", "source": "4249", "target": "8401" }, { "key": "geid_144_15059", "source": "6352", "target": "2155" }, { "key": "geid_144_15060", "source": "478", "target": "390" }, { "key": "geid_144_15061", "source": "9372", "target": "9429" }, { "key": "geid_144_15062", "source": "4931", "target": "4548" }, { "key": "geid_144_15063", "source": "6532", "target": "1078" }, { "key": "geid_144_15064", "source": "5820", "target": "9162" }, { "key": "geid_144_15065", "source": "4193", "target": "2621" }, { "key": "geid_144_15066", "source": "9817", "target": "4173" }, { "key": "geid_144_15067", "source": "6605", "target": "4159" }, { "key": "geid_144_15068", "source": "1670", "target": "5473" }, { "key": "geid_144_15069", "source": "2160", "target": "6026" }, { "key": "geid_144_15070", "source": "6159", "target": "4421" }, { "key": "geid_144_15071", "source": "4502", "target": "9095" }, { "key": "geid_144_15072", "source": "4646", "target": "1841" }, { "key": "geid_144_15073", "source": "6804", "target": "8427" }, { "key": "geid_144_15074", "source": "9786", "target": "8277" }, { "key": "geid_144_15075", "source": "5140", "target": "7265" }, { "key": "geid_144_15076", "source": "1141", "target": "4943" }, { "key": "geid_144_15077", "source": "477", "target": "7688" }, { "key": "geid_144_15078", "source": "8888", "target": "7538" }, { "key": "geid_144_15079", "source": "7067", "target": "6359" }, { "key": "geid_144_15080", "source": "427", "target": "5431" }, { "key": "geid_144_15081", "source": "3557", "target": "6081" }, { "key": "geid_144_15082", "source": "4373", "target": "3673" }, { "key": "geid_144_15083", "source": "9725", "target": "1944" }, { "key": "geid_144_15084", "source": "8636", "target": "7468" }, { "key": "geid_144_15085", "source": "3552", "target": "7885" }, { "key": "geid_144_15086", "source": "8035", "target": "3471" }, { "key": "geid_144_15087", "source": "2600", "target": "8205" }, { "key": "geid_144_15088", "source": "8988", "target": "3624" }, { "key": "geid_144_15089", "source": "3874", "target": "6026" }, { "key": "geid_144_15090", "source": "9459", "target": "8999" }, { "key": "geid_144_15091", "source": "8483", "target": "6549" }, { "key": "geid_144_15092", "source": "3734", "target": "4872" }, { "key": "geid_144_15093", "source": "6817", "target": "1626" }, { "key": "geid_144_15094", "source": "8970", "target": "5918" }, { "key": "geid_144_15095", "source": "3593", "target": "4076" }, { "key": "geid_144_15096", "source": "9070", "target": "3305" }, { "key": "geid_144_15097", "source": "3557", "target": "996" }, { "key": "geid_144_15098", "source": "7654", "target": "6445" }, { "key": "geid_144_15099", "source": "6492", "target": "2229" }, { "key": "geid_144_15100", "source": "2321", "target": "9489" }, { "key": "geid_144_15101", "source": "2957", "target": "1476" }, { "key": "geid_144_15102", "source": "1469", "target": "7499" }, { "key": "geid_144_15103", "source": "9720", "target": "4545" }, { "key": "geid_144_15104", "source": "1207", "target": "6391" }, { "key": "geid_144_15105", "source": "4665", "target": "7121" }, { "key": "geid_144_15106", "source": "3101", "target": "7785" }, { "key": "geid_144_15107", "source": "6862", "target": "5398" }, { "key": "geid_144_15108", "source": "1087", "target": "3591" }, { "key": "geid_144_15109", "source": "5866", "target": "5188" }, { "key": "geid_144_15110", "source": "6560", "target": "4355" }, { "key": "geid_144_15111", "source": "1122", "target": "5886" }, { "key": "geid_144_15112", "source": "4179", "target": "188" }, { "key": "geid_144_15113", "source": "9767", "target": "5267" }, { "key": "geid_144_15114", "source": "5983", "target": "5917" }, { "key": "geid_144_15115", "source": "5693", "target": "797" }, { "key": "geid_144_15116", "source": "451", "target": "4387" }, { "key": "geid_144_15117", "source": "7228", "target": "4613" }, { "key": "geid_144_15118", "source": "4744", "target": "3473" }, { "key": "geid_144_15119", "source": "4245", "target": "5927" }, { "key": "geid_144_15120", "source": "7637", "target": "7186" }, { "key": "geid_144_15121", "source": "7581", "target": "6198" }, { "key": "geid_144_15122", "source": "9332", "target": "3996" }, { "key": "geid_144_15123", "source": "6748", "target": "2121" }, { "key": "geid_144_15124", "source": "1535", "target": "179" }, { "key": "geid_144_15125", "source": "1211", "target": "1949" }, { "key": "geid_144_15126", "source": "8282", "target": "1553" }, { "key": "geid_144_15127", "source": "4206", "target": "6402" }, { "key": "geid_144_15128", "source": "6786", "target": "7973" }, { "key": "geid_144_15129", "source": "6161", "target": "8867" }, { "key": "geid_144_15130", "source": "1667", "target": "5032" }, { "key": "geid_144_15131", "source": "7029", "target": "5453" }, { "key": "geid_144_15132", "source": "9716", "target": "9241" }, { "key": "geid_144_15133", "source": "9282", "target": "8429" }, { "key": "geid_144_15134", "source": "9632", "target": "2347" }, { "key": "geid_144_15135", "source": "4074", "target": "6399" }, { "key": "geid_144_15136", "source": "2053", "target": "7411" }, { "key": "geid_144_15137", "source": "6681", "target": "696" }, { "key": "geid_144_15138", "source": "8749", "target": "122" }, { "key": "geid_144_15139", "source": "8944", "target": "9629" }, { "key": "geid_144_15140", "source": "698", "target": "4294" }, { "key": "geid_144_15141", "source": "3302", "target": "92" }, { "key": "geid_144_15142", "source": "7895", "target": "4230" }, { "key": "geid_144_15143", "source": "8758", "target": "8135" }, { "key": "geid_144_15144", "source": "5346", "target": "1625" }, { "key": "geid_144_15145", "source": "2605", "target": "8513" }, { "key": "geid_144_15146", "source": "6299", "target": "7506" }, { "key": "geid_144_15147", "source": "4551", "target": "5954" }, { "key": "geid_144_15148", "source": "805", "target": "7401" }, { "key": "geid_144_15149", "source": "8999", "target": "6349" }, { "key": "geid_144_15150", "source": "9794", "target": "9885" }, { "key": "geid_144_15151", "source": "8317", "target": "8362" }, { "key": "geid_144_15152", "source": "7223", "target": "9632" }, { "key": "geid_144_15153", "source": "1270", "target": "7949" }, { "key": "geid_144_15154", "source": "8766", "target": "947" }, { "key": "geid_144_15155", "source": "9902", "target": "4970" }, { "key": "geid_144_15156", "source": "8410", "target": "3981" }, { "key": "geid_144_15157", "source": "1748", "target": "4575" }, { "key": "geid_144_15158", "source": "9229", "target": "3883" }, { "key": "geid_144_15159", "source": "9492", "target": "726" }, { "key": "geid_144_15160", "source": "9501", "target": "8310" }, { "key": "geid_144_15161", "source": "5218", "target": "6810" }, { "key": "geid_144_15162", "source": "288", "target": "6396" }, { "key": "geid_144_15163", "source": "7780", "target": "1094" }, { "key": "geid_144_15164", "source": "8123", "target": "3086" }, { "key": "geid_144_15165", "source": "5985", "target": "1401" }, { "key": "geid_144_15166", "source": "4182", "target": "6990" }, { "key": "geid_144_15167", "source": "634", "target": "1494" }, { "key": "geid_144_15168", "source": "6594", "target": "3520" }, { "key": "geid_144_15169", "source": "1516", "target": "8717" }, { "key": "geid_144_15170", "source": "6964", "target": "6496" }, { "key": "geid_144_15171", "source": "4428", "target": "9759" }, { "key": "geid_144_15172", "source": "6294", "target": "4107" }, { "key": "geid_144_15173", "source": "7165", "target": "5319" }, { "key": "geid_144_15174", "source": "9958", "target": "9660" }, { "key": "geid_144_15175", "source": "1320", "target": "1846" }, { "key": "geid_144_15176", "source": "6664", "target": "7309" }, { "key": "geid_144_15177", "source": "2624", "target": "6023" }, { "key": "geid_144_15178", "source": "6024", "target": "8599" }, { "key": "geid_144_15179", "source": "5307", "target": "7938" }, { "key": "geid_144_15180", "source": "879", "target": "1481" }, { "key": "geid_144_15181", "source": "9991", "target": "4687" }, { "key": "geid_144_15182", "source": "4900", "target": "1022" }, { "key": "geid_144_15183", "source": "4075", "target": "2993" }, { "key": "geid_144_15184", "source": "4664", "target": "7258" }, { "key": "geid_144_15185", "source": "1496", "target": "8509" }, { "key": "geid_144_15186", "source": "6910", "target": "3342" }, { "key": "geid_144_15187", "source": "2191", "target": "5579" }, { "key": "geid_144_15188", "source": "9691", "target": "6330" }, { "key": "geid_144_15189", "source": "1753", "target": "2118" }, { "key": "geid_144_15190", "source": "6948", "target": "9097" }, { "key": "geid_144_15191", "source": "799", "target": "9408" }, { "key": "geid_144_15192", "source": "5229", "target": "3743" }, { "key": "geid_144_15193", "source": "792", "target": "9166" }, { "key": "geid_144_15194", "source": "6298", "target": "2837" }, { "key": "geid_144_15195", "source": "9685", "target": "330" }, { "key": "geid_144_15196", "source": "2554", "target": "1443" }, { "key": "geid_144_15197", "source": "3764", "target": "657" }, { "key": "geid_144_15198", "source": "7853", "target": "7346" }, { "key": "geid_144_15199", "source": "1109", "target": "5833" }, { "key": "geid_144_15200", "source": "3979", "target": "5828" }, { "key": "geid_144_15201", "source": "9390", "target": "5399" }, { "key": "geid_144_15202", "source": "1216", "target": "664" }, { "key": "geid_144_15203", "source": "6822", "target": "5808" }, { "key": "geid_144_15204", "source": "3994", "target": "5557" }, { "key": "geid_144_15205", "source": "9214", "target": "874" }, { "key": "geid_144_15206", "source": "2361", "target": "1656" }, { "key": "geid_144_15207", "source": "7551", "target": "5508" }, { "key": "geid_144_15208", "source": "327", "target": "6695" }, { "key": "geid_144_15209", "source": "3785", "target": "1069" }, { "key": "geid_144_15210", "source": "1771", "target": "6764" }, { "key": "geid_144_15211", "source": "4582", "target": "5392" }, { "key": "geid_144_15212", "source": "2439", "target": "7885" }, { "key": "geid_144_15213", "source": "535", "target": "5212" }, { "key": "geid_144_15214", "source": "4576", "target": "5803" }, { "key": "geid_144_15215", "source": "9315", "target": "5132" }, { "key": "geid_144_15216", "source": "6912", "target": "1318" }, { "key": "geid_144_15217", "source": "4023", "target": "2936" }, { "key": "geid_144_15218", "source": "8775", "target": "9516" }, { "key": "geid_144_15219", "source": "6965", "target": "4210" }, { "key": "geid_144_15220", "source": "7207", "target": "9979" }, { "key": "geid_144_15221", "source": "242", "target": "9572" }, { "key": "geid_144_15222", "source": "7550", "target": "2737" }, { "key": "geid_144_15223", "source": "9980", "target": "1481" }, { "key": "geid_144_15224", "source": "3683", "target": "6950" }, { "key": "geid_144_15225", "source": "5853", "target": "8889" }, { "key": "geid_144_15226", "source": "7802", "target": "5700" }, { "key": "geid_144_15227", "source": "5923", "target": "7566" }, { "key": "geid_144_15228", "source": "2386", "target": "2460" }, { "key": "geid_144_15229", "source": "6376", "target": "5940" }, { "key": "geid_144_15230", "source": "4842", "target": "4348" }, { "key": "geid_144_15231", "source": "8296", "target": "1382" }, { "key": "geid_144_15232", "source": "6293", "target": "869" }, { "key": "geid_144_15233", "source": "851", "target": "9964" }, { "key": "geid_144_15234", "source": "6711", "target": "4506" }, { "key": "geid_144_15235", "source": "6710", "target": "8515" }, { "key": "geid_144_15236", "source": "3768", "target": "1459" }, { "key": "geid_144_15237", "source": "983", "target": "1327" }, { "key": "geid_144_15238", "source": "4527", "target": "8124" }, { "key": "geid_144_15239", "source": "3438", "target": "8096" }, { "key": "geid_144_15240", "source": "5739", "target": "3562" }, { "key": "geid_144_15241", "source": "2855", "target": "149" }, { "key": "geid_144_15242", "source": "15", "target": "4517" }, { "key": "geid_144_15243", "source": "2940", "target": "875" }, { "key": "geid_144_15244", "source": "1707", "target": "8958" }, { "key": "geid_144_15245", "source": "4660", "target": "4935" }, { "key": "geid_144_15246", "source": "1529", "target": "7978" }, { "key": "geid_144_15247", "source": "2884", "target": "6902" }, { "key": "geid_144_15248", "source": "3233", "target": "2343" }, { "key": "geid_144_15249", "source": "9528", "target": "9028" }, { "key": "geid_144_15250", "source": "6700", "target": "7533" }, { "key": "geid_144_15251", "source": "3525", "target": "9568" }, { "key": "geid_144_15252", "source": "5856", "target": "1969" }, { "key": "geid_144_15253", "source": "924", "target": "7843" }, { "key": "geid_144_15254", "source": "7912", "target": "4093" }, { "key": "geid_144_15255", "source": "1099", "target": "6563" }, { "key": "geid_144_15256", "source": "9231", "target": "3627" }, { "key": "geid_144_15257", "source": "8216", "target": "2496" }, { "key": "geid_144_15258", "source": "3554", "target": "934" }, { "key": "geid_144_15259", "source": "895", "target": "8961" }, { "key": "geid_144_15260", "source": "9937", "target": "6878" }, { "key": "geid_144_15261", "source": "5728", "target": "9747" }, { "key": "geid_144_15262", "source": "8411", "target": "5868" }, { "key": "geid_144_15263", "source": "3833", "target": "2318" }, { "key": "geid_144_15264", "source": "4071", "target": "6294" }, { "key": "geid_144_15265", "source": "4992", "target": "1765" }, { "key": "geid_144_15266", "source": "9064", "target": "9971" }, { "key": "geid_144_15267", "source": "3739", "target": "8632" }, { "key": "geid_144_15268", "source": "8937", "target": "5604" }, { "key": "geid_144_15269", "source": "9139", "target": "717" }, { "key": "geid_144_15270", "source": "1357", "target": "7428" }, { "key": "geid_144_15271", "source": "8554", "target": "6044" }, { "key": "geid_144_15272", "source": "4934", "target": "4568" }, { "key": "geid_144_15273", "source": "1786", "target": "6996" }, { "key": "geid_144_15274", "source": "6900", "target": "4882" }, { "key": "geid_144_15275", "source": "7976", "target": "1763" }, { "key": "geid_144_15276", "source": "4670", "target": "6986" }, { "key": "geid_144_15277", "source": "9234", "target": "6004" }, { "key": "geid_144_15278", "source": "822", "target": "5904" }, { "key": "geid_144_15279", "source": "4820", "target": "5349" }, { "key": "geid_144_15280", "source": "9456", "target": "5647" }, { "key": "geid_144_15281", "source": "5991", "target": "9728" }, { "key": "geid_144_15282", "source": "5119", "target": "7147" }, { "key": "geid_144_15283", "source": "1851", "target": "9265" }, { "key": "geid_144_15284", "source": "7610", "target": "9998" }, { "key": "geid_144_15285", "source": "402", "target": "1930" }, { "key": "geid_144_15286", "source": "6879", "target": "9896" }, { "key": "geid_144_15287", "source": "1820", "target": "662" }, { "key": "geid_144_15288", "source": "1822", "target": "9344" }, { "key": "geid_144_15289", "source": "2132", "target": "7488" }, { "key": "geid_144_15290", "source": "2740", "target": "9989" }, { "key": "geid_144_15291", "source": "667", "target": "5277" }, { "key": "geid_144_15292", "source": "709", "target": "5054" }, { "key": "geid_144_15293", "source": "3447", "target": "3807" }, { "key": "geid_144_15294", "source": "5755", "target": "3847" }, { "key": "geid_144_15295", "source": "9659", "target": "8319" }, { "key": "geid_144_15296", "source": "8168", "target": "9648" }, { "key": "geid_144_15297", "source": "7404", "target": "5754" }, { "key": "geid_144_15298", "source": "9047", "target": "8429" }, { "key": "geid_144_15299", "source": "1488", "target": "5732" }, { "key": "geid_144_15300", "source": "9377", "target": "9459" }, { "key": "geid_144_15301", "source": "3905", "target": "1547" }, { "key": "geid_144_15302", "source": "3830", "target": "2255" }, { "key": "geid_144_15303", "source": "2510", "target": "6340" }, { "key": "geid_144_15304", "source": "6297", "target": "9131" }, { "key": "geid_144_15305", "source": "2283", "target": "9718" }, { "key": "geid_144_15306", "source": "3994", "target": "5832" }, { "key": "geid_144_15307", "source": "9282", "target": "6496" }, { "key": "geid_144_15308", "source": "7472", "target": "1304" }, { "key": "geid_144_15309", "source": "4494", "target": "9349" }, { "key": "geid_144_15310", "source": "8825", "target": "1734" }, { "key": "geid_144_15311", "source": "4193", "target": "8034" }, { "key": "geid_144_15312", "source": "3857", "target": "9920" }, { "key": "geid_144_15313", "source": "6816", "target": "6994" }, { "key": "geid_144_15314", "source": "5904", "target": "5562" }, { "key": "geid_144_15315", "source": "7127", "target": "9519" }, { "key": "geid_144_15316", "source": "9049", "target": "5496" }, { "key": "geid_144_15317", "source": "8576", "target": "3980" }, { "key": "geid_144_15318", "source": "1165", "target": "4584" }, { "key": "geid_144_15319", "source": "1199", "target": "2200" }, { "key": "geid_144_15320", "source": "3479", "target": "7613" }, { "key": "geid_144_15321", "source": "8641", "target": "9607" }, { "key": "geid_144_15322", "source": "355", "target": "7613" }, { "key": "geid_144_15323", "source": "5397", "target": "5754" }, { "key": "geid_144_15324", "source": "9235", "target": "8924" }, { "key": "geid_144_15325", "source": "5504", "target": "8461" }, { "key": "geid_144_15326", "source": "8598", "target": "5941" }, { "key": "geid_144_15327", "source": "2061", "target": "3176" }, { "key": "geid_144_15328", "source": "8952", "target": "6956" }, { "key": "geid_144_15329", "source": "5268", "target": "6841" }, { "key": "geid_144_15330", "source": "2109", "target": "1768" }, { "key": "geid_144_15331", "source": "4777", "target": "8928" }, { "key": "geid_144_15332", "source": "336", "target": "2618" }, { "key": "geid_144_15333", "source": "6017", "target": "8270" }, { "key": "geid_144_15334", "source": "2665", "target": "8505" }, { "key": "geid_144_15335", "source": "2670", "target": "9528" }, { "key": "geid_144_15336", "source": "7043", "target": "7179" }, { "key": "geid_144_15337", "source": "8157", "target": "5983" }, { "key": "geid_144_15338", "source": "5161", "target": "9140" }, { "key": "geid_144_15339", "source": "7031", "target": "658" }, { "key": "geid_144_15340", "source": "9831", "target": "1771" }, { "key": "geid_144_15341", "source": "4554", "target": "204" }, { "key": "geid_144_15342", "source": "3422", "target": "8548" }, { "key": "geid_144_15343", "source": "2182", "target": "754" }, { "key": "geid_144_15344", "source": "6377", "target": "758" }, { "key": "geid_144_15345", "source": "4617", "target": "6311" }, { "key": "geid_144_15346", "source": "7633", "target": "3747" }, { "key": "geid_144_15347", "source": "2809", "target": "9329" }, { "key": "geid_144_15348", "source": "8821", "target": "4133" }, { "key": "geid_144_15349", "source": "5806", "target": "5464" }, { "key": "geid_144_15350", "source": "1560", "target": "4075" }, { "key": "geid_144_15351", "source": "7572", "target": "8908" }, { "key": "geid_144_15352", "source": "9447", "target": "4396" }, { "key": "geid_144_15353", "source": "8805", "target": "2106" }, { "key": "geid_144_15354", "source": "5097", "target": "1776" }, { "key": "geid_144_15355", "source": "7694", "target": "5272" }, { "key": "geid_144_15356", "source": "2190", "target": "9618" }, { "key": "geid_144_15357", "source": "5704", "target": "4860" }, { "key": "geid_144_15358", "source": "2916", "target": "7503" }, { "key": "geid_144_15359", "source": "4133", "target": "3297" }, { "key": "geid_144_15360", "source": "6562", "target": "4524" }, { "key": "geid_144_15361", "source": "1822", "target": "7456" }, { "key": "geid_144_15362", "source": "623", "target": "155" }, { "key": "geid_144_15363", "source": "2798", "target": "5419" }, { "key": "geid_144_15364", "source": "4233", "target": "6525" }, { "key": "geid_144_15365", "source": "8351", "target": "3821" }, { "key": "geid_144_15366", "source": "6228", "target": "398" }, { "key": "geid_144_15367", "source": "3703", "target": "923" }, { "key": "geid_144_15368", "source": "9979", "target": "7934" }, { "key": "geid_144_15369", "source": "1181", "target": "6738" }, { "key": "geid_144_15370", "source": "6846", "target": "7202" }, { "key": "geid_144_15371", "source": "4461", "target": "8296" }, { "key": "geid_144_15372", "source": "6879", "target": "2789" }, { "key": "geid_144_15373", "source": "5045", "target": "7947" }, { "key": "geid_144_15374", "source": "3829", "target": "8964" }, { "key": "geid_144_15375", "source": "4895", "target": "9355" }, { "key": "geid_144_15376", "source": "1222", "target": "5589" }, { "key": "geid_144_15377", "source": "9000", "target": "6911" }, { "key": "geid_144_15378", "source": "8939", "target": "6087" }, { "key": "geid_144_15379", "source": "1120", "target": "6990" }, { "key": "geid_144_15380", "source": "7939", "target": "5655" }, { "key": "geid_144_15381", "source": "5376", "target": "7626" }, { "key": "geid_144_15382", "source": "8497", "target": "4688" }, { "key": "geid_144_15383", "source": "4420", "target": "888" }, { "key": "geid_144_15384", "source": "9790", "target": "4197" }, { "key": "geid_144_15385", "source": "6240", "target": "7680" }, { "key": "geid_144_15386", "source": "607", "target": "5074" }, { "key": "geid_144_15387", "source": "7660", "target": "2361" }, { "key": "geid_144_15388", "source": "7997", "target": "3480" }, { "key": "geid_144_15389", "source": "1538", "target": "3149" }, { "key": "geid_144_15390", "source": "4777", "target": "6807" }, { "key": "geid_144_15391", "source": "5293", "target": "1349" }, { "key": "geid_144_15392", "source": "2469", "target": "224" }, { "key": "geid_144_15393", "source": "3635", "target": "5518" }, { "key": "geid_144_15394", "source": "1132", "target": "2739" }, { "key": "geid_144_15395", "source": "7233", "target": "2055" }, { "key": "geid_144_15396", "source": "8590", "target": "6473" }, { "key": "geid_144_15397", "source": "384", "target": "2707" }, { "key": "geid_144_15398", "source": "7069", "target": "9095" }, { "key": "geid_144_15399", "source": "5835", "target": "4958" }, { "key": "geid_144_15400", "source": "2903", "target": "9077" }, { "key": "geid_144_15401", "source": "7210", "target": "4848" }, { "key": "geid_144_15402", "source": "2856", "target": "1281" }, { "key": "geid_144_15403", "source": "716", "target": "1653" }, { "key": "geid_144_15404", "source": "5033", "target": "917" }, { "key": "geid_144_15405", "source": "3097", "target": "6424" }, { "key": "geid_144_15406", "source": "5303", "target": "5920" }, { "key": "geid_144_15407", "source": "6487", "target": "9725" }, { "key": "geid_144_15408", "source": "6086", "target": "2836" }, { "key": "geid_144_15409", "source": "4797", "target": "8559" }, { "key": "geid_144_15410", "source": "9595", "target": "8802" }, { "key": "geid_144_15411", "source": "4459", "target": "4223" }, { "key": "geid_144_15412", "source": "321", "target": "8663" }, { "key": "geid_144_15413", "source": "1680", "target": "9618" }, { "key": "geid_144_15414", "source": "5199", "target": "8854" }, { "key": "geid_144_15415", "source": "6483", "target": "9829" }, { "key": "geid_144_15416", "source": "1413", "target": "3269" }, { "key": "geid_144_15417", "source": "3104", "target": "4777" }, { "key": "geid_144_15418", "source": "6136", "target": "3212" }, { "key": "geid_144_15419", "source": "3311", "target": "4349" }, { "key": "geid_144_15420", "source": "2351", "target": "6058" }, { "key": "geid_144_15421", "source": "7635", "target": "7262" }, { "key": "geid_144_15422", "source": "7519", "target": "7714" }, { "key": "geid_144_15423", "source": "3495", "target": "6553" }, { "key": "geid_144_15424", "source": "7616", "target": "6310" }, { "key": "geid_144_15425", "source": "4007", "target": "9437" }, { "key": "geid_144_15426", "source": "3035", "target": "1195" }, { "key": "geid_144_15427", "source": "4512", "target": "5348" }, { "key": "geid_144_15428", "source": "2932", "target": "2438" }, { "key": "geid_144_15429", "source": "6973", "target": "7152" }, { "key": "geid_144_15430", "source": "6582", "target": "8358" }, { "key": "geid_144_15431", "source": "2572", "target": "8420" }, { "key": "geid_144_15432", "source": "7586", "target": "570" }, { "key": "geid_144_15433", "source": "4269", "target": "8252" }, { "key": "geid_144_15434", "source": "259", "target": "5174" }, { "key": "geid_144_15435", "source": "298", "target": "4792" }, { "key": "geid_144_15436", "source": "649", "target": "964" }, { "key": "geid_144_15437", "source": "5463", "target": "9371" }, { "key": "geid_144_15438", "source": "9388", "target": "9073" }, { "key": "geid_144_15439", "source": "1442", "target": "9522" }, { "key": "geid_144_15440", "source": "9647", "target": "1419" }, { "key": "geid_144_15441", "source": "9534", "target": "1440" }, { "key": "geid_144_15442", "source": "8045", "target": "2205" }, { "key": "geid_144_15443", "source": "1656", "target": "8065" }, { "key": "geid_144_15444", "source": "1693", "target": "4126" }, { "key": "geid_144_15445", "source": "3155", "target": "2503" }, { "key": "geid_144_15446", "source": "1121", "target": "4113" }, { "key": "geid_144_15447", "source": "351", "target": "6980" }, { "key": "geid_144_15448", "source": "6354", "target": "3293" }, { "key": "geid_144_15449", "source": "9602", "target": "6029" }, { "key": "geid_144_15450", "source": "7361", "target": "2084" }, { "key": "geid_144_15451", "source": "581", "target": "3562" }, { "key": "geid_144_15452", "source": "3501", "target": "7291" }, { "key": "geid_144_15453", "source": "3245", "target": "7726" }, { "key": "geid_144_15454", "source": "9457", "target": "4651" }, { "key": "geid_144_15455", "source": "5160", "target": "9268" }, { "key": "geid_144_15456", "source": "6686", "target": "8190" }, { "key": "geid_144_15457", "source": "4937", "target": "1370" }, { "key": "geid_144_15458", "source": "5690", "target": "4325" }, { "key": "geid_144_15459", "source": "6976", "target": "1451" }, { "key": "geid_144_15460", "source": "8583", "target": "4461" }, { "key": "geid_144_15461", "source": "814", "target": "8557" }, { "key": "geid_144_15462", "source": "6907", "target": "3662" }, { "key": "geid_144_15463", "source": "7797", "target": "8799" }, { "key": "geid_144_15464", "source": "4549", "target": "80" }, { "key": "geid_144_15465", "source": "3924", "target": "6877" }, { "key": "geid_144_15466", "source": "9307", "target": "4932" }, { "key": "geid_144_15467", "source": "1868", "target": "7387" }, { "key": "geid_144_15468", "source": "911", "target": "7510" }, { "key": "geid_144_15469", "source": "2559", "target": "8051" }, { "key": "geid_144_15470", "source": "4394", "target": "2953" }, { "key": "geid_144_15471", "source": "6500", "target": "6118" }, { "key": "geid_144_15472", "source": "6156", "target": "7022" }, { "key": "geid_144_15473", "source": "3639", "target": "8863" }, { "key": "geid_144_15474", "source": "153", "target": "3059" }, { "key": "geid_144_15475", "source": "4700", "target": "535" }, { "key": "geid_144_15476", "source": "3721", "target": "3517" }, { "key": "geid_144_15477", "source": "330", "target": "6356" }, { "key": "geid_144_15478", "source": "7285", "target": "4164" }, { "key": "geid_144_15479", "source": "4748", "target": "7547" }, { "key": "geid_144_15480", "source": "6009", "target": "3217" }, { "key": "geid_144_15481", "source": "1036", "target": "8880" }, { "key": "geid_144_15482", "source": "5282", "target": "5974" }, { "key": "geid_144_15483", "source": "6536", "target": "2338" }, { "key": "geid_144_15484", "source": "1074", "target": "1783" }, { "key": "geid_144_15485", "source": "1910", "target": "2920" }, { "key": "geid_144_15486", "source": "1186", "target": "6445" }, { "key": "geid_144_15487", "source": "177", "target": "8844" }, { "key": "geid_144_15488", "source": "7313", "target": "2762" }, { "key": "geid_144_15489", "source": "2343", "target": "6659" }, { "key": "geid_144_15490", "source": "9230", "target": "777" }, { "key": "geid_144_15491", "source": "1444", "target": "5726" }, { "key": "geid_144_15492", "source": "9506", "target": "5109" }, { "key": "geid_144_15493", "source": "1845", "target": "6360" }, { "key": "geid_144_15494", "source": "8254", "target": "952" }, { "key": "geid_144_15495", "source": "1974", "target": "9926" }, { "key": "geid_144_15496", "source": "3267", "target": "8612" }, { "key": "geid_144_15497", "source": "2708", "target": "157" }, { "key": "geid_144_15498", "source": "5709", "target": "4911" }, { "key": "geid_144_15499", "source": "9850", "target": "4190" }, { "key": "geid_144_15500", "source": "4353", "target": "2235" }, { "key": "geid_144_15501", "source": "6753", "target": "4404" }, { "key": "geid_144_15502", "source": "8109", "target": "9140" }, { "key": "geid_144_15503", "source": "5748", "target": "3647" }, { "key": "geid_144_15504", "source": "919", "target": "1222" }, { "key": "geid_144_15505", "source": "2595", "target": "7565" }, { "key": "geid_144_15506", "source": "4878", "target": "4745" }, { "key": "geid_144_15507", "source": "1263", "target": "5453" }, { "key": "geid_144_15508", "source": "3004", "target": "8875" }, { "key": "geid_144_15509", "source": "2863", "target": "4341" }, { "key": "geid_144_15510", "source": "4189", "target": "8439" }, { "key": "geid_144_15511", "source": "1812", "target": "3921" }, { "key": "geid_144_15512", "source": "2664", "target": "5242" }, { "key": "geid_144_15513", "source": "8557", "target": "4095" }, { "key": "geid_144_15514", "source": "5371", "target": "8477" }, { "key": "geid_144_15515", "source": "7245", "target": "602" }, { "key": "geid_144_15516", "source": "9712", "target": "4520" }, { "key": "geid_144_15517", "source": "9732", "target": "6042" }, { "key": "geid_144_15518", "source": "4749", "target": "2707" }, { "key": "geid_144_15519", "source": "5225", "target": "4109" }, { "key": "geid_144_15520", "source": "8122", "target": "424" }, { "key": "geid_144_15521", "source": "5328", "target": "5910" }, { "key": "geid_144_15522", "source": "4387", "target": "2518" }, { "key": "geid_144_15523", "source": "2381", "target": "8813" }, { "key": "geid_144_15524", "source": "3939", "target": "6236" }, { "key": "geid_144_15525", "source": "5015", "target": "712" }, { "key": "geid_144_15526", "source": "6185", "target": "2763" }, { "key": "geid_144_15527", "source": "6752", "target": "1607" }, { "key": "geid_144_15528", "source": "8116", "target": "2355" }, { "key": "geid_144_15529", "source": "7644", "target": "9194" }, { "key": "geid_144_15530", "source": "8283", "target": "1923" }, { "key": "geid_144_15531", "source": "750", "target": "2660" }, { "key": "geid_144_15532", "source": "78", "target": "7475" }, { "key": "geid_144_15533", "source": "1839", "target": "3985" }, { "key": "geid_144_15534", "source": "895", "target": "6304" }, { "key": "geid_144_15535", "source": "6155", "target": "1613" }, { "key": "geid_144_15536", "source": "3664", "target": "9844" }, { "key": "geid_144_15537", "source": "9068", "target": "7032" }, { "key": "geid_144_15538", "source": "9952", "target": "2018" }, { "key": "geid_144_15539", "source": "8010", "target": "9084" }, { "key": "geid_144_15540", "source": "4636", "target": "8875" }, { "key": "geid_144_15541", "source": "8631", "target": "1376" }, { "key": "geid_144_15542", "source": "8340", "target": "4132" }, { "key": "geid_144_15543", "source": "8655", "target": "4373" }, { "key": "geid_144_15544", "source": "9778", "target": "2783" }, { "key": "geid_144_15545", "source": "3800", "target": "3964" }, { "key": "geid_144_15546", "source": "5562", "target": "9549" }, { "key": "geid_144_15547", "source": "8587", "target": "4199" }, { "key": "geid_144_15548", "source": "2568", "target": "3781" }, { "key": "geid_144_15549", "source": "8092", "target": "9864" }, { "key": "geid_144_15550", "source": "7874", "target": "3637" }, { "key": "geid_144_15551", "source": "1174", "target": "4253" }, { "key": "geid_144_15552", "source": "7283", "target": "5692" }, { "key": "geid_144_15553", "source": "4911", "target": "6306" }, { "key": "geid_144_15554", "source": "8023", "target": "609" }, { "key": "geid_144_15555", "source": "5204", "target": "8878" }, { "key": "geid_144_15556", "source": "921", "target": "6886" }, { "key": "geid_144_15557", "source": "875", "target": "6102" }, { "key": "geid_144_15558", "source": "4770", "target": "2250" }, { "key": "geid_144_15559", "source": "5675", "target": "9336" }, { "key": "geid_144_15560", "source": "7836", "target": "3975" }, { "key": "geid_144_15561", "source": "312", "target": "4960" }, { "key": "geid_144_15562", "source": "9035", "target": "9808" }, { "key": "geid_144_15563", "source": "7386", "target": "2476" }, { "key": "geid_144_15564", "source": "1845", "target": "7286" }, { "key": "geid_144_15565", "source": "8206", "target": "7406" }, { "key": "geid_144_15566", "source": "8990", "target": "3144" }, { "key": "geid_144_15567", "source": "5878", "target": "2883" }, { "key": "geid_144_15568", "source": "6378", "target": "2572" }, { "key": "geid_144_15569", "source": "3261", "target": "3794" }, { "key": "geid_144_15570", "source": "3093", "target": "244" }, { "key": "geid_144_15571", "source": "7681", "target": "834" }, { "key": "geid_144_15572", "source": "4626", "target": "8045" }, { "key": "geid_144_15573", "source": "6455", "target": "5197" }, { "key": "geid_144_15574", "source": "5948", "target": "1028" }, { "key": "geid_144_15575", "source": "8940", "target": "6567" }, { "key": "geid_144_15576", "source": "3765", "target": "6635" }, { "key": "geid_144_15577", "source": "9437", "target": "9831" }, { "key": "geid_144_15578", "source": "3789", "target": "3284" }, { "key": "geid_144_15579", "source": "7204", "target": "6055" }, { "key": "geid_144_15580", "source": "1687", "target": "8169" }, { "key": "geid_144_15581", "source": "1796", "target": "2669" }, { "key": "geid_144_15582", "source": "9921", "target": "3468" }, { "key": "geid_144_15583", "source": "7361", "target": "4936" }, { "key": "geid_144_15584", "source": "4643", "target": "8384" }, { "key": "geid_144_15585", "source": "7057", "target": "3386" }, { "key": "geid_144_15586", "source": "5248", "target": "7971" }, { "key": "geid_144_15587", "source": "5451", "target": "9173" }, { "key": "geid_144_15588", "source": "6466", "target": "7335" }, { "key": "geid_144_15589", "source": "710", "target": "8782" }, { "key": "geid_144_15590", "source": "201", "target": "5426" }, { "key": "geid_144_15591", "source": "5609", "target": "8618" }, { "key": "geid_144_15592", "source": "7054", "target": "2037" }, { "key": "geid_144_15593", "source": "5645", "target": "3416" }, { "key": "geid_144_15594", "source": "8618", "target": "7642" }, { "key": "geid_144_15595", "source": "152", "target": "3050" }, { "key": "geid_144_15596", "source": "4824", "target": "865" }, { "key": "geid_144_15597", "source": "6057", "target": "3534" }, { "key": "geid_144_15598", "source": "52", "target": "4224" }, { "key": "geid_144_15599", "source": "9767", "target": "2454" }, { "key": "geid_144_15600", "source": "2347", "target": "1444" }, { "key": "geid_144_15601", "source": "483", "target": "313" }, { "key": "geid_144_15602", "source": "7691", "target": "3581" }, { "key": "geid_144_15603", "source": "4985", "target": "1124" }, { "key": "geid_144_15604", "source": "9282", "target": "7698" }, { "key": "geid_144_15605", "source": "7278", "target": "863" }, { "key": "geid_144_15606", "source": "5142", "target": "3227" }, { "key": "geid_144_15607", "source": "3855", "target": "6201" }, { "key": "geid_144_15608", "source": "7864", "target": "6440" }, { "key": "geid_144_15609", "source": "6591", "target": "2485" }, { "key": "geid_144_15610", "source": "5976", "target": "9398" }, { "key": "geid_144_15611", "source": "357", "target": "3902" }, { "key": "geid_144_15612", "source": "5504", "target": "2333" }, { "key": "geid_144_15613", "source": "3000", "target": "3786" }, { "key": "geid_144_15614", "source": "4589", "target": "5006" }, { "key": "geid_144_15615", "source": "843", "target": "4910" }, { "key": "geid_144_15616", "source": "6029", "target": "3560" }, { "key": "geid_144_15617", "source": "8005", "target": "5360" }, { "key": "geid_144_15618", "source": "3820", "target": "9901" }, { "key": "geid_144_15619", "source": "4896", "target": "4322" }, { "key": "geid_144_15620", "source": "3360", "target": "7056" }, { "key": "geid_144_15621", "source": "8693", "target": "9900" }, { "key": "geid_144_15622", "source": "7111", "target": "862" }, { "key": "geid_144_15623", "source": "4548", "target": "1229" }, { "key": "geid_144_15624", "source": "289", "target": "5023" }, { "key": "geid_144_15625", "source": "9864", "target": "3161" }, { "key": "geid_144_15626", "source": "1201", "target": "9739" }, { "key": "geid_144_15627", "source": "6128", "target": "5305" }, { "key": "geid_144_15628", "source": "7198", "target": "116" }, { "key": "geid_144_15629", "source": "7669", "target": "5350" }, { "key": "geid_144_15630", "source": "4442", "target": "3300" }, { "key": "geid_144_15631", "source": "1359", "target": "9944" }, { "key": "geid_144_15632", "source": "693", "target": "4526" }, { "key": "geid_144_15633", "source": "7613", "target": "5595" }, { "key": "geid_144_15634", "source": "7384", "target": "3374" }, { "key": "geid_144_15635", "source": "9256", "target": "4261" }, { "key": "geid_144_15636", "source": "2213", "target": "366" }, { "key": "geid_144_15637", "source": "4341", "target": "738" }, { "key": "geid_144_15638", "source": "4552", "target": "2836" }, { "key": "geid_144_15639", "source": "5003", "target": "9248" }, { "key": "geid_144_15640", "source": "1902", "target": "1029" }, { "key": "geid_144_15641", "source": "9651", "target": "6002" }, { "key": "geid_144_15642", "source": "9115", "target": "829" }, { "key": "geid_144_15643", "source": "937", "target": "7876" }, { "key": "geid_144_15644", "source": "5703", "target": "98" }, { "key": "geid_144_15645", "source": "1436", "target": "455" }, { "key": "geid_144_15646", "source": "4640", "target": "2220" }, { "key": "geid_144_15647", "source": "7491", "target": "3576" }, { "key": "geid_144_15648", "source": "3462", "target": "3290" }, { "key": "geid_144_15649", "source": "1582", "target": "7996" }, { "key": "geid_144_15650", "source": "9047", "target": "9585" }, { "key": "geid_144_15651", "source": "7507", "target": "4785" }, { "key": "geid_144_15652", "source": "4780", "target": "2294" }, { "key": "geid_144_15653", "source": "3839", "target": "7984" }, { "key": "geid_144_15654", "source": "402", "target": "4326" }, { "key": "geid_144_15655", "source": "1537", "target": "1707" }, { "key": "geid_144_15656", "source": "2196", "target": "5465" }, { "key": "geid_144_15657", "source": "7052", "target": "5313" }, { "key": "geid_144_15658", "source": "6924", "target": "2170" }, { "key": "geid_144_15659", "source": "2333", "target": "9413" }, { "key": "geid_144_15660", "source": "4384", "target": "7913" }, { "key": "geid_144_15661", "source": "6031", "target": "9785" }, { "key": "geid_144_15662", "source": "1346", "target": "6556" }, { "key": "geid_144_15663", "source": "7776", "target": "4566" }, { "key": "geid_144_15664", "source": "7977", "target": "4588" }, { "key": "geid_144_15665", "source": "9730", "target": "1086" }, { "key": "geid_144_15666", "source": "4774", "target": "1194" }, { "key": "geid_144_15667", "source": "6991", "target": "1604" }, { "key": "geid_144_15668", "source": "9596", "target": "4087" }, { "key": "geid_144_15669", "source": "4754", "target": "4883" }, { "key": "geid_144_15670", "source": "4903", "target": "4734" }, { "key": "geid_144_15671", "source": "4977", "target": "7425" }, { "key": "geid_144_15672", "source": "6317", "target": "6369" }, { "key": "geid_144_15673", "source": "2787", "target": "8156" }, { "key": "geid_144_15674", "source": "3306", "target": "904" }, { "key": "geid_144_15675", "source": "1105", "target": "2845" }, { "key": "geid_144_15676", "source": "6496", "target": "4706" }, { "key": "geid_144_15677", "source": "4923", "target": "1656" }, { "key": "geid_144_15678", "source": "7968", "target": "6197" }, { "key": "geid_144_15679", "source": "7944", "target": "6006" }, { "key": "geid_144_15680", "source": "769", "target": "6190" }, { "key": "geid_144_15681", "source": "4989", "target": "9584" }, { "key": "geid_144_15682", "source": "17", "target": "8977" }, { "key": "geid_144_15683", "source": "7495", "target": "3542" }, { "key": "geid_144_15684", "source": "5479", "target": "4083" }, { "key": "geid_144_15685", "source": "2845", "target": "1194" }, { "key": "geid_144_15686", "source": "1767", "target": "8416" }, { "key": "geid_144_15687", "source": "4138", "target": "4704" }, { "key": "geid_144_15688", "source": "1848", "target": "4116" }, { "key": "geid_144_15689", "source": "4965", "target": "9094" }, { "key": "geid_144_15690", "source": "8767", "target": "4321" }, { "key": "geid_144_15691", "source": "7488", "target": "5016" }, { "key": "geid_144_15692", "source": "2336", "target": "1879" }, { "key": "geid_144_15693", "source": "3151", "target": "9426" }, { "key": "geid_144_15694", "source": "4651", "target": "780" }, { "key": "geid_144_15695", "source": "7448", "target": "8074" }, { "key": "geid_144_15696", "source": "7438", "target": "6686" }, { "key": "geid_144_15697", "source": "5658", "target": "9946" }, { "key": "geid_144_15698", "source": "8687", "target": "3283" }, { "key": "geid_144_15699", "source": "3024", "target": "926" }, { "key": "geid_144_15700", "source": "6441", "target": "5274" }, { "key": "geid_144_15701", "source": "8036", "target": "9364" }, { "key": "geid_144_15702", "source": "6028", "target": "7147" }, { "key": "geid_144_15703", "source": "4200", "target": "1594" }, { "key": "geid_144_15704", "source": "7556", "target": "4838" }, { "key": "geid_144_15705", "source": "6153", "target": "4210" }, { "key": "geid_144_15706", "source": "208", "target": "4226" }, { "key": "geid_144_15707", "source": "9008", "target": "3996" }, { "key": "geid_144_15708", "source": "7940", "target": "6440" }, { "key": "geid_144_15709", "source": "4168", "target": "4788" }, { "key": "geid_144_15710", "source": "8765", "target": "9573" }, { "key": "geid_144_15711", "source": "9357", "target": "3016" }, { "key": "geid_144_15712", "source": "446", "target": "6021" }, { "key": "geid_144_15713", "source": "5208", "target": "1093" }, { "key": "geid_144_15714", "source": "637", "target": "5860" }, { "key": "geid_144_15715", "source": "5878", "target": "8323" }, { "key": "geid_144_15716", "source": "4674", "target": "6658" }, { "key": "geid_144_15717", "source": "1846", "target": "6522" }, { "key": "geid_144_15718", "source": "6011", "target": "5119" }, { "key": "geid_144_15719", "source": "4458", "target": "6398" }, { "key": "geid_144_15720", "source": "8032", "target": "4767" }, { "key": "geid_144_15721", "source": "1225", "target": "6556" }, { "key": "geid_144_15722", "source": "2709", "target": "8112" }, { "key": "geid_144_15723", "source": "1587", "target": "3321" }, { "key": "geid_144_15724", "source": "4933", "target": "2720" }, { "key": "geid_144_15725", "source": "5960", "target": "9162" }, { "key": "geid_144_15726", "source": "4684", "target": "2543" }, { "key": "geid_144_15727", "source": "8331", "target": "1268" }, { "key": "geid_144_15728", "source": "4012", "target": "5839" }, { "key": "geid_144_15729", "source": "1079", "target": "7817" }, { "key": "geid_144_15730", "source": "5914", "target": "3361" }, { "key": "geid_144_15731", "source": "9202", "target": "9250" }, { "key": "geid_144_15732", "source": "3904", "target": "2847" }, { "key": "geid_144_15733", "source": "4010", "target": "6675" }, { "key": "geid_144_15734", "source": "8520", "target": "147" }, { "key": "geid_144_15735", "source": "5323", "target": "7800" }, { "key": "geid_144_15736", "source": "1560", "target": "5541" }, { "key": "geid_144_15737", "source": "3702", "target": "5902" }, { "key": "geid_144_15738", "source": "9959", "target": "2977" }, { "key": "geid_144_15739", "source": "7733", "target": "8339" }, { "key": "geid_144_15740", "source": "635", "target": "5774" }, { "key": "geid_144_15741", "source": "9664", "target": "4637" }, { "key": "geid_144_15742", "source": "2373", "target": "1600" }, { "key": "geid_144_15743", "source": "7445", "target": "7004" }, { "key": "geid_144_15744", "source": "7971", "target": "2171" }, { "key": "geid_144_15745", "source": "4118", "target": "2476" }, { "key": "geid_144_15746", "source": "2536", "target": "1777" }, { "key": "geid_144_15747", "source": "2646", "target": "1415" }, { "key": "geid_144_15748", "source": "7819", "target": "1663" }, { "key": "geid_144_15749", "source": "6071", "target": "4696" }, { "key": "geid_144_15750", "source": "7420", "target": "9581" }, { "key": "geid_144_15751", "source": "2879", "target": "9672" }, { "key": "geid_144_15752", "source": "1973", "target": "4575" }, { "key": "geid_144_15753", "source": "1196", "target": "713" }, { "key": "geid_144_15754", "source": "8262", "target": "2287" }, { "key": "geid_144_15755", "source": "7579", "target": "5935" }, { "key": "geid_144_15756", "source": "5538", "target": "5351" }, { "key": "geid_144_15757", "source": "1173", "target": "6777" }, { "key": "geid_144_15758", "source": "3517", "target": "4175" }, { "key": "geid_144_15759", "source": "355", "target": "6669" }, { "key": "geid_144_15760", "source": "1679", "target": "5844" }, { "key": "geid_144_15761", "source": "3434", "target": "5026" }, { "key": "geid_144_15762", "source": "6816", "target": "5792" }, { "key": "geid_144_15763", "source": "5476", "target": "5167" }, { "key": "geid_144_15764", "source": "5774", "target": "5138" }, { "key": "geid_144_15765", "source": "1626", "target": "7160" }, { "key": "geid_144_15766", "source": "1893", "target": "926" }, { "key": "geid_144_15767", "source": "392", "target": "9388" }, { "key": "geid_144_15768", "source": "2092", "target": "2679" }, { "key": "geid_144_15769", "source": "299", "target": "6241" }, { "key": "geid_144_15770", "source": "5618", "target": "6245" }, { "key": "geid_144_15771", "source": "155", "target": "210" }, { "key": "geid_144_15772", "source": "4970", "target": "423" }, { "key": "geid_144_15773", "source": "8714", "target": "6728" }, { "key": "geid_144_15774", "source": "5367", "target": "641" }, { "key": "geid_144_15775", "source": "3410", "target": "3798" }, { "key": "geid_144_15776", "source": "9337", "target": "8797" }, { "key": "geid_144_15777", "source": "772", "target": "2841" }, { "key": "geid_144_15778", "source": "4452", "target": "7153" }, { "key": "geid_144_15779", "source": "2499", "target": "8132" }, { "key": "geid_144_15780", "source": "5620", "target": "1967" }, { "key": "geid_144_15781", "source": "2859", "target": "8203" }, { "key": "geid_144_15782", "source": "3508", "target": "9327" }, { "key": "geid_144_15783", "source": "2678", "target": "1153" }, { "key": "geid_144_15784", "source": "8144", "target": "4132" }, { "key": "geid_144_15785", "source": "187", "target": "486" }, { "key": "geid_144_15786", "source": "2363", "target": "7649" }, { "key": "geid_144_15787", "source": "7792", "target": "5177" }, { "key": "geid_144_15788", "source": "2170", "target": "2573" }, { "key": "geid_144_15789", "source": "9134", "target": "8026" }, { "key": "geid_144_15790", "source": "5909", "target": "4457" }, { "key": "geid_144_15791", "source": "3919", "target": "6357" }, { "key": "geid_144_15792", "source": "2882", "target": "4572" }, { "key": "geid_144_15793", "source": "9675", "target": "4564" }, { "key": "geid_144_15794", "source": "9837", "target": "4992" }, { "key": "geid_144_15795", "source": "5851", "target": "2118" }, { "key": "geid_144_15796", "source": "5417", "target": "1643" }, { "key": "geid_144_15797", "source": "5615", "target": "8963" }, { "key": "geid_144_15798", "source": "7652", "target": "6363" }, { "key": "geid_144_15799", "source": "2520", "target": "2655" }, { "key": "geid_144_15800", "source": "4476", "target": "7458" }, { "key": "geid_144_15801", "source": "950", "target": "3106" }, { "key": "geid_144_15802", "source": "395", "target": "9215" }, { "key": "geid_144_15803", "source": "6627", "target": "2885" }, { "key": "geid_144_15804", "source": "562", "target": "4179" }, { "key": "geid_144_15805", "source": "7432", "target": "8457" }, { "key": "geid_144_15806", "source": "2617", "target": "4176" }, { "key": "geid_144_15807", "source": "6019", "target": "397" }, { "key": "geid_144_15808", "source": "505", "target": "241" }, { "key": "geid_144_15809", "source": "340", "target": "6888" }, { "key": "geid_144_15810", "source": "4349", "target": "6699" }, { "key": "geid_144_15811", "source": "1886", "target": "8618" }, { "key": "geid_144_15812", "source": "8521", "target": "2558" }, { "key": "geid_144_15813", "source": "736", "target": "1359" }, { "key": "geid_144_15814", "source": "965", "target": "5214" }, { "key": "geid_144_15815", "source": "6968", "target": "1688" }, { "key": "geid_144_15816", "source": "358", "target": "2865" }, { "key": "geid_144_15817", "source": "2777", "target": "8673" }, { "key": "geid_144_15818", "source": "3913", "target": "343" }, { "key": "geid_144_15819", "source": "5805", "target": "7494" }, { "key": "geid_144_15820", "source": "9534", "target": "5876" }, { "key": "geid_144_15821", "source": "3723", "target": "861" }, { "key": "geid_144_15822", "source": "1173", "target": "3216" }, { "key": "geid_144_15823", "source": "1355", "target": "7747" }, { "key": "geid_144_15824", "source": "1252", "target": "8009" }, { "key": "geid_144_15825", "source": "9157", "target": "2931" }, { "key": "geid_144_15826", "source": "6284", "target": "3406" }, { "key": "geid_144_15827", "source": "518", "target": "1722" }, { "key": "geid_144_15828", "source": "9542", "target": "2280" }, { "key": "geid_144_15829", "source": "4792", "target": "9287" }, { "key": "geid_144_15830", "source": "6706", "target": "9928" }, { "key": "geid_144_15831", "source": "6076", "target": "6852" }, { "key": "geid_144_15832", "source": "486", "target": "1130" }, { "key": "geid_144_15833", "source": "1867", "target": "8710" }, { "key": "geid_144_15834", "source": "6454", "target": "1222" }, { "key": "geid_144_15835", "source": "4324", "target": "2323" }, { "key": "geid_144_15836", "source": "1366", "target": "2850" }, { "key": "geid_144_15837", "source": "2768", "target": "8985" }, { "key": "geid_144_15838", "source": "716", "target": "1013" }, { "key": "geid_144_15839", "source": "7101", "target": "5655" }, { "key": "geid_144_15840", "source": "7246", "target": "2146" }, { "key": "geid_144_15841", "source": "249", "target": "1479" }, { "key": "geid_144_15842", "source": "9663", "target": "2521" }, { "key": "geid_144_15843", "source": "4081", "target": "311" }, { "key": "geid_144_15844", "source": "2865", "target": "6669" }, { "key": "geid_144_15845", "source": "5347", "target": "1271" }, { "key": "geid_144_15846", "source": "4786", "target": "355" }, { "key": "geid_144_15847", "source": "7524", "target": "1122" }, { "key": "geid_144_15848", "source": "4717", "target": "1656" }, { "key": "geid_144_15849", "source": "233", "target": "8063" }, { "key": "geid_144_15850", "source": "3475", "target": "6232" }, { "key": "geid_144_15851", "source": "3515", "target": "8103" }, { "key": "geid_144_15852", "source": "4359", "target": "1030" }, { "key": "geid_144_15853", "source": "6290", "target": "3322" }, { "key": "geid_144_15854", "source": "4053", "target": "5187" }, { "key": "geid_144_15855", "source": "9812", "target": "1979" }, { "key": "geid_144_15856", "source": "6804", "target": "3643" }, { "key": "geid_144_15857", "source": "6278", "target": "3397" }, { "key": "geid_144_15858", "source": "5174", "target": "7828" }, { "key": "geid_144_15859", "source": "8421", "target": "9914" }, { "key": "geid_144_15860", "source": "175", "target": "3536" }, { "key": "geid_144_15861", "source": "5364", "target": "6897" }, { "key": "geid_144_15862", "source": "7497", "target": "1946" }, { "key": "geid_144_15863", "source": "9403", "target": "5765" }, { "key": "geid_144_15864", "source": "5769", "target": "3181" }, { "key": "geid_144_15865", "source": "7382", "target": "1801" }, { "key": "geid_144_15866", "source": "8167", "target": "7239" }, { "key": "geid_144_15867", "source": "6576", "target": "9475" }, { "key": "geid_144_15868", "source": "6103", "target": "4562" }, { "key": "geid_144_15869", "source": "7984", "target": "3938" }, { "key": "geid_144_15870", "source": "8048", "target": "3152" }, { "key": "geid_144_15871", "source": "7605", "target": "1521" }, { "key": "geid_144_15872", "source": "1429", "target": "2696" }, { "key": "geid_144_15873", "source": "1857", "target": "2081" }, { "key": "geid_144_15874", "source": "2170", "target": "5733" }, { "key": "geid_144_15875", "source": "9768", "target": "655" }, { "key": "geid_144_15876", "source": "8051", "target": "2770" }, { "key": "geid_144_15877", "source": "6718", "target": "8952" }, { "key": "geid_144_15878", "source": "2815", "target": "9892" }, { "key": "geid_144_15879", "source": "9540", "target": "359" }, { "key": "geid_144_15880", "source": "8413", "target": "6388" }, { "key": "geid_144_15881", "source": "2169", "target": "5430" }, { "key": "geid_144_15882", "source": "1190", "target": "6128" }, { "key": "geid_144_15883", "source": "1232", "target": "3469" }, { "key": "geid_144_15884", "source": "9842", "target": "3763" }, { "key": "geid_144_15885", "source": "8988", "target": "2842" }, { "key": "geid_144_15886", "source": "2109", "target": "7473" }, { "key": "geid_144_15887", "source": "6822", "target": "6500" }, { "key": "geid_144_15888", "source": "5815", "target": "5416" }, { "key": "geid_144_15889", "source": "2838", "target": "3447" }, { "key": "geid_144_15890", "source": "1048", "target": "8328" }, { "key": "geid_144_15891", "source": "9294", "target": "1664" }, { "key": "geid_144_15892", "source": "9438", "target": "3743" }, { "key": "geid_144_15893", "source": "8788", "target": "2925" }, { "key": "geid_144_15894", "source": "7404", "target": "3079" }, { "key": "geid_144_15895", "source": "6531", "target": "9871" }, { "key": "geid_144_15896", "source": "141", "target": "8564" }, { "key": "geid_144_15897", "source": "7885", "target": "196" }, { "key": "geid_144_15898", "source": "5465", "target": "7880" }, { "key": "geid_144_15899", "source": "7266", "target": "440" }, { "key": "geid_144_15900", "source": "4382", "target": "2788" }, { "key": "geid_144_15901", "source": "3087", "target": "151" }, { "key": "geid_144_15902", "source": "9658", "target": "3952" }, { "key": "geid_144_15903", "source": "1893", "target": "3613" }, { "key": "geid_144_15904", "source": "3369", "target": "6583" }, { "key": "geid_144_15905", "source": "5488", "target": "2872" }, { "key": "geid_144_15906", "source": "1260", "target": "1564" }, { "key": "geid_144_15907", "source": "1179", "target": "3721" }, { "key": "geid_144_15908", "source": "1431", "target": "668" }, { "key": "geid_144_15909", "source": "4690", "target": "7995" }, { "key": "geid_144_15910", "source": "3840", "target": "6447" }, { "key": "geid_144_15911", "source": "5928", "target": "8778" }, { "key": "geid_144_15912", "source": "3739", "target": "8485" }, { "key": "geid_144_15913", "source": "3943", "target": "8061" }, { "key": "geid_144_15914", "source": "4493", "target": "9406" }, { "key": "geid_144_15915", "source": "4644", "target": "563" }, { "key": "geid_144_15916", "source": "7838", "target": "4543" }, { "key": "geid_144_15917", "source": "4954", "target": "8820" }, { "key": "geid_144_15918", "source": "4915", "target": "1638" }, { "key": "geid_144_15919", "source": "6132", "target": "8825" }, { "key": "geid_144_15920", "source": "9149", "target": "5138" }, { "key": "geid_144_15921", "source": "844", "target": "1928" }, { "key": "geid_144_15922", "source": "9383", "target": "4604" }, { "key": "geid_144_15923", "source": "5484", "target": "552" }, { "key": "geid_144_15924", "source": "7654", "target": "9987" }, { "key": "geid_144_15925", "source": "6022", "target": "9968" }, { "key": "geid_144_15926", "source": "2343", "target": "2024" }, { "key": "geid_144_15927", "source": "9352", "target": "7801" }, { "key": "geid_144_15928", "source": "8996", "target": "5093" }, { "key": "geid_144_15929", "source": "4537", "target": "3148" }, { "key": "geid_144_15930", "source": "6508", "target": "5852" }, { "key": "geid_144_15931", "source": "1926", "target": "772" }, { "key": "geid_144_15932", "source": "1521", "target": "5507" }, { "key": "geid_144_15933", "source": "6364", "target": "3863" }, { "key": "geid_144_15934", "source": "4286", "target": "802" }, { "key": "geid_144_15935", "source": "9799", "target": "8219" }, { "key": "geid_144_15936", "source": "4306", "target": "3444" }, { "key": "geid_144_15937", "source": "2984", "target": "3460" }, { "key": "geid_144_15938", "source": "2147", "target": "4877" }, { "key": "geid_144_15939", "source": "9960", "target": "7710" }, { "key": "geid_144_15940", "source": "5985", "target": "111" }, { "key": "geid_144_15941", "source": "7729", "target": "1523" }, { "key": "geid_144_15942", "source": "5158", "target": "1213" }, { "key": "geid_144_15943", "source": "587", "target": "2901" }, { "key": "geid_144_15944", "source": "276", "target": "7337" }, { "key": "geid_144_15945", "source": "7684", "target": "3458" }, { "key": "geid_144_15946", "source": "6750", "target": "2323" }, { "key": "geid_144_15947", "source": "7208", "target": "2356" }, { "key": "geid_144_15948", "source": "8148", "target": "4093" }, { "key": "geid_144_15949", "source": "1239", "target": "1436" }, { "key": "geid_144_15950", "source": "6834", "target": "7036" }, { "key": "geid_144_15951", "source": "4048", "target": "9995" }, { "key": "geid_144_15952", "source": "3316", "target": "7077" }, { "key": "geid_144_15953", "source": "8369", "target": "2849" }, { "key": "geid_144_15954", "source": "6860", "target": "394" }, { "key": "geid_144_15955", "source": "8239", "target": "6052" }, { "key": "geid_144_15956", "source": "4826", "target": "2764" }, { "key": "geid_144_15957", "source": "5498", "target": "8860" }, { "key": "geid_144_15958", "source": "3268", "target": "3754" }, { "key": "geid_144_15959", "source": "2106", "target": "3467" }, { "key": "geid_144_15960", "source": "340", "target": "7847" }, { "key": "geid_144_15961", "source": "5255", "target": "3540" }, { "key": "geid_144_15962", "source": "1379", "target": "4386" }, { "key": "geid_144_15963", "source": "118", "target": "8806" }, { "key": "geid_144_15964", "source": "2454", "target": "3175" }, { "key": "geid_144_15965", "source": "4191", "target": "69" }, { "key": "geid_144_15966", "source": "1236", "target": "7759" }, { "key": "geid_144_15967", "source": "5231", "target": "3926" }, { "key": "geid_144_15968", "source": "3227", "target": "7001" }, { "key": "geid_144_15969", "source": "4402", "target": "212" }, { "key": "geid_144_15970", "source": "9809", "target": "3531" }, { "key": "geid_144_15971", "source": "1464", "target": "2474" }, { "key": "geid_144_15972", "source": "7243", "target": "1633" }, { "key": "geid_144_15973", "source": "8790", "target": "6262" }, { "key": "geid_144_15974", "source": "9106", "target": "1243" }, { "key": "geid_144_15975", "source": "5012", "target": "2046" }, { "key": "geid_144_15976", "source": "9002", "target": "6269" }, { "key": "geid_144_15977", "source": "9636", "target": "2123" }, { "key": "geid_144_15978", "source": "7520", "target": "4516" }, { "key": "geid_144_15979", "source": "6868", "target": "7009" }, { "key": "geid_144_15980", "source": "9717", "target": "2165" }, { "key": "geid_144_15981", "source": "8974", "target": "633" }, { "key": "geid_144_15982", "source": "6445", "target": "1126" }, { "key": "geid_144_15983", "source": "9260", "target": "4529" }, { "key": "geid_144_15984", "source": "4444", "target": "8390" }, { "key": "geid_144_15985", "source": "9200", "target": "6674" }, { "key": "geid_144_15986", "source": "4269", "target": "1440" }, { "key": "geid_144_15987", "source": "4088", "target": "6603" }, { "key": "geid_144_15988", "source": "7620", "target": "2449" }, { "key": "geid_144_15989", "source": "9067", "target": "2863" }, { "key": "geid_144_15990", "source": "1677", "target": "6503" }, { "key": "geid_144_15991", "source": "7834", "target": "1836" }, { "key": "geid_144_15992", "source": "4987", "target": "944" }, { "key": "geid_144_15993", "source": "433", "target": "8194" }, { "key": "geid_144_15994", "source": "4002", "target": "1007" }, { "key": "geid_144_15995", "source": "3662", "target": "1263" }, { "key": "geid_144_15996", "source": "8826", "target": "1372" }, { "key": "geid_144_15997", "source": "1506", "target": "3868" }, { "key": "geid_144_15998", "source": "1510", "target": "5567" }, { "key": "geid_144_15999", "source": "3981", "target": "8623" }, { "key": "geid_144_16000", "source": "2949", "target": "6082" }, { "key": "geid_144_16001", "source": "3718", "target": "2293" }, { "key": "geid_144_16002", "source": "4279", "target": "9580" }, { "key": "geid_144_16003", "source": "7443", "target": "6855" }, { "key": "geid_144_16004", "source": "7231", "target": "592" }, { "key": "geid_144_16005", "source": "740", "target": "2958" }, { "key": "geid_144_16006", "source": "509", "target": "9068" }, { "key": "geid_144_16007", "source": "243", "target": "7113" }, { "key": "geid_144_16008", "source": "5959", "target": "3426" }, { "key": "geid_144_16009", "source": "1817", "target": "5667" }, { "key": "geid_144_16010", "source": "1582", "target": "8101" }, { "key": "geid_144_16011", "source": "9552", "target": "1329" }, { "key": "geid_144_16012", "source": "2068", "target": "8816" }, { "key": "geid_144_16013", "source": "848", "target": "5241" }, { "key": "geid_144_16014", "source": "3169", "target": "448" }, { "key": "geid_144_16015", "source": "1185", "target": "21" }, { "key": "geid_144_16016", "source": "8045", "target": "6061" }, { "key": "geid_144_16017", "source": "6282", "target": "8296" }, { "key": "geid_144_16018", "source": "6288", "target": "6687" }, { "key": "geid_144_16019", "source": "2078", "target": "5665" }, { "key": "geid_144_16020", "source": "8579", "target": "7002" }, { "key": "geid_144_16021", "source": "9257", "target": "9763" }, { "key": "geid_144_16022", "source": "4166", "target": "605" }, { "key": "geid_144_16023", "source": "6034", "target": "4073" }, { "key": "geid_144_16024", "source": "8950", "target": "7346" }, { "key": "geid_144_16025", "source": "4726", "target": "2886" }, { "key": "geid_144_16026", "source": "431", "target": "6754" }, { "key": "geid_144_16027", "source": "2616", "target": "3695" }, { "key": "geid_144_16028", "source": "7606", "target": "1516" }, { "key": "geid_144_16029", "source": "2176", "target": "201" }, { "key": "geid_144_16030", "source": "9936", "target": "9199" }, { "key": "geid_144_16031", "source": "3098", "target": "6300" }, { "key": "geid_144_16032", "source": "4385", "target": "6901" }, { "key": "geid_144_16033", "source": "3072", "target": "6415" }, { "key": "geid_144_16034", "source": "7853", "target": "8320" }, { "key": "geid_144_16035", "source": "6727", "target": "3349" }, { "key": "geid_144_16036", "source": "5555", "target": "6463" }, { "key": "geid_144_16037", "source": "2937", "target": "6000" }, { "key": "geid_144_16038", "source": "6900", "target": "5134" }, { "key": "geid_144_16039", "source": "295", "target": "8166" }, { "key": "geid_144_16040", "source": "3667", "target": "3108" }, { "key": "geid_144_16041", "source": "2389", "target": "8735" }, { "key": "geid_144_16042", "source": "8328", "target": "2885" }, { "key": "geid_144_16043", "source": "6115", "target": "315" }, { "key": "geid_144_16044", "source": "2682", "target": "3704" }, { "key": "geid_144_16045", "source": "667", "target": "1477" }, { "key": "geid_144_16046", "source": "5064", "target": "8617" }, { "key": "geid_144_16047", "source": "5174", "target": "3513" }, { "key": "geid_144_16048", "source": "2176", "target": "1601" }, { "key": "geid_144_16049", "source": "8873", "target": "2538" }, { "key": "geid_144_16050", "source": "4507", "target": "627" }, { "key": "geid_144_16051", "source": "7313", "target": "675" }, { "key": "geid_144_16052", "source": "2356", "target": "2581" }, { "key": "geid_144_16053", "source": "3706", "target": "1779" }, { "key": "geid_144_16054", "source": "7470", "target": "423" }, { "key": "geid_144_16055", "source": "2427", "target": "6017" }, { "key": "geid_144_16056", "source": "70", "target": "4727" }, { "key": "geid_144_16057", "source": "5035", "target": "8875" }, { "key": "geid_144_16058", "source": "698", "target": "1468" }, { "key": "geid_144_16059", "source": "5126", "target": "8318" }, { "key": "geid_144_16060", "source": "1833", "target": "6777" }, { "key": "geid_144_16061", "source": "2165", "target": "7787" }, { "key": "geid_144_16062", "source": "3047", "target": "4936" }, { "key": "geid_144_16063", "source": "1057", "target": "8348" }, { "key": "geid_144_16064", "source": "5263", "target": "3574" }, { "key": "geid_144_16065", "source": "3726", "target": "6954" }, { "key": "geid_144_16066", "source": "9329", "target": "3880" }, { "key": "geid_144_16067", "source": "7229", "target": "7000" }, { "key": "geid_144_16068", "source": "2075", "target": "4694" }, { "key": "geid_144_16069", "source": "9292", "target": "3564" }, { "key": "geid_144_16070", "source": "5025", "target": "2975" }, { "key": "geid_144_16071", "source": "7883", "target": "3846" }, { "key": "geid_144_16072", "source": "3648", "target": "2534" }, { "key": "geid_144_16073", "source": "9619", "target": "9457" }, { "key": "geid_144_16074", "source": "8177", "target": "641" }, { "key": "geid_144_16075", "source": "6025", "target": "5853" }, { "key": "geid_144_16076", "source": "928", "target": "9725" }, { "key": "geid_144_16077", "source": "6778", "target": "5213" }, { "key": "geid_144_16078", "source": "9328", "target": "6148" }, { "key": "geid_144_16079", "source": "9114", "target": "5452" }, { "key": "geid_144_16080", "source": "4606", "target": "2581" }, { "key": "geid_144_16081", "source": "6471", "target": "3222" }, { "key": "geid_144_16082", "source": "5436", "target": "626" }, { "key": "geid_144_16083", "source": "9165", "target": "1361" }, { "key": "geid_144_16084", "source": "4034", "target": "3887" }, { "key": "geid_144_16085", "source": "7820", "target": "1986" }, { "key": "geid_144_16086", "source": "4232", "target": "8491" }, { "key": "geid_144_16087", "source": "1546", "target": "6175" }, { "key": "geid_144_16088", "source": "8196", "target": "508" }, { "key": "geid_144_16089", "source": "3054", "target": "1296" }, { "key": "geid_144_16090", "source": "6542", "target": "7791" }, { "key": "geid_144_16091", "source": "6355", "target": "3092" }, { "key": "geid_144_16092", "source": "3592", "target": "3544" }, { "key": "geid_144_16093", "source": "2263", "target": "5687" }, { "key": "geid_144_16094", "source": "7085", "target": "3216" }, { "key": "geid_144_16095", "source": "4284", "target": "4797" }, { "key": "geid_144_16096", "source": "4627", "target": "4105" }, { "key": "geid_144_16097", "source": "8106", "target": "4662" }, { "key": "geid_144_16098", "source": "8046", "target": "5862" }, { "key": "geid_144_16099", "source": "3325", "target": "7774" }, { "key": "geid_144_16100", "source": "6766", "target": "8777" }, { "key": "geid_144_16101", "source": "1117", "target": "855" }, { "key": "geid_144_16102", "source": "8279", "target": "864" }, { "key": "geid_144_16103", "source": "3477", "target": "6353" }, { "key": "geid_144_16104", "source": "4959", "target": "6007" }, { "key": "geid_144_16105", "source": "974", "target": "1466" }, { "key": "geid_144_16106", "source": "1252", "target": "9319" }, { "key": "geid_144_16107", "source": "5578", "target": "1761" }, { "key": "geid_144_16108", "source": "9030", "target": "4107" }, { "key": "geid_144_16109", "source": "4427", "target": "9541" }, { "key": "geid_144_16110", "source": "9424", "target": "831" }, { "key": "geid_144_16111", "source": "7298", "target": "5006" }, { "key": "geid_144_16112", "source": "9992", "target": "7387" }, { "key": "geid_144_16113", "source": "6128", "target": "2065" }, { "key": "geid_144_16114", "source": "8313", "target": "6687" }, { "key": "geid_144_16115", "source": "7404", "target": "5496" }, { "key": "geid_144_16116", "source": "6429", "target": "497" }, { "key": "geid_144_16117", "source": "5413", "target": "7917" }, { "key": "geid_144_16118", "source": "4038", "target": "9092" }, { "key": "geid_144_16119", "source": "6687", "target": "3031" }, { "key": "geid_144_16120", "source": "2966", "target": "6053" }, { "key": "geid_144_16121", "source": "4339", "target": "7987" }, { "key": "geid_144_16122", "source": "6735", "target": "682" }, { "key": "geid_144_16123", "source": "6467", "target": "2972" }, { "key": "geid_144_16124", "source": "6560", "target": "9721" }, { "key": "geid_144_16125", "source": "414", "target": "8428" }, { "key": "geid_144_16126", "source": "7403", "target": "1098" }, { "key": "geid_144_16127", "source": "6351", "target": "8643" }, { "key": "geid_144_16128", "source": "5849", "target": "1851" }, { "key": "geid_144_16129", "source": "5210", "target": "1340" }, { "key": "geid_144_16130", "source": "7019", "target": "5365" }, { "key": "geid_144_16131", "source": "7667", "target": "8485" }, { "key": "geid_144_16132", "source": "1308", "target": "9286" }, { "key": "geid_144_16133", "source": "6174", "target": "4150" }, { "key": "geid_144_16134", "source": "7001", "target": "6064" }, { "key": "geid_144_16135", "source": "9380", "target": "161" }, { "key": "geid_144_16136", "source": "7916", "target": "2427" }, { "key": "geid_144_16137", "source": "4097", "target": "4077" }, { "key": "geid_144_16138", "source": "2463", "target": "4476" }, { "key": "geid_144_16139", "source": "7234", "target": "1098" }, { "key": "geid_144_16140", "source": "7478", "target": "5170" }, { "key": "geid_144_16141", "source": "6265", "target": "2779" }, { "key": "geid_144_16142", "source": "5360", "target": "8311" }, { "key": "geid_144_16143", "source": "1088", "target": "2712" }, { "key": "geid_144_16144", "source": "5027", "target": "3465" }, { "key": "geid_144_16145", "source": "1636", "target": "2019" }, { "key": "geid_144_16146", "source": "2699", "target": "608" }, { "key": "geid_144_16147", "source": "8519", "target": "4975" }, { "key": "geid_144_16148", "source": "7127", "target": "9691" }, { "key": "geid_144_16149", "source": "4097", "target": "9832" }, { "key": "geid_144_16150", "source": "5350", "target": "9326" }, { "key": "geid_144_16151", "source": "3667", "target": "3846" }, { "key": "geid_144_16152", "source": "6001", "target": "2008" }, { "key": "geid_144_16153", "source": "8720", "target": "4688" }, { "key": "geid_144_16154", "source": "3404", "target": "991" }, { "key": "geid_144_16155", "source": "9174", "target": "4693" }, { "key": "geid_144_16156", "source": "2480", "target": "5359" }, { "key": "geid_144_16157", "source": "9894", "target": "6626" }, { "key": "geid_144_16158", "source": "7428", "target": "3853" }, { "key": "geid_144_16159", "source": "5760", "target": "8891" }, { "key": "geid_144_16160", "source": "1251", "target": "6931" }, { "key": "geid_144_16161", "source": "1695", "target": "5069" }, { "key": "geid_144_16162", "source": "3515", "target": "1485" }, { "key": "geid_144_16163", "source": "145", "target": "345" }, { "key": "geid_144_16164", "source": "4923", "target": "1219" }, { "key": "geid_144_16165", "source": "4670", "target": "7016" }, { "key": "geid_144_16166", "source": "3879", "target": "2643" }, { "key": "geid_144_16167", "source": "193", "target": "4501" }, { "key": "geid_144_16168", "source": "4668", "target": "7214" }, { "key": "geid_144_16169", "source": "7806", "target": "1749" }, { "key": "geid_144_16170", "source": "8406", "target": "9329" }, { "key": "geid_144_16171", "source": "3848", "target": "6017" }, { "key": "geid_144_16172", "source": "8180", "target": "217" }, { "key": "geid_144_16173", "source": "579", "target": "4310" }, { "key": "geid_144_16174", "source": "732", "target": "7921" }, { "key": "geid_144_16175", "source": "8314", "target": "5937" }, { "key": "geid_144_16176", "source": "8720", "target": "1562" }, { "key": "geid_144_16177", "source": "4122", "target": "4425" }, { "key": "geid_144_16178", "source": "9325", "target": "8077" }, { "key": "geid_144_16179", "source": "5192", "target": "1178" }, { "key": "geid_144_16180", "source": "2273", "target": "9144" }, { "key": "geid_144_16181", "source": "1943", "target": "5485" }, { "key": "geid_144_16182", "source": "621", "target": "5269" }, { "key": "geid_144_16183", "source": "2501", "target": "9111" }, { "key": "geid_144_16184", "source": "5490", "target": "7002" }, { "key": "geid_144_16185", "source": "5975", "target": "9057" }, { "key": "geid_144_16186", "source": "4615", "target": "1702" }, { "key": "geid_144_16187", "source": "2335", "target": "2700" }, { "key": "geid_144_16188", "source": "4793", "target": "2415" }, { "key": "geid_144_16189", "source": "8988", "target": "2979" }, { "key": "geid_144_16190", "source": "7239", "target": "585" }, { "key": "geid_144_16191", "source": "7270", "target": "4668" }, { "key": "geid_144_16192", "source": "1659", "target": "1670" }, { "key": "geid_144_16193", "source": "8165", "target": "5228" }, { "key": "geid_144_16194", "source": "9451", "target": "9301" }, { "key": "geid_144_16195", "source": "7261", "target": "9737" }, { "key": "geid_144_16196", "source": "3569", "target": "3078" }, { "key": "geid_144_16197", "source": "7676", "target": "5502" }, { "key": "geid_144_16198", "source": "2104", "target": "9002" }, { "key": "geid_144_16199", "source": "696", "target": "7348" }, { "key": "geid_144_16200", "source": "1727", "target": "3038" }, { "key": "geid_144_16201", "source": "3853", "target": "9855" }, { "key": "geid_144_16202", "source": "1253", "target": "6631" }, { "key": "geid_144_16203", "source": "9856", "target": "6510" }, { "key": "geid_144_16204", "source": "6977", "target": "8746" }, { "key": "geid_144_16205", "source": "853", "target": "5064" }, { "key": "geid_144_16206", "source": "5338", "target": "2011" }, { "key": "geid_144_16207", "source": "1977", "target": "8615" }, { "key": "geid_144_16208", "source": "172", "target": "2951" }, { "key": "geid_144_16209", "source": "6022", "target": "5496" }, { "key": "geid_144_16210", "source": "196", "target": "5384" }, { "key": "geid_144_16211", "source": "8271", "target": "8408" }, { "key": "geid_144_16212", "source": "4541", "target": "73" }, { "key": "geid_144_16213", "source": "2544", "target": "3882" }, { "key": "geid_144_16214", "source": "2243", "target": "6004" }, { "key": "geid_144_16215", "source": "6433", "target": "4166" }, { "key": "geid_144_16216", "source": "2519", "target": "1005" }, { "key": "geid_144_16217", "source": "7266", "target": "7242" }, { "key": "geid_144_16218", "source": "135", "target": "2511" }, { "key": "geid_144_16219", "source": "1694", "target": "9883" }, { "key": "geid_144_16220", "source": "5995", "target": "2385" }, { "key": "geid_144_16221", "source": "8026", "target": "718" }, { "key": "geid_144_16222", "source": "2505", "target": "747" }, { "key": "geid_144_16223", "source": "6884", "target": "1422" }, { "key": "geid_144_16224", "source": "3514", "target": "801" }, { "key": "geid_144_16225", "source": "7413", "target": "2924" }, { "key": "geid_144_16226", "source": "1659", "target": "5569" }, { "key": "geid_144_16227", "source": "4183", "target": "9394" }, { "key": "geid_144_16228", "source": "791", "target": "8663" }, { "key": "geid_144_16229", "source": "2148", "target": "2598" }, { "key": "geid_144_16230", "source": "1939", "target": "2492" }, { "key": "geid_144_16231", "source": "4498", "target": "3848" }, { "key": "geid_144_16232", "source": "544", "target": "4425" }, { "key": "geid_144_16233", "source": "4061", "target": "3464" }, { "key": "geid_144_16234", "source": "1338", "target": "2225" }, { "key": "geid_144_16235", "source": "6639", "target": "9570" }, { "key": "geid_144_16236", "source": "4404", "target": "1431" }, { "key": "geid_144_16237", "source": "372", "target": "7633" }, { "key": "geid_144_16238", "source": "6731", "target": "3871" }, { "key": "geid_144_16239", "source": "8139", "target": "5135" }, { "key": "geid_144_16240", "source": "2453", "target": "381" }, { "key": "geid_144_16241", "source": "6344", "target": "3331" }, { "key": "geid_144_16242", "source": "2528", "target": "6949" }, { "key": "geid_144_16243", "source": "5813", "target": "1104" }, { "key": "geid_144_16244", "source": "585", "target": "8290" }, { "key": "geid_144_16245", "source": "6550", "target": "1739" }, { "key": "geid_144_16246", "source": "3085", "target": "3047" }, { "key": "geid_144_16247", "source": "1931", "target": "8279" }, { "key": "geid_144_16248", "source": "8795", "target": "1096" }, { "key": "geid_144_16249", "source": "6090", "target": "6758" }, { "key": "geid_144_16250", "source": "1450", "target": "5514" }, { "key": "geid_144_16251", "source": "5380", "target": "5321" }, { "key": "geid_144_16252", "source": "4761", "target": "9504" }, { "key": "geid_144_16253", "source": "6547", "target": "8668" }, { "key": "geid_144_16254", "source": "6438", "target": "6005" }, { "key": "geid_144_16255", "source": "1182", "target": "5163" }, { "key": "geid_144_16256", "source": "9109", "target": "8697" }, { "key": "geid_144_16257", "source": "2025", "target": "3462" }, { "key": "geid_144_16258", "source": "2450", "target": "4934" }, { "key": "geid_144_16259", "source": "6537", "target": "3845" }, { "key": "geid_144_16260", "source": "5438", "target": "6194" }, { "key": "geid_144_16261", "source": "5620", "target": "1679" }, { "key": "geid_144_16262", "source": "998", "target": "2411" }, { "key": "geid_144_16263", "source": "8402", "target": "8828" }, { "key": "geid_144_16264", "source": "7768", "target": "8180" }, { "key": "geid_144_16265", "source": "4024", "target": "3095" }, { "key": "geid_144_16266", "source": "2584", "target": "8750" }, { "key": "geid_144_16267", "source": "6617", "target": "4955" }, { "key": "geid_144_16268", "source": "4239", "target": "8166" }, { "key": "geid_144_16269", "source": "9606", "target": "719" }, { "key": "geid_144_16270", "source": "6645", "target": "7865" }, { "key": "geid_144_16271", "source": "4822", "target": "4415" }, { "key": "geid_144_16272", "source": "152", "target": "3521" }, { "key": "geid_144_16273", "source": "2401", "target": "4186" }, { "key": "geid_144_16274", "source": "9783", "target": "1143" }, { "key": "geid_144_16275", "source": "3956", "target": "5173" }, { "key": "geid_144_16276", "source": "2400", "target": "2684" }, { "key": "geid_144_16277", "source": "3605", "target": "1404" }, { "key": "geid_144_16278", "source": "7279", "target": "6383" }, { "key": "geid_144_16279", "source": "1034", "target": "1295" }, { "key": "geid_144_16280", "source": "3134", "target": "8676" }, { "key": "geid_144_16281", "source": "2170", "target": "7466" }, { "key": "geid_144_16282", "source": "2282", "target": "587" }, { "key": "geid_144_16283", "source": "6339", "target": "9345" }, { "key": "geid_144_16284", "source": "2619", "target": "7118" }, { "key": "geid_144_16285", "source": "8253", "target": "4643" }, { "key": "geid_144_16286", "source": "231", "target": "6050" }, { "key": "geid_144_16287", "source": "48", "target": "4277" }, { "key": "geid_144_16288", "source": "8945", "target": "4813" }, { "key": "geid_144_16289", "source": "1884", "target": "3404" }, { "key": "geid_144_16290", "source": "3927", "target": "1909" }, { "key": "geid_144_16291", "source": "7768", "target": "4642" }, { "key": "geid_144_16292", "source": "2058", "target": "3555" }, { "key": "geid_144_16293", "source": "8250", "target": "7497" }, { "key": "geid_144_16294", "source": "3579", "target": "4720" }, { "key": "geid_144_16295", "source": "6627", "target": "3683" }, { "key": "geid_144_16296", "source": "3967", "target": "3234" }, { "key": "geid_144_16297", "source": "2040", "target": "3565" }, { "key": "geid_144_16298", "source": "9378", "target": "2880" }, { "key": "geid_144_16299", "source": "3372", "target": "9901" }, { "key": "geid_144_16300", "source": "666", "target": "1874" }, { "key": "geid_144_16301", "source": "7850", "target": "3247" }, { "key": "geid_144_16302", "source": "4068", "target": "1148" }, { "key": "geid_144_16303", "source": "9850", "target": "5870" }, { "key": "geid_144_16304", "source": "1583", "target": "4958" }, { "key": "geid_144_16305", "source": "7437", "target": "6579" }, { "key": "geid_144_16306", "source": "8567", "target": "972" }, { "key": "geid_144_16307", "source": "1901", "target": "9404" }, { "key": "geid_144_16308", "source": "1928", "target": "2052" }, { "key": "geid_144_16309", "source": "3195", "target": "4017" }, { "key": "geid_144_16310", "source": "1068", "target": "6743" }, { "key": "geid_144_16311", "source": "2179", "target": "9173" }, { "key": "geid_144_16312", "source": "570", "target": "9394" }, { "key": "geid_144_16313", "source": "6625", "target": "3419" }, { "key": "geid_144_16314", "source": "4059", "target": "3526" }, { "key": "geid_144_16315", "source": "9349", "target": "1781" }, { "key": "geid_144_16316", "source": "2827", "target": "1363" }, { "key": "geid_144_16317", "source": "9441", "target": "5397" }, { "key": "geid_144_16318", "source": "383", "target": "5821" }, { "key": "geid_144_16319", "source": "9851", "target": "4001" }, { "key": "geid_144_16320", "source": "5952", "target": "9705" }, { "key": "geid_144_16321", "source": "7633", "target": "5984" }, { "key": "geid_144_16322", "source": "3141", "target": "5238" }, { "key": "geid_144_16323", "source": "8060", "target": "9979" }, { "key": "geid_144_16324", "source": "7096", "target": "5714" }, { "key": "geid_144_16325", "source": "7841", "target": "1368" }, { "key": "geid_144_16326", "source": "691", "target": "5358" }, { "key": "geid_144_16327", "source": "9354", "target": "5613" }, { "key": "geid_144_16328", "source": "3279", "target": "9216" }, { "key": "geid_144_16329", "source": "20", "target": "846" }, { "key": "geid_144_16330", "source": "8903", "target": "7552" }, { "key": "geid_144_16331", "source": "5572", "target": "7548" }, { "key": "geid_144_16332", "source": "7385", "target": "5353" }, { "key": "geid_144_16333", "source": "9334", "target": "2925" }, { "key": "geid_144_16334", "source": "7381", "target": "6244" }, { "key": "geid_144_16335", "source": "4246", "target": "7740" }, { "key": "geid_144_16336", "source": "3681", "target": "6882" }, { "key": "geid_144_16337", "source": "6071", "target": "2035" }, { "key": "geid_144_16338", "source": "5773", "target": "3906" }, { "key": "geid_144_16339", "source": "3634", "target": "6512" }, { "key": "geid_144_16340", "source": "4963", "target": "1093" }, { "key": "geid_144_16341", "source": "5720", "target": "2565" }, { "key": "geid_144_16342", "source": "9548", "target": "1141" }, { "key": "geid_144_16343", "source": "8151", "target": "6071" }, { "key": "geid_144_16344", "source": "8234", "target": "8606" }, { "key": "geid_144_16345", "source": "6696", "target": "9526" }, { "key": "geid_144_16346", "source": "8004", "target": "2212" }, { "key": "geid_144_16347", "source": "1962", "target": "272" }, { "key": "geid_144_16348", "source": "8869", "target": "1386" }, { "key": "geid_144_16349", "source": "9091", "target": "4514" }, { "key": "geid_144_16350", "source": "2183", "target": "7368" }, { "key": "geid_144_16351", "source": "1709", "target": "9611" }, { "key": "geid_144_16352", "source": "9222", "target": "4309" }, { "key": "geid_144_16353", "source": "8724", "target": "6020" }, { "key": "geid_144_16354", "source": "6537", "target": "4328" }, { "key": "geid_144_16355", "source": "9837", "target": "7201" }, { "key": "geid_144_16356", "source": "3219", "target": "8328" }, { "key": "geid_144_16357", "source": "2944", "target": "7383" }, { "key": "geid_144_16358", "source": "6175", "target": "5998" }, { "key": "geid_144_16359", "source": "8897", "target": "9664" }, { "key": "geid_144_16360", "source": "2219", "target": "7680" }, { "key": "geid_144_16361", "source": "7836", "target": "2044" }, { "key": "geid_144_16362", "source": "2809", "target": "4301" }, { "key": "geid_144_16363", "source": "6413", "target": "1242" }, { "key": "geid_144_16364", "source": "7413", "target": "2538" }, { "key": "geid_144_16365", "source": "4186", "target": "6609" }, { "key": "geid_144_16366", "source": "5793", "target": "8438" }, { "key": "geid_144_16367", "source": "3203", "target": "6299" }, { "key": "geid_144_16368", "source": "687", "target": "1404" }, { "key": "geid_144_16369", "source": "3790", "target": "3843" }, { "key": "geid_144_16370", "source": "9161", "target": "8735" }, { "key": "geid_144_16371", "source": "811", "target": "3138" }, { "key": "geid_144_16372", "source": "4741", "target": "8284" }, { "key": "geid_144_16373", "source": "274", "target": "8846" }, { "key": "geid_144_16374", "source": "34", "target": "5220" }, { "key": "geid_144_16375", "source": "6134", "target": "8475" }, { "key": "geid_144_16376", "source": "9776", "target": "7606" }, { "key": "geid_144_16377", "source": "9905", "target": "6217" }, { "key": "geid_144_16378", "source": "9339", "target": "7149" }, { "key": "geid_144_16379", "source": "6628", "target": "3491" }, { "key": "geid_144_16380", "source": "3741", "target": "3112" }, { "key": "geid_144_16381", "source": "7602", "target": "3209" }, { "key": "geid_144_16382", "source": "2065", "target": "121" }, { "key": "geid_144_16383", "source": "7050", "target": "2805" }, { "key": "geid_144_16384", "source": "9314", "target": "3501" }, { "key": "geid_144_16385", "source": "2654", "target": "6891" }, { "key": "geid_144_16386", "source": "6400", "target": "7001" }, { "key": "geid_144_16387", "source": "7394", "target": "6258" }, { "key": "geid_144_16388", "source": "6790", "target": "7920" }, { "key": "geid_144_16389", "source": "821", "target": "8519" }, { "key": "geid_144_16390", "source": "1168", "target": "4198" }, { "key": "geid_144_16391", "source": "4045", "target": "5716" }, { "key": "geid_144_16392", "source": "1293", "target": "8162" }, { "key": "geid_144_16393", "source": "3366", "target": "4291" }, { "key": "geid_144_16394", "source": "537", "target": "893" }, { "key": "geid_144_16395", "source": "118", "target": "5262" }, { "key": "geid_144_16396", "source": "4873", "target": "258" }, { "key": "geid_144_16397", "source": "4878", "target": "5738" }, { "key": "geid_144_16398", "source": "3854", "target": "2112" }, { "key": "geid_144_16399", "source": "8784", "target": "1243" }, { "key": "geid_144_16400", "source": "3220", "target": "7212" }, { "key": "geid_144_16401", "source": "4585", "target": "429" }, { "key": "geid_144_16402", "source": "231", "target": "4264" }, { "key": "geid_144_16403", "source": "3092", "target": "9666" }, { "key": "geid_144_16404", "source": "8144", "target": "6296" }, { "key": "geid_144_16405", "source": "8338", "target": "6687" }, { "key": "geid_144_16406", "source": "7496", "target": "7462" }, { "key": "geid_144_16407", "source": "3350", "target": "5894" }, { "key": "geid_144_16408", "source": "5053", "target": "9349" }, { "key": "geid_144_16409", "source": "3542", "target": "6499" }, { "key": "geid_144_16410", "source": "8486", "target": "9067" }, { "key": "geid_144_16411", "source": "1010", "target": "1652" }, { "key": "geid_144_16412", "source": "2978", "target": "1743" }, { "key": "geid_144_16413", "source": "382", "target": "3075" }, { "key": "geid_144_16414", "source": "6360", "target": "7820" }, { "key": "geid_144_16415", "source": "6971", "target": "8686" }, { "key": "geid_144_16416", "source": "4787", "target": "4469" }, { "key": "geid_144_16417", "source": "34", "target": "6390" }, { "key": "geid_144_16418", "source": "3190", "target": "2764" }, { "key": "geid_144_16419", "source": "7744", "target": "4369" }, { "key": "geid_144_16420", "source": "6537", "target": "701" }, { "key": "geid_144_16421", "source": "1218", "target": "4500" }, { "key": "geid_144_16422", "source": "1835", "target": "1660" }, { "key": "geid_144_16423", "source": "493", "target": "6167" }, { "key": "geid_144_16424", "source": "7324", "target": "6724" }, { "key": "geid_144_16425", "source": "9050", "target": "7602" }, { "key": "geid_144_16426", "source": "8319", "target": "3776" }, { "key": "geid_144_16427", "source": "6572", "target": "7688" }, { "key": "geid_144_16428", "source": "1136", "target": "159" }, { "key": "geid_144_16429", "source": "2289", "target": "2924" }, { "key": "geid_144_16430", "source": "7234", "target": "8017" }, { "key": "geid_144_16431", "source": "8654", "target": "6860" }, { "key": "geid_144_16432", "source": "5524", "target": "2118" }, { "key": "geid_144_16433", "source": "2361", "target": "3255" }, { "key": "geid_144_16434", "source": "1542", "target": "1457" }, { "key": "geid_144_16435", "source": "6844", "target": "7436" }, { "key": "geid_144_16436", "source": "5593", "target": "3512" }, { "key": "geid_144_16437", "source": "2951", "target": "3366" }, { "key": "geid_144_16438", "source": "4361", "target": "2906" }, { "key": "geid_144_16439", "source": "4400", "target": "76" }, { "key": "geid_144_16440", "source": "3384", "target": "3621" }, { "key": "geid_144_16441", "source": "7376", "target": "381" }, { "key": "geid_144_16442", "source": "525", "target": "3661" }, { "key": "geid_144_16443", "source": "115", "target": "7270" }, { "key": "geid_144_16444", "source": "2158", "target": "4067" }, { "key": "geid_144_16445", "source": "8397", "target": "4366" }, { "key": "geid_144_16446", "source": "6627", "target": "7963" }, { "key": "geid_144_16447", "source": "8770", "target": "6978" }, { "key": "geid_144_16448", "source": "6968", "target": "6075" }, { "key": "geid_144_16449", "source": "5993", "target": "3155" }, { "key": "geid_144_16450", "source": "289", "target": "4531" }, { "key": "geid_144_16451", "source": "6605", "target": "3312" }, { "key": "geid_144_16452", "source": "6371", "target": "8455" }, { "key": "geid_144_16453", "source": "6294", "target": "5419" }, { "key": "geid_144_16454", "source": "1081", "target": "9222" }, { "key": "geid_144_16455", "source": "9519", "target": "7089" }, { "key": "geid_144_16456", "source": "224", "target": "9101" }, { "key": "geid_144_16457", "source": "7994", "target": "9628" }, { "key": "geid_144_16458", "source": "3841", "target": "3254" }, { "key": "geid_144_16459", "source": "9872", "target": "9427" }, { "key": "geid_144_16460", "source": "134", "target": "9713" }, { "key": "geid_144_16461", "source": "3392", "target": "3597" }, { "key": "geid_144_16462", "source": "8390", "target": "5644" }, { "key": "geid_144_16463", "source": "7594", "target": "3499" }, { "key": "geid_144_16464", "source": "7251", "target": "4439" }, { "key": "geid_144_16465", "source": "8018", "target": "3298" }, { "key": "geid_144_16466", "source": "4647", "target": "6313" }, { "key": "geid_144_16467", "source": "6744", "target": "2545" }, { "key": "geid_144_16468", "source": "669", "target": "6486" }, { "key": "geid_144_16469", "source": "5309", "target": "3288" }, { "key": "geid_144_16470", "source": "5669", "target": "7527" }, { "key": "geid_144_16471", "source": "8955", "target": "4465" }, { "key": "geid_144_16472", "source": "5272", "target": "3324" }, { "key": "geid_144_16473", "source": "5821", "target": "3986" }, { "key": "geid_144_16474", "source": "4860", "target": "5935" }, { "key": "geid_144_16475", "source": "1772", "target": "1455" }, { "key": "geid_144_16476", "source": "8436", "target": "4144" }, { "key": "geid_144_16477", "source": "5679", "target": "7311" }, { "key": "geid_144_16478", "source": "9708", "target": "2736" }, { "key": "geid_144_16479", "source": "8525", "target": "888" }, { "key": "geid_144_16480", "source": "8749", "target": "4829" }, { "key": "geid_144_16481", "source": "914", "target": "1582" }, { "key": "geid_144_16482", "source": "3549", "target": "6454" }, { "key": "geid_144_16483", "source": "409", "target": "9076" }, { "key": "geid_144_16484", "source": "7969", "target": "3463" }, { "key": "geid_144_16485", "source": "3028", "target": "7152" }, { "key": "geid_144_16486", "source": "7440", "target": "504" }, { "key": "geid_144_16487", "source": "1480", "target": "2842" }, { "key": "geid_144_16488", "source": "1040", "target": "8059" }, { "key": "geid_144_16489", "source": "3502", "target": "1019" }, { "key": "geid_144_16490", "source": "7721", "target": "5205" }, { "key": "geid_144_16491", "source": "636", "target": "316" }, { "key": "geid_144_16492", "source": "9797", "target": "3327" }, { "key": "geid_144_16493", "source": "2829", "target": "4226" }, { "key": "geid_144_16494", "source": "5996", "target": "6262" }, { "key": "geid_144_16495", "source": "5295", "target": "302" }, { "key": "geid_144_16496", "source": "738", "target": "6357" }, { "key": "geid_144_16497", "source": "5719", "target": "9153" }, { "key": "geid_144_16498", "source": "2494", "target": "7574" }, { "key": "geid_144_16499", "source": "3089", "target": "7587" }, { "key": "geid_144_16500", "source": "8460", "target": "1838" }, { "key": "geid_144_16501", "source": "1988", "target": "1268" }, { "key": "geid_144_16502", "source": "1262", "target": "7452" }, { "key": "geid_144_16503", "source": "8974", "target": "7387" }, { "key": "geid_144_16504", "source": "368", "target": "4245" }, { "key": "geid_144_16505", "source": "7349", "target": "5496" }, { "key": "geid_144_16506", "source": "1691", "target": "891" }, { "key": "geid_144_16507", "source": "7914", "target": "2464" }, { "key": "geid_144_16508", "source": "4643", "target": "63" }, { "key": "geid_144_16509", "source": "7844", "target": "2208" }, { "key": "geid_144_16510", "source": "5229", "target": "1329" }, { "key": "geid_144_16511", "source": "6484", "target": "1925" }, { "key": "geid_144_16512", "source": "4067", "target": "8836" }, { "key": "geid_144_16513", "source": "1122", "target": "8036" }, { "key": "geid_144_16514", "source": "7841", "target": "4502" }, { "key": "geid_144_16515", "source": "7162", "target": "9250" }, { "key": "geid_144_16516", "source": "7173", "target": "8436" }, { "key": "geid_144_16517", "source": "3297", "target": "2163" }, { "key": "geid_144_16518", "source": "4023", "target": "1735" }, { "key": "geid_144_16519", "source": "6007", "target": "6365" }, { "key": "geid_144_16520", "source": "2303", "target": "7414" }, { "key": "geid_144_16521", "source": "350", "target": "8390" }, { "key": "geid_144_16522", "source": "457", "target": "6994" }, { "key": "geid_144_16523", "source": "4808", "target": "809" }, { "key": "geid_144_16524", "source": "6583", "target": "5014" }, { "key": "geid_144_16525", "source": "6582", "target": "7713" }, { "key": "geid_144_16526", "source": "2941", "target": "9559" }, { "key": "geid_144_16527", "source": "100", "target": "4465" }, { "key": "geid_144_16528", "source": "1155", "target": "9680" }, { "key": "geid_144_16529", "source": "4298", "target": "1221" }, { "key": "geid_144_16530", "source": "6438", "target": "6676" }, { "key": "geid_144_16531", "source": "1450", "target": "5292" }, { "key": "geid_144_16532", "source": "7540", "target": "4386" }, { "key": "geid_144_16533", "source": "4801", "target": "3497" }, { "key": "geid_144_16534", "source": "3358", "target": "3256" }, { "key": "geid_144_16535", "source": "4830", "target": "1860" }, { "key": "geid_144_16536", "source": "3729", "target": "4349" }, { "key": "geid_144_16537", "source": "17", "target": "9664" }, { "key": "geid_144_16538", "source": "7920", "target": "7166" }, { "key": "geid_144_16539", "source": "1386", "target": "2373" }, { "key": "geid_144_16540", "source": "5276", "target": "8100" }, { "key": "geid_144_16541", "source": "6679", "target": "3792" }, { "key": "geid_144_16542", "source": "9600", "target": "3669" }, { "key": "geid_144_16543", "source": "2241", "target": "9746" }, { "key": "geid_144_16544", "source": "1992", "target": "8144" }, { "key": "geid_144_16545", "source": "4817", "target": "8177" }, { "key": "geid_144_16546", "source": "4317", "target": "4062" }, { "key": "geid_144_16547", "source": "3883", "target": "6299" }, { "key": "geid_144_16548", "source": "8972", "target": "3469" }, { "key": "geid_144_16549", "source": "4687", "target": "2188" }, { "key": "geid_144_16550", "source": "6727", "target": "2146" }, { "key": "geid_144_16551", "source": "4891", "target": "5294" }, { "key": "geid_144_16552", "source": "1705", "target": "3957" }, { "key": "geid_144_16553", "source": "8932", "target": "3961" }, { "key": "geid_144_16554", "source": "2305", "target": "7954" }, { "key": "geid_144_16555", "source": "7480", "target": "6306" }, { "key": "geid_144_16556", "source": "2588", "target": "507" }, { "key": "geid_144_16557", "source": "6214", "target": "3084" }, { "key": "geid_144_16558", "source": "8201", "target": "5774" }, { "key": "geid_144_16559", "source": "9649", "target": "6896" }, { "key": "geid_144_16560", "source": "8074", "target": "1113" }, { "key": "geid_144_16561", "source": "2160", "target": "4023" }, { "key": "geid_144_16562", "source": "7348", "target": "4215" }, { "key": "geid_144_16563", "source": "2544", "target": "3039" }, { "key": "geid_144_16564", "source": "6363", "target": "6077" }, { "key": "geid_144_16565", "source": "4066", "target": "5622" }, { "key": "geid_144_16566", "source": "2602", "target": "5494" }, { "key": "geid_144_16567", "source": "6516", "target": "1581" }, { "key": "geid_144_16568", "source": "690", "target": "9790" }, { "key": "geid_144_16569", "source": "9793", "target": "3600" }, { "key": "geid_144_16570", "source": "8357", "target": "7742" }, { "key": "geid_144_16571", "source": "6335", "target": "7820" }, { "key": "geid_144_16572", "source": "9846", "target": "6083" }, { "key": "geid_144_16573", "source": "5398", "target": "2086" }, { "key": "geid_144_16574", "source": "8248", "target": "3986" }, { "key": "geid_144_16575", "source": "7796", "target": "182" }, { "key": "geid_144_16576", "source": "6227", "target": "8232" }, { "key": "geid_144_16577", "source": "2347", "target": "7124" }, { "key": "geid_144_16578", "source": "1037", "target": "9646" }, { "key": "geid_144_16579", "source": "1551", "target": "7201" }, { "key": "geid_144_16580", "source": "1990", "target": "2422" }, { "key": "geid_144_16581", "source": "6591", "target": "4637" }, { "key": "geid_144_16582", "source": "6571", "target": "7469" }, { "key": "geid_144_16583", "source": "1565", "target": "4619" }, { "key": "geid_144_16584", "source": "7525", "target": "213" }, { "key": "geid_144_16585", "source": "3959", "target": "216" }, { "key": "geid_144_16586", "source": "4958", "target": "1431" }, { "key": "geid_144_16587", "source": "5020", "target": "4691" }, { "key": "geid_144_16588", "source": "1995", "target": "4221" }, { "key": "geid_144_16589", "source": "1186", "target": "7323" }, { "key": "geid_144_16590", "source": "9770", "target": "4401" }, { "key": "geid_144_16591", "source": "8815", "target": "1790" }, { "key": "geid_144_16592", "source": "1832", "target": "3388" }, { "key": "geid_144_16593", "source": "7001", "target": "3391" }, { "key": "geid_144_16594", "source": "4379", "target": "4482" }, { "key": "geid_144_16595", "source": "1975", "target": "4043" }, { "key": "geid_144_16596", "source": "851", "target": "4710" }, { "key": "geid_144_16597", "source": "2354", "target": "7937" }, { "key": "geid_144_16598", "source": "4359", "target": "3246" }, { "key": "geid_144_16599", "source": "602", "target": "7580" }, { "key": "geid_144_16600", "source": "6016", "target": "5092" }, { "key": "geid_144_16601", "source": "2960", "target": "6813" }, { "key": "geid_144_16602", "source": "4728", "target": "6713" }, { "key": "geid_144_16603", "source": "847", "target": "9379" }, { "key": "geid_144_16604", "source": "8934", "target": "9798" }, { "key": "geid_144_16605", "source": "8200", "target": "314" }, { "key": "geid_144_16606", "source": "8161", "target": "9164" }, { "key": "geid_144_16607", "source": "538", "target": "9400" }, { "key": "geid_144_16608", "source": "281", "target": "2930" }, { "key": "geid_144_16609", "source": "7400", "target": "538" }, { "key": "geid_144_16610", "source": "5172", "target": "7697" }, { "key": "geid_144_16611", "source": "6675", "target": "8377" }, { "key": "geid_144_16612", "source": "1638", "target": "406" }, { "key": "geid_144_16613", "source": "1669", "target": "5080" }, { "key": "geid_144_16614", "source": "8896", "target": "9698" }, { "key": "geid_144_16615", "source": "6945", "target": "1677" }, { "key": "geid_144_16616", "source": "1919", "target": "2713" }, { "key": "geid_144_16617", "source": "1362", "target": "1647" }, { "key": "geid_144_16618", "source": "2883", "target": "3123" }, { "key": "geid_144_16619", "source": "8881", "target": "9399" }, { "key": "geid_144_16620", "source": "3627", "target": "1520" }, { "key": "geid_144_16621", "source": "7991", "target": "4928" }, { "key": "geid_144_16622", "source": "665", "target": "1243" }, { "key": "geid_144_16623", "source": "5065", "target": "7683" }, { "key": "geid_144_16624", "source": "6494", "target": "8600" }, { "key": "geid_144_16625", "source": "2293", "target": "7952" }, { "key": "geid_144_16626", "source": "2379", "target": "5158" }, { "key": "geid_144_16627", "source": "128", "target": "5946" }, { "key": "geid_144_16628", "source": "2960", "target": "4941" }, { "key": "geid_144_16629", "source": "3023", "target": "4705" }, { "key": "geid_144_16630", "source": "184", "target": "5157" }, { "key": "geid_144_16631", "source": "1444", "target": "6389" }, { "key": "geid_144_16632", "source": "9391", "target": "5015" }, { "key": "geid_144_16633", "source": "6761", "target": "1418" }, { "key": "geid_144_16634", "source": "4080", "target": "1245" }, { "key": "geid_144_16635", "source": "1870", "target": "9850" }, { "key": "geid_144_16636", "source": "5695", "target": "9049" }, { "key": "geid_144_16637", "source": "8942", "target": "3739" }, { "key": "geid_144_16638", "source": "850", "target": "5819" }, { "key": "geid_144_16639", "source": "2995", "target": "1935" }, { "key": "geid_144_16640", "source": "194", "target": "5770" }, { "key": "geid_144_16641", "source": "8045", "target": "1562" }, { "key": "geid_144_16642", "source": "2719", "target": "1824" }, { "key": "geid_144_16643", "source": "1904", "target": "7699" }, { "key": "geid_144_16644", "source": "2187", "target": "4502" }, { "key": "geid_144_16645", "source": "1382", "target": "556" }, { "key": "geid_144_16646", "source": "5333", "target": "4752" }, { "key": "geid_144_16647", "source": "7456", "target": "1502" }, { "key": "geid_144_16648", "source": "4615", "target": "7011" }, { "key": "geid_144_16649", "source": "7902", "target": "2151" }, { "key": "geid_144_16650", "source": "6860", "target": "25" }, { "key": "geid_144_16651", "source": "7775", "target": "9822" }, { "key": "geid_144_16652", "source": "5999", "target": "4440" }, { "key": "geid_144_16653", "source": "110", "target": "4049" }, { "key": "geid_144_16654", "source": "9209", "target": "526" }, { "key": "geid_144_16655", "source": "7006", "target": "2851" }, { "key": "geid_144_16656", "source": "638", "target": "710" }, { "key": "geid_144_16657", "source": "8654", "target": "3070" }, { "key": "geid_144_16658", "source": "1479", "target": "6930" }, { "key": "geid_144_16659", "source": "4215", "target": "2579" }, { "key": "geid_144_16660", "source": "9899", "target": "2416" }, { "key": "geid_144_16661", "source": "8937", "target": "8115" }, { "key": "geid_144_16662", "source": "3771", "target": "4496" }, { "key": "geid_144_16663", "source": "1810", "target": "9037" }, { "key": "geid_144_16664", "source": "6149", "target": "9542" }, { "key": "geid_144_16665", "source": "3601", "target": "1082" }, { "key": "geid_144_16666", "source": "8176", "target": "3934" }, { "key": "geid_144_16667", "source": "2188", "target": "4446" }, { "key": "geid_144_16668", "source": "7792", "target": "2171" }, { "key": "geid_144_16669", "source": "4194", "target": "280" }, { "key": "geid_144_16670", "source": "3991", "target": "2549" }, { "key": "geid_144_16671", "source": "216", "target": "7321" }, { "key": "geid_144_16672", "source": "3681", "target": "4164" }, { "key": "geid_144_16673", "source": "6832", "target": "6339" }, { "key": "geid_144_16674", "source": "3244", "target": "7591" }, { "key": "geid_144_16675", "source": "1935", "target": "2558" }, { "key": "geid_144_16676", "source": "8753", "target": "1301" }, { "key": "geid_144_16677", "source": "754", "target": "3388" }, { "key": "geid_144_16678", "source": "7104", "target": "9015" }, { "key": "geid_144_16679", "source": "5960", "target": "1925" }, { "key": "geid_144_16680", "source": "3208", "target": "2251" }, { "key": "geid_144_16681", "source": "8481", "target": "5825" }, { "key": "geid_144_16682", "source": "1564", "target": "3968" }, { "key": "geid_144_16683", "source": "1104", "target": "5764" }, { "key": "geid_144_16684", "source": "6256", "target": "6959" }, { "key": "geid_144_16685", "source": "1426", "target": "3049" }, { "key": "geid_144_16686", "source": "7636", "target": "800" }, { "key": "geid_144_16687", "source": "1690", "target": "7129" }, { "key": "geid_144_16688", "source": "505", "target": "677" }, { "key": "geid_144_16689", "source": "5598", "target": "8212" }, { "key": "geid_144_16690", "source": "4081", "target": "40" }, { "key": "geid_144_16691", "source": "9399", "target": "1843" }, { "key": "geid_144_16692", "source": "8063", "target": "470" }, { "key": "geid_144_16693", "source": "1114", "target": "4942" }, { "key": "geid_144_16694", "source": "5774", "target": "2878" }, { "key": "geid_144_16695", "source": "2677", "target": "5312" }, { "key": "geid_144_16696", "source": "3928", "target": "3644" }, { "key": "geid_144_16697", "source": "627", "target": "911" }, { "key": "geid_144_16698", "source": "5306", "target": "5976" }, { "key": "geid_144_16699", "source": "3260", "target": "3910" }, { "key": "geid_144_16700", "source": "8054", "target": "8675" }, { "key": "geid_144_16701", "source": "9757", "target": "1317" }, { "key": "geid_144_16702", "source": "6200", "target": "2701" }, { "key": "geid_144_16703", "source": "7756", "target": "6576" }, { "key": "geid_144_16704", "source": "1843", "target": "4123" }, { "key": "geid_144_16705", "source": "5123", "target": "2743" }, { "key": "geid_144_16706", "source": "7995", "target": "8167" }, { "key": "geid_144_16707", "source": "8315", "target": "6846" }, { "key": "geid_144_16708", "source": "1187", "target": "7085" }, { "key": "geid_144_16709", "source": "6408", "target": "9645" }, { "key": "geid_144_16710", "source": "7398", "target": "1640" }, { "key": "geid_144_16711", "source": "1837", "target": "946" }, { "key": "geid_144_16712", "source": "4084", "target": "6787" }, { "key": "geid_144_16713", "source": "4917", "target": "7300" }, { "key": "geid_144_16714", "source": "2851", "target": "9782" }, { "key": "geid_144_16715", "source": "3380", "target": "2179" }, { "key": "geid_144_16716", "source": "5020", "target": "7601" }, { "key": "geid_144_16717", "source": "3713", "target": "9271" }, { "key": "geid_144_16718", "source": "8582", "target": "3654" }, { "key": "geid_144_16719", "source": "214", "target": "9867" }, { "key": "geid_144_16720", "source": "8784", "target": "5742" }, { "key": "geid_144_16721", "source": "9232", "target": "8364" }, { "key": "geid_144_16722", "source": "1888", "target": "8299" }, { "key": "geid_144_16723", "source": "635", "target": "8505" }, { "key": "geid_144_16724", "source": "876", "target": "7852" }, { "key": "geid_144_16725", "source": "6422", "target": "9864" }, { "key": "geid_144_16726", "source": "5967", "target": "9687" }, { "key": "geid_144_16727", "source": "2867", "target": "6054" }, { "key": "geid_144_16728", "source": "6090", "target": "8644" }, { "key": "geid_144_16729", "source": "73", "target": "2264" }, { "key": "geid_144_16730", "source": "9724", "target": "1556" }, { "key": "geid_144_16731", "source": "872", "target": "2266" }, { "key": "geid_144_16732", "source": "7366", "target": "8676" }, { "key": "geid_144_16733", "source": "9315", "target": "2130" }, { "key": "geid_144_16734", "source": "5282", "target": "3028" }, { "key": "geid_144_16735", "source": "7825", "target": "7401" }, { "key": "geid_144_16736", "source": "7123", "target": "170" }, { "key": "geid_144_16737", "source": "6600", "target": "1356" }, { "key": "geid_144_16738", "source": "1089", "target": "5816" }, { "key": "geid_144_16739", "source": "9204", "target": "3158" }, { "key": "geid_144_16740", "source": "889", "target": "7682" }, { "key": "geid_144_16741", "source": "9972", "target": "6230" }, { "key": "geid_144_16742", "source": "227", "target": "200" }, { "key": "geid_144_16743", "source": "2029", "target": "7908" }, { "key": "geid_144_16744", "source": "4485", "target": "8447" }, { "key": "geid_144_16745", "source": "6850", "target": "2661" }, { "key": "geid_144_16746", "source": "3207", "target": "6154" }, { "key": "geid_144_16747", "source": "6204", "target": "5646" }, { "key": "geid_144_16748", "source": "7518", "target": "263" }, { "key": "geid_144_16749", "source": "9304", "target": "4516" }, { "key": "geid_144_16750", "source": "5743", "target": "7856" }, { "key": "geid_144_16751", "source": "4609", "target": "1793" }, { "key": "geid_144_16752", "source": "6198", "target": "5871" }, { "key": "geid_144_16753", "source": "7761", "target": "7287" }, { "key": "geid_144_16754", "source": "4011", "target": "5305" }, { "key": "geid_144_16755", "source": "9464", "target": "2829" }, { "key": "geid_144_16756", "source": "9054", "target": "2820" }, { "key": "geid_144_16757", "source": "70", "target": "3993" }, { "key": "geid_144_16758", "source": "9443", "target": "1682" }, { "key": "geid_144_16759", "source": "5240", "target": "2789" }, { "key": "geid_144_16760", "source": "2099", "target": "919" }, { "key": "geid_144_16761", "source": "4383", "target": "5446" }, { "key": "geid_144_16762", "source": "6401", "target": "7766" }, { "key": "geid_144_16763", "source": "8825", "target": "1528" }, { "key": "geid_144_16764", "source": "2079", "target": "5810" }, { "key": "geid_144_16765", "source": "8628", "target": "5673" }, { "key": "geid_144_16766", "source": "382", "target": "9907" }, { "key": "geid_144_16767", "source": "9726", "target": "1466" }, { "key": "geid_144_16768", "source": "1708", "target": "9929" }, { "key": "geid_144_16769", "source": "4773", "target": "5492" }, { "key": "geid_144_16770", "source": "1074", "target": "5910" }, { "key": "geid_144_16771", "source": "1650", "target": "8168" }, { "key": "geid_144_16772", "source": "332", "target": "5149" }, { "key": "geid_144_16773", "source": "8720", "target": "9694" }, { "key": "geid_144_16774", "source": "4784", "target": "1341" }, { "key": "geid_144_16775", "source": "5342", "target": "9706" }, { "key": "geid_144_16776", "source": "7085", "target": "9999" }, { "key": "geid_144_16777", "source": "4374", "target": "6667" }, { "key": "geid_144_16778", "source": "5285", "target": "2858" }, { "key": "geid_144_16779", "source": "2088", "target": "8514" }, { "key": "geid_144_16780", "source": "959", "target": "431" }, { "key": "geid_144_16781", "source": "4261", "target": "9164" }, { "key": "geid_144_16782", "source": "3153", "target": "6922" }, { "key": "geid_144_16783", "source": "7285", "target": "7773" }, { "key": "geid_144_16784", "source": "2206", "target": "9666" }, { "key": "geid_144_16785", "source": "8944", "target": "7052" }, { "key": "geid_144_16786", "source": "8976", "target": "4435" }, { "key": "geid_144_16787", "source": "9115", "target": "6687" }, { "key": "geid_144_16788", "source": "9395", "target": "1074" }, { "key": "geid_144_16789", "source": "5454", "target": "9898" }, { "key": "geid_144_16790", "source": "8541", "target": "3795" }, { "key": "geid_144_16791", "source": "4487", "target": "5444" }, { "key": "geid_144_16792", "source": "1319", "target": "9932" }, { "key": "geid_144_16793", "source": "149", "target": "9771" }, { "key": "geid_144_16794", "source": "4573", "target": "5802" }, { "key": "geid_144_16795", "source": "8823", "target": "1927" }, { "key": "geid_144_16796", "source": "4190", "target": "6753" }, { "key": "geid_144_16797", "source": "3263", "target": "4749" }, { "key": "geid_144_16798", "source": "4337", "target": "6350" }, { "key": "geid_144_16799", "source": "2007", "target": "4376" }, { "key": "geid_144_16800", "source": "2991", "target": "8516" }, { "key": "geid_144_16801", "source": "2143", "target": "1377" }, { "key": "geid_144_16802", "source": "2787", "target": "2813" }, { "key": "geid_144_16803", "source": "7667", "target": "4072" }, { "key": "geid_144_16804", "source": "3490", "target": "1642" }, { "key": "geid_144_16805", "source": "951", "target": "8642" }, { "key": "geid_144_16806", "source": "8667", "target": "5143" }, { "key": "geid_144_16807", "source": "5278", "target": "9661" }, { "key": "geid_144_16808", "source": "789", "target": "7830" }, { "key": "geid_144_16809", "source": "3741", "target": "1704" }, { "key": "geid_144_16810", "source": "4398", "target": "2194" }, { "key": "geid_144_16811", "source": "757", "target": "825" }, { "key": "geid_144_16812", "source": "7390", "target": "9475" }, { "key": "geid_144_16813", "source": "6487", "target": "2685" }, { "key": "geid_144_16814", "source": "5002", "target": "1123" }, { "key": "geid_144_16815", "source": "3180", "target": "1048" }, { "key": "geid_144_16816", "source": "2864", "target": "5515" }, { "key": "geid_144_16817", "source": "7598", "target": "9673" }, { "key": "geid_144_16818", "source": "3852", "target": "1589" }, { "key": "geid_144_16819", "source": "1052", "target": "1371" }, { "key": "geid_144_16820", "source": "5743", "target": "8404" }, { "key": "geid_144_16821", "source": "6284", "target": "4818" }, { "key": "geid_144_16822", "source": "5913", "target": "2213" }, { "key": "geid_144_16823", "source": "9454", "target": "2787" }, { "key": "geid_144_16824", "source": "1548", "target": "6137" }, { "key": "geid_144_16825", "source": "4938", "target": "4196" }, { "key": "geid_144_16826", "source": "3810", "target": "1305" }, { "key": "geid_144_16827", "source": "6803", "target": "5471" }, { "key": "geid_144_16828", "source": "4036", "target": "9900" }, { "key": "geid_144_16829", "source": "8697", "target": "6557" }, { "key": "geid_144_16830", "source": "8221", "target": "2119" }, { "key": "geid_144_16831", "source": "9059", "target": "4686" }, { "key": "geid_144_16832", "source": "6903", "target": "6513" }, { "key": "geid_144_16833", "source": "5361", "target": "9737" }, { "key": "geid_144_16834", "source": "5700", "target": "3855" }, { "key": "geid_144_16835", "source": "4405", "target": "465" }, { "key": "geid_144_16836", "source": "920", "target": "2755" }, { "key": "geid_144_16837", "source": "748", "target": "3809" }, { "key": "geid_144_16838", "source": "1046", "target": "2422" }, { "key": "geid_144_16839", "source": "341", "target": "7368" }, { "key": "geid_144_16840", "source": "8306", "target": "4361" }, { "key": "geid_144_16841", "source": "6930", "target": "7176" }, { "key": "geid_144_16842", "source": "8708", "target": "7401" }, { "key": "geid_144_16843", "source": "5530", "target": "6380" }, { "key": "geid_144_16844", "source": "7054", "target": "7646" }, { "key": "geid_144_16845", "source": "7981", "target": "3930" }, { "key": "geid_144_16846", "source": "193", "target": "9899" }, { "key": "geid_144_16847", "source": "7539", "target": "1442" }, { "key": "geid_144_16848", "source": "3552", "target": "3009" }, { "key": "geid_144_16849", "source": "5188", "target": "1517" }, { "key": "geid_144_16850", "source": "7815", "target": "5426" }, { "key": "geid_144_16851", "source": "8719", "target": "2715" }, { "key": "geid_144_16852", "source": "667", "target": "9030" }, { "key": "geid_144_16853", "source": "7345", "target": "8579" }, { "key": "geid_144_16854", "source": "4630", "target": "7590" }, { "key": "geid_144_16855", "source": "6730", "target": "3323" }, { "key": "geid_144_16856", "source": "7373", "target": "6856" }, { "key": "geid_144_16857", "source": "8926", "target": "9018" }, { "key": "geid_144_16858", "source": "535", "target": "6347" }, { "key": "geid_144_16859", "source": "5762", "target": "5307" }, { "key": "geid_144_16860", "source": "6988", "target": "8441" }, { "key": "geid_144_16861", "source": "8174", "target": "9805" }, { "key": "geid_144_16862", "source": "567", "target": "7342" }, { "key": "geid_144_16863", "source": "5599", "target": "4746" }, { "key": "geid_144_16864", "source": "8975", "target": "2536" }, { "key": "geid_144_16865", "source": "3922", "target": "5988" }, { "key": "geid_144_16866", "source": "480", "target": "1628" }, { "key": "geid_144_16867", "source": "6202", "target": "2043" }, { "key": "geid_144_16868", "source": "6793", "target": "192" }, { "key": "geid_144_16869", "source": "6837", "target": "7017" }, { "key": "geid_144_16870", "source": "1267", "target": "8957" }, { "key": "geid_144_16871", "source": "1613", "target": "6344" }, { "key": "geid_144_16872", "source": "9230", "target": "3692" }, { "key": "geid_144_16873", "source": "7755", "target": "794" }, { "key": "geid_144_16874", "source": "4874", "target": "582" }, { "key": "geid_144_16875", "source": "7085", "target": "6853" }, { "key": "geid_144_16876", "source": "4652", "target": "952" }, { "key": "geid_144_16877", "source": "7674", "target": "8205" }, { "key": "geid_144_16878", "source": "3938", "target": "9687" }, { "key": "geid_144_16879", "source": "9328", "target": "3536" }, { "key": "geid_144_16880", "source": "3912", "target": "152" }, { "key": "geid_144_16881", "source": "408", "target": "1002" }, { "key": "geid_144_16882", "source": "7681", "target": "6824" }, { "key": "geid_144_16883", "source": "5185", "target": "3568" }, { "key": "geid_144_16884", "source": "2558", "target": "6440" }, { "key": "geid_144_16885", "source": "9832", "target": "5536" }, { "key": "geid_144_16886", "source": "1899", "target": "4002" }, { "key": "geid_144_16887", "source": "1986", "target": "1327" }, { "key": "geid_144_16888", "source": "4481", "target": "4496" }, { "key": "geid_144_16889", "source": "7494", "target": "6092" }, { "key": "geid_144_16890", "source": "8319", "target": "2694" }, { "key": "geid_144_16891", "source": "9574", "target": "6753" }, { "key": "geid_144_16892", "source": "2458", "target": "9865" }, { "key": "geid_144_16893", "source": "6399", "target": "9102" }, { "key": "geid_144_16894", "source": "6169", "target": "2628" }, { "key": "geid_144_16895", "source": "2011", "target": "7699" }, { "key": "geid_144_16896", "source": "3139", "target": "1153" }, { "key": "geid_144_16897", "source": "5546", "target": "449" }, { "key": "geid_144_16898", "source": "9051", "target": "688" }, { "key": "geid_144_16899", "source": "8275", "target": "6506" }, { "key": "geid_144_16900", "source": "723", "target": "5178" }, { "key": "geid_144_16901", "source": "6407", "target": "7290" }, { "key": "geid_144_16902", "source": "800", "target": "3578" }, { "key": "geid_144_16903", "source": "5623", "target": "3323" }, { "key": "geid_144_16904", "source": "4404", "target": "4540" }, { "key": "geid_144_16905", "source": "1233", "target": "7146" }, { "key": "geid_144_16906", "source": "147", "target": "1363" }, { "key": "geid_144_16907", "source": "5912", "target": "7442" }, { "key": "geid_144_16908", "source": "1989", "target": "7490" }, { "key": "geid_144_16909", "source": "1768", "target": "5895" }, { "key": "geid_144_16910", "source": "6458", "target": "8397" }, { "key": "geid_144_16911", "source": "8917", "target": "4945" }, { "key": "geid_144_16912", "source": "5070", "target": "5501" }, { "key": "geid_144_16913", "source": "4266", "target": "8" }, { "key": "geid_144_16914", "source": "6655", "target": "7987" }, { "key": "geid_144_16915", "source": "1474", "target": "9438" }, { "key": "geid_144_16916", "source": "878", "target": "6363" }, { "key": "geid_144_16917", "source": "5023", "target": "2616" }, { "key": "geid_144_16918", "source": "303", "target": "1576" }, { "key": "geid_144_16919", "source": "5288", "target": "7476" }, { "key": "geid_144_16920", "source": "5572", "target": "3839" }, { "key": "geid_144_16921", "source": "5429", "target": "4522" }, { "key": "geid_144_16922", "source": "2617", "target": "3773" }, { "key": "geid_144_16923", "source": "9593", "target": "4030" }, { "key": "geid_144_16924", "source": "5761", "target": "5217" }, { "key": "geid_144_16925", "source": "9162", "target": "7137" }, { "key": "geid_144_16926", "source": "9453", "target": "5292" }, { "key": "geid_144_16927", "source": "1022", "target": "4785" }, { "key": "geid_144_16928", "source": "6050", "target": "9663" }, { "key": "geid_144_16929", "source": "2531", "target": "3659" }, { "key": "geid_144_16930", "source": "7919", "target": "6168" }, { "key": "geid_144_16931", "source": "9233", "target": "5567" }, { "key": "geid_144_16932", "source": "8995", "target": "6950" }, { "key": "geid_144_16933", "source": "121", "target": "1920" }, { "key": "geid_144_16934", "source": "9861", "target": "8017" }, { "key": "geid_144_16935", "source": "3860", "target": "6928" }, { "key": "geid_144_16936", "source": "6056", "target": "4961" }, { "key": "geid_144_16937", "source": "3320", "target": "7702" }, { "key": "geid_144_16938", "source": "4019", "target": "1583" }, { "key": "geid_144_16939", "source": "6514", "target": "7918" }, { "key": "geid_144_16940", "source": "682", "target": "5332" }, { "key": "geid_144_16941", "source": "6501", "target": "2741" }, { "key": "geid_144_16942", "source": "7636", "target": "8759" }, { "key": "geid_144_16943", "source": "4405", "target": "2897" }, { "key": "geid_144_16944", "source": "6488", "target": "9736" }, { "key": "geid_144_16945", "source": "8308", "target": "6076" }, { "key": "geid_144_16946", "source": "1660", "target": "4115" }, { "key": "geid_144_16947", "source": "1521", "target": "1329" }, { "key": "geid_144_16948", "source": "2722", "target": "5813" }, { "key": "geid_144_16949", "source": "3537", "target": "4691" }, { "key": "geid_144_16950", "source": "8795", "target": "3457" }, { "key": "geid_144_16951", "source": "294", "target": "3579" }, { "key": "geid_144_16952", "source": "1019", "target": "5601" }, { "key": "geid_144_16953", "source": "1393", "target": "7997" }, { "key": "geid_144_16954", "source": "8092", "target": "2659" }, { "key": "geid_144_16955", "source": "4065", "target": "4633" }, { "key": "geid_144_16956", "source": "586", "target": "7144" }, { "key": "geid_144_16957", "source": "5584", "target": "5352" }, { "key": "geid_144_16958", "source": "4460", "target": "4106" }, { "key": "geid_144_16959", "source": "4721", "target": "4567" }, { "key": "geid_144_16960", "source": "2412", "target": "290" }, { "key": "geid_144_16961", "source": "32", "target": "2319" }, { "key": "geid_144_16962", "source": "2448", "target": "98" }, { "key": "geid_144_16963", "source": "5285", "target": "45" }, { "key": "geid_144_16964", "source": "892", "target": "8503" }, { "key": "geid_144_16965", "source": "6486", "target": "1067" }, { "key": "geid_144_16966", "source": "2877", "target": "3498" }, { "key": "geid_144_16967", "source": "3344", "target": "7940" }, { "key": "geid_144_16968", "source": "9588", "target": "4273" }, { "key": "geid_144_16969", "source": "9162", "target": "7212" }, { "key": "geid_144_16970", "source": "2965", "target": "4104" }, { "key": "geid_144_16971", "source": "3687", "target": "6515" }, { "key": "geid_144_16972", "source": "1878", "target": "722" }, { "key": "geid_144_16973", "source": "8897", "target": "9044" }, { "key": "geid_144_16974", "source": "8223", "target": "2120" }, { "key": "geid_144_16975", "source": "1970", "target": "4903" }, { "key": "geid_144_16976", "source": "2447", "target": "1896" }, { "key": "geid_144_16977", "source": "6944", "target": "2987" }, { "key": "geid_144_16978", "source": "9702", "target": "2240" }, { "key": "geid_144_16979", "source": "4099", "target": "9762" }, { "key": "geid_144_16980", "source": "8500", "target": "8910" }, { "key": "geid_144_16981", "source": "2345", "target": "3694" }, { "key": "geid_144_16982", "source": "836", "target": "5259" }, { "key": "geid_144_16983", "source": "7193", "target": "3967" }, { "key": "geid_144_16984", "source": "7249", "target": "8181" }, { "key": "geid_144_16985", "source": "6354", "target": "3438" }, { "key": "geid_144_16986", "source": "253", "target": "2347" }, { "key": "geid_144_16987", "source": "5548", "target": "6820" }, { "key": "geid_144_16988", "source": "1023", "target": "6240" }, { "key": "geid_144_16989", "source": "8196", "target": "1856" }, { "key": "geid_144_16990", "source": "6448", "target": "1480" }, { "key": "geid_144_16991", "source": "2770", "target": "5600" }, { "key": "geid_144_16992", "source": "7301", "target": "6688" }, { "key": "geid_144_16993", "source": "4061", "target": "4608" }, { "key": "geid_144_16994", "source": "5039", "target": "5859" }, { "key": "geid_144_16995", "source": "4279", "target": "3905" }, { "key": "geid_144_16996", "source": "4413", "target": "8285" }, { "key": "geid_144_16997", "source": "3457", "target": "5806" }, { "key": "geid_144_16998", "source": "4186", "target": "6088" }, { "key": "geid_144_16999", "source": "7846", "target": "676" }, { "key": "geid_144_17000", "source": "5543", "target": "7738" }, { "key": "geid_144_17001", "source": "9117", "target": "7106" }, { "key": "geid_144_17002", "source": "753", "target": "6049" }, { "key": "geid_144_17003", "source": "7998", "target": "6068" }, { "key": "geid_144_17004", "source": "998", "target": "6107" }, { "key": "geid_144_17005", "source": "9454", "target": "8592" }, { "key": "geid_144_17006", "source": "3326", "target": "8534" }, { "key": "geid_144_17007", "source": "9059", "target": "3307" }, { "key": "geid_144_17008", "source": "8054", "target": "1550" }, { "key": "geid_144_17009", "source": "7568", "target": "7471" }, { "key": "geid_144_17010", "source": "4033", "target": "999" }, { "key": "geid_144_17011", "source": "2457", "target": "2646" }, { "key": "geid_144_17012", "source": "9308", "target": "9518" }, { "key": "geid_144_17013", "source": "5783", "target": "7496" }, { "key": "geid_144_17014", "source": "899", "target": "8779" }, { "key": "geid_144_17015", "source": "3138", "target": "6159" }, { "key": "geid_144_17016", "source": "6793", "target": "7978" }, { "key": "geid_144_17017", "source": "3403", "target": "3433" }, { "key": "geid_144_17018", "source": "6275", "target": "6249" }, { "key": "geid_144_17019", "source": "4011", "target": "6542" }, { "key": "geid_144_17020", "source": "58", "target": "7860" }, { "key": "geid_144_17021", "source": "6317", "target": "6476" }, { "key": "geid_144_17022", "source": "6149", "target": "4164" }, { "key": "geid_144_17023", "source": "3584", "target": "3522" }, { "key": "geid_144_17024", "source": "772", "target": "8603" }, { "key": "geid_144_17025", "source": "3116", "target": "6483" }, { "key": "geid_144_17026", "source": "9920", "target": "4785" }, { "key": "geid_144_17027", "source": "5247", "target": "439" }, { "key": "geid_144_17028", "source": "8521", "target": "1846" }, { "key": "geid_144_17029", "source": "9835", "target": "2315" }, { "key": "geid_144_17030", "source": "5369", "target": "6864" }, { "key": "geid_144_17031", "source": "1991", "target": "4864" }, { "key": "geid_144_17032", "source": "2155", "target": "3209" }, { "key": "geid_144_17033", "source": "1498", "target": "670" }, { "key": "geid_144_17034", "source": "7061", "target": "3755" }, { "key": "geid_144_17035", "source": "4175", "target": "5878" }, { "key": "geid_144_17036", "source": "2416", "target": "9082" }, { "key": "geid_144_17037", "source": "1105", "target": "2378" }, { "key": "geid_144_17038", "source": "5522", "target": "5483" }, { "key": "geid_144_17039", "source": "293", "target": "9344" }, { "key": "geid_144_17040", "source": "3897", "target": "3063" }, { "key": "geid_144_17041", "source": "853", "target": "5911" }, { "key": "geid_144_17042", "source": "2902", "target": "5642" }, { "key": "geid_144_17043", "source": "468", "target": "3267" }, { "key": "geid_144_17044", "source": "5548", "target": "1576" }, { "key": "geid_144_17045", "source": "8805", "target": "1995" }, { "key": "geid_144_17046", "source": "717", "target": "1889" }, { "key": "geid_144_17047", "source": "4088", "target": "9501" }, { "key": "geid_144_17048", "source": "8677", "target": "4040" }, { "key": "geid_144_17049", "source": "1376", "target": "4738" }, { "key": "geid_144_17050", "source": "9062", "target": "8742" }, { "key": "geid_144_17051", "source": "7614", "target": "1109" }, { "key": "geid_144_17052", "source": "2593", "target": "3659" }, { "key": "geid_144_17053", "source": "4503", "target": "8136" }, { "key": "geid_144_17054", "source": "2663", "target": "8241" }, { "key": "geid_144_17055", "source": "7928", "target": "7274" }, { "key": "geid_144_17056", "source": "8135", "target": "1742" }, { "key": "geid_144_17057", "source": "1604", "target": "3386" }, { "key": "geid_144_17058", "source": "8400", "target": "5662" }, { "key": "geid_144_17059", "source": "6113", "target": "6800" }, { "key": "geid_144_17060", "source": "1680", "target": "4274" }, { "key": "geid_144_17061", "source": "3648", "target": "3264" }, { "key": "geid_144_17062", "source": "5395", "target": "9013" }, { "key": "geid_144_17063", "source": "6442", "target": "5542" }, { "key": "geid_144_17064", "source": "3787", "target": "5199" }, { "key": "geid_144_17065", "source": "4910", "target": "4622" }, { "key": "geid_144_17066", "source": "1117", "target": "1407" }, { "key": "geid_144_17067", "source": "6795", "target": "6725" }, { "key": "geid_144_17068", "source": "5617", "target": "3873" }, { "key": "geid_144_17069", "source": "3881", "target": "607" }, { "key": "geid_144_17070", "source": "7870", "target": "2300" }, { "key": "geid_144_17071", "source": "4498", "target": "6890" }, { "key": "geid_144_17072", "source": "3534", "target": "1733" }, { "key": "geid_144_17073", "source": "7539", "target": "3418" }, { "key": "geid_144_17074", "source": "5523", "target": "5536" }, { "key": "geid_144_17075", "source": "6523", "target": "6194" }, { "key": "geid_144_17076", "source": "5998", "target": "2663" }, { "key": "geid_144_17077", "source": "4392", "target": "4756" }, { "key": "geid_144_17078", "source": "488", "target": "9178" }, { "key": "geid_144_17079", "source": "8118", "target": "5449" }, { "key": "geid_144_17080", "source": "7891", "target": "6149" }, { "key": "geid_144_17081", "source": "4030", "target": "459" }, { "key": "geid_144_17082", "source": "8109", "target": "9746" }, { "key": "geid_144_17083", "source": "1894", "target": "5239" }, { "key": "geid_144_17084", "source": "2136", "target": "9309" }, { "key": "geid_144_17085", "source": "8809", "target": "769" }, { "key": "geid_144_17086", "source": "6106", "target": "2096" }, { "key": "geid_144_17087", "source": "1120", "target": "649" }, { "key": "geid_144_17088", "source": "9686", "target": "7809" }, { "key": "geid_144_17089", "source": "7401", "target": "9614" }, { "key": "geid_144_17090", "source": "2695", "target": "8212" }, { "key": "geid_144_17091", "source": "3077", "target": "182" }, { "key": "geid_144_17092", "source": "366", "target": "7222" }, { "key": "geid_144_17093", "source": "166", "target": "828" }, { "key": "geid_144_17094", "source": "1174", "target": "5777" }, { "key": "geid_144_17095", "source": "9267", "target": "2976" }, { "key": "geid_144_17096", "source": "863", "target": "6515" }, { "key": "geid_144_17097", "source": "5085", "target": "4815" }, { "key": "geid_144_17098", "source": "6149", "target": "546" }, { "key": "geid_144_17099", "source": "2324", "target": "9262" }, { "key": "geid_144_17100", "source": "9991", "target": "3582" }, { "key": "geid_144_17101", "source": "4569", "target": "7118" }, { "key": "geid_144_17102", "source": "6464", "target": "2638" }, { "key": "geid_144_17103", "source": "1955", "target": "3331" }, { "key": "geid_144_17104", "source": "7590", "target": "982" }, { "key": "geid_144_17105", "source": "5012", "target": "3050" }, { "key": "geid_144_17106", "source": "6025", "target": "9542" }, { "key": "geid_144_17107", "source": "1454", "target": "6245" }, { "key": "geid_144_17108", "source": "4958", "target": "9746" }, { "key": "geid_144_17109", "source": "2885", "target": "4096" }, { "key": "geid_144_17110", "source": "8593", "target": "2779" }, { "key": "geid_144_17111", "source": "2256", "target": "3323" }, { "key": "geid_144_17112", "source": "2246", "target": "4699" }, { "key": "geid_144_17113", "source": "9144", "target": "5728" }, { "key": "geid_144_17114", "source": "3706", "target": "3564" }, { "key": "geid_144_17115", "source": "2956", "target": "1975" }, { "key": "geid_144_17116", "source": "5813", "target": "2544" }, { "key": "geid_144_17117", "source": "3343", "target": "4945" }, { "key": "geid_144_17118", "source": "4491", "target": "4249" }, { "key": "geid_144_17119", "source": "7887", "target": "6552" }, { "key": "geid_144_17120", "source": "6977", "target": "5361" }, { "key": "geid_144_17121", "source": "2620", "target": "2771" }, { "key": "geid_144_17122", "source": "4083", "target": "4582" }, { "key": "geid_144_17123", "source": "7829", "target": "7746" }, { "key": "geid_144_17124", "source": "5976", "target": "6041" }, { "key": "geid_144_17125", "source": "1034", "target": "9051" }, { "key": "geid_144_17126", "source": "181", "target": "6197" }, { "key": "geid_144_17127", "source": "9791", "target": "4550" }, { "key": "geid_144_17128", "source": "6140", "target": "6116" }, { "key": "geid_144_17129", "source": "238", "target": "7908" }, { "key": "geid_144_17130", "source": "5497", "target": "2103" }, { "key": "geid_144_17131", "source": "5151", "target": "9886" }, { "key": "geid_144_17132", "source": "8951", "target": "1987" }, { "key": "geid_144_17133", "source": "7547", "target": "8371" }, { "key": "geid_144_17134", "source": "2746", "target": "5060" }, { "key": "geid_144_17135", "source": "1617", "target": "8271" }, { "key": "geid_144_17136", "source": "9855", "target": "9548" }, { "key": "geid_144_17137", "source": "7090", "target": "2846" }, { "key": "geid_144_17138", "source": "5744", "target": "3319" }, { "key": "geid_144_17139", "source": "6870", "target": "1933" }, { "key": "geid_144_17140", "source": "8666", "target": "3841" }, { "key": "geid_144_17141", "source": "5592", "target": "381" }, { "key": "geid_144_17142", "source": "7845", "target": "8634" }, { "key": "geid_144_17143", "source": "6098", "target": "8015" }, { "key": "geid_144_17144", "source": "9460", "target": "5613" }, { "key": "geid_144_17145", "source": "6749", "target": "7877" }, { "key": "geid_144_17146", "source": "4035", "target": "9550" }, { "key": "geid_144_17147", "source": "3546", "target": "9656" }, { "key": "geid_144_17148", "source": "4013", "target": "7258" }, { "key": "geid_144_17149", "source": "8200", "target": "6832" }, { "key": "geid_144_17150", "source": "9015", "target": "3730" }, { "key": "geid_144_17151", "source": "5556", "target": "9805" }, { "key": "geid_144_17152", "source": "4397", "target": "4987" }, { "key": "geid_144_17153", "source": "6361", "target": "1719" }, { "key": "geid_144_17154", "source": "3385", "target": "334" }, { "key": "geid_144_17155", "source": "2290", "target": "8501" }, { "key": "geid_144_17156", "source": "2348", "target": "6850" }, { "key": "geid_144_17157", "source": "8296", "target": "8855" }, { "key": "geid_144_17158", "source": "165", "target": "9256" }, { "key": "geid_144_17159", "source": "1815", "target": "6224" }, { "key": "geid_144_17160", "source": "8510", "target": "3584" }, { "key": "geid_144_17161", "source": "5906", "target": "5566" }, { "key": "geid_144_17162", "source": "9585", "target": "3737" }, { "key": "geid_144_17163", "source": "349", "target": "9359" }, { "key": "geid_144_17164", "source": "5701", "target": "2939" }, { "key": "geid_144_17165", "source": "1717", "target": "3890" }, { "key": "geid_144_17166", "source": "426", "target": "5394" }, { "key": "geid_144_17167", "source": "3379", "target": "275" }, { "key": "geid_144_17168", "source": "1975", "target": "263" }, { "key": "geid_144_17169", "source": "3044", "target": "3731" }, { "key": "geid_144_17170", "source": "9266", "target": "4300" }, { "key": "geid_144_17171", "source": "101", "target": "5989" }, { "key": "geid_144_17172", "source": "5591", "target": "7053" }, { "key": "geid_144_17173", "source": "7354", "target": "3952" }, { "key": "geid_144_17174", "source": "6948", "target": "4760" }, { "key": "geid_144_17175", "source": "698", "target": "5623" }, { "key": "geid_144_17176", "source": "1453", "target": "9879" }, { "key": "geid_144_17177", "source": "9293", "target": "1467" }, { "key": "geid_144_17178", "source": "1784", "target": "4705" }, { "key": "geid_144_17179", "source": "7663", "target": "2503" }, { "key": "geid_144_17180", "source": "5846", "target": "3090" }, { "key": "geid_144_17181", "source": "7222", "target": "4776" }, { "key": "geid_144_17182", "source": "6583", "target": "7728" }, { "key": "geid_144_17183", "source": "387", "target": "9025" }, { "key": "geid_144_17184", "source": "7533", "target": "9937" }, { "key": "geid_144_17185", "source": "8433", "target": "3453" }, { "key": "geid_144_17186", "source": "1545", "target": "2507" }, { "key": "geid_144_17187", "source": "4331", "target": "8317" }, { "key": "geid_144_17188", "source": "4512", "target": "9697" }, { "key": "geid_144_17189", "source": "8959", "target": "2793" }, { "key": "geid_144_17190", "source": "7869", "target": "5313" }, { "key": "geid_144_17191", "source": "8705", "target": "7838" }, { "key": "geid_144_17192", "source": "8677", "target": "3152" }, { "key": "geid_144_17193", "source": "4923", "target": "2475" }, { "key": "geid_144_17194", "source": "9522", "target": "2458" }, { "key": "geid_144_17195", "source": "4359", "target": "2927" }, { "key": "geid_144_17196", "source": "5586", "target": "6962" }, { "key": "geid_144_17197", "source": "7166", "target": "9920" }, { "key": "geid_144_17198", "source": "4490", "target": "7727" }, { "key": "geid_144_17199", "source": "2079", "target": "7709" }, { "key": "geid_144_17200", "source": "5280", "target": "9782" }, { "key": "geid_144_17201", "source": "8277", "target": "7051" }, { "key": "geid_144_17202", "source": "2150", "target": "9022" }, { "key": "geid_144_17203", "source": "899", "target": "8108" }, { "key": "geid_144_17204", "source": "3300", "target": "5875" }, { "key": "geid_144_17205", "source": "4168", "target": "1972" }, { "key": "geid_144_17206", "source": "8177", "target": "6299" }, { "key": "geid_144_17207", "source": "4656", "target": "7266" }, { "key": "geid_144_17208", "source": "1372", "target": "9636" }, { "key": "geid_144_17209", "source": "1514", "target": "974" }, { "key": "geid_144_17210", "source": "2607", "target": "832" }, { "key": "geid_144_17211", "source": "1464", "target": "6409" }, { "key": "geid_144_17212", "source": "2670", "target": "6156" }, { "key": "geid_144_17213", "source": "499", "target": "1026" }, { "key": "geid_144_17214", "source": "7912", "target": "7116" }, { "key": "geid_144_17215", "source": "7735", "target": "4435" }, { "key": "geid_144_17216", "source": "8652", "target": "3815" }, { "key": "geid_144_17217", "source": "4502", "target": "5579" }, { "key": "geid_144_17218", "source": "6432", "target": "1939" }, { "key": "geid_144_17219", "source": "3397", "target": "419" }, { "key": "geid_144_17220", "source": "8555", "target": "6559" }, { "key": "geid_144_17221", "source": "1529", "target": "2337" }, { "key": "geid_144_17222", "source": "3722", "target": "9234" }, { "key": "geid_144_17223", "source": "4228", "target": "7630" }, { "key": "geid_144_17224", "source": "364", "target": "6181" }, { "key": "geid_144_17225", "source": "460", "target": "927" }, { "key": "geid_144_17226", "source": "7116", "target": "9698" }, { "key": "geid_144_17227", "source": "9800", "target": "6083" }, { "key": "geid_144_17228", "source": "9091", "target": "6418" }, { "key": "geid_144_17229", "source": "9242", "target": "397" }, { "key": "geid_144_17230", "source": "1959", "target": "1774" }, { "key": "geid_144_17231", "source": "5929", "target": "4576" }, { "key": "geid_144_17232", "source": "7580", "target": "7761" }, { "key": "geid_144_17233", "source": "3220", "target": "4874" }, { "key": "geid_144_17234", "source": "7635", "target": "2658" }, { "key": "geid_144_17235", "source": "9945", "target": "3838" }, { "key": "geid_144_17236", "source": "4209", "target": "3038" }, { "key": "geid_144_17237", "source": "8860", "target": "8621" }, { "key": "geid_144_17238", "source": "9002", "target": "3189" }, { "key": "geid_144_17239", "source": "3157", "target": "2367" }, { "key": "geid_144_17240", "source": "9425", "target": "3325" }, { "key": "geid_144_17241", "source": "7638", "target": "429" }, { "key": "geid_144_17242", "source": "1775", "target": "6329" }, { "key": "geid_144_17243", "source": "9649", "target": "7295" }, { "key": "geid_144_17244", "source": "7329", "target": "8481" }, { "key": "geid_144_17245", "source": "9615", "target": "4620" }, { "key": "geid_144_17246", "source": "7964", "target": "5689" }, { "key": "geid_144_17247", "source": "9872", "target": "8300" }, { "key": "geid_144_17248", "source": "9495", "target": "4974" }, { "key": "geid_144_17249", "source": "8021", "target": "6602" }, { "key": "geid_144_17250", "source": "850", "target": "9390" }, { "key": "geid_144_17251", "source": "8794", "target": "3863" }, { "key": "geid_144_17252", "source": "7307", "target": "4565" }, { "key": "geid_144_17253", "source": "2990", "target": "9300" }, { "key": "geid_144_17254", "source": "8958", "target": "6414" }, { "key": "geid_144_17255", "source": "8654", "target": "4716" }, { "key": "geid_144_17256", "source": "4035", "target": "4054" }, { "key": "geid_144_17257", "source": "360", "target": "8309" }, { "key": "geid_144_17258", "source": "6502", "target": "5799" }, { "key": "geid_144_17259", "source": "5496", "target": "1130" }, { "key": "geid_144_17260", "source": "2800", "target": "6917" }, { "key": "geid_144_17261", "source": "4951", "target": "3383" }, { "key": "geid_144_17262", "source": "3686", "target": "9760" }, { "key": "geid_144_17263", "source": "4780", "target": "8487" }, { "key": "geid_144_17264", "source": "494", "target": "9011" }, { "key": "geid_144_17265", "source": "7415", "target": "9554" }, { "key": "geid_144_17266", "source": "2341", "target": "4349" }, { "key": "geid_144_17267", "source": "4858", "target": "1247" }, { "key": "geid_144_17268", "source": "4664", "target": "6676" }, { "key": "geid_144_17269", "source": "2956", "target": "9044" }, { "key": "geid_144_17270", "source": "1034", "target": "9519" }, { "key": "geid_144_17271", "source": "4999", "target": "4425" }, { "key": "geid_144_17272", "source": "9258", "target": "7207" }, { "key": "geid_144_17273", "source": "7439", "target": "5870" }, { "key": "geid_144_17274", "source": "7551", "target": "5543" }, { "key": "geid_144_17275", "source": "7925", "target": "4510" }, { "key": "geid_144_17276", "source": "3217", "target": "3" }, { "key": "geid_144_17277", "source": "6121", "target": "1140" }, { "key": "geid_144_17278", "source": "9993", "target": "1107" }, { "key": "geid_144_17279", "source": "3371", "target": "8870" }, { "key": "geid_144_17280", "source": "7574", "target": "5486" }, { "key": "geid_144_17281", "source": "3669", "target": "3300" }, { "key": "geid_144_17282", "source": "1631", "target": "4281" }, { "key": "geid_144_17283", "source": "2585", "target": "3616" }, { "key": "geid_144_17284", "source": "5593", "target": "3475" }, { "key": "geid_144_17285", "source": "100", "target": "3010" }, { "key": "geid_144_17286", "source": "7337", "target": "4207" }, { "key": "geid_144_17287", "source": "5936", "target": "1547" }, { "key": "geid_144_17288", "source": "6266", "target": "2782" }, { "key": "geid_144_17289", "source": "7883", "target": "3138" }, { "key": "geid_144_17290", "source": "5926", "target": "2694" }, { "key": "geid_144_17291", "source": "2055", "target": "3845" }, { "key": "geid_144_17292", "source": "7593", "target": "9233" }, { "key": "geid_144_17293", "source": "314", "target": "8683" }, { "key": "geid_144_17294", "source": "2332", "target": "1283" }, { "key": "geid_144_17295", "source": "5751", "target": "3628" }, { "key": "geid_144_17296", "source": "3126", "target": "4786" }, { "key": "geid_144_17297", "source": "6082", "target": "9252" }, { "key": "geid_144_17298", "source": "579", "target": "272" }, { "key": "geid_144_17299", "source": "9060", "target": "8665" }, { "key": "geid_144_17300", "source": "7125", "target": "848" }, { "key": "geid_144_17301", "source": "9383", "target": "9348" }, { "key": "geid_144_17302", "source": "3284", "target": "5033" }, { "key": "geid_144_17303", "source": "4702", "target": "4997" }, { "key": "geid_144_17304", "source": "8733", "target": "8912" }, { "key": "geid_144_17305", "source": "1721", "target": "6345" }, { "key": "geid_144_17306", "source": "44", "target": "9041" }, { "key": "geid_144_17307", "source": "2847", "target": "8577" }, { "key": "geid_144_17308", "source": "3228", "target": "539" }, { "key": "geid_144_17309", "source": "6321", "target": "3675" }, { "key": "geid_144_17310", "source": "5321", "target": "1614" }, { "key": "geid_144_17311", "source": "7364", "target": "4305" }, { "key": "geid_144_17312", "source": "4552", "target": "7328" }, { "key": "geid_144_17313", "source": "7402", "target": "8295" }, { "key": "geid_144_17314", "source": "6588", "target": "7753" }, { "key": "geid_144_17315", "source": "1762", "target": "402" }, { "key": "geid_144_17316", "source": "77", "target": "9144" }, { "key": "geid_144_17317", "source": "1118", "target": "1973" }, { "key": "geid_144_17318", "source": "475", "target": "7675" }, { "key": "geid_144_17319", "source": "3103", "target": "1014" }, { "key": "geid_144_17320", "source": "3312", "target": "5401" }, { "key": "geid_144_17321", "source": "8", "target": "4888" }, { "key": "geid_144_17322", "source": "2041", "target": "7443" }, { "key": "geid_144_17323", "source": "8846", "target": "6855" }, { "key": "geid_144_17324", "source": "8496", "target": "3088" }, { "key": "geid_144_17325", "source": "9925", "target": "2277" }, { "key": "geid_144_17326", "source": "9847", "target": "13" }, { "key": "geid_144_17327", "source": "460", "target": "9903" }, { "key": "geid_144_17328", "source": "333", "target": "3791" }, { "key": "geid_144_17329", "source": "2457", "target": "10" }, { "key": "geid_144_17330", "source": "8675", "target": "1372" }, { "key": "geid_144_17331", "source": "5654", "target": "8365" }, { "key": "geid_144_17332", "source": "8269", "target": "1181" }, { "key": "geid_144_17333", "source": "2893", "target": "9473" }, { "key": "geid_144_17334", "source": "6317", "target": "9407" }, { "key": "geid_144_17335", "source": "3319", "target": "9858" }, { "key": "geid_144_17336", "source": "7972", "target": "6197" }, { "key": "geid_144_17337", "source": "9748", "target": "8816" }, { "key": "geid_144_17338", "source": "4300", "target": "805" }, { "key": "geid_144_17339", "source": "5659", "target": "4433" }, { "key": "geid_144_17340", "source": "6820", "target": "8551" }, { "key": "geid_144_17341", "source": "2021", "target": "7429" }, { "key": "geid_144_17342", "source": "9493", "target": "4057" }, { "key": "geid_144_17343", "source": "9270", "target": "3522" }, { "key": "geid_144_17344", "source": "6385", "target": "5961" }, { "key": "geid_144_17345", "source": "8912", "target": "2668" }, { "key": "geid_144_17346", "source": "6392", "target": "9739" }, { "key": "geid_144_17347", "source": "3903", "target": "975" }, { "key": "geid_144_17348", "source": "2061", "target": "7685" }, { "key": "geid_144_17349", "source": "8897", "target": "2509" }, { "key": "geid_144_17350", "source": "7336", "target": "4901" }, { "key": "geid_144_17351", "source": "5600", "target": "196" }, { "key": "geid_144_17352", "source": "7039", "target": "5780" }, { "key": "geid_144_17353", "source": "9112", "target": "797" }, { "key": "geid_144_17354", "source": "9295", "target": "3961" }, { "key": "geid_144_17355", "source": "1125", "target": "6061" }, { "key": "geid_144_17356", "source": "565", "target": "9436" }, { "key": "geid_144_17357", "source": "2714", "target": "5854" }, { "key": "geid_144_17358", "source": "4685", "target": "1192" }, { "key": "geid_144_17359", "source": "3327", "target": "3929" }, { "key": "geid_144_17360", "source": "9834", "target": "9049" }, { "key": "geid_144_17361", "source": "2287", "target": "124" }, { "key": "geid_144_17362", "source": "2751", "target": "2657" }, { "key": "geid_144_17363", "source": "2246", "target": "4873" }, { "key": "geid_144_17364", "source": "308", "target": "4150" }, { "key": "geid_144_17365", "source": "9029", "target": "7021" }, { "key": "geid_144_17366", "source": "8226", "target": "9703" }, { "key": "geid_144_17367", "source": "1354", "target": "5023" }, { "key": "geid_144_17368", "source": "593", "target": "6291" }, { "key": "geid_144_17369", "source": "9494", "target": "6021" }, { "key": "geid_144_17370", "source": "9051", "target": "8757" }, { "key": "geid_144_17371", "source": "700", "target": "8474" }, { "key": "geid_144_17372", "source": "1613", "target": "7724" }, { "key": "geid_144_17373", "source": "4295", "target": "2649" }, { "key": "geid_144_17374", "source": "2387", "target": "9947" }, { "key": "geid_144_17375", "source": "9278", "target": "2020" }, { "key": "geid_144_17376", "source": "171", "target": "1149" }, { "key": "geid_144_17377", "source": "2013", "target": "7554" }, { "key": "geid_144_17378", "source": "7448", "target": "1440" }, { "key": "geid_144_17379", "source": "9411", "target": "3194" }, { "key": "geid_144_17380", "source": "6077", "target": "2643" }, { "key": "geid_144_17381", "source": "3565", "target": "6092" }, { "key": "geid_144_17382", "source": "5076", "target": "1216" }, { "key": "geid_144_17383", "source": "7628", "target": "8816" }, { "key": "geid_144_17384", "source": "8588", "target": "4509" }, { "key": "geid_144_17385", "source": "6388", "target": "2623" }, { "key": "geid_144_17386", "source": "7372", "target": "6003" }, { "key": "geid_144_17387", "source": "3310", "target": "9860" }, { "key": "geid_144_17388", "source": "4952", "target": "6822" }, { "key": "geid_144_17389", "source": "7407", "target": "4975" }, { "key": "geid_144_17390", "source": "8532", "target": "4516" }, { "key": "geid_144_17391", "source": "1707", "target": "61" }, { "key": "geid_144_17392", "source": "4413", "target": "3122" }, { "key": "geid_144_17393", "source": "1665", "target": "6439" }, { "key": "geid_144_17394", "source": "1844", "target": "4754" }, { "key": "geid_144_17395", "source": "8690", "target": "8207" }, { "key": "geid_144_17396", "source": "4024", "target": "873" }, { "key": "geid_144_17397", "source": "6277", "target": "1764" }, { "key": "geid_144_17398", "source": "1728", "target": "2237" }, { "key": "geid_144_17399", "source": "5790", "target": "8187" }, { "key": "geid_144_17400", "source": "2732", "target": "5323" }, { "key": "geid_144_17401", "source": "8730", "target": "8085" }, { "key": "geid_144_17402", "source": "3828", "target": "9904" }, { "key": "geid_144_17403", "source": "1670", "target": "6232" }, { "key": "geid_144_17404", "source": "6122", "target": "9694" }, { "key": "geid_144_17405", "source": "137", "target": "9023" }, { "key": "geid_144_17406", "source": "7882", "target": "3571" }, { "key": "geid_144_17407", "source": "5294", "target": "6883" }, { "key": "geid_144_17408", "source": "3802", "target": "7094" }, { "key": "geid_144_17409", "source": "9777", "target": "508" }, { "key": "geid_144_17410", "source": "3837", "target": "5602" }, { "key": "geid_144_17411", "source": "5142", "target": "4442" }, { "key": "geid_144_17412", "source": "3067", "target": "5343" }, { "key": "geid_144_17413", "source": "4568", "target": "3068" }, { "key": "geid_144_17414", "source": "7738", "target": "5293" }, { "key": "geid_144_17415", "source": "8131", "target": "3342" }, { "key": "geid_144_17416", "source": "3906", "target": "8869" }, { "key": "geid_144_17417", "source": "1107", "target": "9101" }, { "key": "geid_144_17418", "source": "6033", "target": "5864" }, { "key": "geid_144_17419", "source": "7357", "target": "9919" }, { "key": "geid_144_17420", "source": "4534", "target": "2649" }, { "key": "geid_144_17421", "source": "9208", "target": "3258" }, { "key": "geid_144_17422", "source": "841", "target": "2535" }, { "key": "geid_144_17423", "source": "6894", "target": "5122" }, { "key": "geid_144_17424", "source": "9205", "target": "1442" }, { "key": "geid_144_17425", "source": "9452", "target": "3531" }, { "key": "geid_144_17426", "source": "7166", "target": "5855" }, { "key": "geid_144_17427", "source": "3501", "target": "3840" }, { "key": "geid_144_17428", "source": "7038", "target": "4191" }, { "key": "geid_144_17429", "source": "3476", "target": "7615" }, { "key": "geid_144_17430", "source": "6674", "target": "9302" }, { "key": "geid_144_17431", "source": "4993", "target": "5179" }, { "key": "geid_144_17432", "source": "3153", "target": "4793" }, { "key": "geid_144_17433", "source": "1111", "target": "3410" }, { "key": "geid_144_17434", "source": "8674", "target": "3690" }, { "key": "geid_144_17435", "source": "6212", "target": "3493" }, { "key": "geid_144_17436", "source": "7874", "target": "3708" }, { "key": "geid_144_17437", "source": "2466", "target": "9706" }, { "key": "geid_144_17438", "source": "4162", "target": "3764" }, { "key": "geid_144_17439", "source": "9807", "target": "4016" }, { "key": "geid_144_17440", "source": "351", "target": "4465" }, { "key": "geid_144_17441", "source": "4421", "target": "5706" }, { "key": "geid_144_17442", "source": "1032", "target": "6540" }, { "key": "geid_144_17443", "source": "3908", "target": "3832" }, { "key": "geid_144_17444", "source": "8173", "target": "5289" }, { "key": "geid_144_17445", "source": "8284", "target": "4665" }, { "key": "geid_144_17446", "source": "6371", "target": "5064" }, { "key": "geid_144_17447", "source": "3379", "target": "333" }, { "key": "geid_144_17448", "source": "8137", "target": "3185" }, { "key": "geid_144_17449", "source": "6183", "target": "9491" }, { "key": "geid_144_17450", "source": "6698", "target": "1554" }, { "key": "geid_144_17451", "source": "3899", "target": "8118" }, { "key": "geid_144_17452", "source": "3239", "target": "5044" }, { "key": "geid_144_17453", "source": "9579", "target": "5195" }, { "key": "geid_144_17454", "source": "8633", "target": "6714" }, { "key": "geid_144_17455", "source": "5252", "target": "96" }, { "key": "geid_144_17456", "source": "4994", "target": "7808" }, { "key": "geid_144_17457", "source": "2855", "target": "7535" }, { "key": "geid_144_17458", "source": "5270", "target": "4330" }, { "key": "geid_144_17459", "source": "3815", "target": "7874" }, { "key": "geid_144_17460", "source": "8509", "target": "4958" }, { "key": "geid_144_17461", "source": "2718", "target": "3511" }, { "key": "geid_144_17462", "source": "7700", "target": "6484" }, { "key": "geid_144_17463", "source": "2373", "target": "500" }, { "key": "geid_144_17464", "source": "1604", "target": "5112" }, { "key": "geid_144_17465", "source": "2570", "target": "6983" }, { "key": "geid_144_17466", "source": "3002", "target": "1236" }, { "key": "geid_144_17467", "source": "752", "target": "5720" }, { "key": "geid_144_17468", "source": "5548", "target": "6954" }, { "key": "geid_144_17469", "source": "9873", "target": "6241" }, { "key": "geid_144_17470", "source": "7801", "target": "312" }, { "key": "geid_144_17471", "source": "4001", "target": "6183" }, { "key": "geid_144_17472", "source": "1199", "target": "2955" }, { "key": "geid_144_17473", "source": "6222", "target": "732" }, { "key": "geid_144_17474", "source": "3297", "target": "3183" }, { "key": "geid_144_17475", "source": "6699", "target": "4287" }, { "key": "geid_144_17476", "source": "4638", "target": "3608" }, { "key": "geid_144_17477", "source": "7574", "target": "5510" }, { "key": "geid_144_17478", "source": "4246", "target": "1257" }, { "key": "geid_144_17479", "source": "1705", "target": "9327" }, { "key": "geid_144_17480", "source": "7050", "target": "8965" }, { "key": "geid_144_17481", "source": "9103", "target": "5379" }, { "key": "geid_144_17482", "source": "6206", "target": "9716" }, { "key": "geid_144_17483", "source": "9864", "target": "9094" }, { "key": "geid_144_17484", "source": "560", "target": "4808" }, { "key": "geid_144_17485", "source": "1208", "target": "1276" }, { "key": "geid_144_17486", "source": "2223", "target": "375" }, { "key": "geid_144_17487", "source": "1077", "target": "8238" }, { "key": "geid_144_17488", "source": "2172", "target": "4850" }, { "key": "geid_144_17489", "source": "8986", "target": "6277" }, { "key": "geid_144_17490", "source": "8099", "target": "8979" }, { "key": "geid_144_17491", "source": "8215", "target": "4775" }, { "key": "geid_144_17492", "source": "7035", "target": "6144" }, { "key": "geid_144_17493", "source": "7548", "target": "5540" }, { "key": "geid_144_17494", "source": "1892", "target": "792" }, { "key": "geid_144_17495", "source": "8338", "target": "4170" }, { "key": "geid_144_17496", "source": "979", "target": "8881" }, { "key": "geid_144_17497", "source": "2090", "target": "6073" }, { "key": "geid_144_17498", "source": "7705", "target": "3761" }, { "key": "geid_144_17499", "source": "5660", "target": "167" }, { "key": "geid_144_17500", "source": "7197", "target": "9077" }, { "key": "geid_144_17501", "source": "9878", "target": "666" }, { "key": "geid_144_17502", "source": "373", "target": "509" }, { "key": "geid_144_17503", "source": "1451", "target": "6181" }, { "key": "geid_144_17504", "source": "6123", "target": "2793" }, { "key": "geid_144_17505", "source": "9316", "target": "9445" }, { "key": "geid_144_17506", "source": "7977", "target": "9990" }, { "key": "geid_144_17507", "source": "2026", "target": "9812" }, { "key": "geid_144_17508", "source": "3845", "target": "281" }, { "key": "geid_144_17509", "source": "5790", "target": "9615" }, { "key": "geid_144_17510", "source": "6012", "target": "1861" }, { "key": "geid_144_17511", "source": "2530", "target": "1789" }, { "key": "geid_144_17512", "source": "884", "target": "2850" }, { "key": "geid_144_17513", "source": "2549", "target": "6943" }, { "key": "geid_144_17514", "source": "988", "target": "4252" }, { "key": "geid_144_17515", "source": "6236", "target": "7508" }, { "key": "geid_144_17516", "source": "1822", "target": "2175" }, { "key": "geid_144_17517", "source": "354", "target": "8562" }, { "key": "geid_144_17518", "source": "165", "target": "3848" }, { "key": "geid_144_17519", "source": "8208", "target": "3814" }, { "key": "geid_144_17520", "source": "747", "target": "1304" }, { "key": "geid_144_17521", "source": "1676", "target": "3160" }, { "key": "geid_144_17522", "source": "4720", "target": "6634" }, { "key": "geid_144_17523", "source": "3198", "target": "5595" }, { "key": "geid_144_17524", "source": "4063", "target": "50" }, { "key": "geid_144_17525", "source": "5364", "target": "2159" }, { "key": "geid_144_17526", "source": "7391", "target": "8078" }, { "key": "geid_144_17527", "source": "7944", "target": "4614" }, { "key": "geid_144_17528", "source": "9059", "target": "5322" }, { "key": "geid_144_17529", "source": "348", "target": "3699" }, { "key": "geid_144_17530", "source": "2015", "target": "9630" }, { "key": "geid_144_17531", "source": "2394", "target": "5091" }, { "key": "geid_144_17532", "source": "2277", "target": "6642" }, { "key": "geid_144_17533", "source": "3841", "target": "9086" }, { "key": "geid_144_17534", "source": "8088", "target": "7430" }, { "key": "geid_144_17535", "source": "6752", "target": "9129" }, { "key": "geid_144_17536", "source": "3023", "target": "6321" }, { "key": "geid_144_17537", "source": "7303", "target": "8737" }, { "key": "geid_144_17538", "source": "2868", "target": "1261" }, { "key": "geid_144_17539", "source": "1146", "target": "2865" }, { "key": "geid_144_17540", "source": "7464", "target": "4746" }, { "key": "geid_144_17541", "source": "5159", "target": "5088" }, { "key": "geid_144_17542", "source": "8477", "target": "82" }, { "key": "geid_144_17543", "source": "6213", "target": "1160" }, { "key": "geid_144_17544", "source": "3538", "target": "2415" }, { "key": "geid_144_17545", "source": "4422", "target": "2512" }, { "key": "geid_144_17546", "source": "349", "target": "9793" }, { "key": "geid_144_17547", "source": "1991", "target": "5231" }, { "key": "geid_144_17548", "source": "674", "target": "4273" }, { "key": "geid_144_17549", "source": "5579", "target": "7176" }, { "key": "geid_144_17550", "source": "8376", "target": "4135" }, { "key": "geid_144_17551", "source": "3887", "target": "5367" }, { "key": "geid_144_17552", "source": "6143", "target": "7722" }, { "key": "geid_144_17553", "source": "775", "target": "1880" }, { "key": "geid_144_17554", "source": "4166", "target": "7613" }, { "key": "geid_144_17555", "source": "4708", "target": "5806" }, { "key": "geid_144_17556", "source": "4158", "target": "5972" }, { "key": "geid_144_17557", "source": "2259", "target": "3349" }, { "key": "geid_144_17558", "source": "1293", "target": "3955" }, { "key": "geid_144_17559", "source": "3776", "target": "79" }, { "key": "geid_144_17560", "source": "6339", "target": "7610" }, { "key": "geid_144_17561", "source": "3194", "target": "8916" }, { "key": "geid_144_17562", "source": "9621", "target": "6163" }, { "key": "geid_144_17563", "source": "2054", "target": "5758" }, { "key": "geid_144_17564", "source": "8422", "target": "580" }, { "key": "geid_144_17565", "source": "2477", "target": "8010" }, { "key": "geid_144_17566", "source": "1440", "target": "1231" }, { "key": "geid_144_17567", "source": "974", "target": "7936" }, { "key": "geid_144_17568", "source": "92", "target": "879" }, { "key": "geid_144_17569", "source": "4491", "target": "2271" }, { "key": "geid_144_17570", "source": "2990", "target": "7259" }, { "key": "geid_144_17571", "source": "7651", "target": "9520" }, { "key": "geid_144_17572", "source": "9800", "target": "4033" }, { "key": "geid_144_17573", "source": "5277", "target": "8649" }, { "key": "geid_144_17574", "source": "2447", "target": "6444" }, { "key": "geid_144_17575", "source": "6411", "target": "554" }, { "key": "geid_144_17576", "source": "33", "target": "3529" }, { "key": "geid_144_17577", "source": "301", "target": "5251" }, { "key": "geid_144_17578", "source": "7272", "target": "5222" }, { "key": "geid_144_17579", "source": "7977", "target": "877" }, { "key": "geid_144_17580", "source": "9468", "target": "5096" }, { "key": "geid_144_17581", "source": "5256", "target": "7917" }, { "key": "geid_144_17582", "source": "4116", "target": "2788" }, { "key": "geid_144_17583", "source": "8026", "target": "8565" }, { "key": "geid_144_17584", "source": "7693", "target": "2997" }, { "key": "geid_144_17585", "source": "8635", "target": "6132" }, { "key": "geid_144_17586", "source": "6167", "target": "1581" }, { "key": "geid_144_17587", "source": "5355", "target": "7442" }, { "key": "geid_144_17588", "source": "785", "target": "2162" }, { "key": "geid_144_17589", "source": "2802", "target": "1819" }, { "key": "geid_144_17590", "source": "4762", "target": "6579" }, { "key": "geid_144_17591", "source": "6122", "target": "3303" }, { "key": "geid_144_17592", "source": "9839", "target": "898" }, { "key": "geid_144_17593", "source": "345", "target": "8416" }, { "key": "geid_144_17594", "source": "2108", "target": "3300" }, { "key": "geid_144_17595", "source": "101", "target": "696" }, { "key": "geid_144_17596", "source": "9796", "target": "1715" }, { "key": "geid_144_17597", "source": "3191", "target": "6025" }, { "key": "geid_144_17598", "source": "9602", "target": "5127" }, { "key": "geid_144_17599", "source": "8967", "target": "8702" }, { "key": "geid_144_17600", "source": "4514", "target": "420" }, { "key": "geid_144_17601", "source": "5030", "target": "9139" }, { "key": "geid_144_17602", "source": "135", "target": "9152" }, { "key": "geid_144_17603", "source": "444", "target": "666" }, { "key": "geid_144_17604", "source": "5157", "target": "155" }, { "key": "geid_144_17605", "source": "5796", "target": "372" }, { "key": "geid_144_17606", "source": "5414", "target": "747" }, { "key": "geid_144_17607", "source": "2891", "target": "4664" }, { "key": "geid_144_17608", "source": "9631", "target": "1637" }, { "key": "geid_144_17609", "source": "1195", "target": "8696" }, { "key": "geid_144_17610", "source": "6672", "target": "1673" }, { "key": "geid_144_17611", "source": "6516", "target": "4433" }, { "key": "geid_144_17612", "source": "3452", "target": "2258" }, { "key": "geid_144_17613", "source": "7299", "target": "1339" }, { "key": "geid_144_17614", "source": "4660", "target": "3127" }, { "key": "geid_144_17615", "source": "5599", "target": "2812" }, { "key": "geid_144_17616", "source": "3759", "target": "3362" }, { "key": "geid_144_17617", "source": "581", "target": "3109" }, { "key": "geid_144_17618", "source": "8468", "target": "7352" }, { "key": "geid_144_17619", "source": "7777", "target": "1756" }, { "key": "geid_144_17620", "source": "7800", "target": "1906" }, { "key": "geid_144_17621", "source": "4971", "target": "4678" }, { "key": "geid_144_17622", "source": "509", "target": "2895" }, { "key": "geid_144_17623", "source": "4084", "target": "7253" }, { "key": "geid_144_17624", "source": "4041", "target": "2952" }, { "key": "geid_144_17625", "source": "9987", "target": "9363" }, { "key": "geid_144_17626", "source": "9692", "target": "1707" }, { "key": "geid_144_17627", "source": "2457", "target": "4620" }, { "key": "geid_144_17628", "source": "8705", "target": "8940" }, { "key": "geid_144_17629", "source": "2998", "target": "8840" }, { "key": "geid_144_17630", "source": "9756", "target": "9548" }, { "key": "geid_144_17631", "source": "5989", "target": "3011" }, { "key": "geid_144_17632", "source": "4199", "target": "7857" }, { "key": "geid_144_17633", "source": "3017", "target": "4008" }, { "key": "geid_144_17634", "source": "6866", "target": "7531" }, { "key": "geid_144_17635", "source": "6443", "target": "7952" }, { "key": "geid_144_17636", "source": "6108", "target": "5133" }, { "key": "geid_144_17637", "source": "8008", "target": "811" }, { "key": "geid_144_17638", "source": "4122", "target": "9090" }, { "key": "geid_144_17639", "source": "7040", "target": "5027" }, { "key": "geid_144_17640", "source": "5301", "target": "7219" }, { "key": "geid_144_17641", "source": "3511", "target": "845" }, { "key": "geid_144_17642", "source": "2034", "target": "9481" }, { "key": "geid_144_17643", "source": "3309", "target": "7652" }, { "key": "geid_144_17644", "source": "3191", "target": "4661" }, { "key": "geid_144_17645", "source": "3736", "target": "1993" }, { "key": "geid_144_17646", "source": "2622", "target": "9528" }, { "key": "geid_144_17647", "source": "9618", "target": "9066" }, { "key": "geid_144_17648", "source": "3081", "target": "3148" }, { "key": "geid_144_17649", "source": "4632", "target": "9556" }, { "key": "geid_144_17650", "source": "1255", "target": "124" }, { "key": "geid_144_17651", "source": "1165", "target": "1969" }, { "key": "geid_144_17652", "source": "4386", "target": "3061" }, { "key": "geid_144_17653", "source": "1475", "target": "5477" }, { "key": "geid_144_17654", "source": "9639", "target": "6646" }, { "key": "geid_144_17655", "source": "120", "target": "4972" }, { "key": "geid_144_17656", "source": "9559", "target": "8413" }, { "key": "geid_144_17657", "source": "5190", "target": "8031" }, { "key": "geid_144_17658", "source": "4150", "target": "509" }, { "key": "geid_144_17659", "source": "1111", "target": "3245" }, { "key": "geid_144_17660", "source": "3957", "target": "384" }, { "key": "geid_144_17661", "source": "555", "target": "76" }, { "key": "geid_144_17662", "source": "1713", "target": "5594" }, { "key": "geid_144_17663", "source": "8966", "target": "6850" }, { "key": "geid_144_17664", "source": "4489", "target": "9845" }, { "key": "geid_144_17665", "source": "2892", "target": "973" }, { "key": "geid_144_17666", "source": "4348", "target": "1993" }, { "key": "geid_144_17667", "source": "6762", "target": "350" }, { "key": "geid_144_17668", "source": "3715", "target": "6985" }, { "key": "geid_144_17669", "source": "9351", "target": "296" }, { "key": "geid_144_17670", "source": "9029", "target": "7181" }, { "key": "geid_144_17671", "source": "6916", "target": "3829" }, { "key": "geid_144_17672", "source": "4591", "target": "291" }, { "key": "geid_144_17673", "source": "4507", "target": "1616" }, { "key": "geid_144_17674", "source": "7567", "target": "7053" }, { "key": "geid_144_17675", "source": "6026", "target": "5697" }, { "key": "geid_144_17676", "source": "8897", "target": "5543" }, { "key": "geid_144_17677", "source": "5169", "target": "8578" }, { "key": "geid_144_17678", "source": "6515", "target": "5620" }, { "key": "geid_144_17679", "source": "1968", "target": "4560" }, { "key": "geid_144_17680", "source": "5571", "target": "9188" }, { "key": "geid_144_17681", "source": "8879", "target": "43" }, { "key": "geid_144_17682", "source": "4116", "target": "1421" }, { "key": "geid_144_17683", "source": "1259", "target": "3263" }, { "key": "geid_144_17684", "source": "8463", "target": "9517" }, { "key": "geid_144_17685", "source": "5650", "target": "3507" }, { "key": "geid_144_17686", "source": "2283", "target": "2701" }, { "key": "geid_144_17687", "source": "2783", "target": "9963" }, { "key": "geid_144_17688", "source": "7211", "target": "4141" }, { "key": "geid_144_17689", "source": "7983", "target": "6951" }, { "key": "geid_144_17690", "source": "2819", "target": "958" }, { "key": "geid_144_17691", "source": "4859", "target": "5844" }, { "key": "geid_144_17692", "source": "210", "target": "643" }, { "key": "geid_144_17693", "source": "7354", "target": "2354" }, { "key": "geid_144_17694", "source": "9556", "target": "9820" }, { "key": "geid_144_17695", "source": "1281", "target": "9958" }, { "key": "geid_144_17696", "source": "6125", "target": "9072" }, { "key": "geid_144_17697", "source": "5289", "target": "1413" }, { "key": "geid_144_17698", "source": "2249", "target": "1611" }, { "key": "geid_144_17699", "source": "6166", "target": "7986" }, { "key": "geid_144_17700", "source": "4558", "target": "5411" }, { "key": "geid_144_17701", "source": "979", "target": "6209" }, { "key": "geid_144_17702", "source": "3565", "target": "5938" }, { "key": "geid_144_17703", "source": "9617", "target": "8776" }, { "key": "geid_144_17704", "source": "8311", "target": "880" }, { "key": "geid_144_17705", "source": "9569", "target": "5549" }, { "key": "geid_144_17706", "source": "9838", "target": "9349" }, { "key": "geid_144_17707", "source": "3926", "target": "93" }, { "key": "geid_144_17708", "source": "3592", "target": "5731" }, { "key": "geid_144_17709", "source": "115", "target": "8104" }, { "key": "geid_144_17710", "source": "9545", "target": "2765" }, { "key": "geid_144_17711", "source": "4884", "target": "9272" }, { "key": "geid_144_17712", "source": "9629", "target": "6422" }, { "key": "geid_144_17713", "source": "1995", "target": "3246" }, { "key": "geid_144_17714", "source": "5089", "target": "1763" }, { "key": "geid_144_17715", "source": "9591", "target": "2005" }, { "key": "geid_144_17716", "source": "9298", "target": "5942" }, { "key": "geid_144_17717", "source": "6928", "target": "4432" }, { "key": "geid_144_17718", "source": "3793", "target": "3951" }, { "key": "geid_144_17719", "source": "751", "target": "5707" }, { "key": "geid_144_17720", "source": "5621", "target": "5044" }, { "key": "geid_144_17721", "source": "6361", "target": "5960" }, { "key": "geid_144_17722", "source": "5553", "target": "4891" }, { "key": "geid_144_17723", "source": "275", "target": "226" }, { "key": "geid_144_17724", "source": "1086", "target": "2807" }, { "key": "geid_144_17725", "source": "8617", "target": "788" }, { "key": "geid_144_17726", "source": "3111", "target": "2707" }, { "key": "geid_144_17727", "source": "7862", "target": "1303" }, { "key": "geid_144_17728", "source": "7562", "target": "3134" }, { "key": "geid_144_17729", "source": "7095", "target": "2760" }, { "key": "geid_144_17730", "source": "1980", "target": "6560" }, { "key": "geid_144_17731", "source": "4497", "target": "7032" }, { "key": "geid_144_17732", "source": "8427", "target": "3614" }, { "key": "geid_144_17733", "source": "4705", "target": "9976" }, { "key": "geid_144_17734", "source": "5907", "target": "8954" }, { "key": "geid_144_17735", "source": "7022", "target": "4272" }, { "key": "geid_144_17736", "source": "6190", "target": "3260" }, { "key": "geid_144_17737", "source": "2118", "target": "1780" }, { "key": "geid_144_17738", "source": "2887", "target": "8583" }, { "key": "geid_144_17739", "source": "6695", "target": "7599" }, { "key": "geid_144_17740", "source": "2249", "target": "5198" }, { "key": "geid_144_17741", "source": "8368", "target": "9946" }, { "key": "geid_144_17742", "source": "513", "target": "6030" }, { "key": "geid_144_17743", "source": "5070", "target": "4804" }, { "key": "geid_144_17744", "source": "7941", "target": "5412" }, { "key": "geid_144_17745", "source": "4967", "target": "1469" }, { "key": "geid_144_17746", "source": "1123", "target": "1480" }, { "key": "geid_144_17747", "source": "7003", "target": "3492" }, { "key": "geid_144_17748", "source": "7234", "target": "6136" }, { "key": "geid_144_17749", "source": "9903", "target": "7302" }, { "key": "geid_144_17750", "source": "6092", "target": "9937" }, { "key": "geid_144_17751", "source": "6340", "target": "107" }, { "key": "geid_144_17752", "source": "9980", "target": "5379" }, { "key": "geid_144_17753", "source": "8406", "target": "7702" }, { "key": "geid_144_17754", "source": "8588", "target": "4479" }, { "key": "geid_144_17755", "source": "4642", "target": "4174" }, { "key": "geid_144_17756", "source": "9862", "target": "2214" }, { "key": "geid_144_17757", "source": "5721", "target": "7344" }, { "key": "geid_144_17758", "source": "4335", "target": "4798" }, { "key": "geid_144_17759", "source": "3948", "target": "278" }, { "key": "geid_144_17760", "source": "2180", "target": "4639" }, { "key": "geid_144_17761", "source": "8054", "target": "206" }, { "key": "geid_144_17762", "source": "7726", "target": "1839" }, { "key": "geid_144_17763", "source": "666", "target": "1146" }, { "key": "geid_144_17764", "source": "1754", "target": "5790" }, { "key": "geid_144_17765", "source": "7322", "target": "2387" }, { "key": "geid_144_17766", "source": "8488", "target": "2390" }, { "key": "geid_144_17767", "source": "4027", "target": "245" }, { "key": "geid_144_17768", "source": "9805", "target": "7891" }, { "key": "geid_144_17769", "source": "2617", "target": "2449" }, { "key": "geid_144_17770", "source": "9976", "target": "8777" }, { "key": "geid_144_17771", "source": "29", "target": "2952" }, { "key": "geid_144_17772", "source": "8935", "target": "542" }, { "key": "geid_144_17773", "source": "2145", "target": "9358" }, { "key": "geid_144_17774", "source": "8292", "target": "3972" }, { "key": "geid_144_17775", "source": "8073", "target": "8044" }, { "key": "geid_144_17776", "source": "3359", "target": "7264" }, { "key": "geid_144_17777", "source": "7066", "target": "7392" }, { "key": "geid_144_17778", "source": "8655", "target": "7041" }, { "key": "geid_144_17779", "source": "9917", "target": "8829" }, { "key": "geid_144_17780", "source": "4719", "target": "2400" }, { "key": "geid_144_17781", "source": "3306", "target": "7205" }, { "key": "geid_144_17782", "source": "7300", "target": "4414" }, { "key": "geid_144_17783", "source": "976", "target": "5106" }, { "key": "geid_144_17784", "source": "3569", "target": "4654" }, { "key": "geid_144_17785", "source": "6542", "target": "9357" }, { "key": "geid_144_17786", "source": "5941", "target": "3701" }, { "key": "geid_144_17787", "source": "3998", "target": "9018" }, { "key": "geid_144_17788", "source": "7093", "target": "5416" }, { "key": "geid_144_17789", "source": "8095", "target": "92" }, { "key": "geid_144_17790", "source": "4286", "target": "520" }, { "key": "geid_144_17791", "source": "8220", "target": "3502" }, { "key": "geid_144_17792", "source": "2109", "target": "1821" }, { "key": "geid_144_17793", "source": "5068", "target": "4176" }, { "key": "geid_144_17794", "source": "7693", "target": "2090" }, { "key": "geid_144_17795", "source": "8380", "target": "9963" }, { "key": "geid_144_17796", "source": "1071", "target": "6111" }, { "key": "geid_144_17797", "source": "9986", "target": "7664" }, { "key": "geid_144_17798", "source": "2114", "target": "1037" }, { "key": "geid_144_17799", "source": "35", "target": "2737" }, { "key": "geid_144_17800", "source": "9359", "target": "2803" }, { "key": "geid_144_17801", "source": "7587", "target": "8913" }, { "key": "geid_144_17802", "source": "646", "target": "3610" }, { "key": "geid_144_17803", "source": "5919", "target": "2711" }, { "key": "geid_144_17804", "source": "6485", "target": "90" }, { "key": "geid_144_17805", "source": "564", "target": "7469" }, { "key": "geid_144_17806", "source": "7692", "target": "6643" }, { "key": "geid_144_17807", "source": "7138", "target": "2286" }, { "key": "geid_144_17808", "source": "6386", "target": "2001" }, { "key": "geid_144_17809", "source": "9724", "target": "2845" }, { "key": "geid_144_17810", "source": "6116", "target": "8420" }, { "key": "geid_144_17811", "source": "2083", "target": "3823" }, { "key": "geid_144_17812", "source": "1677", "target": "5883" }, { "key": "geid_144_17813", "source": "6826", "target": "6384" }, { "key": "geid_144_17814", "source": "4128", "target": "1652" }, { "key": "geid_144_17815", "source": "8587", "target": "5633" }, { "key": "geid_144_17816", "source": "7345", "target": "7684" }, { "key": "geid_144_17817", "source": "6573", "target": "7933" }, { "key": "geid_144_17818", "source": "8901", "target": "292" }, { "key": "geid_144_17819", "source": "4098", "target": "9432" }, { "key": "geid_144_17820", "source": "2789", "target": "5889" }, { "key": "geid_144_17821", "source": "2464", "target": "3690" }, { "key": "geid_144_17822", "source": "6169", "target": "4369" }, { "key": "geid_144_17823", "source": "7187", "target": "5744" }, { "key": "geid_144_17824", "source": "7022", "target": "4082" }, { "key": "geid_144_17825", "source": "8665", "target": "7743" }, { "key": "geid_144_17826", "source": "5556", "target": "4387" }, { "key": "geid_144_17827", "source": "8962", "target": "2576" }, { "key": "geid_144_17828", "source": "5288", "target": "6416" }, { "key": "geid_144_17829", "source": "1250", "target": "3750" }, { "key": "geid_144_17830", "source": "8450", "target": "2376" }, { "key": "geid_144_17831", "source": "9446", "target": "4890" }, { "key": "geid_144_17832", "source": "3061", "target": "5149" }, { "key": "geid_144_17833", "source": "9658", "target": "38" }, { "key": "geid_144_17834", "source": "3314", "target": "1160" }, { "key": "geid_144_17835", "source": "3272", "target": "8395" }, { "key": "geid_144_17836", "source": "5573", "target": "1988" }, { "key": "geid_144_17837", "source": "726", "target": "7369" }, { "key": "geid_144_17838", "source": "7602", "target": "6986" }, { "key": "geid_144_17839", "source": "3730", "target": "7354" }, { "key": "geid_144_17840", "source": "2855", "target": "8663" }, { "key": "geid_144_17841", "source": "749", "target": "6171" }, { "key": "geid_144_17842", "source": "594", "target": "9241" }, { "key": "geid_144_17843", "source": "940", "target": "4519" }, { "key": "geid_144_17844", "source": "459", "target": "4483" }, { "key": "geid_144_17845", "source": "7539", "target": "1648" }, { "key": "geid_144_17846", "source": "829", "target": "9284" }, { "key": "geid_144_17847", "source": "9435", "target": "2362" }, { "key": "geid_144_17848", "source": "437", "target": "3678" }, { "key": "geid_144_17849", "source": "7850", "target": "9720" }, { "key": "geid_144_17850", "source": "2309", "target": "7790" }, { "key": "geid_144_17851", "source": "3600", "target": "2681" }, { "key": "geid_144_17852", "source": "9540", "target": "4013" }, { "key": "geid_144_17853", "source": "5409", "target": "5899" }, { "key": "geid_144_17854", "source": "1527", "target": "8614" }, { "key": "geid_144_17855", "source": "2341", "target": "6212" }, { "key": "geid_144_17856", "source": "6221", "target": "5616" }, { "key": "geid_144_17857", "source": "7460", "target": "847" }, { "key": "geid_144_17858", "source": "3663", "target": "9458" }, { "key": "geid_144_17859", "source": "8098", "target": "295" }, { "key": "geid_144_17860", "source": "8861", "target": "6939" }, { "key": "geid_144_17861", "source": "5587", "target": "7400" }, { "key": "geid_144_17862", "source": "2112", "target": "4188" }, { "key": "geid_144_17863", "source": "8390", "target": "2494" }, { "key": "geid_144_17864", "source": "7820", "target": "9386" }, { "key": "geid_144_17865", "source": "8810", "target": "6357" }, { "key": "geid_144_17866", "source": "1989", "target": "7047" }, { "key": "geid_144_17867", "source": "5281", "target": "8198" }, { "key": "geid_144_17868", "source": "2183", "target": "9289" }, { "key": "geid_144_17869", "source": "2922", "target": "2580" }, { "key": "geid_144_17870", "source": "7635", "target": "2521" }, { "key": "geid_144_17871", "source": "8306", "target": "7839" }, { "key": "geid_144_17872", "source": "2219", "target": "3849" }, { "key": "geid_144_17873", "source": "2668", "target": "5526" }, { "key": "geid_144_17874", "source": "5761", "target": "3455" }, { "key": "geid_144_17875", "source": "2110", "target": "4876" }, { "key": "geid_144_17876", "source": "9042", "target": "3799" }, { "key": "geid_144_17877", "source": "4099", "target": "8275" }, { "key": "geid_144_17878", "source": "8208", "target": "2454" }, { "key": "geid_144_17879", "source": "3310", "target": "1927" }, { "key": "geid_144_17880", "source": "5711", "target": "8204" }, { "key": "geid_144_17881", "source": "8351", "target": "9804" }, { "key": "geid_144_17882", "source": "6012", "target": "8051" }, { "key": "geid_144_17883", "source": "2920", "target": "8070" }, { "key": "geid_144_17884", "source": "2687", "target": "7007" }, { "key": "geid_144_17885", "source": "2629", "target": "867" }, { "key": "geid_144_17886", "source": "4243", "target": "9512" }, { "key": "geid_144_17887", "source": "9043", "target": "6842" }, { "key": "geid_144_17888", "source": "4366", "target": "6773" }, { "key": "geid_144_17889", "source": "3358", "target": "2454" }, { "key": "geid_144_17890", "source": "4014", "target": "4274" }, { "key": "geid_144_17891", "source": "1464", "target": "7643" }, { "key": "geid_144_17892", "source": "311", "target": "6130" }, { "key": "geid_144_17893", "source": "3803", "target": "6624" }, { "key": "geid_144_17894", "source": "2044", "target": "1326" }, { "key": "geid_144_17895", "source": "9114", "target": "3078" }, { "key": "geid_144_17896", "source": "5343", "target": "4757" }, { "key": "geid_144_17897", "source": "8802", "target": "6561" }, { "key": "geid_144_17898", "source": "799", "target": "2154" }, { "key": "geid_144_17899", "source": "6234", "target": "4854" }, { "key": "geid_144_17900", "source": "5244", "target": "943" }, { "key": "geid_144_17901", "source": "6452", "target": "8863" }, { "key": "geid_144_17902", "source": "9173", "target": "9525" }, { "key": "geid_144_17903", "source": "2321", "target": "2860" }, { "key": "geid_144_17904", "source": "3380", "target": "2581" }, { "key": "geid_144_17905", "source": "2814", "target": "3882" }, { "key": "geid_144_17906", "source": "970", "target": "5871" }, { "key": "geid_144_17907", "source": "7569", "target": "7398" }, { "key": "geid_144_17908", "source": "2965", "target": "94" }, { "key": "geid_144_17909", "source": "4727", "target": "5472" }, { "key": "geid_144_17910", "source": "3278", "target": "7404" }, { "key": "geid_144_17911", "source": "6197", "target": "8737" }, { "key": "geid_144_17912", "source": "4271", "target": "8740" }, { "key": "geid_144_17913", "source": "7291", "target": "1172" }, { "key": "geid_144_17914", "source": "6811", "target": "1819" }, { "key": "geid_144_17915", "source": "4143", "target": "4006" }, { "key": "geid_144_17916", "source": "9072", "target": "513" }, { "key": "geid_144_17917", "source": "6322", "target": "2177" }, { "key": "geid_144_17918", "source": "8469", "target": "4938" }, { "key": "geid_144_17919", "source": "7151", "target": "4223" }, { "key": "geid_144_17920", "source": "9932", "target": "2235" }, { "key": "geid_144_17921", "source": "2903", "target": "5897" }, { "key": "geid_144_17922", "source": "479", "target": "9270" }, { "key": "geid_144_17923", "source": "2118", "target": "5761" }, { "key": "geid_144_17924", "source": "6348", "target": "6856" }, { "key": "geid_144_17925", "source": "6056", "target": "1561" }, { "key": "geid_144_17926", "source": "7283", "target": "1780" }, { "key": "geid_144_17927", "source": "1018", "target": "2204" }, { "key": "geid_144_17928", "source": "1600", "target": "6544" }, { "key": "geid_144_17929", "source": "43", "target": "6637" }, { "key": "geid_144_17930", "source": "5344", "target": "348" }, { "key": "geid_144_17931", "source": "9313", "target": "9880" }, { "key": "geid_144_17932", "source": "3742", "target": "9277" }, { "key": "geid_144_17933", "source": "9804", "target": "681" }, { "key": "geid_144_17934", "source": "4146", "target": "3029" }, { "key": "geid_144_17935", "source": "2588", "target": "7968" }, { "key": "geid_144_17936", "source": "6799", "target": "6738" }, { "key": "geid_144_17937", "source": "2490", "target": "5750" }, { "key": "geid_144_17938", "source": "4536", "target": "8874" }, { "key": "geid_144_17939", "source": "7252", "target": "8607" }, { "key": "geid_144_17940", "source": "6437", "target": "5349" }, { "key": "geid_144_17941", "source": "273", "target": "2806" }, { "key": "geid_144_17942", "source": "6514", "target": "490" }, { "key": "geid_144_17943", "source": "3159", "target": "9035" }, { "key": "geid_144_17944", "source": "98", "target": "9461" }, { "key": "geid_144_17945", "source": "4417", "target": "5249" }, { "key": "geid_144_17946", "source": "2075", "target": "5531" }, { "key": "geid_144_17947", "source": "8330", "target": "2663" }, { "key": "geid_144_17948", "source": "6078", "target": "3440" }, { "key": "geid_144_17949", "source": "4538", "target": "5152" }, { "key": "geid_144_17950", "source": "3293", "target": "5628" }, { "key": "geid_144_17951", "source": "1383", "target": "3759" }, { "key": "geid_144_17952", "source": "7306", "target": "1803" }, { "key": "geid_144_17953", "source": "9594", "target": "3432" }, { "key": "geid_144_17954", "source": "9791", "target": "8538" }, { "key": "geid_144_17955", "source": "9519", "target": "8896" }, { "key": "geid_144_17956", "source": "9076", "target": "735" }, { "key": "geid_144_17957", "source": "1424", "target": "5168" }, { "key": "geid_144_17958", "source": "6891", "target": "1247" }, { "key": "geid_144_17959", "source": "9765", "target": "4372" }, { "key": "geid_144_17960", "source": "2426", "target": "9661" }, { "key": "geid_144_17961", "source": "5202", "target": "9959" }, { "key": "geid_144_17962", "source": "9821", "target": "2291" }, { "key": "geid_144_17963", "source": "6822", "target": "5903" }, { "key": "geid_144_17964", "source": "320", "target": "3112" }, { "key": "geid_144_17965", "source": "5858", "target": "9719" }, { "key": "geid_144_17966", "source": "8473", "target": "2653" }, { "key": "geid_144_17967", "source": "3962", "target": "8939" }, { "key": "geid_144_17968", "source": "82", "target": "4221" }, { "key": "geid_144_17969", "source": "6732", "target": "3202" }, { "key": "geid_144_17970", "source": "1943", "target": "6715" }, { "key": "geid_144_17971", "source": "3555", "target": "9356" }, { "key": "geid_144_17972", "source": "7416", "target": "9216" }, { "key": "geid_144_17973", "source": "4712", "target": "9707" }, { "key": "geid_144_17974", "source": "145", "target": "3666" }, { "key": "geid_144_17975", "source": "521", "target": "6425" }, { "key": "geid_144_17976", "source": "1258", "target": "6093" }, { "key": "geid_144_17977", "source": "4610", "target": "766" }, { "key": "geid_144_17978", "source": "5428", "target": "7511" }, { "key": "geid_144_17979", "source": "4733", "target": "8882" }, { "key": "geid_144_17980", "source": "1277", "target": "3170" }, { "key": "geid_144_17981", "source": "5766", "target": "1884" }, { "key": "geid_144_17982", "source": "5447", "target": "501" }, { "key": "geid_144_17983", "source": "8557", "target": "3993" }, { "key": "geid_144_17984", "source": "3108", "target": "3276" }, { "key": "geid_144_17985", "source": "4570", "target": "72" }, { "key": "geid_144_17986", "source": "802", "target": "5390" }, { "key": "geid_144_17987", "source": "9117", "target": "1342" }, { "key": "geid_144_17988", "source": "7965", "target": "5759" }, { "key": "geid_144_17989", "source": "5744", "target": "5446" }, { "key": "geid_144_17990", "source": "9428", "target": "4611" }, { "key": "geid_144_17991", "source": "9074", "target": "9973" }, { "key": "geid_144_17992", "source": "178", "target": "6028" }, { "key": "geid_144_17993", "source": "7561", "target": "5285" }, { "key": "geid_144_17994", "source": "1303", "target": "2952" }, { "key": "geid_144_17995", "source": "1552", "target": "9793" }, { "key": "geid_144_17996", "source": "5754", "target": "7650" }, { "key": "geid_144_17997", "source": "5026", "target": "8548" }, { "key": "geid_144_17998", "source": "4654", "target": "2434" }, { "key": "geid_144_17999", "source": "5174", "target": "2779" }, { "key": "geid_144_18000", "source": "5129", "target": "4239" }, { "key": "geid_144_18001", "source": "9426", "target": "1570" }, { "key": "geid_144_18002", "source": "7677", "target": "5659" }, { "key": "geid_144_18003", "source": "7331", "target": "9540" }, { "key": "geid_144_18004", "source": "3982", "target": "518" }, { "key": "geid_144_18005", "source": "8853", "target": "2084" }, { "key": "geid_144_18006", "source": "6088", "target": "3997" }, { "key": "geid_144_18007", "source": "718", "target": "7183" }, { "key": "geid_144_18008", "source": "5445", "target": "1087" }, { "key": "geid_144_18009", "source": "4719", "target": "3900" }, { "key": "geid_144_18010", "source": "4588", "target": "6825" }, { "key": "geid_144_18011", "source": "658", "target": "626" }, { "key": "geid_144_18012", "source": "9341", "target": "1643" }, { "key": "geid_144_18013", "source": "5588", "target": "3404" }, { "key": "geid_144_18014", "source": "3842", "target": "3884" }, { "key": "geid_144_18015", "source": "8429", "target": "5985" }, { "key": "geid_144_18016", "source": "593", "target": "950" }, { "key": "geid_144_18017", "source": "5792", "target": "6007" }, { "key": "geid_144_18018", "source": "5299", "target": "4946" }, { "key": "geid_144_18019", "source": "9694", "target": "7877" }, { "key": "geid_144_18020", "source": "2620", "target": "9703" }, { "key": "geid_144_18021", "source": "8735", "target": "7457" }, { "key": "geid_144_18022", "source": "1542", "target": "2296" }, { "key": "geid_144_18023", "source": "3035", "target": "6529" }, { "key": "geid_144_18024", "source": "2786", "target": "7202" }, { "key": "geid_144_18025", "source": "8806", "target": "3706" }, { "key": "geid_144_18026", "source": "4511", "target": "3168" }, { "key": "geid_144_18027", "source": "7731", "target": "281" }, { "key": "geid_144_18028", "source": "3255", "target": "4357" }, { "key": "geid_144_18029", "source": "1608", "target": "6719" }, { "key": "geid_144_18030", "source": "2020", "target": "7761" }, { "key": "geid_144_18031", "source": "3115", "target": "4752" }, { "key": "geid_144_18032", "source": "6033", "target": "8049" }, { "key": "geid_144_18033", "source": "1114", "target": "5646" }, { "key": "geid_144_18034", "source": "5339", "target": "6359" }, { "key": "geid_144_18035", "source": "614", "target": "6082" }, { "key": "geid_144_18036", "source": "7645", "target": "8768" }, { "key": "geid_144_18037", "source": "7984", "target": "7982" }, { "key": "geid_144_18038", "source": "9859", "target": "3482" }, { "key": "geid_144_18039", "source": "6527", "target": "337" }, { "key": "geid_144_18040", "source": "7641", "target": "4586" }, { "key": "geid_144_18041", "source": "5964", "target": "3595" }, { "key": "geid_144_18042", "source": "1507", "target": "1024" }, { "key": "geid_144_18043", "source": "1832", "target": "1196" }, { "key": "geid_144_18044", "source": "1406", "target": "6631" }, { "key": "geid_144_18045", "source": "1704", "target": "9255" }, { "key": "geid_144_18046", "source": "9275", "target": "9002" }, { "key": "geid_144_18047", "source": "4790", "target": "6177" }, { "key": "geid_144_18048", "source": "6773", "target": "5663" }, { "key": "geid_144_18049", "source": "3343", "target": "3681" }, { "key": "geid_144_18050", "source": "434", "target": "1609" }, { "key": "geid_144_18051", "source": "2210", "target": "4887" }, { "key": "geid_144_18052", "source": "5414", "target": "4556" }, { "key": "geid_144_18053", "source": "1735", "target": "8830" }, { "key": "geid_144_18054", "source": "1146", "target": "4395" }, { "key": "geid_144_18055", "source": "1186", "target": "7857" }, { "key": "geid_144_18056", "source": "7688", "target": "6756" }, { "key": "geid_144_18057", "source": "2399", "target": "9075" }, { "key": "geid_144_18058", "source": "9043", "target": "1816" }, { "key": "geid_144_18059", "source": "2494", "target": "9946" }, { "key": "geid_144_18060", "source": "4280", "target": "4059" }, { "key": "geid_144_18061", "source": "671", "target": "5438" }, { "key": "geid_144_18062", "source": "1574", "target": "3162" }, { "key": "geid_144_18063", "source": "3814", "target": "8929" }, { "key": "geid_144_18064", "source": "4281", "target": "1427" }, { "key": "geid_144_18065", "source": "2359", "target": "3720" }, { "key": "geid_144_18066", "source": "2685", "target": "8657" }, { "key": "geid_144_18067", "source": "9707", "target": "79" }, { "key": "geid_144_18068", "source": "5276", "target": "3672" }, { "key": "geid_144_18069", "source": "6329", "target": "5891" }, { "key": "geid_144_18070", "source": "2955", "target": "1693" }, { "key": "geid_144_18071", "source": "5262", "target": "4218" }, { "key": "geid_144_18072", "source": "1870", "target": "1720" }, { "key": "geid_144_18073", "source": "3348", "target": "2774" }, { "key": "geid_144_18074", "source": "3957", "target": "9895" }, { "key": "geid_144_18075", "source": "5741", "target": "5819" }, { "key": "geid_144_18076", "source": "9535", "target": "5902" }, { "key": "geid_144_18077", "source": "2913", "target": "7407" }, { "key": "geid_144_18078", "source": "5250", "target": "1389" }, { "key": "geid_144_18079", "source": "8969", "target": "8406" }, { "key": "geid_144_18080", "source": "6960", "target": "1971" }, { "key": "geid_144_18081", "source": "5906", "target": "2948" }, { "key": "geid_144_18082", "source": "2981", "target": "9536" }, { "key": "geid_144_18083", "source": "7546", "target": "6078" }, { "key": "geid_144_18084", "source": "6741", "target": "7252" }, { "key": "geid_144_18085", "source": "9484", "target": "4068" }, { "key": "geid_144_18086", "source": "8623", "target": "8106" }, { "key": "geid_144_18087", "source": "7872", "target": "6726" }, { "key": "geid_144_18088", "source": "1946", "target": "535" }, { "key": "geid_144_18089", "source": "9879", "target": "3373" }, { "key": "geid_144_18090", "source": "4230", "target": "1473" }, { "key": "geid_144_18091", "source": "8154", "target": "9674" }, { "key": "geid_144_18092", "source": "1491", "target": "133" }, { "key": "geid_144_18093", "source": "2321", "target": "9098" }, { "key": "geid_144_18094", "source": "5724", "target": "2564" }, { "key": "geid_144_18095", "source": "2385", "target": "7935" }, { "key": "geid_144_18096", "source": "1725", "target": "2816" }, { "key": "geid_144_18097", "source": "1820", "target": "2113" }, { "key": "geid_144_18098", "source": "5257", "target": "3349" }, { "key": "geid_144_18099", "source": "9292", "target": "2796" }, { "key": "geid_144_18100", "source": "1917", "target": "9304" }, { "key": "geid_144_18101", "source": "9866", "target": "3961" }, { "key": "geid_144_18102", "source": "2913", "target": "3349" }, { "key": "geid_144_18103", "source": "8799", "target": "1480" }, { "key": "geid_144_18104", "source": "9098", "target": "9955" }, { "key": "geid_144_18105", "source": "6500", "target": "455" }, { "key": "geid_144_18106", "source": "3506", "target": "2230" }, { "key": "geid_144_18107", "source": "1761", "target": "6194" }, { "key": "geid_144_18108", "source": "1190", "target": "2103" }, { "key": "geid_144_18109", "source": "5525", "target": "9166" }, { "key": "geid_144_18110", "source": "1495", "target": "5992" }, { "key": "geid_144_18111", "source": "2073", "target": "1645" }, { "key": "geid_144_18112", "source": "8838", "target": "6944" }, { "key": "geid_144_18113", "source": "8563", "target": "4008" }, { "key": "geid_144_18114", "source": "2815", "target": "9782" }, { "key": "geid_144_18115", "source": "1173", "target": "1469" }, { "key": "geid_144_18116", "source": "2150", "target": "6963" }, { "key": "geid_144_18117", "source": "5839", "target": "9331" }, { "key": "geid_144_18118", "source": "2909", "target": "2233" }, { "key": "geid_144_18119", "source": "3920", "target": "7063" }, { "key": "geid_144_18120", "source": "5582", "target": "4757" }, { "key": "geid_144_18121", "source": "1285", "target": "4286" }, { "key": "geid_144_18122", "source": "3852", "target": "4523" }, { "key": "geid_144_18123", "source": "4745", "target": "5877" }, { "key": "geid_144_18124", "source": "7941", "target": "2609" }, { "key": "geid_144_18125", "source": "5569", "target": "5173" }, { "key": "geid_144_18126", "source": "6961", "target": "4875" }, { "key": "geid_144_18127", "source": "3487", "target": "4662" }, { "key": "geid_144_18128", "source": "7425", "target": "5197" }, { "key": "geid_144_18129", "source": "9590", "target": "4301" }, { "key": "geid_144_18130", "source": "4495", "target": "3231" }, { "key": "geid_144_18131", "source": "1984", "target": "4386" }, { "key": "geid_144_18132", "source": "4955", "target": "7961" }, { "key": "geid_144_18133", "source": "8641", "target": "3915" }, { "key": "geid_144_18134", "source": "1209", "target": "8736" }, { "key": "geid_144_18135", "source": "7728", "target": "3502" }, { "key": "geid_144_18136", "source": "9747", "target": "1990" }, { "key": "geid_144_18137", "source": "4343", "target": "4492" }, { "key": "geid_144_18138", "source": "4291", "target": "7848" }, { "key": "geid_144_18139", "source": "6613", "target": "1283" }, { "key": "geid_144_18140", "source": "5697", "target": "906" }, { "key": "geid_144_18141", "source": "5769", "target": "9525" }, { "key": "geid_144_18142", "source": "1289", "target": "6953" }, { "key": "geid_144_18143", "source": "3033", "target": "6724" }, { "key": "geid_144_18144", "source": "8368", "target": "3128" }, { "key": "geid_144_18145", "source": "386", "target": "8684" }, { "key": "geid_144_18146", "source": "5626", "target": "6978" }, { "key": "geid_144_18147", "source": "8612", "target": "2181" }, { "key": "geid_144_18148", "source": "9551", "target": "4683" }, { "key": "geid_144_18149", "source": "4340", "target": "6732" }, { "key": "geid_144_18150", "source": "7108", "target": "6890" }, { "key": "geid_144_18151", "source": "6218", "target": "5584" }, { "key": "geid_144_18152", "source": "2662", "target": "1439" }, { "key": "geid_144_18153", "source": "714", "target": "4132" }, { "key": "geid_144_18154", "source": "8986", "target": "1282" }, { "key": "geid_144_18155", "source": "4526", "target": "2570" }, { "key": "geid_144_18156", "source": "3869", "target": "3412" }, { "key": "geid_144_18157", "source": "7838", "target": "5901" }, { "key": "geid_144_18158", "source": "7976", "target": "6561" }, { "key": "geid_144_18159", "source": "5856", "target": "2767" }, { "key": "geid_144_18160", "source": "1085", "target": "3534" }, { "key": "geid_144_18161", "source": "9325", "target": "4091" }, { "key": "geid_144_18162", "source": "3466", "target": "5224" }, { "key": "geid_144_18163", "source": "7623", "target": "5511" }, { "key": "geid_144_18164", "source": "8701", "target": "2400" }, { "key": "geid_144_18165", "source": "4964", "target": "7163" }, { "key": "geid_144_18166", "source": "1414", "target": "7582" }, { "key": "geid_144_18167", "source": "3472", "target": "8520" }, { "key": "geid_144_18168", "source": "626", "target": "8705" }, { "key": "geid_144_18169", "source": "712", "target": "7336" }, { "key": "geid_144_18170", "source": "6480", "target": "755" }, { "key": "geid_144_18171", "source": "581", "target": "3047" }, { "key": "geid_144_18172", "source": "9297", "target": "351" }, { "key": "geid_144_18173", "source": "2332", "target": "9693" }, { "key": "geid_144_18174", "source": "4174", "target": "1617" }, { "key": "geid_144_18175", "source": "5903", "target": "7035" }, { "key": "geid_144_18176", "source": "1581", "target": "8391" }, { "key": "geid_144_18177", "source": "3447", "target": "2595" }, { "key": "geid_144_18178", "source": "3683", "target": "8262" }, { "key": "geid_144_18179", "source": "620", "target": "9360" }, { "key": "geid_144_18180", "source": "288", "target": "2539" }, { "key": "geid_144_18181", "source": "3853", "target": "5434" }, { "key": "geid_144_18182", "source": "9747", "target": "6702" }, { "key": "geid_144_18183", "source": "4827", "target": "3164" }, { "key": "geid_144_18184", "source": "5884", "target": "1931" }, { "key": "geid_144_18185", "source": "7209", "target": "2715" }, { "key": "geid_144_18186", "source": "2186", "target": "7507" }, { "key": "geid_144_18187", "source": "5290", "target": "4177" }, { "key": "geid_144_18188", "source": "2531", "target": "3910" }, { "key": "geid_144_18189", "source": "1811", "target": "6308" }, { "key": "geid_144_18190", "source": "8002", "target": "5516" }, { "key": "geid_144_18191", "source": "7835", "target": "6073" }, { "key": "geid_144_18192", "source": "4722", "target": "9639" }, { "key": "geid_144_18193", "source": "2485", "target": "5859" }, { "key": "geid_144_18194", "source": "6948", "target": "831" }, { "key": "geid_144_18195", "source": "4436", "target": "3639" }, { "key": "geid_144_18196", "source": "175", "target": "9971" }, { "key": "geid_144_18197", "source": "7095", "target": "5753" }, { "key": "geid_144_18198", "source": "9742", "target": "4861" }, { "key": "geid_144_18199", "source": "4514", "target": "1503" }, { "key": "geid_144_18200", "source": "7821", "target": "6393" }, { "key": "geid_144_18201", "source": "2316", "target": "3340" }, { "key": "geid_144_18202", "source": "5733", "target": "5745" }, { "key": "geid_144_18203", "source": "5688", "target": "4432" }, { "key": "geid_144_18204", "source": "8947", "target": "1332" }, { "key": "geid_144_18205", "source": "5641", "target": "1770" }, { "key": "geid_144_18206", "source": "3673", "target": "3655" }, { "key": "geid_144_18207", "source": "3635", "target": "9032" }, { "key": "geid_144_18208", "source": "4773", "target": "9004" }, { "key": "geid_144_18209", "source": "8181", "target": "8786" }, { "key": "geid_144_18210", "source": "3446", "target": "1922" }, { "key": "geid_144_18211", "source": "8158", "target": "7720" }, { "key": "geid_144_18212", "source": "8511", "target": "3464" }, { "key": "geid_144_18213", "source": "3983", "target": "3005" }, { "key": "geid_144_18214", "source": "9214", "target": "5624" }, { "key": "geid_144_18215", "source": "9749", "target": "8621" }, { "key": "geid_144_18216", "source": "9396", "target": "3681" }, { "key": "geid_144_18217", "source": "1749", "target": "3982" }, { "key": "geid_144_18218", "source": "9365", "target": "6721" }, { "key": "geid_144_18219", "source": "9833", "target": "3460" }, { "key": "geid_144_18220", "source": "8525", "target": "6057" }, { "key": "geid_144_18221", "source": "1951", "target": "4770" }, { "key": "geid_144_18222", "source": "7845", "target": "242" }, { "key": "geid_144_18223", "source": "2813", "target": "3770" }, { "key": "geid_144_18224", "source": "8027", "target": "1014" }, { "key": "geid_144_18225", "source": "278", "target": "1430" }, { "key": "geid_144_18226", "source": "667", "target": "1841" }, { "key": "geid_144_18227", "source": "6344", "target": "9277" }, { "key": "geid_144_18228", "source": "3260", "target": "8833" }, { "key": "geid_144_18229", "source": "5069", "target": "5988" }, { "key": "geid_144_18230", "source": "5278", "target": "1133" }, { "key": "geid_144_18231", "source": "7286", "target": "181" }, { "key": "geid_144_18232", "source": "7699", "target": "8933" }, { "key": "geid_144_18233", "source": "7711", "target": "8834" }, { "key": "geid_144_18234", "source": "1318", "target": "4878" }, { "key": "geid_144_18235", "source": "3024", "target": "394" }, { "key": "geid_144_18236", "source": "3826", "target": "5158" }, { "key": "geid_144_18237", "source": "2795", "target": "2168" }, { "key": "geid_144_18238", "source": "1099", "target": "8245" }, { "key": "geid_144_18239", "source": "9123", "target": "380" }, { "key": "geid_144_18240", "source": "942", "target": "7518" }, { "key": "geid_144_18241", "source": "109", "target": "3090" }, { "key": "geid_144_18242", "source": "3455", "target": "5691" }, { "key": "geid_144_18243", "source": "4274", "target": "2586" }, { "key": "geid_144_18244", "source": "829", "target": "4677" }, { "key": "geid_144_18245", "source": "3468", "target": "1440" }, { "key": "geid_144_18246", "source": "2897", "target": "2106" }, { "key": "geid_144_18247", "source": "9030", "target": "4472" }, { "key": "geid_144_18248", "source": "4332", "target": "3308" }, { "key": "geid_144_18249", "source": "8210", "target": "1136" }, { "key": "geid_144_18250", "source": "4751", "target": "1607" }, { "key": "geid_144_18251", "source": "5772", "target": "9490" }, { "key": "geid_144_18252", "source": "4443", "target": "3615" }, { "key": "geid_144_18253", "source": "4490", "target": "5122" }, { "key": "geid_144_18254", "source": "4951", "target": "3875" }, { "key": "geid_144_18255", "source": "3256", "target": "7630" }, { "key": "geid_144_18256", "source": "3167", "target": "9479" }, { "key": "geid_144_18257", "source": "3796", "target": "9758" }, { "key": "geid_144_18258", "source": "2478", "target": "8768" }, { "key": "geid_144_18259", "source": "74", "target": "316" }, { "key": "geid_144_18260", "source": "508", "target": "4745" }, { "key": "geid_144_18261", "source": "9531", "target": "8553" }, { "key": "geid_144_18262", "source": "4149", "target": "1542" }, { "key": "geid_144_18263", "source": "2347", "target": "7741" }, { "key": "geid_144_18264", "source": "2277", "target": "1296" }, { "key": "geid_144_18265", "source": "5528", "target": "6016" }, { "key": "geid_144_18266", "source": "771", "target": "7178" }, { "key": "geid_144_18267", "source": "4230", "target": "6554" }, { "key": "geid_144_18268", "source": "733", "target": "5809" }, { "key": "geid_144_18269", "source": "4522", "target": "5375" }, { "key": "geid_144_18270", "source": "9404", "target": "3518" }, { "key": "geid_144_18271", "source": "7776", "target": "5033" }, { "key": "geid_144_18272", "source": "5218", "target": "5546" }, { "key": "geid_144_18273", "source": "921", "target": "9113" }, { "key": "geid_144_18274", "source": "74", "target": "9442" }, { "key": "geid_144_18275", "source": "9623", "target": "8662" }, { "key": "geid_144_18276", "source": "2257", "target": "8463" }, { "key": "geid_144_18277", "source": "6414", "target": "7664" }, { "key": "geid_144_18278", "source": "1052", "target": "1706" }, { "key": "geid_144_18279", "source": "8284", "target": "8487" }, { "key": "geid_144_18280", "source": "6375", "target": "6228" }, { "key": "geid_144_18281", "source": "2612", "target": "1664" }, { "key": "geid_144_18282", "source": "9634", "target": "6701" }, { "key": "geid_144_18283", "source": "529", "target": "548" }, { "key": "geid_144_18284", "source": "7931", "target": "6221" }, { "key": "geid_144_18285", "source": "3989", "target": "808" }, { "key": "geid_144_18286", "source": "5921", "target": "2263" }, { "key": "geid_144_18287", "source": "193", "target": "197" }, { "key": "geid_144_18288", "source": "5722", "target": "1954" }, { "key": "geid_144_18289", "source": "920", "target": "7865" }, { "key": "geid_144_18290", "source": "8925", "target": "7880" }, { "key": "geid_144_18291", "source": "9609", "target": "1614" }, { "key": "geid_144_18292", "source": "7449", "target": "8131" }, { "key": "geid_144_18293", "source": "2635", "target": "9202" }, { "key": "geid_144_18294", "source": "159", "target": "9070" }, { "key": "geid_144_18295", "source": "157", "target": "7053" }, { "key": "geid_144_18296", "source": "4727", "target": "7313" }, { "key": "geid_144_18297", "source": "3725", "target": "577" }, { "key": "geid_144_18298", "source": "7334", "target": "5008" }, { "key": "geid_144_18299", "source": "7327", "target": "3279" }, { "key": "geid_144_18300", "source": "5585", "target": "9998" }, { "key": "geid_144_18301", "source": "7525", "target": "1401" }, { "key": "geid_144_18302", "source": "4950", "target": "8733" }, { "key": "geid_144_18303", "source": "9263", "target": "1893" }, { "key": "geid_144_18304", "source": "1313", "target": "2191" }, { "key": "geid_144_18305", "source": "3403", "target": "2075" }, { "key": "geid_144_18306", "source": "8696", "target": "5043" }, { "key": "geid_144_18307", "source": "183", "target": "5430" }, { "key": "geid_144_18308", "source": "7402", "target": "5002" }, { "key": "geid_144_18309", "source": "4567", "target": "4726" }, { "key": "geid_144_18310", "source": "1399", "target": "6103" }, { "key": "geid_144_18311", "source": "2467", "target": "7647" }, { "key": "geid_144_18312", "source": "2558", "target": "8497" }, { "key": "geid_144_18313", "source": "5930", "target": "8606" }, { "key": "geid_144_18314", "source": "5863", "target": "1211" }, { "key": "geid_144_18315", "source": "4833", "target": "7917" }, { "key": "geid_144_18316", "source": "2753", "target": "7489" }, { "key": "geid_144_18317", "source": "1314", "target": "5713" }, { "key": "geid_144_18318", "source": "903", "target": "6635" }, { "key": "geid_144_18319", "source": "4958", "target": "2601" }, { "key": "geid_144_18320", "source": "9287", "target": "4876" }, { "key": "geid_144_18321", "source": "511", "target": "5116" }, { "key": "geid_144_18322", "source": "5164", "target": "1805" }, { "key": "geid_144_18323", "source": "4417", "target": "833" }, { "key": "geid_144_18324", "source": "7463", "target": "6110" }, { "key": "geid_144_18325", "source": "3514", "target": "6114" }, { "key": "geid_144_18326", "source": "3533", "target": "1016" }, { "key": "geid_144_18327", "source": "8610", "target": "5233" }, { "key": "geid_144_18328", "source": "5551", "target": "6611" }, { "key": "geid_144_18329", "source": "7333", "target": "1669" }, { "key": "geid_144_18330", "source": "176", "target": "1481" }, { "key": "geid_144_18331", "source": "8307", "target": "6090" }, { "key": "geid_144_18332", "source": "1446", "target": "9004" }, { "key": "geid_144_18333", "source": "5364", "target": "6259" }, { "key": "geid_144_18334", "source": "1421", "target": "5763" }, { "key": "geid_144_18335", "source": "6657", "target": "5991" }, { "key": "geid_144_18336", "source": "9006", "target": "1803" }, { "key": "geid_144_18337", "source": "8119", "target": "1283" }, { "key": "geid_144_18338", "source": "3956", "target": "996" }, { "key": "geid_144_18339", "source": "2862", "target": "2540" }, { "key": "geid_144_18340", "source": "9419", "target": "7576" }, { "key": "geid_144_18341", "source": "2356", "target": "5764" }, { "key": "geid_144_18342", "source": "3864", "target": "9885" }, { "key": "geid_144_18343", "source": "4519", "target": "7329" }, { "key": "geid_144_18344", "source": "3521", "target": "6011" }, { "key": "geid_144_18345", "source": "8915", "target": "8820" }, { "key": "geid_144_18346", "source": "7887", "target": "6530" }, { "key": "geid_144_18347", "source": "5482", "target": "2230" }, { "key": "geid_144_18348", "source": "6704", "target": "2557" }, { "key": "geid_144_18349", "source": "4802", "target": "1097" }, { "key": "geid_144_18350", "source": "3977", "target": "6653" }, { "key": "geid_144_18351", "source": "726", "target": "9446" }, { "key": "geid_144_18352", "source": "3752", "target": "280" }, { "key": "geid_144_18353", "source": "9186", "target": "3674" }, { "key": "geid_144_18354", "source": "7479", "target": "8906" }, { "key": "geid_144_18355", "source": "1848", "target": "7209" }, { "key": "geid_144_18356", "source": "49", "target": "9392" }, { "key": "geid_144_18357", "source": "132", "target": "4679" }, { "key": "geid_144_18358", "source": "9468", "target": "2945" }, { "key": "geid_144_18359", "source": "7086", "target": "1288" }, { "key": "geid_144_18360", "source": "1322", "target": "5214" }, { "key": "geid_144_18361", "source": "9237", "target": "9700" }, { "key": "geid_144_18362", "source": "9983", "target": "2743" }, { "key": "geid_144_18363", "source": "2532", "target": "8865" }, { "key": "geid_144_18364", "source": "7726", "target": "8752" }, { "key": "geid_144_18365", "source": "638", "target": "7706" }, { "key": "geid_144_18366", "source": "2534", "target": "9265" }, { "key": "geid_144_18367", "source": "9275", "target": "3947" }, { "key": "geid_144_18368", "source": "3379", "target": "5239" }, { "key": "geid_144_18369", "source": "50", "target": "3359" }, { "key": "geid_144_18370", "source": "5943", "target": "4724" }, { "key": "geid_144_18371", "source": "3827", "target": "641" }, { "key": "geid_144_18372", "source": "1906", "target": "7450" }, { "key": "geid_144_18373", "source": "5257", "target": "4646" }, { "key": "geid_144_18374", "source": "4930", "target": "1463" }, { "key": "geid_144_18375", "source": "8300", "target": "229" }, { "key": "geid_144_18376", "source": "2520", "target": "2803" }, { "key": "geid_144_18377", "source": "6307", "target": "9205" }, { "key": "geid_144_18378", "source": "8531", "target": "1188" }, { "key": "geid_144_18379", "source": "7916", "target": "2445" }, { "key": "geid_144_18380", "source": "7395", "target": "3666" }, { "key": "geid_144_18381", "source": "1718", "target": "2889" }, { "key": "geid_144_18382", "source": "1725", "target": "413" }, { "key": "geid_144_18383", "source": "6159", "target": "9488" }, { "key": "geid_144_18384", "source": "3327", "target": "6766" }, { "key": "geid_144_18385", "source": "7583", "target": "9834" }, { "key": "geid_144_18386", "source": "1677", "target": "7987" }, { "key": "geid_144_18387", "source": "6174", "target": "9362" }, { "key": "geid_144_18388", "source": "9735", "target": "5658" }, { "key": "geid_144_18389", "source": "2662", "target": "3838" }, { "key": "geid_144_18390", "source": "8138", "target": "358" }, { "key": "geid_144_18391", "source": "4264", "target": "2062" }, { "key": "geid_144_18392", "source": "8065", "target": "8030" }, { "key": "geid_144_18393", "source": "3261", "target": "9587" }, { "key": "geid_144_18394", "source": "5220", "target": "7909" }, { "key": "geid_144_18395", "source": "9368", "target": "2153" }, { "key": "geid_144_18396", "source": "7426", "target": "763" }, { "key": "geid_144_18397", "source": "1854", "target": "7422" }, { "key": "geid_144_18398", "source": "958", "target": "5" }, { "key": "geid_144_18399", "source": "5907", "target": "6677" }, { "key": "geid_144_18400", "source": "6606", "target": "3700" }, { "key": "geid_144_18401", "source": "4512", "target": "3412" }, { "key": "geid_144_18402", "source": "3675", "target": "198" }, { "key": "geid_144_18403", "source": "7096", "target": "1447" }, { "key": "geid_144_18404", "source": "8968", "target": "40" }, { "key": "geid_144_18405", "source": "857", "target": "9170" }, { "key": "geid_144_18406", "source": "8752", "target": "8793" }, { "key": "geid_144_18407", "source": "6172", "target": "8107" }, { "key": "geid_144_18408", "source": "591", "target": "7516" }, { "key": "geid_144_18409", "source": "7066", "target": "6556" }, { "key": "geid_144_18410", "source": "1962", "target": "4372" }, { "key": "geid_144_18411", "source": "4272", "target": "3421" }, { "key": "geid_144_18412", "source": "6207", "target": "3570" }, { "key": "geid_144_18413", "source": "2303", "target": "910" }, { "key": "geid_144_18414", "source": "3457", "target": "1318" }, { "key": "geid_144_18415", "source": "5923", "target": "6374" }, { "key": "geid_144_18416", "source": "5290", "target": "1358" }, { "key": "geid_144_18417", "source": "8960", "target": "3498" }, { "key": "geid_144_18418", "source": "1379", "target": "1853" }, { "key": "geid_144_18419", "source": "2737", "target": "1912" }, { "key": "geid_144_18420", "source": "751", "target": "4283" }, { "key": "geid_144_18421", "source": "7238", "target": "1852" }, { "key": "geid_144_18422", "source": "2459", "target": "7875" }, { "key": "geid_144_18423", "source": "4838", "target": "5834" }, { "key": "geid_144_18424", "source": "5180", "target": "4563" }, { "key": "geid_144_18425", "source": "1621", "target": "6328" }, { "key": "geid_144_18426", "source": "2795", "target": "2676" }, { "key": "geid_144_18427", "source": "8005", "target": "2578" }, { "key": "geid_144_18428", "source": "7554", "target": "2090" }, { "key": "geid_144_18429", "source": "2837", "target": "8699" }, { "key": "geid_144_18430", "source": "1925", "target": "9225" }, { "key": "geid_144_18431", "source": "4408", "target": "5145" }, { "key": "geid_144_18432", "source": "8080", "target": "8759" }, { "key": "geid_144_18433", "source": "5073", "target": "8872" }, { "key": "geid_144_18434", "source": "3897", "target": "2011" }, { "key": "geid_144_18435", "source": "5362", "target": "7790" }, { "key": "geid_144_18436", "source": "6942", "target": "9739" }, { "key": "geid_144_18437", "source": "8586", "target": "2314" }, { "key": "geid_144_18438", "source": "6187", "target": "4500" }, { "key": "geid_144_18439", "source": "4750", "target": "8908" }, { "key": "geid_144_18440", "source": "9581", "target": "8555" }, { "key": "geid_144_18441", "source": "5882", "target": "5110" }, { "key": "geid_144_18442", "source": "8320", "target": "1351" }, { "key": "geid_144_18443", "source": "291", "target": "6281" }, { "key": "geid_144_18444", "source": "6515", "target": "1112" }, { "key": "geid_144_18445", "source": "719", "target": "3329" }, { "key": "geid_144_18446", "source": "5075", "target": "9583" }, { "key": "geid_144_18447", "source": "7327", "target": "2135" }, { "key": "geid_144_18448", "source": "711", "target": "21" }, { "key": "geid_144_18449", "source": "8700", "target": "8744" }, { "key": "geid_144_18450", "source": "5695", "target": "9664" }, { "key": "geid_144_18451", "source": "288", "target": "2245" }, { "key": "geid_144_18452", "source": "957", "target": "6525" }, { "key": "geid_144_18453", "source": "339", "target": "4592" }, { "key": "geid_144_18454", "source": "5296", "target": "9802" }, { "key": "geid_144_18455", "source": "6365", "target": "6180" }, { "key": "geid_144_18456", "source": "2612", "target": "9414" }, { "key": "geid_144_18457", "source": "6323", "target": "4609" }, { "key": "geid_144_18458", "source": "3662", "target": "1117" }, { "key": "geid_144_18459", "source": "2631", "target": "1927" }, { "key": "geid_144_18460", "source": "6251", "target": "5217" }, { "key": "geid_144_18461", "source": "9590", "target": "7804" }, { "key": "geid_144_18462", "source": "5620", "target": "4725" }, { "key": "geid_144_18463", "source": "7137", "target": "6104" }, { "key": "geid_144_18464", "source": "2204", "target": "9352" }, { "key": "geid_144_18465", "source": "8709", "target": "2949" }, { "key": "geid_144_18466", "source": "4651", "target": "6062" }, { "key": "geid_144_18467", "source": "4405", "target": "6798" }, { "key": "geid_144_18468", "source": "5351", "target": "2820" }, { "key": "geid_144_18469", "source": "6830", "target": "13" }, { "key": "geid_144_18470", "source": "8082", "target": "2307" }, { "key": "geid_144_18471", "source": "5361", "target": "5773" }, { "key": "geid_144_18472", "source": "3711", "target": "2343" }, { "key": "geid_144_18473", "source": "5402", "target": "4890" }, { "key": "geid_144_18474", "source": "4782", "target": "8754" }, { "key": "geid_144_18475", "source": "5172", "target": "703" }, { "key": "geid_144_18476", "source": "5566", "target": "9217" }, { "key": "geid_144_18477", "source": "7443", "target": "505" }, { "key": "geid_144_18478", "source": "1848", "target": "3384" }, { "key": "geid_144_18479", "source": "5645", "target": "4773" }, { "key": "geid_144_18480", "source": "585", "target": "9619" }, { "key": "geid_144_18481", "source": "7028", "target": "7488" }, { "key": "geid_144_18482", "source": "5389", "target": "8120" }, { "key": "geid_144_18483", "source": "7205", "target": "2046" }, { "key": "geid_144_18484", "source": "6224", "target": "8884" }, { "key": "geid_144_18485", "source": "606", "target": "3267" }, { "key": "geid_144_18486", "source": "7010", "target": "4487" }, { "key": "geid_144_18487", "source": "5295", "target": "1892" }, { "key": "geid_144_18488", "source": "3556", "target": "5039" }, { "key": "geid_144_18489", "source": "794", "target": "724" }, { "key": "geid_144_18490", "source": "5458", "target": "2546" }, { "key": "geid_144_18491", "source": "2800", "target": "3720" }, { "key": "geid_144_18492", "source": "6482", "target": "2314" }, { "key": "geid_144_18493", "source": "7249", "target": "4353" }, { "key": "geid_144_18494", "source": "3558", "target": "7844" }, { "key": "geid_144_18495", "source": "2107", "target": "6550" }, { "key": "geid_144_18496", "source": "5659", "target": "385" }, { "key": "geid_144_18497", "source": "2888", "target": "6219" }, { "key": "geid_144_18498", "source": "5449", "target": "2712" }, { "key": "geid_144_18499", "source": "7222", "target": "845" }, { "key": "geid_144_18500", "source": "2558", "target": "7214" }, { "key": "geid_144_18501", "source": "3292", "target": "273" }, { "key": "geid_144_18502", "source": "733", "target": "1520" }, { "key": "geid_144_18503", "source": "8768", "target": "1404" }, { "key": "geid_144_18504", "source": "8874", "target": "2336" }, { "key": "geid_144_18505", "source": "1197", "target": "80" }, { "key": "geid_144_18506", "source": "9819", "target": "3739" }, { "key": "geid_144_18507", "source": "1106", "target": "2609" }, { "key": "geid_144_18508", "source": "9178", "target": "6741" }, { "key": "geid_144_18509", "source": "1917", "target": "1703" }, { "key": "geid_144_18510", "source": "2948", "target": "7455" }, { "key": "geid_144_18511", "source": "1057", "target": "1228" }, { "key": "geid_144_18512", "source": "8640", "target": "4705" }, { "key": "geid_144_18513", "source": "1717", "target": "1234" }, { "key": "geid_144_18514", "source": "183", "target": "674" }, { "key": "geid_144_18515", "source": "7962", "target": "1683" }, { "key": "geid_144_18516", "source": "5767", "target": "531" }, { "key": "geid_144_18517", "source": "6247", "target": "6070" }, { "key": "geid_144_18518", "source": "6418", "target": "8621" }, { "key": "geid_144_18519", "source": "6749", "target": "8116" }, { "key": "geid_144_18520", "source": "797", "target": "5946" }, { "key": "geid_144_18521", "source": "2501", "target": "7606" }, { "key": "geid_144_18522", "source": "3624", "target": "118" }, { "key": "geid_144_18523", "source": "8910", "target": "1289" }, { "key": "geid_144_18524", "source": "2389", "target": "3102" }, { "key": "geid_144_18525", "source": "8783", "target": "5340" }, { "key": "geid_144_18526", "source": "7836", "target": "844" }, { "key": "geid_144_18527", "source": "792", "target": "5459" }, { "key": "geid_144_18528", "source": "2081", "target": "1547" }, { "key": "geid_144_18529", "source": "1366", "target": "1077" }, { "key": "geid_144_18530", "source": "180", "target": "3694" }, { "key": "geid_144_18531", "source": "2961", "target": "302" }, { "key": "geid_144_18532", "source": "4815", "target": "6221" }, { "key": "geid_144_18533", "source": "3419", "target": "7724" }, { "key": "geid_144_18534", "source": "7240", "target": "1927" }, { "key": "geid_144_18535", "source": "9814", "target": "2030" }, { "key": "geid_144_18536", "source": "2167", "target": "5524" }, { "key": "geid_144_18537", "source": "5360", "target": "6358" }, { "key": "geid_144_18538", "source": "3458", "target": "929" }, { "key": "geid_144_18539", "source": "8698", "target": "7887" }, { "key": "geid_144_18540", "source": "5903", "target": "9481" }, { "key": "geid_144_18541", "source": "5386", "target": "1998" }, { "key": "geid_144_18542", "source": "5078", "target": "5813" }, { "key": "geid_144_18543", "source": "4267", "target": "9002" }, { "key": "geid_144_18544", "source": "7942", "target": "1179" }, { "key": "geid_144_18545", "source": "6328", "target": "7372" }, { "key": "geid_144_18546", "source": "7696", "target": "5621" }, { "key": "geid_144_18547", "source": "1260", "target": "8819" }, { "key": "geid_144_18548", "source": "649", "target": "5140" }, { "key": "geid_144_18549", "source": "2718", "target": "5387" }, { "key": "geid_144_18550", "source": "746", "target": "6476" }, { "key": "geid_144_18551", "source": "4105", "target": "3642" }, { "key": "geid_144_18552", "source": "1679", "target": "5904" }, { "key": "geid_144_18553", "source": "7229", "target": "7981" }, { "key": "geid_144_18554", "source": "1194", "target": "1092" }, { "key": "geid_144_18555", "source": "8823", "target": "1774" }, { "key": "geid_144_18556", "source": "5973", "target": "3036" }, { "key": "geid_144_18557", "source": "2736", "target": "7179" }, { "key": "geid_144_18558", "source": "5684", "target": "9447" }, { "key": "geid_144_18559", "source": "7822", "target": "9537" }, { "key": "geid_144_18560", "source": "5405", "target": "6550" }, { "key": "geid_144_18561", "source": "1226", "target": "884" }, { "key": "geid_144_18562", "source": "7872", "target": "8378" }, { "key": "geid_144_18563", "source": "1411", "target": "5346" }, { "key": "geid_144_18564", "source": "3240", "target": "428" }, { "key": "geid_144_18565", "source": "3633", "target": "2182" }, { "key": "geid_144_18566", "source": "7857", "target": "595" }, { "key": "geid_144_18567", "source": "8868", "target": "1470" }, { "key": "geid_144_18568", "source": "6681", "target": "2196" }, { "key": "geid_144_18569", "source": "4970", "target": "7516" }, { "key": "geid_144_18570", "source": "5155", "target": "2416" }, { "key": "geid_144_18571", "source": "2605", "target": "547" }, { "key": "geid_144_18572", "source": "6817", "target": "8148" }, { "key": "geid_144_18573", "source": "996", "target": "2044" }, { "key": "geid_144_18574", "source": "2917", "target": "5933" }, { "key": "geid_144_18575", "source": "6451", "target": "6553" }, { "key": "geid_144_18576", "source": "9815", "target": "4431" }, { "key": "geid_144_18577", "source": "7202", "target": "3953" }, { "key": "geid_144_18578", "source": "4323", "target": "9283" }, { "key": "geid_144_18579", "source": "4321", "target": "4923" }, { "key": "geid_144_18580", "source": "3922", "target": "8427" }, { "key": "geid_144_18581", "source": "667", "target": "2248" }, { "key": "geid_144_18582", "source": "6413", "target": "7864" }, { "key": "geid_144_18583", "source": "2810", "target": "4744" }, { "key": "geid_144_18584", "source": "2876", "target": "9138" }, { "key": "geid_144_18585", "source": "9078", "target": "2078" }, { "key": "geid_144_18586", "source": "9238", "target": "9223" }, { "key": "geid_144_18587", "source": "5081", "target": "405" }, { "key": "geid_144_18588", "source": "4436", "target": "7658" }, { "key": "geid_144_18589", "source": "848", "target": "5438" }, { "key": "geid_144_18590", "source": "4388", "target": "1785" }, { "key": "geid_144_18591", "source": "3748", "target": "1783" }, { "key": "geid_144_18592", "source": "2121", "target": "596" }, { "key": "geid_144_18593", "source": "9385", "target": "6764" }, { "key": "geid_144_18594", "source": "9271", "target": "4406" }, { "key": "geid_144_18595", "source": "8224", "target": "7415" }, { "key": "geid_144_18596", "source": "4080", "target": "3583" }, { "key": "geid_144_18597", "source": "9022", "target": "1765" }, { "key": "geid_144_18598", "source": "5019", "target": "8885" }, { "key": "geid_144_18599", "source": "2346", "target": "9585" }, { "key": "geid_144_18600", "source": "7382", "target": "1893" }, { "key": "geid_144_18601", "source": "8730", "target": "3428" }, { "key": "geid_144_18602", "source": "4779", "target": "5282" }, { "key": "geid_144_18603", "source": "9383", "target": "3854" }, { "key": "geid_144_18604", "source": "5717", "target": "3385" }, { "key": "geid_144_18605", "source": "6276", "target": "7431" }, { "key": "geid_144_18606", "source": "9357", "target": "5567" }, { "key": "geid_144_18607", "source": "8631", "target": "5140" }, { "key": "geid_144_18608", "source": "1448", "target": "2606" }, { "key": "geid_144_18609", "source": "4775", "target": "8192" }, { "key": "geid_144_18610", "source": "8482", "target": "2414" }, { "key": "geid_144_18611", "source": "7112", "target": "9406" }, { "key": "geid_144_18612", "source": "848", "target": "1570" }, { "key": "geid_144_18613", "source": "5604", "target": "5051" }, { "key": "geid_144_18614", "source": "3334", "target": "9057" }, { "key": "geid_144_18615", "source": "1554", "target": "798" }, { "key": "geid_144_18616", "source": "6989", "target": "1334" }, { "key": "geid_144_18617", "source": "8401", "target": "2993" }, { "key": "geid_144_18618", "source": "7879", "target": "8463" }, { "key": "geid_144_18619", "source": "170", "target": "3605" }, { "key": "geid_144_18620", "source": "2816", "target": "8909" }, { "key": "geid_144_18621", "source": "7414", "target": "4453" }, { "key": "geid_144_18622", "source": "7580", "target": "5960" }, { "key": "geid_144_18623", "source": "4543", "target": "1209" }, { "key": "geid_144_18624", "source": "6508", "target": "6725" }, { "key": "geid_144_18625", "source": "5825", "target": "1920" }, { "key": "geid_144_18626", "source": "3121", "target": "9743" }, { "key": "geid_144_18627", "source": "3468", "target": "5988" }, { "key": "geid_144_18628", "source": "4779", "target": "952" }, { "key": "geid_144_18629", "source": "3014", "target": "1100" }, { "key": "geid_144_18630", "source": "6013", "target": "1626" }, { "key": "geid_144_18631", "source": "5289", "target": "6683" }, { "key": "geid_144_18632", "source": "1887", "target": "9344" }, { "key": "geid_144_18633", "source": "7838", "target": "1888" }, { "key": "geid_144_18634", "source": "6808", "target": "3599" }, { "key": "geid_144_18635", "source": "3224", "target": "6713" }, { "key": "geid_144_18636", "source": "4527", "target": "1123" }, { "key": "geid_144_18637", "source": "6306", "target": "2858" }, { "key": "geid_144_18638", "source": "8356", "target": "1339" }, { "key": "geid_144_18639", "source": "3244", "target": "7574" }, { "key": "geid_144_18640", "source": "5803", "target": "1542" }, { "key": "geid_144_18641", "source": "6072", "target": "7432" }, { "key": "geid_144_18642", "source": "7991", "target": "4017" }, { "key": "geid_144_18643", "source": "5988", "target": "7029" }, { "key": "geid_144_18644", "source": "5945", "target": "1396" }, { "key": "geid_144_18645", "source": "1079", "target": "1310" }, { "key": "geid_144_18646", "source": "4261", "target": "558" }, { "key": "geid_144_18647", "source": "6073", "target": "1406" }, { "key": "geid_144_18648", "source": "8974", "target": "6779" }, { "key": "geid_144_18649", "source": "3573", "target": "824" }, { "key": "geid_144_18650", "source": "6112", "target": "5096" }, { "key": "geid_144_18651", "source": "2747", "target": "51" }, { "key": "geid_144_18652", "source": "3293", "target": "4285" }, { "key": "geid_144_18653", "source": "2544", "target": "2733" }, { "key": "geid_144_18654", "source": "2696", "target": "719" }, { "key": "geid_144_18655", "source": "3463", "target": "3698" }, { "key": "geid_144_18656", "source": "1165", "target": "4504" }, { "key": "geid_144_18657", "source": "8609", "target": "2055" }, { "key": "geid_144_18658", "source": "8172", "target": "6090" }, { "key": "geid_144_18659", "source": "7696", "target": "8151" }, { "key": "geid_144_18660", "source": "8067", "target": "8126" }, { "key": "geid_144_18661", "source": "1431", "target": "5652" }, { "key": "geid_144_18662", "source": "7819", "target": "1540" }, { "key": "geid_144_18663", "source": "7580", "target": "1293" }, { "key": "geid_144_18664", "source": "8914", "target": "651" }, { "key": "geid_144_18665", "source": "3391", "target": "481" }, { "key": "geid_144_18666", "source": "8881", "target": "3836" }, { "key": "geid_144_18667", "source": "1400", "target": "8366" }, { "key": "geid_144_18668", "source": "8090", "target": "7256" }, { "key": "geid_144_18669", "source": "5470", "target": "3210" }, { "key": "geid_144_18670", "source": "9662", "target": "2761" }, { "key": "geid_144_18671", "source": "1318", "target": "8216" }, { "key": "geid_144_18672", "source": "9451", "target": "2780" }, { "key": "geid_144_18673", "source": "2762", "target": "1375" }, { "key": "geid_144_18674", "source": "5645", "target": "9566" }, { "key": "geid_144_18675", "source": "4904", "target": "3685" }, { "key": "geid_144_18676", "source": "6996", "target": "9753" }, { "key": "geid_144_18677", "source": "2565", "target": "6329" }, { "key": "geid_144_18678", "source": "3137", "target": "2222" }, { "key": "geid_144_18679", "source": "2846", "target": "4113" }, { "key": "geid_144_18680", "source": "2287", "target": "4356" }, { "key": "geid_144_18681", "source": "543", "target": "2267" }, { "key": "geid_144_18682", "source": "828", "target": "4077" }, { "key": "geid_144_18683", "source": "8741", "target": "1316" }, { "key": "geid_144_18684", "source": "3894", "target": "4677" }, { "key": "geid_144_18685", "source": "4188", "target": "7557" }, { "key": "geid_144_18686", "source": "5497", "target": "1847" }, { "key": "geid_144_18687", "source": "6211", "target": "5390" }, { "key": "geid_144_18688", "source": "2526", "target": "6467" }, { "key": "geid_144_18689", "source": "6594", "target": "6832" }, { "key": "geid_144_18690", "source": "6972", "target": "4009" }, { "key": "geid_144_18691", "source": "4560", "target": "9241" }, { "key": "geid_144_18692", "source": "5584", "target": "9796" }, { "key": "geid_144_18693", "source": "7907", "target": "4728" }, { "key": "geid_144_18694", "source": "6239", "target": "8134" }, { "key": "geid_144_18695", "source": "3541", "target": "2352" }, { "key": "geid_144_18696", "source": "9164", "target": "3387" }, { "key": "geid_144_18697", "source": "8151", "target": "7378" }, { "key": "geid_144_18698", "source": "1209", "target": "1679" }, { "key": "geid_144_18699", "source": "4529", "target": "4533" }, { "key": "geid_144_18700", "source": "7141", "target": "3833" }, { "key": "geid_144_18701", "source": "6293", "target": "8687" }, { "key": "geid_144_18702", "source": "5225", "target": "9606" }, { "key": "geid_144_18703", "source": "405", "target": "2994" }, { "key": "geid_144_18704", "source": "5104", "target": "5329" }, { "key": "geid_144_18705", "source": "9473", "target": "2344" }, { "key": "geid_144_18706", "source": "3234", "target": "7487" }, { "key": "geid_144_18707", "source": "217", "target": "2863" }, { "key": "geid_144_18708", "source": "4596", "target": "401" }, { "key": "geid_144_18709", "source": "2039", "target": "869" }, { "key": "geid_144_18710", "source": "3023", "target": "6117" }, { "key": "geid_144_18711", "source": "2646", "target": "2277" }, { "key": "geid_144_18712", "source": "7470", "target": "5773" }, { "key": "geid_144_18713", "source": "2346", "target": "1002" }, { "key": "geid_144_18714", "source": "1967", "target": "1327" }, { "key": "geid_144_18715", "source": "933", "target": "9655" }, { "key": "geid_144_18716", "source": "6204", "target": "4593" }, { "key": "geid_144_18717", "source": "5466", "target": "1645" }, { "key": "geid_144_18718", "source": "9671", "target": "7415" }, { "key": "geid_144_18719", "source": "2624", "target": "7526" }, { "key": "geid_144_18720", "source": "1562", "target": "7930" }, { "key": "geid_144_18721", "source": "1195", "target": "4922" }, { "key": "geid_144_18722", "source": "6205", "target": "7593" }, { "key": "geid_144_18723", "source": "5771", "target": "42" }, { "key": "geid_144_18724", "source": "5468", "target": "5870" }, { "key": "geid_144_18725", "source": "9627", "target": "9063" }, { "key": "geid_144_18726", "source": "7107", "target": "4374" }, { "key": "geid_144_18727", "source": "2810", "target": "7050" }, { "key": "geid_144_18728", "source": "6730", "target": "2217" }, { "key": "geid_144_18729", "source": "8119", "target": "9510" }, { "key": "geid_144_18730", "source": "4425", "target": "2212" }, { "key": "geid_144_18731", "source": "1246", "target": "8111" }, { "key": "geid_144_18732", "source": "8729", "target": "1064" }, { "key": "geid_144_18733", "source": "8692", "target": "9909" }, { "key": "geid_144_18734", "source": "9318", "target": "1119" }, { "key": "geid_144_18735", "source": "9479", "target": "3693" }, { "key": "geid_144_18736", "source": "2750", "target": "5312" }, { "key": "geid_144_18737", "source": "8458", "target": "6661" }, { "key": "geid_144_18738", "source": "9992", "target": "8287" }, { "key": "geid_144_18739", "source": "3455", "target": "3567" }, { "key": "geid_144_18740", "source": "6641", "target": "9040" }, { "key": "geid_144_18741", "source": "5334", "target": "135" }, { "key": "geid_144_18742", "source": "1142", "target": "1498" }, { "key": "geid_144_18743", "source": "7726", "target": "2321" }, { "key": "geid_144_18744", "source": "1245", "target": "7380" }, { "key": "geid_144_18745", "source": "8199", "target": "1922" }, { "key": "geid_144_18746", "source": "2492", "target": "6949" }, { "key": "geid_144_18747", "source": "7050", "target": "7586" }, { "key": "geid_144_18748", "source": "1423", "target": "771" }, { "key": "geid_144_18749", "source": "2721", "target": "6422" }, { "key": "geid_144_18750", "source": "8005", "target": "116" }, { "key": "geid_144_18751", "source": "2821", "target": "6868" }, { "key": "geid_144_18752", "source": "8749", "target": "7328" }, { "key": "geid_144_18753", "source": "9131", "target": "2250" }, { "key": "geid_144_18754", "source": "3197", "target": "7130" }, { "key": "geid_144_18755", "source": "868", "target": "8711" }, { "key": "geid_144_18756", "source": "8827", "target": "5508" }, { "key": "geid_144_18757", "source": "4086", "target": "2564" }, { "key": "geid_144_18758", "source": "7070", "target": "8095" }, { "key": "geid_144_18759", "source": "1362", "target": "9724" }, { "key": "geid_144_18760", "source": "7301", "target": "9963" }, { "key": "geid_144_18761", "source": "1513", "target": "531" }, { "key": "geid_144_18762", "source": "5701", "target": "492" }, { "key": "geid_144_18763", "source": "6842", "target": "2028" }, { "key": "geid_144_18764", "source": "9965", "target": "9159" }, { "key": "geid_144_18765", "source": "8520", "target": "5942" }, { "key": "geid_144_18766", "source": "3705", "target": "585" }, { "key": "geid_144_18767", "source": "2256", "target": "2486" }, { "key": "geid_144_18768", "source": "5887", "target": "4772" }, { "key": "geid_144_18769", "source": "8197", "target": "7699" }, { "key": "geid_144_18770", "source": "5301", "target": "7459" }, { "key": "geid_144_18771", "source": "4035", "target": "4159" }, { "key": "geid_144_18772", "source": "7052", "target": "263" }, { "key": "geid_144_18773", "source": "5529", "target": "9028" }, { "key": "geid_144_18774", "source": "1765", "target": "3435" }, { "key": "geid_144_18775", "source": "9331", "target": "6852" }, { "key": "geid_144_18776", "source": "5441", "target": "9143" }, { "key": "geid_144_18777", "source": "7888", "target": "8505" }, { "key": "geid_144_18778", "source": "5854", "target": "7555" }, { "key": "geid_144_18779", "source": "6343", "target": "2185" }, { "key": "geid_144_18780", "source": "8252", "target": "8867" }, { "key": "geid_144_18781", "source": "2447", "target": "6064" }, { "key": "geid_144_18782", "source": "991", "target": "231" }, { "key": "geid_144_18783", "source": "3886", "target": "5913" }, { "key": "geid_144_18784", "source": "1814", "target": "6191" }, { "key": "geid_144_18785", "source": "1583", "target": "2808" }, { "key": "geid_144_18786", "source": "2954", "target": "1881" }, { "key": "geid_144_18787", "source": "7123", "target": "4816" }, { "key": "geid_144_18788", "source": "6960", "target": "5861" }, { "key": "geid_144_18789", "source": "9526", "target": "2505" }, { "key": "geid_144_18790", "source": "5891", "target": "8876" }, { "key": "geid_144_18791", "source": "6133", "target": "731" }, { "key": "geid_144_18792", "source": "8666", "target": "6285" }, { "key": "geid_144_18793", "source": "603", "target": "7460" }, { "key": "geid_144_18794", "source": "6049", "target": "9968" }, { "key": "geid_144_18795", "source": "5264", "target": "3778" }, { "key": "geid_144_18796", "source": "3649", "target": "9568" }, { "key": "geid_144_18797", "source": "879", "target": "3053" }, { "key": "geid_144_18798", "source": "6185", "target": "6994" }, { "key": "geid_144_18799", "source": "8574", "target": "6027" }, { "key": "geid_144_18800", "source": "582", "target": "1705" }, { "key": "geid_144_18801", "source": "4477", "target": "866" }, { "key": "geid_144_18802", "source": "9392", "target": "6247" }, { "key": "geid_144_18803", "source": "9992", "target": "8730" }, { "key": "geid_144_18804", "source": "9131", "target": "5564" }, { "key": "geid_144_18805", "source": "3418", "target": "6724" }, { "key": "geid_144_18806", "source": "4078", "target": "886" }, { "key": "geid_144_18807", "source": "7839", "target": "7315" }, { "key": "geid_144_18808", "source": "6979", "target": "4775" }, { "key": "geid_144_18809", "source": "8068", "target": "6452" }, { "key": "geid_144_18810", "source": "4132", "target": "2029" }, { "key": "geid_144_18811", "source": "6942", "target": "2617" }, { "key": "geid_144_18812", "source": "8245", "target": "5967" }, { "key": "geid_144_18813", "source": "6288", "target": "6644" }, { "key": "geid_144_18814", "source": "8645", "target": "1198" }, { "key": "geid_144_18815", "source": "9015", "target": "660" }, { "key": "geid_144_18816", "source": "5137", "target": "7539" }, { "key": "geid_144_18817", "source": "321", "target": "3410" }, { "key": "geid_144_18818", "source": "9620", "target": "6977" }, { "key": "geid_144_18819", "source": "4253", "target": "4508" }, { "key": "geid_144_18820", "source": "1738", "target": "9398" }, { "key": "geid_144_18821", "source": "5588", "target": "7644" }, { "key": "geid_144_18822", "source": "2925", "target": "172" }, { "key": "geid_144_18823", "source": "5242", "target": "8603" }, { "key": "geid_144_18824", "source": "1759", "target": "4349" }, { "key": "geid_144_18825", "source": "5183", "target": "9508" }, { "key": "geid_144_18826", "source": "1975", "target": "2865" }, { "key": "geid_144_18827", "source": "7608", "target": "4368" }, { "key": "geid_144_18828", "source": "8015", "target": "7335" }, { "key": "geid_144_18829", "source": "5713", "target": "7952" }, { "key": "geid_144_18830", "source": "6323", "target": "7438" }, { "key": "geid_144_18831", "source": "1003", "target": "4042" }, { "key": "geid_144_18832", "source": "2466", "target": "4303" }, { "key": "geid_144_18833", "source": "8792", "target": "9122" }, { "key": "geid_144_18834", "source": "4248", "target": "9226" }, { "key": "geid_144_18835", "source": "9709", "target": "6990" }, { "key": "geid_144_18836", "source": "9922", "target": "7481" }, { "key": "geid_144_18837", "source": "8735", "target": "3015" }, { "key": "geid_144_18838", "source": "1942", "target": "1712" }, { "key": "geid_144_18839", "source": "158", "target": "4405" }, { "key": "geid_144_18840", "source": "7261", "target": "2760" }, { "key": "geid_144_18841", "source": "5224", "target": "4461" }, { "key": "geid_144_18842", "source": "1394", "target": "7543" }, { "key": "geid_144_18843", "source": "947", "target": "2587" }, { "key": "geid_144_18844", "source": "5428", "target": "4788" }, { "key": "geid_144_18845", "source": "3436", "target": "5071" }, { "key": "geid_144_18846", "source": "6426", "target": "4643" }, { "key": "geid_144_18847", "source": "6474", "target": "6320" }, { "key": "geid_144_18848", "source": "727", "target": "4529" }, { "key": "geid_144_18849", "source": "5144", "target": "5004" }, { "key": "geid_144_18850", "source": "3747", "target": "1131" }, { "key": "geid_144_18851", "source": "5029", "target": "4484" }, { "key": "geid_144_18852", "source": "830", "target": "2105" }, { "key": "geid_144_18853", "source": "4961", "target": "8977" }, { "key": "geid_144_18854", "source": "492", "target": "5615" }, { "key": "geid_144_18855", "source": "6769", "target": "9818" }, { "key": "geid_144_18856", "source": "9765", "target": "1287" }, { "key": "geid_144_18857", "source": "5967", "target": "5581" }, { "key": "geid_144_18858", "source": "4128", "target": "8539" }, { "key": "geid_144_18859", "source": "1313", "target": "7062" }, { "key": "geid_144_18860", "source": "1464", "target": "8171" }, { "key": "geid_144_18861", "source": "8976", "target": "9807" }, { "key": "geid_144_18862", "source": "3513", "target": "8977" }, { "key": "geid_144_18863", "source": "3443", "target": "2787" }, { "key": "geid_144_18864", "source": "4888", "target": "1841" }, { "key": "geid_144_18865", "source": "6829", "target": "4984" }, { "key": "geid_144_18866", "source": "820", "target": "5769" }, { "key": "geid_144_18867", "source": "7571", "target": "7631" }, { "key": "geid_144_18868", "source": "1759", "target": "4836" }, { "key": "geid_144_18869", "source": "6578", "target": "902" }, { "key": "geid_144_18870", "source": "8726", "target": "7102" }, { "key": "geid_144_18871", "source": "5038", "target": "3611" }, { "key": "geid_144_18872", "source": "9815", "target": "6850" }, { "key": "geid_144_18873", "source": "5699", "target": "6586" }, { "key": "geid_144_18874", "source": "6720", "target": "4213" }, { "key": "geid_144_18875", "source": "8604", "target": "5490" }, { "key": "geid_144_18876", "source": "717", "target": "3321" }, { "key": "geid_144_18877", "source": "3357", "target": "7438" }, { "key": "geid_144_18878", "source": "7217", "target": "9880" }, { "key": "geid_144_18879", "source": "2958", "target": "2807" }, { "key": "geid_144_18880", "source": "7624", "target": "170" }, { "key": "geid_144_18881", "source": "8836", "target": "615" }, { "key": "geid_144_18882", "source": "3218", "target": "8822" }, { "key": "geid_144_18883", "source": "6049", "target": "723" }, { "key": "geid_144_18884", "source": "3766", "target": "5572" }, { "key": "geid_144_18885", "source": "7212", "target": "5213" }, { "key": "geid_144_18886", "source": "971", "target": "9393" }, { "key": "geid_144_18887", "source": "6255", "target": "1674" }, { "key": "geid_144_18888", "source": "7756", "target": "3532" }, { "key": "geid_144_18889", "source": "4102", "target": "6928" }, { "key": "geid_144_18890", "source": "2334", "target": "1496" }, { "key": "geid_144_18891", "source": "5785", "target": "8481" }, { "key": "geid_144_18892", "source": "5535", "target": "3811" }, { "key": "geid_144_18893", "source": "6444", "target": "2353" }, { "key": "geid_144_18894", "source": "4089", "target": "4946" }, { "key": "geid_144_18895", "source": "6036", "target": "6035" }, { "key": "geid_144_18896", "source": "6128", "target": "2758" }, { "key": "geid_144_18897", "source": "2392", "target": "3386" }, { "key": "geid_144_18898", "source": "6124", "target": "7230" }, { "key": "geid_144_18899", "source": "2201", "target": "5389" }, { "key": "geid_144_18900", "source": "4524", "target": "7184" }, { "key": "geid_144_18901", "source": "1356", "target": "2065" }, { "key": "geid_144_18902", "source": "6335", "target": "6563" }, { "key": "geid_144_18903", "source": "9509", "target": "1727" }, { "key": "geid_144_18904", "source": "6898", "target": "3874" }, { "key": "geid_144_18905", "source": "8950", "target": "5728" }, { "key": "geid_144_18906", "source": "3101", "target": "3118" }, { "key": "geid_144_18907", "source": "5653", "target": "289" }, { "key": "geid_144_18908", "source": "673", "target": "3941" }, { "key": "geid_144_18909", "source": "8243", "target": "722" }, { "key": "geid_144_18910", "source": "4227", "target": "9019" }, { "key": "geid_144_18911", "source": "6538", "target": "3257" }, { "key": "geid_144_18912", "source": "8501", "target": "1866" }, { "key": "geid_144_18913", "source": "5923", "target": "5516" }, { "key": "geid_144_18914", "source": "4369", "target": "5643" }, { "key": "geid_144_18915", "source": "2681", "target": "7922" }, { "key": "geid_144_18916", "source": "2356", "target": "5656" }, { "key": "geid_144_18917", "source": "7707", "target": "7927" }, { "key": "geid_144_18918", "source": "1795", "target": "2390" }, { "key": "geid_144_18919", "source": "8321", "target": "1380" }, { "key": "geid_144_18920", "source": "8919", "target": "2207" }, { "key": "geid_144_18921", "source": "666", "target": "3471" }, { "key": "geid_144_18922", "source": "8077", "target": "7589" }, { "key": "geid_144_18923", "source": "3811", "target": "7827" }, { "key": "geid_144_18924", "source": "6438", "target": "9814" }, { "key": "geid_144_18925", "source": "8054", "target": "6697" }, { "key": "geid_144_18926", "source": "5484", "target": "8109" }, { "key": "geid_144_18927", "source": "6779", "target": "639" }, { "key": "geid_144_18928", "source": "7767", "target": "1849" }, { "key": "geid_144_18929", "source": "9214", "target": "411" }, { "key": "geid_144_18930", "source": "1653", "target": "390" }, { "key": "geid_144_18931", "source": "2167", "target": "807" }, { "key": "geid_144_18932", "source": "4385", "target": "1321" }, { "key": "geid_144_18933", "source": "611", "target": "2785" }, { "key": "geid_144_18934", "source": "5451", "target": "1182" }, { "key": "geid_144_18935", "source": "200", "target": "2053" }, { "key": "geid_144_18936", "source": "7896", "target": "6856" }, { "key": "geid_144_18937", "source": "9895", "target": "4934" }, { "key": "geid_144_18938", "source": "685", "target": "4269" }, { "key": "geid_144_18939", "source": "9652", "target": "3892" }, { "key": "geid_144_18940", "source": "3243", "target": "5519" }, { "key": "geid_144_18941", "source": "693", "target": "7420" }, { "key": "geid_144_18942", "source": "9074", "target": "24" }, { "key": "geid_144_18943", "source": "283", "target": "5501" }, { "key": "geid_144_18944", "source": "774", "target": "3427" }, { "key": "geid_144_18945", "source": "6645", "target": "1204" }, { "key": "geid_144_18946", "source": "8214", "target": "3008" }, { "key": "geid_144_18947", "source": "8411", "target": "1763" }, { "key": "geid_144_18948", "source": "2843", "target": "6232" }, { "key": "geid_144_18949", "source": "6335", "target": "2413" }, { "key": "geid_144_18950", "source": "4216", "target": "7375" }, { "key": "geid_144_18951", "source": "5681", "target": "3168" }, { "key": "geid_144_18952", "source": "7684", "target": "6376" }, { "key": "geid_144_18953", "source": "8476", "target": "2945" }, { "key": "geid_144_18954", "source": "2650", "target": "7166" }, { "key": "geid_144_18955", "source": "896", "target": "1014" }, { "key": "geid_144_18956", "source": "9826", "target": "3209" }, { "key": "geid_144_18957", "source": "6118", "target": "9592" }, { "key": "geid_144_18958", "source": "36", "target": "820" }, { "key": "geid_144_18959", "source": "4363", "target": "3303" }, { "key": "geid_144_18960", "source": "9453", "target": "3720" }, { "key": "geid_144_18961", "source": "3820", "target": "1759" }, { "key": "geid_144_18962", "source": "9658", "target": "6842" }, { "key": "geid_144_18963", "source": "1419", "target": "6217" }, { "key": "geid_144_18964", "source": "4716", "target": "561" }, { "key": "geid_144_18965", "source": "3605", "target": "4862" }, { "key": "geid_144_18966", "source": "9603", "target": "1973" }, { "key": "geid_144_18967", "source": "6138", "target": "1295" }, { "key": "geid_144_18968", "source": "3775", "target": "3439" }, { "key": "geid_144_18969", "source": "7261", "target": "48" }, { "key": "geid_144_18970", "source": "6814", "target": "413" }, { "key": "geid_144_18971", "source": "8197", "target": "342" }, { "key": "geid_144_18972", "source": "8323", "target": "5886" }, { "key": "geid_144_18973", "source": "2275", "target": "3381" }, { "key": "geid_144_18974", "source": "2965", "target": "8445" }, { "key": "geid_144_18975", "source": "1714", "target": "9012" }, { "key": "geid_144_18976", "source": "5487", "target": "622" }, { "key": "geid_144_18977", "source": "5502", "target": "5835" }, { "key": "geid_144_18978", "source": "8827", "target": "7244" }, { "key": "geid_144_18979", "source": "2559", "target": "2119" }, { "key": "geid_144_18980", "source": "5015", "target": "3937" }, { "key": "geid_144_18981", "source": "3916", "target": "3679" }, { "key": "geid_144_18982", "source": "649", "target": "9418" }, { "key": "geid_144_18983", "source": "3976", "target": "6629" }, { "key": "geid_144_18984", "source": "603", "target": "2652" }, { "key": "geid_144_18985", "source": "9154", "target": "7525" }, { "key": "geid_144_18986", "source": "3091", "target": "2847" }, { "key": "geid_144_18987", "source": "6488", "target": "7317" }, { "key": "geid_144_18988", "source": "1984", "target": "6503" }, { "key": "geid_144_18989", "source": "7031", "target": "2169" }, { "key": "geid_144_18990", "source": "3368", "target": "9271" }, { "key": "geid_144_18991", "source": "3744", "target": "9346" }, { "key": "geid_144_18992", "source": "7870", "target": "5641" }, { "key": "geid_144_18993", "source": "2311", "target": "6367" }, { "key": "geid_144_18994", "source": "2506", "target": "8531" }, { "key": "geid_144_18995", "source": "9406", "target": "4160" }, { "key": "geid_144_18996", "source": "6234", "target": "461" }, { "key": "geid_144_18997", "source": "4318", "target": "4398" }, { "key": "geid_144_18998", "source": "2349", "target": "5406" }, { "key": "geid_144_18999", "source": "4283", "target": "5545" }, { "key": "geid_144_19000", "source": "8017", "target": "9854" }, { "key": "geid_144_19001", "source": "4177", "target": "1196" }, { "key": "geid_144_19002", "source": "3912", "target": "4306" }, { "key": "geid_144_19003", "source": "9650", "target": "7516" }, { "key": "geid_144_19004", "source": "8816", "target": "676" }, { "key": "geid_144_19005", "source": "2168", "target": "4320" }, { "key": "geid_144_19006", "source": "3324", "target": "6219" }, { "key": "geid_144_19007", "source": "349", "target": "3378" }, { "key": "geid_144_19008", "source": "78", "target": "2614" }, { "key": "geid_144_19009", "source": "1296", "target": "9772" }, { "key": "geid_144_19010", "source": "6886", "target": "356" }, { "key": "geid_144_19011", "source": "130", "target": "9917" }, { "key": "geid_144_19012", "source": "9651", "target": "5075" }, { "key": "geid_144_19013", "source": "3618", "target": "8169" }, { "key": "geid_144_19014", "source": "981", "target": "4442" }, { "key": "geid_144_19015", "source": "6699", "target": "5928" }, { "key": "geid_144_19016", "source": "2687", "target": "9189" }, { "key": "geid_144_19017", "source": "304", "target": "8983" }, { "key": "geid_144_19018", "source": "1518", "target": "1426" }, { "key": "geid_144_19019", "source": "2744", "target": "2444" }, { "key": "geid_144_19020", "source": "1738", "target": "8437" }, { "key": "geid_144_19021", "source": "7008", "target": "5830" }, { "key": "geid_144_19022", "source": "2010", "target": "4255" }, { "key": "geid_144_19023", "source": "4973", "target": "4575" }, { "key": "geid_144_19024", "source": "3375", "target": "5120" }, { "key": "geid_144_19025", "source": "5270", "target": "6789" }, { "key": "geid_144_19026", "source": "6149", "target": "5066" }, { "key": "geid_144_19027", "source": "8707", "target": "4791" }, { "key": "geid_144_19028", "source": "9687", "target": "6170" }, { "key": "geid_144_19029", "source": "8976", "target": "8505" }, { "key": "geid_144_19030", "source": "9987", "target": "565" }, { "key": "geid_144_19031", "source": "1232", "target": "5408" }, { "key": "geid_144_19032", "source": "8683", "target": "2655" }, { "key": "geid_144_19033", "source": "4223", "target": "1236" }, { "key": "geid_144_19034", "source": "55", "target": "4754" }, { "key": "geid_144_19035", "source": "5250", "target": "6567" }, { "key": "geid_144_19036", "source": "8315", "target": "7267" }, { "key": "geid_144_19037", "source": "2610", "target": "1379" }, { "key": "geid_144_19038", "source": "1959", "target": "3759" }, { "key": "geid_144_19039", "source": "9131", "target": "9869" }, { "key": "geid_144_19040", "source": "1920", "target": "3475" }, { "key": "geid_144_19041", "source": "3465", "target": "795" }, { "key": "geid_144_19042", "source": "3523", "target": "2200" }, { "key": "geid_144_19043", "source": "4286", "target": "3992" }, { "key": "geid_144_19044", "source": "4844", "target": "1655" }, { "key": "geid_144_19045", "source": "4200", "target": "1692" }, { "key": "geid_144_19046", "source": "218", "target": "5758" }, { "key": "geid_144_19047", "source": "8326", "target": "6593" }, { "key": "geid_144_19048", "source": "954", "target": "1589" }, { "key": "geid_144_19049", "source": "9110", "target": "7871" }, { "key": "geid_144_19050", "source": "7084", "target": "7051" }, { "key": "geid_144_19051", "source": "8503", "target": "2107" }, { "key": "geid_144_19052", "source": "5776", "target": "4215" }, { "key": "geid_144_19053", "source": "2530", "target": "6392" }, { "key": "geid_144_19054", "source": "6771", "target": "8975" }, { "key": "geid_144_19055", "source": "1554", "target": "9653" }, { "key": "geid_144_19056", "source": "820", "target": "1445" }, { "key": "geid_144_19057", "source": "4904", "target": "5251" }, { "key": "geid_144_19058", "source": "3621", "target": "3166" }, { "key": "geid_144_19059", "source": "5386", "target": "4790" }, { "key": "geid_144_19060", "source": "6629", "target": "3921" }, { "key": "geid_144_19061", "source": "3891", "target": "399" }, { "key": "geid_144_19062", "source": "3872", "target": "6325" }, { "key": "geid_144_19063", "source": "6352", "target": "6301" }, { "key": "geid_144_19064", "source": "7602", "target": "8523" }, { "key": "geid_144_19065", "source": "7991", "target": "55" }, { "key": "geid_144_19066", "source": "3852", "target": "70" }, { "key": "geid_144_19067", "source": "2429", "target": "5940" }, { "key": "geid_144_19068", "source": "2599", "target": "2315" }, { "key": "geid_144_19069", "source": "3364", "target": "982" }, { "key": "geid_144_19070", "source": "5542", "target": "9136" }, { "key": "geid_144_19071", "source": "2739", "target": "8979" }, { "key": "geid_144_19072", "source": "3635", "target": "8531" }, { "key": "geid_144_19073", "source": "3849", "target": "1494" }, { "key": "geid_144_19074", "source": "8028", "target": "5824" }, { "key": "geid_144_19075", "source": "9545", "target": "4448" }, { "key": "geid_144_19076", "source": "6307", "target": "6125" }, { "key": "geid_144_19077", "source": "8759", "target": "6448" }, { "key": "geid_144_19078", "source": "8265", "target": "2595" }, { "key": "geid_144_19079", "source": "8644", "target": "8747" }, { "key": "geid_144_19080", "source": "7946", "target": "1636" }, { "key": "geid_144_19081", "source": "2736", "target": "1510" }, { "key": "geid_144_19082", "source": "2784", "target": "7375" }, { "key": "geid_144_19083", "source": "1430", "target": "3314" }, { "key": "geid_144_19084", "source": "1182", "target": "4920" }, { "key": "geid_144_19085", "source": "1711", "target": "2047" }, { "key": "geid_144_19086", "source": "666", "target": "6158" }, { "key": "geid_144_19087", "source": "8738", "target": "3792" }, { "key": "geid_144_19088", "source": "69", "target": "5979" }, { "key": "geid_144_19089", "source": "4703", "target": "9997" }, { "key": "geid_144_19090", "source": "2832", "target": "3982" }, { "key": "geid_144_19091", "source": "5415", "target": "3589" }, { "key": "geid_144_19092", "source": "6508", "target": "960" }, { "key": "geid_144_19093", "source": "7054", "target": "5580" }, { "key": "geid_144_19094", "source": "8384", "target": "8249" }, { "key": "geid_144_19095", "source": "3754", "target": "5414" }, { "key": "geid_144_19096", "source": "2854", "target": "5016" }, { "key": "geid_144_19097", "source": "7617", "target": "5658" }, { "key": "geid_144_19098", "source": "531", "target": "8345" }, { "key": "geid_144_19099", "source": "869", "target": "7187" }, { "key": "geid_144_19100", "source": "7616", "target": "8563" }, { "key": "geid_144_19101", "source": "3806", "target": "2816" }, { "key": "geid_144_19102", "source": "5404", "target": "9625" }, { "key": "geid_144_19103", "source": "1661", "target": "4851" }, { "key": "geid_144_19104", "source": "7308", "target": "5924" }, { "key": "geid_144_19105", "source": "6303", "target": "9445" }, { "key": "geid_144_19106", "source": "2270", "target": "4832" }, { "key": "geid_144_19107", "source": "2580", "target": "4789" }, { "key": "geid_144_19108", "source": "4507", "target": "2494" }, { "key": "geid_144_19109", "source": "3996", "target": "370" }, { "key": "geid_144_19110", "source": "383", "target": "207" }, { "key": "geid_144_19111", "source": "7391", "target": "2387" }, { "key": "geid_144_19112", "source": "5264", "target": "6024" }, { "key": "geid_144_19113", "source": "7505", "target": "4942" }, { "key": "geid_144_19114", "source": "6793", "target": "8524" }, { "key": "geid_144_19115", "source": "8308", "target": "6445" }, { "key": "geid_144_19116", "source": "7822", "target": "2561" }, { "key": "geid_144_19117", "source": "5135", "target": "5863" }, { "key": "geid_144_19118", "source": "6122", "target": "4845" }, { "key": "geid_144_19119", "source": "732", "target": "6714" }, { "key": "geid_144_19120", "source": "9641", "target": "4681" }, { "key": "geid_144_19121", "source": "579", "target": "1236" }, { "key": "geid_144_19122", "source": "6473", "target": "4828" }, { "key": "geid_144_19123", "source": "4151", "target": "564" }, { "key": "geid_144_19124", "source": "9134", "target": "892" }, { "key": "geid_144_19125", "source": "2075", "target": "7670" }, { "key": "geid_144_19126", "source": "1060", "target": "4415" }, { "key": "geid_144_19127", "source": "1154", "target": "3388" }, { "key": "geid_144_19128", "source": "2562", "target": "1013" }, { "key": "geid_144_19129", "source": "3484", "target": "7410" }, { "key": "geid_144_19130", "source": "4791", "target": "9245" }, { "key": "geid_144_19131", "source": "9233", "target": "1689" }, { "key": "geid_144_19132", "source": "1257", "target": "3601" }, { "key": "geid_144_19133", "source": "6142", "target": "4638" }, { "key": "geid_144_19134", "source": "6420", "target": "7310" }, { "key": "geid_144_19135", "source": "2949", "target": "3671" }, { "key": "geid_144_19136", "source": "9994", "target": "4785" }, { "key": "geid_144_19137", "source": "1255", "target": "618" }, { "key": "geid_144_19138", "source": "650", "target": "7497" }, { "key": "geid_144_19139", "source": "8770", "target": "1692" }, { "key": "geid_144_19140", "source": "7162", "target": "9468" }, { "key": "geid_144_19141", "source": "9334", "target": "2607" }, { "key": "geid_144_19142", "source": "1197", "target": "2018" }, { "key": "geid_144_19143", "source": "8862", "target": "1673" }, { "key": "geid_144_19144", "source": "5099", "target": "4624" }, { "key": "geid_144_19145", "source": "8570", "target": "6160" }, { "key": "geid_144_19146", "source": "6349", "target": "9922" }, { "key": "geid_144_19147", "source": "959", "target": "3327" }, { "key": "geid_144_19148", "source": "2714", "target": "4052" }, { "key": "geid_144_19149", "source": "3988", "target": "9504" }, { "key": "geid_144_19150", "source": "5953", "target": "8265" }, { "key": "geid_144_19151", "source": "4687", "target": "2287" }, { "key": "geid_144_19152", "source": "988", "target": "6548" }, { "key": "geid_144_19153", "source": "5295", "target": "6112" }, { "key": "geid_144_19154", "source": "9347", "target": "3017" }, { "key": "geid_144_19155", "source": "6323", "target": "1044" }, { "key": "geid_144_19156", "source": "1091", "target": "1741" }, { "key": "geid_144_19157", "source": "9003", "target": "4461" }, { "key": "geid_144_19158", "source": "7331", "target": "5328" }, { "key": "geid_144_19159", "source": "2211", "target": "6804" }, { "key": "geid_144_19160", "source": "696", "target": "3852" }, { "key": "geid_144_19161", "source": "3276", "target": "5002" }, { "key": "geid_144_19162", "source": "2156", "target": "617" }, { "key": "geid_144_19163", "source": "69", "target": "6789" }, { "key": "geid_144_19164", "source": "7700", "target": "3205" }, { "key": "geid_144_19165", "source": "367", "target": "9523" }, { "key": "geid_144_19166", "source": "5049", "target": "8602" }, { "key": "geid_144_19167", "source": "5318", "target": "9690" }, { "key": "geid_144_19168", "source": "2347", "target": "1443" }, { "key": "geid_144_19169", "source": "1992", "target": "9952" }, { "key": "geid_144_19170", "source": "5880", "target": "3699" }, { "key": "geid_144_19171", "source": "6528", "target": "4051" }, { "key": "geid_144_19172", "source": "4583", "target": "6929" }, { "key": "geid_144_19173", "source": "3282", "target": "5872" }, { "key": "geid_144_19174", "source": "6814", "target": "7721" }, { "key": "geid_144_19175", "source": "9593", "target": "7292" }, { "key": "geid_144_19176", "source": "2653", "target": "6276" }, { "key": "geid_144_19177", "source": "2845", "target": "7312" }, { "key": "geid_144_19178", "source": "7880", "target": "3140" }, { "key": "geid_144_19179", "source": "5763", "target": "8281" }, { "key": "geid_144_19180", "source": "2482", "target": "2261" }, { "key": "geid_144_19181", "source": "8932", "target": "1194" }, { "key": "geid_144_19182", "source": "6212", "target": "608" }, { "key": "geid_144_19183", "source": "5407", "target": "503" }, { "key": "geid_144_19184", "source": "9684", "target": "257" }, { "key": "geid_144_19185", "source": "8385", "target": "4682" }, { "key": "geid_144_19186", "source": "7681", "target": "5540" }, { "key": "geid_144_19187", "source": "9421", "target": "4122" }, { "key": "geid_144_19188", "source": "2806", "target": "9779" }, { "key": "geid_144_19189", "source": "7412", "target": "4119" }, { "key": "geid_144_19190", "source": "8443", "target": "7746" }, { "key": "geid_144_19191", "source": "7792", "target": "7158" }, { "key": "geid_144_19192", "source": "8755", "target": "1403" }, { "key": "geid_144_19193", "source": "9107", "target": "3661" }, { "key": "geid_144_19194", "source": "7646", "target": "2868" }, { "key": "geid_144_19195", "source": "9350", "target": "1476" }, { "key": "geid_144_19196", "source": "3316", "target": "8175" }, { "key": "geid_144_19197", "source": "7719", "target": "1309" }, { "key": "geid_144_19198", "source": "1397", "target": "9992" }, { "key": "geid_144_19199", "source": "4998", "target": "9242" }, { "key": "geid_144_19200", "source": "9787", "target": "5137" }, { "key": "geid_144_19201", "source": "7252", "target": "799" }, { "key": "geid_144_19202", "source": "399", "target": "8113" }, { "key": "geid_144_19203", "source": "2806", "target": "7585" }, { "key": "geid_144_19204", "source": "8949", "target": "9354" }, { "key": "geid_144_19205", "source": "1625", "target": "1316" }, { "key": "geid_144_19206", "source": "6654", "target": "1327" }, { "key": "geid_144_19207", "source": "8991", "target": "8793" }, { "key": "geid_144_19208", "source": "2891", "target": "5499" }, { "key": "geid_144_19209", "source": "6717", "target": "3567" }, { "key": "geid_144_19210", "source": "1481", "target": "5609" }, { "key": "geid_144_19211", "source": "8088", "target": "3394" }, { "key": "geid_144_19212", "source": "3606", "target": "3752" }, { "key": "geid_144_19213", "source": "6906", "target": "4062" }, { "key": "geid_144_19214", "source": "2011", "target": "8677" }, { "key": "geid_144_19215", "source": "87", "target": "9982" }, { "key": "geid_144_19216", "source": "4885", "target": "4679" }, { "key": "geid_144_19217", "source": "6858", "target": "7046" }, { "key": "geid_144_19218", "source": "8320", "target": "5692" }, { "key": "geid_144_19219", "source": "9574", "target": "7790" }, { "key": "geid_144_19220", "source": "8412", "target": "3621" }, { "key": "geid_144_19221", "source": "1863", "target": "3700" }, { "key": "geid_144_19222", "source": "8272", "target": "2249" }, { "key": "geid_144_19223", "source": "7207", "target": "7240" }, { "key": "geid_144_19224", "source": "8874", "target": "5697" }, { "key": "geid_144_19225", "source": "9322", "target": "3797" }, { "key": "geid_144_19226", "source": "1036", "target": "4502" }, { "key": "geid_144_19227", "source": "1120", "target": "2379" }, { "key": "geid_144_19228", "source": "7967", "target": "3192" }, { "key": "geid_144_19229", "source": "3143", "target": "8256" }, { "key": "geid_144_19230", "source": "3150", "target": "8598" }, { "key": "geid_144_19231", "source": "1407", "target": "9116" }, { "key": "geid_144_19232", "source": "1647", "target": "2730" }, { "key": "geid_144_19233", "source": "1256", "target": "2173" }, { "key": "geid_144_19234", "source": "1288", "target": "2454" }, { "key": "geid_144_19235", "source": "6122", "target": "2305" }, { "key": "geid_144_19236", "source": "8944", "target": "3528" }, { "key": "geid_144_19237", "source": "7005", "target": "6266" }, { "key": "geid_144_19238", "source": "5118", "target": "7667" }, { "key": "geid_144_19239", "source": "7550", "target": "2678" }, { "key": "geid_144_19240", "source": "5553", "target": "9829" }, { "key": "geid_144_19241", "source": "3066", "target": "6170" }, { "key": "geid_144_19242", "source": "4173", "target": "4044" }, { "key": "geid_144_19243", "source": "3725", "target": "2042" }, { "key": "geid_144_19244", "source": "5293", "target": "5404" }, { "key": "geid_144_19245", "source": "2068", "target": "6989" }, { "key": "geid_144_19246", "source": "8625", "target": "4052" }, { "key": "geid_144_19247", "source": "8388", "target": "8913" }, { "key": "geid_144_19248", "source": "6979", "target": "6761" }, { "key": "geid_144_19249", "source": "281", "target": "6142" }, { "key": "geid_144_19250", "source": "947", "target": "6552" }, { "key": "geid_144_19251", "source": "5393", "target": "2436" }, { "key": "geid_144_19252", "source": "8159", "target": "2076" }, { "key": "geid_144_19253", "source": "5731", "target": "6130" }, { "key": "geid_144_19254", "source": "4235", "target": "2503" }, { "key": "geid_144_19255", "source": "4019", "target": "1631" }, { "key": "geid_144_19256", "source": "7379", "target": "841" }, { "key": "geid_144_19257", "source": "9720", "target": "7915" }, { "key": "geid_144_19258", "source": "7265", "target": "130" }, { "key": "geid_144_19259", "source": "8142", "target": "3481" }, { "key": "geid_144_19260", "source": "3397", "target": "759" }, { "key": "geid_144_19261", "source": "7314", "target": "9722" }, { "key": "geid_144_19262", "source": "5352", "target": "9729" }, { "key": "geid_144_19263", "source": "6113", "target": "2883" }, { "key": "geid_144_19264", "source": "1501", "target": "131" }, { "key": "geid_144_19265", "source": "2046", "target": "3933" }, { "key": "geid_144_19266", "source": "7194", "target": "7414" }, { "key": "geid_144_19267", "source": "6265", "target": "8292" }, { "key": "geid_144_19268", "source": "3918", "target": "7795" }, { "key": "geid_144_19269", "source": "6225", "target": "7944" }, { "key": "geid_144_19270", "source": "696", "target": "7269" }, { "key": "geid_144_19271", "source": "9893", "target": "3771" }, { "key": "geid_144_19272", "source": "2458", "target": "9854" }, { "key": "geid_144_19273", "source": "1977", "target": "8432" }, { "key": "geid_144_19274", "source": "9880", "target": "2276" }, { "key": "geid_144_19275", "source": "1773", "target": "2677" }, { "key": "geid_144_19276", "source": "5044", "target": "9323" }, { "key": "geid_144_19277", "source": "4064", "target": "4975" }, { "key": "geid_144_19278", "source": "8256", "target": "7356" }, { "key": "geid_144_19279", "source": "317", "target": "5991" }, { "key": "geid_144_19280", "source": "7744", "target": "1136" }, { "key": "geid_144_19281", "source": "4712", "target": "2648" }, { "key": "geid_144_19282", "source": "5111", "target": "567" }, { "key": "geid_144_19283", "source": "7670", "target": "6837" }, { "key": "geid_144_19284", "source": "9840", "target": "2935" }, { "key": "geid_144_19285", "source": "109", "target": "2690" }, { "key": "geid_144_19286", "source": "3487", "target": "4204" }, { "key": "geid_144_19287", "source": "2093", "target": "8758" }, { "key": "geid_144_19288", "source": "1524", "target": "6411" }, { "key": "geid_144_19289", "source": "627", "target": "9227" }, { "key": "geid_144_19290", "source": "23", "target": "3369" }, { "key": "geid_144_19291", "source": "5970", "target": "4084" }, { "key": "geid_144_19292", "source": "7688", "target": "5513" }, { "key": "geid_144_19293", "source": "6241", "target": "6600" }, { "key": "geid_144_19294", "source": "3229", "target": "9607" }, { "key": "geid_144_19295", "source": "6771", "target": "3903" }, { "key": "geid_144_19296", "source": "3490", "target": "3942" }, { "key": "geid_144_19297", "source": "5256", "target": "1640" }, { "key": "geid_144_19298", "source": "1058", "target": "5261" }, { "key": "geid_144_19299", "source": "7611", "target": "7770" }, { "key": "geid_144_19300", "source": "6396", "target": "9288" }, { "key": "geid_144_19301", "source": "38", "target": "9058" }, { "key": "geid_144_19302", "source": "3534", "target": "3174" }, { "key": "geid_144_19303", "source": "4953", "target": "9114" }, { "key": "geid_144_19304", "source": "3712", "target": "8380" }, { "key": "geid_144_19305", "source": "5402", "target": "6313" }, { "key": "geid_144_19306", "source": "8398", "target": "2500" }, { "key": "geid_144_19307", "source": "3968", "target": "4590" }, { "key": "geid_144_19308", "source": "2759", "target": "8467" }, { "key": "geid_144_19309", "source": "3772", "target": "7335" }, { "key": "geid_144_19310", "source": "8623", "target": "8910" }, { "key": "geid_144_19311", "source": "7634", "target": "2652" }, { "key": "geid_144_19312", "source": "6160", "target": "7144" }, { "key": "geid_144_19313", "source": "6447", "target": "1576" }, { "key": "geid_144_19314", "source": "1390", "target": "1899" }, { "key": "geid_144_19315", "source": "2061", "target": "9976" }, { "key": "geid_144_19316", "source": "3120", "target": "8082" }, { "key": "geid_144_19317", "source": "6300", "target": "2719" }, { "key": "geid_144_19318", "source": "1253", "target": "1814" }, { "key": "geid_144_19319", "source": "7151", "target": "4124" }, { "key": "geid_144_19320", "source": "9521", "target": "439" }, { "key": "geid_144_19321", "source": "5022", "target": "3111" }, { "key": "geid_144_19322", "source": "2617", "target": "1735" }, { "key": "geid_144_19323", "source": "7362", "target": "284" }, { "key": "geid_144_19324", "source": "362", "target": "1668" }, { "key": "geid_144_19325", "source": "1061", "target": "1282" }, { "key": "geid_144_19326", "source": "6805", "target": "5115" }, { "key": "geid_144_19327", "source": "5949", "target": "2605" }, { "key": "geid_144_19328", "source": "986", "target": "1467" }, { "key": "geid_144_19329", "source": "5873", "target": "4489" }, { "key": "geid_144_19330", "source": "6520", "target": "5567" }, { "key": "geid_144_19331", "source": "4112", "target": "5385" }, { "key": "geid_144_19332", "source": "9206", "target": "953" }, { "key": "geid_144_19333", "source": "5979", "target": "4396" }, { "key": "geid_144_19334", "source": "1560", "target": "7968" }, { "key": "geid_144_19335", "source": "5916", "target": "1804" }, { "key": "geid_144_19336", "source": "6199", "target": "8988" }, { "key": "geid_144_19337", "source": "7910", "target": "7953" }, { "key": "geid_144_19338", "source": "9506", "target": "9094" }, { "key": "geid_144_19339", "source": "2376", "target": "7889" }, { "key": "geid_144_19340", "source": "5455", "target": "316" }, { "key": "geid_144_19341", "source": "6926", "target": "6768" }, { "key": "geid_144_19342", "source": "2790", "target": "9581" }, { "key": "geid_144_19343", "source": "5619", "target": "8067" }, { "key": "geid_144_19344", "source": "5336", "target": "5709" }, { "key": "geid_144_19345", "source": "6587", "target": "9545" }, { "key": "geid_144_19346", "source": "2485", "target": "9718" }, { "key": "geid_144_19347", "source": "3199", "target": "949" }, { "key": "geid_144_19348", "source": "6280", "target": "6558" }, { "key": "geid_144_19349", "source": "6538", "target": "8223" }, { "key": "geid_144_19350", "source": "1854", "target": "4391" }, { "key": "geid_144_19351", "source": "8953", "target": "6672" }, { "key": "geid_144_19352", "source": "6699", "target": "4002" }, { "key": "geid_144_19353", "source": "189", "target": "298" }, { "key": "geid_144_19354", "source": "9981", "target": "7621" }, { "key": "geid_144_19355", "source": "1215", "target": "3555" }, { "key": "geid_144_19356", "source": "9844", "target": "3088" }, { "key": "geid_144_19357", "source": "2184", "target": "433" }, { "key": "geid_144_19358", "source": "2552", "target": "1766" }, { "key": "geid_144_19359", "source": "5055", "target": "4925" }, { "key": "geid_144_19360", "source": "5040", "target": "7352" }, { "key": "geid_144_19361", "source": "2897", "target": "5822" }, { "key": "geid_144_19362", "source": "6726", "target": "6557" }, { "key": "geid_144_19363", "source": "1820", "target": "76" }, { "key": "geid_144_19364", "source": "430", "target": "2039" }, { "key": "geid_144_19365", "source": "7161", "target": "1148" }, { "key": "geid_144_19366", "source": "4907", "target": "3550" }, { "key": "geid_144_19367", "source": "9975", "target": "2219" }, { "key": "geid_144_19368", "source": "5875", "target": "5443" }, { "key": "geid_144_19369", "source": "3491", "target": "8200" }, { "key": "geid_144_19370", "source": "9663", "target": "8636" }, { "key": "geid_144_19371", "source": "297", "target": "9174" }, { "key": "geid_144_19372", "source": "5778", "target": "5924" }, { "key": "geid_144_19373", "source": "3854", "target": "2552" }, { "key": "geid_144_19374", "source": "7825", "target": "3067" }, { "key": "geid_144_19375", "source": "2417", "target": "9709" }, { "key": "geid_144_19376", "source": "2027", "target": "5783" }, { "key": "geid_144_19377", "source": "8300", "target": "4049" }, { "key": "geid_144_19378", "source": "9078", "target": "9124" }, { "key": "geid_144_19379", "source": "3954", "target": "5848" }, { "key": "geid_144_19380", "source": "5821", "target": "968" }, { "key": "geid_144_19381", "source": "204", "target": "7637" }, { "key": "geid_144_19382", "source": "157", "target": "7976" }, { "key": "geid_144_19383", "source": "2016", "target": "4974" }, { "key": "geid_144_19384", "source": "6549", "target": "2340" }, { "key": "geid_144_19385", "source": "4147", "target": "4656" }, { "key": "geid_144_19386", "source": "2848", "target": "1130" }, { "key": "geid_144_19387", "source": "8762", "target": "2019" }, { "key": "geid_144_19388", "source": "8849", "target": "2380" }, { "key": "geid_144_19389", "source": "4780", "target": "17" }, { "key": "geid_144_19390", "source": "7751", "target": "6500" }, { "key": "geid_144_19391", "source": "1278", "target": "5978" }, { "key": "geid_144_19392", "source": "4474", "target": "5387" }, { "key": "geid_144_19393", "source": "4766", "target": "6875" }, { "key": "geid_144_19394", "source": "2090", "target": "3564" }, { "key": "geid_144_19395", "source": "3692", "target": "3227" }, { "key": "geid_144_19396", "source": "5564", "target": "1148" }, { "key": "geid_144_19397", "source": "9605", "target": "6544" }, { "key": "geid_144_19398", "source": "7444", "target": "5536" }, { "key": "geid_144_19399", "source": "8498", "target": "6946" }, { "key": "geid_144_19400", "source": "4256", "target": "3815" }, { "key": "geid_144_19401", "source": "1980", "target": "147" }, { "key": "geid_144_19402", "source": "8954", "target": "5024" }, { "key": "geid_144_19403", "source": "8014", "target": "4635" }, { "key": "geid_144_19404", "source": "5568", "target": "9970" }, { "key": "geid_144_19405", "source": "2875", "target": "4858" }, { "key": "geid_144_19406", "source": "2771", "target": "8831" }, { "key": "geid_144_19407", "source": "9616", "target": "9043" }, { "key": "geid_144_19408", "source": "121", "target": "710" }, { "key": "geid_144_19409", "source": "5428", "target": "7162" }, { "key": "geid_144_19410", "source": "5610", "target": "1371" }, { "key": "geid_144_19411", "source": "4645", "target": "5554" }, { "key": "geid_144_19412", "source": "3218", "target": "9841" }, { "key": "geid_144_19413", "source": "5639", "target": "7089" }, { "key": "geid_144_19414", "source": "5660", "target": "5882" }, { "key": "geid_144_19415", "source": "6982", "target": "6788" }, { "key": "geid_144_19416", "source": "2910", "target": "610" }, { "key": "geid_144_19417", "source": "7384", "target": "7922" }, { "key": "geid_144_19418", "source": "515", "target": "2783" }, { "key": "geid_144_19419", "source": "391", "target": "381" }, { "key": "geid_144_19420", "source": "7576", "target": "2298" }, { "key": "geid_144_19421", "source": "2903", "target": "8684" }, { "key": "geid_144_19422", "source": "1835", "target": "6129" }, { "key": "geid_144_19423", "source": "6487", "target": "641" }, { "key": "geid_144_19424", "source": "5844", "target": "8702" }, { "key": "geid_144_19425", "source": "1159", "target": "3400" }, { "key": "geid_144_19426", "source": "5737", "target": "205" }, { "key": "geid_144_19427", "source": "9219", "target": "4566" }, { "key": "geid_144_19428", "source": "70", "target": "69" }, { "key": "geid_144_19429", "source": "3816", "target": "7453" }, { "key": "geid_144_19430", "source": "8060", "target": "7119" }, { "key": "geid_144_19431", "source": "5205", "target": "697" }, { "key": "geid_144_19432", "source": "4475", "target": "5805" }, { "key": "geid_144_19433", "source": "8768", "target": "9684" }, { "key": "geid_144_19434", "source": "9379", "target": "2741" }, { "key": "geid_144_19435", "source": "1818", "target": "688" }, { "key": "geid_144_19436", "source": "3051", "target": "2089" }, { "key": "geid_144_19437", "source": "4121", "target": "5211" }, { "key": "geid_144_19438", "source": "5845", "target": "2180" }, { "key": "geid_144_19439", "source": "2002", "target": "6814" }, { "key": "geid_144_19440", "source": "4379", "target": "2345" }, { "key": "geid_144_19441", "source": "1053", "target": "7463" }, { "key": "geid_144_19442", "source": "211", "target": "2940" }, { "key": "geid_144_19443", "source": "1792", "target": "3946" }, { "key": "geid_144_19444", "source": "7271", "target": "3229" }, { "key": "geid_144_19445", "source": "3739", "target": "6960" }, { "key": "geid_144_19446", "source": "9624", "target": "5598" }, { "key": "geid_144_19447", "source": "2440", "target": "8015" }, { "key": "geid_144_19448", "source": "911", "target": "2323" }, { "key": "geid_144_19449", "source": "2249", "target": "3351" }, { "key": "geid_144_19450", "source": "2214", "target": "2311" }, { "key": "geid_144_19451", "source": "9700", "target": "5027" }, { "key": "geid_144_19452", "source": "6670", "target": "2892" }, { "key": "geid_144_19453", "source": "427", "target": "7273" }, { "key": "geid_144_19454", "source": "4967", "target": "6671" }, { "key": "geid_144_19455", "source": "9345", "target": "3092" }, { "key": "geid_144_19456", "source": "6624", "target": "4098" }, { "key": "geid_144_19457", "source": "5239", "target": "3025" }, { "key": "geid_144_19458", "source": "6197", "target": "2512" }, { "key": "geid_144_19459", "source": "5748", "target": "5191" }, { "key": "geid_144_19460", "source": "5173", "target": "5452" }, { "key": "geid_144_19461", "source": "1005", "target": "9464" }, { "key": "geid_144_19462", "source": "4069", "target": "6687" }, { "key": "geid_144_19463", "source": "8286", "target": "3917" }, { "key": "geid_144_19464", "source": "4832", "target": "6763" }, { "key": "geid_144_19465", "source": "8899", "target": "3939" }, { "key": "geid_144_19466", "source": "4116", "target": "3476" }, { "key": "geid_144_19467", "source": "1266", "target": "4272" }, { "key": "geid_144_19468", "source": "3965", "target": "9952" }, { "key": "geid_144_19469", "source": "1900", "target": "9682" }, { "key": "geid_144_19470", "source": "7743", "target": "6374" }, { "key": "geid_144_19471", "source": "4767", "target": "5150" }, { "key": "geid_144_19472", "source": "5520", "target": "4844" }, { "key": "geid_144_19473", "source": "2527", "target": "9036" }, { "key": "geid_144_19474", "source": "4354", "target": "8125" }, { "key": "geid_144_19475", "source": "6497", "target": "298" }, { "key": "geid_144_19476", "source": "945", "target": "2826" }, { "key": "geid_144_19477", "source": "9163", "target": "2920" }, { "key": "geid_144_19478", "source": "8657", "target": "876" }, { "key": "geid_144_19479", "source": "990", "target": "9706" }, { "key": "geid_144_19480", "source": "9150", "target": "1431" }, { "key": "geid_144_19481", "source": "4070", "target": "9265" }, { "key": "geid_144_19482", "source": "4225", "target": "7811" }, { "key": "geid_144_19483", "source": "8621", "target": "5692" }, { "key": "geid_144_19484", "source": "6150", "target": "1404" }, { "key": "geid_144_19485", "source": "9521", "target": "7221" }, { "key": "geid_144_19486", "source": "1731", "target": "3848" }, { "key": "geid_144_19487", "source": "1126", "target": "2074" }, { "key": "geid_144_19488", "source": "8434", "target": "7869" }, { "key": "geid_144_19489", "source": "1383", "target": "6277" }, { "key": "geid_144_19490", "source": "5174", "target": "9861" }, { "key": "geid_144_19491", "source": "7839", "target": "5220" }, { "key": "geid_144_19492", "source": "9871", "target": "1504" }, { "key": "geid_144_19493", "source": "8490", "target": "6564" }, { "key": "geid_144_19494", "source": "6010", "target": "4226" }, { "key": "geid_144_19495", "source": "9276", "target": "488" }, { "key": "geid_144_19496", "source": "6239", "target": "4093" }, { "key": "geid_144_19497", "source": "7810", "target": "9493" }, { "key": "geid_144_19498", "source": "6403", "target": "5801" }, { "key": "geid_144_19499", "source": "9566", "target": "4120" }, { "key": "geid_144_19500", "source": "2106", "target": "9938" }, { "key": "geid_144_19501", "source": "6112", "target": "7099" }, { "key": "geid_144_19502", "source": "1637", "target": "5887" }, { "key": "geid_144_19503", "source": "6825", "target": "3116" }, { "key": "geid_144_19504", "source": "1098", "target": "427" }, { "key": "geid_144_19505", "source": "2770", "target": "6893" }, { "key": "geid_144_19506", "source": "2551", "target": "2697" }, { "key": "geid_144_19507", "source": "1084", "target": "8291" }, { "key": "geid_144_19508", "source": "4930", "target": "5334" }, { "key": "geid_144_19509", "source": "4399", "target": "459" }, { "key": "geid_144_19510", "source": "3049", "target": "5568" }, { "key": "geid_144_19511", "source": "1843", "target": "8930" }, { "key": "geid_144_19512", "source": "1017", "target": "7822" }, { "key": "geid_144_19513", "source": "5329", "target": "2459" }, { "key": "geid_144_19514", "source": "2100", "target": "2659" }, { "key": "geid_144_19515", "source": "2316", "target": "1491" }, { "key": "geid_144_19516", "source": "6608", "target": "6744" }, { "key": "geid_144_19517", "source": "9693", "target": "3276" }, { "key": "geid_144_19518", "source": "9841", "target": "1665" }, { "key": "geid_144_19519", "source": "6725", "target": "5866" }, { "key": "geid_144_19520", "source": "6496", "target": "1431" }, { "key": "geid_144_19521", "source": "7996", "target": "8941" }, { "key": "geid_144_19522", "source": "8190", "target": "474" }, { "key": "geid_144_19523", "source": "8390", "target": "1817" }, { "key": "geid_144_19524", "source": "1325", "target": "6236" }, { "key": "geid_144_19525", "source": "9224", "target": "662" }, { "key": "geid_144_19526", "source": "4360", "target": "9154" }, { "key": "geid_144_19527", "source": "2362", "target": "6869" }, { "key": "geid_144_19528", "source": "9313", "target": "3728" }, { "key": "geid_144_19529", "source": "1333", "target": "3627" }, { "key": "geid_144_19530", "source": "612", "target": "1645" }, { "key": "geid_144_19531", "source": "8614", "target": "7279" }, { "key": "geid_144_19532", "source": "9671", "target": "7244" }, { "key": "geid_144_19533", "source": "882", "target": "638" }, { "key": "geid_144_19534", "source": "5995", "target": "6186" }, { "key": "geid_144_19535", "source": "7185", "target": "3797" }, { "key": "geid_144_19536", "source": "2193", "target": "2167" }, { "key": "geid_144_19537", "source": "8445", "target": "533" }, { "key": "geid_144_19538", "source": "1664", "target": "8874" }, { "key": "geid_144_19539", "source": "8124", "target": "6228" }, { "key": "geid_144_19540", "source": "8367", "target": "5836" }, { "key": "geid_144_19541", "source": "3114", "target": "4988" }, { "key": "geid_144_19542", "source": "8073", "target": "9131" }, { "key": "geid_144_19543", "source": "3479", "target": "7371" }, { "key": "geid_144_19544", "source": "4048", "target": "7606" }, { "key": "geid_144_19545", "source": "1097", "target": "2265" }, { "key": "geid_144_19546", "source": "8718", "target": "5740" }, { "key": "geid_144_19547", "source": "2996", "target": "7736" }, { "key": "geid_144_19548", "source": "172", "target": "2154" }, { "key": "geid_144_19549", "source": "5880", "target": "1580" }, { "key": "geid_144_19550", "source": "2730", "target": "5126" }, { "key": "geid_144_19551", "source": "5218", "target": "3856" }, { "key": "geid_144_19552", "source": "7233", "target": "618" }, { "key": "geid_144_19553", "source": "4841", "target": "6234" }, { "key": "geid_144_19554", "source": "8068", "target": "4547" }, { "key": "geid_144_19555", "source": "1363", "target": "2980" }, { "key": "geid_144_19556", "source": "7144", "target": "7129" }, { "key": "geid_144_19557", "source": "4486", "target": "2827" }, { "key": "geid_144_19558", "source": "4367", "target": "704" }, { "key": "geid_144_19559", "source": "3001", "target": "7836" }, { "key": "geid_144_19560", "source": "7908", "target": "5824" }, { "key": "geid_144_19561", "source": "2897", "target": "7320" }, { "key": "geid_144_19562", "source": "4092", "target": "9521" }, { "key": "geid_144_19563", "source": "8525", "target": "7000" }, { "key": "geid_144_19564", "source": "1483", "target": "7141" }, { "key": "geid_144_19565", "source": "1089", "target": "8459" }, { "key": "geid_144_19566", "source": "6877", "target": "2662" }, { "key": "geid_144_19567", "source": "7386", "target": "9090" }, { "key": "geid_144_19568", "source": "8932", "target": "7850" }, { "key": "geid_144_19569", "source": "3963", "target": "7795" }, { "key": "geid_144_19570", "source": "8963", "target": "8764" }, { "key": "geid_144_19571", "source": "6994", "target": "1113" }, { "key": "geid_144_19572", "source": "2810", "target": "5318" }, { "key": "geid_144_19573", "source": "5555", "target": "7828" }, { "key": "geid_144_19574", "source": "7353", "target": "4082" }, { "key": "geid_144_19575", "source": "7951", "target": "3007" }, { "key": "geid_144_19576", "source": "462", "target": "1505" }, { "key": "geid_144_19577", "source": "9958", "target": "1279" }, { "key": "geid_144_19578", "source": "4751", "target": "3987" }, { "key": "geid_144_19579", "source": "638", "target": "4441" }, { "key": "geid_144_19580", "source": "3048", "target": "7876" }, { "key": "geid_144_19581", "source": "4477", "target": "724" }, { "key": "geid_144_19582", "source": "7051", "target": "8915" }, { "key": "geid_144_19583", "source": "3700", "target": "9138" }, { "key": "geid_144_19584", "source": "3214", "target": "583" }, { "key": "geid_144_19585", "source": "8709", "target": "4996" }, { "key": "geid_144_19586", "source": "7583", "target": "1024" }, { "key": "geid_144_19587", "source": "2812", "target": "7056" }, { "key": "geid_144_19588", "source": "1310", "target": "6299" }, { "key": "geid_144_19589", "source": "6585", "target": "6348" }, { "key": "geid_144_19590", "source": "4676", "target": "1241" }, { "key": "geid_144_19591", "source": "9691", "target": "9435" }, { "key": "geid_144_19592", "source": "1216", "target": "9533" }, { "key": "geid_144_19593", "source": "894", "target": "913" }, { "key": "geid_144_19594", "source": "533", "target": "2275" }, { "key": "geid_144_19595", "source": "2646", "target": "8852" }, { "key": "geid_144_19596", "source": "5283", "target": "2900" }, { "key": "geid_144_19597", "source": "6327", "target": "6204" }, { "key": "geid_144_19598", "source": "8913", "target": "881" }, { "key": "geid_144_19599", "source": "8644", "target": "2801" }, { "key": "geid_144_19600", "source": "6054", "target": "729" }, { "key": "geid_144_19601", "source": "9489", "target": "685" }, { "key": "geid_144_19602", "source": "2106", "target": "277" }, { "key": "geid_144_19603", "source": "2016", "target": "3124" }, { "key": "geid_144_19604", "source": "5156", "target": "6245" }, { "key": "geid_144_19605", "source": "436", "target": "6387" }, { "key": "geid_144_19606", "source": "604", "target": "7980" }, { "key": "geid_144_19607", "source": "9165", "target": "761" }, { "key": "geid_144_19608", "source": "4373", "target": "7816" }, { "key": "geid_144_19609", "source": "6388", "target": "2239" }, { "key": "geid_144_19610", "source": "2081", "target": "8803" }, { "key": "geid_144_19611", "source": "5549", "target": "2245" }, { "key": "geid_144_19612", "source": "5393", "target": "8807" }, { "key": "geid_144_19613", "source": "5166", "target": "9765" }, { "key": "geid_144_19614", "source": "2282", "target": "1559" }, { "key": "geid_144_19615", "source": "1530", "target": "3658" }, { "key": "geid_144_19616", "source": "9817", "target": "1888" }, { "key": "geid_144_19617", "source": "5202", "target": "4579" }, { "key": "geid_144_19618", "source": "2310", "target": "8522" }, { "key": "geid_144_19619", "source": "2287", "target": "8727" }, { "key": "geid_144_19620", "source": "7146", "target": "8034" }, { "key": "geid_144_19621", "source": "5990", "target": "6933" }, { "key": "geid_144_19622", "source": "6781", "target": "3590" }, { "key": "geid_144_19623", "source": "6351", "target": "5421" }, { "key": "geid_144_19624", "source": "839", "target": "6852" }, { "key": "geid_144_19625", "source": "1215", "target": "2554" }, { "key": "geid_144_19626", "source": "2666", "target": "6058" }, { "key": "geid_144_19627", "source": "4895", "target": "7248" }, { "key": "geid_144_19628", "source": "9910", "target": "554" }, { "key": "geid_144_19629", "source": "8905", "target": "5515" }, { "key": "geid_144_19630", "source": "7920", "target": "5530" }, { "key": "geid_144_19631", "source": "5904", "target": "6863" }, { "key": "geid_144_19632", "source": "4218", "target": "118" }, { "key": "geid_144_19633", "source": "3316", "target": "323" }, { "key": "geid_144_19634", "source": "591", "target": "674" }, { "key": "geid_144_19635", "source": "1634", "target": "9405" }, { "key": "geid_144_19636", "source": "137", "target": "5104" }, { "key": "geid_144_19637", "source": "230", "target": "8147" }, { "key": "geid_144_19638", "source": "4318", "target": "7984" }, { "key": "geid_144_19639", "source": "6641", "target": "6337" }, { "key": "geid_144_19640", "source": "7905", "target": "4217" }, { "key": "geid_144_19641", "source": "9516", "target": "4057" }, { "key": "geid_144_19642", "source": "6263", "target": "9588" }, { "key": "geid_144_19643", "source": "7502", "target": "2743" }, { "key": "geid_144_19644", "source": "9648", "target": "6242" }, { "key": "geid_144_19645", "source": "1404", "target": "8737" }, { "key": "geid_144_19646", "source": "351", "target": "696" }, { "key": "geid_144_19647", "source": "4363", "target": "6570" }, { "key": "geid_144_19648", "source": "3055", "target": "9218" }, { "key": "geid_144_19649", "source": "753", "target": "3386" }, { "key": "geid_144_19650", "source": "4203", "target": "1872" }, { "key": "geid_144_19651", "source": "8053", "target": "6939" }, { "key": "geid_144_19652", "source": "8952", "target": "6315" }, { "key": "geid_144_19653", "source": "7237", "target": "9901" }, { "key": "geid_144_19654", "source": "8773", "target": "6000" }, { "key": "geid_144_19655", "source": "8250", "target": "963" }, { "key": "geid_144_19656", "source": "7039", "target": "6830" }, { "key": "geid_144_19657", "source": "3569", "target": "1410" }, { "key": "geid_144_19658", "source": "6122", "target": "9168" }, { "key": "geid_144_19659", "source": "3777", "target": "8367" }, { "key": "geid_144_19660", "source": "3770", "target": "8608" }, { "key": "geid_144_19661", "source": "2689", "target": "469" }, { "key": "geid_144_19662", "source": "8702", "target": "2158" }, { "key": "geid_144_19663", "source": "1254", "target": "67" }, { "key": "geid_144_19664", "source": "1497", "target": "5260" }, { "key": "geid_144_19665", "source": "6072", "target": "5463" }, { "key": "geid_144_19666", "source": "3248", "target": "8577" }, { "key": "geid_144_19667", "source": "1426", "target": "9708" }, { "key": "geid_144_19668", "source": "5787", "target": "4890" }, { "key": "geid_144_19669", "source": "6604", "target": "4487" }, { "key": "geid_144_19670", "source": "9935", "target": "831" }, { "key": "geid_144_19671", "source": "5203", "target": "5425" }, { "key": "geid_144_19672", "source": "3907", "target": "3528" }, { "key": "geid_144_19673", "source": "3086", "target": "4233" }, { "key": "geid_144_19674", "source": "9073", "target": "1189" }, { "key": "geid_144_19675", "source": "7911", "target": "8962" }, { "key": "geid_144_19676", "source": "3228", "target": "7598" }, { "key": "geid_144_19677", "source": "7039", "target": "1932" }, { "key": "geid_144_19678", "source": "7389", "target": "7789" }, { "key": "geid_144_19679", "source": "2040", "target": "6264" }, { "key": "geid_144_19680", "source": "915", "target": "8663" }, { "key": "geid_144_19681", "source": "7822", "target": "5371" }, { "key": "geid_144_19682", "source": "4391", "target": "5084" }, { "key": "geid_144_19683", "source": "3563", "target": "4970" }, { "key": "geid_144_19684", "source": "8420", "target": "8651" }, { "key": "geid_144_19685", "source": "4434", "target": "1928" }, { "key": "geid_144_19686", "source": "4943", "target": "2797" }, { "key": "geid_144_19687", "source": "6841", "target": "3783" }, { "key": "geid_144_19688", "source": "6272", "target": "2607" }, { "key": "geid_144_19689", "source": "7903", "target": "7426" }, { "key": "geid_144_19690", "source": "7364", "target": "8971" }, { "key": "geid_144_19691", "source": "8595", "target": "9543" }, { "key": "geid_144_19692", "source": "3858", "target": "4181" }, { "key": "geid_144_19693", "source": "4023", "target": "5675" }, { "key": "geid_144_19694", "source": "6308", "target": "2895" }, { "key": "geid_144_19695", "source": "7585", "target": "8944" }, { "key": "geid_144_19696", "source": "5819", "target": "8301" }, { "key": "geid_144_19697", "source": "9253", "target": "9879" }, { "key": "geid_144_19698", "source": "6689", "target": "9292" }, { "key": "geid_144_19699", "source": "3697", "target": "7936" }, { "key": "geid_144_19700", "source": "1068", "target": "189" }, { "key": "geid_144_19701", "source": "402", "target": "4446" }, { "key": "geid_144_19702", "source": "2549", "target": "2866" }, { "key": "geid_144_19703", "source": "1872", "target": "8515" }, { "key": "geid_144_19704", "source": "1530", "target": "3126" }, { "key": "geid_144_19705", "source": "4693", "target": "2421" }, { "key": "geid_144_19706", "source": "7989", "target": "2288" }, { "key": "geid_144_19707", "source": "1981", "target": "5748" }, { "key": "geid_144_19708", "source": "8887", "target": "8080" }, { "key": "geid_144_19709", "source": "5851", "target": "3742" }, { "key": "geid_144_19710", "source": "8634", "target": "8292" }, { "key": "geid_144_19711", "source": "8659", "target": "854" }, { "key": "geid_144_19712", "source": "6474", "target": "8892" }, { "key": "geid_144_19713", "source": "8478", "target": "3860" }, { "key": "geid_144_19714", "source": "4748", "target": "2561" }, { "key": "geid_144_19715", "source": "7014", "target": "8292" }, { "key": "geid_144_19716", "source": "5228", "target": "4167" }, { "key": "geid_144_19717", "source": "7251", "target": "6153" }, { "key": "geid_144_19718", "source": "103", "target": "1276" }, { "key": "geid_144_19719", "source": "8470", "target": "8229" }, { "key": "geid_144_19720", "source": "2716", "target": "8096" }, { "key": "geid_144_19721", "source": "1697", "target": "9292" }, { "key": "geid_144_19722", "source": "9045", "target": "9583" }, { "key": "geid_144_19723", "source": "1336", "target": "7103" }, { "key": "geid_144_19724", "source": "3686", "target": "8728" }, { "key": "geid_144_19725", "source": "8707", "target": "977" }, { "key": "geid_144_19726", "source": "6997", "target": "2493" }, { "key": "geid_144_19727", "source": "4207", "target": "8882" }, { "key": "geid_144_19728", "source": "5169", "target": "252" }, { "key": "geid_144_19729", "source": "8741", "target": "6691" }, { "key": "geid_144_19730", "source": "915", "target": "5967" }, { "key": "geid_144_19731", "source": "6979", "target": "1203" }, { "key": "geid_144_19732", "source": "4648", "target": "2464" }, { "key": "geid_144_19733", "source": "7711", "target": "9209" }, { "key": "geid_144_19734", "source": "4704", "target": "7016" }, { "key": "geid_144_19735", "source": "7252", "target": "1166" }, { "key": "geid_144_19736", "source": "1283", "target": "8617" }, { "key": "geid_144_19737", "source": "4042", "target": "4808" }, { "key": "geid_144_19738", "source": "4041", "target": "7267" }, { "key": "geid_144_19739", "source": "3215", "target": "1315" }, { "key": "geid_144_19740", "source": "6706", "target": "3534" }, { "key": "geid_144_19741", "source": "7450", "target": "9968" }, { "key": "geid_144_19742", "source": "2637", "target": "9678" }, { "key": "geid_144_19743", "source": "5806", "target": "6493" }, { "key": "geid_144_19744", "source": "1606", "target": "3733" }, { "key": "geid_144_19745", "source": "6998", "target": "2345" }, { "key": "geid_144_19746", "source": "3243", "target": "179" }, { "key": "geid_144_19747", "source": "5268", "target": "7883" }, { "key": "geid_144_19748", "source": "681", "target": "6080" }, { "key": "geid_144_19749", "source": "626", "target": "4493" }, { "key": "geid_144_19750", "source": "978", "target": "1920" }, { "key": "geid_144_19751", "source": "1195", "target": "3629" }, { "key": "geid_144_19752", "source": "8685", "target": "3044" }, { "key": "geid_144_19753", "source": "8205", "target": "1561" }, { "key": "geid_144_19754", "source": "7283", "target": "6486" }, { "key": "geid_144_19755", "source": "8661", "target": "8995" }, { "key": "geid_144_19756", "source": "9154", "target": "1031" }, { "key": "geid_144_19757", "source": "6210", "target": "4364" }, { "key": "geid_144_19758", "source": "4715", "target": "7838" }, { "key": "geid_144_19759", "source": "2771", "target": "3972" }, { "key": "geid_144_19760", "source": "4801", "target": "8308" }, { "key": "geid_144_19761", "source": "8609", "target": "6146" }, { "key": "geid_144_19762", "source": "1144", "target": "7714" }, { "key": "geid_144_19763", "source": "3228", "target": "4256" }, { "key": "geid_144_19764", "source": "4950", "target": "1530" }, { "key": "geid_144_19765", "source": "27", "target": "5770" }, { "key": "geid_144_19766", "source": "6579", "target": "6907" }, { "key": "geid_144_19767", "source": "2827", "target": "1927" }, { "key": "geid_144_19768", "source": "827", "target": "8037" }, { "key": "geid_144_19769", "source": "7222", "target": "1587" }, { "key": "geid_144_19770", "source": "3979", "target": "6828" }, { "key": "geid_144_19771", "source": "8075", "target": "1188" }, { "key": "geid_144_19772", "source": "5107", "target": "6316" }, { "key": "geid_144_19773", "source": "3494", "target": "5681" }, { "key": "geid_144_19774", "source": "8345", "target": "1284" }, { "key": "geid_144_19775", "source": "9135", "target": "5702" }, { "key": "geid_144_19776", "source": "5548", "target": "9353" }, { "key": "geid_144_19777", "source": "5305", "target": "443" }, { "key": "geid_144_19778", "source": "836", "target": "1035" }, { "key": "geid_144_19779", "source": "7195", "target": "4279" }, { "key": "geid_144_19780", "source": "7509", "target": "4935" }, { "key": "geid_144_19781", "source": "2678", "target": "4088" }, { "key": "geid_144_19782", "source": "8343", "target": "7819" }, { "key": "geid_144_19783", "source": "6552", "target": "1852" }, { "key": "geid_144_19784", "source": "1000", "target": "7431" }, { "key": "geid_144_19785", "source": "4241", "target": "4564" }, { "key": "geid_144_19786", "source": "5893", "target": "306" }, { "key": "geid_144_19787", "source": "3794", "target": "282" }, { "key": "geid_144_19788", "source": "7964", "target": "5488" }, { "key": "geid_144_19789", "source": "8992", "target": "651" }, { "key": "geid_144_19790", "source": "1987", "target": "7406" }, { "key": "geid_144_19791", "source": "3643", "target": "330" }, { "key": "geid_144_19792", "source": "7648", "target": "3537" }, { "key": "geid_144_19793", "source": "100", "target": "5394" }, { "key": "geid_144_19794", "source": "282", "target": "677" }, { "key": "geid_144_19795", "source": "2103", "target": "8379" }, { "key": "geid_144_19796", "source": "148", "target": "4400" }, { "key": "geid_144_19797", "source": "1217", "target": "8306" }, { "key": "geid_144_19798", "source": "6984", "target": "1604" }, { "key": "geid_144_19799", "source": "3448", "target": "1832" }, { "key": "geid_144_19800", "source": "2637", "target": "2769" }, { "key": "geid_144_19801", "source": "3625", "target": "3797" }, { "key": "geid_144_19802", "source": "5517", "target": "6464" }, { "key": "geid_144_19803", "source": "5423", "target": "5566" }, { "key": "geid_144_19804", "source": "5978", "target": "4606" }, { "key": "geid_144_19805", "source": "6460", "target": "3371" }, { "key": "geid_144_19806", "source": "2158", "target": "4883" }, { "key": "geid_144_19807", "source": "1731", "target": "2749" }, { "key": "geid_144_19808", "source": "8097", "target": "1652" }, { "key": "geid_144_19809", "source": "7174", "target": "510" }, { "key": "geid_144_19810", "source": "6091", "target": "1251" }, { "key": "geid_144_19811", "source": "6507", "target": "6637" }, { "key": "geid_144_19812", "source": "7723", "target": "7773" }, { "key": "geid_144_19813", "source": "7285", "target": "419" }, { "key": "geid_144_19814", "source": "9674", "target": "1820" }, { "key": "geid_144_19815", "source": "4516", "target": "2803" }, { "key": "geid_144_19816", "source": "1839", "target": "9264" }, { "key": "geid_144_19817", "source": "9853", "target": "4868" }, { "key": "geid_144_19818", "source": "1469", "target": "7387" }, { "key": "geid_144_19819", "source": "8399", "target": "2419" }, { "key": "geid_144_19820", "source": "8311", "target": "1879" }, { "key": "geid_144_19821", "source": "4380", "target": "4952" }, { "key": "geid_144_19822", "source": "6211", "target": "9937" }, { "key": "geid_144_19823", "source": "1195", "target": "3450" }, { "key": "geid_144_19824", "source": "372", "target": "8883" }, { "key": "geid_144_19825", "source": "3245", "target": "6983" }, { "key": "geid_144_19826", "source": "7664", "target": "2858" }, { "key": "geid_144_19827", "source": "8800", "target": "9010" }, { "key": "geid_144_19828", "source": "9401", "target": "5261" }, { "key": "geid_144_19829", "source": "3948", "target": "8108" }, { "key": "geid_144_19830", "source": "7479", "target": "888" }, { "key": "geid_144_19831", "source": "2057", "target": "4769" }, { "key": "geid_144_19832", "source": "4202", "target": "4545" }, { "key": "geid_144_19833", "source": "863", "target": "7319" }, { "key": "geid_144_19834", "source": "4830", "target": "1707" }, { "key": "geid_144_19835", "source": "4929", "target": "6324" }, { "key": "geid_144_19836", "source": "2052", "target": "6404" }, { "key": "geid_144_19837", "source": "4611", "target": "8407" }, { "key": "geid_144_19838", "source": "2539", "target": "3246" }, { "key": "geid_144_19839", "source": "8940", "target": "6127" }, { "key": "geid_144_19840", "source": "9317", "target": "2942" }, { "key": "geid_144_19841", "source": "6811", "target": "989" }, { "key": "geid_144_19842", "source": "8644", "target": "9636" }, { "key": "geid_144_19843", "source": "5226", "target": "4515" }, { "key": "geid_144_19844", "source": "5939", "target": "4207" }, { "key": "geid_144_19845", "source": "491", "target": "1938" }, { "key": "geid_144_19846", "source": "5634", "target": "8403" }, { "key": "geid_144_19847", "source": "9997", "target": "7643" }, { "key": "geid_144_19848", "source": "4381", "target": "5207" }, { "key": "geid_144_19849", "source": "8325", "target": "8950" }, { "key": "geid_144_19850", "source": "7111", "target": "6155" }, { "key": "geid_144_19851", "source": "7332", "target": "5313" }, { "key": "geid_144_19852", "source": "8278", "target": "4228" }, { "key": "geid_144_19853", "source": "6731", "target": "2490" }, { "key": "geid_144_19854", "source": "2302", "target": "6592" }, { "key": "geid_144_19855", "source": "4234", "target": "3163" }, { "key": "geid_144_19856", "source": "9215", "target": "2012" }, { "key": "geid_144_19857", "source": "8760", "target": "6663" }, { "key": "geid_144_19858", "source": "8880", "target": "927" }, { "key": "geid_144_19859", "source": "5933", "target": "7710" }, { "key": "geid_144_19860", "source": "9205", "target": "3786" }, { "key": "geid_144_19861", "source": "7582", "target": "1642" }, { "key": "geid_144_19862", "source": "4125", "target": "2609" }, { "key": "geid_144_19863", "source": "3699", "target": "3204" }, { "key": "geid_144_19864", "source": "3347", "target": "1523" }, { "key": "geid_144_19865", "source": "5764", "target": "9594" }, { "key": "geid_144_19866", "source": "5936", "target": "3673" }, { "key": "geid_144_19867", "source": "9993", "target": "7878" }, { "key": "geid_144_19868", "source": "452", "target": "8000" }, { "key": "geid_144_19869", "source": "3970", "target": "9362" }, { "key": "geid_144_19870", "source": "5796", "target": "210" }, { "key": "geid_144_19871", "source": "9284", "target": "5600" }, { "key": "geid_144_19872", "source": "6390", "target": "3184" }, { "key": "geid_144_19873", "source": "4722", "target": "8677" }, { "key": "geid_144_19874", "source": "5101", "target": "9936" }, { "key": "geid_144_19875", "source": "3418", "target": "6798" }, { "key": "geid_144_19876", "source": "9246", "target": "2735" }, { "key": "geid_144_19877", "source": "6435", "target": "7594" }, { "key": "geid_144_19878", "source": "93", "target": "4782" }, { "key": "geid_144_19879", "source": "2996", "target": "4838" }, { "key": "geid_144_19880", "source": "8968", "target": "61" }, { "key": "geid_144_19881", "source": "7272", "target": "6967" }, { "key": "geid_144_19882", "source": "1024", "target": "7326" }, { "key": "geid_144_19883", "source": "8360", "target": "5103" }, { "key": "geid_144_19884", "source": "3686", "target": "4701" }, { "key": "geid_144_19885", "source": "917", "target": "7992" }, { "key": "geid_144_19886", "source": "4383", "target": "2603" }, { "key": "geid_144_19887", "source": "3880", "target": "5527" }, { "key": "geid_144_19888", "source": "2082", "target": "1936" }, { "key": "geid_144_19889", "source": "9390", "target": "6527" }, { "key": "geid_144_19890", "source": "9184", "target": "8790" }, { "key": "geid_144_19891", "source": "882", "target": "3154" }, { "key": "geid_144_19892", "source": "9987", "target": "243" }, { "key": "geid_144_19893", "source": "2949", "target": "3735" }, { "key": "geid_144_19894", "source": "8622", "target": "7821" }, { "key": "geid_144_19895", "source": "1518", "target": "3058" }, { "key": "geid_144_19896", "source": "3074", "target": "5543" }, { "key": "geid_144_19897", "source": "6420", "target": "641" }, { "key": "geid_144_19898", "source": "5640", "target": "5890" }, { "key": "geid_144_19899", "source": "674", "target": "4463" }, { "key": "geid_144_19900", "source": "2533", "target": "7082" }, { "key": "geid_144_19901", "source": "8317", "target": "6230" }, { "key": "geid_144_19902", "source": "2671", "target": "5874" }, { "key": "geid_144_19903", "source": "4304", "target": "3839" }, { "key": "geid_144_19904", "source": "1772", "target": "990" }, { "key": "geid_144_19905", "source": "6217", "target": "8028" }, { "key": "geid_144_19906", "source": "5352", "target": "4850" }, { "key": "geid_144_19907", "source": "6964", "target": "4753" }, { "key": "geid_144_19908", "source": "8985", "target": "1600" }, { "key": "geid_144_19909", "source": "1701", "target": "7320" }, { "key": "geid_144_19910", "source": "6034", "target": "3612" }, { "key": "geid_144_19911", "source": "951", "target": "2818" }, { "key": "geid_144_19912", "source": "801", "target": "7867" }, { "key": "geid_144_19913", "source": "8907", "target": "9522" }, { "key": "geid_144_19914", "source": "5011", "target": "4330" }, { "key": "geid_144_19915", "source": "2231", "target": "8727" }, { "key": "geid_144_19916", "source": "7490", "target": "57" }, { "key": "geid_144_19917", "source": "8515", "target": "8900" }, { "key": "geid_144_19918", "source": "6694", "target": "7674" }, { "key": "geid_144_19919", "source": "6099", "target": "6008" }, { "key": "geid_144_19920", "source": "8532", "target": "6427" }, { "key": "geid_144_19921", "source": "5", "target": "2320" }, { "key": "geid_144_19922", "source": "3311", "target": "1247" }, { "key": "geid_144_19923", "source": "6007", "target": "5029" }, { "key": "geid_144_19924", "source": "5828", "target": "4110" }, { "key": "geid_144_19925", "source": "4281", "target": "8269" }, { "key": "geid_144_19926", "source": "6960", "target": "3251" }, { "key": "geid_144_19927", "source": "1111", "target": "7683" }, { "key": "geid_144_19928", "source": "1759", "target": "5531" }, { "key": "geid_144_19929", "source": "4470", "target": "6811" }, { "key": "geid_144_19930", "source": "9434", "target": "5701" }, { "key": "geid_144_19931", "source": "7538", "target": "7938" }, { "key": "geid_144_19932", "source": "839", "target": "4726" }, { "key": "geid_144_19933", "source": "207", "target": "4654" }, { "key": "geid_144_19934", "source": "7472", "target": "5921" }, { "key": "geid_144_19935", "source": "2752", "target": "2446" }, { "key": "geid_144_19936", "source": "9396", "target": "4600" }, { "key": "geid_144_19937", "source": "4380", "target": "6237" }, { "key": "geid_144_19938", "source": "5601", "target": "3884" }, { "key": "geid_144_19939", "source": "5981", "target": "7066" }, { "key": "geid_144_19940", "source": "9201", "target": "7140" }, { "key": "geid_144_19941", "source": "1312", "target": "4743" }, { "key": "geid_144_19942", "source": "3008", "target": "9424" }, { "key": "geid_144_19943", "source": "7616", "target": "6819" }, { "key": "geid_144_19944", "source": "127", "target": "5395" }, { "key": "geid_144_19945", "source": "6143", "target": "2355" }, { "key": "geid_144_19946", "source": "5522", "target": "3261" }, { "key": "geid_144_19947", "source": "8382", "target": "7637" }, { "key": "geid_144_19948", "source": "6776", "target": "4298" }, { "key": "geid_144_19949", "source": "5817", "target": "8974" }, { "key": "geid_144_19950", "source": "9852", "target": "8814" }, { "key": "geid_144_19951", "source": "5279", "target": "7586" }, { "key": "geid_144_19952", "source": "9053", "target": "5236" }, { "key": "geid_144_19953", "source": "6655", "target": "7567" }, { "key": "geid_144_19954", "source": "638", "target": "3173" }, { "key": "geid_144_19955", "source": "6447", "target": "7121" }, { "key": "geid_144_19956", "source": "6256", "target": "3362" }, { "key": "geid_144_19957", "source": "2184", "target": "4046" }, { "key": "geid_144_19958", "source": "1", "target": "618" }, { "key": "geid_144_19959", "source": "9764", "target": "6839" }, { "key": "geid_144_19960", "source": "2489", "target": "5919" }, { "key": "geid_144_19961", "source": "6531", "target": "9975" }, { "key": "geid_144_19962", "source": "7597", "target": "5178" }, { "key": "geid_144_19963", "source": "898", "target": "7629" }, { "key": "geid_144_19964", "source": "2706", "target": "2739" }, { "key": "geid_144_19965", "source": "8992", "target": "6485" }, { "key": "geid_144_19966", "source": "2486", "target": "605" }, { "key": "geid_144_19967", "source": "8575", "target": "6754" }, { "key": "geid_144_19968", "source": "9170", "target": "5750" }, { "key": "geid_144_19969", "source": "735", "target": "3237" }, { "key": "geid_144_19970", "source": "9416", "target": "1571" }, { "key": "geid_144_19971", "source": "3449", "target": "8324" }, { "key": "geid_144_19972", "source": "1849", "target": "6444" }, { "key": "geid_144_19973", "source": "7766", "target": "608" }, { "key": "geid_144_19974", "source": "4952", "target": "1711" }, { "key": "geid_144_19975", "source": "3548", "target": "3969" }, { "key": "geid_144_19976", "source": "1003", "target": "8002" }, { "key": "geid_144_19977", "source": "4112", "target": "5047" }, { "key": "geid_144_19978", "source": "2535", "target": "8283" }, { "key": "geid_144_19979", "source": "5405", "target": "9606" }, { "key": "geid_144_19980", "source": "1071", "target": "8921" }, { "key": "geid_144_19981", "source": "1727", "target": "6930" }, { "key": "geid_144_19982", "source": "7150", "target": "1056" }, { "key": "geid_144_19983", "source": "4526", "target": "1540" }, { "key": "geid_144_19984", "source": "4775", "target": "1316" }, { "key": "geid_144_19985", "source": "8247", "target": "1290" }, { "key": "geid_144_19986", "source": "2175", "target": "7204" }, { "key": "geid_144_19987", "source": "1456", "target": "9242" }, { "key": "geid_144_19988", "source": "7982", "target": "9210" }, { "key": "geid_144_19989", "source": "2510", "target": "6919" }, { "key": "geid_144_19990", "source": "7732", "target": "1588" }, { "key": "geid_144_19991", "source": "2265", "target": "6788" }, { "key": "geid_144_19992", "source": "4347", "target": "9872" }, { "key": "geid_144_19993", "source": "7189", "target": "9028" }, { "key": "geid_144_19994", "source": "4652", "target": "1135" } ], "options": { "type": "mixed", "multi": false, "allowSelfLoops": true } } ================================================ FILE: packages/test/datasets/les-miserables.json ================================================ { "attributes": { "creator": "ofNodesAndEdges.com", "title": "Les Misérables, the characters coappearance weighted graph", "lastModifiedDate": "2010-05-29+01:27" }, "nodes": [ { "key": "0.0", "attributes": { "label": "Myriel", "authority": 0.01880342, "hub": 0.01880342, "color": "rgb(216,72,45)", "size": 22.714287, "x": 268.72385, "y": 91.18155, "z": 0, "nansi-louvain": 0, "nansi-weighted-degree": 25, "nansi-weighted-indegree": 25, "nansi-weighted-outdegree": 0, "nansi-degree": 10, "nansi-indegree": 10, "nansi-outdegree": 0 } }, { "key": "1.0", "attributes": { "label": "Napoleon", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": 296.39902, "y": 57.118374, "z": 0, "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "2.0", "attributes": { "label": "MlleBaptistine", "authority": 0.006837607, "hub": 0.006837607, "color": "rgb(187,16,10)", "size": 16.714285, "x": 248.45229, "y": 52.22656, "z": 0, "nansi-louvain": 0, "nansi-weighted-degree": 17, "nansi-weighted-indegree": 9, "nansi-weighted-outdegree": 8, "nansi-degree": 3, "nansi-indegree": 2, "nansi-outdegree": 1 } }, { "key": "3.0", "attributes": { "label": "MmeMagloire", "authority": 0.006837607, "hub": 0.006837607, "color": "rgb(187,16,10)", "size": 16.714285, "x": 224.83313, "y": 98.01885, "z": 0, "nansi-louvain": 0, "nansi-weighted-degree": 19, "nansi-weighted-indegree": 3, "nansi-weighted-outdegree": 16, "nansi-degree": 3, "nansi-indegree": 1, "nansi-outdegree": 2 } }, { "key": "4.0", "attributes": { "label": "CountessDeLo", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": 270.9098, "y": 149.2961, "z": 0, "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "5.0", "attributes": { "label": "Geborand", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": 318.6509, "y": 85.41602, "z": 0, "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "6.0", "attributes": { "label": "Champtercier", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": 330.3126, "y": 117.94921, "z": 0, "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "7.0", "attributes": { "label": "Cravatte", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": 310.513, "y": 155.66956, "z": 0, "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "8.0", "attributes": { "label": "Count", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": 295.74683, "y": 124.78035, "z": 0, "nansi-louvain": 0, "nansi-weighted-degree": 2, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 2, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "9.0", "attributes": { "label": "OldMan", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": 241.03372, "y": 131.8897, "z": 0, "nansi-louvain": 0, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "10.0", "attributes": { "label": "Labarre", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": -55.532795, "y": -246.75798, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 1, "nansi-outdegree": 0 } }, { "key": "11.0", "attributes": { "label": "Valjean", "authority": 0.06324787, "hub": 0.06324787, "color": "rgb(254,240,217)", "size": 45, "x": -8.81755, "y": -60.480377, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 144, "nansi-weighted-indegree": 133, "nansi-weighted-outdegree": 11, "nansi-degree": 36, "nansi-indegree": 32, "nansi-outdegree": 4 } }, { "key": "12.0", "attributes": { "label": "Marguerite", "authority": 0.0051282053, "hub": 0.0051282053, "color": "rgb(183,8,5)", "size": 15.857142, "x": 116.85369, "y": -100.77216, "z": 0, "nansi-louvain": 2, "nansi-weighted-degree": 2, "nansi-weighted-indegree": 2, "nansi-weighted-outdegree": 0, "nansi-degree": 2, "nansi-indegree": 1, "nansi-outdegree": 1 } }, { "key": "13.0", "attributes": { "label": "MmeDeR", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": 78.10812, "y": -16.99423, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "14.0", "attributes": { "label": "Isabeau", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": 47.669666, "y": -96.23158, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "15.0", "attributes": { "label": "Gervais", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": 20.945133, "y": -118.35298, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "16.0", "attributes": { "label": "Tholomyes", "authority": 0.017094018, "hub": 0.017094018, "color": "rgb(212,64,40)", "size": 21.857143, "x": 232.50653, "y": -165.75543, "z": 0, "nansi-louvain": 2, "nansi-weighted-degree": 24, "nansi-weighted-indegree": 24, "nansi-weighted-outdegree": 0, "nansi-degree": 9, "nansi-indegree": 9, "nansi-outdegree": 0 } }, { "key": "17.0", "attributes": { "label": "Listolier", "authority": 0.013675214, "hub": 0.013675214, "color": "rgb(204,48,30)", "size": 20.142857, "x": 322.50223, "y": -210.94756, "z": 0, "nansi-louvain": 2, "nansi-weighted-degree": 24, "nansi-weighted-indegree": 20, "nansi-weighted-outdegree": 4, "nansi-degree": 7, "nansi-indegree": 6, "nansi-outdegree": 1 } }, { "key": "18.0", "attributes": { "label": "Fameuil", "authority": 0.013675214, "hub": 0.013675214, "color": "rgb(204,48,30)", "size": 20.142857, "x": 322.0389, "y": -162.5361, "z": 0, "nansi-louvain": 2, "nansi-weighted-degree": 24, "nansi-weighted-indegree": 16, "nansi-weighted-outdegree": 8, "nansi-degree": 7, "nansi-indegree": 5, "nansi-outdegree": 2 } }, { "key": "19.0", "attributes": { "label": "Blacheville", "authority": 0.013675214, "hub": 0.013675214, "color": "rgb(204,48,30)", "size": 20.142857, "x": 282.84045, "y": -234.37758, "z": 0, "nansi-louvain": 2, "nansi-weighted-degree": 25, "nansi-weighted-indegree": 13, "nansi-weighted-outdegree": 12, "nansi-degree": 7, "nansi-indegree": 4, "nansi-outdegree": 3 } }, { "key": "20.0", "attributes": { "label": "Favourite", "authority": 0.013675214, "hub": 0.013675214, "color": "rgb(204,48,30)", "size": 20.142857, "x": 282.14212, "y": -141.3707, "z": 0, "nansi-louvain": 2, "nansi-weighted-degree": 26, "nansi-weighted-indegree": 13, "nansi-weighted-outdegree": 13, "nansi-degree": 7, "nansi-indegree": 3, "nansi-outdegree": 4 } }, { "key": "21.0", "attributes": { "label": "Dahlia", "authority": 0.013675214, "hub": 0.013675214, "color": "rgb(204,48,30)", "size": 20.142857, "x": 279.24896, "y": -186.69917, "z": 0, "nansi-louvain": 2, "nansi-weighted-degree": 25, "nansi-weighted-indegree": 8, "nansi-weighted-outdegree": 17, "nansi-degree": 7, "nansi-indegree": 2, "nansi-outdegree": 5 } }, { "key": "22.0", "attributes": { "label": "Zephine", "authority": 0.013675214, "hub": 0.013675214, "color": "rgb(204,48,30)", "size": 20.142857, "x": 240.49136, "y": -212.45226, "z": 0, "nansi-louvain": 2, "nansi-weighted-degree": 24, "nansi-weighted-indegree": 4, "nansi-weighted-outdegree": 20, "nansi-degree": 7, "nansi-indegree": 1, "nansi-outdegree": 6 } }, { "key": "23.0", "attributes": { "label": "Fantine", "authority": 0.027350428, "hub": 0.027350428, "color": "rgb(237,112,71)", "size": 27, "x": 185.86234, "y": -128.47615, "z": 0, "nansi-louvain": 2, "nansi-weighted-degree": 44, "nansi-weighted-indegree": 9, "nansi-weighted-outdegree": 35, "nansi-degree": 15, "nansi-indegree": 6, "nansi-outdegree": 9 } }, { "key": "24.0", "attributes": { "label": "MmeThenardier", "authority": 0.020512821, "hub": 0.020512821, "color": "rgb(220,80,50)", "size": 23.57143, "x": -15.730793, "y": 46.37429, "z": 0, "nansi-louvain": 3, "nansi-weighted-degree": 28, "nansi-weighted-indegree": 19, "nansi-weighted-outdegree": 9, "nansi-degree": 11, "nansi-indegree": 9, "nansi-outdegree": 2 } }, { "key": "25.0", "attributes": { "label": "Thenardier", "authority": 0.02905983, "hub": 0.02905983, "color": "rgb(241,120,76)", "size": 27.857143, "x": 3.6068764, "y": 98.60965, "z": 0, "nansi-louvain": 3, "nansi-weighted-degree": 55, "nansi-weighted-indegree": 30, "nansi-weighted-outdegree": 25, "nansi-degree": 16, "nansi-indegree": 13, "nansi-outdegree": 3 } }, { "key": "26.0", "attributes": { "label": "Cosette", "authority": 0.020512821, "hub": 0.020512821, "color": "rgb(220,80,50)", "size": 23.57143, "x": -69.92912, "y": -15.777599, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 63, "nansi-weighted-indegree": 28, "nansi-weighted-outdegree": 35, "nansi-degree": 11, "nansi-indegree": 7, "nansi-outdegree": 4 } }, { "key": "27.0", "attributes": { "label": "Javert", "authority": 0.03076923, "hub": 0.03076923, "color": "rgb(245,128,81)", "size": 28.714287, "x": 54.198936, "y": 49.115128, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 35, "nansi-weighted-indegree": 8, "nansi-weighted-outdegree": 27, "nansi-degree": 17, "nansi-indegree": 12, "nansi-outdegree": 5 } }, { "key": "28.0", "attributes": { "label": "Fauchelevent", "authority": 0.008547009, "hub": 0.008547009, "color": "rgb(191,24,15)", "size": 17.571428, "x": 58.138313, "y": -56.714897, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 13, "nansi-weighted-indegree": 5, "nansi-weighted-outdegree": 8, "nansi-degree": 4, "nansi-indegree": 2, "nansi-outdegree": 2 } }, { "key": "29.0", "attributes": { "label": "Bamatabois", "authority": 0.015384615, "hub": 0.015384615, "color": "rgb(208,56,35)", "size": 21, "x": 97.39532, "y": -157.35661, "z": 0, "nansi-louvain": 4, "nansi-weighted-degree": 6, "nansi-weighted-indegree": 4, "nansi-weighted-outdegree": 2, "nansi-degree": 8, "nansi-indegree": 5, "nansi-outdegree": 3 } }, { "key": "30.0", "attributes": { "label": "Perpetue", "authority": 0.0051282053, "hub": 0.0051282053, "color": "rgb(183,8,5)", "size": 15.857142, "x": 157.66608, "y": -88.86034, "z": 0, "nansi-louvain": 2, "nansi-weighted-degree": 2, "nansi-weighted-indegree": 2, "nansi-weighted-outdegree": 0, "nansi-degree": 2, "nansi-indegree": 1, "nansi-outdegree": 1 } }, { "key": "31.0", "attributes": { "label": "Simplice", "authority": 0.008547009, "hub": 0.008547009, "color": "rgb(191,24,15)", "size": 17.571428, "x": 130.24326, "y": -62.113045, "z": 0, "nansi-louvain": 2, "nansi-weighted-degree": 7, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 7, "nansi-degree": 4, "nansi-indegree": 0, "nansi-outdegree": 4 } }, { "key": "32.0", "attributes": { "label": "Scaufflaire", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": -31.725157, "y": -124.8531, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "33.0", "attributes": { "label": "Woman1", "authority": 0.0051282053, "hub": 0.0051282053, "color": "rgb(183,8,5)", "size": 15.857142, "x": 45.4282, "y": -2.6807823, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 2, "nansi-degree": 2, "nansi-indegree": 0, "nansi-outdegree": 2 } }, { "key": "34.0", "attributes": { "label": "Judge", "authority": 0.011965812, "hub": 0.011965812, "color": "rgb(199,40,25)", "size": 19.285715, "x": -2.146402, "y": -152.7878, "z": 0, "nansi-louvain": 4, "nansi-weighted-degree": 14, "nansi-weighted-indegree": 9, "nansi-weighted-outdegree": 5, "nansi-degree": 6, "nansi-indegree": 4, "nansi-outdegree": 2 } }, { "key": "35.0", "attributes": { "label": "Champmathieu", "authority": 0.011965812, "hub": 0.011965812, "color": "rgb(199,40,25)", "size": 19.285715, "x": 54.183117, "y": -142.10239, "z": 0, "nansi-louvain": 4, "nansi-weighted-degree": 14, "nansi-weighted-indegree": 6, "nansi-weighted-outdegree": 8, "nansi-degree": 6, "nansi-indegree": 3, "nansi-outdegree": 3 } }, { "key": "36.0", "attributes": { "label": "Brevet", "authority": 0.011965812, "hub": 0.011965812, "color": "rgb(199,40,25)", "size": 19.285715, "x": -21.096437, "y": -192.47128, "z": 0, "nansi-louvain": 4, "nansi-weighted-degree": 10, "nansi-weighted-indegree": 4, "nansi-weighted-outdegree": 6, "nansi-degree": 6, "nansi-indegree": 2, "nansi-outdegree": 4 } }, { "key": "37.0", "attributes": { "label": "Chenildieu", "authority": 0.011965812, "hub": 0.011965812, "color": "rgb(199,40,25)", "size": 19.285715, "x": 56.919018, "y": -184.99847, "z": 0, "nansi-louvain": 4, "nansi-weighted-degree": 10, "nansi-weighted-indegree": 2, "nansi-weighted-outdegree": 8, "nansi-degree": 6, "nansi-indegree": 1, "nansi-outdegree": 5 } }, { "key": "38.0", "attributes": { "label": "Cochepaille", "authority": 0.011965812, "hub": 0.011965812, "color": "rgb(199,40,25)", "size": 19.285715, "x": 21.456747, "y": -211.19899, "z": 0, "nansi-louvain": 4, "nansi-weighted-degree": 10, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 10, "nansi-degree": 6, "nansi-indegree": 0, "nansi-outdegree": 6 } }, { "key": "39.0", "attributes": { "label": "Pontmercy", "authority": 0.006837607, "hub": 0.006837607, "color": "rgb(187,16,10)", "size": 16.714285, "x": -69.42261, "y": 66.22773, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 3, "nansi-indegree": 2, "nansi-outdegree": 1 } }, { "key": "40.0", "attributes": { "label": "Boulatruelle", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": 52.13746, "y": 97.863976, "z": 0, "nansi-louvain": 3, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "41.0", "attributes": { "label": "Eponine", "authority": 0.020512821, "hub": 0.020512821, "color": "rgb(220,80,50)", "size": 23.57143, "x": -84.15585, "y": 140.50175, "z": 0, "nansi-louvain": 3, "nansi-weighted-degree": 12, "nansi-weighted-indegree": 7, "nansi-weighted-outdegree": 5, "nansi-degree": 11, "nansi-indegree": 9, "nansi-outdegree": 2 } }, { "key": "42.0", "attributes": { "label": "Anzelma", "authority": 0.006837607, "hub": 0.006837607, "color": "rgb(187,16,10)", "size": 16.714285, "x": -47.696083, "y": 112.90357, "z": 0, "nansi-louvain": 3, "nansi-weighted-degree": 4, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 4, "nansi-degree": 3, "nansi-indegree": 0, "nansi-outdegree": 3 } }, { "key": "43.0", "attributes": { "label": "Woman2", "authority": 0.006837607, "hub": 0.006837607, "color": "rgb(187,16,10)", "size": 16.714285, "x": 10.037987, "y": 7.8234367, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 3, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 3, "nansi-degree": 3, "nansi-indegree": 0, "nansi-outdegree": 3 } }, { "key": "44.0", "attributes": { "label": "MotherInnocent", "authority": 0.0051282053, "hub": 0.0051282053, "color": "rgb(183,8,5)", "size": 15.857142, "x": 82.99555, "y": -87.651726, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 3, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 3, "nansi-degree": 2, "nansi-indegree": 0, "nansi-outdegree": 2 } }, { "key": "45.0", "attributes": { "label": "Gribier", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": 94.93769, "y": -47.799778, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 2, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "46.0", "attributes": { "label": "Jondrette", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": -293.23438, "y": -146.10257, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 1, "nansi-outdegree": 0 } }, { "key": "47.0", "attributes": { "label": "MmeBurgon", "authority": 0.0051282053, "hub": 0.0051282053, "color": "rgb(183,8,5)", "size": 15.857142, "x": -294.94247, "y": -108.07895, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 2, "nansi-weighted-indegree": 2, "nansi-weighted-outdegree": 0, "nansi-degree": 2, "nansi-indegree": 1, "nansi-outdegree": 1 } }, { "key": "48.0", "attributes": { "label": "Gavroche", "authority": 0.03931624, "hub": 0.03931624, "color": "rgb(252,160,114)", "size": 33, "x": -215.57619, "y": 34.40003, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 45, "nansi-weighted-indegree": 43, "nansi-weighted-outdegree": 2, "nansi-degree": 22, "nansi-indegree": 18, "nansi-outdegree": 4 } }, { "key": "49.0", "attributes": { "label": "Gillenormand", "authority": 0.013675214, "hub": 0.013675214, "color": "rgb(204,48,30)", "size": 20.142857, "x": -119.18742, "y": -17.39732, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 26, "nansi-weighted-indegree": 21, "nansi-weighted-outdegree": 5, "nansi-degree": 7, "nansi-indegree": 5, "nansi-outdegree": 2 } }, { "key": "50.0", "attributes": { "label": "Magnon", "authority": 0.0051282053, "hub": 0.0051282053, "color": "rgb(183,8,5)", "size": 15.857142, "x": -57.473045, "y": 29.63873, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 2, "nansi-indegree": 0, "nansi-outdegree": 2 } }, { "key": "51.0", "attributes": { "label": "MlleGillenormand", "authority": 0.013675214, "hub": 0.013675214, "color": "rgb(204,48,30)", "size": 20.142857, "x": -93.255005, "y": -60.657784, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 21, "nansi-weighted-indegree": 8, "nansi-weighted-outdegree": 13, "nansi-degree": 7, "nansi-indegree": 4, "nansi-outdegree": 3 } }, { "key": "52.0", "attributes": { "label": "MmePontmercy", "authority": 0.0051282053, "hub": 0.0051282053, "color": "rgb(183,8,5)", "size": 15.857142, "x": -93.764046, "y": 22.565668, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 2, "nansi-indegree": 0, "nansi-outdegree": 2 } }, { "key": "53.0", "attributes": { "label": "MlleVaubois", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": -132.14008, "y": -66.85538, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "54.0", "attributes": { "label": "LtGillenormand", "authority": 0.008547009, "hub": 0.008547009, "color": "rgb(191,24,15)", "size": 17.571428, "x": -95.75337, "y": -102.71505, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 2, "nansi-degree": 4, "nansi-indegree": 1, "nansi-outdegree": 3 } }, { "key": "55.0", "attributes": { "label": "Marius", "authority": 0.034188036, "hub": 0.034188036, "color": "rgb(252,143,92)", "size": 30.428574, "x": -142.15263, "y": 36.388676, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 97, "nansi-weighted-indegree": 28, "nansi-weighted-outdegree": 69, "nansi-degree": 19, "nansi-indegree": 9, "nansi-outdegree": 10 } }, { "key": "56.0", "attributes": { "label": "BaronessT", "authority": 0.0051282053, "hub": 0.0051282053, "color": "rgb(183,8,5)", "size": 15.857142, "x": -160.2533, "y": -24.29684, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 2, "nansi-indegree": 0, "nansi-outdegree": 2 } }, { "key": "57.0", "attributes": { "label": "Mabeuf", "authority": 0.020512821, "hub": 0.020512821, "color": "rgb(220,80,50)", "size": 23.57143, "x": -267.16248, "y": 196.98003, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 9, "nansi-weighted-indegree": 9, "nansi-weighted-outdegree": 0, "nansi-degree": 11, "nansi-indegree": 8, "nansi-outdegree": 3 } }, { "key": "58.0", "attributes": { "label": "Enjolras", "authority": 0.027350428, "hub": 0.027350428, "color": "rgb(237,112,71)", "size": 27, "x": -190.88988, "y": 96.44671, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 88, "nansi-weighted-indegree": 64, "nansi-weighted-outdegree": 24, "nansi-degree": 15, "nansi-indegree": 10, "nansi-outdegree": 5 } }, { "key": "59.0", "attributes": { "label": "Combeferre", "authority": 0.020512821, "hub": 0.020512821, "color": "rgb(220,80,50)", "size": 23.57143, "x": -222.5417, "y": 144.66484, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 67, "nansi-weighted-indegree": 39, "nansi-weighted-outdegree": 28, "nansi-degree": 11, "nansi-indegree": 7, "nansi-outdegree": 4 } }, { "key": "60.0", "attributes": { "label": "Prouvaire", "authority": 0.017094018, "hub": 0.017094018, "color": "rgb(212,64,40)", "size": 21.857143, "x": -325.61102, "y": 166.71417, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 17, "nansi-weighted-indegree": 11, "nansi-weighted-outdegree": 6, "nansi-degree": 9, "nansi-indegree": 6, "nansi-outdegree": 3 } }, { "key": "61.0", "attributes": { "label": "Feuilly", "authority": 0.020512821, "hub": 0.020512821, "color": "rgb(220,80,50)", "size": 23.57143, "x": -276.3468, "y": 145.79153, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 35, "nansi-weighted-indegree": 20, "nansi-weighted-outdegree": 15, "nansi-degree": 11, "nansi-indegree": 5, "nansi-outdegree": 6 } }, { "key": "62.0", "attributes": { "label": "Courfeyrac", "authority": 0.023931624, "hub": 0.023931624, "color": "rgb(229,96,61)", "size": 25.285713, "x": -251.45561, "y": 97.83937, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 82, "nansi-weighted-indegree": 25, "nansi-weighted-outdegree": 57, "nansi-degree": 13, "nansi-indegree": 5, "nansi-outdegree": 8 } }, { "key": "63.0", "attributes": { "label": "Bahorel", "authority": 0.022222223, "hub": 0.022222223, "color": "rgb(224,88,55)", "size": 24.428572, "x": -318.40936, "y": 114.202415, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 36, "nansi-weighted-indegree": 9, "nansi-weighted-outdegree": 27, "nansi-degree": 12, "nansi-indegree": 4, "nansi-outdegree": 8 } }, { "key": "64.0", "attributes": { "label": "Bossuet", "authority": 0.023931624, "hub": 0.023931624, "color": "rgb(229,96,61)", "size": 25.285713, "x": -278.9682, "y": 45.932438, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 63, "nansi-weighted-indegree": 10, "nansi-weighted-outdegree": 53, "nansi-degree": 13, "nansi-indegree": 3, "nansi-outdegree": 10 } }, { "key": "65.0", "attributes": { "label": "Joly", "authority": 0.022222223, "hub": 0.022222223, "color": "rgb(224,88,55)", "size": 24.428572, "x": -333.04984, "y": 62.438156, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 41, "nansi-weighted-indegree": 2, "nansi-weighted-outdegree": 39, "nansi-degree": 12, "nansi-indegree": 2, "nansi-outdegree": 10 } }, { "key": "66.0", "attributes": { "label": "Grantaire", "authority": 0.01880342, "hub": 0.01880342, "color": "rgb(216,72,45)", "size": 22.714287, "x": -370.2446, "y": 101.73884, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 10, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 10, "nansi-degree": 10, "nansi-indegree": 1, "nansi-outdegree": 9 } }, { "key": "67.0", "attributes": { "label": "MotherPlutarch", "authority": 0.0034188034, "hub": 0.0034188034, "color": "rgb(179,0,0)", "size": 15, "x": -253.54378, "y": 237.9443, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 3, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 3, "nansi-degree": 1, "nansi-indegree": 0, "nansi-outdegree": 1 } }, { "key": "68.0", "attributes": { "label": "Gueulemer", "authority": 0.01880342, "hub": 0.01880342, "color": "rgb(216,72,45)", "size": 22.714287, "x": -16.550194, "y": 152.69055, "z": 0, "nansi-louvain": 3, "nansi-weighted-degree": 20, "nansi-weighted-indegree": 15, "nansi-weighted-outdegree": 5, "nansi-degree": 10, "nansi-indegree": 4, "nansi-outdegree": 6 } }, { "key": "69.0", "attributes": { "label": "Babet", "authority": 0.01880342, "hub": 0.01880342, "color": "rgb(216,72,45)", "size": 22.714287, "x": 35.653145, "y": 144.49445, "z": 0, "nansi-louvain": 3, "nansi-weighted-degree": 23, "nansi-weighted-indegree": 9, "nansi-weighted-outdegree": 14, "nansi-degree": 10, "nansi-indegree": 3, "nansi-outdegree": 7 } }, { "key": "70.0", "attributes": { "label": "Claquesous", "authority": 0.01880342, "hub": 0.01880342, "color": "rgb(216,72,45)", "size": 22.714287, "x": 58.97649, "y": 188.46011, "z": 0, "nansi-louvain": 3, "nansi-weighted-degree": 14, "nansi-weighted-indegree": 2, "nansi-weighted-outdegree": 12, "nansi-degree": 10, "nansi-indegree": 2, "nansi-outdegree": 8 } }, { "key": "71.0", "attributes": { "label": "Montparnasse", "authority": 0.017094018, "hub": 0.017094018, "color": "rgb(212,64,40)", "size": 21.857143, "x": -2.9325058, "y": 200.66508, "z": 0, "nansi-louvain": 3, "nansi-weighted-degree": 6, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 6, "nansi-degree": 9, "nansi-indegree": 1, "nansi-outdegree": 8 } }, { "key": "72.0", "attributes": { "label": "Toussaint", "authority": 0.006837607, "hub": 0.006837607, "color": "rgb(187,16,10)", "size": 16.714285, "x": -30.056648, "y": 3.5053203, "z": 0, "nansi-louvain": 1, "nansi-weighted-degree": 2, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 2, "nansi-degree": 3, "nansi-indegree": 0, "nansi-outdegree": 3 } }, { "key": "73.0", "attributes": { "label": "Child1", "authority": 0.0051282053, "hub": 0.0051282053, "color": "rgb(183,8,5)", "size": 15.857142, "x": -244.859, "y": -11.3161335, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 5, "nansi-weighted-indegree": 3, "nansi-weighted-outdegree": 2, "nansi-degree": 2, "nansi-indegree": 1, "nansi-outdegree": 1 } }, { "key": "74.0", "attributes": { "label": "Child2", "authority": 0.0051282053, "hub": 0.0051282053, "color": "rgb(183,8,5)", "size": 15.857142, "x": -280.33203, "y": -1.466383, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 5, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 5, "nansi-degree": 2, "nansi-indegree": 0, "nansi-outdegree": 2 } }, { "key": "75.0", "attributes": { "label": "Brujon", "authority": 0.013675214, "hub": 0.013675214, "color": "rgb(204,48,30)", "size": 20.142857, "x": -56.819256, "y": 182.0544, "z": 0, "nansi-louvain": 3, "nansi-weighted-degree": 9, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 9, "nansi-degree": 7, "nansi-indegree": 0, "nansi-outdegree": 7 } }, { "key": "76.0", "attributes": { "label": "MmeHucheloup", "authority": 0.013675214, "hub": 0.013675214, "color": "rgb(204,48,30)", "size": 20.142857, "x": -382.06223, "y": 47.045475, "z": 0, "nansi-louvain": 5, "nansi-weighted-degree": 0, "nansi-weighted-indegree": 0, "nansi-weighted-outdegree": 0, "nansi-degree": 7, "nansi-indegree": 0, "nansi-outdegree": 7 } } ], "edges": [ { "source": "1.0", "target": "0.0", "key": "0" }, { "source": "2.0", "target": "0.0", "key": "1", "attributes": { "weight": 8 } }, { "source": "3.0", "target": "0.0", "key": "2", "attributes": { "weight": 10 } }, { "source": "3.0", "target": "2.0", "key": "3", "attributes": { "weight": 6 } }, { "source": "4.0", "target": "0.0", "key": "4" }, { "source": "5.0", "target": "0.0", "key": "5" }, { "source": "6.0", "target": "0.0", "key": "6" }, { "source": "7.0", "target": "0.0", "key": "7" }, { "source": "8.0", "target": "0.0", "key": "8", "attributes": { "weight": 2 } }, { "source": "9.0", "target": "0.0", "key": "9" }, { "source": "11.0", "target": "0.0", "key": "13", "attributes": { "weight": 5 } }, { "source": "11.0", "target": "2.0", "key": "12", "attributes": { "weight": 3 } }, { "source": "11.0", "target": "3.0", "key": "11", "attributes": { "weight": 3 } }, { "source": "11.0", "target": "10.0", "key": "10" }, { "source": "12.0", "target": "11.0", "key": "14" }, { "source": "13.0", "target": "11.0", "key": "15" }, { "source": "14.0", "target": "11.0", "key": "16" }, { "source": "15.0", "target": "11.0", "key": "17" }, { "source": "17.0", "target": "16.0", "key": "18", "attributes": { "weight": 4 } }, { "source": "18.0", "target": "16.0", "key": "19", "attributes": { "weight": 4 } }, { "source": "18.0", "target": "17.0", "key": "20", "attributes": { "weight": 4 } }, { "source": "19.0", "target": "16.0", "key": "21", "attributes": { "weight": 4 } }, { "source": "19.0", "target": "17.0", "key": "22", "attributes": { "weight": 4 } }, { "source": "19.0", "target": "18.0", "key": "23", "attributes": { "weight": 4 } }, { "source": "20.0", "target": "16.0", "key": "24", "attributes": { "weight": 3 } }, { "source": "20.0", "target": "17.0", "key": "25", "attributes": { "weight": 3 } }, { "source": "20.0", "target": "18.0", "key": "26", "attributes": { "weight": 3 } }, { "source": "20.0", "target": "19.0", "key": "27", "attributes": { "weight": 4 } }, { "source": "21.0", "target": "16.0", "key": "28", "attributes": { "weight": 3 } }, { "source": "21.0", "target": "17.0", "key": "29", "attributes": { "weight": 3 } }, { "source": "21.0", "target": "18.0", "key": "30", "attributes": { "weight": 3 } }, { "source": "21.0", "target": "19.0", "key": "31", "attributes": { "weight": 3 } }, { "source": "21.0", "target": "20.0", "key": "32", "attributes": { "weight": 5 } }, { "source": "22.0", "target": "16.0", "key": "33", "attributes": { "weight": 3 } }, { "source": "22.0", "target": "17.0", "key": "34", "attributes": { "weight": 3 } }, { "source": "22.0", "target": "18.0", "key": "35", "attributes": { "weight": 3 } }, { "source": "22.0", "target": "19.0", "key": "36", "attributes": { "weight": 3 } }, { "source": "22.0", "target": "20.0", "key": "37", "attributes": { "weight": 4 } }, { "source": "22.0", "target": "21.0", "key": "38", "attributes": { "weight": 4 } }, { "source": "23.0", "target": "11.0", "key": "47", "attributes": { "weight": 9 } }, { "source": "23.0", "target": "12.0", "key": "46", "attributes": { "weight": 2 } }, { "source": "23.0", "target": "16.0", "key": "39", "attributes": { "weight": 3 } }, { "source": "23.0", "target": "17.0", "key": "40", "attributes": { "weight": 3 } }, { "source": "23.0", "target": "18.0", "key": "41", "attributes": { "weight": 3 } }, { "source": "23.0", "target": "19.0", "key": "42", "attributes": { "weight": 3 } }, { "source": "23.0", "target": "20.0", "key": "43", "attributes": { "weight": 4 } }, { "source": "23.0", "target": "21.0", "key": "44", "attributes": { "weight": 4 } }, { "source": "23.0", "target": "22.0", "key": "45", "attributes": { "weight": 4 } }, { "source": "24.0", "target": "11.0", "key": "49", "attributes": { "weight": 7 } }, { "source": "24.0", "target": "23.0", "key": "48", "attributes": { "weight": 2 } }, { "source": "25.0", "target": "11.0", "key": "52", "attributes": { "weight": 12 } }, { "source": "25.0", "target": "23.0", "key": "51" }, { "source": "25.0", "target": "24.0", "key": "50", "attributes": { "weight": 13 } }, { "source": "26.0", "target": "11.0", "key": "54", "attributes": { "weight": 31 } }, { "source": "26.0", "target": "16.0", "key": "55" }, { "source": "26.0", "target": "24.0", "key": "53", "attributes": { "weight": 4 } }, { "source": "26.0", "target": "25.0", "key": "56" }, { "source": "27.0", "target": "11.0", "key": "57", "attributes": { "weight": 17 } }, { "source": "27.0", "target": "23.0", "key": "58", "attributes": { "weight": 5 } }, { "source": "27.0", "target": "24.0", "key": "60" }, { "source": "27.0", "target": "25.0", "key": "59", "attributes": { "weight": 5 } }, { "source": "27.0", "target": "26.0", "key": "61" }, { "source": "28.0", "target": "11.0", "key": "62", "attributes": { "weight": 8 } }, { "source": "28.0", "target": "27.0", "key": "63" }, { "source": "29.0", "target": "11.0", "key": "66", "attributes": { "weight": 2 } }, { "source": "29.0", "target": "23.0", "key": "64" }, { "source": "29.0", "target": "27.0", "key": "65" }, { "source": "30.0", "target": "23.0", "key": "67" }, { "source": "31.0", "target": "11.0", "key": "69", "attributes": { "weight": 3 } }, { "source": "31.0", "target": "23.0", "key": "70", "attributes": { "weight": 2 } }, { "source": "31.0", "target": "27.0", "key": "71" }, { "source": "31.0", "target": "30.0", "key": "68", "attributes": { "weight": 2 } }, { "source": "32.0", "target": "11.0", "key": "72" }, { "source": "33.0", "target": "11.0", "key": "73", "attributes": { "weight": 2 } }, { "source": "33.0", "target": "27.0", "key": "74" }, { "source": "34.0", "target": "11.0", "key": "75", "attributes": { "weight": 3 } }, { "source": "34.0", "target": "29.0", "key": "76", "attributes": { "weight": 2 } }, { "source": "35.0", "target": "11.0", "key": "77", "attributes": { "weight": 3 } }, { "source": "35.0", "target": "29.0", "key": "79", "attributes": { "weight": 2 } }, { "source": "35.0", "target": "34.0", "key": "78", "attributes": { "weight": 3 } }, { "source": "36.0", "target": "11.0", "key": "82", "attributes": { "weight": 2 } }, { "source": "36.0", "target": "29.0", "key": "83" }, { "source": "36.0", "target": "34.0", "key": "80", "attributes": { "weight": 2 } }, { "source": "36.0", "target": "35.0", "key": "81", "attributes": { "weight": 2 } }, { "source": "37.0", "target": "11.0", "key": "87", "attributes": { "weight": 2 } }, { "source": "37.0", "target": "29.0", "key": "88" }, { "source": "37.0", "target": "34.0", "key": "84", "attributes": { "weight": 2 } }, { "source": "37.0", "target": "35.0", "key": "85", "attributes": { "weight": 2 } }, { "source": "37.0", "target": "36.0", "key": "86", "attributes": { "weight": 2 } }, { "source": "38.0", "target": "11.0", "key": "93", "attributes": { "weight": 2 } }, { "source": "38.0", "target": "29.0", "key": "94" }, { "source": "38.0", "target": "34.0", "key": "89", "attributes": { "weight": 2 } }, { "source": "38.0", "target": "35.0", "key": "90", "attributes": { "weight": 2 } }, { "source": "38.0", "target": "36.0", "key": "91", "attributes": { "weight": 2 } }, { "source": "38.0", "target": "37.0", "key": "92", "attributes": { "weight": 2 } }, { "source": "39.0", "target": "25.0", "key": "95" }, { "source": "40.0", "target": "25.0", "key": "96" }, { "source": "41.0", "target": "24.0", "key": "97", "attributes": { "weight": 2 } }, { "source": "41.0", "target": "25.0", "key": "98", "attributes": { "weight": 3 } }, { "source": "42.0", "target": "24.0", "key": "101" }, { "source": "42.0", "target": "25.0", "key": "100", "attributes": { "weight": 2 } }, { "source": "42.0", "target": "41.0", "key": "99", "attributes": { "weight": 2 } }, { "source": "43.0", "target": "11.0", "key": "102", "attributes": { "weight": 3 } }, { "source": "43.0", "target": "26.0", "key": "103" }, { "source": "43.0", "target": "27.0", "key": "104" }, { "source": "44.0", "target": "11.0", "key": "106" }, { "source": "44.0", "target": "28.0", "key": "105", "attributes": { "weight": 3 } }, { "source": "45.0", "target": "28.0", "key": "107", "attributes": { "weight": 2 } }, { "source": "47.0", "target": "46.0", "key": "108" }, { "source": "48.0", "target": "11.0", "key": "112" }, { "source": "48.0", "target": "25.0", "key": "110" }, { "source": "48.0", "target": "27.0", "key": "111" }, { "source": "48.0", "target": "47.0", "key": "109", "attributes": { "weight": 2 } }, { "source": "49.0", "target": "11.0", "key": "114", "attributes": { "weight": 2 } }, { "source": "49.0", "target": "26.0", "key": "113", "attributes": { "weight": 3 } }, { "source": "50.0", "target": "24.0", "key": "116" }, { "source": "50.0", "target": "49.0", "key": "115" }, { "source": "51.0", "target": "11.0", "key": "119", "attributes": { "weight": 2 } }, { "source": "51.0", "target": "26.0", "key": "118", "attributes": { "weight": 2 } }, { "source": "51.0", "target": "49.0", "key": "117", "attributes": { "weight": 9 } }, { "source": "52.0", "target": "39.0", "key": "121" }, { "source": "52.0", "target": "51.0", "key": "120" }, { "source": "53.0", "target": "51.0", "key": "122" }, { "source": "54.0", "target": "26.0", "key": "125" }, { "source": "54.0", "target": "49.0", "key": "124" }, { "source": "54.0", "target": "51.0", "key": "123", "attributes": { "weight": 2 } }, { "source": "55.0", "target": "11.0", "key": "131", "attributes": { "weight": 19 } }, { "source": "55.0", "target": "16.0", "key": "132" }, { "source": "55.0", "target": "25.0", "key": "133", "attributes": { "weight": 2 } }, { "source": "55.0", "target": "26.0", "key": "130", "attributes": { "weight": 21 } }, { "source": "55.0", "target": "39.0", "key": "128" }, { "source": "55.0", "target": "41.0", "key": "134", "attributes": { "weight": 5 } }, { "source": "55.0", "target": "48.0", "key": "135", "attributes": { "weight": 4 } }, { "source": "55.0", "target": "49.0", "key": "127", "attributes": { "weight": 12 } }, { "source": "55.0", "target": "51.0", "key": "126", "attributes": { "weight": 6 } }, { "source": "55.0", "target": "54.0", "key": "129" }, { "source": "56.0", "target": "49.0", "key": "136" }, { "source": "56.0", "target": "55.0", "key": "137" }, { "source": "57.0", "target": "41.0", "key": "139" }, { "source": "57.0", "target": "48.0", "key": "140" }, { "source": "57.0", "target": "55.0", "key": "138" }, { "source": "58.0", "target": "11.0", "key": "145", "attributes": { "weight": 4 } }, { "source": "58.0", "target": "27.0", "key": "143", "attributes": { "weight": 6 } }, { "source": "58.0", "target": "48.0", "key": "142", "attributes": { "weight": 7 } }, { "source": "58.0", "target": "55.0", "key": "141", "attributes": { "weight": 7 } }, { "source": "58.0", "target": "57.0", "key": "144" }, { "source": "59.0", "target": "48.0", "key": "148", "attributes": { "weight": 6 } }, { "source": "59.0", "target": "55.0", "key": "147", "attributes": { "weight": 5 } }, { "source": "59.0", "target": "57.0", "key": "149", "attributes": { "weight": 2 } }, { "source": "59.0", "target": "58.0", "key": "146", "attributes": { "weight": 15 } }, { "source": "60.0", "target": "48.0", "key": "150" }, { "source": "60.0", "target": "58.0", "key": "151", "attributes": { "weight": 4 } }, { "source": "60.0", "target": "59.0", "key": "152", "attributes": { "weight": 2 } }, { "source": "61.0", "target": "48.0", "key": "153", "attributes": { "weight": 2 } }, { "source": "61.0", "target": "55.0", "key": "158" }, { "source": "61.0", "target": "57.0", "key": "157" }, { "source": "61.0", "target": "58.0", "key": "154", "attributes": { "weight": 6 } }, { "source": "61.0", "target": "59.0", "key": "156", "attributes": { "weight": 5 } }, { "source": "61.0", "target": "60.0", "key": "155", "attributes": { "weight": 2 } }, { "source": "62.0", "target": "41.0", "key": "164" }, { "source": "62.0", "target": "48.0", "key": "162", "attributes": { "weight": 7 } }, { "source": "62.0", "target": "55.0", "key": "159", "attributes": { "weight": 9 } }, { "source": "62.0", "target": "57.0", "key": "163", "attributes": { "weight": 2 } }, { "source": "62.0", "target": "58.0", "key": "160", "attributes": { "weight": 17 } }, { "source": "62.0", "target": "59.0", "key": "161", "attributes": { "weight": 13 } }, { "source": "62.0", "target": "60.0", "key": "166", "attributes": { "weight": 3 } }, { "source": "62.0", "target": "61.0", "key": "165", "attributes": { "weight": 6 } }, { "source": "63.0", "target": "48.0", "key": "168", "attributes": { "weight": 5 } }, { "source": "63.0", "target": "55.0", "key": "174" }, { "source": "63.0", "target": "57.0", "key": "170", "attributes": { "weight": 2 } }, { "source": "63.0", "target": "58.0", "key": "171", "attributes": { "weight": 4 } }, { "source": "63.0", "target": "59.0", "key": "167", "attributes": { "weight": 5 } }, { "source": "63.0", "target": "60.0", "key": "173", "attributes": { "weight": 2 } }, { "source": "63.0", "target": "61.0", "key": "172", "attributes": { "weight": 3 } }, { "source": "63.0", "target": "62.0", "key": "169", "attributes": { "weight": 6 } }, { "source": "64.0", "target": "11.0", "key": "184" }, { "source": "64.0", "target": "48.0", "key": "177", "attributes": { "weight": 5 } }, { "source": "64.0", "target": "55.0", "key": "175", "attributes": { "weight": 5 } }, { "source": "64.0", "target": "57.0", "key": "183" }, { "source": "64.0", "target": "58.0", "key": "179", "attributes": { "weight": 10 } }, { "source": "64.0", "target": "59.0", "key": "182", "attributes": { "weight": 9 } }, { "source": "64.0", "target": "60.0", "key": "181", "attributes": { "weight": 2 } }, { "source": "64.0", "target": "61.0", "key": "180", "attributes": { "weight": 6 } }, { "source": "64.0", "target": "62.0", "key": "176", "attributes": { "weight": 12 } }, { "source": "64.0", "target": "63.0", "key": "178", "attributes": { "weight": 4 } }, { "source": "65.0", "target": "48.0", "key": "187", "attributes": { "weight": 3 } }, { "source": "65.0", "target": "55.0", "key": "194", "attributes": { "weight": 2 } }, { "source": "65.0", "target": "57.0", "key": "193" }, { "source": "65.0", "target": "58.0", "key": "189", "attributes": { "weight": 5 } }, { "source": "65.0", "target": "59.0", "key": "192", "attributes": { "weight": 5 } }, { "source": "65.0", "target": "60.0", "key": "191", "attributes": { "weight": 2 } }, { "source": "65.0", "target": "61.0", "key": "190", "attributes": { "weight": 5 } }, { "source": "65.0", "target": "62.0", "key": "188", "attributes": { "weight": 5 } }, { "source": "65.0", "target": "63.0", "key": "185", "attributes": { "weight": 5 } }, { "source": "65.0", "target": "64.0", "key": "186", "attributes": { "weight": 7 } }, { "source": "66.0", "target": "48.0", "key": "200" }, { "source": "66.0", "target": "58.0", "key": "196", "attributes": { "weight": 3 } }, { "source": "66.0", "target": "59.0", "key": "197" }, { "source": "66.0", "target": "60.0", "key": "203" }, { "source": "66.0", "target": "61.0", "key": "202" }, { "source": "66.0", "target": "62.0", "key": "198", "attributes": { "weight": 2 } }, { "source": "66.0", "target": "63.0", "key": "201" }, { "source": "66.0", "target": "64.0", "key": "195", "attributes": { "weight": 3 } }, { "source": "66.0", "target": "65.0", "key": "199", "attributes": { "weight": 2 } }, { "source": "67.0", "target": "57.0", "key": "204", "attributes": { "weight": 3 } }, { "source": "68.0", "target": "11.0", "key": "206" }, { "source": "68.0", "target": "24.0", "key": "207" }, { "source": "68.0", "target": "25.0", "key": "205", "attributes": { "weight": 5 } }, { "source": "68.0", "target": "27.0", "key": "208" }, { "source": "68.0", "target": "41.0", "key": "210" }, { "source": "68.0", "target": "48.0", "key": "209" }, { "source": "69.0", "target": "11.0", "key": "213" }, { "source": "69.0", "target": "24.0", "key": "214" }, { "source": "69.0", "target": "25.0", "key": "211", "attributes": { "weight": 6 } }, { "source": "69.0", "target": "27.0", "key": "215", "attributes": { "weight": 2 } }, { "source": "69.0", "target": "41.0", "key": "217" }, { "source": "69.0", "target": "48.0", "key": "216" }, { "source": "69.0", "target": "68.0", "key": "212", "attributes": { "weight": 6 } }, { "source": "70.0", "target": "11.0", "key": "221" }, { "source": "70.0", "target": "24.0", "key": "222" }, { "source": "70.0", "target": "25.0", "key": "218", "attributes": { "weight": 4 } }, { "source": "70.0", "target": "27.0", "key": "223" }, { "source": "70.0", "target": "41.0", "key": "224" }, { "source": "70.0", "target": "58.0", "key": "225" }, { "source": "70.0", "target": "68.0", "key": "220", "attributes": { "weight": 4 } }, { "source": "70.0", "target": "69.0", "key": "219", "attributes": { "weight": 4 } }, { "source": "71.0", "target": "11.0", "key": "230" }, { "source": "71.0", "target": "25.0", "key": "233" }, { "source": "71.0", "target": "27.0", "key": "226" }, { "source": "71.0", "target": "41.0", "key": "232" }, { "source": "71.0", "target": "48.0", "key": "231" }, { "source": "71.0", "target": "68.0", "key": "228", "attributes": { "weight": 2 } }, { "source": "71.0", "target": "69.0", "key": "227", "attributes": { "weight": 2 } }, { "source": "71.0", "target": "70.0", "key": "229", "attributes": { "weight": 2 } }, { "source": "72.0", "target": "11.0", "key": "236" }, { "source": "72.0", "target": "26.0", "key": "234", "attributes": { "weight": 2 } }, { "source": "72.0", "target": "27.0", "key": "235" }, { "source": "73.0", "target": "48.0", "key": "237", "attributes": { "weight": 2 } }, { "source": "74.0", "target": "48.0", "key": "238", "attributes": { "weight": 2 } }, { "source": "74.0", "target": "73.0", "key": "239", "attributes": { "weight": 3 } }, { "source": "75.0", "target": "25.0", "key": "242", "attributes": { "weight": 3 } }, { "source": "75.0", "target": "41.0", "key": "244" }, { "source": "75.0", "target": "48.0", "key": "243" }, { "source": "75.0", "target": "68.0", "key": "241", "attributes": { "weight": 3 } }, { "source": "75.0", "target": "69.0", "key": "240", "attributes": { "weight": 3 } }, { "source": "75.0", "target": "70.0", "key": "245" }, { "source": "75.0", "target": "71.0", "key": "246" }, { "source": "76.0", "target": "48.0", "key": "252" }, { "source": "76.0", "target": "58.0", "key": "253" }, { "source": "76.0", "target": "62.0", "key": "251" }, { "source": "76.0", "target": "63.0", "key": "250" }, { "source": "76.0", "target": "64.0", "key": "247" }, { "source": "76.0", "target": "65.0", "key": "248" }, { "source": "76.0", "target": "66.0", "key": "249" } ], "options": { "type": "directed", "multi": false, "allowSelfLoops": true } } ================================================ FILE: packages/test/e2e/basics.spec.ts ================================================ import { expect, test } from "@playwright/test"; import { EdgeDisplayData, NodeDisplayData } from "sigma/types"; import { BrowserTestDependencies } from "../helpers"; /* global dependencies */ declare global { const dependencies: BrowserTestDependencies; } const suite = [ { name: "single-node", run: () => { const { Graph, Sigma, container } = dependencies; const graph = new Graph(); graph.addNode("test", { x: 0, y: 0, size: 10, color: "#1E90FF" }); new Sigma(graph, container); }, }, { name: "square", run: () => { const { Graph, Sigma, container } = dependencies; const graph = new Graph(); graph.addNode("upper-left", { x: 0, y: 0, size: 10, label: "upper left" }); graph.addNode("upper-right", { x: 10, y: 0, size: 10, label: "upper right" }); graph.addNode("lower-left", { x: 0, y: 10, size: 10, label: "lower left" }); graph.addNode("lower-right", { x: 10, y: 10, size: 10, label: "lower right" }); graph.addEdge("upper-left", "upper-right", { type: "arrow", size: 5, label: "right" }); graph.addEdge("upper-right", "lower-right", { type: "arrow", size: 5, label: "down" }); graph.addEdge("lower-right", "lower-left", { type: "arrow", size: 5, label: "left" }); graph.addEdge("lower-left", "upper-left", { type: "arrow", size: 5, label: "up" }); graph.addEdge("upper-left", "lower-right", { color: "#f00" }); graph.addEdge("upper-right", "lower-left", { color: "#f00" }); new Sigma(graph, container, { renderEdgeLabels: true, labelRenderedSizeThreshold: -Infinity }); }, }, { name: "aspect-ratio-vertical-graph-horizontal-container", run: () => { const { Graph, Sigma, container } = dependencies; const graph = new Graph(); graph.addNode("upper-left", { x: 0, y: 0, size: 10 }); graph.addNode("upper-right", { x: 5, y: 0, size: 10 }); graph.addNode("lower-left", { x: 0, y: 10, size: 10 }); graph.addNode("lower-right", { x: 5, y: 10, size: 10 }); graph.addEdge("upper-left", "lower-right", { size: 5, color: "#F00" }); graph.addEdge("upper-right", "lower-left", { size: 5, color: "#F00" }); new Sigma(graph, container); }, dimensions: { width: 800, height: 400 }, }, { name: "aspect-ratio-horizontal-graph-horizontal-container", run: () => { const { Graph, Sigma, container } = dependencies; const graph = new Graph(); graph.addNode("upper-left", { x: 0, y: 0, size: 10 }); graph.addNode("upper-right", { x: 10, y: 0, size: 10 }); graph.addNode("lower-left", { x: 0, y: 5, size: 10 }); graph.addNode("lower-right", { x: 10, y: 5, size: 10 }); graph.addEdge("upper-left", "lower-right", { size: 5, color: "#F00" }); graph.addEdge("upper-right", "lower-left", { size: 5, color: "#F00" }); new Sigma(graph, container); }, dimensions: { width: 800, height: 400 }, }, { name: "aspect-ratio-horizontal-graph-vertical-container", run: () => { const { Graph, Sigma, container } = dependencies; const graph = new Graph(); graph.addNode("upper-left", { x: 0, y: 0, size: 10 }); graph.addNode("upper-right", { x: 10, y: 0, size: 10 }); graph.addNode("lower-left", { x: 0, y: 5, size: 10 }); graph.addNode("lower-right", { x: 10, y: 5, size: 10 }); graph.addEdge("upper-left", "lower-right", { size: 5, color: "#F00" }); graph.addEdge("upper-right", "lower-left", { size: 5, color: "#F00" }); new Sigma(graph, container); }, dimensions: { width: 400, height: 800 }, }, { name: "aspect-ratio-vertical-graph-vertical-container", run: () => { const { Graph, Sigma, container } = dependencies; const graph = new Graph(); graph.addNode("upper-left", { x: 0, y: 0, size: 10 }); graph.addNode("upper-right", { x: 5, y: 0, size: 10 }); graph.addNode("lower-left", { x: 0, y: 10, size: 10 }); graph.addNode("lower-right", { x: 5, y: 10, size: 10 }); graph.addEdge("upper-left", "lower-right", { size: 5, color: "#F00" }); graph.addEdge("upper-right", "lower-left", { size: 5, color: "#F00" }); new Sigma(graph, container); }, dimensions: { width: 400, height: 800 }, }, { name: "settings", run: () => { const { Graph, Sigma, container } = dependencies; const graph = new Graph(); graph.addNode("John", { x: 6, y: 4, size: 10 }); graph.addNode("Mary", { x: 4, y: 2, size: 10 }); graph.addNode("Sue", { x: 4, y: 6, size: 10 }); graph.addEdge("John", "Mary", { size: 5 }); graph.addEdge("Mary", "Sue", { size: 5 }); graph.addEdge("Sue", "John", { size: 5 }); new Sigma(graph, container, { defaultNodeColor: "#7FFFD4", defaultEdgeColor: "#AA4A44" }); }, }, { name: "les-miserables", run: () => { const { data: { lesMiserables }, Sigma, container, } = dependencies; new Sigma(lesMiserables, container); }, }, { name: "arctic", run: () => { const { data: { arctic }, Sigma, container, } = dependencies; new Sigma(arctic, container); }, }, { name: "camera-state-unzoom-pan", run: () => { const { data: { lesMiserables }, Sigma, container, } = dependencies; const renderer = new Sigma(lesMiserables, container); renderer.getCamera().setState({ ratio: 3, x: 0.8, y: 0.7 }); }, }, { name: "camera-state-zoom-pan", run: () => { const { data: { lesMiserables }, Sigma, container, } = dependencies; const renderer = new Sigma(lesMiserables, container); renderer.getCamera().setState({ ratio: 1 / 3, x: 0.8, y: 0.7 }); }, }, { name: "custom-zoomToSizeRatioFunction", run: () => { const { data: { lesMiserables }, Sigma, container, } = dependencies; const renderer = new Sigma(lesMiserables, container, { zoomToSizeRatioFunction: (x: number) => x, }); renderer.getCamera().setState({ ratio: 3, x: 0.8, y: 0.7 }); }, }, { name: "camera-state-rotation", run: () => { const { data: { arctic }, Sigma, container, } = dependencies; const renderer = new Sigma(arctic, container); renderer.getCamera().setState({ angle: 30 }); }, }, { name: "reducers", run: () => { const { data: { lesMiserables }, Sigma, container, } = dependencies; const nodeReducer = (_key: string, attr: Partial) => { const data = attr as NodeDisplayData; return Object.assign({}, data, { color: (data.label || "").charCodeAt(0) % 2 === 0 ? "#1E90FF" : "#FF0000" }); }; const edgeReducer = (key: string, attr: Partial) => { const data = attr as EdgeDisplayData; return Object.assign({}, data, { color: +key % 2 === 0 ? "#FFFF00" : "#008000" }); }; new Sigma(lesMiserables, container, { nodeReducer, edgeReducer }); }, }, // { // name: "les-miserables-mouse-wheel", // waitFor: 2000, // scenario: async (page: Page): Promise => { // const { // data: { lesMiserables }, // Sigma, // container, // } = dependencies; // new Sigma(lesMiserables, container); // const element = document.getElementsByClassName("sigma-mouse")[0]; // const cEvent: Event & { clientX?: number; clientY?: number; deltaY?: number } = new Event("wheel"); // cEvent.clientX = 0; // cEvent.clientY = 0; // cEvent.deltaY = -100; // element.dispatchEvent(cEvent); // }); // }, // }, { name: "node-edge-state", waitFor: 2000, run: () => { const { Graph, Sigma, container } = dependencies; const graph = new Graph({ type: "directed" }); graph.addNode("Alice", { label: "Alice", x: -2, y: 1, color: "#FF0", size: 10, }); graph.addNode("Bob", { label: "Bob", x: 1, y: 2, color: "#00F", size: 5, }); graph.addNode("Charles", { label: "Charles", x: 2, y: -1, color: "#00F", size: 5, }); graph.addNode("Deborah", { label: "Deborah", x: -1, y: -2, color: "#00F", size: 5, }); graph.addEdge("Alice", "Bob", { label: "likes to play with", size: 1, }); graph.addEdge("Bob", "Charles", { label: "likes to be with", color: "#fc0", size: 2, }); graph.addEdge("Charles", "Deborah", { label: "likes to talk with", color: "#CCC", size: 3, }); graph.addEdge("Deborah", "Alice", { label: "likes to talk with", color: "#000", size: 20, }); new Sigma(graph, container, { defaultEdgeType: "arrow", defaultEdgeColor: "#888", renderEdgeLabels: true, }); graph.setNodeAttribute("Alice", "highlighted", true); graph.setNodeAttribute("Bob", "size", 50); graph.setNodeAttribute("Bob", "color", "#FF0000"); graph.setNodeAttribute("Deborah", "hidden", true); graph.setEdgeAttribute("Alice", "Bob", "hidden", true); }, }, { name: "programs", run: () => { const { Graph, Sigma, container, nodePrograms, edgePrograms } = dependencies; const { NodeImageProgram, NodeCircleProgram, NodePointProgram } = nodePrograms; const { EdgeRectangleProgram, EdgeLineProgram, EdgeArrowProgram, EdgeTriangleProgram } = edgePrograms; const graph = new Graph(); graph.addNode("n1", { x: 30, y: 120, size: 15, label: "Node 1", type: "node", color: "#ffcc00" }); graph.addNode("n2", { x: 120, y: -30, size: 15, label: "Node 2", type: "fast", color: "#00ffcc" }); graph.addNode("n3", { x: -30, y: -120, size: 15, label: "Node 3", type: "image", color: "#cc00ff" }); graph.addNode("n4", { x: -120, y: 30, size: 15, label: "Node 4", type: "image", image: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABfCAYAAACOTBv1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAA1CSURBVHic7Z1rdFXlmcd/z3tObuRKIkVuScjgSTBFq4i6XGoh0uWH6RJJSGVmEFGxttKlVbFVZ4qsdurQcrEqOrRa6EiLxZCAuPqBlkHs2FFbB7w0hRMpkAShUsg95HbOfuZDQsxhn5CTk3P2CSG/T8mz3/3+3/Osd7/7vT5bGIYoK011fmWOEcujfvIFChCZBpqJkoaQAiQDaUAT0IrSgtCEcBrVQ6riFRdeS01VjrewWlhpxfZX2ZFYF+As1Z6SPGCugbkKRUBWpPJWaBZ4T0V2I7I7+2DZPgGNVP7hElPnH/PMv9LC3AVyB+hEB6U/BbYarFcmV23/0EHdABx3/rGC+VmWJUtAFgNXOK0fhI9AXzFGfzH54PbTTgo75vyj04snGL95FPR+IMUp3UHQgrDB7zZrp1aW/c0Jwag7v9ZTOknxPwlyD5AYbb0I0A78HOl6Otu783g0haLmfJ09211zImuZKN+nu1dyodGqyJqWOHm6sLKsMxoCUXF+jWfBTaAvADPOl06jVYDI8pFiluVUlb0d6Ywj+tsrC0vj0zqtH6vwYKTzjjGKyrPN8fLdSD4FEXNQtackT2ArcE2k8hx+6B8tcS3M9ZYdiURuJhKZ1F62oFhgHyPa8QByrVFrX62neH4kchuy82s8JY+o6DYgPQLluRDIUKS8xlPy8FAzCtv5ClLtWbASWMvIat9DQYB1tfklz+oQfntYN+rs2e7a41kvAUvCFR4xiG6aMqHu67J3r2+wtw665itI7adZP2XU8d2o3F1zPGtTOE/AoJ1fk1/yI4R7BnvfSEZg0TFPydNh3Bc6NZ7iR0HWDFbkYkFFH87xVvwk1PQhO7/2spISFcoGc89FiIVIcbZ32+uhJA7JkYenF+e4/bIPyBxS0S4OGiwxV4cyEBuwza8sLI13+2Ubo44PlQyj1quVhaXxAyUc0PlpPms1I37kGnGuS+2yVg2U6LzNTrWn9EbB+v1A6UYJiqI6O/uTit/3l6Dfmq+zZ7sFaz2jjg8XQWT9+zO/Htdfgn6dX3s88yHgyqgU6+JhxriW0w/0dzFore5e+rMOMjzXWi80miyXFuQeqDhx7oWgNV/V+ldGHR8WQTYDpbl88t1gaW01v3uXgRzmwljsHqbYFkjbfF1dU/OO7Pysr9FW87u3d4w6fmjY6nRSXFycbf4/INWxgvlZfsscEUiNZtEGgzt3IonXFxJ/hQd33kRcl2Rg0qPXIjY9/xrNr/wmGlm3uonPnVj16qmzBnffq+o394jE3vEyJpGUBbeQXDKHuIJcZ7UT+u0ZDpVkH513As+cNQQ6X7gzWsqhIHFuUpd8ldT7bo9q7Y4VCovp4/zeNv/otJKrGGCfTTSJL8xj/OtrSF++aEQ6HkDgS7X5Jb37U3trvjGxq/XJX5vL2O/di8SH9shreyeIDK6JsBSr5czAeXd0hZ5nGFiwCPgO9DhfQWq7t2lHVTgYaQ8sIP2hhf1e17YO2v/3I9r2vE/nfi/+k3VYzd1ONGnJuMZnknB1AYlF15B4/QwksZ/JRIHGZ7bQsmVXNH5GyIiykB7nC0D1tNLLxViVThck9d7byPjO4qDX9Ew7zZveoHnjTqyWtpDyM2nJpC6dR+rif0SSEoJkqtQ/9TNatv5uKMUeMi4xBZO8ZV4DYIxV5HQBkopmkfFY8Jau7bfvcXzuMhqf2xqy4wGsplYa123hxFe+Rdve/7MnECFjxVISrvtiuMWOCH7LmgM9L1yFOU6Kuy7NInPVMpBzBiOqNK1/jVMPrsE63Rh2/v6/13Pqm6tofnmH7Zq4XWStfQiTlhx2/kNGuv1tlJUG+LKT2mOfvDtoj6b++y/T+PxroBF491hKw+pf0rB6s+2Sa9xYMh5fMnSNsNEiBTHV+ZU5RPDw2UAkXHs5Sbdeb7O3vLorKi/D5pdfp3XHWzZ78vzZxOXnRFwvNOSSI9OLs40LX76Tsmn3F9tsnZWHafj3jVHTrF+xga5DxwKNRkj/1teipjkQLp96jIVxzPnunAkk3vglm71x9WbU54+arnZ00bj2VzZ70i3X4Bo3Nmq658OIyTdi4Zjzk+fdbLO1/+FD2t/5OOrabXv+RMe+g4FGl4sxt90Ude1gKOSb7pPdzpD45attttatu52Sp/U1u1awJ9ERlMsMqCP7cSQ5ifjpUwP1O7toe/sDJ+QBuvv+/sAoAAkzpyNul2Nl6EXIMqgzJwXj/mESuALXbjreP4C2hj6IGipWfTOdHx0KsElCHO7sSx0rQ68upJieIBJRx50zwWbzVTty1jiArhrbOjbuXHvZoo0iaQaHVq2CjSj9J+uckA7A+nu9zRaL0a6iqQZIckJMEuyzjVZTqxPSAfjrW2w2SXJ+yVpgjAEcaXS1w358NRaLJq6x9gdd2zscL4fCGQM0OyEWrJbHYoBjxmXYbFaj80+gIM0Gxf4cRgFf9fB40cUFe/HXOv/iF7TJIDQ5Idb110/BHziFkDCzAEl25JUDgMlMI35G4JhSO7pi0utSaDYgjnQ5tLWNzr8EHtaQ+DiSbnJuhJk0Z6Z9rLH/INoZ3XXboCh1BqxPnNJrf2ufzZZ8x1eckiel1K7V/tZ+x/T7oiJVRkWqnBJs3fk/NlviDVeQeEP0o30l3TKL+Ks8gUZLOfObiEdyCQlBvcZgeZ0S9FWfoD3IXE768kVRnV+RhDjSH/kXm73td+/h/8z5gR6Agtf4cTvmfICmDRU2W3xhHhn/Fr1z1WN/8A3ipk0ONKrS9FN7WZwizmeqTI63sBpwLKpex5/+wpld79jsKf90Kyn/fGvE9VKXziN5nn2JurViL52VhyOuFwoKJyccLqs1wkpLhb1Oijf8cBNWg31sN3bFUtIfvMO+qyEcXIaMx+4Muj3Ff6qBhjX2hXWnEHhTQA2AKG86Ke7/rI66J16w71IQIW1ZKZesfwzXJfaRaKi4xmcybsMTpC6dF0Tcom75s1h1jgxvgqIqb0LPvh1LrT1OF6Btz/vU/+DnQa8lzb2WCbtf6N40mzom5DxNWjLpyxcx4bfrSbz5qqBp6v/jF44sW54P49Y90LNdUEFqPSW1wCSnCxLSXs13+u7VrO+dJzLpKbi+kEnCzHySimaRcP2M/jfPqtLw4800b9wZjZ8RMgLVU6rKc6Fno6yA1nQHp3vE6cI0vbgN/8l6xq5YGtRxkpRAUtEskopm9doGu0tZ2zqo+94GzrxhH2fEgF+f/ePzsbbL2hSTogCt2/6bkwuftO+t6QdJjA/Z8V0HjvJZ6ePDxfFgTO8eloBuRY2n5ANiePBZ3C5SlnyVtPtux2QMbYHNf6qBpv8sp+XVXbZF85gh7Mv2ls88+6878KpuBomZ89Xnp/nl12nZsouUBUWMmT+H+MunDnxjHzo//ITW7Xtp3f5md/M0jFA0oH8bUPNrC0szrS7raMBpxBjH3HXnXErCdV8k4crLcOdOxDU+s7cHZDWfwf+30/iOnqBjv5eOd/+M79OTsSvs+WnShITcnI+39C4i29xak1+yGmW5s+Ua+QismlJV/kRfm+0QtN9t1tIdxvxzYv6Biwsc4UyH33rmXLPN+T2B+wNHP8PhAyMXMpb8bNpft9vaw+AhX6TraT1nYX006E7YNPrj5UfBLgR1frZ353GBp6JbposDVVb09xmQfoMdTZl4+nkgZl/SGSF8nD3p9Iv9XezX+bJ3r09FlzHa3IeLZSxz//liLJ83umCOt+IPQMgRUkfpg7Bu8qEy+6pRHwYM7dgcZx4H/WPkSnVR8O7JlKwnB0oUUifmeF5pts9t7Wc0sGko1PuN/+qpB3ccHShhSFHEJx4uqwHuBYbJDNXwIMjL0FKLu0JxPAwihHt2VfkOFX005JJdBJzbbKjycM6h8jdCvX9Q8fNzvBU/ERgwTO1IJ2j3T/hhziflzw0mn0EPXHuWHF+iuxkaBRDYPLmq/K7BzsIM+ssRAjpl4ulvIBqzla9hhbJxcpW5O5zpr7CnbBSkxrPgKUEv2mkIEZ6b7C3/drjzjkOeL6vOL/62qKyLRF4XEJYqDw+2jT+XiDisxlNyO7ARCHrO5wL5AGWo1CF6d7a3Ysh7UCLmkyMFt+e6LLMV5NpI5TkMedfn0oV5ByqqI5FZRL6NCDD14I6jzXGum+iOG3meNvCCnKdTkLUnU7NujpTjIUqtwdGCBTcYS19kBMTfV/jAZZkHBpokC4fRL0H3T6MKT2VPOP1COJ/eC4WovwePTi+e4LLkcVXuw6HT7kNCOCMWL/nizapof4jesU7I4am3jXe54x9B9JvDKUr5WXqOZr7Y4bfWBVvsjgaO9wBrC0sztcu6S2GxQIwiDX2OwH6FzRJn/mtKZZmjB7Ri2v2uLSidYal1Z0+I2ymOCQs1asmvxe3fnH1g+58d07UVY5hQ7SnJA+YauFGhiIieFdBTgrxribyNyO7sg2X7hsNWpGHj/L4oyJHpxdkun3qMmHyFAiAP+AKQCpICmkJ3L6oJpEXRZoEW4CRwGDigalX53VI19UBFzXBw9rn8P3DiYqyQm2r2AAAAAElFTkSuQmCC", color: "#ccff00", }); graph.addEdge("n1", "n2", { type: "edge", size: 30 }); graph.addEdge("n2", "n3", { type: "fast", size: 30 }); graph.addEdge("n3", "n4", { type: "arrow", size: 30 }); graph.addEdge("n4", "n1", { type: "triangle", size: 30 }); new Sigma(graph, container, { nodeProgramClasses: { node: NodeCircleProgram, fast: NodePointProgram, image: NodeImageProgram, }, edgeProgramClasses: { edge: EdgeRectangleProgram, fast: EdgeLineProgram, arrow: EdgeArrowProgram, triangle: EdgeTriangleProgram, }, }); }, }, { name: "force-labels", run: () => { const { Graph, Sigma, container } = dependencies; const graph = new Graph(); graph.addNode("upper-left", { x: 0, y: 0, size: 5, label: "upper left", forceLabel: true }); graph.addNode("upper-right", { x: 10, y: 0, size: 5, label: "upper right", forceLabel: true }); graph.addNode("lower-left", { x: 0, y: 10, size: 5, label: "lower left" }); graph.addNode("lower-right", { x: 10, y: 10, size: 15, label: "lower right" }); graph.addEdge("upper-left", "upper-right", { type: "arrow", size: 5, label: "right" }); graph.addEdge("upper-right", "lower-right", { type: "arrow", size: 5, label: "down" }); graph.addEdge("lower-right", "lower-left", { type: "arrow", size: 5, label: "left", forceLabel: true }); graph.addEdge("lower-left", "upper-left", { type: "arrow", size: 5, label: "up", forceLabel: true }); new Sigma(graph, container, { renderEdgeLabels: true, labelRenderedSizeThreshold: 10 }); }, }, { name: "kill", run: () => { const { Graph, Sigma, container } = dependencies; const graph = new Graph(); graph.addNode("test", { x: 0, y: 0, size: 10, color: "#1E90FF" }); const sigma = new Sigma(graph, container); sigma.kill(); }, }, ]; suite.forEach((scenario) => { test(`Screenshots for "${scenario.name}" should be the same`, async ({ page }) => { await page.goto("http://localhost:5173/"); await page.evaluate(scenario.run); await expect(page).toHaveScreenshot(`${scenario.name}.png`, { maxDiffPixelRatio: 0, }); }); }); ================================================ FILE: packages/test/helpers.ts ================================================ import Graph from "graphology"; import Sigma from "sigma"; import { EdgeProgramType, NodeProgramType } from "sigma/rendering"; export function rafNTimes(fn: (step: number) => void, n: number): Promise { return new Promise((globalResolve) => { let count = 0; function executeAndRequestFrame() { fn(count); count++; if (count < n) { requestAnimationFrame(() => executeAndRequestFrame()); } else { globalResolve(undefined); // ou retournez tout autre résultat que vous souhaitez obtenir } } executeAndRequestFrame(); }); } export type BrowserTestDependencies = { Graph: typeof Graph; Sigma: typeof Sigma; data: { [key: string]: Graph }; nodePrograms: { [key: string]: NodeProgramType }; edgePrograms: { [key: string]: EdgeProgramType }; container: HTMLElement; rafNTimes: typeof rafNTimes; }; ================================================ FILE: packages/test/package.json ================================================ { "name": "@sigma/test", "private": true, "dependencies": { "@playwright/test": "^1.49.1", "@vitest/browser": "^2.1.8", "playwright": "^1.49.1", "vite": "^6.0.7", "vitest": "^2.1.8" }, "scripts": { "test": "npm run test:unit && npm run test:e2e", "test:unit": "vitest run --dir unit", "test:e2e": "playwright test", "benchmark": "vitest bench --dir benchmarks" } } ================================================ FILE: packages/test/playwright.config.ts ================================================ /* global process */ import { defineConfig, devices } from "@playwright/test"; /** * See https://playwright.dev/docs/test-configuration. */ export default defineConfig({ testDir: "./e2e", fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined, reporter: "html", use: { baseURL: "http://localhost:5173/", trace: "on-first-retry", }, projects: [ { name: "chromium", use: { ...devices["Desktop Chrome"] }, }, ], webServer: { command: "vite", url: "http://localhost:5173/", reuseExistingServer: !process.env.CI, timeout: 120000, }, }); ================================================ FILE: packages/test/tsconfig.json ================================================ { "extends": "../../tsconfig.base.json", "compilerOptions": { "lib": ["dom", "dom.iterable", "esnext"] }, "include": ["./"], "ts-node": { "files": true } } ================================================ FILE: packages/test/unit/_helpers.ts ================================================ import { Coordinates } from "sigma/types"; import { expect } from "vitest"; export function wait(timeout: number): Promise { return new Promise((resolve) => setTimeout(resolve, timeout)); } export function add(p: T, vec: Coordinates): T { return { ...p, x: p.x + vec.x, y: p.y + vec.y, }; } export function remove(p: T, vec: Coordinates): T { return { ...p, x: p.x - vec.x, y: p.y - vec.y, }; } export function rotate(p: T, { x: cx, y: cy }: Coordinates, angle: number): T { const cosAngle = Math.cos(angle); const sinAngle = Math.sin(angle); return { ...p, x: cosAngle * (p.x - cx) - sinAngle * (p.y - cy) + cx, y: sinAngle * (p.x - cx) + cosAngle * (p.y - cy) + cy, }; } export function expectObjectsToBeClose>(o1: T, o2: T, numDigits?: number) { expect(Object.keys(o1).sort()).toEqual(Object.keys(o2).sort()); for (const key in o1) { expect.soft(o1[key], `expected["${key}"] = actual["${key}"]`).toBeCloseTo(o2[key], numDigits); } } // Helpers to simulate touch events: export type TouchSpec = Coordinates & { id: number }; export type TouchEventType = "touchstart" | "touchend" | "touchmove"; export async function simulateTouchEvent(element: HTMLElement, type: TouchEventType, touchInputs: TouchSpec[]) { const touches: Touch[] = []; touchInputs.forEach((touch) => { touches.push( new Touch({ clientX: touch.x, clientY: touch.y, identifier: touch.id, target: element, }), ); }); element.dispatchEvent( new TouchEvent(type, { touches, view: window, cancelable: true, bubbles: true, }), ); await wait(10); } export type MouseEventType = "mousedown" | "mouseup" | "mousemove"; export async function simulateMouseEvent(element: HTMLElement, type: MouseEventType, position: Coordinates) { element.dispatchEvent( new MouseEvent(type, { clientX: position.x, clientY: position.y, }), ); await wait(10); } ================================================ FILE: packages/test/unit/layer-leaflet/lifecycle.ts ================================================ import bindMapLayer from "@sigma/layer-leaflet"; import Graph from "graphology"; import { SerializedGraph } from "graphology-types"; import Sigma from "sigma"; import { createElement } from "sigma/utils"; import { afterEach, beforeEach, describe, expect, test } from "vitest"; const GRAPH: Pick = { nodes: [ { key: "nantes", attributes: { x: 0, y: 0, lat: 47.2308, lng: 1.5566, size: 10, label: "Nantes" } }, { key: "paris", attributes: { x: 0, y: 0, lat: 48.8567, lng: 2.351, size: 10, label: "Paris" } }, ], edges: [{ source: "nantes", target: "paris" }], }; interface SigmaTestContext { sigma: Sigma; } beforeEach(async (context) => { const graph = new Graph(); graph.import(GRAPH); const container = createElement("div", { width: "100px", height: "100px" }); document.body.append(container); context.sigma = new Sigma(graph, container); }); afterEach(async ({ sigma }) => { sigma.kill(); sigma.getContainer().remove(); }); describe("@sigma/layer-leaflet", () => { test("calling clean function multiple times should work", ({ sigma }) => { const { clean } = bindMapLayer(sigma); expect(() => { clean(); clean(); }).not.to.throw(); }); test("clean the map should reset sigma settings to its previous value", ({ sigma }) => { const prevSettings = sigma.getSettings(); const { clean } = bindMapLayer(sigma); const settings = sigma.getSettings(); clean(); expect(prevSettings).not.toEqual(settings); expect(sigma.getSettings()).toEqual(prevSettings); }); }); ================================================ FILE: packages/test/unit/layer-maplibre/lifecycle.ts ================================================ import bindMapLayer from "@sigma/layer-maplibre"; import Graph from "graphology"; import { SerializedGraph } from "graphology-types"; import Sigma from "sigma"; import { createElement } from "sigma/utils"; import { afterEach, beforeEach, describe, expect, test } from "vitest"; const GRAPH: Pick = { nodes: [ { key: "nantes", attributes: { x: 0, y: 0, lat: 47.2308, lng: 1.5566, size: 10, label: "Nantes" } }, { key: "paris", attributes: { x: 0, y: 0, lat: 48.8567, lng: 2.351, size: 10, label: "Paris" } }, ], edges: [{ source: "nantes", target: "paris" }], }; interface SigmaTestContext { sigma: Sigma; } beforeEach(async (context) => { const graph = new Graph(); graph.import(GRAPH); const container = createElement("div", { width: "100px", height: "100px" }); document.body.append(container); context.sigma = new Sigma(graph, container); }); afterEach(async ({ sigma }) => { sigma.kill(); sigma.getContainer().remove(); }); describe("@sigma/layer-maplibre", () => { test("calling clean function multiple times should work", ({ sigma }) => { const { clean } = bindMapLayer(sigma, { mapOptions: { style: undefined } }); expect(() => { clean(); clean(); }).not.to.throw(); }); test("clean the map should reset sigma settings to its previous value", ({ sigma }) => { const prevSettings = sigma.getSettings(); const { clean } = bindMapLayer(sigma, { mapOptions: { style: undefined } }); const settings = sigma.getSettings(); clean(); expect(prevSettings).not.toEqual(settings); expect(sigma.getSettings()).toEqual(prevSettings); }); }); ================================================ FILE: packages/test/unit/sigma/camera.ts ================================================ import { Camera } from "sigma"; import { describe, expect, test } from "vitest"; import { wait } from "../_helpers"; describe("Camera", function () { test("it should be possible to read the camera's state.", function () { const camera = new Camera(); expect(camera.getState()).toEqual({ x: 0.5, y: 0.5, angle: 0, ratio: 1, }); }); test("it should be possible to copy a camera instance.", function () { const camera1 = new Camera(); camera1.setState({ ratio: 0.5, angle: Math.PI / 3, x: 12, y: 5, }); const camera2 = camera1.copy(); expect(camera1.getState()).toEqual(camera2.getState()); expect(camera1).not.toBe(camera2); }); test("it should be possible to create a camera from a given state.", function () { const cameraState = { ratio: 0.5, angle: Math.PI / 3, x: 12, y: 5, }; const camera = Camera.from(cameraState); expect(camera.getState()).toEqual(cameraState); }); test("it should be possible to read the camera's previous state.", function () { const camera = new Camera(); camera.setState({ x: 34, y: 56, ratio: 4, angle: 10 }); camera.setState({ x: 5, y: -3, ratio: 5, angle: 0 }); expect(camera.getPreviousState()).toEqual({ x: 34, y: 56, ratio: 4, angle: 10, }); }); test("it should be possible to set the camera's state.", function () { const camera = new Camera(); camera.setState({ x: 10, y: -45, angle: 0, ratio: 3, }); expect(camera.getState()).toEqual({ x: 10, y: -45, angle: 0, ratio: 3, }); }); test("it should be possible to update a camera's state.", function () { const camera = new Camera(); camera.setState({ x: 10, y: -10, angle: 5, ratio: 3 }); camera.updateState((state) => { return { x: state.x * 2, y: state.y + 7, angle: state.angle * 3, ratio: state.ratio + 1, }; }); expect(camera.getState()).toEqual({ x: 20, y: -3, angle: 15, ratio: 4, }); camera.updateState((state) => { return { angle: state.angle + 1 }; }); expect(camera.getState()).toEqual({ x: 20, y: -3, angle: 16, ratio: 4 }); }); test("it should be possible to reset the camera's state using setState (issue #1136).", function () { const camera = new Camera(); camera.setState({ x: 10, y: -45, angle: Math.PI / 2, ratio: 3, }); camera.setState({ x: 0 }); expect(camera.getState()).toEqual({ x: 0, y: -45, angle: Math.PI / 2, ratio: 3, }); camera.setState({ y: 0 }); expect(camera.getState()).toEqual({ x: 0, y: 0, angle: Math.PI / 2, ratio: 3, }); camera.setState({ angle: 0 }); expect(camera.getState()).toEqual({ x: 0, y: 0, angle: 0, ratio: 3, }); }); test("it should not be possible to set the camera's state when it's disabled.", function () { const camera = new Camera(); const state1 = { x: 10, y: -45, angle: 0, ratio: 3, }; const state2 = { x: 123, y: 456, angle: 0, ratio: 1, }; camera.setState(state1); camera.disable(); camera.setState(state2); expect(state1).not.toEqual(state2); expect(camera.getState()).toEqual(state1); }); test("it should check for ratio extrema (feature #1161).", function () { const camera = new Camera(); camera.minRatio = null; camera.maxRatio = 10; camera.setState({ ratio: 20 }); expect(camera.ratio).toEqual(10); camera.minRatio = 0.1; camera.maxRatio = null; camera.setState({ ratio: 0.05 }); expect(camera.ratio).toEqual(0.1); // Also check weird values (expect maxRatio to "win" that): camera.minRatio = 10; camera.maxRatio = 0.1; camera.setState({ ratio: 0.05 }); expect(camera.ratio).toEqual(0.1); camera.setState({ ratio: 20 }); expect(camera.ratio).toEqual(0.1); }); test("it should check for ratio extrema (feature #1161).", function () { const camera = new Camera(); camera.minRatio = null; camera.maxRatio = 10; camera.setState({ ratio: 20 }); expect(camera.ratio).toEqual(10); camera.minRatio = 0.1; camera.maxRatio = null; camera.setState({ ratio: 0.05 }); expect(camera.ratio).toEqual(0.1); // Also check weird values (expect maxRatio to "win" that): camera.minRatio = 10; camera.maxRatio = 0.1; camera.setState({ ratio: 0.05 }); expect(camera.ratio).toEqual(0.1); camera.setState({ ratio: 20 }); expect(camera.ratio).toEqual(0.1); }); describe("Animations", () => { test("it should trigger the animation callback when starting a new animation (regression #1107).", function () { let flag = false; const camera = new Camera(); camera.animate({}, { duration: 500 }, () => { flag = true; }); camera.animate({}); expect(flag).toEqual(true); }); test("it should return promises that resolve when animation ends, when called without callback.", async function () { const camera = new Camera(); const targetState = { x: 1, y: 0, ratio: 0.1, angle: Math.PI, }; const duration = 50; const t0 = Date.now(); await camera.animate(targetState, { duration }); const t1 = Date.now(); expect(Math.abs(t1 - t0 - duration)).toBeLessThan(duration / 2); expect(camera.getState()).toEqual(targetState); }); test("it should resolve promises when animation is interrupted by a new animation (using #animate).", async function () { const camera = new Camera(); const targetState1 = { ...camera.getState(), x: 1 }; const targetState2 = { ...camera.getState(), x: 2 }; const duration = 500; const delay = 50; const t0 = Date.now(); await Promise.all([ camera.animate(targetState1, { duration }), (async (): Promise => { await wait(delay); await camera.animate(targetState2, { duration: 0 }); })(), ]); const t1 = Date.now(); expect(camera.getState()).toEqual(targetState2); // Time measures are very rough at this scale, we just want to check that t1 - t0 (the actual spent time) // is basically closer to delay than to duration: const spentTime = t1 - t0; expect(Math.abs(spentTime - delay)).toBeLessThan(Math.abs(spentTime - duration)); }); test("it should resolve promises when animation is interrupted by a new animation (using the shortcut methods).", async function () { const camera = new Camera(); const duration = 500; const delay = 50; const t0 = Date.now(); await Promise.all([ camera.animatedZoom({ duration }), (async (): Promise => { await wait(delay); await camera.animatedReset({ duration: 0 }); })(), ]); const t1 = Date.now(); expect(camera.ratio).toEqual(1); // Time measures are very rough at this scale, we just want to check that t1 - t0 (the actual spent time) // is basically closer to delay than to duration: const spentTime = t1 - t0; expect(Math.abs(spentTime - delay)).toBeLessThan(Math.abs(spentTime - duration)); }); }); }); ================================================ FILE: packages/test/unit/sigma/events.ts ================================================ import { userEvent } from "@vitest/browser/context"; import Graph from "graphology"; import { SerializedGraph } from "graphology-types"; import Sigma from "sigma"; import { Coordinates, SigmaEventType } from "sigma/types"; import { createElement } from "sigma/utils"; import { afterEach, beforeEach, describe, expect, test } from "vitest"; import { add, simulateTouchEvent, wait } from "../_helpers"; interface SigmaTestContext { sigma: Sigma; graph: Graph; target: HTMLElement; container: HTMLDivElement; } const STAGE_WIDTH = 300; const STAGE_HEIGHT = 600; const GRAPH: Pick = { nodes: [ { key: "n1", attributes: { x: 0, y: 0, size: 10, color: "blue" } }, { key: "n2", attributes: { x: 50, y: 50, size: 10, color: "red" } }, ], edges: [{ source: "n1", target: "n2" }], }; beforeEach(async (context) => { const graph = new Graph(); graph.import(GRAPH); const container = createElement("div", { width: `${STAGE_WIDTH}px`, height: `${STAGE_HEIGHT}px` }) as HTMLDivElement; document.body.append(container); context.sigma = new Sigma(graph, container, { zoomDuration: 30, inertiaDuration: 30, doubleClickZoomingDuration: 30, }); context.graph = graph; context.container = container; context.target = context.sigma.getCanvases().mouse; }); afterEach(async ({ sigma }) => { sigma.kill(); sigma.getContainer().remove(); }); describe("Sigma interaction events", () => { test('it should trigger the events "downNode", "upNode", "clickNode", "downNode", "upNode" and finally "doubleClickNode" when double clicking a node with the mouse', async ({ sigma, graph, container, }) => { const triggeredEvents: SigmaEventType[] = []; const observedEvents: SigmaEventType[] = ["clickNode", "downNode", "upNode", "doubleClickNode"]; observedEvents.forEach((type: SigmaEventType) => { sigma.addListener(type, () => { triggeredEvents.push(type); }); }); const position = sigma.graphToViewport(graph.getNodeAttributes("n1") as Coordinates); await userEvent.dblClick(container, { position }); await wait(10); expect(triggeredEvents).toEqual(["downNode", "upNode", "clickNode", "downNode", "upNode", "doubleClickNode"]); }); test('it should trigger the events "downNode", "upNode", "clickNode", "downNode", "upNode" and finally "doubleClickNode" when double clicking a node with a touch gesture', async ({ sigma, graph, target, }) => { const triggeredEvents: SigmaEventType[] = []; const observedEvents: SigmaEventType[] = ["clickNode", "downNode", "upNode", "doubleClickNode"]; observedEvents.forEach((type: SigmaEventType) => { sigma.addListener(type, () => { triggeredEvents.push(type); }); }); const touch = { ...sigma.graphToViewport(graph.getNodeAttributes("n1") as Coordinates), id: 1 }; await simulateTouchEvent(target, "touchstart", [touch]); await simulateTouchEvent(target, "touchend", []); await simulateTouchEvent(target, "touchstart", [touch]); await simulateTouchEvent(target, "touchend", []); expect(triggeredEvents).toEqual(["downNode", "upNode", "clickNode", "downNode", "upNode", "doubleClickNode"]); }); test("hovering a node should hover it and cancel other nodes hovering", async ({ sigma, graph, container, }) => { const hoveredNodes = new Set(); sigma.on("enterNode", ({ node }) => { hoveredNodes.add(node); }); sigma.on("leaveNode", ({ node }) => { hoveredNodes.delete(node); }); await userEvent.hover(container, { position: sigma.graphToViewport(graph.getNodeAttributes("n1") as Coordinates) }); expect.soft(Array.from(hoveredNodes)).toEqual(["n1"]); await userEvent.hover(container, { position: sigma.graphToViewport(graph.getNodeAttributes("n2") as Coordinates) }); expect.soft(Array.from(hoveredNodes)).toEqual(["n2"]); }); test("touching a node should hover it and cancel other nodes hovering", async ({ sigma, graph, target, }) => { const hoveredNodes = new Set(); sigma.on("enterNode", ({ node }) => { hoveredNodes.add(node); }); sigma.on("leaveNode", ({ node }) => { hoveredNodes.delete(node); }); const touch1 = { ...sigma.graphToViewport(graph.getNodeAttributes("n1") as Coordinates), id: 1 }; await simulateTouchEvent(target, "touchstart", [touch1]); await simulateTouchEvent(target, "touchmove", [touch1]); await simulateTouchEvent(target, "touchend", []); expect.soft(Array.from(hoveredNodes)).toEqual(["n1"]); const touch2 = { ...sigma.graphToViewport(graph.getNodeAttributes("n2") as Coordinates), id: 1 }; await simulateTouchEvent(target, "touchstart", [touch2]); await simulateTouchEvent(target, "touchmove", [touch2]); await simulateTouchEvent(target, "touchend", []); expect.soft(Array.from(hoveredNodes)).toEqual(["n2"]); }); test("touching the stage then releasing it should trigger a clickStage", async ({ sigma, target, }) => { let eventsCount = 0; sigma.on("clickStage", () => { eventsCount++; }); const touch = { id: 1, x: STAGE_WIDTH / 2, y: STAGE_HEIGHT / 2 }; await simulateTouchEvent(target, "touchstart", [touch]); await wait(100); await simulateTouchEvent(target, "touchend", []); expect(eventsCount).toEqual(1); }); test("touching the stage, moving the touch a bit, then releasing it should trigger a clickStage", async ({ sigma, target, }) => { let eventsCount = 0; sigma.on("clickStage", () => { eventsCount++; }); const touch = { id: 1, x: STAGE_WIDTH / 2, y: STAGE_HEIGHT / 2 }; await simulateTouchEvent(target, "touchstart", [touch]); await simulateTouchEvent(target, "touchmove", [add(touch, { x: 2, y: 2 })]); await simulateTouchEvent(target, "touchmove", [add(touch, { x: 2, y: -2 })]); await simulateTouchEvent(target, "touchend", []); expect(eventsCount).toEqual(1); }); test('touching the stage, moving the touch "enough", then releasing it should not trigger a clickStage', async ({ sigma, target, }) => { let eventsCount = 0; sigma.on("clickStage", () => { eventsCount++; }); const touch = { id: 1, x: STAGE_WIDTH / 3, y: STAGE_HEIGHT / 3 }; await simulateTouchEvent(target, "touchstart", [touch]); await simulateTouchEvent(target, "touchmove", [add(touch, touch)]); await simulateTouchEvent(target, "touchend", []); expect(eventsCount).toEqual(0); }); }); ================================================ FILE: packages/test/unit/sigma/lifecycle.ts ================================================ import { EventEmitter } from "events"; import Graph from "graphology"; import Sigma from "sigma"; import { createElement } from "sigma/utils"; import { afterEach, beforeEach, describe, expect, test } from "vitest"; interface SigmaTestContext { sigma: Sigma; } beforeEach(async (context) => { const graph = new Graph(); const container = createElement("div", { width: "100px", height: "100px" }); document.body.append(container); context.sigma = new Sigma(graph, container); }); afterEach(async ({ sigma }) => { sigma.kill(); sigma.getContainer().remove(); }); describe("Sigma #kill method", () => { test("it should unbind all event listeners", ({ sigma }) => { const dispatcher = sigma as EventEmitter; const EVENT = "custom-event"; let count = 0; dispatcher.addListener(EVENT, () => count++); dispatcher.emit(EVENT); expect(count).toEqual(1); sigma.kill(); dispatcher.emit(EVENT); expect(count).toEqual(1); }); test("it should do nothing when called multiple times", ({ sigma }) => { expect(() => { sigma.kill(); sigma.kill(); }).not.toThrow(); }); test('it should emit a "kill" event only the first time it\'s called', ({ sigma }) => { let count = 0; sigma.addListener("kill", () => count++); sigma.kill(); sigma.kill(); expect(count).toBe(1); }); test("it should empty the container", ({ sigma }) => { sigma.kill(); expect(sigma.getContainer().children.length).toBe(0); }); }); ================================================ FILE: packages/test/unit/sigma/mouse.ts ================================================ import { userEvent } from "@vitest/browser/context"; import Graph from "graphology"; import { SerializedGraph } from "graphology-types"; import Sigma from "sigma"; import { Coordinates } from "sigma/types"; import { createElement } from "sigma/utils"; import { afterEach, beforeEach, describe, expect, test } from "vitest"; import { wait } from "../_helpers"; interface SigmaTestContext { sigma: Sigma; graph: Graph; container: HTMLDivElement; } const STAGE_WIDTH = 200; const STAGE_HEIGHT = 400; const GRAPH: Pick = { nodes: [ { key: "n1", attributes: { x: 0, y: 0, size: 5 } }, { key: "n2", attributes: { x: 50, y: 50, size: 5 } }, ], edges: [{ source: "n1", target: "n2" }], }; beforeEach(async (context) => { const graph = new Graph(); graph.import(GRAPH); const container = createElement("div", { width: `${STAGE_WIDTH}px`, height: `${STAGE_HEIGHT}px` }) as HTMLDivElement; document.body.append(container); context.sigma = new Sigma(graph, container, { zoomDuration: 30, inertiaDuration: 30, doubleClickZoomingDuration: 30, }); context.graph = graph; context.container = container; }); afterEach(async ({ sigma }) => { sigma.kill(); sigma.getContainer().remove(); }); describe("Sigma mouse management", () => { test( "it should zoom to the center when user double-clicks in the center", async ({ sigma, container }) => { const position = { x: STAGE_WIDTH / 2, y: STAGE_HEIGHT / 2 }; await userEvent.dblClick(container, { position }); await wait(sigma.getSetting("doubleClickZoomingDuration") * 1.1); expect(sigma.getCamera().getState()).toEqual({ x: 0.5, y: 0.5, angle: 0, ratio: 1 / sigma.getSetting("doubleClickZoomingRatio"), }); }, { retry: 2 }, ); test( "it should zoom to the mouse position when user double-clicks in the center", async ({ sigma, container }) => { const position = { x: STAGE_WIDTH * 0.2, y: STAGE_HEIGHT * 0.7 }; const originalMouseGraphCoordinates = sigma.viewportToFramedGraph(position); await userEvent.dblClick(container, { position }); await wait(sigma.getSetting("doubleClickZoomingDuration") * 1.1); const newMouseGraphCoordinates = sigma.viewportToFramedGraph(position); (["x", "y"] as const).forEach((key) => expect(newMouseGraphCoordinates[key]).toBeCloseTo(originalMouseGraphCoordinates[key], 6), ); }, { retry: 2 }, ); test("it should dispatch an 'enterNode' event when the mouse is hover the node", async ({ sigma, graph, container, }) => { const position = sigma.graphToViewport(graph.getNodeAttributes("n1") as Coordinates); let triggeredEventsCount = 0; sigma.on("enterNode", () => { triggeredEventsCount++; }); await userEvent.hover(container, { position }); expect(triggeredEventsCount).toBe(1); expect(sigma["hoveredNode"]).toBe("n1"); }); test("it should not throw when `setGraph` is called while a node is hovered (issue #1486)", async ({ sigma, graph, container, }) => { const position = sigma.graphToViewport(graph.getNodeAttributes("n1") as Coordinates); await userEvent.hover(container, { position }); const newGraph = new Graph(); newGraph.import({ nodes: [ { key: "n3", attributes: { x: 0, y: 0, size: 5 } }, { key: "n4", attributes: { x: 50, y: 50, size: 5 } }, ], edges: [{ source: "n3", target: "n4" }], }); sigma.setGraph(newGraph); }); }); ================================================ FILE: packages/test/unit/sigma/rendering.ts ================================================ import { numberToGLSLFloat } from "sigma/rendering"; import { describe, expect, test } from "vitest"; describe("rendering utils", () => { describe("numberToGLSLFloat", () => { test('it should properly print all kind of numbers to "GLSL float" strings', () => { const tests: [number, string][] = [ [1, "1.0"], [123, "123.0"], [1.23, "1.23"], [0.123, "0.123"], [1230, "1230.0"], [12300, "12300.0"], [1e-6, "0.000001"], [1e6, "1000000.0"], ]; tests.forEach(([input, expectedOutput]) => expect(numberToGLSLFloat(input)).toBe(expectedOutput)); }); }); }); ================================================ FILE: packages/test/unit/sigma/settings.ts ================================================ import Graph from "graphology"; import Sigma from "sigma"; import { NodePointProgram } from "sigma/rendering"; import { createElement } from "sigma/utils"; import { afterEach, beforeEach, describe, expect, test } from "vitest"; interface SigmaTestContext { sigma: Sigma; } beforeEach(async (context) => { const graph = new Graph(); graph.addNode("a", { type: "circle", x: 0, y: 0 }); graph.addNode("b", { type: "circle", x: 10, y: 10 }); graph.addEdge("a", "b", { type: "arrow" }); const container = createElement("div", { width: "100px", height: "100px" }); document.body.append(container); context.sigma = new Sigma(graph, container); }); afterEach(async ({ sigma }) => { sigma.kill(); sigma.getContainer().remove(); }); describe("Sigma settings management", () => { test("it should refresh when settings are updated", async ({ sigma }) => { let count = 0; sigma.on("beforeRender", () => count++); expect(count).toEqual(0); sigma.setSetting("minEdgeThickness", 10); await new Promise((resolve) => window.setTimeout(resolve, 0)); expect(count).toEqual(1); }); test("it should update programs when they're updated", ({ sigma }) => { sigma.setSetting("nodeProgramClasses", { point: NodePointProgram }); expect(() => sigma.refresh()).toThrow(); const graph = sigma.getGraph(); graph.forEachNode((node) => graph.setNodeAttribute(node, "type", "point")); expect(() => sigma.refresh()).not.toThrow(); }); }); ================================================ FILE: packages/test/unit/sigma/touch.ts ================================================ import Graph from "graphology"; import { SerializedGraph } from "graphology-types"; import Sigma from "sigma"; import { createElement } from "sigma/utils"; import { afterEach, beforeEach, describe, expect, test } from "vitest"; import { add, expectObjectsToBeClose, remove, rotate, simulateTouchEvent } from "../_helpers"; interface SigmaTestContext { sigma: Sigma; graph: Graph; target: HTMLElement; } // Tests context: const STAGE_WIDTH = 200; const STAGE_HEIGHT = 400; const ID_A = 1; const ID_B = 2; const T_A = { id: ID_A, x: STAGE_WIDTH / 3, y: STAGE_HEIGHT / 3 }; const T_B = { id: ID_B, x: (STAGE_WIDTH * 2) / 3, y: (STAGE_HEIGHT * 2) / 3 }; const GRAPH: Pick = { nodes: [ { key: "n1", attributes: { x: 0, y: 0, size: 5 } }, { key: "n2", attributes: { x: 50, y: 50, size: 5 } }, ], edges: [{ source: "n1", target: "n2" }], }; beforeEach(async (context) => { const graph = new Graph(); graph.import(GRAPH); const container = createElement("div", { width: `${STAGE_WIDTH}px`, height: `${STAGE_HEIGHT}px` }) as HTMLDivElement; document.body.append(container); context.sigma = new Sigma(graph, container, { zoomDuration: 30, inertiaDuration: 30, doubleClickZoomingDuration: 30, }); context.graph = graph; context.target = context.sigma.getCanvases().mouse; }); afterEach(async ({ sigma }) => { sigma.kill(); sigma.getContainer().remove(); }); // Actual tests: describe("Sigma multi-touch management", () => { test("the camera should not move when touches are down and up, without moving at all", async ({ sigma, target, }) => { const initialCameraState = { ...sigma.getCamera().getState() }; await simulateTouchEvent(target, "touchstart", [T_A]); await simulateTouchEvent(target, "touchstart", [T_A, T_B]); await simulateTouchEvent(target, "touchmove", [T_A, T_B]); await simulateTouchEvent(target, "touchend", [T_B]); await simulateTouchEvent(target, "touchend", []); expect(sigma.getCamera().getState()).toEqual(initialCameraState); }); test("the camera should move (no zoom, no rotation) when both touches move the same", async ({ sigma, target, }) => { const camera = sigma.getCamera(); const initialCameraState = camera.getState(); const diff = { x: 100, y: 100 }; const targetA = add(T_A, diff); const targetB = add(T_B, diff); const expectedCameraState = { ...initialCameraState, ...sigma.viewportToFramedGraph(remove(sigma.framedGraphToViewport(initialCameraState), diff)), }; await simulateTouchEvent(target, "touchstart", [T_A]); await simulateTouchEvent(target, "touchstart", [T_A, T_B]); await simulateTouchEvent(target, "touchmove", [targetA, targetB]); await simulateTouchEvent(target, "touchend", [targetB]); await simulateTouchEvent(target, "touchend", []); const newCameraState = camera.getState(); expectObjectsToBeClose(newCameraState, expectedCameraState); }); test("the camera should zoom (no move, no rotation) when both touches move, while keeping the same center and orientation", async ({ sigma, target, }) => { const camera = sigma.getCamera(); const initialCameraState = camera.getState(); const targetA = { id: ID_A, x: 0, y: 0 }; const targetB = { id: ID_B, x: STAGE_WIDTH, y: STAGE_HEIGHT }; const expectedCameraState = { ...initialCameraState, ratio: initialCameraState.ratio / 3 }; await simulateTouchEvent(target, "touchstart", [T_A]); await simulateTouchEvent(target, "touchstart", [T_A, T_B]); await simulateTouchEvent(target, "touchmove", [targetA, targetB]); await simulateTouchEvent(target, "touchend", [targetB]); await simulateTouchEvent(target, "touchend", []); const newCameraState = camera.getState(); expectObjectsToBeClose(newCameraState, expectedCameraState); }); test("the camera should rotate (no move, no zoom) when both touches move, while keeping the same center and distance", async ({ sigma, target, }) => { const camera = sigma.getCamera(); const initialCameraState = camera.getState(); const center = { x: STAGE_WIDTH / 2, y: STAGE_HEIGHT / 2 }; const targetA = rotate(T_A, center, Math.PI / 2); const targetB = rotate(T_B, center, Math.PI / 2); const expectedCameraState = { ...initialCameraState, angle: initialCameraState.angle + Math.PI / 2, }; await simulateTouchEvent(target, "touchstart", [T_A]); await simulateTouchEvent(target, "touchstart", [T_A, T_B]); await simulateTouchEvent(target, "touchmove", [targetA, targetB]); await simulateTouchEvent(target, "touchend", [targetB]); await simulateTouchEvent(target, "touchend", []); const newCameraState = camera.getState(); expectObjectsToBeClose(newCameraState, expectedCameraState); }); }); ================================================ FILE: packages/test/unit/sigma/utils.ts ================================================ import Graph, { UndirectedGraph } from "graphology"; import erdosRenyi from "graphology-generators/random/erdos-renyi"; import randomLayout from "graphology-layout/random"; import choice from "pandemonium/choice"; import { graphExtent, validateGraph } from "sigma/utils"; import { describe, expect, test } from "vitest"; describe("validateGraph utils", () => { test("it should work on a valid graph", () => { // Create a valid random graph const graph = erdosRenyi(UndirectedGraph, { order: 100, probability: 0.2 }); randomLayout.assign(graph); // Test expect(() => { validateGraph(graph); }).not.toThrow(); }); test("it should throw an error if graph is not a valid graphology instance", () => { expect(() => { validateGraph(null as unknown as Graph); validateGraph(undefined as unknown as Graph); validateGraph({} as unknown as Graph); }).toThrow(); }); test("it should throw an error if a node is missing a coordinate", () => { // Create a valid random graph const graph = erdosRenyi(UndirectedGraph, { order: 100, probability: 0.2 }); randomLayout.assign(graph); // Get a random node, and remove its 'x' attribute const nodeKey = choice(graph.nodes()); graph.removeNodeAttribute(nodeKey, "x"); // Test expect(() => { validateGraph(graph); }).toThrow(); }); }); describe("graphExtent utils", () => { test("it should work on a classic graph with multiple nodes", () => { const graph = new Graph(); graph.import({ nodes: [ { key: "n1", attributes: { x: 0, y: 0, size: 5 } }, { key: "n2", attributes: { x: 40, y: 0, size: 5 } }, { key: "n3", attributes: { x: 0, y: 40, size: 5 } }, { key: "n4", attributes: { x: 40, y: 40, size: 5 } }, ], }); expect(graphExtent(graph)).toEqual({ x: [0, 40], y: [0, 40], }); }); test("it should work on a graph with all nodes with same x", () => { const graph = new Graph(); graph.import({ nodes: [ { key: "n1", attributes: { x: 20, y: 0, size: 5 } }, { key: "n2", attributes: { x: 20, y: 40, size: 5 } }, ], }); expect(graphExtent(graph)).toEqual({ x: [20, 20], y: [0, 40], }); }); test("it should work on a graph with all nodes with same y", () => { const graph = new Graph(); graph.import({ nodes: [ { key: "n1", attributes: { x: 0, y: 20, size: 5 } }, { key: "n2", attributes: { x: 40, y: 20, size: 5 } }, ], }); expect(graphExtent(graph)).toEqual({ x: [0, 40], y: [20, 20], }); }); test("it should work on a graph with only one node", () => { const graph = new Graph(); graph.import({ nodes: [{ key: "n1", attributes: { x: 12, y: 34, size: 5 } }], }); expect(graphExtent(graph)).toEqual({ x: [12, 12], y: [34, 34], }); }); test("it should return some placeholder extents for empty graphs", () => { const graph = new Graph(); expect(graphExtent(graph)).toEqual({ x: [0, 1], y: [0, 1], }); }); }); ================================================ FILE: packages/test/unit/utils/fitViewportToNodes.ts ================================================ import { getCameraStateToFitViewportToNodes } from "@sigma/utils"; import Graph from "graphology"; import { SerializedGraph } from "graphology-types"; import Sigma from "sigma"; import { Coordinates } from "sigma/types"; import { createElement } from "sigma/utils"; import { afterEach, beforeEach, describe, expect, test } from "vitest"; const GRAPH: Pick = { nodes: [ { key: "n1", attributes: { x: 0, y: 0, size: 5 } }, { key: "n2", attributes: { x: 40, y: 0, size: 5 } }, { key: "n3", attributes: { x: 0, y: 40, size: 5 } }, { key: "n4", attributes: { x: 40, y: 40, size: 5 } }, ], edges: [ { source: "n1", target: "n2" }, { source: "n2", target: "n4" }, { source: "n4", target: "n3" }, { source: "n3", target: "n1" }, ], }; interface SigmaTestContext { sigma: Sigma; } beforeEach(async (context) => { const graph = new Graph(); graph.import(GRAPH); const container = createElement("div", { width: "100px", height: "100px" }); document.body.append(container); context.sigma = new Sigma(graph, container); }); afterEach(async ({ sigma }) => { sigma.kill(); sigma.getContainer().remove(); }); describe("@sigma/utils", () => { describe("getCameraStateToFitViewportToNodes", () => { test("it should return the default camera state when the given nodes cover the whole graph bounding box", ({ sigma, }) => { const DEFAULT_CAMERA_STATE = { x: 0.5, y: 0.5, angle: 0, ratio: 1, }; expect(getCameraStateToFitViewportToNodes(sigma, sigma.getGraph().nodes())).toEqual(DEFAULT_CAMERA_STATE); expect(getCameraStateToFitViewportToNodes(sigma, ["n1", "n4"])).toEqual(DEFAULT_CAMERA_STATE); expect(getCameraStateToFitViewportToNodes(sigma, ["n2", "n3"])).toEqual(DEFAULT_CAMERA_STATE); }); test("it should throw when no node is given", ({ sigma }) => { expect(() => getCameraStateToFitViewportToNodes(sigma, [])).to.throw(); }); test("it should work with on single node", ({ sigma }) => { expect(getCameraStateToFitViewportToNodes(sigma, ["n4"])).toEqual({ x: 1, y: 1, ratio: 1, angle: 0, }); }); test("it should work when sigma has a custom bounding box", ({ sigma }) => { sigma.getGraph().import({ nodes: [ { key: "n5", attributes: { x: 0, y: 80, size: 5 } }, { key: "n6", attributes: { x: 40, y: 80, size: 5 } }, ], }); sigma.setCustomBBox({ x: [0, 40], y: [0, 40], }); expect(getCameraStateToFitViewportToNodes(sigma, ["n4"])).toEqual({ x: 1, y: 1, ratio: 1, angle: 0, }); expect(getCameraStateToFitViewportToNodes(sigma, ["n1", "n2", "n3", "n4"])).toEqual({ x: 0.5, y: 0.5, ratio: 1, angle: 0, }); expect(getCameraStateToFitViewportToNodes(sigma, ["n5", "n6"])).toEqual({ x: 0.5, y: 2, ratio: 1, angle: 0, }); }); test("it should put a single node to the center of the viewport when called with only one node", ({ sigma, }) => { const camera = sigma.getCamera(); const graph = sigma.getGraph(); const node = "n4"; const newCameraState = getCameraStateToFitViewportToNodes(sigma, [node]); camera.setState(newCameraState); sigma.refresh(); const nodeViewportPosition = sigma.graphToViewport(graph.getNodeAttributes(node) as Coordinates); expect(nodeViewportPosition).toEqual({ x: 50, y: 50 }); }); test("it should work when the graph has only one node (regression #1473)", ({ sigma }) => { const camera = sigma.getCamera(); const graph = sigma.getGraph(); const node = "n4"; graph.dropNode("n1"); graph.dropNode("n2"); graph.dropNode("n3"); sigma.refresh(); const newCameraState = getCameraStateToFitViewportToNodes(sigma, [node]); camera.setState(newCameraState); sigma.refresh(); const nodeViewportPosition = sigma.graphToViewport(graph.getNodeAttributes(node) as Coordinates); expect(camera.getState()).toEqual({ x: 0.5, y: 0.5, ratio: 1, angle: 0, }); expect(nodeViewportPosition).toEqual({ x: 50, y: 50 }); }); }); }); ================================================ FILE: packages/test/vite.config.mts ================================================ import { defineConfig } from "vite"; export default defineConfig({ root: "./app", resolve: { extensions: [".ts", ".js"], }, publicDir: "public", build: { outDir: "dist", }, }); ================================================ FILE: packages/test/vitest.config.mts ================================================ import { defineConfig } from "vitest/config"; export default defineConfig({ test: { include: ["**/[^_]*.ts"], browser: { provider: "playwright", name: "chromium", enabled: true, headless: true, }, }, }); ================================================ FILE: packages/utils/.gitignore ================================================ node_modules dist ================================================ FILE: packages/utils/.npmignore ================================================ .gitignore node_modules src tsconfig.json ================================================ FILE: packages/utils/README.md ================================================ # Sigma.js - Utils This package contains various utils functions to ease the use of [sigma.js](https://www.sigmajs.org/), and expose some code snippets that are very useful, but are not important and complex enough to deserve their own package. ### `fitViewportToNodes` and `getCameraStateToFitViewportToNodes` These functions allow moving a sigma instance's camera so that it fits to a given group of nodes. ### `getNodesInViewport` This function allows retrieving the list of nodes that are visible (even partially) in the current viewport. Please check the related [Storybook](https://github.com/jacomyal/sigma.js/tree/main/packages/storybook/stories/3-additional-packages/utils) for more advanced examples. ================================================ FILE: packages/utils/package.json ================================================ { "name": "@sigma/utils", "version": "3.0.0", "description": "A set of utils functions to ease the use of sigma.js", "main": "dist/sigma-utils.cjs.js", "module": "dist/sigma-utils.esm.js", "files": [ "/dist" ], "sideEffects": false, "homepage": "https://www.sigmajs.org", "bugs": "http://github.com/jacomyal/sigma.js/issues", "repository": { "type": "git", "url": "http://github.com/jacomyal/sigma.js.git", "directory": "packages/utils" }, "preconstruct": { "entrypoints": [ "index.ts" ] }, "peerDependencies": { "sigma": ">=3.0.0-beta.29" }, "license": "MIT", "exports": { ".": { "module": "./dist/sigma-utils.esm.js", "import": "./dist/sigma-utils.cjs.mjs", "default": "./dist/sigma-utils.cjs.js" }, "./package.json": "./package.json" } } ================================================ FILE: packages/utils/src/fitViewportToNodes.ts ================================================ import Sigma from "sigma"; import type { CameraState } from "sigma/types"; import { getCorrectionRatio } from "sigma/utils"; export type FitViewportToNodesOptions = { animate: boolean; }; export const DEFAULT_FIT_VIEWPORT_TO_NODES_OPTIONS: FitViewportToNodesOptions = { animate: true, }; /** * This function takes a Sigma instance and a list of nodes as input, and returns a CameraState so that the camera fits * the best to the given groups of nodes (i.e. the camera is as zoomed as possible while keeping all nodes on screen). * * @param sigma A Sigma instance * @param nodes A list of nodes IDs * @param opts An optional and partial FitViewportToNodesOptions object */ export function getCameraStateToFitViewportToNodes( sigma: Sigma, nodes: string[], _opts: Partial> = {}, ): CameraState { if (!nodes.length) throw new Error("getCameraStateToFitViewportToNodes: There should be at least one node."); let groupMinX = Infinity; let groupMaxX = -Infinity; let groupMinY = Infinity; let groupMaxY = -Infinity; let groupFramedMinX = Infinity; let groupFramedMaxX = -Infinity; let groupFramedMinY = Infinity; let groupFramedMaxY = -Infinity; const graph = sigma.getGraph(); nodes.forEach((node) => { const data = sigma.getNodeDisplayData(node); if (!data) throw new Error(`getCameraStateToFitViewportToNodes: Node ${node} not found in sigma's graph.`); const { x, y } = graph.getNodeAttributes(node); const { x: framedX, y: framedY } = data; groupMinX = Math.min(groupMinX, x); groupMaxX = Math.max(groupMaxX, x); groupMinY = Math.min(groupMinY, y); groupMaxY = Math.max(groupMaxY, y); groupFramedMinX = Math.min(groupFramedMinX, framedX); groupFramedMaxX = Math.max(groupFramedMaxX, framedX); groupFramedMinY = Math.min(groupFramedMinY, framedY); groupFramedMaxY = Math.max(groupFramedMaxY, framedY); }); const { x, y } = sigma.getCustomBBox() || sigma.getBBox(); const graphWidth = x[1] - x[0] || 1; const graphHeight = y[1] - y[0] || 1; const groupCenterX = (groupFramedMinX + groupFramedMaxX) / 2; const groupCenterY = (groupFramedMinY + groupFramedMaxY) / 2; const groupWidth = groupMaxX - groupMinX || graphWidth; const groupHeight = groupMaxY - groupMinY || graphHeight; const { width, height } = sigma.getDimensions(); const correction = getCorrectionRatio({ width, height }, { width: graphWidth, height: graphHeight }); const ratio = ((groupHeight / groupWidth < height / width ? groupWidth : groupHeight) / Math.max(graphWidth, graphHeight)) * correction; const camera = sigma.getCamera(); return { ...camera.getState(), angle: 0, x: groupCenterX, y: groupCenterY, ratio, }; } /** * This function takes a Sigma instance and a list of nodes as input, and updates the camera so that the camera fits the * best to the given groups of nodes (i.e. the camera is as zoomed as possible while keeping all nodes on screen). * * @param sigma A Sigma instance * @param nodes A list of nodes IDs * @param opts An optional and partial FitViewportToNodesOptions object */ export async function fitViewportToNodes( sigma: Sigma, nodes: string[], opts: Partial = {}, ): Promise { const { animate } = { ...DEFAULT_FIT_VIEWPORT_TO_NODES_OPTIONS, ...opts, }; const camera = sigma.getCamera(); const newCameraState = getCameraStateToFitViewportToNodes(sigma, nodes, opts); if (animate) { await camera.animate(newCameraState); } else { camera.setState(newCameraState); } } ================================================ FILE: packages/utils/src/getNodesInViewport.ts ================================================ import Sigma from "sigma"; import { NodeDisplayData } from "sigma/types"; /** * This function takes a Sigma instance and returns the list of all nodes visible in the viewport. * * @param sigma A Sigma instance */ export function getNodesInViewport(sigma: Sigma): string[] { const { width, height } = sigma.getDimensions(); const graph = sigma.getGraph(); return graph.filterNodes((_, attributes) => { const data = attributes as NodeDisplayData; const { x, y } = sigma.graphToViewport(data); const size = sigma.scaleSize(data.size); return x + size >= 0 && x - size <= width && y + size >= 0 && y - size <= height; }); } ================================================ FILE: packages/utils/src/index.ts ================================================ export * from "./fitViewportToNodes"; export * from "./getNodesInViewport"; ================================================ FILE: packages/utils/tsconfig.json ================================================ { "extends": "../../tsconfig.base.json", "compilerOptions": { "target": "ESNext", "useDefineForClassFields": true, "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, "moduleResolution": "node", "allowSyntheticDefaultImports": true, "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "declaration": true }, "include": ["src"], "exclude": ["src/**/__docs__", "src/**/__test__"] } ================================================ FILE: packages/website/.gitignore ================================================ # Dependencies /node_modules # Production /build # Generated files .docusaurus .cache-loader docs/typedoc # Misc .DS_Store .env.local .env.development.local .env.test.local .env.production.local npm-debug.log* yarn-debug.log* yarn-error.log* ================================================ FILE: packages/website/README.md ================================================ # Sigma.js - sigmajs.org website This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator. ### Installation ``` $ npm install ``` ### Local Development ``` $ npm start ``` This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server. Please acknowledge that the homepage won't be available in development though, since it is a static HTML file that is outside the React / React-Router expected workflow. ### Build ``` $ npm build ``` This command generates static content into the `build` directory and can be served using any static contents hosting service. ================================================ FILE: packages/website/babel.config.js ================================================ module.exports = { presets: [require.resolve("@docusaurus/core/lib/babel/preset")], }; ================================================ FILE: packages/website/docs/advanced/_category_.json ================================================ { "label": "Advanced topics", "position": 4, "link": { "type": "generated-index" } } ================================================ FILE: packages/website/docs/advanced/coordinate-systems.md ================================================ --- title: Coordinate systems sidebar_position: 4 --- # Coordinate systems ## The graph space: `graph` The graph contains nodes having arbitrary `(x, y)` positions. graph-space ## Normalized graph space: `framedGraph` First we compute the extent (min & max values) for `x` and `y` coordinates in graph space. graph-space-extent Then we normalize this space into a "square" (quotation marks hereafter explained) such that graphspace `min` becomes `0` and graphspace max `1`. But, to complicate this a bit, it is important to understand that the aspect ratio of the original graph space remains inscribed in our normalized "square". This means either `x` or `y` dimension (the one having the smallest extent) will not be translated to `min = 0` and `max = 1` but will instead have something like `min > 0` and `max < 1`. framed-graph-space ## Viewport space: `viewport` When dealing with 2d canvas (when drawing labels, for instance, or reacting to user mouse events), it can be useful to be able to translate to the viewport coordinates symbolized by a `width` and a `height` in pixels. One thing to note is that the `y` dimension is then flipped, higher values of `y` meaning lower on the screen. One other thing to note is that sigma will correct for the aspect ratio of your viewport to make sure (also considering an optional padding) your graph will occupy a maximum of available screen space. viewport-space ## WebGL vertex shader output space: `clipspace` In the vertex shader, we translate from `frameGraph` to `clipspace` that has dimensions ranging from `-1` to `1`. Doing so, we apply a correction to make sure the resulting space is a real square with both dimensions ranging from min (`-1`) to max (`1`). clipspace In the fragment shader, the position is then expressed in `viewport` space. This means doing computation in rendered pixel in the vertex shader is not easy, and transferring values from the vertex shader to the fragment one is not easy either. ================================================ FILE: packages/website/docs/advanced/customization.md ================================================ --- title: Customizing appearance sidebar_position: 2 --- # Customizing graph appearance Sigma.js offers a range of options to tailor the appearance of graphs. Depending on your needs and familiarity with the library, you can choose from simple tweaks to more advanced customizations. Here's a breakdown of the available methods: ## Sizes and colors A fundamental way to influence the look of your graph is by specifying sizes and colors for nodes and edges. As detailed in the data section of sigma.js documentation, it's essential to provide these attributes for each node and edge. ### Dynamic appearance with reducers Reducers offer a dynamic approach to adjust the appearance. They are particularly useful when you want to emphasize specific parts of the graph or highlight the neighborhood of a particular node. For hands-on examples of how to employ reducers for dynamic appearance adjustments, refer to the [`use-reducers`](https://github.com/jacomyal/sigma.js/blob/main/packages/storybook/stories/1-core-features/4-use-reducers/index.ts) and [`events`](https://github.com/jacomyal/sigma.js/blob/main/packages/storybook/stories/1-core-features/2-events/index.ts) examples. ## Labels and hovered nodes Labels play a crucial role in making the graph informative. Sigma.js provides settings to fine-tune label rendering, including: - **`labelFont`**: Adjusts the font used for labels. - **`labelSize`**: Modifies the size of the label text (in `px`). - **`labelWeight`**: Sets the weight (or thickness) of the label text (accepts [`font-weight` CSS values](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)). - **`labelColor`**: Changes the color of the label text. Can either be shaped as `{ color: string }` (all labels will have the same color) or as `{ attribute: string, color?: string }` (each label can specify its own color under the `labelColor.attribute`, with `labelColor.color` as a fallback value) Additionally, you can render edge labels by setting **`renderEdgeLabels`** to `true`. When enabled, the **`edgeLabelFont`**, **`edgeLabelSize`**, **`edgeLabelWeight`**, and **`edgeLabelColor`** settings customize edge labels in the same way as the node label settings above. ### Custom canvas rendering Beyond these settings, sigma.js allows for more advanced customization of labels and hovered nodes through canvas context manipulation. By overriding the default methods that handle label and node hovering rendering, you can achieve a unique visual style that deviates from the standard sigma.js appearance. This approach is less complex than working directly with WebGL renderers and offers a way to give your application a distinct feel. For most common cases (i.e. straight edges and round nodes), you can directly override the `defaultDrawEdgeLabel`, `defaultDrawNodeLabel` and `defaultDrawNodeHover` settings. When you start having various shapes of nodes and/or edges (square nodes, curved edges...), you need to specify labels and hovered items renderers for each program. Each node program can have optional `drawLabel` and `drawHover` methods, and each edge program can have an optional `drawLabel` method. For a practical demonstration of this method, check out the website's demo, specifically the [`canvas-utils.ts` section](https://github.com/jacomyal/sigma.js/blob/main/packages/demo/src/canvas-utils.ts). ## Custom renderers For those seeking a deeper level of customization, sigma.js allows the creation of custom renderers. This option is ideal for those who want nodes and edges rendered in non-standard ways, such as nodes with borders or unique shapes. The [`custom-rendering`](https://github.com/jacomyal/sigma.js/blob/main/packages/storybook/stories/1-core-features/5-custom-rendering/index.ts) example provides a detailed guide on how to craft bordered nodes, serving as a starting point for those interested in exploring this advanced customization avenue. ================================================ FILE: packages/website/docs/advanced/data.md ================================================ --- title: Graph data sidebar_position: 1 --- # Graph data Sigma.js utilizes a specific data model to represent and display graphs. This section provides an overview of the core attributes and functionalities related to nodes and edges in sigma.js. ## Graph model: Graphology Sigma.js uses [graphology](https://graphology.github.io/) as its underlying graph model. Graphology offers a very large [standard library](https://graphology.github.io/standard-library/) of graph algorithms and data structures. It also provides a powerful API for developers to interact with graphs. ## Node attributes Nodes in sigma.js have several recognized attributes that determine their appearance and behavior: - **`x`, `y`**: These attributes determine the position of the node on the canvas. They are typically set using layout algorithms but can also be manually specified. - **`type`**: This attribute defines the visual representation of the node, such as `'circle'`, `'square'`, etc. If not specified, the `defaultNodeType` setting will be used instead. The type value must match a key in the `nodeProgramClasses` collection from the settings. Please check the [`custom-rendering`](https://github.com/jacomyal/sigma.js/blob/main/packages/storybook/stories/1-core-features/5-custom-rendering/index.ts) story to see an actual example. - **`size`**: Represents the radius of the node. A larger value will render a bigger node. - **`color`**: Represents the color of the node, as a string. It handles hexadecimal values (`"#e22653"` for instance) and [CSS named colors](https://developer.mozilla.org/en-US/docs/Web/CSS/named-color) (`"deeppink"` for instance). - **`label`**: The text displayed near the node, typically representing its name or identifier. ### Additional node attributes - **`hidden`**: A boolean attribute. If set to `true`, the node will not be displayed. - **`forceLabel`**: When set to `true`, the node's label will always be displayed, regardless of zoom level or other conditions. - **`zIndex`**: Determines the display order of nodes. Nodes with higher zIndex values will be drawn on top of nodes with lower zIndex values. Note: The `zIndex` attribute only works when the setting `zIndex` is set to `true`. ## Edge attributes Edges have their own set of attributes: - **`size`**: Represents the thickness of the edge. A larger value will render a thicker edge. - **`color`**: Represents the color of the node, as a string. - **`label`**: The text displayed near the edge, typically representing its weight or type. - **`type`**: This attribute defines the visual representation of the edge, such as `'line'`, `'arrow'`, `'curve''`, etc. If not specified, the `defaultEdgeType` setting will be used instead. The type value must match a key in the `edgeProgramClasses` collection from the settings. Please check the [`parallel-edges`](https://github.com/jacomyal/sigma.js/blob/main/packages/storybook/stories/3-additional-packages/edge-curve/parallel-edges.ts) story to see an actual example. ### Additional edge attributes - **`hidden`**: A boolean attribute. If set to `true`, the edge will not be displayed. - **`forceLabel`**: When set to `true`, the edge's label will always be displayed, regardless of zoom level or other conditions. - **`zIndex`**: Determines the display order of edges. Edges with higher zIndex values will be drawn on top of edges with lower zIndex values. Note: The `zIndex` attribute only works when the setting `zIndex` is set to `true`, and also edges can never be drawn on top of nodes, regardless of their `zIndex` values. ## Dynamic attribute transformation: reducers Sigma.js offers a powerful feature that allows developers to dynamically transform node and edge attributes right before rendering. This is achieved using `nodeReducer` and `edgeReducer`. These are functions provided in the settings. They take a node or edge as input and return a new set of attributes for that node or edge. This allows for dynamic visual transformations without modifying the underlying graphology instance. For instance, if developers want to highlight a specific part of the graph, they can use reducers to change the size or color of specific nodes and edges without altering the original graph data. ```typescript sigma.setSetting("nodeReducer", (node) => { if (node.id === "specialNode") { return { ...node, size: 10, color: "#ff0000", }; } return node; }); ``` In the example above, the `nodeReducer` checks if a node has an id of 'specialNode'. If it does, it changes its size and color. This transformation will be applied right before rendering, ensuring that the 'specialNode' stands out in the visualization. ================================================ FILE: packages/website/docs/advanced/events.md ================================================ --- title: Events sidebar_position: 7 --- # Events Sigma.js utilizes events as a mechanism to execute specific code in response to various actions or changes within a sigma instance. This event-driven approach allows for interactive and dynamic behaviors in graph visualizations. ## Event handling API Sigma.js's event handling API is modeled after the **[events](https://www.npmjs.com/package/events)** package in Node. However, a distinction is that events in sigma.js, along with their payloads, are typed. This design choice benefits the development experience, especially for TypeScript users, by offering clarity about the event data. ## Interaction events All interactive events in sigma.js come with a payload that contains an `event` object. This object includes: - `x` and `y`: Coordinates within the container where the event occurred. - `originalEvent`: The original MouseEvent or TouchEvent. ### Node events Node-specific events are triggered by interactions with graph nodes. The primary node events in sigma.js are: - **enterNode** - **leaveNode** - **downNode** - **clickNode** - **rightClickNode** - **doubleClickNode** - **wheelNode** The payload for these events, in addition to the `event` object, contains a `node` string, which is the ID of the associated node. ### Edge events Edge-specific events are initiated by interactions with graph edges. The primary edge events in sigma.js are: - **enterEdge** - **leaveEdge** - **downEdge** - **clickEdge** - **rightClickEdge** - **doubleClickEdge** - **wheelEdge** For these events, the payload, in addition to the `event` object, contains an `edge` string, which is the ID of the related edge. To ensure these events function correctly, the settings `enableEdgeClickEvents`, `enableEdgeWheelEvents`, and `enableEdgeHoverEvents` must be enabled. By default, these settings are set to `false`. ### Stage events Stage events are triggered by interactions that occur on the stage, which is the overall container of the graph. The primary stage events in sigma.js are: - **downStage** - **clickStage** - **rightClickStage** - **doubleClickStage** - **wheelStage** ## Lifecycle events Sigma.js also emits events at specific lifecycle stages of the sigma instance. These events offer hooks for developers to run code at key moments in the graph's lifecycle. These events are: - **beforeRender**: Emitted just before the graph is rendered (precisely at the beginning of the inner method `render` method). - **afterRender**: Emitted immediately after the graph has been rendered (precisely at the end of the inner method `render` method). - **resize**: Emitted when the sigma instance undergoes resizing. - **kill**: Emitted when the sigma instance is terminated. These lifecycle events do not come with any payload. ## Custom events Leveraging the `EventEmitter` nature of the sigma instance, developers can emit and listen to custom events. This capability allows for tailored interactions and behaviors beyond the built-in events. In JavaScript: ```javascript sigma.on("myCustomEvent", ({ data }) => console.log("data", data)); sigma.emit("myCustomEvent", { data: "something something" }); ``` In TypeScript: ```typescript import EventEmitter from "events"; // Because of the typed events, sigma must be cast to a simple EventEmitter to emit custom events: (sigma as EventEmitter).on("myCustomEvent", ({ data }) => console.log("data", data)); (sigma as EventEmitter).emit("myCustomEvent", { data: "something something" }); ``` By using custom events, developers can further enhance the interactivity and responsiveness of their graph visualizations. ================================================ FILE: packages/website/docs/advanced/layers.md ================================================ --- title: Layers sidebar_position: 6 --- # Layers Sigma renders the graph on **multiple layers**. Some layers are using [WebGL](https://www.sigmajs.org/docs/advanced/renderers#brief-overview-of-webgl), some are using [Canvas](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas). ## List of existing layers Sigma's layouts list - **`sigma-edges`** (WebGL) - **`sigma-edgeLabels`** (Canvas) - **`sigma-nodes`** (WebGL) - **`sigma-labels`** (Canvas) - **`sigma-hovers`** (Canvas): This layer draws the hovered and highlighted node labels, with the related backgrounds. - **`sigma-hoverNodes`** (WebGL): This layer renders the hovered and highlighted nodes **again**, but on top of the `sigma-hovers` Canvas layer. - **`sigma-mouse`**: This layer is just here to listen to interaction events. ## Manipulating layers By default, all these layers are simply put in the sigma container, with `position: absolute;` and `inset: 0;`. There are multiple ways to manipulate these layers! Here are some examples: ### Putting layers behind the `mouse` layer It is sometimes useful to add new layers on top of the sigma graph, but without altering the interactions. It is for instance the case in the [**Events**](https://www.sigmajs.org/storybook/?path=/story/events--story) story, where we want to display the events log, on top of the graph, but without breaking the graph interactions. To do this, the simplest method we could find was: - Insert the logs container after the sigma container in the DOM, also with `position: absolute; inset: 0;` - Put the `sigma-mouse` layer back on top, simply using `z-index: 1;` You can check this example's sources [here](https://github.com/jacomyal/sigma.js/blob/main/packages/storybook/stories/1-core-features/2-events/index.html). ### Creating new layers and inserting in the right spot For the [**Adding label on clusters**](https://www.sigmajs.org/storybook/?path=/story/cluster-label--story) story, we chose to insert the custom HTML layer, directly using the DOM APIs: ```JavaScript myCustomLayer.insertBefore(clustersLayer, sigmaContainer.querySelector(".sigma-hovers")); ``` You can check this example's sources [here](https://github.com/jacomyal/sigma.js/blob/main/packages/storybook/stories/2-advanced-usecases/cluster-label/index.ts#L73). ### Creating new Canvas or WebGL layers It is also possible to create new layers, directly using sigma's APIs. Sigma exposes a [`createCanvas`](https://www.sigmajs.org/docs/typedoc/sigma/src/classes/Sigma#createcanvas) method, to create a new Canvas HTML element. This method accepts `beforeLayer` and `afterLayer` options, that take a layer class. Then, the methods `createCanvasContext` and `createWebGLContext` allow retrieving the proper context from the Canvas element. The main advantage of this method is that the layer will be properly removed when the `kill` method is called. A good example of this method is in the [`@sigma/layer-webgl`](https://github.com/jacomyal/sigma.js/tree/main/packages/layer-webgl) package, that both [creates the context](https://github.com/jacomyal/sigma.js/blob/main/packages/layer-webgl/src/bind-webgl-layer.ts#L11-L12) and [destroys it](https://github.com/jacomyal/sigma.js/blob/main/packages/layer-webgl/src/bind-webgl-layer.ts#L43) when needed. ================================================ FILE: packages/website/docs/advanced/lifecycle.md ================================================ --- title: Lifecycle sidebar_position: 0 --- # Sigma.js lifecycle This page outlines the lifecycle and rendering processes of a sigma instance. It details the steps from instantiation to termination and explains the mechanics behind data visualization in sigma.js. ## Core lifecycle of a sigma instance ### Instantiation A sigma instance is initialized with the following components: - **Graphology Instance**: This is essential for sigma to function. It provides the graph data structure that sigma visualizes. - **DOM Element**: This element acts as the container for the graph visualization and remains consistent throughout the sigma instance's lifetime. - **Settings (Optional)**: Initial settings can be provided during instantiation to configure sigma's behavior. The graph provided during instantiation can be updated later using the `setGraph` method. ### Settings management Settings play a pivotal role in determining sigma's behavior. They can be: - **Provided during instantiation**: Initial settings can be passed to the constructor. - **Updated later**: The `setSetting` and `updateSetting` methods allow for modifications to the settings after instantiation. ### Termination To gracefully terminate a sigma instance, the `kill` method should be invoked. This method ensures that all bindings and resources are released, allowing for efficient garbage collection and cleanup of the internal components. ## Rendering in sigma Rendering in sigma involves two primary steps: processing the data and then visualizing it. ### Two-step rendering mechanism 1. **Processing**: Before rendering, sigma must process the data. This involves tasks like invoking the `nodeReducer` and `edgeReducer` settings, and indexing data for the WebGL renderers. 2. **Rendering**: After processing, sigma visualizes the graph by generating each layer in the canvas element. ### Automatic rendering triggers Sigma automatically invokes the processing and rendering methods in specific scenarios: - **Graphology Events**: When the Graphology instance emits events related to data updates, sigma takes care of the necessary rendering. Developers don't need to manage this. - **Settings Updates**: Any modification to the settings triggers a re-render. - **User Interactions**: Interactions via mouse or touch devices lead to camera updates and subsequent rendering. ### Manual rendering triggers In certain situations, developers might need to manually initiate the processing and rendering steps. For instance, if an external factor alters a state utilized by the `nodeReducer` or `edgeReducer`, both processing and rendering must be executed to achieve the correct visualization. Sigma provides three methods for this: - **`Sigma#refresh`**: This method processes the data and then renders it. - **`Sigma#scheduleRefresh`**: Schedules a `refresh` for the next frame using `requestAnimationFrame`. If a refresh is already scheduled, it avoids redundancy by not scheduling another. This method is useful for debouncing, as `refresh` can sometimes be resource-intensive. - **`Sigma#scheduleRender`**: Schedules a render for the next frame, but only if neither a `render` nor a `refresh` is already scheduled. **Note**: The `render` method is private. Developers should always use `scheduleRender` when a re-render is required. ================================================ FILE: packages/website/docs/advanced/migration-v2-v3.md ================================================ --- title: Migrating from v2 to v3 sidebar_position: 10 --- This guide will help users migrating their applications from sigma v2.\* to v3.\*. ## Exports endpoints Sigma v3 is built using [Preconstruct](https://preconstruct.tools/), and there are only 5 endpoints now: - `"sigma"` exports the main `Sigma` class, and the other utility classes `Camera`, `MouseCaptor` and `TouchCaptor`; - `"sigma/rendering"` exports everything rendering related, from the programs to the related classes and types; - `"sigma/settings"` exports the `Settings` interface, the `DEFAULT_SETTINGS` collection and the `validateSettings` and `resolveSettings` utility functions; - `"sigma/types"` exports all remaining sigma specific types (for TypeScript only); - `"sigma/utils"` exports all kind of various utility functions. Also, the `node.image` program is no more exported from sigma, but must be imported from another dedicated package: [`@sigma/node-image`](https://www.npmjs.com/package/@sigma/node-image). ## Programs Sigma v3 has been developed to handle various limitations of sigma v2's nodes and edges **programs**. Basically: - Programs were very hard to maintain and to develop, with _a lot_ of boilerplate - There were various optimizations we wanted to implement, such as [_picking_](https://webglfundamentals.org/webgl/lessons/webgl-picking.html) and [_instanced rendering_](https://webglfundamentals.org/webgl/lessons/webgl-instanced-drawing.html), that would require breaking changes, at the time - Coordinate systems translations where messy and poorly documented, and becoming harder and harder to maintain So, we refined it completely from scratch, to handle all those issues. ### Existing programs Breaking everything in the programs was the opportunity to rename existing program, to better fit what they do: - `edge-fast` becomes `edge.line` (since it uses the `WebGLRenderingContext.LINES` drawing method) - `edge` becomes `edge.rectangle` (as edges are rendered as rectangles, using two `WebGLRenderingContext.TRIANGLES`) - `node-fast` becomes `node.point` (since it uses `WebGLRenderingContext.POINTS`) - `node` becomes `node.circle` (as nodes are rendered as circles, carved inside `WebGLRenderingContext.TRIANGLES`) - `node-image` becomes [`@sigma/node-image`](https://www.npmjs.com/package/@sigma/node-image), a new satellite package ### New API A **node program** must extend the [**`NodeProgram`** classe](https://github.com/jacomyal/sigma.js/blob/main/packages/sigma/src/rendering/node.ts), and an **edge program** must extend the [**`EdgeProgram`** classe](https://github.com/jacomyal/sigma.js/blob/main/packages/sigma/src/rendering/edge.ts). Those two classes are designed so that only specific code remains in the programs, without all the boilerplate. **The best to do to understand how to write programs for sigma v3 is to read the existing programs.** The simplest ones are [**`edge.line`**](https://github.com/jacomyal/sigma.js/tree/main/packages/sigma/src/rendering/programs/edge-line) and [**`node.point`**](https://github.com/jacomyal/sigma.js/tree/main/packages/sigma/src/rendering/programs/node-point). Some insights, though: - To help with TypeScript inference, **uniforms** are generally defined outside the program, and given as generics; - Every programs now have a `getDefinition` method, that returns various data that help sigma properly initializing the related WebGL program; - Programs also must have a `processVisibleItem`, that feeds the `Float32Array` with the data related to a given item; - Finally, programs also provide a `setUniforms` method, that sets the proper uniform values. ### Picking In sigma v3, the collision detection is no more handle with CPU-based computation. The two main issues were: - The quad-tree index for nodes was hard to maintain, and only handled disc nodes; - The ad-hoc code that handled edges collisions was slow, and only handled linear edges. The picking work as following: - In addition to the visible layers, two more layers are rendered, where each node and edge is drawn with a unique color, that represents its ID; - To know what is at a given pixel, we look at the related picking layer, and if it is a colored pixel, then we instantly know what item it belongs to. There are two main costs, though: - Everything is rendered twice; - Every program must handle rendering for **both modes** ("normal" and "picking"). To handle picking within a program, here are the things that must be taken into account: 1. In addition to the color, the ID must also be stored into the data transferred to the CPU. The `processVisibleItem` receives the ID, properly encoded as a 4 bytes value (as the color), as its first argument. 2. In the _vertex shader_, the color given to the _fragment shader_ must be the item color for the normal layer, and the ID for the picking layer. This is done using the `PICKING_MODE` macro defined constant: ```glsl #ifdef PICKING_MODE // For picking mode, we use the ID as the color: v_color = a_id; #else // For normal mode, we use the color: v_color = a_color; #endif ``` 3. In the _fragment shader_, in the picking layer, pixels should either remain uncolored or colored with the given color. There should be no antialiasing. Indeed, if the color is changed, it might become the ID of another item. ### Instanced rendering In sigma v2, there were a lot of repeated data transmitted to the GPU. For instance, to render an edge as a rectangle, all the required data were written [four times](https://github.com/jacomyal/sigma.js/blob/7b3a5ead355f7c54449002e6909a9af2eecae6db/src/rendering/webgl/programs/edge.ts#L166-L193). To fixe this issue, sigma v3 uses _instanced rendering_. Basically, there are now two different buffers: one that carries data related to each item (node or edge), and another that carries data related to each vertex. Then, the program will handle those buffers to send to the _vertex shader_ both the item related data and the vertex related data. All programs do not use instanced rendering. For instance, [**`node.point`**](https://github.com/jacomyal/sigma.js/tree/main/packages/sigma/src/rendering/programs/node-point) does need it, since there is only one vertex per node. Basically, every program that use the `WebGLRenderingContext.TRIANGLES` method should probably use instanced rendering. So, to use instanced rendering, the `getDefinition` method of a program must provide a **`CONSTANT_ATTRIBUTES`** array, shaped as the `ATTRIBUTES` array, but with attributes that are related to each vertex, and a **`CONSTANT_DATA`** that stores an array of data for each vertex. The simplest program that uses instanced rendering might be [**`node.circle`**](https://github.com/jacomyal/sigma.js/tree/main/packages/sigma/src/rendering/programs/node-circle). **It is certainly a good program to read to better understand how to write a program using instanced rendering**. ### Canvas labels and hovered nodes rendering Finally, the way sigma handles canvas renderers for nodes and edges labels and hovered nodes have been updated: - Each program class can provide its own canvas renderers (an optional `drawLabel` method, and an additional optional `drawHover` only for node renderers). This allows programs that render different shapes to have custom labels rendering (such as [`@sigma/edge-curve`](https://www.npmjs.com/package/@sigma/edge-curve) for instance). - Programs that do not provide their own `drawLabel` or `drawHover` methods rely on the `defaultDrawEdgeLabel`, `defaultDrawNodeLabel` and `defaultDrawNodeHover` settings. This allows overriding canvas renderers for all "classic" programs (ie. circle nodes and straight edges) all at once. ## Other breaking changes ### TypeScript generics In sigma v3, the `Sigma` class accepts the same generics as its carried `Graph` instance. This helps to have reducers or other helpers written with the proper node and/or edge attributes. ### Settings Some settings have been updated: - `enableEdgeClickEvents`, `enableEdgeWheelEvents` and `enableEdgeHoverEvents` disappear and are all replaced by the single **`enableEdgeEvents`** setting; - `labelRenderer`, `hoverRenderer` and `edgeLabelRenderer` disappear and are respectively replaced by **`defaultDrawNodeLabel`**, **`defaultDrawNodeHover`** and **`defaultDrawEdgeLabel`**; - **`zoomToSizeRatioFunction`** and **`itemSizesReference`** are added to handle cases where nodes grow linearly with the zoom and all items sizes and positions are in the same coordinates system. ================================================ FILE: packages/website/docs/advanced/new-packages.md ================================================ --- title: Creating new packages sidebar_position: 8 --- # Adding new packages From version 3, the source code of sigma.js is structured as a [monorepo](https://monorepo.tools/). We use [Preconstruct](https://preconstruct.tools/) to build the packages for development and production, and [Lerna](https://lerna.js.org/) to manage versions lifecycle. Finally, on [NPM](https://www.npmjs.com/org/sigma), sigma is split into the core `sigma` package, and various `@sigma/xxx` feature packages. This approach allows to maintain multiple features, that are too specialized to be included in the main repository, without the cost of creating and managing multiple Git/GitHub repositories. As of now, the features are prefixed by their general purpose: - `@sigma/node-xxx` and `@sigma/edge-xxx` refer to node and edge renderer - `@sigma/layer-xxx` refers to additional layers that can be added to sigma instances - `@sigma/export-xxx` refers to packages that allow exporting somehow a sigma instance - `@sigma/utils` stores various small specific helpers ## Creating a new package To create a new package, you first need to get a clean local instance of sigma, with up-to-date versions of Git, Node.js and NPM. Then, go to the root of the repository, and run `npm run createPackage`. You will be prompted for the new package name (excluding the `@sigma/` namespace), after which a fresh, empty package will be created and referenced wherever necessary. ## Adding stories All stories are in the `packages/storybook` package. The Storybook is primarily a playground for testing features while developing, but it ultimately becomes the public showcase and documentation of new packages. It helps new users understand what each package can do and how. Each package can provide stories in the `packages/storybook/stories/3-additional-packages` folder. The easiest way to get started is to review the stories from some similar existing package. ## Adding tests Since most additional packages only handle rendering, unit-testing them is too challenging. In the future, we plan to include all Storybook stories in our end-to-end tests to detect rendering regressions. However, some packages might export unit-testable helpers (such as `@sigma/utils`). In that case, you can add a `package-name` folder in `packages/test/unit`, with tests suites in it. ================================================ FILE: packages/website/docs/advanced/publish.md ================================================ --- title: Publishing new versions sidebar_position: 9 --- As the code is structured as a monorepo, we use [Lerna](https://github.com/lerna/lerna) to help version and publish the different packages handled in the repository. To check packages that require a new version, you can run: ```bash lerna version ``` This will ask you, for each package that has been edited since its last release, to specify a new version. Once it's done, a new commit has been added locally, with new tags, matching each package new version. It does not push by default. To publish these new versions on [NPM](https://www.npmjs.com/), you can run: ```bash lerna publish from-package ``` Once you validate the new versions to publish, it will publish each of these versions to NPM. If you name your remote differently than `origin`, you need to add the option `--git-remote=` to both commands; ================================================ FILE: packages/website/docs/advanced/renderers.md ================================================ --- title: Renderers sidebar_position: 3 --- # Renderers in Sigma.js ## Introduction Sigma.js utilizes WebGL to render nodes and edges. WebGL is a JavaScript API designed for rendering 2D and 3D graphics in web browsers without requiring plugins. While WebGL offers detailed control over graphics rendering, its direct use can be complex because of its low-level specifications. ### Brief overview of WebGL At its core, WebGL operates using two main components: vertex shaders and fragment shaders. - **Vertex Shaders**: These are responsible for processing each vertex and determining its position on the screen. They take in attributes of the vertices and output a position. - **Fragment Shaders**: Once the position of vertices is known, fragment shaders determine the color of each pixel in the area bounded by those vertices. They take the output from the vertex shader and produce the final color. Given the austere nature of WebGL, sigma.js introduces the `NodeProgram` and `EdgeProgram` classes. These classes are designed to manage the data bindings and lifecycle, simplifying the process for developers. ## NodeProgram and EdgeProgram When you're looking to create a custom `NodeProgram`, there are specific components you need to provide: - **Vertex and Fragment Shaders**: These are essential for processing the graphical data. You'll need to provide both to define how your nodes or edges will be rendered. - **Program definition**: The program definition describes how much vertices make each item (node or edge), which attributes (relative to each vertice) and uniforms (constant for all vertices and items) should be given to the shaders. - **The program class**: A class that puts everything together, and adds: - A `getDefinition` method that returns the program definition. - A `processVisibleItem(offset: number, data: NodeDisplayData)` method that populates `this.array` with the appropriate values. - A `draw(params: RenderParams)` method that manages setting the correct uniform values and the final call to `gl.drawArrays`. Additionally, sigma.js offers helpers to compose programs, making it easier to combine different functionalities. ## Picking To detect collision between a given point (the mouse position, or where a touch event occurred for instance) and nodes and edges, we use a technic called **[picking](https://webglfundamentals.org/webgl/lessons/webgl-picking.html)**. Basically, we draw two images: One that the users see, with proper nodes and edges colors, antialiasing etc... And another one, where each item is drawn with a unique color. To know which item is at a given position, we look at the color of the corresponding pixel in the "picking image", and if it has a color, we get which item has this unique color. Each program must provide code to render on both the normal image and the picking image. For this, we use a "preprocessor" called `PICKING_MODE`. When the program is used to generate the normal image, `PICKING_MODE` is `false`, while it's `true` for picking. Please read the existing programs to have a better idea on how to use that. ## Core programs Sigma.js comes with a set of predefined programs, all exported from `"sigma/rendering"`: ### For edges - **`EdgeLineProgram`**: This is the most efficient method, rendering edges using the `gl.LINES` method. However, it always draws edges as 1px thick lines, regardless of zoom levels. - **`EdgeRectangleProgram`**: This is the default edge renderer. It portrays edges as thick rectangles connecting node pairs, with each rectangle being represented by two triangles. - **`EdgeArrowProgram`**: This is a composite renderer that uses `EdgeClampedProgram` (for drawing the arrow body) and `EdgeArrowHeadProgram` (for drawing the arrow head). > **_NOTE:_** The three programs `EdgeArrowProgram`, `EdgeClampedProgram` and `EdgeArrowHeadProgram` each also exist as a factory, to allow generating a program with custom arrow head width and length (relatively to the edge thicknesses). The factory are called `createEdgeArrowProgram`, `createEdgeClampedProgram` and `createEdgeArrowHeadProgram`. ### For nodes - **`NodePointProgram`**: This method displays nodes as squares using the `gl.POINTS` method. A circle is then "carved" into this square in the fragment shader. It's highly efficient in terms of both RAM and execution speed. However, due to the limitations of the `gl.POINTS` method, nodes can't be drawn with a radius exceeding 100px. - **`NodeCircleProgram`**: This method displays nodes as squares, represented by two triangles (similar to `EdgeRectangleProgram`). A circle is then "carved" into this square in the fragment shader. For a deeper understanding and practical examples, developers are encouraged to explore the existing sigma.js sources and examples. This hands-on approach will provide a clearer picture of how to effectively use and customize renderers in sigma.js. ## Additional programs Some more programs are also exposed, but as they carry more complexity, they are published as additional packages. - [**`@sigma/node-image`**](https://www.npmjs.com/package/@sigma/node-image): This package exposes a factory to create a program that operates similarly to `NodeCircleProgram`, but filling the circles with images using a texture atlas. - [**`@sigma/node-border`**](https://www.npmjs.com/package/@sigma/node-border): This package exposes a factory to create a program that operates similarly to `NodeCircleProgram`, but drawing concentric discs. - [**`@sigma/node-piechart`**](https://www.npmjs.com/package/@sigma/node-piechart): This package exposes a factory to create a program that operates similarly to `NodeCircleProgram`, but drawing nodes as pie-charts. - [**`@sigma/node-square`**](https://www.npmjs.com/package/@sigma/node-square): This package exposes a simple program that renders nodes as squares. - [**`@sigma/edge-curve`**](https://www.npmjs.com/package/@sigma/edge-curve): This package exposes an edge renderer that draw edges as curves. ## Additional layers There are also some other packages, that allow rendering additional layers as backgrounds, to display more contextual information. - [**`@sigma/layer-leaflet`**](https://www.npmjs.com/package/@sigma/layer-leaflet): This package exposes a function to bind a [Leaflet](https://leafletjs.com/) map layer to an existing sigma instance. - [**`@sigma/layer-maplibre`**](https://www.npmjs.com/package/@sigma/layer-maplibre): Similarly, this package exposes a function to bind a [MapLibre](https://maplibre.org/) map layer to an existing sigma instance. - [**`@sigma/layer-webgl`**](https://www.npmjs.com/package/@sigma/layer-webgl): This package exposes helpers to create WebGL custom layers and bind them to existing sigma instances. It also exposes some base layers, such as [metaballs](https://www.sigmajs.org/storybook/?path=/story/sigma-layer-webgl--metaballs) or [contour lines](https://www.sigmajs.org/storybook/?path=/story/sigma-layer-webgl--contour-line). ================================================ FILE: packages/website/docs/advanced/sizes.md ================================================ --- title: Node and Edge Sizes sidebar_position: 5 --- # Node and Edge Sizes ## Default Behavior ### Design Motivation The default behavior of Sigma is designed to ensure: - The **entire graph is visible** and uses the available viewport space efficiently. - Like how road thickness on map applications isn't true-to-scale (for better readability), nodes and edges **adjust to the zoom level**, preventing them from becoming too large or too small. - It is easy for developers to adjust the node and edge sizes to the viewport. This approach allows developers to use a variety of graph layouts, ensuring the graph is visible and readable without requiring additional customization. ### Implementation Details Sigma applies the following rules for rendering nodes and edges relative to data sizes: 1. Node and edge sizes **scale with the square root** of the zoom ratio. 2. Sizes from data are treated as **pixel values**, for the default zoom level. 3. Node and edge positions are adjusted so that the **graph is rescaled and centered**, fitting optimally in the viewport at the default camera zoom. ### Limitations These opinionated choices bring some limitations, though: - Graph appearance can be **inconsistent across different viewports**. - Node and edge sizes can be **difficult to predict**, especially in relation to positions, which can lead to overlap on smaller viewports. ## Customization Options To allow adapting these behaviours, sigma offers various settings to change the way it handles positions and sizes. ### `zoomToSizeRatioFunction` Setting To modify rule #1, adjust the `zoomToSizeRatioFunction` setting. This setting takes a transformation function `(ratio: number) => number`. By default, Sigma uses `Math.sqrt`, which keeps nodes and edges reasonably sized when zooming in or out. For instance, using `(ratio) => ratio` will make node and edge sizes scale directly with the zoom, similar to most graph visualization tools. ### `itemSizesReference` Setting To change rule #2, set `itemSizesReference` to **`"positions"`**. This makes sigma interpret node and edge sizes in the same coordinate system as the node positions at the default zoom level. If you want sizes to scale with the node positions at **all zoom levels**, combine this setting with `zoomToSizeRatioFunction: (ratio) => ratio`. ### `autoRescale` Setting To disable rule #3, use the `autoRescale` setting. Setting `autoRescale` as `false` prevents Sigma from automatically resizing the graph. Then, node positions are interpreted in pixels, for the default zoom level. The graph remains centered in the viewport, though. Also, note that when disabling `autoRescale`, the `itemSizesReference` setting becomes irrelevant, since node and edge sizes become ### Example You can play with these three options, in the **["Customize how sigma handles sizes and positions"](https://www.sigmajs.org/storybook/?path=/story/fit-sizes-to-positions--story)** story in the [StoryBook](https://www.sigmajs.org/storybook). ================================================ FILE: packages/website/docs/index.mdx ================================================ --- title: Introduction sidebar_position: 1 --- import Readme from "../../../README.md"; ================================================ FILE: packages/website/docs/quickstart.md ================================================ --- title: Quickstart Guide sidebar_position: 2 --- # Quickstart Guide ## Installation ### Using CDN To quickly integrate sigma.js and graphology into your project, you can use CDN links. Add the following lines to the head section of your HTML: ```html ``` Replace `[VERSION]` with the desired version number. ### Using Package Managers For npm or yarn: **npm**: ```bash npm install sigma graphology ``` **yarn**: ```bash yarn add sigma graphology ``` ## Quick Example Here's a basic example using CDNs to create a graph with minimal data and render it using sigma.js: ```html Quick Sigma.js Example
``` Load this HTML in a browser, and you'll see a simple graph with two nodes connected by an edge. This serves as a foundational step to start exploring the capabilities of sigma.js. ================================================ FILE: packages/website/docs/resources.md ================================================ --- title: Resources sidebar_position: 3 --- # Resources Sigma.js offers a variety of resources to assist developers in understanding and effectively utilizing the library: 1. **Documentation**: This documentation provides in-depth information on sigma.js-specific topics. It covers both foundational concepts and advanced features, ensuring developers have a comprehensive understanding of the library. 2. **Storybook**: For practical insights, sigma.js includes a set of examples base on [Storybook](https://storybook.js.org/). It is published [on the website](https://sigmajs.org/storybook), and addresses diverse challenges and scenarios. These examples serve as hands-on guides, demonstrating how different problems can be tackled using the library. 3. **Source Code**: To delve deeper into the workings of sigma.js, the source code is a valuable resource. It is extensively commented, offering clarity on the library's operations and functionalities. 4. **Demo Application**: For a real-world perspective, the sigma.js repository features a complete [demo](https://www.sigmajs.org/demo/index.html) ([sources](https://github.com/jacomyal/sigma.js/tree/main/packages/demo)) built with [React](https://react.dev/). This demo mirrors the structure of a typical application, providing a practical view of how sigma.js can be integrated and used in a project context. ================================================ FILE: packages/website/docusaurus.config.js ================================================ // @ts-check // Note: type annotations allow type checking and IDEs autocompletion const TAGLINE = "a JavaScript library aimed at visualizing graphs of thousands of nodes and edges"; /** @type {import('@docusaurus/types').Config} */ const config = { title: "sigma.js", tagline: TAGLINE, favicon: "img/favicon.ico", // Set the production url of your site here url: "https://www.sigmajs.org/", // Set the // pathname under which your site is served // For GitHub pages deployment, it is often '//' baseUrl: "/", // GitHub pages deployment config. // If you aren't using GitHub pages, you don't need these. organizationName: "jacomyal", // Usually your GitHub org/user name. projectName: "sigma.js", // Usually your repo name. onBrokenLinks: "throw", onBrokenMarkdownLinks: "warn", // Even if you don't use internalization, you can use this field to set useful // metadata like html lang. For example, if your site is Chinese, you may want // to replace "en" with "zh-Hans". i18n: { defaultLocale: "en", locales: ["en"], }, plugins: [ "docusaurus-plugin-matomo", [ "docusaurus-plugin-typedoc", // Plugin / TypeDoc options { entryPoints: [ "../sigma/src/index.ts", "../sigma/src/settings.ts", "../sigma/src/rendering/index.ts", "../sigma/src/utils/index.ts", "../layer-leaflet/src/index.ts", "../layer-maplibre/src/index.ts", "../layer-webgl/src/index.ts", "../node-border/src/index.ts", "../node-image/src/index.ts", "../node-piechart/src/index.ts", "../node-square/src/index.ts", "../edge-curve/src/index.ts", ], tsconfig: "../../tsconfig.json", out: "docs/typedoc", }, ], ], presets: [ [ "classic", /** @type {import('@docusaurus/preset-classic').Options} */ ({ docs: { sidebarPath: require.resolve("./sidebars.js"), editUrl: "https://github.com/jacomyal/sigma.js/tree/main/packages/website", }, theme: { customCss: require.resolve("./src/css/custom.css"), }, }), ], ], themeConfig: /** @type {import('@docusaurus/preset-classic').ThemeConfig} */ ({ navbar: { items: [ { href: "https://github.com/jacomyal/sigma.js", label: "GitHub", position: "right", }, ], }, matomo: { matomoUrl: "https://matomo.ouestware.com/", siteId: 26, }, metadata: [ { name: "description", content: TAGLINE, }, { name: "theme-color", content: "#e22653", }, ], }), }; module.exports = config; ================================================ FILE: packages/website/package.json ================================================ { "name": "@sigma/website", "private": true, "scripts": { "docusaurus": "docusaurus", "start": "docusaurus start", "build": "docusaurus build && mv build/homepage.html build/index.html", "swizzle": "docusaurus swizzle", "deploy": "docusaurus deploy", "clear": "docusaurus clear", "serve": "docusaurus serve", "write-translations": "docusaurus write-translations", "write-heading-ids": "docusaurus write-heading-ids" }, "dependencies": { "@docusaurus/core": "^3.7.0", "@docusaurus/module-type-aliases": "^3.7.0", "@docusaurus/preset-classic": "^3.7.0", "@docusaurus/types": "^3.7.0", "@mdx-js/react": "^3.1.0", "@tsconfig/docusaurus": "^2.0.3", "docusaurus-plugin-matomo": "^0.0.8", "docusaurus-plugin-typedoc": "^1.2.1", "prism-react-renderer": "^2.4.1", "typedoc": "^0.27.6", "typedoc-plugin-markdown": "^4.4.1", "zero-md": "^3.1.6" }, "browserslist": { "production": [ ">0.5%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] }, "engines": { "node": ">=18.14" } } ================================================ FILE: packages/website/sidebars.js ================================================ /** * Creating a sidebar enables you to: - create an ordered group of docs - render a sidebar for each doc of that group - provide next/previous navigation The sidebars can be generated from the filesystem, or explicitly defined here. Create as many sidebars as you want. */ // @ts-check /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ const sidebars = { sigmaDocSidebar: [ "index", "quickstart", "resources", { type: "category", label: "Advanced topics", link: { type: "generated-index", }, items: [ { type: "autogenerated", dirName: "advanced", }, ], }, { type: "category", label: "Typedoc API", link: { type: "generated-index", }, items: require("./docs/typedoc/typedoc-sidebar.cjs"), }, ], }; module.exports = sidebars; ================================================ FILE: packages/website/src/css/custom.css ================================================ /** * Any CSS included here will be global. The classic template * bundles Infima by default. Infima is a CSS framework designed to * work well for content-centric websites. */ /* Titles font */ @font-face { font-family: Hauora; src: local("Hauora"), url("/fonts/hauora/Hauora-Medium.woff"), url("/fonts/hauora/Hauora-Medium.woff2"); } @font-face { font-family: Hauora; font-weight: bold; src: local("Hauora"), url("/fonts/hauora/Hauora-Bold.woff"), url("/fonts/hauora/Hauora-Bold.woff2"); } /* Monospace font */ @font-face { font-family: Cascadia; src: local("Cascadia"), url("/fonts/cascadia/CascadiaCode.ttf"), url("/fonts/cascadia/CascadiaCode.woff2"), url("/fonts/cascadia/CascadiaCode-Regular.otf"); } /* Main font */ @font-face { font-family: Public Sans; src: local("Public Sans"), url("/fonts/public-sans/PublicSans-Regular.woff"), url("/fonts/public-sans/PublicSans-Regular.woff2"); } @font-face { font-family: Public Sans; font-style: italic; src: local("Public Sans"), url("/fonts/public-sans/PublicSans-LightItalic.woff"), url("/fonts/public-sans/PublicSans-LightItalic.woff2"); } @font-face { font-family: Public Sans; font-weight: bold; src: local("Public Sans"), url("/fonts/public-sans/PublicSans-SemiBold.woff"), url("/fonts/public-sans/PublicSans-SemiBold.woff2"); } @font-face { font-family: Public Sans; font-style: italic; font-weight: bold; src: local("Public Sans"), url("/fonts/public-sans/PublicSans-SemiBoldItalic.woff"), url("/fonts/public-sans/PublicSans-SemiBoldItalic.woff2"); } /* You can override the default Infima variables here. */ :root { --ifm-color-primary: #e22653; --ifm-color-primary-dark: #c92249; --ifm-color-primary-darker: #a31c3b; --ifm-color-primary-darkest: #631124; --ifm-color-primary-light: #f02957; --ifm-color-primary-lighter: #fc2b5c; --ifm-color-primary-lightest: #ff5b7e; --ifm-code-font-size: 95%; --ifm-font-family-base: "Public Sans", Lato, Arial, sans-serif; --ifm-heading-font-family: Hauora, Roboto, Arial, sans-serif; --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1); } /* For readability concerns, you should choose a lighter palette in dark mode. */ [data-theme="dark"] { --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3); } .text-ruby { color: var(--ifm-color-primary); } .text-grey { color: #999; } .with-logo { text-decoration: none; position: relative; } .with-logo img { position: absolute; margin-right: 0.2em; right: 100%; bottom: -0.15em; height: 110%; } footer { padding-left: 1rem; padding-right: 1rem; } footer ul { list-style: none; padding: 0; } ================================================ FILE: packages/website/src/theme/Footer/index.js ================================================ import React from "react"; function Footer() { return ( ); } export default React.memo(Footer); ================================================ FILE: packages/website/src/theme/Navbar/Logo/index.js ================================================ import React from "react"; export default function NavbarLogo() { return (
sigma.js logo
sigma .js
); } ================================================ FILE: packages/website/src/theme/NotFound.js ================================================ import { useLocation } from "@docusaurus/router"; import NotFound from "@theme-original/NotFound"; import React from "react"; export default function NotFoundWrapper(props) { const location = useLocation(); if (location.pathname === "/") { return (
The homepage of this website is not in the React-Router workflow: The sources are not in /docs, but in{" "} /static/index.html {" "} instead.

This page cannot be served in the development version, but you can edit its HTML code directly if it needs modifications.

Please open{" "} /docs {" "} to access the documentation.
); } return ( <> ); } ================================================ FILE: packages/website/static/homepage.html ================================================ Sigma.js

sigma.js

a JavaScript library aimed at visualizing graphs of thousands of nodes and edges

See sigma.js in action

Click here to explore a network of Wikipedia pages about data visualization.

Architecture

Sigma.js is a modern JavaScript library for rendering and interacting with network graphs in the browser. It works in symbiosis with graphology, a multipurpose graph manipulation library.

graphology

handles graph data model & algorithms

+

sigma.js

handles graph rendering & interactions

=

your web app

Quick start

I want sigma.js in my existing project:

npm install graphology sigma

Learn more on the quickstart guide

I start from nothing:

Try this CodeSandbox

Use cases

Display

The most basic use case: you have a graph dataset, with colors, sizes and positions for each node. For instance, you exported a GEXF graph file from Gephi. You want to visualize it using on a web page.

Open in Storybook

Explore

You want to add interaction, so that your users can dig into the graph. You want to add a search field, and allow users to see the neighborhood of a node when hovering it.

Open in Storybook

Interact

You are developing a web application where users can create and manipulate graphs. You need users to be able to create nodes on click, and to drag and drop nodes.

Open in Storybook

Customize

You need to personalize the way your graphs are rendered. You need to display some nodes with pictures in them, and others differently.

Open in Storybook

Frequently asked questions

  • How can I obtain drawable data from a CSV?

    You will process the data with graphology, then render it with sigma.js. You can look at this example for instance.

  • What graph algorithms are implemented in sigma.js?

    None in sigma.js, but graphology has a lot, from ForceAtlas2 layout to various metrics or even community detection. You can see an overview in the documentation.

  • Why should I use sigma.js and not d3.js?

    Sigma.js renders graphs using WebGL. It allows drawing larger graphs faster than with Canvas or SVG based solutions. It also makes custom rendering way harder to develop. If you have small graphs (like a few hundreds of nodes and edges) and/or if you need very customized rendering, then d3.js is indeed a best fit for you.

  • Can I use sigma.js in my React application?

    Yes, the best way is certainly to use the @react-sigma. The example on top of this page is developed using it, you can check the sourcecode to get an idea.

  • And within an Angular application?

    Yes it is possible, but harder, because we do not have a wrapper yet. So you will have to bind sigma.js lifecycle to your app manually. It is not necessarily too difficult though, please take a look on this repository which offers a quick example.

Go further

I want to know more

Look at the documentation.

I have a problem

Ask your questions on StackOverflow, or report bugs by opening a new GitHub issue.

I want to help

Contributions are welcome! Reading our contribution guide is a good start. You can also help us investigating existing issues or answering questions on StackOverflow.

In the wild

Here are a selection of applications and websites using sigma.js.

Gephi Lite

a graph visualization and exploration web application

GraphCommons

a collaborative platform for mapping, analyzing, and sharing data-networks

Retina

a web application to help sharing graph visualizations online

Polinode

a software to collect, visualize and analyze connected data

G.V()

a software to write, debug, test and analyze Gremlin graph databases

ipysigma

a Jupyter widget to render networks in the result of a notebook cell

Hyphe

a web corpus curation tool featuring a research-driven web crawler

Kenelyze

an interactive network analysis and data visualization platform

BloodHound

a security analysis tool for uncovering hidden Active Directory and Azure relationships

Scovery

a tool for visualizing the digital footprint of companies on the Internet

MARVEL graphs

a website featuring interactive maps of Marvel's characters and creators

Helveg

a tool for visualizing and exploring the structure of C# codebases

================================================ FILE: packages/website/static/styles.css ================================================ :root { --ruby: #e22653; --grey: #999; --dark-grey: #666; --cream: #f9f7ed; --grid-size: 1000px; --grid-h-padding: 2em; --title-size: 550px; --showcase-width: 1400px; --showcase-height: 800px; --showcase-max-height: calc(100vh - 2em); --transition: all ease-out 300ms; --hover-opacity: 0.7; --box-shadow: 0 0 8px var(--dark-grey); } .text-grey { color: var(--grey); } .text-ruby { color: var(--ruby); } /* Titles font */ @font-face { font-family: Hauora; src: local("Hauora"), url("/fonts/hauora/Hauora-Medium.woff"), url("/fonts/hauora/Hauora-Medium.woff2"); } @font-face { font-family: Hauora; font-weight: bold; src: local("Hauora"), url("/fonts/hauora/Hauora-Bold.woff"), url("/fonts/hauora/Hauora-Bold.woff2"); } /* Monospace font */ @font-face { font-family: Cascadia; src: local("Cascadia"), url("/fonts/cascadia/CascadiaCode.ttf"), url("/fonts/cascadia/CascadiaCode.woff2"), url("/fonts/cascadia/CascadiaCode-Regular.otf"); } /* Main font */ @font-face { font-family: Public Sans; src: local("Public Sans"), url("/fonts/public-sans/PublicSans-Regular.woff"), url("/fonts/public-sans/PublicSans-Regular.woff2"); } @font-face { font-family: Public Sans; font-style: italic; src: local("Public Sans"), url("/fonts/public-sans/PublicSans-LightItalic.woff"), url("/fonts/public-sans/PublicSans-LightItalic.woff2"); } @font-face { font-family: Public Sans; font-weight: bold; src: local("Public Sans"), url("/fonts/public-sans/PublicSans-SemiBold.woff"), url("/fonts/public-sans/PublicSans-SemiBold.woff2"); } @font-face { font-family: Public Sans; font-style: italic; font-weight: bold; src: local("Public Sans"), url("/fonts/public-sans/PublicSans-SemiBoldItalic.woff"), url("/fonts/public-sans/PublicSans-SemiBoldItalic.woff2"); } /** * TYPOGRAPHY: * *********** */ body { font-size: 1.2em; } body, input, button { font-family: "Public Sans", Lato, Arial, sans-serif; } h1, h2, h3, h4, .text-title { font-family: Hauora, Roboto, Arial, sans-serif; } pre, code { font-family: Cascadia, monospace; background: var(--cream); } .text-center { text-align: center; } /** * BASE STYLE / LAYOUT: * ******************** */ html { scroll-behavior: smooth; } body { display: flex; flex-direction: column; min-height: 100vh; padding: 0; margin: 0; } .row { display: flex; flex-direction: row; justify-content: space-between; column-gap: 1em; } .row > * { flex-grow: 1; flex-basis: 0; } /** * TOP BAR: * ******** */ header { display: flex; flex-direction: row; justify-content: space-between; position: fixed; z-index: 1; left: 0; right: 0; height: 0; } header img { height: 1.6em; } header .links { text-align: right; list-style: none; } header .links ul { margin: 0; padding: 0; } header .links li { display: inline-block; margin-left: 0.3em; } header .links a { text-decoration: none; } header .menu { position: relative; display: flex; flex-direction: row; align-items: flex-start; } header .panel ul { list-style: none; padding: 0; } header .panel ul.internal { flex-grow: 1; } header .panel a { text-decoration: none; } header .panel > * { margin-bottom: 1em; } /* Deal with padding: */ header .links, header .menu { padding: 2em; } #toggle-menu { display: none; } header .menu .panel { margin: 0; line-height: 1.6em; font-size: 1.2em; display: flex; flex-direction: column; justify-content: center; padding: 6em 5em 2em; position: fixed; background: white; box-shadow: var(--box-shadow); top: 0; left: 0; bottom: 0; transform: translate(calc(-100% - 10px)); transition: var(--transition); } #toggle-menu + .menu label { cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; background: #ffffff; padding: 0.3em; transform: translate(-0.3em, -0.3em); } #toggle-menu:checked + .menu .panel { transform: translate(0%); } #toggle-menu:checked + .menu label .show-menu, #toggle-menu:not(:checked) + .menu label .hide-menu { display: none; } a { color: black; transition: var(--transition); } a:hover { color: var(--dark-grey); } .button { display: inline-block; text-decoration: none; padding: 1em; background: var(--dark-grey); color: white !important; transition: var(--transition); text-align: center; font-size: 1em; border: none; outline: none; cursor: pointer; } .button:not([disabled]):hover { opacity: var(--hover-opacity); } .button.button-light { box-sizing: border-box; background: white; border: 1px solid var(--dark-grey); color: black !important; } .button[disabled] { color: var(--dark-grey) !important; border-color: var(--grey); cursor: default; } .with-logo { text-decoration: none; position: relative; } .with-logo img { position: absolute; margin-right: 0.2em; right: 100%; bottom: -0.15em; height: 110%; } /** * MAIN CONTENT: * ************* */ main { padding: 2em var(--grid-h-padding); flex-grow: 1; } main > section { margin: auto auto 3em; max-width: var(--grid-size); } main section.title { font-size: 1.4em; max-width: var(--title-size); margin: auto; min-height: 70vh; display: flex; flex-direction: column; justify-content: center; } main section.title h1 { font-size: 1.7em; margin: 0.5em 0; } main section.showcase { position: relative; max-width: var(--showcase-width); } main section.showcase .wrapper { position: relative; box-shadow: 0 0 8px var(--grey); box-sizing: border-box; margin-bottom: 0.5em; } main section.showcase .wrapper, main section.showcase iframe { width: 100%; height: var(--showcase-height); max-height: var(--showcase-max-height); overflow: hidden; } main section.showcase iframe { border: none; } main section.showcase .caption { font-size: 0.8em; display: flex; flex-direction: row; justify-content: space-between; align-items: baseline; } main section.showcase .caption .button { padding: 0.5em; } main section.showcase .caption a { white-space: nowrap; margin-right: 1em; } main section.showcase .overlay { position: absolute; inset: 0; color: white; padding: 3em; font-size: 1.5em; display: flex; flex-direction: column; justify-content: center; cursor: pointer; background: #ffffff66; transition: var(--transition); overflow: hidden; } main section.showcase .overlay:hover { background: #ffffff99; } main section.showcase .overlay.hide { display: none; } main section.showcase .overlay h2 { margin: 0 0 1px; } main section.showcase .overlay .bg { display: inline-block; padding: 4px 8px; background: #666666dd; } main section.showcase .overlay:hover .bg { background: #666666; } main #architecture .schema { display: flex; flex-direction: row; justify-content: center; max-width: 60%; margin: 3em auto auto; } main #architecture .schema img { height: 4em; } main #architecture .schema > span { height: 1.5em; line-height: 1.5em; font-size: 3em; margin: 0 0.5em; } main #quickstart .options pre { display: inline-block; padding: 0.5em 1em; margin: 0; } main #quickstart .options code::before { content: "> "; user-select: none; } main #usecases .usecase { align-items: center; justify-content: space-between; margin-bottom: 1em; } main #usecases .usecase:nth-child(2n + 1) { flex-direction: row-reverse; } main #usecases .thumbnail { display: block; height: 400px; overflow: hidden; box-shadow: 0 0 8px var(--dark-grey); } main #usecases .thumbnail > div { height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; transition: var(--transition); } main #usecases .thumbnail:hover > div { transform: scale(1.1); } main #inthewild .usages { display: flex; flex-flow: row wrap; justify-content: space-between; } main #inthewild .usages::after { content: " "; flex: auto; } main #inthewild .usages > div { width: 323px; margin-right: 0.5em; margin-bottom: 1em; } main #inthewild .thumbnail { display: block; height: 176px; overflow: hidden; } main #inthewild .thumbnail > div { height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; transition: var(--transition); background-blend-mode: multiply; background-color: lightgray; } main #inthewild .thumbnail:hover { box-shadow: 0 0 8px var(--dark-grey); } main #inthewild .thumbnail:hover > div { transform: scale(1.1); background-color: transparent; } main #inthewild .sumup { padding: 1em; } main #inthewild .sumup h3, main #inthewild .sumup p { margin: 0; } main #faq ul { padding: 0; list-style: none; } main #faq h3 { margin-top: 2.4em; margin-bottom: 0; } main #faq p { margin-top: 0.5em; } /** * FOOTER: * ******* */ footer { padding: 2em var(--grid-h-padding); max-width: var(--grid-size); margin: auto; } footer ul { list-style: none; padding: 0; } /** * RESPONSIVENESS: * *************** */ @media (max-width: 768px) { body { font-size: 1em; } .row { display: block; } /* Deal with padding: */ header .links, header .menu { padding: 1em; } header .menu .panel { padding: 6em 4em 2em; } #toggle-menu:checked + .menu .panel { background: #ffffffee; width: 100vw; border: none; margin: auto; } #toggle-menu:checked ~ .links { display: none; } main, footer { max-width: 100%; } main section.title { max-width: 100%; padding-left: 3em; min-height: 80vh; font-size: 1.2em; } main section.showcase .overlay { font-size: 1em; } main #architecture .schema { display: block; max-width: 100%; text-align: center; } main #architecture .schema img { height: 4em; } main #architecture .schema > div { max-width: 60%; margin: auto; } main #architecture .schema > span { display: block; text-align: center; } } ================================================ FILE: tsconfig.base.json ================================================ { "compileOnSave": false, "compilerOptions": { "allowJs": false, "allowSyntheticDefaultImports": true, "allowUnreachableCode": false, "allowUnusedLabels": false, "alwaysStrict": true, "baseUrl": ".", "declaration": true, "diagnostics": false, "emitBOM": false, "emitDecoratorMetadata": false, "esModuleInterop": true, "experimentalDecorators": false, "forceConsistentCasingInFileNames": true, "importHelpers": true, "importsNotUsedAsValues": "remove", "inlineSourceMap": false, "inlineSources": false, "isolatedModules": false, "jsx": "react", "lib": ["dom", "dom.iterable", "esnext"], "listEmittedFiles": false, "listFiles": false, "module": "commonjs", "moduleResolution": "node", "noEmit": false, "noEmitHelpers": false, "noEmitOnError": false, "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitReturns": true, "noImplicitThis": true, "noImplicitUseStrict": false, "noUnusedLocals": true, "noUnusedParameters": true, "paths": { "*": ["@types/*"] }, "preserveConstEnums": true, "pretty": true, "removeComments": true, "resolveJsonModule": true, "skipDefaultLibCheck": true, "skipLibCheck": true, "sourceMap": true, "strict": true, "strictBindCallApply": true, "strictFunctionTypes": true, "strictNullChecks": true, "strictPropertyInitialization": true, "stripInternal": true, "suppressExcessPropertyErrors": false, "suppressImplicitAnyIndexErrors": false, "target": "es6" } } ================================================ FILE: tsconfig.json ================================================ { "extends": "./tsconfig.base.json", "files": [], "references": [ { "path": "./packages/demo" }, { "path": "./packages/test" }, { "path": "./packages/storybook" }, { "path": "./packages/sigma" }, { "path": "./packages/layer-leaflet" }, { "path": "./packages/layer-maplibre" }, { "path": "./packages/layer-webgl" }, { "path": "./packages/node-border" }, { "path": "./packages/node-image" }, { "path": "./packages/node-piechart" }, { "path": "./packages/node-square" }, { "path": "./packages/edge-curve" }, { "path": "./packages/utils" }, { "path": "./packages/export-image" } ], "watchOptions": { "excludeDirectories": ["**/node_modules"] }, "compilerOptions": { "noFallthroughCasesInSwitch": false } }